David Sterba | c1d7c51 | 2018-04-03 19:23:33 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Chris Mason | 6cbd557 | 2007-06-12 09:07:21 -0400 | [diff] [blame] | 2 | /* |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 3 | * Copyright (C) 2007,2008 Oracle. All rights reserved. |
Chris Mason | 6cbd557 | 2007-06-12 09:07:21 -0400 | [diff] [blame] | 4 | */ |
| 5 | |
Chris Mason | a6b6e75 | 2007-10-15 16:22:39 -0400 | [diff] [blame] | 6 | #include <linux/sched.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 7 | #include <linux/slab.h> |
Jan Schmidt | bd989ba | 2012-05-16 17:18:50 +0200 | [diff] [blame] | 8 | #include <linux/rbtree.h> |
David Sterba | adf0212 | 2017-05-31 19:44:31 +0200 | [diff] [blame] | 9 | #include <linux/mm.h> |
Chris Mason | eb60cea | 2007-02-02 09:18:22 -0500 | [diff] [blame] | 10 | #include "ctree.h" |
| 11 | #include "disk-io.h" |
Chris Mason | 7f5c151 | 2007-03-23 15:56:19 -0400 | [diff] [blame] | 12 | #include "transaction.h" |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 13 | #include "print-tree.h" |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 14 | #include "locking.h" |
Nikolay Borisov | de37aa5 | 2018-10-30 16:43:24 +0200 | [diff] [blame] | 15 | #include "volumes.h" |
Qu Wenruo | f616f5c | 2019-01-23 15:15:17 +0800 | [diff] [blame] | 16 | #include "qgroup.h" |
Filipe Manana | f3a84cc | 2021-03-11 14:31:07 +0000 | [diff] [blame] | 17 | #include "tree-mod-log.h" |
Chris Mason | 9a8dd15 | 2007-02-23 08:38:36 -0500 | [diff] [blame] | 18 | |
Chris Mason | e089f05 | 2007-03-16 16:20:31 -0400 | [diff] [blame] | 19 | static int split_node(struct btrfs_trans_handle *trans, struct btrfs_root |
| 20 | *root, struct btrfs_path *path, int level); |
Omar Sandoval | 310712b | 2017-01-17 23:24:37 -0800 | [diff] [blame] | 21 | static int split_leaf(struct btrfs_trans_handle *trans, struct btrfs_root *root, |
| 22 | const struct btrfs_key *ins_key, struct btrfs_path *path, |
| 23 | int data_size, int extend); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 24 | static int push_node_left(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 25 | struct extent_buffer *dst, |
Chris Mason | 971a1f6 | 2008-04-24 10:54:32 -0400 | [diff] [blame] | 26 | struct extent_buffer *src, int empty); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 27 | static int balance_node_right(struct btrfs_trans_handle *trans, |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 28 | struct extent_buffer *dst_buf, |
| 29 | struct extent_buffer *src_buf); |
Tsutomu Itoh | afe5fea | 2013-04-16 05:18:22 +0000 | [diff] [blame] | 30 | static void del_ptr(struct btrfs_root *root, struct btrfs_path *path, |
| 31 | int level, int slot); |
Chris Mason | d97e63b | 2007-02-20 16:40:44 -0500 | [diff] [blame] | 32 | |
Johannes Thumshirn | af024ed | 2019-08-30 13:36:09 +0200 | [diff] [blame] | 33 | static const struct btrfs_csums { |
| 34 | u16 size; |
David Sterba | 59a0fcd | 2020-02-27 21:00:45 +0100 | [diff] [blame] | 35 | const char name[10]; |
| 36 | const char driver[12]; |
Johannes Thumshirn | af024ed | 2019-08-30 13:36:09 +0200 | [diff] [blame] | 37 | } btrfs_csums[] = { |
| 38 | [BTRFS_CSUM_TYPE_CRC32] = { .size = 4, .name = "crc32c" }, |
Johannes Thumshirn | 3951e7f | 2019-10-07 11:11:01 +0200 | [diff] [blame] | 39 | [BTRFS_CSUM_TYPE_XXHASH] = { .size = 8, .name = "xxhash64" }, |
Johannes Thumshirn | 3831bf0 | 2019-10-07 11:11:02 +0200 | [diff] [blame] | 40 | [BTRFS_CSUM_TYPE_SHA256] = { .size = 32, .name = "sha256" }, |
David Sterba | 352ae07 | 2019-10-07 11:11:02 +0200 | [diff] [blame] | 41 | [BTRFS_CSUM_TYPE_BLAKE2] = { .size = 32, .name = "blake2b", |
| 42 | .driver = "blake2b-256" }, |
Johannes Thumshirn | af024ed | 2019-08-30 13:36:09 +0200 | [diff] [blame] | 43 | }; |
| 44 | |
| 45 | int btrfs_super_csum_size(const struct btrfs_super_block *s) |
| 46 | { |
| 47 | u16 t = btrfs_super_csum_type(s); |
| 48 | /* |
| 49 | * csum type is validated at mount time |
| 50 | */ |
| 51 | return btrfs_csums[t].size; |
| 52 | } |
| 53 | |
| 54 | const char *btrfs_super_csum_name(u16 csum_type) |
| 55 | { |
| 56 | /* csum type is validated at mount time */ |
| 57 | return btrfs_csums[csum_type].name; |
| 58 | } |
| 59 | |
David Sterba | b4e967b | 2019-10-08 18:41:33 +0200 | [diff] [blame] | 60 | /* |
| 61 | * Return driver name if defined, otherwise the name that's also a valid driver |
| 62 | * name |
| 63 | */ |
| 64 | const char *btrfs_super_csum_driver(u16 csum_type) |
| 65 | { |
| 66 | /* csum type is validated at mount time */ |
David Sterba | 59a0fcd | 2020-02-27 21:00:45 +0100 | [diff] [blame] | 67 | return btrfs_csums[csum_type].driver[0] ? |
| 68 | btrfs_csums[csum_type].driver : |
David Sterba | b4e967b | 2019-10-08 18:41:33 +0200 | [diff] [blame] | 69 | btrfs_csums[csum_type].name; |
| 70 | } |
| 71 | |
David Sterba | 604997b | 2020-07-27 17:38:19 +0200 | [diff] [blame] | 72 | size_t __attribute_const__ btrfs_get_num_csums(void) |
David Sterba | f7cea56 | 2019-10-07 11:11:03 +0200 | [diff] [blame] | 73 | { |
| 74 | return ARRAY_SIZE(btrfs_csums); |
| 75 | } |
| 76 | |
Chris Mason | 2c90e5d | 2007-04-02 10:50:19 -0400 | [diff] [blame] | 77 | struct btrfs_path *btrfs_alloc_path(void) |
| 78 | { |
Masahiro Yamada | e2c8990 | 2016-09-13 04:35:52 +0900 | [diff] [blame] | 79 | return kmem_cache_zalloc(btrfs_path_cachep, GFP_NOFS); |
Chris Mason | 2c90e5d | 2007-04-02 10:50:19 -0400 | [diff] [blame] | 80 | } |
| 81 | |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 82 | /* this also releases the path */ |
Chris Mason | 2c90e5d | 2007-04-02 10:50:19 -0400 | [diff] [blame] | 83 | void btrfs_free_path(struct btrfs_path *p) |
| 84 | { |
Jesper Juhl | ff175d5 | 2010-12-25 21:22:30 +0000 | [diff] [blame] | 85 | if (!p) |
| 86 | return; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 87 | btrfs_release_path(p); |
Chris Mason | 2c90e5d | 2007-04-02 10:50:19 -0400 | [diff] [blame] | 88 | kmem_cache_free(btrfs_path_cachep, p); |
| 89 | } |
| 90 | |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 91 | /* |
| 92 | * path release drops references on the extent buffers in the path |
| 93 | * and it drops any locks held by this path |
| 94 | * |
| 95 | * It is safe to call this on paths that no locks or extent buffers held. |
| 96 | */ |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 97 | noinline void btrfs_release_path(struct btrfs_path *p) |
Chris Mason | eb60cea | 2007-02-02 09:18:22 -0500 | [diff] [blame] | 98 | { |
| 99 | int i; |
Chris Mason | a213501 | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 100 | |
Chris Mason | 234b63a | 2007-03-13 10:46:10 -0400 | [diff] [blame] | 101 | for (i = 0; i < BTRFS_MAX_LEVEL; i++) { |
Chris Mason | 3f157a2 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 102 | p->slots[i] = 0; |
Chris Mason | eb60cea | 2007-02-02 09:18:22 -0500 | [diff] [blame] | 103 | if (!p->nodes[i]) |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 104 | continue; |
| 105 | if (p->locks[i]) { |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 106 | btrfs_tree_unlock_rw(p->nodes[i], p->locks[i]); |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 107 | p->locks[i] = 0; |
| 108 | } |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 109 | free_extent_buffer(p->nodes[i]); |
Chris Mason | 3f157a2 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 110 | p->nodes[i] = NULL; |
Chris Mason | eb60cea | 2007-02-02 09:18:22 -0500 | [diff] [blame] | 111 | } |
| 112 | } |
| 113 | |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 114 | /* |
| 115 | * safely gets a reference on the root node of a tree. A lock |
| 116 | * is not taken, so a concurrent writer may put a different node |
| 117 | * at the root of the tree. See btrfs_lock_root_node for the |
| 118 | * looping required. |
| 119 | * |
| 120 | * The extent buffer returned by this has a reference taken, so |
| 121 | * it won't disappear. It may stop being the root of the tree |
| 122 | * at any time because there are no locks held. |
| 123 | */ |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 124 | struct extent_buffer *btrfs_root_node(struct btrfs_root *root) |
| 125 | { |
| 126 | struct extent_buffer *eb; |
Chris Mason | 240f62c | 2011-03-23 14:54:42 -0400 | [diff] [blame] | 127 | |
Josef Bacik | 3083ee2 | 2012-03-09 16:01:49 -0500 | [diff] [blame] | 128 | while (1) { |
| 129 | rcu_read_lock(); |
| 130 | eb = rcu_dereference(root->node); |
| 131 | |
| 132 | /* |
| 133 | * RCU really hurts here, we could free up the root node because |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 134 | * it was COWed but we may not get the new root node yet so do |
Josef Bacik | 3083ee2 | 2012-03-09 16:01:49 -0500 | [diff] [blame] | 135 | * the inc_not_zero dance and if it doesn't work then |
| 136 | * synchronize_rcu and try again. |
| 137 | */ |
| 138 | if (atomic_inc_not_zero(&eb->refs)) { |
| 139 | rcu_read_unlock(); |
| 140 | break; |
| 141 | } |
| 142 | rcu_read_unlock(); |
| 143 | synchronize_rcu(); |
| 144 | } |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 145 | return eb; |
| 146 | } |
| 147 | |
Qu Wenruo | 92a7cc4 | 2020-05-15 14:01:40 +0800 | [diff] [blame] | 148 | /* |
| 149 | * Cowonly root (not-shareable trees, everything not subvolume or reloc roots), |
| 150 | * just get put onto a simple dirty list. Transaction walks this list to make |
| 151 | * sure they get properly updated on disk. |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 152 | */ |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 153 | static void add_root_to_dirty_list(struct btrfs_root *root) |
| 154 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 155 | struct btrfs_fs_info *fs_info = root->fs_info; |
| 156 | |
Josef Bacik | e7070be | 2014-12-16 08:54:43 -0800 | [diff] [blame] | 157 | if (test_bit(BTRFS_ROOT_DIRTY, &root->state) || |
| 158 | !test_bit(BTRFS_ROOT_TRACK_DIRTY, &root->state)) |
| 159 | return; |
| 160 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 161 | spin_lock(&fs_info->trans_lock); |
Josef Bacik | e7070be | 2014-12-16 08:54:43 -0800 | [diff] [blame] | 162 | if (!test_and_set_bit(BTRFS_ROOT_DIRTY, &root->state)) { |
| 163 | /* Want the extent tree to be the last on the list */ |
Misono Tomohiro | 4fd786e | 2018-08-06 14:25:24 +0900 | [diff] [blame] | 164 | if (root->root_key.objectid == BTRFS_EXTENT_TREE_OBJECTID) |
Josef Bacik | e7070be | 2014-12-16 08:54:43 -0800 | [diff] [blame] | 165 | list_move_tail(&root->dirty_list, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 166 | &fs_info->dirty_cowonly_roots); |
Josef Bacik | e7070be | 2014-12-16 08:54:43 -0800 | [diff] [blame] | 167 | else |
| 168 | list_move(&root->dirty_list, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 169 | &fs_info->dirty_cowonly_roots); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 170 | } |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 171 | spin_unlock(&fs_info->trans_lock); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 172 | } |
| 173 | |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 174 | /* |
| 175 | * used by snapshot creation to make a copy of a root for a tree with |
| 176 | * a given objectid. The buffer with the new root node is returned in |
| 177 | * cow_ret, and this func returns zero on success or a negative error code. |
| 178 | */ |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 179 | int btrfs_copy_root(struct btrfs_trans_handle *trans, |
| 180 | struct btrfs_root *root, |
| 181 | struct extent_buffer *buf, |
| 182 | struct extent_buffer **cow_ret, u64 new_root_objectid) |
| 183 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 184 | struct btrfs_fs_info *fs_info = root->fs_info; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 185 | struct extent_buffer *cow; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 186 | int ret = 0; |
| 187 | int level; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 188 | struct btrfs_disk_key disk_key; |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 189 | |
Qu Wenruo | 92a7cc4 | 2020-05-15 14:01:40 +0800 | [diff] [blame] | 190 | WARN_ON(test_bit(BTRFS_ROOT_SHAREABLE, &root->state) && |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 191 | trans->transid != fs_info->running_transaction->transid); |
Qu Wenruo | 92a7cc4 | 2020-05-15 14:01:40 +0800 | [diff] [blame] | 192 | WARN_ON(test_bit(BTRFS_ROOT_SHAREABLE, &root->state) && |
Miao Xie | 27cdeb7 | 2014-04-02 19:51:05 +0800 | [diff] [blame] | 193 | trans->transid != root->last_trans); |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 194 | |
| 195 | level = btrfs_header_level(buf); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 196 | if (level == 0) |
| 197 | btrfs_item_key(buf, &disk_key, 0); |
| 198 | else |
| 199 | btrfs_node_key(buf, &disk_key, 0); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 200 | |
David Sterba | 4d75f8a | 2014-06-15 01:54:12 +0200 | [diff] [blame] | 201 | cow = btrfs_alloc_tree_block(trans, root, 0, new_root_objectid, |
Josef Bacik | cf6f34a | 2020-08-20 11:46:07 -0400 | [diff] [blame] | 202 | &disk_key, level, buf->start, 0, |
| 203 | BTRFS_NESTING_NEW_ROOT); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 204 | if (IS_ERR(cow)) |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 205 | return PTR_ERR(cow); |
| 206 | |
David Sterba | 58e8012 | 2016-11-08 18:30:31 +0100 | [diff] [blame] | 207 | copy_extent_buffer_full(cow, buf); |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 208 | btrfs_set_header_bytenr(cow, cow->start); |
| 209 | btrfs_set_header_generation(cow, trans->transid); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 210 | btrfs_set_header_backref_rev(cow, BTRFS_MIXED_BACKREF_REV); |
| 211 | btrfs_clear_header_flag(cow, BTRFS_HEADER_FLAG_WRITTEN | |
| 212 | BTRFS_HEADER_FLAG_RELOC); |
| 213 | if (new_root_objectid == BTRFS_TREE_RELOC_OBJECTID) |
| 214 | btrfs_set_header_flag(cow, BTRFS_HEADER_FLAG_RELOC); |
| 215 | else |
| 216 | btrfs_set_header_owner(cow, new_root_objectid); |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 217 | |
Nikolay Borisov | de37aa5 | 2018-10-30 16:43:24 +0200 | [diff] [blame] | 218 | write_extent_buffer_fsid(cow, fs_info->fs_devices->metadata_uuid); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 219 | |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 220 | WARN_ON(btrfs_header_generation(buf) > trans->transid); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 221 | if (new_root_objectid == BTRFS_TREE_RELOC_OBJECTID) |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 222 | ret = btrfs_inc_ref(trans, root, cow, 1); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 223 | else |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 224 | ret = btrfs_inc_ref(trans, root, cow, 0); |
Josef Bacik | 867ed32 | 2021-01-14 14:02:46 -0500 | [diff] [blame] | 225 | if (ret) { |
Filipe Manana | 72c9925 | 2021-02-04 14:35:44 +0000 | [diff] [blame] | 226 | btrfs_tree_unlock(cow); |
| 227 | free_extent_buffer(cow); |
Josef Bacik | 867ed32 | 2021-01-14 14:02:46 -0500 | [diff] [blame] | 228 | btrfs_abort_transaction(trans, ret); |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 229 | return ret; |
Josef Bacik | 867ed32 | 2021-01-14 14:02:46 -0500 | [diff] [blame] | 230 | } |
Chris Mason | be20aa9 | 2007-12-17 20:14:01 -0500 | [diff] [blame] | 231 | |
| 232 | btrfs_mark_buffer_dirty(cow); |
| 233 | *cow_ret = cow; |
| 234 | return 0; |
| 235 | } |
| 236 | |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 237 | /* |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 238 | * check if the tree block can be shared by multiple trees |
| 239 | */ |
| 240 | int btrfs_block_can_be_shared(struct btrfs_root *root, |
| 241 | struct extent_buffer *buf) |
| 242 | { |
| 243 | /* |
Qu Wenruo | 92a7cc4 | 2020-05-15 14:01:40 +0800 | [diff] [blame] | 244 | * Tree blocks not in shareable trees and tree roots are never shared. |
| 245 | * If a block was allocated after the last snapshot and the block was |
| 246 | * not allocated by tree relocation, we know the block is not shared. |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 247 | */ |
Qu Wenruo | 92a7cc4 | 2020-05-15 14:01:40 +0800 | [diff] [blame] | 248 | if (test_bit(BTRFS_ROOT_SHAREABLE, &root->state) && |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 249 | buf != root->node && buf != root->commit_root && |
| 250 | (btrfs_header_generation(buf) <= |
| 251 | btrfs_root_last_snapshot(&root->root_item) || |
| 252 | btrfs_header_flag(buf, BTRFS_HEADER_FLAG_RELOC))) |
| 253 | return 1; |
Nikolay Borisov | a79865c | 2018-06-21 09:45:00 +0300 | [diff] [blame] | 254 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 255 | return 0; |
| 256 | } |
| 257 | |
| 258 | static noinline int update_ref_for_cow(struct btrfs_trans_handle *trans, |
| 259 | struct btrfs_root *root, |
| 260 | struct extent_buffer *buf, |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 261 | struct extent_buffer *cow, |
| 262 | int *last_ref) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 263 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 264 | struct btrfs_fs_info *fs_info = root->fs_info; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 265 | u64 refs; |
| 266 | u64 owner; |
| 267 | u64 flags; |
| 268 | u64 new_flags = 0; |
| 269 | int ret; |
| 270 | |
| 271 | /* |
| 272 | * Backrefs update rules: |
| 273 | * |
| 274 | * Always use full backrefs for extent pointers in tree block |
| 275 | * allocated by tree relocation. |
| 276 | * |
| 277 | * If a shared tree block is no longer referenced by its owner |
| 278 | * tree (btrfs_header_owner(buf) == root->root_key.objectid), |
| 279 | * use full backrefs for extent pointers in tree block. |
| 280 | * |
| 281 | * If a tree block is been relocating |
| 282 | * (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID), |
| 283 | * use full backrefs for extent pointers in tree block. |
| 284 | * The reason for this is some operations (such as drop tree) |
| 285 | * are only allowed for blocks use full backrefs. |
| 286 | */ |
| 287 | |
| 288 | if (btrfs_block_can_be_shared(root, buf)) { |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 289 | ret = btrfs_lookup_extent_info(trans, fs_info, buf->start, |
Josef Bacik | 3173a18 | 2013-03-07 14:22:04 -0500 | [diff] [blame] | 290 | btrfs_header_level(buf), 1, |
| 291 | &refs, &flags); |
Mark Fasheh | be1a556 | 2011-08-08 13:20:18 -0700 | [diff] [blame] | 292 | if (ret) |
| 293 | return ret; |
Mark Fasheh | e5df957 | 2011-08-29 14:17:04 -0700 | [diff] [blame] | 294 | if (refs == 0) { |
| 295 | ret = -EROFS; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 296 | btrfs_handle_fs_error(fs_info, ret, NULL); |
Mark Fasheh | e5df957 | 2011-08-29 14:17:04 -0700 | [diff] [blame] | 297 | return ret; |
| 298 | } |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 299 | } else { |
| 300 | refs = 1; |
| 301 | if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID || |
| 302 | btrfs_header_backref_rev(buf) < BTRFS_MIXED_BACKREF_REV) |
| 303 | flags = BTRFS_BLOCK_FLAG_FULL_BACKREF; |
| 304 | else |
| 305 | flags = 0; |
| 306 | } |
| 307 | |
| 308 | owner = btrfs_header_owner(buf); |
| 309 | BUG_ON(owner == BTRFS_TREE_RELOC_OBJECTID && |
| 310 | !(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF)); |
| 311 | |
| 312 | if (refs > 1) { |
| 313 | if ((owner == root->root_key.objectid || |
| 314 | root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID) && |
| 315 | !(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF)) { |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 316 | ret = btrfs_inc_ref(trans, root, buf, 1); |
Jeff Mahoney | 692826b | 2017-11-21 13:58:49 -0500 | [diff] [blame] | 317 | if (ret) |
| 318 | return ret; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 319 | |
| 320 | if (root->root_key.objectid == |
| 321 | BTRFS_TREE_RELOC_OBJECTID) { |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 322 | ret = btrfs_dec_ref(trans, root, buf, 0); |
Jeff Mahoney | 692826b | 2017-11-21 13:58:49 -0500 | [diff] [blame] | 323 | if (ret) |
| 324 | return ret; |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 325 | ret = btrfs_inc_ref(trans, root, cow, 1); |
Jeff Mahoney | 692826b | 2017-11-21 13:58:49 -0500 | [diff] [blame] | 326 | if (ret) |
| 327 | return ret; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 328 | } |
| 329 | new_flags |= BTRFS_BLOCK_FLAG_FULL_BACKREF; |
| 330 | } else { |
| 331 | |
| 332 | if (root->root_key.objectid == |
| 333 | BTRFS_TREE_RELOC_OBJECTID) |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 334 | ret = btrfs_inc_ref(trans, root, cow, 1); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 335 | else |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 336 | ret = btrfs_inc_ref(trans, root, cow, 0); |
Jeff Mahoney | 692826b | 2017-11-21 13:58:49 -0500 | [diff] [blame] | 337 | if (ret) |
| 338 | return ret; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 339 | } |
| 340 | if (new_flags != 0) { |
Josef Bacik | b1c79e0 | 2013-05-09 13:49:30 -0400 | [diff] [blame] | 341 | int level = btrfs_header_level(buf); |
| 342 | |
David Sterba | 42c9d0b | 2019-03-20 11:54:13 +0100 | [diff] [blame] | 343 | ret = btrfs_set_disk_extent_flags(trans, buf, |
Josef Bacik | b1c79e0 | 2013-05-09 13:49:30 -0400 | [diff] [blame] | 344 | new_flags, level, 0); |
Mark Fasheh | be1a556 | 2011-08-08 13:20:18 -0700 | [diff] [blame] | 345 | if (ret) |
| 346 | return ret; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 347 | } |
| 348 | } else { |
| 349 | if (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF) { |
| 350 | if (root->root_key.objectid == |
| 351 | BTRFS_TREE_RELOC_OBJECTID) |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 352 | ret = btrfs_inc_ref(trans, root, cow, 1); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 353 | else |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 354 | ret = btrfs_inc_ref(trans, root, cow, 0); |
Jeff Mahoney | 692826b | 2017-11-21 13:58:49 -0500 | [diff] [blame] | 355 | if (ret) |
| 356 | return ret; |
Josef Bacik | e339a6b | 2014-07-02 10:54:25 -0700 | [diff] [blame] | 357 | ret = btrfs_dec_ref(trans, root, buf, 1); |
Jeff Mahoney | 692826b | 2017-11-21 13:58:49 -0500 | [diff] [blame] | 358 | if (ret) |
| 359 | return ret; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 360 | } |
David Sterba | 6a884d7d | 2019-03-20 14:30:02 +0100 | [diff] [blame] | 361 | btrfs_clean_tree_block(buf); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 362 | *last_ref = 1; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 363 | } |
| 364 | return 0; |
| 365 | } |
| 366 | |
| 367 | /* |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 368 | * does the dirty work in cow of a single block. The parent block (if |
| 369 | * supplied) is updated to point to the new cow copy. The new buffer is marked |
| 370 | * dirty and returned locked. If you modify the block it needs to be marked |
| 371 | * dirty again. |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 372 | * |
| 373 | * search_start -- an allocation hint for the new block |
| 374 | * |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 375 | * empty_size -- a hint that you plan on doing more cow. This is the size in |
| 376 | * bytes the allocator should try to find free next to the block it returns. |
| 377 | * This is just a hint and may be ignored by the allocator. |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 378 | */ |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 379 | static noinline int __btrfs_cow_block(struct btrfs_trans_handle *trans, |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 380 | struct btrfs_root *root, |
| 381 | struct extent_buffer *buf, |
| 382 | struct extent_buffer *parent, int parent_slot, |
| 383 | struct extent_buffer **cow_ret, |
Josef Bacik | 9631e4c | 2020-08-20 11:46:03 -0400 | [diff] [blame] | 384 | u64 search_start, u64 empty_size, |
| 385 | enum btrfs_lock_nesting nest) |
Chris Mason | 6702ed4 | 2007-08-07 16:15:09 -0400 | [diff] [blame] | 386 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 387 | struct btrfs_fs_info *fs_info = root->fs_info; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 388 | struct btrfs_disk_key disk_key; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 389 | struct extent_buffer *cow; |
Mark Fasheh | be1a556 | 2011-08-08 13:20:18 -0700 | [diff] [blame] | 390 | int level, ret; |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 391 | int last_ref = 0; |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 392 | int unlock_orig = 0; |
Goldwyn Rodrigues | 0f5053e | 2016-09-22 14:11:34 -0500 | [diff] [blame] | 393 | u64 parent_start = 0; |
Chris Mason | 6702ed4 | 2007-08-07 16:15:09 -0400 | [diff] [blame] | 394 | |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 395 | if (*cow_ret == buf) |
| 396 | unlock_orig = 1; |
| 397 | |
Filipe Manana | 49d0c64 | 2021-09-22 10:36:45 +0100 | [diff] [blame] | 398 | btrfs_assert_tree_write_locked(buf); |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 399 | |
Qu Wenruo | 92a7cc4 | 2020-05-15 14:01:40 +0800 | [diff] [blame] | 400 | WARN_ON(test_bit(BTRFS_ROOT_SHAREABLE, &root->state) && |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 401 | trans->transid != fs_info->running_transaction->transid); |
Qu Wenruo | 92a7cc4 | 2020-05-15 14:01:40 +0800 | [diff] [blame] | 402 | WARN_ON(test_bit(BTRFS_ROOT_SHAREABLE, &root->state) && |
Miao Xie | 27cdeb7 | 2014-04-02 19:51:05 +0800 | [diff] [blame] | 403 | trans->transid != root->last_trans); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 404 | |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 405 | level = btrfs_header_level(buf); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 406 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 407 | if (level == 0) |
| 408 | btrfs_item_key(buf, &disk_key, 0); |
| 409 | else |
| 410 | btrfs_node_key(buf, &disk_key, 0); |
| 411 | |
Goldwyn Rodrigues | 0f5053e | 2016-09-22 14:11:34 -0500 | [diff] [blame] | 412 | if ((root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID) && parent) |
| 413 | parent_start = parent->start; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 414 | |
Filipe Manana | 79bd371 | 2021-06-29 14:43:06 +0100 | [diff] [blame] | 415 | cow = btrfs_alloc_tree_block(trans, root, parent_start, |
| 416 | root->root_key.objectid, &disk_key, level, |
| 417 | search_start, empty_size, nest); |
Chris Mason | 6702ed4 | 2007-08-07 16:15:09 -0400 | [diff] [blame] | 418 | if (IS_ERR(cow)) |
| 419 | return PTR_ERR(cow); |
| 420 | |
Chris Mason | b4ce94d | 2009-02-04 09:25:08 -0500 | [diff] [blame] | 421 | /* cow is set to blocking by btrfs_init_new_buffer */ |
| 422 | |
David Sterba | 58e8012 | 2016-11-08 18:30:31 +0100 | [diff] [blame] | 423 | copy_extent_buffer_full(cow, buf); |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 424 | btrfs_set_header_bytenr(cow, cow->start); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 425 | btrfs_set_header_generation(cow, trans->transid); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 426 | btrfs_set_header_backref_rev(cow, BTRFS_MIXED_BACKREF_REV); |
| 427 | btrfs_clear_header_flag(cow, BTRFS_HEADER_FLAG_WRITTEN | |
| 428 | BTRFS_HEADER_FLAG_RELOC); |
| 429 | if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID) |
| 430 | btrfs_set_header_flag(cow, BTRFS_HEADER_FLAG_RELOC); |
| 431 | else |
| 432 | btrfs_set_header_owner(cow, root->root_key.objectid); |
Chris Mason | 6702ed4 | 2007-08-07 16:15:09 -0400 | [diff] [blame] | 433 | |
Nikolay Borisov | de37aa5 | 2018-10-30 16:43:24 +0200 | [diff] [blame] | 434 | write_extent_buffer_fsid(cow, fs_info->fs_devices->metadata_uuid); |
Yan Zheng | 2b82032 | 2008-11-17 21:11:30 -0500 | [diff] [blame] | 435 | |
Mark Fasheh | be1a556 | 2011-08-08 13:20:18 -0700 | [diff] [blame] | 436 | ret = update_ref_for_cow(trans, root, buf, cow, &last_ref); |
Mark Fasheh | b68dc2a | 2011-08-29 14:30:39 -0700 | [diff] [blame] | 437 | if (ret) { |
Josef Bacik | 572c83a | 2020-09-29 08:53:54 -0400 | [diff] [blame] | 438 | btrfs_tree_unlock(cow); |
| 439 | free_extent_buffer(cow); |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 440 | btrfs_abort_transaction(trans, ret); |
Mark Fasheh | b68dc2a | 2011-08-29 14:30:39 -0700 | [diff] [blame] | 441 | return ret; |
| 442 | } |
Zheng Yan | 1a40e23 | 2008-09-26 10:09:34 -0400 | [diff] [blame] | 443 | |
Qu Wenruo | 92a7cc4 | 2020-05-15 14:01:40 +0800 | [diff] [blame] | 444 | if (test_bit(BTRFS_ROOT_SHAREABLE, &root->state)) { |
Josef Bacik | 83d4cfd | 2013-08-30 15:09:51 -0400 | [diff] [blame] | 445 | ret = btrfs_reloc_cow_block(trans, root, buf, cow); |
Zhaolei | 93314e3 | 2015-08-06 21:56:58 +0800 | [diff] [blame] | 446 | if (ret) { |
Josef Bacik | 572c83a | 2020-09-29 08:53:54 -0400 | [diff] [blame] | 447 | btrfs_tree_unlock(cow); |
| 448 | free_extent_buffer(cow); |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 449 | btrfs_abort_transaction(trans, ret); |
Josef Bacik | 83d4cfd | 2013-08-30 15:09:51 -0400 | [diff] [blame] | 450 | return ret; |
Zhaolei | 93314e3 | 2015-08-06 21:56:58 +0800 | [diff] [blame] | 451 | } |
Josef Bacik | 83d4cfd | 2013-08-30 15:09:51 -0400 | [diff] [blame] | 452 | } |
Yan, Zheng | 3fd0a55 | 2010-05-16 10:49:59 -0400 | [diff] [blame] | 453 | |
Chris Mason | 6702ed4 | 2007-08-07 16:15:09 -0400 | [diff] [blame] | 454 | if (buf == root->node) { |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 455 | WARN_ON(parent && parent != buf); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 456 | if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID || |
| 457 | btrfs_header_backref_rev(buf) < BTRFS_MIXED_BACKREF_REV) |
| 458 | parent_start = buf->start; |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 459 | |
David Sterba | 67439da | 2019-10-08 13:28:47 +0200 | [diff] [blame] | 460 | atomic_inc(&cow->refs); |
Filipe Manana | 406808a | 2021-03-11 14:31:08 +0000 | [diff] [blame] | 461 | ret = btrfs_tree_mod_log_insert_root(root->node, cow, true); |
David Sterba | d9d19a0 | 2018-03-05 16:35:29 +0100 | [diff] [blame] | 462 | BUG_ON(ret < 0); |
Chris Mason | 240f62c | 2011-03-23 14:54:42 -0400 | [diff] [blame] | 463 | rcu_assign_pointer(root->node, cow); |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 464 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 465 | btrfs_free_tree_block(trans, root, buf, parent_start, |
Jan Schmidt | 5581a51 | 2012-05-16 17:04:52 +0200 | [diff] [blame] | 466 | last_ref); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 467 | free_extent_buffer(buf); |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 468 | add_root_to_dirty_list(root); |
Chris Mason | 6702ed4 | 2007-08-07 16:15:09 -0400 | [diff] [blame] | 469 | } else { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 470 | WARN_ON(trans->transid != btrfs_header_generation(parent)); |
Filipe Manana | f3a84cc | 2021-03-11 14:31:07 +0000 | [diff] [blame] | 471 | btrfs_tree_mod_log_insert_key(parent, parent_slot, |
| 472 | BTRFS_MOD_LOG_KEY_REPLACE, GFP_NOFS); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 473 | btrfs_set_node_blockptr(parent, parent_slot, |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 474 | cow->start); |
Chris Mason | 74493f7 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 475 | btrfs_set_node_ptr_generation(parent, parent_slot, |
| 476 | trans->transid); |
Chris Mason | 6702ed4 | 2007-08-07 16:15:09 -0400 | [diff] [blame] | 477 | btrfs_mark_buffer_dirty(parent); |
Filipe David Borba Manana | 5de865e | 2013-12-20 15:17:46 +0000 | [diff] [blame] | 478 | if (last_ref) { |
Filipe Manana | f3a84cc | 2021-03-11 14:31:07 +0000 | [diff] [blame] | 479 | ret = btrfs_tree_mod_log_free_eb(buf); |
Filipe David Borba Manana | 5de865e | 2013-12-20 15:17:46 +0000 | [diff] [blame] | 480 | if (ret) { |
Josef Bacik | 572c83a | 2020-09-29 08:53:54 -0400 | [diff] [blame] | 481 | btrfs_tree_unlock(cow); |
| 482 | free_extent_buffer(cow); |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 483 | btrfs_abort_transaction(trans, ret); |
Filipe David Borba Manana | 5de865e | 2013-12-20 15:17:46 +0000 | [diff] [blame] | 484 | return ret; |
| 485 | } |
| 486 | } |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 487 | btrfs_free_tree_block(trans, root, buf, parent_start, |
Jan Schmidt | 5581a51 | 2012-05-16 17:04:52 +0200 | [diff] [blame] | 488 | last_ref); |
Chris Mason | 6702ed4 | 2007-08-07 16:15:09 -0400 | [diff] [blame] | 489 | } |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 490 | if (unlock_orig) |
| 491 | btrfs_tree_unlock(buf); |
Josef Bacik | 3083ee2 | 2012-03-09 16:01:49 -0500 | [diff] [blame] | 492 | free_extent_buffer_stale(buf); |
Chris Mason | 6702ed4 | 2007-08-07 16:15:09 -0400 | [diff] [blame] | 493 | btrfs_mark_buffer_dirty(cow); |
| 494 | *cow_ret = cow; |
| 495 | return 0; |
| 496 | } |
| 497 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 498 | static inline int should_cow_block(struct btrfs_trans_handle *trans, |
| 499 | struct btrfs_root *root, |
| 500 | struct extent_buffer *buf) |
| 501 | { |
Jeff Mahoney | f5ee5c9 | 2016-06-21 09:52:41 -0400 | [diff] [blame] | 502 | if (btrfs_is_testing(root->fs_info)) |
Josef Bacik | faa2dbf | 2014-05-07 17:06:09 -0400 | [diff] [blame] | 503 | return 0; |
David Sterba | fccb84c | 2014-09-29 23:53:21 +0200 | [diff] [blame] | 504 | |
David Sterba | d198013 | 2018-03-16 02:39:40 +0100 | [diff] [blame] | 505 | /* Ensure we can see the FORCE_COW bit */ |
| 506 | smp_mb__before_atomic(); |
Liu Bo | f1ebcc7 | 2011-11-14 20:48:06 -0500 | [diff] [blame] | 507 | |
| 508 | /* |
| 509 | * We do not need to cow a block if |
| 510 | * 1) this block is not created or changed in this transaction; |
| 511 | * 2) this block does not belong to TREE_RELOC tree; |
| 512 | * 3) the root is not forced COW. |
| 513 | * |
| 514 | * What is forced COW: |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 515 | * when we create snapshot during committing the transaction, |
Andrea Gelmini | 52042d8 | 2018-11-28 12:05:13 +0100 | [diff] [blame] | 516 | * after we've finished copying src root, we must COW the shared |
Liu Bo | f1ebcc7 | 2011-11-14 20:48:06 -0500 | [diff] [blame] | 517 | * block to ensure the metadata consistency. |
| 518 | */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 519 | if (btrfs_header_generation(buf) == trans->transid && |
| 520 | !btrfs_header_flag(buf, BTRFS_HEADER_FLAG_WRITTEN) && |
| 521 | !(root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID && |
Liu Bo | f1ebcc7 | 2011-11-14 20:48:06 -0500 | [diff] [blame] | 522 | btrfs_header_flag(buf, BTRFS_HEADER_FLAG_RELOC)) && |
Miao Xie | 27cdeb7 | 2014-04-02 19:51:05 +0800 | [diff] [blame] | 523 | !test_bit(BTRFS_ROOT_FORCE_COW, &root->state)) |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 524 | return 0; |
| 525 | return 1; |
| 526 | } |
| 527 | |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 528 | /* |
| 529 | * cows a single block, see __btrfs_cow_block for the real work. |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 530 | * This version of it has extra checks so that a block isn't COWed more than |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 531 | * once per transaction, as long as it hasn't been written yet |
| 532 | */ |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 533 | noinline int btrfs_cow_block(struct btrfs_trans_handle *trans, |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 534 | struct btrfs_root *root, struct extent_buffer *buf, |
| 535 | struct extent_buffer *parent, int parent_slot, |
Josef Bacik | 9631e4c | 2020-08-20 11:46:03 -0400 | [diff] [blame] | 536 | struct extent_buffer **cow_ret, |
| 537 | enum btrfs_lock_nesting nest) |
Chris Mason | 02217ed | 2007-03-02 16:08:05 -0500 | [diff] [blame] | 538 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 539 | struct btrfs_fs_info *fs_info = root->fs_info; |
Chris Mason | 6702ed4 | 2007-08-07 16:15:09 -0400 | [diff] [blame] | 540 | u64 search_start; |
Chris Mason | f510cfe | 2007-10-15 16:14:48 -0400 | [diff] [blame] | 541 | int ret; |
Chris Mason | dc17ff8 | 2008-01-08 15:46:30 -0500 | [diff] [blame] | 542 | |
Josef Bacik | 83354f0 | 2018-11-30 11:52:13 -0500 | [diff] [blame] | 543 | if (test_bit(BTRFS_ROOT_DELETING, &root->state)) |
| 544 | btrfs_err(fs_info, |
| 545 | "COW'ing blocks on a fs root that's being dropped"); |
| 546 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 547 | if (trans->transaction != fs_info->running_transaction) |
Julia Lawall | 31b1a2b | 2012-11-03 10:58:34 +0000 | [diff] [blame] | 548 | WARN(1, KERN_CRIT "trans %llu running %llu\n", |
Geert Uytterhoeven | c1c9ff7 | 2013-08-20 13:20:07 +0200 | [diff] [blame] | 549 | trans->transid, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 550 | fs_info->running_transaction->transid); |
Julia Lawall | 31b1a2b | 2012-11-03 10:58:34 +0000 | [diff] [blame] | 551 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 552 | if (trans->transid != fs_info->generation) |
Julia Lawall | 31b1a2b | 2012-11-03 10:58:34 +0000 | [diff] [blame] | 553 | WARN(1, KERN_CRIT "trans %llu running %llu\n", |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 554 | trans->transid, fs_info->generation); |
Chris Mason | dc17ff8 | 2008-01-08 15:46:30 -0500 | [diff] [blame] | 555 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 556 | if (!should_cow_block(trans, root, buf)) { |
Chris Mason | 02217ed | 2007-03-02 16:08:05 -0500 | [diff] [blame] | 557 | *cow_ret = buf; |
| 558 | return 0; |
| 559 | } |
Chris Mason | c487685 | 2009-02-04 09:24:25 -0500 | [diff] [blame] | 560 | |
Byongho Lee | ee22184 | 2015-12-15 01:42:10 +0900 | [diff] [blame] | 561 | search_start = buf->start & ~((u64)SZ_1G - 1); |
Chris Mason | b4ce94d | 2009-02-04 09:25:08 -0500 | [diff] [blame] | 562 | |
Qu Wenruo | f616f5c | 2019-01-23 15:15:17 +0800 | [diff] [blame] | 563 | /* |
| 564 | * Before CoWing this block for later modification, check if it's |
| 565 | * the subtree root and do the delayed subtree trace if needed. |
| 566 | * |
| 567 | * Also We don't care about the error, as it's handled internally. |
| 568 | */ |
| 569 | btrfs_qgroup_trace_subtree_after_cow(trans, root, buf); |
Chris Mason | f510cfe | 2007-10-15 16:14:48 -0400 | [diff] [blame] | 570 | ret = __btrfs_cow_block(trans, root, buf, parent, |
Josef Bacik | 9631e4c | 2020-08-20 11:46:03 -0400 | [diff] [blame] | 571 | parent_slot, cow_ret, search_start, 0, nest); |
liubo | 1abe9b8 | 2011-03-24 11:18:59 +0000 | [diff] [blame] | 572 | |
| 573 | trace_btrfs_cow_block(root, buf, *cow_ret); |
| 574 | |
Chris Mason | f510cfe | 2007-10-15 16:14:48 -0400 | [diff] [blame] | 575 | return ret; |
Chris Mason | 6702ed4 | 2007-08-07 16:15:09 -0400 | [diff] [blame] | 576 | } |
Josef Bacik | f75e2b7 | 2020-12-16 11:18:43 -0500 | [diff] [blame] | 577 | ALLOW_ERROR_INJECTION(btrfs_cow_block, ERRNO); |
Chris Mason | 6702ed4 | 2007-08-07 16:15:09 -0400 | [diff] [blame] | 578 | |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 579 | /* |
| 580 | * helper function for defrag to decide if two blocks pointed to by a |
| 581 | * node are actually close by |
| 582 | */ |
Chris Mason | 6b80053 | 2007-10-15 16:17:34 -0400 | [diff] [blame] | 583 | static int close_blocks(u64 blocknr, u64 other, u32 blocksize) |
Chris Mason | 6702ed4 | 2007-08-07 16:15:09 -0400 | [diff] [blame] | 584 | { |
Chris Mason | 6b80053 | 2007-10-15 16:17:34 -0400 | [diff] [blame] | 585 | if (blocknr < other && other - (blocknr + blocksize) < 32768) |
Chris Mason | 6702ed4 | 2007-08-07 16:15:09 -0400 | [diff] [blame] | 586 | return 1; |
Chris Mason | 6b80053 | 2007-10-15 16:17:34 -0400 | [diff] [blame] | 587 | if (blocknr > other && blocknr - (other + blocksize) < 32768) |
Chris Mason | 6702ed4 | 2007-08-07 16:15:09 -0400 | [diff] [blame] | 588 | return 1; |
Chris Mason | 02217ed | 2007-03-02 16:08:05 -0500 | [diff] [blame] | 589 | return 0; |
| 590 | } |
| 591 | |
David Sterba | ce6ef5a | 2020-06-08 16:06:07 +0200 | [diff] [blame] | 592 | #ifdef __LITTLE_ENDIAN |
| 593 | |
| 594 | /* |
| 595 | * Compare two keys, on little-endian the disk order is same as CPU order and |
| 596 | * we can avoid the conversion. |
| 597 | */ |
| 598 | static int comp_keys(const struct btrfs_disk_key *disk_key, |
| 599 | const struct btrfs_key *k2) |
| 600 | { |
| 601 | const struct btrfs_key *k1 = (const struct btrfs_key *)disk_key; |
| 602 | |
| 603 | return btrfs_comp_cpu_keys(k1, k2); |
| 604 | } |
| 605 | |
| 606 | #else |
| 607 | |
Chris Mason | 081e957 | 2007-11-06 10:26:24 -0500 | [diff] [blame] | 608 | /* |
| 609 | * compare two keys in a memcmp fashion |
| 610 | */ |
Omar Sandoval | 310712b | 2017-01-17 23:24:37 -0800 | [diff] [blame] | 611 | static int comp_keys(const struct btrfs_disk_key *disk, |
| 612 | const struct btrfs_key *k2) |
Chris Mason | 081e957 | 2007-11-06 10:26:24 -0500 | [diff] [blame] | 613 | { |
| 614 | struct btrfs_key k1; |
| 615 | |
| 616 | btrfs_disk_key_to_cpu(&k1, disk); |
| 617 | |
Diego Calleja | 20736ab | 2009-07-24 11:06:52 -0400 | [diff] [blame] | 618 | return btrfs_comp_cpu_keys(&k1, k2); |
Chris Mason | 081e957 | 2007-11-06 10:26:24 -0500 | [diff] [blame] | 619 | } |
David Sterba | ce6ef5a | 2020-06-08 16:06:07 +0200 | [diff] [blame] | 620 | #endif |
Chris Mason | 081e957 | 2007-11-06 10:26:24 -0500 | [diff] [blame] | 621 | |
Josef Bacik | f3465ca | 2008-11-12 14:19:50 -0500 | [diff] [blame] | 622 | /* |
| 623 | * same as comp_keys only with two btrfs_key's |
| 624 | */ |
David Sterba | e1f60a6 | 2019-10-01 19:57:39 +0200 | [diff] [blame] | 625 | int __pure btrfs_comp_cpu_keys(const struct btrfs_key *k1, const struct btrfs_key *k2) |
Josef Bacik | f3465ca | 2008-11-12 14:19:50 -0500 | [diff] [blame] | 626 | { |
| 627 | if (k1->objectid > k2->objectid) |
| 628 | return 1; |
| 629 | if (k1->objectid < k2->objectid) |
| 630 | return -1; |
| 631 | if (k1->type > k2->type) |
| 632 | return 1; |
| 633 | if (k1->type < k2->type) |
| 634 | return -1; |
| 635 | if (k1->offset > k2->offset) |
| 636 | return 1; |
| 637 | if (k1->offset < k2->offset) |
| 638 | return -1; |
| 639 | return 0; |
| 640 | } |
Chris Mason | 081e957 | 2007-11-06 10:26:24 -0500 | [diff] [blame] | 641 | |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 642 | /* |
| 643 | * this is used by the defrag code to go through all the |
| 644 | * leaves pointed to by a node and reallocate them so that |
| 645 | * disk order is close to key order |
| 646 | */ |
Chris Mason | 6702ed4 | 2007-08-07 16:15:09 -0400 | [diff] [blame] | 647 | int btrfs_realloc_node(struct btrfs_trans_handle *trans, |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 648 | struct btrfs_root *root, struct extent_buffer *parent, |
Eric Sandeen | de78b51 | 2013-01-31 18:21:12 +0000 | [diff] [blame] | 649 | int start_slot, u64 *last_ret, |
Chris Mason | a6b6e75 | 2007-10-15 16:22:39 -0400 | [diff] [blame] | 650 | struct btrfs_key *progress) |
Chris Mason | 6702ed4 | 2007-08-07 16:15:09 -0400 | [diff] [blame] | 651 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 652 | struct btrfs_fs_info *fs_info = root->fs_info; |
Chris Mason | 6b80053 | 2007-10-15 16:17:34 -0400 | [diff] [blame] | 653 | struct extent_buffer *cur; |
Chris Mason | 6702ed4 | 2007-08-07 16:15:09 -0400 | [diff] [blame] | 654 | u64 blocknr; |
Chris Mason | e9d0b13 | 2007-08-10 14:06:19 -0400 | [diff] [blame] | 655 | u64 search_start = *last_ret; |
| 656 | u64 last_block = 0; |
Chris Mason | 6702ed4 | 2007-08-07 16:15:09 -0400 | [diff] [blame] | 657 | u64 other; |
| 658 | u32 parent_nritems; |
Chris Mason | 6702ed4 | 2007-08-07 16:15:09 -0400 | [diff] [blame] | 659 | int end_slot; |
| 660 | int i; |
| 661 | int err = 0; |
Chris Mason | 6b80053 | 2007-10-15 16:17:34 -0400 | [diff] [blame] | 662 | u32 blocksize; |
Chris Mason | 081e957 | 2007-11-06 10:26:24 -0500 | [diff] [blame] | 663 | int progress_passed = 0; |
| 664 | struct btrfs_disk_key disk_key; |
Chris Mason | 6702ed4 | 2007-08-07 16:15:09 -0400 | [diff] [blame] | 665 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 666 | WARN_ON(trans->transaction != fs_info->running_transaction); |
| 667 | WARN_ON(trans->transid != fs_info->generation); |
Chris Mason | 86479a0 | 2007-09-10 19:58:16 -0400 | [diff] [blame] | 668 | |
Chris Mason | 6b80053 | 2007-10-15 16:17:34 -0400 | [diff] [blame] | 669 | parent_nritems = btrfs_header_nritems(parent); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 670 | blocksize = fs_info->nodesize; |
Filipe Manana | 5dfe2be | 2015-02-23 19:48:52 +0000 | [diff] [blame] | 671 | end_slot = parent_nritems - 1; |
Chris Mason | 6702ed4 | 2007-08-07 16:15:09 -0400 | [diff] [blame] | 672 | |
Filipe Manana | 5dfe2be | 2015-02-23 19:48:52 +0000 | [diff] [blame] | 673 | if (parent_nritems <= 1) |
Chris Mason | 6702ed4 | 2007-08-07 16:15:09 -0400 | [diff] [blame] | 674 | return 0; |
| 675 | |
Filipe Manana | 5dfe2be | 2015-02-23 19:48:52 +0000 | [diff] [blame] | 676 | for (i = start_slot; i <= end_slot; i++) { |
Chris Mason | 6702ed4 | 2007-08-07 16:15:09 -0400 | [diff] [blame] | 677 | int close = 1; |
Chris Mason | a6b6e75 | 2007-10-15 16:22:39 -0400 | [diff] [blame] | 678 | |
Chris Mason | 081e957 | 2007-11-06 10:26:24 -0500 | [diff] [blame] | 679 | btrfs_node_key(parent, &disk_key, i); |
| 680 | if (!progress_passed && comp_keys(&disk_key, progress) < 0) |
| 681 | continue; |
| 682 | |
| 683 | progress_passed = 1; |
Chris Mason | 6b80053 | 2007-10-15 16:17:34 -0400 | [diff] [blame] | 684 | blocknr = btrfs_node_blockptr(parent, i); |
Chris Mason | e9d0b13 | 2007-08-10 14:06:19 -0400 | [diff] [blame] | 685 | if (last_block == 0) |
| 686 | last_block = blocknr; |
Chris Mason | 5708b95 | 2007-10-25 15:43:18 -0400 | [diff] [blame] | 687 | |
Chris Mason | 6702ed4 | 2007-08-07 16:15:09 -0400 | [diff] [blame] | 688 | if (i > 0) { |
Chris Mason | 6b80053 | 2007-10-15 16:17:34 -0400 | [diff] [blame] | 689 | other = btrfs_node_blockptr(parent, i - 1); |
| 690 | close = close_blocks(blocknr, other, blocksize); |
Chris Mason | 6702ed4 | 2007-08-07 16:15:09 -0400 | [diff] [blame] | 691 | } |
Filipe Manana | 5dfe2be | 2015-02-23 19:48:52 +0000 | [diff] [blame] | 692 | if (!close && i < end_slot) { |
Chris Mason | 6b80053 | 2007-10-15 16:17:34 -0400 | [diff] [blame] | 693 | other = btrfs_node_blockptr(parent, i + 1); |
| 694 | close = close_blocks(blocknr, other, blocksize); |
Chris Mason | 6702ed4 | 2007-08-07 16:15:09 -0400 | [diff] [blame] | 695 | } |
Chris Mason | e9d0b13 | 2007-08-10 14:06:19 -0400 | [diff] [blame] | 696 | if (close) { |
| 697 | last_block = blocknr; |
Chris Mason | 6702ed4 | 2007-08-07 16:15:09 -0400 | [diff] [blame] | 698 | continue; |
Chris Mason | e9d0b13 | 2007-08-10 14:06:19 -0400 | [diff] [blame] | 699 | } |
Chris Mason | 6702ed4 | 2007-08-07 16:15:09 -0400 | [diff] [blame] | 700 | |
Josef Bacik | 206983b | 2020-11-05 10:45:10 -0500 | [diff] [blame] | 701 | cur = btrfs_read_node_slot(parent, i); |
| 702 | if (IS_ERR(cur)) |
| 703 | return PTR_ERR(cur); |
Chris Mason | e9d0b13 | 2007-08-10 14:06:19 -0400 | [diff] [blame] | 704 | if (search_start == 0) |
Chris Mason | 6b80053 | 2007-10-15 16:17:34 -0400 | [diff] [blame] | 705 | search_start = last_block; |
Chris Mason | e9d0b13 | 2007-08-10 14:06:19 -0400 | [diff] [blame] | 706 | |
Chris Mason | e7a8456 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 707 | btrfs_tree_lock(cur); |
Chris Mason | 6b80053 | 2007-10-15 16:17:34 -0400 | [diff] [blame] | 708 | err = __btrfs_cow_block(trans, root, cur, parent, i, |
Chris Mason | e7a8456 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 709 | &cur, search_start, |
Chris Mason | 6b80053 | 2007-10-15 16:17:34 -0400 | [diff] [blame] | 710 | min(16 * blocksize, |
Josef Bacik | 9631e4c | 2020-08-20 11:46:03 -0400 | [diff] [blame] | 711 | (end_slot - i) * blocksize), |
| 712 | BTRFS_NESTING_COW); |
Yan | 252c38f | 2007-08-29 09:11:44 -0400 | [diff] [blame] | 713 | if (err) { |
Chris Mason | e7a8456 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 714 | btrfs_tree_unlock(cur); |
Chris Mason | 6b80053 | 2007-10-15 16:17:34 -0400 | [diff] [blame] | 715 | free_extent_buffer(cur); |
Chris Mason | 6702ed4 | 2007-08-07 16:15:09 -0400 | [diff] [blame] | 716 | break; |
Yan | 252c38f | 2007-08-29 09:11:44 -0400 | [diff] [blame] | 717 | } |
Chris Mason | e7a8456 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 718 | search_start = cur->start; |
| 719 | last_block = cur->start; |
Chris Mason | f2183bd | 2007-08-10 14:42:37 -0400 | [diff] [blame] | 720 | *last_ret = search_start; |
Chris Mason | e7a8456 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 721 | btrfs_tree_unlock(cur); |
| 722 | free_extent_buffer(cur); |
Chris Mason | 6702ed4 | 2007-08-07 16:15:09 -0400 | [diff] [blame] | 723 | } |
| 724 | return err; |
| 725 | } |
| 726 | |
Chris Mason | 74123bd | 2007-02-02 11:05:29 -0500 | [diff] [blame] | 727 | /* |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 728 | * search for key in the extent_buffer. The items start at offset p, |
Marcos Paulo de Souza | 67d5e28 | 2021-07-06 15:13:25 -0300 | [diff] [blame] | 729 | * and they are item_size apart. |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 730 | * |
Chris Mason | 74123bd | 2007-02-02 11:05:29 -0500 | [diff] [blame] | 731 | * the slot in the array is returned via slot, and it points to |
| 732 | * the place where you would insert key if it is not found in |
| 733 | * the array. |
| 734 | * |
Marcos Paulo de Souza | 67d5e28 | 2021-07-06 15:13:25 -0300 | [diff] [blame] | 735 | * Slot may point to total number of items if the key is bigger than |
| 736 | * all of the keys |
Chris Mason | 74123bd | 2007-02-02 11:05:29 -0500 | [diff] [blame] | 737 | */ |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 738 | static noinline int generic_bin_search(struct extent_buffer *eb, |
Omar Sandoval | 310712b | 2017-01-17 23:24:37 -0800 | [diff] [blame] | 739 | unsigned long p, int item_size, |
Marcos Paulo de Souza | 67d5e28 | 2021-07-06 15:13:25 -0300 | [diff] [blame] | 740 | const struct btrfs_key *key, int *slot) |
Chris Mason | be0e5c0 | 2007-01-26 15:51:26 -0500 | [diff] [blame] | 741 | { |
| 742 | int low = 0; |
Marcos Paulo de Souza | 67d5e28 | 2021-07-06 15:13:25 -0300 | [diff] [blame] | 743 | int high = btrfs_header_nritems(eb); |
Chris Mason | be0e5c0 | 2007-01-26 15:51:26 -0500 | [diff] [blame] | 744 | int ret; |
David Sterba | 5cd17f3 | 2020-04-29 23:23:37 +0200 | [diff] [blame] | 745 | const int key_size = sizeof(struct btrfs_disk_key); |
Chris Mason | be0e5c0 | 2007-01-26 15:51:26 -0500 | [diff] [blame] | 746 | |
Liu Bo | 5e24e9a | 2016-06-23 16:32:45 -0700 | [diff] [blame] | 747 | if (low > high) { |
| 748 | btrfs_err(eb->fs_info, |
| 749 | "%s: low (%d) > high (%d) eb %llu owner %llu level %d", |
| 750 | __func__, low, high, eb->start, |
| 751 | btrfs_header_owner(eb), btrfs_header_level(eb)); |
| 752 | return -EINVAL; |
| 753 | } |
| 754 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 755 | while (low < high) { |
David Sterba | 5cd17f3 | 2020-04-29 23:23:37 +0200 | [diff] [blame] | 756 | unsigned long oip; |
| 757 | unsigned long offset; |
| 758 | struct btrfs_disk_key *tmp; |
| 759 | struct btrfs_disk_key unaligned; |
| 760 | int mid; |
| 761 | |
Chris Mason | be0e5c0 | 2007-01-26 15:51:26 -0500 | [diff] [blame] | 762 | mid = (low + high) / 2; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 763 | offset = p + mid * item_size; |
David Sterba | 5cd17f3 | 2020-04-29 23:23:37 +0200 | [diff] [blame] | 764 | oip = offset_in_page(offset); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 765 | |
David Sterba | 5cd17f3 | 2020-04-29 23:23:37 +0200 | [diff] [blame] | 766 | if (oip + key_size <= PAGE_SIZE) { |
Qu Wenruo | 884b07d | 2020-12-02 14:48:04 +0800 | [diff] [blame] | 767 | const unsigned long idx = get_eb_page_index(offset); |
David Sterba | 5cd17f3 | 2020-04-29 23:23:37 +0200 | [diff] [blame] | 768 | char *kaddr = page_address(eb->pages[idx]); |
Chris Mason | 934d375 | 2008-12-08 16:43:10 -0500 | [diff] [blame] | 769 | |
Qu Wenruo | 884b07d | 2020-12-02 14:48:04 +0800 | [diff] [blame] | 770 | oip = get_eb_offset_in_page(eb, offset); |
David Sterba | 5cd17f3 | 2020-04-29 23:23:37 +0200 | [diff] [blame] | 771 | tmp = (struct btrfs_disk_key *)(kaddr + oip); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 772 | } else { |
David Sterba | 5cd17f3 | 2020-04-29 23:23:37 +0200 | [diff] [blame] | 773 | read_extent_buffer(eb, &unaligned, offset, key_size); |
| 774 | tmp = &unaligned; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 775 | } |
David Sterba | 5cd17f3 | 2020-04-29 23:23:37 +0200 | [diff] [blame] | 776 | |
Chris Mason | be0e5c0 | 2007-01-26 15:51:26 -0500 | [diff] [blame] | 777 | ret = comp_keys(tmp, key); |
| 778 | |
| 779 | if (ret < 0) |
| 780 | low = mid + 1; |
| 781 | else if (ret > 0) |
| 782 | high = mid; |
| 783 | else { |
| 784 | *slot = mid; |
| 785 | return 0; |
| 786 | } |
| 787 | } |
| 788 | *slot = low; |
| 789 | return 1; |
| 790 | } |
| 791 | |
Chris Mason | 97571fd | 2007-02-24 13:39:08 -0500 | [diff] [blame] | 792 | /* |
| 793 | * simple bin_search frontend that does the right thing for |
| 794 | * leaves vs nodes |
| 795 | */ |
Nikolay Borisov | a74b35e | 2017-12-08 16:27:43 +0200 | [diff] [blame] | 796 | int btrfs_bin_search(struct extent_buffer *eb, const struct btrfs_key *key, |
Qu Wenruo | e3b8336 | 2020-04-17 15:08:21 +0800 | [diff] [blame] | 797 | int *slot) |
Chris Mason | be0e5c0 | 2007-01-26 15:51:26 -0500 | [diff] [blame] | 798 | { |
Qu Wenruo | e3b8336 | 2020-04-17 15:08:21 +0800 | [diff] [blame] | 799 | if (btrfs_header_level(eb) == 0) |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 800 | return generic_bin_search(eb, |
| 801 | offsetof(struct btrfs_leaf, items), |
Marcos Paulo de Souza | 67d5e28 | 2021-07-06 15:13:25 -0300 | [diff] [blame] | 802 | sizeof(struct btrfs_item), key, slot); |
Wang Sheng-Hui | f775738 | 2012-03-30 15:14:27 +0800 | [diff] [blame] | 803 | else |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 804 | return generic_bin_search(eb, |
| 805 | offsetof(struct btrfs_node, ptrs), |
Marcos Paulo de Souza | 67d5e28 | 2021-07-06 15:13:25 -0300 | [diff] [blame] | 806 | sizeof(struct btrfs_key_ptr), key, slot); |
Chris Mason | be0e5c0 | 2007-01-26 15:51:26 -0500 | [diff] [blame] | 807 | } |
| 808 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 809 | static void root_add_used(struct btrfs_root *root, u32 size) |
| 810 | { |
| 811 | spin_lock(&root->accounting_lock); |
| 812 | btrfs_set_root_used(&root->root_item, |
| 813 | btrfs_root_used(&root->root_item) + size); |
| 814 | spin_unlock(&root->accounting_lock); |
| 815 | } |
| 816 | |
| 817 | static void root_sub_used(struct btrfs_root *root, u32 size) |
| 818 | { |
| 819 | spin_lock(&root->accounting_lock); |
| 820 | btrfs_set_root_used(&root->root_item, |
| 821 | btrfs_root_used(&root->root_item) - size); |
| 822 | spin_unlock(&root->accounting_lock); |
| 823 | } |
| 824 | |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 825 | /* given a node and slot number, this reads the blocks it points to. The |
| 826 | * extent buffer is returned with a reference taken (but unlocked). |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 827 | */ |
David Sterba | 4b231ae | 2019-08-21 19:16:27 +0200 | [diff] [blame] | 828 | struct extent_buffer *btrfs_read_node_slot(struct extent_buffer *parent, |
| 829 | int slot) |
Chris Mason | bb80395 | 2007-03-01 12:04:21 -0500 | [diff] [blame] | 830 | { |
Chris Mason | ca7a79a | 2008-05-12 12:59:19 -0400 | [diff] [blame] | 831 | int level = btrfs_header_level(parent); |
Josef Bacik | 416bc65 | 2013-04-23 14:17:42 -0400 | [diff] [blame] | 832 | struct extent_buffer *eb; |
Qu Wenruo | 581c176 | 2018-03-29 09:08:11 +0800 | [diff] [blame] | 833 | struct btrfs_key first_key; |
Josef Bacik | 416bc65 | 2013-04-23 14:17:42 -0400 | [diff] [blame] | 834 | |
Liu Bo | fb770ae | 2016-07-05 12:10:14 -0700 | [diff] [blame] | 835 | if (slot < 0 || slot >= btrfs_header_nritems(parent)) |
| 836 | return ERR_PTR(-ENOENT); |
Chris Mason | ca7a79a | 2008-05-12 12:59:19 -0400 | [diff] [blame] | 837 | |
| 838 | BUG_ON(level == 0); |
| 839 | |
Qu Wenruo | 581c176 | 2018-03-29 09:08:11 +0800 | [diff] [blame] | 840 | btrfs_node_key_to_cpu(parent, &first_key, slot); |
David Sterba | d0d20b0 | 2019-03-20 14:54:01 +0100 | [diff] [blame] | 841 | eb = read_tree_block(parent->fs_info, btrfs_node_blockptr(parent, slot), |
Josef Bacik | 1b7ec85 | 2020-11-05 10:45:18 -0500 | [diff] [blame] | 842 | btrfs_header_owner(parent), |
Qu Wenruo | 581c176 | 2018-03-29 09:08:11 +0800 | [diff] [blame] | 843 | btrfs_node_ptr_generation(parent, slot), |
| 844 | level - 1, &first_key); |
Liu Bo | fb770ae | 2016-07-05 12:10:14 -0700 | [diff] [blame] | 845 | if (!IS_ERR(eb) && !extent_buffer_uptodate(eb)) { |
| 846 | free_extent_buffer(eb); |
| 847 | eb = ERR_PTR(-EIO); |
Josef Bacik | 416bc65 | 2013-04-23 14:17:42 -0400 | [diff] [blame] | 848 | } |
| 849 | |
| 850 | return eb; |
Chris Mason | bb80395 | 2007-03-01 12:04:21 -0500 | [diff] [blame] | 851 | } |
| 852 | |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 853 | /* |
| 854 | * node level balancing, used to make sure nodes are in proper order for |
| 855 | * item deletion. We balance from the top down, so we have to make sure |
| 856 | * that a deletion won't leave an node completely empty later on. |
| 857 | */ |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 858 | static noinline int balance_level(struct btrfs_trans_handle *trans, |
Chris Mason | 98ed517 | 2008-01-03 10:01:48 -0500 | [diff] [blame] | 859 | struct btrfs_root *root, |
| 860 | struct btrfs_path *path, int level) |
Chris Mason | bb80395 | 2007-03-01 12:04:21 -0500 | [diff] [blame] | 861 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 862 | struct btrfs_fs_info *fs_info = root->fs_info; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 863 | struct extent_buffer *right = NULL; |
| 864 | struct extent_buffer *mid; |
| 865 | struct extent_buffer *left = NULL; |
| 866 | struct extent_buffer *parent = NULL; |
Chris Mason | bb80395 | 2007-03-01 12:04:21 -0500 | [diff] [blame] | 867 | int ret = 0; |
| 868 | int wret; |
| 869 | int pslot; |
Chris Mason | bb80395 | 2007-03-01 12:04:21 -0500 | [diff] [blame] | 870 | int orig_slot = path->slots[level]; |
Chris Mason | 79f95c8 | 2007-03-01 15:16:26 -0500 | [diff] [blame] | 871 | u64 orig_ptr; |
Chris Mason | bb80395 | 2007-03-01 12:04:21 -0500 | [diff] [blame] | 872 | |
Liu Bo | 98e6b1e | 2018-09-12 06:06:23 +0800 | [diff] [blame] | 873 | ASSERT(level > 0); |
Chris Mason | bb80395 | 2007-03-01 12:04:21 -0500 | [diff] [blame] | 874 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 875 | mid = path->nodes[level]; |
Chris Mason | b4ce94d | 2009-02-04 09:25:08 -0500 | [diff] [blame] | 876 | |
Josef Bacik | ac5887c | 2020-08-20 11:46:10 -0400 | [diff] [blame] | 877 | WARN_ON(path->locks[level] != BTRFS_WRITE_LOCK); |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 878 | WARN_ON(btrfs_header_generation(mid) != trans->transid); |
| 879 | |
Chris Mason | 1d4f8a0 | 2007-03-13 09:28:32 -0400 | [diff] [blame] | 880 | orig_ptr = btrfs_node_blockptr(mid, orig_slot); |
Chris Mason | 79f95c8 | 2007-03-01 15:16:26 -0500 | [diff] [blame] | 881 | |
Li Zefan | a05a9bb | 2011-09-06 16:55:34 +0800 | [diff] [blame] | 882 | if (level < BTRFS_MAX_LEVEL - 1) { |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 883 | parent = path->nodes[level + 1]; |
Li Zefan | a05a9bb | 2011-09-06 16:55:34 +0800 | [diff] [blame] | 884 | pslot = path->slots[level + 1]; |
| 885 | } |
Chris Mason | bb80395 | 2007-03-01 12:04:21 -0500 | [diff] [blame] | 886 | |
Chris Mason | 4068947 | 2007-03-17 14:29:23 -0400 | [diff] [blame] | 887 | /* |
| 888 | * deal with the case where there is only one pointer in the root |
| 889 | * by promoting the node below to a root |
| 890 | */ |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 891 | if (!parent) { |
| 892 | struct extent_buffer *child; |
Chris Mason | bb80395 | 2007-03-01 12:04:21 -0500 | [diff] [blame] | 893 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 894 | if (btrfs_header_nritems(mid) != 1) |
Chris Mason | bb80395 | 2007-03-01 12:04:21 -0500 | [diff] [blame] | 895 | return 0; |
| 896 | |
| 897 | /* promote the child to a root */ |
David Sterba | 4b231ae | 2019-08-21 19:16:27 +0200 | [diff] [blame] | 898 | child = btrfs_read_node_slot(mid, 0); |
Liu Bo | fb770ae | 2016-07-05 12:10:14 -0700 | [diff] [blame] | 899 | if (IS_ERR(child)) { |
| 900 | ret = PTR_ERR(child); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 901 | btrfs_handle_fs_error(fs_info, ret, NULL); |
Mark Fasheh | 305a26a | 2011-09-01 11:27:57 -0700 | [diff] [blame] | 902 | goto enospc; |
| 903 | } |
| 904 | |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 905 | btrfs_tree_lock(child); |
Josef Bacik | 9631e4c | 2020-08-20 11:46:03 -0400 | [diff] [blame] | 906 | ret = btrfs_cow_block(trans, root, child, mid, 0, &child, |
| 907 | BTRFS_NESTING_COW); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 908 | if (ret) { |
| 909 | btrfs_tree_unlock(child); |
| 910 | free_extent_buffer(child); |
| 911 | goto enospc; |
| 912 | } |
Yan | 2f375ab | 2008-02-01 14:58:07 -0500 | [diff] [blame] | 913 | |
Filipe Manana | 406808a | 2021-03-11 14:31:08 +0000 | [diff] [blame] | 914 | ret = btrfs_tree_mod_log_insert_root(root->node, child, true); |
David Sterba | d9d19a0 | 2018-03-05 16:35:29 +0100 | [diff] [blame] | 915 | BUG_ON(ret < 0); |
Chris Mason | 240f62c | 2011-03-23 14:54:42 -0400 | [diff] [blame] | 916 | rcu_assign_pointer(root->node, child); |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 917 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 918 | add_root_to_dirty_list(root); |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 919 | btrfs_tree_unlock(child); |
Chris Mason | b4ce94d | 2009-02-04 09:25:08 -0500 | [diff] [blame] | 920 | |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 921 | path->locks[level] = 0; |
Chris Mason | bb80395 | 2007-03-01 12:04:21 -0500 | [diff] [blame] | 922 | path->nodes[level] = NULL; |
David Sterba | 6a884d7d | 2019-03-20 14:30:02 +0100 | [diff] [blame] | 923 | btrfs_clean_tree_block(mid); |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 924 | btrfs_tree_unlock(mid); |
Chris Mason | bb80395 | 2007-03-01 12:04:21 -0500 | [diff] [blame] | 925 | /* once for the path */ |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 926 | free_extent_buffer(mid); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 927 | |
| 928 | root_sub_used(root, mid->len); |
Jan Schmidt | 5581a51 | 2012-05-16 17:04:52 +0200 | [diff] [blame] | 929 | btrfs_free_tree_block(trans, root, mid, 0, 1); |
Chris Mason | bb80395 | 2007-03-01 12:04:21 -0500 | [diff] [blame] | 930 | /* once for the root ptr */ |
Josef Bacik | 3083ee2 | 2012-03-09 16:01:49 -0500 | [diff] [blame] | 931 | free_extent_buffer_stale(mid); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 932 | return 0; |
Chris Mason | bb80395 | 2007-03-01 12:04:21 -0500 | [diff] [blame] | 933 | } |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 934 | if (btrfs_header_nritems(mid) > |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 935 | BTRFS_NODEPTRS_PER_BLOCK(fs_info) / 4) |
Chris Mason | bb80395 | 2007-03-01 12:04:21 -0500 | [diff] [blame] | 936 | return 0; |
| 937 | |
David Sterba | 4b231ae | 2019-08-21 19:16:27 +0200 | [diff] [blame] | 938 | left = btrfs_read_node_slot(parent, pslot - 1); |
Liu Bo | fb770ae | 2016-07-05 12:10:14 -0700 | [diff] [blame] | 939 | if (IS_ERR(left)) |
| 940 | left = NULL; |
| 941 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 942 | if (left) { |
Josef Bacik | bf77467 | 2020-08-20 11:46:04 -0400 | [diff] [blame] | 943 | __btrfs_tree_lock(left, BTRFS_NESTING_LEFT); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 944 | wret = btrfs_cow_block(trans, root, left, |
Josef Bacik | 9631e4c | 2020-08-20 11:46:03 -0400 | [diff] [blame] | 945 | parent, pslot - 1, &left, |
Josef Bacik | bf59a5a | 2020-08-20 11:46:05 -0400 | [diff] [blame] | 946 | BTRFS_NESTING_LEFT_COW); |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 947 | if (wret) { |
| 948 | ret = wret; |
| 949 | goto enospc; |
| 950 | } |
Chris Mason | 2cc58cf | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 951 | } |
Liu Bo | fb770ae | 2016-07-05 12:10:14 -0700 | [diff] [blame] | 952 | |
David Sterba | 4b231ae | 2019-08-21 19:16:27 +0200 | [diff] [blame] | 953 | right = btrfs_read_node_slot(parent, pslot + 1); |
Liu Bo | fb770ae | 2016-07-05 12:10:14 -0700 | [diff] [blame] | 954 | if (IS_ERR(right)) |
| 955 | right = NULL; |
| 956 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 957 | if (right) { |
Josef Bacik | bf77467 | 2020-08-20 11:46:04 -0400 | [diff] [blame] | 958 | __btrfs_tree_lock(right, BTRFS_NESTING_RIGHT); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 959 | wret = btrfs_cow_block(trans, root, right, |
Josef Bacik | 9631e4c | 2020-08-20 11:46:03 -0400 | [diff] [blame] | 960 | parent, pslot + 1, &right, |
Josef Bacik | bf59a5a | 2020-08-20 11:46:05 -0400 | [diff] [blame] | 961 | BTRFS_NESTING_RIGHT_COW); |
Chris Mason | 2cc58cf | 2007-08-27 16:49:44 -0400 | [diff] [blame] | 962 | if (wret) { |
| 963 | ret = wret; |
| 964 | goto enospc; |
| 965 | } |
| 966 | } |
| 967 | |
| 968 | /* first, try to make some room in the middle buffer */ |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 969 | if (left) { |
| 970 | orig_slot += btrfs_header_nritems(left); |
David Sterba | d30a668 | 2019-03-20 14:16:45 +0100 | [diff] [blame] | 971 | wret = push_node_left(trans, left, mid, 1); |
Chris Mason | 79f95c8 | 2007-03-01 15:16:26 -0500 | [diff] [blame] | 972 | if (wret < 0) |
| 973 | ret = wret; |
Chris Mason | bb80395 | 2007-03-01 12:04:21 -0500 | [diff] [blame] | 974 | } |
Chris Mason | 79f95c8 | 2007-03-01 15:16:26 -0500 | [diff] [blame] | 975 | |
| 976 | /* |
| 977 | * then try to empty the right most buffer into the middle |
| 978 | */ |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 979 | if (right) { |
David Sterba | d30a668 | 2019-03-20 14:16:45 +0100 | [diff] [blame] | 980 | wret = push_node_left(trans, mid, right, 1); |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 981 | if (wret < 0 && wret != -ENOSPC) |
Chris Mason | 79f95c8 | 2007-03-01 15:16:26 -0500 | [diff] [blame] | 982 | ret = wret; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 983 | if (btrfs_header_nritems(right) == 0) { |
David Sterba | 6a884d7d | 2019-03-20 14:30:02 +0100 | [diff] [blame] | 984 | btrfs_clean_tree_block(right); |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 985 | btrfs_tree_unlock(right); |
Tsutomu Itoh | afe5fea | 2013-04-16 05:18:22 +0000 | [diff] [blame] | 986 | del_ptr(root, path, level + 1, pslot + 1); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 987 | root_sub_used(root, right->len); |
Jan Schmidt | 5581a51 | 2012-05-16 17:04:52 +0200 | [diff] [blame] | 988 | btrfs_free_tree_block(trans, root, right, 0, 1); |
Josef Bacik | 3083ee2 | 2012-03-09 16:01:49 -0500 | [diff] [blame] | 989 | free_extent_buffer_stale(right); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 990 | right = NULL; |
Chris Mason | bb80395 | 2007-03-01 12:04:21 -0500 | [diff] [blame] | 991 | } else { |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 992 | struct btrfs_disk_key right_key; |
| 993 | btrfs_node_key(right, &right_key, 0); |
Filipe Manana | f3a84cc | 2021-03-11 14:31:07 +0000 | [diff] [blame] | 994 | ret = btrfs_tree_mod_log_insert_key(parent, pslot + 1, |
| 995 | BTRFS_MOD_LOG_KEY_REPLACE, GFP_NOFS); |
David Sterba | 0e82bcf | 2018-03-05 16:16:54 +0100 | [diff] [blame] | 996 | BUG_ON(ret < 0); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 997 | btrfs_set_node_key(parent, &right_key, pslot + 1); |
| 998 | btrfs_mark_buffer_dirty(parent); |
Chris Mason | bb80395 | 2007-03-01 12:04:21 -0500 | [diff] [blame] | 999 | } |
| 1000 | } |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 1001 | if (btrfs_header_nritems(mid) == 1) { |
Chris Mason | 79f95c8 | 2007-03-01 15:16:26 -0500 | [diff] [blame] | 1002 | /* |
| 1003 | * we're not allowed to leave a node with one item in the |
| 1004 | * tree during a delete. A deletion from lower in the tree |
| 1005 | * could try to delete the only pointer in this node. |
| 1006 | * So, pull some keys from the left. |
| 1007 | * There has to be a left pointer at this point because |
| 1008 | * otherwise we would have pulled some pointers from the |
| 1009 | * right |
| 1010 | */ |
Mark Fasheh | 305a26a | 2011-09-01 11:27:57 -0700 | [diff] [blame] | 1011 | if (!left) { |
| 1012 | ret = -EROFS; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1013 | btrfs_handle_fs_error(fs_info, ret, NULL); |
Mark Fasheh | 305a26a | 2011-09-01 11:27:57 -0700 | [diff] [blame] | 1014 | goto enospc; |
| 1015 | } |
David Sterba | 55d32ed | 2019-03-20 14:18:06 +0100 | [diff] [blame] | 1016 | wret = balance_node_right(trans, mid, left); |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 1017 | if (wret < 0) { |
Chris Mason | 79f95c8 | 2007-03-01 15:16:26 -0500 | [diff] [blame] | 1018 | ret = wret; |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 1019 | goto enospc; |
| 1020 | } |
Chris Mason | bce4eae | 2008-04-24 14:42:46 -0400 | [diff] [blame] | 1021 | if (wret == 1) { |
David Sterba | d30a668 | 2019-03-20 14:16:45 +0100 | [diff] [blame] | 1022 | wret = push_node_left(trans, left, mid, 1); |
Chris Mason | bce4eae | 2008-04-24 14:42:46 -0400 | [diff] [blame] | 1023 | if (wret < 0) |
| 1024 | ret = wret; |
| 1025 | } |
Chris Mason | 79f95c8 | 2007-03-01 15:16:26 -0500 | [diff] [blame] | 1026 | BUG_ON(wret == 1); |
| 1027 | } |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 1028 | if (btrfs_header_nritems(mid) == 0) { |
David Sterba | 6a884d7d | 2019-03-20 14:30:02 +0100 | [diff] [blame] | 1029 | btrfs_clean_tree_block(mid); |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 1030 | btrfs_tree_unlock(mid); |
Tsutomu Itoh | afe5fea | 2013-04-16 05:18:22 +0000 | [diff] [blame] | 1031 | del_ptr(root, path, level + 1, pslot); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 1032 | root_sub_used(root, mid->len); |
Jan Schmidt | 5581a51 | 2012-05-16 17:04:52 +0200 | [diff] [blame] | 1033 | btrfs_free_tree_block(trans, root, mid, 0, 1); |
Josef Bacik | 3083ee2 | 2012-03-09 16:01:49 -0500 | [diff] [blame] | 1034 | free_extent_buffer_stale(mid); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 1035 | mid = NULL; |
Chris Mason | 79f95c8 | 2007-03-01 15:16:26 -0500 | [diff] [blame] | 1036 | } else { |
| 1037 | /* update the parent key to reflect our changes */ |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 1038 | struct btrfs_disk_key mid_key; |
| 1039 | btrfs_node_key(mid, &mid_key, 0); |
Filipe Manana | f3a84cc | 2021-03-11 14:31:07 +0000 | [diff] [blame] | 1040 | ret = btrfs_tree_mod_log_insert_key(parent, pslot, |
| 1041 | BTRFS_MOD_LOG_KEY_REPLACE, GFP_NOFS); |
David Sterba | 0e82bcf | 2018-03-05 16:16:54 +0100 | [diff] [blame] | 1042 | BUG_ON(ret < 0); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 1043 | btrfs_set_node_key(parent, &mid_key, pslot); |
| 1044 | btrfs_mark_buffer_dirty(parent); |
Chris Mason | 79f95c8 | 2007-03-01 15:16:26 -0500 | [diff] [blame] | 1045 | } |
Chris Mason | bb80395 | 2007-03-01 12:04:21 -0500 | [diff] [blame] | 1046 | |
Chris Mason | 79f95c8 | 2007-03-01 15:16:26 -0500 | [diff] [blame] | 1047 | /* update the path */ |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 1048 | if (left) { |
| 1049 | if (btrfs_header_nritems(left) > orig_slot) { |
David Sterba | 67439da | 2019-10-08 13:28:47 +0200 | [diff] [blame] | 1050 | atomic_inc(&left->refs); |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 1051 | /* left was locked after cow */ |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 1052 | path->nodes[level] = left; |
Chris Mason | bb80395 | 2007-03-01 12:04:21 -0500 | [diff] [blame] | 1053 | path->slots[level + 1] -= 1; |
| 1054 | path->slots[level] = orig_slot; |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 1055 | if (mid) { |
| 1056 | btrfs_tree_unlock(mid); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 1057 | free_extent_buffer(mid); |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 1058 | } |
Chris Mason | bb80395 | 2007-03-01 12:04:21 -0500 | [diff] [blame] | 1059 | } else { |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 1060 | orig_slot -= btrfs_header_nritems(left); |
Chris Mason | bb80395 | 2007-03-01 12:04:21 -0500 | [diff] [blame] | 1061 | path->slots[level] = orig_slot; |
| 1062 | } |
| 1063 | } |
Chris Mason | 79f95c8 | 2007-03-01 15:16:26 -0500 | [diff] [blame] | 1064 | /* double check we haven't messed things up */ |
Chris Mason | e20d96d | 2007-03-22 12:13:20 -0400 | [diff] [blame] | 1065 | if (orig_ptr != |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 1066 | btrfs_node_blockptr(path->nodes[level], path->slots[level])) |
Chris Mason | 79f95c8 | 2007-03-01 15:16:26 -0500 | [diff] [blame] | 1067 | BUG(); |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 1068 | enospc: |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 1069 | if (right) { |
| 1070 | btrfs_tree_unlock(right); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 1071 | free_extent_buffer(right); |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 1072 | } |
| 1073 | if (left) { |
| 1074 | if (path->nodes[level] != left) |
| 1075 | btrfs_tree_unlock(left); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 1076 | free_extent_buffer(left); |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 1077 | } |
Chris Mason | bb80395 | 2007-03-01 12:04:21 -0500 | [diff] [blame] | 1078 | return ret; |
| 1079 | } |
| 1080 | |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 1081 | /* Node balancing for insertion. Here we only split or push nodes around |
| 1082 | * when they are completely full. This is also done top down, so we |
| 1083 | * have to be pessimistic. |
| 1084 | */ |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 1085 | static noinline int push_nodes_for_insert(struct btrfs_trans_handle *trans, |
Chris Mason | 98ed517 | 2008-01-03 10:01:48 -0500 | [diff] [blame] | 1086 | struct btrfs_root *root, |
| 1087 | struct btrfs_path *path, int level) |
Chris Mason | e66f709 | 2007-04-20 13:16:02 -0400 | [diff] [blame] | 1088 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1089 | struct btrfs_fs_info *fs_info = root->fs_info; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 1090 | struct extent_buffer *right = NULL; |
| 1091 | struct extent_buffer *mid; |
| 1092 | struct extent_buffer *left = NULL; |
| 1093 | struct extent_buffer *parent = NULL; |
Chris Mason | e66f709 | 2007-04-20 13:16:02 -0400 | [diff] [blame] | 1094 | int ret = 0; |
| 1095 | int wret; |
| 1096 | int pslot; |
| 1097 | int orig_slot = path->slots[level]; |
Chris Mason | e66f709 | 2007-04-20 13:16:02 -0400 | [diff] [blame] | 1098 | |
| 1099 | if (level == 0) |
| 1100 | return 1; |
| 1101 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 1102 | mid = path->nodes[level]; |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 1103 | WARN_ON(btrfs_header_generation(mid) != trans->transid); |
Chris Mason | e66f709 | 2007-04-20 13:16:02 -0400 | [diff] [blame] | 1104 | |
Li Zefan | a05a9bb | 2011-09-06 16:55:34 +0800 | [diff] [blame] | 1105 | if (level < BTRFS_MAX_LEVEL - 1) { |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 1106 | parent = path->nodes[level + 1]; |
Li Zefan | a05a9bb | 2011-09-06 16:55:34 +0800 | [diff] [blame] | 1107 | pslot = path->slots[level + 1]; |
| 1108 | } |
Chris Mason | e66f709 | 2007-04-20 13:16:02 -0400 | [diff] [blame] | 1109 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 1110 | if (!parent) |
Chris Mason | e66f709 | 2007-04-20 13:16:02 -0400 | [diff] [blame] | 1111 | return 1; |
Chris Mason | e66f709 | 2007-04-20 13:16:02 -0400 | [diff] [blame] | 1112 | |
David Sterba | 4b231ae | 2019-08-21 19:16:27 +0200 | [diff] [blame] | 1113 | left = btrfs_read_node_slot(parent, pslot - 1); |
Liu Bo | fb770ae | 2016-07-05 12:10:14 -0700 | [diff] [blame] | 1114 | if (IS_ERR(left)) |
| 1115 | left = NULL; |
Chris Mason | e66f709 | 2007-04-20 13:16:02 -0400 | [diff] [blame] | 1116 | |
| 1117 | /* first, try to make some room in the middle buffer */ |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 1118 | if (left) { |
Chris Mason | e66f709 | 2007-04-20 13:16:02 -0400 | [diff] [blame] | 1119 | u32 left_nr; |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 1120 | |
Josef Bacik | bf77467 | 2020-08-20 11:46:04 -0400 | [diff] [blame] | 1121 | __btrfs_tree_lock(left, BTRFS_NESTING_LEFT); |
Chris Mason | b4ce94d | 2009-02-04 09:25:08 -0500 | [diff] [blame] | 1122 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 1123 | left_nr = btrfs_header_nritems(left); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1124 | if (left_nr >= BTRFS_NODEPTRS_PER_BLOCK(fs_info) - 1) { |
Chris Mason | 33ade1f | 2007-04-20 13:48:57 -0400 | [diff] [blame] | 1125 | wret = 1; |
| 1126 | } else { |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 1127 | ret = btrfs_cow_block(trans, root, left, parent, |
Josef Bacik | 9631e4c | 2020-08-20 11:46:03 -0400 | [diff] [blame] | 1128 | pslot - 1, &left, |
Josef Bacik | bf59a5a | 2020-08-20 11:46:05 -0400 | [diff] [blame] | 1129 | BTRFS_NESTING_LEFT_COW); |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 1130 | if (ret) |
| 1131 | wret = 1; |
| 1132 | else { |
David Sterba | d30a668 | 2019-03-20 14:16:45 +0100 | [diff] [blame] | 1133 | wret = push_node_left(trans, left, mid, 0); |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 1134 | } |
Chris Mason | 33ade1f | 2007-04-20 13:48:57 -0400 | [diff] [blame] | 1135 | } |
Chris Mason | e66f709 | 2007-04-20 13:16:02 -0400 | [diff] [blame] | 1136 | if (wret < 0) |
| 1137 | ret = wret; |
| 1138 | if (wret == 0) { |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 1139 | struct btrfs_disk_key disk_key; |
Chris Mason | e66f709 | 2007-04-20 13:16:02 -0400 | [diff] [blame] | 1140 | orig_slot += left_nr; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 1141 | btrfs_node_key(mid, &disk_key, 0); |
Filipe Manana | f3a84cc | 2021-03-11 14:31:07 +0000 | [diff] [blame] | 1142 | ret = btrfs_tree_mod_log_insert_key(parent, pslot, |
| 1143 | BTRFS_MOD_LOG_KEY_REPLACE, GFP_NOFS); |
David Sterba | 0e82bcf | 2018-03-05 16:16:54 +0100 | [diff] [blame] | 1144 | BUG_ON(ret < 0); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 1145 | btrfs_set_node_key(parent, &disk_key, pslot); |
| 1146 | btrfs_mark_buffer_dirty(parent); |
| 1147 | if (btrfs_header_nritems(left) > orig_slot) { |
| 1148 | path->nodes[level] = left; |
Chris Mason | e66f709 | 2007-04-20 13:16:02 -0400 | [diff] [blame] | 1149 | path->slots[level + 1] -= 1; |
| 1150 | path->slots[level] = orig_slot; |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 1151 | btrfs_tree_unlock(mid); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 1152 | free_extent_buffer(mid); |
Chris Mason | e66f709 | 2007-04-20 13:16:02 -0400 | [diff] [blame] | 1153 | } else { |
| 1154 | orig_slot -= |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 1155 | btrfs_header_nritems(left); |
Chris Mason | e66f709 | 2007-04-20 13:16:02 -0400 | [diff] [blame] | 1156 | path->slots[level] = orig_slot; |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 1157 | btrfs_tree_unlock(left); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 1158 | free_extent_buffer(left); |
Chris Mason | e66f709 | 2007-04-20 13:16:02 -0400 | [diff] [blame] | 1159 | } |
Chris Mason | e66f709 | 2007-04-20 13:16:02 -0400 | [diff] [blame] | 1160 | return 0; |
| 1161 | } |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 1162 | btrfs_tree_unlock(left); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 1163 | free_extent_buffer(left); |
Chris Mason | e66f709 | 2007-04-20 13:16:02 -0400 | [diff] [blame] | 1164 | } |
David Sterba | 4b231ae | 2019-08-21 19:16:27 +0200 | [diff] [blame] | 1165 | right = btrfs_read_node_slot(parent, pslot + 1); |
Liu Bo | fb770ae | 2016-07-05 12:10:14 -0700 | [diff] [blame] | 1166 | if (IS_ERR(right)) |
| 1167 | right = NULL; |
Chris Mason | e66f709 | 2007-04-20 13:16:02 -0400 | [diff] [blame] | 1168 | |
| 1169 | /* |
| 1170 | * then try to empty the right most buffer into the middle |
| 1171 | */ |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 1172 | if (right) { |
Chris Mason | 33ade1f | 2007-04-20 13:48:57 -0400 | [diff] [blame] | 1173 | u32 right_nr; |
Chris Mason | b4ce94d | 2009-02-04 09:25:08 -0500 | [diff] [blame] | 1174 | |
Josef Bacik | bf77467 | 2020-08-20 11:46:04 -0400 | [diff] [blame] | 1175 | __btrfs_tree_lock(right, BTRFS_NESTING_RIGHT); |
Chris Mason | b4ce94d | 2009-02-04 09:25:08 -0500 | [diff] [blame] | 1176 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 1177 | right_nr = btrfs_header_nritems(right); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1178 | if (right_nr >= BTRFS_NODEPTRS_PER_BLOCK(fs_info) - 1) { |
Chris Mason | 33ade1f | 2007-04-20 13:48:57 -0400 | [diff] [blame] | 1179 | wret = 1; |
| 1180 | } else { |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 1181 | ret = btrfs_cow_block(trans, root, right, |
| 1182 | parent, pslot + 1, |
Josef Bacik | bf59a5a | 2020-08-20 11:46:05 -0400 | [diff] [blame] | 1183 | &right, BTRFS_NESTING_RIGHT_COW); |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 1184 | if (ret) |
| 1185 | wret = 1; |
| 1186 | else { |
David Sterba | 55d32ed | 2019-03-20 14:18:06 +0100 | [diff] [blame] | 1187 | wret = balance_node_right(trans, right, mid); |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 1188 | } |
Chris Mason | 33ade1f | 2007-04-20 13:48:57 -0400 | [diff] [blame] | 1189 | } |
Chris Mason | e66f709 | 2007-04-20 13:16:02 -0400 | [diff] [blame] | 1190 | if (wret < 0) |
| 1191 | ret = wret; |
| 1192 | if (wret == 0) { |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 1193 | struct btrfs_disk_key disk_key; |
| 1194 | |
| 1195 | btrfs_node_key(right, &disk_key, 0); |
Filipe Manana | f3a84cc | 2021-03-11 14:31:07 +0000 | [diff] [blame] | 1196 | ret = btrfs_tree_mod_log_insert_key(parent, pslot + 1, |
| 1197 | BTRFS_MOD_LOG_KEY_REPLACE, GFP_NOFS); |
David Sterba | 0e82bcf | 2018-03-05 16:16:54 +0100 | [diff] [blame] | 1198 | BUG_ON(ret < 0); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 1199 | btrfs_set_node_key(parent, &disk_key, pslot + 1); |
| 1200 | btrfs_mark_buffer_dirty(parent); |
| 1201 | |
| 1202 | if (btrfs_header_nritems(mid) <= orig_slot) { |
| 1203 | path->nodes[level] = right; |
Chris Mason | e66f709 | 2007-04-20 13:16:02 -0400 | [diff] [blame] | 1204 | path->slots[level + 1] += 1; |
| 1205 | path->slots[level] = orig_slot - |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 1206 | btrfs_header_nritems(mid); |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 1207 | btrfs_tree_unlock(mid); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 1208 | free_extent_buffer(mid); |
Chris Mason | e66f709 | 2007-04-20 13:16:02 -0400 | [diff] [blame] | 1209 | } else { |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 1210 | btrfs_tree_unlock(right); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 1211 | free_extent_buffer(right); |
Chris Mason | e66f709 | 2007-04-20 13:16:02 -0400 | [diff] [blame] | 1212 | } |
Chris Mason | e66f709 | 2007-04-20 13:16:02 -0400 | [diff] [blame] | 1213 | return 0; |
| 1214 | } |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 1215 | btrfs_tree_unlock(right); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 1216 | free_extent_buffer(right); |
Chris Mason | e66f709 | 2007-04-20 13:16:02 -0400 | [diff] [blame] | 1217 | } |
Chris Mason | e66f709 | 2007-04-20 13:16:02 -0400 | [diff] [blame] | 1218 | return 1; |
| 1219 | } |
| 1220 | |
Chris Mason | 74123bd | 2007-02-02 11:05:29 -0500 | [diff] [blame] | 1221 | /* |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 1222 | * readahead one full node of leaves, finding things that are close |
| 1223 | * to the block in 'slot', and triggering ra on them. |
Chris Mason | 3c69fae | 2007-08-07 15:52:22 -0400 | [diff] [blame] | 1224 | */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 1225 | static void reada_for_search(struct btrfs_fs_info *fs_info, |
Chris Mason | c8c4286 | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 1226 | struct btrfs_path *path, |
| 1227 | int level, int slot, u64 objectid) |
Chris Mason | 3c69fae | 2007-08-07 15:52:22 -0400 | [diff] [blame] | 1228 | { |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 1229 | struct extent_buffer *node; |
Chris Mason | 01f4665 | 2007-12-21 16:24:26 -0500 | [diff] [blame] | 1230 | struct btrfs_disk_key disk_key; |
Chris Mason | 3c69fae | 2007-08-07 15:52:22 -0400 | [diff] [blame] | 1231 | u32 nritems; |
Chris Mason | 3c69fae | 2007-08-07 15:52:22 -0400 | [diff] [blame] | 1232 | u64 search; |
Chris Mason | a717531 | 2009-01-22 09:23:10 -0500 | [diff] [blame] | 1233 | u64 target; |
Chris Mason | 6b80053 | 2007-10-15 16:17:34 -0400 | [diff] [blame] | 1234 | u64 nread = 0; |
Filipe Manana | ace7506 | 2021-03-31 11:56:21 +0100 | [diff] [blame] | 1235 | u64 nread_max; |
Chris Mason | 6b80053 | 2007-10-15 16:17:34 -0400 | [diff] [blame] | 1236 | u32 nr; |
| 1237 | u32 blocksize; |
| 1238 | u32 nscan = 0; |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 1239 | |
Filipe Manana | ace7506 | 2021-03-31 11:56:21 +0100 | [diff] [blame] | 1240 | if (level != 1 && path->reada != READA_FORWARD_ALWAYS) |
Chris Mason | 3c69fae | 2007-08-07 15:52:22 -0400 | [diff] [blame] | 1241 | return; |
| 1242 | |
Chris Mason | 6702ed4 | 2007-08-07 16:15:09 -0400 | [diff] [blame] | 1243 | if (!path->nodes[level]) |
| 1244 | return; |
| 1245 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 1246 | node = path->nodes[level]; |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 1247 | |
Filipe Manana | ace7506 | 2021-03-31 11:56:21 +0100 | [diff] [blame] | 1248 | /* |
| 1249 | * Since the time between visiting leaves is much shorter than the time |
| 1250 | * between visiting nodes, limit read ahead of nodes to 1, to avoid too |
| 1251 | * much IO at once (possibly random). |
| 1252 | */ |
| 1253 | if (path->reada == READA_FORWARD_ALWAYS) { |
| 1254 | if (level > 1) |
| 1255 | nread_max = node->fs_info->nodesize; |
| 1256 | else |
| 1257 | nread_max = SZ_128K; |
| 1258 | } else { |
| 1259 | nread_max = SZ_64K; |
| 1260 | } |
| 1261 | |
Chris Mason | 3c69fae | 2007-08-07 15:52:22 -0400 | [diff] [blame] | 1262 | search = btrfs_node_blockptr(node, slot); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1263 | blocksize = fs_info->nodesize; |
Filipe Manana | 069a2e3 | 2021-07-20 16:03:03 +0100 | [diff] [blame] | 1264 | if (path->reada != READA_FORWARD_ALWAYS) { |
| 1265 | struct extent_buffer *eb; |
| 1266 | |
| 1267 | eb = find_extent_buffer(fs_info, search); |
| 1268 | if (eb) { |
| 1269 | free_extent_buffer(eb); |
| 1270 | return; |
| 1271 | } |
Chris Mason | 3c69fae | 2007-08-07 15:52:22 -0400 | [diff] [blame] | 1272 | } |
| 1273 | |
Chris Mason | a717531 | 2009-01-22 09:23:10 -0500 | [diff] [blame] | 1274 | target = search; |
Chris Mason | 6b80053 | 2007-10-15 16:17:34 -0400 | [diff] [blame] | 1275 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 1276 | nritems = btrfs_header_nritems(node); |
Chris Mason | 6b80053 | 2007-10-15 16:17:34 -0400 | [diff] [blame] | 1277 | nr = slot; |
Josef Bacik | 25b8b93 | 2011-06-08 14:36:54 -0400 | [diff] [blame] | 1278 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 1279 | while (1) { |
David Sterba | e4058b5 | 2015-11-27 16:31:35 +0100 | [diff] [blame] | 1280 | if (path->reada == READA_BACK) { |
Chris Mason | 6b80053 | 2007-10-15 16:17:34 -0400 | [diff] [blame] | 1281 | if (nr == 0) |
| 1282 | break; |
| 1283 | nr--; |
Filipe Manana | ace7506 | 2021-03-31 11:56:21 +0100 | [diff] [blame] | 1284 | } else if (path->reada == READA_FORWARD || |
| 1285 | path->reada == READA_FORWARD_ALWAYS) { |
Chris Mason | 6b80053 | 2007-10-15 16:17:34 -0400 | [diff] [blame] | 1286 | nr++; |
| 1287 | if (nr >= nritems) |
| 1288 | break; |
Chris Mason | 3c69fae | 2007-08-07 15:52:22 -0400 | [diff] [blame] | 1289 | } |
David Sterba | e4058b5 | 2015-11-27 16:31:35 +0100 | [diff] [blame] | 1290 | if (path->reada == READA_BACK && objectid) { |
Chris Mason | 01f4665 | 2007-12-21 16:24:26 -0500 | [diff] [blame] | 1291 | btrfs_node_key(node, &disk_key, nr); |
| 1292 | if (btrfs_disk_key_objectid(&disk_key) != objectid) |
| 1293 | break; |
| 1294 | } |
Chris Mason | 6b80053 | 2007-10-15 16:17:34 -0400 | [diff] [blame] | 1295 | search = btrfs_node_blockptr(node, nr); |
Filipe Manana | ace7506 | 2021-03-31 11:56:21 +0100 | [diff] [blame] | 1296 | if (path->reada == READA_FORWARD_ALWAYS || |
| 1297 | (search <= target && target - search <= 65536) || |
Chris Mason | a717531 | 2009-01-22 09:23:10 -0500 | [diff] [blame] | 1298 | (search > target && search - target <= 65536)) { |
Josef Bacik | bfb484d | 2020-11-05 10:45:09 -0500 | [diff] [blame] | 1299 | btrfs_readahead_node_child(node, nr); |
Chris Mason | 6b80053 | 2007-10-15 16:17:34 -0400 | [diff] [blame] | 1300 | nread += blocksize; |
| 1301 | } |
| 1302 | nscan++; |
Filipe Manana | ace7506 | 2021-03-31 11:56:21 +0100 | [diff] [blame] | 1303 | if (nread > nread_max || nscan > 32) |
Chris Mason | 6b80053 | 2007-10-15 16:17:34 -0400 | [diff] [blame] | 1304 | break; |
Chris Mason | 3c69fae | 2007-08-07 15:52:22 -0400 | [diff] [blame] | 1305 | } |
| 1306 | } |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 1307 | |
Josef Bacik | bfb484d | 2020-11-05 10:45:09 -0500 | [diff] [blame] | 1308 | static noinline void reada_for_balance(struct btrfs_path *path, int level) |
Chris Mason | b4ce94d | 2009-02-04 09:25:08 -0500 | [diff] [blame] | 1309 | { |
Josef Bacik | bfb484d | 2020-11-05 10:45:09 -0500 | [diff] [blame] | 1310 | struct extent_buffer *parent; |
Chris Mason | b4ce94d | 2009-02-04 09:25:08 -0500 | [diff] [blame] | 1311 | int slot; |
| 1312 | int nritems; |
Chris Mason | b4ce94d | 2009-02-04 09:25:08 -0500 | [diff] [blame] | 1313 | |
Chris Mason | 8c594ea | 2009-04-20 15:50:10 -0400 | [diff] [blame] | 1314 | parent = path->nodes[level + 1]; |
Chris Mason | b4ce94d | 2009-02-04 09:25:08 -0500 | [diff] [blame] | 1315 | if (!parent) |
Josef Bacik | 0b08851 | 2013-06-17 14:23:02 -0400 | [diff] [blame] | 1316 | return; |
Chris Mason | b4ce94d | 2009-02-04 09:25:08 -0500 | [diff] [blame] | 1317 | |
| 1318 | nritems = btrfs_header_nritems(parent); |
Chris Mason | 8c594ea | 2009-04-20 15:50:10 -0400 | [diff] [blame] | 1319 | slot = path->slots[level + 1]; |
Chris Mason | b4ce94d | 2009-02-04 09:25:08 -0500 | [diff] [blame] | 1320 | |
Josef Bacik | bfb484d | 2020-11-05 10:45:09 -0500 | [diff] [blame] | 1321 | if (slot > 0) |
| 1322 | btrfs_readahead_node_child(parent, slot - 1); |
| 1323 | if (slot + 1 < nritems) |
| 1324 | btrfs_readahead_node_child(parent, slot + 1); |
Chris Mason | b4ce94d | 2009-02-04 09:25:08 -0500 | [diff] [blame] | 1325 | } |
| 1326 | |
| 1327 | |
| 1328 | /* |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 1329 | * when we walk down the tree, it is usually safe to unlock the higher layers |
| 1330 | * in the tree. The exceptions are when our path goes through slot 0, because |
| 1331 | * operations on the tree might require changing key pointers higher up in the |
| 1332 | * tree. |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 1333 | * |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 1334 | * callers might also have set path->keep_locks, which tells this code to keep |
| 1335 | * the lock if the path points to the last slot in the block. This is part of |
| 1336 | * walking through the tree, and selecting the next slot in the higher block. |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 1337 | * |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 1338 | * lowest_unlock sets the lowest level in the tree we're allowed to unlock. so |
| 1339 | * if lowest_unlock is 1, level 0 won't be unlocked |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 1340 | */ |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 1341 | static noinline void unlock_up(struct btrfs_path *path, int level, |
Chris Mason | f7c79f3 | 2012-03-19 15:54:38 -0400 | [diff] [blame] | 1342 | int lowest_unlock, int min_write_lock_level, |
| 1343 | int *write_lock_level) |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 1344 | { |
| 1345 | int i; |
| 1346 | int skip_level = level; |
Chris Mason | 051e1b9 | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 1347 | int no_skips = 0; |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 1348 | struct extent_buffer *t; |
| 1349 | |
| 1350 | for (i = level; i < BTRFS_MAX_LEVEL; i++) { |
| 1351 | if (!path->nodes[i]) |
| 1352 | break; |
| 1353 | if (!path->locks[i]) |
| 1354 | break; |
Chris Mason | 051e1b9 | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 1355 | if (!no_skips && path->slots[i] == 0) { |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 1356 | skip_level = i + 1; |
| 1357 | continue; |
| 1358 | } |
Chris Mason | 051e1b9 | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 1359 | if (!no_skips && path->keep_locks) { |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 1360 | u32 nritems; |
| 1361 | t = path->nodes[i]; |
| 1362 | nritems = btrfs_header_nritems(t); |
Chris Mason | 051e1b9 | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 1363 | if (nritems < 1 || path->slots[i] >= nritems - 1) { |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 1364 | skip_level = i + 1; |
| 1365 | continue; |
| 1366 | } |
| 1367 | } |
Chris Mason | 051e1b9 | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 1368 | if (skip_level < i && i >= lowest_unlock) |
| 1369 | no_skips = 1; |
| 1370 | |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 1371 | t = path->nodes[i]; |
Liu Bo | d80bb3f | 2018-05-18 11:00:24 +0800 | [diff] [blame] | 1372 | if (i >= lowest_unlock && i > skip_level) { |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 1373 | btrfs_tree_unlock_rw(t, path->locks[i]); |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 1374 | path->locks[i] = 0; |
Chris Mason | f7c79f3 | 2012-03-19 15:54:38 -0400 | [diff] [blame] | 1375 | if (write_lock_level && |
| 1376 | i > min_write_lock_level && |
| 1377 | i <= *write_lock_level) { |
| 1378 | *write_lock_level = i - 1; |
| 1379 | } |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 1380 | } |
| 1381 | } |
| 1382 | } |
| 1383 | |
Chris Mason | 3c69fae | 2007-08-07 15:52:22 -0400 | [diff] [blame] | 1384 | /* |
Chris Mason | c8c4286 | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 1385 | * helper function for btrfs_search_slot. The goal is to find a block |
| 1386 | * in cache without setting the path to blocking. If we find the block |
| 1387 | * we return zero and the path is unchanged. |
| 1388 | * |
| 1389 | * If we can't find the block, we set the path blocking and do some |
| 1390 | * reada. -EAGAIN is returned and the search must be repeated. |
| 1391 | */ |
| 1392 | static int |
Liu Bo | d07b852 | 2017-01-30 12:23:42 -0800 | [diff] [blame] | 1393 | read_block_for_search(struct btrfs_root *root, struct btrfs_path *p, |
| 1394 | struct extent_buffer **eb_ret, int level, int slot, |
David Sterba | cda79c5 | 2017-02-10 18:44:32 +0100 | [diff] [blame] | 1395 | const struct btrfs_key *key) |
Chris Mason | c8c4286 | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 1396 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1397 | struct btrfs_fs_info *fs_info = root->fs_info; |
Chris Mason | c8c4286 | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 1398 | u64 blocknr; |
| 1399 | u64 gen; |
Chris Mason | c8c4286 | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 1400 | struct extent_buffer *tmp; |
Qu Wenruo | 581c176 | 2018-03-29 09:08:11 +0800 | [diff] [blame] | 1401 | struct btrfs_key first_key; |
Chris Mason | 76a05b3 | 2009-05-14 13:24:30 -0400 | [diff] [blame] | 1402 | int ret; |
Qu Wenruo | 581c176 | 2018-03-29 09:08:11 +0800 | [diff] [blame] | 1403 | int parent_level; |
Chris Mason | c8c4286 | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 1404 | |
Nikolay Borisov | 213ff4b | 2020-05-27 13:10:59 +0300 | [diff] [blame] | 1405 | blocknr = btrfs_node_blockptr(*eb_ret, slot); |
| 1406 | gen = btrfs_node_ptr_generation(*eb_ret, slot); |
| 1407 | parent_level = btrfs_header_level(*eb_ret); |
| 1408 | btrfs_node_key_to_cpu(*eb_ret, &first_key, slot); |
Chris Mason | c8c4286 | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 1409 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1410 | tmp = find_extent_buffer(fs_info, blocknr); |
Chris Mason | cb44921 | 2010-10-24 11:01:27 -0400 | [diff] [blame] | 1411 | if (tmp) { |
Filipe Manana | ace7506 | 2021-03-31 11:56:21 +0100 | [diff] [blame] | 1412 | if (p->reada == READA_FORWARD_ALWAYS) |
| 1413 | reada_for_search(fs_info, p, level, slot, key->objectid); |
| 1414 | |
Chris Mason | b9fab91 | 2012-05-06 07:23:47 -0400 | [diff] [blame] | 1415 | /* first we do an atomic uptodate check */ |
Josef Bacik | bdf7c00 | 2013-06-17 13:44:48 -0400 | [diff] [blame] | 1416 | if (btrfs_buffer_uptodate(tmp, gen, 1) > 0) { |
Qu Wenruo | 448de47 | 2019-03-12 17:10:40 +0800 | [diff] [blame] | 1417 | /* |
| 1418 | * Do extra check for first_key, eb can be stale due to |
| 1419 | * being cached, read from scrub, or have multiple |
| 1420 | * parents (shared tree blocks). |
| 1421 | */ |
David Sterba | e064d5e | 2019-03-20 14:58:13 +0100 | [diff] [blame] | 1422 | if (btrfs_verify_level_key(tmp, |
Qu Wenruo | 448de47 | 2019-03-12 17:10:40 +0800 | [diff] [blame] | 1423 | parent_level - 1, &first_key, gen)) { |
| 1424 | free_extent_buffer(tmp); |
| 1425 | return -EUCLEAN; |
| 1426 | } |
Josef Bacik | bdf7c00 | 2013-06-17 13:44:48 -0400 | [diff] [blame] | 1427 | *eb_ret = tmp; |
| 1428 | return 0; |
Chris Mason | cb44921 | 2010-10-24 11:01:27 -0400 | [diff] [blame] | 1429 | } |
Josef Bacik | bdf7c00 | 2013-06-17 13:44:48 -0400 | [diff] [blame] | 1430 | |
Josef Bacik | bdf7c00 | 2013-06-17 13:44:48 -0400 | [diff] [blame] | 1431 | /* now we're allowed to do a blocking uptodate check */ |
Qu Wenruo | 581c176 | 2018-03-29 09:08:11 +0800 | [diff] [blame] | 1432 | ret = btrfs_read_buffer(tmp, gen, parent_level - 1, &first_key); |
Josef Bacik | bdf7c00 | 2013-06-17 13:44:48 -0400 | [diff] [blame] | 1433 | if (!ret) { |
| 1434 | *eb_ret = tmp; |
| 1435 | return 0; |
| 1436 | } |
| 1437 | free_extent_buffer(tmp); |
| 1438 | btrfs_release_path(p); |
| 1439 | return -EIO; |
Chris Mason | c8c4286 | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 1440 | } |
| 1441 | |
| 1442 | /* |
| 1443 | * reduce lock contention at high levels |
| 1444 | * of the btree by dropping locks before |
Chris Mason | 76a05b3 | 2009-05-14 13:24:30 -0400 | [diff] [blame] | 1445 | * we read. Don't release the lock on the current |
| 1446 | * level because we need to walk this node to figure |
| 1447 | * out which blocks to read. |
Chris Mason | c8c4286 | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 1448 | */ |
Chris Mason | 8c594ea | 2009-04-20 15:50:10 -0400 | [diff] [blame] | 1449 | btrfs_unlock_up_safe(p, level + 1); |
Chris Mason | 8c594ea | 2009-04-20 15:50:10 -0400 | [diff] [blame] | 1450 | |
David Sterba | e4058b5 | 2015-11-27 16:31:35 +0100 | [diff] [blame] | 1451 | if (p->reada != READA_NONE) |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 1452 | reada_for_search(fs_info, p, level, slot, key->objectid); |
Chris Mason | c8c4286 | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 1453 | |
Chris Mason | 76a05b3 | 2009-05-14 13:24:30 -0400 | [diff] [blame] | 1454 | ret = -EAGAIN; |
Josef Bacik | 1b7ec85 | 2020-11-05 10:45:18 -0500 | [diff] [blame] | 1455 | tmp = read_tree_block(fs_info, blocknr, root->root_key.objectid, |
| 1456 | gen, parent_level - 1, &first_key); |
Liu Bo | 64c043d | 2015-05-25 17:30:15 +0800 | [diff] [blame] | 1457 | if (!IS_ERR(tmp)) { |
Chris Mason | 76a05b3 | 2009-05-14 13:24:30 -0400 | [diff] [blame] | 1458 | /* |
| 1459 | * If the read above didn't mark this buffer up to date, |
| 1460 | * it will never end up being up to date. Set ret to EIO now |
| 1461 | * and give up so that our caller doesn't loop forever |
| 1462 | * on our EAGAINs. |
| 1463 | */ |
Liu Bo | e6a1d6f | 2018-05-18 11:00:20 +0800 | [diff] [blame] | 1464 | if (!extent_buffer_uptodate(tmp)) |
Chris Mason | 76a05b3 | 2009-05-14 13:24:30 -0400 | [diff] [blame] | 1465 | ret = -EIO; |
Chris Mason | c8c4286 | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 1466 | free_extent_buffer(tmp); |
Liu Bo | c871b0f | 2016-06-06 12:01:23 -0700 | [diff] [blame] | 1467 | } else { |
| 1468 | ret = PTR_ERR(tmp); |
Chris Mason | 76a05b3 | 2009-05-14 13:24:30 -0400 | [diff] [blame] | 1469 | } |
Liu Bo | 02a3307 | 2018-05-16 01:37:36 +0800 | [diff] [blame] | 1470 | |
| 1471 | btrfs_release_path(p); |
Chris Mason | 76a05b3 | 2009-05-14 13:24:30 -0400 | [diff] [blame] | 1472 | return ret; |
Chris Mason | c8c4286 | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 1473 | } |
| 1474 | |
| 1475 | /* |
| 1476 | * helper function for btrfs_search_slot. This does all of the checks |
| 1477 | * for node-level blocks and does any balancing required based on |
| 1478 | * the ins_len. |
| 1479 | * |
| 1480 | * If no extra work was required, zero is returned. If we had to |
| 1481 | * drop the path, -EAGAIN is returned and btrfs_search_slot must |
| 1482 | * start over |
| 1483 | */ |
| 1484 | static int |
| 1485 | setup_nodes_for_search(struct btrfs_trans_handle *trans, |
| 1486 | struct btrfs_root *root, struct btrfs_path *p, |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 1487 | struct extent_buffer *b, int level, int ins_len, |
| 1488 | int *write_lock_level) |
Chris Mason | c8c4286 | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 1489 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1490 | struct btrfs_fs_info *fs_info = root->fs_info; |
Nikolay Borisov | 95b982d | 2020-11-13 09:29:40 +0200 | [diff] [blame] | 1491 | int ret = 0; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1492 | |
Chris Mason | c8c4286 | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 1493 | if ((p->search_for_split || ins_len > 0) && btrfs_header_nritems(b) >= |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1494 | BTRFS_NODEPTRS_PER_BLOCK(fs_info) - 3) { |
Chris Mason | c8c4286 | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 1495 | |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 1496 | if (*write_lock_level < level + 1) { |
| 1497 | *write_lock_level = level + 1; |
| 1498 | btrfs_release_path(p); |
Nikolay Borisov | 95b982d | 2020-11-13 09:29:40 +0200 | [diff] [blame] | 1499 | return -EAGAIN; |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 1500 | } |
| 1501 | |
Josef Bacik | bfb484d | 2020-11-05 10:45:09 -0500 | [diff] [blame] | 1502 | reada_for_balance(p, level); |
Nikolay Borisov | 95b982d | 2020-11-13 09:29:40 +0200 | [diff] [blame] | 1503 | ret = split_node(trans, root, p, level); |
Chris Mason | c8c4286 | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 1504 | |
Chris Mason | c8c4286 | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 1505 | b = p->nodes[level]; |
| 1506 | } else if (ins_len < 0 && btrfs_header_nritems(b) < |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1507 | BTRFS_NODEPTRS_PER_BLOCK(fs_info) / 2) { |
Chris Mason | c8c4286 | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 1508 | |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 1509 | if (*write_lock_level < level + 1) { |
| 1510 | *write_lock_level = level + 1; |
| 1511 | btrfs_release_path(p); |
Nikolay Borisov | 95b982d | 2020-11-13 09:29:40 +0200 | [diff] [blame] | 1512 | return -EAGAIN; |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 1513 | } |
| 1514 | |
Josef Bacik | bfb484d | 2020-11-05 10:45:09 -0500 | [diff] [blame] | 1515 | reada_for_balance(p, level); |
Nikolay Borisov | 95b982d | 2020-11-13 09:29:40 +0200 | [diff] [blame] | 1516 | ret = balance_level(trans, root, p, level); |
| 1517 | if (ret) |
| 1518 | return ret; |
Chris Mason | c8c4286 | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 1519 | |
Chris Mason | c8c4286 | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 1520 | b = p->nodes[level]; |
| 1521 | if (!b) { |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1522 | btrfs_release_path(p); |
Nikolay Borisov | 95b982d | 2020-11-13 09:29:40 +0200 | [diff] [blame] | 1523 | return -EAGAIN; |
Chris Mason | c8c4286 | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 1524 | } |
| 1525 | BUG_ON(btrfs_header_nritems(b) == 1); |
| 1526 | } |
Chris Mason | c8c4286 | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 1527 | return ret; |
| 1528 | } |
| 1529 | |
David Sterba | 381cf65 | 2015-01-02 18:45:16 +0100 | [diff] [blame] | 1530 | int btrfs_find_item(struct btrfs_root *fs_root, struct btrfs_path *path, |
Kelley Nielsen | e33d5c3 | 2013-11-04 19:33:33 -0800 | [diff] [blame] | 1531 | u64 iobjectid, u64 ioff, u8 key_type, |
| 1532 | struct btrfs_key *found_key) |
| 1533 | { |
| 1534 | int ret; |
| 1535 | struct btrfs_key key; |
| 1536 | struct extent_buffer *eb; |
David Sterba | 381cf65 | 2015-01-02 18:45:16 +0100 | [diff] [blame] | 1537 | |
| 1538 | ASSERT(path); |
David Sterba | 1d4c08e | 2015-01-02 19:36:14 +0100 | [diff] [blame] | 1539 | ASSERT(found_key); |
Kelley Nielsen | e33d5c3 | 2013-11-04 19:33:33 -0800 | [diff] [blame] | 1540 | |
| 1541 | key.type = key_type; |
| 1542 | key.objectid = iobjectid; |
| 1543 | key.offset = ioff; |
| 1544 | |
| 1545 | ret = btrfs_search_slot(NULL, fs_root, &key, path, 0, 0); |
David Sterba | 1d4c08e | 2015-01-02 19:36:14 +0100 | [diff] [blame] | 1546 | if (ret < 0) |
Kelley Nielsen | e33d5c3 | 2013-11-04 19:33:33 -0800 | [diff] [blame] | 1547 | return ret; |
| 1548 | |
| 1549 | eb = path->nodes[0]; |
| 1550 | if (ret && path->slots[0] >= btrfs_header_nritems(eb)) { |
| 1551 | ret = btrfs_next_leaf(fs_root, path); |
| 1552 | if (ret) |
| 1553 | return ret; |
| 1554 | eb = path->nodes[0]; |
| 1555 | } |
| 1556 | |
| 1557 | btrfs_item_key_to_cpu(eb, found_key, path->slots[0]); |
| 1558 | if (found_key->type != key.type || |
| 1559 | found_key->objectid != key.objectid) |
| 1560 | return 1; |
| 1561 | |
| 1562 | return 0; |
| 1563 | } |
| 1564 | |
Liu Bo | 1fc28d8 | 2018-05-18 11:00:21 +0800 | [diff] [blame] | 1565 | static struct extent_buffer *btrfs_search_slot_get_root(struct btrfs_root *root, |
| 1566 | struct btrfs_path *p, |
| 1567 | int write_lock_level) |
| 1568 | { |
| 1569 | struct btrfs_fs_info *fs_info = root->fs_info; |
| 1570 | struct extent_buffer *b; |
| 1571 | int root_lock; |
| 1572 | int level = 0; |
| 1573 | |
| 1574 | /* We try very hard to do read locks on the root */ |
| 1575 | root_lock = BTRFS_READ_LOCK; |
| 1576 | |
| 1577 | if (p->search_commit_root) { |
Filipe Manana | be6821f | 2018-12-11 10:19:45 +0000 | [diff] [blame] | 1578 | /* |
| 1579 | * The commit roots are read only so we always do read locks, |
| 1580 | * and we always must hold the commit_root_sem when doing |
| 1581 | * searches on them, the only exception is send where we don't |
| 1582 | * want to block transaction commits for a long time, so |
| 1583 | * we need to clone the commit root in order to avoid races |
| 1584 | * with transaction commits that create a snapshot of one of |
| 1585 | * the roots used by a send operation. |
| 1586 | */ |
| 1587 | if (p->need_commit_sem) { |
Liu Bo | 1fc28d8 | 2018-05-18 11:00:21 +0800 | [diff] [blame] | 1588 | down_read(&fs_info->commit_root_sem); |
Filipe Manana | be6821f | 2018-12-11 10:19:45 +0000 | [diff] [blame] | 1589 | b = btrfs_clone_extent_buffer(root->commit_root); |
Liu Bo | 1fc28d8 | 2018-05-18 11:00:21 +0800 | [diff] [blame] | 1590 | up_read(&fs_info->commit_root_sem); |
Filipe Manana | be6821f | 2018-12-11 10:19:45 +0000 | [diff] [blame] | 1591 | if (!b) |
| 1592 | return ERR_PTR(-ENOMEM); |
| 1593 | |
| 1594 | } else { |
| 1595 | b = root->commit_root; |
David Sterba | 67439da | 2019-10-08 13:28:47 +0200 | [diff] [blame] | 1596 | atomic_inc(&b->refs); |
Filipe Manana | be6821f | 2018-12-11 10:19:45 +0000 | [diff] [blame] | 1597 | } |
| 1598 | level = btrfs_header_level(b); |
Liu Bo | f9ddfd0 | 2018-05-29 21:27:06 +0800 | [diff] [blame] | 1599 | /* |
| 1600 | * Ensure that all callers have set skip_locking when |
| 1601 | * p->search_commit_root = 1. |
| 1602 | */ |
| 1603 | ASSERT(p->skip_locking == 1); |
Liu Bo | 1fc28d8 | 2018-05-18 11:00:21 +0800 | [diff] [blame] | 1604 | |
| 1605 | goto out; |
| 1606 | } |
| 1607 | |
| 1608 | if (p->skip_locking) { |
| 1609 | b = btrfs_root_node(root); |
| 1610 | level = btrfs_header_level(b); |
| 1611 | goto out; |
| 1612 | } |
| 1613 | |
| 1614 | /* |
Liu Bo | 662c653 | 2018-05-18 11:00:23 +0800 | [diff] [blame] | 1615 | * If the level is set to maximum, we can skip trying to get the read |
| 1616 | * lock. |
Liu Bo | 1fc28d8 | 2018-05-18 11:00:21 +0800 | [diff] [blame] | 1617 | */ |
Liu Bo | 662c653 | 2018-05-18 11:00:23 +0800 | [diff] [blame] | 1618 | if (write_lock_level < BTRFS_MAX_LEVEL) { |
| 1619 | /* |
| 1620 | * We don't know the level of the root node until we actually |
| 1621 | * have it read locked |
| 1622 | */ |
Josef Bacik | 1bb9659 | 2020-11-06 16:27:33 -0500 | [diff] [blame] | 1623 | b = btrfs_read_lock_root_node(root); |
Liu Bo | 662c653 | 2018-05-18 11:00:23 +0800 | [diff] [blame] | 1624 | level = btrfs_header_level(b); |
| 1625 | if (level > write_lock_level) |
| 1626 | goto out; |
Liu Bo | 1fc28d8 | 2018-05-18 11:00:21 +0800 | [diff] [blame] | 1627 | |
Liu Bo | 662c653 | 2018-05-18 11:00:23 +0800 | [diff] [blame] | 1628 | /* Whoops, must trade for write lock */ |
| 1629 | btrfs_tree_read_unlock(b); |
| 1630 | free_extent_buffer(b); |
| 1631 | } |
| 1632 | |
Liu Bo | 1fc28d8 | 2018-05-18 11:00:21 +0800 | [diff] [blame] | 1633 | b = btrfs_lock_root_node(root); |
| 1634 | root_lock = BTRFS_WRITE_LOCK; |
| 1635 | |
| 1636 | /* The level might have changed, check again */ |
| 1637 | level = btrfs_header_level(b); |
| 1638 | |
| 1639 | out: |
| 1640 | p->nodes[level] = b; |
| 1641 | if (!p->skip_locking) |
| 1642 | p->locks[level] = root_lock; |
| 1643 | /* |
| 1644 | * Callers are responsible for dropping b's references. |
| 1645 | */ |
| 1646 | return b; |
| 1647 | } |
| 1648 | |
| 1649 | |
Chris Mason | c8c4286 | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 1650 | /* |
Nikolay Borisov | 4271ece | 2017-12-13 09:38:14 +0200 | [diff] [blame] | 1651 | * btrfs_search_slot - look for a key in a tree and perform necessary |
| 1652 | * modifications to preserve tree invariants. |
Chris Mason | 74123bd | 2007-02-02 11:05:29 -0500 | [diff] [blame] | 1653 | * |
Nikolay Borisov | 4271ece | 2017-12-13 09:38:14 +0200 | [diff] [blame] | 1654 | * @trans: Handle of transaction, used when modifying the tree |
| 1655 | * @p: Holds all btree nodes along the search path |
| 1656 | * @root: The root node of the tree |
| 1657 | * @key: The key we are looking for |
ethanwu | 9a66497 | 2020-12-01 17:25:12 +0800 | [diff] [blame] | 1658 | * @ins_len: Indicates purpose of search: |
| 1659 | * >0 for inserts it's size of item inserted (*) |
| 1660 | * <0 for deletions |
| 1661 | * 0 for plain searches, not modifying the tree |
| 1662 | * |
| 1663 | * (*) If size of item inserted doesn't include |
| 1664 | * sizeof(struct btrfs_item), then p->search_for_extension must |
| 1665 | * be set. |
Nikolay Borisov | 4271ece | 2017-12-13 09:38:14 +0200 | [diff] [blame] | 1666 | * @cow: boolean should CoW operations be performed. Must always be 1 |
| 1667 | * when modifying the tree. |
Chris Mason | 97571fd | 2007-02-24 13:39:08 -0500 | [diff] [blame] | 1668 | * |
Nikolay Borisov | 4271ece | 2017-12-13 09:38:14 +0200 | [diff] [blame] | 1669 | * If @ins_len > 0, nodes and leaves will be split as we walk down the tree. |
| 1670 | * If @ins_len < 0, nodes will be merged as we walk down the tree (if possible) |
| 1671 | * |
| 1672 | * If @key is found, 0 is returned and you can find the item in the leaf level |
| 1673 | * of the path (level 0) |
| 1674 | * |
| 1675 | * If @key isn't found, 1 is returned and the leaf level of the path (level 0) |
| 1676 | * points to the slot where it should be inserted |
| 1677 | * |
| 1678 | * If an error is encountered while searching the tree a negative error number |
| 1679 | * is returned |
Chris Mason | 74123bd | 2007-02-02 11:05:29 -0500 | [diff] [blame] | 1680 | */ |
Omar Sandoval | 310712b | 2017-01-17 23:24:37 -0800 | [diff] [blame] | 1681 | int btrfs_search_slot(struct btrfs_trans_handle *trans, struct btrfs_root *root, |
| 1682 | const struct btrfs_key *key, struct btrfs_path *p, |
| 1683 | int ins_len, int cow) |
Chris Mason | be0e5c0 | 2007-01-26 15:51:26 -0500 | [diff] [blame] | 1684 | { |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 1685 | struct extent_buffer *b; |
Chris Mason | be0e5c0 | 2007-01-26 15:51:26 -0500 | [diff] [blame] | 1686 | int slot; |
| 1687 | int ret; |
Yan Zheng | 33c66f4 | 2009-07-22 09:59:00 -0400 | [diff] [blame] | 1688 | int err; |
Chris Mason | be0e5c0 | 2007-01-26 15:51:26 -0500 | [diff] [blame] | 1689 | int level; |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 1690 | int lowest_unlock = 1; |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 1691 | /* everything at write_lock_level or lower must be write locked */ |
| 1692 | int write_lock_level = 0; |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 1693 | u8 lowest_level = 0; |
Chris Mason | f7c79f3 | 2012-03-19 15:54:38 -0400 | [diff] [blame] | 1694 | int min_write_lock_level; |
Filipe David Borba Manana | d7396f0 | 2013-08-30 15:46:43 +0100 | [diff] [blame] | 1695 | int prev_cmp; |
Chris Mason | 9f3a742 | 2007-08-07 15:52:19 -0400 | [diff] [blame] | 1696 | |
Chris Mason | 6702ed4 | 2007-08-07 16:15:09 -0400 | [diff] [blame] | 1697 | lowest_level = p->lowest_level; |
Chris Mason | 323ac95 | 2008-10-01 19:05:46 -0400 | [diff] [blame] | 1698 | WARN_ON(lowest_level && ins_len > 0); |
Chris Mason | 22b0ebd | 2007-03-30 08:47:31 -0400 | [diff] [blame] | 1699 | WARN_ON(p->nodes[0] != NULL); |
Filipe David Borba Manana | eb653de | 2013-12-23 11:53:02 +0000 | [diff] [blame] | 1700 | BUG_ON(!cow && ins_len); |
Josef Bacik | 2517920 | 2008-10-29 14:49:05 -0400 | [diff] [blame] | 1701 | |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 1702 | if (ins_len < 0) { |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 1703 | lowest_unlock = 2; |
Chris Mason | 65b51a0 | 2008-08-01 15:11:20 -0400 | [diff] [blame] | 1704 | |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 1705 | /* when we are removing items, we might have to go up to level |
| 1706 | * two as we update tree pointers Make sure we keep write |
| 1707 | * for those levels as well |
| 1708 | */ |
| 1709 | write_lock_level = 2; |
| 1710 | } else if (ins_len > 0) { |
| 1711 | /* |
| 1712 | * for inserting items, make sure we have a write lock on |
| 1713 | * level 1 so we can update keys |
| 1714 | */ |
| 1715 | write_lock_level = 1; |
| 1716 | } |
| 1717 | |
| 1718 | if (!cow) |
| 1719 | write_lock_level = -1; |
| 1720 | |
Josef Bacik | 09a2a8f9 | 2013-04-05 16:51:15 -0400 | [diff] [blame] | 1721 | if (cow && (p->keep_locks || p->lowest_level)) |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 1722 | write_lock_level = BTRFS_MAX_LEVEL; |
| 1723 | |
Chris Mason | f7c79f3 | 2012-03-19 15:54:38 -0400 | [diff] [blame] | 1724 | min_write_lock_level = write_lock_level; |
| 1725 | |
Chris Mason | bb80395 | 2007-03-01 12:04:21 -0500 | [diff] [blame] | 1726 | again: |
Filipe David Borba Manana | d7396f0 | 2013-08-30 15:46:43 +0100 | [diff] [blame] | 1727 | prev_cmp = -1; |
Liu Bo | 1fc28d8 | 2018-05-18 11:00:21 +0800 | [diff] [blame] | 1728 | b = btrfs_search_slot_get_root(root, p, write_lock_level); |
Filipe Manana | be6821f | 2018-12-11 10:19:45 +0000 | [diff] [blame] | 1729 | if (IS_ERR(b)) { |
| 1730 | ret = PTR_ERR(b); |
| 1731 | goto done; |
| 1732 | } |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 1733 | |
Chris Mason | eb60cea | 2007-02-02 09:18:22 -0500 | [diff] [blame] | 1734 | while (b) { |
Qu Wenruo | f624d97 | 2019-09-10 15:40:17 +0800 | [diff] [blame] | 1735 | int dec = 0; |
| 1736 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 1737 | level = btrfs_header_level(b); |
Chris Mason | 65b51a0 | 2008-08-01 15:11:20 -0400 | [diff] [blame] | 1738 | |
Chris Mason | 02217ed | 2007-03-02 16:08:05 -0500 | [diff] [blame] | 1739 | if (cow) { |
Nikolay Borisov | 9ea2c7c | 2017-12-12 11:14:49 +0200 | [diff] [blame] | 1740 | bool last_level = (level == (BTRFS_MAX_LEVEL - 1)); |
| 1741 | |
Chris Mason | c8c4286 | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 1742 | /* |
| 1743 | * if we don't really need to cow this block |
| 1744 | * then we don't want to set the path blocking, |
| 1745 | * so we test it here |
| 1746 | */ |
Josef Bacik | 5963ffca | 2021-05-20 11:21:31 -0400 | [diff] [blame] | 1747 | if (!should_cow_block(trans, root, b)) |
Chris Mason | 65b51a0 | 2008-08-01 15:11:20 -0400 | [diff] [blame] | 1748 | goto cow_done; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 1749 | |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 1750 | /* |
| 1751 | * must have write locks on this node and the |
| 1752 | * parent |
| 1753 | */ |
Josef Bacik | 5124e00 | 2012-11-07 13:44:13 -0500 | [diff] [blame] | 1754 | if (level > write_lock_level || |
| 1755 | (level + 1 > write_lock_level && |
| 1756 | level + 1 < BTRFS_MAX_LEVEL && |
| 1757 | p->nodes[level + 1])) { |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 1758 | write_lock_level = level + 1; |
| 1759 | btrfs_release_path(p); |
| 1760 | goto again; |
| 1761 | } |
| 1762 | |
Nikolay Borisov | 9ea2c7c | 2017-12-12 11:14:49 +0200 | [diff] [blame] | 1763 | if (last_level) |
| 1764 | err = btrfs_cow_block(trans, root, b, NULL, 0, |
Josef Bacik | 9631e4c | 2020-08-20 11:46:03 -0400 | [diff] [blame] | 1765 | &b, |
| 1766 | BTRFS_NESTING_COW); |
Nikolay Borisov | 9ea2c7c | 2017-12-12 11:14:49 +0200 | [diff] [blame] | 1767 | else |
| 1768 | err = btrfs_cow_block(trans, root, b, |
| 1769 | p->nodes[level + 1], |
Josef Bacik | 9631e4c | 2020-08-20 11:46:03 -0400 | [diff] [blame] | 1770 | p->slots[level + 1], &b, |
| 1771 | BTRFS_NESTING_COW); |
Yan Zheng | 33c66f4 | 2009-07-22 09:59:00 -0400 | [diff] [blame] | 1772 | if (err) { |
Yan Zheng | 33c66f4 | 2009-07-22 09:59:00 -0400 | [diff] [blame] | 1773 | ret = err; |
Chris Mason | 65b51a0 | 2008-08-01 15:11:20 -0400 | [diff] [blame] | 1774 | goto done; |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 1775 | } |
Chris Mason | 02217ed | 2007-03-02 16:08:05 -0500 | [diff] [blame] | 1776 | } |
Chris Mason | 65b51a0 | 2008-08-01 15:11:20 -0400 | [diff] [blame] | 1777 | cow_done: |
Chris Mason | eb60cea | 2007-02-02 09:18:22 -0500 | [diff] [blame] | 1778 | p->nodes[level] = b; |
Liu Bo | 5239834 | 2018-08-22 05:54:37 +0800 | [diff] [blame] | 1779 | /* |
| 1780 | * Leave path with blocking locks to avoid massive |
| 1781 | * lock context switch, this is made on purpose. |
| 1782 | */ |
Chris Mason | b4ce94d | 2009-02-04 09:25:08 -0500 | [diff] [blame] | 1783 | |
| 1784 | /* |
| 1785 | * we have a lock on b and as long as we aren't changing |
| 1786 | * the tree, there is no way to for the items in b to change. |
| 1787 | * It is safe to drop the lock on our parent before we |
| 1788 | * go through the expensive btree search on b. |
| 1789 | * |
Filipe David Borba Manana | eb653de | 2013-12-23 11:53:02 +0000 | [diff] [blame] | 1790 | * If we're inserting or deleting (ins_len != 0), then we might |
| 1791 | * be changing slot zero, which may require changing the parent. |
| 1792 | * So, we can't drop the lock until after we know which slot |
| 1793 | * we're operating on. |
Chris Mason | b4ce94d | 2009-02-04 09:25:08 -0500 | [diff] [blame] | 1794 | */ |
Filipe David Borba Manana | eb653de | 2013-12-23 11:53:02 +0000 | [diff] [blame] | 1795 | if (!ins_len && !p->keep_locks) { |
| 1796 | int u = level + 1; |
| 1797 | |
| 1798 | if (u < BTRFS_MAX_LEVEL && p->locks[u]) { |
| 1799 | btrfs_tree_unlock_rw(p->nodes[u], p->locks[u]); |
| 1800 | p->locks[u] = 0; |
| 1801 | } |
| 1802 | } |
Chris Mason | b4ce94d | 2009-02-04 09:25:08 -0500 | [diff] [blame] | 1803 | |
Nikolay Borisov | 995e9a1 | 2020-05-27 13:10:53 +0300 | [diff] [blame] | 1804 | /* |
| 1805 | * If btrfs_bin_search returns an exact match (prev_cmp == 0) |
| 1806 | * we can safely assume the target key will always be in slot 0 |
| 1807 | * on lower levels due to the invariants BTRFS' btree provides, |
| 1808 | * namely that a btrfs_key_ptr entry always points to the |
| 1809 | * lowest key in the child node, thus we can skip searching |
| 1810 | * lower levels |
| 1811 | */ |
| 1812 | if (prev_cmp == 0) { |
| 1813 | slot = 0; |
| 1814 | ret = 0; |
| 1815 | } else { |
| 1816 | ret = btrfs_bin_search(b, key, &slot); |
| 1817 | prev_cmp = ret; |
| 1818 | if (ret < 0) |
| 1819 | goto done; |
| 1820 | } |
Chris Mason | b4ce94d | 2009-02-04 09:25:08 -0500 | [diff] [blame] | 1821 | |
Qu Wenruo | f624d97 | 2019-09-10 15:40:17 +0800 | [diff] [blame] | 1822 | if (level == 0) { |
Chris Mason | be0e5c0 | 2007-01-26 15:51:26 -0500 | [diff] [blame] | 1823 | p->slots[level] = slot; |
ethanwu | 9a66497 | 2020-12-01 17:25:12 +0800 | [diff] [blame] | 1824 | /* |
| 1825 | * Item key already exists. In this case, if we are |
| 1826 | * allowed to insert the item (for example, in dir_item |
| 1827 | * case, item key collision is allowed), it will be |
| 1828 | * merged with the original item. Only the item size |
| 1829 | * grows, no new btrfs item will be added. If |
| 1830 | * search_for_extension is not set, ins_len already |
| 1831 | * accounts the size btrfs_item, deduct it here so leaf |
| 1832 | * space check will be correct. |
| 1833 | */ |
| 1834 | if (ret == 0 && ins_len > 0 && !p->search_for_extension) { |
| 1835 | ASSERT(ins_len >= sizeof(struct btrfs_item)); |
| 1836 | ins_len -= sizeof(struct btrfs_item); |
| 1837 | } |
Yan Zheng | 87b29b2 | 2008-12-17 10:21:48 -0500 | [diff] [blame] | 1838 | if (ins_len > 0 && |
David Sterba | e902baa | 2019-03-20 14:36:46 +0100 | [diff] [blame] | 1839 | btrfs_leaf_free_space(b) < ins_len) { |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 1840 | if (write_lock_level < 1) { |
| 1841 | write_lock_level = 1; |
| 1842 | btrfs_release_path(p); |
| 1843 | goto again; |
| 1844 | } |
| 1845 | |
Yan Zheng | 33c66f4 | 2009-07-22 09:59:00 -0400 | [diff] [blame] | 1846 | err = split_leaf(trans, root, key, |
| 1847 | p, ins_len, ret == 0); |
Chris Mason | b4ce94d | 2009-02-04 09:25:08 -0500 | [diff] [blame] | 1848 | |
Yan Zheng | 33c66f4 | 2009-07-22 09:59:00 -0400 | [diff] [blame] | 1849 | BUG_ON(err > 0); |
| 1850 | if (err) { |
| 1851 | ret = err; |
Chris Mason | 65b51a0 | 2008-08-01 15:11:20 -0400 | [diff] [blame] | 1852 | goto done; |
| 1853 | } |
Chris Mason | 5c680ed | 2007-02-22 11:39:13 -0500 | [diff] [blame] | 1854 | } |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 1855 | if (!p->search_for_split) |
Chris Mason | f7c79f3 | 2012-03-19 15:54:38 -0400 | [diff] [blame] | 1856 | unlock_up(p, level, lowest_unlock, |
Liu Bo | 4b6f8e9 | 2018-08-14 10:46:53 +0800 | [diff] [blame] | 1857 | min_write_lock_level, NULL); |
Chris Mason | 65b51a0 | 2008-08-01 15:11:20 -0400 | [diff] [blame] | 1858 | goto done; |
Chris Mason | be0e5c0 | 2007-01-26 15:51:26 -0500 | [diff] [blame] | 1859 | } |
Qu Wenruo | f624d97 | 2019-09-10 15:40:17 +0800 | [diff] [blame] | 1860 | if (ret && slot > 0) { |
| 1861 | dec = 1; |
| 1862 | slot--; |
| 1863 | } |
| 1864 | p->slots[level] = slot; |
| 1865 | err = setup_nodes_for_search(trans, root, p, b, level, ins_len, |
| 1866 | &write_lock_level); |
| 1867 | if (err == -EAGAIN) |
| 1868 | goto again; |
| 1869 | if (err) { |
| 1870 | ret = err; |
| 1871 | goto done; |
| 1872 | } |
| 1873 | b = p->nodes[level]; |
| 1874 | slot = p->slots[level]; |
| 1875 | |
| 1876 | /* |
| 1877 | * Slot 0 is special, if we change the key we have to update |
| 1878 | * the parent pointer which means we must have a write lock on |
| 1879 | * the parent |
| 1880 | */ |
| 1881 | if (slot == 0 && ins_len && write_lock_level < level + 1) { |
| 1882 | write_lock_level = level + 1; |
| 1883 | btrfs_release_path(p); |
| 1884 | goto again; |
| 1885 | } |
| 1886 | |
| 1887 | unlock_up(p, level, lowest_unlock, min_write_lock_level, |
| 1888 | &write_lock_level); |
| 1889 | |
| 1890 | if (level == lowest_level) { |
| 1891 | if (dec) |
| 1892 | p->slots[level]++; |
| 1893 | goto done; |
| 1894 | } |
| 1895 | |
| 1896 | err = read_block_for_search(root, p, &b, level, slot, key); |
| 1897 | if (err == -EAGAIN) |
| 1898 | goto again; |
| 1899 | if (err) { |
| 1900 | ret = err; |
| 1901 | goto done; |
| 1902 | } |
| 1903 | |
| 1904 | if (!p->skip_locking) { |
| 1905 | level = btrfs_header_level(b); |
| 1906 | if (level <= write_lock_level) { |
Josef Bacik | ac5887c | 2020-08-20 11:46:10 -0400 | [diff] [blame] | 1907 | btrfs_tree_lock(b); |
Qu Wenruo | f624d97 | 2019-09-10 15:40:17 +0800 | [diff] [blame] | 1908 | p->locks[level] = BTRFS_WRITE_LOCK; |
| 1909 | } else { |
Josef Bacik | fe596ca | 2020-11-06 16:27:34 -0500 | [diff] [blame] | 1910 | btrfs_tree_read_lock(b); |
Qu Wenruo | f624d97 | 2019-09-10 15:40:17 +0800 | [diff] [blame] | 1911 | p->locks[level] = BTRFS_READ_LOCK; |
| 1912 | } |
| 1913 | p->nodes[level] = b; |
| 1914 | } |
Chris Mason | be0e5c0 | 2007-01-26 15:51:26 -0500 | [diff] [blame] | 1915 | } |
Chris Mason | 65b51a0 | 2008-08-01 15:11:20 -0400 | [diff] [blame] | 1916 | ret = 1; |
| 1917 | done: |
Filipe Manana | 5f5bc6b | 2014-11-09 08:38:39 +0000 | [diff] [blame] | 1918 | if (ret < 0 && !p->skip_release_on_error) |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 1919 | btrfs_release_path(p); |
Chris Mason | 65b51a0 | 2008-08-01 15:11:20 -0400 | [diff] [blame] | 1920 | return ret; |
Chris Mason | be0e5c0 | 2007-01-26 15:51:26 -0500 | [diff] [blame] | 1921 | } |
Josef Bacik | f75e2b7 | 2020-12-16 11:18:43 -0500 | [diff] [blame] | 1922 | ALLOW_ERROR_INJECTION(btrfs_search_slot, ERRNO); |
Chris Mason | be0e5c0 | 2007-01-26 15:51:26 -0500 | [diff] [blame] | 1923 | |
Chris Mason | 74123bd | 2007-02-02 11:05:29 -0500 | [diff] [blame] | 1924 | /* |
Jan Schmidt | 5d9e75c4 | 2012-05-16 18:25:47 +0200 | [diff] [blame] | 1925 | * Like btrfs_search_slot, this looks for a key in the given tree. It uses the |
| 1926 | * current state of the tree together with the operations recorded in the tree |
| 1927 | * modification log to search for the key in a previous version of this tree, as |
| 1928 | * denoted by the time_seq parameter. |
| 1929 | * |
| 1930 | * Naturally, there is no support for insert, delete or cow operations. |
| 1931 | * |
| 1932 | * The resulting path and return value will be set up as if we called |
| 1933 | * btrfs_search_slot at that point in time with ins_len and cow both set to 0. |
| 1934 | */ |
Omar Sandoval | 310712b | 2017-01-17 23:24:37 -0800 | [diff] [blame] | 1935 | int btrfs_search_old_slot(struct btrfs_root *root, const struct btrfs_key *key, |
Jan Schmidt | 5d9e75c4 | 2012-05-16 18:25:47 +0200 | [diff] [blame] | 1936 | struct btrfs_path *p, u64 time_seq) |
| 1937 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1938 | struct btrfs_fs_info *fs_info = root->fs_info; |
Jan Schmidt | 5d9e75c4 | 2012-05-16 18:25:47 +0200 | [diff] [blame] | 1939 | struct extent_buffer *b; |
| 1940 | int slot; |
| 1941 | int ret; |
| 1942 | int err; |
| 1943 | int level; |
| 1944 | int lowest_unlock = 1; |
| 1945 | u8 lowest_level = 0; |
| 1946 | |
| 1947 | lowest_level = p->lowest_level; |
| 1948 | WARN_ON(p->nodes[0] != NULL); |
| 1949 | |
| 1950 | if (p->search_commit_root) { |
| 1951 | BUG_ON(time_seq); |
| 1952 | return btrfs_search_slot(NULL, root, key, p, 0, 0); |
| 1953 | } |
| 1954 | |
| 1955 | again: |
Filipe Manana | f3a84cc | 2021-03-11 14:31:07 +0000 | [diff] [blame] | 1956 | b = btrfs_get_old_root(root, time_seq); |
Nikolay Borisov | 315bed4 | 2018-09-13 11:35:10 +0300 | [diff] [blame] | 1957 | if (!b) { |
| 1958 | ret = -EIO; |
| 1959 | goto done; |
| 1960 | } |
Jan Schmidt | 5d9e75c4 | 2012-05-16 18:25:47 +0200 | [diff] [blame] | 1961 | level = btrfs_header_level(b); |
Jan Schmidt | 5d9e75c4 | 2012-05-16 18:25:47 +0200 | [diff] [blame] | 1962 | p->locks[level] = BTRFS_READ_LOCK; |
| 1963 | |
| 1964 | while (b) { |
Qu Wenruo | abe9339 | 2019-09-10 15:40:18 +0800 | [diff] [blame] | 1965 | int dec = 0; |
| 1966 | |
Jan Schmidt | 5d9e75c4 | 2012-05-16 18:25:47 +0200 | [diff] [blame] | 1967 | level = btrfs_header_level(b); |
| 1968 | p->nodes[level] = b; |
Jan Schmidt | 5d9e75c4 | 2012-05-16 18:25:47 +0200 | [diff] [blame] | 1969 | |
| 1970 | /* |
| 1971 | * we have a lock on b and as long as we aren't changing |
| 1972 | * the tree, there is no way to for the items in b to change. |
| 1973 | * It is safe to drop the lock on our parent before we |
| 1974 | * go through the expensive btree search on b. |
| 1975 | */ |
| 1976 | btrfs_unlock_up_safe(p, level + 1); |
| 1977 | |
Nikolay Borisov | 995e9a1 | 2020-05-27 13:10:53 +0300 | [diff] [blame] | 1978 | ret = btrfs_bin_search(b, key, &slot); |
Filipe Manana | cbca7d5 | 2019-02-18 16:57:26 +0000 | [diff] [blame] | 1979 | if (ret < 0) |
| 1980 | goto done; |
Jan Schmidt | 5d9e75c4 | 2012-05-16 18:25:47 +0200 | [diff] [blame] | 1981 | |
Qu Wenruo | abe9339 | 2019-09-10 15:40:18 +0800 | [diff] [blame] | 1982 | if (level == 0) { |
Jan Schmidt | 5d9e75c4 | 2012-05-16 18:25:47 +0200 | [diff] [blame] | 1983 | p->slots[level] = slot; |
| 1984 | unlock_up(p, level, lowest_unlock, 0, NULL); |
| 1985 | goto done; |
| 1986 | } |
Qu Wenruo | abe9339 | 2019-09-10 15:40:18 +0800 | [diff] [blame] | 1987 | |
| 1988 | if (ret && slot > 0) { |
| 1989 | dec = 1; |
| 1990 | slot--; |
| 1991 | } |
| 1992 | p->slots[level] = slot; |
| 1993 | unlock_up(p, level, lowest_unlock, 0, NULL); |
| 1994 | |
| 1995 | if (level == lowest_level) { |
| 1996 | if (dec) |
| 1997 | p->slots[level]++; |
| 1998 | goto done; |
| 1999 | } |
| 2000 | |
| 2001 | err = read_block_for_search(root, p, &b, level, slot, key); |
| 2002 | if (err == -EAGAIN) |
| 2003 | goto again; |
| 2004 | if (err) { |
| 2005 | ret = err; |
| 2006 | goto done; |
| 2007 | } |
| 2008 | |
| 2009 | level = btrfs_header_level(b); |
Josef Bacik | ac5887c | 2020-08-20 11:46:10 -0400 | [diff] [blame] | 2010 | btrfs_tree_read_lock(b); |
Filipe Manana | f3a84cc | 2021-03-11 14:31:07 +0000 | [diff] [blame] | 2011 | b = btrfs_tree_mod_log_rewind(fs_info, p, b, time_seq); |
Qu Wenruo | abe9339 | 2019-09-10 15:40:18 +0800 | [diff] [blame] | 2012 | if (!b) { |
| 2013 | ret = -ENOMEM; |
| 2014 | goto done; |
| 2015 | } |
| 2016 | p->locks[level] = BTRFS_READ_LOCK; |
| 2017 | p->nodes[level] = b; |
Jan Schmidt | 5d9e75c4 | 2012-05-16 18:25:47 +0200 | [diff] [blame] | 2018 | } |
| 2019 | ret = 1; |
| 2020 | done: |
Jan Schmidt | 5d9e75c4 | 2012-05-16 18:25:47 +0200 | [diff] [blame] | 2021 | if (ret < 0) |
| 2022 | btrfs_release_path(p); |
| 2023 | |
| 2024 | return ret; |
| 2025 | } |
| 2026 | |
| 2027 | /* |
Arne Jansen | 2f38b3e | 2011-09-13 11:18:10 +0200 | [diff] [blame] | 2028 | * helper to use instead of search slot if no exact match is needed but |
| 2029 | * instead the next or previous item should be returned. |
| 2030 | * When find_higher is true, the next higher item is returned, the next lower |
| 2031 | * otherwise. |
| 2032 | * When return_any and find_higher are both true, and no higher item is found, |
| 2033 | * return the next lower instead. |
| 2034 | * When return_any is true and find_higher is false, and no lower item is found, |
| 2035 | * return the next higher instead. |
| 2036 | * It returns 0 if any item is found, 1 if none is found (tree empty), and |
| 2037 | * < 0 on error |
| 2038 | */ |
| 2039 | int btrfs_search_slot_for_read(struct btrfs_root *root, |
Omar Sandoval | 310712b | 2017-01-17 23:24:37 -0800 | [diff] [blame] | 2040 | const struct btrfs_key *key, |
| 2041 | struct btrfs_path *p, int find_higher, |
| 2042 | int return_any) |
Arne Jansen | 2f38b3e | 2011-09-13 11:18:10 +0200 | [diff] [blame] | 2043 | { |
| 2044 | int ret; |
| 2045 | struct extent_buffer *leaf; |
| 2046 | |
| 2047 | again: |
| 2048 | ret = btrfs_search_slot(NULL, root, key, p, 0, 0); |
| 2049 | if (ret <= 0) |
| 2050 | return ret; |
| 2051 | /* |
| 2052 | * a return value of 1 means the path is at the position where the |
| 2053 | * item should be inserted. Normally this is the next bigger item, |
| 2054 | * but in case the previous item is the last in a leaf, path points |
| 2055 | * to the first free slot in the previous leaf, i.e. at an invalid |
| 2056 | * item. |
| 2057 | */ |
| 2058 | leaf = p->nodes[0]; |
| 2059 | |
| 2060 | if (find_higher) { |
| 2061 | if (p->slots[0] >= btrfs_header_nritems(leaf)) { |
| 2062 | ret = btrfs_next_leaf(root, p); |
| 2063 | if (ret <= 0) |
| 2064 | return ret; |
| 2065 | if (!return_any) |
| 2066 | return 1; |
| 2067 | /* |
| 2068 | * no higher item found, return the next |
| 2069 | * lower instead |
| 2070 | */ |
| 2071 | return_any = 0; |
| 2072 | find_higher = 0; |
| 2073 | btrfs_release_path(p); |
| 2074 | goto again; |
| 2075 | } |
| 2076 | } else { |
Arne Jansen | e679376 | 2011-09-13 11:18:10 +0200 | [diff] [blame] | 2077 | if (p->slots[0] == 0) { |
| 2078 | ret = btrfs_prev_leaf(root, p); |
| 2079 | if (ret < 0) |
| 2080 | return ret; |
| 2081 | if (!ret) { |
Filipe David Borba Manana | 23c6bf6 | 2014-01-11 21:28:54 +0000 | [diff] [blame] | 2082 | leaf = p->nodes[0]; |
| 2083 | if (p->slots[0] == btrfs_header_nritems(leaf)) |
| 2084 | p->slots[0]--; |
Arne Jansen | e679376 | 2011-09-13 11:18:10 +0200 | [diff] [blame] | 2085 | return 0; |
Arne Jansen | 2f38b3e | 2011-09-13 11:18:10 +0200 | [diff] [blame] | 2086 | } |
Arne Jansen | e679376 | 2011-09-13 11:18:10 +0200 | [diff] [blame] | 2087 | if (!return_any) |
| 2088 | return 1; |
| 2089 | /* |
| 2090 | * no lower item found, return the next |
| 2091 | * higher instead |
| 2092 | */ |
| 2093 | return_any = 0; |
| 2094 | find_higher = 1; |
| 2095 | btrfs_release_path(p); |
| 2096 | goto again; |
| 2097 | } else { |
Arne Jansen | 2f38b3e | 2011-09-13 11:18:10 +0200 | [diff] [blame] | 2098 | --p->slots[0]; |
| 2099 | } |
| 2100 | } |
| 2101 | return 0; |
| 2102 | } |
| 2103 | |
| 2104 | /* |
Marcos Paulo de Souza | 0ff40a9 | 2021-07-29 05:22:16 -0300 | [diff] [blame] | 2105 | * Execute search and call btrfs_previous_item to traverse backwards if the item |
| 2106 | * was not found. |
| 2107 | * |
| 2108 | * Return 0 if found, 1 if not found and < 0 if error. |
| 2109 | */ |
| 2110 | int btrfs_search_backwards(struct btrfs_root *root, struct btrfs_key *key, |
| 2111 | struct btrfs_path *path) |
| 2112 | { |
| 2113 | int ret; |
| 2114 | |
| 2115 | ret = btrfs_search_slot(NULL, root, key, path, 0, 0); |
| 2116 | if (ret > 0) |
| 2117 | ret = btrfs_previous_item(root, path, key->objectid, key->type); |
| 2118 | |
| 2119 | if (ret == 0) |
| 2120 | btrfs_item_key_to_cpu(path->nodes[0], key, path->slots[0]); |
| 2121 | |
| 2122 | return ret; |
| 2123 | } |
| 2124 | |
| 2125 | /* |
Chris Mason | 74123bd | 2007-02-02 11:05:29 -0500 | [diff] [blame] | 2126 | * adjust the pointers going up the tree, starting at level |
| 2127 | * making sure the right key of each node is points to 'key'. |
| 2128 | * This is used after shifting pointers to the left, so it stops |
| 2129 | * fixing up pointers when a given leaf/node is not in slot 0 of the |
| 2130 | * higher levels |
Chris Mason | aa5d6be | 2007-02-28 16:35:06 -0500 | [diff] [blame] | 2131 | * |
Chris Mason | 74123bd | 2007-02-02 11:05:29 -0500 | [diff] [blame] | 2132 | */ |
Nikolay Borisov | b167fa9 | 2018-06-20 15:48:47 +0300 | [diff] [blame] | 2133 | static void fixup_low_keys(struct btrfs_path *path, |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 2134 | struct btrfs_disk_key *key, int level) |
Chris Mason | be0e5c0 | 2007-01-26 15:51:26 -0500 | [diff] [blame] | 2135 | { |
| 2136 | int i; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2137 | struct extent_buffer *t; |
David Sterba | 0e82bcf | 2018-03-05 16:16:54 +0100 | [diff] [blame] | 2138 | int ret; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2139 | |
Chris Mason | 234b63a | 2007-03-13 10:46:10 -0400 | [diff] [blame] | 2140 | for (i = level; i < BTRFS_MAX_LEVEL; i++) { |
Chris Mason | be0e5c0 | 2007-01-26 15:51:26 -0500 | [diff] [blame] | 2141 | int tslot = path->slots[i]; |
David Sterba | 0e82bcf | 2018-03-05 16:16:54 +0100 | [diff] [blame] | 2142 | |
Chris Mason | eb60cea | 2007-02-02 09:18:22 -0500 | [diff] [blame] | 2143 | if (!path->nodes[i]) |
Chris Mason | be0e5c0 | 2007-01-26 15:51:26 -0500 | [diff] [blame] | 2144 | break; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2145 | t = path->nodes[i]; |
Filipe Manana | f3a84cc | 2021-03-11 14:31:07 +0000 | [diff] [blame] | 2146 | ret = btrfs_tree_mod_log_insert_key(t, tslot, |
| 2147 | BTRFS_MOD_LOG_KEY_REPLACE, GFP_ATOMIC); |
David Sterba | 0e82bcf | 2018-03-05 16:16:54 +0100 | [diff] [blame] | 2148 | BUG_ON(ret < 0); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2149 | btrfs_set_node_key(t, key, tslot); |
Chris Mason | d602557 | 2007-03-30 14:27:56 -0400 | [diff] [blame] | 2150 | btrfs_mark_buffer_dirty(path->nodes[i]); |
Chris Mason | be0e5c0 | 2007-01-26 15:51:26 -0500 | [diff] [blame] | 2151 | if (tslot != 0) |
| 2152 | break; |
| 2153 | } |
| 2154 | } |
| 2155 | |
Chris Mason | 74123bd | 2007-02-02 11:05:29 -0500 | [diff] [blame] | 2156 | /* |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 2157 | * update item key. |
| 2158 | * |
| 2159 | * This function isn't completely safe. It's the caller's responsibility |
| 2160 | * that the new key won't break the order |
| 2161 | */ |
Daniel Dressler | b7a0365 | 2014-11-12 13:43:09 +0900 | [diff] [blame] | 2162 | void btrfs_set_item_key_safe(struct btrfs_fs_info *fs_info, |
| 2163 | struct btrfs_path *path, |
Omar Sandoval | 310712b | 2017-01-17 23:24:37 -0800 | [diff] [blame] | 2164 | const struct btrfs_key *new_key) |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 2165 | { |
| 2166 | struct btrfs_disk_key disk_key; |
| 2167 | struct extent_buffer *eb; |
| 2168 | int slot; |
| 2169 | |
| 2170 | eb = path->nodes[0]; |
| 2171 | slot = path->slots[0]; |
| 2172 | if (slot > 0) { |
| 2173 | btrfs_item_key(eb, &disk_key, slot - 1); |
Qu Wenruo | 7c15d41 | 2019-04-25 08:55:53 +0800 | [diff] [blame] | 2174 | if (unlikely(comp_keys(&disk_key, new_key) >= 0)) { |
| 2175 | btrfs_crit(fs_info, |
| 2176 | "slot %u key (%llu %u %llu) new key (%llu %u %llu)", |
| 2177 | slot, btrfs_disk_key_objectid(&disk_key), |
| 2178 | btrfs_disk_key_type(&disk_key), |
| 2179 | btrfs_disk_key_offset(&disk_key), |
| 2180 | new_key->objectid, new_key->type, |
| 2181 | new_key->offset); |
| 2182 | btrfs_print_leaf(eb); |
| 2183 | BUG(); |
| 2184 | } |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 2185 | } |
| 2186 | if (slot < btrfs_header_nritems(eb) - 1) { |
| 2187 | btrfs_item_key(eb, &disk_key, slot + 1); |
Qu Wenruo | 7c15d41 | 2019-04-25 08:55:53 +0800 | [diff] [blame] | 2188 | if (unlikely(comp_keys(&disk_key, new_key) <= 0)) { |
| 2189 | btrfs_crit(fs_info, |
| 2190 | "slot %u key (%llu %u %llu) new key (%llu %u %llu)", |
| 2191 | slot, btrfs_disk_key_objectid(&disk_key), |
| 2192 | btrfs_disk_key_type(&disk_key), |
| 2193 | btrfs_disk_key_offset(&disk_key), |
| 2194 | new_key->objectid, new_key->type, |
| 2195 | new_key->offset); |
| 2196 | btrfs_print_leaf(eb); |
| 2197 | BUG(); |
| 2198 | } |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 2199 | } |
| 2200 | |
| 2201 | btrfs_cpu_key_to_disk(&disk_key, new_key); |
| 2202 | btrfs_set_item_key(eb, &disk_key, slot); |
| 2203 | btrfs_mark_buffer_dirty(eb); |
| 2204 | if (slot == 0) |
Nikolay Borisov | b167fa9 | 2018-06-20 15:48:47 +0300 | [diff] [blame] | 2205 | fixup_low_keys(path, &disk_key, 1); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 2206 | } |
| 2207 | |
| 2208 | /* |
Qu Wenruo | d16c702 | 2020-08-19 14:35:50 +0800 | [diff] [blame] | 2209 | * Check key order of two sibling extent buffers. |
| 2210 | * |
| 2211 | * Return true if something is wrong. |
| 2212 | * Return false if everything is fine. |
| 2213 | * |
| 2214 | * Tree-checker only works inside one tree block, thus the following |
| 2215 | * corruption can not be detected by tree-checker: |
| 2216 | * |
| 2217 | * Leaf @left | Leaf @right |
| 2218 | * -------------------------------------------------------------- |
| 2219 | * | 1 | 2 | 3 | 4 | 5 | f6 | | 7 | 8 | |
| 2220 | * |
| 2221 | * Key f6 in leaf @left itself is valid, but not valid when the next |
| 2222 | * key in leaf @right is 7. |
| 2223 | * This can only be checked at tree block merge time. |
| 2224 | * And since tree checker has ensured all key order in each tree block |
| 2225 | * is correct, we only need to bother the last key of @left and the first |
| 2226 | * key of @right. |
| 2227 | */ |
| 2228 | static bool check_sibling_keys(struct extent_buffer *left, |
| 2229 | struct extent_buffer *right) |
| 2230 | { |
| 2231 | struct btrfs_key left_last; |
| 2232 | struct btrfs_key right_first; |
| 2233 | int level = btrfs_header_level(left); |
| 2234 | int nr_left = btrfs_header_nritems(left); |
| 2235 | int nr_right = btrfs_header_nritems(right); |
| 2236 | |
| 2237 | /* No key to check in one of the tree blocks */ |
| 2238 | if (!nr_left || !nr_right) |
| 2239 | return false; |
| 2240 | |
| 2241 | if (level) { |
| 2242 | btrfs_node_key_to_cpu(left, &left_last, nr_left - 1); |
| 2243 | btrfs_node_key_to_cpu(right, &right_first, 0); |
| 2244 | } else { |
| 2245 | btrfs_item_key_to_cpu(left, &left_last, nr_left - 1); |
| 2246 | btrfs_item_key_to_cpu(right, &right_first, 0); |
| 2247 | } |
| 2248 | |
| 2249 | if (btrfs_comp_cpu_keys(&left_last, &right_first) >= 0) { |
| 2250 | btrfs_crit(left->fs_info, |
| 2251 | "bad key order, sibling blocks, left last (%llu %u %llu) right first (%llu %u %llu)", |
| 2252 | left_last.objectid, left_last.type, |
| 2253 | left_last.offset, right_first.objectid, |
| 2254 | right_first.type, right_first.offset); |
| 2255 | return true; |
| 2256 | } |
| 2257 | return false; |
| 2258 | } |
| 2259 | |
| 2260 | /* |
Chris Mason | 74123bd | 2007-02-02 11:05:29 -0500 | [diff] [blame] | 2261 | * try to push data from one node into the next node left in the |
Chris Mason | 79f95c8 | 2007-03-01 15:16:26 -0500 | [diff] [blame] | 2262 | * tree. |
Chris Mason | aa5d6be | 2007-02-28 16:35:06 -0500 | [diff] [blame] | 2263 | * |
| 2264 | * returns 0 if some ptrs were pushed left, < 0 if there was some horrible |
| 2265 | * error, and > 0 if there was no room in the left hand block. |
Chris Mason | 74123bd | 2007-02-02 11:05:29 -0500 | [diff] [blame] | 2266 | */ |
Chris Mason | 98ed517 | 2008-01-03 10:01:48 -0500 | [diff] [blame] | 2267 | static int push_node_left(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2268 | struct extent_buffer *dst, |
Chris Mason | 971a1f6 | 2008-04-24 10:54:32 -0400 | [diff] [blame] | 2269 | struct extent_buffer *src, int empty) |
Chris Mason | be0e5c0 | 2007-01-26 15:51:26 -0500 | [diff] [blame] | 2270 | { |
David Sterba | d30a668 | 2019-03-20 14:16:45 +0100 | [diff] [blame] | 2271 | struct btrfs_fs_info *fs_info = trans->fs_info; |
Chris Mason | be0e5c0 | 2007-01-26 15:51:26 -0500 | [diff] [blame] | 2272 | int push_items = 0; |
Chris Mason | bb80395 | 2007-03-01 12:04:21 -0500 | [diff] [blame] | 2273 | int src_nritems; |
| 2274 | int dst_nritems; |
Chris Mason | aa5d6be | 2007-02-28 16:35:06 -0500 | [diff] [blame] | 2275 | int ret = 0; |
Chris Mason | be0e5c0 | 2007-01-26 15:51:26 -0500 | [diff] [blame] | 2276 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2277 | src_nritems = btrfs_header_nritems(src); |
| 2278 | dst_nritems = btrfs_header_nritems(dst); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2279 | push_items = BTRFS_NODEPTRS_PER_BLOCK(fs_info) - dst_nritems; |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 2280 | WARN_ON(btrfs_header_generation(src) != trans->transid); |
| 2281 | WARN_ON(btrfs_header_generation(dst) != trans->transid); |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 2282 | |
Chris Mason | bce4eae | 2008-04-24 14:42:46 -0400 | [diff] [blame] | 2283 | if (!empty && src_nritems <= 8) |
Chris Mason | 971a1f6 | 2008-04-24 10:54:32 -0400 | [diff] [blame] | 2284 | return 1; |
| 2285 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 2286 | if (push_items <= 0) |
Chris Mason | be0e5c0 | 2007-01-26 15:51:26 -0500 | [diff] [blame] | 2287 | return 1; |
| 2288 | |
Chris Mason | bce4eae | 2008-04-24 14:42:46 -0400 | [diff] [blame] | 2289 | if (empty) { |
Chris Mason | 971a1f6 | 2008-04-24 10:54:32 -0400 | [diff] [blame] | 2290 | push_items = min(src_nritems, push_items); |
Chris Mason | bce4eae | 2008-04-24 14:42:46 -0400 | [diff] [blame] | 2291 | if (push_items < src_nritems) { |
| 2292 | /* leave at least 8 pointers in the node if |
| 2293 | * we aren't going to empty it |
| 2294 | */ |
| 2295 | if (src_nritems - push_items < 8) { |
| 2296 | if (push_items <= 8) |
| 2297 | return 1; |
| 2298 | push_items -= 8; |
| 2299 | } |
| 2300 | } |
| 2301 | } else |
| 2302 | push_items = min(src_nritems - 8, push_items); |
Chris Mason | 79f95c8 | 2007-03-01 15:16:26 -0500 | [diff] [blame] | 2303 | |
Qu Wenruo | d16c702 | 2020-08-19 14:35:50 +0800 | [diff] [blame] | 2304 | /* dst is the left eb, src is the middle eb */ |
| 2305 | if (check_sibling_keys(dst, src)) { |
| 2306 | ret = -EUCLEAN; |
| 2307 | btrfs_abort_transaction(trans, ret); |
| 2308 | return ret; |
| 2309 | } |
Filipe Manana | f3a84cc | 2021-03-11 14:31:07 +0000 | [diff] [blame] | 2310 | ret = btrfs_tree_mod_log_eb_copy(dst, src, dst_nritems, 0, push_items); |
Filipe David Borba Manana | 5de865e | 2013-12-20 15:17:46 +0000 | [diff] [blame] | 2311 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 2312 | btrfs_abort_transaction(trans, ret); |
Filipe David Borba Manana | 5de865e | 2013-12-20 15:17:46 +0000 | [diff] [blame] | 2313 | return ret; |
| 2314 | } |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2315 | copy_extent_buffer(dst, src, |
| 2316 | btrfs_node_key_ptr_offset(dst_nritems), |
| 2317 | btrfs_node_key_ptr_offset(0), |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 2318 | push_items * sizeof(struct btrfs_key_ptr)); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2319 | |
Chris Mason | bb80395 | 2007-03-01 12:04:21 -0500 | [diff] [blame] | 2320 | if (push_items < src_nritems) { |
Jan Schmidt | 57911b8 | 2012-10-19 09:22:03 +0200 | [diff] [blame] | 2321 | /* |
Filipe Manana | f3a84cc | 2021-03-11 14:31:07 +0000 | [diff] [blame] | 2322 | * Don't call btrfs_tree_mod_log_insert_move() here, key removal |
| 2323 | * was already fully logged by btrfs_tree_mod_log_eb_copy() above. |
Jan Schmidt | 57911b8 | 2012-10-19 09:22:03 +0200 | [diff] [blame] | 2324 | */ |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2325 | memmove_extent_buffer(src, btrfs_node_key_ptr_offset(0), |
| 2326 | btrfs_node_key_ptr_offset(push_items), |
| 2327 | (src_nritems - push_items) * |
| 2328 | sizeof(struct btrfs_key_ptr)); |
Chris Mason | bb80395 | 2007-03-01 12:04:21 -0500 | [diff] [blame] | 2329 | } |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2330 | btrfs_set_header_nritems(src, src_nritems - push_items); |
| 2331 | btrfs_set_header_nritems(dst, dst_nritems + push_items); |
| 2332 | btrfs_mark_buffer_dirty(src); |
| 2333 | btrfs_mark_buffer_dirty(dst); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 2334 | |
Chris Mason | bb80395 | 2007-03-01 12:04:21 -0500 | [diff] [blame] | 2335 | return ret; |
Chris Mason | be0e5c0 | 2007-01-26 15:51:26 -0500 | [diff] [blame] | 2336 | } |
| 2337 | |
Chris Mason | 97571fd | 2007-02-24 13:39:08 -0500 | [diff] [blame] | 2338 | /* |
Chris Mason | 79f95c8 | 2007-03-01 15:16:26 -0500 | [diff] [blame] | 2339 | * try to push data from one node into the next node right in the |
| 2340 | * tree. |
| 2341 | * |
| 2342 | * returns 0 if some ptrs were pushed, < 0 if there was some horrible |
| 2343 | * error, and > 0 if there was no room in the right hand block. |
| 2344 | * |
| 2345 | * this will only push up to 1/2 the contents of the left node over |
| 2346 | */ |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2347 | static int balance_node_right(struct btrfs_trans_handle *trans, |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2348 | struct extent_buffer *dst, |
| 2349 | struct extent_buffer *src) |
Chris Mason | 79f95c8 | 2007-03-01 15:16:26 -0500 | [diff] [blame] | 2350 | { |
David Sterba | 55d32ed | 2019-03-20 14:18:06 +0100 | [diff] [blame] | 2351 | struct btrfs_fs_info *fs_info = trans->fs_info; |
Chris Mason | 79f95c8 | 2007-03-01 15:16:26 -0500 | [diff] [blame] | 2352 | int push_items = 0; |
| 2353 | int max_push; |
| 2354 | int src_nritems; |
| 2355 | int dst_nritems; |
| 2356 | int ret = 0; |
Chris Mason | 79f95c8 | 2007-03-01 15:16:26 -0500 | [diff] [blame] | 2357 | |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 2358 | WARN_ON(btrfs_header_generation(src) != trans->transid); |
| 2359 | WARN_ON(btrfs_header_generation(dst) != trans->transid); |
| 2360 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2361 | src_nritems = btrfs_header_nritems(src); |
| 2362 | dst_nritems = btrfs_header_nritems(dst); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2363 | push_items = BTRFS_NODEPTRS_PER_BLOCK(fs_info) - dst_nritems; |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 2364 | if (push_items <= 0) |
Chris Mason | 79f95c8 | 2007-03-01 15:16:26 -0500 | [diff] [blame] | 2365 | return 1; |
Chris Mason | bce4eae | 2008-04-24 14:42:46 -0400 | [diff] [blame] | 2366 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 2367 | if (src_nritems < 4) |
Chris Mason | bce4eae | 2008-04-24 14:42:46 -0400 | [diff] [blame] | 2368 | return 1; |
Chris Mason | 79f95c8 | 2007-03-01 15:16:26 -0500 | [diff] [blame] | 2369 | |
| 2370 | max_push = src_nritems / 2 + 1; |
| 2371 | /* don't try to empty the node */ |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 2372 | if (max_push >= src_nritems) |
Chris Mason | 79f95c8 | 2007-03-01 15:16:26 -0500 | [diff] [blame] | 2373 | return 1; |
Yan | 252c38f | 2007-08-29 09:11:44 -0400 | [diff] [blame] | 2374 | |
Chris Mason | 79f95c8 | 2007-03-01 15:16:26 -0500 | [diff] [blame] | 2375 | if (max_push < push_items) |
| 2376 | push_items = max_push; |
| 2377 | |
Qu Wenruo | d16c702 | 2020-08-19 14:35:50 +0800 | [diff] [blame] | 2378 | /* dst is the right eb, src is the middle eb */ |
| 2379 | if (check_sibling_keys(src, dst)) { |
| 2380 | ret = -EUCLEAN; |
| 2381 | btrfs_abort_transaction(trans, ret); |
| 2382 | return ret; |
| 2383 | } |
Filipe Manana | f3a84cc | 2021-03-11 14:31:07 +0000 | [diff] [blame] | 2384 | ret = btrfs_tree_mod_log_insert_move(dst, push_items, 0, dst_nritems); |
David Sterba | bf1d342 | 2018-03-05 15:47:39 +0100 | [diff] [blame] | 2385 | BUG_ON(ret < 0); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2386 | memmove_extent_buffer(dst, btrfs_node_key_ptr_offset(push_items), |
| 2387 | btrfs_node_key_ptr_offset(0), |
| 2388 | (dst_nritems) * |
| 2389 | sizeof(struct btrfs_key_ptr)); |
Chris Mason | d602557 | 2007-03-30 14:27:56 -0400 | [diff] [blame] | 2390 | |
Filipe Manana | f3a84cc | 2021-03-11 14:31:07 +0000 | [diff] [blame] | 2391 | ret = btrfs_tree_mod_log_eb_copy(dst, src, 0, src_nritems - push_items, |
| 2392 | push_items); |
Filipe David Borba Manana | 5de865e | 2013-12-20 15:17:46 +0000 | [diff] [blame] | 2393 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 2394 | btrfs_abort_transaction(trans, ret); |
Filipe David Borba Manana | 5de865e | 2013-12-20 15:17:46 +0000 | [diff] [blame] | 2395 | return ret; |
| 2396 | } |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2397 | copy_extent_buffer(dst, src, |
| 2398 | btrfs_node_key_ptr_offset(0), |
| 2399 | btrfs_node_key_ptr_offset(src_nritems - push_items), |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 2400 | push_items * sizeof(struct btrfs_key_ptr)); |
Chris Mason | 79f95c8 | 2007-03-01 15:16:26 -0500 | [diff] [blame] | 2401 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2402 | btrfs_set_header_nritems(src, src_nritems - push_items); |
| 2403 | btrfs_set_header_nritems(dst, dst_nritems + push_items); |
Chris Mason | 79f95c8 | 2007-03-01 15:16:26 -0500 | [diff] [blame] | 2404 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2405 | btrfs_mark_buffer_dirty(src); |
| 2406 | btrfs_mark_buffer_dirty(dst); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 2407 | |
Chris Mason | 79f95c8 | 2007-03-01 15:16:26 -0500 | [diff] [blame] | 2408 | return ret; |
| 2409 | } |
| 2410 | |
| 2411 | /* |
Chris Mason | 97571fd | 2007-02-24 13:39:08 -0500 | [diff] [blame] | 2412 | * helper function to insert a new root level in the tree. |
| 2413 | * A new node is allocated, and a single item is inserted to |
| 2414 | * point to the existing root |
Chris Mason | aa5d6be | 2007-02-28 16:35:06 -0500 | [diff] [blame] | 2415 | * |
| 2416 | * returns zero on success or < 0 on failure. |
Chris Mason | 97571fd | 2007-02-24 13:39:08 -0500 | [diff] [blame] | 2417 | */ |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 2418 | static noinline int insert_new_root(struct btrfs_trans_handle *trans, |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2419 | struct btrfs_root *root, |
Liu Bo | fdd99c7 | 2013-05-22 12:06:51 +0000 | [diff] [blame] | 2420 | struct btrfs_path *path, int level) |
Chris Mason | 5c680ed | 2007-02-22 11:39:13 -0500 | [diff] [blame] | 2421 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2422 | struct btrfs_fs_info *fs_info = root->fs_info; |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 2423 | u64 lower_gen; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2424 | struct extent_buffer *lower; |
| 2425 | struct extent_buffer *c; |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 2426 | struct extent_buffer *old; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2427 | struct btrfs_disk_key lower_key; |
David Sterba | d9d19a0 | 2018-03-05 16:35:29 +0100 | [diff] [blame] | 2428 | int ret; |
Chris Mason | 5c680ed | 2007-02-22 11:39:13 -0500 | [diff] [blame] | 2429 | |
| 2430 | BUG_ON(path->nodes[level]); |
| 2431 | BUG_ON(path->nodes[level-1] != root->node); |
| 2432 | |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 2433 | lower = path->nodes[level-1]; |
| 2434 | if (level == 1) |
| 2435 | btrfs_item_key(lower, &lower_key, 0); |
| 2436 | else |
| 2437 | btrfs_node_key(lower, &lower_key, 0); |
| 2438 | |
Filipe Manana | 79bd371 | 2021-06-29 14:43:06 +0100 | [diff] [blame] | 2439 | c = btrfs_alloc_tree_block(trans, root, 0, root->root_key.objectid, |
| 2440 | &lower_key, level, root->node->start, 0, |
| 2441 | BTRFS_NESTING_NEW_ROOT); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2442 | if (IS_ERR(c)) |
| 2443 | return PTR_ERR(c); |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 2444 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2445 | root_add_used(root, fs_info->nodesize); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 2446 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2447 | btrfs_set_header_nritems(c, 1); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2448 | btrfs_set_node_key(c, &lower_key, 0); |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 2449 | btrfs_set_node_blockptr(c, 0, lower->start); |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 2450 | lower_gen = btrfs_header_generation(lower); |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 2451 | WARN_ON(lower_gen != trans->transid); |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 2452 | |
| 2453 | btrfs_set_node_ptr_generation(c, 0, lower_gen); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2454 | |
| 2455 | btrfs_mark_buffer_dirty(c); |
Chris Mason | d571976 | 2007-03-23 10:01:08 -0400 | [diff] [blame] | 2456 | |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 2457 | old = root->node; |
Filipe Manana | 406808a | 2021-03-11 14:31:08 +0000 | [diff] [blame] | 2458 | ret = btrfs_tree_mod_log_insert_root(root->node, c, false); |
David Sterba | d9d19a0 | 2018-03-05 16:35:29 +0100 | [diff] [blame] | 2459 | BUG_ON(ret < 0); |
Chris Mason | 240f62c | 2011-03-23 14:54:42 -0400 | [diff] [blame] | 2460 | rcu_assign_pointer(root->node, c); |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 2461 | |
| 2462 | /* the super has an extra ref to root->node */ |
| 2463 | free_extent_buffer(old); |
| 2464 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 2465 | add_root_to_dirty_list(root); |
David Sterba | 67439da | 2019-10-08 13:28:47 +0200 | [diff] [blame] | 2466 | atomic_inc(&c->refs); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2467 | path->nodes[level] = c; |
Josef Bacik | ac5887c | 2020-08-20 11:46:10 -0400 | [diff] [blame] | 2468 | path->locks[level] = BTRFS_WRITE_LOCK; |
Chris Mason | 5c680ed | 2007-02-22 11:39:13 -0500 | [diff] [blame] | 2469 | path->slots[level] = 0; |
| 2470 | return 0; |
| 2471 | } |
| 2472 | |
Chris Mason | 74123bd | 2007-02-02 11:05:29 -0500 | [diff] [blame] | 2473 | /* |
| 2474 | * worker function to insert a single pointer in a node. |
| 2475 | * the node should have enough room for the pointer already |
Chris Mason | 97571fd | 2007-02-24 13:39:08 -0500 | [diff] [blame] | 2476 | * |
Chris Mason | 74123bd | 2007-02-02 11:05:29 -0500 | [diff] [blame] | 2477 | * slot and level indicate where you want the key to go, and |
| 2478 | * blocknr is the block the key points to. |
| 2479 | */ |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 2480 | static void insert_ptr(struct btrfs_trans_handle *trans, |
David Sterba | 6ad3cf6 | 2019-03-20 14:32:45 +0100 | [diff] [blame] | 2481 | struct btrfs_path *path, |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 2482 | struct btrfs_disk_key *key, u64 bytenr, |
Jan Schmidt | c3e0696 | 2012-06-21 11:01:06 +0200 | [diff] [blame] | 2483 | int slot, int level) |
Chris Mason | 74123bd | 2007-02-02 11:05:29 -0500 | [diff] [blame] | 2484 | { |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2485 | struct extent_buffer *lower; |
Chris Mason | 74123bd | 2007-02-02 11:05:29 -0500 | [diff] [blame] | 2486 | int nritems; |
Jan Schmidt | f3ea38d | 2012-05-26 11:45:21 +0200 | [diff] [blame] | 2487 | int ret; |
Chris Mason | 5c680ed | 2007-02-22 11:39:13 -0500 | [diff] [blame] | 2488 | |
| 2489 | BUG_ON(!path->nodes[level]); |
Filipe Manana | 49d0c64 | 2021-09-22 10:36:45 +0100 | [diff] [blame] | 2490 | btrfs_assert_tree_write_locked(path->nodes[level]); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2491 | lower = path->nodes[level]; |
| 2492 | nritems = btrfs_header_nritems(lower); |
Stoyan Gaydarov | c293498 | 2009-04-02 17:05:11 -0400 | [diff] [blame] | 2493 | BUG_ON(slot > nritems); |
David Sterba | 6ad3cf6 | 2019-03-20 14:32:45 +0100 | [diff] [blame] | 2494 | BUG_ON(nritems == BTRFS_NODEPTRS_PER_BLOCK(trans->fs_info)); |
Chris Mason | 74123bd | 2007-02-02 11:05:29 -0500 | [diff] [blame] | 2495 | if (slot != nritems) { |
David Sterba | bf1d342 | 2018-03-05 15:47:39 +0100 | [diff] [blame] | 2496 | if (level) { |
Filipe Manana | f3a84cc | 2021-03-11 14:31:07 +0000 | [diff] [blame] | 2497 | ret = btrfs_tree_mod_log_insert_move(lower, slot + 1, |
| 2498 | slot, nritems - slot); |
David Sterba | bf1d342 | 2018-03-05 15:47:39 +0100 | [diff] [blame] | 2499 | BUG_ON(ret < 0); |
| 2500 | } |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2501 | memmove_extent_buffer(lower, |
| 2502 | btrfs_node_key_ptr_offset(slot + 1), |
| 2503 | btrfs_node_key_ptr_offset(slot), |
Chris Mason | d602557 | 2007-03-30 14:27:56 -0400 | [diff] [blame] | 2504 | (nritems - slot) * sizeof(struct btrfs_key_ptr)); |
Chris Mason | 74123bd | 2007-02-02 11:05:29 -0500 | [diff] [blame] | 2505 | } |
Jan Schmidt | c3e0696 | 2012-06-21 11:01:06 +0200 | [diff] [blame] | 2506 | if (level) { |
Filipe Manana | f3a84cc | 2021-03-11 14:31:07 +0000 | [diff] [blame] | 2507 | ret = btrfs_tree_mod_log_insert_key(lower, slot, |
| 2508 | BTRFS_MOD_LOG_KEY_ADD, GFP_NOFS); |
Jan Schmidt | f3ea38d | 2012-05-26 11:45:21 +0200 | [diff] [blame] | 2509 | BUG_ON(ret < 0); |
| 2510 | } |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2511 | btrfs_set_node_key(lower, key, slot); |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 2512 | btrfs_set_node_blockptr(lower, slot, bytenr); |
Chris Mason | 74493f7 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 2513 | WARN_ON(trans->transid == 0); |
| 2514 | btrfs_set_node_ptr_generation(lower, slot, trans->transid); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2515 | btrfs_set_header_nritems(lower, nritems + 1); |
| 2516 | btrfs_mark_buffer_dirty(lower); |
Chris Mason | 74123bd | 2007-02-02 11:05:29 -0500 | [diff] [blame] | 2517 | } |
| 2518 | |
Chris Mason | 97571fd | 2007-02-24 13:39:08 -0500 | [diff] [blame] | 2519 | /* |
| 2520 | * split the node at the specified level in path in two. |
| 2521 | * The path is corrected to point to the appropriate node after the split |
| 2522 | * |
| 2523 | * Before splitting this tries to make some room in the node by pushing |
| 2524 | * left and right, if either one works, it returns right away. |
Chris Mason | aa5d6be | 2007-02-28 16:35:06 -0500 | [diff] [blame] | 2525 | * |
| 2526 | * returns 0 on success and < 0 on failure |
Chris Mason | 97571fd | 2007-02-24 13:39:08 -0500 | [diff] [blame] | 2527 | */ |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 2528 | static noinline int split_node(struct btrfs_trans_handle *trans, |
| 2529 | struct btrfs_root *root, |
| 2530 | struct btrfs_path *path, int level) |
Chris Mason | be0e5c0 | 2007-01-26 15:51:26 -0500 | [diff] [blame] | 2531 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2532 | struct btrfs_fs_info *fs_info = root->fs_info; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2533 | struct extent_buffer *c; |
| 2534 | struct extent_buffer *split; |
| 2535 | struct btrfs_disk_key disk_key; |
Chris Mason | be0e5c0 | 2007-01-26 15:51:26 -0500 | [diff] [blame] | 2536 | int mid; |
Chris Mason | 5c680ed | 2007-02-22 11:39:13 -0500 | [diff] [blame] | 2537 | int ret; |
Chris Mason | 7518a23 | 2007-03-12 12:01:18 -0400 | [diff] [blame] | 2538 | u32 c_nritems; |
Chris Mason | be0e5c0 | 2007-01-26 15:51:26 -0500 | [diff] [blame] | 2539 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2540 | c = path->nodes[level]; |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 2541 | WARN_ON(btrfs_header_generation(c) != trans->transid); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2542 | if (c == root->node) { |
Jan Schmidt | d9abbf1 | 2013-03-20 13:49:48 +0000 | [diff] [blame] | 2543 | /* |
Jan Schmidt | 90f8d62 | 2013-04-13 13:19:53 +0000 | [diff] [blame] | 2544 | * trying to split the root, lets make a new one |
| 2545 | * |
Liu Bo | fdd99c7 | 2013-05-22 12:06:51 +0000 | [diff] [blame] | 2546 | * tree mod log: We don't log_removal old root in |
Jan Schmidt | 90f8d62 | 2013-04-13 13:19:53 +0000 | [diff] [blame] | 2547 | * insert_new_root, because that root buffer will be kept as a |
| 2548 | * normal node. We are going to log removal of half of the |
Filipe Manana | f3a84cc | 2021-03-11 14:31:07 +0000 | [diff] [blame] | 2549 | * elements below with btrfs_tree_mod_log_eb_copy(). We're |
| 2550 | * holding a tree lock on the buffer, which is why we cannot |
| 2551 | * race with other tree_mod_log users. |
Jan Schmidt | d9abbf1 | 2013-03-20 13:49:48 +0000 | [diff] [blame] | 2552 | */ |
Liu Bo | fdd99c7 | 2013-05-22 12:06:51 +0000 | [diff] [blame] | 2553 | ret = insert_new_root(trans, root, path, level + 1); |
Chris Mason | 5c680ed | 2007-02-22 11:39:13 -0500 | [diff] [blame] | 2554 | if (ret) |
| 2555 | return ret; |
Chris Mason | b361242 | 2009-05-13 19:12:15 -0400 | [diff] [blame] | 2556 | } else { |
Chris Mason | e66f709 | 2007-04-20 13:16:02 -0400 | [diff] [blame] | 2557 | ret = push_nodes_for_insert(trans, root, path, level); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2558 | c = path->nodes[level]; |
| 2559 | if (!ret && btrfs_header_nritems(c) < |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2560 | BTRFS_NODEPTRS_PER_BLOCK(fs_info) - 3) |
Chris Mason | e66f709 | 2007-04-20 13:16:02 -0400 | [diff] [blame] | 2561 | return 0; |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 2562 | if (ret < 0) |
| 2563 | return ret; |
Chris Mason | be0e5c0 | 2007-01-26 15:51:26 -0500 | [diff] [blame] | 2564 | } |
Chris Mason | e66f709 | 2007-04-20 13:16:02 -0400 | [diff] [blame] | 2565 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2566 | c_nritems = btrfs_header_nritems(c); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 2567 | mid = (c_nritems + 1) / 2; |
| 2568 | btrfs_node_key(c, &disk_key, mid); |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 2569 | |
Filipe Manana | 79bd371 | 2021-06-29 14:43:06 +0100 | [diff] [blame] | 2570 | split = btrfs_alloc_tree_block(trans, root, 0, root->root_key.objectid, |
| 2571 | &disk_key, level, c->start, 0, |
| 2572 | BTRFS_NESTING_SPLIT); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2573 | if (IS_ERR(split)) |
| 2574 | return PTR_ERR(split); |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 2575 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2576 | root_add_used(root, fs_info->nodesize); |
Nikolay Borisov | bc877d2 | 2018-06-18 14:13:19 +0300 | [diff] [blame] | 2577 | ASSERT(btrfs_header_level(c) == level); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2578 | |
Filipe Manana | f3a84cc | 2021-03-11 14:31:07 +0000 | [diff] [blame] | 2579 | ret = btrfs_tree_mod_log_eb_copy(split, c, 0, mid, c_nritems - mid); |
Filipe David Borba Manana | 5de865e | 2013-12-20 15:17:46 +0000 | [diff] [blame] | 2580 | if (ret) { |
Jeff Mahoney | 6664283 | 2016-06-10 18:19:25 -0400 | [diff] [blame] | 2581 | btrfs_abort_transaction(trans, ret); |
Filipe David Borba Manana | 5de865e | 2013-12-20 15:17:46 +0000 | [diff] [blame] | 2582 | return ret; |
| 2583 | } |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2584 | copy_extent_buffer(split, c, |
| 2585 | btrfs_node_key_ptr_offset(0), |
| 2586 | btrfs_node_key_ptr_offset(mid), |
| 2587 | (c_nritems - mid) * sizeof(struct btrfs_key_ptr)); |
| 2588 | btrfs_set_header_nritems(split, c_nritems - mid); |
| 2589 | btrfs_set_header_nritems(c, mid); |
Chris Mason | aa5d6be | 2007-02-28 16:35:06 -0500 | [diff] [blame] | 2590 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2591 | btrfs_mark_buffer_dirty(c); |
| 2592 | btrfs_mark_buffer_dirty(split); |
| 2593 | |
David Sterba | 6ad3cf6 | 2019-03-20 14:32:45 +0100 | [diff] [blame] | 2594 | insert_ptr(trans, path, &disk_key, split->start, |
Jan Schmidt | c3e0696 | 2012-06-21 11:01:06 +0200 | [diff] [blame] | 2595 | path->slots[level + 1] + 1, level + 1); |
Chris Mason | aa5d6be | 2007-02-28 16:35:06 -0500 | [diff] [blame] | 2596 | |
Chris Mason | 5de08d7 | 2007-02-24 06:24:44 -0500 | [diff] [blame] | 2597 | if (path->slots[level] >= mid) { |
Chris Mason | 5c680ed | 2007-02-22 11:39:13 -0500 | [diff] [blame] | 2598 | path->slots[level] -= mid; |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 2599 | btrfs_tree_unlock(c); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2600 | free_extent_buffer(c); |
| 2601 | path->nodes[level] = split; |
Chris Mason | 5c680ed | 2007-02-22 11:39:13 -0500 | [diff] [blame] | 2602 | path->slots[level + 1] += 1; |
| 2603 | } else { |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 2604 | btrfs_tree_unlock(split); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2605 | free_extent_buffer(split); |
Chris Mason | be0e5c0 | 2007-01-26 15:51:26 -0500 | [diff] [blame] | 2606 | } |
Nikolay Borisov | d5286a92 | 2020-11-12 13:24:02 +0200 | [diff] [blame] | 2607 | return 0; |
Chris Mason | be0e5c0 | 2007-01-26 15:51:26 -0500 | [diff] [blame] | 2608 | } |
| 2609 | |
Chris Mason | 74123bd | 2007-02-02 11:05:29 -0500 | [diff] [blame] | 2610 | /* |
| 2611 | * how many bytes are required to store the items in a leaf. start |
| 2612 | * and nr indicate which items in the leaf to check. This totals up the |
| 2613 | * space used both by the item structs and the item data |
| 2614 | */ |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2615 | static int leaf_space_used(struct extent_buffer *l, int start, int nr) |
Chris Mason | be0e5c0 | 2007-01-26 15:51:26 -0500 | [diff] [blame] | 2616 | { |
Josef Bacik | 41be1f3 | 2012-10-15 13:43:18 -0400 | [diff] [blame] | 2617 | struct btrfs_item *start_item; |
| 2618 | struct btrfs_item *end_item; |
Chris Mason | be0e5c0 | 2007-01-26 15:51:26 -0500 | [diff] [blame] | 2619 | int data_len; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2620 | int nritems = btrfs_header_nritems(l); |
Chris Mason | d4dbff9 | 2007-04-04 14:08:15 -0400 | [diff] [blame] | 2621 | int end = min(nritems, start + nr) - 1; |
Chris Mason | be0e5c0 | 2007-01-26 15:51:26 -0500 | [diff] [blame] | 2622 | |
| 2623 | if (!nr) |
| 2624 | return 0; |
Ross Kirk | dd3cc16 | 2013-09-16 15:58:09 +0100 | [diff] [blame] | 2625 | start_item = btrfs_item_nr(start); |
| 2626 | end_item = btrfs_item_nr(end); |
David Sterba | a31356b | 2020-04-29 22:56:01 +0200 | [diff] [blame] | 2627 | data_len = btrfs_item_offset(l, start_item) + |
| 2628 | btrfs_item_size(l, start_item); |
| 2629 | data_len = data_len - btrfs_item_offset(l, end_item); |
Chris Mason | 0783fcf | 2007-03-12 20:12:07 -0400 | [diff] [blame] | 2630 | data_len += sizeof(struct btrfs_item) * nr; |
Chris Mason | d4dbff9 | 2007-04-04 14:08:15 -0400 | [diff] [blame] | 2631 | WARN_ON(data_len < 0); |
Chris Mason | be0e5c0 | 2007-01-26 15:51:26 -0500 | [diff] [blame] | 2632 | return data_len; |
| 2633 | } |
| 2634 | |
Chris Mason | 74123bd | 2007-02-02 11:05:29 -0500 | [diff] [blame] | 2635 | /* |
Chris Mason | d4dbff9 | 2007-04-04 14:08:15 -0400 | [diff] [blame] | 2636 | * The space between the end of the leaf items and |
| 2637 | * the start of the leaf data. IOW, how much room |
| 2638 | * the leaf has left for both items and data |
| 2639 | */ |
David Sterba | e902baa | 2019-03-20 14:36:46 +0100 | [diff] [blame] | 2640 | noinline int btrfs_leaf_free_space(struct extent_buffer *leaf) |
Chris Mason | d4dbff9 | 2007-04-04 14:08:15 -0400 | [diff] [blame] | 2641 | { |
David Sterba | e902baa | 2019-03-20 14:36:46 +0100 | [diff] [blame] | 2642 | struct btrfs_fs_info *fs_info = leaf->fs_info; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2643 | int nritems = btrfs_header_nritems(leaf); |
| 2644 | int ret; |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2645 | |
| 2646 | ret = BTRFS_LEAF_DATA_SIZE(fs_info) - leaf_space_used(leaf, 0, nritems); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2647 | if (ret < 0) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2648 | btrfs_crit(fs_info, |
| 2649 | "leaf free space ret %d, leaf data size %lu, used %d nritems %d", |
| 2650 | ret, |
| 2651 | (unsigned long) BTRFS_LEAF_DATA_SIZE(fs_info), |
| 2652 | leaf_space_used(leaf, 0, nritems), nritems); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2653 | } |
| 2654 | return ret; |
Chris Mason | d4dbff9 | 2007-04-04 14:08:15 -0400 | [diff] [blame] | 2655 | } |
| 2656 | |
Chris Mason | 99d8f83 | 2010-07-07 10:51:48 -0400 | [diff] [blame] | 2657 | /* |
| 2658 | * min slot controls the lowest index we're willing to push to the |
| 2659 | * right. We'll push up to and including min_slot, but no lower |
| 2660 | */ |
David Sterba | f72f001 | 2019-03-20 14:39:45 +0100 | [diff] [blame] | 2661 | static noinline int __push_leaf_right(struct btrfs_path *path, |
Chris Mason | 44871b1 | 2009-03-13 10:04:31 -0400 | [diff] [blame] | 2662 | int data_size, int empty, |
| 2663 | struct extent_buffer *right, |
Chris Mason | 99d8f83 | 2010-07-07 10:51:48 -0400 | [diff] [blame] | 2664 | int free_space, u32 left_nritems, |
| 2665 | u32 min_slot) |
Chris Mason | 00ec4c5 | 2007-02-24 12:47:20 -0500 | [diff] [blame] | 2666 | { |
David Sterba | f72f001 | 2019-03-20 14:39:45 +0100 | [diff] [blame] | 2667 | struct btrfs_fs_info *fs_info = right->fs_info; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2668 | struct extent_buffer *left = path->nodes[0]; |
Chris Mason | 44871b1 | 2009-03-13 10:04:31 -0400 | [diff] [blame] | 2669 | struct extent_buffer *upper = path->nodes[1]; |
Chris Mason | cfed81a | 2012-03-03 07:40:03 -0500 | [diff] [blame] | 2670 | struct btrfs_map_token token; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2671 | struct btrfs_disk_key disk_key; |
Chris Mason | 00ec4c5 | 2007-02-24 12:47:20 -0500 | [diff] [blame] | 2672 | int slot; |
Chris Mason | 34a3821 | 2007-11-07 13:31:03 -0500 | [diff] [blame] | 2673 | u32 i; |
Chris Mason | 00ec4c5 | 2007-02-24 12:47:20 -0500 | [diff] [blame] | 2674 | int push_space = 0; |
| 2675 | int push_items = 0; |
Chris Mason | 0783fcf | 2007-03-12 20:12:07 -0400 | [diff] [blame] | 2676 | struct btrfs_item *item; |
Chris Mason | 34a3821 | 2007-11-07 13:31:03 -0500 | [diff] [blame] | 2677 | u32 nr; |
Chris Mason | 7518a23 | 2007-03-12 12:01:18 -0400 | [diff] [blame] | 2678 | u32 right_nritems; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2679 | u32 data_end; |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 2680 | u32 this_item_size; |
Chris Mason | 00ec4c5 | 2007-02-24 12:47:20 -0500 | [diff] [blame] | 2681 | |
Chris Mason | 34a3821 | 2007-11-07 13:31:03 -0500 | [diff] [blame] | 2682 | if (empty) |
| 2683 | nr = 0; |
| 2684 | else |
Chris Mason | 99d8f83 | 2010-07-07 10:51:48 -0400 | [diff] [blame] | 2685 | nr = max_t(u32, 1, min_slot); |
Chris Mason | 34a3821 | 2007-11-07 13:31:03 -0500 | [diff] [blame] | 2686 | |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 2687 | if (path->slots[0] >= left_nritems) |
Yan Zheng | 87b29b2 | 2008-12-17 10:21:48 -0500 | [diff] [blame] | 2688 | push_space += data_size; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 2689 | |
Chris Mason | 44871b1 | 2009-03-13 10:04:31 -0400 | [diff] [blame] | 2690 | slot = path->slots[1]; |
Chris Mason | 34a3821 | 2007-11-07 13:31:03 -0500 | [diff] [blame] | 2691 | i = left_nritems - 1; |
| 2692 | while (i >= nr) { |
Ross Kirk | dd3cc16 | 2013-09-16 15:58:09 +0100 | [diff] [blame] | 2693 | item = btrfs_item_nr(i); |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 2694 | |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 2695 | if (!empty && push_items > 0) { |
| 2696 | if (path->slots[0] > i) |
| 2697 | break; |
| 2698 | if (path->slots[0] == i) { |
David Sterba | e902baa | 2019-03-20 14:36:46 +0100 | [diff] [blame] | 2699 | int space = btrfs_leaf_free_space(left); |
| 2700 | |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 2701 | if (space + push_space * 2 > free_space) |
| 2702 | break; |
| 2703 | } |
| 2704 | } |
| 2705 | |
Chris Mason | 00ec4c5 | 2007-02-24 12:47:20 -0500 | [diff] [blame] | 2706 | if (path->slots[0] == i) |
Yan Zheng | 87b29b2 | 2008-12-17 10:21:48 -0500 | [diff] [blame] | 2707 | push_space += data_size; |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 2708 | |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 2709 | this_item_size = btrfs_item_size(left, item); |
| 2710 | if (this_item_size + sizeof(*item) + push_space > free_space) |
Chris Mason | 00ec4c5 | 2007-02-24 12:47:20 -0500 | [diff] [blame] | 2711 | break; |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 2712 | |
Chris Mason | 00ec4c5 | 2007-02-24 12:47:20 -0500 | [diff] [blame] | 2713 | push_items++; |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 2714 | push_space += this_item_size + sizeof(*item); |
Chris Mason | 34a3821 | 2007-11-07 13:31:03 -0500 | [diff] [blame] | 2715 | if (i == 0) |
| 2716 | break; |
| 2717 | i--; |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 2718 | } |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2719 | |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 2720 | if (push_items == 0) |
| 2721 | goto out_unlock; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2722 | |
Julia Lawall | 6c1500f | 2012-11-03 20:30:18 +0000 | [diff] [blame] | 2723 | WARN_ON(!empty && push_items == left_nritems); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2724 | |
Chris Mason | 00ec4c5 | 2007-02-24 12:47:20 -0500 | [diff] [blame] | 2725 | /* push left to right */ |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2726 | right_nritems = btrfs_header_nritems(right); |
Chris Mason | 34a3821 | 2007-11-07 13:31:03 -0500 | [diff] [blame] | 2727 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2728 | push_space = btrfs_item_end_nr(left, left_nritems - push_items); |
David Sterba | 8f881e8 | 2019-03-20 11:33:10 +0100 | [diff] [blame] | 2729 | push_space -= leaf_data_end(left); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2730 | |
Chris Mason | 00ec4c5 | 2007-02-24 12:47:20 -0500 | [diff] [blame] | 2731 | /* make room in the right data area */ |
David Sterba | 8f881e8 | 2019-03-20 11:33:10 +0100 | [diff] [blame] | 2732 | data_end = leaf_data_end(right); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2733 | memmove_extent_buffer(right, |
Nikolay Borisov | 3d9ec8c | 2017-05-29 09:43:43 +0300 | [diff] [blame] | 2734 | BTRFS_LEAF_DATA_OFFSET + data_end - push_space, |
| 2735 | BTRFS_LEAF_DATA_OFFSET + data_end, |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2736 | BTRFS_LEAF_DATA_SIZE(fs_info) - data_end); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2737 | |
Chris Mason | 00ec4c5 | 2007-02-24 12:47:20 -0500 | [diff] [blame] | 2738 | /* copy from the left data area */ |
Nikolay Borisov | 3d9ec8c | 2017-05-29 09:43:43 +0300 | [diff] [blame] | 2739 | copy_extent_buffer(right, left, BTRFS_LEAF_DATA_OFFSET + |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2740 | BTRFS_LEAF_DATA_SIZE(fs_info) - push_space, |
David Sterba | 8f881e8 | 2019-03-20 11:33:10 +0100 | [diff] [blame] | 2741 | BTRFS_LEAF_DATA_OFFSET + leaf_data_end(left), |
Chris Mason | d602557 | 2007-03-30 14:27:56 -0400 | [diff] [blame] | 2742 | push_space); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2743 | |
| 2744 | memmove_extent_buffer(right, btrfs_item_nr_offset(push_items), |
| 2745 | btrfs_item_nr_offset(0), |
| 2746 | right_nritems * sizeof(struct btrfs_item)); |
| 2747 | |
Chris Mason | 00ec4c5 | 2007-02-24 12:47:20 -0500 | [diff] [blame] | 2748 | /* copy the items from left to right */ |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2749 | copy_extent_buffer(right, left, btrfs_item_nr_offset(0), |
| 2750 | btrfs_item_nr_offset(left_nritems - push_items), |
| 2751 | push_items * sizeof(struct btrfs_item)); |
Chris Mason | 00ec4c5 | 2007-02-24 12:47:20 -0500 | [diff] [blame] | 2752 | |
| 2753 | /* update the item pointers */ |
David Sterba | c82f823 | 2019-08-09 17:48:21 +0200 | [diff] [blame] | 2754 | btrfs_init_map_token(&token, right); |
Chris Mason | 7518a23 | 2007-03-12 12:01:18 -0400 | [diff] [blame] | 2755 | right_nritems += push_items; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2756 | btrfs_set_header_nritems(right, right_nritems); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2757 | push_space = BTRFS_LEAF_DATA_SIZE(fs_info); |
Chris Mason | 7518a23 | 2007-03-12 12:01:18 -0400 | [diff] [blame] | 2758 | for (i = 0; i < right_nritems; i++) { |
Ross Kirk | dd3cc16 | 2013-09-16 15:58:09 +0100 | [diff] [blame] | 2759 | item = btrfs_item_nr(i); |
David Sterba | cc4c13d | 2020-04-29 02:15:56 +0200 | [diff] [blame] | 2760 | push_space -= btrfs_token_item_size(&token, item); |
| 2761 | btrfs_set_token_item_offset(&token, item, push_space); |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 2762 | } |
| 2763 | |
Chris Mason | 7518a23 | 2007-03-12 12:01:18 -0400 | [diff] [blame] | 2764 | left_nritems -= push_items; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2765 | btrfs_set_header_nritems(left, left_nritems); |
Chris Mason | 00ec4c5 | 2007-02-24 12:47:20 -0500 | [diff] [blame] | 2766 | |
Chris Mason | 34a3821 | 2007-11-07 13:31:03 -0500 | [diff] [blame] | 2767 | if (left_nritems) |
| 2768 | btrfs_mark_buffer_dirty(left); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 2769 | else |
David Sterba | 6a884d7d | 2019-03-20 14:30:02 +0100 | [diff] [blame] | 2770 | btrfs_clean_tree_block(left); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 2771 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2772 | btrfs_mark_buffer_dirty(right); |
Chris Mason | a429e51 | 2007-04-18 16:15:28 -0400 | [diff] [blame] | 2773 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2774 | btrfs_item_key(right, &disk_key, 0); |
| 2775 | btrfs_set_node_key(upper, &disk_key, slot + 1); |
Chris Mason | d602557 | 2007-03-30 14:27:56 -0400 | [diff] [blame] | 2776 | btrfs_mark_buffer_dirty(upper); |
Chris Mason | 02217ed | 2007-03-02 16:08:05 -0500 | [diff] [blame] | 2777 | |
Chris Mason | 00ec4c5 | 2007-02-24 12:47:20 -0500 | [diff] [blame] | 2778 | /* then fixup the leaf pointer in the path */ |
Chris Mason | 7518a23 | 2007-03-12 12:01:18 -0400 | [diff] [blame] | 2779 | if (path->slots[0] >= left_nritems) { |
| 2780 | path->slots[0] -= left_nritems; |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 2781 | if (btrfs_header_nritems(path->nodes[0]) == 0) |
David Sterba | 6a884d7d | 2019-03-20 14:30:02 +0100 | [diff] [blame] | 2782 | btrfs_clean_tree_block(path->nodes[0]); |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 2783 | btrfs_tree_unlock(path->nodes[0]); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2784 | free_extent_buffer(path->nodes[0]); |
| 2785 | path->nodes[0] = right; |
Chris Mason | 00ec4c5 | 2007-02-24 12:47:20 -0500 | [diff] [blame] | 2786 | path->slots[1] += 1; |
| 2787 | } else { |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 2788 | btrfs_tree_unlock(right); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2789 | free_extent_buffer(right); |
Chris Mason | 00ec4c5 | 2007-02-24 12:47:20 -0500 | [diff] [blame] | 2790 | } |
| 2791 | return 0; |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 2792 | |
| 2793 | out_unlock: |
| 2794 | btrfs_tree_unlock(right); |
| 2795 | free_extent_buffer(right); |
| 2796 | return 1; |
Chris Mason | 00ec4c5 | 2007-02-24 12:47:20 -0500 | [diff] [blame] | 2797 | } |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 2798 | |
Chris Mason | 00ec4c5 | 2007-02-24 12:47:20 -0500 | [diff] [blame] | 2799 | /* |
Chris Mason | 44871b1 | 2009-03-13 10:04:31 -0400 | [diff] [blame] | 2800 | * push some data in the path leaf to the right, trying to free up at |
| 2801 | * least data_size bytes. returns zero if the push worked, nonzero otherwise |
| 2802 | * |
| 2803 | * returns 1 if the push failed because the other node didn't have enough |
| 2804 | * room, 0 if everything worked out and < 0 if there were major errors. |
Chris Mason | 99d8f83 | 2010-07-07 10:51:48 -0400 | [diff] [blame] | 2805 | * |
| 2806 | * this will push starting from min_slot to the end of the leaf. It won't |
| 2807 | * push any slot lower than min_slot |
Chris Mason | 44871b1 | 2009-03-13 10:04:31 -0400 | [diff] [blame] | 2808 | */ |
| 2809 | static int push_leaf_right(struct btrfs_trans_handle *trans, struct btrfs_root |
Chris Mason | 99d8f83 | 2010-07-07 10:51:48 -0400 | [diff] [blame] | 2810 | *root, struct btrfs_path *path, |
| 2811 | int min_data_size, int data_size, |
| 2812 | int empty, u32 min_slot) |
Chris Mason | 44871b1 | 2009-03-13 10:04:31 -0400 | [diff] [blame] | 2813 | { |
| 2814 | struct extent_buffer *left = path->nodes[0]; |
| 2815 | struct extent_buffer *right; |
| 2816 | struct extent_buffer *upper; |
| 2817 | int slot; |
| 2818 | int free_space; |
| 2819 | u32 left_nritems; |
| 2820 | int ret; |
| 2821 | |
| 2822 | if (!path->nodes[1]) |
| 2823 | return 1; |
| 2824 | |
| 2825 | slot = path->slots[1]; |
| 2826 | upper = path->nodes[1]; |
| 2827 | if (slot >= btrfs_header_nritems(upper) - 1) |
| 2828 | return 1; |
| 2829 | |
Filipe Manana | 49d0c64 | 2021-09-22 10:36:45 +0100 | [diff] [blame] | 2830 | btrfs_assert_tree_write_locked(path->nodes[1]); |
Chris Mason | 44871b1 | 2009-03-13 10:04:31 -0400 | [diff] [blame] | 2831 | |
David Sterba | 4b231ae | 2019-08-21 19:16:27 +0200 | [diff] [blame] | 2832 | right = btrfs_read_node_slot(upper, slot + 1); |
Liu Bo | fb770ae | 2016-07-05 12:10:14 -0700 | [diff] [blame] | 2833 | /* |
| 2834 | * slot + 1 is not valid or we fail to read the right node, |
| 2835 | * no big deal, just return. |
| 2836 | */ |
| 2837 | if (IS_ERR(right)) |
Tsutomu Itoh | 91ca338 | 2011-01-05 02:32:22 +0000 | [diff] [blame] | 2838 | return 1; |
| 2839 | |
Josef Bacik | bf77467 | 2020-08-20 11:46:04 -0400 | [diff] [blame] | 2840 | __btrfs_tree_lock(right, BTRFS_NESTING_RIGHT); |
Chris Mason | 44871b1 | 2009-03-13 10:04:31 -0400 | [diff] [blame] | 2841 | |
David Sterba | e902baa | 2019-03-20 14:36:46 +0100 | [diff] [blame] | 2842 | free_space = btrfs_leaf_free_space(right); |
Chris Mason | 44871b1 | 2009-03-13 10:04:31 -0400 | [diff] [blame] | 2843 | if (free_space < data_size) |
| 2844 | goto out_unlock; |
| 2845 | |
| 2846 | /* cow and double check */ |
| 2847 | ret = btrfs_cow_block(trans, root, right, upper, |
Josef Bacik | bf59a5a | 2020-08-20 11:46:05 -0400 | [diff] [blame] | 2848 | slot + 1, &right, BTRFS_NESTING_RIGHT_COW); |
Chris Mason | 44871b1 | 2009-03-13 10:04:31 -0400 | [diff] [blame] | 2849 | if (ret) |
| 2850 | goto out_unlock; |
| 2851 | |
David Sterba | e902baa | 2019-03-20 14:36:46 +0100 | [diff] [blame] | 2852 | free_space = btrfs_leaf_free_space(right); |
Chris Mason | 44871b1 | 2009-03-13 10:04:31 -0400 | [diff] [blame] | 2853 | if (free_space < data_size) |
| 2854 | goto out_unlock; |
| 2855 | |
| 2856 | left_nritems = btrfs_header_nritems(left); |
| 2857 | if (left_nritems == 0) |
| 2858 | goto out_unlock; |
| 2859 | |
Qu Wenruo | d16c702 | 2020-08-19 14:35:50 +0800 | [diff] [blame] | 2860 | if (check_sibling_keys(left, right)) { |
| 2861 | ret = -EUCLEAN; |
| 2862 | btrfs_tree_unlock(right); |
| 2863 | free_extent_buffer(right); |
| 2864 | return ret; |
| 2865 | } |
Filipe David Borba Manana | 2ef1fed | 2013-12-04 22:17:39 +0000 | [diff] [blame] | 2866 | if (path->slots[0] == left_nritems && !empty) { |
| 2867 | /* Key greater than all keys in the leaf, right neighbor has |
| 2868 | * enough room for it and we're not emptying our leaf to delete |
| 2869 | * it, therefore use right neighbor to insert the new item and |
Andrea Gelmini | 52042d8 | 2018-11-28 12:05:13 +0100 | [diff] [blame] | 2870 | * no need to touch/dirty our left leaf. */ |
Filipe David Borba Manana | 2ef1fed | 2013-12-04 22:17:39 +0000 | [diff] [blame] | 2871 | btrfs_tree_unlock(left); |
| 2872 | free_extent_buffer(left); |
| 2873 | path->nodes[0] = right; |
| 2874 | path->slots[0] = 0; |
| 2875 | path->slots[1]++; |
| 2876 | return 0; |
| 2877 | } |
| 2878 | |
David Sterba | f72f001 | 2019-03-20 14:39:45 +0100 | [diff] [blame] | 2879 | return __push_leaf_right(path, min_data_size, empty, |
Chris Mason | 99d8f83 | 2010-07-07 10:51:48 -0400 | [diff] [blame] | 2880 | right, free_space, left_nritems, min_slot); |
Chris Mason | 44871b1 | 2009-03-13 10:04:31 -0400 | [diff] [blame] | 2881 | out_unlock: |
| 2882 | btrfs_tree_unlock(right); |
| 2883 | free_extent_buffer(right); |
| 2884 | return 1; |
| 2885 | } |
| 2886 | |
| 2887 | /* |
Chris Mason | 74123bd | 2007-02-02 11:05:29 -0500 | [diff] [blame] | 2888 | * push some data in the path leaf to the left, trying to free up at |
| 2889 | * least data_size bytes. returns zero if the push worked, nonzero otherwise |
Chris Mason | 99d8f83 | 2010-07-07 10:51:48 -0400 | [diff] [blame] | 2890 | * |
| 2891 | * max_slot can put a limit on how far into the leaf we'll push items. The |
| 2892 | * item at 'max_slot' won't be touched. Use (u32)-1 to make us do all the |
| 2893 | * items |
Chris Mason | 74123bd | 2007-02-02 11:05:29 -0500 | [diff] [blame] | 2894 | */ |
David Sterba | 8087c19 | 2019-03-20 14:40:41 +0100 | [diff] [blame] | 2895 | static noinline int __push_leaf_left(struct btrfs_path *path, int data_size, |
Chris Mason | 44871b1 | 2009-03-13 10:04:31 -0400 | [diff] [blame] | 2896 | int empty, struct extent_buffer *left, |
Chris Mason | 99d8f83 | 2010-07-07 10:51:48 -0400 | [diff] [blame] | 2897 | int free_space, u32 right_nritems, |
| 2898 | u32 max_slot) |
Chris Mason | be0e5c0 | 2007-01-26 15:51:26 -0500 | [diff] [blame] | 2899 | { |
David Sterba | 8087c19 | 2019-03-20 14:40:41 +0100 | [diff] [blame] | 2900 | struct btrfs_fs_info *fs_info = left->fs_info; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2901 | struct btrfs_disk_key disk_key; |
| 2902 | struct extent_buffer *right = path->nodes[0]; |
Chris Mason | be0e5c0 | 2007-01-26 15:51:26 -0500 | [diff] [blame] | 2903 | int i; |
Chris Mason | be0e5c0 | 2007-01-26 15:51:26 -0500 | [diff] [blame] | 2904 | int push_space = 0; |
| 2905 | int push_items = 0; |
Chris Mason | 0783fcf | 2007-03-12 20:12:07 -0400 | [diff] [blame] | 2906 | struct btrfs_item *item; |
Chris Mason | 7518a23 | 2007-03-12 12:01:18 -0400 | [diff] [blame] | 2907 | u32 old_left_nritems; |
Chris Mason | 34a3821 | 2007-11-07 13:31:03 -0500 | [diff] [blame] | 2908 | u32 nr; |
Chris Mason | aa5d6be | 2007-02-28 16:35:06 -0500 | [diff] [blame] | 2909 | int ret = 0; |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 2910 | u32 this_item_size; |
| 2911 | u32 old_left_item_size; |
Chris Mason | cfed81a | 2012-03-03 07:40:03 -0500 | [diff] [blame] | 2912 | struct btrfs_map_token token; |
| 2913 | |
Chris Mason | 34a3821 | 2007-11-07 13:31:03 -0500 | [diff] [blame] | 2914 | if (empty) |
Chris Mason | 99d8f83 | 2010-07-07 10:51:48 -0400 | [diff] [blame] | 2915 | nr = min(right_nritems, max_slot); |
Chris Mason | 34a3821 | 2007-11-07 13:31:03 -0500 | [diff] [blame] | 2916 | else |
Chris Mason | 99d8f83 | 2010-07-07 10:51:48 -0400 | [diff] [blame] | 2917 | nr = min(right_nritems - 1, max_slot); |
Chris Mason | 34a3821 | 2007-11-07 13:31:03 -0500 | [diff] [blame] | 2918 | |
| 2919 | for (i = 0; i < nr; i++) { |
Ross Kirk | dd3cc16 | 2013-09-16 15:58:09 +0100 | [diff] [blame] | 2920 | item = btrfs_item_nr(i); |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 2921 | |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 2922 | if (!empty && push_items > 0) { |
| 2923 | if (path->slots[0] < i) |
| 2924 | break; |
| 2925 | if (path->slots[0] == i) { |
David Sterba | e902baa | 2019-03-20 14:36:46 +0100 | [diff] [blame] | 2926 | int space = btrfs_leaf_free_space(right); |
| 2927 | |
Zheng Yan | 31840ae | 2008-09-23 13:14:14 -0400 | [diff] [blame] | 2928 | if (space + push_space * 2 > free_space) |
| 2929 | break; |
| 2930 | } |
| 2931 | } |
| 2932 | |
Chris Mason | be0e5c0 | 2007-01-26 15:51:26 -0500 | [diff] [blame] | 2933 | if (path->slots[0] == i) |
Yan Zheng | 87b29b2 | 2008-12-17 10:21:48 -0500 | [diff] [blame] | 2934 | push_space += data_size; |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 2935 | |
| 2936 | this_item_size = btrfs_item_size(right, item); |
| 2937 | if (this_item_size + sizeof(*item) + push_space > free_space) |
Chris Mason | be0e5c0 | 2007-01-26 15:51:26 -0500 | [diff] [blame] | 2938 | break; |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 2939 | |
Chris Mason | be0e5c0 | 2007-01-26 15:51:26 -0500 | [diff] [blame] | 2940 | push_items++; |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 2941 | push_space += this_item_size + sizeof(*item); |
Chris Mason | be0e5c0 | 2007-01-26 15:51:26 -0500 | [diff] [blame] | 2942 | } |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 2943 | |
Chris Mason | be0e5c0 | 2007-01-26 15:51:26 -0500 | [diff] [blame] | 2944 | if (push_items == 0) { |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 2945 | ret = 1; |
| 2946 | goto out; |
Chris Mason | be0e5c0 | 2007-01-26 15:51:26 -0500 | [diff] [blame] | 2947 | } |
Dulshani Gunawardhana | fae7f21 | 2013-10-31 10:30:08 +0530 | [diff] [blame] | 2948 | WARN_ON(!empty && push_items == btrfs_header_nritems(right)); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2949 | |
Chris Mason | be0e5c0 | 2007-01-26 15:51:26 -0500 | [diff] [blame] | 2950 | /* push data from right to left */ |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2951 | copy_extent_buffer(left, right, |
| 2952 | btrfs_item_nr_offset(btrfs_header_nritems(left)), |
| 2953 | btrfs_item_nr_offset(0), |
| 2954 | push_items * sizeof(struct btrfs_item)); |
| 2955 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2956 | push_space = BTRFS_LEAF_DATA_SIZE(fs_info) - |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 2957 | btrfs_item_offset_nr(right, push_items - 1); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2958 | |
Nikolay Borisov | 3d9ec8c | 2017-05-29 09:43:43 +0300 | [diff] [blame] | 2959 | copy_extent_buffer(left, right, BTRFS_LEAF_DATA_OFFSET + |
David Sterba | 8f881e8 | 2019-03-20 11:33:10 +0100 | [diff] [blame] | 2960 | leaf_data_end(left) - push_space, |
Nikolay Borisov | 3d9ec8c | 2017-05-29 09:43:43 +0300 | [diff] [blame] | 2961 | BTRFS_LEAF_DATA_OFFSET + |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2962 | btrfs_item_offset_nr(right, push_items - 1), |
Chris Mason | d602557 | 2007-03-30 14:27:56 -0400 | [diff] [blame] | 2963 | push_space); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2964 | old_left_nritems = btrfs_header_nritems(left); |
Yan Zheng | 87b29b2 | 2008-12-17 10:21:48 -0500 | [diff] [blame] | 2965 | BUG_ON(old_left_nritems <= 0); |
Chris Mason | eb60cea | 2007-02-02 09:18:22 -0500 | [diff] [blame] | 2966 | |
David Sterba | c82f823 | 2019-08-09 17:48:21 +0200 | [diff] [blame] | 2967 | btrfs_init_map_token(&token, left); |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 2968 | old_left_item_size = btrfs_item_offset_nr(left, old_left_nritems - 1); |
Chris Mason | 0783fcf | 2007-03-12 20:12:07 -0400 | [diff] [blame] | 2969 | for (i = old_left_nritems; i < old_left_nritems + push_items; i++) { |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2970 | u32 ioff; |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 2971 | |
Ross Kirk | dd3cc16 | 2013-09-16 15:58:09 +0100 | [diff] [blame] | 2972 | item = btrfs_item_nr(i); |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 2973 | |
David Sterba | cc4c13d | 2020-04-29 02:15:56 +0200 | [diff] [blame] | 2974 | ioff = btrfs_token_item_offset(&token, item); |
| 2975 | btrfs_set_token_item_offset(&token, item, |
| 2976 | ioff - (BTRFS_LEAF_DATA_SIZE(fs_info) - old_left_item_size)); |
Chris Mason | be0e5c0 | 2007-01-26 15:51:26 -0500 | [diff] [blame] | 2977 | } |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2978 | btrfs_set_header_nritems(left, old_left_nritems + push_items); |
Chris Mason | be0e5c0 | 2007-01-26 15:51:26 -0500 | [diff] [blame] | 2979 | |
| 2980 | /* fixup right node */ |
Julia Lawall | 31b1a2b | 2012-11-03 10:58:34 +0000 | [diff] [blame] | 2981 | if (push_items > right_nritems) |
| 2982 | WARN(1, KERN_CRIT "push items %d nr %u\n", push_items, |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 2983 | right_nritems); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2984 | |
Chris Mason | 34a3821 | 2007-11-07 13:31:03 -0500 | [diff] [blame] | 2985 | if (push_items < right_nritems) { |
| 2986 | push_space = btrfs_item_offset_nr(right, push_items - 1) - |
David Sterba | 8f881e8 | 2019-03-20 11:33:10 +0100 | [diff] [blame] | 2987 | leaf_data_end(right); |
Nikolay Borisov | 3d9ec8c | 2017-05-29 09:43:43 +0300 | [diff] [blame] | 2988 | memmove_extent_buffer(right, BTRFS_LEAF_DATA_OFFSET + |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2989 | BTRFS_LEAF_DATA_SIZE(fs_info) - push_space, |
Nikolay Borisov | 3d9ec8c | 2017-05-29 09:43:43 +0300 | [diff] [blame] | 2990 | BTRFS_LEAF_DATA_OFFSET + |
David Sterba | 8f881e8 | 2019-03-20 11:33:10 +0100 | [diff] [blame] | 2991 | leaf_data_end(right), push_space); |
Chris Mason | 34a3821 | 2007-11-07 13:31:03 -0500 | [diff] [blame] | 2992 | |
| 2993 | memmove_extent_buffer(right, btrfs_item_nr_offset(0), |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 2994 | btrfs_item_nr_offset(push_items), |
| 2995 | (btrfs_header_nritems(right) - push_items) * |
| 2996 | sizeof(struct btrfs_item)); |
Chris Mason | 34a3821 | 2007-11-07 13:31:03 -0500 | [diff] [blame] | 2997 | } |
David Sterba | c82f823 | 2019-08-09 17:48:21 +0200 | [diff] [blame] | 2998 | |
| 2999 | btrfs_init_map_token(&token, right); |
Yan | eef1c49 | 2007-11-26 10:58:13 -0500 | [diff] [blame] | 3000 | right_nritems -= push_items; |
| 3001 | btrfs_set_header_nritems(right, right_nritems); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3002 | push_space = BTRFS_LEAF_DATA_SIZE(fs_info); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3003 | for (i = 0; i < right_nritems; i++) { |
Ross Kirk | dd3cc16 | 2013-09-16 15:58:09 +0100 | [diff] [blame] | 3004 | item = btrfs_item_nr(i); |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 3005 | |
David Sterba | cc4c13d | 2020-04-29 02:15:56 +0200 | [diff] [blame] | 3006 | push_space = push_space - btrfs_token_item_size(&token, item); |
| 3007 | btrfs_set_token_item_offset(&token, item, push_space); |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 3008 | } |
Chris Mason | eb60cea | 2007-02-02 09:18:22 -0500 | [diff] [blame] | 3009 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3010 | btrfs_mark_buffer_dirty(left); |
Chris Mason | 34a3821 | 2007-11-07 13:31:03 -0500 | [diff] [blame] | 3011 | if (right_nritems) |
| 3012 | btrfs_mark_buffer_dirty(right); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 3013 | else |
David Sterba | 6a884d7d | 2019-03-20 14:30:02 +0100 | [diff] [blame] | 3014 | btrfs_clean_tree_block(right); |
Chris Mason | 098f59c | 2007-05-11 11:33:21 -0400 | [diff] [blame] | 3015 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3016 | btrfs_item_key(right, &disk_key, 0); |
Nikolay Borisov | b167fa9 | 2018-06-20 15:48:47 +0300 | [diff] [blame] | 3017 | fixup_low_keys(path, &disk_key, 1); |
Chris Mason | be0e5c0 | 2007-01-26 15:51:26 -0500 | [diff] [blame] | 3018 | |
| 3019 | /* then fixup the leaf pointer in the path */ |
| 3020 | if (path->slots[0] < push_items) { |
| 3021 | path->slots[0] += old_left_nritems; |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 3022 | btrfs_tree_unlock(path->nodes[0]); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3023 | free_extent_buffer(path->nodes[0]); |
| 3024 | path->nodes[0] = left; |
Chris Mason | be0e5c0 | 2007-01-26 15:51:26 -0500 | [diff] [blame] | 3025 | path->slots[1] -= 1; |
| 3026 | } else { |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 3027 | btrfs_tree_unlock(left); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3028 | free_extent_buffer(left); |
Chris Mason | be0e5c0 | 2007-01-26 15:51:26 -0500 | [diff] [blame] | 3029 | path->slots[0] -= push_items; |
| 3030 | } |
Chris Mason | eb60cea | 2007-02-02 09:18:22 -0500 | [diff] [blame] | 3031 | BUG_ON(path->slots[0] < 0); |
Chris Mason | aa5d6be | 2007-02-28 16:35:06 -0500 | [diff] [blame] | 3032 | return ret; |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 3033 | out: |
| 3034 | btrfs_tree_unlock(left); |
| 3035 | free_extent_buffer(left); |
| 3036 | return ret; |
Chris Mason | be0e5c0 | 2007-01-26 15:51:26 -0500 | [diff] [blame] | 3037 | } |
| 3038 | |
Chris Mason | 74123bd | 2007-02-02 11:05:29 -0500 | [diff] [blame] | 3039 | /* |
Chris Mason | 44871b1 | 2009-03-13 10:04:31 -0400 | [diff] [blame] | 3040 | * push some data in the path leaf to the left, trying to free up at |
| 3041 | * least data_size bytes. returns zero if the push worked, nonzero otherwise |
Chris Mason | 99d8f83 | 2010-07-07 10:51:48 -0400 | [diff] [blame] | 3042 | * |
| 3043 | * max_slot can put a limit on how far into the leaf we'll push items. The |
| 3044 | * item at 'max_slot' won't be touched. Use (u32)-1 to make us push all the |
| 3045 | * items |
Chris Mason | 44871b1 | 2009-03-13 10:04:31 -0400 | [diff] [blame] | 3046 | */ |
| 3047 | static int push_leaf_left(struct btrfs_trans_handle *trans, struct btrfs_root |
Chris Mason | 99d8f83 | 2010-07-07 10:51:48 -0400 | [diff] [blame] | 3048 | *root, struct btrfs_path *path, int min_data_size, |
| 3049 | int data_size, int empty, u32 max_slot) |
Chris Mason | 44871b1 | 2009-03-13 10:04:31 -0400 | [diff] [blame] | 3050 | { |
| 3051 | struct extent_buffer *right = path->nodes[0]; |
| 3052 | struct extent_buffer *left; |
| 3053 | int slot; |
| 3054 | int free_space; |
| 3055 | u32 right_nritems; |
| 3056 | int ret = 0; |
| 3057 | |
| 3058 | slot = path->slots[1]; |
| 3059 | if (slot == 0) |
| 3060 | return 1; |
| 3061 | if (!path->nodes[1]) |
| 3062 | return 1; |
| 3063 | |
| 3064 | right_nritems = btrfs_header_nritems(right); |
| 3065 | if (right_nritems == 0) |
| 3066 | return 1; |
| 3067 | |
Filipe Manana | 49d0c64 | 2021-09-22 10:36:45 +0100 | [diff] [blame] | 3068 | btrfs_assert_tree_write_locked(path->nodes[1]); |
Chris Mason | 44871b1 | 2009-03-13 10:04:31 -0400 | [diff] [blame] | 3069 | |
David Sterba | 4b231ae | 2019-08-21 19:16:27 +0200 | [diff] [blame] | 3070 | left = btrfs_read_node_slot(path->nodes[1], slot - 1); |
Liu Bo | fb770ae | 2016-07-05 12:10:14 -0700 | [diff] [blame] | 3071 | /* |
| 3072 | * slot - 1 is not valid or we fail to read the left node, |
| 3073 | * no big deal, just return. |
| 3074 | */ |
| 3075 | if (IS_ERR(left)) |
Tsutomu Itoh | 91ca338 | 2011-01-05 02:32:22 +0000 | [diff] [blame] | 3076 | return 1; |
| 3077 | |
Josef Bacik | bf77467 | 2020-08-20 11:46:04 -0400 | [diff] [blame] | 3078 | __btrfs_tree_lock(left, BTRFS_NESTING_LEFT); |
Chris Mason | 44871b1 | 2009-03-13 10:04:31 -0400 | [diff] [blame] | 3079 | |
David Sterba | e902baa | 2019-03-20 14:36:46 +0100 | [diff] [blame] | 3080 | free_space = btrfs_leaf_free_space(left); |
Chris Mason | 44871b1 | 2009-03-13 10:04:31 -0400 | [diff] [blame] | 3081 | if (free_space < data_size) { |
| 3082 | ret = 1; |
| 3083 | goto out; |
| 3084 | } |
| 3085 | |
| 3086 | /* cow and double check */ |
| 3087 | ret = btrfs_cow_block(trans, root, left, |
Josef Bacik | 9631e4c | 2020-08-20 11:46:03 -0400 | [diff] [blame] | 3088 | path->nodes[1], slot - 1, &left, |
Josef Bacik | bf59a5a | 2020-08-20 11:46:05 -0400 | [diff] [blame] | 3089 | BTRFS_NESTING_LEFT_COW); |
Chris Mason | 44871b1 | 2009-03-13 10:04:31 -0400 | [diff] [blame] | 3090 | if (ret) { |
| 3091 | /* we hit -ENOSPC, but it isn't fatal here */ |
Jeff Mahoney | 79787ea | 2012-03-12 16:03:00 +0100 | [diff] [blame] | 3092 | if (ret == -ENOSPC) |
| 3093 | ret = 1; |
Chris Mason | 44871b1 | 2009-03-13 10:04:31 -0400 | [diff] [blame] | 3094 | goto out; |
| 3095 | } |
| 3096 | |
David Sterba | e902baa | 2019-03-20 14:36:46 +0100 | [diff] [blame] | 3097 | free_space = btrfs_leaf_free_space(left); |
Chris Mason | 44871b1 | 2009-03-13 10:04:31 -0400 | [diff] [blame] | 3098 | if (free_space < data_size) { |
| 3099 | ret = 1; |
| 3100 | goto out; |
| 3101 | } |
| 3102 | |
Qu Wenruo | d16c702 | 2020-08-19 14:35:50 +0800 | [diff] [blame] | 3103 | if (check_sibling_keys(left, right)) { |
| 3104 | ret = -EUCLEAN; |
| 3105 | goto out; |
| 3106 | } |
David Sterba | 8087c19 | 2019-03-20 14:40:41 +0100 | [diff] [blame] | 3107 | return __push_leaf_left(path, min_data_size, |
Chris Mason | 99d8f83 | 2010-07-07 10:51:48 -0400 | [diff] [blame] | 3108 | empty, left, free_space, right_nritems, |
| 3109 | max_slot); |
Chris Mason | 44871b1 | 2009-03-13 10:04:31 -0400 | [diff] [blame] | 3110 | out: |
| 3111 | btrfs_tree_unlock(left); |
| 3112 | free_extent_buffer(left); |
| 3113 | return ret; |
| 3114 | } |
| 3115 | |
| 3116 | /* |
Chris Mason | 74123bd | 2007-02-02 11:05:29 -0500 | [diff] [blame] | 3117 | * split the path's leaf in two, making sure there is at least data_size |
| 3118 | * available for the resulting leaf level of the path. |
| 3119 | */ |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 3120 | static noinline void copy_for_split(struct btrfs_trans_handle *trans, |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 3121 | struct btrfs_path *path, |
| 3122 | struct extent_buffer *l, |
| 3123 | struct extent_buffer *right, |
| 3124 | int slot, int mid, int nritems) |
Chris Mason | be0e5c0 | 2007-01-26 15:51:26 -0500 | [diff] [blame] | 3125 | { |
David Sterba | 94f94ad | 2019-03-20 14:42:33 +0100 | [diff] [blame] | 3126 | struct btrfs_fs_info *fs_info = trans->fs_info; |
Chris Mason | be0e5c0 | 2007-01-26 15:51:26 -0500 | [diff] [blame] | 3127 | int data_copy_size; |
| 3128 | int rt_data_off; |
| 3129 | int i; |
Chris Mason | d4dbff9 | 2007-04-04 14:08:15 -0400 | [diff] [blame] | 3130 | struct btrfs_disk_key disk_key; |
Chris Mason | cfed81a | 2012-03-03 07:40:03 -0500 | [diff] [blame] | 3131 | struct btrfs_map_token token; |
| 3132 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3133 | nritems = nritems - mid; |
| 3134 | btrfs_set_header_nritems(right, nritems); |
David Sterba | 8f881e8 | 2019-03-20 11:33:10 +0100 | [diff] [blame] | 3135 | data_copy_size = btrfs_item_end_nr(l, mid) - leaf_data_end(l); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3136 | |
| 3137 | copy_extent_buffer(right, l, btrfs_item_nr_offset(0), |
| 3138 | btrfs_item_nr_offset(mid), |
| 3139 | nritems * sizeof(struct btrfs_item)); |
| 3140 | |
| 3141 | copy_extent_buffer(right, l, |
Nikolay Borisov | 3d9ec8c | 2017-05-29 09:43:43 +0300 | [diff] [blame] | 3142 | BTRFS_LEAF_DATA_OFFSET + BTRFS_LEAF_DATA_SIZE(fs_info) - |
| 3143 | data_copy_size, BTRFS_LEAF_DATA_OFFSET + |
David Sterba | 8f881e8 | 2019-03-20 11:33:10 +0100 | [diff] [blame] | 3144 | leaf_data_end(l), data_copy_size); |
Chris Mason | 74123bd | 2007-02-02 11:05:29 -0500 | [diff] [blame] | 3145 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3146 | rt_data_off = BTRFS_LEAF_DATA_SIZE(fs_info) - btrfs_item_end_nr(l, mid); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3147 | |
David Sterba | c82f823 | 2019-08-09 17:48:21 +0200 | [diff] [blame] | 3148 | btrfs_init_map_token(&token, right); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3149 | for (i = 0; i < nritems; i++) { |
Ross Kirk | dd3cc16 | 2013-09-16 15:58:09 +0100 | [diff] [blame] | 3150 | struct btrfs_item *item = btrfs_item_nr(i); |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 3151 | u32 ioff; |
| 3152 | |
David Sterba | cc4c13d | 2020-04-29 02:15:56 +0200 | [diff] [blame] | 3153 | ioff = btrfs_token_item_offset(&token, item); |
| 3154 | btrfs_set_token_item_offset(&token, item, ioff + rt_data_off); |
Chris Mason | 0783fcf | 2007-03-12 20:12:07 -0400 | [diff] [blame] | 3155 | } |
Chris Mason | 74123bd | 2007-02-02 11:05:29 -0500 | [diff] [blame] | 3156 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3157 | btrfs_set_header_nritems(l, mid); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3158 | btrfs_item_key(right, &disk_key, 0); |
David Sterba | 6ad3cf6 | 2019-03-20 14:32:45 +0100 | [diff] [blame] | 3159 | insert_ptr(trans, path, &disk_key, right->start, path->slots[1] + 1, 1); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3160 | |
| 3161 | btrfs_mark_buffer_dirty(right); |
| 3162 | btrfs_mark_buffer_dirty(l); |
Chris Mason | eb60cea | 2007-02-02 09:18:22 -0500 | [diff] [blame] | 3163 | BUG_ON(path->slots[0] != slot); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3164 | |
Chris Mason | be0e5c0 | 2007-01-26 15:51:26 -0500 | [diff] [blame] | 3165 | if (mid <= slot) { |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 3166 | btrfs_tree_unlock(path->nodes[0]); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3167 | free_extent_buffer(path->nodes[0]); |
| 3168 | path->nodes[0] = right; |
Chris Mason | be0e5c0 | 2007-01-26 15:51:26 -0500 | [diff] [blame] | 3169 | path->slots[0] -= mid; |
| 3170 | path->slots[1] += 1; |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 3171 | } else { |
| 3172 | btrfs_tree_unlock(right); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3173 | free_extent_buffer(right); |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 3174 | } |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3175 | |
Chris Mason | eb60cea | 2007-02-02 09:18:22 -0500 | [diff] [blame] | 3176 | BUG_ON(path->slots[0] < 0); |
Chris Mason | 44871b1 | 2009-03-13 10:04:31 -0400 | [diff] [blame] | 3177 | } |
| 3178 | |
| 3179 | /* |
Chris Mason | 99d8f83 | 2010-07-07 10:51:48 -0400 | [diff] [blame] | 3180 | * double splits happen when we need to insert a big item in the middle |
| 3181 | * of a leaf. A double split can leave us with 3 mostly empty leaves: |
| 3182 | * leaf: [ slots 0 - N] [ our target ] [ N + 1 - total in leaf ] |
| 3183 | * A B C |
| 3184 | * |
| 3185 | * We avoid this by trying to push the items on either side of our target |
| 3186 | * into the adjacent leaves. If all goes well we can avoid the double split |
| 3187 | * completely. |
| 3188 | */ |
| 3189 | static noinline int push_for_double_split(struct btrfs_trans_handle *trans, |
| 3190 | struct btrfs_root *root, |
| 3191 | struct btrfs_path *path, |
| 3192 | int data_size) |
| 3193 | { |
| 3194 | int ret; |
| 3195 | int progress = 0; |
| 3196 | int slot; |
| 3197 | u32 nritems; |
Filipe David Borba Manana | 5a4267c | 2013-11-25 03:20:46 +0000 | [diff] [blame] | 3198 | int space_needed = data_size; |
Chris Mason | 99d8f83 | 2010-07-07 10:51:48 -0400 | [diff] [blame] | 3199 | |
| 3200 | slot = path->slots[0]; |
Filipe David Borba Manana | 5a4267c | 2013-11-25 03:20:46 +0000 | [diff] [blame] | 3201 | if (slot < btrfs_header_nritems(path->nodes[0])) |
David Sterba | e902baa | 2019-03-20 14:36:46 +0100 | [diff] [blame] | 3202 | space_needed -= btrfs_leaf_free_space(path->nodes[0]); |
Chris Mason | 99d8f83 | 2010-07-07 10:51:48 -0400 | [diff] [blame] | 3203 | |
| 3204 | /* |
| 3205 | * try to push all the items after our slot into the |
| 3206 | * right leaf |
| 3207 | */ |
Filipe David Borba Manana | 5a4267c | 2013-11-25 03:20:46 +0000 | [diff] [blame] | 3208 | ret = push_leaf_right(trans, root, path, 1, space_needed, 0, slot); |
Chris Mason | 99d8f83 | 2010-07-07 10:51:48 -0400 | [diff] [blame] | 3209 | if (ret < 0) |
| 3210 | return ret; |
| 3211 | |
| 3212 | if (ret == 0) |
| 3213 | progress++; |
| 3214 | |
| 3215 | nritems = btrfs_header_nritems(path->nodes[0]); |
| 3216 | /* |
| 3217 | * our goal is to get our slot at the start or end of a leaf. If |
| 3218 | * we've done so we're done |
| 3219 | */ |
| 3220 | if (path->slots[0] == 0 || path->slots[0] == nritems) |
| 3221 | return 0; |
| 3222 | |
David Sterba | e902baa | 2019-03-20 14:36:46 +0100 | [diff] [blame] | 3223 | if (btrfs_leaf_free_space(path->nodes[0]) >= data_size) |
Chris Mason | 99d8f83 | 2010-07-07 10:51:48 -0400 | [diff] [blame] | 3224 | return 0; |
| 3225 | |
| 3226 | /* try to push all the items before our slot into the next leaf */ |
| 3227 | slot = path->slots[0]; |
Filipe Manana | 263d399 | 2017-02-17 18:43:57 +0000 | [diff] [blame] | 3228 | space_needed = data_size; |
| 3229 | if (slot > 0) |
David Sterba | e902baa | 2019-03-20 14:36:46 +0100 | [diff] [blame] | 3230 | space_needed -= btrfs_leaf_free_space(path->nodes[0]); |
Filipe David Borba Manana | 5a4267c | 2013-11-25 03:20:46 +0000 | [diff] [blame] | 3231 | ret = push_leaf_left(trans, root, path, 1, space_needed, 0, slot); |
Chris Mason | 99d8f83 | 2010-07-07 10:51:48 -0400 | [diff] [blame] | 3232 | if (ret < 0) |
| 3233 | return ret; |
| 3234 | |
| 3235 | if (ret == 0) |
| 3236 | progress++; |
| 3237 | |
| 3238 | if (progress) |
| 3239 | return 0; |
| 3240 | return 1; |
| 3241 | } |
| 3242 | |
| 3243 | /* |
Chris Mason | 44871b1 | 2009-03-13 10:04:31 -0400 | [diff] [blame] | 3244 | * split the path's leaf in two, making sure there is at least data_size |
| 3245 | * available for the resulting leaf level of the path. |
| 3246 | * |
| 3247 | * returns 0 if all went well and < 0 on failure. |
| 3248 | */ |
| 3249 | static noinline int split_leaf(struct btrfs_trans_handle *trans, |
| 3250 | struct btrfs_root *root, |
Omar Sandoval | 310712b | 2017-01-17 23:24:37 -0800 | [diff] [blame] | 3251 | const struct btrfs_key *ins_key, |
Chris Mason | 44871b1 | 2009-03-13 10:04:31 -0400 | [diff] [blame] | 3252 | struct btrfs_path *path, int data_size, |
| 3253 | int extend) |
| 3254 | { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3255 | struct btrfs_disk_key disk_key; |
Chris Mason | 44871b1 | 2009-03-13 10:04:31 -0400 | [diff] [blame] | 3256 | struct extent_buffer *l; |
| 3257 | u32 nritems; |
| 3258 | int mid; |
| 3259 | int slot; |
| 3260 | struct extent_buffer *right; |
Daniel Dressler | b7a0365 | 2014-11-12 13:43:09 +0900 | [diff] [blame] | 3261 | struct btrfs_fs_info *fs_info = root->fs_info; |
Chris Mason | 44871b1 | 2009-03-13 10:04:31 -0400 | [diff] [blame] | 3262 | int ret = 0; |
| 3263 | int wret; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3264 | int split; |
Chris Mason | 44871b1 | 2009-03-13 10:04:31 -0400 | [diff] [blame] | 3265 | int num_doubles = 0; |
Chris Mason | 99d8f83 | 2010-07-07 10:51:48 -0400 | [diff] [blame] | 3266 | int tried_avoid_double = 0; |
Chris Mason | 44871b1 | 2009-03-13 10:04:31 -0400 | [diff] [blame] | 3267 | |
Yan, Zheng | a571952 | 2009-09-24 09:17:31 -0400 | [diff] [blame] | 3268 | l = path->nodes[0]; |
| 3269 | slot = path->slots[0]; |
| 3270 | if (extend && data_size + btrfs_item_size_nr(l, slot) + |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3271 | sizeof(struct btrfs_item) > BTRFS_LEAF_DATA_SIZE(fs_info)) |
Yan, Zheng | a571952 | 2009-09-24 09:17:31 -0400 | [diff] [blame] | 3272 | return -EOVERFLOW; |
| 3273 | |
Chris Mason | 44871b1 | 2009-03-13 10:04:31 -0400 | [diff] [blame] | 3274 | /* first try to make some room by pushing left and right */ |
Liu Bo | 33157e0 | 2013-05-22 12:07:06 +0000 | [diff] [blame] | 3275 | if (data_size && path->nodes[1]) { |
Filipe David Borba Manana | 5a4267c | 2013-11-25 03:20:46 +0000 | [diff] [blame] | 3276 | int space_needed = data_size; |
| 3277 | |
| 3278 | if (slot < btrfs_header_nritems(l)) |
David Sterba | e902baa | 2019-03-20 14:36:46 +0100 | [diff] [blame] | 3279 | space_needed -= btrfs_leaf_free_space(l); |
Filipe David Borba Manana | 5a4267c | 2013-11-25 03:20:46 +0000 | [diff] [blame] | 3280 | |
| 3281 | wret = push_leaf_right(trans, root, path, space_needed, |
| 3282 | space_needed, 0, 0); |
Chris Mason | 44871b1 | 2009-03-13 10:04:31 -0400 | [diff] [blame] | 3283 | if (wret < 0) |
| 3284 | return wret; |
| 3285 | if (wret) { |
Filipe Manana | 263d399 | 2017-02-17 18:43:57 +0000 | [diff] [blame] | 3286 | space_needed = data_size; |
| 3287 | if (slot > 0) |
David Sterba | e902baa | 2019-03-20 14:36:46 +0100 | [diff] [blame] | 3288 | space_needed -= btrfs_leaf_free_space(l); |
Filipe David Borba Manana | 5a4267c | 2013-11-25 03:20:46 +0000 | [diff] [blame] | 3289 | wret = push_leaf_left(trans, root, path, space_needed, |
| 3290 | space_needed, 0, (u32)-1); |
Chris Mason | 44871b1 | 2009-03-13 10:04:31 -0400 | [diff] [blame] | 3291 | if (wret < 0) |
| 3292 | return wret; |
| 3293 | } |
| 3294 | l = path->nodes[0]; |
| 3295 | |
| 3296 | /* did the pushes work? */ |
David Sterba | e902baa | 2019-03-20 14:36:46 +0100 | [diff] [blame] | 3297 | if (btrfs_leaf_free_space(l) >= data_size) |
Chris Mason | 44871b1 | 2009-03-13 10:04:31 -0400 | [diff] [blame] | 3298 | return 0; |
| 3299 | } |
| 3300 | |
| 3301 | if (!path->nodes[1]) { |
Liu Bo | fdd99c7 | 2013-05-22 12:06:51 +0000 | [diff] [blame] | 3302 | ret = insert_new_root(trans, root, path, 1); |
Chris Mason | 44871b1 | 2009-03-13 10:04:31 -0400 | [diff] [blame] | 3303 | if (ret) |
| 3304 | return ret; |
| 3305 | } |
| 3306 | again: |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3307 | split = 1; |
Chris Mason | 44871b1 | 2009-03-13 10:04:31 -0400 | [diff] [blame] | 3308 | l = path->nodes[0]; |
| 3309 | slot = path->slots[0]; |
| 3310 | nritems = btrfs_header_nritems(l); |
| 3311 | mid = (nritems + 1) / 2; |
| 3312 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3313 | if (mid <= slot) { |
| 3314 | if (nritems == 1 || |
| 3315 | leaf_space_used(l, mid, nritems - mid) + data_size > |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3316 | BTRFS_LEAF_DATA_SIZE(fs_info)) { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3317 | if (slot >= nritems) { |
| 3318 | split = 0; |
| 3319 | } else { |
| 3320 | mid = slot; |
| 3321 | if (mid != nritems && |
| 3322 | leaf_space_used(l, mid, nritems - mid) + |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3323 | data_size > BTRFS_LEAF_DATA_SIZE(fs_info)) { |
Chris Mason | 99d8f83 | 2010-07-07 10:51:48 -0400 | [diff] [blame] | 3324 | if (data_size && !tried_avoid_double) |
| 3325 | goto push_for_double; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3326 | split = 2; |
| 3327 | } |
| 3328 | } |
| 3329 | } |
| 3330 | } else { |
| 3331 | if (leaf_space_used(l, 0, mid) + data_size > |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3332 | BTRFS_LEAF_DATA_SIZE(fs_info)) { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3333 | if (!extend && data_size && slot == 0) { |
| 3334 | split = 0; |
| 3335 | } else if ((extend || !data_size) && slot == 0) { |
| 3336 | mid = 1; |
| 3337 | } else { |
| 3338 | mid = slot; |
| 3339 | if (mid != nritems && |
| 3340 | leaf_space_used(l, mid, nritems - mid) + |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3341 | data_size > BTRFS_LEAF_DATA_SIZE(fs_info)) { |
Chris Mason | 99d8f83 | 2010-07-07 10:51:48 -0400 | [diff] [blame] | 3342 | if (data_size && !tried_avoid_double) |
| 3343 | goto push_for_double; |
Dulshani Gunawardhana | 6787125 | 2013-10-31 10:33:04 +0530 | [diff] [blame] | 3344 | split = 2; |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3345 | } |
| 3346 | } |
| 3347 | } |
| 3348 | } |
| 3349 | |
| 3350 | if (split == 0) |
| 3351 | btrfs_cpu_key_to_disk(&disk_key, ins_key); |
| 3352 | else |
| 3353 | btrfs_item_key(l, &disk_key, mid); |
| 3354 | |
Josef Bacik | ca9d473 | 2020-08-20 11:46:08 -0400 | [diff] [blame] | 3355 | /* |
| 3356 | * We have to about BTRFS_NESTING_NEW_ROOT here if we've done a double |
| 3357 | * split, because we're only allowed to have MAX_LOCKDEP_SUBCLASSES |
| 3358 | * subclasses, which is 8 at the time of this patch, and we've maxed it |
| 3359 | * out. In the future we could add a |
| 3360 | * BTRFS_NESTING_SPLIT_THE_SPLITTENING if we need to, but for now just |
| 3361 | * use BTRFS_NESTING_NEW_ROOT. |
| 3362 | */ |
Filipe Manana | 79bd371 | 2021-06-29 14:43:06 +0100 | [diff] [blame] | 3363 | right = btrfs_alloc_tree_block(trans, root, 0, root->root_key.objectid, |
| 3364 | &disk_key, 0, l->start, 0, |
| 3365 | num_doubles ? BTRFS_NESTING_NEW_ROOT : |
| 3366 | BTRFS_NESTING_SPLIT); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 3367 | if (IS_ERR(right)) |
Chris Mason | 44871b1 | 2009-03-13 10:04:31 -0400 | [diff] [blame] | 3368 | return PTR_ERR(right); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 3369 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3370 | root_add_used(root, fs_info->nodesize); |
Chris Mason | 44871b1 | 2009-03-13 10:04:31 -0400 | [diff] [blame] | 3371 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3372 | if (split == 0) { |
| 3373 | if (mid <= slot) { |
| 3374 | btrfs_set_header_nritems(right, 0); |
David Sterba | 6ad3cf6 | 2019-03-20 14:32:45 +0100 | [diff] [blame] | 3375 | insert_ptr(trans, path, &disk_key, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3376 | right->start, path->slots[1] + 1, 1); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3377 | btrfs_tree_unlock(path->nodes[0]); |
| 3378 | free_extent_buffer(path->nodes[0]); |
| 3379 | path->nodes[0] = right; |
| 3380 | path->slots[0] = 0; |
| 3381 | path->slots[1] += 1; |
| 3382 | } else { |
| 3383 | btrfs_set_header_nritems(right, 0); |
David Sterba | 6ad3cf6 | 2019-03-20 14:32:45 +0100 | [diff] [blame] | 3384 | insert_ptr(trans, path, &disk_key, |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 3385 | right->start, path->slots[1], 1); |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3386 | btrfs_tree_unlock(path->nodes[0]); |
| 3387 | free_extent_buffer(path->nodes[0]); |
| 3388 | path->nodes[0] = right; |
| 3389 | path->slots[0] = 0; |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 3390 | if (path->slots[1] == 0) |
Nikolay Borisov | b167fa9 | 2018-06-20 15:48:47 +0300 | [diff] [blame] | 3391 | fixup_low_keys(path, &disk_key, 1); |
Chris Mason | 44871b1 | 2009-03-13 10:04:31 -0400 | [diff] [blame] | 3392 | } |
Liu Bo | 196e024 | 2016-09-07 14:48:28 -0700 | [diff] [blame] | 3393 | /* |
| 3394 | * We create a new leaf 'right' for the required ins_len and |
| 3395 | * we'll do btrfs_mark_buffer_dirty() on this leaf after copying |
| 3396 | * the content of ins_len to 'right'. |
| 3397 | */ |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3398 | return ret; |
Chris Mason | 44871b1 | 2009-03-13 10:04:31 -0400 | [diff] [blame] | 3399 | } |
| 3400 | |
David Sterba | 94f94ad | 2019-03-20 14:42:33 +0100 | [diff] [blame] | 3401 | copy_for_split(trans, path, l, right, slot, mid, nritems); |
Chris Mason | 44871b1 | 2009-03-13 10:04:31 -0400 | [diff] [blame] | 3402 | |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3403 | if (split == 2) { |
Chris Mason | cc0c553 | 2007-10-25 15:42:57 -0400 | [diff] [blame] | 3404 | BUG_ON(num_doubles != 0); |
| 3405 | num_doubles++; |
| 3406 | goto again; |
Chris Mason | 3326d1b | 2007-10-15 16:18:25 -0400 | [diff] [blame] | 3407 | } |
Chris Mason | 44871b1 | 2009-03-13 10:04:31 -0400 | [diff] [blame] | 3408 | |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 3409 | return 0; |
Chris Mason | 99d8f83 | 2010-07-07 10:51:48 -0400 | [diff] [blame] | 3410 | |
| 3411 | push_for_double: |
| 3412 | push_for_double_split(trans, root, path, data_size); |
| 3413 | tried_avoid_double = 1; |
David Sterba | e902baa | 2019-03-20 14:36:46 +0100 | [diff] [blame] | 3414 | if (btrfs_leaf_free_space(path->nodes[0]) >= data_size) |
Chris Mason | 99d8f83 | 2010-07-07 10:51:48 -0400 | [diff] [blame] | 3415 | return 0; |
| 3416 | goto again; |
Chris Mason | be0e5c0 | 2007-01-26 15:51:26 -0500 | [diff] [blame] | 3417 | } |
| 3418 | |
Yan, Zheng | ad48fd75 | 2009-11-12 09:33:58 +0000 | [diff] [blame] | 3419 | static noinline int setup_leaf_for_split(struct btrfs_trans_handle *trans, |
| 3420 | struct btrfs_root *root, |
| 3421 | struct btrfs_path *path, int ins_len) |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 3422 | { |
Yan, Zheng | ad48fd75 | 2009-11-12 09:33:58 +0000 | [diff] [blame] | 3423 | struct btrfs_key key; |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 3424 | struct extent_buffer *leaf; |
Yan, Zheng | ad48fd75 | 2009-11-12 09:33:58 +0000 | [diff] [blame] | 3425 | struct btrfs_file_extent_item *fi; |
| 3426 | u64 extent_len = 0; |
| 3427 | u32 item_size; |
| 3428 | int ret; |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 3429 | |
| 3430 | leaf = path->nodes[0]; |
Yan, Zheng | ad48fd75 | 2009-11-12 09:33:58 +0000 | [diff] [blame] | 3431 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
| 3432 | |
| 3433 | BUG_ON(key.type != BTRFS_EXTENT_DATA_KEY && |
| 3434 | key.type != BTRFS_EXTENT_CSUM_KEY); |
| 3435 | |
David Sterba | e902baa | 2019-03-20 14:36:46 +0100 | [diff] [blame] | 3436 | if (btrfs_leaf_free_space(leaf) >= ins_len) |
Yan, Zheng | ad48fd75 | 2009-11-12 09:33:58 +0000 | [diff] [blame] | 3437 | return 0; |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 3438 | |
| 3439 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
Yan, Zheng | ad48fd75 | 2009-11-12 09:33:58 +0000 | [diff] [blame] | 3440 | if (key.type == BTRFS_EXTENT_DATA_KEY) { |
| 3441 | fi = btrfs_item_ptr(leaf, path->slots[0], |
| 3442 | struct btrfs_file_extent_item); |
| 3443 | extent_len = btrfs_file_extent_num_bytes(leaf, fi); |
| 3444 | } |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 3445 | btrfs_release_path(path); |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 3446 | |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 3447 | path->keep_locks = 1; |
Yan, Zheng | ad48fd75 | 2009-11-12 09:33:58 +0000 | [diff] [blame] | 3448 | path->search_for_split = 1; |
| 3449 | ret = btrfs_search_slot(trans, root, &key, path, 0, 1); |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 3450 | path->search_for_split = 0; |
Filipe Manana | a8df6fe | 2015-01-20 12:40:53 +0000 | [diff] [blame] | 3451 | if (ret > 0) |
| 3452 | ret = -EAGAIN; |
Yan, Zheng | ad48fd75 | 2009-11-12 09:33:58 +0000 | [diff] [blame] | 3453 | if (ret < 0) |
| 3454 | goto err; |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 3455 | |
Yan, Zheng | ad48fd75 | 2009-11-12 09:33:58 +0000 | [diff] [blame] | 3456 | ret = -EAGAIN; |
| 3457 | leaf = path->nodes[0]; |
Filipe Manana | a8df6fe | 2015-01-20 12:40:53 +0000 | [diff] [blame] | 3458 | /* if our item isn't there, return now */ |
| 3459 | if (item_size != btrfs_item_size_nr(leaf, path->slots[0])) |
Yan, Zheng | ad48fd75 | 2009-11-12 09:33:58 +0000 | [diff] [blame] | 3460 | goto err; |
| 3461 | |
Chris Mason | 109f6ae | 2010-04-02 09:20:18 -0400 | [diff] [blame] | 3462 | /* the leaf has changed, it now has room. return now */ |
David Sterba | e902baa | 2019-03-20 14:36:46 +0100 | [diff] [blame] | 3463 | if (btrfs_leaf_free_space(path->nodes[0]) >= ins_len) |
Chris Mason | 109f6ae | 2010-04-02 09:20:18 -0400 | [diff] [blame] | 3464 | goto err; |
| 3465 | |
Yan, Zheng | ad48fd75 | 2009-11-12 09:33:58 +0000 | [diff] [blame] | 3466 | if (key.type == BTRFS_EXTENT_DATA_KEY) { |
| 3467 | fi = btrfs_item_ptr(leaf, path->slots[0], |
| 3468 | struct btrfs_file_extent_item); |
| 3469 | if (extent_len != btrfs_file_extent_num_bytes(leaf, fi)) |
| 3470 | goto err; |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 3471 | } |
| 3472 | |
Yan, Zheng | ad48fd75 | 2009-11-12 09:33:58 +0000 | [diff] [blame] | 3473 | ret = split_leaf(trans, root, &key, path, ins_len, 1); |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 3474 | if (ret) |
| 3475 | goto err; |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 3476 | |
Yan, Zheng | ad48fd75 | 2009-11-12 09:33:58 +0000 | [diff] [blame] | 3477 | path->keep_locks = 0; |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 3478 | btrfs_unlock_up_safe(path, 1); |
Yan, Zheng | ad48fd75 | 2009-11-12 09:33:58 +0000 | [diff] [blame] | 3479 | return 0; |
| 3480 | err: |
| 3481 | path->keep_locks = 0; |
| 3482 | return ret; |
| 3483 | } |
| 3484 | |
David Sterba | 25263cd | 2019-03-20 14:44:57 +0100 | [diff] [blame] | 3485 | static noinline int split_item(struct btrfs_path *path, |
Omar Sandoval | 310712b | 2017-01-17 23:24:37 -0800 | [diff] [blame] | 3486 | const struct btrfs_key *new_key, |
Yan, Zheng | ad48fd75 | 2009-11-12 09:33:58 +0000 | [diff] [blame] | 3487 | unsigned long split_offset) |
| 3488 | { |
| 3489 | struct extent_buffer *leaf; |
| 3490 | struct btrfs_item *item; |
| 3491 | struct btrfs_item *new_item; |
| 3492 | int slot; |
| 3493 | char *buf; |
| 3494 | u32 nritems; |
| 3495 | u32 item_size; |
| 3496 | u32 orig_offset; |
| 3497 | struct btrfs_disk_key disk_key; |
| 3498 | |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 3499 | leaf = path->nodes[0]; |
David Sterba | e902baa | 2019-03-20 14:36:46 +0100 | [diff] [blame] | 3500 | BUG_ON(btrfs_leaf_free_space(leaf) < sizeof(struct btrfs_item)); |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 3501 | |
Ross Kirk | dd3cc16 | 2013-09-16 15:58:09 +0100 | [diff] [blame] | 3502 | item = btrfs_item_nr(path->slots[0]); |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 3503 | orig_offset = btrfs_item_offset(leaf, item); |
| 3504 | item_size = btrfs_item_size(leaf, item); |
| 3505 | |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 3506 | buf = kmalloc(item_size, GFP_NOFS); |
Yan, Zheng | ad48fd75 | 2009-11-12 09:33:58 +0000 | [diff] [blame] | 3507 | if (!buf) |
| 3508 | return -ENOMEM; |
| 3509 | |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 3510 | read_extent_buffer(leaf, buf, btrfs_item_ptr_offset(leaf, |
| 3511 | path->slots[0]), item_size); |
Yan, Zheng | ad48fd75 | 2009-11-12 09:33:58 +0000 | [diff] [blame] | 3512 | |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 3513 | slot = path->slots[0] + 1; |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 3514 | nritems = btrfs_header_nritems(leaf); |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 3515 | if (slot != nritems) { |
| 3516 | /* shift the items */ |
| 3517 | memmove_extent_buffer(leaf, btrfs_item_nr_offset(slot + 1), |
Yan, Zheng | ad48fd75 | 2009-11-12 09:33:58 +0000 | [diff] [blame] | 3518 | btrfs_item_nr_offset(slot), |
| 3519 | (nritems - slot) * sizeof(struct btrfs_item)); |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 3520 | } |
| 3521 | |
| 3522 | btrfs_cpu_key_to_disk(&disk_key, new_key); |
| 3523 | btrfs_set_item_key(leaf, &disk_key, slot); |
| 3524 | |
Ross Kirk | dd3cc16 | 2013-09-16 15:58:09 +0100 | [diff] [blame] | 3525 | new_item = btrfs_item_nr(slot); |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 3526 | |
| 3527 | btrfs_set_item_offset(leaf, new_item, orig_offset); |
| 3528 | btrfs_set_item_size(leaf, new_item, item_size - split_offset); |
| 3529 | |
| 3530 | btrfs_set_item_offset(leaf, item, |
| 3531 | orig_offset + item_size - split_offset); |
| 3532 | btrfs_set_item_size(leaf, item, split_offset); |
| 3533 | |
| 3534 | btrfs_set_header_nritems(leaf, nritems + 1); |
| 3535 | |
| 3536 | /* write the data for the start of the original item */ |
| 3537 | write_extent_buffer(leaf, buf, |
| 3538 | btrfs_item_ptr_offset(leaf, path->slots[0]), |
| 3539 | split_offset); |
| 3540 | |
| 3541 | /* write the data for the new item */ |
| 3542 | write_extent_buffer(leaf, buf + split_offset, |
| 3543 | btrfs_item_ptr_offset(leaf, slot), |
| 3544 | item_size - split_offset); |
| 3545 | btrfs_mark_buffer_dirty(leaf); |
| 3546 | |
David Sterba | e902baa | 2019-03-20 14:36:46 +0100 | [diff] [blame] | 3547 | BUG_ON(btrfs_leaf_free_space(leaf) < 0); |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 3548 | kfree(buf); |
Yan, Zheng | ad48fd75 | 2009-11-12 09:33:58 +0000 | [diff] [blame] | 3549 | return 0; |
| 3550 | } |
| 3551 | |
| 3552 | /* |
| 3553 | * This function splits a single item into two items, |
| 3554 | * giving 'new_key' to the new item and splitting the |
| 3555 | * old one at split_offset (from the start of the item). |
| 3556 | * |
| 3557 | * The path may be released by this operation. After |
| 3558 | * the split, the path is pointing to the old item. The |
| 3559 | * new item is going to be in the same node as the old one. |
| 3560 | * |
| 3561 | * Note, the item being split must be smaller enough to live alone on |
| 3562 | * a tree block with room for one extra struct btrfs_item |
| 3563 | * |
| 3564 | * This allows us to split the item in place, keeping a lock on the |
| 3565 | * leaf the entire time. |
| 3566 | */ |
| 3567 | int btrfs_split_item(struct btrfs_trans_handle *trans, |
| 3568 | struct btrfs_root *root, |
| 3569 | struct btrfs_path *path, |
Omar Sandoval | 310712b | 2017-01-17 23:24:37 -0800 | [diff] [blame] | 3570 | const struct btrfs_key *new_key, |
Yan, Zheng | ad48fd75 | 2009-11-12 09:33:58 +0000 | [diff] [blame] | 3571 | unsigned long split_offset) |
| 3572 | { |
| 3573 | int ret; |
| 3574 | ret = setup_leaf_for_split(trans, root, path, |
| 3575 | sizeof(struct btrfs_item)); |
| 3576 | if (ret) |
| 3577 | return ret; |
| 3578 | |
David Sterba | 25263cd | 2019-03-20 14:44:57 +0100 | [diff] [blame] | 3579 | ret = split_item(path, new_key, split_offset); |
Chris Mason | 459931e | 2008-12-10 09:10:46 -0500 | [diff] [blame] | 3580 | return ret; |
| 3581 | } |
| 3582 | |
| 3583 | /* |
Yan, Zheng | ad48fd75 | 2009-11-12 09:33:58 +0000 | [diff] [blame] | 3584 | * This function duplicate a item, giving 'new_key' to the new item. |
| 3585 | * It guarantees both items live in the same tree leaf and the new item |
| 3586 | * is contiguous with the original item. |
| 3587 | * |
| 3588 | * This allows us to split file extent in place, keeping a lock on the |
| 3589 | * leaf the entire time. |
| 3590 | */ |
| 3591 | int btrfs_duplicate_item(struct btrfs_trans_handle *trans, |
| 3592 | struct btrfs_root *root, |
| 3593 | struct btrfs_path *path, |
Omar Sandoval | 310712b | 2017-01-17 23:24:37 -0800 | [diff] [blame] | 3594 | const struct btrfs_key *new_key) |
Yan, Zheng | ad48fd75 | 2009-11-12 09:33:58 +0000 | [diff] [blame] | 3595 | { |
| 3596 | struct extent_buffer *leaf; |
| 3597 | int ret; |
| 3598 | u32 item_size; |
| 3599 | |
| 3600 | leaf = path->nodes[0]; |
| 3601 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); |
| 3602 | ret = setup_leaf_for_split(trans, root, path, |
| 3603 | item_size + sizeof(struct btrfs_item)); |
| 3604 | if (ret) |
| 3605 | return ret; |
| 3606 | |
| 3607 | path->slots[0]++; |
Filipe Manana | b7ef5f3 | 2021-09-24 12:28:13 +0100 | [diff] [blame^] | 3608 | setup_item_for_insert(root, path, new_key, item_size); |
Yan, Zheng | ad48fd75 | 2009-11-12 09:33:58 +0000 | [diff] [blame] | 3609 | leaf = path->nodes[0]; |
| 3610 | memcpy_extent_buffer(leaf, |
| 3611 | btrfs_item_ptr_offset(leaf, path->slots[0]), |
| 3612 | btrfs_item_ptr_offset(leaf, path->slots[0] - 1), |
| 3613 | item_size); |
| 3614 | return 0; |
| 3615 | } |
| 3616 | |
| 3617 | /* |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 3618 | * make the item pointed to by the path smaller. new_size indicates |
| 3619 | * how small to make it, and from_end tells us if we just chop bytes |
| 3620 | * off the end of the item or if we shift the item to chop bytes off |
| 3621 | * the front. |
| 3622 | */ |
David Sterba | 78ac4f9 | 2019-03-20 14:49:12 +0100 | [diff] [blame] | 3623 | void btrfs_truncate_item(struct btrfs_path *path, u32 new_size, int from_end) |
Chris Mason | b18c668 | 2007-04-17 13:26:50 -0400 | [diff] [blame] | 3624 | { |
Chris Mason | b18c668 | 2007-04-17 13:26:50 -0400 | [diff] [blame] | 3625 | int slot; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3626 | struct extent_buffer *leaf; |
| 3627 | struct btrfs_item *item; |
Chris Mason | b18c668 | 2007-04-17 13:26:50 -0400 | [diff] [blame] | 3628 | u32 nritems; |
| 3629 | unsigned int data_end; |
| 3630 | unsigned int old_data_start; |
| 3631 | unsigned int old_size; |
| 3632 | unsigned int size_diff; |
| 3633 | int i; |
Chris Mason | cfed81a | 2012-03-03 07:40:03 -0500 | [diff] [blame] | 3634 | struct btrfs_map_token token; |
| 3635 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3636 | leaf = path->nodes[0]; |
Chris Mason | 179e29e | 2007-11-01 11:28:41 -0400 | [diff] [blame] | 3637 | slot = path->slots[0]; |
| 3638 | |
| 3639 | old_size = btrfs_item_size_nr(leaf, slot); |
| 3640 | if (old_size == new_size) |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 3641 | return; |
Chris Mason | b18c668 | 2007-04-17 13:26:50 -0400 | [diff] [blame] | 3642 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3643 | nritems = btrfs_header_nritems(leaf); |
David Sterba | 8f881e8 | 2019-03-20 11:33:10 +0100 | [diff] [blame] | 3644 | data_end = leaf_data_end(leaf); |
Chris Mason | b18c668 | 2007-04-17 13:26:50 -0400 | [diff] [blame] | 3645 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3646 | old_data_start = btrfs_item_offset_nr(leaf, slot); |
Chris Mason | 179e29e | 2007-11-01 11:28:41 -0400 | [diff] [blame] | 3647 | |
Chris Mason | b18c668 | 2007-04-17 13:26:50 -0400 | [diff] [blame] | 3648 | size_diff = old_size - new_size; |
| 3649 | |
| 3650 | BUG_ON(slot < 0); |
| 3651 | BUG_ON(slot >= nritems); |
| 3652 | |
| 3653 | /* |
| 3654 | * item0..itemN ... dataN.offset..dataN.size .. data0.size |
| 3655 | */ |
| 3656 | /* first correct the data pointers */ |
David Sterba | c82f823 | 2019-08-09 17:48:21 +0200 | [diff] [blame] | 3657 | btrfs_init_map_token(&token, leaf); |
Chris Mason | b18c668 | 2007-04-17 13:26:50 -0400 | [diff] [blame] | 3658 | for (i = slot; i < nritems; i++) { |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3659 | u32 ioff; |
Ross Kirk | dd3cc16 | 2013-09-16 15:58:09 +0100 | [diff] [blame] | 3660 | item = btrfs_item_nr(i); |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 3661 | |
David Sterba | cc4c13d | 2020-04-29 02:15:56 +0200 | [diff] [blame] | 3662 | ioff = btrfs_token_item_offset(&token, item); |
| 3663 | btrfs_set_token_item_offset(&token, item, ioff + size_diff); |
Chris Mason | b18c668 | 2007-04-17 13:26:50 -0400 | [diff] [blame] | 3664 | } |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 3665 | |
Chris Mason | b18c668 | 2007-04-17 13:26:50 -0400 | [diff] [blame] | 3666 | /* shift the data */ |
Chris Mason | 179e29e | 2007-11-01 11:28:41 -0400 | [diff] [blame] | 3667 | if (from_end) { |
Nikolay Borisov | 3d9ec8c | 2017-05-29 09:43:43 +0300 | [diff] [blame] | 3668 | memmove_extent_buffer(leaf, BTRFS_LEAF_DATA_OFFSET + |
| 3669 | data_end + size_diff, BTRFS_LEAF_DATA_OFFSET + |
Chris Mason | 179e29e | 2007-11-01 11:28:41 -0400 | [diff] [blame] | 3670 | data_end, old_data_start + new_size - data_end); |
| 3671 | } else { |
| 3672 | struct btrfs_disk_key disk_key; |
| 3673 | u64 offset; |
| 3674 | |
| 3675 | btrfs_item_key(leaf, &disk_key, slot); |
| 3676 | |
| 3677 | if (btrfs_disk_key_type(&disk_key) == BTRFS_EXTENT_DATA_KEY) { |
| 3678 | unsigned long ptr; |
| 3679 | struct btrfs_file_extent_item *fi; |
| 3680 | |
| 3681 | fi = btrfs_item_ptr(leaf, slot, |
| 3682 | struct btrfs_file_extent_item); |
| 3683 | fi = (struct btrfs_file_extent_item *)( |
| 3684 | (unsigned long)fi - size_diff); |
| 3685 | |
| 3686 | if (btrfs_file_extent_type(leaf, fi) == |
| 3687 | BTRFS_FILE_EXTENT_INLINE) { |
| 3688 | ptr = btrfs_item_ptr_offset(leaf, slot); |
| 3689 | memmove_extent_buffer(leaf, ptr, |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 3690 | (unsigned long)fi, |
David Sterba | 7ec20af | 2014-07-24 17:34:58 +0200 | [diff] [blame] | 3691 | BTRFS_FILE_EXTENT_INLINE_DATA_START); |
Chris Mason | 179e29e | 2007-11-01 11:28:41 -0400 | [diff] [blame] | 3692 | } |
| 3693 | } |
| 3694 | |
Nikolay Borisov | 3d9ec8c | 2017-05-29 09:43:43 +0300 | [diff] [blame] | 3695 | memmove_extent_buffer(leaf, BTRFS_LEAF_DATA_OFFSET + |
| 3696 | data_end + size_diff, BTRFS_LEAF_DATA_OFFSET + |
Chris Mason | 179e29e | 2007-11-01 11:28:41 -0400 | [diff] [blame] | 3697 | data_end, old_data_start - data_end); |
| 3698 | |
| 3699 | offset = btrfs_disk_key_offset(&disk_key); |
| 3700 | btrfs_set_disk_key_offset(&disk_key, offset + size_diff); |
| 3701 | btrfs_set_item_key(leaf, &disk_key, slot); |
| 3702 | if (slot == 0) |
Nikolay Borisov | b167fa9 | 2018-06-20 15:48:47 +0300 | [diff] [blame] | 3703 | fixup_low_keys(path, &disk_key, 1); |
Chris Mason | 179e29e | 2007-11-01 11:28:41 -0400 | [diff] [blame] | 3704 | } |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3705 | |
Ross Kirk | dd3cc16 | 2013-09-16 15:58:09 +0100 | [diff] [blame] | 3706 | item = btrfs_item_nr(slot); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3707 | btrfs_set_item_size(leaf, item, new_size); |
| 3708 | btrfs_mark_buffer_dirty(leaf); |
Chris Mason | b18c668 | 2007-04-17 13:26:50 -0400 | [diff] [blame] | 3709 | |
David Sterba | e902baa | 2019-03-20 14:36:46 +0100 | [diff] [blame] | 3710 | if (btrfs_leaf_free_space(leaf) < 0) { |
David Sterba | a4f7875 | 2017-06-29 18:37:49 +0200 | [diff] [blame] | 3711 | btrfs_print_leaf(leaf); |
Chris Mason | b18c668 | 2007-04-17 13:26:50 -0400 | [diff] [blame] | 3712 | BUG(); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3713 | } |
Chris Mason | b18c668 | 2007-04-17 13:26:50 -0400 | [diff] [blame] | 3714 | } |
| 3715 | |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 3716 | /* |
Stefan Behrens | 8f69dbd | 2013-05-07 10:23:30 +0000 | [diff] [blame] | 3717 | * make the item pointed to by the path bigger, data_size is the added size. |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 3718 | */ |
David Sterba | c71dd88 | 2019-03-20 14:51:10 +0100 | [diff] [blame] | 3719 | void btrfs_extend_item(struct btrfs_path *path, u32 data_size) |
Chris Mason | 6567e83 | 2007-04-16 09:22:45 -0400 | [diff] [blame] | 3720 | { |
Chris Mason | 6567e83 | 2007-04-16 09:22:45 -0400 | [diff] [blame] | 3721 | int slot; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3722 | struct extent_buffer *leaf; |
| 3723 | struct btrfs_item *item; |
Chris Mason | 6567e83 | 2007-04-16 09:22:45 -0400 | [diff] [blame] | 3724 | u32 nritems; |
| 3725 | unsigned int data_end; |
| 3726 | unsigned int old_data; |
| 3727 | unsigned int old_size; |
| 3728 | int i; |
Chris Mason | cfed81a | 2012-03-03 07:40:03 -0500 | [diff] [blame] | 3729 | struct btrfs_map_token token; |
| 3730 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3731 | leaf = path->nodes[0]; |
Chris Mason | 6567e83 | 2007-04-16 09:22:45 -0400 | [diff] [blame] | 3732 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3733 | nritems = btrfs_header_nritems(leaf); |
David Sterba | 8f881e8 | 2019-03-20 11:33:10 +0100 | [diff] [blame] | 3734 | data_end = leaf_data_end(leaf); |
Chris Mason | 6567e83 | 2007-04-16 09:22:45 -0400 | [diff] [blame] | 3735 | |
David Sterba | e902baa | 2019-03-20 14:36:46 +0100 | [diff] [blame] | 3736 | if (btrfs_leaf_free_space(leaf) < data_size) { |
David Sterba | a4f7875 | 2017-06-29 18:37:49 +0200 | [diff] [blame] | 3737 | btrfs_print_leaf(leaf); |
Chris Mason | 6567e83 | 2007-04-16 09:22:45 -0400 | [diff] [blame] | 3738 | BUG(); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3739 | } |
Chris Mason | 6567e83 | 2007-04-16 09:22:45 -0400 | [diff] [blame] | 3740 | slot = path->slots[0]; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3741 | old_data = btrfs_item_end_nr(leaf, slot); |
Chris Mason | 6567e83 | 2007-04-16 09:22:45 -0400 | [diff] [blame] | 3742 | |
| 3743 | BUG_ON(slot < 0); |
Chris Mason | 3326d1b | 2007-10-15 16:18:25 -0400 | [diff] [blame] | 3744 | if (slot >= nritems) { |
David Sterba | a4f7875 | 2017-06-29 18:37:49 +0200 | [diff] [blame] | 3745 | btrfs_print_leaf(leaf); |
David Sterba | c71dd88 | 2019-03-20 14:51:10 +0100 | [diff] [blame] | 3746 | btrfs_crit(leaf->fs_info, "slot %d too large, nritems %d", |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3747 | slot, nritems); |
Arnd Bergmann | 290342f | 2019-03-25 14:02:25 +0100 | [diff] [blame] | 3748 | BUG(); |
Chris Mason | 3326d1b | 2007-10-15 16:18:25 -0400 | [diff] [blame] | 3749 | } |
Chris Mason | 6567e83 | 2007-04-16 09:22:45 -0400 | [diff] [blame] | 3750 | |
| 3751 | /* |
| 3752 | * item0..itemN ... dataN.offset..dataN.size .. data0.size |
| 3753 | */ |
| 3754 | /* first correct the data pointers */ |
David Sterba | c82f823 | 2019-08-09 17:48:21 +0200 | [diff] [blame] | 3755 | btrfs_init_map_token(&token, leaf); |
Chris Mason | 6567e83 | 2007-04-16 09:22:45 -0400 | [diff] [blame] | 3756 | for (i = slot; i < nritems; i++) { |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3757 | u32 ioff; |
Ross Kirk | dd3cc16 | 2013-09-16 15:58:09 +0100 | [diff] [blame] | 3758 | item = btrfs_item_nr(i); |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 3759 | |
David Sterba | cc4c13d | 2020-04-29 02:15:56 +0200 | [diff] [blame] | 3760 | ioff = btrfs_token_item_offset(&token, item); |
| 3761 | btrfs_set_token_item_offset(&token, item, ioff - data_size); |
Chris Mason | 6567e83 | 2007-04-16 09:22:45 -0400 | [diff] [blame] | 3762 | } |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3763 | |
Chris Mason | 6567e83 | 2007-04-16 09:22:45 -0400 | [diff] [blame] | 3764 | /* shift the data */ |
Nikolay Borisov | 3d9ec8c | 2017-05-29 09:43:43 +0300 | [diff] [blame] | 3765 | memmove_extent_buffer(leaf, BTRFS_LEAF_DATA_OFFSET + |
| 3766 | data_end - data_size, BTRFS_LEAF_DATA_OFFSET + |
Chris Mason | 6567e83 | 2007-04-16 09:22:45 -0400 | [diff] [blame] | 3767 | data_end, old_data - data_end); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3768 | |
Chris Mason | 6567e83 | 2007-04-16 09:22:45 -0400 | [diff] [blame] | 3769 | data_end = old_data; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3770 | old_size = btrfs_item_size_nr(leaf, slot); |
Ross Kirk | dd3cc16 | 2013-09-16 15:58:09 +0100 | [diff] [blame] | 3771 | item = btrfs_item_nr(slot); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3772 | btrfs_set_item_size(leaf, item, old_size + data_size); |
| 3773 | btrfs_mark_buffer_dirty(leaf); |
Chris Mason | 6567e83 | 2007-04-16 09:22:45 -0400 | [diff] [blame] | 3774 | |
David Sterba | e902baa | 2019-03-20 14:36:46 +0100 | [diff] [blame] | 3775 | if (btrfs_leaf_free_space(leaf) < 0) { |
David Sterba | a4f7875 | 2017-06-29 18:37:49 +0200 | [diff] [blame] | 3776 | btrfs_print_leaf(leaf); |
Chris Mason | 6567e83 | 2007-04-16 09:22:45 -0400 | [diff] [blame] | 3777 | BUG(); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3778 | } |
Chris Mason | 6567e83 | 2007-04-16 09:22:45 -0400 | [diff] [blame] | 3779 | } |
| 3780 | |
Nikolay Borisov | da9ffb2 | 2020-09-01 17:40:00 +0300 | [diff] [blame] | 3781 | /** |
| 3782 | * setup_items_for_insert - Helper called before inserting one or more items |
| 3783 | * to a leaf. Main purpose is to save stack depth by doing the bulk of the work |
| 3784 | * in a function that doesn't call btrfs_search_slot |
| 3785 | * |
| 3786 | * @root: root we are inserting items to |
| 3787 | * @path: points to the leaf/slot where we are going to insert new items |
Filipe Manana | b7ef5f3 | 2021-09-24 12:28:13 +0100 | [diff] [blame^] | 3788 | * @batch: information about the batch of items to insert |
Chris Mason | 74123bd | 2007-02-02 11:05:29 -0500 | [diff] [blame] | 3789 | */ |
Tsutomu Itoh | afe5fea | 2013-04-16 05:18:22 +0000 | [diff] [blame] | 3790 | void setup_items_for_insert(struct btrfs_root *root, struct btrfs_path *path, |
Filipe Manana | b7ef5f3 | 2021-09-24 12:28:13 +0100 | [diff] [blame^] | 3791 | const struct btrfs_item_batch *batch) |
Chris Mason | be0e5c0 | 2007-01-26 15:51:26 -0500 | [diff] [blame] | 3792 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3793 | struct btrfs_fs_info *fs_info = root->fs_info; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3794 | struct btrfs_item *item; |
Chris Mason | 9c58309 | 2008-01-29 15:15:18 -0500 | [diff] [blame] | 3795 | int i; |
Chris Mason | 7518a23 | 2007-03-12 12:01:18 -0400 | [diff] [blame] | 3796 | u32 nritems; |
Chris Mason | be0e5c0 | 2007-01-26 15:51:26 -0500 | [diff] [blame] | 3797 | unsigned int data_end; |
Chris Mason | e2fa722 | 2007-03-12 16:22:34 -0400 | [diff] [blame] | 3798 | struct btrfs_disk_key disk_key; |
Chris Mason | 44871b1 | 2009-03-13 10:04:31 -0400 | [diff] [blame] | 3799 | struct extent_buffer *leaf; |
| 3800 | int slot; |
Chris Mason | cfed81a | 2012-03-03 07:40:03 -0500 | [diff] [blame] | 3801 | struct btrfs_map_token token; |
Nikolay Borisov | fc0d82e | 2020-09-01 17:39:59 +0300 | [diff] [blame] | 3802 | u32 total_size; |
Nikolay Borisov | fc0d82e | 2020-09-01 17:39:59 +0300 | [diff] [blame] | 3803 | |
Filipe Manana | b7ef5f3 | 2021-09-24 12:28:13 +0100 | [diff] [blame^] | 3804 | /* |
| 3805 | * Before anything else, update keys in the parent and other ancestors |
| 3806 | * if needed, then release the write locks on them, so that other tasks |
| 3807 | * can use them while we modify the leaf. |
| 3808 | */ |
Filipe Manana | 24cdc84 | 2014-07-28 19:34:35 +0100 | [diff] [blame] | 3809 | if (path->slots[0] == 0) { |
Filipe Manana | b7ef5f3 | 2021-09-24 12:28:13 +0100 | [diff] [blame^] | 3810 | btrfs_cpu_key_to_disk(&disk_key, &batch->keys[0]); |
Nikolay Borisov | b167fa9 | 2018-06-20 15:48:47 +0300 | [diff] [blame] | 3811 | fixup_low_keys(path, &disk_key, 1); |
Filipe Manana | 24cdc84 | 2014-07-28 19:34:35 +0100 | [diff] [blame] | 3812 | } |
| 3813 | btrfs_unlock_up_safe(path, 1); |
| 3814 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3815 | leaf = path->nodes[0]; |
Chris Mason | 44871b1 | 2009-03-13 10:04:31 -0400 | [diff] [blame] | 3816 | slot = path->slots[0]; |
Chris Mason | 74123bd | 2007-02-02 11:05:29 -0500 | [diff] [blame] | 3817 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3818 | nritems = btrfs_header_nritems(leaf); |
David Sterba | 8f881e8 | 2019-03-20 11:33:10 +0100 | [diff] [blame] | 3819 | data_end = leaf_data_end(leaf); |
Filipe Manana | b7ef5f3 | 2021-09-24 12:28:13 +0100 | [diff] [blame^] | 3820 | total_size = batch->total_data_size + (batch->nr * sizeof(struct btrfs_item)); |
Chris Mason | eb60cea | 2007-02-02 09:18:22 -0500 | [diff] [blame] | 3821 | |
David Sterba | e902baa | 2019-03-20 14:36:46 +0100 | [diff] [blame] | 3822 | if (btrfs_leaf_free_space(leaf) < total_size) { |
David Sterba | a4f7875 | 2017-06-29 18:37:49 +0200 | [diff] [blame] | 3823 | btrfs_print_leaf(leaf); |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 3824 | btrfs_crit(fs_info, "not enough freespace need %u have %d", |
David Sterba | e902baa | 2019-03-20 14:36:46 +0100 | [diff] [blame] | 3825 | total_size, btrfs_leaf_free_space(leaf)); |
Chris Mason | be0e5c0 | 2007-01-26 15:51:26 -0500 | [diff] [blame] | 3826 | BUG(); |
Chris Mason | d4dbff9 | 2007-04-04 14:08:15 -0400 | [diff] [blame] | 3827 | } |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3828 | |
David Sterba | c82f823 | 2019-08-09 17:48:21 +0200 | [diff] [blame] | 3829 | btrfs_init_map_token(&token, leaf); |
Chris Mason | be0e5c0 | 2007-01-26 15:51:26 -0500 | [diff] [blame] | 3830 | if (slot != nritems) { |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3831 | unsigned int old_data = btrfs_item_end_nr(leaf, slot); |
Chris Mason | be0e5c0 | 2007-01-26 15:51:26 -0500 | [diff] [blame] | 3832 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3833 | if (old_data < data_end) { |
David Sterba | a4f7875 | 2017-06-29 18:37:49 +0200 | [diff] [blame] | 3834 | btrfs_print_leaf(leaf); |
Nikolay Borisov | 7269ddd | 2020-09-01 17:40:01 +0300 | [diff] [blame] | 3835 | btrfs_crit(fs_info, |
| 3836 | "item at slot %d with data offset %u beyond data end of leaf %u", |
Jeff Mahoney | 5d163e0 | 2016-09-20 10:05:00 -0400 | [diff] [blame] | 3837 | slot, old_data, data_end); |
Arnd Bergmann | 290342f | 2019-03-25 14:02:25 +0100 | [diff] [blame] | 3838 | BUG(); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3839 | } |
Chris Mason | be0e5c0 | 2007-01-26 15:51:26 -0500 | [diff] [blame] | 3840 | /* |
| 3841 | * item0..itemN ... dataN.offset..dataN.size .. data0.size |
| 3842 | */ |
| 3843 | /* first correct the data pointers */ |
Chris Mason | 0783fcf | 2007-03-12 20:12:07 -0400 | [diff] [blame] | 3844 | for (i = slot; i < nritems; i++) { |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3845 | u32 ioff; |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 3846 | |
Jeff Mahoney | 62e8557 | 2016-09-20 10:05:01 -0400 | [diff] [blame] | 3847 | item = btrfs_item_nr(i); |
David Sterba | cc4c13d | 2020-04-29 02:15:56 +0200 | [diff] [blame] | 3848 | ioff = btrfs_token_item_offset(&token, item); |
| 3849 | btrfs_set_token_item_offset(&token, item, |
Filipe Manana | b7ef5f3 | 2021-09-24 12:28:13 +0100 | [diff] [blame^] | 3850 | ioff - batch->total_data_size); |
Chris Mason | 0783fcf | 2007-03-12 20:12:07 -0400 | [diff] [blame] | 3851 | } |
Chris Mason | be0e5c0 | 2007-01-26 15:51:26 -0500 | [diff] [blame] | 3852 | /* shift the items */ |
Filipe Manana | b7ef5f3 | 2021-09-24 12:28:13 +0100 | [diff] [blame^] | 3853 | memmove_extent_buffer(leaf, btrfs_item_nr_offset(slot + batch->nr), |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3854 | btrfs_item_nr_offset(slot), |
Chris Mason | d602557 | 2007-03-30 14:27:56 -0400 | [diff] [blame] | 3855 | (nritems - slot) * sizeof(struct btrfs_item)); |
Chris Mason | be0e5c0 | 2007-01-26 15:51:26 -0500 | [diff] [blame] | 3856 | |
| 3857 | /* shift the data */ |
Nikolay Borisov | 3d9ec8c | 2017-05-29 09:43:43 +0300 | [diff] [blame] | 3858 | memmove_extent_buffer(leaf, BTRFS_LEAF_DATA_OFFSET + |
Filipe Manana | b7ef5f3 | 2021-09-24 12:28:13 +0100 | [diff] [blame^] | 3859 | data_end - batch->total_data_size, |
| 3860 | BTRFS_LEAF_DATA_OFFSET + data_end, |
| 3861 | old_data - data_end); |
Chris Mason | be0e5c0 | 2007-01-26 15:51:26 -0500 | [diff] [blame] | 3862 | data_end = old_data; |
| 3863 | } |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3864 | |
Chris Mason | 62e2749 | 2007-03-15 12:56:47 -0400 | [diff] [blame] | 3865 | /* setup the item for the new data */ |
Filipe Manana | b7ef5f3 | 2021-09-24 12:28:13 +0100 | [diff] [blame^] | 3866 | for (i = 0; i < batch->nr; i++) { |
| 3867 | btrfs_cpu_key_to_disk(&disk_key, &batch->keys[i]); |
Chris Mason | 9c58309 | 2008-01-29 15:15:18 -0500 | [diff] [blame] | 3868 | btrfs_set_item_key(leaf, &disk_key, slot + i); |
Ross Kirk | dd3cc16 | 2013-09-16 15:58:09 +0100 | [diff] [blame] | 3869 | item = btrfs_item_nr(slot + i); |
Filipe Manana | b7ef5f3 | 2021-09-24 12:28:13 +0100 | [diff] [blame^] | 3870 | data_end -= batch->data_sizes[i]; |
Nikolay Borisov | fc0716c | 2020-09-01 17:39:57 +0300 | [diff] [blame] | 3871 | btrfs_set_token_item_offset(&token, item, data_end); |
Filipe Manana | b7ef5f3 | 2021-09-24 12:28:13 +0100 | [diff] [blame^] | 3872 | btrfs_set_token_item_size(&token, item, batch->data_sizes[i]); |
Chris Mason | 9c58309 | 2008-01-29 15:15:18 -0500 | [diff] [blame] | 3873 | } |
Chris Mason | 44871b1 | 2009-03-13 10:04:31 -0400 | [diff] [blame] | 3874 | |
Filipe Manana | b7ef5f3 | 2021-09-24 12:28:13 +0100 | [diff] [blame^] | 3875 | btrfs_set_header_nritems(leaf, nritems + batch->nr); |
Chris Mason | b947343 | 2009-03-13 11:00:37 -0400 | [diff] [blame] | 3876 | btrfs_mark_buffer_dirty(leaf); |
Chris Mason | aa5d6be | 2007-02-28 16:35:06 -0500 | [diff] [blame] | 3877 | |
David Sterba | e902baa | 2019-03-20 14:36:46 +0100 | [diff] [blame] | 3878 | if (btrfs_leaf_free_space(leaf) < 0) { |
David Sterba | a4f7875 | 2017-06-29 18:37:49 +0200 | [diff] [blame] | 3879 | btrfs_print_leaf(leaf); |
Chris Mason | be0e5c0 | 2007-01-26 15:51:26 -0500 | [diff] [blame] | 3880 | BUG(); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3881 | } |
Chris Mason | 44871b1 | 2009-03-13 10:04:31 -0400 | [diff] [blame] | 3882 | } |
| 3883 | |
| 3884 | /* |
| 3885 | * Given a key and some data, insert items into the tree. |
| 3886 | * This does all the path init required, making room in the tree if needed. |
| 3887 | */ |
| 3888 | int btrfs_insert_empty_items(struct btrfs_trans_handle *trans, |
| 3889 | struct btrfs_root *root, |
| 3890 | struct btrfs_path *path, |
Filipe Manana | b7ef5f3 | 2021-09-24 12:28:13 +0100 | [diff] [blame^] | 3891 | const struct btrfs_item_batch *batch) |
Chris Mason | 44871b1 | 2009-03-13 10:04:31 -0400 | [diff] [blame] | 3892 | { |
Chris Mason | 44871b1 | 2009-03-13 10:04:31 -0400 | [diff] [blame] | 3893 | int ret = 0; |
| 3894 | int slot; |
Filipe Manana | b7ef5f3 | 2021-09-24 12:28:13 +0100 | [diff] [blame^] | 3895 | u32 total_size; |
Chris Mason | 44871b1 | 2009-03-13 10:04:31 -0400 | [diff] [blame] | 3896 | |
Filipe Manana | b7ef5f3 | 2021-09-24 12:28:13 +0100 | [diff] [blame^] | 3897 | total_size = batch->total_data_size + (batch->nr * sizeof(struct btrfs_item)); |
| 3898 | ret = btrfs_search_slot(trans, root, &batch->keys[0], path, total_size, 1); |
Chris Mason | 44871b1 | 2009-03-13 10:04:31 -0400 | [diff] [blame] | 3899 | if (ret == 0) |
| 3900 | return -EEXIST; |
| 3901 | if (ret < 0) |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 3902 | return ret; |
Chris Mason | 44871b1 | 2009-03-13 10:04:31 -0400 | [diff] [blame] | 3903 | |
Chris Mason | 44871b1 | 2009-03-13 10:04:31 -0400 | [diff] [blame] | 3904 | slot = path->slots[0]; |
| 3905 | BUG_ON(slot < 0); |
| 3906 | |
Filipe Manana | b7ef5f3 | 2021-09-24 12:28:13 +0100 | [diff] [blame^] | 3907 | setup_items_for_insert(root, path, batch); |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 3908 | return 0; |
Chris Mason | 62e2749 | 2007-03-15 12:56:47 -0400 | [diff] [blame] | 3909 | } |
| 3910 | |
| 3911 | /* |
| 3912 | * Given a key and some data, insert an item into the tree. |
| 3913 | * This does all the path init required, making room in the tree if needed. |
| 3914 | */ |
Omar Sandoval | 310712b | 2017-01-17 23:24:37 -0800 | [diff] [blame] | 3915 | int btrfs_insert_item(struct btrfs_trans_handle *trans, struct btrfs_root *root, |
| 3916 | const struct btrfs_key *cpu_key, void *data, |
| 3917 | u32 data_size) |
Chris Mason | 62e2749 | 2007-03-15 12:56:47 -0400 | [diff] [blame] | 3918 | { |
| 3919 | int ret = 0; |
Chris Mason | 2c90e5d | 2007-04-02 10:50:19 -0400 | [diff] [blame] | 3920 | struct btrfs_path *path; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3921 | struct extent_buffer *leaf; |
| 3922 | unsigned long ptr; |
Chris Mason | 62e2749 | 2007-03-15 12:56:47 -0400 | [diff] [blame] | 3923 | |
Chris Mason | 2c90e5d | 2007-04-02 10:50:19 -0400 | [diff] [blame] | 3924 | path = btrfs_alloc_path(); |
Tsutomu Itoh | db5b493 | 2011-03-23 08:14:16 +0000 | [diff] [blame] | 3925 | if (!path) |
| 3926 | return -ENOMEM; |
Chris Mason | 2c90e5d | 2007-04-02 10:50:19 -0400 | [diff] [blame] | 3927 | ret = btrfs_insert_empty_item(trans, root, path, cpu_key, data_size); |
Chris Mason | 62e2749 | 2007-03-15 12:56:47 -0400 | [diff] [blame] | 3928 | if (!ret) { |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3929 | leaf = path->nodes[0]; |
| 3930 | ptr = btrfs_item_ptr_offset(leaf, path->slots[0]); |
| 3931 | write_extent_buffer(leaf, data, ptr, data_size); |
| 3932 | btrfs_mark_buffer_dirty(leaf); |
Chris Mason | 62e2749 | 2007-03-15 12:56:47 -0400 | [diff] [blame] | 3933 | } |
Chris Mason | 2c90e5d | 2007-04-02 10:50:19 -0400 | [diff] [blame] | 3934 | btrfs_free_path(path); |
Chris Mason | aa5d6be | 2007-02-28 16:35:06 -0500 | [diff] [blame] | 3935 | return ret; |
Chris Mason | be0e5c0 | 2007-01-26 15:51:26 -0500 | [diff] [blame] | 3936 | } |
| 3937 | |
Chris Mason | 74123bd | 2007-02-02 11:05:29 -0500 | [diff] [blame] | 3938 | /* |
Chris Mason | 5de08d7 | 2007-02-24 06:24:44 -0500 | [diff] [blame] | 3939 | * delete the pointer from a given node. |
Chris Mason | 74123bd | 2007-02-02 11:05:29 -0500 | [diff] [blame] | 3940 | * |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 3941 | * the tree should have been previously balanced so the deletion does not |
| 3942 | * empty a node. |
Chris Mason | 74123bd | 2007-02-02 11:05:29 -0500 | [diff] [blame] | 3943 | */ |
Tsutomu Itoh | afe5fea | 2013-04-16 05:18:22 +0000 | [diff] [blame] | 3944 | static void del_ptr(struct btrfs_root *root, struct btrfs_path *path, |
| 3945 | int level, int slot) |
Chris Mason | be0e5c0 | 2007-01-26 15:51:26 -0500 | [diff] [blame] | 3946 | { |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3947 | struct extent_buffer *parent = path->nodes[level]; |
Chris Mason | 7518a23 | 2007-03-12 12:01:18 -0400 | [diff] [blame] | 3948 | u32 nritems; |
Jan Schmidt | f3ea38d | 2012-05-26 11:45:21 +0200 | [diff] [blame] | 3949 | int ret; |
Chris Mason | be0e5c0 | 2007-01-26 15:51:26 -0500 | [diff] [blame] | 3950 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3951 | nritems = btrfs_header_nritems(parent); |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 3952 | if (slot != nritems - 1) { |
David Sterba | bf1d342 | 2018-03-05 15:47:39 +0100 | [diff] [blame] | 3953 | if (level) { |
Filipe Manana | f3a84cc | 2021-03-11 14:31:07 +0000 | [diff] [blame] | 3954 | ret = btrfs_tree_mod_log_insert_move(parent, slot, |
| 3955 | slot + 1, nritems - slot - 1); |
David Sterba | bf1d342 | 2018-03-05 15:47:39 +0100 | [diff] [blame] | 3956 | BUG_ON(ret < 0); |
| 3957 | } |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3958 | memmove_extent_buffer(parent, |
| 3959 | btrfs_node_key_ptr_offset(slot), |
| 3960 | btrfs_node_key_ptr_offset(slot + 1), |
Chris Mason | d602557 | 2007-03-30 14:27:56 -0400 | [diff] [blame] | 3961 | sizeof(struct btrfs_key_ptr) * |
| 3962 | (nritems - slot - 1)); |
Chris Mason | 57ba86c | 2012-12-18 19:35:32 -0500 | [diff] [blame] | 3963 | } else if (level) { |
Filipe Manana | f3a84cc | 2021-03-11 14:31:07 +0000 | [diff] [blame] | 3964 | ret = btrfs_tree_mod_log_insert_key(parent, slot, |
| 3965 | BTRFS_MOD_LOG_KEY_REMOVE, GFP_NOFS); |
Chris Mason | 57ba86c | 2012-12-18 19:35:32 -0500 | [diff] [blame] | 3966 | BUG_ON(ret < 0); |
Chris Mason | bb80395 | 2007-03-01 12:04:21 -0500 | [diff] [blame] | 3967 | } |
Jan Schmidt | f3ea38d | 2012-05-26 11:45:21 +0200 | [diff] [blame] | 3968 | |
Chris Mason | 7518a23 | 2007-03-12 12:01:18 -0400 | [diff] [blame] | 3969 | nritems--; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3970 | btrfs_set_header_nritems(parent, nritems); |
Chris Mason | 7518a23 | 2007-03-12 12:01:18 -0400 | [diff] [blame] | 3971 | if (nritems == 0 && parent == root->node) { |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3972 | BUG_ON(btrfs_header_level(root->node) != 1); |
Chris Mason | bb80395 | 2007-03-01 12:04:21 -0500 | [diff] [blame] | 3973 | /* just turn the root into a leaf and break */ |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3974 | btrfs_set_header_level(root->node, 0); |
Chris Mason | bb80395 | 2007-03-01 12:04:21 -0500 | [diff] [blame] | 3975 | } else if (slot == 0) { |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 3976 | struct btrfs_disk_key disk_key; |
| 3977 | |
| 3978 | btrfs_node_key(parent, &disk_key, 0); |
Nikolay Borisov | b167fa9 | 2018-06-20 15:48:47 +0300 | [diff] [blame] | 3979 | fixup_low_keys(path, &disk_key, level + 1); |
Chris Mason | be0e5c0 | 2007-01-26 15:51:26 -0500 | [diff] [blame] | 3980 | } |
Chris Mason | d602557 | 2007-03-30 14:27:56 -0400 | [diff] [blame] | 3981 | btrfs_mark_buffer_dirty(parent); |
Chris Mason | be0e5c0 | 2007-01-26 15:51:26 -0500 | [diff] [blame] | 3982 | } |
| 3983 | |
Chris Mason | 74123bd | 2007-02-02 11:05:29 -0500 | [diff] [blame] | 3984 | /* |
Chris Mason | 323ac95 | 2008-10-01 19:05:46 -0400 | [diff] [blame] | 3985 | * a helper function to delete the leaf pointed to by path->slots[1] and |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3986 | * path->nodes[1]. |
Chris Mason | 323ac95 | 2008-10-01 19:05:46 -0400 | [diff] [blame] | 3987 | * |
| 3988 | * This deletes the pointer in path->nodes[1] and frees the leaf |
| 3989 | * block extent. zero is returned if it all worked out, < 0 otherwise. |
| 3990 | * |
| 3991 | * The path must have already been setup for deleting the leaf, including |
| 3992 | * all the proper balancing. path->nodes[1] must be locked. |
| 3993 | */ |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 3994 | static noinline void btrfs_del_leaf(struct btrfs_trans_handle *trans, |
| 3995 | struct btrfs_root *root, |
| 3996 | struct btrfs_path *path, |
| 3997 | struct extent_buffer *leaf) |
Chris Mason | 323ac95 | 2008-10-01 19:05:46 -0400 | [diff] [blame] | 3998 | { |
Yan Zheng | 5d4f98a | 2009-06-10 10:45:14 -0400 | [diff] [blame] | 3999 | WARN_ON(btrfs_header_generation(leaf) != trans->transid); |
Tsutomu Itoh | afe5fea | 2013-04-16 05:18:22 +0000 | [diff] [blame] | 4000 | del_ptr(root, path, 1, path->slots[1]); |
Chris Mason | 323ac95 | 2008-10-01 19:05:46 -0400 | [diff] [blame] | 4001 | |
Chris Mason | 4d081c4 | 2009-02-04 09:31:28 -0500 | [diff] [blame] | 4002 | /* |
| 4003 | * btrfs_free_extent is expensive, we want to make sure we |
| 4004 | * aren't holding any locks when we call it |
| 4005 | */ |
| 4006 | btrfs_unlock_up_safe(path, 0); |
| 4007 | |
Yan, Zheng | f0486c6 | 2010-05-16 10:46:25 -0400 | [diff] [blame] | 4008 | root_sub_used(root, leaf->len); |
| 4009 | |
David Sterba | 67439da | 2019-10-08 13:28:47 +0200 | [diff] [blame] | 4010 | atomic_inc(&leaf->refs); |
Jan Schmidt | 5581a51 | 2012-05-16 17:04:52 +0200 | [diff] [blame] | 4011 | btrfs_free_tree_block(trans, root, leaf, 0, 1); |
Josef Bacik | 3083ee2 | 2012-03-09 16:01:49 -0500 | [diff] [blame] | 4012 | free_extent_buffer_stale(leaf); |
Chris Mason | 323ac95 | 2008-10-01 19:05:46 -0400 | [diff] [blame] | 4013 | } |
| 4014 | /* |
Chris Mason | 74123bd | 2007-02-02 11:05:29 -0500 | [diff] [blame] | 4015 | * delete the item at the leaf level in path. If that empties |
| 4016 | * the leaf, remove it from the tree |
| 4017 | */ |
Chris Mason | 85e21ba | 2008-01-29 15:11:36 -0500 | [diff] [blame] | 4018 | int btrfs_del_items(struct btrfs_trans_handle *trans, struct btrfs_root *root, |
| 4019 | struct btrfs_path *path, int slot, int nr) |
Chris Mason | be0e5c0 | 2007-01-26 15:51:26 -0500 | [diff] [blame] | 4020 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4021 | struct btrfs_fs_info *fs_info = root->fs_info; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4022 | struct extent_buffer *leaf; |
| 4023 | struct btrfs_item *item; |
Alexandru Moise | ce0eac2 | 2015-08-23 16:01:42 +0000 | [diff] [blame] | 4024 | u32 last_off; |
| 4025 | u32 dsize = 0; |
Chris Mason | aa5d6be | 2007-02-28 16:35:06 -0500 | [diff] [blame] | 4026 | int ret = 0; |
| 4027 | int wret; |
Chris Mason | 85e21ba | 2008-01-29 15:11:36 -0500 | [diff] [blame] | 4028 | int i; |
Chris Mason | 7518a23 | 2007-03-12 12:01:18 -0400 | [diff] [blame] | 4029 | u32 nritems; |
Chris Mason | be0e5c0 | 2007-01-26 15:51:26 -0500 | [diff] [blame] | 4030 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4031 | leaf = path->nodes[0]; |
Chris Mason | 85e21ba | 2008-01-29 15:11:36 -0500 | [diff] [blame] | 4032 | last_off = btrfs_item_offset_nr(leaf, slot + nr - 1); |
| 4033 | |
| 4034 | for (i = 0; i < nr; i++) |
| 4035 | dsize += btrfs_item_size_nr(leaf, slot + i); |
| 4036 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4037 | nritems = btrfs_header_nritems(leaf); |
Chris Mason | be0e5c0 | 2007-01-26 15:51:26 -0500 | [diff] [blame] | 4038 | |
Chris Mason | 85e21ba | 2008-01-29 15:11:36 -0500 | [diff] [blame] | 4039 | if (slot + nr != nritems) { |
David Sterba | 8f881e8 | 2019-03-20 11:33:10 +0100 | [diff] [blame] | 4040 | int data_end = leaf_data_end(leaf); |
David Sterba | c82f823 | 2019-08-09 17:48:21 +0200 | [diff] [blame] | 4041 | struct btrfs_map_token token; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4042 | |
Nikolay Borisov | 3d9ec8c | 2017-05-29 09:43:43 +0300 | [diff] [blame] | 4043 | memmove_extent_buffer(leaf, BTRFS_LEAF_DATA_OFFSET + |
Chris Mason | d602557 | 2007-03-30 14:27:56 -0400 | [diff] [blame] | 4044 | data_end + dsize, |
Nikolay Borisov | 3d9ec8c | 2017-05-29 09:43:43 +0300 | [diff] [blame] | 4045 | BTRFS_LEAF_DATA_OFFSET + data_end, |
Chris Mason | 85e21ba | 2008-01-29 15:11:36 -0500 | [diff] [blame] | 4046 | last_off - data_end); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4047 | |
David Sterba | c82f823 | 2019-08-09 17:48:21 +0200 | [diff] [blame] | 4048 | btrfs_init_map_token(&token, leaf); |
Chris Mason | 85e21ba | 2008-01-29 15:11:36 -0500 | [diff] [blame] | 4049 | for (i = slot + nr; i < nritems; i++) { |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4050 | u32 ioff; |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 4051 | |
Ross Kirk | dd3cc16 | 2013-09-16 15:58:09 +0100 | [diff] [blame] | 4052 | item = btrfs_item_nr(i); |
David Sterba | cc4c13d | 2020-04-29 02:15:56 +0200 | [diff] [blame] | 4053 | ioff = btrfs_token_item_offset(&token, item); |
| 4054 | btrfs_set_token_item_offset(&token, item, ioff + dsize); |
Chris Mason | 0783fcf | 2007-03-12 20:12:07 -0400 | [diff] [blame] | 4055 | } |
Chris Mason | db94535 | 2007-10-15 16:15:53 -0400 | [diff] [blame] | 4056 | |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4057 | memmove_extent_buffer(leaf, btrfs_item_nr_offset(slot), |
Chris Mason | 85e21ba | 2008-01-29 15:11:36 -0500 | [diff] [blame] | 4058 | btrfs_item_nr_offset(slot + nr), |
Chris Mason | d602557 | 2007-03-30 14:27:56 -0400 | [diff] [blame] | 4059 | sizeof(struct btrfs_item) * |
Chris Mason | 85e21ba | 2008-01-29 15:11:36 -0500 | [diff] [blame] | 4060 | (nritems - slot - nr)); |
Chris Mason | be0e5c0 | 2007-01-26 15:51:26 -0500 | [diff] [blame] | 4061 | } |
Chris Mason | 85e21ba | 2008-01-29 15:11:36 -0500 | [diff] [blame] | 4062 | btrfs_set_header_nritems(leaf, nritems - nr); |
| 4063 | nritems -= nr; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4064 | |
Chris Mason | 74123bd | 2007-02-02 11:05:29 -0500 | [diff] [blame] | 4065 | /* delete the leaf if we've emptied it */ |
Chris Mason | 7518a23 | 2007-03-12 12:01:18 -0400 | [diff] [blame] | 4066 | if (nritems == 0) { |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4067 | if (leaf == root->node) { |
| 4068 | btrfs_set_header_level(leaf, 0); |
Chris Mason | 9a8dd15 | 2007-02-23 08:38:36 -0500 | [diff] [blame] | 4069 | } else { |
David Sterba | 6a884d7d | 2019-03-20 14:30:02 +0100 | [diff] [blame] | 4070 | btrfs_clean_tree_block(leaf); |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 4071 | btrfs_del_leaf(trans, root, path, leaf); |
Chris Mason | 9a8dd15 | 2007-02-23 08:38:36 -0500 | [diff] [blame] | 4072 | } |
Chris Mason | be0e5c0 | 2007-01-26 15:51:26 -0500 | [diff] [blame] | 4073 | } else { |
Chris Mason | 7518a23 | 2007-03-12 12:01:18 -0400 | [diff] [blame] | 4074 | int used = leaf_space_used(leaf, 0, nritems); |
Chris Mason | aa5d6be | 2007-02-28 16:35:06 -0500 | [diff] [blame] | 4075 | if (slot == 0) { |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4076 | struct btrfs_disk_key disk_key; |
| 4077 | |
| 4078 | btrfs_item_key(leaf, &disk_key, 0); |
Nikolay Borisov | b167fa9 | 2018-06-20 15:48:47 +0300 | [diff] [blame] | 4079 | fixup_low_keys(path, &disk_key, 1); |
Chris Mason | aa5d6be | 2007-02-28 16:35:06 -0500 | [diff] [blame] | 4080 | } |
Chris Mason | aa5d6be | 2007-02-28 16:35:06 -0500 | [diff] [blame] | 4081 | |
Chris Mason | 74123bd | 2007-02-02 11:05:29 -0500 | [diff] [blame] | 4082 | /* delete the leaf if it is mostly empty */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 4083 | if (used < BTRFS_LEAF_DATA_SIZE(fs_info) / 3) { |
Chris Mason | be0e5c0 | 2007-01-26 15:51:26 -0500 | [diff] [blame] | 4084 | /* push_leaf_left fixes the path. |
| 4085 | * make sure the path still points to our leaf |
| 4086 | * for possible call to del_ptr below |
| 4087 | */ |
Chris Mason | 4920c9a | 2007-01-26 16:38:42 -0500 | [diff] [blame] | 4088 | slot = path->slots[1]; |
David Sterba | 67439da | 2019-10-08 13:28:47 +0200 | [diff] [blame] | 4089 | atomic_inc(&leaf->refs); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4090 | |
Chris Mason | 99d8f83 | 2010-07-07 10:51:48 -0400 | [diff] [blame] | 4091 | wret = push_leaf_left(trans, root, path, 1, 1, |
| 4092 | 1, (u32)-1); |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 4093 | if (wret < 0 && wret != -ENOSPC) |
Chris Mason | aa5d6be | 2007-02-28 16:35:06 -0500 | [diff] [blame] | 4094 | ret = wret; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4095 | |
| 4096 | if (path->nodes[0] == leaf && |
| 4097 | btrfs_header_nritems(leaf)) { |
Chris Mason | 99d8f83 | 2010-07-07 10:51:48 -0400 | [diff] [blame] | 4098 | wret = push_leaf_right(trans, root, path, 1, |
| 4099 | 1, 1, 0); |
Chris Mason | 54aa1f4 | 2007-06-22 14:16:25 -0400 | [diff] [blame] | 4100 | if (wret < 0 && wret != -ENOSPC) |
Chris Mason | aa5d6be | 2007-02-28 16:35:06 -0500 | [diff] [blame] | 4101 | ret = wret; |
| 4102 | } |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4103 | |
| 4104 | if (btrfs_header_nritems(leaf) == 0) { |
Chris Mason | 323ac95 | 2008-10-01 19:05:46 -0400 | [diff] [blame] | 4105 | path->slots[1] = slot; |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 4106 | btrfs_del_leaf(trans, root, path, leaf); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4107 | free_extent_buffer(leaf); |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 4108 | ret = 0; |
Chris Mason | 5de08d7 | 2007-02-24 06:24:44 -0500 | [diff] [blame] | 4109 | } else { |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 4110 | /* if we're still in the path, make sure |
| 4111 | * we're dirty. Otherwise, one of the |
| 4112 | * push_leaf functions must have already |
| 4113 | * dirtied this buffer |
| 4114 | */ |
| 4115 | if (path->nodes[0] == leaf) |
| 4116 | btrfs_mark_buffer_dirty(leaf); |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4117 | free_extent_buffer(leaf); |
Chris Mason | be0e5c0 | 2007-01-26 15:51:26 -0500 | [diff] [blame] | 4118 | } |
Chris Mason | d571976 | 2007-03-23 10:01:08 -0400 | [diff] [blame] | 4119 | } else { |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4120 | btrfs_mark_buffer_dirty(leaf); |
Chris Mason | be0e5c0 | 2007-01-26 15:51:26 -0500 | [diff] [blame] | 4121 | } |
| 4122 | } |
Chris Mason | aa5d6be | 2007-02-28 16:35:06 -0500 | [diff] [blame] | 4123 | return ret; |
Chris Mason | be0e5c0 | 2007-01-26 15:51:26 -0500 | [diff] [blame] | 4124 | } |
| 4125 | |
Chris Mason | 97571fd | 2007-02-24 13:39:08 -0500 | [diff] [blame] | 4126 | /* |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 4127 | * search the tree again to find a leaf with lesser keys |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 4128 | * returns 0 if it found something or 1 if there are no lesser leaves. |
| 4129 | * returns < 0 on io errors. |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 4130 | * |
| 4131 | * This may release the path, and so you may lose any locks held at the |
| 4132 | * time you call it. |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 4133 | */ |
Josef Bacik | 16e7549 | 2013-10-22 12:18:51 -0400 | [diff] [blame] | 4134 | int btrfs_prev_leaf(struct btrfs_root *root, struct btrfs_path *path) |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 4135 | { |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 4136 | struct btrfs_key key; |
| 4137 | struct btrfs_disk_key found_key; |
| 4138 | int ret; |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 4139 | |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 4140 | btrfs_item_key_to_cpu(path->nodes[0], &key, 0); |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 4141 | |
Filipe David Borba Manana | e8b0d724 | 2013-10-15 00:12:27 +0100 | [diff] [blame] | 4142 | if (key.offset > 0) { |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 4143 | key.offset--; |
Filipe David Borba Manana | e8b0d724 | 2013-10-15 00:12:27 +0100 | [diff] [blame] | 4144 | } else if (key.type > 0) { |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 4145 | key.type--; |
Filipe David Borba Manana | e8b0d724 | 2013-10-15 00:12:27 +0100 | [diff] [blame] | 4146 | key.offset = (u64)-1; |
| 4147 | } else if (key.objectid > 0) { |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 4148 | key.objectid--; |
Filipe David Borba Manana | e8b0d724 | 2013-10-15 00:12:27 +0100 | [diff] [blame] | 4149 | key.type = (u8)-1; |
| 4150 | key.offset = (u64)-1; |
| 4151 | } else { |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 4152 | return 1; |
Filipe David Borba Manana | e8b0d724 | 2013-10-15 00:12:27 +0100 | [diff] [blame] | 4153 | } |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 4154 | |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 4155 | btrfs_release_path(path); |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 4156 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
| 4157 | if (ret < 0) |
| 4158 | return ret; |
| 4159 | btrfs_item_key(path->nodes[0], &found_key, 0); |
| 4160 | ret = comp_keys(&found_key, &key); |
Filipe Manana | 337c6f6 | 2014-06-09 13:22:13 +0100 | [diff] [blame] | 4161 | /* |
| 4162 | * We might have had an item with the previous key in the tree right |
| 4163 | * before we released our path. And after we released our path, that |
| 4164 | * item might have been pushed to the first slot (0) of the leaf we |
| 4165 | * were holding due to a tree balance. Alternatively, an item with the |
| 4166 | * previous key can exist as the only element of a leaf (big fat item). |
| 4167 | * Therefore account for these 2 cases, so that our callers (like |
| 4168 | * btrfs_previous_item) don't miss an existing item with a key matching |
| 4169 | * the previous key we computed above. |
| 4170 | */ |
| 4171 | if (ret <= 0) |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 4172 | return 0; |
| 4173 | return 1; |
Chris Mason | 7bb8631 | 2007-12-11 09:25:06 -0500 | [diff] [blame] | 4174 | } |
| 4175 | |
Chris Mason | 3f157a2 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 4176 | /* |
| 4177 | * A helper function to walk down the tree starting at min_key, and looking |
Eric Sandeen | de78b51 | 2013-01-31 18:21:12 +0000 | [diff] [blame] | 4178 | * for nodes or leaves that are have a minimum transaction id. |
| 4179 | * This is used by the btree defrag code, and tree logging |
Chris Mason | 3f157a2 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 4180 | * |
| 4181 | * This does not cow, but it does stuff the starting key it finds back |
| 4182 | * into min_key, so you can call btrfs_search_slot with cow=1 on the |
| 4183 | * key and get a writable path. |
| 4184 | * |
Chris Mason | 3f157a2 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 4185 | * This honors path->lowest_level to prevent descent past a given level |
| 4186 | * of the tree. |
| 4187 | * |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 4188 | * min_trans indicates the oldest transaction that you are interested |
| 4189 | * in walking through. Any nodes or leaves older than min_trans are |
| 4190 | * skipped over (without reading them). |
| 4191 | * |
Chris Mason | 3f157a2 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 4192 | * returns zero if something useful was found, < 0 on error and 1 if there |
| 4193 | * was nothing in the tree that matched the search criteria. |
| 4194 | */ |
| 4195 | int btrfs_search_forward(struct btrfs_root *root, struct btrfs_key *min_key, |
Eric Sandeen | de78b51 | 2013-01-31 18:21:12 +0000 | [diff] [blame] | 4196 | struct btrfs_path *path, |
Chris Mason | 3f157a2 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 4197 | u64 min_trans) |
| 4198 | { |
| 4199 | struct extent_buffer *cur; |
| 4200 | struct btrfs_key found_key; |
| 4201 | int slot; |
Yan | 9652480 | 2008-07-24 12:19:49 -0400 | [diff] [blame] | 4202 | int sret; |
Chris Mason | 3f157a2 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 4203 | u32 nritems; |
| 4204 | int level; |
| 4205 | int ret = 1; |
Filipe Manana | f98de9b | 2014-08-04 19:37:21 +0100 | [diff] [blame] | 4206 | int keep_locks = path->keep_locks; |
Chris Mason | 3f157a2 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 4207 | |
Filipe Manana | f98de9b | 2014-08-04 19:37:21 +0100 | [diff] [blame] | 4208 | path->keep_locks = 1; |
Chris Mason | 3f157a2 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 4209 | again: |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 4210 | cur = btrfs_read_lock_root_node(root); |
Chris Mason | 3f157a2 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 4211 | level = btrfs_header_level(cur); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 4212 | WARN_ON(path->nodes[level]); |
Chris Mason | 3f157a2 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 4213 | path->nodes[level] = cur; |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 4214 | path->locks[level] = BTRFS_READ_LOCK; |
Chris Mason | 3f157a2 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 4215 | |
| 4216 | if (btrfs_header_generation(cur) < min_trans) { |
| 4217 | ret = 1; |
| 4218 | goto out; |
| 4219 | } |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 4220 | while (1) { |
Chris Mason | 3f157a2 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 4221 | nritems = btrfs_header_nritems(cur); |
| 4222 | level = btrfs_header_level(cur); |
Qu Wenruo | e3b8336 | 2020-04-17 15:08:21 +0800 | [diff] [blame] | 4223 | sret = btrfs_bin_search(cur, min_key, &slot); |
Filipe Manana | cbca7d5 | 2019-02-18 16:57:26 +0000 | [diff] [blame] | 4224 | if (sret < 0) { |
| 4225 | ret = sret; |
| 4226 | goto out; |
| 4227 | } |
Chris Mason | 3f157a2 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 4228 | |
Chris Mason | 323ac95 | 2008-10-01 19:05:46 -0400 | [diff] [blame] | 4229 | /* at the lowest level, we're done, setup the path and exit */ |
| 4230 | if (level == path->lowest_level) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 4231 | if (slot >= nritems) |
| 4232 | goto find_next_key; |
Chris Mason | 3f157a2 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 4233 | ret = 0; |
| 4234 | path->slots[level] = slot; |
| 4235 | btrfs_item_key_to_cpu(cur, &found_key, slot); |
| 4236 | goto out; |
| 4237 | } |
Yan | 9652480 | 2008-07-24 12:19:49 -0400 | [diff] [blame] | 4238 | if (sret && slot > 0) |
| 4239 | slot--; |
Chris Mason | 3f157a2 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 4240 | /* |
Eric Sandeen | de78b51 | 2013-01-31 18:21:12 +0000 | [diff] [blame] | 4241 | * check this node pointer against the min_trans parameters. |
Randy Dunlap | 260db43 | 2020-08-04 19:48:34 -0700 | [diff] [blame] | 4242 | * If it is too old, skip to the next one. |
Chris Mason | 3f157a2 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 4243 | */ |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 4244 | while (slot < nritems) { |
Chris Mason | 3f157a2 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 4245 | u64 gen; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 4246 | |
Chris Mason | 3f157a2 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 4247 | gen = btrfs_node_ptr_generation(cur, slot); |
| 4248 | if (gen < min_trans) { |
| 4249 | slot++; |
| 4250 | continue; |
| 4251 | } |
Eric Sandeen | de78b51 | 2013-01-31 18:21:12 +0000 | [diff] [blame] | 4252 | break; |
Chris Mason | 3f157a2 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 4253 | } |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 4254 | find_next_key: |
Chris Mason | 3f157a2 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 4255 | /* |
| 4256 | * we didn't find a candidate key in this node, walk forward |
| 4257 | * and find another one |
| 4258 | */ |
| 4259 | if (slot >= nritems) { |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 4260 | path->slots[level] = slot; |
| 4261 | sret = btrfs_find_next_key(root, path, min_key, level, |
Eric Sandeen | de78b51 | 2013-01-31 18:21:12 +0000 | [diff] [blame] | 4262 | min_trans); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 4263 | if (sret == 0) { |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 4264 | btrfs_release_path(path); |
Chris Mason | 3f157a2 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 4265 | goto again; |
| 4266 | } else { |
| 4267 | goto out; |
| 4268 | } |
| 4269 | } |
| 4270 | /* save our key for returning back */ |
| 4271 | btrfs_node_key_to_cpu(cur, &found_key, slot); |
| 4272 | path->slots[level] = slot; |
| 4273 | if (level == path->lowest_level) { |
| 4274 | ret = 0; |
Chris Mason | 3f157a2 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 4275 | goto out; |
| 4276 | } |
David Sterba | 4b231ae | 2019-08-21 19:16:27 +0200 | [diff] [blame] | 4277 | cur = btrfs_read_node_slot(cur, slot); |
Liu Bo | fb770ae | 2016-07-05 12:10:14 -0700 | [diff] [blame] | 4278 | if (IS_ERR(cur)) { |
| 4279 | ret = PTR_ERR(cur); |
| 4280 | goto out; |
| 4281 | } |
Chris Mason | 3f157a2 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 4282 | |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 4283 | btrfs_tree_read_lock(cur); |
Chris Mason | b4ce94d | 2009-02-04 09:25:08 -0500 | [diff] [blame] | 4284 | |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 4285 | path->locks[level - 1] = BTRFS_READ_LOCK; |
Chris Mason | 3f157a2 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 4286 | path->nodes[level - 1] = cur; |
Chris Mason | f7c79f3 | 2012-03-19 15:54:38 -0400 | [diff] [blame] | 4287 | unlock_up(path, level, 1, 0, NULL); |
Chris Mason | 3f157a2 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 4288 | } |
| 4289 | out: |
Filipe Manana | f98de9b | 2014-08-04 19:37:21 +0100 | [diff] [blame] | 4290 | path->keep_locks = keep_locks; |
| 4291 | if (ret == 0) { |
| 4292 | btrfs_unlock_up_safe(path, path->lowest_level + 1); |
Chris Mason | 3f157a2 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 4293 | memcpy(min_key, &found_key, sizeof(found_key)); |
Filipe Manana | f98de9b | 2014-08-04 19:37:21 +0100 | [diff] [blame] | 4294 | } |
Chris Mason | 3f157a2 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 4295 | return ret; |
| 4296 | } |
| 4297 | |
| 4298 | /* |
| 4299 | * this is similar to btrfs_next_leaf, but does not try to preserve |
| 4300 | * and fixup the path. It looks for and returns the next key in the |
Eric Sandeen | de78b51 | 2013-01-31 18:21:12 +0000 | [diff] [blame] | 4301 | * tree based on the current path and the min_trans parameters. |
Chris Mason | 3f157a2 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 4302 | * |
| 4303 | * 0 is returned if another key is found, < 0 if there are any errors |
| 4304 | * and 1 is returned if there are no higher keys in the tree |
| 4305 | * |
| 4306 | * path->keep_locks should be set to 1 on the search made before |
| 4307 | * calling this function. |
| 4308 | */ |
Chris Mason | e7a8456 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 4309 | int btrfs_find_next_key(struct btrfs_root *root, struct btrfs_path *path, |
Eric Sandeen | de78b51 | 2013-01-31 18:21:12 +0000 | [diff] [blame] | 4310 | struct btrfs_key *key, int level, u64 min_trans) |
Chris Mason | e7a8456 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 4311 | { |
Chris Mason | e7a8456 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 4312 | int slot; |
| 4313 | struct extent_buffer *c; |
| 4314 | |
Josef Bacik | 6a9fb46 | 2019-06-20 15:37:52 -0400 | [diff] [blame] | 4315 | WARN_ON(!path->keep_locks && !path->skip_locking); |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 4316 | while (level < BTRFS_MAX_LEVEL) { |
Chris Mason | e7a8456 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 4317 | if (!path->nodes[level]) |
| 4318 | return 1; |
| 4319 | |
| 4320 | slot = path->slots[level] + 1; |
| 4321 | c = path->nodes[level]; |
Chris Mason | 3f157a2 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 4322 | next: |
Chris Mason | e7a8456 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 4323 | if (slot >= btrfs_header_nritems(c)) { |
Yan Zheng | 33c66f4 | 2009-07-22 09:59:00 -0400 | [diff] [blame] | 4324 | int ret; |
| 4325 | int orig_lowest; |
| 4326 | struct btrfs_key cur_key; |
| 4327 | if (level + 1 >= BTRFS_MAX_LEVEL || |
| 4328 | !path->nodes[level + 1]) |
Chris Mason | e7a8456 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 4329 | return 1; |
Yan Zheng | 33c66f4 | 2009-07-22 09:59:00 -0400 | [diff] [blame] | 4330 | |
Josef Bacik | 6a9fb46 | 2019-06-20 15:37:52 -0400 | [diff] [blame] | 4331 | if (path->locks[level + 1] || path->skip_locking) { |
Yan Zheng | 33c66f4 | 2009-07-22 09:59:00 -0400 | [diff] [blame] | 4332 | level++; |
| 4333 | continue; |
| 4334 | } |
| 4335 | |
| 4336 | slot = btrfs_header_nritems(c) - 1; |
| 4337 | if (level == 0) |
| 4338 | btrfs_item_key_to_cpu(c, &cur_key, slot); |
| 4339 | else |
| 4340 | btrfs_node_key_to_cpu(c, &cur_key, slot); |
| 4341 | |
| 4342 | orig_lowest = path->lowest_level; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 4343 | btrfs_release_path(path); |
Yan Zheng | 33c66f4 | 2009-07-22 09:59:00 -0400 | [diff] [blame] | 4344 | path->lowest_level = level; |
| 4345 | ret = btrfs_search_slot(NULL, root, &cur_key, path, |
| 4346 | 0, 0); |
| 4347 | path->lowest_level = orig_lowest; |
| 4348 | if (ret < 0) |
| 4349 | return ret; |
| 4350 | |
| 4351 | c = path->nodes[level]; |
| 4352 | slot = path->slots[level]; |
| 4353 | if (ret == 0) |
| 4354 | slot++; |
| 4355 | goto next; |
Chris Mason | e7a8456 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 4356 | } |
Yan Zheng | 33c66f4 | 2009-07-22 09:59:00 -0400 | [diff] [blame] | 4357 | |
Chris Mason | e7a8456 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 4358 | if (level == 0) |
| 4359 | btrfs_item_key_to_cpu(c, key, slot); |
Chris Mason | 3f157a2 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 4360 | else { |
Chris Mason | 3f157a2 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 4361 | u64 gen = btrfs_node_ptr_generation(c, slot); |
| 4362 | |
Chris Mason | 3f157a2 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 4363 | if (gen < min_trans) { |
| 4364 | slot++; |
| 4365 | goto next; |
| 4366 | } |
Chris Mason | e7a8456 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 4367 | btrfs_node_key_to_cpu(c, key, slot); |
Chris Mason | 3f157a2 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 4368 | } |
Chris Mason | e7a8456 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 4369 | return 0; |
| 4370 | } |
| 4371 | return 1; |
| 4372 | } |
| 4373 | |
Jan Schmidt | 3d7806e | 2012-06-11 08:29:29 +0200 | [diff] [blame] | 4374 | int btrfs_next_old_leaf(struct btrfs_root *root, struct btrfs_path *path, |
| 4375 | u64 time_seq) |
| 4376 | { |
Chris Mason | d97e63b | 2007-02-20 16:40:44 -0500 | [diff] [blame] | 4377 | int slot; |
Chris Mason | 8e73f27 | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 4378 | int level; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4379 | struct extent_buffer *c; |
Chris Mason | 8e73f27 | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 4380 | struct extent_buffer *next; |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 4381 | struct btrfs_key key; |
| 4382 | u32 nritems; |
| 4383 | int ret; |
Josef Bacik | 0e46318 | 2020-11-06 16:27:30 -0500 | [diff] [blame] | 4384 | int i; |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 4385 | |
| 4386 | nritems = btrfs_header_nritems(path->nodes[0]); |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 4387 | if (nritems == 0) |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 4388 | return 1; |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 4389 | |
Chris Mason | 8e73f27 | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 4390 | btrfs_item_key_to_cpu(path->nodes[0], &key, nritems - 1); |
| 4391 | again: |
| 4392 | level = 1; |
| 4393 | next = NULL; |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 4394 | btrfs_release_path(path); |
Chris Mason | 8e73f27 | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 4395 | |
Chris Mason | a213501 | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 4396 | path->keep_locks = 1; |
Chris Mason | 8e73f27 | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 4397 | |
Jan Schmidt | 3d7806e | 2012-06-11 08:29:29 +0200 | [diff] [blame] | 4398 | if (time_seq) |
| 4399 | ret = btrfs_search_old_slot(root, &key, path, time_seq); |
| 4400 | else |
| 4401 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 4402 | path->keep_locks = 0; |
| 4403 | |
| 4404 | if (ret < 0) |
| 4405 | return ret; |
| 4406 | |
Chris Mason | a213501 | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 4407 | nritems = btrfs_header_nritems(path->nodes[0]); |
Chris Mason | 168fd7d | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 4408 | /* |
| 4409 | * by releasing the path above we dropped all our locks. A balance |
| 4410 | * could have added more items next to the key that used to be |
| 4411 | * at the very end of the block. So, check again here and |
| 4412 | * advance the path if there are now more items available. |
| 4413 | */ |
Chris Mason | a213501 | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 4414 | if (nritems > 0 && path->slots[0] < nritems - 1) { |
Yan Zheng | e457afe | 2009-07-22 09:59:00 -0400 | [diff] [blame] | 4415 | if (ret == 0) |
| 4416 | path->slots[0]++; |
Chris Mason | 8e73f27 | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 4417 | ret = 0; |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 4418 | goto done; |
| 4419 | } |
Liu Bo | 0b43e04 | 2014-06-09 11:04:49 +0800 | [diff] [blame] | 4420 | /* |
| 4421 | * So the above check misses one case: |
| 4422 | * - after releasing the path above, someone has removed the item that |
| 4423 | * used to be at the very end of the block, and balance between leafs |
| 4424 | * gets another one with bigger key.offset to replace it. |
| 4425 | * |
| 4426 | * This one should be returned as well, or we can get leaf corruption |
| 4427 | * later(esp. in __btrfs_drop_extents()). |
| 4428 | * |
| 4429 | * And a bit more explanation about this check, |
| 4430 | * with ret > 0, the key isn't found, the path points to the slot |
| 4431 | * where it should be inserted, so the path->slots[0] item must be the |
| 4432 | * bigger one. |
| 4433 | */ |
| 4434 | if (nritems > 0 && ret > 0 && path->slots[0] == nritems - 1) { |
| 4435 | ret = 0; |
| 4436 | goto done; |
| 4437 | } |
Chris Mason | d97e63b | 2007-02-20 16:40:44 -0500 | [diff] [blame] | 4438 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 4439 | while (level < BTRFS_MAX_LEVEL) { |
Chris Mason | 8e73f27 | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 4440 | if (!path->nodes[level]) { |
| 4441 | ret = 1; |
| 4442 | goto done; |
| 4443 | } |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4444 | |
Chris Mason | d97e63b | 2007-02-20 16:40:44 -0500 | [diff] [blame] | 4445 | slot = path->slots[level] + 1; |
| 4446 | c = path->nodes[level]; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4447 | if (slot >= btrfs_header_nritems(c)) { |
Chris Mason | d97e63b | 2007-02-20 16:40:44 -0500 | [diff] [blame] | 4448 | level++; |
Chris Mason | 8e73f27 | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 4449 | if (level == BTRFS_MAX_LEVEL) { |
| 4450 | ret = 1; |
| 4451 | goto done; |
| 4452 | } |
Chris Mason | d97e63b | 2007-02-20 16:40:44 -0500 | [diff] [blame] | 4453 | continue; |
| 4454 | } |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4455 | |
Josef Bacik | 0e46318 | 2020-11-06 16:27:30 -0500 | [diff] [blame] | 4456 | |
| 4457 | /* |
| 4458 | * Our current level is where we're going to start from, and to |
| 4459 | * make sure lockdep doesn't complain we need to drop our locks |
| 4460 | * and nodes from 0 to our current level. |
| 4461 | */ |
| 4462 | for (i = 0; i < level; i++) { |
| 4463 | if (path->locks[level]) { |
| 4464 | btrfs_tree_read_unlock(path->nodes[i]); |
| 4465 | path->locks[i] = 0; |
| 4466 | } |
| 4467 | free_extent_buffer(path->nodes[i]); |
| 4468 | path->nodes[i] = NULL; |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 4469 | } |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4470 | |
Chris Mason | 8e73f27 | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 4471 | next = c; |
Liu Bo | d07b852 | 2017-01-30 12:23:42 -0800 | [diff] [blame] | 4472 | ret = read_block_for_search(root, path, &next, level, |
David Sterba | cda79c5 | 2017-02-10 18:44:32 +0100 | [diff] [blame] | 4473 | slot, &key); |
Chris Mason | 8e73f27 | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 4474 | if (ret == -EAGAIN) |
| 4475 | goto again; |
Chris Mason | 5f39d39 | 2007-10-15 16:14:19 -0400 | [diff] [blame] | 4476 | |
Chris Mason | 76a05b3 | 2009-05-14 13:24:30 -0400 | [diff] [blame] | 4477 | if (ret < 0) { |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 4478 | btrfs_release_path(path); |
Chris Mason | 76a05b3 | 2009-05-14 13:24:30 -0400 | [diff] [blame] | 4479 | goto done; |
| 4480 | } |
| 4481 | |
Chris Mason | 5cd57b2 | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 4482 | if (!path->skip_locking) { |
Chris Mason | bd68151 | 2011-07-16 15:23:14 -0400 | [diff] [blame] | 4483 | ret = btrfs_try_tree_read_lock(next); |
Jan Schmidt | d42244a | 2012-06-22 14:51:15 +0200 | [diff] [blame] | 4484 | if (!ret && time_seq) { |
| 4485 | /* |
| 4486 | * If we don't get the lock, we may be racing |
| 4487 | * with push_leaf_left, holding that lock while |
| 4488 | * itself waiting for the leaf we've currently |
| 4489 | * locked. To solve this situation, we give up |
| 4490 | * on our lock and cycle. |
| 4491 | */ |
Jan Schmidt | cf53883 | 2012-07-04 15:42:48 +0200 | [diff] [blame] | 4492 | free_extent_buffer(next); |
Jan Schmidt | d42244a | 2012-06-22 14:51:15 +0200 | [diff] [blame] | 4493 | btrfs_release_path(path); |
| 4494 | cond_resched(); |
| 4495 | goto again; |
| 4496 | } |
Josef Bacik | 0e46318 | 2020-11-06 16:27:30 -0500 | [diff] [blame] | 4497 | if (!ret) |
| 4498 | btrfs_tree_read_lock(next); |
Chris Mason | 5cd57b2 | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 4499 | } |
Chris Mason | d97e63b | 2007-02-20 16:40:44 -0500 | [diff] [blame] | 4500 | break; |
| 4501 | } |
| 4502 | path->slots[level] = slot; |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 4503 | while (1) { |
Chris Mason | d97e63b | 2007-02-20 16:40:44 -0500 | [diff] [blame] | 4504 | level--; |
Chris Mason | d97e63b | 2007-02-20 16:40:44 -0500 | [diff] [blame] | 4505 | path->nodes[level] = next; |
| 4506 | path->slots[level] = 0; |
Chris Mason | a74a4b9 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 4507 | if (!path->skip_locking) |
Josef Bacik | ffeb03c | 2020-11-06 16:27:29 -0500 | [diff] [blame] | 4508 | path->locks[level] = BTRFS_READ_LOCK; |
Chris Mason | d97e63b | 2007-02-20 16:40:44 -0500 | [diff] [blame] | 4509 | if (!level) |
| 4510 | break; |
Chris Mason | b4ce94d | 2009-02-04 09:25:08 -0500 | [diff] [blame] | 4511 | |
Liu Bo | d07b852 | 2017-01-30 12:23:42 -0800 | [diff] [blame] | 4512 | ret = read_block_for_search(root, path, &next, level, |
David Sterba | cda79c5 | 2017-02-10 18:44:32 +0100 | [diff] [blame] | 4513 | 0, &key); |
Chris Mason | 8e73f27 | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 4514 | if (ret == -EAGAIN) |
| 4515 | goto again; |
| 4516 | |
Chris Mason | 76a05b3 | 2009-05-14 13:24:30 -0400 | [diff] [blame] | 4517 | if (ret < 0) { |
David Sterba | b3b4aa7 | 2011-04-21 01:20:15 +0200 | [diff] [blame] | 4518 | btrfs_release_path(path); |
Chris Mason | 76a05b3 | 2009-05-14 13:24:30 -0400 | [diff] [blame] | 4519 | goto done; |
| 4520 | } |
| 4521 | |
Josef Bacik | ffeb03c | 2020-11-06 16:27:29 -0500 | [diff] [blame] | 4522 | if (!path->skip_locking) |
Josef Bacik | 0e46318 | 2020-11-06 16:27:30 -0500 | [diff] [blame] | 4523 | btrfs_tree_read_lock(next); |
Chris Mason | d97e63b | 2007-02-20 16:40:44 -0500 | [diff] [blame] | 4524 | } |
Chris Mason | 8e73f27 | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 4525 | ret = 0; |
Chris Mason | 925baed | 2008-06-25 16:01:30 -0400 | [diff] [blame] | 4526 | done: |
Chris Mason | f7c79f3 | 2012-03-19 15:54:38 -0400 | [diff] [blame] | 4527 | unlock_up(path, 0, 1, 0, NULL); |
Chris Mason | 8e73f27 | 2009-04-03 10:14:18 -0400 | [diff] [blame] | 4528 | |
| 4529 | return ret; |
Chris Mason | d97e63b | 2007-02-20 16:40:44 -0500 | [diff] [blame] | 4530 | } |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4531 | |
Chris Mason | 3f157a2 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 4532 | /* |
| 4533 | * this uses btrfs_prev_leaf to walk backwards in the tree, and keeps |
| 4534 | * searching until it gets past min_objectid or finds an item of 'type' |
| 4535 | * |
| 4536 | * returns 0 if something is found, 1 if nothing was found and < 0 on error |
| 4537 | */ |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4538 | int btrfs_previous_item(struct btrfs_root *root, |
| 4539 | struct btrfs_path *path, u64 min_objectid, |
| 4540 | int type) |
| 4541 | { |
| 4542 | struct btrfs_key found_key; |
| 4543 | struct extent_buffer *leaf; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 4544 | u32 nritems; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4545 | int ret; |
| 4546 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 4547 | while (1) { |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4548 | if (path->slots[0] == 0) { |
| 4549 | ret = btrfs_prev_leaf(root, path); |
| 4550 | if (ret != 0) |
| 4551 | return ret; |
| 4552 | } else { |
| 4553 | path->slots[0]--; |
| 4554 | } |
| 4555 | leaf = path->nodes[0]; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 4556 | nritems = btrfs_header_nritems(leaf); |
| 4557 | if (nritems == 0) |
| 4558 | return 1; |
| 4559 | if (path->slots[0] == nritems) |
| 4560 | path->slots[0]--; |
| 4561 | |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4562 | btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]); |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 4563 | if (found_key.objectid < min_objectid) |
| 4564 | break; |
Yan Zheng | 0a4eefb | 2009-07-24 11:06:53 -0400 | [diff] [blame] | 4565 | if (found_key.type == type) |
| 4566 | return 0; |
Chris Mason | e02119d | 2008-09-05 16:13:11 -0400 | [diff] [blame] | 4567 | if (found_key.objectid == min_objectid && |
| 4568 | found_key.type < type) |
| 4569 | break; |
Chris Mason | 0b86a83 | 2008-03-24 15:01:56 -0400 | [diff] [blame] | 4570 | } |
| 4571 | return 1; |
| 4572 | } |
Wang Shilong | ade2e0b | 2014-01-12 21:38:33 +0800 | [diff] [blame] | 4573 | |
| 4574 | /* |
| 4575 | * search in extent tree to find a previous Metadata/Data extent item with |
| 4576 | * min objecitd. |
| 4577 | * |
| 4578 | * returns 0 if something is found, 1 if nothing was found and < 0 on error |
| 4579 | */ |
| 4580 | int btrfs_previous_extent_item(struct btrfs_root *root, |
| 4581 | struct btrfs_path *path, u64 min_objectid) |
| 4582 | { |
| 4583 | struct btrfs_key found_key; |
| 4584 | struct extent_buffer *leaf; |
| 4585 | u32 nritems; |
| 4586 | int ret; |
| 4587 | |
| 4588 | while (1) { |
| 4589 | if (path->slots[0] == 0) { |
Wang Shilong | ade2e0b | 2014-01-12 21:38:33 +0800 | [diff] [blame] | 4590 | ret = btrfs_prev_leaf(root, path); |
| 4591 | if (ret != 0) |
| 4592 | return ret; |
| 4593 | } else { |
| 4594 | path->slots[0]--; |
| 4595 | } |
| 4596 | leaf = path->nodes[0]; |
| 4597 | nritems = btrfs_header_nritems(leaf); |
| 4598 | if (nritems == 0) |
| 4599 | return 1; |
| 4600 | if (path->slots[0] == nritems) |
| 4601 | path->slots[0]--; |
| 4602 | |
| 4603 | btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]); |
| 4604 | if (found_key.objectid < min_objectid) |
| 4605 | break; |
| 4606 | if (found_key.type == BTRFS_EXTENT_ITEM_KEY || |
| 4607 | found_key.type == BTRFS_METADATA_ITEM_KEY) |
| 4608 | return 0; |
| 4609 | if (found_key.objectid == min_objectid && |
| 4610 | found_key.type < BTRFS_EXTENT_ITEM_KEY) |
| 4611 | break; |
| 4612 | } |
| 4613 | return 1; |
| 4614 | } |