1c1d7c514SDavid Sterba // SPDX-License-Identifier: GPL-2.0 26cbd5570SChris Mason /* 3d352ac68SChris Mason * Copyright (C) 2007,2008 Oracle. All rights reserved. 46cbd5570SChris Mason */ 56cbd5570SChris Mason 6a6b6e75eSChris Mason #include <linux/sched.h> 75a0e3ad6STejun Heo #include <linux/slab.h> 8bd989ba3SJan Schmidt #include <linux/rbtree.h> 9adf02123SDavid Sterba #include <linux/mm.h> 10e41d12f5SChristoph Hellwig #include <linux/error-injection.h> 119b569ea0SJosef Bacik #include "messages.h" 12eb60ceacSChris Mason #include "ctree.h" 13eb60ceacSChris Mason #include "disk-io.h" 147f5c1516SChris Mason #include "transaction.h" 155f39d397SChris Mason #include "print-tree.h" 16925baeddSChris Mason #include "locking.h" 17de37aa51SNikolay Borisov #include "volumes.h" 18f616f5cdSQu Wenruo #include "qgroup.h" 19f3a84ccdSFilipe Manana #include "tree-mod-log.h" 2088c602abSQu Wenruo #include "tree-checker.h" 21ec8eb376SJosef Bacik #include "fs.h" 22ad1ac501SJosef Bacik #include "accessors.h" 23a0231804SJosef Bacik #include "extent-tree.h" 2467707479SJosef Bacik #include "relocation.h" 256bfd0ffaSJosef Bacik #include "file-item.h" 269a8dd150SChris Mason 27226463d7SJosef Bacik static struct kmem_cache *btrfs_path_cachep; 28226463d7SJosef Bacik 29e089f05cSChris Mason static int split_node(struct btrfs_trans_handle *trans, struct btrfs_root 30e089f05cSChris Mason *root, struct btrfs_path *path, int level); 31310712b2SOmar Sandoval static int split_leaf(struct btrfs_trans_handle *trans, struct btrfs_root *root, 32310712b2SOmar Sandoval const struct btrfs_key *ins_key, struct btrfs_path *path, 33310712b2SOmar Sandoval int data_size, int extend); 345f39d397SChris Mason static int push_node_left(struct btrfs_trans_handle *trans, 352ff7e61eSJeff Mahoney struct extent_buffer *dst, 36971a1f66SChris Mason struct extent_buffer *src, int empty); 375f39d397SChris Mason static int balance_node_right(struct btrfs_trans_handle *trans, 385f39d397SChris Mason struct extent_buffer *dst_buf, 395f39d397SChris Mason struct extent_buffer *src_buf); 40d97e63b6SChris Mason 41af024ed2SJohannes Thumshirn static const struct btrfs_csums { 42af024ed2SJohannes Thumshirn u16 size; 4359a0fcdbSDavid Sterba const char name[10]; 4459a0fcdbSDavid Sterba const char driver[12]; 45af024ed2SJohannes Thumshirn } btrfs_csums[] = { 46af024ed2SJohannes Thumshirn [BTRFS_CSUM_TYPE_CRC32] = { .size = 4, .name = "crc32c" }, 473951e7f0SJohannes Thumshirn [BTRFS_CSUM_TYPE_XXHASH] = { .size = 8, .name = "xxhash64" }, 483831bf00SJohannes Thumshirn [BTRFS_CSUM_TYPE_SHA256] = { .size = 32, .name = "sha256" }, 49352ae07bSDavid Sterba [BTRFS_CSUM_TYPE_BLAKE2] = { .size = 32, .name = "blake2b", 50352ae07bSDavid Sterba .driver = "blake2b-256" }, 51af024ed2SJohannes Thumshirn }; 52af024ed2SJohannes Thumshirn 533a3178c7SJosef Bacik /* 543a3178c7SJosef Bacik * The leaf data grows from end-to-front in the node. this returns the address 553a3178c7SJosef Bacik * of the start of the last item, which is the stop of the leaf data stack. 563a3178c7SJosef Bacik */ 573a3178c7SJosef Bacik static unsigned int leaf_data_end(const struct extent_buffer *leaf) 583a3178c7SJosef Bacik { 593a3178c7SJosef Bacik u32 nr = btrfs_header_nritems(leaf); 603a3178c7SJosef Bacik 613a3178c7SJosef Bacik if (nr == 0) 623a3178c7SJosef Bacik return BTRFS_LEAF_DATA_SIZE(leaf->fs_info); 633a3178c7SJosef Bacik return btrfs_item_offset(leaf, nr - 1); 643a3178c7SJosef Bacik } 653a3178c7SJosef Bacik 66637e3b48SJosef Bacik /* 67637e3b48SJosef Bacik * Move data in a @leaf (using memmove, safe for overlapping ranges). 68637e3b48SJosef Bacik * 69637e3b48SJosef Bacik * @leaf: leaf that we're doing a memmove on 70637e3b48SJosef Bacik * @dst_offset: item data offset we're moving to 71637e3b48SJosef Bacik * @src_offset: item data offset were' moving from 72637e3b48SJosef Bacik * @len: length of the data we're moving 73637e3b48SJosef Bacik * 74637e3b48SJosef Bacik * Wrapper around memmove_extent_buffer() that takes into account the header on 75637e3b48SJosef Bacik * the leaf. The btrfs_item offset's start directly after the header, so we 76637e3b48SJosef Bacik * have to adjust any offsets to account for the header in the leaf. This 77637e3b48SJosef Bacik * handles that math to simplify the callers. 78637e3b48SJosef Bacik */ 79637e3b48SJosef Bacik static inline void memmove_leaf_data(const struct extent_buffer *leaf, 80637e3b48SJosef Bacik unsigned long dst_offset, 81637e3b48SJosef Bacik unsigned long src_offset, 82637e3b48SJosef Bacik unsigned long len) 83637e3b48SJosef Bacik { 848009adf3SJosef Bacik memmove_extent_buffer(leaf, btrfs_item_nr_offset(leaf, 0) + dst_offset, 858009adf3SJosef Bacik btrfs_item_nr_offset(leaf, 0) + src_offset, len); 86637e3b48SJosef Bacik } 87637e3b48SJosef Bacik 88637e3b48SJosef Bacik /* 89637e3b48SJosef Bacik * Copy item data from @src into @dst at the given @offset. 90637e3b48SJosef Bacik * 91637e3b48SJosef Bacik * @dst: destination leaf that we're copying into 92637e3b48SJosef Bacik * @src: source leaf that we're copying from 93637e3b48SJosef Bacik * @dst_offset: item data offset we're copying to 94637e3b48SJosef Bacik * @src_offset: item data offset were' copying from 95637e3b48SJosef Bacik * @len: length of the data we're copying 96637e3b48SJosef Bacik * 97637e3b48SJosef Bacik * Wrapper around copy_extent_buffer() that takes into account the header on 98637e3b48SJosef Bacik * the leaf. The btrfs_item offset's start directly after the header, so we 99637e3b48SJosef Bacik * have to adjust any offsets to account for the header in the leaf. This 100637e3b48SJosef Bacik * handles that math to simplify the callers. 101637e3b48SJosef Bacik */ 102637e3b48SJosef Bacik static inline void copy_leaf_data(const struct extent_buffer *dst, 103637e3b48SJosef Bacik const struct extent_buffer *src, 104637e3b48SJosef Bacik unsigned long dst_offset, 105637e3b48SJosef Bacik unsigned long src_offset, unsigned long len) 106637e3b48SJosef Bacik { 1078009adf3SJosef Bacik copy_extent_buffer(dst, src, btrfs_item_nr_offset(dst, 0) + dst_offset, 1088009adf3SJosef Bacik btrfs_item_nr_offset(src, 0) + src_offset, len); 109637e3b48SJosef Bacik } 110637e3b48SJosef Bacik 111637e3b48SJosef Bacik /* 112637e3b48SJosef Bacik * Move items in a @leaf (using memmove). 113637e3b48SJosef Bacik * 114637e3b48SJosef Bacik * @dst: destination leaf for the items 115637e3b48SJosef Bacik * @dst_item: the item nr we're copying into 116637e3b48SJosef Bacik * @src_item: the item nr we're copying from 117637e3b48SJosef Bacik * @nr_items: the number of items to copy 118637e3b48SJosef Bacik * 119637e3b48SJosef Bacik * Wrapper around memmove_extent_buffer() that does the math to get the 120637e3b48SJosef Bacik * appropriate offsets into the leaf from the item numbers. 121637e3b48SJosef Bacik */ 122637e3b48SJosef Bacik static inline void memmove_leaf_items(const struct extent_buffer *leaf, 123637e3b48SJosef Bacik int dst_item, int src_item, int nr_items) 124637e3b48SJosef Bacik { 125637e3b48SJosef Bacik memmove_extent_buffer(leaf, btrfs_item_nr_offset(leaf, dst_item), 126637e3b48SJosef Bacik btrfs_item_nr_offset(leaf, src_item), 127637e3b48SJosef Bacik nr_items * sizeof(struct btrfs_item)); 128637e3b48SJosef Bacik } 129637e3b48SJosef Bacik 130637e3b48SJosef Bacik /* 131637e3b48SJosef Bacik * Copy items from @src into @dst at the given @offset. 132637e3b48SJosef Bacik * 133637e3b48SJosef Bacik * @dst: destination leaf for the items 134637e3b48SJosef Bacik * @src: source leaf for the items 135637e3b48SJosef Bacik * @dst_item: the item nr we're copying into 136637e3b48SJosef Bacik * @src_item: the item nr we're copying from 137637e3b48SJosef Bacik * @nr_items: the number of items to copy 138637e3b48SJosef Bacik * 139637e3b48SJosef Bacik * Wrapper around copy_extent_buffer() that does the math to get the 140637e3b48SJosef Bacik * appropriate offsets into the leaf from the item numbers. 141637e3b48SJosef Bacik */ 142637e3b48SJosef Bacik static inline void copy_leaf_items(const struct extent_buffer *dst, 143637e3b48SJosef Bacik const struct extent_buffer *src, 144637e3b48SJosef Bacik int dst_item, int src_item, int nr_items) 145637e3b48SJosef Bacik { 146637e3b48SJosef Bacik copy_extent_buffer(dst, src, btrfs_item_nr_offset(dst, dst_item), 147637e3b48SJosef Bacik btrfs_item_nr_offset(src, src_item), 148637e3b48SJosef Bacik nr_items * sizeof(struct btrfs_item)); 149637e3b48SJosef Bacik } 150637e3b48SJosef Bacik 151b3cbfb0dSJosef Bacik /* This exists for btrfs-progs usages. */ 152b3cbfb0dSJosef Bacik u16 btrfs_csum_type_size(u16 type) 153b3cbfb0dSJosef Bacik { 154b3cbfb0dSJosef Bacik return btrfs_csums[type].size; 155b3cbfb0dSJosef Bacik } 156b3cbfb0dSJosef Bacik 157af024ed2SJohannes Thumshirn int btrfs_super_csum_size(const struct btrfs_super_block *s) 158af024ed2SJohannes Thumshirn { 159af024ed2SJohannes Thumshirn u16 t = btrfs_super_csum_type(s); 160af024ed2SJohannes Thumshirn /* 161af024ed2SJohannes Thumshirn * csum type is validated at mount time 162af024ed2SJohannes Thumshirn */ 163b3cbfb0dSJosef Bacik return btrfs_csum_type_size(t); 164af024ed2SJohannes Thumshirn } 165af024ed2SJohannes Thumshirn 166af024ed2SJohannes Thumshirn const char *btrfs_super_csum_name(u16 csum_type) 167af024ed2SJohannes Thumshirn { 168af024ed2SJohannes Thumshirn /* csum type is validated at mount time */ 169af024ed2SJohannes Thumshirn return btrfs_csums[csum_type].name; 170af024ed2SJohannes Thumshirn } 171af024ed2SJohannes Thumshirn 172b4e967beSDavid Sterba /* 173b4e967beSDavid Sterba * Return driver name if defined, otherwise the name that's also a valid driver 174b4e967beSDavid Sterba * name 175b4e967beSDavid Sterba */ 176b4e967beSDavid Sterba const char *btrfs_super_csum_driver(u16 csum_type) 177b4e967beSDavid Sterba { 178b4e967beSDavid Sterba /* csum type is validated at mount time */ 17959a0fcdbSDavid Sterba return btrfs_csums[csum_type].driver[0] ? 18059a0fcdbSDavid Sterba btrfs_csums[csum_type].driver : 181b4e967beSDavid Sterba btrfs_csums[csum_type].name; 182b4e967beSDavid Sterba } 183b4e967beSDavid Sterba 184604997b4SDavid Sterba size_t __attribute_const__ btrfs_get_num_csums(void) 185f7cea56cSDavid Sterba { 186f7cea56cSDavid Sterba return ARRAY_SIZE(btrfs_csums); 187f7cea56cSDavid Sterba } 188f7cea56cSDavid Sterba 1892c90e5d6SChris Mason struct btrfs_path *btrfs_alloc_path(void) 1902c90e5d6SChris Mason { 191a4c853afSChenXiaoSong might_sleep(); 192a4c853afSChenXiaoSong 193e2c89907SMasahiro Yamada return kmem_cache_zalloc(btrfs_path_cachep, GFP_NOFS); 1942c90e5d6SChris Mason } 1952c90e5d6SChris Mason 196d352ac68SChris Mason /* this also releases the path */ 1972c90e5d6SChris Mason void btrfs_free_path(struct btrfs_path *p) 1982c90e5d6SChris Mason { 199ff175d57SJesper Juhl if (!p) 200ff175d57SJesper Juhl return; 201b3b4aa74SDavid Sterba btrfs_release_path(p); 2022c90e5d6SChris Mason kmem_cache_free(btrfs_path_cachep, p); 2032c90e5d6SChris Mason } 2042c90e5d6SChris Mason 205d352ac68SChris Mason /* 206d352ac68SChris Mason * path release drops references on the extent buffers in the path 207d352ac68SChris Mason * and it drops any locks held by this path 208d352ac68SChris Mason * 209d352ac68SChris Mason * It is safe to call this on paths that no locks or extent buffers held. 210d352ac68SChris Mason */ 211b3b4aa74SDavid Sterba noinline void btrfs_release_path(struct btrfs_path *p) 212eb60ceacSChris Mason { 213eb60ceacSChris Mason int i; 214a2135011SChris Mason 215234b63a0SChris Mason for (i = 0; i < BTRFS_MAX_LEVEL; i++) { 2163f157a2fSChris Mason p->slots[i] = 0; 217eb60ceacSChris Mason if (!p->nodes[i]) 218925baeddSChris Mason continue; 219925baeddSChris Mason if (p->locks[i]) { 220bd681513SChris Mason btrfs_tree_unlock_rw(p->nodes[i], p->locks[i]); 221925baeddSChris Mason p->locks[i] = 0; 222925baeddSChris Mason } 2235f39d397SChris Mason free_extent_buffer(p->nodes[i]); 2243f157a2fSChris Mason p->nodes[i] = NULL; 225eb60ceacSChris Mason } 226eb60ceacSChris Mason } 227eb60ceacSChris Mason 228d352ac68SChris Mason /* 2298bb808c6SDavid Sterba * We want the transaction abort to print stack trace only for errors where the 2308bb808c6SDavid Sterba * cause could be a bug, eg. due to ENOSPC, and not for common errors that are 2318bb808c6SDavid Sterba * caused by external factors. 2328bb808c6SDavid Sterba */ 2338bb808c6SDavid Sterba bool __cold abort_should_print_stack(int errno) 2348bb808c6SDavid Sterba { 2358bb808c6SDavid Sterba switch (errno) { 2368bb808c6SDavid Sterba case -EIO: 2378bb808c6SDavid Sterba case -EROFS: 2388bb808c6SDavid Sterba case -ENOMEM: 2398bb808c6SDavid Sterba return false; 2408bb808c6SDavid Sterba } 2418bb808c6SDavid Sterba return true; 2428bb808c6SDavid Sterba } 2438bb808c6SDavid Sterba 2448bb808c6SDavid Sterba /* 245d352ac68SChris Mason * safely gets a reference on the root node of a tree. A lock 246d352ac68SChris Mason * is not taken, so a concurrent writer may put a different node 247d352ac68SChris Mason * at the root of the tree. See btrfs_lock_root_node for the 248d352ac68SChris Mason * looping required. 249d352ac68SChris Mason * 250d352ac68SChris Mason * The extent buffer returned by this has a reference taken, so 251d352ac68SChris Mason * it won't disappear. It may stop being the root of the tree 252d352ac68SChris Mason * at any time because there are no locks held. 253d352ac68SChris Mason */ 254925baeddSChris Mason struct extent_buffer *btrfs_root_node(struct btrfs_root *root) 255925baeddSChris Mason { 256925baeddSChris Mason struct extent_buffer *eb; 257240f62c8SChris Mason 2583083ee2eSJosef Bacik while (1) { 259240f62c8SChris Mason rcu_read_lock(); 260240f62c8SChris Mason eb = rcu_dereference(root->node); 2613083ee2eSJosef Bacik 2623083ee2eSJosef Bacik /* 2633083ee2eSJosef Bacik * RCU really hurts here, we could free up the root node because 26401327610SNicholas D Steeves * it was COWed but we may not get the new root node yet so do 2653083ee2eSJosef Bacik * the inc_not_zero dance and if it doesn't work then 2663083ee2eSJosef Bacik * synchronize_rcu and try again. 2673083ee2eSJosef Bacik */ 2683083ee2eSJosef Bacik if (atomic_inc_not_zero(&eb->refs)) { 269240f62c8SChris Mason rcu_read_unlock(); 2703083ee2eSJosef Bacik break; 2713083ee2eSJosef Bacik } 2723083ee2eSJosef Bacik rcu_read_unlock(); 2733083ee2eSJosef Bacik synchronize_rcu(); 2743083ee2eSJosef Bacik } 275925baeddSChris Mason return eb; 276925baeddSChris Mason } 277925baeddSChris Mason 27892a7cc42SQu Wenruo /* 27992a7cc42SQu Wenruo * Cowonly root (not-shareable trees, everything not subvolume or reloc roots), 28092a7cc42SQu Wenruo * just get put onto a simple dirty list. Transaction walks this list to make 28192a7cc42SQu Wenruo * sure they get properly updated on disk. 282d352ac68SChris Mason */ 2830b86a832SChris Mason static void add_root_to_dirty_list(struct btrfs_root *root) 2840b86a832SChris Mason { 2850b246afaSJeff Mahoney struct btrfs_fs_info *fs_info = root->fs_info; 2860b246afaSJeff Mahoney 287e7070be1SJosef Bacik if (test_bit(BTRFS_ROOT_DIRTY, &root->state) || 288e7070be1SJosef Bacik !test_bit(BTRFS_ROOT_TRACK_DIRTY, &root->state)) 289e7070be1SJosef Bacik return; 290e7070be1SJosef Bacik 2910b246afaSJeff Mahoney spin_lock(&fs_info->trans_lock); 292e7070be1SJosef Bacik if (!test_and_set_bit(BTRFS_ROOT_DIRTY, &root->state)) { 293e7070be1SJosef Bacik /* Want the extent tree to be the last on the list */ 2944fd786e6SMisono Tomohiro if (root->root_key.objectid == BTRFS_EXTENT_TREE_OBJECTID) 295e7070be1SJosef Bacik list_move_tail(&root->dirty_list, 2960b246afaSJeff Mahoney &fs_info->dirty_cowonly_roots); 297e7070be1SJosef Bacik else 298e7070be1SJosef Bacik list_move(&root->dirty_list, 2990b246afaSJeff Mahoney &fs_info->dirty_cowonly_roots); 3000b86a832SChris Mason } 3010b246afaSJeff Mahoney spin_unlock(&fs_info->trans_lock); 3020b86a832SChris Mason } 3030b86a832SChris Mason 304d352ac68SChris Mason /* 305d352ac68SChris Mason * used by snapshot creation to make a copy of a root for a tree with 306d352ac68SChris Mason * a given objectid. The buffer with the new root node is returned in 307d352ac68SChris Mason * cow_ret, and this func returns zero on success or a negative error code. 308d352ac68SChris Mason */ 309be20aa9dSChris Mason int btrfs_copy_root(struct btrfs_trans_handle *trans, 310be20aa9dSChris Mason struct btrfs_root *root, 311be20aa9dSChris Mason struct extent_buffer *buf, 312be20aa9dSChris Mason struct extent_buffer **cow_ret, u64 new_root_objectid) 313be20aa9dSChris Mason { 3140b246afaSJeff Mahoney struct btrfs_fs_info *fs_info = root->fs_info; 315be20aa9dSChris Mason struct extent_buffer *cow; 316be20aa9dSChris Mason int ret = 0; 317be20aa9dSChris Mason int level; 3185d4f98a2SYan Zheng struct btrfs_disk_key disk_key; 319be20aa9dSChris Mason 32092a7cc42SQu Wenruo WARN_ON(test_bit(BTRFS_ROOT_SHAREABLE, &root->state) && 3210b246afaSJeff Mahoney trans->transid != fs_info->running_transaction->transid); 32292a7cc42SQu Wenruo WARN_ON(test_bit(BTRFS_ROOT_SHAREABLE, &root->state) && 32327cdeb70SMiao Xie trans->transid != root->last_trans); 324be20aa9dSChris Mason 325be20aa9dSChris Mason level = btrfs_header_level(buf); 3265d4f98a2SYan Zheng if (level == 0) 3275d4f98a2SYan Zheng btrfs_item_key(buf, &disk_key, 0); 3285d4f98a2SYan Zheng else 3295d4f98a2SYan Zheng btrfs_node_key(buf, &disk_key, 0); 33031840ae1SZheng Yan 3314d75f8a9SDavid Sterba cow = btrfs_alloc_tree_block(trans, root, 0, new_root_objectid, 332cf6f34aaSJosef Bacik &disk_key, level, buf->start, 0, 333cf6f34aaSJosef Bacik BTRFS_NESTING_NEW_ROOT); 3345d4f98a2SYan Zheng if (IS_ERR(cow)) 335be20aa9dSChris Mason return PTR_ERR(cow); 336be20aa9dSChris Mason 33758e8012cSDavid Sterba copy_extent_buffer_full(cow, buf); 338be20aa9dSChris Mason btrfs_set_header_bytenr(cow, cow->start); 339be20aa9dSChris Mason btrfs_set_header_generation(cow, trans->transid); 3405d4f98a2SYan Zheng btrfs_set_header_backref_rev(cow, BTRFS_MIXED_BACKREF_REV); 3415d4f98a2SYan Zheng btrfs_clear_header_flag(cow, BTRFS_HEADER_FLAG_WRITTEN | 3425d4f98a2SYan Zheng BTRFS_HEADER_FLAG_RELOC); 3435d4f98a2SYan Zheng if (new_root_objectid == BTRFS_TREE_RELOC_OBJECTID) 3445d4f98a2SYan Zheng btrfs_set_header_flag(cow, BTRFS_HEADER_FLAG_RELOC); 3455d4f98a2SYan Zheng else 346be20aa9dSChris Mason btrfs_set_header_owner(cow, new_root_objectid); 347be20aa9dSChris Mason 348de37aa51SNikolay Borisov write_extent_buffer_fsid(cow, fs_info->fs_devices->metadata_uuid); 3492b82032cSYan Zheng 350be20aa9dSChris Mason WARN_ON(btrfs_header_generation(buf) > trans->transid); 3515d4f98a2SYan Zheng if (new_root_objectid == BTRFS_TREE_RELOC_OBJECTID) 352e339a6b0SJosef Bacik ret = btrfs_inc_ref(trans, root, cow, 1); 3535d4f98a2SYan Zheng else 354e339a6b0SJosef Bacik ret = btrfs_inc_ref(trans, root, cow, 0); 355867ed321SJosef Bacik if (ret) { 35672c9925fSFilipe Manana btrfs_tree_unlock(cow); 35772c9925fSFilipe Manana free_extent_buffer(cow); 358867ed321SJosef Bacik btrfs_abort_transaction(trans, ret); 359be20aa9dSChris Mason return ret; 360867ed321SJosef Bacik } 361be20aa9dSChris Mason 362be20aa9dSChris Mason btrfs_mark_buffer_dirty(cow); 363be20aa9dSChris Mason *cow_ret = cow; 364be20aa9dSChris Mason return 0; 365be20aa9dSChris Mason } 366be20aa9dSChris Mason 367d352ac68SChris Mason /* 3685d4f98a2SYan Zheng * check if the tree block can be shared by multiple trees 3695d4f98a2SYan Zheng */ 3705d4f98a2SYan Zheng int btrfs_block_can_be_shared(struct btrfs_root *root, 3715d4f98a2SYan Zheng struct extent_buffer *buf) 3725d4f98a2SYan Zheng { 3735d4f98a2SYan Zheng /* 37492a7cc42SQu Wenruo * Tree blocks not in shareable trees and tree roots are never shared. 37592a7cc42SQu Wenruo * If a block was allocated after the last snapshot and the block was 37692a7cc42SQu Wenruo * not allocated by tree relocation, we know the block is not shared. 3775d4f98a2SYan Zheng */ 37892a7cc42SQu Wenruo if (test_bit(BTRFS_ROOT_SHAREABLE, &root->state) && 3795d4f98a2SYan Zheng buf != root->node && buf != root->commit_root && 3805d4f98a2SYan Zheng (btrfs_header_generation(buf) <= 3815d4f98a2SYan Zheng btrfs_root_last_snapshot(&root->root_item) || 3825d4f98a2SYan Zheng btrfs_header_flag(buf, BTRFS_HEADER_FLAG_RELOC))) 3835d4f98a2SYan Zheng return 1; 384a79865c6SNikolay Borisov 3855d4f98a2SYan Zheng return 0; 3865d4f98a2SYan Zheng } 3875d4f98a2SYan Zheng 3885d4f98a2SYan Zheng static noinline int update_ref_for_cow(struct btrfs_trans_handle *trans, 3895d4f98a2SYan Zheng struct btrfs_root *root, 3905d4f98a2SYan Zheng struct extent_buffer *buf, 391f0486c68SYan, Zheng struct extent_buffer *cow, 392f0486c68SYan, Zheng int *last_ref) 3935d4f98a2SYan Zheng { 3940b246afaSJeff Mahoney struct btrfs_fs_info *fs_info = root->fs_info; 3955d4f98a2SYan Zheng u64 refs; 3965d4f98a2SYan Zheng u64 owner; 3975d4f98a2SYan Zheng u64 flags; 3985d4f98a2SYan Zheng u64 new_flags = 0; 3995d4f98a2SYan Zheng int ret; 4005d4f98a2SYan Zheng 4015d4f98a2SYan Zheng /* 4025d4f98a2SYan Zheng * Backrefs update rules: 4035d4f98a2SYan Zheng * 4045d4f98a2SYan Zheng * Always use full backrefs for extent pointers in tree block 4055d4f98a2SYan Zheng * allocated by tree relocation. 4065d4f98a2SYan Zheng * 4075d4f98a2SYan Zheng * If a shared tree block is no longer referenced by its owner 4085d4f98a2SYan Zheng * tree (btrfs_header_owner(buf) == root->root_key.objectid), 4095d4f98a2SYan Zheng * use full backrefs for extent pointers in tree block. 4105d4f98a2SYan Zheng * 4115d4f98a2SYan Zheng * If a tree block is been relocating 4125d4f98a2SYan Zheng * (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID), 4135d4f98a2SYan Zheng * use full backrefs for extent pointers in tree block. 4145d4f98a2SYan Zheng * The reason for this is some operations (such as drop tree) 4155d4f98a2SYan Zheng * are only allowed for blocks use full backrefs. 4165d4f98a2SYan Zheng */ 4175d4f98a2SYan Zheng 4185d4f98a2SYan Zheng if (btrfs_block_can_be_shared(root, buf)) { 4192ff7e61eSJeff Mahoney ret = btrfs_lookup_extent_info(trans, fs_info, buf->start, 4203173a18fSJosef Bacik btrfs_header_level(buf), 1, 4213173a18fSJosef Bacik &refs, &flags); 422be1a5564SMark Fasheh if (ret) 423be1a5564SMark Fasheh return ret; 424e5df9573SMark Fasheh if (refs == 0) { 425e5df9573SMark Fasheh ret = -EROFS; 4260b246afaSJeff Mahoney btrfs_handle_fs_error(fs_info, ret, NULL); 427e5df9573SMark Fasheh return ret; 428e5df9573SMark Fasheh } 4295d4f98a2SYan Zheng } else { 4305d4f98a2SYan Zheng refs = 1; 4315d4f98a2SYan Zheng if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID || 4325d4f98a2SYan Zheng btrfs_header_backref_rev(buf) < BTRFS_MIXED_BACKREF_REV) 4335d4f98a2SYan Zheng flags = BTRFS_BLOCK_FLAG_FULL_BACKREF; 4345d4f98a2SYan Zheng else 4355d4f98a2SYan Zheng flags = 0; 4365d4f98a2SYan Zheng } 4375d4f98a2SYan Zheng 4385d4f98a2SYan Zheng owner = btrfs_header_owner(buf); 4395d4f98a2SYan Zheng BUG_ON(owner == BTRFS_TREE_RELOC_OBJECTID && 4405d4f98a2SYan Zheng !(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF)); 4415d4f98a2SYan Zheng 4425d4f98a2SYan Zheng if (refs > 1) { 4435d4f98a2SYan Zheng if ((owner == root->root_key.objectid || 4445d4f98a2SYan Zheng root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID) && 4455d4f98a2SYan Zheng !(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF)) { 446e339a6b0SJosef Bacik ret = btrfs_inc_ref(trans, root, buf, 1); 447692826b2SJeff Mahoney if (ret) 448692826b2SJeff Mahoney return ret; 4495d4f98a2SYan Zheng 4505d4f98a2SYan Zheng if (root->root_key.objectid == 4515d4f98a2SYan Zheng BTRFS_TREE_RELOC_OBJECTID) { 452e339a6b0SJosef Bacik ret = btrfs_dec_ref(trans, root, buf, 0); 453692826b2SJeff Mahoney if (ret) 454692826b2SJeff Mahoney return ret; 455e339a6b0SJosef Bacik ret = btrfs_inc_ref(trans, root, cow, 1); 456692826b2SJeff Mahoney if (ret) 457692826b2SJeff Mahoney return ret; 4585d4f98a2SYan Zheng } 4595d4f98a2SYan Zheng new_flags |= BTRFS_BLOCK_FLAG_FULL_BACKREF; 4605d4f98a2SYan Zheng } else { 4615d4f98a2SYan Zheng 4625d4f98a2SYan Zheng if (root->root_key.objectid == 4635d4f98a2SYan Zheng BTRFS_TREE_RELOC_OBJECTID) 464e339a6b0SJosef Bacik ret = btrfs_inc_ref(trans, root, cow, 1); 4655d4f98a2SYan Zheng else 466e339a6b0SJosef Bacik ret = btrfs_inc_ref(trans, root, cow, 0); 467692826b2SJeff Mahoney if (ret) 468692826b2SJeff Mahoney return ret; 4695d4f98a2SYan Zheng } 4705d4f98a2SYan Zheng if (new_flags != 0) { 4714aec05faSJosef Bacik ret = btrfs_set_disk_extent_flags(trans, buf, new_flags); 472be1a5564SMark Fasheh if (ret) 473be1a5564SMark Fasheh return ret; 4745d4f98a2SYan Zheng } 4755d4f98a2SYan Zheng } else { 4765d4f98a2SYan Zheng if (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF) { 4775d4f98a2SYan Zheng if (root->root_key.objectid == 4785d4f98a2SYan Zheng BTRFS_TREE_RELOC_OBJECTID) 479e339a6b0SJosef Bacik ret = btrfs_inc_ref(trans, root, cow, 1); 4805d4f98a2SYan Zheng else 481e339a6b0SJosef Bacik ret = btrfs_inc_ref(trans, root, cow, 0); 482692826b2SJeff Mahoney if (ret) 483692826b2SJeff Mahoney return ret; 484e339a6b0SJosef Bacik ret = btrfs_dec_ref(trans, root, buf, 1); 485692826b2SJeff Mahoney if (ret) 486692826b2SJeff Mahoney return ret; 4875d4f98a2SYan Zheng } 488190a8339SJosef Bacik btrfs_clear_buffer_dirty(trans, buf); 489f0486c68SYan, Zheng *last_ref = 1; 4905d4f98a2SYan Zheng } 4915d4f98a2SYan Zheng return 0; 4925d4f98a2SYan Zheng } 4935d4f98a2SYan Zheng 4945d4f98a2SYan Zheng /* 495d397712bSChris Mason * does the dirty work in cow of a single block. The parent block (if 496d397712bSChris Mason * supplied) is updated to point to the new cow copy. The new buffer is marked 497d397712bSChris Mason * dirty and returned locked. If you modify the block it needs to be marked 498d397712bSChris Mason * dirty again. 499d352ac68SChris Mason * 500d352ac68SChris Mason * search_start -- an allocation hint for the new block 501d352ac68SChris Mason * 502d397712bSChris Mason * empty_size -- a hint that you plan on doing more cow. This is the size in 503d397712bSChris Mason * bytes the allocator should try to find free next to the block it returns. 504d397712bSChris Mason * This is just a hint and may be ignored by the allocator. 505d352ac68SChris Mason */ 506d397712bSChris Mason static noinline int __btrfs_cow_block(struct btrfs_trans_handle *trans, 5075f39d397SChris Mason struct btrfs_root *root, 5085f39d397SChris Mason struct extent_buffer *buf, 5095f39d397SChris Mason struct extent_buffer *parent, int parent_slot, 5105f39d397SChris Mason struct extent_buffer **cow_ret, 5119631e4ccSJosef Bacik u64 search_start, u64 empty_size, 5129631e4ccSJosef Bacik enum btrfs_lock_nesting nest) 5136702ed49SChris Mason { 5140b246afaSJeff Mahoney struct btrfs_fs_info *fs_info = root->fs_info; 5155d4f98a2SYan Zheng struct btrfs_disk_key disk_key; 5165f39d397SChris Mason struct extent_buffer *cow; 517be1a5564SMark Fasheh int level, ret; 518f0486c68SYan, Zheng int last_ref = 0; 519925baeddSChris Mason int unlock_orig = 0; 5200f5053ebSGoldwyn Rodrigues u64 parent_start = 0; 5216702ed49SChris Mason 522925baeddSChris Mason if (*cow_ret == buf) 523925baeddSChris Mason unlock_orig = 1; 524925baeddSChris Mason 52549d0c642SFilipe Manana btrfs_assert_tree_write_locked(buf); 526925baeddSChris Mason 52792a7cc42SQu Wenruo WARN_ON(test_bit(BTRFS_ROOT_SHAREABLE, &root->state) && 5280b246afaSJeff Mahoney trans->transid != fs_info->running_transaction->transid); 52992a7cc42SQu Wenruo WARN_ON(test_bit(BTRFS_ROOT_SHAREABLE, &root->state) && 53027cdeb70SMiao Xie trans->transid != root->last_trans); 5315f39d397SChris Mason 5327bb86316SChris Mason level = btrfs_header_level(buf); 53331840ae1SZheng Yan 5345d4f98a2SYan Zheng if (level == 0) 5355d4f98a2SYan Zheng btrfs_item_key(buf, &disk_key, 0); 5365d4f98a2SYan Zheng else 5375d4f98a2SYan Zheng btrfs_node_key(buf, &disk_key, 0); 5385d4f98a2SYan Zheng 5390f5053ebSGoldwyn Rodrigues if ((root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID) && parent) 5405d4f98a2SYan Zheng parent_start = parent->start; 5415d4f98a2SYan Zheng 54279bd3712SFilipe Manana cow = btrfs_alloc_tree_block(trans, root, parent_start, 54379bd3712SFilipe Manana root->root_key.objectid, &disk_key, level, 54479bd3712SFilipe Manana search_start, empty_size, nest); 5456702ed49SChris Mason if (IS_ERR(cow)) 5466702ed49SChris Mason return PTR_ERR(cow); 5476702ed49SChris Mason 548b4ce94deSChris Mason /* cow is set to blocking by btrfs_init_new_buffer */ 549b4ce94deSChris Mason 55058e8012cSDavid Sterba copy_extent_buffer_full(cow, buf); 551db94535dSChris Mason btrfs_set_header_bytenr(cow, cow->start); 5525f39d397SChris Mason btrfs_set_header_generation(cow, trans->transid); 5535d4f98a2SYan Zheng btrfs_set_header_backref_rev(cow, BTRFS_MIXED_BACKREF_REV); 5545d4f98a2SYan Zheng btrfs_clear_header_flag(cow, BTRFS_HEADER_FLAG_WRITTEN | 5555d4f98a2SYan Zheng BTRFS_HEADER_FLAG_RELOC); 5565d4f98a2SYan Zheng if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID) 5575d4f98a2SYan Zheng btrfs_set_header_flag(cow, BTRFS_HEADER_FLAG_RELOC); 5585d4f98a2SYan Zheng else 5595f39d397SChris Mason btrfs_set_header_owner(cow, root->root_key.objectid); 5606702ed49SChris Mason 561de37aa51SNikolay Borisov write_extent_buffer_fsid(cow, fs_info->fs_devices->metadata_uuid); 5622b82032cSYan Zheng 563be1a5564SMark Fasheh ret = update_ref_for_cow(trans, root, buf, cow, &last_ref); 564b68dc2a9SMark Fasheh if (ret) { 565572c83acSJosef Bacik btrfs_tree_unlock(cow); 566572c83acSJosef Bacik free_extent_buffer(cow); 56766642832SJeff Mahoney btrfs_abort_transaction(trans, ret); 568b68dc2a9SMark Fasheh return ret; 569b68dc2a9SMark Fasheh } 5701a40e23bSZheng Yan 57192a7cc42SQu Wenruo if (test_bit(BTRFS_ROOT_SHAREABLE, &root->state)) { 57283d4cfd4SJosef Bacik ret = btrfs_reloc_cow_block(trans, root, buf, cow); 57393314e3bSZhaolei if (ret) { 574572c83acSJosef Bacik btrfs_tree_unlock(cow); 575572c83acSJosef Bacik free_extent_buffer(cow); 57666642832SJeff Mahoney btrfs_abort_transaction(trans, ret); 57783d4cfd4SJosef Bacik return ret; 57883d4cfd4SJosef Bacik } 57993314e3bSZhaolei } 5803fd0a558SYan, Zheng 5816702ed49SChris Mason if (buf == root->node) { 582925baeddSChris Mason WARN_ON(parent && parent != buf); 5835d4f98a2SYan Zheng if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID || 5845d4f98a2SYan Zheng btrfs_header_backref_rev(buf) < BTRFS_MIXED_BACKREF_REV) 5855d4f98a2SYan Zheng parent_start = buf->start; 586925baeddSChris Mason 58767439dadSDavid Sterba atomic_inc(&cow->refs); 588406808abSFilipe Manana ret = btrfs_tree_mod_log_insert_root(root->node, cow, true); 589d9d19a01SDavid Sterba BUG_ON(ret < 0); 590240f62c8SChris Mason rcu_assign_pointer(root->node, cow); 591925baeddSChris Mason 5927a163608SFilipe Manana btrfs_free_tree_block(trans, btrfs_root_id(root), buf, 5937a163608SFilipe Manana parent_start, last_ref); 5945f39d397SChris Mason free_extent_buffer(buf); 5950b86a832SChris Mason add_root_to_dirty_list(root); 5966702ed49SChris Mason } else { 5975d4f98a2SYan Zheng WARN_ON(trans->transid != btrfs_header_generation(parent)); 598f3a84ccdSFilipe Manana btrfs_tree_mod_log_insert_key(parent, parent_slot, 59933cff222SFilipe Manana BTRFS_MOD_LOG_KEY_REPLACE); 6005f39d397SChris Mason btrfs_set_node_blockptr(parent, parent_slot, 601db94535dSChris Mason cow->start); 60274493f7aSChris Mason btrfs_set_node_ptr_generation(parent, parent_slot, 60374493f7aSChris Mason trans->transid); 6046702ed49SChris Mason btrfs_mark_buffer_dirty(parent); 6055de865eeSFilipe David Borba Manana if (last_ref) { 606f3a84ccdSFilipe Manana ret = btrfs_tree_mod_log_free_eb(buf); 6075de865eeSFilipe David Borba Manana if (ret) { 608572c83acSJosef Bacik btrfs_tree_unlock(cow); 609572c83acSJosef Bacik free_extent_buffer(cow); 61066642832SJeff Mahoney btrfs_abort_transaction(trans, ret); 6115de865eeSFilipe David Borba Manana return ret; 6125de865eeSFilipe David Borba Manana } 6135de865eeSFilipe David Borba Manana } 6147a163608SFilipe Manana btrfs_free_tree_block(trans, btrfs_root_id(root), buf, 6157a163608SFilipe Manana parent_start, last_ref); 6166702ed49SChris Mason } 617925baeddSChris Mason if (unlock_orig) 618925baeddSChris Mason btrfs_tree_unlock(buf); 6193083ee2eSJosef Bacik free_extent_buffer_stale(buf); 6206702ed49SChris Mason btrfs_mark_buffer_dirty(cow); 6216702ed49SChris Mason *cow_ret = cow; 6226702ed49SChris Mason return 0; 6236702ed49SChris Mason } 6246702ed49SChris Mason 6255d4f98a2SYan Zheng static inline int should_cow_block(struct btrfs_trans_handle *trans, 6265d4f98a2SYan Zheng struct btrfs_root *root, 6275d4f98a2SYan Zheng struct extent_buffer *buf) 6285d4f98a2SYan Zheng { 629f5ee5c9aSJeff Mahoney if (btrfs_is_testing(root->fs_info)) 630faa2dbf0SJosef Bacik return 0; 631fccb84c9SDavid Sterba 632d1980131SDavid Sterba /* Ensure we can see the FORCE_COW bit */ 633d1980131SDavid Sterba smp_mb__before_atomic(); 634f1ebcc74SLiu Bo 635f1ebcc74SLiu Bo /* 636f1ebcc74SLiu Bo * We do not need to cow a block if 637f1ebcc74SLiu Bo * 1) this block is not created or changed in this transaction; 638f1ebcc74SLiu Bo * 2) this block does not belong to TREE_RELOC tree; 639f1ebcc74SLiu Bo * 3) the root is not forced COW. 640f1ebcc74SLiu Bo * 641f1ebcc74SLiu Bo * What is forced COW: 64201327610SNicholas D Steeves * when we create snapshot during committing the transaction, 64352042d8eSAndrea Gelmini * after we've finished copying src root, we must COW the shared 644f1ebcc74SLiu Bo * block to ensure the metadata consistency. 645f1ebcc74SLiu Bo */ 6465d4f98a2SYan Zheng if (btrfs_header_generation(buf) == trans->transid && 6475d4f98a2SYan Zheng !btrfs_header_flag(buf, BTRFS_HEADER_FLAG_WRITTEN) && 6485d4f98a2SYan Zheng !(root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID && 649f1ebcc74SLiu Bo btrfs_header_flag(buf, BTRFS_HEADER_FLAG_RELOC)) && 65027cdeb70SMiao Xie !test_bit(BTRFS_ROOT_FORCE_COW, &root->state)) 6515d4f98a2SYan Zheng return 0; 6525d4f98a2SYan Zheng return 1; 6535d4f98a2SYan Zheng } 6545d4f98a2SYan Zheng 655d352ac68SChris Mason /* 656d352ac68SChris Mason * cows a single block, see __btrfs_cow_block for the real work. 65701327610SNicholas D Steeves * This version of it has extra checks so that a block isn't COWed more than 658d352ac68SChris Mason * once per transaction, as long as it hasn't been written yet 659d352ac68SChris Mason */ 660d397712bSChris Mason noinline int btrfs_cow_block(struct btrfs_trans_handle *trans, 6615f39d397SChris Mason struct btrfs_root *root, struct extent_buffer *buf, 6625f39d397SChris Mason struct extent_buffer *parent, int parent_slot, 6639631e4ccSJosef Bacik struct extent_buffer **cow_ret, 6649631e4ccSJosef Bacik enum btrfs_lock_nesting nest) 66502217ed2SChris Mason { 6660b246afaSJeff Mahoney struct btrfs_fs_info *fs_info = root->fs_info; 6676702ed49SChris Mason u64 search_start; 668f510cfecSChris Mason int ret; 669dc17ff8fSChris Mason 67083354f07SJosef Bacik if (test_bit(BTRFS_ROOT_DELETING, &root->state)) 67183354f07SJosef Bacik btrfs_err(fs_info, 67283354f07SJosef Bacik "COW'ing blocks on a fs root that's being dropped"); 67383354f07SJosef Bacik 6740b246afaSJeff Mahoney if (trans->transaction != fs_info->running_transaction) 67531b1a2bdSJulia Lawall WARN(1, KERN_CRIT "trans %llu running %llu\n", 676c1c9ff7cSGeert Uytterhoeven trans->transid, 6770b246afaSJeff Mahoney fs_info->running_transaction->transid); 67831b1a2bdSJulia Lawall 6790b246afaSJeff Mahoney if (trans->transid != fs_info->generation) 68031b1a2bdSJulia Lawall WARN(1, KERN_CRIT "trans %llu running %llu\n", 6810b246afaSJeff Mahoney trans->transid, fs_info->generation); 682dc17ff8fSChris Mason 6835d4f98a2SYan Zheng if (!should_cow_block(trans, root, buf)) { 68402217ed2SChris Mason *cow_ret = buf; 68502217ed2SChris Mason return 0; 68602217ed2SChris Mason } 687c487685dSChris Mason 688ee22184bSByongho Lee search_start = buf->start & ~((u64)SZ_1G - 1); 689b4ce94deSChris Mason 690f616f5cdSQu Wenruo /* 691f616f5cdSQu Wenruo * Before CoWing this block for later modification, check if it's 692f616f5cdSQu Wenruo * the subtree root and do the delayed subtree trace if needed. 693f616f5cdSQu Wenruo * 694f616f5cdSQu Wenruo * Also We don't care about the error, as it's handled internally. 695f616f5cdSQu Wenruo */ 696f616f5cdSQu Wenruo btrfs_qgroup_trace_subtree_after_cow(trans, root, buf); 697f510cfecSChris Mason ret = __btrfs_cow_block(trans, root, buf, parent, 6989631e4ccSJosef Bacik parent_slot, cow_ret, search_start, 0, nest); 6991abe9b8aSliubo 7001abe9b8aSliubo trace_btrfs_cow_block(root, buf, *cow_ret); 7011abe9b8aSliubo 702f510cfecSChris Mason return ret; 7032c90e5d6SChris Mason } 704f75e2b79SJosef Bacik ALLOW_ERROR_INJECTION(btrfs_cow_block, ERRNO); 7056702ed49SChris Mason 706d352ac68SChris Mason /* 707d352ac68SChris Mason * helper function for defrag to decide if two blocks pointed to by a 708d352ac68SChris Mason * node are actually close by 709d352ac68SChris Mason */ 7106b80053dSChris Mason static int close_blocks(u64 blocknr, u64 other, u32 blocksize) 7116702ed49SChris Mason { 7126b80053dSChris Mason if (blocknr < other && other - (blocknr + blocksize) < 32768) 7136702ed49SChris Mason return 1; 7146b80053dSChris Mason if (blocknr > other && blocknr - (other + blocksize) < 32768) 7156702ed49SChris Mason return 1; 71602217ed2SChris Mason return 0; 71702217ed2SChris Mason } 71802217ed2SChris Mason 719ce6ef5abSDavid Sterba #ifdef __LITTLE_ENDIAN 720ce6ef5abSDavid Sterba 721ce6ef5abSDavid Sterba /* 722ce6ef5abSDavid Sterba * Compare two keys, on little-endian the disk order is same as CPU order and 723ce6ef5abSDavid Sterba * we can avoid the conversion. 724ce6ef5abSDavid Sterba */ 725ce6ef5abSDavid Sterba static int comp_keys(const struct btrfs_disk_key *disk_key, 726ce6ef5abSDavid Sterba const struct btrfs_key *k2) 727ce6ef5abSDavid Sterba { 728ce6ef5abSDavid Sterba const struct btrfs_key *k1 = (const struct btrfs_key *)disk_key; 729ce6ef5abSDavid Sterba 730ce6ef5abSDavid Sterba return btrfs_comp_cpu_keys(k1, k2); 731ce6ef5abSDavid Sterba } 732ce6ef5abSDavid Sterba 733ce6ef5abSDavid Sterba #else 734ce6ef5abSDavid Sterba 735081e9573SChris Mason /* 736081e9573SChris Mason * compare two keys in a memcmp fashion 737081e9573SChris Mason */ 738310712b2SOmar Sandoval static int comp_keys(const struct btrfs_disk_key *disk, 739310712b2SOmar Sandoval const struct btrfs_key *k2) 740081e9573SChris Mason { 741081e9573SChris Mason struct btrfs_key k1; 742081e9573SChris Mason 743081e9573SChris Mason btrfs_disk_key_to_cpu(&k1, disk); 744081e9573SChris Mason 74520736abaSDiego Calleja return btrfs_comp_cpu_keys(&k1, k2); 746081e9573SChris Mason } 747ce6ef5abSDavid Sterba #endif 748081e9573SChris Mason 749f3465ca4SJosef Bacik /* 750f3465ca4SJosef Bacik * same as comp_keys only with two btrfs_key's 751f3465ca4SJosef Bacik */ 752e1f60a65SDavid Sterba int __pure btrfs_comp_cpu_keys(const struct btrfs_key *k1, const struct btrfs_key *k2) 753f3465ca4SJosef Bacik { 754f3465ca4SJosef Bacik if (k1->objectid > k2->objectid) 755f3465ca4SJosef Bacik return 1; 756f3465ca4SJosef Bacik if (k1->objectid < k2->objectid) 757f3465ca4SJosef Bacik return -1; 758f3465ca4SJosef Bacik if (k1->type > k2->type) 759f3465ca4SJosef Bacik return 1; 760f3465ca4SJosef Bacik if (k1->type < k2->type) 761f3465ca4SJosef Bacik return -1; 762f3465ca4SJosef Bacik if (k1->offset > k2->offset) 763f3465ca4SJosef Bacik return 1; 764f3465ca4SJosef Bacik if (k1->offset < k2->offset) 765f3465ca4SJosef Bacik return -1; 766f3465ca4SJosef Bacik return 0; 767f3465ca4SJosef Bacik } 768081e9573SChris Mason 769d352ac68SChris Mason /* 770d352ac68SChris Mason * this is used by the defrag code to go through all the 771d352ac68SChris Mason * leaves pointed to by a node and reallocate them so that 772d352ac68SChris Mason * disk order is close to key order 773d352ac68SChris Mason */ 7746702ed49SChris Mason int btrfs_realloc_node(struct btrfs_trans_handle *trans, 7755f39d397SChris Mason struct btrfs_root *root, struct extent_buffer *parent, 776de78b51aSEric Sandeen int start_slot, u64 *last_ret, 777a6b6e75eSChris Mason struct btrfs_key *progress) 7786702ed49SChris Mason { 7790b246afaSJeff Mahoney struct btrfs_fs_info *fs_info = root->fs_info; 7806b80053dSChris Mason struct extent_buffer *cur; 7816702ed49SChris Mason u64 blocknr; 782e9d0b13bSChris Mason u64 search_start = *last_ret; 783e9d0b13bSChris Mason u64 last_block = 0; 7846702ed49SChris Mason u64 other; 7856702ed49SChris Mason u32 parent_nritems; 7866702ed49SChris Mason int end_slot; 7876702ed49SChris Mason int i; 7886702ed49SChris Mason int err = 0; 7896b80053dSChris Mason u32 blocksize; 790081e9573SChris Mason int progress_passed = 0; 791081e9573SChris Mason struct btrfs_disk_key disk_key; 7926702ed49SChris Mason 7930b246afaSJeff Mahoney WARN_ON(trans->transaction != fs_info->running_transaction); 7940b246afaSJeff Mahoney WARN_ON(trans->transid != fs_info->generation); 79586479a04SChris Mason 7966b80053dSChris Mason parent_nritems = btrfs_header_nritems(parent); 7970b246afaSJeff Mahoney blocksize = fs_info->nodesize; 7985dfe2be7SFilipe Manana end_slot = parent_nritems - 1; 7996702ed49SChris Mason 8005dfe2be7SFilipe Manana if (parent_nritems <= 1) 8016702ed49SChris Mason return 0; 8026702ed49SChris Mason 8035dfe2be7SFilipe Manana for (i = start_slot; i <= end_slot; i++) { 8046702ed49SChris Mason int close = 1; 805a6b6e75eSChris Mason 806081e9573SChris Mason btrfs_node_key(parent, &disk_key, i); 807081e9573SChris Mason if (!progress_passed && comp_keys(&disk_key, progress) < 0) 808081e9573SChris Mason continue; 809081e9573SChris Mason 810081e9573SChris Mason progress_passed = 1; 8116b80053dSChris Mason blocknr = btrfs_node_blockptr(parent, i); 812e9d0b13bSChris Mason if (last_block == 0) 813e9d0b13bSChris Mason last_block = blocknr; 8145708b959SChris Mason 8156702ed49SChris Mason if (i > 0) { 8166b80053dSChris Mason other = btrfs_node_blockptr(parent, i - 1); 8176b80053dSChris Mason close = close_blocks(blocknr, other, blocksize); 8186702ed49SChris Mason } 8195dfe2be7SFilipe Manana if (!close && i < end_slot) { 8206b80053dSChris Mason other = btrfs_node_blockptr(parent, i + 1); 8216b80053dSChris Mason close = close_blocks(blocknr, other, blocksize); 8226702ed49SChris Mason } 823e9d0b13bSChris Mason if (close) { 824e9d0b13bSChris Mason last_block = blocknr; 8256702ed49SChris Mason continue; 826e9d0b13bSChris Mason } 8276702ed49SChris Mason 828206983b7SJosef Bacik cur = btrfs_read_node_slot(parent, i); 829206983b7SJosef Bacik if (IS_ERR(cur)) 83064c043deSLiu Bo return PTR_ERR(cur); 831e9d0b13bSChris Mason if (search_start == 0) 8326b80053dSChris Mason search_start = last_block; 833e9d0b13bSChris Mason 834e7a84565SChris Mason btrfs_tree_lock(cur); 8356b80053dSChris Mason err = __btrfs_cow_block(trans, root, cur, parent, i, 836e7a84565SChris Mason &cur, search_start, 8376b80053dSChris Mason min(16 * blocksize, 8389631e4ccSJosef Bacik (end_slot - i) * blocksize), 8399631e4ccSJosef Bacik BTRFS_NESTING_COW); 840252c38f0SYan if (err) { 841e7a84565SChris Mason btrfs_tree_unlock(cur); 8426b80053dSChris Mason free_extent_buffer(cur); 8436702ed49SChris Mason break; 844252c38f0SYan } 845e7a84565SChris Mason search_start = cur->start; 846e7a84565SChris Mason last_block = cur->start; 847f2183bdeSChris Mason *last_ret = search_start; 848e7a84565SChris Mason btrfs_tree_unlock(cur); 849e7a84565SChris Mason free_extent_buffer(cur); 8506702ed49SChris Mason } 8516702ed49SChris Mason return err; 8526702ed49SChris Mason } 8536702ed49SChris Mason 85474123bd7SChris Mason /* 855fb81212cSFilipe Manana * Search for a key in the given extent_buffer. 8565f39d397SChris Mason * 857a724f313SFilipe Manana * The lower boundary for the search is specified by the slot number @first_slot. 858fdf8d595SAnand Jain * Use a value of 0 to search over the whole extent buffer. Works for both 859fdf8d595SAnand Jain * leaves and nodes. 86074123bd7SChris Mason * 861fb81212cSFilipe Manana * The slot in the extent buffer is returned via @slot. If the key exists in the 862fb81212cSFilipe Manana * extent buffer, then @slot will point to the slot where the key is, otherwise 863fb81212cSFilipe Manana * it points to the slot where you would insert the key. 864fb81212cSFilipe Manana * 865fb81212cSFilipe Manana * Slot may point to the total number of items (i.e. one position beyond the last 866fb81212cSFilipe Manana * key) if the key is bigger than the last key in the extent buffer. 86774123bd7SChris Mason */ 868fdf8d595SAnand Jain int btrfs_bin_search(struct extent_buffer *eb, int first_slot, 86967d5e289SMarcos Paulo de Souza const struct btrfs_key *key, int *slot) 870be0e5c09SChris Mason { 871fb81212cSFilipe Manana unsigned long p; 872fb81212cSFilipe Manana int item_size; 873a724f313SFilipe Manana /* 874a724f313SFilipe Manana * Use unsigned types for the low and high slots, so that we get a more 875a724f313SFilipe Manana * efficient division in the search loop below. 876a724f313SFilipe Manana */ 877a724f313SFilipe Manana u32 low = first_slot; 878a724f313SFilipe Manana u32 high = btrfs_header_nritems(eb); 879be0e5c09SChris Mason int ret; 8805cd17f34SDavid Sterba const int key_size = sizeof(struct btrfs_disk_key); 881be0e5c09SChris Mason 882a724f313SFilipe Manana if (unlikely(low > high)) { 8835e24e9afSLiu Bo btrfs_err(eb->fs_info, 884a724f313SFilipe Manana "%s: low (%u) > high (%u) eb %llu owner %llu level %d", 8855e24e9afSLiu Bo __func__, low, high, eb->start, 8865e24e9afSLiu Bo btrfs_header_owner(eb), btrfs_header_level(eb)); 8875e24e9afSLiu Bo return -EINVAL; 8885e24e9afSLiu Bo } 8895e24e9afSLiu Bo 890fb81212cSFilipe Manana if (btrfs_header_level(eb) == 0) { 891fb81212cSFilipe Manana p = offsetof(struct btrfs_leaf, items); 892fb81212cSFilipe Manana item_size = sizeof(struct btrfs_item); 893fb81212cSFilipe Manana } else { 894fb81212cSFilipe Manana p = offsetof(struct btrfs_node, ptrs); 895fb81212cSFilipe Manana item_size = sizeof(struct btrfs_key_ptr); 896fb81212cSFilipe Manana } 897fb81212cSFilipe Manana 898be0e5c09SChris Mason while (low < high) { 8995cd17f34SDavid Sterba unsigned long oip; 9005cd17f34SDavid Sterba unsigned long offset; 9015cd17f34SDavid Sterba struct btrfs_disk_key *tmp; 9025cd17f34SDavid Sterba struct btrfs_disk_key unaligned; 9035cd17f34SDavid Sterba int mid; 9045cd17f34SDavid Sterba 905be0e5c09SChris Mason mid = (low + high) / 2; 9065f39d397SChris Mason offset = p + mid * item_size; 9075cd17f34SDavid Sterba oip = offset_in_page(offset); 9085f39d397SChris Mason 9095cd17f34SDavid Sterba if (oip + key_size <= PAGE_SIZE) { 910884b07d0SQu Wenruo const unsigned long idx = get_eb_page_index(offset); 9115cd17f34SDavid Sterba char *kaddr = page_address(eb->pages[idx]); 912934d375bSChris Mason 913884b07d0SQu Wenruo oip = get_eb_offset_in_page(eb, offset); 9145cd17f34SDavid Sterba tmp = (struct btrfs_disk_key *)(kaddr + oip); 9155cd17f34SDavid Sterba } else { 9165cd17f34SDavid Sterba read_extent_buffer(eb, &unaligned, offset, key_size); 9175f39d397SChris Mason tmp = &unaligned; 918479965d6SChris Mason } 919479965d6SChris Mason 920be0e5c09SChris Mason ret = comp_keys(tmp, key); 921be0e5c09SChris Mason 922be0e5c09SChris Mason if (ret < 0) 923be0e5c09SChris Mason low = mid + 1; 924be0e5c09SChris Mason else if (ret > 0) 925be0e5c09SChris Mason high = mid; 926be0e5c09SChris Mason else { 927be0e5c09SChris Mason *slot = mid; 928be0e5c09SChris Mason return 0; 929be0e5c09SChris Mason } 930be0e5c09SChris Mason } 931be0e5c09SChris Mason *slot = low; 932be0e5c09SChris Mason return 1; 933be0e5c09SChris Mason } 934be0e5c09SChris Mason 935f0486c68SYan, Zheng static void root_add_used(struct btrfs_root *root, u32 size) 936f0486c68SYan, Zheng { 937f0486c68SYan, Zheng spin_lock(&root->accounting_lock); 938f0486c68SYan, Zheng btrfs_set_root_used(&root->root_item, 939f0486c68SYan, Zheng btrfs_root_used(&root->root_item) + size); 940f0486c68SYan, Zheng spin_unlock(&root->accounting_lock); 941f0486c68SYan, Zheng } 942f0486c68SYan, Zheng 943f0486c68SYan, Zheng static void root_sub_used(struct btrfs_root *root, u32 size) 944f0486c68SYan, Zheng { 945f0486c68SYan, Zheng spin_lock(&root->accounting_lock); 946f0486c68SYan, Zheng btrfs_set_root_used(&root->root_item, 947f0486c68SYan, Zheng btrfs_root_used(&root->root_item) - size); 948f0486c68SYan, Zheng spin_unlock(&root->accounting_lock); 949f0486c68SYan, Zheng } 950f0486c68SYan, Zheng 951d352ac68SChris Mason /* given a node and slot number, this reads the blocks it points to. The 952d352ac68SChris Mason * extent buffer is returned with a reference taken (but unlocked). 953d352ac68SChris Mason */ 9544b231ae4SDavid Sterba struct extent_buffer *btrfs_read_node_slot(struct extent_buffer *parent, 9554b231ae4SDavid Sterba int slot) 956bb803951SChris Mason { 957ca7a79adSChris Mason int level = btrfs_header_level(parent); 958789d6a3aSQu Wenruo struct btrfs_tree_parent_check check = { 0 }; 959416bc658SJosef Bacik struct extent_buffer *eb; 960416bc658SJosef Bacik 961fb770ae4SLiu Bo if (slot < 0 || slot >= btrfs_header_nritems(parent)) 962fb770ae4SLiu Bo return ERR_PTR(-ENOENT); 963ca7a79adSChris Mason 964d4694728SJosef Bacik ASSERT(level); 965ca7a79adSChris Mason 966789d6a3aSQu Wenruo check.level = level - 1; 967789d6a3aSQu Wenruo check.transid = btrfs_node_ptr_generation(parent, slot); 968789d6a3aSQu Wenruo check.owner_root = btrfs_header_owner(parent); 969789d6a3aSQu Wenruo check.has_first_key = true; 970789d6a3aSQu Wenruo btrfs_node_key_to_cpu(parent, &check.first_key, slot); 971789d6a3aSQu Wenruo 972d0d20b0fSDavid Sterba eb = read_tree_block(parent->fs_info, btrfs_node_blockptr(parent, slot), 973789d6a3aSQu Wenruo &check); 9744eb150d6SQu Wenruo if (IS_ERR(eb)) 9754eb150d6SQu Wenruo return eb; 9764eb150d6SQu Wenruo if (!extent_buffer_uptodate(eb)) { 977416bc658SJosef Bacik free_extent_buffer(eb); 9784eb150d6SQu Wenruo return ERR_PTR(-EIO); 979416bc658SJosef Bacik } 980416bc658SJosef Bacik 981416bc658SJosef Bacik return eb; 982bb803951SChris Mason } 983bb803951SChris Mason 984d352ac68SChris Mason /* 985d352ac68SChris Mason * node level balancing, used to make sure nodes are in proper order for 986d352ac68SChris Mason * item deletion. We balance from the top down, so we have to make sure 987d352ac68SChris Mason * that a deletion won't leave an node completely empty later on. 988d352ac68SChris Mason */ 989e02119d5SChris Mason static noinline int balance_level(struct btrfs_trans_handle *trans, 99098ed5174SChris Mason struct btrfs_root *root, 99198ed5174SChris Mason struct btrfs_path *path, int level) 992bb803951SChris Mason { 9930b246afaSJeff Mahoney struct btrfs_fs_info *fs_info = root->fs_info; 9945f39d397SChris Mason struct extent_buffer *right = NULL; 9955f39d397SChris Mason struct extent_buffer *mid; 9965f39d397SChris Mason struct extent_buffer *left = NULL; 9975f39d397SChris Mason struct extent_buffer *parent = NULL; 998bb803951SChris Mason int ret = 0; 999bb803951SChris Mason int wret; 1000bb803951SChris Mason int pslot; 1001bb803951SChris Mason int orig_slot = path->slots[level]; 100279f95c82SChris Mason u64 orig_ptr; 1003bb803951SChris Mason 100498e6b1ebSLiu Bo ASSERT(level > 0); 1005bb803951SChris Mason 10065f39d397SChris Mason mid = path->nodes[level]; 1007b4ce94deSChris Mason 1008ac5887c8SJosef Bacik WARN_ON(path->locks[level] != BTRFS_WRITE_LOCK); 10097bb86316SChris Mason WARN_ON(btrfs_header_generation(mid) != trans->transid); 10107bb86316SChris Mason 10111d4f8a0cSChris Mason orig_ptr = btrfs_node_blockptr(mid, orig_slot); 101279f95c82SChris Mason 1013a05a9bb1SLi Zefan if (level < BTRFS_MAX_LEVEL - 1) { 10145f39d397SChris Mason parent = path->nodes[level + 1]; 1015bb803951SChris Mason pslot = path->slots[level + 1]; 1016a05a9bb1SLi Zefan } 1017bb803951SChris Mason 101840689478SChris Mason /* 101940689478SChris Mason * deal with the case where there is only one pointer in the root 102040689478SChris Mason * by promoting the node below to a root 102140689478SChris Mason */ 10225f39d397SChris Mason if (!parent) { 10235f39d397SChris Mason struct extent_buffer *child; 1024bb803951SChris Mason 10255f39d397SChris Mason if (btrfs_header_nritems(mid) != 1) 1026bb803951SChris Mason return 0; 1027bb803951SChris Mason 1028bb803951SChris Mason /* promote the child to a root */ 10294b231ae4SDavid Sterba child = btrfs_read_node_slot(mid, 0); 1030fb770ae4SLiu Bo if (IS_ERR(child)) { 1031fb770ae4SLiu Bo ret = PTR_ERR(child); 10320b246afaSJeff Mahoney btrfs_handle_fs_error(fs_info, ret, NULL); 1033305a26afSMark Fasheh goto enospc; 1034305a26afSMark Fasheh } 1035305a26afSMark Fasheh 1036925baeddSChris Mason btrfs_tree_lock(child); 10379631e4ccSJosef Bacik ret = btrfs_cow_block(trans, root, child, mid, 0, &child, 10389631e4ccSJosef Bacik BTRFS_NESTING_COW); 1039f0486c68SYan, Zheng if (ret) { 1040f0486c68SYan, Zheng btrfs_tree_unlock(child); 1041f0486c68SYan, Zheng free_extent_buffer(child); 1042f0486c68SYan, Zheng goto enospc; 1043f0486c68SYan, Zheng } 10442f375ab9SYan 1045406808abSFilipe Manana ret = btrfs_tree_mod_log_insert_root(root->node, child, true); 1046d9d19a01SDavid Sterba BUG_ON(ret < 0); 1047240f62c8SChris Mason rcu_assign_pointer(root->node, child); 1048925baeddSChris Mason 10490b86a832SChris Mason add_root_to_dirty_list(root); 1050925baeddSChris Mason btrfs_tree_unlock(child); 1051b4ce94deSChris Mason 1052925baeddSChris Mason path->locks[level] = 0; 1053bb803951SChris Mason path->nodes[level] = NULL; 1054190a8339SJosef Bacik btrfs_clear_buffer_dirty(trans, mid); 1055925baeddSChris Mason btrfs_tree_unlock(mid); 1056bb803951SChris Mason /* once for the path */ 10575f39d397SChris Mason free_extent_buffer(mid); 1058f0486c68SYan, Zheng 1059f0486c68SYan, Zheng root_sub_used(root, mid->len); 10607a163608SFilipe Manana btrfs_free_tree_block(trans, btrfs_root_id(root), mid, 0, 1); 1061bb803951SChris Mason /* once for the root ptr */ 10623083ee2eSJosef Bacik free_extent_buffer_stale(mid); 1063f0486c68SYan, Zheng return 0; 1064bb803951SChris Mason } 10655f39d397SChris Mason if (btrfs_header_nritems(mid) > 10660b246afaSJeff Mahoney BTRFS_NODEPTRS_PER_BLOCK(fs_info) / 4) 1067bb803951SChris Mason return 0; 1068bb803951SChris Mason 10699cf14029SJosef Bacik if (pslot) { 10704b231ae4SDavid Sterba left = btrfs_read_node_slot(parent, pslot - 1); 10719cf14029SJosef Bacik if (IS_ERR(left)) { 10729cf14029SJosef Bacik ret = PTR_ERR(left); 1073fb770ae4SLiu Bo left = NULL; 10749cf14029SJosef Bacik goto enospc; 10759cf14029SJosef Bacik } 1076fb770ae4SLiu Bo 1077bf77467aSJosef Bacik __btrfs_tree_lock(left, BTRFS_NESTING_LEFT); 10785f39d397SChris Mason wret = btrfs_cow_block(trans, root, left, 10799631e4ccSJosef Bacik parent, pslot - 1, &left, 1080bf59a5a2SJosef Bacik BTRFS_NESTING_LEFT_COW); 108154aa1f4dSChris Mason if (wret) { 108254aa1f4dSChris Mason ret = wret; 108354aa1f4dSChris Mason goto enospc; 108454aa1f4dSChris Mason } 10852cc58cf2SChris Mason } 1086fb770ae4SLiu Bo 10879cf14029SJosef Bacik if (pslot + 1 < btrfs_header_nritems(parent)) { 10884b231ae4SDavid Sterba right = btrfs_read_node_slot(parent, pslot + 1); 10899cf14029SJosef Bacik if (IS_ERR(right)) { 10909cf14029SJosef Bacik ret = PTR_ERR(right); 1091fb770ae4SLiu Bo right = NULL; 10929cf14029SJosef Bacik goto enospc; 10939cf14029SJosef Bacik } 1094fb770ae4SLiu Bo 1095bf77467aSJosef Bacik __btrfs_tree_lock(right, BTRFS_NESTING_RIGHT); 10965f39d397SChris Mason wret = btrfs_cow_block(trans, root, right, 10979631e4ccSJosef Bacik parent, pslot + 1, &right, 1098bf59a5a2SJosef Bacik BTRFS_NESTING_RIGHT_COW); 10992cc58cf2SChris Mason if (wret) { 11002cc58cf2SChris Mason ret = wret; 11012cc58cf2SChris Mason goto enospc; 11022cc58cf2SChris Mason } 11032cc58cf2SChris Mason } 11042cc58cf2SChris Mason 11052cc58cf2SChris Mason /* first, try to make some room in the middle buffer */ 11065f39d397SChris Mason if (left) { 11075f39d397SChris Mason orig_slot += btrfs_header_nritems(left); 1108d30a668fSDavid Sterba wret = push_node_left(trans, left, mid, 1); 110979f95c82SChris Mason if (wret < 0) 111079f95c82SChris Mason ret = wret; 1111bb803951SChris Mason } 111279f95c82SChris Mason 111379f95c82SChris Mason /* 111479f95c82SChris Mason * then try to empty the right most buffer into the middle 111579f95c82SChris Mason */ 11165f39d397SChris Mason if (right) { 1117d30a668fSDavid Sterba wret = push_node_left(trans, mid, right, 1); 111854aa1f4dSChris Mason if (wret < 0 && wret != -ENOSPC) 111979f95c82SChris Mason ret = wret; 11205f39d397SChris Mason if (btrfs_header_nritems(right) == 0) { 1121190a8339SJosef Bacik btrfs_clear_buffer_dirty(trans, right); 1122925baeddSChris Mason btrfs_tree_unlock(right); 1123016f9d0bSJosef Bacik btrfs_del_ptr(root, path, level + 1, pslot + 1); 1124f0486c68SYan, Zheng root_sub_used(root, right->len); 11257a163608SFilipe Manana btrfs_free_tree_block(trans, btrfs_root_id(root), right, 11267a163608SFilipe Manana 0, 1); 11273083ee2eSJosef Bacik free_extent_buffer_stale(right); 1128f0486c68SYan, Zheng right = NULL; 1129bb803951SChris Mason } else { 11305f39d397SChris Mason struct btrfs_disk_key right_key; 11315f39d397SChris Mason btrfs_node_key(right, &right_key, 0); 1132f3a84ccdSFilipe Manana ret = btrfs_tree_mod_log_insert_key(parent, pslot + 1, 113333cff222SFilipe Manana BTRFS_MOD_LOG_KEY_REPLACE); 11340e82bcfeSDavid Sterba BUG_ON(ret < 0); 11355f39d397SChris Mason btrfs_set_node_key(parent, &right_key, pslot + 1); 11365f39d397SChris Mason btrfs_mark_buffer_dirty(parent); 1137bb803951SChris Mason } 1138bb803951SChris Mason } 11395f39d397SChris Mason if (btrfs_header_nritems(mid) == 1) { 114079f95c82SChris Mason /* 114179f95c82SChris Mason * we're not allowed to leave a node with one item in the 114279f95c82SChris Mason * tree during a delete. A deletion from lower in the tree 114379f95c82SChris Mason * could try to delete the only pointer in this node. 114479f95c82SChris Mason * So, pull some keys from the left. 114579f95c82SChris Mason * There has to be a left pointer at this point because 114679f95c82SChris Mason * otherwise we would have pulled some pointers from the 114779f95c82SChris Mason * right 114879f95c82SChris Mason */ 1149305a26afSMark Fasheh if (!left) { 1150305a26afSMark Fasheh ret = -EROFS; 11510b246afaSJeff Mahoney btrfs_handle_fs_error(fs_info, ret, NULL); 1152305a26afSMark Fasheh goto enospc; 1153305a26afSMark Fasheh } 115455d32ed8SDavid Sterba wret = balance_node_right(trans, mid, left); 115554aa1f4dSChris Mason if (wret < 0) { 115679f95c82SChris Mason ret = wret; 115754aa1f4dSChris Mason goto enospc; 115854aa1f4dSChris Mason } 1159bce4eae9SChris Mason if (wret == 1) { 1160d30a668fSDavid Sterba wret = push_node_left(trans, left, mid, 1); 1161bce4eae9SChris Mason if (wret < 0) 1162bce4eae9SChris Mason ret = wret; 1163bce4eae9SChris Mason } 116479f95c82SChris Mason BUG_ON(wret == 1); 116579f95c82SChris Mason } 11665f39d397SChris Mason if (btrfs_header_nritems(mid) == 0) { 1167190a8339SJosef Bacik btrfs_clear_buffer_dirty(trans, mid); 1168925baeddSChris Mason btrfs_tree_unlock(mid); 1169016f9d0bSJosef Bacik btrfs_del_ptr(root, path, level + 1, pslot); 1170f0486c68SYan, Zheng root_sub_used(root, mid->len); 11717a163608SFilipe Manana btrfs_free_tree_block(trans, btrfs_root_id(root), mid, 0, 1); 11723083ee2eSJosef Bacik free_extent_buffer_stale(mid); 1173f0486c68SYan, Zheng mid = NULL; 117479f95c82SChris Mason } else { 117579f95c82SChris Mason /* update the parent key to reflect our changes */ 11765f39d397SChris Mason struct btrfs_disk_key mid_key; 11775f39d397SChris Mason btrfs_node_key(mid, &mid_key, 0); 1178f3a84ccdSFilipe Manana ret = btrfs_tree_mod_log_insert_key(parent, pslot, 117933cff222SFilipe Manana BTRFS_MOD_LOG_KEY_REPLACE); 11800e82bcfeSDavid Sterba BUG_ON(ret < 0); 11815f39d397SChris Mason btrfs_set_node_key(parent, &mid_key, pslot); 11825f39d397SChris Mason btrfs_mark_buffer_dirty(parent); 118379f95c82SChris Mason } 1184bb803951SChris Mason 118579f95c82SChris Mason /* update the path */ 11865f39d397SChris Mason if (left) { 11875f39d397SChris Mason if (btrfs_header_nritems(left) > orig_slot) { 118867439dadSDavid Sterba atomic_inc(&left->refs); 1189925baeddSChris Mason /* left was locked after cow */ 11905f39d397SChris Mason path->nodes[level] = left; 1191bb803951SChris Mason path->slots[level + 1] -= 1; 1192bb803951SChris Mason path->slots[level] = orig_slot; 1193925baeddSChris Mason if (mid) { 1194925baeddSChris Mason btrfs_tree_unlock(mid); 11955f39d397SChris Mason free_extent_buffer(mid); 1196925baeddSChris Mason } 1197bb803951SChris Mason } else { 11985f39d397SChris Mason orig_slot -= btrfs_header_nritems(left); 1199bb803951SChris Mason path->slots[level] = orig_slot; 1200bb803951SChris Mason } 1201bb803951SChris Mason } 120279f95c82SChris Mason /* double check we haven't messed things up */ 1203e20d96d6SChris Mason if (orig_ptr != 12045f39d397SChris Mason btrfs_node_blockptr(path->nodes[level], path->slots[level])) 120579f95c82SChris Mason BUG(); 120654aa1f4dSChris Mason enospc: 1207925baeddSChris Mason if (right) { 1208925baeddSChris Mason btrfs_tree_unlock(right); 12095f39d397SChris Mason free_extent_buffer(right); 1210925baeddSChris Mason } 1211925baeddSChris Mason if (left) { 1212925baeddSChris Mason if (path->nodes[level] != left) 1213925baeddSChris Mason btrfs_tree_unlock(left); 12145f39d397SChris Mason free_extent_buffer(left); 1215925baeddSChris Mason } 1216bb803951SChris Mason return ret; 1217bb803951SChris Mason } 1218bb803951SChris Mason 1219d352ac68SChris Mason /* Node balancing for insertion. Here we only split or push nodes around 1220d352ac68SChris Mason * when they are completely full. This is also done top down, so we 1221d352ac68SChris Mason * have to be pessimistic. 1222d352ac68SChris Mason */ 1223d397712bSChris Mason static noinline int push_nodes_for_insert(struct btrfs_trans_handle *trans, 1224e66f709bSChris Mason struct btrfs_root *root, 1225e66f709bSChris Mason struct btrfs_path *path, int level) 1226e66f709bSChris Mason { 12270b246afaSJeff Mahoney struct btrfs_fs_info *fs_info = root->fs_info; 12285f39d397SChris Mason struct extent_buffer *right = NULL; 12295f39d397SChris Mason struct extent_buffer *mid; 12305f39d397SChris Mason struct extent_buffer *left = NULL; 12315f39d397SChris Mason struct extent_buffer *parent = NULL; 1232e66f709bSChris Mason int ret = 0; 1233e66f709bSChris Mason int wret; 1234e66f709bSChris Mason int pslot; 1235e66f709bSChris Mason int orig_slot = path->slots[level]; 1236e66f709bSChris Mason 1237e66f709bSChris Mason if (level == 0) 1238e66f709bSChris Mason return 1; 1239e66f709bSChris Mason 12405f39d397SChris Mason mid = path->nodes[level]; 12417bb86316SChris Mason WARN_ON(btrfs_header_generation(mid) != trans->transid); 1242e66f709bSChris Mason 1243a05a9bb1SLi Zefan if (level < BTRFS_MAX_LEVEL - 1) { 12445f39d397SChris Mason parent = path->nodes[level + 1]; 1245e66f709bSChris Mason pslot = path->slots[level + 1]; 1246a05a9bb1SLi Zefan } 1247e66f709bSChris Mason 12485f39d397SChris Mason if (!parent) 1249e66f709bSChris Mason return 1; 1250e66f709bSChris Mason 12519cf14029SJosef Bacik /* first, try to make some room in the middle buffer */ 12529cf14029SJosef Bacik if (pslot) { 12539cf14029SJosef Bacik u32 left_nr; 12549cf14029SJosef Bacik 12554b231ae4SDavid Sterba left = btrfs_read_node_slot(parent, pslot - 1); 1256fb770ae4SLiu Bo if (IS_ERR(left)) 12579cf14029SJosef Bacik return PTR_ERR(left); 1258925baeddSChris Mason 1259bf77467aSJosef Bacik __btrfs_tree_lock(left, BTRFS_NESTING_LEFT); 1260b4ce94deSChris Mason 12615f39d397SChris Mason left_nr = btrfs_header_nritems(left); 12620b246afaSJeff Mahoney if (left_nr >= BTRFS_NODEPTRS_PER_BLOCK(fs_info) - 1) { 126333ade1f8SChris Mason wret = 1; 126433ade1f8SChris Mason } else { 12655f39d397SChris Mason ret = btrfs_cow_block(trans, root, left, parent, 12669631e4ccSJosef Bacik pslot - 1, &left, 1267bf59a5a2SJosef Bacik BTRFS_NESTING_LEFT_COW); 126854aa1f4dSChris Mason if (ret) 126954aa1f4dSChris Mason wret = 1; 127054aa1f4dSChris Mason else { 1271d30a668fSDavid Sterba wret = push_node_left(trans, left, mid, 0); 127254aa1f4dSChris Mason } 127333ade1f8SChris Mason } 1274e66f709bSChris Mason if (wret < 0) 1275e66f709bSChris Mason ret = wret; 1276e66f709bSChris Mason if (wret == 0) { 12775f39d397SChris Mason struct btrfs_disk_key disk_key; 1278e66f709bSChris Mason orig_slot += left_nr; 12795f39d397SChris Mason btrfs_node_key(mid, &disk_key, 0); 1280f3a84ccdSFilipe Manana ret = btrfs_tree_mod_log_insert_key(parent, pslot, 128133cff222SFilipe Manana BTRFS_MOD_LOG_KEY_REPLACE); 12820e82bcfeSDavid Sterba BUG_ON(ret < 0); 12835f39d397SChris Mason btrfs_set_node_key(parent, &disk_key, pslot); 12845f39d397SChris Mason btrfs_mark_buffer_dirty(parent); 12855f39d397SChris Mason if (btrfs_header_nritems(left) > orig_slot) { 12865f39d397SChris Mason path->nodes[level] = left; 1287e66f709bSChris Mason path->slots[level + 1] -= 1; 1288e66f709bSChris Mason path->slots[level] = orig_slot; 1289925baeddSChris Mason btrfs_tree_unlock(mid); 12905f39d397SChris Mason free_extent_buffer(mid); 1291e66f709bSChris Mason } else { 1292e66f709bSChris Mason orig_slot -= 12935f39d397SChris Mason btrfs_header_nritems(left); 1294e66f709bSChris Mason path->slots[level] = orig_slot; 1295925baeddSChris Mason btrfs_tree_unlock(left); 12965f39d397SChris Mason free_extent_buffer(left); 1297e66f709bSChris Mason } 1298e66f709bSChris Mason return 0; 1299e66f709bSChris Mason } 1300925baeddSChris Mason btrfs_tree_unlock(left); 13015f39d397SChris Mason free_extent_buffer(left); 1302e66f709bSChris Mason } 1303e66f709bSChris Mason 1304e66f709bSChris Mason /* 1305e66f709bSChris Mason * then try to empty the right most buffer into the middle 1306e66f709bSChris Mason */ 13079cf14029SJosef Bacik if (pslot + 1 < btrfs_header_nritems(parent)) { 130833ade1f8SChris Mason u32 right_nr; 1309b4ce94deSChris Mason 13109cf14029SJosef Bacik right = btrfs_read_node_slot(parent, pslot + 1); 13119cf14029SJosef Bacik if (IS_ERR(right)) 13129cf14029SJosef Bacik return PTR_ERR(right); 13139cf14029SJosef Bacik 1314bf77467aSJosef Bacik __btrfs_tree_lock(right, BTRFS_NESTING_RIGHT); 1315b4ce94deSChris Mason 13165f39d397SChris Mason right_nr = btrfs_header_nritems(right); 13170b246afaSJeff Mahoney if (right_nr >= BTRFS_NODEPTRS_PER_BLOCK(fs_info) - 1) { 131833ade1f8SChris Mason wret = 1; 131933ade1f8SChris Mason } else { 13205f39d397SChris Mason ret = btrfs_cow_block(trans, root, right, 13215f39d397SChris Mason parent, pslot + 1, 1322bf59a5a2SJosef Bacik &right, BTRFS_NESTING_RIGHT_COW); 132354aa1f4dSChris Mason if (ret) 132454aa1f4dSChris Mason wret = 1; 132554aa1f4dSChris Mason else { 132655d32ed8SDavid Sterba wret = balance_node_right(trans, right, mid); 132733ade1f8SChris Mason } 132854aa1f4dSChris Mason } 1329e66f709bSChris Mason if (wret < 0) 1330e66f709bSChris Mason ret = wret; 1331e66f709bSChris Mason if (wret == 0) { 13325f39d397SChris Mason struct btrfs_disk_key disk_key; 13335f39d397SChris Mason 13345f39d397SChris Mason btrfs_node_key(right, &disk_key, 0); 1335f3a84ccdSFilipe Manana ret = btrfs_tree_mod_log_insert_key(parent, pslot + 1, 133633cff222SFilipe Manana BTRFS_MOD_LOG_KEY_REPLACE); 13370e82bcfeSDavid Sterba BUG_ON(ret < 0); 13385f39d397SChris Mason btrfs_set_node_key(parent, &disk_key, pslot + 1); 13395f39d397SChris Mason btrfs_mark_buffer_dirty(parent); 13405f39d397SChris Mason 13415f39d397SChris Mason if (btrfs_header_nritems(mid) <= orig_slot) { 13425f39d397SChris Mason path->nodes[level] = right; 1343e66f709bSChris Mason path->slots[level + 1] += 1; 1344e66f709bSChris Mason path->slots[level] = orig_slot - 13455f39d397SChris Mason btrfs_header_nritems(mid); 1346925baeddSChris Mason btrfs_tree_unlock(mid); 13475f39d397SChris Mason free_extent_buffer(mid); 1348e66f709bSChris Mason } else { 1349925baeddSChris Mason btrfs_tree_unlock(right); 13505f39d397SChris Mason free_extent_buffer(right); 1351e66f709bSChris Mason } 1352e66f709bSChris Mason return 0; 1353e66f709bSChris Mason } 1354925baeddSChris Mason btrfs_tree_unlock(right); 13555f39d397SChris Mason free_extent_buffer(right); 1356e66f709bSChris Mason } 1357e66f709bSChris Mason return 1; 1358e66f709bSChris Mason } 1359e66f709bSChris Mason 136074123bd7SChris Mason /* 1361d352ac68SChris Mason * readahead one full node of leaves, finding things that are close 1362d352ac68SChris Mason * to the block in 'slot', and triggering ra on them. 13633c69faecSChris Mason */ 13642ff7e61eSJeff Mahoney static void reada_for_search(struct btrfs_fs_info *fs_info, 1365e02119d5SChris Mason struct btrfs_path *path, 136601f46658SChris Mason int level, int slot, u64 objectid) 13673c69faecSChris Mason { 13685f39d397SChris Mason struct extent_buffer *node; 136901f46658SChris Mason struct btrfs_disk_key disk_key; 13703c69faecSChris Mason u32 nritems; 13713c69faecSChris Mason u64 search; 1372a7175319SChris Mason u64 target; 13736b80053dSChris Mason u64 nread = 0; 1374ace75066SFilipe Manana u64 nread_max; 13756b80053dSChris Mason u32 nr; 13766b80053dSChris Mason u32 blocksize; 13776b80053dSChris Mason u32 nscan = 0; 1378db94535dSChris Mason 1379ace75066SFilipe Manana if (level != 1 && path->reada != READA_FORWARD_ALWAYS) 13803c69faecSChris Mason return; 13813c69faecSChris Mason 13826702ed49SChris Mason if (!path->nodes[level]) 13836702ed49SChris Mason return; 13846702ed49SChris Mason 13855f39d397SChris Mason node = path->nodes[level]; 1386925baeddSChris Mason 1387ace75066SFilipe Manana /* 1388ace75066SFilipe Manana * Since the time between visiting leaves is much shorter than the time 1389ace75066SFilipe Manana * between visiting nodes, limit read ahead of nodes to 1, to avoid too 1390ace75066SFilipe Manana * much IO at once (possibly random). 1391ace75066SFilipe Manana */ 1392ace75066SFilipe Manana if (path->reada == READA_FORWARD_ALWAYS) { 1393ace75066SFilipe Manana if (level > 1) 1394ace75066SFilipe Manana nread_max = node->fs_info->nodesize; 1395ace75066SFilipe Manana else 1396ace75066SFilipe Manana nread_max = SZ_128K; 1397ace75066SFilipe Manana } else { 1398ace75066SFilipe Manana nread_max = SZ_64K; 1399ace75066SFilipe Manana } 1400ace75066SFilipe Manana 14013c69faecSChris Mason search = btrfs_node_blockptr(node, slot); 14020b246afaSJeff Mahoney blocksize = fs_info->nodesize; 1403069a2e37SFilipe Manana if (path->reada != READA_FORWARD_ALWAYS) { 1404069a2e37SFilipe Manana struct extent_buffer *eb; 1405069a2e37SFilipe Manana 14060b246afaSJeff Mahoney eb = find_extent_buffer(fs_info, search); 14075f39d397SChris Mason if (eb) { 14085f39d397SChris Mason free_extent_buffer(eb); 14093c69faecSChris Mason return; 14103c69faecSChris Mason } 1411069a2e37SFilipe Manana } 14123c69faecSChris Mason 1413a7175319SChris Mason target = search; 14146b80053dSChris Mason 14155f39d397SChris Mason nritems = btrfs_header_nritems(node); 14166b80053dSChris Mason nr = slot; 141725b8b936SJosef Bacik 14183c69faecSChris Mason while (1) { 1419e4058b54SDavid Sterba if (path->reada == READA_BACK) { 14206b80053dSChris Mason if (nr == 0) 14213c69faecSChris Mason break; 14226b80053dSChris Mason nr--; 1423ace75066SFilipe Manana } else if (path->reada == READA_FORWARD || 1424ace75066SFilipe Manana path->reada == READA_FORWARD_ALWAYS) { 14256b80053dSChris Mason nr++; 14266b80053dSChris Mason if (nr >= nritems) 14276b80053dSChris Mason break; 14283c69faecSChris Mason } 1429e4058b54SDavid Sterba if (path->reada == READA_BACK && objectid) { 143001f46658SChris Mason btrfs_node_key(node, &disk_key, nr); 143101f46658SChris Mason if (btrfs_disk_key_objectid(&disk_key) != objectid) 143201f46658SChris Mason break; 143301f46658SChris Mason } 14346b80053dSChris Mason search = btrfs_node_blockptr(node, nr); 1435ace75066SFilipe Manana if (path->reada == READA_FORWARD_ALWAYS || 1436ace75066SFilipe Manana (search <= target && target - search <= 65536) || 1437a7175319SChris Mason (search > target && search - target <= 65536)) { 1438bfb484d9SJosef Bacik btrfs_readahead_node_child(node, nr); 14396b80053dSChris Mason nread += blocksize; 14403c69faecSChris Mason } 14416b80053dSChris Mason nscan++; 1442ace75066SFilipe Manana if (nread > nread_max || nscan > 32) 14436b80053dSChris Mason break; 14443c69faecSChris Mason } 14453c69faecSChris Mason } 1446925baeddSChris Mason 1447bfb484d9SJosef Bacik static noinline void reada_for_balance(struct btrfs_path *path, int level) 1448b4ce94deSChris Mason { 1449bfb484d9SJosef Bacik struct extent_buffer *parent; 1450b4ce94deSChris Mason int slot; 1451b4ce94deSChris Mason int nritems; 1452b4ce94deSChris Mason 14538c594ea8SChris Mason parent = path->nodes[level + 1]; 1454b4ce94deSChris Mason if (!parent) 14550b08851fSJosef Bacik return; 1456b4ce94deSChris Mason 1457b4ce94deSChris Mason nritems = btrfs_header_nritems(parent); 14588c594ea8SChris Mason slot = path->slots[level + 1]; 1459b4ce94deSChris Mason 1460bfb484d9SJosef Bacik if (slot > 0) 1461bfb484d9SJosef Bacik btrfs_readahead_node_child(parent, slot - 1); 1462bfb484d9SJosef Bacik if (slot + 1 < nritems) 1463bfb484d9SJosef Bacik btrfs_readahead_node_child(parent, slot + 1); 1464b4ce94deSChris Mason } 1465b4ce94deSChris Mason 1466b4ce94deSChris Mason 1467b4ce94deSChris Mason /* 1468d397712bSChris Mason * when we walk down the tree, it is usually safe to unlock the higher layers 1469d397712bSChris Mason * in the tree. The exceptions are when our path goes through slot 0, because 1470d397712bSChris Mason * operations on the tree might require changing key pointers higher up in the 1471d397712bSChris Mason * tree. 1472d352ac68SChris Mason * 1473d397712bSChris Mason * callers might also have set path->keep_locks, which tells this code to keep 1474d397712bSChris Mason * the lock if the path points to the last slot in the block. This is part of 1475d397712bSChris Mason * walking through the tree, and selecting the next slot in the higher block. 1476d352ac68SChris Mason * 1477d397712bSChris Mason * lowest_unlock sets the lowest level in the tree we're allowed to unlock. so 1478d397712bSChris Mason * if lowest_unlock is 1, level 0 won't be unlocked 1479d352ac68SChris Mason */ 1480e02119d5SChris Mason static noinline void unlock_up(struct btrfs_path *path, int level, 1481f7c79f30SChris Mason int lowest_unlock, int min_write_lock_level, 1482f7c79f30SChris Mason int *write_lock_level) 1483925baeddSChris Mason { 1484925baeddSChris Mason int i; 1485925baeddSChris Mason int skip_level = level; 1486c1227996SNikolay Borisov bool check_skip = true; 1487925baeddSChris Mason 1488925baeddSChris Mason for (i = level; i < BTRFS_MAX_LEVEL; i++) { 1489925baeddSChris Mason if (!path->nodes[i]) 1490925baeddSChris Mason break; 1491925baeddSChris Mason if (!path->locks[i]) 1492925baeddSChris Mason break; 1493c1227996SNikolay Borisov 1494c1227996SNikolay Borisov if (check_skip) { 1495c1227996SNikolay Borisov if (path->slots[i] == 0) { 1496925baeddSChris Mason skip_level = i + 1; 1497925baeddSChris Mason continue; 1498925baeddSChris Mason } 1499c1227996SNikolay Borisov 1500c1227996SNikolay Borisov if (path->keep_locks) { 1501925baeddSChris Mason u32 nritems; 1502c1227996SNikolay Borisov 1503c1227996SNikolay Borisov nritems = btrfs_header_nritems(path->nodes[i]); 1504051e1b9fSChris Mason if (nritems < 1 || path->slots[i] >= nritems - 1) { 1505925baeddSChris Mason skip_level = i + 1; 1506925baeddSChris Mason continue; 1507925baeddSChris Mason } 1508925baeddSChris Mason } 1509c1227996SNikolay Borisov } 1510051e1b9fSChris Mason 1511d80bb3f9SLiu Bo if (i >= lowest_unlock && i > skip_level) { 1512c1227996SNikolay Borisov check_skip = false; 1513c1227996SNikolay Borisov btrfs_tree_unlock_rw(path->nodes[i], path->locks[i]); 1514925baeddSChris Mason path->locks[i] = 0; 1515f7c79f30SChris Mason if (write_lock_level && 1516f7c79f30SChris Mason i > min_write_lock_level && 1517f7c79f30SChris Mason i <= *write_lock_level) { 1518f7c79f30SChris Mason *write_lock_level = i - 1; 1519f7c79f30SChris Mason } 1520925baeddSChris Mason } 1521925baeddSChris Mason } 1522925baeddSChris Mason } 1523925baeddSChris Mason 15243c69faecSChris Mason /* 1525376a21d7SFilipe Manana * Helper function for btrfs_search_slot() and other functions that do a search 1526376a21d7SFilipe Manana * on a btree. The goal is to find a tree block in the cache (the radix tree at 1527376a21d7SFilipe Manana * fs_info->buffer_radix), but if we can't find it, or it's not up to date, read 1528376a21d7SFilipe Manana * its pages from disk. 1529c8c42864SChris Mason * 1530376a21d7SFilipe Manana * Returns -EAGAIN, with the path unlocked, if the caller needs to repeat the 1531376a21d7SFilipe Manana * whole btree search, starting again from the current root node. 1532c8c42864SChris Mason */ 1533c8c42864SChris Mason static int 1534d07b8528SLiu Bo read_block_for_search(struct btrfs_root *root, struct btrfs_path *p, 1535c8c42864SChris Mason struct extent_buffer **eb_ret, int level, int slot, 1536cda79c54SDavid Sterba const struct btrfs_key *key) 1537c8c42864SChris Mason { 15380b246afaSJeff Mahoney struct btrfs_fs_info *fs_info = root->fs_info; 1539789d6a3aSQu Wenruo struct btrfs_tree_parent_check check = { 0 }; 1540c8c42864SChris Mason u64 blocknr; 1541c8c42864SChris Mason u64 gen; 1542c8c42864SChris Mason struct extent_buffer *tmp; 154376a05b35SChris Mason int ret; 1544581c1760SQu Wenruo int parent_level; 1545b246666eSFilipe Manana bool unlock_up; 1546c8c42864SChris Mason 1547b246666eSFilipe Manana unlock_up = ((level + 1 < BTRFS_MAX_LEVEL) && p->locks[level + 1]); 1548213ff4b7SNikolay Borisov blocknr = btrfs_node_blockptr(*eb_ret, slot); 1549213ff4b7SNikolay Borisov gen = btrfs_node_ptr_generation(*eb_ret, slot); 1550213ff4b7SNikolay Borisov parent_level = btrfs_header_level(*eb_ret); 1551789d6a3aSQu Wenruo btrfs_node_key_to_cpu(*eb_ret, &check.first_key, slot); 1552789d6a3aSQu Wenruo check.has_first_key = true; 1553789d6a3aSQu Wenruo check.level = parent_level - 1; 1554789d6a3aSQu Wenruo check.transid = gen; 1555789d6a3aSQu Wenruo check.owner_root = root->root_key.objectid; 1556c8c42864SChris Mason 1557b246666eSFilipe Manana /* 1558b246666eSFilipe Manana * If we need to read an extent buffer from disk and we are holding locks 1559b246666eSFilipe Manana * on upper level nodes, we unlock all the upper nodes before reading the 1560b246666eSFilipe Manana * extent buffer, and then return -EAGAIN to the caller as it needs to 1561b246666eSFilipe Manana * restart the search. We don't release the lock on the current level 1562b246666eSFilipe Manana * because we need to walk this node to figure out which blocks to read. 1563b246666eSFilipe Manana */ 15640b246afaSJeff Mahoney tmp = find_extent_buffer(fs_info, blocknr); 1565cb44921aSChris Mason if (tmp) { 1566ace75066SFilipe Manana if (p->reada == READA_FORWARD_ALWAYS) 1567ace75066SFilipe Manana reada_for_search(fs_info, p, level, slot, key->objectid); 1568ace75066SFilipe Manana 1569b9fab919SChris Mason /* first we do an atomic uptodate check */ 1570b9fab919SChris Mason if (btrfs_buffer_uptodate(tmp, gen, 1) > 0) { 1571448de471SQu Wenruo /* 1572448de471SQu Wenruo * Do extra check for first_key, eb can be stale due to 1573448de471SQu Wenruo * being cached, read from scrub, or have multiple 1574448de471SQu Wenruo * parents (shared tree blocks). 1575448de471SQu Wenruo */ 1576e064d5e9SDavid Sterba if (btrfs_verify_level_key(tmp, 1577789d6a3aSQu Wenruo parent_level - 1, &check.first_key, gen)) { 1578448de471SQu Wenruo free_extent_buffer(tmp); 1579448de471SQu Wenruo return -EUCLEAN; 1580448de471SQu Wenruo } 1581c8c42864SChris Mason *eb_ret = tmp; 1582c8c42864SChris Mason return 0; 1583c8c42864SChris Mason } 1584bdf7c00eSJosef Bacik 1585857bc13fSJosef Bacik if (p->nowait) { 1586857bc13fSJosef Bacik free_extent_buffer(tmp); 1587857bc13fSJosef Bacik return -EAGAIN; 1588857bc13fSJosef Bacik } 1589857bc13fSJosef Bacik 1590b246666eSFilipe Manana if (unlock_up) 1591b246666eSFilipe Manana btrfs_unlock_up_safe(p, level + 1); 1592b246666eSFilipe Manana 1593b9fab919SChris Mason /* now we're allowed to do a blocking uptodate check */ 1594789d6a3aSQu Wenruo ret = btrfs_read_extent_buffer(tmp, &check); 15959a4ffa1bSQu Wenruo if (ret) { 1596cb44921aSChris Mason free_extent_buffer(tmp); 1597b3b4aa74SDavid Sterba btrfs_release_path(p); 1598cb44921aSChris Mason return -EIO; 1599cb44921aSChris Mason } 160088c602abSQu Wenruo if (btrfs_check_eb_owner(tmp, root->root_key.objectid)) { 160188c602abSQu Wenruo free_extent_buffer(tmp); 160288c602abSQu Wenruo btrfs_release_path(p); 160388c602abSQu Wenruo return -EUCLEAN; 160488c602abSQu Wenruo } 1605b246666eSFilipe Manana 1606b246666eSFilipe Manana if (unlock_up) 1607b246666eSFilipe Manana ret = -EAGAIN; 1608b246666eSFilipe Manana 1609b246666eSFilipe Manana goto out; 1610857bc13fSJosef Bacik } else if (p->nowait) { 1611857bc13fSJosef Bacik return -EAGAIN; 16129a4ffa1bSQu Wenruo } 1613c8c42864SChris Mason 1614b246666eSFilipe Manana if (unlock_up) { 16158c594ea8SChris Mason btrfs_unlock_up_safe(p, level + 1); 16164bb59055SFilipe Manana ret = -EAGAIN; 16174bb59055SFilipe Manana } else { 16184bb59055SFilipe Manana ret = 0; 16194bb59055SFilipe Manana } 16208c594ea8SChris Mason 1621e4058b54SDavid Sterba if (p->reada != READA_NONE) 16222ff7e61eSJeff Mahoney reada_for_search(fs_info, p, level, slot, key->objectid); 1623c8c42864SChris Mason 1624789d6a3aSQu Wenruo tmp = read_tree_block(fs_info, blocknr, &check); 16254eb150d6SQu Wenruo if (IS_ERR(tmp)) { 16264eb150d6SQu Wenruo btrfs_release_path(p); 16274eb150d6SQu Wenruo return PTR_ERR(tmp); 16284eb150d6SQu Wenruo } 162976a05b35SChris Mason /* 163076a05b35SChris Mason * If the read above didn't mark this buffer up to date, 163176a05b35SChris Mason * it will never end up being up to date. Set ret to EIO now 163276a05b35SChris Mason * and give up so that our caller doesn't loop forever 163376a05b35SChris Mason * on our EAGAINs. 163476a05b35SChris Mason */ 1635e6a1d6fdSLiu Bo if (!extent_buffer_uptodate(tmp)) 163676a05b35SChris Mason ret = -EIO; 163702a3307aSLiu Bo 1638b246666eSFilipe Manana out: 16394bb59055SFilipe Manana if (ret == 0) { 16404bb59055SFilipe Manana *eb_ret = tmp; 16414bb59055SFilipe Manana } else { 16424bb59055SFilipe Manana free_extent_buffer(tmp); 164302a3307aSLiu Bo btrfs_release_path(p); 16444bb59055SFilipe Manana } 16454bb59055SFilipe Manana 164676a05b35SChris Mason return ret; 1647c8c42864SChris Mason } 1648c8c42864SChris Mason 1649c8c42864SChris Mason /* 1650c8c42864SChris Mason * helper function for btrfs_search_slot. This does all of the checks 1651c8c42864SChris Mason * for node-level blocks and does any balancing required based on 1652c8c42864SChris Mason * the ins_len. 1653c8c42864SChris Mason * 1654c8c42864SChris Mason * If no extra work was required, zero is returned. If we had to 1655c8c42864SChris Mason * drop the path, -EAGAIN is returned and btrfs_search_slot must 1656c8c42864SChris Mason * start over 1657c8c42864SChris Mason */ 1658c8c42864SChris Mason static int 1659c8c42864SChris Mason setup_nodes_for_search(struct btrfs_trans_handle *trans, 1660c8c42864SChris Mason struct btrfs_root *root, struct btrfs_path *p, 1661bd681513SChris Mason struct extent_buffer *b, int level, int ins_len, 1662bd681513SChris Mason int *write_lock_level) 1663c8c42864SChris Mason { 16640b246afaSJeff Mahoney struct btrfs_fs_info *fs_info = root->fs_info; 166595b982deSNikolay Borisov int ret = 0; 16660b246afaSJeff Mahoney 1667c8c42864SChris Mason if ((p->search_for_split || ins_len > 0) && btrfs_header_nritems(b) >= 16680b246afaSJeff Mahoney BTRFS_NODEPTRS_PER_BLOCK(fs_info) - 3) { 1669c8c42864SChris Mason 1670bd681513SChris Mason if (*write_lock_level < level + 1) { 1671bd681513SChris Mason *write_lock_level = level + 1; 1672bd681513SChris Mason btrfs_release_path(p); 167395b982deSNikolay Borisov return -EAGAIN; 1674bd681513SChris Mason } 1675bd681513SChris Mason 1676bfb484d9SJosef Bacik reada_for_balance(p, level); 167795b982deSNikolay Borisov ret = split_node(trans, root, p, level); 1678c8c42864SChris Mason 1679c8c42864SChris Mason b = p->nodes[level]; 1680c8c42864SChris Mason } else if (ins_len < 0 && btrfs_header_nritems(b) < 16810b246afaSJeff Mahoney BTRFS_NODEPTRS_PER_BLOCK(fs_info) / 2) { 1682c8c42864SChris Mason 1683bd681513SChris Mason if (*write_lock_level < level + 1) { 1684bd681513SChris Mason *write_lock_level = level + 1; 1685bd681513SChris Mason btrfs_release_path(p); 168695b982deSNikolay Borisov return -EAGAIN; 1687bd681513SChris Mason } 1688bd681513SChris Mason 1689bfb484d9SJosef Bacik reada_for_balance(p, level); 169095b982deSNikolay Borisov ret = balance_level(trans, root, p, level); 169195b982deSNikolay Borisov if (ret) 169295b982deSNikolay Borisov return ret; 1693c8c42864SChris Mason 1694c8c42864SChris Mason b = p->nodes[level]; 1695c8c42864SChris Mason if (!b) { 1696b3b4aa74SDavid Sterba btrfs_release_path(p); 169795b982deSNikolay Borisov return -EAGAIN; 1698c8c42864SChris Mason } 1699c8c42864SChris Mason BUG_ON(btrfs_header_nritems(b) == 1); 1700c8c42864SChris Mason } 1701c8c42864SChris Mason return ret; 1702c8c42864SChris Mason } 1703c8c42864SChris Mason 1704381cf658SDavid Sterba int btrfs_find_item(struct btrfs_root *fs_root, struct btrfs_path *path, 1705e33d5c3dSKelley Nielsen u64 iobjectid, u64 ioff, u8 key_type, 1706e33d5c3dSKelley Nielsen struct btrfs_key *found_key) 1707e33d5c3dSKelley Nielsen { 1708e33d5c3dSKelley Nielsen int ret; 1709e33d5c3dSKelley Nielsen struct btrfs_key key; 1710e33d5c3dSKelley Nielsen struct extent_buffer *eb; 1711381cf658SDavid Sterba 1712381cf658SDavid Sterba ASSERT(path); 17131d4c08e0SDavid Sterba ASSERT(found_key); 1714e33d5c3dSKelley Nielsen 1715e33d5c3dSKelley Nielsen key.type = key_type; 1716e33d5c3dSKelley Nielsen key.objectid = iobjectid; 1717e33d5c3dSKelley Nielsen key.offset = ioff; 1718e33d5c3dSKelley Nielsen 1719e33d5c3dSKelley Nielsen ret = btrfs_search_slot(NULL, fs_root, &key, path, 0, 0); 17201d4c08e0SDavid Sterba if (ret < 0) 1721e33d5c3dSKelley Nielsen return ret; 1722e33d5c3dSKelley Nielsen 1723e33d5c3dSKelley Nielsen eb = path->nodes[0]; 1724e33d5c3dSKelley Nielsen if (ret && path->slots[0] >= btrfs_header_nritems(eb)) { 1725e33d5c3dSKelley Nielsen ret = btrfs_next_leaf(fs_root, path); 1726e33d5c3dSKelley Nielsen if (ret) 1727e33d5c3dSKelley Nielsen return ret; 1728e33d5c3dSKelley Nielsen eb = path->nodes[0]; 1729e33d5c3dSKelley Nielsen } 1730e33d5c3dSKelley Nielsen 1731e33d5c3dSKelley Nielsen btrfs_item_key_to_cpu(eb, found_key, path->slots[0]); 1732e33d5c3dSKelley Nielsen if (found_key->type != key.type || 1733e33d5c3dSKelley Nielsen found_key->objectid != key.objectid) 1734e33d5c3dSKelley Nielsen return 1; 1735e33d5c3dSKelley Nielsen 1736e33d5c3dSKelley Nielsen return 0; 1737e33d5c3dSKelley Nielsen } 1738e33d5c3dSKelley Nielsen 17391fc28d8eSLiu Bo static struct extent_buffer *btrfs_search_slot_get_root(struct btrfs_root *root, 17401fc28d8eSLiu Bo struct btrfs_path *p, 17411fc28d8eSLiu Bo int write_lock_level) 17421fc28d8eSLiu Bo { 17431fc28d8eSLiu Bo struct extent_buffer *b; 1744120de408SJosef Bacik int root_lock = 0; 17451fc28d8eSLiu Bo int level = 0; 17461fc28d8eSLiu Bo 17471fc28d8eSLiu Bo if (p->search_commit_root) { 17481fc28d8eSLiu Bo b = root->commit_root; 174967439dadSDavid Sterba atomic_inc(&b->refs); 17501fc28d8eSLiu Bo level = btrfs_header_level(b); 1751f9ddfd05SLiu Bo /* 1752f9ddfd05SLiu Bo * Ensure that all callers have set skip_locking when 1753f9ddfd05SLiu Bo * p->search_commit_root = 1. 1754f9ddfd05SLiu Bo */ 1755f9ddfd05SLiu Bo ASSERT(p->skip_locking == 1); 17561fc28d8eSLiu Bo 17571fc28d8eSLiu Bo goto out; 17581fc28d8eSLiu Bo } 17591fc28d8eSLiu Bo 17601fc28d8eSLiu Bo if (p->skip_locking) { 17611fc28d8eSLiu Bo b = btrfs_root_node(root); 17621fc28d8eSLiu Bo level = btrfs_header_level(b); 17631fc28d8eSLiu Bo goto out; 17641fc28d8eSLiu Bo } 17651fc28d8eSLiu Bo 1766120de408SJosef Bacik /* We try very hard to do read locks on the root */ 1767120de408SJosef Bacik root_lock = BTRFS_READ_LOCK; 1768120de408SJosef Bacik 17691fc28d8eSLiu Bo /* 1770662c653bSLiu Bo * If the level is set to maximum, we can skip trying to get the read 1771662c653bSLiu Bo * lock. 1772662c653bSLiu Bo */ 1773662c653bSLiu Bo if (write_lock_level < BTRFS_MAX_LEVEL) { 1774662c653bSLiu Bo /* 1775662c653bSLiu Bo * We don't know the level of the root node until we actually 1776662c653bSLiu Bo * have it read locked 17771fc28d8eSLiu Bo */ 1778857bc13fSJosef Bacik if (p->nowait) { 1779857bc13fSJosef Bacik b = btrfs_try_read_lock_root_node(root); 1780857bc13fSJosef Bacik if (IS_ERR(b)) 1781857bc13fSJosef Bacik return b; 1782857bc13fSJosef Bacik } else { 17831bb96598SJosef Bacik b = btrfs_read_lock_root_node(root); 1784857bc13fSJosef Bacik } 17851fc28d8eSLiu Bo level = btrfs_header_level(b); 17861fc28d8eSLiu Bo if (level > write_lock_level) 17871fc28d8eSLiu Bo goto out; 17881fc28d8eSLiu Bo 1789662c653bSLiu Bo /* Whoops, must trade for write lock */ 17901fc28d8eSLiu Bo btrfs_tree_read_unlock(b); 17911fc28d8eSLiu Bo free_extent_buffer(b); 1792662c653bSLiu Bo } 1793662c653bSLiu Bo 17941fc28d8eSLiu Bo b = btrfs_lock_root_node(root); 17951fc28d8eSLiu Bo root_lock = BTRFS_WRITE_LOCK; 17961fc28d8eSLiu Bo 17971fc28d8eSLiu Bo /* The level might have changed, check again */ 17981fc28d8eSLiu Bo level = btrfs_header_level(b); 17991fc28d8eSLiu Bo 18001fc28d8eSLiu Bo out: 1801120de408SJosef Bacik /* 1802120de408SJosef Bacik * The root may have failed to write out at some point, and thus is no 1803120de408SJosef Bacik * longer valid, return an error in this case. 1804120de408SJosef Bacik */ 1805120de408SJosef Bacik if (!extent_buffer_uptodate(b)) { 1806120de408SJosef Bacik if (root_lock) 1807120de408SJosef Bacik btrfs_tree_unlock_rw(b, root_lock); 1808120de408SJosef Bacik free_extent_buffer(b); 1809120de408SJosef Bacik return ERR_PTR(-EIO); 1810120de408SJosef Bacik } 1811120de408SJosef Bacik 18121fc28d8eSLiu Bo p->nodes[level] = b; 18131fc28d8eSLiu Bo if (!p->skip_locking) 18141fc28d8eSLiu Bo p->locks[level] = root_lock; 18151fc28d8eSLiu Bo /* 18161fc28d8eSLiu Bo * Callers are responsible for dropping b's references. 18171fc28d8eSLiu Bo */ 18181fc28d8eSLiu Bo return b; 18191fc28d8eSLiu Bo } 18201fc28d8eSLiu Bo 1821d96b3424SFilipe Manana /* 1822d96b3424SFilipe Manana * Replace the extent buffer at the lowest level of the path with a cloned 1823d96b3424SFilipe Manana * version. The purpose is to be able to use it safely, after releasing the 1824d96b3424SFilipe Manana * commit root semaphore, even if relocation is happening in parallel, the 1825d96b3424SFilipe Manana * transaction used for relocation is committed and the extent buffer is 1826d96b3424SFilipe Manana * reallocated in the next transaction. 1827d96b3424SFilipe Manana * 1828d96b3424SFilipe Manana * This is used in a context where the caller does not prevent transaction 1829d96b3424SFilipe Manana * commits from happening, either by holding a transaction handle or holding 1830d96b3424SFilipe Manana * some lock, while it's doing searches through a commit root. 1831d96b3424SFilipe Manana * At the moment it's only used for send operations. 1832d96b3424SFilipe Manana */ 1833d96b3424SFilipe Manana static int finish_need_commit_sem_search(struct btrfs_path *path) 1834d96b3424SFilipe Manana { 1835d96b3424SFilipe Manana const int i = path->lowest_level; 1836d96b3424SFilipe Manana const int slot = path->slots[i]; 1837d96b3424SFilipe Manana struct extent_buffer *lowest = path->nodes[i]; 1838d96b3424SFilipe Manana struct extent_buffer *clone; 1839d96b3424SFilipe Manana 1840d96b3424SFilipe Manana ASSERT(path->need_commit_sem); 1841d96b3424SFilipe Manana 1842d96b3424SFilipe Manana if (!lowest) 1843d96b3424SFilipe Manana return 0; 1844d96b3424SFilipe Manana 1845d96b3424SFilipe Manana lockdep_assert_held_read(&lowest->fs_info->commit_root_sem); 1846d96b3424SFilipe Manana 1847d96b3424SFilipe Manana clone = btrfs_clone_extent_buffer(lowest); 1848d96b3424SFilipe Manana if (!clone) 1849d96b3424SFilipe Manana return -ENOMEM; 1850d96b3424SFilipe Manana 1851d96b3424SFilipe Manana btrfs_release_path(path); 1852d96b3424SFilipe Manana path->nodes[i] = clone; 1853d96b3424SFilipe Manana path->slots[i] = slot; 1854d96b3424SFilipe Manana 1855d96b3424SFilipe Manana return 0; 1856d96b3424SFilipe Manana } 18571fc28d8eSLiu Bo 1858e2e58d0fSFilipe Manana static inline int search_for_key_slot(struct extent_buffer *eb, 1859e2e58d0fSFilipe Manana int search_low_slot, 1860e2e58d0fSFilipe Manana const struct btrfs_key *key, 1861e2e58d0fSFilipe Manana int prev_cmp, 1862e2e58d0fSFilipe Manana int *slot) 1863e2e58d0fSFilipe Manana { 1864e2e58d0fSFilipe Manana /* 1865e2e58d0fSFilipe Manana * If a previous call to btrfs_bin_search() on a parent node returned an 1866e2e58d0fSFilipe Manana * exact match (prev_cmp == 0), we can safely assume the target key will 1867e2e58d0fSFilipe Manana * always be at slot 0 on lower levels, since each key pointer 1868e2e58d0fSFilipe Manana * (struct btrfs_key_ptr) refers to the lowest key accessible from the 1869e2e58d0fSFilipe Manana * subtree it points to. Thus we can skip searching lower levels. 1870e2e58d0fSFilipe Manana */ 1871e2e58d0fSFilipe Manana if (prev_cmp == 0) { 1872e2e58d0fSFilipe Manana *slot = 0; 1873e2e58d0fSFilipe Manana return 0; 1874e2e58d0fSFilipe Manana } 1875e2e58d0fSFilipe Manana 1876fdf8d595SAnand Jain return btrfs_bin_search(eb, search_low_slot, key, slot); 1877e2e58d0fSFilipe Manana } 1878e2e58d0fSFilipe Manana 1879109324cfSFilipe Manana static int search_leaf(struct btrfs_trans_handle *trans, 1880109324cfSFilipe Manana struct btrfs_root *root, 1881109324cfSFilipe Manana const struct btrfs_key *key, 1882109324cfSFilipe Manana struct btrfs_path *path, 1883109324cfSFilipe Manana int ins_len, 1884109324cfSFilipe Manana int prev_cmp) 1885109324cfSFilipe Manana { 1886109324cfSFilipe Manana struct extent_buffer *leaf = path->nodes[0]; 1887109324cfSFilipe Manana int leaf_free_space = -1; 1888109324cfSFilipe Manana int search_low_slot = 0; 1889109324cfSFilipe Manana int ret; 1890109324cfSFilipe Manana bool do_bin_search = true; 1891109324cfSFilipe Manana 1892109324cfSFilipe Manana /* 1893109324cfSFilipe Manana * If we are doing an insertion, the leaf has enough free space and the 1894109324cfSFilipe Manana * destination slot for the key is not slot 0, then we can unlock our 1895109324cfSFilipe Manana * write lock on the parent, and any other upper nodes, before doing the 1896109324cfSFilipe Manana * binary search on the leaf (with search_for_key_slot()), allowing other 1897109324cfSFilipe Manana * tasks to lock the parent and any other upper nodes. 1898109324cfSFilipe Manana */ 1899109324cfSFilipe Manana if (ins_len > 0) { 1900109324cfSFilipe Manana /* 1901109324cfSFilipe Manana * Cache the leaf free space, since we will need it later and it 1902109324cfSFilipe Manana * will not change until then. 1903109324cfSFilipe Manana */ 1904109324cfSFilipe Manana leaf_free_space = btrfs_leaf_free_space(leaf); 1905109324cfSFilipe Manana 1906109324cfSFilipe Manana /* 1907109324cfSFilipe Manana * !path->locks[1] means we have a single node tree, the leaf is 1908109324cfSFilipe Manana * the root of the tree. 1909109324cfSFilipe Manana */ 1910109324cfSFilipe Manana if (path->locks[1] && leaf_free_space >= ins_len) { 1911109324cfSFilipe Manana struct btrfs_disk_key first_key; 1912109324cfSFilipe Manana 1913109324cfSFilipe Manana ASSERT(btrfs_header_nritems(leaf) > 0); 1914109324cfSFilipe Manana btrfs_item_key(leaf, &first_key, 0); 1915109324cfSFilipe Manana 1916109324cfSFilipe Manana /* 1917109324cfSFilipe Manana * Doing the extra comparison with the first key is cheap, 1918109324cfSFilipe Manana * taking into account that the first key is very likely 1919109324cfSFilipe Manana * already in a cache line because it immediately follows 1920109324cfSFilipe Manana * the extent buffer's header and we have recently accessed 1921109324cfSFilipe Manana * the header's level field. 1922109324cfSFilipe Manana */ 1923109324cfSFilipe Manana ret = comp_keys(&first_key, key); 1924109324cfSFilipe Manana if (ret < 0) { 1925109324cfSFilipe Manana /* 1926109324cfSFilipe Manana * The first key is smaller than the key we want 1927109324cfSFilipe Manana * to insert, so we are safe to unlock all upper 1928109324cfSFilipe Manana * nodes and we have to do the binary search. 1929109324cfSFilipe Manana * 1930109324cfSFilipe Manana * We do use btrfs_unlock_up_safe() and not 1931109324cfSFilipe Manana * unlock_up() because the later does not unlock 1932109324cfSFilipe Manana * nodes with a slot of 0 - we can safely unlock 1933109324cfSFilipe Manana * any node even if its slot is 0 since in this 1934109324cfSFilipe Manana * case the key does not end up at slot 0 of the 1935109324cfSFilipe Manana * leaf and there's no need to split the leaf. 1936109324cfSFilipe Manana */ 1937109324cfSFilipe Manana btrfs_unlock_up_safe(path, 1); 1938109324cfSFilipe Manana search_low_slot = 1; 1939109324cfSFilipe Manana } else { 1940109324cfSFilipe Manana /* 1941109324cfSFilipe Manana * The first key is >= then the key we want to 1942109324cfSFilipe Manana * insert, so we can skip the binary search as 1943109324cfSFilipe Manana * the target key will be at slot 0. 1944109324cfSFilipe Manana * 1945109324cfSFilipe Manana * We can not unlock upper nodes when the key is 1946109324cfSFilipe Manana * less than the first key, because we will need 1947109324cfSFilipe Manana * to update the key at slot 0 of the parent node 1948109324cfSFilipe Manana * and possibly of other upper nodes too. 1949109324cfSFilipe Manana * If the key matches the first key, then we can 1950109324cfSFilipe Manana * unlock all the upper nodes, using 1951109324cfSFilipe Manana * btrfs_unlock_up_safe() instead of unlock_up() 1952109324cfSFilipe Manana * as stated above. 1953109324cfSFilipe Manana */ 1954109324cfSFilipe Manana if (ret == 0) 1955109324cfSFilipe Manana btrfs_unlock_up_safe(path, 1); 1956109324cfSFilipe Manana /* 1957109324cfSFilipe Manana * ret is already 0 or 1, matching the result of 1958109324cfSFilipe Manana * a btrfs_bin_search() call, so there is no need 1959109324cfSFilipe Manana * to adjust it. 1960109324cfSFilipe Manana */ 1961109324cfSFilipe Manana do_bin_search = false; 1962109324cfSFilipe Manana path->slots[0] = 0; 1963109324cfSFilipe Manana } 1964109324cfSFilipe Manana } 1965109324cfSFilipe Manana } 1966109324cfSFilipe Manana 1967109324cfSFilipe Manana if (do_bin_search) { 1968109324cfSFilipe Manana ret = search_for_key_slot(leaf, search_low_slot, key, 1969109324cfSFilipe Manana prev_cmp, &path->slots[0]); 1970109324cfSFilipe Manana if (ret < 0) 1971109324cfSFilipe Manana return ret; 1972109324cfSFilipe Manana } 1973109324cfSFilipe Manana 1974109324cfSFilipe Manana if (ins_len > 0) { 1975109324cfSFilipe Manana /* 1976109324cfSFilipe Manana * Item key already exists. In this case, if we are allowed to 1977109324cfSFilipe Manana * insert the item (for example, in dir_item case, item key 1978109324cfSFilipe Manana * collision is allowed), it will be merged with the original 1979109324cfSFilipe Manana * item. Only the item size grows, no new btrfs item will be 1980109324cfSFilipe Manana * added. If search_for_extension is not set, ins_len already 1981109324cfSFilipe Manana * accounts the size btrfs_item, deduct it here so leaf space 1982109324cfSFilipe Manana * check will be correct. 1983109324cfSFilipe Manana */ 1984109324cfSFilipe Manana if (ret == 0 && !path->search_for_extension) { 1985109324cfSFilipe Manana ASSERT(ins_len >= sizeof(struct btrfs_item)); 1986109324cfSFilipe Manana ins_len -= sizeof(struct btrfs_item); 1987109324cfSFilipe Manana } 1988109324cfSFilipe Manana 1989109324cfSFilipe Manana ASSERT(leaf_free_space >= 0); 1990109324cfSFilipe Manana 1991109324cfSFilipe Manana if (leaf_free_space < ins_len) { 1992109324cfSFilipe Manana int err; 1993109324cfSFilipe Manana 1994109324cfSFilipe Manana err = split_leaf(trans, root, key, path, ins_len, 1995109324cfSFilipe Manana (ret == 0)); 1996bb8e9a60SFilipe Manana ASSERT(err <= 0); 1997bb8e9a60SFilipe Manana if (WARN_ON(err > 0)) 1998bb8e9a60SFilipe Manana err = -EUCLEAN; 1999109324cfSFilipe Manana if (err) 2000109324cfSFilipe Manana ret = err; 2001109324cfSFilipe Manana } 2002109324cfSFilipe Manana } 2003109324cfSFilipe Manana 2004109324cfSFilipe Manana return ret; 2005109324cfSFilipe Manana } 2006109324cfSFilipe Manana 2007c8c42864SChris Mason /* 20084271eceaSNikolay Borisov * btrfs_search_slot - look for a key in a tree and perform necessary 20094271eceaSNikolay Borisov * modifications to preserve tree invariants. 201074123bd7SChris Mason * 20114271eceaSNikolay Borisov * @trans: Handle of transaction, used when modifying the tree 20124271eceaSNikolay Borisov * @p: Holds all btree nodes along the search path 20134271eceaSNikolay Borisov * @root: The root node of the tree 20144271eceaSNikolay Borisov * @key: The key we are looking for 20159a664971Sethanwu * @ins_len: Indicates purpose of search: 20169a664971Sethanwu * >0 for inserts it's size of item inserted (*) 20179a664971Sethanwu * <0 for deletions 20189a664971Sethanwu * 0 for plain searches, not modifying the tree 20199a664971Sethanwu * 20209a664971Sethanwu * (*) If size of item inserted doesn't include 20219a664971Sethanwu * sizeof(struct btrfs_item), then p->search_for_extension must 20229a664971Sethanwu * be set. 20234271eceaSNikolay Borisov * @cow: boolean should CoW operations be performed. Must always be 1 20244271eceaSNikolay Borisov * when modifying the tree. 202597571fd0SChris Mason * 20264271eceaSNikolay Borisov * If @ins_len > 0, nodes and leaves will be split as we walk down the tree. 20274271eceaSNikolay Borisov * If @ins_len < 0, nodes will be merged as we walk down the tree (if possible) 20284271eceaSNikolay Borisov * 20294271eceaSNikolay Borisov * If @key is found, 0 is returned and you can find the item in the leaf level 20304271eceaSNikolay Borisov * of the path (level 0) 20314271eceaSNikolay Borisov * 20324271eceaSNikolay Borisov * If @key isn't found, 1 is returned and the leaf level of the path (level 0) 20334271eceaSNikolay Borisov * points to the slot where it should be inserted 20344271eceaSNikolay Borisov * 20354271eceaSNikolay Borisov * If an error is encountered while searching the tree a negative error number 20364271eceaSNikolay Borisov * is returned 203774123bd7SChris Mason */ 2038310712b2SOmar Sandoval int btrfs_search_slot(struct btrfs_trans_handle *trans, struct btrfs_root *root, 2039310712b2SOmar Sandoval const struct btrfs_key *key, struct btrfs_path *p, 2040310712b2SOmar Sandoval int ins_len, int cow) 2041be0e5c09SChris Mason { 2042d96b3424SFilipe Manana struct btrfs_fs_info *fs_info = root->fs_info; 20435f39d397SChris Mason struct extent_buffer *b; 2044be0e5c09SChris Mason int slot; 2045be0e5c09SChris Mason int ret; 204633c66f43SYan Zheng int err; 2047be0e5c09SChris Mason int level; 2048925baeddSChris Mason int lowest_unlock = 1; 2049bd681513SChris Mason /* everything at write_lock_level or lower must be write locked */ 2050bd681513SChris Mason int write_lock_level = 0; 20519f3a7427SChris Mason u8 lowest_level = 0; 2052f7c79f30SChris Mason int min_write_lock_level; 2053d7396f07SFilipe David Borba Manana int prev_cmp; 20549f3a7427SChris Mason 2055a4c853afSChenXiaoSong might_sleep(); 2056a4c853afSChenXiaoSong 20576702ed49SChris Mason lowest_level = p->lowest_level; 2058323ac95bSChris Mason WARN_ON(lowest_level && ins_len > 0); 205922b0ebdaSChris Mason WARN_ON(p->nodes[0] != NULL); 2060eb653de1SFilipe David Borba Manana BUG_ON(!cow && ins_len); 206125179201SJosef Bacik 2062857bc13fSJosef Bacik /* 2063857bc13fSJosef Bacik * For now only allow nowait for read only operations. There's no 2064857bc13fSJosef Bacik * strict reason why we can't, we just only need it for reads so it's 2065857bc13fSJosef Bacik * only implemented for reads. 2066857bc13fSJosef Bacik */ 2067857bc13fSJosef Bacik ASSERT(!p->nowait || !cow); 2068857bc13fSJosef Bacik 2069bd681513SChris Mason if (ins_len < 0) { 2070925baeddSChris Mason lowest_unlock = 2; 207165b51a00SChris Mason 2072bd681513SChris Mason /* when we are removing items, we might have to go up to level 2073bd681513SChris Mason * two as we update tree pointers Make sure we keep write 2074bd681513SChris Mason * for those levels as well 2075bd681513SChris Mason */ 2076bd681513SChris Mason write_lock_level = 2; 2077bd681513SChris Mason } else if (ins_len > 0) { 2078bd681513SChris Mason /* 2079bd681513SChris Mason * for inserting items, make sure we have a write lock on 2080bd681513SChris Mason * level 1 so we can update keys 2081bd681513SChris Mason */ 2082bd681513SChris Mason write_lock_level = 1; 2083bd681513SChris Mason } 2084bd681513SChris Mason 2085bd681513SChris Mason if (!cow) 2086bd681513SChris Mason write_lock_level = -1; 2087bd681513SChris Mason 208809a2a8f9SJosef Bacik if (cow && (p->keep_locks || p->lowest_level)) 2089bd681513SChris Mason write_lock_level = BTRFS_MAX_LEVEL; 2090bd681513SChris Mason 2091f7c79f30SChris Mason min_write_lock_level = write_lock_level; 2092f7c79f30SChris Mason 2093d96b3424SFilipe Manana if (p->need_commit_sem) { 2094d96b3424SFilipe Manana ASSERT(p->search_commit_root); 2095857bc13fSJosef Bacik if (p->nowait) { 2096857bc13fSJosef Bacik if (!down_read_trylock(&fs_info->commit_root_sem)) 2097857bc13fSJosef Bacik return -EAGAIN; 2098857bc13fSJosef Bacik } else { 2099d96b3424SFilipe Manana down_read(&fs_info->commit_root_sem); 2100d96b3424SFilipe Manana } 2101857bc13fSJosef Bacik } 2102d96b3424SFilipe Manana 2103bb803951SChris Mason again: 2104d7396f07SFilipe David Borba Manana prev_cmp = -1; 21051fc28d8eSLiu Bo b = btrfs_search_slot_get_root(root, p, write_lock_level); 2106be6821f8SFilipe Manana if (IS_ERR(b)) { 2107be6821f8SFilipe Manana ret = PTR_ERR(b); 2108be6821f8SFilipe Manana goto done; 2109be6821f8SFilipe Manana } 2110925baeddSChris Mason 2111eb60ceacSChris Mason while (b) { 2112f624d976SQu Wenruo int dec = 0; 2113f624d976SQu Wenruo 21145f39d397SChris Mason level = btrfs_header_level(b); 211565b51a00SChris Mason 211602217ed2SChris Mason if (cow) { 21179ea2c7c9SNikolay Borisov bool last_level = (level == (BTRFS_MAX_LEVEL - 1)); 21189ea2c7c9SNikolay Borisov 2119c8c42864SChris Mason /* 2120c8c42864SChris Mason * if we don't really need to cow this block 2121c8c42864SChris Mason * then we don't want to set the path blocking, 2122c8c42864SChris Mason * so we test it here 2123c8c42864SChris Mason */ 21245963ffcaSJosef Bacik if (!should_cow_block(trans, root, b)) 212565b51a00SChris Mason goto cow_done; 21265d4f98a2SYan Zheng 2127bd681513SChris Mason /* 2128bd681513SChris Mason * must have write locks on this node and the 2129bd681513SChris Mason * parent 2130bd681513SChris Mason */ 21315124e00eSJosef Bacik if (level > write_lock_level || 21325124e00eSJosef Bacik (level + 1 > write_lock_level && 21335124e00eSJosef Bacik level + 1 < BTRFS_MAX_LEVEL && 21345124e00eSJosef Bacik p->nodes[level + 1])) { 2135bd681513SChris Mason write_lock_level = level + 1; 2136bd681513SChris Mason btrfs_release_path(p); 2137bd681513SChris Mason goto again; 2138bd681513SChris Mason } 2139bd681513SChris Mason 21409ea2c7c9SNikolay Borisov if (last_level) 21419ea2c7c9SNikolay Borisov err = btrfs_cow_block(trans, root, b, NULL, 0, 21429631e4ccSJosef Bacik &b, 21439631e4ccSJosef Bacik BTRFS_NESTING_COW); 21449ea2c7c9SNikolay Borisov else 214533c66f43SYan Zheng err = btrfs_cow_block(trans, root, b, 2146e20d96d6SChris Mason p->nodes[level + 1], 21479631e4ccSJosef Bacik p->slots[level + 1], &b, 21489631e4ccSJosef Bacik BTRFS_NESTING_COW); 214933c66f43SYan Zheng if (err) { 215033c66f43SYan Zheng ret = err; 215165b51a00SChris Mason goto done; 215254aa1f4dSChris Mason } 215302217ed2SChris Mason } 215465b51a00SChris Mason cow_done: 2155eb60ceacSChris Mason p->nodes[level] = b; 2156b4ce94deSChris Mason 2157b4ce94deSChris Mason /* 2158b4ce94deSChris Mason * we have a lock on b and as long as we aren't changing 2159b4ce94deSChris Mason * the tree, there is no way to for the items in b to change. 2160b4ce94deSChris Mason * It is safe to drop the lock on our parent before we 2161b4ce94deSChris Mason * go through the expensive btree search on b. 2162b4ce94deSChris Mason * 2163eb653de1SFilipe David Borba Manana * If we're inserting or deleting (ins_len != 0), then we might 2164eb653de1SFilipe David Borba Manana * be changing slot zero, which may require changing the parent. 2165eb653de1SFilipe David Borba Manana * So, we can't drop the lock until after we know which slot 2166eb653de1SFilipe David Borba Manana * we're operating on. 2167b4ce94deSChris Mason */ 2168eb653de1SFilipe David Borba Manana if (!ins_len && !p->keep_locks) { 2169eb653de1SFilipe David Borba Manana int u = level + 1; 2170eb653de1SFilipe David Borba Manana 2171eb653de1SFilipe David Borba Manana if (u < BTRFS_MAX_LEVEL && p->locks[u]) { 2172eb653de1SFilipe David Borba Manana btrfs_tree_unlock_rw(p->nodes[u], p->locks[u]); 2173eb653de1SFilipe David Borba Manana p->locks[u] = 0; 2174eb653de1SFilipe David Borba Manana } 2175eb653de1SFilipe David Borba Manana } 2176b4ce94deSChris Mason 2177e2e58d0fSFilipe Manana if (level == 0) { 2178109324cfSFilipe Manana if (ins_len > 0) 2179e5e1c174SFilipe Manana ASSERT(write_lock_level >= 1); 2180bd681513SChris Mason 2181109324cfSFilipe Manana ret = search_leaf(trans, root, key, p, ins_len, prev_cmp); 2182459931ecSChris Mason if (!p->search_for_split) 2183f7c79f30SChris Mason unlock_up(p, level, lowest_unlock, 21844b6f8e96SLiu Bo min_write_lock_level, NULL); 218565b51a00SChris Mason goto done; 218665b51a00SChris Mason } 2187e2e58d0fSFilipe Manana 2188e2e58d0fSFilipe Manana ret = search_for_key_slot(b, 0, key, prev_cmp, &slot); 2189e2e58d0fSFilipe Manana if (ret < 0) 2190e2e58d0fSFilipe Manana goto done; 2191e2e58d0fSFilipe Manana prev_cmp = ret; 2192e2e58d0fSFilipe Manana 2193f624d976SQu Wenruo if (ret && slot > 0) { 2194f624d976SQu Wenruo dec = 1; 2195f624d976SQu Wenruo slot--; 2196f624d976SQu Wenruo } 2197f624d976SQu Wenruo p->slots[level] = slot; 2198f624d976SQu Wenruo err = setup_nodes_for_search(trans, root, p, b, level, ins_len, 2199f624d976SQu Wenruo &write_lock_level); 2200f624d976SQu Wenruo if (err == -EAGAIN) 2201f624d976SQu Wenruo goto again; 2202f624d976SQu Wenruo if (err) { 2203f624d976SQu Wenruo ret = err; 2204f624d976SQu Wenruo goto done; 2205f624d976SQu Wenruo } 2206f624d976SQu Wenruo b = p->nodes[level]; 2207f624d976SQu Wenruo slot = p->slots[level]; 2208f624d976SQu Wenruo 2209f624d976SQu Wenruo /* 2210f624d976SQu Wenruo * Slot 0 is special, if we change the key we have to update 2211f624d976SQu Wenruo * the parent pointer which means we must have a write lock on 2212f624d976SQu Wenruo * the parent 2213f624d976SQu Wenruo */ 2214f624d976SQu Wenruo if (slot == 0 && ins_len && write_lock_level < level + 1) { 2215f624d976SQu Wenruo write_lock_level = level + 1; 2216f624d976SQu Wenruo btrfs_release_path(p); 2217f624d976SQu Wenruo goto again; 2218f624d976SQu Wenruo } 2219f624d976SQu Wenruo 2220f624d976SQu Wenruo unlock_up(p, level, lowest_unlock, min_write_lock_level, 2221f624d976SQu Wenruo &write_lock_level); 2222f624d976SQu Wenruo 2223f624d976SQu Wenruo if (level == lowest_level) { 2224f624d976SQu Wenruo if (dec) 2225f624d976SQu Wenruo p->slots[level]++; 2226f624d976SQu Wenruo goto done; 2227f624d976SQu Wenruo } 2228f624d976SQu Wenruo 2229f624d976SQu Wenruo err = read_block_for_search(root, p, &b, level, slot, key); 2230f624d976SQu Wenruo if (err == -EAGAIN) 2231f624d976SQu Wenruo goto again; 2232f624d976SQu Wenruo if (err) { 2233f624d976SQu Wenruo ret = err; 2234f624d976SQu Wenruo goto done; 2235f624d976SQu Wenruo } 2236f624d976SQu Wenruo 2237f624d976SQu Wenruo if (!p->skip_locking) { 2238f624d976SQu Wenruo level = btrfs_header_level(b); 2239b40130b2SJosef Bacik 2240b40130b2SJosef Bacik btrfs_maybe_reset_lockdep_class(root, b); 2241b40130b2SJosef Bacik 2242f624d976SQu Wenruo if (level <= write_lock_level) { 2243f624d976SQu Wenruo btrfs_tree_lock(b); 2244f624d976SQu Wenruo p->locks[level] = BTRFS_WRITE_LOCK; 2245f624d976SQu Wenruo } else { 2246857bc13fSJosef Bacik if (p->nowait) { 2247857bc13fSJosef Bacik if (!btrfs_try_tree_read_lock(b)) { 2248857bc13fSJosef Bacik free_extent_buffer(b); 2249857bc13fSJosef Bacik ret = -EAGAIN; 2250857bc13fSJosef Bacik goto done; 2251857bc13fSJosef Bacik } 2252857bc13fSJosef Bacik } else { 2253fe596ca3SJosef Bacik btrfs_tree_read_lock(b); 2254857bc13fSJosef Bacik } 2255f624d976SQu Wenruo p->locks[level] = BTRFS_READ_LOCK; 2256f624d976SQu Wenruo } 2257f624d976SQu Wenruo p->nodes[level] = b; 2258f624d976SQu Wenruo } 225965b51a00SChris Mason } 226065b51a00SChris Mason ret = 1; 226165b51a00SChris Mason done: 22625f5bc6b1SFilipe Manana if (ret < 0 && !p->skip_release_on_error) 2263b3b4aa74SDavid Sterba btrfs_release_path(p); 2264d96b3424SFilipe Manana 2265d96b3424SFilipe Manana if (p->need_commit_sem) { 2266d96b3424SFilipe Manana int ret2; 2267d96b3424SFilipe Manana 2268d96b3424SFilipe Manana ret2 = finish_need_commit_sem_search(p); 2269d96b3424SFilipe Manana up_read(&fs_info->commit_root_sem); 2270d96b3424SFilipe Manana if (ret2) 2271d96b3424SFilipe Manana ret = ret2; 2272d96b3424SFilipe Manana } 2273d96b3424SFilipe Manana 2274be0e5c09SChris Mason return ret; 2275be0e5c09SChris Mason } 2276f75e2b79SJosef Bacik ALLOW_ERROR_INJECTION(btrfs_search_slot, ERRNO); 2277be0e5c09SChris Mason 227874123bd7SChris Mason /* 22795d9e75c4SJan Schmidt * Like btrfs_search_slot, this looks for a key in the given tree. It uses the 22805d9e75c4SJan Schmidt * current state of the tree together with the operations recorded in the tree 22815d9e75c4SJan Schmidt * modification log to search for the key in a previous version of this tree, as 22825d9e75c4SJan Schmidt * denoted by the time_seq parameter. 22835d9e75c4SJan Schmidt * 22845d9e75c4SJan Schmidt * Naturally, there is no support for insert, delete or cow operations. 22855d9e75c4SJan Schmidt * 22865d9e75c4SJan Schmidt * The resulting path and return value will be set up as if we called 22875d9e75c4SJan Schmidt * btrfs_search_slot at that point in time with ins_len and cow both set to 0. 22885d9e75c4SJan Schmidt */ 2289310712b2SOmar Sandoval int btrfs_search_old_slot(struct btrfs_root *root, const struct btrfs_key *key, 22905d9e75c4SJan Schmidt struct btrfs_path *p, u64 time_seq) 22915d9e75c4SJan Schmidt { 22920b246afaSJeff Mahoney struct btrfs_fs_info *fs_info = root->fs_info; 22935d9e75c4SJan Schmidt struct extent_buffer *b; 22945d9e75c4SJan Schmidt int slot; 22955d9e75c4SJan Schmidt int ret; 22965d9e75c4SJan Schmidt int err; 22975d9e75c4SJan Schmidt int level; 22985d9e75c4SJan Schmidt int lowest_unlock = 1; 22995d9e75c4SJan Schmidt u8 lowest_level = 0; 23005d9e75c4SJan Schmidt 23015d9e75c4SJan Schmidt lowest_level = p->lowest_level; 23025d9e75c4SJan Schmidt WARN_ON(p->nodes[0] != NULL); 2303c922b016SStefan Roesch ASSERT(!p->nowait); 23045d9e75c4SJan Schmidt 23055d9e75c4SJan Schmidt if (p->search_commit_root) { 23065d9e75c4SJan Schmidt BUG_ON(time_seq); 23075d9e75c4SJan Schmidt return btrfs_search_slot(NULL, root, key, p, 0, 0); 23085d9e75c4SJan Schmidt } 23095d9e75c4SJan Schmidt 23105d9e75c4SJan Schmidt again: 2311f3a84ccdSFilipe Manana b = btrfs_get_old_root(root, time_seq); 2312315bed43SNikolay Borisov if (!b) { 2313315bed43SNikolay Borisov ret = -EIO; 2314315bed43SNikolay Borisov goto done; 2315315bed43SNikolay Borisov } 23165d9e75c4SJan Schmidt level = btrfs_header_level(b); 23175d9e75c4SJan Schmidt p->locks[level] = BTRFS_READ_LOCK; 23185d9e75c4SJan Schmidt 23195d9e75c4SJan Schmidt while (b) { 2320abe9339dSQu Wenruo int dec = 0; 2321abe9339dSQu Wenruo 23225d9e75c4SJan Schmidt level = btrfs_header_level(b); 23235d9e75c4SJan Schmidt p->nodes[level] = b; 23245d9e75c4SJan Schmidt 23255d9e75c4SJan Schmidt /* 23265d9e75c4SJan Schmidt * we have a lock on b and as long as we aren't changing 23275d9e75c4SJan Schmidt * the tree, there is no way to for the items in b to change. 23285d9e75c4SJan Schmidt * It is safe to drop the lock on our parent before we 23295d9e75c4SJan Schmidt * go through the expensive btree search on b. 23305d9e75c4SJan Schmidt */ 23315d9e75c4SJan Schmidt btrfs_unlock_up_safe(p, level + 1); 23325d9e75c4SJan Schmidt 2333fdf8d595SAnand Jain ret = btrfs_bin_search(b, 0, key, &slot); 2334cbca7d59SFilipe Manana if (ret < 0) 2335cbca7d59SFilipe Manana goto done; 23365d9e75c4SJan Schmidt 2337abe9339dSQu Wenruo if (level == 0) { 2338abe9339dSQu Wenruo p->slots[level] = slot; 2339abe9339dSQu Wenruo unlock_up(p, level, lowest_unlock, 0, NULL); 2340abe9339dSQu Wenruo goto done; 2341abe9339dSQu Wenruo } 2342abe9339dSQu Wenruo 23435d9e75c4SJan Schmidt if (ret && slot > 0) { 23445d9e75c4SJan Schmidt dec = 1; 2345abe9339dSQu Wenruo slot--; 23465d9e75c4SJan Schmidt } 23475d9e75c4SJan Schmidt p->slots[level] = slot; 23485d9e75c4SJan Schmidt unlock_up(p, level, lowest_unlock, 0, NULL); 23495d9e75c4SJan Schmidt 23505d9e75c4SJan Schmidt if (level == lowest_level) { 23515d9e75c4SJan Schmidt if (dec) 23525d9e75c4SJan Schmidt p->slots[level]++; 23535d9e75c4SJan Schmidt goto done; 23545d9e75c4SJan Schmidt } 23555d9e75c4SJan Schmidt 2356abe9339dSQu Wenruo err = read_block_for_search(root, p, &b, level, slot, key); 23575d9e75c4SJan Schmidt if (err == -EAGAIN) 23585d9e75c4SJan Schmidt goto again; 23595d9e75c4SJan Schmidt if (err) { 23605d9e75c4SJan Schmidt ret = err; 23615d9e75c4SJan Schmidt goto done; 23625d9e75c4SJan Schmidt } 23635d9e75c4SJan Schmidt 23645d9e75c4SJan Schmidt level = btrfs_header_level(b); 23655d9e75c4SJan Schmidt btrfs_tree_read_lock(b); 2366f3a84ccdSFilipe Manana b = btrfs_tree_mod_log_rewind(fs_info, p, b, time_seq); 2367db7f3436SJosef Bacik if (!b) { 2368db7f3436SJosef Bacik ret = -ENOMEM; 2369db7f3436SJosef Bacik goto done; 2370db7f3436SJosef Bacik } 23715d9e75c4SJan Schmidt p->locks[level] = BTRFS_READ_LOCK; 23725d9e75c4SJan Schmidt p->nodes[level] = b; 23735d9e75c4SJan Schmidt } 23745d9e75c4SJan Schmidt ret = 1; 23755d9e75c4SJan Schmidt done: 23765d9e75c4SJan Schmidt if (ret < 0) 23775d9e75c4SJan Schmidt btrfs_release_path(p); 23785d9e75c4SJan Schmidt 23795d9e75c4SJan Schmidt return ret; 23805d9e75c4SJan Schmidt } 23815d9e75c4SJan Schmidt 23825d9e75c4SJan Schmidt /* 2383f469c8bdSFilipe Manana * Search the tree again to find a leaf with smaller keys. 2384f469c8bdSFilipe Manana * Returns 0 if it found something. 2385f469c8bdSFilipe Manana * Returns 1 if there are no smaller keys. 2386f469c8bdSFilipe Manana * Returns < 0 on error. 2387f469c8bdSFilipe Manana * 2388f469c8bdSFilipe Manana * This may release the path, and so you may lose any locks held at the 2389f469c8bdSFilipe Manana * time you call it. 2390f469c8bdSFilipe Manana */ 2391f469c8bdSFilipe Manana static int btrfs_prev_leaf(struct btrfs_root *root, struct btrfs_path *path) 2392f469c8bdSFilipe Manana { 2393f469c8bdSFilipe Manana struct btrfs_key key; 2394f469c8bdSFilipe Manana struct btrfs_key orig_key; 2395f469c8bdSFilipe Manana struct btrfs_disk_key found_key; 2396f469c8bdSFilipe Manana int ret; 2397f469c8bdSFilipe Manana 2398f469c8bdSFilipe Manana btrfs_item_key_to_cpu(path->nodes[0], &key, 0); 2399f469c8bdSFilipe Manana orig_key = key; 2400f469c8bdSFilipe Manana 2401f469c8bdSFilipe Manana if (key.offset > 0) { 2402f469c8bdSFilipe Manana key.offset--; 2403f469c8bdSFilipe Manana } else if (key.type > 0) { 2404f469c8bdSFilipe Manana key.type--; 2405f469c8bdSFilipe Manana key.offset = (u64)-1; 2406f469c8bdSFilipe Manana } else if (key.objectid > 0) { 2407f469c8bdSFilipe Manana key.objectid--; 2408f469c8bdSFilipe Manana key.type = (u8)-1; 2409f469c8bdSFilipe Manana key.offset = (u64)-1; 2410f469c8bdSFilipe Manana } else { 2411f469c8bdSFilipe Manana return 1; 2412f469c8bdSFilipe Manana } 2413f469c8bdSFilipe Manana 2414f469c8bdSFilipe Manana btrfs_release_path(path); 2415f469c8bdSFilipe Manana ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); 2416f469c8bdSFilipe Manana if (ret <= 0) 2417f469c8bdSFilipe Manana return ret; 2418f469c8bdSFilipe Manana 2419f469c8bdSFilipe Manana /* 2420f469c8bdSFilipe Manana * Previous key not found. Even if we were at slot 0 of the leaf we had 2421f469c8bdSFilipe Manana * before releasing the path and calling btrfs_search_slot(), we now may 2422f469c8bdSFilipe Manana * be in a slot pointing to the same original key - this can happen if 2423f469c8bdSFilipe Manana * after we released the path, one of more items were moved from a 2424f469c8bdSFilipe Manana * sibling leaf into the front of the leaf we had due to an insertion 2425f469c8bdSFilipe Manana * (see push_leaf_right()). 2426f469c8bdSFilipe Manana * If we hit this case and our slot is > 0 and just decrement the slot 2427f469c8bdSFilipe Manana * so that the caller does not process the same key again, which may or 2428f469c8bdSFilipe Manana * may not break the caller, depending on its logic. 2429f469c8bdSFilipe Manana */ 2430f469c8bdSFilipe Manana if (path->slots[0] < btrfs_header_nritems(path->nodes[0])) { 2431f469c8bdSFilipe Manana btrfs_item_key(path->nodes[0], &found_key, path->slots[0]); 2432f469c8bdSFilipe Manana ret = comp_keys(&found_key, &orig_key); 2433f469c8bdSFilipe Manana if (ret == 0) { 2434f469c8bdSFilipe Manana if (path->slots[0] > 0) { 2435f469c8bdSFilipe Manana path->slots[0]--; 2436f469c8bdSFilipe Manana return 0; 2437f469c8bdSFilipe Manana } 2438f469c8bdSFilipe Manana /* 2439f469c8bdSFilipe Manana * At slot 0, same key as before, it means orig_key is 2440f469c8bdSFilipe Manana * the lowest, leftmost, key in the tree. We're done. 2441f469c8bdSFilipe Manana */ 2442f469c8bdSFilipe Manana return 1; 2443f469c8bdSFilipe Manana } 2444f469c8bdSFilipe Manana } 2445f469c8bdSFilipe Manana 2446f469c8bdSFilipe Manana btrfs_item_key(path->nodes[0], &found_key, 0); 2447f469c8bdSFilipe Manana ret = comp_keys(&found_key, &key); 2448f469c8bdSFilipe Manana /* 2449f469c8bdSFilipe Manana * We might have had an item with the previous key in the tree right 2450f469c8bdSFilipe Manana * before we released our path. And after we released our path, that 2451f469c8bdSFilipe Manana * item might have been pushed to the first slot (0) of the leaf we 2452f469c8bdSFilipe Manana * were holding due to a tree balance. Alternatively, an item with the 2453f469c8bdSFilipe Manana * previous key can exist as the only element of a leaf (big fat item). 2454f469c8bdSFilipe Manana * Therefore account for these 2 cases, so that our callers (like 2455f469c8bdSFilipe Manana * btrfs_previous_item) don't miss an existing item with a key matching 2456f469c8bdSFilipe Manana * the previous key we computed above. 2457f469c8bdSFilipe Manana */ 2458f469c8bdSFilipe Manana if (ret <= 0) 2459f469c8bdSFilipe Manana return 0; 2460f469c8bdSFilipe Manana return 1; 2461f469c8bdSFilipe Manana } 2462f469c8bdSFilipe Manana 2463f469c8bdSFilipe Manana /* 24642f38b3e1SArne Jansen * helper to use instead of search slot if no exact match is needed but 24652f38b3e1SArne Jansen * instead the next or previous item should be returned. 24662f38b3e1SArne Jansen * When find_higher is true, the next higher item is returned, the next lower 24672f38b3e1SArne Jansen * otherwise. 24682f38b3e1SArne Jansen * When return_any and find_higher are both true, and no higher item is found, 24692f38b3e1SArne Jansen * return the next lower instead. 24702f38b3e1SArne Jansen * When return_any is true and find_higher is false, and no lower item is found, 24712f38b3e1SArne Jansen * return the next higher instead. 24722f38b3e1SArne Jansen * It returns 0 if any item is found, 1 if none is found (tree empty), and 24732f38b3e1SArne Jansen * < 0 on error 24742f38b3e1SArne Jansen */ 24752f38b3e1SArne Jansen int btrfs_search_slot_for_read(struct btrfs_root *root, 2476310712b2SOmar Sandoval const struct btrfs_key *key, 2477310712b2SOmar Sandoval struct btrfs_path *p, int find_higher, 2478310712b2SOmar Sandoval int return_any) 24792f38b3e1SArne Jansen { 24802f38b3e1SArne Jansen int ret; 24812f38b3e1SArne Jansen struct extent_buffer *leaf; 24822f38b3e1SArne Jansen 24832f38b3e1SArne Jansen again: 24842f38b3e1SArne Jansen ret = btrfs_search_slot(NULL, root, key, p, 0, 0); 24852f38b3e1SArne Jansen if (ret <= 0) 24862f38b3e1SArne Jansen return ret; 24872f38b3e1SArne Jansen /* 24882f38b3e1SArne Jansen * a return value of 1 means the path is at the position where the 24892f38b3e1SArne Jansen * item should be inserted. Normally this is the next bigger item, 24902f38b3e1SArne Jansen * but in case the previous item is the last in a leaf, path points 24912f38b3e1SArne Jansen * to the first free slot in the previous leaf, i.e. at an invalid 24922f38b3e1SArne Jansen * item. 24932f38b3e1SArne Jansen */ 24942f38b3e1SArne Jansen leaf = p->nodes[0]; 24952f38b3e1SArne Jansen 24962f38b3e1SArne Jansen if (find_higher) { 24972f38b3e1SArne Jansen if (p->slots[0] >= btrfs_header_nritems(leaf)) { 24982f38b3e1SArne Jansen ret = btrfs_next_leaf(root, p); 24992f38b3e1SArne Jansen if (ret <= 0) 25002f38b3e1SArne Jansen return ret; 25012f38b3e1SArne Jansen if (!return_any) 25022f38b3e1SArne Jansen return 1; 25032f38b3e1SArne Jansen /* 25042f38b3e1SArne Jansen * no higher item found, return the next 25052f38b3e1SArne Jansen * lower instead 25062f38b3e1SArne Jansen */ 25072f38b3e1SArne Jansen return_any = 0; 25082f38b3e1SArne Jansen find_higher = 0; 25092f38b3e1SArne Jansen btrfs_release_path(p); 25102f38b3e1SArne Jansen goto again; 25112f38b3e1SArne Jansen } 25122f38b3e1SArne Jansen } else { 25132f38b3e1SArne Jansen if (p->slots[0] == 0) { 25142f38b3e1SArne Jansen ret = btrfs_prev_leaf(root, p); 2515e6793769SArne Jansen if (ret < 0) 25162f38b3e1SArne Jansen return ret; 2517e6793769SArne Jansen if (!ret) { 251823c6bf6aSFilipe David Borba Manana leaf = p->nodes[0]; 251923c6bf6aSFilipe David Borba Manana if (p->slots[0] == btrfs_header_nritems(leaf)) 252023c6bf6aSFilipe David Borba Manana p->slots[0]--; 2521e6793769SArne Jansen return 0; 2522e6793769SArne Jansen } 25232f38b3e1SArne Jansen if (!return_any) 25242f38b3e1SArne Jansen return 1; 25252f38b3e1SArne Jansen /* 25262f38b3e1SArne Jansen * no lower item found, return the next 25272f38b3e1SArne Jansen * higher instead 25282f38b3e1SArne Jansen */ 25292f38b3e1SArne Jansen return_any = 0; 25302f38b3e1SArne Jansen find_higher = 1; 25312f38b3e1SArne Jansen btrfs_release_path(p); 25322f38b3e1SArne Jansen goto again; 2533e6793769SArne Jansen } else { 25342f38b3e1SArne Jansen --p->slots[0]; 25352f38b3e1SArne Jansen } 25362f38b3e1SArne Jansen } 25372f38b3e1SArne Jansen return 0; 25382f38b3e1SArne Jansen } 25392f38b3e1SArne Jansen 25402f38b3e1SArne Jansen /* 25410ff40a91SMarcos Paulo de Souza * Execute search and call btrfs_previous_item to traverse backwards if the item 25420ff40a91SMarcos Paulo de Souza * was not found. 25430ff40a91SMarcos Paulo de Souza * 25440ff40a91SMarcos Paulo de Souza * Return 0 if found, 1 if not found and < 0 if error. 25450ff40a91SMarcos Paulo de Souza */ 25460ff40a91SMarcos Paulo de Souza int btrfs_search_backwards(struct btrfs_root *root, struct btrfs_key *key, 25470ff40a91SMarcos Paulo de Souza struct btrfs_path *path) 25480ff40a91SMarcos Paulo de Souza { 25490ff40a91SMarcos Paulo de Souza int ret; 25500ff40a91SMarcos Paulo de Souza 25510ff40a91SMarcos Paulo de Souza ret = btrfs_search_slot(NULL, root, key, path, 0, 0); 25520ff40a91SMarcos Paulo de Souza if (ret > 0) 25530ff40a91SMarcos Paulo de Souza ret = btrfs_previous_item(root, path, key->objectid, key->type); 25540ff40a91SMarcos Paulo de Souza 25550ff40a91SMarcos Paulo de Souza if (ret == 0) 25560ff40a91SMarcos Paulo de Souza btrfs_item_key_to_cpu(path->nodes[0], key, path->slots[0]); 25570ff40a91SMarcos Paulo de Souza 25580ff40a91SMarcos Paulo de Souza return ret; 25590ff40a91SMarcos Paulo de Souza } 25600ff40a91SMarcos Paulo de Souza 256143dd529aSDavid Sterba /* 256262142be3SGabriel Niebler * Search for a valid slot for the given path. 256362142be3SGabriel Niebler * 256462142be3SGabriel Niebler * @root: The root node of the tree. 256562142be3SGabriel Niebler * @key: Will contain a valid item if found. 256662142be3SGabriel Niebler * @path: The starting point to validate the slot. 256762142be3SGabriel Niebler * 256862142be3SGabriel Niebler * Return: 0 if the item is valid 256962142be3SGabriel Niebler * 1 if not found 257062142be3SGabriel Niebler * <0 if error. 257162142be3SGabriel Niebler */ 257262142be3SGabriel Niebler int btrfs_get_next_valid_item(struct btrfs_root *root, struct btrfs_key *key, 257362142be3SGabriel Niebler struct btrfs_path *path) 257462142be3SGabriel Niebler { 2575524f14bbSFilipe Manana if (path->slots[0] >= btrfs_header_nritems(path->nodes[0])) { 257662142be3SGabriel Niebler int ret; 257762142be3SGabriel Niebler 257862142be3SGabriel Niebler ret = btrfs_next_leaf(root, path); 257962142be3SGabriel Niebler if (ret) 258062142be3SGabriel Niebler return ret; 258162142be3SGabriel Niebler } 2582524f14bbSFilipe Manana 2583524f14bbSFilipe Manana btrfs_item_key_to_cpu(path->nodes[0], key, path->slots[0]); 258462142be3SGabriel Niebler return 0; 258562142be3SGabriel Niebler } 258662142be3SGabriel Niebler 25870ff40a91SMarcos Paulo de Souza /* 258874123bd7SChris Mason * adjust the pointers going up the tree, starting at level 258974123bd7SChris Mason * making sure the right key of each node is points to 'key'. 259074123bd7SChris Mason * This is used after shifting pointers to the left, so it stops 259174123bd7SChris Mason * fixing up pointers when a given leaf/node is not in slot 0 of the 259274123bd7SChris Mason * higher levels 2593aa5d6bedSChris Mason * 259474123bd7SChris Mason */ 2595b167fa91SNikolay Borisov static void fixup_low_keys(struct btrfs_path *path, 25965f39d397SChris Mason struct btrfs_disk_key *key, int level) 2597be0e5c09SChris Mason { 2598be0e5c09SChris Mason int i; 25995f39d397SChris Mason struct extent_buffer *t; 26000e82bcfeSDavid Sterba int ret; 26015f39d397SChris Mason 2602234b63a0SChris Mason for (i = level; i < BTRFS_MAX_LEVEL; i++) { 2603be0e5c09SChris Mason int tslot = path->slots[i]; 26040e82bcfeSDavid Sterba 2605eb60ceacSChris Mason if (!path->nodes[i]) 2606be0e5c09SChris Mason break; 26075f39d397SChris Mason t = path->nodes[i]; 2608f3a84ccdSFilipe Manana ret = btrfs_tree_mod_log_insert_key(t, tslot, 260933cff222SFilipe Manana BTRFS_MOD_LOG_KEY_REPLACE); 26100e82bcfeSDavid Sterba BUG_ON(ret < 0); 26115f39d397SChris Mason btrfs_set_node_key(t, key, tslot); 2612d6025579SChris Mason btrfs_mark_buffer_dirty(path->nodes[i]); 2613be0e5c09SChris Mason if (tslot != 0) 2614be0e5c09SChris Mason break; 2615be0e5c09SChris Mason } 2616be0e5c09SChris Mason } 2617be0e5c09SChris Mason 261874123bd7SChris Mason /* 261931840ae1SZheng Yan * update item key. 262031840ae1SZheng Yan * 262131840ae1SZheng Yan * This function isn't completely safe. It's the caller's responsibility 262231840ae1SZheng Yan * that the new key won't break the order 262331840ae1SZheng Yan */ 2624b7a0365eSDaniel Dressler void btrfs_set_item_key_safe(struct btrfs_fs_info *fs_info, 2625b7a0365eSDaniel Dressler struct btrfs_path *path, 2626310712b2SOmar Sandoval const struct btrfs_key *new_key) 262731840ae1SZheng Yan { 262831840ae1SZheng Yan struct btrfs_disk_key disk_key; 262931840ae1SZheng Yan struct extent_buffer *eb; 263031840ae1SZheng Yan int slot; 263131840ae1SZheng Yan 263231840ae1SZheng Yan eb = path->nodes[0]; 263331840ae1SZheng Yan slot = path->slots[0]; 263431840ae1SZheng Yan if (slot > 0) { 263531840ae1SZheng Yan btrfs_item_key(eb, &disk_key, slot - 1); 26367c15d410SQu Wenruo if (unlikely(comp_keys(&disk_key, new_key) >= 0)) { 2637eee3b811SQu Wenruo btrfs_print_leaf(eb); 26387c15d410SQu Wenruo btrfs_crit(fs_info, 26397c15d410SQu Wenruo "slot %u key (%llu %u %llu) new key (%llu %u %llu)", 26407c15d410SQu Wenruo slot, btrfs_disk_key_objectid(&disk_key), 26417c15d410SQu Wenruo btrfs_disk_key_type(&disk_key), 26427c15d410SQu Wenruo btrfs_disk_key_offset(&disk_key), 26437c15d410SQu Wenruo new_key->objectid, new_key->type, 26447c15d410SQu Wenruo new_key->offset); 26457c15d410SQu Wenruo BUG(); 26467c15d410SQu Wenruo } 264731840ae1SZheng Yan } 264831840ae1SZheng Yan if (slot < btrfs_header_nritems(eb) - 1) { 264931840ae1SZheng Yan btrfs_item_key(eb, &disk_key, slot + 1); 26507c15d410SQu Wenruo if (unlikely(comp_keys(&disk_key, new_key) <= 0)) { 2651eee3b811SQu Wenruo btrfs_print_leaf(eb); 26527c15d410SQu Wenruo btrfs_crit(fs_info, 26537c15d410SQu Wenruo "slot %u key (%llu %u %llu) new key (%llu %u %llu)", 26547c15d410SQu Wenruo slot, btrfs_disk_key_objectid(&disk_key), 26557c15d410SQu Wenruo btrfs_disk_key_type(&disk_key), 26567c15d410SQu Wenruo btrfs_disk_key_offset(&disk_key), 26577c15d410SQu Wenruo new_key->objectid, new_key->type, 26587c15d410SQu Wenruo new_key->offset); 26597c15d410SQu Wenruo BUG(); 26607c15d410SQu Wenruo } 266131840ae1SZheng Yan } 266231840ae1SZheng Yan 266331840ae1SZheng Yan btrfs_cpu_key_to_disk(&disk_key, new_key); 266431840ae1SZheng Yan btrfs_set_item_key(eb, &disk_key, slot); 266531840ae1SZheng Yan btrfs_mark_buffer_dirty(eb); 266631840ae1SZheng Yan if (slot == 0) 2667b167fa91SNikolay Borisov fixup_low_keys(path, &disk_key, 1); 266831840ae1SZheng Yan } 266931840ae1SZheng Yan 267031840ae1SZheng Yan /* 2671d16c702fSQu Wenruo * Check key order of two sibling extent buffers. 2672d16c702fSQu Wenruo * 2673d16c702fSQu Wenruo * Return true if something is wrong. 2674d16c702fSQu Wenruo * Return false if everything is fine. 2675d16c702fSQu Wenruo * 2676d16c702fSQu Wenruo * Tree-checker only works inside one tree block, thus the following 2677d16c702fSQu Wenruo * corruption can not be detected by tree-checker: 2678d16c702fSQu Wenruo * 2679d16c702fSQu Wenruo * Leaf @left | Leaf @right 2680d16c702fSQu Wenruo * -------------------------------------------------------------- 2681d16c702fSQu Wenruo * | 1 | 2 | 3 | 4 | 5 | f6 | | 7 | 8 | 2682d16c702fSQu Wenruo * 2683d16c702fSQu Wenruo * Key f6 in leaf @left itself is valid, but not valid when the next 2684d16c702fSQu Wenruo * key in leaf @right is 7. 2685d16c702fSQu Wenruo * This can only be checked at tree block merge time. 2686d16c702fSQu Wenruo * And since tree checker has ensured all key order in each tree block 2687d16c702fSQu Wenruo * is correct, we only need to bother the last key of @left and the first 2688d16c702fSQu Wenruo * key of @right. 2689d16c702fSQu Wenruo */ 2690d16c702fSQu Wenruo static bool check_sibling_keys(struct extent_buffer *left, 2691d16c702fSQu Wenruo struct extent_buffer *right) 2692d16c702fSQu Wenruo { 2693d16c702fSQu Wenruo struct btrfs_key left_last; 2694d16c702fSQu Wenruo struct btrfs_key right_first; 2695d16c702fSQu Wenruo int level = btrfs_header_level(left); 2696d16c702fSQu Wenruo int nr_left = btrfs_header_nritems(left); 2697d16c702fSQu Wenruo int nr_right = btrfs_header_nritems(right); 2698d16c702fSQu Wenruo 2699d16c702fSQu Wenruo /* No key to check in one of the tree blocks */ 2700d16c702fSQu Wenruo if (!nr_left || !nr_right) 2701d16c702fSQu Wenruo return false; 2702d16c702fSQu Wenruo 2703d16c702fSQu Wenruo if (level) { 2704d16c702fSQu Wenruo btrfs_node_key_to_cpu(left, &left_last, nr_left - 1); 2705d16c702fSQu Wenruo btrfs_node_key_to_cpu(right, &right_first, 0); 2706d16c702fSQu Wenruo } else { 2707d16c702fSQu Wenruo btrfs_item_key_to_cpu(left, &left_last, nr_left - 1); 2708d16c702fSQu Wenruo btrfs_item_key_to_cpu(right, &right_first, 0); 2709d16c702fSQu Wenruo } 2710d16c702fSQu Wenruo 271188ad95b0SFilipe Manana if (unlikely(btrfs_comp_cpu_keys(&left_last, &right_first) >= 0)) { 2712a2cea677SFilipe Manana btrfs_crit(left->fs_info, "left extent buffer:"); 2713a2cea677SFilipe Manana btrfs_print_tree(left, false); 2714a2cea677SFilipe Manana btrfs_crit(left->fs_info, "right extent buffer:"); 2715a2cea677SFilipe Manana btrfs_print_tree(right, false); 2716d16c702fSQu Wenruo btrfs_crit(left->fs_info, 2717d16c702fSQu Wenruo "bad key order, sibling blocks, left last (%llu %u %llu) right first (%llu %u %llu)", 2718d16c702fSQu Wenruo left_last.objectid, left_last.type, 2719d16c702fSQu Wenruo left_last.offset, right_first.objectid, 2720d16c702fSQu Wenruo right_first.type, right_first.offset); 2721d16c702fSQu Wenruo return true; 2722d16c702fSQu Wenruo } 2723d16c702fSQu Wenruo return false; 2724d16c702fSQu Wenruo } 2725d16c702fSQu Wenruo 2726d16c702fSQu Wenruo /* 272774123bd7SChris Mason * try to push data from one node into the next node left in the 272879f95c82SChris Mason * tree. 2729aa5d6bedSChris Mason * 2730aa5d6bedSChris Mason * returns 0 if some ptrs were pushed left, < 0 if there was some horrible 2731aa5d6bedSChris Mason * error, and > 0 if there was no room in the left hand block. 273274123bd7SChris Mason */ 273398ed5174SChris Mason static int push_node_left(struct btrfs_trans_handle *trans, 27342ff7e61eSJeff Mahoney struct extent_buffer *dst, 2735971a1f66SChris Mason struct extent_buffer *src, int empty) 2736be0e5c09SChris Mason { 2737d30a668fSDavid Sterba struct btrfs_fs_info *fs_info = trans->fs_info; 2738be0e5c09SChris Mason int push_items = 0; 2739bb803951SChris Mason int src_nritems; 2740bb803951SChris Mason int dst_nritems; 2741aa5d6bedSChris Mason int ret = 0; 2742be0e5c09SChris Mason 27435f39d397SChris Mason src_nritems = btrfs_header_nritems(src); 27445f39d397SChris Mason dst_nritems = btrfs_header_nritems(dst); 27450b246afaSJeff Mahoney push_items = BTRFS_NODEPTRS_PER_BLOCK(fs_info) - dst_nritems; 27467bb86316SChris Mason WARN_ON(btrfs_header_generation(src) != trans->transid); 27477bb86316SChris Mason WARN_ON(btrfs_header_generation(dst) != trans->transid); 274854aa1f4dSChris Mason 2749bce4eae9SChris Mason if (!empty && src_nritems <= 8) 2750971a1f66SChris Mason return 1; 2751971a1f66SChris Mason 2752d397712bSChris Mason if (push_items <= 0) 2753be0e5c09SChris Mason return 1; 2754be0e5c09SChris Mason 2755bce4eae9SChris Mason if (empty) { 2756971a1f66SChris Mason push_items = min(src_nritems, push_items); 2757bce4eae9SChris Mason if (push_items < src_nritems) { 2758bce4eae9SChris Mason /* leave at least 8 pointers in the node if 2759bce4eae9SChris Mason * we aren't going to empty it 2760bce4eae9SChris Mason */ 2761bce4eae9SChris Mason if (src_nritems - push_items < 8) { 2762bce4eae9SChris Mason if (push_items <= 8) 2763bce4eae9SChris Mason return 1; 2764bce4eae9SChris Mason push_items -= 8; 2765bce4eae9SChris Mason } 2766bce4eae9SChris Mason } 2767bce4eae9SChris Mason } else 2768bce4eae9SChris Mason push_items = min(src_nritems - 8, push_items); 276979f95c82SChris Mason 2770d16c702fSQu Wenruo /* dst is the left eb, src is the middle eb */ 2771d16c702fSQu Wenruo if (check_sibling_keys(dst, src)) { 2772d16c702fSQu Wenruo ret = -EUCLEAN; 2773d16c702fSQu Wenruo btrfs_abort_transaction(trans, ret); 2774d16c702fSQu Wenruo return ret; 2775d16c702fSQu Wenruo } 2776f3a84ccdSFilipe Manana ret = btrfs_tree_mod_log_eb_copy(dst, src, dst_nritems, 0, push_items); 27775de865eeSFilipe David Borba Manana if (ret) { 277866642832SJeff Mahoney btrfs_abort_transaction(trans, ret); 27795de865eeSFilipe David Borba Manana return ret; 27805de865eeSFilipe David Borba Manana } 27815f39d397SChris Mason copy_extent_buffer(dst, src, 2782e23efd8eSJosef Bacik btrfs_node_key_ptr_offset(dst, dst_nritems), 2783e23efd8eSJosef Bacik btrfs_node_key_ptr_offset(src, 0), 2784123abc88SChris Mason push_items * sizeof(struct btrfs_key_ptr)); 27855f39d397SChris Mason 2786bb803951SChris Mason if (push_items < src_nritems) { 278757911b8bSJan Schmidt /* 2788*5cead542SBoris Burkov * btrfs_tree_mod_log_eb_copy handles logging the move, so we 2789*5cead542SBoris Burkov * don't need to do an explicit tree mod log operation for it. 279057911b8bSJan Schmidt */ 2791e23efd8eSJosef Bacik memmove_extent_buffer(src, btrfs_node_key_ptr_offset(src, 0), 2792e23efd8eSJosef Bacik btrfs_node_key_ptr_offset(src, push_items), 2793e2fa7227SChris Mason (src_nritems - push_items) * 2794123abc88SChris Mason sizeof(struct btrfs_key_ptr)); 2795bb803951SChris Mason } 27965f39d397SChris Mason btrfs_set_header_nritems(src, src_nritems - push_items); 27975f39d397SChris Mason btrfs_set_header_nritems(dst, dst_nritems + push_items); 27985f39d397SChris Mason btrfs_mark_buffer_dirty(src); 27995f39d397SChris Mason btrfs_mark_buffer_dirty(dst); 280031840ae1SZheng Yan 2801bb803951SChris Mason return ret; 2802be0e5c09SChris Mason } 2803be0e5c09SChris Mason 280497571fd0SChris Mason /* 280579f95c82SChris Mason * try to push data from one node into the next node right in the 280679f95c82SChris Mason * tree. 280779f95c82SChris Mason * 280879f95c82SChris Mason * returns 0 if some ptrs were pushed, < 0 if there was some horrible 280979f95c82SChris Mason * error, and > 0 if there was no room in the right hand block. 281079f95c82SChris Mason * 281179f95c82SChris Mason * this will only push up to 1/2 the contents of the left node over 281279f95c82SChris Mason */ 28135f39d397SChris Mason static int balance_node_right(struct btrfs_trans_handle *trans, 28145f39d397SChris Mason struct extent_buffer *dst, 28155f39d397SChris Mason struct extent_buffer *src) 281679f95c82SChris Mason { 281755d32ed8SDavid Sterba struct btrfs_fs_info *fs_info = trans->fs_info; 281879f95c82SChris Mason int push_items = 0; 281979f95c82SChris Mason int max_push; 282079f95c82SChris Mason int src_nritems; 282179f95c82SChris Mason int dst_nritems; 282279f95c82SChris Mason int ret = 0; 282379f95c82SChris Mason 28247bb86316SChris Mason WARN_ON(btrfs_header_generation(src) != trans->transid); 28257bb86316SChris Mason WARN_ON(btrfs_header_generation(dst) != trans->transid); 28267bb86316SChris Mason 28275f39d397SChris Mason src_nritems = btrfs_header_nritems(src); 28285f39d397SChris Mason dst_nritems = btrfs_header_nritems(dst); 28290b246afaSJeff Mahoney push_items = BTRFS_NODEPTRS_PER_BLOCK(fs_info) - dst_nritems; 2830d397712bSChris Mason if (push_items <= 0) 283179f95c82SChris Mason return 1; 2832bce4eae9SChris Mason 2833d397712bSChris Mason if (src_nritems < 4) 2834bce4eae9SChris Mason return 1; 283579f95c82SChris Mason 283679f95c82SChris Mason max_push = src_nritems / 2 + 1; 283779f95c82SChris Mason /* don't try to empty the node */ 2838d397712bSChris Mason if (max_push >= src_nritems) 283979f95c82SChris Mason return 1; 2840252c38f0SYan 284179f95c82SChris Mason if (max_push < push_items) 284279f95c82SChris Mason push_items = max_push; 284379f95c82SChris Mason 2844d16c702fSQu Wenruo /* dst is the right eb, src is the middle eb */ 2845d16c702fSQu Wenruo if (check_sibling_keys(src, dst)) { 2846d16c702fSQu Wenruo ret = -EUCLEAN; 2847d16c702fSQu Wenruo btrfs_abort_transaction(trans, ret); 2848d16c702fSQu Wenruo return ret; 2849d16c702fSQu Wenruo } 2850*5cead542SBoris Burkov 2851*5cead542SBoris Burkov /* 2852*5cead542SBoris Burkov * btrfs_tree_mod_log_eb_copy handles logging the move, so we don't 2853*5cead542SBoris Burkov * need to do an explicit tree mod log operation for it. 2854*5cead542SBoris Burkov */ 2855e23efd8eSJosef Bacik memmove_extent_buffer(dst, btrfs_node_key_ptr_offset(dst, push_items), 2856e23efd8eSJosef Bacik btrfs_node_key_ptr_offset(dst, 0), 28575f39d397SChris Mason (dst_nritems) * 28585f39d397SChris Mason sizeof(struct btrfs_key_ptr)); 2859d6025579SChris Mason 2860f3a84ccdSFilipe Manana ret = btrfs_tree_mod_log_eb_copy(dst, src, 0, src_nritems - push_items, 2861ed874f0dSDavid Sterba push_items); 28625de865eeSFilipe David Borba Manana if (ret) { 286366642832SJeff Mahoney btrfs_abort_transaction(trans, ret); 28645de865eeSFilipe David Borba Manana return ret; 28655de865eeSFilipe David Borba Manana } 28665f39d397SChris Mason copy_extent_buffer(dst, src, 2867e23efd8eSJosef Bacik btrfs_node_key_ptr_offset(dst, 0), 2868e23efd8eSJosef Bacik btrfs_node_key_ptr_offset(src, src_nritems - push_items), 2869123abc88SChris Mason push_items * sizeof(struct btrfs_key_ptr)); 287079f95c82SChris Mason 28715f39d397SChris Mason btrfs_set_header_nritems(src, src_nritems - push_items); 28725f39d397SChris Mason btrfs_set_header_nritems(dst, dst_nritems + push_items); 287379f95c82SChris Mason 28745f39d397SChris Mason btrfs_mark_buffer_dirty(src); 28755f39d397SChris Mason btrfs_mark_buffer_dirty(dst); 287631840ae1SZheng Yan 287779f95c82SChris Mason return ret; 287879f95c82SChris Mason } 287979f95c82SChris Mason 288079f95c82SChris Mason /* 288197571fd0SChris Mason * helper function to insert a new root level in the tree. 288297571fd0SChris Mason * A new node is allocated, and a single item is inserted to 288397571fd0SChris Mason * point to the existing root 2884aa5d6bedSChris Mason * 2885aa5d6bedSChris Mason * returns zero on success or < 0 on failure. 288697571fd0SChris Mason */ 2887d397712bSChris Mason static noinline int insert_new_root(struct btrfs_trans_handle *trans, 28885f39d397SChris Mason struct btrfs_root *root, 2889fdd99c72SLiu Bo struct btrfs_path *path, int level) 289074123bd7SChris Mason { 28910b246afaSJeff Mahoney struct btrfs_fs_info *fs_info = root->fs_info; 28927bb86316SChris Mason u64 lower_gen; 28935f39d397SChris Mason struct extent_buffer *lower; 28945f39d397SChris Mason struct extent_buffer *c; 2895925baeddSChris Mason struct extent_buffer *old; 28965f39d397SChris Mason struct btrfs_disk_key lower_key; 2897d9d19a01SDavid Sterba int ret; 28985c680ed6SChris Mason 28995c680ed6SChris Mason BUG_ON(path->nodes[level]); 29005c680ed6SChris Mason BUG_ON(path->nodes[level-1] != root->node); 29015c680ed6SChris Mason 29027bb86316SChris Mason lower = path->nodes[level-1]; 29037bb86316SChris Mason if (level == 1) 29047bb86316SChris Mason btrfs_item_key(lower, &lower_key, 0); 29057bb86316SChris Mason else 29067bb86316SChris Mason btrfs_node_key(lower, &lower_key, 0); 29077bb86316SChris Mason 290879bd3712SFilipe Manana c = btrfs_alloc_tree_block(trans, root, 0, root->root_key.objectid, 290979bd3712SFilipe Manana &lower_key, level, root->node->start, 0, 2910cf6f34aaSJosef Bacik BTRFS_NESTING_NEW_ROOT); 29115f39d397SChris Mason if (IS_ERR(c)) 29125f39d397SChris Mason return PTR_ERR(c); 2913925baeddSChris Mason 29140b246afaSJeff Mahoney root_add_used(root, fs_info->nodesize); 2915f0486c68SYan, Zheng 29165f39d397SChris Mason btrfs_set_header_nritems(c, 1); 29175f39d397SChris Mason btrfs_set_node_key(c, &lower_key, 0); 2918db94535dSChris Mason btrfs_set_node_blockptr(c, 0, lower->start); 29197bb86316SChris Mason lower_gen = btrfs_header_generation(lower); 292031840ae1SZheng Yan WARN_ON(lower_gen != trans->transid); 29217bb86316SChris Mason 29227bb86316SChris Mason btrfs_set_node_ptr_generation(c, 0, lower_gen); 29235f39d397SChris Mason 29245f39d397SChris Mason btrfs_mark_buffer_dirty(c); 2925d5719762SChris Mason 2926925baeddSChris Mason old = root->node; 2927406808abSFilipe Manana ret = btrfs_tree_mod_log_insert_root(root->node, c, false); 2928d9d19a01SDavid Sterba BUG_ON(ret < 0); 2929240f62c8SChris Mason rcu_assign_pointer(root->node, c); 2930925baeddSChris Mason 2931925baeddSChris Mason /* the super has an extra ref to root->node */ 2932925baeddSChris Mason free_extent_buffer(old); 2933925baeddSChris Mason 29340b86a832SChris Mason add_root_to_dirty_list(root); 293567439dadSDavid Sterba atomic_inc(&c->refs); 29365f39d397SChris Mason path->nodes[level] = c; 2937ac5887c8SJosef Bacik path->locks[level] = BTRFS_WRITE_LOCK; 293874123bd7SChris Mason path->slots[level] = 0; 293974123bd7SChris Mason return 0; 294074123bd7SChris Mason } 29415c680ed6SChris Mason 29425c680ed6SChris Mason /* 29435c680ed6SChris Mason * worker function to insert a single pointer in a node. 29445c680ed6SChris Mason * the node should have enough room for the pointer already 294597571fd0SChris Mason * 29465c680ed6SChris Mason * slot and level indicate where you want the key to go, and 29475c680ed6SChris Mason * blocknr is the block the key points to. 29485c680ed6SChris Mason */ 2949143bede5SJeff Mahoney static void insert_ptr(struct btrfs_trans_handle *trans, 29506ad3cf6dSDavid Sterba struct btrfs_path *path, 2951143bede5SJeff Mahoney struct btrfs_disk_key *key, u64 bytenr, 2952c3e06965SJan Schmidt int slot, int level) 29535c680ed6SChris Mason { 29545f39d397SChris Mason struct extent_buffer *lower; 29555c680ed6SChris Mason int nritems; 2956f3ea38daSJan Schmidt int ret; 29575c680ed6SChris Mason 29585c680ed6SChris Mason BUG_ON(!path->nodes[level]); 295949d0c642SFilipe Manana btrfs_assert_tree_write_locked(path->nodes[level]); 29605f39d397SChris Mason lower = path->nodes[level]; 29615f39d397SChris Mason nritems = btrfs_header_nritems(lower); 2962c293498bSStoyan Gaydarov BUG_ON(slot > nritems); 29636ad3cf6dSDavid Sterba BUG_ON(nritems == BTRFS_NODEPTRS_PER_BLOCK(trans->fs_info)); 296474123bd7SChris Mason if (slot != nritems) { 2965bf1d3425SDavid Sterba if (level) { 2966f3a84ccdSFilipe Manana ret = btrfs_tree_mod_log_insert_move(lower, slot + 1, 2967f3a84ccdSFilipe Manana slot, nritems - slot); 2968bf1d3425SDavid Sterba BUG_ON(ret < 0); 2969bf1d3425SDavid Sterba } 29705f39d397SChris Mason memmove_extent_buffer(lower, 2971e23efd8eSJosef Bacik btrfs_node_key_ptr_offset(lower, slot + 1), 2972e23efd8eSJosef Bacik btrfs_node_key_ptr_offset(lower, slot), 2973123abc88SChris Mason (nritems - slot) * sizeof(struct btrfs_key_ptr)); 297474123bd7SChris Mason } 2975c3e06965SJan Schmidt if (level) { 2976f3a84ccdSFilipe Manana ret = btrfs_tree_mod_log_insert_key(lower, slot, 297733cff222SFilipe Manana BTRFS_MOD_LOG_KEY_ADD); 2978f3ea38daSJan Schmidt BUG_ON(ret < 0); 2979f3ea38daSJan Schmidt } 29805f39d397SChris Mason btrfs_set_node_key(lower, key, slot); 2981db94535dSChris Mason btrfs_set_node_blockptr(lower, slot, bytenr); 298274493f7aSChris Mason WARN_ON(trans->transid == 0); 298374493f7aSChris Mason btrfs_set_node_ptr_generation(lower, slot, trans->transid); 29845f39d397SChris Mason btrfs_set_header_nritems(lower, nritems + 1); 29855f39d397SChris Mason btrfs_mark_buffer_dirty(lower); 298674123bd7SChris Mason } 298774123bd7SChris Mason 298897571fd0SChris Mason /* 298997571fd0SChris Mason * split the node at the specified level in path in two. 299097571fd0SChris Mason * The path is corrected to point to the appropriate node after the split 299197571fd0SChris Mason * 299297571fd0SChris Mason * Before splitting this tries to make some room in the node by pushing 299397571fd0SChris Mason * left and right, if either one works, it returns right away. 2994aa5d6bedSChris Mason * 2995aa5d6bedSChris Mason * returns 0 on success and < 0 on failure 299697571fd0SChris Mason */ 2997e02119d5SChris Mason static noinline int split_node(struct btrfs_trans_handle *trans, 2998e02119d5SChris Mason struct btrfs_root *root, 2999e02119d5SChris Mason struct btrfs_path *path, int level) 3000be0e5c09SChris Mason { 30010b246afaSJeff Mahoney struct btrfs_fs_info *fs_info = root->fs_info; 30025f39d397SChris Mason struct extent_buffer *c; 30035f39d397SChris Mason struct extent_buffer *split; 30045f39d397SChris Mason struct btrfs_disk_key disk_key; 3005be0e5c09SChris Mason int mid; 30065c680ed6SChris Mason int ret; 30077518a238SChris Mason u32 c_nritems; 3008be0e5c09SChris Mason 30095f39d397SChris Mason c = path->nodes[level]; 30107bb86316SChris Mason WARN_ON(btrfs_header_generation(c) != trans->transid); 30115f39d397SChris Mason if (c == root->node) { 3012d9abbf1cSJan Schmidt /* 301390f8d62eSJan Schmidt * trying to split the root, lets make a new one 301490f8d62eSJan Schmidt * 3015fdd99c72SLiu Bo * tree mod log: We don't log_removal old root in 301690f8d62eSJan Schmidt * insert_new_root, because that root buffer will be kept as a 301790f8d62eSJan Schmidt * normal node. We are going to log removal of half of the 3018f3a84ccdSFilipe Manana * elements below with btrfs_tree_mod_log_eb_copy(). We're 3019f3a84ccdSFilipe Manana * holding a tree lock on the buffer, which is why we cannot 3020f3a84ccdSFilipe Manana * race with other tree_mod_log users. 3021d9abbf1cSJan Schmidt */ 3022fdd99c72SLiu Bo ret = insert_new_root(trans, root, path, level + 1); 30235c680ed6SChris Mason if (ret) 30245c680ed6SChris Mason return ret; 3025b3612421SChris Mason } else { 3026e66f709bSChris Mason ret = push_nodes_for_insert(trans, root, path, level); 30275f39d397SChris Mason c = path->nodes[level]; 30285f39d397SChris Mason if (!ret && btrfs_header_nritems(c) < 30290b246afaSJeff Mahoney BTRFS_NODEPTRS_PER_BLOCK(fs_info) - 3) 3030e66f709bSChris Mason return 0; 303154aa1f4dSChris Mason if (ret < 0) 303254aa1f4dSChris Mason return ret; 30335c680ed6SChris Mason } 3034e66f709bSChris Mason 30355f39d397SChris Mason c_nritems = btrfs_header_nritems(c); 30365d4f98a2SYan Zheng mid = (c_nritems + 1) / 2; 30375d4f98a2SYan Zheng btrfs_node_key(c, &disk_key, mid); 30387bb86316SChris Mason 303979bd3712SFilipe Manana split = btrfs_alloc_tree_block(trans, root, 0, root->root_key.objectid, 304079bd3712SFilipe Manana &disk_key, level, c->start, 0, 304179bd3712SFilipe Manana BTRFS_NESTING_SPLIT); 30425f39d397SChris Mason if (IS_ERR(split)) 30435f39d397SChris Mason return PTR_ERR(split); 304454aa1f4dSChris Mason 30450b246afaSJeff Mahoney root_add_used(root, fs_info->nodesize); 3046bc877d28SNikolay Borisov ASSERT(btrfs_header_level(c) == level); 30475f39d397SChris Mason 3048f3a84ccdSFilipe Manana ret = btrfs_tree_mod_log_eb_copy(split, c, 0, mid, c_nritems - mid); 30495de865eeSFilipe David Borba Manana if (ret) { 305066642832SJeff Mahoney btrfs_abort_transaction(trans, ret); 30515de865eeSFilipe David Borba Manana return ret; 30525de865eeSFilipe David Borba Manana } 30535f39d397SChris Mason copy_extent_buffer(split, c, 3054e23efd8eSJosef Bacik btrfs_node_key_ptr_offset(split, 0), 3055e23efd8eSJosef Bacik btrfs_node_key_ptr_offset(c, mid), 3056123abc88SChris Mason (c_nritems - mid) * sizeof(struct btrfs_key_ptr)); 30575f39d397SChris Mason btrfs_set_header_nritems(split, c_nritems - mid); 30585f39d397SChris Mason btrfs_set_header_nritems(c, mid); 3059aa5d6bedSChris Mason 30605f39d397SChris Mason btrfs_mark_buffer_dirty(c); 30615f39d397SChris Mason btrfs_mark_buffer_dirty(split); 30625f39d397SChris Mason 30636ad3cf6dSDavid Sterba insert_ptr(trans, path, &disk_key, split->start, 3064c3e06965SJan Schmidt path->slots[level + 1] + 1, level + 1); 3065aa5d6bedSChris Mason 30665de08d7dSChris Mason if (path->slots[level] >= mid) { 30675c680ed6SChris Mason path->slots[level] -= mid; 3068925baeddSChris Mason btrfs_tree_unlock(c); 30695f39d397SChris Mason free_extent_buffer(c); 30705f39d397SChris Mason path->nodes[level] = split; 30715c680ed6SChris Mason path->slots[level + 1] += 1; 3072eb60ceacSChris Mason } else { 3073925baeddSChris Mason btrfs_tree_unlock(split); 30745f39d397SChris Mason free_extent_buffer(split); 3075be0e5c09SChris Mason } 3076d5286a92SNikolay Borisov return 0; 3077be0e5c09SChris Mason } 3078be0e5c09SChris Mason 307974123bd7SChris Mason /* 308074123bd7SChris Mason * how many bytes are required to store the items in a leaf. start 308174123bd7SChris Mason * and nr indicate which items in the leaf to check. This totals up the 308274123bd7SChris Mason * space used both by the item structs and the item data 308374123bd7SChris Mason */ 30846c75a589SQu Wenruo static int leaf_space_used(const struct extent_buffer *l, int start, int nr) 3085be0e5c09SChris Mason { 3086be0e5c09SChris Mason int data_len; 30875f39d397SChris Mason int nritems = btrfs_header_nritems(l); 3088d4dbff95SChris Mason int end = min(nritems, start + nr) - 1; 3089be0e5c09SChris Mason 3090be0e5c09SChris Mason if (!nr) 3091be0e5c09SChris Mason return 0; 30923212fa14SJosef Bacik data_len = btrfs_item_offset(l, start) + btrfs_item_size(l, start); 30933212fa14SJosef Bacik data_len = data_len - btrfs_item_offset(l, end); 30940783fcfcSChris Mason data_len += sizeof(struct btrfs_item) * nr; 3095d4dbff95SChris Mason WARN_ON(data_len < 0); 3096be0e5c09SChris Mason return data_len; 3097be0e5c09SChris Mason } 3098be0e5c09SChris Mason 309974123bd7SChris Mason /* 3100d4dbff95SChris Mason * The space between the end of the leaf items and 3101d4dbff95SChris Mason * the start of the leaf data. IOW, how much room 3102d4dbff95SChris Mason * the leaf has left for both items and data 3103d4dbff95SChris Mason */ 31046c75a589SQu Wenruo int btrfs_leaf_free_space(const struct extent_buffer *leaf) 3105d4dbff95SChris Mason { 3106e902baacSDavid Sterba struct btrfs_fs_info *fs_info = leaf->fs_info; 31075f39d397SChris Mason int nritems = btrfs_header_nritems(leaf); 31085f39d397SChris Mason int ret; 31090b246afaSJeff Mahoney 31100b246afaSJeff Mahoney ret = BTRFS_LEAF_DATA_SIZE(fs_info) - leaf_space_used(leaf, 0, nritems); 31115f39d397SChris Mason if (ret < 0) { 31120b246afaSJeff Mahoney btrfs_crit(fs_info, 3113efe120a0SFrank Holton "leaf free space ret %d, leaf data size %lu, used %d nritems %d", 3114da17066cSJeff Mahoney ret, 31150b246afaSJeff Mahoney (unsigned long) BTRFS_LEAF_DATA_SIZE(fs_info), 31165f39d397SChris Mason leaf_space_used(leaf, 0, nritems), nritems); 31175f39d397SChris Mason } 31185f39d397SChris Mason return ret; 3119d4dbff95SChris Mason } 3120d4dbff95SChris Mason 312199d8f83cSChris Mason /* 312299d8f83cSChris Mason * min slot controls the lowest index we're willing to push to the 312399d8f83cSChris Mason * right. We'll push up to and including min_slot, but no lower 312499d8f83cSChris Mason */ 3125ed25dab3SJosef Bacik static noinline int __push_leaf_right(struct btrfs_trans_handle *trans, 3126ed25dab3SJosef Bacik struct btrfs_path *path, 312744871b1bSChris Mason int data_size, int empty, 312844871b1bSChris Mason struct extent_buffer *right, 312999d8f83cSChris Mason int free_space, u32 left_nritems, 313099d8f83cSChris Mason u32 min_slot) 313100ec4c51SChris Mason { 3132f72f0010SDavid Sterba struct btrfs_fs_info *fs_info = right->fs_info; 31335f39d397SChris Mason struct extent_buffer *left = path->nodes[0]; 313444871b1bSChris Mason struct extent_buffer *upper = path->nodes[1]; 3135cfed81a0SChris Mason struct btrfs_map_token token; 31365f39d397SChris Mason struct btrfs_disk_key disk_key; 313700ec4c51SChris Mason int slot; 313834a38218SChris Mason u32 i; 313900ec4c51SChris Mason int push_space = 0; 314000ec4c51SChris Mason int push_items = 0; 314134a38218SChris Mason u32 nr; 31427518a238SChris Mason u32 right_nritems; 31435f39d397SChris Mason u32 data_end; 3144db94535dSChris Mason u32 this_item_size; 314500ec4c51SChris Mason 314634a38218SChris Mason if (empty) 314734a38218SChris Mason nr = 0; 314834a38218SChris Mason else 314999d8f83cSChris Mason nr = max_t(u32, 1, min_slot); 315034a38218SChris Mason 315131840ae1SZheng Yan if (path->slots[0] >= left_nritems) 315287b29b20SYan Zheng push_space += data_size; 315331840ae1SZheng Yan 315444871b1bSChris Mason slot = path->slots[1]; 315534a38218SChris Mason i = left_nritems - 1; 315634a38218SChris Mason while (i >= nr) { 315731840ae1SZheng Yan if (!empty && push_items > 0) { 315831840ae1SZheng Yan if (path->slots[0] > i) 315931840ae1SZheng Yan break; 316031840ae1SZheng Yan if (path->slots[0] == i) { 3161e902baacSDavid Sterba int space = btrfs_leaf_free_space(left); 3162e902baacSDavid Sterba 316331840ae1SZheng Yan if (space + push_space * 2 > free_space) 316431840ae1SZheng Yan break; 316531840ae1SZheng Yan } 316631840ae1SZheng Yan } 316731840ae1SZheng Yan 316800ec4c51SChris Mason if (path->slots[0] == i) 316987b29b20SYan Zheng push_space += data_size; 3170db94535dSChris Mason 31713212fa14SJosef Bacik this_item_size = btrfs_item_size(left, i); 317274794207SJosef Bacik if (this_item_size + sizeof(struct btrfs_item) + 317374794207SJosef Bacik push_space > free_space) 317400ec4c51SChris Mason break; 317531840ae1SZheng Yan 317600ec4c51SChris Mason push_items++; 317774794207SJosef Bacik push_space += this_item_size + sizeof(struct btrfs_item); 317834a38218SChris Mason if (i == 0) 317934a38218SChris Mason break; 318034a38218SChris Mason i--; 3181db94535dSChris Mason } 31825f39d397SChris Mason 3183925baeddSChris Mason if (push_items == 0) 3184925baeddSChris Mason goto out_unlock; 31855f39d397SChris Mason 31866c1500f2SJulia Lawall WARN_ON(!empty && push_items == left_nritems); 31875f39d397SChris Mason 318800ec4c51SChris Mason /* push left to right */ 31895f39d397SChris Mason right_nritems = btrfs_header_nritems(right); 319034a38218SChris Mason 3191dc2e724eSJosef Bacik push_space = btrfs_item_data_end(left, left_nritems - push_items); 31928f881e8cSDavid Sterba push_space -= leaf_data_end(left); 31935f39d397SChris Mason 319400ec4c51SChris Mason /* make room in the right data area */ 31958f881e8cSDavid Sterba data_end = leaf_data_end(right); 3196637e3b48SJosef Bacik memmove_leaf_data(right, data_end - push_space, data_end, 31970b246afaSJeff Mahoney BTRFS_LEAF_DATA_SIZE(fs_info) - data_end); 31985f39d397SChris Mason 319900ec4c51SChris Mason /* copy from the left data area */ 3200637e3b48SJosef Bacik copy_leaf_data(right, left, BTRFS_LEAF_DATA_SIZE(fs_info) - push_space, 3201637e3b48SJosef Bacik leaf_data_end(left), push_space); 32025f39d397SChris Mason 3203637e3b48SJosef Bacik memmove_leaf_items(right, push_items, 0, right_nritems); 32045f39d397SChris Mason 320500ec4c51SChris Mason /* copy the items from left to right */ 3206637e3b48SJosef Bacik copy_leaf_items(right, left, 0, left_nritems - push_items, push_items); 320700ec4c51SChris Mason 320800ec4c51SChris Mason /* update the item pointers */ 3209c82f823cSDavid Sterba btrfs_init_map_token(&token, right); 32107518a238SChris Mason right_nritems += push_items; 32115f39d397SChris Mason btrfs_set_header_nritems(right, right_nritems); 32120b246afaSJeff Mahoney push_space = BTRFS_LEAF_DATA_SIZE(fs_info); 32137518a238SChris Mason for (i = 0; i < right_nritems; i++) { 32143212fa14SJosef Bacik push_space -= btrfs_token_item_size(&token, i); 32153212fa14SJosef Bacik btrfs_set_token_item_offset(&token, i, push_space); 3216db94535dSChris Mason } 3217db94535dSChris Mason 32187518a238SChris Mason left_nritems -= push_items; 32195f39d397SChris Mason btrfs_set_header_nritems(left, left_nritems); 322000ec4c51SChris Mason 322134a38218SChris Mason if (left_nritems) 32225f39d397SChris Mason btrfs_mark_buffer_dirty(left); 3223f0486c68SYan, Zheng else 3224190a8339SJosef Bacik btrfs_clear_buffer_dirty(trans, left); 3225f0486c68SYan, Zheng 32265f39d397SChris Mason btrfs_mark_buffer_dirty(right); 3227a429e513SChris Mason 32285f39d397SChris Mason btrfs_item_key(right, &disk_key, 0); 32295f39d397SChris Mason btrfs_set_node_key(upper, &disk_key, slot + 1); 3230d6025579SChris Mason btrfs_mark_buffer_dirty(upper); 323102217ed2SChris Mason 323200ec4c51SChris Mason /* then fixup the leaf pointer in the path */ 32337518a238SChris Mason if (path->slots[0] >= left_nritems) { 32347518a238SChris Mason path->slots[0] -= left_nritems; 3235925baeddSChris Mason if (btrfs_header_nritems(path->nodes[0]) == 0) 3236190a8339SJosef Bacik btrfs_clear_buffer_dirty(trans, path->nodes[0]); 3237925baeddSChris Mason btrfs_tree_unlock(path->nodes[0]); 32385f39d397SChris Mason free_extent_buffer(path->nodes[0]); 32395f39d397SChris Mason path->nodes[0] = right; 324000ec4c51SChris Mason path->slots[1] += 1; 324100ec4c51SChris Mason } else { 3242925baeddSChris Mason btrfs_tree_unlock(right); 32435f39d397SChris Mason free_extent_buffer(right); 324400ec4c51SChris Mason } 324500ec4c51SChris Mason return 0; 3246925baeddSChris Mason 3247925baeddSChris Mason out_unlock: 3248925baeddSChris Mason btrfs_tree_unlock(right); 3249925baeddSChris Mason free_extent_buffer(right); 3250925baeddSChris Mason return 1; 325100ec4c51SChris Mason } 3252925baeddSChris Mason 325300ec4c51SChris Mason /* 325444871b1bSChris Mason * push some data in the path leaf to the right, trying to free up at 325574123bd7SChris Mason * least data_size bytes. returns zero if the push worked, nonzero otherwise 325644871b1bSChris Mason * 325744871b1bSChris Mason * returns 1 if the push failed because the other node didn't have enough 325844871b1bSChris Mason * room, 0 if everything worked out and < 0 if there were major errors. 325999d8f83cSChris Mason * 326099d8f83cSChris Mason * this will push starting from min_slot to the end of the leaf. It won't 326199d8f83cSChris Mason * push any slot lower than min_slot 326274123bd7SChris Mason */ 326344871b1bSChris Mason static int push_leaf_right(struct btrfs_trans_handle *trans, struct btrfs_root 326499d8f83cSChris Mason *root, struct btrfs_path *path, 326599d8f83cSChris Mason int min_data_size, int data_size, 326699d8f83cSChris Mason int empty, u32 min_slot) 3267be0e5c09SChris Mason { 326844871b1bSChris Mason struct extent_buffer *left = path->nodes[0]; 326944871b1bSChris Mason struct extent_buffer *right; 327044871b1bSChris Mason struct extent_buffer *upper; 327144871b1bSChris Mason int slot; 327244871b1bSChris Mason int free_space; 327344871b1bSChris Mason u32 left_nritems; 327444871b1bSChris Mason int ret; 327544871b1bSChris Mason 327644871b1bSChris Mason if (!path->nodes[1]) 327744871b1bSChris Mason return 1; 327844871b1bSChris Mason 327944871b1bSChris Mason slot = path->slots[1]; 328044871b1bSChris Mason upper = path->nodes[1]; 328144871b1bSChris Mason if (slot >= btrfs_header_nritems(upper) - 1) 328244871b1bSChris Mason return 1; 328344871b1bSChris Mason 328449d0c642SFilipe Manana btrfs_assert_tree_write_locked(path->nodes[1]); 328544871b1bSChris Mason 32864b231ae4SDavid Sterba right = btrfs_read_node_slot(upper, slot + 1); 3287fb770ae4SLiu Bo if (IS_ERR(right)) 32889cf14029SJosef Bacik return PTR_ERR(right); 328991ca338dSTsutomu Itoh 3290bf77467aSJosef Bacik __btrfs_tree_lock(right, BTRFS_NESTING_RIGHT); 329144871b1bSChris Mason 3292e902baacSDavid Sterba free_space = btrfs_leaf_free_space(right); 329344871b1bSChris Mason if (free_space < data_size) 329444871b1bSChris Mason goto out_unlock; 329544871b1bSChris Mason 329644871b1bSChris Mason ret = btrfs_cow_block(trans, root, right, upper, 3297bf59a5a2SJosef Bacik slot + 1, &right, BTRFS_NESTING_RIGHT_COW); 329844871b1bSChris Mason if (ret) 329944871b1bSChris Mason goto out_unlock; 330044871b1bSChris Mason 330144871b1bSChris Mason left_nritems = btrfs_header_nritems(left); 330244871b1bSChris Mason if (left_nritems == 0) 330344871b1bSChris Mason goto out_unlock; 330444871b1bSChris Mason 3305d16c702fSQu Wenruo if (check_sibling_keys(left, right)) { 3306d16c702fSQu Wenruo ret = -EUCLEAN; 33079ae5afd0SFilipe Manana btrfs_abort_transaction(trans, ret); 3308d16c702fSQu Wenruo btrfs_tree_unlock(right); 3309d16c702fSQu Wenruo free_extent_buffer(right); 3310d16c702fSQu Wenruo return ret; 3311d16c702fSQu Wenruo } 33122ef1fed2SFilipe David Borba Manana if (path->slots[0] == left_nritems && !empty) { 33132ef1fed2SFilipe David Borba Manana /* Key greater than all keys in the leaf, right neighbor has 33142ef1fed2SFilipe David Borba Manana * enough room for it and we're not emptying our leaf to delete 33152ef1fed2SFilipe David Borba Manana * it, therefore use right neighbor to insert the new item and 331652042d8eSAndrea Gelmini * no need to touch/dirty our left leaf. */ 33172ef1fed2SFilipe David Borba Manana btrfs_tree_unlock(left); 33182ef1fed2SFilipe David Borba Manana free_extent_buffer(left); 33192ef1fed2SFilipe David Borba Manana path->nodes[0] = right; 33202ef1fed2SFilipe David Borba Manana path->slots[0] = 0; 33212ef1fed2SFilipe David Borba Manana path->slots[1]++; 33222ef1fed2SFilipe David Borba Manana return 0; 33232ef1fed2SFilipe David Borba Manana } 33242ef1fed2SFilipe David Borba Manana 3325ed25dab3SJosef Bacik return __push_leaf_right(trans, path, min_data_size, empty, right, 3326ed25dab3SJosef Bacik free_space, left_nritems, min_slot); 332744871b1bSChris Mason out_unlock: 332844871b1bSChris Mason btrfs_tree_unlock(right); 332944871b1bSChris Mason free_extent_buffer(right); 333044871b1bSChris Mason return 1; 333144871b1bSChris Mason } 333244871b1bSChris Mason 333344871b1bSChris Mason /* 333444871b1bSChris Mason * push some data in the path leaf to the left, trying to free up at 333544871b1bSChris Mason * least data_size bytes. returns zero if the push worked, nonzero otherwise 333699d8f83cSChris Mason * 333799d8f83cSChris Mason * max_slot can put a limit on how far into the leaf we'll push items. The 333899d8f83cSChris Mason * item at 'max_slot' won't be touched. Use (u32)-1 to make us do all the 333999d8f83cSChris Mason * items 334044871b1bSChris Mason */ 3341ed25dab3SJosef Bacik static noinline int __push_leaf_left(struct btrfs_trans_handle *trans, 3342ed25dab3SJosef Bacik struct btrfs_path *path, int data_size, 334344871b1bSChris Mason int empty, struct extent_buffer *left, 334499d8f83cSChris Mason int free_space, u32 right_nritems, 334599d8f83cSChris Mason u32 max_slot) 334644871b1bSChris Mason { 33478087c193SDavid Sterba struct btrfs_fs_info *fs_info = left->fs_info; 33485f39d397SChris Mason struct btrfs_disk_key disk_key; 33495f39d397SChris Mason struct extent_buffer *right = path->nodes[0]; 3350be0e5c09SChris Mason int i; 3351be0e5c09SChris Mason int push_space = 0; 3352be0e5c09SChris Mason int push_items = 0; 33537518a238SChris Mason u32 old_left_nritems; 335434a38218SChris Mason u32 nr; 3355aa5d6bedSChris Mason int ret = 0; 3356db94535dSChris Mason u32 this_item_size; 3357db94535dSChris Mason u32 old_left_item_size; 3358cfed81a0SChris Mason struct btrfs_map_token token; 3359cfed81a0SChris Mason 336034a38218SChris Mason if (empty) 336199d8f83cSChris Mason nr = min(right_nritems, max_slot); 336234a38218SChris Mason else 336399d8f83cSChris Mason nr = min(right_nritems - 1, max_slot); 336434a38218SChris Mason 336534a38218SChris Mason for (i = 0; i < nr; i++) { 336631840ae1SZheng Yan if (!empty && push_items > 0) { 336731840ae1SZheng Yan if (path->slots[0] < i) 336831840ae1SZheng Yan break; 336931840ae1SZheng Yan if (path->slots[0] == i) { 3370e902baacSDavid Sterba int space = btrfs_leaf_free_space(right); 3371e902baacSDavid Sterba 337231840ae1SZheng Yan if (space + push_space * 2 > free_space) 337331840ae1SZheng Yan break; 337431840ae1SZheng Yan } 337531840ae1SZheng Yan } 337631840ae1SZheng Yan 3377be0e5c09SChris Mason if (path->slots[0] == i) 337887b29b20SYan Zheng push_space += data_size; 3379db94535dSChris Mason 33803212fa14SJosef Bacik this_item_size = btrfs_item_size(right, i); 338174794207SJosef Bacik if (this_item_size + sizeof(struct btrfs_item) + push_space > 338274794207SJosef Bacik free_space) 3383be0e5c09SChris Mason break; 3384db94535dSChris Mason 3385be0e5c09SChris Mason push_items++; 338674794207SJosef Bacik push_space += this_item_size + sizeof(struct btrfs_item); 3387be0e5c09SChris Mason } 3388db94535dSChris Mason 3389be0e5c09SChris Mason if (push_items == 0) { 3390925baeddSChris Mason ret = 1; 3391925baeddSChris Mason goto out; 3392be0e5c09SChris Mason } 3393fae7f21cSDulshani Gunawardhana WARN_ON(!empty && push_items == btrfs_header_nritems(right)); 33945f39d397SChris Mason 3395be0e5c09SChris Mason /* push data from right to left */ 3396637e3b48SJosef Bacik copy_leaf_items(left, right, btrfs_header_nritems(left), 0, push_items); 33975f39d397SChris Mason 33980b246afaSJeff Mahoney push_space = BTRFS_LEAF_DATA_SIZE(fs_info) - 33993212fa14SJosef Bacik btrfs_item_offset(right, push_items - 1); 34005f39d397SChris Mason 3401637e3b48SJosef Bacik copy_leaf_data(left, right, leaf_data_end(left) - push_space, 3402637e3b48SJosef Bacik btrfs_item_offset(right, push_items - 1), push_space); 34035f39d397SChris Mason old_left_nritems = btrfs_header_nritems(left); 340487b29b20SYan Zheng BUG_ON(old_left_nritems <= 0); 3405eb60ceacSChris Mason 3406c82f823cSDavid Sterba btrfs_init_map_token(&token, left); 34073212fa14SJosef Bacik old_left_item_size = btrfs_item_offset(left, old_left_nritems - 1); 3408be0e5c09SChris Mason for (i = old_left_nritems; i < old_left_nritems + push_items; i++) { 34095f39d397SChris Mason u32 ioff; 3410db94535dSChris Mason 34113212fa14SJosef Bacik ioff = btrfs_token_item_offset(&token, i); 34123212fa14SJosef Bacik btrfs_set_token_item_offset(&token, i, 3413cc4c13d5SDavid Sterba ioff - (BTRFS_LEAF_DATA_SIZE(fs_info) - old_left_item_size)); 3414be0e5c09SChris Mason } 34155f39d397SChris Mason btrfs_set_header_nritems(left, old_left_nritems + push_items); 3416be0e5c09SChris Mason 3417be0e5c09SChris Mason /* fixup right node */ 341831b1a2bdSJulia Lawall if (push_items > right_nritems) 341931b1a2bdSJulia Lawall WARN(1, KERN_CRIT "push items %d nr %u\n", push_items, 3420d397712bSChris Mason right_nritems); 342134a38218SChris Mason 342234a38218SChris Mason if (push_items < right_nritems) { 34233212fa14SJosef Bacik push_space = btrfs_item_offset(right, push_items - 1) - 34248f881e8cSDavid Sterba leaf_data_end(right); 3425637e3b48SJosef Bacik memmove_leaf_data(right, 34260b246afaSJeff Mahoney BTRFS_LEAF_DATA_SIZE(fs_info) - push_space, 34278f881e8cSDavid Sterba leaf_data_end(right), push_space); 34285f39d397SChris Mason 3429637e3b48SJosef Bacik memmove_leaf_items(right, 0, push_items, 3430637e3b48SJosef Bacik btrfs_header_nritems(right) - push_items); 343134a38218SChris Mason } 3432c82f823cSDavid Sterba 3433c82f823cSDavid Sterba btrfs_init_map_token(&token, right); 3434eef1c494SYan right_nritems -= push_items; 3435eef1c494SYan btrfs_set_header_nritems(right, right_nritems); 34360b246afaSJeff Mahoney push_space = BTRFS_LEAF_DATA_SIZE(fs_info); 34375f39d397SChris Mason for (i = 0; i < right_nritems; i++) { 34383212fa14SJosef Bacik push_space = push_space - btrfs_token_item_size(&token, i); 34393212fa14SJosef Bacik btrfs_set_token_item_offset(&token, i, push_space); 3440db94535dSChris Mason } 3441eb60ceacSChris Mason 34425f39d397SChris Mason btrfs_mark_buffer_dirty(left); 344334a38218SChris Mason if (right_nritems) 34445f39d397SChris Mason btrfs_mark_buffer_dirty(right); 3445f0486c68SYan, Zheng else 3446190a8339SJosef Bacik btrfs_clear_buffer_dirty(trans, right); 3447098f59c2SChris Mason 34485f39d397SChris Mason btrfs_item_key(right, &disk_key, 0); 3449b167fa91SNikolay Borisov fixup_low_keys(path, &disk_key, 1); 3450be0e5c09SChris Mason 3451be0e5c09SChris Mason /* then fixup the leaf pointer in the path */ 3452be0e5c09SChris Mason if (path->slots[0] < push_items) { 3453be0e5c09SChris Mason path->slots[0] += old_left_nritems; 3454925baeddSChris Mason btrfs_tree_unlock(path->nodes[0]); 34555f39d397SChris Mason free_extent_buffer(path->nodes[0]); 34565f39d397SChris Mason path->nodes[0] = left; 3457be0e5c09SChris Mason path->slots[1] -= 1; 3458be0e5c09SChris Mason } else { 3459925baeddSChris Mason btrfs_tree_unlock(left); 34605f39d397SChris Mason free_extent_buffer(left); 3461be0e5c09SChris Mason path->slots[0] -= push_items; 3462be0e5c09SChris Mason } 3463eb60ceacSChris Mason BUG_ON(path->slots[0] < 0); 3464aa5d6bedSChris Mason return ret; 3465925baeddSChris Mason out: 3466925baeddSChris Mason btrfs_tree_unlock(left); 3467925baeddSChris Mason free_extent_buffer(left); 3468925baeddSChris Mason return ret; 3469be0e5c09SChris Mason } 3470be0e5c09SChris Mason 347174123bd7SChris Mason /* 347244871b1bSChris Mason * push some data in the path leaf to the left, trying to free up at 347344871b1bSChris Mason * least data_size bytes. returns zero if the push worked, nonzero otherwise 347499d8f83cSChris Mason * 347599d8f83cSChris Mason * max_slot can put a limit on how far into the leaf we'll push items. The 347699d8f83cSChris Mason * item at 'max_slot' won't be touched. Use (u32)-1 to make us push all the 347799d8f83cSChris Mason * items 347844871b1bSChris Mason */ 347944871b1bSChris Mason static int push_leaf_left(struct btrfs_trans_handle *trans, struct btrfs_root 348099d8f83cSChris Mason *root, struct btrfs_path *path, int min_data_size, 348199d8f83cSChris Mason int data_size, int empty, u32 max_slot) 348244871b1bSChris Mason { 348344871b1bSChris Mason struct extent_buffer *right = path->nodes[0]; 348444871b1bSChris Mason struct extent_buffer *left; 348544871b1bSChris Mason int slot; 348644871b1bSChris Mason int free_space; 348744871b1bSChris Mason u32 right_nritems; 348844871b1bSChris Mason int ret = 0; 348944871b1bSChris Mason 349044871b1bSChris Mason slot = path->slots[1]; 349144871b1bSChris Mason if (slot == 0) 349244871b1bSChris Mason return 1; 349344871b1bSChris Mason if (!path->nodes[1]) 349444871b1bSChris Mason return 1; 349544871b1bSChris Mason 349644871b1bSChris Mason right_nritems = btrfs_header_nritems(right); 349744871b1bSChris Mason if (right_nritems == 0) 349844871b1bSChris Mason return 1; 349944871b1bSChris Mason 350049d0c642SFilipe Manana btrfs_assert_tree_write_locked(path->nodes[1]); 350144871b1bSChris Mason 35024b231ae4SDavid Sterba left = btrfs_read_node_slot(path->nodes[1], slot - 1); 3503fb770ae4SLiu Bo if (IS_ERR(left)) 35049cf14029SJosef Bacik return PTR_ERR(left); 350591ca338dSTsutomu Itoh 3506bf77467aSJosef Bacik __btrfs_tree_lock(left, BTRFS_NESTING_LEFT); 350744871b1bSChris Mason 3508e902baacSDavid Sterba free_space = btrfs_leaf_free_space(left); 350944871b1bSChris Mason if (free_space < data_size) { 351044871b1bSChris Mason ret = 1; 351144871b1bSChris Mason goto out; 351244871b1bSChris Mason } 351344871b1bSChris Mason 351444871b1bSChris Mason ret = btrfs_cow_block(trans, root, left, 35159631e4ccSJosef Bacik path->nodes[1], slot - 1, &left, 3516bf59a5a2SJosef Bacik BTRFS_NESTING_LEFT_COW); 351744871b1bSChris Mason if (ret) { 351844871b1bSChris Mason /* we hit -ENOSPC, but it isn't fatal here */ 351979787eaaSJeff Mahoney if (ret == -ENOSPC) 352044871b1bSChris Mason ret = 1; 352144871b1bSChris Mason goto out; 352244871b1bSChris Mason } 352344871b1bSChris Mason 3524d16c702fSQu Wenruo if (check_sibling_keys(left, right)) { 3525d16c702fSQu Wenruo ret = -EUCLEAN; 35269ae5afd0SFilipe Manana btrfs_abort_transaction(trans, ret); 3527d16c702fSQu Wenruo goto out; 3528d16c702fSQu Wenruo } 3529ed25dab3SJosef Bacik return __push_leaf_left(trans, path, min_data_size, empty, left, 3530ed25dab3SJosef Bacik free_space, right_nritems, max_slot); 353144871b1bSChris Mason out: 353244871b1bSChris Mason btrfs_tree_unlock(left); 353344871b1bSChris Mason free_extent_buffer(left); 353444871b1bSChris Mason return ret; 353544871b1bSChris Mason } 353644871b1bSChris Mason 353744871b1bSChris Mason /* 353874123bd7SChris Mason * split the path's leaf in two, making sure there is at least data_size 353974123bd7SChris Mason * available for the resulting leaf level of the path. 354074123bd7SChris Mason */ 3541143bede5SJeff Mahoney static noinline void copy_for_split(struct btrfs_trans_handle *trans, 354244871b1bSChris Mason struct btrfs_path *path, 354344871b1bSChris Mason struct extent_buffer *l, 354444871b1bSChris Mason struct extent_buffer *right, 354544871b1bSChris Mason int slot, int mid, int nritems) 3546be0e5c09SChris Mason { 354794f94ad9SDavid Sterba struct btrfs_fs_info *fs_info = trans->fs_info; 3548be0e5c09SChris Mason int data_copy_size; 3549be0e5c09SChris Mason int rt_data_off; 3550be0e5c09SChris Mason int i; 3551d4dbff95SChris Mason struct btrfs_disk_key disk_key; 3552cfed81a0SChris Mason struct btrfs_map_token token; 3553cfed81a0SChris Mason 35545f39d397SChris Mason nritems = nritems - mid; 35555f39d397SChris Mason btrfs_set_header_nritems(right, nritems); 3556dc2e724eSJosef Bacik data_copy_size = btrfs_item_data_end(l, mid) - leaf_data_end(l); 35575f39d397SChris Mason 3558637e3b48SJosef Bacik copy_leaf_items(right, l, 0, mid, nritems); 35595f39d397SChris Mason 3560637e3b48SJosef Bacik copy_leaf_data(right, l, BTRFS_LEAF_DATA_SIZE(fs_info) - data_copy_size, 35618f881e8cSDavid Sterba leaf_data_end(l), data_copy_size); 356274123bd7SChris Mason 3563dc2e724eSJosef Bacik rt_data_off = BTRFS_LEAF_DATA_SIZE(fs_info) - btrfs_item_data_end(l, mid); 35645f39d397SChris Mason 3565c82f823cSDavid Sterba btrfs_init_map_token(&token, right); 35665f39d397SChris Mason for (i = 0; i < nritems; i++) { 3567db94535dSChris Mason u32 ioff; 3568db94535dSChris Mason 35693212fa14SJosef Bacik ioff = btrfs_token_item_offset(&token, i); 35703212fa14SJosef Bacik btrfs_set_token_item_offset(&token, i, ioff + rt_data_off); 35710783fcfcSChris Mason } 357274123bd7SChris Mason 35735f39d397SChris Mason btrfs_set_header_nritems(l, mid); 35745f39d397SChris Mason btrfs_item_key(right, &disk_key, 0); 35756ad3cf6dSDavid Sterba insert_ptr(trans, path, &disk_key, right->start, path->slots[1] + 1, 1); 35765f39d397SChris Mason 35775f39d397SChris Mason btrfs_mark_buffer_dirty(right); 35785f39d397SChris Mason btrfs_mark_buffer_dirty(l); 3579eb60ceacSChris Mason BUG_ON(path->slots[0] != slot); 35805f39d397SChris Mason 3581be0e5c09SChris Mason if (mid <= slot) { 3582925baeddSChris Mason btrfs_tree_unlock(path->nodes[0]); 35835f39d397SChris Mason free_extent_buffer(path->nodes[0]); 35845f39d397SChris Mason path->nodes[0] = right; 3585be0e5c09SChris Mason path->slots[0] -= mid; 3586be0e5c09SChris Mason path->slots[1] += 1; 3587925baeddSChris Mason } else { 3588925baeddSChris Mason btrfs_tree_unlock(right); 35895f39d397SChris Mason free_extent_buffer(right); 3590925baeddSChris Mason } 35915f39d397SChris Mason 3592eb60ceacSChris Mason BUG_ON(path->slots[0] < 0); 359344871b1bSChris Mason } 359444871b1bSChris Mason 359544871b1bSChris Mason /* 359699d8f83cSChris Mason * double splits happen when we need to insert a big item in the middle 359799d8f83cSChris Mason * of a leaf. A double split can leave us with 3 mostly empty leaves: 359899d8f83cSChris Mason * leaf: [ slots 0 - N] [ our target ] [ N + 1 - total in leaf ] 359999d8f83cSChris Mason * A B C 360099d8f83cSChris Mason * 360199d8f83cSChris Mason * We avoid this by trying to push the items on either side of our target 360299d8f83cSChris Mason * into the adjacent leaves. If all goes well we can avoid the double split 360399d8f83cSChris Mason * completely. 360499d8f83cSChris Mason */ 360599d8f83cSChris Mason static noinline int push_for_double_split(struct btrfs_trans_handle *trans, 360699d8f83cSChris Mason struct btrfs_root *root, 360799d8f83cSChris Mason struct btrfs_path *path, 360899d8f83cSChris Mason int data_size) 360999d8f83cSChris Mason { 361099d8f83cSChris Mason int ret; 361199d8f83cSChris Mason int progress = 0; 361299d8f83cSChris Mason int slot; 361399d8f83cSChris Mason u32 nritems; 36145a4267caSFilipe David Borba Manana int space_needed = data_size; 361599d8f83cSChris Mason 361699d8f83cSChris Mason slot = path->slots[0]; 36175a4267caSFilipe David Borba Manana if (slot < btrfs_header_nritems(path->nodes[0])) 3618e902baacSDavid Sterba space_needed -= btrfs_leaf_free_space(path->nodes[0]); 361999d8f83cSChris Mason 362099d8f83cSChris Mason /* 362199d8f83cSChris Mason * try to push all the items after our slot into the 362299d8f83cSChris Mason * right leaf 362399d8f83cSChris Mason */ 36245a4267caSFilipe David Borba Manana ret = push_leaf_right(trans, root, path, 1, space_needed, 0, slot); 362599d8f83cSChris Mason if (ret < 0) 362699d8f83cSChris Mason return ret; 362799d8f83cSChris Mason 362899d8f83cSChris Mason if (ret == 0) 362999d8f83cSChris Mason progress++; 363099d8f83cSChris Mason 363199d8f83cSChris Mason nritems = btrfs_header_nritems(path->nodes[0]); 363299d8f83cSChris Mason /* 363399d8f83cSChris Mason * our goal is to get our slot at the start or end of a leaf. If 363499d8f83cSChris Mason * we've done so we're done 363599d8f83cSChris Mason */ 363699d8f83cSChris Mason if (path->slots[0] == 0 || path->slots[0] == nritems) 363799d8f83cSChris Mason return 0; 363899d8f83cSChris Mason 3639e902baacSDavid Sterba if (btrfs_leaf_free_space(path->nodes[0]) >= data_size) 364099d8f83cSChris Mason return 0; 364199d8f83cSChris Mason 364299d8f83cSChris Mason /* try to push all the items before our slot into the next leaf */ 364399d8f83cSChris Mason slot = path->slots[0]; 3644263d3995SFilipe Manana space_needed = data_size; 3645263d3995SFilipe Manana if (slot > 0) 3646e902baacSDavid Sterba space_needed -= btrfs_leaf_free_space(path->nodes[0]); 36475a4267caSFilipe David Borba Manana ret = push_leaf_left(trans, root, path, 1, space_needed, 0, slot); 364899d8f83cSChris Mason if (ret < 0) 364999d8f83cSChris Mason return ret; 365099d8f83cSChris Mason 365199d8f83cSChris Mason if (ret == 0) 365299d8f83cSChris Mason progress++; 365399d8f83cSChris Mason 365499d8f83cSChris Mason if (progress) 365599d8f83cSChris Mason return 0; 365699d8f83cSChris Mason return 1; 365799d8f83cSChris Mason } 365899d8f83cSChris Mason 365999d8f83cSChris Mason /* 366044871b1bSChris Mason * split the path's leaf in two, making sure there is at least data_size 366144871b1bSChris Mason * available for the resulting leaf level of the path. 366244871b1bSChris Mason * 366344871b1bSChris Mason * returns 0 if all went well and < 0 on failure. 366444871b1bSChris Mason */ 366544871b1bSChris Mason static noinline int split_leaf(struct btrfs_trans_handle *trans, 366644871b1bSChris Mason struct btrfs_root *root, 3667310712b2SOmar Sandoval const struct btrfs_key *ins_key, 366844871b1bSChris Mason struct btrfs_path *path, int data_size, 366944871b1bSChris Mason int extend) 367044871b1bSChris Mason { 36715d4f98a2SYan Zheng struct btrfs_disk_key disk_key; 367244871b1bSChris Mason struct extent_buffer *l; 367344871b1bSChris Mason u32 nritems; 367444871b1bSChris Mason int mid; 367544871b1bSChris Mason int slot; 367644871b1bSChris Mason struct extent_buffer *right; 3677b7a0365eSDaniel Dressler struct btrfs_fs_info *fs_info = root->fs_info; 367844871b1bSChris Mason int ret = 0; 367944871b1bSChris Mason int wret; 36805d4f98a2SYan Zheng int split; 368144871b1bSChris Mason int num_doubles = 0; 368299d8f83cSChris Mason int tried_avoid_double = 0; 368344871b1bSChris Mason 3684a5719521SYan, Zheng l = path->nodes[0]; 3685a5719521SYan, Zheng slot = path->slots[0]; 36863212fa14SJosef Bacik if (extend && data_size + btrfs_item_size(l, slot) + 36870b246afaSJeff Mahoney sizeof(struct btrfs_item) > BTRFS_LEAF_DATA_SIZE(fs_info)) 3688a5719521SYan, Zheng return -EOVERFLOW; 3689a5719521SYan, Zheng 369044871b1bSChris Mason /* first try to make some room by pushing left and right */ 369133157e05SLiu Bo if (data_size && path->nodes[1]) { 36925a4267caSFilipe David Borba Manana int space_needed = data_size; 36935a4267caSFilipe David Borba Manana 36945a4267caSFilipe David Borba Manana if (slot < btrfs_header_nritems(l)) 3695e902baacSDavid Sterba space_needed -= btrfs_leaf_free_space(l); 36965a4267caSFilipe David Borba Manana 36975a4267caSFilipe David Borba Manana wret = push_leaf_right(trans, root, path, space_needed, 36985a4267caSFilipe David Borba Manana space_needed, 0, 0); 369944871b1bSChris Mason if (wret < 0) 370044871b1bSChris Mason return wret; 370144871b1bSChris Mason if (wret) { 3702263d3995SFilipe Manana space_needed = data_size; 3703263d3995SFilipe Manana if (slot > 0) 3704e902baacSDavid Sterba space_needed -= btrfs_leaf_free_space(l); 37055a4267caSFilipe David Borba Manana wret = push_leaf_left(trans, root, path, space_needed, 37065a4267caSFilipe David Borba Manana space_needed, 0, (u32)-1); 370744871b1bSChris Mason if (wret < 0) 370844871b1bSChris Mason return wret; 370944871b1bSChris Mason } 371044871b1bSChris Mason l = path->nodes[0]; 371144871b1bSChris Mason 371244871b1bSChris Mason /* did the pushes work? */ 3713e902baacSDavid Sterba if (btrfs_leaf_free_space(l) >= data_size) 371444871b1bSChris Mason return 0; 371544871b1bSChris Mason } 371644871b1bSChris Mason 371744871b1bSChris Mason if (!path->nodes[1]) { 3718fdd99c72SLiu Bo ret = insert_new_root(trans, root, path, 1); 371944871b1bSChris Mason if (ret) 372044871b1bSChris Mason return ret; 372144871b1bSChris Mason } 372244871b1bSChris Mason again: 37235d4f98a2SYan Zheng split = 1; 372444871b1bSChris Mason l = path->nodes[0]; 372544871b1bSChris Mason slot = path->slots[0]; 372644871b1bSChris Mason nritems = btrfs_header_nritems(l); 372744871b1bSChris Mason mid = (nritems + 1) / 2; 372844871b1bSChris Mason 37295d4f98a2SYan Zheng if (mid <= slot) { 37305d4f98a2SYan Zheng if (nritems == 1 || 37315d4f98a2SYan Zheng leaf_space_used(l, mid, nritems - mid) + data_size > 37320b246afaSJeff Mahoney BTRFS_LEAF_DATA_SIZE(fs_info)) { 37335d4f98a2SYan Zheng if (slot >= nritems) { 37345d4f98a2SYan Zheng split = 0; 37355d4f98a2SYan Zheng } else { 37365d4f98a2SYan Zheng mid = slot; 37375d4f98a2SYan Zheng if (mid != nritems && 37385d4f98a2SYan Zheng leaf_space_used(l, mid, nritems - mid) + 37390b246afaSJeff Mahoney data_size > BTRFS_LEAF_DATA_SIZE(fs_info)) { 374099d8f83cSChris Mason if (data_size && !tried_avoid_double) 374199d8f83cSChris Mason goto push_for_double; 37425d4f98a2SYan Zheng split = 2; 37435d4f98a2SYan Zheng } 37445d4f98a2SYan Zheng } 37455d4f98a2SYan Zheng } 37465d4f98a2SYan Zheng } else { 37475d4f98a2SYan Zheng if (leaf_space_used(l, 0, mid) + data_size > 37480b246afaSJeff Mahoney BTRFS_LEAF_DATA_SIZE(fs_info)) { 37495d4f98a2SYan Zheng if (!extend && data_size && slot == 0) { 37505d4f98a2SYan Zheng split = 0; 37515d4f98a2SYan Zheng } else if ((extend || !data_size) && slot == 0) { 37525d4f98a2SYan Zheng mid = 1; 37535d4f98a2SYan Zheng } else { 37545d4f98a2SYan Zheng mid = slot; 37555d4f98a2SYan Zheng if (mid != nritems && 37565d4f98a2SYan Zheng leaf_space_used(l, mid, nritems - mid) + 37570b246afaSJeff Mahoney data_size > BTRFS_LEAF_DATA_SIZE(fs_info)) { 375899d8f83cSChris Mason if (data_size && !tried_avoid_double) 375999d8f83cSChris Mason goto push_for_double; 37605d4f98a2SYan Zheng split = 2; 37615d4f98a2SYan Zheng } 37625d4f98a2SYan Zheng } 37635d4f98a2SYan Zheng } 37645d4f98a2SYan Zheng } 37655d4f98a2SYan Zheng 37665d4f98a2SYan Zheng if (split == 0) 37675d4f98a2SYan Zheng btrfs_cpu_key_to_disk(&disk_key, ins_key); 37685d4f98a2SYan Zheng else 37695d4f98a2SYan Zheng btrfs_item_key(l, &disk_key, mid); 37705d4f98a2SYan Zheng 3771ca9d473aSJosef Bacik /* 3772ca9d473aSJosef Bacik * We have to about BTRFS_NESTING_NEW_ROOT here if we've done a double 3773ca9d473aSJosef Bacik * split, because we're only allowed to have MAX_LOCKDEP_SUBCLASSES 3774ca9d473aSJosef Bacik * subclasses, which is 8 at the time of this patch, and we've maxed it 3775ca9d473aSJosef Bacik * out. In the future we could add a 3776ca9d473aSJosef Bacik * BTRFS_NESTING_SPLIT_THE_SPLITTENING if we need to, but for now just 3777ca9d473aSJosef Bacik * use BTRFS_NESTING_NEW_ROOT. 3778ca9d473aSJosef Bacik */ 377979bd3712SFilipe Manana right = btrfs_alloc_tree_block(trans, root, 0, root->root_key.objectid, 378079bd3712SFilipe Manana &disk_key, 0, l->start, 0, 378179bd3712SFilipe Manana num_doubles ? BTRFS_NESTING_NEW_ROOT : 3782ca9d473aSJosef Bacik BTRFS_NESTING_SPLIT); 3783f0486c68SYan, Zheng if (IS_ERR(right)) 378444871b1bSChris Mason return PTR_ERR(right); 3785f0486c68SYan, Zheng 37860b246afaSJeff Mahoney root_add_used(root, fs_info->nodesize); 378744871b1bSChris Mason 37885d4f98a2SYan Zheng if (split == 0) { 378944871b1bSChris Mason if (mid <= slot) { 379044871b1bSChris Mason btrfs_set_header_nritems(right, 0); 37916ad3cf6dSDavid Sterba insert_ptr(trans, path, &disk_key, 37922ff7e61eSJeff Mahoney right->start, path->slots[1] + 1, 1); 379344871b1bSChris Mason btrfs_tree_unlock(path->nodes[0]); 379444871b1bSChris Mason free_extent_buffer(path->nodes[0]); 379544871b1bSChris Mason path->nodes[0] = right; 379644871b1bSChris Mason path->slots[0] = 0; 379744871b1bSChris Mason path->slots[1] += 1; 379844871b1bSChris Mason } else { 379944871b1bSChris Mason btrfs_set_header_nritems(right, 0); 38006ad3cf6dSDavid Sterba insert_ptr(trans, path, &disk_key, 38012ff7e61eSJeff Mahoney right->start, path->slots[1], 1); 380244871b1bSChris Mason btrfs_tree_unlock(path->nodes[0]); 380344871b1bSChris Mason free_extent_buffer(path->nodes[0]); 380444871b1bSChris Mason path->nodes[0] = right; 380544871b1bSChris Mason path->slots[0] = 0; 3806143bede5SJeff Mahoney if (path->slots[1] == 0) 3807b167fa91SNikolay Borisov fixup_low_keys(path, &disk_key, 1); 38085d4f98a2SYan Zheng } 3809196e0249SLiu Bo /* 3810196e0249SLiu Bo * We create a new leaf 'right' for the required ins_len and 3811196e0249SLiu Bo * we'll do btrfs_mark_buffer_dirty() on this leaf after copying 3812196e0249SLiu Bo * the content of ins_len to 'right'. 3813196e0249SLiu Bo */ 381444871b1bSChris Mason return ret; 381544871b1bSChris Mason } 381644871b1bSChris Mason 381794f94ad9SDavid Sterba copy_for_split(trans, path, l, right, slot, mid, nritems); 381844871b1bSChris Mason 38195d4f98a2SYan Zheng if (split == 2) { 3820cc0c5538SChris Mason BUG_ON(num_doubles != 0); 3821cc0c5538SChris Mason num_doubles++; 3822cc0c5538SChris Mason goto again; 38233326d1b0SChris Mason } 382444871b1bSChris Mason 3825143bede5SJeff Mahoney return 0; 382699d8f83cSChris Mason 382799d8f83cSChris Mason push_for_double: 382899d8f83cSChris Mason push_for_double_split(trans, root, path, data_size); 382999d8f83cSChris Mason tried_avoid_double = 1; 3830e902baacSDavid Sterba if (btrfs_leaf_free_space(path->nodes[0]) >= data_size) 383199d8f83cSChris Mason return 0; 383299d8f83cSChris Mason goto again; 3833be0e5c09SChris Mason } 3834be0e5c09SChris Mason 3835ad48fd75SYan, Zheng static noinline int setup_leaf_for_split(struct btrfs_trans_handle *trans, 3836ad48fd75SYan, Zheng struct btrfs_root *root, 3837ad48fd75SYan, Zheng struct btrfs_path *path, int ins_len) 3838ad48fd75SYan, Zheng { 3839ad48fd75SYan, Zheng struct btrfs_key key; 3840ad48fd75SYan, Zheng struct extent_buffer *leaf; 3841ad48fd75SYan, Zheng struct btrfs_file_extent_item *fi; 3842ad48fd75SYan, Zheng u64 extent_len = 0; 3843ad48fd75SYan, Zheng u32 item_size; 3844ad48fd75SYan, Zheng int ret; 3845ad48fd75SYan, Zheng 3846ad48fd75SYan, Zheng leaf = path->nodes[0]; 3847ad48fd75SYan, Zheng btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); 3848ad48fd75SYan, Zheng 3849ad48fd75SYan, Zheng BUG_ON(key.type != BTRFS_EXTENT_DATA_KEY && 3850ad48fd75SYan, Zheng key.type != BTRFS_EXTENT_CSUM_KEY); 3851ad48fd75SYan, Zheng 3852e902baacSDavid Sterba if (btrfs_leaf_free_space(leaf) >= ins_len) 3853ad48fd75SYan, Zheng return 0; 3854ad48fd75SYan, Zheng 38553212fa14SJosef Bacik item_size = btrfs_item_size(leaf, path->slots[0]); 3856ad48fd75SYan, Zheng if (key.type == BTRFS_EXTENT_DATA_KEY) { 3857ad48fd75SYan, Zheng fi = btrfs_item_ptr(leaf, path->slots[0], 3858ad48fd75SYan, Zheng struct btrfs_file_extent_item); 3859ad48fd75SYan, Zheng extent_len = btrfs_file_extent_num_bytes(leaf, fi); 3860ad48fd75SYan, Zheng } 3861b3b4aa74SDavid Sterba btrfs_release_path(path); 3862ad48fd75SYan, Zheng 3863ad48fd75SYan, Zheng path->keep_locks = 1; 3864ad48fd75SYan, Zheng path->search_for_split = 1; 3865ad48fd75SYan, Zheng ret = btrfs_search_slot(trans, root, &key, path, 0, 1); 3866ad48fd75SYan, Zheng path->search_for_split = 0; 3867a8df6fe6SFilipe Manana if (ret > 0) 3868a8df6fe6SFilipe Manana ret = -EAGAIN; 3869ad48fd75SYan, Zheng if (ret < 0) 3870ad48fd75SYan, Zheng goto err; 3871ad48fd75SYan, Zheng 3872ad48fd75SYan, Zheng ret = -EAGAIN; 3873ad48fd75SYan, Zheng leaf = path->nodes[0]; 3874a8df6fe6SFilipe Manana /* if our item isn't there, return now */ 38753212fa14SJosef Bacik if (item_size != btrfs_item_size(leaf, path->slots[0])) 3876ad48fd75SYan, Zheng goto err; 3877ad48fd75SYan, Zheng 3878109f6aefSChris Mason /* the leaf has changed, it now has room. return now */ 3879e902baacSDavid Sterba if (btrfs_leaf_free_space(path->nodes[0]) >= ins_len) 3880109f6aefSChris Mason goto err; 3881109f6aefSChris Mason 3882ad48fd75SYan, Zheng if (key.type == BTRFS_EXTENT_DATA_KEY) { 3883ad48fd75SYan, Zheng fi = btrfs_item_ptr(leaf, path->slots[0], 3884ad48fd75SYan, Zheng struct btrfs_file_extent_item); 3885ad48fd75SYan, Zheng if (extent_len != btrfs_file_extent_num_bytes(leaf, fi)) 3886ad48fd75SYan, Zheng goto err; 3887ad48fd75SYan, Zheng } 3888ad48fd75SYan, Zheng 3889ad48fd75SYan, Zheng ret = split_leaf(trans, root, &key, path, ins_len, 1); 3890f0486c68SYan, Zheng if (ret) 3891f0486c68SYan, Zheng goto err; 3892ad48fd75SYan, Zheng 3893ad48fd75SYan, Zheng path->keep_locks = 0; 3894ad48fd75SYan, Zheng btrfs_unlock_up_safe(path, 1); 3895ad48fd75SYan, Zheng return 0; 3896ad48fd75SYan, Zheng err: 3897ad48fd75SYan, Zheng path->keep_locks = 0; 3898ad48fd75SYan, Zheng return ret; 3899ad48fd75SYan, Zheng } 3900ad48fd75SYan, Zheng 390125263cd7SDavid Sterba static noinline int split_item(struct btrfs_path *path, 3902310712b2SOmar Sandoval const struct btrfs_key *new_key, 3903459931ecSChris Mason unsigned long split_offset) 3904459931ecSChris Mason { 3905459931ecSChris Mason struct extent_buffer *leaf; 3906c91666b1SJosef Bacik int orig_slot, slot; 3907ad48fd75SYan, Zheng char *buf; 3908459931ecSChris Mason u32 nritems; 3909ad48fd75SYan, Zheng u32 item_size; 3910459931ecSChris Mason u32 orig_offset; 3911459931ecSChris Mason struct btrfs_disk_key disk_key; 3912459931ecSChris Mason 3913459931ecSChris Mason leaf = path->nodes[0]; 3914e902baacSDavid Sterba BUG_ON(btrfs_leaf_free_space(leaf) < sizeof(struct btrfs_item)); 3915b9473439SChris Mason 3916c91666b1SJosef Bacik orig_slot = path->slots[0]; 39173212fa14SJosef Bacik orig_offset = btrfs_item_offset(leaf, path->slots[0]); 39183212fa14SJosef Bacik item_size = btrfs_item_size(leaf, path->slots[0]); 3919459931ecSChris Mason 3920459931ecSChris Mason buf = kmalloc(item_size, GFP_NOFS); 3921ad48fd75SYan, Zheng if (!buf) 3922ad48fd75SYan, Zheng return -ENOMEM; 3923ad48fd75SYan, Zheng 3924459931ecSChris Mason read_extent_buffer(leaf, buf, btrfs_item_ptr_offset(leaf, 3925459931ecSChris Mason path->slots[0]), item_size); 3926ad48fd75SYan, Zheng 3927459931ecSChris Mason slot = path->slots[0] + 1; 3928459931ecSChris Mason nritems = btrfs_header_nritems(leaf); 3929459931ecSChris Mason if (slot != nritems) { 3930459931ecSChris Mason /* shift the items */ 3931637e3b48SJosef Bacik memmove_leaf_items(leaf, slot + 1, slot, nritems - slot); 3932459931ecSChris Mason } 3933459931ecSChris Mason 3934459931ecSChris Mason btrfs_cpu_key_to_disk(&disk_key, new_key); 3935459931ecSChris Mason btrfs_set_item_key(leaf, &disk_key, slot); 3936459931ecSChris Mason 39373212fa14SJosef Bacik btrfs_set_item_offset(leaf, slot, orig_offset); 39383212fa14SJosef Bacik btrfs_set_item_size(leaf, slot, item_size - split_offset); 3939459931ecSChris Mason 39403212fa14SJosef Bacik btrfs_set_item_offset(leaf, orig_slot, 3941459931ecSChris Mason orig_offset + item_size - split_offset); 39423212fa14SJosef Bacik btrfs_set_item_size(leaf, orig_slot, split_offset); 3943459931ecSChris Mason 3944459931ecSChris Mason btrfs_set_header_nritems(leaf, nritems + 1); 3945459931ecSChris Mason 3946459931ecSChris Mason /* write the data for the start of the original item */ 3947459931ecSChris Mason write_extent_buffer(leaf, buf, 3948459931ecSChris Mason btrfs_item_ptr_offset(leaf, path->slots[0]), 3949459931ecSChris Mason split_offset); 3950459931ecSChris Mason 3951459931ecSChris Mason /* write the data for the new item */ 3952459931ecSChris Mason write_extent_buffer(leaf, buf + split_offset, 3953459931ecSChris Mason btrfs_item_ptr_offset(leaf, slot), 3954459931ecSChris Mason item_size - split_offset); 3955459931ecSChris Mason btrfs_mark_buffer_dirty(leaf); 3956459931ecSChris Mason 3957e902baacSDavid Sterba BUG_ON(btrfs_leaf_free_space(leaf) < 0); 3958459931ecSChris Mason kfree(buf); 3959ad48fd75SYan, Zheng return 0; 3960ad48fd75SYan, Zheng } 3961ad48fd75SYan, Zheng 3962ad48fd75SYan, Zheng /* 3963ad48fd75SYan, Zheng * This function splits a single item into two items, 3964ad48fd75SYan, Zheng * giving 'new_key' to the new item and splitting the 3965ad48fd75SYan, Zheng * old one at split_offset (from the start of the item). 3966ad48fd75SYan, Zheng * 3967ad48fd75SYan, Zheng * The path may be released by this operation. After 3968ad48fd75SYan, Zheng * the split, the path is pointing to the old item. The 3969ad48fd75SYan, Zheng * new item is going to be in the same node as the old one. 3970ad48fd75SYan, Zheng * 3971ad48fd75SYan, Zheng * Note, the item being split must be smaller enough to live alone on 3972ad48fd75SYan, Zheng * a tree block with room for one extra struct btrfs_item 3973ad48fd75SYan, Zheng * 3974ad48fd75SYan, Zheng * This allows us to split the item in place, keeping a lock on the 3975ad48fd75SYan, Zheng * leaf the entire time. 3976ad48fd75SYan, Zheng */ 3977ad48fd75SYan, Zheng int btrfs_split_item(struct btrfs_trans_handle *trans, 3978ad48fd75SYan, Zheng struct btrfs_root *root, 3979ad48fd75SYan, Zheng struct btrfs_path *path, 3980310712b2SOmar Sandoval const struct btrfs_key *new_key, 3981ad48fd75SYan, Zheng unsigned long split_offset) 3982ad48fd75SYan, Zheng { 3983ad48fd75SYan, Zheng int ret; 3984ad48fd75SYan, Zheng ret = setup_leaf_for_split(trans, root, path, 3985ad48fd75SYan, Zheng sizeof(struct btrfs_item)); 3986ad48fd75SYan, Zheng if (ret) 3987459931ecSChris Mason return ret; 3988ad48fd75SYan, Zheng 398925263cd7SDavid Sterba ret = split_item(path, new_key, split_offset); 3990ad48fd75SYan, Zheng return ret; 3991ad48fd75SYan, Zheng } 3992ad48fd75SYan, Zheng 3993ad48fd75SYan, Zheng /* 3994d352ac68SChris Mason * make the item pointed to by the path smaller. new_size indicates 3995d352ac68SChris Mason * how small to make it, and from_end tells us if we just chop bytes 3996d352ac68SChris Mason * off the end of the item or if we shift the item to chop bytes off 3997d352ac68SChris Mason * the front. 3998d352ac68SChris Mason */ 399978ac4f9eSDavid Sterba void btrfs_truncate_item(struct btrfs_path *path, u32 new_size, int from_end) 4000b18c6685SChris Mason { 4001b18c6685SChris Mason int slot; 40025f39d397SChris Mason struct extent_buffer *leaf; 4003b18c6685SChris Mason u32 nritems; 4004b18c6685SChris Mason unsigned int data_end; 4005b18c6685SChris Mason unsigned int old_data_start; 4006b18c6685SChris Mason unsigned int old_size; 4007b18c6685SChris Mason unsigned int size_diff; 4008b18c6685SChris Mason int i; 4009cfed81a0SChris Mason struct btrfs_map_token token; 4010cfed81a0SChris Mason 40115f39d397SChris Mason leaf = path->nodes[0]; 4012179e29e4SChris Mason slot = path->slots[0]; 4013179e29e4SChris Mason 40143212fa14SJosef Bacik old_size = btrfs_item_size(leaf, slot); 4015179e29e4SChris Mason if (old_size == new_size) 4016143bede5SJeff Mahoney return; 4017b18c6685SChris Mason 40185f39d397SChris Mason nritems = btrfs_header_nritems(leaf); 40198f881e8cSDavid Sterba data_end = leaf_data_end(leaf); 4020b18c6685SChris Mason 40213212fa14SJosef Bacik old_data_start = btrfs_item_offset(leaf, slot); 4022179e29e4SChris Mason 4023b18c6685SChris Mason size_diff = old_size - new_size; 4024b18c6685SChris Mason 4025b18c6685SChris Mason BUG_ON(slot < 0); 4026b18c6685SChris Mason BUG_ON(slot >= nritems); 4027b18c6685SChris Mason 4028b18c6685SChris Mason /* 4029b18c6685SChris Mason * item0..itemN ... dataN.offset..dataN.size .. data0.size 4030b18c6685SChris Mason */ 4031b18c6685SChris Mason /* first correct the data pointers */ 4032c82f823cSDavid Sterba btrfs_init_map_token(&token, leaf); 4033b18c6685SChris Mason for (i = slot; i < nritems; i++) { 40345f39d397SChris Mason u32 ioff; 4035db94535dSChris Mason 40363212fa14SJosef Bacik ioff = btrfs_token_item_offset(&token, i); 40373212fa14SJosef Bacik btrfs_set_token_item_offset(&token, i, ioff + size_diff); 4038b18c6685SChris Mason } 4039db94535dSChris Mason 4040b18c6685SChris Mason /* shift the data */ 4041179e29e4SChris Mason if (from_end) { 4042637e3b48SJosef Bacik memmove_leaf_data(leaf, data_end + size_diff, data_end, 4043637e3b48SJosef Bacik old_data_start + new_size - data_end); 4044179e29e4SChris Mason } else { 4045179e29e4SChris Mason struct btrfs_disk_key disk_key; 4046179e29e4SChris Mason u64 offset; 4047179e29e4SChris Mason 4048179e29e4SChris Mason btrfs_item_key(leaf, &disk_key, slot); 4049179e29e4SChris Mason 4050179e29e4SChris Mason if (btrfs_disk_key_type(&disk_key) == BTRFS_EXTENT_DATA_KEY) { 4051179e29e4SChris Mason unsigned long ptr; 4052179e29e4SChris Mason struct btrfs_file_extent_item *fi; 4053179e29e4SChris Mason 4054179e29e4SChris Mason fi = btrfs_item_ptr(leaf, slot, 4055179e29e4SChris Mason struct btrfs_file_extent_item); 4056179e29e4SChris Mason fi = (struct btrfs_file_extent_item *)( 4057179e29e4SChris Mason (unsigned long)fi - size_diff); 4058179e29e4SChris Mason 4059179e29e4SChris Mason if (btrfs_file_extent_type(leaf, fi) == 4060179e29e4SChris Mason BTRFS_FILE_EXTENT_INLINE) { 4061179e29e4SChris Mason ptr = btrfs_item_ptr_offset(leaf, slot); 4062179e29e4SChris Mason memmove_extent_buffer(leaf, ptr, 4063179e29e4SChris Mason (unsigned long)fi, 40647ec20afbSDavid Sterba BTRFS_FILE_EXTENT_INLINE_DATA_START); 4065179e29e4SChris Mason } 4066179e29e4SChris Mason } 4067179e29e4SChris Mason 4068637e3b48SJosef Bacik memmove_leaf_data(leaf, data_end + size_diff, data_end, 4069637e3b48SJosef Bacik old_data_start - data_end); 4070179e29e4SChris Mason 4071179e29e4SChris Mason offset = btrfs_disk_key_offset(&disk_key); 4072179e29e4SChris Mason btrfs_set_disk_key_offset(&disk_key, offset + size_diff); 4073179e29e4SChris Mason btrfs_set_item_key(leaf, &disk_key, slot); 4074179e29e4SChris Mason if (slot == 0) 4075b167fa91SNikolay Borisov fixup_low_keys(path, &disk_key, 1); 4076179e29e4SChris Mason } 40775f39d397SChris Mason 40783212fa14SJosef Bacik btrfs_set_item_size(leaf, slot, new_size); 40795f39d397SChris Mason btrfs_mark_buffer_dirty(leaf); 4080b18c6685SChris Mason 4081e902baacSDavid Sterba if (btrfs_leaf_free_space(leaf) < 0) { 4082a4f78750SDavid Sterba btrfs_print_leaf(leaf); 4083b18c6685SChris Mason BUG(); 40845f39d397SChris Mason } 4085b18c6685SChris Mason } 4086b18c6685SChris Mason 4087d352ac68SChris Mason /* 40888f69dbd2SStefan Behrens * make the item pointed to by the path bigger, data_size is the added size. 4089d352ac68SChris Mason */ 4090c71dd880SDavid Sterba void btrfs_extend_item(struct btrfs_path *path, u32 data_size) 40916567e837SChris Mason { 40926567e837SChris Mason int slot; 40935f39d397SChris Mason struct extent_buffer *leaf; 40946567e837SChris Mason u32 nritems; 40956567e837SChris Mason unsigned int data_end; 40966567e837SChris Mason unsigned int old_data; 40976567e837SChris Mason unsigned int old_size; 40986567e837SChris Mason int i; 4099cfed81a0SChris Mason struct btrfs_map_token token; 4100cfed81a0SChris Mason 41015f39d397SChris Mason leaf = path->nodes[0]; 41026567e837SChris Mason 41035f39d397SChris Mason nritems = btrfs_header_nritems(leaf); 41048f881e8cSDavid Sterba data_end = leaf_data_end(leaf); 41056567e837SChris Mason 4106e902baacSDavid Sterba if (btrfs_leaf_free_space(leaf) < data_size) { 4107a4f78750SDavid Sterba btrfs_print_leaf(leaf); 41086567e837SChris Mason BUG(); 41095f39d397SChris Mason } 41106567e837SChris Mason slot = path->slots[0]; 4111dc2e724eSJosef Bacik old_data = btrfs_item_data_end(leaf, slot); 41126567e837SChris Mason 41136567e837SChris Mason BUG_ON(slot < 0); 41143326d1b0SChris Mason if (slot >= nritems) { 4115a4f78750SDavid Sterba btrfs_print_leaf(leaf); 4116c71dd880SDavid Sterba btrfs_crit(leaf->fs_info, "slot %d too large, nritems %d", 4117d397712bSChris Mason slot, nritems); 4118290342f6SArnd Bergmann BUG(); 41193326d1b0SChris Mason } 41206567e837SChris Mason 41216567e837SChris Mason /* 41226567e837SChris Mason * item0..itemN ... dataN.offset..dataN.size .. data0.size 41236567e837SChris Mason */ 41246567e837SChris Mason /* first correct the data pointers */ 4125c82f823cSDavid Sterba btrfs_init_map_token(&token, leaf); 41266567e837SChris Mason for (i = slot; i < nritems; i++) { 41275f39d397SChris Mason u32 ioff; 4128db94535dSChris Mason 41293212fa14SJosef Bacik ioff = btrfs_token_item_offset(&token, i); 41303212fa14SJosef Bacik btrfs_set_token_item_offset(&token, i, ioff - data_size); 41316567e837SChris Mason } 41325f39d397SChris Mason 41336567e837SChris Mason /* shift the data */ 4134637e3b48SJosef Bacik memmove_leaf_data(leaf, data_end - data_size, data_end, 4135637e3b48SJosef Bacik old_data - data_end); 41365f39d397SChris Mason 41376567e837SChris Mason data_end = old_data; 41383212fa14SJosef Bacik old_size = btrfs_item_size(leaf, slot); 41393212fa14SJosef Bacik btrfs_set_item_size(leaf, slot, old_size + data_size); 41405f39d397SChris Mason btrfs_mark_buffer_dirty(leaf); 41416567e837SChris Mason 4142e902baacSDavid Sterba if (btrfs_leaf_free_space(leaf) < 0) { 4143a4f78750SDavid Sterba btrfs_print_leaf(leaf); 41446567e837SChris Mason BUG(); 41455f39d397SChris Mason } 41466567e837SChris Mason } 41476567e837SChris Mason 414843dd529aSDavid Sterba /* 414943dd529aSDavid Sterba * Make space in the node before inserting one or more items. 4150da9ffb24SNikolay Borisov * 4151da9ffb24SNikolay Borisov * @root: root we are inserting items to 4152da9ffb24SNikolay Borisov * @path: points to the leaf/slot where we are going to insert new items 4153b7ef5f3aSFilipe Manana * @batch: information about the batch of items to insert 415443dd529aSDavid Sterba * 415543dd529aSDavid Sterba * Main purpose is to save stack depth by doing the bulk of the work in a 415643dd529aSDavid Sterba * function that doesn't call btrfs_search_slot 415774123bd7SChris Mason */ 4158f0641656SFilipe Manana static void setup_items_for_insert(struct btrfs_root *root, struct btrfs_path *path, 4159b7ef5f3aSFilipe Manana const struct btrfs_item_batch *batch) 4160be0e5c09SChris Mason { 41610b246afaSJeff Mahoney struct btrfs_fs_info *fs_info = root->fs_info; 41629c58309dSChris Mason int i; 41637518a238SChris Mason u32 nritems; 4164be0e5c09SChris Mason unsigned int data_end; 4165e2fa7227SChris Mason struct btrfs_disk_key disk_key; 416644871b1bSChris Mason struct extent_buffer *leaf; 416744871b1bSChris Mason int slot; 4168cfed81a0SChris Mason struct btrfs_map_token token; 4169fc0d82e1SNikolay Borisov u32 total_size; 4170fc0d82e1SNikolay Borisov 4171b7ef5f3aSFilipe Manana /* 4172b7ef5f3aSFilipe Manana * Before anything else, update keys in the parent and other ancestors 4173b7ef5f3aSFilipe Manana * if needed, then release the write locks on them, so that other tasks 4174b7ef5f3aSFilipe Manana * can use them while we modify the leaf. 4175b7ef5f3aSFilipe Manana */ 417624cdc847SFilipe Manana if (path->slots[0] == 0) { 4177b7ef5f3aSFilipe Manana btrfs_cpu_key_to_disk(&disk_key, &batch->keys[0]); 4178b167fa91SNikolay Borisov fixup_low_keys(path, &disk_key, 1); 417924cdc847SFilipe Manana } 418024cdc847SFilipe Manana btrfs_unlock_up_safe(path, 1); 418124cdc847SFilipe Manana 41825f39d397SChris Mason leaf = path->nodes[0]; 418344871b1bSChris Mason slot = path->slots[0]; 418474123bd7SChris Mason 41855f39d397SChris Mason nritems = btrfs_header_nritems(leaf); 41868f881e8cSDavid Sterba data_end = leaf_data_end(leaf); 4187b7ef5f3aSFilipe Manana total_size = batch->total_data_size + (batch->nr * sizeof(struct btrfs_item)); 4188eb60ceacSChris Mason 4189e902baacSDavid Sterba if (btrfs_leaf_free_space(leaf) < total_size) { 4190a4f78750SDavid Sterba btrfs_print_leaf(leaf); 41910b246afaSJeff Mahoney btrfs_crit(fs_info, "not enough freespace need %u have %d", 4192e902baacSDavid Sterba total_size, btrfs_leaf_free_space(leaf)); 4193be0e5c09SChris Mason BUG(); 4194d4dbff95SChris Mason } 41955f39d397SChris Mason 4196c82f823cSDavid Sterba btrfs_init_map_token(&token, leaf); 4197be0e5c09SChris Mason if (slot != nritems) { 4198dc2e724eSJosef Bacik unsigned int old_data = btrfs_item_data_end(leaf, slot); 4199be0e5c09SChris Mason 42005f39d397SChris Mason if (old_data < data_end) { 4201a4f78750SDavid Sterba btrfs_print_leaf(leaf); 42027269ddd2SNikolay Borisov btrfs_crit(fs_info, 42037269ddd2SNikolay Borisov "item at slot %d with data offset %u beyond data end of leaf %u", 42045f39d397SChris Mason slot, old_data, data_end); 4205290342f6SArnd Bergmann BUG(); 42065f39d397SChris Mason } 4207be0e5c09SChris Mason /* 4208be0e5c09SChris Mason * item0..itemN ... dataN.offset..dataN.size .. data0.size 4209be0e5c09SChris Mason */ 4210be0e5c09SChris Mason /* first correct the data pointers */ 42110783fcfcSChris Mason for (i = slot; i < nritems; i++) { 42125f39d397SChris Mason u32 ioff; 4213db94535dSChris Mason 42143212fa14SJosef Bacik ioff = btrfs_token_item_offset(&token, i); 42153212fa14SJosef Bacik btrfs_set_token_item_offset(&token, i, 4216b7ef5f3aSFilipe Manana ioff - batch->total_data_size); 42170783fcfcSChris Mason } 4218be0e5c09SChris Mason /* shift the items */ 4219637e3b48SJosef Bacik memmove_leaf_items(leaf, slot + batch->nr, slot, nritems - slot); 4220be0e5c09SChris Mason 4221be0e5c09SChris Mason /* shift the data */ 4222637e3b48SJosef Bacik memmove_leaf_data(leaf, data_end - batch->total_data_size, 4223637e3b48SJosef Bacik data_end, old_data - data_end); 4224be0e5c09SChris Mason data_end = old_data; 4225be0e5c09SChris Mason } 42265f39d397SChris Mason 422762e2749eSChris Mason /* setup the item for the new data */ 4228b7ef5f3aSFilipe Manana for (i = 0; i < batch->nr; i++) { 4229b7ef5f3aSFilipe Manana btrfs_cpu_key_to_disk(&disk_key, &batch->keys[i]); 42309c58309dSChris Mason btrfs_set_item_key(leaf, &disk_key, slot + i); 4231b7ef5f3aSFilipe Manana data_end -= batch->data_sizes[i]; 42323212fa14SJosef Bacik btrfs_set_token_item_offset(&token, slot + i, data_end); 42333212fa14SJosef Bacik btrfs_set_token_item_size(&token, slot + i, batch->data_sizes[i]); 42349c58309dSChris Mason } 423544871b1bSChris Mason 4236b7ef5f3aSFilipe Manana btrfs_set_header_nritems(leaf, nritems + batch->nr); 4237b9473439SChris Mason btrfs_mark_buffer_dirty(leaf); 4238aa5d6bedSChris Mason 4239e902baacSDavid Sterba if (btrfs_leaf_free_space(leaf) < 0) { 4240a4f78750SDavid Sterba btrfs_print_leaf(leaf); 4241be0e5c09SChris Mason BUG(); 42425f39d397SChris Mason } 424344871b1bSChris Mason } 424444871b1bSChris Mason 424544871b1bSChris Mason /* 4246f0641656SFilipe Manana * Insert a new item into a leaf. 4247f0641656SFilipe Manana * 4248f0641656SFilipe Manana * @root: The root of the btree. 4249f0641656SFilipe Manana * @path: A path pointing to the target leaf and slot. 4250f0641656SFilipe Manana * @key: The key of the new item. 4251f0641656SFilipe Manana * @data_size: The size of the data associated with the new key. 4252f0641656SFilipe Manana */ 4253f0641656SFilipe Manana void btrfs_setup_item_for_insert(struct btrfs_root *root, 4254f0641656SFilipe Manana struct btrfs_path *path, 4255f0641656SFilipe Manana const struct btrfs_key *key, 4256f0641656SFilipe Manana u32 data_size) 4257f0641656SFilipe Manana { 4258f0641656SFilipe Manana struct btrfs_item_batch batch; 4259f0641656SFilipe Manana 4260f0641656SFilipe Manana batch.keys = key; 4261f0641656SFilipe Manana batch.data_sizes = &data_size; 4262f0641656SFilipe Manana batch.total_data_size = data_size; 4263f0641656SFilipe Manana batch.nr = 1; 4264f0641656SFilipe Manana 4265f0641656SFilipe Manana setup_items_for_insert(root, path, &batch); 4266f0641656SFilipe Manana } 4267f0641656SFilipe Manana 4268f0641656SFilipe Manana /* 426944871b1bSChris Mason * Given a key and some data, insert items into the tree. 427044871b1bSChris Mason * This does all the path init required, making room in the tree if needed. 427144871b1bSChris Mason */ 427244871b1bSChris Mason int btrfs_insert_empty_items(struct btrfs_trans_handle *trans, 427344871b1bSChris Mason struct btrfs_root *root, 427444871b1bSChris Mason struct btrfs_path *path, 4275b7ef5f3aSFilipe Manana const struct btrfs_item_batch *batch) 427644871b1bSChris Mason { 427744871b1bSChris Mason int ret = 0; 427844871b1bSChris Mason int slot; 4279b7ef5f3aSFilipe Manana u32 total_size; 428044871b1bSChris Mason 4281b7ef5f3aSFilipe Manana total_size = batch->total_data_size + (batch->nr * sizeof(struct btrfs_item)); 4282b7ef5f3aSFilipe Manana ret = btrfs_search_slot(trans, root, &batch->keys[0], path, total_size, 1); 428344871b1bSChris Mason if (ret == 0) 428444871b1bSChris Mason return -EEXIST; 428544871b1bSChris Mason if (ret < 0) 4286143bede5SJeff Mahoney return ret; 428744871b1bSChris Mason 428844871b1bSChris Mason slot = path->slots[0]; 428944871b1bSChris Mason BUG_ON(slot < 0); 429044871b1bSChris Mason 4291b7ef5f3aSFilipe Manana setup_items_for_insert(root, path, batch); 4292143bede5SJeff Mahoney return 0; 429362e2749eSChris Mason } 429462e2749eSChris Mason 429562e2749eSChris Mason /* 429662e2749eSChris Mason * Given a key and some data, insert an item into the tree. 429762e2749eSChris Mason * This does all the path init required, making room in the tree if needed. 429862e2749eSChris Mason */ 4299310712b2SOmar Sandoval int btrfs_insert_item(struct btrfs_trans_handle *trans, struct btrfs_root *root, 4300310712b2SOmar Sandoval const struct btrfs_key *cpu_key, void *data, 4301310712b2SOmar Sandoval u32 data_size) 430262e2749eSChris Mason { 430362e2749eSChris Mason int ret = 0; 43042c90e5d6SChris Mason struct btrfs_path *path; 43055f39d397SChris Mason struct extent_buffer *leaf; 43065f39d397SChris Mason unsigned long ptr; 430762e2749eSChris Mason 43082c90e5d6SChris Mason path = btrfs_alloc_path(); 4309db5b493aSTsutomu Itoh if (!path) 4310db5b493aSTsutomu Itoh return -ENOMEM; 43112c90e5d6SChris Mason ret = btrfs_insert_empty_item(trans, root, path, cpu_key, data_size); 431262e2749eSChris Mason if (!ret) { 43135f39d397SChris Mason leaf = path->nodes[0]; 43145f39d397SChris Mason ptr = btrfs_item_ptr_offset(leaf, path->slots[0]); 43155f39d397SChris Mason write_extent_buffer(leaf, data, ptr, data_size); 43165f39d397SChris Mason btrfs_mark_buffer_dirty(leaf); 431762e2749eSChris Mason } 43182c90e5d6SChris Mason btrfs_free_path(path); 4319aa5d6bedSChris Mason return ret; 4320be0e5c09SChris Mason } 4321be0e5c09SChris Mason 432274123bd7SChris Mason /* 4323f0641656SFilipe Manana * This function duplicates an item, giving 'new_key' to the new item. 4324f0641656SFilipe Manana * It guarantees both items live in the same tree leaf and the new item is 4325f0641656SFilipe Manana * contiguous with the original item. 4326f0641656SFilipe Manana * 4327f0641656SFilipe Manana * This allows us to split a file extent in place, keeping a lock on the leaf 4328f0641656SFilipe Manana * the entire time. 4329f0641656SFilipe Manana */ 4330f0641656SFilipe Manana int btrfs_duplicate_item(struct btrfs_trans_handle *trans, 4331f0641656SFilipe Manana struct btrfs_root *root, 4332f0641656SFilipe Manana struct btrfs_path *path, 4333f0641656SFilipe Manana const struct btrfs_key *new_key) 4334f0641656SFilipe Manana { 4335f0641656SFilipe Manana struct extent_buffer *leaf; 4336f0641656SFilipe Manana int ret; 4337f0641656SFilipe Manana u32 item_size; 4338f0641656SFilipe Manana 4339f0641656SFilipe Manana leaf = path->nodes[0]; 43403212fa14SJosef Bacik item_size = btrfs_item_size(leaf, path->slots[0]); 4341f0641656SFilipe Manana ret = setup_leaf_for_split(trans, root, path, 4342f0641656SFilipe Manana item_size + sizeof(struct btrfs_item)); 4343f0641656SFilipe Manana if (ret) 4344f0641656SFilipe Manana return ret; 4345f0641656SFilipe Manana 4346f0641656SFilipe Manana path->slots[0]++; 4347f0641656SFilipe Manana btrfs_setup_item_for_insert(root, path, new_key, item_size); 4348f0641656SFilipe Manana leaf = path->nodes[0]; 4349f0641656SFilipe Manana memcpy_extent_buffer(leaf, 4350f0641656SFilipe Manana btrfs_item_ptr_offset(leaf, path->slots[0]), 4351f0641656SFilipe Manana btrfs_item_ptr_offset(leaf, path->slots[0] - 1), 4352f0641656SFilipe Manana item_size); 4353f0641656SFilipe Manana return 0; 4354f0641656SFilipe Manana } 4355f0641656SFilipe Manana 4356f0641656SFilipe Manana /* 43575de08d7dSChris Mason * delete the pointer from a given node. 435874123bd7SChris Mason * 4359d352ac68SChris Mason * the tree should have been previously balanced so the deletion does not 4360d352ac68SChris Mason * empty a node. 4361016f9d0bSJosef Bacik * 4362016f9d0bSJosef Bacik * This is exported for use inside btrfs-progs, don't un-export it. 436374123bd7SChris Mason */ 4364016f9d0bSJosef Bacik void btrfs_del_ptr(struct btrfs_root *root, struct btrfs_path *path, int level, 4365016f9d0bSJosef Bacik int slot) 4366be0e5c09SChris Mason { 43675f39d397SChris Mason struct extent_buffer *parent = path->nodes[level]; 43687518a238SChris Mason u32 nritems; 4369f3ea38daSJan Schmidt int ret; 4370be0e5c09SChris Mason 43715f39d397SChris Mason nritems = btrfs_header_nritems(parent); 4372be0e5c09SChris Mason if (slot != nritems - 1) { 4373bf1d3425SDavid Sterba if (level) { 4374f3a84ccdSFilipe Manana ret = btrfs_tree_mod_log_insert_move(parent, slot, 4375f3a84ccdSFilipe Manana slot + 1, nritems - slot - 1); 4376bf1d3425SDavid Sterba BUG_ON(ret < 0); 4377bf1d3425SDavid Sterba } 43785f39d397SChris Mason memmove_extent_buffer(parent, 4379e23efd8eSJosef Bacik btrfs_node_key_ptr_offset(parent, slot), 4380e23efd8eSJosef Bacik btrfs_node_key_ptr_offset(parent, slot + 1), 4381d6025579SChris Mason sizeof(struct btrfs_key_ptr) * 4382d6025579SChris Mason (nritems - slot - 1)); 438357ba86c0SChris Mason } else if (level) { 4384f3a84ccdSFilipe Manana ret = btrfs_tree_mod_log_insert_key(parent, slot, 438533cff222SFilipe Manana BTRFS_MOD_LOG_KEY_REMOVE); 438657ba86c0SChris Mason BUG_ON(ret < 0); 4387be0e5c09SChris Mason } 4388f3ea38daSJan Schmidt 43897518a238SChris Mason nritems--; 43905f39d397SChris Mason btrfs_set_header_nritems(parent, nritems); 43917518a238SChris Mason if (nritems == 0 && parent == root->node) { 43925f39d397SChris Mason BUG_ON(btrfs_header_level(root->node) != 1); 4393eb60ceacSChris Mason /* just turn the root into a leaf and break */ 43945f39d397SChris Mason btrfs_set_header_level(root->node, 0); 4395bb803951SChris Mason } else if (slot == 0) { 43965f39d397SChris Mason struct btrfs_disk_key disk_key; 43975f39d397SChris Mason 43985f39d397SChris Mason btrfs_node_key(parent, &disk_key, 0); 4399b167fa91SNikolay Borisov fixup_low_keys(path, &disk_key, level + 1); 4400be0e5c09SChris Mason } 4401d6025579SChris Mason btrfs_mark_buffer_dirty(parent); 4402be0e5c09SChris Mason } 4403be0e5c09SChris Mason 440474123bd7SChris Mason /* 4405323ac95bSChris Mason * a helper function to delete the leaf pointed to by path->slots[1] and 44065d4f98a2SYan Zheng * path->nodes[1]. 4407323ac95bSChris Mason * 4408323ac95bSChris Mason * This deletes the pointer in path->nodes[1] and frees the leaf 4409323ac95bSChris Mason * block extent. zero is returned if it all worked out, < 0 otherwise. 4410323ac95bSChris Mason * 4411323ac95bSChris Mason * The path must have already been setup for deleting the leaf, including 4412323ac95bSChris Mason * all the proper balancing. path->nodes[1] must be locked. 4413323ac95bSChris Mason */ 4414143bede5SJeff Mahoney static noinline void btrfs_del_leaf(struct btrfs_trans_handle *trans, 4415323ac95bSChris Mason struct btrfs_root *root, 44165d4f98a2SYan Zheng struct btrfs_path *path, 44175d4f98a2SYan Zheng struct extent_buffer *leaf) 4418323ac95bSChris Mason { 44195d4f98a2SYan Zheng WARN_ON(btrfs_header_generation(leaf) != trans->transid); 4420016f9d0bSJosef Bacik btrfs_del_ptr(root, path, 1, path->slots[1]); 4421323ac95bSChris Mason 44224d081c41SChris Mason /* 44234d081c41SChris Mason * btrfs_free_extent is expensive, we want to make sure we 44244d081c41SChris Mason * aren't holding any locks when we call it 44254d081c41SChris Mason */ 44264d081c41SChris Mason btrfs_unlock_up_safe(path, 0); 44274d081c41SChris Mason 4428f0486c68SYan, Zheng root_sub_used(root, leaf->len); 4429f0486c68SYan, Zheng 443067439dadSDavid Sterba atomic_inc(&leaf->refs); 44317a163608SFilipe Manana btrfs_free_tree_block(trans, btrfs_root_id(root), leaf, 0, 1); 44323083ee2eSJosef Bacik free_extent_buffer_stale(leaf); 4433323ac95bSChris Mason } 4434323ac95bSChris Mason /* 443574123bd7SChris Mason * delete the item at the leaf level in path. If that empties 443674123bd7SChris Mason * the leaf, remove it from the tree 443774123bd7SChris Mason */ 443885e21bacSChris Mason int btrfs_del_items(struct btrfs_trans_handle *trans, struct btrfs_root *root, 443985e21bacSChris Mason struct btrfs_path *path, int slot, int nr) 4440be0e5c09SChris Mason { 44410b246afaSJeff Mahoney struct btrfs_fs_info *fs_info = root->fs_info; 44425f39d397SChris Mason struct extent_buffer *leaf; 4443aa5d6bedSChris Mason int ret = 0; 4444aa5d6bedSChris Mason int wret; 44457518a238SChris Mason u32 nritems; 4446be0e5c09SChris Mason 44475f39d397SChris Mason leaf = path->nodes[0]; 44485f39d397SChris Mason nritems = btrfs_header_nritems(leaf); 4449be0e5c09SChris Mason 445085e21bacSChris Mason if (slot + nr != nritems) { 44510cae23b6SFilipe Manana const u32 last_off = btrfs_item_offset(leaf, slot + nr - 1); 44520cae23b6SFilipe Manana const int data_end = leaf_data_end(leaf); 4453c82f823cSDavid Sterba struct btrfs_map_token token; 44540cae23b6SFilipe Manana u32 dsize = 0; 44550cae23b6SFilipe Manana int i; 44560cae23b6SFilipe Manana 44570cae23b6SFilipe Manana for (i = 0; i < nr; i++) 44580cae23b6SFilipe Manana dsize += btrfs_item_size(leaf, slot + i); 44595f39d397SChris Mason 4460637e3b48SJosef Bacik memmove_leaf_data(leaf, data_end + dsize, data_end, 446185e21bacSChris Mason last_off - data_end); 44625f39d397SChris Mason 4463c82f823cSDavid Sterba btrfs_init_map_token(&token, leaf); 446485e21bacSChris Mason for (i = slot + nr; i < nritems; i++) { 44655f39d397SChris Mason u32 ioff; 4466db94535dSChris Mason 44673212fa14SJosef Bacik ioff = btrfs_token_item_offset(&token, i); 44683212fa14SJosef Bacik btrfs_set_token_item_offset(&token, i, ioff + dsize); 44690783fcfcSChris Mason } 4470db94535dSChris Mason 4471637e3b48SJosef Bacik memmove_leaf_items(leaf, slot, slot + nr, nritems - slot - nr); 4472be0e5c09SChris Mason } 447385e21bacSChris Mason btrfs_set_header_nritems(leaf, nritems - nr); 447485e21bacSChris Mason nritems -= nr; 44755f39d397SChris Mason 447674123bd7SChris Mason /* delete the leaf if we've emptied it */ 44777518a238SChris Mason if (nritems == 0) { 44785f39d397SChris Mason if (leaf == root->node) { 44795f39d397SChris Mason btrfs_set_header_level(leaf, 0); 44809a8dd150SChris Mason } else { 4481190a8339SJosef Bacik btrfs_clear_buffer_dirty(trans, leaf); 4482143bede5SJeff Mahoney btrfs_del_leaf(trans, root, path, leaf); 44839a8dd150SChris Mason } 4484be0e5c09SChris Mason } else { 44857518a238SChris Mason int used = leaf_space_used(leaf, 0, nritems); 4486aa5d6bedSChris Mason if (slot == 0) { 44875f39d397SChris Mason struct btrfs_disk_key disk_key; 44885f39d397SChris Mason 44895f39d397SChris Mason btrfs_item_key(leaf, &disk_key, 0); 4490b167fa91SNikolay Borisov fixup_low_keys(path, &disk_key, 1); 4491aa5d6bedSChris Mason } 4492aa5d6bedSChris Mason 44937c4063d1SFilipe Manana /* 44947c4063d1SFilipe Manana * Try to delete the leaf if it is mostly empty. We do this by 44957c4063d1SFilipe Manana * trying to move all its items into its left and right neighbours. 44967c4063d1SFilipe Manana * If we can't move all the items, then we don't delete it - it's 44977c4063d1SFilipe Manana * not ideal, but future insertions might fill the leaf with more 44987c4063d1SFilipe Manana * items, or items from other leaves might be moved later into our 44997c4063d1SFilipe Manana * leaf due to deletions on those leaves. 45007c4063d1SFilipe Manana */ 45010b246afaSJeff Mahoney if (used < BTRFS_LEAF_DATA_SIZE(fs_info) / 3) { 45027c4063d1SFilipe Manana u32 min_push_space; 45037c4063d1SFilipe Manana 4504be0e5c09SChris Mason /* push_leaf_left fixes the path. 4505be0e5c09SChris Mason * make sure the path still points to our leaf 4506016f9d0bSJosef Bacik * for possible call to btrfs_del_ptr below 4507be0e5c09SChris Mason */ 45084920c9acSChris Mason slot = path->slots[1]; 450967439dadSDavid Sterba atomic_inc(&leaf->refs); 45107c4063d1SFilipe Manana /* 45117c4063d1SFilipe Manana * We want to be able to at least push one item to the 45127c4063d1SFilipe Manana * left neighbour leaf, and that's the first item. 45137c4063d1SFilipe Manana */ 45147c4063d1SFilipe Manana min_push_space = sizeof(struct btrfs_item) + 45157c4063d1SFilipe Manana btrfs_item_size(leaf, 0); 45167c4063d1SFilipe Manana wret = push_leaf_left(trans, root, path, 0, 45177c4063d1SFilipe Manana min_push_space, 1, (u32)-1); 451854aa1f4dSChris Mason if (wret < 0 && wret != -ENOSPC) 4519aa5d6bedSChris Mason ret = wret; 45205f39d397SChris Mason 45215f39d397SChris Mason if (path->nodes[0] == leaf && 45225f39d397SChris Mason btrfs_header_nritems(leaf)) { 45237c4063d1SFilipe Manana /* 45247c4063d1SFilipe Manana * If we were not able to push all items from our 45257c4063d1SFilipe Manana * leaf to its left neighbour, then attempt to 45267c4063d1SFilipe Manana * either push all the remaining items to the 45277c4063d1SFilipe Manana * right neighbour or none. There's no advantage 45287c4063d1SFilipe Manana * in pushing only some items, instead of all, as 45297c4063d1SFilipe Manana * it's pointless to end up with a leaf having 45307c4063d1SFilipe Manana * too few items while the neighbours can be full 45317c4063d1SFilipe Manana * or nearly full. 45327c4063d1SFilipe Manana */ 45337c4063d1SFilipe Manana nritems = btrfs_header_nritems(leaf); 45347c4063d1SFilipe Manana min_push_space = leaf_space_used(leaf, 0, nritems); 45357c4063d1SFilipe Manana wret = push_leaf_right(trans, root, path, 0, 45367c4063d1SFilipe Manana min_push_space, 1, 0); 453754aa1f4dSChris Mason if (wret < 0 && wret != -ENOSPC) 4538aa5d6bedSChris Mason ret = wret; 4539aa5d6bedSChris Mason } 45405f39d397SChris Mason 45415f39d397SChris Mason if (btrfs_header_nritems(leaf) == 0) { 4542323ac95bSChris Mason path->slots[1] = slot; 4543143bede5SJeff Mahoney btrfs_del_leaf(trans, root, path, leaf); 45445f39d397SChris Mason free_extent_buffer(leaf); 4545143bede5SJeff Mahoney ret = 0; 45465de08d7dSChris Mason } else { 4547925baeddSChris Mason /* if we're still in the path, make sure 4548925baeddSChris Mason * we're dirty. Otherwise, one of the 4549925baeddSChris Mason * push_leaf functions must have already 4550925baeddSChris Mason * dirtied this buffer 4551925baeddSChris Mason */ 4552925baeddSChris Mason if (path->nodes[0] == leaf) 45535f39d397SChris Mason btrfs_mark_buffer_dirty(leaf); 45545f39d397SChris Mason free_extent_buffer(leaf); 4555be0e5c09SChris Mason } 4556d5719762SChris Mason } else { 45575f39d397SChris Mason btrfs_mark_buffer_dirty(leaf); 4558be0e5c09SChris Mason } 45599a8dd150SChris Mason } 4560aa5d6bedSChris Mason return ret; 45619a8dd150SChris Mason } 45629a8dd150SChris Mason 456397571fd0SChris Mason /* 45643f157a2fSChris Mason * A helper function to walk down the tree starting at min_key, and looking 4565de78b51aSEric Sandeen * for nodes or leaves that are have a minimum transaction id. 4566de78b51aSEric Sandeen * This is used by the btree defrag code, and tree logging 45673f157a2fSChris Mason * 45683f157a2fSChris Mason * This does not cow, but it does stuff the starting key it finds back 45693f157a2fSChris Mason * into min_key, so you can call btrfs_search_slot with cow=1 on the 45703f157a2fSChris Mason * key and get a writable path. 45713f157a2fSChris Mason * 45723f157a2fSChris Mason * This honors path->lowest_level to prevent descent past a given level 45733f157a2fSChris Mason * of the tree. 45743f157a2fSChris Mason * 4575d352ac68SChris Mason * min_trans indicates the oldest transaction that you are interested 4576d352ac68SChris Mason * in walking through. Any nodes or leaves older than min_trans are 4577d352ac68SChris Mason * skipped over (without reading them). 4578d352ac68SChris Mason * 45793f157a2fSChris Mason * returns zero if something useful was found, < 0 on error and 1 if there 45803f157a2fSChris Mason * was nothing in the tree that matched the search criteria. 45813f157a2fSChris Mason */ 45823f157a2fSChris Mason int btrfs_search_forward(struct btrfs_root *root, struct btrfs_key *min_key, 4583de78b51aSEric Sandeen struct btrfs_path *path, 45843f157a2fSChris Mason u64 min_trans) 45853f157a2fSChris Mason { 45863f157a2fSChris Mason struct extent_buffer *cur; 45873f157a2fSChris Mason struct btrfs_key found_key; 45883f157a2fSChris Mason int slot; 45899652480bSYan int sret; 45903f157a2fSChris Mason u32 nritems; 45913f157a2fSChris Mason int level; 45923f157a2fSChris Mason int ret = 1; 4593f98de9b9SFilipe Manana int keep_locks = path->keep_locks; 45943f157a2fSChris Mason 4595c922b016SStefan Roesch ASSERT(!path->nowait); 4596f98de9b9SFilipe Manana path->keep_locks = 1; 45973f157a2fSChris Mason again: 4598bd681513SChris Mason cur = btrfs_read_lock_root_node(root); 45993f157a2fSChris Mason level = btrfs_header_level(cur); 4600e02119d5SChris Mason WARN_ON(path->nodes[level]); 46013f157a2fSChris Mason path->nodes[level] = cur; 4602bd681513SChris Mason path->locks[level] = BTRFS_READ_LOCK; 46033f157a2fSChris Mason 46043f157a2fSChris Mason if (btrfs_header_generation(cur) < min_trans) { 46053f157a2fSChris Mason ret = 1; 46063f157a2fSChris Mason goto out; 46073f157a2fSChris Mason } 46083f157a2fSChris Mason while (1) { 46093f157a2fSChris Mason nritems = btrfs_header_nritems(cur); 46103f157a2fSChris Mason level = btrfs_header_level(cur); 4611fdf8d595SAnand Jain sret = btrfs_bin_search(cur, 0, min_key, &slot); 4612cbca7d59SFilipe Manana if (sret < 0) { 4613cbca7d59SFilipe Manana ret = sret; 4614cbca7d59SFilipe Manana goto out; 4615cbca7d59SFilipe Manana } 46163f157a2fSChris Mason 4617323ac95bSChris Mason /* at the lowest level, we're done, setup the path and exit */ 4618323ac95bSChris Mason if (level == path->lowest_level) { 4619e02119d5SChris Mason if (slot >= nritems) 4620e02119d5SChris Mason goto find_next_key; 46213f157a2fSChris Mason ret = 0; 46223f157a2fSChris Mason path->slots[level] = slot; 46233f157a2fSChris Mason btrfs_item_key_to_cpu(cur, &found_key, slot); 46243f157a2fSChris Mason goto out; 46253f157a2fSChris Mason } 46269652480bSYan if (sret && slot > 0) 46279652480bSYan slot--; 46283f157a2fSChris Mason /* 4629de78b51aSEric Sandeen * check this node pointer against the min_trans parameters. 4630260db43cSRandy Dunlap * If it is too old, skip to the next one. 46313f157a2fSChris Mason */ 46323f157a2fSChris Mason while (slot < nritems) { 46333f157a2fSChris Mason u64 gen; 4634e02119d5SChris Mason 46353f157a2fSChris Mason gen = btrfs_node_ptr_generation(cur, slot); 46363f157a2fSChris Mason if (gen < min_trans) { 46373f157a2fSChris Mason slot++; 46383f157a2fSChris Mason continue; 46393f157a2fSChris Mason } 46403f157a2fSChris Mason break; 46413f157a2fSChris Mason } 4642e02119d5SChris Mason find_next_key: 46433f157a2fSChris Mason /* 46443f157a2fSChris Mason * we didn't find a candidate key in this node, walk forward 46453f157a2fSChris Mason * and find another one 46463f157a2fSChris Mason */ 46473f157a2fSChris Mason if (slot >= nritems) { 4648e02119d5SChris Mason path->slots[level] = slot; 4649e02119d5SChris Mason sret = btrfs_find_next_key(root, path, min_key, level, 4650de78b51aSEric Sandeen min_trans); 4651e02119d5SChris Mason if (sret == 0) { 4652b3b4aa74SDavid Sterba btrfs_release_path(path); 46533f157a2fSChris Mason goto again; 46543f157a2fSChris Mason } else { 46553f157a2fSChris Mason goto out; 46563f157a2fSChris Mason } 46573f157a2fSChris Mason } 46583f157a2fSChris Mason /* save our key for returning back */ 46593f157a2fSChris Mason btrfs_node_key_to_cpu(cur, &found_key, slot); 46603f157a2fSChris Mason path->slots[level] = slot; 46613f157a2fSChris Mason if (level == path->lowest_level) { 46623f157a2fSChris Mason ret = 0; 46633f157a2fSChris Mason goto out; 46643f157a2fSChris Mason } 46654b231ae4SDavid Sterba cur = btrfs_read_node_slot(cur, slot); 4666fb770ae4SLiu Bo if (IS_ERR(cur)) { 4667fb770ae4SLiu Bo ret = PTR_ERR(cur); 4668fb770ae4SLiu Bo goto out; 4669fb770ae4SLiu Bo } 46703f157a2fSChris Mason 4671bd681513SChris Mason btrfs_tree_read_lock(cur); 4672b4ce94deSChris Mason 4673bd681513SChris Mason path->locks[level - 1] = BTRFS_READ_LOCK; 46743f157a2fSChris Mason path->nodes[level - 1] = cur; 4675f7c79f30SChris Mason unlock_up(path, level, 1, 0, NULL); 46763f157a2fSChris Mason } 46773f157a2fSChris Mason out: 4678f98de9b9SFilipe Manana path->keep_locks = keep_locks; 4679f98de9b9SFilipe Manana if (ret == 0) { 4680f98de9b9SFilipe Manana btrfs_unlock_up_safe(path, path->lowest_level + 1); 4681f98de9b9SFilipe Manana memcpy(min_key, &found_key, sizeof(found_key)); 4682f98de9b9SFilipe Manana } 46833f157a2fSChris Mason return ret; 46843f157a2fSChris Mason } 46853f157a2fSChris Mason 46863f157a2fSChris Mason /* 46873f157a2fSChris Mason * this is similar to btrfs_next_leaf, but does not try to preserve 46883f157a2fSChris Mason * and fixup the path. It looks for and returns the next key in the 4689de78b51aSEric Sandeen * tree based on the current path and the min_trans parameters. 46903f157a2fSChris Mason * 46913f157a2fSChris Mason * 0 is returned if another key is found, < 0 if there are any errors 46923f157a2fSChris Mason * and 1 is returned if there are no higher keys in the tree 46933f157a2fSChris Mason * 46943f157a2fSChris Mason * path->keep_locks should be set to 1 on the search made before 46953f157a2fSChris Mason * calling this function. 46963f157a2fSChris Mason */ 4697e7a84565SChris Mason int btrfs_find_next_key(struct btrfs_root *root, struct btrfs_path *path, 4698de78b51aSEric Sandeen struct btrfs_key *key, int level, u64 min_trans) 4699e7a84565SChris Mason { 4700e7a84565SChris Mason int slot; 4701e7a84565SChris Mason struct extent_buffer *c; 4702e7a84565SChris Mason 47036a9fb468SJosef Bacik WARN_ON(!path->keep_locks && !path->skip_locking); 4704e7a84565SChris Mason while (level < BTRFS_MAX_LEVEL) { 4705e7a84565SChris Mason if (!path->nodes[level]) 4706e7a84565SChris Mason return 1; 4707e7a84565SChris Mason 4708e7a84565SChris Mason slot = path->slots[level] + 1; 4709e7a84565SChris Mason c = path->nodes[level]; 47103f157a2fSChris Mason next: 4711e7a84565SChris Mason if (slot >= btrfs_header_nritems(c)) { 471233c66f43SYan Zheng int ret; 471333c66f43SYan Zheng int orig_lowest; 471433c66f43SYan Zheng struct btrfs_key cur_key; 471533c66f43SYan Zheng if (level + 1 >= BTRFS_MAX_LEVEL || 471633c66f43SYan Zheng !path->nodes[level + 1]) 4717e7a84565SChris Mason return 1; 471833c66f43SYan Zheng 47196a9fb468SJosef Bacik if (path->locks[level + 1] || path->skip_locking) { 472033c66f43SYan Zheng level++; 4721e7a84565SChris Mason continue; 4722e7a84565SChris Mason } 472333c66f43SYan Zheng 472433c66f43SYan Zheng slot = btrfs_header_nritems(c) - 1; 472533c66f43SYan Zheng if (level == 0) 472633c66f43SYan Zheng btrfs_item_key_to_cpu(c, &cur_key, slot); 472733c66f43SYan Zheng else 472833c66f43SYan Zheng btrfs_node_key_to_cpu(c, &cur_key, slot); 472933c66f43SYan Zheng 473033c66f43SYan Zheng orig_lowest = path->lowest_level; 4731b3b4aa74SDavid Sterba btrfs_release_path(path); 473233c66f43SYan Zheng path->lowest_level = level; 473333c66f43SYan Zheng ret = btrfs_search_slot(NULL, root, &cur_key, path, 473433c66f43SYan Zheng 0, 0); 473533c66f43SYan Zheng path->lowest_level = orig_lowest; 473633c66f43SYan Zheng if (ret < 0) 473733c66f43SYan Zheng return ret; 473833c66f43SYan Zheng 473933c66f43SYan Zheng c = path->nodes[level]; 474033c66f43SYan Zheng slot = path->slots[level]; 474133c66f43SYan Zheng if (ret == 0) 474233c66f43SYan Zheng slot++; 474333c66f43SYan Zheng goto next; 474433c66f43SYan Zheng } 474533c66f43SYan Zheng 4746e7a84565SChris Mason if (level == 0) 4747e7a84565SChris Mason btrfs_item_key_to_cpu(c, key, slot); 47483f157a2fSChris Mason else { 47493f157a2fSChris Mason u64 gen = btrfs_node_ptr_generation(c, slot); 47503f157a2fSChris Mason 47513f157a2fSChris Mason if (gen < min_trans) { 47523f157a2fSChris Mason slot++; 47533f157a2fSChris Mason goto next; 47543f157a2fSChris Mason } 4755e7a84565SChris Mason btrfs_node_key_to_cpu(c, key, slot); 47563f157a2fSChris Mason } 4757e7a84565SChris Mason return 0; 4758e7a84565SChris Mason } 4759e7a84565SChris Mason return 1; 4760e7a84565SChris Mason } 4761e7a84565SChris Mason 47623d7806ecSJan Schmidt int btrfs_next_old_leaf(struct btrfs_root *root, struct btrfs_path *path, 47633d7806ecSJan Schmidt u64 time_seq) 47643d7806ecSJan Schmidt { 4765d97e63b6SChris Mason int slot; 47668e73f275SChris Mason int level; 47675f39d397SChris Mason struct extent_buffer *c; 47688e73f275SChris Mason struct extent_buffer *next; 4769d96b3424SFilipe Manana struct btrfs_fs_info *fs_info = root->fs_info; 4770925baeddSChris Mason struct btrfs_key key; 4771d96b3424SFilipe Manana bool need_commit_sem = false; 4772925baeddSChris Mason u32 nritems; 4773925baeddSChris Mason int ret; 47740e46318dSJosef Bacik int i; 4775925baeddSChris Mason 4776bdcdd86cSFilipe Manana /* 4777bdcdd86cSFilipe Manana * The nowait semantics are used only for write paths, where we don't 4778bdcdd86cSFilipe Manana * use the tree mod log and sequence numbers. 4779bdcdd86cSFilipe Manana */ 4780bdcdd86cSFilipe Manana if (time_seq) 4781c922b016SStefan Roesch ASSERT(!path->nowait); 4782c922b016SStefan Roesch 4783925baeddSChris Mason nritems = btrfs_header_nritems(path->nodes[0]); 4784d397712bSChris Mason if (nritems == 0) 4785925baeddSChris Mason return 1; 4786925baeddSChris Mason 47878e73f275SChris Mason btrfs_item_key_to_cpu(path->nodes[0], &key, nritems - 1); 47888e73f275SChris Mason again: 47898e73f275SChris Mason level = 1; 47908e73f275SChris Mason next = NULL; 4791b3b4aa74SDavid Sterba btrfs_release_path(path); 47928e73f275SChris Mason 4793a2135011SChris Mason path->keep_locks = 1; 47948e73f275SChris Mason 4795d96b3424SFilipe Manana if (time_seq) { 47963d7806ecSJan Schmidt ret = btrfs_search_old_slot(root, &key, path, time_seq); 4797d96b3424SFilipe Manana } else { 4798d96b3424SFilipe Manana if (path->need_commit_sem) { 4799d96b3424SFilipe Manana path->need_commit_sem = 0; 4800d96b3424SFilipe Manana need_commit_sem = true; 4801bdcdd86cSFilipe Manana if (path->nowait) { 4802bdcdd86cSFilipe Manana if (!down_read_trylock(&fs_info->commit_root_sem)) { 4803bdcdd86cSFilipe Manana ret = -EAGAIN; 4804bdcdd86cSFilipe Manana goto done; 4805bdcdd86cSFilipe Manana } 4806bdcdd86cSFilipe Manana } else { 4807d96b3424SFilipe Manana down_read(&fs_info->commit_root_sem); 4808d96b3424SFilipe Manana } 4809bdcdd86cSFilipe Manana } 4810925baeddSChris Mason ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); 4811d96b3424SFilipe Manana } 4812925baeddSChris Mason path->keep_locks = 0; 4813925baeddSChris Mason 4814925baeddSChris Mason if (ret < 0) 4815d96b3424SFilipe Manana goto done; 4816925baeddSChris Mason 4817a2135011SChris Mason nritems = btrfs_header_nritems(path->nodes[0]); 4818168fd7d2SChris Mason /* 4819168fd7d2SChris Mason * by releasing the path above we dropped all our locks. A balance 4820168fd7d2SChris Mason * could have added more items next to the key that used to be 4821168fd7d2SChris Mason * at the very end of the block. So, check again here and 4822168fd7d2SChris Mason * advance the path if there are now more items available. 4823168fd7d2SChris Mason */ 4824a2135011SChris Mason if (nritems > 0 && path->slots[0] < nritems - 1) { 4825e457afecSYan Zheng if (ret == 0) 4826168fd7d2SChris Mason path->slots[0]++; 48278e73f275SChris Mason ret = 0; 4828925baeddSChris Mason goto done; 4829925baeddSChris Mason } 48300b43e04fSLiu Bo /* 48310b43e04fSLiu Bo * So the above check misses one case: 48320b43e04fSLiu Bo * - after releasing the path above, someone has removed the item that 48330b43e04fSLiu Bo * used to be at the very end of the block, and balance between leafs 48340b43e04fSLiu Bo * gets another one with bigger key.offset to replace it. 48350b43e04fSLiu Bo * 48360b43e04fSLiu Bo * This one should be returned as well, or we can get leaf corruption 48370b43e04fSLiu Bo * later(esp. in __btrfs_drop_extents()). 48380b43e04fSLiu Bo * 48390b43e04fSLiu Bo * And a bit more explanation about this check, 48400b43e04fSLiu Bo * with ret > 0, the key isn't found, the path points to the slot 48410b43e04fSLiu Bo * where it should be inserted, so the path->slots[0] item must be the 48420b43e04fSLiu Bo * bigger one. 48430b43e04fSLiu Bo */ 48440b43e04fSLiu Bo if (nritems > 0 && ret > 0 && path->slots[0] == nritems - 1) { 48450b43e04fSLiu Bo ret = 0; 48460b43e04fSLiu Bo goto done; 48470b43e04fSLiu Bo } 4848d97e63b6SChris Mason 4849234b63a0SChris Mason while (level < BTRFS_MAX_LEVEL) { 48508e73f275SChris Mason if (!path->nodes[level]) { 48518e73f275SChris Mason ret = 1; 48528e73f275SChris Mason goto done; 48538e73f275SChris Mason } 48545f39d397SChris Mason 4855d97e63b6SChris Mason slot = path->slots[level] + 1; 4856d97e63b6SChris Mason c = path->nodes[level]; 48575f39d397SChris Mason if (slot >= btrfs_header_nritems(c)) { 4858d97e63b6SChris Mason level++; 48598e73f275SChris Mason if (level == BTRFS_MAX_LEVEL) { 48608e73f275SChris Mason ret = 1; 48618e73f275SChris Mason goto done; 48628e73f275SChris Mason } 4863d97e63b6SChris Mason continue; 4864d97e63b6SChris Mason } 48655f39d397SChris Mason 48660e46318dSJosef Bacik 48670e46318dSJosef Bacik /* 48680e46318dSJosef Bacik * Our current level is where we're going to start from, and to 48690e46318dSJosef Bacik * make sure lockdep doesn't complain we need to drop our locks 48700e46318dSJosef Bacik * and nodes from 0 to our current level. 48710e46318dSJosef Bacik */ 48720e46318dSJosef Bacik for (i = 0; i < level; i++) { 48730e46318dSJosef Bacik if (path->locks[level]) { 48740e46318dSJosef Bacik btrfs_tree_read_unlock(path->nodes[i]); 48750e46318dSJosef Bacik path->locks[i] = 0; 48760e46318dSJosef Bacik } 48770e46318dSJosef Bacik free_extent_buffer(path->nodes[i]); 48780e46318dSJosef Bacik path->nodes[i] = NULL; 4879925baeddSChris Mason } 48805f39d397SChris Mason 48818e73f275SChris Mason next = c; 4882d07b8528SLiu Bo ret = read_block_for_search(root, path, &next, level, 4883cda79c54SDavid Sterba slot, &key); 4884bdcdd86cSFilipe Manana if (ret == -EAGAIN && !path->nowait) 48858e73f275SChris Mason goto again; 48865f39d397SChris Mason 488776a05b35SChris Mason if (ret < 0) { 4888b3b4aa74SDavid Sterba btrfs_release_path(path); 488976a05b35SChris Mason goto done; 489076a05b35SChris Mason } 489176a05b35SChris Mason 48925cd57b2cSChris Mason if (!path->skip_locking) { 4893bd681513SChris Mason ret = btrfs_try_tree_read_lock(next); 4894bdcdd86cSFilipe Manana if (!ret && path->nowait) { 4895bdcdd86cSFilipe Manana ret = -EAGAIN; 4896bdcdd86cSFilipe Manana goto done; 4897bdcdd86cSFilipe Manana } 4898d42244a0SJan Schmidt if (!ret && time_seq) { 4899d42244a0SJan Schmidt /* 4900d42244a0SJan Schmidt * If we don't get the lock, we may be racing 4901d42244a0SJan Schmidt * with push_leaf_left, holding that lock while 4902d42244a0SJan Schmidt * itself waiting for the leaf we've currently 4903d42244a0SJan Schmidt * locked. To solve this situation, we give up 4904d42244a0SJan Schmidt * on our lock and cycle. 4905d42244a0SJan Schmidt */ 4906cf538830SJan Schmidt free_extent_buffer(next); 4907d42244a0SJan Schmidt btrfs_release_path(path); 4908d42244a0SJan Schmidt cond_resched(); 4909d42244a0SJan Schmidt goto again; 4910d42244a0SJan Schmidt } 49110e46318dSJosef Bacik if (!ret) 49120e46318dSJosef Bacik btrfs_tree_read_lock(next); 4913bd681513SChris Mason } 4914d97e63b6SChris Mason break; 4915d97e63b6SChris Mason } 4916d97e63b6SChris Mason path->slots[level] = slot; 4917d97e63b6SChris Mason while (1) { 4918d97e63b6SChris Mason level--; 4919d97e63b6SChris Mason path->nodes[level] = next; 4920d97e63b6SChris Mason path->slots[level] = 0; 4921a74a4b97SChris Mason if (!path->skip_locking) 4922ffeb03cfSJosef Bacik path->locks[level] = BTRFS_READ_LOCK; 4923d97e63b6SChris Mason if (!level) 4924d97e63b6SChris Mason break; 4925b4ce94deSChris Mason 4926d07b8528SLiu Bo ret = read_block_for_search(root, path, &next, level, 4927cda79c54SDavid Sterba 0, &key); 4928bdcdd86cSFilipe Manana if (ret == -EAGAIN && !path->nowait) 49298e73f275SChris Mason goto again; 49308e73f275SChris Mason 493176a05b35SChris Mason if (ret < 0) { 4932b3b4aa74SDavid Sterba btrfs_release_path(path); 493376a05b35SChris Mason goto done; 493476a05b35SChris Mason } 493576a05b35SChris Mason 4936bdcdd86cSFilipe Manana if (!path->skip_locking) { 4937bdcdd86cSFilipe Manana if (path->nowait) { 4938bdcdd86cSFilipe Manana if (!btrfs_try_tree_read_lock(next)) { 4939bdcdd86cSFilipe Manana ret = -EAGAIN; 4940bdcdd86cSFilipe Manana goto done; 4941bdcdd86cSFilipe Manana } 4942bdcdd86cSFilipe Manana } else { 49430e46318dSJosef Bacik btrfs_tree_read_lock(next); 4944d97e63b6SChris Mason } 4945bdcdd86cSFilipe Manana } 4946bdcdd86cSFilipe Manana } 49478e73f275SChris Mason ret = 0; 4948925baeddSChris Mason done: 4949f7c79f30SChris Mason unlock_up(path, 0, 1, 0, NULL); 4950d96b3424SFilipe Manana if (need_commit_sem) { 4951d96b3424SFilipe Manana int ret2; 4952d96b3424SFilipe Manana 4953d96b3424SFilipe Manana path->need_commit_sem = 1; 4954d96b3424SFilipe Manana ret2 = finish_need_commit_sem_search(path); 4955d96b3424SFilipe Manana up_read(&fs_info->commit_root_sem); 4956d96b3424SFilipe Manana if (ret2) 4957d96b3424SFilipe Manana ret = ret2; 4958d96b3424SFilipe Manana } 49598e73f275SChris Mason 49608e73f275SChris Mason return ret; 4961d97e63b6SChris Mason } 49620b86a832SChris Mason 4963890d2b1aSJosef Bacik int btrfs_next_old_item(struct btrfs_root *root, struct btrfs_path *path, u64 time_seq) 4964890d2b1aSJosef Bacik { 4965890d2b1aSJosef Bacik path->slots[0]++; 4966890d2b1aSJosef Bacik if (path->slots[0] >= btrfs_header_nritems(path->nodes[0])) 4967890d2b1aSJosef Bacik return btrfs_next_old_leaf(root, path, time_seq); 4968890d2b1aSJosef Bacik return 0; 4969890d2b1aSJosef Bacik } 4970890d2b1aSJosef Bacik 49713f157a2fSChris Mason /* 49723f157a2fSChris Mason * this uses btrfs_prev_leaf to walk backwards in the tree, and keeps 49733f157a2fSChris Mason * searching until it gets past min_objectid or finds an item of 'type' 49743f157a2fSChris Mason * 49753f157a2fSChris Mason * returns 0 if something is found, 1 if nothing was found and < 0 on error 49763f157a2fSChris Mason */ 49770b86a832SChris Mason int btrfs_previous_item(struct btrfs_root *root, 49780b86a832SChris Mason struct btrfs_path *path, u64 min_objectid, 49790b86a832SChris Mason int type) 49800b86a832SChris Mason { 49810b86a832SChris Mason struct btrfs_key found_key; 49820b86a832SChris Mason struct extent_buffer *leaf; 4983e02119d5SChris Mason u32 nritems; 49840b86a832SChris Mason int ret; 49850b86a832SChris Mason 49860b86a832SChris Mason while (1) { 49870b86a832SChris Mason if (path->slots[0] == 0) { 49880b86a832SChris Mason ret = btrfs_prev_leaf(root, path); 49890b86a832SChris Mason if (ret != 0) 49900b86a832SChris Mason return ret; 49910b86a832SChris Mason } else { 49920b86a832SChris Mason path->slots[0]--; 49930b86a832SChris Mason } 49940b86a832SChris Mason leaf = path->nodes[0]; 4995e02119d5SChris Mason nritems = btrfs_header_nritems(leaf); 4996e02119d5SChris Mason if (nritems == 0) 4997e02119d5SChris Mason return 1; 4998e02119d5SChris Mason if (path->slots[0] == nritems) 4999e02119d5SChris Mason path->slots[0]--; 5000e02119d5SChris Mason 50010b86a832SChris Mason btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]); 5002e02119d5SChris Mason if (found_key.objectid < min_objectid) 5003e02119d5SChris Mason break; 50040a4eefbbSYan Zheng if (found_key.type == type) 50050a4eefbbSYan Zheng return 0; 5006e02119d5SChris Mason if (found_key.objectid == min_objectid && 5007e02119d5SChris Mason found_key.type < type) 5008e02119d5SChris Mason break; 50090b86a832SChris Mason } 50100b86a832SChris Mason return 1; 50110b86a832SChris Mason } 5012ade2e0b3SWang Shilong 5013ade2e0b3SWang Shilong /* 5014ade2e0b3SWang Shilong * search in extent tree to find a previous Metadata/Data extent item with 5015ade2e0b3SWang Shilong * min objecitd. 5016ade2e0b3SWang Shilong * 5017ade2e0b3SWang Shilong * returns 0 if something is found, 1 if nothing was found and < 0 on error 5018ade2e0b3SWang Shilong */ 5019ade2e0b3SWang Shilong int btrfs_previous_extent_item(struct btrfs_root *root, 5020ade2e0b3SWang Shilong struct btrfs_path *path, u64 min_objectid) 5021ade2e0b3SWang Shilong { 5022ade2e0b3SWang Shilong struct btrfs_key found_key; 5023ade2e0b3SWang Shilong struct extent_buffer *leaf; 5024ade2e0b3SWang Shilong u32 nritems; 5025ade2e0b3SWang Shilong int ret; 5026ade2e0b3SWang Shilong 5027ade2e0b3SWang Shilong while (1) { 5028ade2e0b3SWang Shilong if (path->slots[0] == 0) { 5029ade2e0b3SWang Shilong ret = btrfs_prev_leaf(root, path); 5030ade2e0b3SWang Shilong if (ret != 0) 5031ade2e0b3SWang Shilong return ret; 5032ade2e0b3SWang Shilong } else { 5033ade2e0b3SWang Shilong path->slots[0]--; 5034ade2e0b3SWang Shilong } 5035ade2e0b3SWang Shilong leaf = path->nodes[0]; 5036ade2e0b3SWang Shilong nritems = btrfs_header_nritems(leaf); 5037ade2e0b3SWang Shilong if (nritems == 0) 5038ade2e0b3SWang Shilong return 1; 5039ade2e0b3SWang Shilong if (path->slots[0] == nritems) 5040ade2e0b3SWang Shilong path->slots[0]--; 5041ade2e0b3SWang Shilong 5042ade2e0b3SWang Shilong btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]); 5043ade2e0b3SWang Shilong if (found_key.objectid < min_objectid) 5044ade2e0b3SWang Shilong break; 5045ade2e0b3SWang Shilong if (found_key.type == BTRFS_EXTENT_ITEM_KEY || 5046ade2e0b3SWang Shilong found_key.type == BTRFS_METADATA_ITEM_KEY) 5047ade2e0b3SWang Shilong return 0; 5048ade2e0b3SWang Shilong if (found_key.objectid == min_objectid && 5049ade2e0b3SWang Shilong found_key.type < BTRFS_EXTENT_ITEM_KEY) 5050ade2e0b3SWang Shilong break; 5051ade2e0b3SWang Shilong } 5052ade2e0b3SWang Shilong return 1; 5053ade2e0b3SWang Shilong } 5054226463d7SJosef Bacik 5055226463d7SJosef Bacik int __init btrfs_ctree_init(void) 5056226463d7SJosef Bacik { 5057226463d7SJosef Bacik btrfs_path_cachep = kmem_cache_create("btrfs_path", 5058226463d7SJosef Bacik sizeof(struct btrfs_path), 0, 5059226463d7SJosef Bacik SLAB_MEM_SPREAD, NULL); 5060226463d7SJosef Bacik if (!btrfs_path_cachep) 5061226463d7SJosef Bacik return -ENOMEM; 5062226463d7SJosef Bacik return 0; 5063226463d7SJosef Bacik } 5064226463d7SJosef Bacik 5065226463d7SJosef Bacik void __cold btrfs_ctree_exit(void) 5066226463d7SJosef Bacik { 5067226463d7SJosef Bacik kmem_cache_destroy(btrfs_path_cachep); 5068226463d7SJosef Bacik } 5069