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 362d5e09e38SFilipe Manana btrfs_mark_buffer_dirty(trans, 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 */ 370eb96e221SFilipe Manana int btrfs_block_can_be_shared(struct btrfs_trans_handle *trans, 371eb96e221SFilipe Manana struct btrfs_root *root, 3725d4f98a2SYan Zheng struct extent_buffer *buf) 3735d4f98a2SYan Zheng { 3745d4f98a2SYan Zheng /* 37592a7cc42SQu Wenruo * Tree blocks not in shareable trees and tree roots are never shared. 37692a7cc42SQu Wenruo * If a block was allocated after the last snapshot and the block was 37792a7cc42SQu Wenruo * not allocated by tree relocation, we know the block is not shared. 3785d4f98a2SYan Zheng */ 37992a7cc42SQu Wenruo if (test_bit(BTRFS_ROOT_SHAREABLE, &root->state) && 380eb96e221SFilipe Manana buf != root->node && 3815d4f98a2SYan Zheng (btrfs_header_generation(buf) <= 3825d4f98a2SYan Zheng btrfs_root_last_snapshot(&root->root_item) || 383eb96e221SFilipe Manana btrfs_header_flag(buf, BTRFS_HEADER_FLAG_RELOC))) { 384eb96e221SFilipe Manana if (buf != root->commit_root) 3855d4f98a2SYan Zheng return 1; 386eb96e221SFilipe Manana /* 387eb96e221SFilipe Manana * An extent buffer that used to be the commit root may still be 388eb96e221SFilipe Manana * shared because the tree height may have increased and it 389eb96e221SFilipe Manana * became a child of a higher level root. This can happen when 390eb96e221SFilipe Manana * snapshotting a subvolume created in the current transaction. 391eb96e221SFilipe Manana */ 392eb96e221SFilipe Manana if (btrfs_header_generation(buf) == trans->transid) 393eb96e221SFilipe Manana return 1; 394eb96e221SFilipe Manana } 395a79865c6SNikolay Borisov 3965d4f98a2SYan Zheng return 0; 3975d4f98a2SYan Zheng } 3985d4f98a2SYan Zheng 3995d4f98a2SYan Zheng static noinline int update_ref_for_cow(struct btrfs_trans_handle *trans, 4005d4f98a2SYan Zheng struct btrfs_root *root, 4015d4f98a2SYan Zheng struct extent_buffer *buf, 402f0486c68SYan, Zheng struct extent_buffer *cow, 403f0486c68SYan, Zheng int *last_ref) 4045d4f98a2SYan Zheng { 4050b246afaSJeff Mahoney struct btrfs_fs_info *fs_info = root->fs_info; 4065d4f98a2SYan Zheng u64 refs; 4075d4f98a2SYan Zheng u64 owner; 4085d4f98a2SYan Zheng u64 flags; 4095d4f98a2SYan Zheng u64 new_flags = 0; 4105d4f98a2SYan Zheng int ret; 4115d4f98a2SYan Zheng 4125d4f98a2SYan Zheng /* 4135d4f98a2SYan Zheng * Backrefs update rules: 4145d4f98a2SYan Zheng * 4155d4f98a2SYan Zheng * Always use full backrefs for extent pointers in tree block 4165d4f98a2SYan Zheng * allocated by tree relocation. 4175d4f98a2SYan Zheng * 4185d4f98a2SYan Zheng * If a shared tree block is no longer referenced by its owner 4195d4f98a2SYan Zheng * tree (btrfs_header_owner(buf) == root->root_key.objectid), 4205d4f98a2SYan Zheng * use full backrefs for extent pointers in tree block. 4215d4f98a2SYan Zheng * 4225d4f98a2SYan Zheng * If a tree block is been relocating 4235d4f98a2SYan Zheng * (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID), 4245d4f98a2SYan Zheng * use full backrefs for extent pointers in tree block. 4255d4f98a2SYan Zheng * The reason for this is some operations (such as drop tree) 4265d4f98a2SYan Zheng * are only allowed for blocks use full backrefs. 4275d4f98a2SYan Zheng */ 4285d4f98a2SYan Zheng 429eb96e221SFilipe Manana if (btrfs_block_can_be_shared(trans, root, buf)) { 4302ff7e61eSJeff Mahoney ret = btrfs_lookup_extent_info(trans, fs_info, buf->start, 4313173a18fSJosef Bacik btrfs_header_level(buf), 1, 4323173a18fSJosef Bacik &refs, &flags); 433be1a5564SMark Fasheh if (ret) 434be1a5564SMark Fasheh return ret; 435eced687eSFilipe Manana if (unlikely(refs == 0)) { 436eced687eSFilipe Manana btrfs_crit(fs_info, 437eced687eSFilipe Manana "found 0 references for tree block at bytenr %llu level %d root %llu", 438eced687eSFilipe Manana buf->start, btrfs_header_level(buf), 439eced687eSFilipe Manana btrfs_root_id(root)); 440eced687eSFilipe Manana ret = -EUCLEAN; 441eced687eSFilipe Manana btrfs_abort_transaction(trans, ret); 442e5df9573SMark Fasheh return ret; 443e5df9573SMark Fasheh } 4445d4f98a2SYan Zheng } else { 4455d4f98a2SYan Zheng refs = 1; 4465d4f98a2SYan Zheng if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID || 4475d4f98a2SYan Zheng btrfs_header_backref_rev(buf) < BTRFS_MIXED_BACKREF_REV) 4485d4f98a2SYan Zheng flags = BTRFS_BLOCK_FLAG_FULL_BACKREF; 4495d4f98a2SYan Zheng else 4505d4f98a2SYan Zheng flags = 0; 4515d4f98a2SYan Zheng } 4525d4f98a2SYan Zheng 4535d4f98a2SYan Zheng owner = btrfs_header_owner(buf); 45441a0f85eSFilipe Manana if (unlikely(owner == BTRFS_TREE_RELOC_OBJECTID && 45541a0f85eSFilipe Manana !(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF))) { 45641a0f85eSFilipe Manana btrfs_crit(fs_info, 45741a0f85eSFilipe Manana "found tree block at bytenr %llu level %d root %llu refs %llu flags %llx without full backref flag set", 45841a0f85eSFilipe Manana buf->start, btrfs_header_level(buf), 45941a0f85eSFilipe Manana btrfs_root_id(root), refs, flags); 46041a0f85eSFilipe Manana ret = -EUCLEAN; 46141a0f85eSFilipe Manana btrfs_abort_transaction(trans, ret); 46241a0f85eSFilipe Manana return ret; 46341a0f85eSFilipe Manana } 4645d4f98a2SYan Zheng 4655d4f98a2SYan Zheng if (refs > 1) { 4665d4f98a2SYan Zheng if ((owner == root->root_key.objectid || 4675d4f98a2SYan Zheng root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID) && 4685d4f98a2SYan Zheng !(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF)) { 469e339a6b0SJosef Bacik ret = btrfs_inc_ref(trans, root, buf, 1); 470692826b2SJeff Mahoney if (ret) 471692826b2SJeff Mahoney return ret; 4725d4f98a2SYan Zheng 4735d4f98a2SYan Zheng if (root->root_key.objectid == 4745d4f98a2SYan Zheng BTRFS_TREE_RELOC_OBJECTID) { 475e339a6b0SJosef Bacik ret = btrfs_dec_ref(trans, root, buf, 0); 476692826b2SJeff Mahoney if (ret) 477692826b2SJeff Mahoney return ret; 478e339a6b0SJosef Bacik ret = btrfs_inc_ref(trans, root, cow, 1); 479692826b2SJeff Mahoney if (ret) 480692826b2SJeff Mahoney return ret; 4815d4f98a2SYan Zheng } 4825d4f98a2SYan Zheng new_flags |= BTRFS_BLOCK_FLAG_FULL_BACKREF; 4835d4f98a2SYan Zheng } else { 4845d4f98a2SYan Zheng 4855d4f98a2SYan Zheng if (root->root_key.objectid == 4865d4f98a2SYan Zheng BTRFS_TREE_RELOC_OBJECTID) 487e339a6b0SJosef Bacik ret = btrfs_inc_ref(trans, root, cow, 1); 4885d4f98a2SYan Zheng else 489e339a6b0SJosef Bacik ret = btrfs_inc_ref(trans, root, cow, 0); 490692826b2SJeff Mahoney if (ret) 491692826b2SJeff Mahoney return ret; 4925d4f98a2SYan Zheng } 4935d4f98a2SYan Zheng if (new_flags != 0) { 4944aec05faSJosef Bacik ret = btrfs_set_disk_extent_flags(trans, buf, new_flags); 495be1a5564SMark Fasheh if (ret) 496be1a5564SMark Fasheh return ret; 4975d4f98a2SYan Zheng } 4985d4f98a2SYan Zheng } else { 4995d4f98a2SYan Zheng if (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF) { 5005d4f98a2SYan Zheng if (root->root_key.objectid == 5015d4f98a2SYan Zheng BTRFS_TREE_RELOC_OBJECTID) 502e339a6b0SJosef Bacik ret = btrfs_inc_ref(trans, root, cow, 1); 5035d4f98a2SYan Zheng else 504e339a6b0SJosef Bacik ret = btrfs_inc_ref(trans, root, cow, 0); 505692826b2SJeff Mahoney if (ret) 506692826b2SJeff Mahoney return ret; 507e339a6b0SJosef Bacik ret = btrfs_dec_ref(trans, root, buf, 1); 508692826b2SJeff Mahoney if (ret) 509692826b2SJeff Mahoney return ret; 5105d4f98a2SYan Zheng } 511190a8339SJosef Bacik btrfs_clear_buffer_dirty(trans, buf); 512f0486c68SYan, Zheng *last_ref = 1; 5135d4f98a2SYan Zheng } 5145d4f98a2SYan Zheng return 0; 5155d4f98a2SYan Zheng } 5165d4f98a2SYan Zheng 5175d4f98a2SYan Zheng /* 518d397712bSChris Mason * does the dirty work in cow of a single block. The parent block (if 519d397712bSChris Mason * supplied) is updated to point to the new cow copy. The new buffer is marked 520d397712bSChris Mason * dirty and returned locked. If you modify the block it needs to be marked 521d397712bSChris Mason * dirty again. 522d352ac68SChris Mason * 523d352ac68SChris Mason * search_start -- an allocation hint for the new block 524d352ac68SChris Mason * 525d397712bSChris Mason * empty_size -- a hint that you plan on doing more cow. This is the size in 526d397712bSChris Mason * bytes the allocator should try to find free next to the block it returns. 527d397712bSChris Mason * This is just a hint and may be ignored by the allocator. 528d352ac68SChris Mason */ 529d397712bSChris Mason static noinline int __btrfs_cow_block(struct btrfs_trans_handle *trans, 5305f39d397SChris Mason struct btrfs_root *root, 5315f39d397SChris Mason struct extent_buffer *buf, 5325f39d397SChris Mason struct extent_buffer *parent, int parent_slot, 5335f39d397SChris Mason struct extent_buffer **cow_ret, 5349631e4ccSJosef Bacik u64 search_start, u64 empty_size, 5359631e4ccSJosef Bacik enum btrfs_lock_nesting nest) 5366702ed49SChris Mason { 5370b246afaSJeff Mahoney struct btrfs_fs_info *fs_info = root->fs_info; 5385d4f98a2SYan Zheng struct btrfs_disk_key disk_key; 5395f39d397SChris Mason struct extent_buffer *cow; 540be1a5564SMark Fasheh int level, ret; 541f0486c68SYan, Zheng int last_ref = 0; 542925baeddSChris Mason int unlock_orig = 0; 5430f5053ebSGoldwyn Rodrigues u64 parent_start = 0; 5446702ed49SChris Mason 545925baeddSChris Mason if (*cow_ret == buf) 546925baeddSChris Mason unlock_orig = 1; 547925baeddSChris Mason 54849d0c642SFilipe Manana btrfs_assert_tree_write_locked(buf); 549925baeddSChris Mason 55092a7cc42SQu Wenruo WARN_ON(test_bit(BTRFS_ROOT_SHAREABLE, &root->state) && 5510b246afaSJeff Mahoney trans->transid != fs_info->running_transaction->transid); 55292a7cc42SQu Wenruo WARN_ON(test_bit(BTRFS_ROOT_SHAREABLE, &root->state) && 55327cdeb70SMiao Xie trans->transid != root->last_trans); 5545f39d397SChris Mason 5557bb86316SChris Mason level = btrfs_header_level(buf); 55631840ae1SZheng Yan 5575d4f98a2SYan Zheng if (level == 0) 5585d4f98a2SYan Zheng btrfs_item_key(buf, &disk_key, 0); 5595d4f98a2SYan Zheng else 5605d4f98a2SYan Zheng btrfs_node_key(buf, &disk_key, 0); 5615d4f98a2SYan Zheng 5620f5053ebSGoldwyn Rodrigues if ((root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID) && parent) 5635d4f98a2SYan Zheng parent_start = parent->start; 5645d4f98a2SYan Zheng 56579bd3712SFilipe Manana cow = btrfs_alloc_tree_block(trans, root, parent_start, 56679bd3712SFilipe Manana root->root_key.objectid, &disk_key, level, 56779bd3712SFilipe Manana search_start, empty_size, nest); 5686702ed49SChris Mason if (IS_ERR(cow)) 5696702ed49SChris Mason return PTR_ERR(cow); 5706702ed49SChris Mason 571b4ce94deSChris Mason /* cow is set to blocking by btrfs_init_new_buffer */ 572b4ce94deSChris Mason 57358e8012cSDavid Sterba copy_extent_buffer_full(cow, buf); 574db94535dSChris Mason btrfs_set_header_bytenr(cow, cow->start); 5755f39d397SChris Mason btrfs_set_header_generation(cow, trans->transid); 5765d4f98a2SYan Zheng btrfs_set_header_backref_rev(cow, BTRFS_MIXED_BACKREF_REV); 5775d4f98a2SYan Zheng btrfs_clear_header_flag(cow, BTRFS_HEADER_FLAG_WRITTEN | 5785d4f98a2SYan Zheng BTRFS_HEADER_FLAG_RELOC); 5795d4f98a2SYan Zheng if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID) 5805d4f98a2SYan Zheng btrfs_set_header_flag(cow, BTRFS_HEADER_FLAG_RELOC); 5815d4f98a2SYan Zheng else 5825f39d397SChris Mason btrfs_set_header_owner(cow, root->root_key.objectid); 5836702ed49SChris Mason 584de37aa51SNikolay Borisov write_extent_buffer_fsid(cow, fs_info->fs_devices->metadata_uuid); 5852b82032cSYan Zheng 586be1a5564SMark Fasheh ret = update_ref_for_cow(trans, root, buf, cow, &last_ref); 587b68dc2a9SMark Fasheh if (ret) { 588572c83acSJosef Bacik btrfs_tree_unlock(cow); 589572c83acSJosef Bacik free_extent_buffer(cow); 59066642832SJeff Mahoney btrfs_abort_transaction(trans, ret); 591b68dc2a9SMark Fasheh return ret; 592b68dc2a9SMark Fasheh } 5931a40e23bSZheng Yan 59492a7cc42SQu Wenruo if (test_bit(BTRFS_ROOT_SHAREABLE, &root->state)) { 59583d4cfd4SJosef Bacik ret = btrfs_reloc_cow_block(trans, root, buf, cow); 59693314e3bSZhaolei if (ret) { 597572c83acSJosef Bacik btrfs_tree_unlock(cow); 598572c83acSJosef Bacik free_extent_buffer(cow); 59966642832SJeff Mahoney btrfs_abort_transaction(trans, ret); 60083d4cfd4SJosef Bacik return ret; 60183d4cfd4SJosef Bacik } 60293314e3bSZhaolei } 6033fd0a558SYan, Zheng 6046702ed49SChris Mason if (buf == root->node) { 605925baeddSChris Mason WARN_ON(parent && parent != buf); 6065d4f98a2SYan Zheng if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID || 6075d4f98a2SYan Zheng btrfs_header_backref_rev(buf) < BTRFS_MIXED_BACKREF_REV) 6085d4f98a2SYan Zheng parent_start = buf->start; 609925baeddSChris Mason 610406808abSFilipe Manana ret = btrfs_tree_mod_log_insert_root(root->node, cow, true); 61140b0a749SFilipe Manana if (ret < 0) { 61240b0a749SFilipe Manana btrfs_tree_unlock(cow); 61340b0a749SFilipe Manana free_extent_buffer(cow); 61440b0a749SFilipe Manana btrfs_abort_transaction(trans, ret); 61540b0a749SFilipe Manana return ret; 61640b0a749SFilipe Manana } 61740b0a749SFilipe Manana atomic_inc(&cow->refs); 618240f62c8SChris Mason rcu_assign_pointer(root->node, cow); 619925baeddSChris Mason 62022d907bcSFilipe Manana ret = btrfs_free_tree_block(trans, btrfs_root_id(root), buf, 6217a163608SFilipe Manana parent_start, last_ref); 6225f39d397SChris Mason free_extent_buffer(buf); 6230b86a832SChris Mason add_root_to_dirty_list(root); 62422d907bcSFilipe Manana if (ret < 0) { 62522d907bcSFilipe Manana btrfs_tree_unlock(cow); 62622d907bcSFilipe Manana free_extent_buffer(cow); 62722d907bcSFilipe Manana btrfs_abort_transaction(trans, ret); 62822d907bcSFilipe Manana return ret; 62922d907bcSFilipe Manana } 6306702ed49SChris Mason } else { 6315d4f98a2SYan Zheng WARN_ON(trans->transid != btrfs_header_generation(parent)); 632d09c5152SFilipe Manana ret = btrfs_tree_mod_log_insert_key(parent, parent_slot, 63333cff222SFilipe Manana BTRFS_MOD_LOG_KEY_REPLACE); 634d09c5152SFilipe Manana if (ret) { 635d09c5152SFilipe Manana btrfs_tree_unlock(cow); 636d09c5152SFilipe Manana free_extent_buffer(cow); 637d09c5152SFilipe Manana btrfs_abort_transaction(trans, ret); 638d09c5152SFilipe Manana return ret; 639d09c5152SFilipe Manana } 6405f39d397SChris Mason btrfs_set_node_blockptr(parent, parent_slot, 641db94535dSChris Mason cow->start); 64274493f7aSChris Mason btrfs_set_node_ptr_generation(parent, parent_slot, 64374493f7aSChris Mason trans->transid); 644d5e09e38SFilipe Manana btrfs_mark_buffer_dirty(trans, parent); 6455de865eeSFilipe David Borba Manana if (last_ref) { 646f3a84ccdSFilipe Manana ret = btrfs_tree_mod_log_free_eb(buf); 6475de865eeSFilipe David Borba Manana if (ret) { 648572c83acSJosef Bacik btrfs_tree_unlock(cow); 649572c83acSJosef Bacik free_extent_buffer(cow); 65066642832SJeff Mahoney btrfs_abort_transaction(trans, ret); 6515de865eeSFilipe David Borba Manana return ret; 6525de865eeSFilipe David Borba Manana } 6535de865eeSFilipe David Borba Manana } 65422d907bcSFilipe Manana ret = btrfs_free_tree_block(trans, btrfs_root_id(root), buf, 6557a163608SFilipe Manana parent_start, last_ref); 65622d907bcSFilipe Manana if (ret < 0) { 65722d907bcSFilipe Manana btrfs_tree_unlock(cow); 65822d907bcSFilipe Manana free_extent_buffer(cow); 65922d907bcSFilipe Manana btrfs_abort_transaction(trans, ret); 66022d907bcSFilipe Manana return ret; 66122d907bcSFilipe Manana } 6626702ed49SChris Mason } 663925baeddSChris Mason if (unlock_orig) 664925baeddSChris Mason btrfs_tree_unlock(buf); 6653083ee2eSJosef Bacik free_extent_buffer_stale(buf); 666d5e09e38SFilipe Manana btrfs_mark_buffer_dirty(trans, cow); 6676702ed49SChris Mason *cow_ret = cow; 6686702ed49SChris Mason return 0; 6696702ed49SChris Mason } 6706702ed49SChris Mason 6715d4f98a2SYan Zheng static inline int should_cow_block(struct btrfs_trans_handle *trans, 6725d4f98a2SYan Zheng struct btrfs_root *root, 6735d4f98a2SYan Zheng struct extent_buffer *buf) 6745d4f98a2SYan Zheng { 675f5ee5c9aSJeff Mahoney if (btrfs_is_testing(root->fs_info)) 676faa2dbf0SJosef Bacik return 0; 677fccb84c9SDavid Sterba 678d1980131SDavid Sterba /* Ensure we can see the FORCE_COW bit */ 679d1980131SDavid Sterba smp_mb__before_atomic(); 680f1ebcc74SLiu Bo 681f1ebcc74SLiu Bo /* 682f1ebcc74SLiu Bo * We do not need to cow a block if 683f1ebcc74SLiu Bo * 1) this block is not created or changed in this transaction; 684f1ebcc74SLiu Bo * 2) this block does not belong to TREE_RELOC tree; 685f1ebcc74SLiu Bo * 3) the root is not forced COW. 686f1ebcc74SLiu Bo * 687f1ebcc74SLiu Bo * What is forced COW: 68801327610SNicholas D Steeves * when we create snapshot during committing the transaction, 68952042d8eSAndrea Gelmini * after we've finished copying src root, we must COW the shared 690f1ebcc74SLiu Bo * block to ensure the metadata consistency. 691f1ebcc74SLiu Bo */ 6925d4f98a2SYan Zheng if (btrfs_header_generation(buf) == trans->transid && 6935d4f98a2SYan Zheng !btrfs_header_flag(buf, BTRFS_HEADER_FLAG_WRITTEN) && 6945d4f98a2SYan Zheng !(root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID && 695f1ebcc74SLiu Bo btrfs_header_flag(buf, BTRFS_HEADER_FLAG_RELOC)) && 69627cdeb70SMiao Xie !test_bit(BTRFS_ROOT_FORCE_COW, &root->state)) 6975d4f98a2SYan Zheng return 0; 6985d4f98a2SYan Zheng return 1; 6995d4f98a2SYan Zheng } 7005d4f98a2SYan Zheng 701d352ac68SChris Mason /* 702d352ac68SChris Mason * cows a single block, see __btrfs_cow_block for the real work. 70301327610SNicholas D Steeves * This version of it has extra checks so that a block isn't COWed more than 704d352ac68SChris Mason * once per transaction, as long as it hasn't been written yet 705d352ac68SChris Mason */ 706d397712bSChris Mason noinline int btrfs_cow_block(struct btrfs_trans_handle *trans, 7075f39d397SChris Mason struct btrfs_root *root, struct extent_buffer *buf, 7085f39d397SChris Mason struct extent_buffer *parent, int parent_slot, 7099631e4ccSJosef Bacik struct extent_buffer **cow_ret, 7109631e4ccSJosef Bacik enum btrfs_lock_nesting nest) 71102217ed2SChris Mason { 7120b246afaSJeff Mahoney struct btrfs_fs_info *fs_info = root->fs_info; 7136702ed49SChris Mason u64 search_start; 714f510cfecSChris Mason int ret; 715dc17ff8fSChris Mason 716a2caab29SFilipe Manana if (unlikely(test_bit(BTRFS_ROOT_DELETING, &root->state))) { 717a2caab29SFilipe Manana btrfs_abort_transaction(trans, -EUCLEAN); 718a2caab29SFilipe Manana btrfs_crit(fs_info, 719a2caab29SFilipe Manana "attempt to COW block %llu on root %llu that is being deleted", 720a2caab29SFilipe Manana buf->start, btrfs_root_id(root)); 721a2caab29SFilipe Manana return -EUCLEAN; 722a2caab29SFilipe Manana } 72383354f07SJosef Bacik 72448774f3bSFilipe Manana /* 72548774f3bSFilipe Manana * COWing must happen through a running transaction, which always 72648774f3bSFilipe Manana * matches the current fs generation (it's a transaction with a state 72748774f3bSFilipe Manana * less than TRANS_STATE_UNBLOCKED). If it doesn't, then turn the fs 72848774f3bSFilipe Manana * into error state to prevent the commit of any transaction. 72948774f3bSFilipe Manana */ 73048774f3bSFilipe Manana if (unlikely(trans->transaction != fs_info->running_transaction || 73148774f3bSFilipe Manana trans->transid != fs_info->generation)) { 73248774f3bSFilipe Manana btrfs_abort_transaction(trans, -EUCLEAN); 73348774f3bSFilipe Manana btrfs_crit(fs_info, 73448774f3bSFilipe Manana "unexpected transaction when attempting to COW block %llu on root %llu, transaction %llu running transaction %llu fs generation %llu", 73548774f3bSFilipe Manana buf->start, btrfs_root_id(root), trans->transid, 73648774f3bSFilipe Manana fs_info->running_transaction->transid, 73748774f3bSFilipe Manana fs_info->generation); 73848774f3bSFilipe Manana return -EUCLEAN; 73948774f3bSFilipe Manana } 740dc17ff8fSChris Mason 7415d4f98a2SYan Zheng if (!should_cow_block(trans, root, buf)) { 74202217ed2SChris Mason *cow_ret = buf; 74302217ed2SChris Mason return 0; 74402217ed2SChris Mason } 745c487685dSChris Mason 746ee22184bSByongho Lee search_start = buf->start & ~((u64)SZ_1G - 1); 747b4ce94deSChris Mason 748f616f5cdSQu Wenruo /* 749f616f5cdSQu Wenruo * Before CoWing this block for later modification, check if it's 750f616f5cdSQu Wenruo * the subtree root and do the delayed subtree trace if needed. 751f616f5cdSQu Wenruo * 752f616f5cdSQu Wenruo * Also We don't care about the error, as it's handled internally. 753f616f5cdSQu Wenruo */ 754f616f5cdSQu Wenruo btrfs_qgroup_trace_subtree_after_cow(trans, root, buf); 755f510cfecSChris Mason ret = __btrfs_cow_block(trans, root, buf, parent, 7569631e4ccSJosef Bacik parent_slot, cow_ret, search_start, 0, nest); 7571abe9b8aSliubo 7581abe9b8aSliubo trace_btrfs_cow_block(root, buf, *cow_ret); 7591abe9b8aSliubo 760f510cfecSChris Mason return ret; 7612c90e5d6SChris Mason } 762f75e2b79SJosef Bacik ALLOW_ERROR_INJECTION(btrfs_cow_block, ERRNO); 7636702ed49SChris Mason 764d352ac68SChris Mason /* 765d352ac68SChris Mason * helper function for defrag to decide if two blocks pointed to by a 766d352ac68SChris Mason * node are actually close by 767d352ac68SChris Mason */ 7686b80053dSChris Mason static int close_blocks(u64 blocknr, u64 other, u32 blocksize) 7696702ed49SChris Mason { 7706b80053dSChris Mason if (blocknr < other && other - (blocknr + blocksize) < 32768) 7716702ed49SChris Mason return 1; 7726b80053dSChris Mason if (blocknr > other && blocknr - (other + blocksize) < 32768) 7736702ed49SChris Mason return 1; 77402217ed2SChris Mason return 0; 77502217ed2SChris Mason } 77602217ed2SChris Mason 777ce6ef5abSDavid Sterba #ifdef __LITTLE_ENDIAN 778ce6ef5abSDavid Sterba 779ce6ef5abSDavid Sterba /* 780ce6ef5abSDavid Sterba * Compare two keys, on little-endian the disk order is same as CPU order and 781ce6ef5abSDavid Sterba * we can avoid the conversion. 782ce6ef5abSDavid Sterba */ 783ce6ef5abSDavid Sterba static int comp_keys(const struct btrfs_disk_key *disk_key, 784ce6ef5abSDavid Sterba const struct btrfs_key *k2) 785ce6ef5abSDavid Sterba { 786ce6ef5abSDavid Sterba const struct btrfs_key *k1 = (const struct btrfs_key *)disk_key; 787ce6ef5abSDavid Sterba 788ce6ef5abSDavid Sterba return btrfs_comp_cpu_keys(k1, k2); 789ce6ef5abSDavid Sterba } 790ce6ef5abSDavid Sterba 791ce6ef5abSDavid Sterba #else 792ce6ef5abSDavid Sterba 793081e9573SChris Mason /* 794081e9573SChris Mason * compare two keys in a memcmp fashion 795081e9573SChris Mason */ 796310712b2SOmar Sandoval static int comp_keys(const struct btrfs_disk_key *disk, 797310712b2SOmar Sandoval const struct btrfs_key *k2) 798081e9573SChris Mason { 799081e9573SChris Mason struct btrfs_key k1; 800081e9573SChris Mason 801081e9573SChris Mason btrfs_disk_key_to_cpu(&k1, disk); 802081e9573SChris Mason 80320736abaSDiego Calleja return btrfs_comp_cpu_keys(&k1, k2); 804081e9573SChris Mason } 805ce6ef5abSDavid Sterba #endif 806081e9573SChris Mason 807f3465ca4SJosef Bacik /* 808f3465ca4SJosef Bacik * same as comp_keys only with two btrfs_key's 809f3465ca4SJosef Bacik */ 810e1f60a65SDavid Sterba int __pure btrfs_comp_cpu_keys(const struct btrfs_key *k1, const struct btrfs_key *k2) 811f3465ca4SJosef Bacik { 812f3465ca4SJosef Bacik if (k1->objectid > k2->objectid) 813f3465ca4SJosef Bacik return 1; 814f3465ca4SJosef Bacik if (k1->objectid < k2->objectid) 815f3465ca4SJosef Bacik return -1; 816f3465ca4SJosef Bacik if (k1->type > k2->type) 817f3465ca4SJosef Bacik return 1; 818f3465ca4SJosef Bacik if (k1->type < k2->type) 819f3465ca4SJosef Bacik return -1; 820f3465ca4SJosef Bacik if (k1->offset > k2->offset) 821f3465ca4SJosef Bacik return 1; 822f3465ca4SJosef Bacik if (k1->offset < k2->offset) 823f3465ca4SJosef Bacik return -1; 824f3465ca4SJosef Bacik return 0; 825f3465ca4SJosef Bacik } 826081e9573SChris Mason 827d352ac68SChris Mason /* 828d352ac68SChris Mason * this is used by the defrag code to go through all the 829d352ac68SChris Mason * leaves pointed to by a node and reallocate them so that 830d352ac68SChris Mason * disk order is close to key order 831d352ac68SChris Mason */ 8326702ed49SChris Mason int btrfs_realloc_node(struct btrfs_trans_handle *trans, 8335f39d397SChris Mason struct btrfs_root *root, struct extent_buffer *parent, 834de78b51aSEric Sandeen int start_slot, u64 *last_ret, 835a6b6e75eSChris Mason struct btrfs_key *progress) 8366702ed49SChris Mason { 8370b246afaSJeff Mahoney struct btrfs_fs_info *fs_info = root->fs_info; 8386b80053dSChris Mason struct extent_buffer *cur; 8396702ed49SChris Mason u64 blocknr; 840e9d0b13bSChris Mason u64 search_start = *last_ret; 841e9d0b13bSChris Mason u64 last_block = 0; 8426702ed49SChris Mason u64 other; 8436702ed49SChris Mason u32 parent_nritems; 8446702ed49SChris Mason int end_slot; 8456702ed49SChris Mason int i; 8466702ed49SChris Mason int err = 0; 8476b80053dSChris Mason u32 blocksize; 848081e9573SChris Mason int progress_passed = 0; 849081e9573SChris Mason struct btrfs_disk_key disk_key; 8506702ed49SChris Mason 851e36f9491SFilipe Manana /* 852e36f9491SFilipe Manana * COWing must happen through a running transaction, which always 853e36f9491SFilipe Manana * matches the current fs generation (it's a transaction with a state 854e36f9491SFilipe Manana * less than TRANS_STATE_UNBLOCKED). If it doesn't, then turn the fs 855e36f9491SFilipe Manana * into error state to prevent the commit of any transaction. 856e36f9491SFilipe Manana */ 857e36f9491SFilipe Manana if (unlikely(trans->transaction != fs_info->running_transaction || 858e36f9491SFilipe Manana trans->transid != fs_info->generation)) { 859e36f9491SFilipe Manana btrfs_abort_transaction(trans, -EUCLEAN); 860e36f9491SFilipe Manana btrfs_crit(fs_info, 861e36f9491SFilipe Manana "unexpected transaction when attempting to reallocate parent %llu for root %llu, transaction %llu running transaction %llu fs generation %llu", 862e36f9491SFilipe Manana parent->start, btrfs_root_id(root), trans->transid, 863e36f9491SFilipe Manana fs_info->running_transaction->transid, 864e36f9491SFilipe Manana fs_info->generation); 865e36f9491SFilipe Manana return -EUCLEAN; 866e36f9491SFilipe Manana } 86786479a04SChris Mason 8686b80053dSChris Mason parent_nritems = btrfs_header_nritems(parent); 8690b246afaSJeff Mahoney blocksize = fs_info->nodesize; 8705dfe2be7SFilipe Manana end_slot = parent_nritems - 1; 8716702ed49SChris Mason 8725dfe2be7SFilipe Manana if (parent_nritems <= 1) 8736702ed49SChris Mason return 0; 8746702ed49SChris Mason 8755dfe2be7SFilipe Manana for (i = start_slot; i <= end_slot; i++) { 8766702ed49SChris Mason int close = 1; 877a6b6e75eSChris Mason 878081e9573SChris Mason btrfs_node_key(parent, &disk_key, i); 879081e9573SChris Mason if (!progress_passed && comp_keys(&disk_key, progress) < 0) 880081e9573SChris Mason continue; 881081e9573SChris Mason 882081e9573SChris Mason progress_passed = 1; 8836b80053dSChris Mason blocknr = btrfs_node_blockptr(parent, i); 884e9d0b13bSChris Mason if (last_block == 0) 885e9d0b13bSChris Mason last_block = blocknr; 8865708b959SChris Mason 8876702ed49SChris Mason if (i > 0) { 8886b80053dSChris Mason other = btrfs_node_blockptr(parent, i - 1); 8896b80053dSChris Mason close = close_blocks(blocknr, other, blocksize); 8906702ed49SChris Mason } 8915dfe2be7SFilipe Manana if (!close && i < end_slot) { 8926b80053dSChris Mason other = btrfs_node_blockptr(parent, i + 1); 8936b80053dSChris Mason close = close_blocks(blocknr, other, blocksize); 8946702ed49SChris Mason } 895e9d0b13bSChris Mason if (close) { 896e9d0b13bSChris Mason last_block = blocknr; 8976702ed49SChris Mason continue; 898e9d0b13bSChris Mason } 8996702ed49SChris Mason 900206983b7SJosef Bacik cur = btrfs_read_node_slot(parent, i); 901206983b7SJosef Bacik if (IS_ERR(cur)) 90264c043deSLiu Bo return PTR_ERR(cur); 903e9d0b13bSChris Mason if (search_start == 0) 9046b80053dSChris Mason search_start = last_block; 905e9d0b13bSChris Mason 906e7a84565SChris Mason btrfs_tree_lock(cur); 9076b80053dSChris Mason err = __btrfs_cow_block(trans, root, cur, parent, i, 908e7a84565SChris Mason &cur, search_start, 9096b80053dSChris Mason min(16 * blocksize, 9109631e4ccSJosef Bacik (end_slot - i) * blocksize), 9119631e4ccSJosef Bacik BTRFS_NESTING_COW); 912252c38f0SYan if (err) { 913e7a84565SChris Mason btrfs_tree_unlock(cur); 9146b80053dSChris Mason free_extent_buffer(cur); 9156702ed49SChris Mason break; 916252c38f0SYan } 917e7a84565SChris Mason search_start = cur->start; 918e7a84565SChris Mason last_block = cur->start; 919f2183bdeSChris Mason *last_ret = search_start; 920e7a84565SChris Mason btrfs_tree_unlock(cur); 921e7a84565SChris Mason free_extent_buffer(cur); 9226702ed49SChris Mason } 9236702ed49SChris Mason return err; 9246702ed49SChris Mason } 9256702ed49SChris Mason 92674123bd7SChris Mason /* 927fb81212cSFilipe Manana * Search for a key in the given extent_buffer. 9285f39d397SChris Mason * 929a724f313SFilipe Manana * The lower boundary for the search is specified by the slot number @first_slot. 930fdf8d595SAnand Jain * Use a value of 0 to search over the whole extent buffer. Works for both 931fdf8d595SAnand Jain * leaves and nodes. 93274123bd7SChris Mason * 933fb81212cSFilipe Manana * The slot in the extent buffer is returned via @slot. If the key exists in the 934fb81212cSFilipe Manana * extent buffer, then @slot will point to the slot where the key is, otherwise 935fb81212cSFilipe Manana * it points to the slot where you would insert the key. 936fb81212cSFilipe Manana * 937fb81212cSFilipe Manana * Slot may point to the total number of items (i.e. one position beyond the last 938fb81212cSFilipe Manana * key) if the key is bigger than the last key in the extent buffer. 93974123bd7SChris Mason */ 940fdf8d595SAnand Jain int btrfs_bin_search(struct extent_buffer *eb, int first_slot, 94167d5e289SMarcos Paulo de Souza const struct btrfs_key *key, int *slot) 942be0e5c09SChris Mason { 943fb81212cSFilipe Manana unsigned long p; 944fb81212cSFilipe Manana int item_size; 945a724f313SFilipe Manana /* 946a724f313SFilipe Manana * Use unsigned types for the low and high slots, so that we get a more 947a724f313SFilipe Manana * efficient division in the search loop below. 948a724f313SFilipe Manana */ 949a724f313SFilipe Manana u32 low = first_slot; 950a724f313SFilipe Manana u32 high = btrfs_header_nritems(eb); 951be0e5c09SChris Mason int ret; 9525cd17f34SDavid Sterba const int key_size = sizeof(struct btrfs_disk_key); 953be0e5c09SChris Mason 954a724f313SFilipe Manana if (unlikely(low > high)) { 9555e24e9afSLiu Bo btrfs_err(eb->fs_info, 956a724f313SFilipe Manana "%s: low (%u) > high (%u) eb %llu owner %llu level %d", 9575e24e9afSLiu Bo __func__, low, high, eb->start, 9585e24e9afSLiu Bo btrfs_header_owner(eb), btrfs_header_level(eb)); 9595e24e9afSLiu Bo return -EINVAL; 9605e24e9afSLiu Bo } 9615e24e9afSLiu Bo 962fb81212cSFilipe Manana if (btrfs_header_level(eb) == 0) { 963fb81212cSFilipe Manana p = offsetof(struct btrfs_leaf, items); 964fb81212cSFilipe Manana item_size = sizeof(struct btrfs_item); 965fb81212cSFilipe Manana } else { 966fb81212cSFilipe Manana p = offsetof(struct btrfs_node, ptrs); 967fb81212cSFilipe Manana item_size = sizeof(struct btrfs_key_ptr); 968fb81212cSFilipe Manana } 969fb81212cSFilipe Manana 970be0e5c09SChris Mason while (low < high) { 9715cd17f34SDavid Sterba unsigned long oip; 9725cd17f34SDavid Sterba unsigned long offset; 9735cd17f34SDavid Sterba struct btrfs_disk_key *tmp; 9745cd17f34SDavid Sterba struct btrfs_disk_key unaligned; 9755cd17f34SDavid Sterba int mid; 9765cd17f34SDavid Sterba 977be0e5c09SChris Mason mid = (low + high) / 2; 9785f39d397SChris Mason offset = p + mid * item_size; 9795cd17f34SDavid Sterba oip = offset_in_page(offset); 9805f39d397SChris Mason 9815cd17f34SDavid Sterba if (oip + key_size <= PAGE_SIZE) { 982884b07d0SQu Wenruo const unsigned long idx = get_eb_page_index(offset); 9835cd17f34SDavid Sterba char *kaddr = page_address(eb->pages[idx]); 984934d375bSChris Mason 985884b07d0SQu Wenruo oip = get_eb_offset_in_page(eb, offset); 9865cd17f34SDavid Sterba tmp = (struct btrfs_disk_key *)(kaddr + oip); 9875cd17f34SDavid Sterba } else { 9885cd17f34SDavid Sterba read_extent_buffer(eb, &unaligned, offset, key_size); 9895f39d397SChris Mason tmp = &unaligned; 990479965d6SChris Mason } 991479965d6SChris Mason 992be0e5c09SChris Mason ret = comp_keys(tmp, key); 993be0e5c09SChris Mason 994be0e5c09SChris Mason if (ret < 0) 995be0e5c09SChris Mason low = mid + 1; 996be0e5c09SChris Mason else if (ret > 0) 997be0e5c09SChris Mason high = mid; 998be0e5c09SChris Mason else { 999be0e5c09SChris Mason *slot = mid; 1000be0e5c09SChris Mason return 0; 1001be0e5c09SChris Mason } 1002be0e5c09SChris Mason } 1003be0e5c09SChris Mason *slot = low; 1004be0e5c09SChris Mason return 1; 1005be0e5c09SChris Mason } 1006be0e5c09SChris Mason 1007f0486c68SYan, Zheng static void root_add_used(struct btrfs_root *root, u32 size) 1008f0486c68SYan, Zheng { 1009f0486c68SYan, Zheng spin_lock(&root->accounting_lock); 1010f0486c68SYan, Zheng btrfs_set_root_used(&root->root_item, 1011f0486c68SYan, Zheng btrfs_root_used(&root->root_item) + size); 1012f0486c68SYan, Zheng spin_unlock(&root->accounting_lock); 1013f0486c68SYan, Zheng } 1014f0486c68SYan, Zheng 1015f0486c68SYan, Zheng static void root_sub_used(struct btrfs_root *root, u32 size) 1016f0486c68SYan, Zheng { 1017f0486c68SYan, Zheng spin_lock(&root->accounting_lock); 1018f0486c68SYan, Zheng btrfs_set_root_used(&root->root_item, 1019f0486c68SYan, Zheng btrfs_root_used(&root->root_item) - size); 1020f0486c68SYan, Zheng spin_unlock(&root->accounting_lock); 1021f0486c68SYan, Zheng } 1022f0486c68SYan, Zheng 1023d352ac68SChris Mason /* given a node and slot number, this reads the blocks it points to. The 1024d352ac68SChris Mason * extent buffer is returned with a reference taken (but unlocked). 1025d352ac68SChris Mason */ 10264b231ae4SDavid Sterba struct extent_buffer *btrfs_read_node_slot(struct extent_buffer *parent, 10274b231ae4SDavid Sterba int slot) 1028bb803951SChris Mason { 1029ca7a79adSChris Mason int level = btrfs_header_level(parent); 1030789d6a3aSQu Wenruo struct btrfs_tree_parent_check check = { 0 }; 1031416bc658SJosef Bacik struct extent_buffer *eb; 1032416bc658SJosef Bacik 1033fb770ae4SLiu Bo if (slot < 0 || slot >= btrfs_header_nritems(parent)) 1034fb770ae4SLiu Bo return ERR_PTR(-ENOENT); 1035ca7a79adSChris Mason 1036d4694728SJosef Bacik ASSERT(level); 1037ca7a79adSChris Mason 1038789d6a3aSQu Wenruo check.level = level - 1; 1039789d6a3aSQu Wenruo check.transid = btrfs_node_ptr_generation(parent, slot); 1040789d6a3aSQu Wenruo check.owner_root = btrfs_header_owner(parent); 1041789d6a3aSQu Wenruo check.has_first_key = true; 1042789d6a3aSQu Wenruo btrfs_node_key_to_cpu(parent, &check.first_key, slot); 1043789d6a3aSQu Wenruo 1044d0d20b0fSDavid Sterba eb = read_tree_block(parent->fs_info, btrfs_node_blockptr(parent, slot), 1045789d6a3aSQu Wenruo &check); 10464eb150d6SQu Wenruo if (IS_ERR(eb)) 10474eb150d6SQu Wenruo return eb; 10484eb150d6SQu Wenruo if (!extent_buffer_uptodate(eb)) { 1049416bc658SJosef Bacik free_extent_buffer(eb); 10504eb150d6SQu Wenruo return ERR_PTR(-EIO); 1051416bc658SJosef Bacik } 1052416bc658SJosef Bacik 1053416bc658SJosef Bacik return eb; 1054bb803951SChris Mason } 1055bb803951SChris Mason 1056d352ac68SChris Mason /* 1057d352ac68SChris Mason * node level balancing, used to make sure nodes are in proper order for 1058d352ac68SChris Mason * item deletion. We balance from the top down, so we have to make sure 1059d352ac68SChris Mason * that a deletion won't leave an node completely empty later on. 1060d352ac68SChris Mason */ 1061e02119d5SChris Mason static noinline int balance_level(struct btrfs_trans_handle *trans, 106298ed5174SChris Mason struct btrfs_root *root, 106398ed5174SChris Mason struct btrfs_path *path, int level) 1064bb803951SChris Mason { 10650b246afaSJeff Mahoney struct btrfs_fs_info *fs_info = root->fs_info; 10665f39d397SChris Mason struct extent_buffer *right = NULL; 10675f39d397SChris Mason struct extent_buffer *mid; 10685f39d397SChris Mason struct extent_buffer *left = NULL; 10695f39d397SChris Mason struct extent_buffer *parent = NULL; 1070bb803951SChris Mason int ret = 0; 1071bb803951SChris Mason int wret; 1072bb803951SChris Mason int pslot; 1073bb803951SChris Mason int orig_slot = path->slots[level]; 107479f95c82SChris Mason u64 orig_ptr; 1075bb803951SChris Mason 107698e6b1ebSLiu Bo ASSERT(level > 0); 1077bb803951SChris Mason 10785f39d397SChris Mason mid = path->nodes[level]; 1079b4ce94deSChris Mason 1080ac5887c8SJosef Bacik WARN_ON(path->locks[level] != BTRFS_WRITE_LOCK); 10817bb86316SChris Mason WARN_ON(btrfs_header_generation(mid) != trans->transid); 10827bb86316SChris Mason 10831d4f8a0cSChris Mason orig_ptr = btrfs_node_blockptr(mid, orig_slot); 108479f95c82SChris Mason 1085a05a9bb1SLi Zefan if (level < BTRFS_MAX_LEVEL - 1) { 10865f39d397SChris Mason parent = path->nodes[level + 1]; 1087bb803951SChris Mason pslot = path->slots[level + 1]; 1088a05a9bb1SLi Zefan } 1089bb803951SChris Mason 109040689478SChris Mason /* 109140689478SChris Mason * deal with the case where there is only one pointer in the root 109240689478SChris Mason * by promoting the node below to a root 109340689478SChris Mason */ 10945f39d397SChris Mason if (!parent) { 10955f39d397SChris Mason struct extent_buffer *child; 1096bb803951SChris Mason 10975f39d397SChris Mason if (btrfs_header_nritems(mid) != 1) 1098bb803951SChris Mason return 0; 1099bb803951SChris Mason 1100bb803951SChris Mason /* promote the child to a root */ 11014b231ae4SDavid Sterba child = btrfs_read_node_slot(mid, 0); 1102fb770ae4SLiu Bo if (IS_ERR(child)) { 1103fb770ae4SLiu Bo ret = PTR_ERR(child); 1104daefe4d4SFilipe Manana goto out; 1105305a26afSMark Fasheh } 1106305a26afSMark Fasheh 1107925baeddSChris Mason btrfs_tree_lock(child); 11089631e4ccSJosef Bacik ret = btrfs_cow_block(trans, root, child, mid, 0, &child, 11099631e4ccSJosef Bacik BTRFS_NESTING_COW); 1110f0486c68SYan, Zheng if (ret) { 1111f0486c68SYan, Zheng btrfs_tree_unlock(child); 1112f0486c68SYan, Zheng free_extent_buffer(child); 1113daefe4d4SFilipe Manana goto out; 1114f0486c68SYan, Zheng } 11152f375ab9SYan 1116406808abSFilipe Manana ret = btrfs_tree_mod_log_insert_root(root->node, child, true); 111739020d8aSFilipe Manana if (ret < 0) { 111839020d8aSFilipe Manana btrfs_tree_unlock(child); 111939020d8aSFilipe Manana free_extent_buffer(child); 112039020d8aSFilipe Manana btrfs_abort_transaction(trans, ret); 1121daefe4d4SFilipe Manana goto out; 112239020d8aSFilipe Manana } 1123240f62c8SChris Mason rcu_assign_pointer(root->node, child); 1124925baeddSChris Mason 11250b86a832SChris Mason add_root_to_dirty_list(root); 1126925baeddSChris Mason btrfs_tree_unlock(child); 1127b4ce94deSChris Mason 1128925baeddSChris Mason path->locks[level] = 0; 1129bb803951SChris Mason path->nodes[level] = NULL; 1130190a8339SJosef Bacik btrfs_clear_buffer_dirty(trans, mid); 1131925baeddSChris Mason btrfs_tree_unlock(mid); 1132bb803951SChris Mason /* once for the path */ 11335f39d397SChris Mason free_extent_buffer(mid); 1134f0486c68SYan, Zheng 1135f0486c68SYan, Zheng root_sub_used(root, mid->len); 113622d907bcSFilipe Manana ret = btrfs_free_tree_block(trans, btrfs_root_id(root), mid, 0, 1); 1137bb803951SChris Mason /* once for the root ptr */ 11383083ee2eSJosef Bacik free_extent_buffer_stale(mid); 113922d907bcSFilipe Manana if (ret < 0) { 114022d907bcSFilipe Manana btrfs_abort_transaction(trans, ret); 114122d907bcSFilipe Manana goto out; 114222d907bcSFilipe Manana } 1143f0486c68SYan, Zheng return 0; 1144bb803951SChris Mason } 11455f39d397SChris Mason if (btrfs_header_nritems(mid) > 11460b246afaSJeff Mahoney BTRFS_NODEPTRS_PER_BLOCK(fs_info) / 4) 1147bb803951SChris Mason return 0; 1148bb803951SChris Mason 11499cf14029SJosef Bacik if (pslot) { 11504b231ae4SDavid Sterba left = btrfs_read_node_slot(parent, pslot - 1); 11519cf14029SJosef Bacik if (IS_ERR(left)) { 11529cf14029SJosef Bacik ret = PTR_ERR(left); 1153fb770ae4SLiu Bo left = NULL; 1154daefe4d4SFilipe Manana goto out; 11559cf14029SJosef Bacik } 1156fb770ae4SLiu Bo 1157bf77467aSJosef Bacik __btrfs_tree_lock(left, BTRFS_NESTING_LEFT); 11585f39d397SChris Mason wret = btrfs_cow_block(trans, root, left, 11599631e4ccSJosef Bacik parent, pslot - 1, &left, 1160bf59a5a2SJosef Bacik BTRFS_NESTING_LEFT_COW); 116154aa1f4dSChris Mason if (wret) { 116254aa1f4dSChris Mason ret = wret; 1163daefe4d4SFilipe Manana goto out; 116454aa1f4dSChris Mason } 11652cc58cf2SChris Mason } 1166fb770ae4SLiu Bo 11679cf14029SJosef Bacik if (pslot + 1 < btrfs_header_nritems(parent)) { 11684b231ae4SDavid Sterba right = btrfs_read_node_slot(parent, pslot + 1); 11699cf14029SJosef Bacik if (IS_ERR(right)) { 11709cf14029SJosef Bacik ret = PTR_ERR(right); 1171fb770ae4SLiu Bo right = NULL; 1172daefe4d4SFilipe Manana goto out; 11739cf14029SJosef Bacik } 1174fb770ae4SLiu Bo 1175bf77467aSJosef Bacik __btrfs_tree_lock(right, BTRFS_NESTING_RIGHT); 11765f39d397SChris Mason wret = btrfs_cow_block(trans, root, right, 11779631e4ccSJosef Bacik parent, pslot + 1, &right, 1178bf59a5a2SJosef Bacik BTRFS_NESTING_RIGHT_COW); 11792cc58cf2SChris Mason if (wret) { 11802cc58cf2SChris Mason ret = wret; 1181daefe4d4SFilipe Manana goto out; 11822cc58cf2SChris Mason } 11832cc58cf2SChris Mason } 11842cc58cf2SChris Mason 11852cc58cf2SChris Mason /* first, try to make some room in the middle buffer */ 11865f39d397SChris Mason if (left) { 11875f39d397SChris Mason orig_slot += btrfs_header_nritems(left); 1188d30a668fSDavid Sterba wret = push_node_left(trans, left, mid, 1); 118979f95c82SChris Mason if (wret < 0) 119079f95c82SChris Mason ret = wret; 1191bb803951SChris Mason } 119279f95c82SChris Mason 119379f95c82SChris Mason /* 119479f95c82SChris Mason * then try to empty the right most buffer into the middle 119579f95c82SChris Mason */ 11965f39d397SChris Mason if (right) { 1197d30a668fSDavid Sterba wret = push_node_left(trans, mid, right, 1); 119854aa1f4dSChris Mason if (wret < 0 && wret != -ENOSPC) 119979f95c82SChris Mason ret = wret; 12005f39d397SChris Mason if (btrfs_header_nritems(right) == 0) { 1201190a8339SJosef Bacik btrfs_clear_buffer_dirty(trans, right); 1202925baeddSChris Mason btrfs_tree_unlock(right); 1203751a2761SFilipe Manana ret = btrfs_del_ptr(trans, root, path, level + 1, pslot + 1); 1204751a2761SFilipe Manana if (ret < 0) { 1205751a2761SFilipe Manana free_extent_buffer_stale(right); 1206751a2761SFilipe Manana right = NULL; 1207751a2761SFilipe Manana goto out; 1208751a2761SFilipe Manana } 1209f0486c68SYan, Zheng root_sub_used(root, right->len); 121022d907bcSFilipe Manana ret = btrfs_free_tree_block(trans, btrfs_root_id(root), right, 12117a163608SFilipe Manana 0, 1); 12123083ee2eSJosef Bacik free_extent_buffer_stale(right); 1213f0486c68SYan, Zheng right = NULL; 121422d907bcSFilipe Manana if (ret < 0) { 121522d907bcSFilipe Manana btrfs_abort_transaction(trans, ret); 121622d907bcSFilipe Manana goto out; 121722d907bcSFilipe Manana } 1218bb803951SChris Mason } else { 12195f39d397SChris Mason struct btrfs_disk_key right_key; 12205f39d397SChris Mason btrfs_node_key(right, &right_key, 0); 1221f3a84ccdSFilipe Manana ret = btrfs_tree_mod_log_insert_key(parent, pslot + 1, 122233cff222SFilipe Manana BTRFS_MOD_LOG_KEY_REPLACE); 122339020d8aSFilipe Manana if (ret < 0) { 122439020d8aSFilipe Manana btrfs_abort_transaction(trans, ret); 1225daefe4d4SFilipe Manana goto out; 122639020d8aSFilipe Manana } 12275f39d397SChris Mason btrfs_set_node_key(parent, &right_key, pslot + 1); 1228d5e09e38SFilipe Manana btrfs_mark_buffer_dirty(trans, parent); 1229bb803951SChris Mason } 1230bb803951SChris Mason } 12315f39d397SChris Mason if (btrfs_header_nritems(mid) == 1) { 123279f95c82SChris Mason /* 123379f95c82SChris Mason * we're not allowed to leave a node with one item in the 123479f95c82SChris Mason * tree during a delete. A deletion from lower in the tree 123579f95c82SChris Mason * could try to delete the only pointer in this node. 123679f95c82SChris Mason * So, pull some keys from the left. 123779f95c82SChris Mason * There has to be a left pointer at this point because 123879f95c82SChris Mason * otherwise we would have pulled some pointers from the 123979f95c82SChris Mason * right 124079f95c82SChris Mason */ 1241725026edSFilipe Manana if (unlikely(!left)) { 1242725026edSFilipe Manana btrfs_crit(fs_info, 1243725026edSFilipe Manana "missing left child when middle child only has 1 item, parent bytenr %llu level %d mid bytenr %llu root %llu", 1244725026edSFilipe Manana parent->start, btrfs_header_level(parent), 1245725026edSFilipe Manana mid->start, btrfs_root_id(root)); 1246725026edSFilipe Manana ret = -EUCLEAN; 1247725026edSFilipe Manana btrfs_abort_transaction(trans, ret); 1248daefe4d4SFilipe Manana goto out; 1249305a26afSMark Fasheh } 125055d32ed8SDavid Sterba wret = balance_node_right(trans, mid, left); 125154aa1f4dSChris Mason if (wret < 0) { 125279f95c82SChris Mason ret = wret; 1253daefe4d4SFilipe Manana goto out; 125454aa1f4dSChris Mason } 1255bce4eae9SChris Mason if (wret == 1) { 1256d30a668fSDavid Sterba wret = push_node_left(trans, left, mid, 1); 1257bce4eae9SChris Mason if (wret < 0) 1258bce4eae9SChris Mason ret = wret; 1259bce4eae9SChris Mason } 126079f95c82SChris Mason BUG_ON(wret == 1); 126179f95c82SChris Mason } 12625f39d397SChris Mason if (btrfs_header_nritems(mid) == 0) { 1263190a8339SJosef Bacik btrfs_clear_buffer_dirty(trans, mid); 1264925baeddSChris Mason btrfs_tree_unlock(mid); 1265751a2761SFilipe Manana ret = btrfs_del_ptr(trans, root, path, level + 1, pslot); 1266751a2761SFilipe Manana if (ret < 0) { 1267751a2761SFilipe Manana free_extent_buffer_stale(mid); 1268751a2761SFilipe Manana mid = NULL; 1269751a2761SFilipe Manana goto out; 1270751a2761SFilipe Manana } 1271f0486c68SYan, Zheng root_sub_used(root, mid->len); 127222d907bcSFilipe Manana ret = btrfs_free_tree_block(trans, btrfs_root_id(root), mid, 0, 1); 12733083ee2eSJosef Bacik free_extent_buffer_stale(mid); 1274f0486c68SYan, Zheng mid = NULL; 127522d907bcSFilipe Manana if (ret < 0) { 127622d907bcSFilipe Manana btrfs_abort_transaction(trans, ret); 127722d907bcSFilipe Manana goto out; 127822d907bcSFilipe Manana } 127979f95c82SChris Mason } else { 128079f95c82SChris Mason /* update the parent key to reflect our changes */ 12815f39d397SChris Mason struct btrfs_disk_key mid_key; 12825f39d397SChris Mason btrfs_node_key(mid, &mid_key, 0); 1283f3a84ccdSFilipe Manana ret = btrfs_tree_mod_log_insert_key(parent, pslot, 128433cff222SFilipe Manana BTRFS_MOD_LOG_KEY_REPLACE); 128539020d8aSFilipe Manana if (ret < 0) { 128639020d8aSFilipe Manana btrfs_abort_transaction(trans, ret); 1287daefe4d4SFilipe Manana goto out; 128839020d8aSFilipe Manana } 12895f39d397SChris Mason btrfs_set_node_key(parent, &mid_key, pslot); 1290d5e09e38SFilipe Manana btrfs_mark_buffer_dirty(trans, parent); 129179f95c82SChris Mason } 1292bb803951SChris Mason 129379f95c82SChris Mason /* update the path */ 12945f39d397SChris Mason if (left) { 12955f39d397SChris Mason if (btrfs_header_nritems(left) > orig_slot) { 129667439dadSDavid Sterba atomic_inc(&left->refs); 1297925baeddSChris Mason /* left was locked after cow */ 12985f39d397SChris Mason path->nodes[level] = left; 1299bb803951SChris Mason path->slots[level + 1] -= 1; 1300bb803951SChris Mason path->slots[level] = orig_slot; 1301925baeddSChris Mason if (mid) { 1302925baeddSChris Mason btrfs_tree_unlock(mid); 13035f39d397SChris Mason free_extent_buffer(mid); 1304925baeddSChris Mason } 1305bb803951SChris Mason } else { 13065f39d397SChris Mason orig_slot -= btrfs_header_nritems(left); 1307bb803951SChris Mason path->slots[level] = orig_slot; 1308bb803951SChris Mason } 1309bb803951SChris Mason } 131079f95c82SChris Mason /* double check we haven't messed things up */ 1311e20d96d6SChris Mason if (orig_ptr != 13125f39d397SChris Mason btrfs_node_blockptr(path->nodes[level], path->slots[level])) 131379f95c82SChris Mason BUG(); 1314daefe4d4SFilipe Manana out: 1315925baeddSChris Mason if (right) { 1316925baeddSChris Mason btrfs_tree_unlock(right); 13175f39d397SChris Mason free_extent_buffer(right); 1318925baeddSChris Mason } 1319925baeddSChris Mason if (left) { 1320925baeddSChris Mason if (path->nodes[level] != left) 1321925baeddSChris Mason btrfs_tree_unlock(left); 13225f39d397SChris Mason free_extent_buffer(left); 1323925baeddSChris Mason } 1324bb803951SChris Mason return ret; 1325bb803951SChris Mason } 1326bb803951SChris Mason 1327d352ac68SChris Mason /* Node balancing for insertion. Here we only split or push nodes around 1328d352ac68SChris Mason * when they are completely full. This is also done top down, so we 1329d352ac68SChris Mason * have to be pessimistic. 1330d352ac68SChris Mason */ 1331d397712bSChris Mason static noinline int push_nodes_for_insert(struct btrfs_trans_handle *trans, 1332e66f709bSChris Mason struct btrfs_root *root, 1333e66f709bSChris Mason struct btrfs_path *path, int level) 1334e66f709bSChris Mason { 13350b246afaSJeff Mahoney struct btrfs_fs_info *fs_info = root->fs_info; 13365f39d397SChris Mason struct extent_buffer *right = NULL; 13375f39d397SChris Mason struct extent_buffer *mid; 13385f39d397SChris Mason struct extent_buffer *left = NULL; 13395f39d397SChris Mason struct extent_buffer *parent = NULL; 1340e66f709bSChris Mason int ret = 0; 1341e66f709bSChris Mason int wret; 1342e66f709bSChris Mason int pslot; 1343e66f709bSChris Mason int orig_slot = path->slots[level]; 1344e66f709bSChris Mason 1345e66f709bSChris Mason if (level == 0) 1346e66f709bSChris Mason return 1; 1347e66f709bSChris Mason 13485f39d397SChris Mason mid = path->nodes[level]; 13497bb86316SChris Mason WARN_ON(btrfs_header_generation(mid) != trans->transid); 1350e66f709bSChris Mason 1351a05a9bb1SLi Zefan if (level < BTRFS_MAX_LEVEL - 1) { 13525f39d397SChris Mason parent = path->nodes[level + 1]; 1353e66f709bSChris Mason pslot = path->slots[level + 1]; 1354a05a9bb1SLi Zefan } 1355e66f709bSChris Mason 13565f39d397SChris Mason if (!parent) 1357e66f709bSChris Mason return 1; 1358e66f709bSChris Mason 13599cf14029SJosef Bacik /* first, try to make some room in the middle buffer */ 13609cf14029SJosef Bacik if (pslot) { 13619cf14029SJosef Bacik u32 left_nr; 13629cf14029SJosef Bacik 13634b231ae4SDavid Sterba left = btrfs_read_node_slot(parent, pslot - 1); 1364fb770ae4SLiu Bo if (IS_ERR(left)) 13659cf14029SJosef Bacik return PTR_ERR(left); 1366925baeddSChris Mason 1367bf77467aSJosef Bacik __btrfs_tree_lock(left, BTRFS_NESTING_LEFT); 1368b4ce94deSChris Mason 13695f39d397SChris Mason left_nr = btrfs_header_nritems(left); 13700b246afaSJeff Mahoney if (left_nr >= BTRFS_NODEPTRS_PER_BLOCK(fs_info) - 1) { 137133ade1f8SChris Mason wret = 1; 137233ade1f8SChris Mason } else { 13735f39d397SChris Mason ret = btrfs_cow_block(trans, root, left, parent, 13749631e4ccSJosef Bacik pslot - 1, &left, 1375bf59a5a2SJosef Bacik BTRFS_NESTING_LEFT_COW); 137654aa1f4dSChris Mason if (ret) 137754aa1f4dSChris Mason wret = 1; 137854aa1f4dSChris Mason else { 1379d30a668fSDavid Sterba wret = push_node_left(trans, left, mid, 0); 138054aa1f4dSChris Mason } 138133ade1f8SChris Mason } 1382e66f709bSChris Mason if (wret < 0) 1383e66f709bSChris Mason ret = wret; 1384e66f709bSChris Mason if (wret == 0) { 13855f39d397SChris Mason struct btrfs_disk_key disk_key; 1386e66f709bSChris Mason orig_slot += left_nr; 13875f39d397SChris Mason btrfs_node_key(mid, &disk_key, 0); 1388f3a84ccdSFilipe Manana ret = btrfs_tree_mod_log_insert_key(parent, pslot, 138933cff222SFilipe Manana BTRFS_MOD_LOG_KEY_REPLACE); 139011d6ae03SFilipe Manana if (ret < 0) { 139111d6ae03SFilipe Manana btrfs_tree_unlock(left); 139211d6ae03SFilipe Manana free_extent_buffer(left); 139311d6ae03SFilipe Manana btrfs_abort_transaction(trans, ret); 139411d6ae03SFilipe Manana return ret; 139511d6ae03SFilipe Manana } 13965f39d397SChris Mason btrfs_set_node_key(parent, &disk_key, pslot); 1397d5e09e38SFilipe Manana btrfs_mark_buffer_dirty(trans, parent); 13985f39d397SChris Mason if (btrfs_header_nritems(left) > orig_slot) { 13995f39d397SChris Mason path->nodes[level] = left; 1400e66f709bSChris Mason path->slots[level + 1] -= 1; 1401e66f709bSChris Mason path->slots[level] = orig_slot; 1402925baeddSChris Mason btrfs_tree_unlock(mid); 14035f39d397SChris Mason free_extent_buffer(mid); 1404e66f709bSChris Mason } else { 1405e66f709bSChris Mason orig_slot -= 14065f39d397SChris Mason btrfs_header_nritems(left); 1407e66f709bSChris Mason path->slots[level] = orig_slot; 1408925baeddSChris Mason btrfs_tree_unlock(left); 14095f39d397SChris Mason free_extent_buffer(left); 1410e66f709bSChris Mason } 1411e66f709bSChris Mason return 0; 1412e66f709bSChris Mason } 1413925baeddSChris Mason btrfs_tree_unlock(left); 14145f39d397SChris Mason free_extent_buffer(left); 1415e66f709bSChris Mason } 1416e66f709bSChris Mason 1417e66f709bSChris Mason /* 1418e66f709bSChris Mason * then try to empty the right most buffer into the middle 1419e66f709bSChris Mason */ 14209cf14029SJosef Bacik if (pslot + 1 < btrfs_header_nritems(parent)) { 142133ade1f8SChris Mason u32 right_nr; 1422b4ce94deSChris Mason 14239cf14029SJosef Bacik right = btrfs_read_node_slot(parent, pslot + 1); 14249cf14029SJosef Bacik if (IS_ERR(right)) 14259cf14029SJosef Bacik return PTR_ERR(right); 14269cf14029SJosef Bacik 1427bf77467aSJosef Bacik __btrfs_tree_lock(right, BTRFS_NESTING_RIGHT); 1428b4ce94deSChris Mason 14295f39d397SChris Mason right_nr = btrfs_header_nritems(right); 14300b246afaSJeff Mahoney if (right_nr >= BTRFS_NODEPTRS_PER_BLOCK(fs_info) - 1) { 143133ade1f8SChris Mason wret = 1; 143233ade1f8SChris Mason } else { 14335f39d397SChris Mason ret = btrfs_cow_block(trans, root, right, 14345f39d397SChris Mason parent, pslot + 1, 1435bf59a5a2SJosef Bacik &right, BTRFS_NESTING_RIGHT_COW); 143654aa1f4dSChris Mason if (ret) 143754aa1f4dSChris Mason wret = 1; 143854aa1f4dSChris Mason else { 143955d32ed8SDavid Sterba wret = balance_node_right(trans, right, mid); 144033ade1f8SChris Mason } 144154aa1f4dSChris Mason } 1442e66f709bSChris Mason if (wret < 0) 1443e66f709bSChris Mason ret = wret; 1444e66f709bSChris Mason if (wret == 0) { 14455f39d397SChris Mason struct btrfs_disk_key disk_key; 14465f39d397SChris Mason 14475f39d397SChris Mason btrfs_node_key(right, &disk_key, 0); 1448f3a84ccdSFilipe Manana ret = btrfs_tree_mod_log_insert_key(parent, pslot + 1, 144933cff222SFilipe Manana BTRFS_MOD_LOG_KEY_REPLACE); 145011d6ae03SFilipe Manana if (ret < 0) { 145111d6ae03SFilipe Manana btrfs_tree_unlock(right); 145211d6ae03SFilipe Manana free_extent_buffer(right); 145311d6ae03SFilipe Manana btrfs_abort_transaction(trans, ret); 145411d6ae03SFilipe Manana return ret; 145511d6ae03SFilipe Manana } 14565f39d397SChris Mason btrfs_set_node_key(parent, &disk_key, pslot + 1); 1457d5e09e38SFilipe Manana btrfs_mark_buffer_dirty(trans, parent); 14585f39d397SChris Mason 14595f39d397SChris Mason if (btrfs_header_nritems(mid) <= orig_slot) { 14605f39d397SChris Mason path->nodes[level] = right; 1461e66f709bSChris Mason path->slots[level + 1] += 1; 1462e66f709bSChris Mason path->slots[level] = orig_slot - 14635f39d397SChris Mason btrfs_header_nritems(mid); 1464925baeddSChris Mason btrfs_tree_unlock(mid); 14655f39d397SChris Mason free_extent_buffer(mid); 1466e66f709bSChris Mason } else { 1467925baeddSChris Mason btrfs_tree_unlock(right); 14685f39d397SChris Mason free_extent_buffer(right); 1469e66f709bSChris Mason } 1470e66f709bSChris Mason return 0; 1471e66f709bSChris Mason } 1472925baeddSChris Mason btrfs_tree_unlock(right); 14735f39d397SChris Mason free_extent_buffer(right); 1474e66f709bSChris Mason } 1475e66f709bSChris Mason return 1; 1476e66f709bSChris Mason } 1477e66f709bSChris Mason 147874123bd7SChris Mason /* 1479d352ac68SChris Mason * readahead one full node of leaves, finding things that are close 1480d352ac68SChris Mason * to the block in 'slot', and triggering ra on them. 14813c69faecSChris Mason */ 14822ff7e61eSJeff Mahoney static void reada_for_search(struct btrfs_fs_info *fs_info, 1483e02119d5SChris Mason struct btrfs_path *path, 148401f46658SChris Mason int level, int slot, u64 objectid) 14853c69faecSChris Mason { 14865f39d397SChris Mason struct extent_buffer *node; 148701f46658SChris Mason struct btrfs_disk_key disk_key; 14883c69faecSChris Mason u32 nritems; 14893c69faecSChris Mason u64 search; 1490a7175319SChris Mason u64 target; 14916b80053dSChris Mason u64 nread = 0; 1492ace75066SFilipe Manana u64 nread_max; 14936b80053dSChris Mason u32 nr; 14946b80053dSChris Mason u32 blocksize; 14956b80053dSChris Mason u32 nscan = 0; 1496db94535dSChris Mason 1497ace75066SFilipe Manana if (level != 1 && path->reada != READA_FORWARD_ALWAYS) 14983c69faecSChris Mason return; 14993c69faecSChris Mason 15006702ed49SChris Mason if (!path->nodes[level]) 15016702ed49SChris Mason return; 15026702ed49SChris Mason 15035f39d397SChris Mason node = path->nodes[level]; 1504925baeddSChris Mason 1505ace75066SFilipe Manana /* 1506ace75066SFilipe Manana * Since the time between visiting leaves is much shorter than the time 1507ace75066SFilipe Manana * between visiting nodes, limit read ahead of nodes to 1, to avoid too 1508ace75066SFilipe Manana * much IO at once (possibly random). 1509ace75066SFilipe Manana */ 1510ace75066SFilipe Manana if (path->reada == READA_FORWARD_ALWAYS) { 1511ace75066SFilipe Manana if (level > 1) 1512ace75066SFilipe Manana nread_max = node->fs_info->nodesize; 1513ace75066SFilipe Manana else 1514ace75066SFilipe Manana nread_max = SZ_128K; 1515ace75066SFilipe Manana } else { 1516ace75066SFilipe Manana nread_max = SZ_64K; 1517ace75066SFilipe Manana } 1518ace75066SFilipe Manana 15193c69faecSChris Mason search = btrfs_node_blockptr(node, slot); 15200b246afaSJeff Mahoney blocksize = fs_info->nodesize; 1521069a2e37SFilipe Manana if (path->reada != READA_FORWARD_ALWAYS) { 1522069a2e37SFilipe Manana struct extent_buffer *eb; 1523069a2e37SFilipe Manana 15240b246afaSJeff Mahoney eb = find_extent_buffer(fs_info, search); 15255f39d397SChris Mason if (eb) { 15265f39d397SChris Mason free_extent_buffer(eb); 15273c69faecSChris Mason return; 15283c69faecSChris Mason } 1529069a2e37SFilipe Manana } 15303c69faecSChris Mason 1531a7175319SChris Mason target = search; 15326b80053dSChris Mason 15335f39d397SChris Mason nritems = btrfs_header_nritems(node); 15346b80053dSChris Mason nr = slot; 153525b8b936SJosef Bacik 15363c69faecSChris Mason while (1) { 1537e4058b54SDavid Sterba if (path->reada == READA_BACK) { 15386b80053dSChris Mason if (nr == 0) 15393c69faecSChris Mason break; 15406b80053dSChris Mason nr--; 1541ace75066SFilipe Manana } else if (path->reada == READA_FORWARD || 1542ace75066SFilipe Manana path->reada == READA_FORWARD_ALWAYS) { 15436b80053dSChris Mason nr++; 15446b80053dSChris Mason if (nr >= nritems) 15456b80053dSChris Mason break; 15463c69faecSChris Mason } 1547e4058b54SDavid Sterba if (path->reada == READA_BACK && objectid) { 154801f46658SChris Mason btrfs_node_key(node, &disk_key, nr); 154901f46658SChris Mason if (btrfs_disk_key_objectid(&disk_key) != objectid) 155001f46658SChris Mason break; 155101f46658SChris Mason } 15526b80053dSChris Mason search = btrfs_node_blockptr(node, nr); 1553ace75066SFilipe Manana if (path->reada == READA_FORWARD_ALWAYS || 1554ace75066SFilipe Manana (search <= target && target - search <= 65536) || 1555a7175319SChris Mason (search > target && search - target <= 65536)) { 1556bfb484d9SJosef Bacik btrfs_readahead_node_child(node, nr); 15576b80053dSChris Mason nread += blocksize; 15583c69faecSChris Mason } 15596b80053dSChris Mason nscan++; 1560ace75066SFilipe Manana if (nread > nread_max || nscan > 32) 15616b80053dSChris Mason break; 15623c69faecSChris Mason } 15633c69faecSChris Mason } 1564925baeddSChris Mason 1565bfb484d9SJosef Bacik static noinline void reada_for_balance(struct btrfs_path *path, int level) 1566b4ce94deSChris Mason { 1567bfb484d9SJosef Bacik struct extent_buffer *parent; 1568b4ce94deSChris Mason int slot; 1569b4ce94deSChris Mason int nritems; 1570b4ce94deSChris Mason 15718c594ea8SChris Mason parent = path->nodes[level + 1]; 1572b4ce94deSChris Mason if (!parent) 15730b08851fSJosef Bacik return; 1574b4ce94deSChris Mason 1575b4ce94deSChris Mason nritems = btrfs_header_nritems(parent); 15768c594ea8SChris Mason slot = path->slots[level + 1]; 1577b4ce94deSChris Mason 1578bfb484d9SJosef Bacik if (slot > 0) 1579bfb484d9SJosef Bacik btrfs_readahead_node_child(parent, slot - 1); 1580bfb484d9SJosef Bacik if (slot + 1 < nritems) 1581bfb484d9SJosef Bacik btrfs_readahead_node_child(parent, slot + 1); 1582b4ce94deSChris Mason } 1583b4ce94deSChris Mason 1584b4ce94deSChris Mason 1585b4ce94deSChris Mason /* 1586d397712bSChris Mason * when we walk down the tree, it is usually safe to unlock the higher layers 1587d397712bSChris Mason * in the tree. The exceptions are when our path goes through slot 0, because 1588d397712bSChris Mason * operations on the tree might require changing key pointers higher up in the 1589d397712bSChris Mason * tree. 1590d352ac68SChris Mason * 1591d397712bSChris Mason * callers might also have set path->keep_locks, which tells this code to keep 1592d397712bSChris Mason * the lock if the path points to the last slot in the block. This is part of 1593d397712bSChris Mason * walking through the tree, and selecting the next slot in the higher block. 1594d352ac68SChris Mason * 1595d397712bSChris Mason * lowest_unlock sets the lowest level in the tree we're allowed to unlock. so 1596d397712bSChris Mason * if lowest_unlock is 1, level 0 won't be unlocked 1597d352ac68SChris Mason */ 1598e02119d5SChris Mason static noinline void unlock_up(struct btrfs_path *path, int level, 1599f7c79f30SChris Mason int lowest_unlock, int min_write_lock_level, 1600f7c79f30SChris Mason int *write_lock_level) 1601925baeddSChris Mason { 1602925baeddSChris Mason int i; 1603925baeddSChris Mason int skip_level = level; 1604c1227996SNikolay Borisov bool check_skip = true; 1605925baeddSChris Mason 1606925baeddSChris Mason for (i = level; i < BTRFS_MAX_LEVEL; i++) { 1607925baeddSChris Mason if (!path->nodes[i]) 1608925baeddSChris Mason break; 1609925baeddSChris Mason if (!path->locks[i]) 1610925baeddSChris Mason break; 1611c1227996SNikolay Borisov 1612c1227996SNikolay Borisov if (check_skip) { 1613c1227996SNikolay Borisov if (path->slots[i] == 0) { 1614925baeddSChris Mason skip_level = i + 1; 1615925baeddSChris Mason continue; 1616925baeddSChris Mason } 1617c1227996SNikolay Borisov 1618c1227996SNikolay Borisov if (path->keep_locks) { 1619925baeddSChris Mason u32 nritems; 1620c1227996SNikolay Borisov 1621c1227996SNikolay Borisov nritems = btrfs_header_nritems(path->nodes[i]); 1622051e1b9fSChris Mason if (nritems < 1 || path->slots[i] >= nritems - 1) { 1623925baeddSChris Mason skip_level = i + 1; 1624925baeddSChris Mason continue; 1625925baeddSChris Mason } 1626925baeddSChris Mason } 1627c1227996SNikolay Borisov } 1628051e1b9fSChris Mason 1629d80bb3f9SLiu Bo if (i >= lowest_unlock && i > skip_level) { 1630c1227996SNikolay Borisov check_skip = false; 1631c1227996SNikolay Borisov btrfs_tree_unlock_rw(path->nodes[i], path->locks[i]); 1632925baeddSChris Mason path->locks[i] = 0; 1633f7c79f30SChris Mason if (write_lock_level && 1634f7c79f30SChris Mason i > min_write_lock_level && 1635f7c79f30SChris Mason i <= *write_lock_level) { 1636f7c79f30SChris Mason *write_lock_level = i - 1; 1637f7c79f30SChris Mason } 1638925baeddSChris Mason } 1639925baeddSChris Mason } 1640925baeddSChris Mason } 1641925baeddSChris Mason 16423c69faecSChris Mason /* 1643376a21d7SFilipe Manana * Helper function for btrfs_search_slot() and other functions that do a search 1644376a21d7SFilipe Manana * on a btree. The goal is to find a tree block in the cache (the radix tree at 1645376a21d7SFilipe Manana * fs_info->buffer_radix), but if we can't find it, or it's not up to date, read 1646376a21d7SFilipe Manana * its pages from disk. 1647c8c42864SChris Mason * 1648376a21d7SFilipe Manana * Returns -EAGAIN, with the path unlocked, if the caller needs to repeat the 1649376a21d7SFilipe Manana * whole btree search, starting again from the current root node. 1650c8c42864SChris Mason */ 1651c8c42864SChris Mason static int 1652d07b8528SLiu Bo read_block_for_search(struct btrfs_root *root, struct btrfs_path *p, 1653c8c42864SChris Mason struct extent_buffer **eb_ret, int level, int slot, 1654cda79c54SDavid Sterba const struct btrfs_key *key) 1655c8c42864SChris Mason { 16560b246afaSJeff Mahoney struct btrfs_fs_info *fs_info = root->fs_info; 1657789d6a3aSQu Wenruo struct btrfs_tree_parent_check check = { 0 }; 1658c8c42864SChris Mason u64 blocknr; 1659c8c42864SChris Mason u64 gen; 1660c8c42864SChris Mason struct extent_buffer *tmp; 166176a05b35SChris Mason int ret; 1662581c1760SQu Wenruo int parent_level; 1663b246666eSFilipe Manana bool unlock_up; 1664c8c42864SChris Mason 1665b246666eSFilipe Manana unlock_up = ((level + 1 < BTRFS_MAX_LEVEL) && p->locks[level + 1]); 1666213ff4b7SNikolay Borisov blocknr = btrfs_node_blockptr(*eb_ret, slot); 1667213ff4b7SNikolay Borisov gen = btrfs_node_ptr_generation(*eb_ret, slot); 1668213ff4b7SNikolay Borisov parent_level = btrfs_header_level(*eb_ret); 1669789d6a3aSQu Wenruo btrfs_node_key_to_cpu(*eb_ret, &check.first_key, slot); 1670789d6a3aSQu Wenruo check.has_first_key = true; 1671789d6a3aSQu Wenruo check.level = parent_level - 1; 1672789d6a3aSQu Wenruo check.transid = gen; 1673789d6a3aSQu Wenruo check.owner_root = root->root_key.objectid; 1674c8c42864SChris Mason 1675b246666eSFilipe Manana /* 1676b246666eSFilipe Manana * If we need to read an extent buffer from disk and we are holding locks 1677b246666eSFilipe Manana * on upper level nodes, we unlock all the upper nodes before reading the 1678b246666eSFilipe Manana * extent buffer, and then return -EAGAIN to the caller as it needs to 1679b246666eSFilipe Manana * restart the search. We don't release the lock on the current level 1680b246666eSFilipe Manana * because we need to walk this node to figure out which blocks to read. 1681b246666eSFilipe Manana */ 16820b246afaSJeff Mahoney tmp = find_extent_buffer(fs_info, blocknr); 1683cb44921aSChris Mason if (tmp) { 1684ace75066SFilipe Manana if (p->reada == READA_FORWARD_ALWAYS) 1685ace75066SFilipe Manana reada_for_search(fs_info, p, level, slot, key->objectid); 1686ace75066SFilipe Manana 1687b9fab919SChris Mason /* first we do an atomic uptodate check */ 1688b9fab919SChris Mason if (btrfs_buffer_uptodate(tmp, gen, 1) > 0) { 1689448de471SQu Wenruo /* 1690448de471SQu Wenruo * Do extra check for first_key, eb can be stale due to 1691448de471SQu Wenruo * being cached, read from scrub, or have multiple 1692448de471SQu Wenruo * parents (shared tree blocks). 1693448de471SQu Wenruo */ 1694e064d5e9SDavid Sterba if (btrfs_verify_level_key(tmp, 1695789d6a3aSQu Wenruo parent_level - 1, &check.first_key, gen)) { 1696448de471SQu Wenruo free_extent_buffer(tmp); 1697448de471SQu Wenruo return -EUCLEAN; 1698448de471SQu Wenruo } 1699c8c42864SChris Mason *eb_ret = tmp; 1700c8c42864SChris Mason return 0; 1701c8c42864SChris Mason } 1702bdf7c00eSJosef Bacik 1703857bc13fSJosef Bacik if (p->nowait) { 1704857bc13fSJosef Bacik free_extent_buffer(tmp); 1705857bc13fSJosef Bacik return -EAGAIN; 1706857bc13fSJosef Bacik } 1707857bc13fSJosef Bacik 1708b246666eSFilipe Manana if (unlock_up) 1709b246666eSFilipe Manana btrfs_unlock_up_safe(p, level + 1); 1710b246666eSFilipe Manana 1711b9fab919SChris Mason /* now we're allowed to do a blocking uptodate check */ 1712789d6a3aSQu Wenruo ret = btrfs_read_extent_buffer(tmp, &check); 17139a4ffa1bSQu Wenruo if (ret) { 1714cb44921aSChris Mason free_extent_buffer(tmp); 1715b3b4aa74SDavid Sterba btrfs_release_path(p); 1716cb44921aSChris Mason return -EIO; 1717cb44921aSChris Mason } 171888c602abSQu Wenruo if (btrfs_check_eb_owner(tmp, root->root_key.objectid)) { 171988c602abSQu Wenruo free_extent_buffer(tmp); 172088c602abSQu Wenruo btrfs_release_path(p); 172188c602abSQu Wenruo return -EUCLEAN; 172288c602abSQu Wenruo } 1723b246666eSFilipe Manana 1724b246666eSFilipe Manana if (unlock_up) 1725b246666eSFilipe Manana ret = -EAGAIN; 1726b246666eSFilipe Manana 1727b246666eSFilipe Manana goto out; 1728857bc13fSJosef Bacik } else if (p->nowait) { 1729857bc13fSJosef Bacik return -EAGAIN; 17309a4ffa1bSQu Wenruo } 1731c8c42864SChris Mason 1732b246666eSFilipe Manana if (unlock_up) { 17338c594ea8SChris Mason btrfs_unlock_up_safe(p, level + 1); 17344bb59055SFilipe Manana ret = -EAGAIN; 17354bb59055SFilipe Manana } else { 17364bb59055SFilipe Manana ret = 0; 17374bb59055SFilipe Manana } 17388c594ea8SChris Mason 1739e4058b54SDavid Sterba if (p->reada != READA_NONE) 17402ff7e61eSJeff Mahoney reada_for_search(fs_info, p, level, slot, key->objectid); 1741c8c42864SChris Mason 1742789d6a3aSQu Wenruo tmp = read_tree_block(fs_info, blocknr, &check); 17434eb150d6SQu Wenruo if (IS_ERR(tmp)) { 17444eb150d6SQu Wenruo btrfs_release_path(p); 17454eb150d6SQu Wenruo return PTR_ERR(tmp); 17464eb150d6SQu Wenruo } 174776a05b35SChris Mason /* 174876a05b35SChris Mason * If the read above didn't mark this buffer up to date, 174976a05b35SChris Mason * it will never end up being up to date. Set ret to EIO now 175076a05b35SChris Mason * and give up so that our caller doesn't loop forever 175176a05b35SChris Mason * on our EAGAINs. 175276a05b35SChris Mason */ 1753e6a1d6fdSLiu Bo if (!extent_buffer_uptodate(tmp)) 175476a05b35SChris Mason ret = -EIO; 175502a3307aSLiu Bo 1756b246666eSFilipe Manana out: 17574bb59055SFilipe Manana if (ret == 0) { 17584bb59055SFilipe Manana *eb_ret = tmp; 17594bb59055SFilipe Manana } else { 17604bb59055SFilipe Manana free_extent_buffer(tmp); 176102a3307aSLiu Bo btrfs_release_path(p); 17624bb59055SFilipe Manana } 17634bb59055SFilipe Manana 176476a05b35SChris Mason return ret; 1765c8c42864SChris Mason } 1766c8c42864SChris Mason 1767c8c42864SChris Mason /* 1768c8c42864SChris Mason * helper function for btrfs_search_slot. This does all of the checks 1769c8c42864SChris Mason * for node-level blocks and does any balancing required based on 1770c8c42864SChris Mason * the ins_len. 1771c8c42864SChris Mason * 1772c8c42864SChris Mason * If no extra work was required, zero is returned. If we had to 1773c8c42864SChris Mason * drop the path, -EAGAIN is returned and btrfs_search_slot must 1774c8c42864SChris Mason * start over 1775c8c42864SChris Mason */ 1776c8c42864SChris Mason static int 1777c8c42864SChris Mason setup_nodes_for_search(struct btrfs_trans_handle *trans, 1778c8c42864SChris Mason struct btrfs_root *root, struct btrfs_path *p, 1779bd681513SChris Mason struct extent_buffer *b, int level, int ins_len, 1780bd681513SChris Mason int *write_lock_level) 1781c8c42864SChris Mason { 17820b246afaSJeff Mahoney struct btrfs_fs_info *fs_info = root->fs_info; 178395b982deSNikolay Borisov int ret = 0; 17840b246afaSJeff Mahoney 1785c8c42864SChris Mason if ((p->search_for_split || ins_len > 0) && btrfs_header_nritems(b) >= 17860b246afaSJeff Mahoney BTRFS_NODEPTRS_PER_BLOCK(fs_info) - 3) { 1787c8c42864SChris Mason 1788bd681513SChris Mason if (*write_lock_level < level + 1) { 1789bd681513SChris Mason *write_lock_level = level + 1; 1790bd681513SChris Mason btrfs_release_path(p); 179195b982deSNikolay Borisov return -EAGAIN; 1792bd681513SChris Mason } 1793bd681513SChris Mason 1794bfb484d9SJosef Bacik reada_for_balance(p, level); 179595b982deSNikolay Borisov ret = split_node(trans, root, p, level); 1796c8c42864SChris Mason 1797c8c42864SChris Mason b = p->nodes[level]; 1798c8c42864SChris Mason } else if (ins_len < 0 && btrfs_header_nritems(b) < 17990b246afaSJeff Mahoney BTRFS_NODEPTRS_PER_BLOCK(fs_info) / 2) { 1800c8c42864SChris Mason 1801bd681513SChris Mason if (*write_lock_level < level + 1) { 1802bd681513SChris Mason *write_lock_level = level + 1; 1803bd681513SChris Mason btrfs_release_path(p); 180495b982deSNikolay Borisov return -EAGAIN; 1805bd681513SChris Mason } 1806bd681513SChris Mason 1807bfb484d9SJosef Bacik reada_for_balance(p, level); 180895b982deSNikolay Borisov ret = balance_level(trans, root, p, level); 180995b982deSNikolay Borisov if (ret) 181095b982deSNikolay Borisov return ret; 1811c8c42864SChris Mason 1812c8c42864SChris Mason b = p->nodes[level]; 1813c8c42864SChris Mason if (!b) { 1814b3b4aa74SDavid Sterba btrfs_release_path(p); 181595b982deSNikolay Borisov return -EAGAIN; 1816c8c42864SChris Mason } 1817c8c42864SChris Mason BUG_ON(btrfs_header_nritems(b) == 1); 1818c8c42864SChris Mason } 1819c8c42864SChris Mason return ret; 1820c8c42864SChris Mason } 1821c8c42864SChris Mason 1822381cf658SDavid Sterba int btrfs_find_item(struct btrfs_root *fs_root, struct btrfs_path *path, 1823e33d5c3dSKelley Nielsen u64 iobjectid, u64 ioff, u8 key_type, 1824e33d5c3dSKelley Nielsen struct btrfs_key *found_key) 1825e33d5c3dSKelley Nielsen { 1826e33d5c3dSKelley Nielsen int ret; 1827e33d5c3dSKelley Nielsen struct btrfs_key key; 1828e33d5c3dSKelley Nielsen struct extent_buffer *eb; 1829381cf658SDavid Sterba 1830381cf658SDavid Sterba ASSERT(path); 18311d4c08e0SDavid Sterba ASSERT(found_key); 1832e33d5c3dSKelley Nielsen 1833e33d5c3dSKelley Nielsen key.type = key_type; 1834e33d5c3dSKelley Nielsen key.objectid = iobjectid; 1835e33d5c3dSKelley Nielsen key.offset = ioff; 1836e33d5c3dSKelley Nielsen 1837e33d5c3dSKelley Nielsen ret = btrfs_search_slot(NULL, fs_root, &key, path, 0, 0); 18381d4c08e0SDavid Sterba if (ret < 0) 1839e33d5c3dSKelley Nielsen return ret; 1840e33d5c3dSKelley Nielsen 1841e33d5c3dSKelley Nielsen eb = path->nodes[0]; 1842e33d5c3dSKelley Nielsen if (ret && path->slots[0] >= btrfs_header_nritems(eb)) { 1843e33d5c3dSKelley Nielsen ret = btrfs_next_leaf(fs_root, path); 1844e33d5c3dSKelley Nielsen if (ret) 1845e33d5c3dSKelley Nielsen return ret; 1846e33d5c3dSKelley Nielsen eb = path->nodes[0]; 1847e33d5c3dSKelley Nielsen } 1848e33d5c3dSKelley Nielsen 1849e33d5c3dSKelley Nielsen btrfs_item_key_to_cpu(eb, found_key, path->slots[0]); 1850e33d5c3dSKelley Nielsen if (found_key->type != key.type || 1851e33d5c3dSKelley Nielsen found_key->objectid != key.objectid) 1852e33d5c3dSKelley Nielsen return 1; 1853e33d5c3dSKelley Nielsen 1854e33d5c3dSKelley Nielsen return 0; 1855e33d5c3dSKelley Nielsen } 1856e33d5c3dSKelley Nielsen 18571fc28d8eSLiu Bo static struct extent_buffer *btrfs_search_slot_get_root(struct btrfs_root *root, 18581fc28d8eSLiu Bo struct btrfs_path *p, 18591fc28d8eSLiu Bo int write_lock_level) 18601fc28d8eSLiu Bo { 18611fc28d8eSLiu Bo struct extent_buffer *b; 1862120de408SJosef Bacik int root_lock = 0; 18631fc28d8eSLiu Bo int level = 0; 18641fc28d8eSLiu Bo 18651fc28d8eSLiu Bo if (p->search_commit_root) { 18661fc28d8eSLiu Bo b = root->commit_root; 186767439dadSDavid Sterba atomic_inc(&b->refs); 18681fc28d8eSLiu Bo level = btrfs_header_level(b); 1869f9ddfd05SLiu Bo /* 1870f9ddfd05SLiu Bo * Ensure that all callers have set skip_locking when 1871f9ddfd05SLiu Bo * p->search_commit_root = 1. 1872f9ddfd05SLiu Bo */ 1873f9ddfd05SLiu Bo ASSERT(p->skip_locking == 1); 18741fc28d8eSLiu Bo 18751fc28d8eSLiu Bo goto out; 18761fc28d8eSLiu Bo } 18771fc28d8eSLiu Bo 18781fc28d8eSLiu Bo if (p->skip_locking) { 18791fc28d8eSLiu Bo b = btrfs_root_node(root); 18801fc28d8eSLiu Bo level = btrfs_header_level(b); 18811fc28d8eSLiu Bo goto out; 18821fc28d8eSLiu Bo } 18831fc28d8eSLiu Bo 1884120de408SJosef Bacik /* We try very hard to do read locks on the root */ 1885120de408SJosef Bacik root_lock = BTRFS_READ_LOCK; 1886120de408SJosef Bacik 18871fc28d8eSLiu Bo /* 1888662c653bSLiu Bo * If the level is set to maximum, we can skip trying to get the read 1889662c653bSLiu Bo * lock. 1890662c653bSLiu Bo */ 1891662c653bSLiu Bo if (write_lock_level < BTRFS_MAX_LEVEL) { 1892662c653bSLiu Bo /* 1893662c653bSLiu Bo * We don't know the level of the root node until we actually 1894662c653bSLiu Bo * have it read locked 18951fc28d8eSLiu Bo */ 1896857bc13fSJosef Bacik if (p->nowait) { 1897857bc13fSJosef Bacik b = btrfs_try_read_lock_root_node(root); 1898857bc13fSJosef Bacik if (IS_ERR(b)) 1899857bc13fSJosef Bacik return b; 1900857bc13fSJosef Bacik } else { 19011bb96598SJosef Bacik b = btrfs_read_lock_root_node(root); 1902857bc13fSJosef Bacik } 19031fc28d8eSLiu Bo level = btrfs_header_level(b); 19041fc28d8eSLiu Bo if (level > write_lock_level) 19051fc28d8eSLiu Bo goto out; 19061fc28d8eSLiu Bo 1907662c653bSLiu Bo /* Whoops, must trade for write lock */ 19081fc28d8eSLiu Bo btrfs_tree_read_unlock(b); 19091fc28d8eSLiu Bo free_extent_buffer(b); 1910662c653bSLiu Bo } 1911662c653bSLiu Bo 19121fc28d8eSLiu Bo b = btrfs_lock_root_node(root); 19131fc28d8eSLiu Bo root_lock = BTRFS_WRITE_LOCK; 19141fc28d8eSLiu Bo 19151fc28d8eSLiu Bo /* The level might have changed, check again */ 19161fc28d8eSLiu Bo level = btrfs_header_level(b); 19171fc28d8eSLiu Bo 19181fc28d8eSLiu Bo out: 1919120de408SJosef Bacik /* 1920120de408SJosef Bacik * The root may have failed to write out at some point, and thus is no 1921120de408SJosef Bacik * longer valid, return an error in this case. 1922120de408SJosef Bacik */ 1923120de408SJosef Bacik if (!extent_buffer_uptodate(b)) { 1924120de408SJosef Bacik if (root_lock) 1925120de408SJosef Bacik btrfs_tree_unlock_rw(b, root_lock); 1926120de408SJosef Bacik free_extent_buffer(b); 1927120de408SJosef Bacik return ERR_PTR(-EIO); 1928120de408SJosef Bacik } 1929120de408SJosef Bacik 19301fc28d8eSLiu Bo p->nodes[level] = b; 19311fc28d8eSLiu Bo if (!p->skip_locking) 19321fc28d8eSLiu Bo p->locks[level] = root_lock; 19331fc28d8eSLiu Bo /* 19341fc28d8eSLiu Bo * Callers are responsible for dropping b's references. 19351fc28d8eSLiu Bo */ 19361fc28d8eSLiu Bo return b; 19371fc28d8eSLiu Bo } 19381fc28d8eSLiu Bo 1939d96b3424SFilipe Manana /* 1940d96b3424SFilipe Manana * Replace the extent buffer at the lowest level of the path with a cloned 1941d96b3424SFilipe Manana * version. The purpose is to be able to use it safely, after releasing the 1942d96b3424SFilipe Manana * commit root semaphore, even if relocation is happening in parallel, the 1943d96b3424SFilipe Manana * transaction used for relocation is committed and the extent buffer is 1944d96b3424SFilipe Manana * reallocated in the next transaction. 1945d96b3424SFilipe Manana * 1946d96b3424SFilipe Manana * This is used in a context where the caller does not prevent transaction 1947d96b3424SFilipe Manana * commits from happening, either by holding a transaction handle or holding 1948d96b3424SFilipe Manana * some lock, while it's doing searches through a commit root. 1949d96b3424SFilipe Manana * At the moment it's only used for send operations. 1950d96b3424SFilipe Manana */ 1951d96b3424SFilipe Manana static int finish_need_commit_sem_search(struct btrfs_path *path) 1952d96b3424SFilipe Manana { 1953d96b3424SFilipe Manana const int i = path->lowest_level; 1954d96b3424SFilipe Manana const int slot = path->slots[i]; 1955d96b3424SFilipe Manana struct extent_buffer *lowest = path->nodes[i]; 1956d96b3424SFilipe Manana struct extent_buffer *clone; 1957d96b3424SFilipe Manana 1958d96b3424SFilipe Manana ASSERT(path->need_commit_sem); 1959d96b3424SFilipe Manana 1960d96b3424SFilipe Manana if (!lowest) 1961d96b3424SFilipe Manana return 0; 1962d96b3424SFilipe Manana 1963d96b3424SFilipe Manana lockdep_assert_held_read(&lowest->fs_info->commit_root_sem); 1964d96b3424SFilipe Manana 1965d96b3424SFilipe Manana clone = btrfs_clone_extent_buffer(lowest); 1966d96b3424SFilipe Manana if (!clone) 1967d96b3424SFilipe Manana return -ENOMEM; 1968d96b3424SFilipe Manana 1969d96b3424SFilipe Manana btrfs_release_path(path); 1970d96b3424SFilipe Manana path->nodes[i] = clone; 1971d96b3424SFilipe Manana path->slots[i] = slot; 1972d96b3424SFilipe Manana 1973d96b3424SFilipe Manana return 0; 1974d96b3424SFilipe Manana } 19751fc28d8eSLiu Bo 1976e2e58d0fSFilipe Manana static inline int search_for_key_slot(struct extent_buffer *eb, 1977e2e58d0fSFilipe Manana int search_low_slot, 1978e2e58d0fSFilipe Manana const struct btrfs_key *key, 1979e2e58d0fSFilipe Manana int prev_cmp, 1980e2e58d0fSFilipe Manana int *slot) 1981e2e58d0fSFilipe Manana { 1982e2e58d0fSFilipe Manana /* 1983e2e58d0fSFilipe Manana * If a previous call to btrfs_bin_search() on a parent node returned an 1984e2e58d0fSFilipe Manana * exact match (prev_cmp == 0), we can safely assume the target key will 1985e2e58d0fSFilipe Manana * always be at slot 0 on lower levels, since each key pointer 1986e2e58d0fSFilipe Manana * (struct btrfs_key_ptr) refers to the lowest key accessible from the 1987e2e58d0fSFilipe Manana * subtree it points to. Thus we can skip searching lower levels. 1988e2e58d0fSFilipe Manana */ 1989e2e58d0fSFilipe Manana if (prev_cmp == 0) { 1990e2e58d0fSFilipe Manana *slot = 0; 1991e2e58d0fSFilipe Manana return 0; 1992e2e58d0fSFilipe Manana } 1993e2e58d0fSFilipe Manana 1994fdf8d595SAnand Jain return btrfs_bin_search(eb, search_low_slot, key, slot); 1995e2e58d0fSFilipe Manana } 1996e2e58d0fSFilipe Manana 1997109324cfSFilipe Manana static int search_leaf(struct btrfs_trans_handle *trans, 1998109324cfSFilipe Manana struct btrfs_root *root, 1999109324cfSFilipe Manana const struct btrfs_key *key, 2000109324cfSFilipe Manana struct btrfs_path *path, 2001109324cfSFilipe Manana int ins_len, 2002109324cfSFilipe Manana int prev_cmp) 2003109324cfSFilipe Manana { 2004109324cfSFilipe Manana struct extent_buffer *leaf = path->nodes[0]; 2005109324cfSFilipe Manana int leaf_free_space = -1; 2006109324cfSFilipe Manana int search_low_slot = 0; 2007109324cfSFilipe Manana int ret; 2008109324cfSFilipe Manana bool do_bin_search = true; 2009109324cfSFilipe Manana 2010109324cfSFilipe Manana /* 2011109324cfSFilipe Manana * If we are doing an insertion, the leaf has enough free space and the 2012109324cfSFilipe Manana * destination slot for the key is not slot 0, then we can unlock our 2013109324cfSFilipe Manana * write lock on the parent, and any other upper nodes, before doing the 2014109324cfSFilipe Manana * binary search on the leaf (with search_for_key_slot()), allowing other 2015109324cfSFilipe Manana * tasks to lock the parent and any other upper nodes. 2016109324cfSFilipe Manana */ 2017109324cfSFilipe Manana if (ins_len > 0) { 2018109324cfSFilipe Manana /* 2019109324cfSFilipe Manana * Cache the leaf free space, since we will need it later and it 2020109324cfSFilipe Manana * will not change until then. 2021109324cfSFilipe Manana */ 2022109324cfSFilipe Manana leaf_free_space = btrfs_leaf_free_space(leaf); 2023109324cfSFilipe Manana 2024109324cfSFilipe Manana /* 2025109324cfSFilipe Manana * !path->locks[1] means we have a single node tree, the leaf is 2026109324cfSFilipe Manana * the root of the tree. 2027109324cfSFilipe Manana */ 2028109324cfSFilipe Manana if (path->locks[1] && leaf_free_space >= ins_len) { 2029109324cfSFilipe Manana struct btrfs_disk_key first_key; 2030109324cfSFilipe Manana 2031109324cfSFilipe Manana ASSERT(btrfs_header_nritems(leaf) > 0); 2032109324cfSFilipe Manana btrfs_item_key(leaf, &first_key, 0); 2033109324cfSFilipe Manana 2034109324cfSFilipe Manana /* 2035109324cfSFilipe Manana * Doing the extra comparison with the first key is cheap, 2036109324cfSFilipe Manana * taking into account that the first key is very likely 2037109324cfSFilipe Manana * already in a cache line because it immediately follows 2038109324cfSFilipe Manana * the extent buffer's header and we have recently accessed 2039109324cfSFilipe Manana * the header's level field. 2040109324cfSFilipe Manana */ 2041109324cfSFilipe Manana ret = comp_keys(&first_key, key); 2042109324cfSFilipe Manana if (ret < 0) { 2043109324cfSFilipe Manana /* 2044109324cfSFilipe Manana * The first key is smaller than the key we want 2045109324cfSFilipe Manana * to insert, so we are safe to unlock all upper 2046109324cfSFilipe Manana * nodes and we have to do the binary search. 2047109324cfSFilipe Manana * 2048109324cfSFilipe Manana * We do use btrfs_unlock_up_safe() and not 2049109324cfSFilipe Manana * unlock_up() because the later does not unlock 2050109324cfSFilipe Manana * nodes with a slot of 0 - we can safely unlock 2051109324cfSFilipe Manana * any node even if its slot is 0 since in this 2052109324cfSFilipe Manana * case the key does not end up at slot 0 of the 2053109324cfSFilipe Manana * leaf and there's no need to split the leaf. 2054109324cfSFilipe Manana */ 2055109324cfSFilipe Manana btrfs_unlock_up_safe(path, 1); 2056109324cfSFilipe Manana search_low_slot = 1; 2057109324cfSFilipe Manana } else { 2058109324cfSFilipe Manana /* 2059109324cfSFilipe Manana * The first key is >= then the key we want to 2060109324cfSFilipe Manana * insert, so we can skip the binary search as 2061109324cfSFilipe Manana * the target key will be at slot 0. 2062109324cfSFilipe Manana * 2063109324cfSFilipe Manana * We can not unlock upper nodes when the key is 2064109324cfSFilipe Manana * less than the first key, because we will need 2065109324cfSFilipe Manana * to update the key at slot 0 of the parent node 2066109324cfSFilipe Manana * and possibly of other upper nodes too. 2067109324cfSFilipe Manana * If the key matches the first key, then we can 2068109324cfSFilipe Manana * unlock all the upper nodes, using 2069109324cfSFilipe Manana * btrfs_unlock_up_safe() instead of unlock_up() 2070109324cfSFilipe Manana * as stated above. 2071109324cfSFilipe Manana */ 2072109324cfSFilipe Manana if (ret == 0) 2073109324cfSFilipe Manana btrfs_unlock_up_safe(path, 1); 2074109324cfSFilipe Manana /* 2075109324cfSFilipe Manana * ret is already 0 or 1, matching the result of 2076109324cfSFilipe Manana * a btrfs_bin_search() call, so there is no need 2077109324cfSFilipe Manana * to adjust it. 2078109324cfSFilipe Manana */ 2079109324cfSFilipe Manana do_bin_search = false; 2080109324cfSFilipe Manana path->slots[0] = 0; 2081109324cfSFilipe Manana } 2082109324cfSFilipe Manana } 2083109324cfSFilipe Manana } 2084109324cfSFilipe Manana 2085109324cfSFilipe Manana if (do_bin_search) { 2086109324cfSFilipe Manana ret = search_for_key_slot(leaf, search_low_slot, key, 2087109324cfSFilipe Manana prev_cmp, &path->slots[0]); 2088109324cfSFilipe Manana if (ret < 0) 2089109324cfSFilipe Manana return ret; 2090109324cfSFilipe Manana } 2091109324cfSFilipe Manana 2092109324cfSFilipe Manana if (ins_len > 0) { 2093109324cfSFilipe Manana /* 2094109324cfSFilipe Manana * Item key already exists. In this case, if we are allowed to 2095109324cfSFilipe Manana * insert the item (for example, in dir_item case, item key 2096109324cfSFilipe Manana * collision is allowed), it will be merged with the original 2097109324cfSFilipe Manana * item. Only the item size grows, no new btrfs item will be 2098109324cfSFilipe Manana * added. If search_for_extension is not set, ins_len already 2099109324cfSFilipe Manana * accounts the size btrfs_item, deduct it here so leaf space 2100109324cfSFilipe Manana * check will be correct. 2101109324cfSFilipe Manana */ 2102109324cfSFilipe Manana if (ret == 0 && !path->search_for_extension) { 2103109324cfSFilipe Manana ASSERT(ins_len >= sizeof(struct btrfs_item)); 2104109324cfSFilipe Manana ins_len -= sizeof(struct btrfs_item); 2105109324cfSFilipe Manana } 2106109324cfSFilipe Manana 2107109324cfSFilipe Manana ASSERT(leaf_free_space >= 0); 2108109324cfSFilipe Manana 2109109324cfSFilipe Manana if (leaf_free_space < ins_len) { 2110109324cfSFilipe Manana int err; 2111109324cfSFilipe Manana 2112109324cfSFilipe Manana err = split_leaf(trans, root, key, path, ins_len, 2113109324cfSFilipe Manana (ret == 0)); 2114bb8e9a60SFilipe Manana ASSERT(err <= 0); 2115bb8e9a60SFilipe Manana if (WARN_ON(err > 0)) 2116bb8e9a60SFilipe Manana err = -EUCLEAN; 2117109324cfSFilipe Manana if (err) 2118109324cfSFilipe Manana ret = err; 2119109324cfSFilipe Manana } 2120109324cfSFilipe Manana } 2121109324cfSFilipe Manana 2122109324cfSFilipe Manana return ret; 2123109324cfSFilipe Manana } 2124109324cfSFilipe Manana 2125c8c42864SChris Mason /* 21264271eceaSNikolay Borisov * btrfs_search_slot - look for a key in a tree and perform necessary 21274271eceaSNikolay Borisov * modifications to preserve tree invariants. 212874123bd7SChris Mason * 21294271eceaSNikolay Borisov * @trans: Handle of transaction, used when modifying the tree 21304271eceaSNikolay Borisov * @p: Holds all btree nodes along the search path 21314271eceaSNikolay Borisov * @root: The root node of the tree 21324271eceaSNikolay Borisov * @key: The key we are looking for 21339a664971Sethanwu * @ins_len: Indicates purpose of search: 21349a664971Sethanwu * >0 for inserts it's size of item inserted (*) 21359a664971Sethanwu * <0 for deletions 21369a664971Sethanwu * 0 for plain searches, not modifying the tree 21379a664971Sethanwu * 21389a664971Sethanwu * (*) If size of item inserted doesn't include 21399a664971Sethanwu * sizeof(struct btrfs_item), then p->search_for_extension must 21409a664971Sethanwu * be set. 21414271eceaSNikolay Borisov * @cow: boolean should CoW operations be performed. Must always be 1 21424271eceaSNikolay Borisov * when modifying the tree. 214397571fd0SChris Mason * 21444271eceaSNikolay Borisov * If @ins_len > 0, nodes and leaves will be split as we walk down the tree. 21454271eceaSNikolay Borisov * If @ins_len < 0, nodes will be merged as we walk down the tree (if possible) 21464271eceaSNikolay Borisov * 21474271eceaSNikolay Borisov * If @key is found, 0 is returned and you can find the item in the leaf level 21484271eceaSNikolay Borisov * of the path (level 0) 21494271eceaSNikolay Borisov * 21504271eceaSNikolay Borisov * If @key isn't found, 1 is returned and the leaf level of the path (level 0) 21514271eceaSNikolay Borisov * points to the slot where it should be inserted 21524271eceaSNikolay Borisov * 21534271eceaSNikolay Borisov * If an error is encountered while searching the tree a negative error number 21544271eceaSNikolay Borisov * is returned 215574123bd7SChris Mason */ 2156310712b2SOmar Sandoval int btrfs_search_slot(struct btrfs_trans_handle *trans, struct btrfs_root *root, 2157310712b2SOmar Sandoval const struct btrfs_key *key, struct btrfs_path *p, 2158310712b2SOmar Sandoval int ins_len, int cow) 2159be0e5c09SChris Mason { 2160*757171d1SLizhi Xu struct btrfs_fs_info *fs_info; 21615f39d397SChris Mason struct extent_buffer *b; 2162be0e5c09SChris Mason int slot; 2163be0e5c09SChris Mason int ret; 216433c66f43SYan Zheng int err; 2165be0e5c09SChris Mason int level; 2166925baeddSChris Mason int lowest_unlock = 1; 2167bd681513SChris Mason /* everything at write_lock_level or lower must be write locked */ 2168bd681513SChris Mason int write_lock_level = 0; 21699f3a7427SChris Mason u8 lowest_level = 0; 2170f7c79f30SChris Mason int min_write_lock_level; 2171d7396f07SFilipe David Borba Manana int prev_cmp; 21729f3a7427SChris Mason 2173*757171d1SLizhi Xu if (!root) 2174*757171d1SLizhi Xu return -EINVAL; 2175*757171d1SLizhi Xu 2176*757171d1SLizhi Xu fs_info = root->fs_info; 2177a4c853afSChenXiaoSong might_sleep(); 2178a4c853afSChenXiaoSong 21796702ed49SChris Mason lowest_level = p->lowest_level; 2180323ac95bSChris Mason WARN_ON(lowest_level && ins_len > 0); 218122b0ebdaSChris Mason WARN_ON(p->nodes[0] != NULL); 2182eb653de1SFilipe David Borba Manana BUG_ON(!cow && ins_len); 218325179201SJosef Bacik 2184857bc13fSJosef Bacik /* 2185857bc13fSJosef Bacik * For now only allow nowait for read only operations. There's no 2186857bc13fSJosef Bacik * strict reason why we can't, we just only need it for reads so it's 2187857bc13fSJosef Bacik * only implemented for reads. 2188857bc13fSJosef Bacik */ 2189857bc13fSJosef Bacik ASSERT(!p->nowait || !cow); 2190857bc13fSJosef Bacik 2191bd681513SChris Mason if (ins_len < 0) { 2192925baeddSChris Mason lowest_unlock = 2; 219365b51a00SChris Mason 2194bd681513SChris Mason /* when we are removing items, we might have to go up to level 2195bd681513SChris Mason * two as we update tree pointers Make sure we keep write 2196bd681513SChris Mason * for those levels as well 2197bd681513SChris Mason */ 2198bd681513SChris Mason write_lock_level = 2; 2199bd681513SChris Mason } else if (ins_len > 0) { 2200bd681513SChris Mason /* 2201bd681513SChris Mason * for inserting items, make sure we have a write lock on 2202bd681513SChris Mason * level 1 so we can update keys 2203bd681513SChris Mason */ 2204bd681513SChris Mason write_lock_level = 1; 2205bd681513SChris Mason } 2206bd681513SChris Mason 2207bd681513SChris Mason if (!cow) 2208bd681513SChris Mason write_lock_level = -1; 2209bd681513SChris Mason 221009a2a8f9SJosef Bacik if (cow && (p->keep_locks || p->lowest_level)) 2211bd681513SChris Mason write_lock_level = BTRFS_MAX_LEVEL; 2212bd681513SChris Mason 2213f7c79f30SChris Mason min_write_lock_level = write_lock_level; 2214f7c79f30SChris Mason 2215d96b3424SFilipe Manana if (p->need_commit_sem) { 2216d96b3424SFilipe Manana ASSERT(p->search_commit_root); 2217857bc13fSJosef Bacik if (p->nowait) { 2218857bc13fSJosef Bacik if (!down_read_trylock(&fs_info->commit_root_sem)) 2219857bc13fSJosef Bacik return -EAGAIN; 2220857bc13fSJosef Bacik } else { 2221d96b3424SFilipe Manana down_read(&fs_info->commit_root_sem); 2222d96b3424SFilipe Manana } 2223857bc13fSJosef Bacik } 2224d96b3424SFilipe Manana 2225bb803951SChris Mason again: 2226d7396f07SFilipe David Borba Manana prev_cmp = -1; 22271fc28d8eSLiu Bo b = btrfs_search_slot_get_root(root, p, write_lock_level); 2228be6821f8SFilipe Manana if (IS_ERR(b)) { 2229be6821f8SFilipe Manana ret = PTR_ERR(b); 2230be6821f8SFilipe Manana goto done; 2231be6821f8SFilipe Manana } 2232925baeddSChris Mason 2233eb60ceacSChris Mason while (b) { 2234f624d976SQu Wenruo int dec = 0; 2235f624d976SQu Wenruo 22365f39d397SChris Mason level = btrfs_header_level(b); 223765b51a00SChris Mason 223802217ed2SChris Mason if (cow) { 22399ea2c7c9SNikolay Borisov bool last_level = (level == (BTRFS_MAX_LEVEL - 1)); 22409ea2c7c9SNikolay Borisov 2241c8c42864SChris Mason /* 2242c8c42864SChris Mason * if we don't really need to cow this block 2243c8c42864SChris Mason * then we don't want to set the path blocking, 2244c8c42864SChris Mason * so we test it here 2245c8c42864SChris Mason */ 22465963ffcaSJosef Bacik if (!should_cow_block(trans, root, b)) 224765b51a00SChris Mason goto cow_done; 22485d4f98a2SYan Zheng 2249bd681513SChris Mason /* 2250bd681513SChris Mason * must have write locks on this node and the 2251bd681513SChris Mason * parent 2252bd681513SChris Mason */ 22535124e00eSJosef Bacik if (level > write_lock_level || 22545124e00eSJosef Bacik (level + 1 > write_lock_level && 22555124e00eSJosef Bacik level + 1 < BTRFS_MAX_LEVEL && 22565124e00eSJosef Bacik p->nodes[level + 1])) { 2257bd681513SChris Mason write_lock_level = level + 1; 2258bd681513SChris Mason btrfs_release_path(p); 2259bd681513SChris Mason goto again; 2260bd681513SChris Mason } 2261bd681513SChris Mason 22629ea2c7c9SNikolay Borisov if (last_level) 22639ea2c7c9SNikolay Borisov err = btrfs_cow_block(trans, root, b, NULL, 0, 22649631e4ccSJosef Bacik &b, 22659631e4ccSJosef Bacik BTRFS_NESTING_COW); 22669ea2c7c9SNikolay Borisov else 226733c66f43SYan Zheng err = btrfs_cow_block(trans, root, b, 2268e20d96d6SChris Mason p->nodes[level + 1], 22699631e4ccSJosef Bacik p->slots[level + 1], &b, 22709631e4ccSJosef Bacik BTRFS_NESTING_COW); 227133c66f43SYan Zheng if (err) { 227233c66f43SYan Zheng ret = err; 227365b51a00SChris Mason goto done; 227454aa1f4dSChris Mason } 227502217ed2SChris Mason } 227665b51a00SChris Mason cow_done: 2277eb60ceacSChris Mason p->nodes[level] = b; 2278b4ce94deSChris Mason 2279b4ce94deSChris Mason /* 2280b4ce94deSChris Mason * we have a lock on b and as long as we aren't changing 2281b4ce94deSChris Mason * the tree, there is no way to for the items in b to change. 2282b4ce94deSChris Mason * It is safe to drop the lock on our parent before we 2283b4ce94deSChris Mason * go through the expensive btree search on b. 2284b4ce94deSChris Mason * 2285eb653de1SFilipe David Borba Manana * If we're inserting or deleting (ins_len != 0), then we might 2286eb653de1SFilipe David Borba Manana * be changing slot zero, which may require changing the parent. 2287eb653de1SFilipe David Borba Manana * So, we can't drop the lock until after we know which slot 2288eb653de1SFilipe David Borba Manana * we're operating on. 2289b4ce94deSChris Mason */ 2290eb653de1SFilipe David Borba Manana if (!ins_len && !p->keep_locks) { 2291eb653de1SFilipe David Borba Manana int u = level + 1; 2292eb653de1SFilipe David Borba Manana 2293eb653de1SFilipe David Borba Manana if (u < BTRFS_MAX_LEVEL && p->locks[u]) { 2294eb653de1SFilipe David Borba Manana btrfs_tree_unlock_rw(p->nodes[u], p->locks[u]); 2295eb653de1SFilipe David Borba Manana p->locks[u] = 0; 2296eb653de1SFilipe David Borba Manana } 2297eb653de1SFilipe David Borba Manana } 2298b4ce94deSChris Mason 2299e2e58d0fSFilipe Manana if (level == 0) { 2300109324cfSFilipe Manana if (ins_len > 0) 2301e5e1c174SFilipe Manana ASSERT(write_lock_level >= 1); 2302bd681513SChris Mason 2303109324cfSFilipe Manana ret = search_leaf(trans, root, key, p, ins_len, prev_cmp); 2304459931ecSChris Mason if (!p->search_for_split) 2305f7c79f30SChris Mason unlock_up(p, level, lowest_unlock, 23064b6f8e96SLiu Bo min_write_lock_level, NULL); 230765b51a00SChris Mason goto done; 230865b51a00SChris Mason } 2309e2e58d0fSFilipe Manana 2310e2e58d0fSFilipe Manana ret = search_for_key_slot(b, 0, key, prev_cmp, &slot); 2311e2e58d0fSFilipe Manana if (ret < 0) 2312e2e58d0fSFilipe Manana goto done; 2313e2e58d0fSFilipe Manana prev_cmp = ret; 2314e2e58d0fSFilipe Manana 2315f624d976SQu Wenruo if (ret && slot > 0) { 2316f624d976SQu Wenruo dec = 1; 2317f624d976SQu Wenruo slot--; 2318f624d976SQu Wenruo } 2319f624d976SQu Wenruo p->slots[level] = slot; 2320f624d976SQu Wenruo err = setup_nodes_for_search(trans, root, p, b, level, ins_len, 2321f624d976SQu Wenruo &write_lock_level); 2322f624d976SQu Wenruo if (err == -EAGAIN) 2323f624d976SQu Wenruo goto again; 2324f624d976SQu Wenruo if (err) { 2325f624d976SQu Wenruo ret = err; 2326f624d976SQu Wenruo goto done; 2327f624d976SQu Wenruo } 2328f624d976SQu Wenruo b = p->nodes[level]; 2329f624d976SQu Wenruo slot = p->slots[level]; 2330f624d976SQu Wenruo 2331f624d976SQu Wenruo /* 2332f624d976SQu Wenruo * Slot 0 is special, if we change the key we have to update 2333f624d976SQu Wenruo * the parent pointer which means we must have a write lock on 2334f624d976SQu Wenruo * the parent 2335f624d976SQu Wenruo */ 2336f624d976SQu Wenruo if (slot == 0 && ins_len && write_lock_level < level + 1) { 2337f624d976SQu Wenruo write_lock_level = level + 1; 2338f624d976SQu Wenruo btrfs_release_path(p); 2339f624d976SQu Wenruo goto again; 2340f624d976SQu Wenruo } 2341f624d976SQu Wenruo 2342f624d976SQu Wenruo unlock_up(p, level, lowest_unlock, min_write_lock_level, 2343f624d976SQu Wenruo &write_lock_level); 2344f624d976SQu Wenruo 2345f624d976SQu Wenruo if (level == lowest_level) { 2346f624d976SQu Wenruo if (dec) 2347f624d976SQu Wenruo p->slots[level]++; 2348f624d976SQu Wenruo goto done; 2349f624d976SQu Wenruo } 2350f624d976SQu Wenruo 2351f624d976SQu Wenruo err = read_block_for_search(root, p, &b, level, slot, key); 2352f624d976SQu Wenruo if (err == -EAGAIN) 2353f624d976SQu Wenruo goto again; 2354f624d976SQu Wenruo if (err) { 2355f624d976SQu Wenruo ret = err; 2356f624d976SQu Wenruo goto done; 2357f624d976SQu Wenruo } 2358f624d976SQu Wenruo 2359f624d976SQu Wenruo if (!p->skip_locking) { 2360f624d976SQu Wenruo level = btrfs_header_level(b); 2361b40130b2SJosef Bacik 2362b40130b2SJosef Bacik btrfs_maybe_reset_lockdep_class(root, b); 2363b40130b2SJosef Bacik 2364f624d976SQu Wenruo if (level <= write_lock_level) { 2365f624d976SQu Wenruo btrfs_tree_lock(b); 2366f624d976SQu Wenruo p->locks[level] = BTRFS_WRITE_LOCK; 2367f624d976SQu Wenruo } else { 2368857bc13fSJosef Bacik if (p->nowait) { 2369857bc13fSJosef Bacik if (!btrfs_try_tree_read_lock(b)) { 2370857bc13fSJosef Bacik free_extent_buffer(b); 2371857bc13fSJosef Bacik ret = -EAGAIN; 2372857bc13fSJosef Bacik goto done; 2373857bc13fSJosef Bacik } 2374857bc13fSJosef Bacik } else { 2375fe596ca3SJosef Bacik btrfs_tree_read_lock(b); 2376857bc13fSJosef Bacik } 2377f624d976SQu Wenruo p->locks[level] = BTRFS_READ_LOCK; 2378f624d976SQu Wenruo } 2379f624d976SQu Wenruo p->nodes[level] = b; 2380f624d976SQu Wenruo } 238165b51a00SChris Mason } 238265b51a00SChris Mason ret = 1; 238365b51a00SChris Mason done: 23845f5bc6b1SFilipe Manana if (ret < 0 && !p->skip_release_on_error) 2385b3b4aa74SDavid Sterba btrfs_release_path(p); 2386d96b3424SFilipe Manana 2387d96b3424SFilipe Manana if (p->need_commit_sem) { 2388d96b3424SFilipe Manana int ret2; 2389d96b3424SFilipe Manana 2390d96b3424SFilipe Manana ret2 = finish_need_commit_sem_search(p); 2391d96b3424SFilipe Manana up_read(&fs_info->commit_root_sem); 2392d96b3424SFilipe Manana if (ret2) 2393d96b3424SFilipe Manana ret = ret2; 2394d96b3424SFilipe Manana } 2395d96b3424SFilipe Manana 2396be0e5c09SChris Mason return ret; 2397be0e5c09SChris Mason } 2398f75e2b79SJosef Bacik ALLOW_ERROR_INJECTION(btrfs_search_slot, ERRNO); 2399be0e5c09SChris Mason 240074123bd7SChris Mason /* 24015d9e75c4SJan Schmidt * Like btrfs_search_slot, this looks for a key in the given tree. It uses the 24025d9e75c4SJan Schmidt * current state of the tree together with the operations recorded in the tree 24035d9e75c4SJan Schmidt * modification log to search for the key in a previous version of this tree, as 24045d9e75c4SJan Schmidt * denoted by the time_seq parameter. 24055d9e75c4SJan Schmidt * 24065d9e75c4SJan Schmidt * Naturally, there is no support for insert, delete or cow operations. 24075d9e75c4SJan Schmidt * 24085d9e75c4SJan Schmidt * The resulting path and return value will be set up as if we called 24095d9e75c4SJan Schmidt * btrfs_search_slot at that point in time with ins_len and cow both set to 0. 24105d9e75c4SJan Schmidt */ 2411310712b2SOmar Sandoval int btrfs_search_old_slot(struct btrfs_root *root, const struct btrfs_key *key, 24125d9e75c4SJan Schmidt struct btrfs_path *p, u64 time_seq) 24135d9e75c4SJan Schmidt { 24140b246afaSJeff Mahoney struct btrfs_fs_info *fs_info = root->fs_info; 24155d9e75c4SJan Schmidt struct extent_buffer *b; 24165d9e75c4SJan Schmidt int slot; 24175d9e75c4SJan Schmidt int ret; 24185d9e75c4SJan Schmidt int err; 24195d9e75c4SJan Schmidt int level; 24205d9e75c4SJan Schmidt int lowest_unlock = 1; 24215d9e75c4SJan Schmidt u8 lowest_level = 0; 24225d9e75c4SJan Schmidt 24235d9e75c4SJan Schmidt lowest_level = p->lowest_level; 24245d9e75c4SJan Schmidt WARN_ON(p->nodes[0] != NULL); 2425c922b016SStefan Roesch ASSERT(!p->nowait); 24265d9e75c4SJan Schmidt 24275d9e75c4SJan Schmidt if (p->search_commit_root) { 24285d9e75c4SJan Schmidt BUG_ON(time_seq); 24295d9e75c4SJan Schmidt return btrfs_search_slot(NULL, root, key, p, 0, 0); 24305d9e75c4SJan Schmidt } 24315d9e75c4SJan Schmidt 24325d9e75c4SJan Schmidt again: 2433f3a84ccdSFilipe Manana b = btrfs_get_old_root(root, time_seq); 2434315bed43SNikolay Borisov if (!b) { 2435315bed43SNikolay Borisov ret = -EIO; 2436315bed43SNikolay Borisov goto done; 2437315bed43SNikolay Borisov } 24385d9e75c4SJan Schmidt level = btrfs_header_level(b); 24395d9e75c4SJan Schmidt p->locks[level] = BTRFS_READ_LOCK; 24405d9e75c4SJan Schmidt 24415d9e75c4SJan Schmidt while (b) { 2442abe9339dSQu Wenruo int dec = 0; 2443abe9339dSQu Wenruo 24445d9e75c4SJan Schmidt level = btrfs_header_level(b); 24455d9e75c4SJan Schmidt p->nodes[level] = b; 24465d9e75c4SJan Schmidt 24475d9e75c4SJan Schmidt /* 24485d9e75c4SJan Schmidt * we have a lock on b and as long as we aren't changing 24495d9e75c4SJan Schmidt * the tree, there is no way to for the items in b to change. 24505d9e75c4SJan Schmidt * It is safe to drop the lock on our parent before we 24515d9e75c4SJan Schmidt * go through the expensive btree search on b. 24525d9e75c4SJan Schmidt */ 24535d9e75c4SJan Schmidt btrfs_unlock_up_safe(p, level + 1); 24545d9e75c4SJan Schmidt 2455fdf8d595SAnand Jain ret = btrfs_bin_search(b, 0, key, &slot); 2456cbca7d59SFilipe Manana if (ret < 0) 2457cbca7d59SFilipe Manana goto done; 24585d9e75c4SJan Schmidt 2459abe9339dSQu Wenruo if (level == 0) { 2460abe9339dSQu Wenruo p->slots[level] = slot; 2461abe9339dSQu Wenruo unlock_up(p, level, lowest_unlock, 0, NULL); 2462abe9339dSQu Wenruo goto done; 2463abe9339dSQu Wenruo } 2464abe9339dSQu Wenruo 24655d9e75c4SJan Schmidt if (ret && slot > 0) { 24665d9e75c4SJan Schmidt dec = 1; 2467abe9339dSQu Wenruo slot--; 24685d9e75c4SJan Schmidt } 24695d9e75c4SJan Schmidt p->slots[level] = slot; 24705d9e75c4SJan Schmidt unlock_up(p, level, lowest_unlock, 0, NULL); 24715d9e75c4SJan Schmidt 24725d9e75c4SJan Schmidt if (level == lowest_level) { 24735d9e75c4SJan Schmidt if (dec) 24745d9e75c4SJan Schmidt p->slots[level]++; 24755d9e75c4SJan Schmidt goto done; 24765d9e75c4SJan Schmidt } 24775d9e75c4SJan Schmidt 2478abe9339dSQu Wenruo err = read_block_for_search(root, p, &b, level, slot, key); 24795d9e75c4SJan Schmidt if (err == -EAGAIN) 24805d9e75c4SJan Schmidt goto again; 24815d9e75c4SJan Schmidt if (err) { 24825d9e75c4SJan Schmidt ret = err; 24835d9e75c4SJan Schmidt goto done; 24845d9e75c4SJan Schmidt } 24855d9e75c4SJan Schmidt 24865d9e75c4SJan Schmidt level = btrfs_header_level(b); 24875d9e75c4SJan Schmidt btrfs_tree_read_lock(b); 2488f3a84ccdSFilipe Manana b = btrfs_tree_mod_log_rewind(fs_info, p, b, time_seq); 2489db7f3436SJosef Bacik if (!b) { 2490db7f3436SJosef Bacik ret = -ENOMEM; 2491db7f3436SJosef Bacik goto done; 2492db7f3436SJosef Bacik } 24935d9e75c4SJan Schmidt p->locks[level] = BTRFS_READ_LOCK; 24945d9e75c4SJan Schmidt p->nodes[level] = b; 24955d9e75c4SJan Schmidt } 24965d9e75c4SJan Schmidt ret = 1; 24975d9e75c4SJan Schmidt done: 24985d9e75c4SJan Schmidt if (ret < 0) 24995d9e75c4SJan Schmidt btrfs_release_path(p); 25005d9e75c4SJan Schmidt 25015d9e75c4SJan Schmidt return ret; 25025d9e75c4SJan Schmidt } 25035d9e75c4SJan Schmidt 25045d9e75c4SJan Schmidt /* 2505f469c8bdSFilipe Manana * Search the tree again to find a leaf with smaller keys. 2506f469c8bdSFilipe Manana * Returns 0 if it found something. 2507f469c8bdSFilipe Manana * Returns 1 if there are no smaller keys. 2508f469c8bdSFilipe Manana * Returns < 0 on error. 2509f469c8bdSFilipe Manana * 2510f469c8bdSFilipe Manana * This may release the path, and so you may lose any locks held at the 2511f469c8bdSFilipe Manana * time you call it. 2512f469c8bdSFilipe Manana */ 2513f469c8bdSFilipe Manana static int btrfs_prev_leaf(struct btrfs_root *root, struct btrfs_path *path) 2514f469c8bdSFilipe Manana { 2515f469c8bdSFilipe Manana struct btrfs_key key; 2516f469c8bdSFilipe Manana struct btrfs_key orig_key; 2517f469c8bdSFilipe Manana struct btrfs_disk_key found_key; 2518f469c8bdSFilipe Manana int ret; 2519f469c8bdSFilipe Manana 2520f469c8bdSFilipe Manana btrfs_item_key_to_cpu(path->nodes[0], &key, 0); 2521f469c8bdSFilipe Manana orig_key = key; 2522f469c8bdSFilipe Manana 2523f469c8bdSFilipe Manana if (key.offset > 0) { 2524f469c8bdSFilipe Manana key.offset--; 2525f469c8bdSFilipe Manana } else if (key.type > 0) { 2526f469c8bdSFilipe Manana key.type--; 2527f469c8bdSFilipe Manana key.offset = (u64)-1; 2528f469c8bdSFilipe Manana } else if (key.objectid > 0) { 2529f469c8bdSFilipe Manana key.objectid--; 2530f469c8bdSFilipe Manana key.type = (u8)-1; 2531f469c8bdSFilipe Manana key.offset = (u64)-1; 2532f469c8bdSFilipe Manana } else { 2533f469c8bdSFilipe Manana return 1; 2534f469c8bdSFilipe Manana } 2535f469c8bdSFilipe Manana 2536f469c8bdSFilipe Manana btrfs_release_path(path); 2537f469c8bdSFilipe Manana ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); 2538f469c8bdSFilipe Manana if (ret <= 0) 2539f469c8bdSFilipe Manana return ret; 2540f469c8bdSFilipe Manana 2541f469c8bdSFilipe Manana /* 2542f469c8bdSFilipe Manana * Previous key not found. Even if we were at slot 0 of the leaf we had 2543f469c8bdSFilipe Manana * before releasing the path and calling btrfs_search_slot(), we now may 2544f469c8bdSFilipe Manana * be in a slot pointing to the same original key - this can happen if 2545f469c8bdSFilipe Manana * after we released the path, one of more items were moved from a 2546f469c8bdSFilipe Manana * sibling leaf into the front of the leaf we had due to an insertion 2547f469c8bdSFilipe Manana * (see push_leaf_right()). 2548f469c8bdSFilipe Manana * If we hit this case and our slot is > 0 and just decrement the slot 2549f469c8bdSFilipe Manana * so that the caller does not process the same key again, which may or 2550f469c8bdSFilipe Manana * may not break the caller, depending on its logic. 2551f469c8bdSFilipe Manana */ 2552f469c8bdSFilipe Manana if (path->slots[0] < btrfs_header_nritems(path->nodes[0])) { 2553f469c8bdSFilipe Manana btrfs_item_key(path->nodes[0], &found_key, path->slots[0]); 2554f469c8bdSFilipe Manana ret = comp_keys(&found_key, &orig_key); 2555f469c8bdSFilipe Manana if (ret == 0) { 2556f469c8bdSFilipe Manana if (path->slots[0] > 0) { 2557f469c8bdSFilipe Manana path->slots[0]--; 2558f469c8bdSFilipe Manana return 0; 2559f469c8bdSFilipe Manana } 2560f469c8bdSFilipe Manana /* 2561f469c8bdSFilipe Manana * At slot 0, same key as before, it means orig_key is 2562f469c8bdSFilipe Manana * the lowest, leftmost, key in the tree. We're done. 2563f469c8bdSFilipe Manana */ 2564f469c8bdSFilipe Manana return 1; 2565f469c8bdSFilipe Manana } 2566f469c8bdSFilipe Manana } 2567f469c8bdSFilipe Manana 2568f469c8bdSFilipe Manana btrfs_item_key(path->nodes[0], &found_key, 0); 2569f469c8bdSFilipe Manana ret = comp_keys(&found_key, &key); 2570f469c8bdSFilipe Manana /* 2571f469c8bdSFilipe Manana * We might have had an item with the previous key in the tree right 2572f469c8bdSFilipe Manana * before we released our path. And after we released our path, that 2573f469c8bdSFilipe Manana * item might have been pushed to the first slot (0) of the leaf we 2574f469c8bdSFilipe Manana * were holding due to a tree balance. Alternatively, an item with the 2575f469c8bdSFilipe Manana * previous key can exist as the only element of a leaf (big fat item). 2576f469c8bdSFilipe Manana * Therefore account for these 2 cases, so that our callers (like 2577f469c8bdSFilipe Manana * btrfs_previous_item) don't miss an existing item with a key matching 2578f469c8bdSFilipe Manana * the previous key we computed above. 2579f469c8bdSFilipe Manana */ 2580f469c8bdSFilipe Manana if (ret <= 0) 2581f469c8bdSFilipe Manana return 0; 2582f469c8bdSFilipe Manana return 1; 2583f469c8bdSFilipe Manana } 2584f469c8bdSFilipe Manana 2585f469c8bdSFilipe Manana /* 25862f38b3e1SArne Jansen * helper to use instead of search slot if no exact match is needed but 25872f38b3e1SArne Jansen * instead the next or previous item should be returned. 25882f38b3e1SArne Jansen * When find_higher is true, the next higher item is returned, the next lower 25892f38b3e1SArne Jansen * otherwise. 25902f38b3e1SArne Jansen * When return_any and find_higher are both true, and no higher item is found, 25912f38b3e1SArne Jansen * return the next lower instead. 25922f38b3e1SArne Jansen * When return_any is true and find_higher is false, and no lower item is found, 25932f38b3e1SArne Jansen * return the next higher instead. 25942f38b3e1SArne Jansen * It returns 0 if any item is found, 1 if none is found (tree empty), and 25952f38b3e1SArne Jansen * < 0 on error 25962f38b3e1SArne Jansen */ 25972f38b3e1SArne Jansen int btrfs_search_slot_for_read(struct btrfs_root *root, 2598310712b2SOmar Sandoval const struct btrfs_key *key, 2599310712b2SOmar Sandoval struct btrfs_path *p, int find_higher, 2600310712b2SOmar Sandoval int return_any) 26012f38b3e1SArne Jansen { 26022f38b3e1SArne Jansen int ret; 26032f38b3e1SArne Jansen struct extent_buffer *leaf; 26042f38b3e1SArne Jansen 26052f38b3e1SArne Jansen again: 26062f38b3e1SArne Jansen ret = btrfs_search_slot(NULL, root, key, p, 0, 0); 26072f38b3e1SArne Jansen if (ret <= 0) 26082f38b3e1SArne Jansen return ret; 26092f38b3e1SArne Jansen /* 26102f38b3e1SArne Jansen * a return value of 1 means the path is at the position where the 26112f38b3e1SArne Jansen * item should be inserted. Normally this is the next bigger item, 26122f38b3e1SArne Jansen * but in case the previous item is the last in a leaf, path points 26132f38b3e1SArne Jansen * to the first free slot in the previous leaf, i.e. at an invalid 26142f38b3e1SArne Jansen * item. 26152f38b3e1SArne Jansen */ 26162f38b3e1SArne Jansen leaf = p->nodes[0]; 26172f38b3e1SArne Jansen 26182f38b3e1SArne Jansen if (find_higher) { 26192f38b3e1SArne Jansen if (p->slots[0] >= btrfs_header_nritems(leaf)) { 26202f38b3e1SArne Jansen ret = btrfs_next_leaf(root, p); 26212f38b3e1SArne Jansen if (ret <= 0) 26222f38b3e1SArne Jansen return ret; 26232f38b3e1SArne Jansen if (!return_any) 26242f38b3e1SArne Jansen return 1; 26252f38b3e1SArne Jansen /* 26262f38b3e1SArne Jansen * no higher item found, return the next 26272f38b3e1SArne Jansen * lower instead 26282f38b3e1SArne Jansen */ 26292f38b3e1SArne Jansen return_any = 0; 26302f38b3e1SArne Jansen find_higher = 0; 26312f38b3e1SArne Jansen btrfs_release_path(p); 26322f38b3e1SArne Jansen goto again; 26332f38b3e1SArne Jansen } 26342f38b3e1SArne Jansen } else { 26352f38b3e1SArne Jansen if (p->slots[0] == 0) { 26362f38b3e1SArne Jansen ret = btrfs_prev_leaf(root, p); 2637e6793769SArne Jansen if (ret < 0) 26382f38b3e1SArne Jansen return ret; 2639e6793769SArne Jansen if (!ret) { 264023c6bf6aSFilipe David Borba Manana leaf = p->nodes[0]; 264123c6bf6aSFilipe David Borba Manana if (p->slots[0] == btrfs_header_nritems(leaf)) 264223c6bf6aSFilipe David Borba Manana p->slots[0]--; 2643e6793769SArne Jansen return 0; 2644e6793769SArne Jansen } 26452f38b3e1SArne Jansen if (!return_any) 26462f38b3e1SArne Jansen return 1; 26472f38b3e1SArne Jansen /* 26482f38b3e1SArne Jansen * no lower item found, return the next 26492f38b3e1SArne Jansen * higher instead 26502f38b3e1SArne Jansen */ 26512f38b3e1SArne Jansen return_any = 0; 26522f38b3e1SArne Jansen find_higher = 1; 26532f38b3e1SArne Jansen btrfs_release_path(p); 26542f38b3e1SArne Jansen goto again; 2655e6793769SArne Jansen } else { 26562f38b3e1SArne Jansen --p->slots[0]; 26572f38b3e1SArne Jansen } 26582f38b3e1SArne Jansen } 26592f38b3e1SArne Jansen return 0; 26602f38b3e1SArne Jansen } 26612f38b3e1SArne Jansen 26622f38b3e1SArne Jansen /* 26630ff40a91SMarcos Paulo de Souza * Execute search and call btrfs_previous_item to traverse backwards if the item 26640ff40a91SMarcos Paulo de Souza * was not found. 26650ff40a91SMarcos Paulo de Souza * 26660ff40a91SMarcos Paulo de Souza * Return 0 if found, 1 if not found and < 0 if error. 26670ff40a91SMarcos Paulo de Souza */ 26680ff40a91SMarcos Paulo de Souza int btrfs_search_backwards(struct btrfs_root *root, struct btrfs_key *key, 26690ff40a91SMarcos Paulo de Souza struct btrfs_path *path) 26700ff40a91SMarcos Paulo de Souza { 26710ff40a91SMarcos Paulo de Souza int ret; 26720ff40a91SMarcos Paulo de Souza 26730ff40a91SMarcos Paulo de Souza ret = btrfs_search_slot(NULL, root, key, path, 0, 0); 26740ff40a91SMarcos Paulo de Souza if (ret > 0) 26750ff40a91SMarcos Paulo de Souza ret = btrfs_previous_item(root, path, key->objectid, key->type); 26760ff40a91SMarcos Paulo de Souza 26770ff40a91SMarcos Paulo de Souza if (ret == 0) 26780ff40a91SMarcos Paulo de Souza btrfs_item_key_to_cpu(path->nodes[0], key, path->slots[0]); 26790ff40a91SMarcos Paulo de Souza 26800ff40a91SMarcos Paulo de Souza return ret; 26810ff40a91SMarcos Paulo de Souza } 26820ff40a91SMarcos Paulo de Souza 268343dd529aSDavid Sterba /* 268462142be3SGabriel Niebler * Search for a valid slot for the given path. 268562142be3SGabriel Niebler * 268662142be3SGabriel Niebler * @root: The root node of the tree. 268762142be3SGabriel Niebler * @key: Will contain a valid item if found. 268862142be3SGabriel Niebler * @path: The starting point to validate the slot. 268962142be3SGabriel Niebler * 269062142be3SGabriel Niebler * Return: 0 if the item is valid 269162142be3SGabriel Niebler * 1 if not found 269262142be3SGabriel Niebler * <0 if error. 269362142be3SGabriel Niebler */ 269462142be3SGabriel Niebler int btrfs_get_next_valid_item(struct btrfs_root *root, struct btrfs_key *key, 269562142be3SGabriel Niebler struct btrfs_path *path) 269662142be3SGabriel Niebler { 2697524f14bbSFilipe Manana if (path->slots[0] >= btrfs_header_nritems(path->nodes[0])) { 269862142be3SGabriel Niebler int ret; 269962142be3SGabriel Niebler 270062142be3SGabriel Niebler ret = btrfs_next_leaf(root, path); 270162142be3SGabriel Niebler if (ret) 270262142be3SGabriel Niebler return ret; 270362142be3SGabriel Niebler } 2704524f14bbSFilipe Manana 2705524f14bbSFilipe Manana btrfs_item_key_to_cpu(path->nodes[0], key, path->slots[0]); 270662142be3SGabriel Niebler return 0; 270762142be3SGabriel Niebler } 270862142be3SGabriel Niebler 27090ff40a91SMarcos Paulo de Souza /* 271074123bd7SChris Mason * adjust the pointers going up the tree, starting at level 271174123bd7SChris Mason * making sure the right key of each node is points to 'key'. 271274123bd7SChris Mason * This is used after shifting pointers to the left, so it stops 271374123bd7SChris Mason * fixing up pointers when a given leaf/node is not in slot 0 of the 271474123bd7SChris Mason * higher levels 2715aa5d6bedSChris Mason * 271674123bd7SChris Mason */ 2717d5e09e38SFilipe Manana static void fixup_low_keys(struct btrfs_trans_handle *trans, 2718d5e09e38SFilipe Manana struct btrfs_path *path, 27195f39d397SChris Mason struct btrfs_disk_key *key, int level) 2720be0e5c09SChris Mason { 2721be0e5c09SChris Mason int i; 27225f39d397SChris Mason struct extent_buffer *t; 27230e82bcfeSDavid Sterba int ret; 27245f39d397SChris Mason 2725234b63a0SChris Mason for (i = level; i < BTRFS_MAX_LEVEL; i++) { 2726be0e5c09SChris Mason int tslot = path->slots[i]; 27270e82bcfeSDavid Sterba 2728eb60ceacSChris Mason if (!path->nodes[i]) 2729be0e5c09SChris Mason break; 27305f39d397SChris Mason t = path->nodes[i]; 2731f3a84ccdSFilipe Manana ret = btrfs_tree_mod_log_insert_key(t, tslot, 273233cff222SFilipe Manana BTRFS_MOD_LOG_KEY_REPLACE); 27330e82bcfeSDavid Sterba BUG_ON(ret < 0); 27345f39d397SChris Mason btrfs_set_node_key(t, key, tslot); 2735d5e09e38SFilipe Manana btrfs_mark_buffer_dirty(trans, path->nodes[i]); 2736be0e5c09SChris Mason if (tslot != 0) 2737be0e5c09SChris Mason break; 2738be0e5c09SChris Mason } 2739be0e5c09SChris Mason } 2740be0e5c09SChris Mason 274174123bd7SChris Mason /* 274231840ae1SZheng Yan * update item key. 274331840ae1SZheng Yan * 274431840ae1SZheng Yan * This function isn't completely safe. It's the caller's responsibility 274531840ae1SZheng Yan * that the new key won't break the order 274631840ae1SZheng Yan */ 2747d5e09e38SFilipe Manana void btrfs_set_item_key_safe(struct btrfs_trans_handle *trans, 2748b7a0365eSDaniel Dressler struct btrfs_path *path, 2749310712b2SOmar Sandoval const struct btrfs_key *new_key) 275031840ae1SZheng Yan { 2751d5e09e38SFilipe Manana struct btrfs_fs_info *fs_info = trans->fs_info; 275231840ae1SZheng Yan struct btrfs_disk_key disk_key; 275331840ae1SZheng Yan struct extent_buffer *eb; 275431840ae1SZheng Yan int slot; 275531840ae1SZheng Yan 275631840ae1SZheng Yan eb = path->nodes[0]; 275731840ae1SZheng Yan slot = path->slots[0]; 275831840ae1SZheng Yan if (slot > 0) { 275931840ae1SZheng Yan btrfs_item_key(eb, &disk_key, slot - 1); 27607c15d410SQu Wenruo if (unlikely(comp_keys(&disk_key, new_key) >= 0)) { 2761eee3b811SQu Wenruo btrfs_print_leaf(eb); 27627c15d410SQu Wenruo btrfs_crit(fs_info, 27637c15d410SQu Wenruo "slot %u key (%llu %u %llu) new key (%llu %u %llu)", 27647c15d410SQu Wenruo slot, btrfs_disk_key_objectid(&disk_key), 27657c15d410SQu Wenruo btrfs_disk_key_type(&disk_key), 27667c15d410SQu Wenruo btrfs_disk_key_offset(&disk_key), 27677c15d410SQu Wenruo new_key->objectid, new_key->type, 27687c15d410SQu Wenruo new_key->offset); 27697c15d410SQu Wenruo BUG(); 27707c15d410SQu Wenruo } 277131840ae1SZheng Yan } 277231840ae1SZheng Yan if (slot < btrfs_header_nritems(eb) - 1) { 277331840ae1SZheng Yan btrfs_item_key(eb, &disk_key, slot + 1); 27747c15d410SQu Wenruo if (unlikely(comp_keys(&disk_key, new_key) <= 0)) { 2775eee3b811SQu Wenruo btrfs_print_leaf(eb); 27767c15d410SQu Wenruo btrfs_crit(fs_info, 27777c15d410SQu Wenruo "slot %u key (%llu %u %llu) new key (%llu %u %llu)", 27787c15d410SQu Wenruo slot, btrfs_disk_key_objectid(&disk_key), 27797c15d410SQu Wenruo btrfs_disk_key_type(&disk_key), 27807c15d410SQu Wenruo btrfs_disk_key_offset(&disk_key), 27817c15d410SQu Wenruo new_key->objectid, new_key->type, 27827c15d410SQu Wenruo new_key->offset); 27837c15d410SQu Wenruo BUG(); 27847c15d410SQu Wenruo } 278531840ae1SZheng Yan } 278631840ae1SZheng Yan 278731840ae1SZheng Yan btrfs_cpu_key_to_disk(&disk_key, new_key); 278831840ae1SZheng Yan btrfs_set_item_key(eb, &disk_key, slot); 2789d5e09e38SFilipe Manana btrfs_mark_buffer_dirty(trans, eb); 279031840ae1SZheng Yan if (slot == 0) 2791d5e09e38SFilipe Manana fixup_low_keys(trans, path, &disk_key, 1); 279231840ae1SZheng Yan } 279331840ae1SZheng Yan 279431840ae1SZheng Yan /* 2795d16c702fSQu Wenruo * Check key order of two sibling extent buffers. 2796d16c702fSQu Wenruo * 2797d16c702fSQu Wenruo * Return true if something is wrong. 2798d16c702fSQu Wenruo * Return false if everything is fine. 2799d16c702fSQu Wenruo * 2800d16c702fSQu Wenruo * Tree-checker only works inside one tree block, thus the following 2801d16c702fSQu Wenruo * corruption can not be detected by tree-checker: 2802d16c702fSQu Wenruo * 2803d16c702fSQu Wenruo * Leaf @left | Leaf @right 2804d16c702fSQu Wenruo * -------------------------------------------------------------- 2805d16c702fSQu Wenruo * | 1 | 2 | 3 | 4 | 5 | f6 | | 7 | 8 | 2806d16c702fSQu Wenruo * 2807d16c702fSQu Wenruo * Key f6 in leaf @left itself is valid, but not valid when the next 2808d16c702fSQu Wenruo * key in leaf @right is 7. 2809d16c702fSQu Wenruo * This can only be checked at tree block merge time. 2810d16c702fSQu Wenruo * And since tree checker has ensured all key order in each tree block 2811d16c702fSQu Wenruo * is correct, we only need to bother the last key of @left and the first 2812d16c702fSQu Wenruo * key of @right. 2813d16c702fSQu Wenruo */ 2814d16c702fSQu Wenruo static bool check_sibling_keys(struct extent_buffer *left, 2815d16c702fSQu Wenruo struct extent_buffer *right) 2816d16c702fSQu Wenruo { 2817d16c702fSQu Wenruo struct btrfs_key left_last; 2818d16c702fSQu Wenruo struct btrfs_key right_first; 2819d16c702fSQu Wenruo int level = btrfs_header_level(left); 2820d16c702fSQu Wenruo int nr_left = btrfs_header_nritems(left); 2821d16c702fSQu Wenruo int nr_right = btrfs_header_nritems(right); 2822d16c702fSQu Wenruo 2823d16c702fSQu Wenruo /* No key to check in one of the tree blocks */ 2824d16c702fSQu Wenruo if (!nr_left || !nr_right) 2825d16c702fSQu Wenruo return false; 2826d16c702fSQu Wenruo 2827d16c702fSQu Wenruo if (level) { 2828d16c702fSQu Wenruo btrfs_node_key_to_cpu(left, &left_last, nr_left - 1); 2829d16c702fSQu Wenruo btrfs_node_key_to_cpu(right, &right_first, 0); 2830d16c702fSQu Wenruo } else { 2831d16c702fSQu Wenruo btrfs_item_key_to_cpu(left, &left_last, nr_left - 1); 2832d16c702fSQu Wenruo btrfs_item_key_to_cpu(right, &right_first, 0); 2833d16c702fSQu Wenruo } 2834d16c702fSQu Wenruo 283588ad95b0SFilipe Manana if (unlikely(btrfs_comp_cpu_keys(&left_last, &right_first) >= 0)) { 2836a2cea677SFilipe Manana btrfs_crit(left->fs_info, "left extent buffer:"); 2837a2cea677SFilipe Manana btrfs_print_tree(left, false); 2838a2cea677SFilipe Manana btrfs_crit(left->fs_info, "right extent buffer:"); 2839a2cea677SFilipe Manana btrfs_print_tree(right, false); 2840d16c702fSQu Wenruo btrfs_crit(left->fs_info, 2841d16c702fSQu Wenruo "bad key order, sibling blocks, left last (%llu %u %llu) right first (%llu %u %llu)", 2842d16c702fSQu Wenruo left_last.objectid, left_last.type, 2843d16c702fSQu Wenruo left_last.offset, right_first.objectid, 2844d16c702fSQu Wenruo right_first.type, right_first.offset); 2845d16c702fSQu Wenruo return true; 2846d16c702fSQu Wenruo } 2847d16c702fSQu Wenruo return false; 2848d16c702fSQu Wenruo } 2849d16c702fSQu Wenruo 2850d16c702fSQu Wenruo /* 285174123bd7SChris Mason * try to push data from one node into the next node left in the 285279f95c82SChris Mason * tree. 2853aa5d6bedSChris Mason * 2854aa5d6bedSChris Mason * returns 0 if some ptrs were pushed left, < 0 if there was some horrible 2855aa5d6bedSChris Mason * error, and > 0 if there was no room in the left hand block. 285674123bd7SChris Mason */ 285798ed5174SChris Mason static int push_node_left(struct btrfs_trans_handle *trans, 28582ff7e61eSJeff Mahoney struct extent_buffer *dst, 2859971a1f66SChris Mason struct extent_buffer *src, int empty) 2860be0e5c09SChris Mason { 2861d30a668fSDavid Sterba struct btrfs_fs_info *fs_info = trans->fs_info; 2862be0e5c09SChris Mason int push_items = 0; 2863bb803951SChris Mason int src_nritems; 2864bb803951SChris Mason int dst_nritems; 2865aa5d6bedSChris Mason int ret = 0; 2866be0e5c09SChris Mason 28675f39d397SChris Mason src_nritems = btrfs_header_nritems(src); 28685f39d397SChris Mason dst_nritems = btrfs_header_nritems(dst); 28690b246afaSJeff Mahoney push_items = BTRFS_NODEPTRS_PER_BLOCK(fs_info) - dst_nritems; 28707bb86316SChris Mason WARN_ON(btrfs_header_generation(src) != trans->transid); 28717bb86316SChris Mason WARN_ON(btrfs_header_generation(dst) != trans->transid); 287254aa1f4dSChris Mason 2873bce4eae9SChris Mason if (!empty && src_nritems <= 8) 2874971a1f66SChris Mason return 1; 2875971a1f66SChris Mason 2876d397712bSChris Mason if (push_items <= 0) 2877be0e5c09SChris Mason return 1; 2878be0e5c09SChris Mason 2879bce4eae9SChris Mason if (empty) { 2880971a1f66SChris Mason push_items = min(src_nritems, push_items); 2881bce4eae9SChris Mason if (push_items < src_nritems) { 2882bce4eae9SChris Mason /* leave at least 8 pointers in the node if 2883bce4eae9SChris Mason * we aren't going to empty it 2884bce4eae9SChris Mason */ 2885bce4eae9SChris Mason if (src_nritems - push_items < 8) { 2886bce4eae9SChris Mason if (push_items <= 8) 2887bce4eae9SChris Mason return 1; 2888bce4eae9SChris Mason push_items -= 8; 2889bce4eae9SChris Mason } 2890bce4eae9SChris Mason } 2891bce4eae9SChris Mason } else 2892bce4eae9SChris Mason push_items = min(src_nritems - 8, push_items); 289379f95c82SChris Mason 2894d16c702fSQu Wenruo /* dst is the left eb, src is the middle eb */ 2895d16c702fSQu Wenruo if (check_sibling_keys(dst, src)) { 2896d16c702fSQu Wenruo ret = -EUCLEAN; 2897d16c702fSQu Wenruo btrfs_abort_transaction(trans, ret); 2898d16c702fSQu Wenruo return ret; 2899d16c702fSQu Wenruo } 2900f3a84ccdSFilipe Manana ret = btrfs_tree_mod_log_eb_copy(dst, src, dst_nritems, 0, push_items); 29015de865eeSFilipe David Borba Manana if (ret) { 290266642832SJeff Mahoney btrfs_abort_transaction(trans, ret); 29035de865eeSFilipe David Borba Manana return ret; 29045de865eeSFilipe David Borba Manana } 29055f39d397SChris Mason copy_extent_buffer(dst, src, 2906e23efd8eSJosef Bacik btrfs_node_key_ptr_offset(dst, dst_nritems), 2907e23efd8eSJosef Bacik btrfs_node_key_ptr_offset(src, 0), 2908123abc88SChris Mason push_items * sizeof(struct btrfs_key_ptr)); 29095f39d397SChris Mason 2910bb803951SChris Mason if (push_items < src_nritems) { 291157911b8bSJan Schmidt /* 29125cead542SBoris Burkov * btrfs_tree_mod_log_eb_copy handles logging the move, so we 29135cead542SBoris Burkov * don't need to do an explicit tree mod log operation for it. 291457911b8bSJan Schmidt */ 2915e23efd8eSJosef Bacik memmove_extent_buffer(src, btrfs_node_key_ptr_offset(src, 0), 2916e23efd8eSJosef Bacik btrfs_node_key_ptr_offset(src, push_items), 2917e2fa7227SChris Mason (src_nritems - push_items) * 2918123abc88SChris Mason sizeof(struct btrfs_key_ptr)); 2919bb803951SChris Mason } 29205f39d397SChris Mason btrfs_set_header_nritems(src, src_nritems - push_items); 29215f39d397SChris Mason btrfs_set_header_nritems(dst, dst_nritems + push_items); 2922d5e09e38SFilipe Manana btrfs_mark_buffer_dirty(trans, src); 2923d5e09e38SFilipe Manana btrfs_mark_buffer_dirty(trans, dst); 292431840ae1SZheng Yan 2925bb803951SChris Mason return ret; 2926be0e5c09SChris Mason } 2927be0e5c09SChris Mason 292897571fd0SChris Mason /* 292979f95c82SChris Mason * try to push data from one node into the next node right in the 293079f95c82SChris Mason * tree. 293179f95c82SChris Mason * 293279f95c82SChris Mason * returns 0 if some ptrs were pushed, < 0 if there was some horrible 293379f95c82SChris Mason * error, and > 0 if there was no room in the right hand block. 293479f95c82SChris Mason * 293579f95c82SChris Mason * this will only push up to 1/2 the contents of the left node over 293679f95c82SChris Mason */ 29375f39d397SChris Mason static int balance_node_right(struct btrfs_trans_handle *trans, 29385f39d397SChris Mason struct extent_buffer *dst, 29395f39d397SChris Mason struct extent_buffer *src) 294079f95c82SChris Mason { 294155d32ed8SDavid Sterba struct btrfs_fs_info *fs_info = trans->fs_info; 294279f95c82SChris Mason int push_items = 0; 294379f95c82SChris Mason int max_push; 294479f95c82SChris Mason int src_nritems; 294579f95c82SChris Mason int dst_nritems; 294679f95c82SChris Mason int ret = 0; 294779f95c82SChris Mason 29487bb86316SChris Mason WARN_ON(btrfs_header_generation(src) != trans->transid); 29497bb86316SChris Mason WARN_ON(btrfs_header_generation(dst) != trans->transid); 29507bb86316SChris Mason 29515f39d397SChris Mason src_nritems = btrfs_header_nritems(src); 29525f39d397SChris Mason dst_nritems = btrfs_header_nritems(dst); 29530b246afaSJeff Mahoney push_items = BTRFS_NODEPTRS_PER_BLOCK(fs_info) - dst_nritems; 2954d397712bSChris Mason if (push_items <= 0) 295579f95c82SChris Mason return 1; 2956bce4eae9SChris Mason 2957d397712bSChris Mason if (src_nritems < 4) 2958bce4eae9SChris Mason return 1; 295979f95c82SChris Mason 296079f95c82SChris Mason max_push = src_nritems / 2 + 1; 296179f95c82SChris Mason /* don't try to empty the node */ 2962d397712bSChris Mason if (max_push >= src_nritems) 296379f95c82SChris Mason return 1; 2964252c38f0SYan 296579f95c82SChris Mason if (max_push < push_items) 296679f95c82SChris Mason push_items = max_push; 296779f95c82SChris Mason 2968d16c702fSQu Wenruo /* dst is the right eb, src is the middle eb */ 2969d16c702fSQu Wenruo if (check_sibling_keys(src, dst)) { 2970d16c702fSQu Wenruo ret = -EUCLEAN; 2971d16c702fSQu Wenruo btrfs_abort_transaction(trans, ret); 2972d16c702fSQu Wenruo return ret; 2973d16c702fSQu Wenruo } 29745cead542SBoris Burkov 29755cead542SBoris Burkov /* 29765cead542SBoris Burkov * btrfs_tree_mod_log_eb_copy handles logging the move, so we don't 29775cead542SBoris Burkov * need to do an explicit tree mod log operation for it. 29785cead542SBoris Burkov */ 2979e23efd8eSJosef Bacik memmove_extent_buffer(dst, btrfs_node_key_ptr_offset(dst, push_items), 2980e23efd8eSJosef Bacik btrfs_node_key_ptr_offset(dst, 0), 29815f39d397SChris Mason (dst_nritems) * 29825f39d397SChris Mason sizeof(struct btrfs_key_ptr)); 2983d6025579SChris Mason 2984f3a84ccdSFilipe Manana ret = btrfs_tree_mod_log_eb_copy(dst, src, 0, src_nritems - push_items, 2985ed874f0dSDavid Sterba push_items); 29865de865eeSFilipe David Borba Manana if (ret) { 298766642832SJeff Mahoney btrfs_abort_transaction(trans, ret); 29885de865eeSFilipe David Borba Manana return ret; 29895de865eeSFilipe David Borba Manana } 29905f39d397SChris Mason copy_extent_buffer(dst, src, 2991e23efd8eSJosef Bacik btrfs_node_key_ptr_offset(dst, 0), 2992e23efd8eSJosef Bacik btrfs_node_key_ptr_offset(src, src_nritems - push_items), 2993123abc88SChris Mason push_items * sizeof(struct btrfs_key_ptr)); 299479f95c82SChris Mason 29955f39d397SChris Mason btrfs_set_header_nritems(src, src_nritems - push_items); 29965f39d397SChris Mason btrfs_set_header_nritems(dst, dst_nritems + push_items); 299779f95c82SChris Mason 2998d5e09e38SFilipe Manana btrfs_mark_buffer_dirty(trans, src); 2999d5e09e38SFilipe Manana btrfs_mark_buffer_dirty(trans, dst); 300031840ae1SZheng Yan 300179f95c82SChris Mason return ret; 300279f95c82SChris Mason } 300379f95c82SChris Mason 300479f95c82SChris Mason /* 300597571fd0SChris Mason * helper function to insert a new root level in the tree. 300697571fd0SChris Mason * A new node is allocated, and a single item is inserted to 300797571fd0SChris Mason * point to the existing root 3008aa5d6bedSChris Mason * 3009aa5d6bedSChris Mason * returns zero on success or < 0 on failure. 301097571fd0SChris Mason */ 3011d397712bSChris Mason static noinline int insert_new_root(struct btrfs_trans_handle *trans, 30125f39d397SChris Mason struct btrfs_root *root, 3013fdd99c72SLiu Bo struct btrfs_path *path, int level) 301474123bd7SChris Mason { 30150b246afaSJeff Mahoney struct btrfs_fs_info *fs_info = root->fs_info; 30167bb86316SChris Mason u64 lower_gen; 30175f39d397SChris Mason struct extent_buffer *lower; 30185f39d397SChris Mason struct extent_buffer *c; 3019925baeddSChris Mason struct extent_buffer *old; 30205f39d397SChris Mason struct btrfs_disk_key lower_key; 3021d9d19a01SDavid Sterba int ret; 30225c680ed6SChris Mason 30235c680ed6SChris Mason BUG_ON(path->nodes[level]); 30245c680ed6SChris Mason BUG_ON(path->nodes[level-1] != root->node); 30255c680ed6SChris Mason 30267bb86316SChris Mason lower = path->nodes[level-1]; 30277bb86316SChris Mason if (level == 1) 30287bb86316SChris Mason btrfs_item_key(lower, &lower_key, 0); 30297bb86316SChris Mason else 30307bb86316SChris Mason btrfs_node_key(lower, &lower_key, 0); 30317bb86316SChris Mason 303279bd3712SFilipe Manana c = btrfs_alloc_tree_block(trans, root, 0, root->root_key.objectid, 303379bd3712SFilipe Manana &lower_key, level, root->node->start, 0, 3034cf6f34aaSJosef Bacik BTRFS_NESTING_NEW_ROOT); 30355f39d397SChris Mason if (IS_ERR(c)) 30365f39d397SChris Mason return PTR_ERR(c); 3037925baeddSChris Mason 30380b246afaSJeff Mahoney root_add_used(root, fs_info->nodesize); 3039f0486c68SYan, Zheng 30405f39d397SChris Mason btrfs_set_header_nritems(c, 1); 30415f39d397SChris Mason btrfs_set_node_key(c, &lower_key, 0); 3042db94535dSChris Mason btrfs_set_node_blockptr(c, 0, lower->start); 30437bb86316SChris Mason lower_gen = btrfs_header_generation(lower); 304431840ae1SZheng Yan WARN_ON(lower_gen != trans->transid); 30457bb86316SChris Mason 30467bb86316SChris Mason btrfs_set_node_ptr_generation(c, 0, lower_gen); 30475f39d397SChris Mason 3048d5e09e38SFilipe Manana btrfs_mark_buffer_dirty(trans, c); 3049d5719762SChris Mason 3050925baeddSChris Mason old = root->node; 3051406808abSFilipe Manana ret = btrfs_tree_mod_log_insert_root(root->node, c, false); 3052f61aa7baSFilipe Manana if (ret < 0) { 305322d907bcSFilipe Manana int ret2; 305422d907bcSFilipe Manana 305522d907bcSFilipe Manana ret2 = btrfs_free_tree_block(trans, btrfs_root_id(root), c, 0, 1); 305622d907bcSFilipe Manana if (ret2 < 0) 305722d907bcSFilipe Manana btrfs_abort_transaction(trans, ret2); 3058f61aa7baSFilipe Manana btrfs_tree_unlock(c); 3059f61aa7baSFilipe Manana free_extent_buffer(c); 3060f61aa7baSFilipe Manana return ret; 3061f61aa7baSFilipe Manana } 3062240f62c8SChris Mason rcu_assign_pointer(root->node, c); 3063925baeddSChris Mason 3064925baeddSChris Mason /* the super has an extra ref to root->node */ 3065925baeddSChris Mason free_extent_buffer(old); 3066925baeddSChris Mason 30670b86a832SChris Mason add_root_to_dirty_list(root); 306867439dadSDavid Sterba atomic_inc(&c->refs); 30695f39d397SChris Mason path->nodes[level] = c; 3070ac5887c8SJosef Bacik path->locks[level] = BTRFS_WRITE_LOCK; 307174123bd7SChris Mason path->slots[level] = 0; 307274123bd7SChris Mason return 0; 307374123bd7SChris Mason } 30745c680ed6SChris Mason 30755c680ed6SChris Mason /* 30765c680ed6SChris Mason * worker function to insert a single pointer in a node. 30775c680ed6SChris Mason * the node should have enough room for the pointer already 307897571fd0SChris Mason * 30795c680ed6SChris Mason * slot and level indicate where you want the key to go, and 30805c680ed6SChris Mason * blocknr is the block the key points to. 30815c680ed6SChris Mason */ 308250b5d1fcSFilipe Manana static int insert_ptr(struct btrfs_trans_handle *trans, 30836ad3cf6dSDavid Sterba struct btrfs_path *path, 3084143bede5SJeff Mahoney struct btrfs_disk_key *key, u64 bytenr, 3085c3e06965SJan Schmidt int slot, int level) 30865c680ed6SChris Mason { 30875f39d397SChris Mason struct extent_buffer *lower; 30885c680ed6SChris Mason int nritems; 3089f3ea38daSJan Schmidt int ret; 30905c680ed6SChris Mason 30915c680ed6SChris Mason BUG_ON(!path->nodes[level]); 309249d0c642SFilipe Manana btrfs_assert_tree_write_locked(path->nodes[level]); 30935f39d397SChris Mason lower = path->nodes[level]; 30945f39d397SChris Mason nritems = btrfs_header_nritems(lower); 3095c293498bSStoyan Gaydarov BUG_ON(slot > nritems); 30966ad3cf6dSDavid Sterba BUG_ON(nritems == BTRFS_NODEPTRS_PER_BLOCK(trans->fs_info)); 309774123bd7SChris Mason if (slot != nritems) { 3098bf1d3425SDavid Sterba if (level) { 3099f3a84ccdSFilipe Manana ret = btrfs_tree_mod_log_insert_move(lower, slot + 1, 3100f3a84ccdSFilipe Manana slot, nritems - slot); 310150b5d1fcSFilipe Manana if (ret < 0) { 310250b5d1fcSFilipe Manana btrfs_abort_transaction(trans, ret); 310350b5d1fcSFilipe Manana return ret; 310450b5d1fcSFilipe Manana } 3105bf1d3425SDavid Sterba } 31065f39d397SChris Mason memmove_extent_buffer(lower, 3107e23efd8eSJosef Bacik btrfs_node_key_ptr_offset(lower, slot + 1), 3108e23efd8eSJosef Bacik btrfs_node_key_ptr_offset(lower, slot), 3109123abc88SChris Mason (nritems - slot) * sizeof(struct btrfs_key_ptr)); 311074123bd7SChris Mason } 3111c3e06965SJan Schmidt if (level) { 3112f3a84ccdSFilipe Manana ret = btrfs_tree_mod_log_insert_key(lower, slot, 311333cff222SFilipe Manana BTRFS_MOD_LOG_KEY_ADD); 311450b5d1fcSFilipe Manana if (ret < 0) { 311550b5d1fcSFilipe Manana btrfs_abort_transaction(trans, ret); 311650b5d1fcSFilipe Manana return ret; 311750b5d1fcSFilipe Manana } 3118f3ea38daSJan Schmidt } 31195f39d397SChris Mason btrfs_set_node_key(lower, key, slot); 3120db94535dSChris Mason btrfs_set_node_blockptr(lower, slot, bytenr); 312174493f7aSChris Mason WARN_ON(trans->transid == 0); 312274493f7aSChris Mason btrfs_set_node_ptr_generation(lower, slot, trans->transid); 31235f39d397SChris Mason btrfs_set_header_nritems(lower, nritems + 1); 3124d5e09e38SFilipe Manana btrfs_mark_buffer_dirty(trans, lower); 312550b5d1fcSFilipe Manana 312650b5d1fcSFilipe Manana return 0; 312774123bd7SChris Mason } 312874123bd7SChris Mason 312997571fd0SChris Mason /* 313097571fd0SChris Mason * split the node at the specified level in path in two. 313197571fd0SChris Mason * The path is corrected to point to the appropriate node after the split 313297571fd0SChris Mason * 313397571fd0SChris Mason * Before splitting this tries to make some room in the node by pushing 313497571fd0SChris Mason * left and right, if either one works, it returns right away. 3135aa5d6bedSChris Mason * 3136aa5d6bedSChris Mason * returns 0 on success and < 0 on failure 313797571fd0SChris Mason */ 3138e02119d5SChris Mason static noinline int split_node(struct btrfs_trans_handle *trans, 3139e02119d5SChris Mason struct btrfs_root *root, 3140e02119d5SChris Mason struct btrfs_path *path, int level) 3141be0e5c09SChris Mason { 31420b246afaSJeff Mahoney struct btrfs_fs_info *fs_info = root->fs_info; 31435f39d397SChris Mason struct extent_buffer *c; 31445f39d397SChris Mason struct extent_buffer *split; 31455f39d397SChris Mason struct btrfs_disk_key disk_key; 3146be0e5c09SChris Mason int mid; 31475c680ed6SChris Mason int ret; 31487518a238SChris Mason u32 c_nritems; 3149be0e5c09SChris Mason 31505f39d397SChris Mason c = path->nodes[level]; 31517bb86316SChris Mason WARN_ON(btrfs_header_generation(c) != trans->transid); 31525f39d397SChris Mason if (c == root->node) { 3153d9abbf1cSJan Schmidt /* 315490f8d62eSJan Schmidt * trying to split the root, lets make a new one 315590f8d62eSJan Schmidt * 3156fdd99c72SLiu Bo * tree mod log: We don't log_removal old root in 315790f8d62eSJan Schmidt * insert_new_root, because that root buffer will be kept as a 315890f8d62eSJan Schmidt * normal node. We are going to log removal of half of the 3159f3a84ccdSFilipe Manana * elements below with btrfs_tree_mod_log_eb_copy(). We're 3160f3a84ccdSFilipe Manana * holding a tree lock on the buffer, which is why we cannot 3161f3a84ccdSFilipe Manana * race with other tree_mod_log users. 3162d9abbf1cSJan Schmidt */ 3163fdd99c72SLiu Bo ret = insert_new_root(trans, root, path, level + 1); 31645c680ed6SChris Mason if (ret) 31655c680ed6SChris Mason return ret; 3166b3612421SChris Mason } else { 3167e66f709bSChris Mason ret = push_nodes_for_insert(trans, root, path, level); 31685f39d397SChris Mason c = path->nodes[level]; 31695f39d397SChris Mason if (!ret && btrfs_header_nritems(c) < 31700b246afaSJeff Mahoney BTRFS_NODEPTRS_PER_BLOCK(fs_info) - 3) 3171e66f709bSChris Mason return 0; 317254aa1f4dSChris Mason if (ret < 0) 317354aa1f4dSChris Mason return ret; 31745c680ed6SChris Mason } 3175e66f709bSChris Mason 31765f39d397SChris Mason c_nritems = btrfs_header_nritems(c); 31775d4f98a2SYan Zheng mid = (c_nritems + 1) / 2; 31785d4f98a2SYan Zheng btrfs_node_key(c, &disk_key, mid); 31797bb86316SChris Mason 318079bd3712SFilipe Manana split = btrfs_alloc_tree_block(trans, root, 0, root->root_key.objectid, 318179bd3712SFilipe Manana &disk_key, level, c->start, 0, 318279bd3712SFilipe Manana BTRFS_NESTING_SPLIT); 31835f39d397SChris Mason if (IS_ERR(split)) 31845f39d397SChris Mason return PTR_ERR(split); 318554aa1f4dSChris Mason 31860b246afaSJeff Mahoney root_add_used(root, fs_info->nodesize); 3187bc877d28SNikolay Borisov ASSERT(btrfs_header_level(c) == level); 31885f39d397SChris Mason 3189f3a84ccdSFilipe Manana ret = btrfs_tree_mod_log_eb_copy(split, c, 0, mid, c_nritems - mid); 31905de865eeSFilipe David Borba Manana if (ret) { 3191ede600e4SFilipe Manana btrfs_tree_unlock(split); 3192ede600e4SFilipe Manana free_extent_buffer(split); 319366642832SJeff Mahoney btrfs_abort_transaction(trans, ret); 31945de865eeSFilipe David Borba Manana return ret; 31955de865eeSFilipe David Borba Manana } 31965f39d397SChris Mason copy_extent_buffer(split, c, 3197e23efd8eSJosef Bacik btrfs_node_key_ptr_offset(split, 0), 3198e23efd8eSJosef Bacik btrfs_node_key_ptr_offset(c, mid), 3199123abc88SChris Mason (c_nritems - mid) * sizeof(struct btrfs_key_ptr)); 32005f39d397SChris Mason btrfs_set_header_nritems(split, c_nritems - mid); 32015f39d397SChris Mason btrfs_set_header_nritems(c, mid); 3202aa5d6bedSChris Mason 3203d5e09e38SFilipe Manana btrfs_mark_buffer_dirty(trans, c); 3204d5e09e38SFilipe Manana btrfs_mark_buffer_dirty(trans, split); 32055f39d397SChris Mason 320650b5d1fcSFilipe Manana ret = insert_ptr(trans, path, &disk_key, split->start, 3207c3e06965SJan Schmidt path->slots[level + 1] + 1, level + 1); 320850b5d1fcSFilipe Manana if (ret < 0) { 320950b5d1fcSFilipe Manana btrfs_tree_unlock(split); 321050b5d1fcSFilipe Manana free_extent_buffer(split); 321150b5d1fcSFilipe Manana return ret; 321250b5d1fcSFilipe Manana } 3213aa5d6bedSChris Mason 32145de08d7dSChris Mason if (path->slots[level] >= mid) { 32155c680ed6SChris Mason path->slots[level] -= mid; 3216925baeddSChris Mason btrfs_tree_unlock(c); 32175f39d397SChris Mason free_extent_buffer(c); 32185f39d397SChris Mason path->nodes[level] = split; 32195c680ed6SChris Mason path->slots[level + 1] += 1; 3220eb60ceacSChris Mason } else { 3221925baeddSChris Mason btrfs_tree_unlock(split); 32225f39d397SChris Mason free_extent_buffer(split); 3223be0e5c09SChris Mason } 3224d5286a92SNikolay Borisov return 0; 3225be0e5c09SChris Mason } 3226be0e5c09SChris Mason 322774123bd7SChris Mason /* 322874123bd7SChris Mason * how many bytes are required to store the items in a leaf. start 322974123bd7SChris Mason * and nr indicate which items in the leaf to check. This totals up the 323074123bd7SChris Mason * space used both by the item structs and the item data 323174123bd7SChris Mason */ 32326c75a589SQu Wenruo static int leaf_space_used(const struct extent_buffer *l, int start, int nr) 3233be0e5c09SChris Mason { 3234be0e5c09SChris Mason int data_len; 32355f39d397SChris Mason int nritems = btrfs_header_nritems(l); 3236d4dbff95SChris Mason int end = min(nritems, start + nr) - 1; 3237be0e5c09SChris Mason 3238be0e5c09SChris Mason if (!nr) 3239be0e5c09SChris Mason return 0; 32403212fa14SJosef Bacik data_len = btrfs_item_offset(l, start) + btrfs_item_size(l, start); 32413212fa14SJosef Bacik data_len = data_len - btrfs_item_offset(l, end); 32420783fcfcSChris Mason data_len += sizeof(struct btrfs_item) * nr; 3243d4dbff95SChris Mason WARN_ON(data_len < 0); 3244be0e5c09SChris Mason return data_len; 3245be0e5c09SChris Mason } 3246be0e5c09SChris Mason 324774123bd7SChris Mason /* 3248d4dbff95SChris Mason * The space between the end of the leaf items and 3249d4dbff95SChris Mason * the start of the leaf data. IOW, how much room 3250d4dbff95SChris Mason * the leaf has left for both items and data 3251d4dbff95SChris Mason */ 32526c75a589SQu Wenruo int btrfs_leaf_free_space(const struct extent_buffer *leaf) 3253d4dbff95SChris Mason { 3254e902baacSDavid Sterba struct btrfs_fs_info *fs_info = leaf->fs_info; 32555f39d397SChris Mason int nritems = btrfs_header_nritems(leaf); 32565f39d397SChris Mason int ret; 32570b246afaSJeff Mahoney 32580b246afaSJeff Mahoney ret = BTRFS_LEAF_DATA_SIZE(fs_info) - leaf_space_used(leaf, 0, nritems); 32595f39d397SChris Mason if (ret < 0) { 32600b246afaSJeff Mahoney btrfs_crit(fs_info, 3261efe120a0SFrank Holton "leaf free space ret %d, leaf data size %lu, used %d nritems %d", 3262da17066cSJeff Mahoney ret, 32630b246afaSJeff Mahoney (unsigned long) BTRFS_LEAF_DATA_SIZE(fs_info), 32645f39d397SChris Mason leaf_space_used(leaf, 0, nritems), nritems); 32655f39d397SChris Mason } 32665f39d397SChris Mason return ret; 3267d4dbff95SChris Mason } 3268d4dbff95SChris Mason 326999d8f83cSChris Mason /* 327099d8f83cSChris Mason * min slot controls the lowest index we're willing to push to the 327199d8f83cSChris Mason * right. We'll push up to and including min_slot, but no lower 327299d8f83cSChris Mason */ 3273ed25dab3SJosef Bacik static noinline int __push_leaf_right(struct btrfs_trans_handle *trans, 3274ed25dab3SJosef Bacik struct btrfs_path *path, 327544871b1bSChris Mason int data_size, int empty, 327644871b1bSChris Mason struct extent_buffer *right, 327799d8f83cSChris Mason int free_space, u32 left_nritems, 327899d8f83cSChris Mason u32 min_slot) 327900ec4c51SChris Mason { 3280f72f0010SDavid Sterba struct btrfs_fs_info *fs_info = right->fs_info; 32815f39d397SChris Mason struct extent_buffer *left = path->nodes[0]; 328244871b1bSChris Mason struct extent_buffer *upper = path->nodes[1]; 3283cfed81a0SChris Mason struct btrfs_map_token token; 32845f39d397SChris Mason struct btrfs_disk_key disk_key; 328500ec4c51SChris Mason int slot; 328634a38218SChris Mason u32 i; 328700ec4c51SChris Mason int push_space = 0; 328800ec4c51SChris Mason int push_items = 0; 328934a38218SChris Mason u32 nr; 32907518a238SChris Mason u32 right_nritems; 32915f39d397SChris Mason u32 data_end; 3292db94535dSChris Mason u32 this_item_size; 329300ec4c51SChris Mason 329434a38218SChris Mason if (empty) 329534a38218SChris Mason nr = 0; 329634a38218SChris Mason else 329799d8f83cSChris Mason nr = max_t(u32, 1, min_slot); 329834a38218SChris Mason 329931840ae1SZheng Yan if (path->slots[0] >= left_nritems) 330087b29b20SYan Zheng push_space += data_size; 330131840ae1SZheng Yan 330244871b1bSChris Mason slot = path->slots[1]; 330334a38218SChris Mason i = left_nritems - 1; 330434a38218SChris Mason while (i >= nr) { 330531840ae1SZheng Yan if (!empty && push_items > 0) { 330631840ae1SZheng Yan if (path->slots[0] > i) 330731840ae1SZheng Yan break; 330831840ae1SZheng Yan if (path->slots[0] == i) { 3309e902baacSDavid Sterba int space = btrfs_leaf_free_space(left); 3310e902baacSDavid Sterba 331131840ae1SZheng Yan if (space + push_space * 2 > free_space) 331231840ae1SZheng Yan break; 331331840ae1SZheng Yan } 331431840ae1SZheng Yan } 331531840ae1SZheng Yan 331600ec4c51SChris Mason if (path->slots[0] == i) 331787b29b20SYan Zheng push_space += data_size; 3318db94535dSChris Mason 33193212fa14SJosef Bacik this_item_size = btrfs_item_size(left, i); 332074794207SJosef Bacik if (this_item_size + sizeof(struct btrfs_item) + 332174794207SJosef Bacik push_space > free_space) 332200ec4c51SChris Mason break; 332331840ae1SZheng Yan 332400ec4c51SChris Mason push_items++; 332574794207SJosef Bacik push_space += this_item_size + sizeof(struct btrfs_item); 332634a38218SChris Mason if (i == 0) 332734a38218SChris Mason break; 332834a38218SChris Mason i--; 3329db94535dSChris Mason } 33305f39d397SChris Mason 3331925baeddSChris Mason if (push_items == 0) 3332925baeddSChris Mason goto out_unlock; 33335f39d397SChris Mason 33346c1500f2SJulia Lawall WARN_ON(!empty && push_items == left_nritems); 33355f39d397SChris Mason 333600ec4c51SChris Mason /* push left to right */ 33375f39d397SChris Mason right_nritems = btrfs_header_nritems(right); 333834a38218SChris Mason 3339dc2e724eSJosef Bacik push_space = btrfs_item_data_end(left, left_nritems - push_items); 33408f881e8cSDavid Sterba push_space -= leaf_data_end(left); 33415f39d397SChris Mason 334200ec4c51SChris Mason /* make room in the right data area */ 33438f881e8cSDavid Sterba data_end = leaf_data_end(right); 3344637e3b48SJosef Bacik memmove_leaf_data(right, data_end - push_space, data_end, 33450b246afaSJeff Mahoney BTRFS_LEAF_DATA_SIZE(fs_info) - data_end); 33465f39d397SChris Mason 334700ec4c51SChris Mason /* copy from the left data area */ 3348637e3b48SJosef Bacik copy_leaf_data(right, left, BTRFS_LEAF_DATA_SIZE(fs_info) - push_space, 3349637e3b48SJosef Bacik leaf_data_end(left), push_space); 33505f39d397SChris Mason 3351637e3b48SJosef Bacik memmove_leaf_items(right, push_items, 0, right_nritems); 33525f39d397SChris Mason 335300ec4c51SChris Mason /* copy the items from left to right */ 3354637e3b48SJosef Bacik copy_leaf_items(right, left, 0, left_nritems - push_items, push_items); 335500ec4c51SChris Mason 335600ec4c51SChris Mason /* update the item pointers */ 3357c82f823cSDavid Sterba btrfs_init_map_token(&token, right); 33587518a238SChris Mason right_nritems += push_items; 33595f39d397SChris Mason btrfs_set_header_nritems(right, right_nritems); 33600b246afaSJeff Mahoney push_space = BTRFS_LEAF_DATA_SIZE(fs_info); 33617518a238SChris Mason for (i = 0; i < right_nritems; i++) { 33623212fa14SJosef Bacik push_space -= btrfs_token_item_size(&token, i); 33633212fa14SJosef Bacik btrfs_set_token_item_offset(&token, i, push_space); 3364db94535dSChris Mason } 3365db94535dSChris Mason 33667518a238SChris Mason left_nritems -= push_items; 33675f39d397SChris Mason btrfs_set_header_nritems(left, left_nritems); 336800ec4c51SChris Mason 336934a38218SChris Mason if (left_nritems) 3370d5e09e38SFilipe Manana btrfs_mark_buffer_dirty(trans, left); 3371f0486c68SYan, Zheng else 3372190a8339SJosef Bacik btrfs_clear_buffer_dirty(trans, left); 3373f0486c68SYan, Zheng 3374d5e09e38SFilipe Manana btrfs_mark_buffer_dirty(trans, right); 3375a429e513SChris Mason 33765f39d397SChris Mason btrfs_item_key(right, &disk_key, 0); 33775f39d397SChris Mason btrfs_set_node_key(upper, &disk_key, slot + 1); 3378d5e09e38SFilipe Manana btrfs_mark_buffer_dirty(trans, upper); 337902217ed2SChris Mason 338000ec4c51SChris Mason /* then fixup the leaf pointer in the path */ 33817518a238SChris Mason if (path->slots[0] >= left_nritems) { 33827518a238SChris Mason path->slots[0] -= left_nritems; 3383925baeddSChris Mason if (btrfs_header_nritems(path->nodes[0]) == 0) 3384190a8339SJosef Bacik btrfs_clear_buffer_dirty(trans, path->nodes[0]); 3385925baeddSChris Mason btrfs_tree_unlock(path->nodes[0]); 33865f39d397SChris Mason free_extent_buffer(path->nodes[0]); 33875f39d397SChris Mason path->nodes[0] = right; 338800ec4c51SChris Mason path->slots[1] += 1; 338900ec4c51SChris Mason } else { 3390925baeddSChris Mason btrfs_tree_unlock(right); 33915f39d397SChris Mason free_extent_buffer(right); 339200ec4c51SChris Mason } 339300ec4c51SChris Mason return 0; 3394925baeddSChris Mason 3395925baeddSChris Mason out_unlock: 3396925baeddSChris Mason btrfs_tree_unlock(right); 3397925baeddSChris Mason free_extent_buffer(right); 3398925baeddSChris Mason return 1; 339900ec4c51SChris Mason } 3400925baeddSChris Mason 340100ec4c51SChris Mason /* 340244871b1bSChris Mason * push some data in the path leaf to the right, trying to free up at 340374123bd7SChris Mason * least data_size bytes. returns zero if the push worked, nonzero otherwise 340444871b1bSChris Mason * 340544871b1bSChris Mason * returns 1 if the push failed because the other node didn't have enough 340644871b1bSChris Mason * room, 0 if everything worked out and < 0 if there were major errors. 340799d8f83cSChris Mason * 340899d8f83cSChris Mason * this will push starting from min_slot to the end of the leaf. It won't 340999d8f83cSChris Mason * push any slot lower than min_slot 341074123bd7SChris Mason */ 341144871b1bSChris Mason static int push_leaf_right(struct btrfs_trans_handle *trans, struct btrfs_root 341299d8f83cSChris Mason *root, struct btrfs_path *path, 341399d8f83cSChris Mason int min_data_size, int data_size, 341499d8f83cSChris Mason int empty, u32 min_slot) 3415be0e5c09SChris Mason { 341644871b1bSChris Mason struct extent_buffer *left = path->nodes[0]; 341744871b1bSChris Mason struct extent_buffer *right; 341844871b1bSChris Mason struct extent_buffer *upper; 341944871b1bSChris Mason int slot; 342044871b1bSChris Mason int free_space; 342144871b1bSChris Mason u32 left_nritems; 342244871b1bSChris Mason int ret; 342344871b1bSChris Mason 342444871b1bSChris Mason if (!path->nodes[1]) 342544871b1bSChris Mason return 1; 342644871b1bSChris Mason 342744871b1bSChris Mason slot = path->slots[1]; 342844871b1bSChris Mason upper = path->nodes[1]; 342944871b1bSChris Mason if (slot >= btrfs_header_nritems(upper) - 1) 343044871b1bSChris Mason return 1; 343144871b1bSChris Mason 343249d0c642SFilipe Manana btrfs_assert_tree_write_locked(path->nodes[1]); 343344871b1bSChris Mason 34344b231ae4SDavid Sterba right = btrfs_read_node_slot(upper, slot + 1); 3435fb770ae4SLiu Bo if (IS_ERR(right)) 34369cf14029SJosef Bacik return PTR_ERR(right); 343791ca338dSTsutomu Itoh 3438bf77467aSJosef Bacik __btrfs_tree_lock(right, BTRFS_NESTING_RIGHT); 343944871b1bSChris Mason 3440e902baacSDavid Sterba free_space = btrfs_leaf_free_space(right); 344144871b1bSChris Mason if (free_space < data_size) 344244871b1bSChris Mason goto out_unlock; 344344871b1bSChris Mason 344444871b1bSChris Mason ret = btrfs_cow_block(trans, root, right, upper, 3445bf59a5a2SJosef Bacik slot + 1, &right, BTRFS_NESTING_RIGHT_COW); 344644871b1bSChris Mason if (ret) 344744871b1bSChris Mason goto out_unlock; 344844871b1bSChris Mason 344944871b1bSChris Mason left_nritems = btrfs_header_nritems(left); 345044871b1bSChris Mason if (left_nritems == 0) 345144871b1bSChris Mason goto out_unlock; 345244871b1bSChris Mason 3453d16c702fSQu Wenruo if (check_sibling_keys(left, right)) { 3454d16c702fSQu Wenruo ret = -EUCLEAN; 34559ae5afd0SFilipe Manana btrfs_abort_transaction(trans, ret); 3456d16c702fSQu Wenruo btrfs_tree_unlock(right); 3457d16c702fSQu Wenruo free_extent_buffer(right); 3458d16c702fSQu Wenruo return ret; 3459d16c702fSQu Wenruo } 34602ef1fed2SFilipe David Borba Manana if (path->slots[0] == left_nritems && !empty) { 34612ef1fed2SFilipe David Borba Manana /* Key greater than all keys in the leaf, right neighbor has 34622ef1fed2SFilipe David Borba Manana * enough room for it and we're not emptying our leaf to delete 34632ef1fed2SFilipe David Borba Manana * it, therefore use right neighbor to insert the new item and 346452042d8eSAndrea Gelmini * no need to touch/dirty our left leaf. */ 34652ef1fed2SFilipe David Borba Manana btrfs_tree_unlock(left); 34662ef1fed2SFilipe David Borba Manana free_extent_buffer(left); 34672ef1fed2SFilipe David Borba Manana path->nodes[0] = right; 34682ef1fed2SFilipe David Borba Manana path->slots[0] = 0; 34692ef1fed2SFilipe David Borba Manana path->slots[1]++; 34702ef1fed2SFilipe David Borba Manana return 0; 34712ef1fed2SFilipe David Borba Manana } 34722ef1fed2SFilipe David Borba Manana 3473ed25dab3SJosef Bacik return __push_leaf_right(trans, path, min_data_size, empty, right, 3474ed25dab3SJosef Bacik free_space, left_nritems, min_slot); 347544871b1bSChris Mason out_unlock: 347644871b1bSChris Mason btrfs_tree_unlock(right); 347744871b1bSChris Mason free_extent_buffer(right); 347844871b1bSChris Mason return 1; 347944871b1bSChris Mason } 348044871b1bSChris Mason 348144871b1bSChris Mason /* 348244871b1bSChris Mason * push some data in the path leaf to the left, trying to free up at 348344871b1bSChris Mason * least data_size bytes. returns zero if the push worked, nonzero otherwise 348499d8f83cSChris Mason * 348599d8f83cSChris Mason * max_slot can put a limit on how far into the leaf we'll push items. The 348699d8f83cSChris Mason * item at 'max_slot' won't be touched. Use (u32)-1 to make us do all the 348799d8f83cSChris Mason * items 348844871b1bSChris Mason */ 3489ed25dab3SJosef Bacik static noinline int __push_leaf_left(struct btrfs_trans_handle *trans, 3490ed25dab3SJosef Bacik struct btrfs_path *path, int data_size, 349144871b1bSChris Mason int empty, struct extent_buffer *left, 349299d8f83cSChris Mason int free_space, u32 right_nritems, 349399d8f83cSChris Mason u32 max_slot) 349444871b1bSChris Mason { 34958087c193SDavid Sterba struct btrfs_fs_info *fs_info = left->fs_info; 34965f39d397SChris Mason struct btrfs_disk_key disk_key; 34975f39d397SChris Mason struct extent_buffer *right = path->nodes[0]; 3498be0e5c09SChris Mason int i; 3499be0e5c09SChris Mason int push_space = 0; 3500be0e5c09SChris Mason int push_items = 0; 35017518a238SChris Mason u32 old_left_nritems; 350234a38218SChris Mason u32 nr; 3503aa5d6bedSChris Mason int ret = 0; 3504db94535dSChris Mason u32 this_item_size; 3505db94535dSChris Mason u32 old_left_item_size; 3506cfed81a0SChris Mason struct btrfs_map_token token; 3507cfed81a0SChris Mason 350834a38218SChris Mason if (empty) 350999d8f83cSChris Mason nr = min(right_nritems, max_slot); 351034a38218SChris Mason else 351199d8f83cSChris Mason nr = min(right_nritems - 1, max_slot); 351234a38218SChris Mason 351334a38218SChris Mason for (i = 0; i < nr; i++) { 351431840ae1SZheng Yan if (!empty && push_items > 0) { 351531840ae1SZheng Yan if (path->slots[0] < i) 351631840ae1SZheng Yan break; 351731840ae1SZheng Yan if (path->slots[0] == i) { 3518e902baacSDavid Sterba int space = btrfs_leaf_free_space(right); 3519e902baacSDavid Sterba 352031840ae1SZheng Yan if (space + push_space * 2 > free_space) 352131840ae1SZheng Yan break; 352231840ae1SZheng Yan } 352331840ae1SZheng Yan } 352431840ae1SZheng Yan 3525be0e5c09SChris Mason if (path->slots[0] == i) 352687b29b20SYan Zheng push_space += data_size; 3527db94535dSChris Mason 35283212fa14SJosef Bacik this_item_size = btrfs_item_size(right, i); 352974794207SJosef Bacik if (this_item_size + sizeof(struct btrfs_item) + push_space > 353074794207SJosef Bacik free_space) 3531be0e5c09SChris Mason break; 3532db94535dSChris Mason 3533be0e5c09SChris Mason push_items++; 353474794207SJosef Bacik push_space += this_item_size + sizeof(struct btrfs_item); 3535be0e5c09SChris Mason } 3536db94535dSChris Mason 3537be0e5c09SChris Mason if (push_items == 0) { 3538925baeddSChris Mason ret = 1; 3539925baeddSChris Mason goto out; 3540be0e5c09SChris Mason } 3541fae7f21cSDulshani Gunawardhana WARN_ON(!empty && push_items == btrfs_header_nritems(right)); 35425f39d397SChris Mason 3543be0e5c09SChris Mason /* push data from right to left */ 3544637e3b48SJosef Bacik copy_leaf_items(left, right, btrfs_header_nritems(left), 0, push_items); 35455f39d397SChris Mason 35460b246afaSJeff Mahoney push_space = BTRFS_LEAF_DATA_SIZE(fs_info) - 35473212fa14SJosef Bacik btrfs_item_offset(right, push_items - 1); 35485f39d397SChris Mason 3549637e3b48SJosef Bacik copy_leaf_data(left, right, leaf_data_end(left) - push_space, 3550637e3b48SJosef Bacik btrfs_item_offset(right, push_items - 1), push_space); 35515f39d397SChris Mason old_left_nritems = btrfs_header_nritems(left); 355287b29b20SYan Zheng BUG_ON(old_left_nritems <= 0); 3553eb60ceacSChris Mason 3554c82f823cSDavid Sterba btrfs_init_map_token(&token, left); 35553212fa14SJosef Bacik old_left_item_size = btrfs_item_offset(left, old_left_nritems - 1); 3556be0e5c09SChris Mason for (i = old_left_nritems; i < old_left_nritems + push_items; i++) { 35575f39d397SChris Mason u32 ioff; 3558db94535dSChris Mason 35593212fa14SJosef Bacik ioff = btrfs_token_item_offset(&token, i); 35603212fa14SJosef Bacik btrfs_set_token_item_offset(&token, i, 3561cc4c13d5SDavid Sterba ioff - (BTRFS_LEAF_DATA_SIZE(fs_info) - old_left_item_size)); 3562be0e5c09SChris Mason } 35635f39d397SChris Mason btrfs_set_header_nritems(left, old_left_nritems + push_items); 3564be0e5c09SChris Mason 3565be0e5c09SChris Mason /* fixup right node */ 356631b1a2bdSJulia Lawall if (push_items > right_nritems) 356731b1a2bdSJulia Lawall WARN(1, KERN_CRIT "push items %d nr %u\n", push_items, 3568d397712bSChris Mason right_nritems); 356934a38218SChris Mason 357034a38218SChris Mason if (push_items < right_nritems) { 35713212fa14SJosef Bacik push_space = btrfs_item_offset(right, push_items - 1) - 35728f881e8cSDavid Sterba leaf_data_end(right); 3573637e3b48SJosef Bacik memmove_leaf_data(right, 35740b246afaSJeff Mahoney BTRFS_LEAF_DATA_SIZE(fs_info) - push_space, 35758f881e8cSDavid Sterba leaf_data_end(right), push_space); 35765f39d397SChris Mason 3577637e3b48SJosef Bacik memmove_leaf_items(right, 0, push_items, 3578637e3b48SJosef Bacik btrfs_header_nritems(right) - push_items); 357934a38218SChris Mason } 3580c82f823cSDavid Sterba 3581c82f823cSDavid Sterba btrfs_init_map_token(&token, right); 3582eef1c494SYan right_nritems -= push_items; 3583eef1c494SYan btrfs_set_header_nritems(right, right_nritems); 35840b246afaSJeff Mahoney push_space = BTRFS_LEAF_DATA_SIZE(fs_info); 35855f39d397SChris Mason for (i = 0; i < right_nritems; i++) { 35863212fa14SJosef Bacik push_space = push_space - btrfs_token_item_size(&token, i); 35873212fa14SJosef Bacik btrfs_set_token_item_offset(&token, i, push_space); 3588db94535dSChris Mason } 3589eb60ceacSChris Mason 3590d5e09e38SFilipe Manana btrfs_mark_buffer_dirty(trans, left); 359134a38218SChris Mason if (right_nritems) 3592d5e09e38SFilipe Manana btrfs_mark_buffer_dirty(trans, right); 3593f0486c68SYan, Zheng else 3594190a8339SJosef Bacik btrfs_clear_buffer_dirty(trans, right); 3595098f59c2SChris Mason 35965f39d397SChris Mason btrfs_item_key(right, &disk_key, 0); 3597d5e09e38SFilipe Manana fixup_low_keys(trans, path, &disk_key, 1); 3598be0e5c09SChris Mason 3599be0e5c09SChris Mason /* then fixup the leaf pointer in the path */ 3600be0e5c09SChris Mason if (path->slots[0] < push_items) { 3601be0e5c09SChris Mason path->slots[0] += old_left_nritems; 3602925baeddSChris Mason btrfs_tree_unlock(path->nodes[0]); 36035f39d397SChris Mason free_extent_buffer(path->nodes[0]); 36045f39d397SChris Mason path->nodes[0] = left; 3605be0e5c09SChris Mason path->slots[1] -= 1; 3606be0e5c09SChris Mason } else { 3607925baeddSChris Mason btrfs_tree_unlock(left); 36085f39d397SChris Mason free_extent_buffer(left); 3609be0e5c09SChris Mason path->slots[0] -= push_items; 3610be0e5c09SChris Mason } 3611eb60ceacSChris Mason BUG_ON(path->slots[0] < 0); 3612aa5d6bedSChris Mason return ret; 3613925baeddSChris Mason out: 3614925baeddSChris Mason btrfs_tree_unlock(left); 3615925baeddSChris Mason free_extent_buffer(left); 3616925baeddSChris Mason return ret; 3617be0e5c09SChris Mason } 3618be0e5c09SChris Mason 361974123bd7SChris Mason /* 362044871b1bSChris Mason * push some data in the path leaf to the left, trying to free up at 362144871b1bSChris Mason * least data_size bytes. returns zero if the push worked, nonzero otherwise 362299d8f83cSChris Mason * 362399d8f83cSChris Mason * max_slot can put a limit on how far into the leaf we'll push items. The 362499d8f83cSChris Mason * item at 'max_slot' won't be touched. Use (u32)-1 to make us push all the 362599d8f83cSChris Mason * items 362644871b1bSChris Mason */ 362744871b1bSChris Mason static int push_leaf_left(struct btrfs_trans_handle *trans, struct btrfs_root 362899d8f83cSChris Mason *root, struct btrfs_path *path, int min_data_size, 362999d8f83cSChris Mason int data_size, int empty, u32 max_slot) 363044871b1bSChris Mason { 363144871b1bSChris Mason struct extent_buffer *right = path->nodes[0]; 363244871b1bSChris Mason struct extent_buffer *left; 363344871b1bSChris Mason int slot; 363444871b1bSChris Mason int free_space; 363544871b1bSChris Mason u32 right_nritems; 363644871b1bSChris Mason int ret = 0; 363744871b1bSChris Mason 363844871b1bSChris Mason slot = path->slots[1]; 363944871b1bSChris Mason if (slot == 0) 364044871b1bSChris Mason return 1; 364144871b1bSChris Mason if (!path->nodes[1]) 364244871b1bSChris Mason return 1; 364344871b1bSChris Mason 364444871b1bSChris Mason right_nritems = btrfs_header_nritems(right); 364544871b1bSChris Mason if (right_nritems == 0) 364644871b1bSChris Mason return 1; 364744871b1bSChris Mason 364849d0c642SFilipe Manana btrfs_assert_tree_write_locked(path->nodes[1]); 364944871b1bSChris Mason 36504b231ae4SDavid Sterba left = btrfs_read_node_slot(path->nodes[1], slot - 1); 3651fb770ae4SLiu Bo if (IS_ERR(left)) 36529cf14029SJosef Bacik return PTR_ERR(left); 365391ca338dSTsutomu Itoh 3654bf77467aSJosef Bacik __btrfs_tree_lock(left, BTRFS_NESTING_LEFT); 365544871b1bSChris Mason 3656e902baacSDavid Sterba free_space = btrfs_leaf_free_space(left); 365744871b1bSChris Mason if (free_space < data_size) { 365844871b1bSChris Mason ret = 1; 365944871b1bSChris Mason goto out; 366044871b1bSChris Mason } 366144871b1bSChris Mason 366244871b1bSChris Mason ret = btrfs_cow_block(trans, root, left, 36639631e4ccSJosef Bacik path->nodes[1], slot - 1, &left, 3664bf59a5a2SJosef Bacik BTRFS_NESTING_LEFT_COW); 366544871b1bSChris Mason if (ret) { 366644871b1bSChris Mason /* we hit -ENOSPC, but it isn't fatal here */ 366779787eaaSJeff Mahoney if (ret == -ENOSPC) 366844871b1bSChris Mason ret = 1; 366944871b1bSChris Mason goto out; 367044871b1bSChris Mason } 367144871b1bSChris Mason 3672d16c702fSQu Wenruo if (check_sibling_keys(left, right)) { 3673d16c702fSQu Wenruo ret = -EUCLEAN; 36749ae5afd0SFilipe Manana btrfs_abort_transaction(trans, ret); 3675d16c702fSQu Wenruo goto out; 3676d16c702fSQu Wenruo } 3677ed25dab3SJosef Bacik return __push_leaf_left(trans, path, min_data_size, empty, left, 3678ed25dab3SJosef Bacik free_space, right_nritems, max_slot); 367944871b1bSChris Mason out: 368044871b1bSChris Mason btrfs_tree_unlock(left); 368144871b1bSChris Mason free_extent_buffer(left); 368244871b1bSChris Mason return ret; 368344871b1bSChris Mason } 368444871b1bSChris Mason 368544871b1bSChris Mason /* 368674123bd7SChris Mason * split the path's leaf in two, making sure there is at least data_size 368774123bd7SChris Mason * available for the resulting leaf level of the path. 368874123bd7SChris Mason */ 368950b5d1fcSFilipe Manana static noinline int copy_for_split(struct btrfs_trans_handle *trans, 369044871b1bSChris Mason struct btrfs_path *path, 369144871b1bSChris Mason struct extent_buffer *l, 369244871b1bSChris Mason struct extent_buffer *right, 369344871b1bSChris Mason int slot, int mid, int nritems) 3694be0e5c09SChris Mason { 369594f94ad9SDavid Sterba struct btrfs_fs_info *fs_info = trans->fs_info; 3696be0e5c09SChris Mason int data_copy_size; 3697be0e5c09SChris Mason int rt_data_off; 3698be0e5c09SChris Mason int i; 369950b5d1fcSFilipe Manana int ret; 3700d4dbff95SChris Mason struct btrfs_disk_key disk_key; 3701cfed81a0SChris Mason struct btrfs_map_token token; 3702cfed81a0SChris Mason 37035f39d397SChris Mason nritems = nritems - mid; 37045f39d397SChris Mason btrfs_set_header_nritems(right, nritems); 3705dc2e724eSJosef Bacik data_copy_size = btrfs_item_data_end(l, mid) - leaf_data_end(l); 37065f39d397SChris Mason 3707637e3b48SJosef Bacik copy_leaf_items(right, l, 0, mid, nritems); 37085f39d397SChris Mason 3709637e3b48SJosef Bacik copy_leaf_data(right, l, BTRFS_LEAF_DATA_SIZE(fs_info) - data_copy_size, 37108f881e8cSDavid Sterba leaf_data_end(l), data_copy_size); 371174123bd7SChris Mason 3712dc2e724eSJosef Bacik rt_data_off = BTRFS_LEAF_DATA_SIZE(fs_info) - btrfs_item_data_end(l, mid); 37135f39d397SChris Mason 3714c82f823cSDavid Sterba btrfs_init_map_token(&token, right); 37155f39d397SChris Mason for (i = 0; i < nritems; i++) { 3716db94535dSChris Mason u32 ioff; 3717db94535dSChris Mason 37183212fa14SJosef Bacik ioff = btrfs_token_item_offset(&token, i); 37193212fa14SJosef Bacik btrfs_set_token_item_offset(&token, i, ioff + rt_data_off); 37200783fcfcSChris Mason } 372174123bd7SChris Mason 37225f39d397SChris Mason btrfs_set_header_nritems(l, mid); 37235f39d397SChris Mason btrfs_item_key(right, &disk_key, 0); 372450b5d1fcSFilipe Manana ret = insert_ptr(trans, path, &disk_key, right->start, path->slots[1] + 1, 1); 372550b5d1fcSFilipe Manana if (ret < 0) 372650b5d1fcSFilipe Manana return ret; 37275f39d397SChris Mason 3728d5e09e38SFilipe Manana btrfs_mark_buffer_dirty(trans, right); 3729d5e09e38SFilipe Manana btrfs_mark_buffer_dirty(trans, l); 3730eb60ceacSChris Mason BUG_ON(path->slots[0] != slot); 37315f39d397SChris Mason 3732be0e5c09SChris Mason if (mid <= slot) { 3733925baeddSChris Mason btrfs_tree_unlock(path->nodes[0]); 37345f39d397SChris Mason free_extent_buffer(path->nodes[0]); 37355f39d397SChris Mason path->nodes[0] = right; 3736be0e5c09SChris Mason path->slots[0] -= mid; 3737be0e5c09SChris Mason path->slots[1] += 1; 3738925baeddSChris Mason } else { 3739925baeddSChris Mason btrfs_tree_unlock(right); 37405f39d397SChris Mason free_extent_buffer(right); 3741925baeddSChris Mason } 37425f39d397SChris Mason 3743eb60ceacSChris Mason BUG_ON(path->slots[0] < 0); 374450b5d1fcSFilipe Manana 374550b5d1fcSFilipe Manana return 0; 374644871b1bSChris Mason } 374744871b1bSChris Mason 374844871b1bSChris Mason /* 374999d8f83cSChris Mason * double splits happen when we need to insert a big item in the middle 375099d8f83cSChris Mason * of a leaf. A double split can leave us with 3 mostly empty leaves: 375199d8f83cSChris Mason * leaf: [ slots 0 - N] [ our target ] [ N + 1 - total in leaf ] 375299d8f83cSChris Mason * A B C 375399d8f83cSChris Mason * 375499d8f83cSChris Mason * We avoid this by trying to push the items on either side of our target 375599d8f83cSChris Mason * into the adjacent leaves. If all goes well we can avoid the double split 375699d8f83cSChris Mason * completely. 375799d8f83cSChris Mason */ 375899d8f83cSChris Mason static noinline int push_for_double_split(struct btrfs_trans_handle *trans, 375999d8f83cSChris Mason struct btrfs_root *root, 376099d8f83cSChris Mason struct btrfs_path *path, 376199d8f83cSChris Mason int data_size) 376299d8f83cSChris Mason { 376399d8f83cSChris Mason int ret; 376499d8f83cSChris Mason int progress = 0; 376599d8f83cSChris Mason int slot; 376699d8f83cSChris Mason u32 nritems; 37675a4267caSFilipe David Borba Manana int space_needed = data_size; 376899d8f83cSChris Mason 376999d8f83cSChris Mason slot = path->slots[0]; 37705a4267caSFilipe David Borba Manana if (slot < btrfs_header_nritems(path->nodes[0])) 3771e902baacSDavid Sterba space_needed -= btrfs_leaf_free_space(path->nodes[0]); 377299d8f83cSChris Mason 377399d8f83cSChris Mason /* 377499d8f83cSChris Mason * try to push all the items after our slot into the 377599d8f83cSChris Mason * right leaf 377699d8f83cSChris Mason */ 37775a4267caSFilipe David Borba Manana ret = push_leaf_right(trans, root, path, 1, space_needed, 0, slot); 377899d8f83cSChris Mason if (ret < 0) 377999d8f83cSChris Mason return ret; 378099d8f83cSChris Mason 378199d8f83cSChris Mason if (ret == 0) 378299d8f83cSChris Mason progress++; 378399d8f83cSChris Mason 378499d8f83cSChris Mason nritems = btrfs_header_nritems(path->nodes[0]); 378599d8f83cSChris Mason /* 378699d8f83cSChris Mason * our goal is to get our slot at the start or end of a leaf. If 378799d8f83cSChris Mason * we've done so we're done 378899d8f83cSChris Mason */ 378999d8f83cSChris Mason if (path->slots[0] == 0 || path->slots[0] == nritems) 379099d8f83cSChris Mason return 0; 379199d8f83cSChris Mason 3792e902baacSDavid Sterba if (btrfs_leaf_free_space(path->nodes[0]) >= data_size) 379399d8f83cSChris Mason return 0; 379499d8f83cSChris Mason 379599d8f83cSChris Mason /* try to push all the items before our slot into the next leaf */ 379699d8f83cSChris Mason slot = path->slots[0]; 3797263d3995SFilipe Manana space_needed = data_size; 3798263d3995SFilipe Manana if (slot > 0) 3799e902baacSDavid Sterba space_needed -= btrfs_leaf_free_space(path->nodes[0]); 38005a4267caSFilipe David Borba Manana ret = push_leaf_left(trans, root, path, 1, space_needed, 0, slot); 380199d8f83cSChris Mason if (ret < 0) 380299d8f83cSChris Mason return ret; 380399d8f83cSChris Mason 380499d8f83cSChris Mason if (ret == 0) 380599d8f83cSChris Mason progress++; 380699d8f83cSChris Mason 380799d8f83cSChris Mason if (progress) 380899d8f83cSChris Mason return 0; 380999d8f83cSChris Mason return 1; 381099d8f83cSChris Mason } 381199d8f83cSChris Mason 381299d8f83cSChris Mason /* 381344871b1bSChris Mason * split the path's leaf in two, making sure there is at least data_size 381444871b1bSChris Mason * available for the resulting leaf level of the path. 381544871b1bSChris Mason * 381644871b1bSChris Mason * returns 0 if all went well and < 0 on failure. 381744871b1bSChris Mason */ 381844871b1bSChris Mason static noinline int split_leaf(struct btrfs_trans_handle *trans, 381944871b1bSChris Mason struct btrfs_root *root, 3820310712b2SOmar Sandoval const struct btrfs_key *ins_key, 382144871b1bSChris Mason struct btrfs_path *path, int data_size, 382244871b1bSChris Mason int extend) 382344871b1bSChris Mason { 38245d4f98a2SYan Zheng struct btrfs_disk_key disk_key; 382544871b1bSChris Mason struct extent_buffer *l; 382644871b1bSChris Mason u32 nritems; 382744871b1bSChris Mason int mid; 382844871b1bSChris Mason int slot; 382944871b1bSChris Mason struct extent_buffer *right; 3830b7a0365eSDaniel Dressler struct btrfs_fs_info *fs_info = root->fs_info; 383144871b1bSChris Mason int ret = 0; 383244871b1bSChris Mason int wret; 38335d4f98a2SYan Zheng int split; 383444871b1bSChris Mason int num_doubles = 0; 383599d8f83cSChris Mason int tried_avoid_double = 0; 383644871b1bSChris Mason 3837a5719521SYan, Zheng l = path->nodes[0]; 3838a5719521SYan, Zheng slot = path->slots[0]; 38393212fa14SJosef Bacik if (extend && data_size + btrfs_item_size(l, slot) + 38400b246afaSJeff Mahoney sizeof(struct btrfs_item) > BTRFS_LEAF_DATA_SIZE(fs_info)) 3841a5719521SYan, Zheng return -EOVERFLOW; 3842a5719521SYan, Zheng 384344871b1bSChris Mason /* first try to make some room by pushing left and right */ 384433157e05SLiu Bo if (data_size && path->nodes[1]) { 38455a4267caSFilipe David Borba Manana int space_needed = data_size; 38465a4267caSFilipe David Borba Manana 38475a4267caSFilipe David Borba Manana if (slot < btrfs_header_nritems(l)) 3848e902baacSDavid Sterba space_needed -= btrfs_leaf_free_space(l); 38495a4267caSFilipe David Borba Manana 38505a4267caSFilipe David Borba Manana wret = push_leaf_right(trans, root, path, space_needed, 38515a4267caSFilipe David Borba Manana space_needed, 0, 0); 385244871b1bSChris Mason if (wret < 0) 385344871b1bSChris Mason return wret; 385444871b1bSChris Mason if (wret) { 3855263d3995SFilipe Manana space_needed = data_size; 3856263d3995SFilipe Manana if (slot > 0) 3857e902baacSDavid Sterba space_needed -= btrfs_leaf_free_space(l); 38585a4267caSFilipe David Borba Manana wret = push_leaf_left(trans, root, path, space_needed, 38595a4267caSFilipe David Borba Manana space_needed, 0, (u32)-1); 386044871b1bSChris Mason if (wret < 0) 386144871b1bSChris Mason return wret; 386244871b1bSChris Mason } 386344871b1bSChris Mason l = path->nodes[0]; 386444871b1bSChris Mason 386544871b1bSChris Mason /* did the pushes work? */ 3866e902baacSDavid Sterba if (btrfs_leaf_free_space(l) >= data_size) 386744871b1bSChris Mason return 0; 386844871b1bSChris Mason } 386944871b1bSChris Mason 387044871b1bSChris Mason if (!path->nodes[1]) { 3871fdd99c72SLiu Bo ret = insert_new_root(trans, root, path, 1); 387244871b1bSChris Mason if (ret) 387344871b1bSChris Mason return ret; 387444871b1bSChris Mason } 387544871b1bSChris Mason again: 38765d4f98a2SYan Zheng split = 1; 387744871b1bSChris Mason l = path->nodes[0]; 387844871b1bSChris Mason slot = path->slots[0]; 387944871b1bSChris Mason nritems = btrfs_header_nritems(l); 388044871b1bSChris Mason mid = (nritems + 1) / 2; 388144871b1bSChris Mason 38825d4f98a2SYan Zheng if (mid <= slot) { 38835d4f98a2SYan Zheng if (nritems == 1 || 38845d4f98a2SYan Zheng leaf_space_used(l, mid, nritems - mid) + data_size > 38850b246afaSJeff Mahoney BTRFS_LEAF_DATA_SIZE(fs_info)) { 38865d4f98a2SYan Zheng if (slot >= nritems) { 38875d4f98a2SYan Zheng split = 0; 38885d4f98a2SYan Zheng } else { 38895d4f98a2SYan Zheng mid = slot; 38905d4f98a2SYan Zheng if (mid != nritems && 38915d4f98a2SYan Zheng leaf_space_used(l, mid, nritems - mid) + 38920b246afaSJeff Mahoney data_size > BTRFS_LEAF_DATA_SIZE(fs_info)) { 389399d8f83cSChris Mason if (data_size && !tried_avoid_double) 389499d8f83cSChris Mason goto push_for_double; 38955d4f98a2SYan Zheng split = 2; 38965d4f98a2SYan Zheng } 38975d4f98a2SYan Zheng } 38985d4f98a2SYan Zheng } 38995d4f98a2SYan Zheng } else { 39005d4f98a2SYan Zheng if (leaf_space_used(l, 0, mid) + data_size > 39010b246afaSJeff Mahoney BTRFS_LEAF_DATA_SIZE(fs_info)) { 39025d4f98a2SYan Zheng if (!extend && data_size && slot == 0) { 39035d4f98a2SYan Zheng split = 0; 39045d4f98a2SYan Zheng } else if ((extend || !data_size) && slot == 0) { 39055d4f98a2SYan Zheng mid = 1; 39065d4f98a2SYan Zheng } else { 39075d4f98a2SYan Zheng mid = slot; 39085d4f98a2SYan Zheng if (mid != nritems && 39095d4f98a2SYan Zheng leaf_space_used(l, mid, nritems - mid) + 39100b246afaSJeff Mahoney data_size > BTRFS_LEAF_DATA_SIZE(fs_info)) { 391199d8f83cSChris Mason if (data_size && !tried_avoid_double) 391299d8f83cSChris Mason goto push_for_double; 39135d4f98a2SYan Zheng split = 2; 39145d4f98a2SYan Zheng } 39155d4f98a2SYan Zheng } 39165d4f98a2SYan Zheng } 39175d4f98a2SYan Zheng } 39185d4f98a2SYan Zheng 39195d4f98a2SYan Zheng if (split == 0) 39205d4f98a2SYan Zheng btrfs_cpu_key_to_disk(&disk_key, ins_key); 39215d4f98a2SYan Zheng else 39225d4f98a2SYan Zheng btrfs_item_key(l, &disk_key, mid); 39235d4f98a2SYan Zheng 3924ca9d473aSJosef Bacik /* 3925ca9d473aSJosef Bacik * We have to about BTRFS_NESTING_NEW_ROOT here if we've done a double 3926ca9d473aSJosef Bacik * split, because we're only allowed to have MAX_LOCKDEP_SUBCLASSES 3927ca9d473aSJosef Bacik * subclasses, which is 8 at the time of this patch, and we've maxed it 3928ca9d473aSJosef Bacik * out. In the future we could add a 3929ca9d473aSJosef Bacik * BTRFS_NESTING_SPLIT_THE_SPLITTENING if we need to, but for now just 3930ca9d473aSJosef Bacik * use BTRFS_NESTING_NEW_ROOT. 3931ca9d473aSJosef Bacik */ 393279bd3712SFilipe Manana right = btrfs_alloc_tree_block(trans, root, 0, root->root_key.objectid, 393379bd3712SFilipe Manana &disk_key, 0, l->start, 0, 393479bd3712SFilipe Manana num_doubles ? BTRFS_NESTING_NEW_ROOT : 3935ca9d473aSJosef Bacik BTRFS_NESTING_SPLIT); 3936f0486c68SYan, Zheng if (IS_ERR(right)) 393744871b1bSChris Mason return PTR_ERR(right); 3938f0486c68SYan, Zheng 39390b246afaSJeff Mahoney root_add_used(root, fs_info->nodesize); 394044871b1bSChris Mason 39415d4f98a2SYan Zheng if (split == 0) { 394244871b1bSChris Mason if (mid <= slot) { 394344871b1bSChris Mason btrfs_set_header_nritems(right, 0); 394450b5d1fcSFilipe Manana ret = insert_ptr(trans, path, &disk_key, 39452ff7e61eSJeff Mahoney right->start, path->slots[1] + 1, 1); 394650b5d1fcSFilipe Manana if (ret < 0) { 394750b5d1fcSFilipe Manana btrfs_tree_unlock(right); 394850b5d1fcSFilipe Manana free_extent_buffer(right); 394950b5d1fcSFilipe Manana return ret; 395050b5d1fcSFilipe Manana } 395144871b1bSChris Mason btrfs_tree_unlock(path->nodes[0]); 395244871b1bSChris Mason free_extent_buffer(path->nodes[0]); 395344871b1bSChris Mason path->nodes[0] = right; 395444871b1bSChris Mason path->slots[0] = 0; 395544871b1bSChris Mason path->slots[1] += 1; 395644871b1bSChris Mason } else { 395744871b1bSChris Mason btrfs_set_header_nritems(right, 0); 395850b5d1fcSFilipe Manana ret = insert_ptr(trans, path, &disk_key, 39592ff7e61eSJeff Mahoney right->start, path->slots[1], 1); 396050b5d1fcSFilipe Manana if (ret < 0) { 396150b5d1fcSFilipe Manana btrfs_tree_unlock(right); 396250b5d1fcSFilipe Manana free_extent_buffer(right); 396350b5d1fcSFilipe Manana return ret; 396450b5d1fcSFilipe Manana } 396544871b1bSChris Mason btrfs_tree_unlock(path->nodes[0]); 396644871b1bSChris Mason free_extent_buffer(path->nodes[0]); 396744871b1bSChris Mason path->nodes[0] = right; 396844871b1bSChris Mason path->slots[0] = 0; 3969143bede5SJeff Mahoney if (path->slots[1] == 0) 3970d5e09e38SFilipe Manana fixup_low_keys(trans, path, &disk_key, 1); 39715d4f98a2SYan Zheng } 3972196e0249SLiu Bo /* 3973196e0249SLiu Bo * We create a new leaf 'right' for the required ins_len and 3974196e0249SLiu Bo * we'll do btrfs_mark_buffer_dirty() on this leaf after copying 3975196e0249SLiu Bo * the content of ins_len to 'right'. 3976196e0249SLiu Bo */ 397744871b1bSChris Mason return ret; 397844871b1bSChris Mason } 397944871b1bSChris Mason 398050b5d1fcSFilipe Manana ret = copy_for_split(trans, path, l, right, slot, mid, nritems); 398150b5d1fcSFilipe Manana if (ret < 0) { 398250b5d1fcSFilipe Manana btrfs_tree_unlock(right); 398350b5d1fcSFilipe Manana free_extent_buffer(right); 398450b5d1fcSFilipe Manana return ret; 398550b5d1fcSFilipe Manana } 398644871b1bSChris Mason 39875d4f98a2SYan Zheng if (split == 2) { 3988cc0c5538SChris Mason BUG_ON(num_doubles != 0); 3989cc0c5538SChris Mason num_doubles++; 3990cc0c5538SChris Mason goto again; 39913326d1b0SChris Mason } 399244871b1bSChris Mason 3993143bede5SJeff Mahoney return 0; 399499d8f83cSChris Mason 399599d8f83cSChris Mason push_for_double: 399699d8f83cSChris Mason push_for_double_split(trans, root, path, data_size); 399799d8f83cSChris Mason tried_avoid_double = 1; 3998e902baacSDavid Sterba if (btrfs_leaf_free_space(path->nodes[0]) >= data_size) 399999d8f83cSChris Mason return 0; 400099d8f83cSChris Mason goto again; 4001be0e5c09SChris Mason } 4002be0e5c09SChris Mason 4003ad48fd75SYan, Zheng static noinline int setup_leaf_for_split(struct btrfs_trans_handle *trans, 4004ad48fd75SYan, Zheng struct btrfs_root *root, 4005ad48fd75SYan, Zheng struct btrfs_path *path, int ins_len) 4006ad48fd75SYan, Zheng { 4007ad48fd75SYan, Zheng struct btrfs_key key; 4008ad48fd75SYan, Zheng struct extent_buffer *leaf; 4009ad48fd75SYan, Zheng struct btrfs_file_extent_item *fi; 4010ad48fd75SYan, Zheng u64 extent_len = 0; 4011ad48fd75SYan, Zheng u32 item_size; 4012ad48fd75SYan, Zheng int ret; 4013ad48fd75SYan, Zheng 4014ad48fd75SYan, Zheng leaf = path->nodes[0]; 4015ad48fd75SYan, Zheng btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); 4016ad48fd75SYan, Zheng 4017ad48fd75SYan, Zheng BUG_ON(key.type != BTRFS_EXTENT_DATA_KEY && 4018ad48fd75SYan, Zheng key.type != BTRFS_EXTENT_CSUM_KEY); 4019ad48fd75SYan, Zheng 4020e902baacSDavid Sterba if (btrfs_leaf_free_space(leaf) >= ins_len) 4021ad48fd75SYan, Zheng return 0; 4022ad48fd75SYan, Zheng 40233212fa14SJosef Bacik item_size = btrfs_item_size(leaf, path->slots[0]); 4024ad48fd75SYan, Zheng if (key.type == BTRFS_EXTENT_DATA_KEY) { 4025ad48fd75SYan, Zheng fi = btrfs_item_ptr(leaf, path->slots[0], 4026ad48fd75SYan, Zheng struct btrfs_file_extent_item); 4027ad48fd75SYan, Zheng extent_len = btrfs_file_extent_num_bytes(leaf, fi); 4028ad48fd75SYan, Zheng } 4029b3b4aa74SDavid Sterba btrfs_release_path(path); 4030ad48fd75SYan, Zheng 4031ad48fd75SYan, Zheng path->keep_locks = 1; 4032ad48fd75SYan, Zheng path->search_for_split = 1; 4033ad48fd75SYan, Zheng ret = btrfs_search_slot(trans, root, &key, path, 0, 1); 4034ad48fd75SYan, Zheng path->search_for_split = 0; 4035a8df6fe6SFilipe Manana if (ret > 0) 4036a8df6fe6SFilipe Manana ret = -EAGAIN; 4037ad48fd75SYan, Zheng if (ret < 0) 4038ad48fd75SYan, Zheng goto err; 4039ad48fd75SYan, Zheng 4040ad48fd75SYan, Zheng ret = -EAGAIN; 4041ad48fd75SYan, Zheng leaf = path->nodes[0]; 4042a8df6fe6SFilipe Manana /* if our item isn't there, return now */ 40433212fa14SJosef Bacik if (item_size != btrfs_item_size(leaf, path->slots[0])) 4044ad48fd75SYan, Zheng goto err; 4045ad48fd75SYan, Zheng 4046109f6aefSChris Mason /* the leaf has changed, it now has room. return now */ 4047e902baacSDavid Sterba if (btrfs_leaf_free_space(path->nodes[0]) >= ins_len) 4048109f6aefSChris Mason goto err; 4049109f6aefSChris Mason 4050ad48fd75SYan, Zheng if (key.type == BTRFS_EXTENT_DATA_KEY) { 4051ad48fd75SYan, Zheng fi = btrfs_item_ptr(leaf, path->slots[0], 4052ad48fd75SYan, Zheng struct btrfs_file_extent_item); 4053ad48fd75SYan, Zheng if (extent_len != btrfs_file_extent_num_bytes(leaf, fi)) 4054ad48fd75SYan, Zheng goto err; 4055ad48fd75SYan, Zheng } 4056ad48fd75SYan, Zheng 4057ad48fd75SYan, Zheng ret = split_leaf(trans, root, &key, path, ins_len, 1); 4058f0486c68SYan, Zheng if (ret) 4059f0486c68SYan, Zheng goto err; 4060ad48fd75SYan, Zheng 4061ad48fd75SYan, Zheng path->keep_locks = 0; 4062ad48fd75SYan, Zheng btrfs_unlock_up_safe(path, 1); 4063ad48fd75SYan, Zheng return 0; 4064ad48fd75SYan, Zheng err: 4065ad48fd75SYan, Zheng path->keep_locks = 0; 4066ad48fd75SYan, Zheng return ret; 4067ad48fd75SYan, Zheng } 4068ad48fd75SYan, Zheng 4069d5e09e38SFilipe Manana static noinline int split_item(struct btrfs_trans_handle *trans, 4070d5e09e38SFilipe Manana struct btrfs_path *path, 4071310712b2SOmar Sandoval const struct btrfs_key *new_key, 4072459931ecSChris Mason unsigned long split_offset) 4073459931ecSChris Mason { 4074459931ecSChris Mason struct extent_buffer *leaf; 4075c91666b1SJosef Bacik int orig_slot, slot; 4076ad48fd75SYan, Zheng char *buf; 4077459931ecSChris Mason u32 nritems; 4078ad48fd75SYan, Zheng u32 item_size; 4079459931ecSChris Mason u32 orig_offset; 4080459931ecSChris Mason struct btrfs_disk_key disk_key; 4081459931ecSChris Mason 4082459931ecSChris Mason leaf = path->nodes[0]; 40837569141eSFilipe Manana /* 40847569141eSFilipe Manana * Shouldn't happen because the caller must have previously called 40857569141eSFilipe Manana * setup_leaf_for_split() to make room for the new item in the leaf. 40867569141eSFilipe Manana */ 40877569141eSFilipe Manana if (WARN_ON(btrfs_leaf_free_space(leaf) < sizeof(struct btrfs_item))) 40887569141eSFilipe Manana return -ENOSPC; 4089b9473439SChris Mason 4090c91666b1SJosef Bacik orig_slot = path->slots[0]; 40913212fa14SJosef Bacik orig_offset = btrfs_item_offset(leaf, path->slots[0]); 40923212fa14SJosef Bacik item_size = btrfs_item_size(leaf, path->slots[0]); 4093459931ecSChris Mason 4094459931ecSChris Mason buf = kmalloc(item_size, GFP_NOFS); 4095ad48fd75SYan, Zheng if (!buf) 4096ad48fd75SYan, Zheng return -ENOMEM; 4097ad48fd75SYan, Zheng 4098459931ecSChris Mason read_extent_buffer(leaf, buf, btrfs_item_ptr_offset(leaf, 4099459931ecSChris Mason path->slots[0]), item_size); 4100ad48fd75SYan, Zheng 4101459931ecSChris Mason slot = path->slots[0] + 1; 4102459931ecSChris Mason nritems = btrfs_header_nritems(leaf); 4103459931ecSChris Mason if (slot != nritems) { 4104459931ecSChris Mason /* shift the items */ 4105637e3b48SJosef Bacik memmove_leaf_items(leaf, slot + 1, slot, nritems - slot); 4106459931ecSChris Mason } 4107459931ecSChris Mason 4108459931ecSChris Mason btrfs_cpu_key_to_disk(&disk_key, new_key); 4109459931ecSChris Mason btrfs_set_item_key(leaf, &disk_key, slot); 4110459931ecSChris Mason 41113212fa14SJosef Bacik btrfs_set_item_offset(leaf, slot, orig_offset); 41123212fa14SJosef Bacik btrfs_set_item_size(leaf, slot, item_size - split_offset); 4113459931ecSChris Mason 41143212fa14SJosef Bacik btrfs_set_item_offset(leaf, orig_slot, 4115459931ecSChris Mason orig_offset + item_size - split_offset); 41163212fa14SJosef Bacik btrfs_set_item_size(leaf, orig_slot, split_offset); 4117459931ecSChris Mason 4118459931ecSChris Mason btrfs_set_header_nritems(leaf, nritems + 1); 4119459931ecSChris Mason 4120459931ecSChris Mason /* write the data for the start of the original item */ 4121459931ecSChris Mason write_extent_buffer(leaf, buf, 4122459931ecSChris Mason btrfs_item_ptr_offset(leaf, path->slots[0]), 4123459931ecSChris Mason split_offset); 4124459931ecSChris Mason 4125459931ecSChris Mason /* write the data for the new item */ 4126459931ecSChris Mason write_extent_buffer(leaf, buf + split_offset, 4127459931ecSChris Mason btrfs_item_ptr_offset(leaf, slot), 4128459931ecSChris Mason item_size - split_offset); 4129d5e09e38SFilipe Manana btrfs_mark_buffer_dirty(trans, leaf); 4130459931ecSChris Mason 4131e902baacSDavid Sterba BUG_ON(btrfs_leaf_free_space(leaf) < 0); 4132459931ecSChris Mason kfree(buf); 4133ad48fd75SYan, Zheng return 0; 4134ad48fd75SYan, Zheng } 4135ad48fd75SYan, Zheng 4136ad48fd75SYan, Zheng /* 4137ad48fd75SYan, Zheng * This function splits a single item into two items, 4138ad48fd75SYan, Zheng * giving 'new_key' to the new item and splitting the 4139ad48fd75SYan, Zheng * old one at split_offset (from the start of the item). 4140ad48fd75SYan, Zheng * 4141ad48fd75SYan, Zheng * The path may be released by this operation. After 4142ad48fd75SYan, Zheng * the split, the path is pointing to the old item. The 4143ad48fd75SYan, Zheng * new item is going to be in the same node as the old one. 4144ad48fd75SYan, Zheng * 4145ad48fd75SYan, Zheng * Note, the item being split must be smaller enough to live alone on 4146ad48fd75SYan, Zheng * a tree block with room for one extra struct btrfs_item 4147ad48fd75SYan, Zheng * 4148ad48fd75SYan, Zheng * This allows us to split the item in place, keeping a lock on the 4149ad48fd75SYan, Zheng * leaf the entire time. 4150ad48fd75SYan, Zheng */ 4151ad48fd75SYan, Zheng int btrfs_split_item(struct btrfs_trans_handle *trans, 4152ad48fd75SYan, Zheng struct btrfs_root *root, 4153ad48fd75SYan, Zheng struct btrfs_path *path, 4154310712b2SOmar Sandoval const struct btrfs_key *new_key, 4155ad48fd75SYan, Zheng unsigned long split_offset) 4156ad48fd75SYan, Zheng { 4157ad48fd75SYan, Zheng int ret; 4158ad48fd75SYan, Zheng ret = setup_leaf_for_split(trans, root, path, 4159ad48fd75SYan, Zheng sizeof(struct btrfs_item)); 4160ad48fd75SYan, Zheng if (ret) 4161459931ecSChris Mason return ret; 4162ad48fd75SYan, Zheng 4163d5e09e38SFilipe Manana ret = split_item(trans, path, new_key, split_offset); 4164ad48fd75SYan, Zheng return ret; 4165ad48fd75SYan, Zheng } 4166ad48fd75SYan, Zheng 4167ad48fd75SYan, Zheng /* 4168d352ac68SChris Mason * make the item pointed to by the path smaller. new_size indicates 4169d352ac68SChris Mason * how small to make it, and from_end tells us if we just chop bytes 4170d352ac68SChris Mason * off the end of the item or if we shift the item to chop bytes off 4171d352ac68SChris Mason * the front. 4172d352ac68SChris Mason */ 4173d5e09e38SFilipe Manana void btrfs_truncate_item(struct btrfs_trans_handle *trans, 4174d5e09e38SFilipe Manana struct btrfs_path *path, u32 new_size, int from_end) 4175b18c6685SChris Mason { 4176b18c6685SChris Mason int slot; 41775f39d397SChris Mason struct extent_buffer *leaf; 4178b18c6685SChris Mason u32 nritems; 4179b18c6685SChris Mason unsigned int data_end; 4180b18c6685SChris Mason unsigned int old_data_start; 4181b18c6685SChris Mason unsigned int old_size; 4182b18c6685SChris Mason unsigned int size_diff; 4183b18c6685SChris Mason int i; 4184cfed81a0SChris Mason struct btrfs_map_token token; 4185cfed81a0SChris Mason 41865f39d397SChris Mason leaf = path->nodes[0]; 4187179e29e4SChris Mason slot = path->slots[0]; 4188179e29e4SChris Mason 41893212fa14SJosef Bacik old_size = btrfs_item_size(leaf, slot); 4190179e29e4SChris Mason if (old_size == new_size) 4191143bede5SJeff Mahoney return; 4192b18c6685SChris Mason 41935f39d397SChris Mason nritems = btrfs_header_nritems(leaf); 41948f881e8cSDavid Sterba data_end = leaf_data_end(leaf); 4195b18c6685SChris Mason 41963212fa14SJosef Bacik old_data_start = btrfs_item_offset(leaf, slot); 4197179e29e4SChris Mason 4198b18c6685SChris Mason size_diff = old_size - new_size; 4199b18c6685SChris Mason 4200b18c6685SChris Mason BUG_ON(slot < 0); 4201b18c6685SChris Mason BUG_ON(slot >= nritems); 4202b18c6685SChris Mason 4203b18c6685SChris Mason /* 4204b18c6685SChris Mason * item0..itemN ... dataN.offset..dataN.size .. data0.size 4205b18c6685SChris Mason */ 4206b18c6685SChris Mason /* first correct the data pointers */ 4207c82f823cSDavid Sterba btrfs_init_map_token(&token, leaf); 4208b18c6685SChris Mason for (i = slot; i < nritems; i++) { 42095f39d397SChris Mason u32 ioff; 4210db94535dSChris Mason 42113212fa14SJosef Bacik ioff = btrfs_token_item_offset(&token, i); 42123212fa14SJosef Bacik btrfs_set_token_item_offset(&token, i, ioff + size_diff); 4213b18c6685SChris Mason } 4214db94535dSChris Mason 4215b18c6685SChris Mason /* shift the data */ 4216179e29e4SChris Mason if (from_end) { 4217637e3b48SJosef Bacik memmove_leaf_data(leaf, data_end + size_diff, data_end, 4218637e3b48SJosef Bacik old_data_start + new_size - data_end); 4219179e29e4SChris Mason } else { 4220179e29e4SChris Mason struct btrfs_disk_key disk_key; 4221179e29e4SChris Mason u64 offset; 4222179e29e4SChris Mason 4223179e29e4SChris Mason btrfs_item_key(leaf, &disk_key, slot); 4224179e29e4SChris Mason 4225179e29e4SChris Mason if (btrfs_disk_key_type(&disk_key) == BTRFS_EXTENT_DATA_KEY) { 4226179e29e4SChris Mason unsigned long ptr; 4227179e29e4SChris Mason struct btrfs_file_extent_item *fi; 4228179e29e4SChris Mason 4229179e29e4SChris Mason fi = btrfs_item_ptr(leaf, slot, 4230179e29e4SChris Mason struct btrfs_file_extent_item); 4231179e29e4SChris Mason fi = (struct btrfs_file_extent_item *)( 4232179e29e4SChris Mason (unsigned long)fi - size_diff); 4233179e29e4SChris Mason 4234179e29e4SChris Mason if (btrfs_file_extent_type(leaf, fi) == 4235179e29e4SChris Mason BTRFS_FILE_EXTENT_INLINE) { 4236179e29e4SChris Mason ptr = btrfs_item_ptr_offset(leaf, slot); 4237179e29e4SChris Mason memmove_extent_buffer(leaf, ptr, 4238179e29e4SChris Mason (unsigned long)fi, 42397ec20afbSDavid Sterba BTRFS_FILE_EXTENT_INLINE_DATA_START); 4240179e29e4SChris Mason } 4241179e29e4SChris Mason } 4242179e29e4SChris Mason 4243637e3b48SJosef Bacik memmove_leaf_data(leaf, data_end + size_diff, data_end, 4244637e3b48SJosef Bacik old_data_start - data_end); 4245179e29e4SChris Mason 4246179e29e4SChris Mason offset = btrfs_disk_key_offset(&disk_key); 4247179e29e4SChris Mason btrfs_set_disk_key_offset(&disk_key, offset + size_diff); 4248179e29e4SChris Mason btrfs_set_item_key(leaf, &disk_key, slot); 4249179e29e4SChris Mason if (slot == 0) 4250d5e09e38SFilipe Manana fixup_low_keys(trans, path, &disk_key, 1); 4251179e29e4SChris Mason } 42525f39d397SChris Mason 42533212fa14SJosef Bacik btrfs_set_item_size(leaf, slot, new_size); 4254d5e09e38SFilipe Manana btrfs_mark_buffer_dirty(trans, leaf); 4255b18c6685SChris Mason 4256e902baacSDavid Sterba if (btrfs_leaf_free_space(leaf) < 0) { 4257a4f78750SDavid Sterba btrfs_print_leaf(leaf); 4258b18c6685SChris Mason BUG(); 42595f39d397SChris Mason } 4260b18c6685SChris Mason } 4261b18c6685SChris Mason 4262d352ac68SChris Mason /* 42638f69dbd2SStefan Behrens * make the item pointed to by the path bigger, data_size is the added size. 4264d352ac68SChris Mason */ 4265d5e09e38SFilipe Manana void btrfs_extend_item(struct btrfs_trans_handle *trans, 4266d5e09e38SFilipe Manana struct btrfs_path *path, u32 data_size) 42676567e837SChris Mason { 42686567e837SChris Mason int slot; 42695f39d397SChris Mason struct extent_buffer *leaf; 42706567e837SChris Mason u32 nritems; 42716567e837SChris Mason unsigned int data_end; 42726567e837SChris Mason unsigned int old_data; 42736567e837SChris Mason unsigned int old_size; 42746567e837SChris Mason int i; 4275cfed81a0SChris Mason struct btrfs_map_token token; 4276cfed81a0SChris Mason 42775f39d397SChris Mason leaf = path->nodes[0]; 42786567e837SChris Mason 42795f39d397SChris Mason nritems = btrfs_header_nritems(leaf); 42808f881e8cSDavid Sterba data_end = leaf_data_end(leaf); 42816567e837SChris Mason 4282e902baacSDavid Sterba if (btrfs_leaf_free_space(leaf) < data_size) { 4283a4f78750SDavid Sterba btrfs_print_leaf(leaf); 42846567e837SChris Mason BUG(); 42855f39d397SChris Mason } 42866567e837SChris Mason slot = path->slots[0]; 4287dc2e724eSJosef Bacik old_data = btrfs_item_data_end(leaf, slot); 42886567e837SChris Mason 42896567e837SChris Mason BUG_ON(slot < 0); 42903326d1b0SChris Mason if (slot >= nritems) { 4291a4f78750SDavid Sterba btrfs_print_leaf(leaf); 4292c71dd880SDavid Sterba btrfs_crit(leaf->fs_info, "slot %d too large, nritems %d", 4293d397712bSChris Mason slot, nritems); 4294290342f6SArnd Bergmann BUG(); 42953326d1b0SChris Mason } 42966567e837SChris Mason 42976567e837SChris Mason /* 42986567e837SChris Mason * item0..itemN ... dataN.offset..dataN.size .. data0.size 42996567e837SChris Mason */ 43006567e837SChris Mason /* first correct the data pointers */ 4301c82f823cSDavid Sterba btrfs_init_map_token(&token, leaf); 43026567e837SChris Mason for (i = slot; i < nritems; i++) { 43035f39d397SChris Mason u32 ioff; 4304db94535dSChris Mason 43053212fa14SJosef Bacik ioff = btrfs_token_item_offset(&token, i); 43063212fa14SJosef Bacik btrfs_set_token_item_offset(&token, i, ioff - data_size); 43076567e837SChris Mason } 43085f39d397SChris Mason 43096567e837SChris Mason /* shift the data */ 4310637e3b48SJosef Bacik memmove_leaf_data(leaf, data_end - data_size, data_end, 4311637e3b48SJosef Bacik old_data - data_end); 43125f39d397SChris Mason 43136567e837SChris Mason data_end = old_data; 43143212fa14SJosef Bacik old_size = btrfs_item_size(leaf, slot); 43153212fa14SJosef Bacik btrfs_set_item_size(leaf, slot, old_size + data_size); 4316d5e09e38SFilipe Manana btrfs_mark_buffer_dirty(trans, leaf); 43176567e837SChris Mason 4318e902baacSDavid Sterba if (btrfs_leaf_free_space(leaf) < 0) { 4319a4f78750SDavid Sterba btrfs_print_leaf(leaf); 43206567e837SChris Mason BUG(); 43215f39d397SChris Mason } 43226567e837SChris Mason } 43236567e837SChris Mason 432443dd529aSDavid Sterba /* 432543dd529aSDavid Sterba * Make space in the node before inserting one or more items. 4326da9ffb24SNikolay Borisov * 4327d5e09e38SFilipe Manana * @trans: transaction handle 4328da9ffb24SNikolay Borisov * @root: root we are inserting items to 4329da9ffb24SNikolay Borisov * @path: points to the leaf/slot where we are going to insert new items 4330b7ef5f3aSFilipe Manana * @batch: information about the batch of items to insert 433143dd529aSDavid Sterba * 433243dd529aSDavid Sterba * Main purpose is to save stack depth by doing the bulk of the work in a 433343dd529aSDavid Sterba * function that doesn't call btrfs_search_slot 433474123bd7SChris Mason */ 4335d5e09e38SFilipe Manana static void setup_items_for_insert(struct btrfs_trans_handle *trans, 4336d5e09e38SFilipe Manana struct btrfs_root *root, struct btrfs_path *path, 4337b7ef5f3aSFilipe Manana const struct btrfs_item_batch *batch) 4338be0e5c09SChris Mason { 43390b246afaSJeff Mahoney struct btrfs_fs_info *fs_info = root->fs_info; 43409c58309dSChris Mason int i; 43417518a238SChris Mason u32 nritems; 4342be0e5c09SChris Mason unsigned int data_end; 4343e2fa7227SChris Mason struct btrfs_disk_key disk_key; 434444871b1bSChris Mason struct extent_buffer *leaf; 434544871b1bSChris Mason int slot; 4346cfed81a0SChris Mason struct btrfs_map_token token; 4347fc0d82e1SNikolay Borisov u32 total_size; 4348fc0d82e1SNikolay Borisov 4349b7ef5f3aSFilipe Manana /* 4350b7ef5f3aSFilipe Manana * Before anything else, update keys in the parent and other ancestors 4351b7ef5f3aSFilipe Manana * if needed, then release the write locks on them, so that other tasks 4352b7ef5f3aSFilipe Manana * can use them while we modify the leaf. 4353b7ef5f3aSFilipe Manana */ 435424cdc847SFilipe Manana if (path->slots[0] == 0) { 4355b7ef5f3aSFilipe Manana btrfs_cpu_key_to_disk(&disk_key, &batch->keys[0]); 4356d5e09e38SFilipe Manana fixup_low_keys(trans, path, &disk_key, 1); 435724cdc847SFilipe Manana } 435824cdc847SFilipe Manana btrfs_unlock_up_safe(path, 1); 435924cdc847SFilipe Manana 43605f39d397SChris Mason leaf = path->nodes[0]; 436144871b1bSChris Mason slot = path->slots[0]; 436274123bd7SChris Mason 43635f39d397SChris Mason nritems = btrfs_header_nritems(leaf); 43648f881e8cSDavid Sterba data_end = leaf_data_end(leaf); 4365b7ef5f3aSFilipe Manana total_size = batch->total_data_size + (batch->nr * sizeof(struct btrfs_item)); 4366eb60ceacSChris Mason 4367e902baacSDavid Sterba if (btrfs_leaf_free_space(leaf) < total_size) { 4368a4f78750SDavid Sterba btrfs_print_leaf(leaf); 43690b246afaSJeff Mahoney btrfs_crit(fs_info, "not enough freespace need %u have %d", 4370e902baacSDavid Sterba total_size, btrfs_leaf_free_space(leaf)); 4371be0e5c09SChris Mason BUG(); 4372d4dbff95SChris Mason } 43735f39d397SChris Mason 4374c82f823cSDavid Sterba btrfs_init_map_token(&token, leaf); 4375be0e5c09SChris Mason if (slot != nritems) { 4376dc2e724eSJosef Bacik unsigned int old_data = btrfs_item_data_end(leaf, slot); 4377be0e5c09SChris Mason 43785f39d397SChris Mason if (old_data < data_end) { 4379a4f78750SDavid Sterba btrfs_print_leaf(leaf); 43807269ddd2SNikolay Borisov btrfs_crit(fs_info, 43817269ddd2SNikolay Borisov "item at slot %d with data offset %u beyond data end of leaf %u", 43825f39d397SChris Mason slot, old_data, data_end); 4383290342f6SArnd Bergmann BUG(); 43845f39d397SChris Mason } 4385be0e5c09SChris Mason /* 4386be0e5c09SChris Mason * item0..itemN ... dataN.offset..dataN.size .. data0.size 4387be0e5c09SChris Mason */ 4388be0e5c09SChris Mason /* first correct the data pointers */ 43890783fcfcSChris Mason for (i = slot; i < nritems; i++) { 43905f39d397SChris Mason u32 ioff; 4391db94535dSChris Mason 43923212fa14SJosef Bacik ioff = btrfs_token_item_offset(&token, i); 43933212fa14SJosef Bacik btrfs_set_token_item_offset(&token, i, 4394b7ef5f3aSFilipe Manana ioff - batch->total_data_size); 43950783fcfcSChris Mason } 4396be0e5c09SChris Mason /* shift the items */ 4397637e3b48SJosef Bacik memmove_leaf_items(leaf, slot + batch->nr, slot, nritems - slot); 4398be0e5c09SChris Mason 4399be0e5c09SChris Mason /* shift the data */ 4400637e3b48SJosef Bacik memmove_leaf_data(leaf, data_end - batch->total_data_size, 4401637e3b48SJosef Bacik data_end, old_data - data_end); 4402be0e5c09SChris Mason data_end = old_data; 4403be0e5c09SChris Mason } 44045f39d397SChris Mason 440562e2749eSChris Mason /* setup the item for the new data */ 4406b7ef5f3aSFilipe Manana for (i = 0; i < batch->nr; i++) { 4407b7ef5f3aSFilipe Manana btrfs_cpu_key_to_disk(&disk_key, &batch->keys[i]); 44089c58309dSChris Mason btrfs_set_item_key(leaf, &disk_key, slot + i); 4409b7ef5f3aSFilipe Manana data_end -= batch->data_sizes[i]; 44103212fa14SJosef Bacik btrfs_set_token_item_offset(&token, slot + i, data_end); 44113212fa14SJosef Bacik btrfs_set_token_item_size(&token, slot + i, batch->data_sizes[i]); 44129c58309dSChris Mason } 441344871b1bSChris Mason 4414b7ef5f3aSFilipe Manana btrfs_set_header_nritems(leaf, nritems + batch->nr); 4415d5e09e38SFilipe Manana btrfs_mark_buffer_dirty(trans, leaf); 4416aa5d6bedSChris Mason 4417e902baacSDavid Sterba if (btrfs_leaf_free_space(leaf) < 0) { 4418a4f78750SDavid Sterba btrfs_print_leaf(leaf); 4419be0e5c09SChris Mason BUG(); 44205f39d397SChris Mason } 442144871b1bSChris Mason } 442244871b1bSChris Mason 442344871b1bSChris Mason /* 4424f0641656SFilipe Manana * Insert a new item into a leaf. 4425f0641656SFilipe Manana * 4426d5e09e38SFilipe Manana * @trans: Transaction handle. 4427f0641656SFilipe Manana * @root: The root of the btree. 4428f0641656SFilipe Manana * @path: A path pointing to the target leaf and slot. 4429f0641656SFilipe Manana * @key: The key of the new item. 4430f0641656SFilipe Manana * @data_size: The size of the data associated with the new key. 4431f0641656SFilipe Manana */ 4432d5e09e38SFilipe Manana void btrfs_setup_item_for_insert(struct btrfs_trans_handle *trans, 4433d5e09e38SFilipe Manana struct btrfs_root *root, 4434f0641656SFilipe Manana struct btrfs_path *path, 4435f0641656SFilipe Manana const struct btrfs_key *key, 4436f0641656SFilipe Manana u32 data_size) 4437f0641656SFilipe Manana { 4438f0641656SFilipe Manana struct btrfs_item_batch batch; 4439f0641656SFilipe Manana 4440f0641656SFilipe Manana batch.keys = key; 4441f0641656SFilipe Manana batch.data_sizes = &data_size; 4442f0641656SFilipe Manana batch.total_data_size = data_size; 4443f0641656SFilipe Manana batch.nr = 1; 4444f0641656SFilipe Manana 4445d5e09e38SFilipe Manana setup_items_for_insert(trans, root, path, &batch); 4446f0641656SFilipe Manana } 4447f0641656SFilipe Manana 4448f0641656SFilipe Manana /* 444944871b1bSChris Mason * Given a key and some data, insert items into the tree. 445044871b1bSChris Mason * This does all the path init required, making room in the tree if needed. 445144871b1bSChris Mason */ 445244871b1bSChris Mason int btrfs_insert_empty_items(struct btrfs_trans_handle *trans, 445344871b1bSChris Mason struct btrfs_root *root, 445444871b1bSChris Mason struct btrfs_path *path, 4455b7ef5f3aSFilipe Manana const struct btrfs_item_batch *batch) 445644871b1bSChris Mason { 445744871b1bSChris Mason int ret = 0; 445844871b1bSChris Mason int slot; 4459b7ef5f3aSFilipe Manana u32 total_size; 446044871b1bSChris Mason 4461b7ef5f3aSFilipe Manana total_size = batch->total_data_size + (batch->nr * sizeof(struct btrfs_item)); 4462b7ef5f3aSFilipe Manana ret = btrfs_search_slot(trans, root, &batch->keys[0], path, total_size, 1); 446344871b1bSChris Mason if (ret == 0) 446444871b1bSChris Mason return -EEXIST; 446544871b1bSChris Mason if (ret < 0) 4466143bede5SJeff Mahoney return ret; 446744871b1bSChris Mason 446844871b1bSChris Mason slot = path->slots[0]; 446944871b1bSChris Mason BUG_ON(slot < 0); 447044871b1bSChris Mason 4471d5e09e38SFilipe Manana setup_items_for_insert(trans, root, path, batch); 4472143bede5SJeff Mahoney return 0; 447362e2749eSChris Mason } 447462e2749eSChris Mason 447562e2749eSChris Mason /* 447662e2749eSChris Mason * Given a key and some data, insert an item into the tree. 447762e2749eSChris Mason * This does all the path init required, making room in the tree if needed. 447862e2749eSChris Mason */ 4479310712b2SOmar Sandoval int btrfs_insert_item(struct btrfs_trans_handle *trans, struct btrfs_root *root, 4480310712b2SOmar Sandoval const struct btrfs_key *cpu_key, void *data, 4481310712b2SOmar Sandoval u32 data_size) 448262e2749eSChris Mason { 448362e2749eSChris Mason int ret = 0; 44842c90e5d6SChris Mason struct btrfs_path *path; 44855f39d397SChris Mason struct extent_buffer *leaf; 44865f39d397SChris Mason unsigned long ptr; 448762e2749eSChris Mason 44882c90e5d6SChris Mason path = btrfs_alloc_path(); 4489db5b493aSTsutomu Itoh if (!path) 4490db5b493aSTsutomu Itoh return -ENOMEM; 44912c90e5d6SChris Mason ret = btrfs_insert_empty_item(trans, root, path, cpu_key, data_size); 449262e2749eSChris Mason if (!ret) { 44935f39d397SChris Mason leaf = path->nodes[0]; 44945f39d397SChris Mason ptr = btrfs_item_ptr_offset(leaf, path->slots[0]); 44955f39d397SChris Mason write_extent_buffer(leaf, data, ptr, data_size); 4496d5e09e38SFilipe Manana btrfs_mark_buffer_dirty(trans, leaf); 449762e2749eSChris Mason } 44982c90e5d6SChris Mason btrfs_free_path(path); 4499aa5d6bedSChris Mason return ret; 4500be0e5c09SChris Mason } 4501be0e5c09SChris Mason 450274123bd7SChris Mason /* 4503f0641656SFilipe Manana * This function duplicates an item, giving 'new_key' to the new item. 4504f0641656SFilipe Manana * It guarantees both items live in the same tree leaf and the new item is 4505f0641656SFilipe Manana * contiguous with the original item. 4506f0641656SFilipe Manana * 4507f0641656SFilipe Manana * This allows us to split a file extent in place, keeping a lock on the leaf 4508f0641656SFilipe Manana * the entire time. 4509f0641656SFilipe Manana */ 4510f0641656SFilipe Manana int btrfs_duplicate_item(struct btrfs_trans_handle *trans, 4511f0641656SFilipe Manana struct btrfs_root *root, 4512f0641656SFilipe Manana struct btrfs_path *path, 4513f0641656SFilipe Manana const struct btrfs_key *new_key) 4514f0641656SFilipe Manana { 4515f0641656SFilipe Manana struct extent_buffer *leaf; 4516f0641656SFilipe Manana int ret; 4517f0641656SFilipe Manana u32 item_size; 4518f0641656SFilipe Manana 4519f0641656SFilipe Manana leaf = path->nodes[0]; 45203212fa14SJosef Bacik item_size = btrfs_item_size(leaf, path->slots[0]); 4521f0641656SFilipe Manana ret = setup_leaf_for_split(trans, root, path, 4522f0641656SFilipe Manana item_size + sizeof(struct btrfs_item)); 4523f0641656SFilipe Manana if (ret) 4524f0641656SFilipe Manana return ret; 4525f0641656SFilipe Manana 4526f0641656SFilipe Manana path->slots[0]++; 4527d5e09e38SFilipe Manana btrfs_setup_item_for_insert(trans, root, path, new_key, item_size); 4528f0641656SFilipe Manana leaf = path->nodes[0]; 4529f0641656SFilipe Manana memcpy_extent_buffer(leaf, 4530f0641656SFilipe Manana btrfs_item_ptr_offset(leaf, path->slots[0]), 4531f0641656SFilipe Manana btrfs_item_ptr_offset(leaf, path->slots[0] - 1), 4532f0641656SFilipe Manana item_size); 4533f0641656SFilipe Manana return 0; 4534f0641656SFilipe Manana } 4535f0641656SFilipe Manana 4536f0641656SFilipe Manana /* 45375de08d7dSChris Mason * delete the pointer from a given node. 453874123bd7SChris Mason * 4539d352ac68SChris Mason * the tree should have been previously balanced so the deletion does not 4540d352ac68SChris Mason * empty a node. 4541016f9d0bSJosef Bacik * 4542016f9d0bSJosef Bacik * This is exported for use inside btrfs-progs, don't un-export it. 454374123bd7SChris Mason */ 4544751a2761SFilipe Manana int btrfs_del_ptr(struct btrfs_trans_handle *trans, struct btrfs_root *root, 4545751a2761SFilipe Manana struct btrfs_path *path, int level, int slot) 4546be0e5c09SChris Mason { 45475f39d397SChris Mason struct extent_buffer *parent = path->nodes[level]; 45487518a238SChris Mason u32 nritems; 4549f3ea38daSJan Schmidt int ret; 4550be0e5c09SChris Mason 45515f39d397SChris Mason nritems = btrfs_header_nritems(parent); 4552be0e5c09SChris Mason if (slot != nritems - 1) { 4553bf1d3425SDavid Sterba if (level) { 4554f3a84ccdSFilipe Manana ret = btrfs_tree_mod_log_insert_move(parent, slot, 4555f3a84ccdSFilipe Manana slot + 1, nritems - slot - 1); 4556751a2761SFilipe Manana if (ret < 0) { 4557751a2761SFilipe Manana btrfs_abort_transaction(trans, ret); 4558751a2761SFilipe Manana return ret; 4559751a2761SFilipe Manana } 4560bf1d3425SDavid Sterba } 45615f39d397SChris Mason memmove_extent_buffer(parent, 4562e23efd8eSJosef Bacik btrfs_node_key_ptr_offset(parent, slot), 4563e23efd8eSJosef Bacik btrfs_node_key_ptr_offset(parent, slot + 1), 4564d6025579SChris Mason sizeof(struct btrfs_key_ptr) * 4565d6025579SChris Mason (nritems - slot - 1)); 456657ba86c0SChris Mason } else if (level) { 4567f3a84ccdSFilipe Manana ret = btrfs_tree_mod_log_insert_key(parent, slot, 456833cff222SFilipe Manana BTRFS_MOD_LOG_KEY_REMOVE); 4569751a2761SFilipe Manana if (ret < 0) { 4570751a2761SFilipe Manana btrfs_abort_transaction(trans, ret); 4571751a2761SFilipe Manana return ret; 4572751a2761SFilipe Manana } 4573be0e5c09SChris Mason } 4574f3ea38daSJan Schmidt 45757518a238SChris Mason nritems--; 45765f39d397SChris Mason btrfs_set_header_nritems(parent, nritems); 45777518a238SChris Mason if (nritems == 0 && parent == root->node) { 45785f39d397SChris Mason BUG_ON(btrfs_header_level(root->node) != 1); 4579eb60ceacSChris Mason /* just turn the root into a leaf and break */ 45805f39d397SChris Mason btrfs_set_header_level(root->node, 0); 4581bb803951SChris Mason } else if (slot == 0) { 45825f39d397SChris Mason struct btrfs_disk_key disk_key; 45835f39d397SChris Mason 45845f39d397SChris Mason btrfs_node_key(parent, &disk_key, 0); 4585d5e09e38SFilipe Manana fixup_low_keys(trans, path, &disk_key, level + 1); 4586be0e5c09SChris Mason } 4587d5e09e38SFilipe Manana btrfs_mark_buffer_dirty(trans, parent); 4588751a2761SFilipe Manana return 0; 4589be0e5c09SChris Mason } 4590be0e5c09SChris Mason 459174123bd7SChris Mason /* 4592323ac95bSChris Mason * a helper function to delete the leaf pointed to by path->slots[1] and 45935d4f98a2SYan Zheng * path->nodes[1]. 4594323ac95bSChris Mason * 4595323ac95bSChris Mason * This deletes the pointer in path->nodes[1] and frees the leaf 4596323ac95bSChris Mason * block extent. zero is returned if it all worked out, < 0 otherwise. 4597323ac95bSChris Mason * 4598323ac95bSChris Mason * The path must have already been setup for deleting the leaf, including 4599323ac95bSChris Mason * all the proper balancing. path->nodes[1] must be locked. 4600323ac95bSChris Mason */ 4601751a2761SFilipe Manana static noinline int btrfs_del_leaf(struct btrfs_trans_handle *trans, 4602323ac95bSChris Mason struct btrfs_root *root, 46035d4f98a2SYan Zheng struct btrfs_path *path, 46045d4f98a2SYan Zheng struct extent_buffer *leaf) 4605323ac95bSChris Mason { 4606751a2761SFilipe Manana int ret; 4607751a2761SFilipe Manana 46085d4f98a2SYan Zheng WARN_ON(btrfs_header_generation(leaf) != trans->transid); 4609751a2761SFilipe Manana ret = btrfs_del_ptr(trans, root, path, 1, path->slots[1]); 4610751a2761SFilipe Manana if (ret < 0) 4611751a2761SFilipe Manana return ret; 4612323ac95bSChris Mason 46134d081c41SChris Mason /* 46144d081c41SChris Mason * btrfs_free_extent is expensive, we want to make sure we 46154d081c41SChris Mason * aren't holding any locks when we call it 46164d081c41SChris Mason */ 46174d081c41SChris Mason btrfs_unlock_up_safe(path, 0); 46184d081c41SChris Mason 4619f0486c68SYan, Zheng root_sub_used(root, leaf->len); 4620f0486c68SYan, Zheng 462167439dadSDavid Sterba atomic_inc(&leaf->refs); 462222d907bcSFilipe Manana ret = btrfs_free_tree_block(trans, btrfs_root_id(root), leaf, 0, 1); 46233083ee2eSJosef Bacik free_extent_buffer_stale(leaf); 462422d907bcSFilipe Manana if (ret < 0) 462522d907bcSFilipe Manana btrfs_abort_transaction(trans, ret); 462622d907bcSFilipe Manana 462722d907bcSFilipe Manana return ret; 4628323ac95bSChris Mason } 4629323ac95bSChris Mason /* 463074123bd7SChris Mason * delete the item at the leaf level in path. If that empties 463174123bd7SChris Mason * the leaf, remove it from the tree 463274123bd7SChris Mason */ 463385e21bacSChris Mason int btrfs_del_items(struct btrfs_trans_handle *trans, struct btrfs_root *root, 463485e21bacSChris Mason struct btrfs_path *path, int slot, int nr) 4635be0e5c09SChris Mason { 46360b246afaSJeff Mahoney struct btrfs_fs_info *fs_info = root->fs_info; 46375f39d397SChris Mason struct extent_buffer *leaf; 4638aa5d6bedSChris Mason int ret = 0; 4639aa5d6bedSChris Mason int wret; 46407518a238SChris Mason u32 nritems; 4641be0e5c09SChris Mason 46425f39d397SChris Mason leaf = path->nodes[0]; 46435f39d397SChris Mason nritems = btrfs_header_nritems(leaf); 4644be0e5c09SChris Mason 464585e21bacSChris Mason if (slot + nr != nritems) { 46460cae23b6SFilipe Manana const u32 last_off = btrfs_item_offset(leaf, slot + nr - 1); 46470cae23b6SFilipe Manana const int data_end = leaf_data_end(leaf); 4648c82f823cSDavid Sterba struct btrfs_map_token token; 46490cae23b6SFilipe Manana u32 dsize = 0; 46500cae23b6SFilipe Manana int i; 46510cae23b6SFilipe Manana 46520cae23b6SFilipe Manana for (i = 0; i < nr; i++) 46530cae23b6SFilipe Manana dsize += btrfs_item_size(leaf, slot + i); 46545f39d397SChris Mason 4655637e3b48SJosef Bacik memmove_leaf_data(leaf, data_end + dsize, data_end, 465685e21bacSChris Mason last_off - data_end); 46575f39d397SChris Mason 4658c82f823cSDavid Sterba btrfs_init_map_token(&token, leaf); 465985e21bacSChris Mason for (i = slot + nr; i < nritems; i++) { 46605f39d397SChris Mason u32 ioff; 4661db94535dSChris Mason 46623212fa14SJosef Bacik ioff = btrfs_token_item_offset(&token, i); 46633212fa14SJosef Bacik btrfs_set_token_item_offset(&token, i, ioff + dsize); 46640783fcfcSChris Mason } 4665db94535dSChris Mason 4666637e3b48SJosef Bacik memmove_leaf_items(leaf, slot, slot + nr, nritems - slot - nr); 4667be0e5c09SChris Mason } 466885e21bacSChris Mason btrfs_set_header_nritems(leaf, nritems - nr); 466985e21bacSChris Mason nritems -= nr; 46705f39d397SChris Mason 467174123bd7SChris Mason /* delete the leaf if we've emptied it */ 46727518a238SChris Mason if (nritems == 0) { 46735f39d397SChris Mason if (leaf == root->node) { 46745f39d397SChris Mason btrfs_set_header_level(leaf, 0); 46759a8dd150SChris Mason } else { 4676190a8339SJosef Bacik btrfs_clear_buffer_dirty(trans, leaf); 4677751a2761SFilipe Manana ret = btrfs_del_leaf(trans, root, path, leaf); 4678751a2761SFilipe Manana if (ret < 0) 4679751a2761SFilipe Manana return ret; 46809a8dd150SChris Mason } 4681be0e5c09SChris Mason } else { 46827518a238SChris Mason int used = leaf_space_used(leaf, 0, nritems); 4683aa5d6bedSChris Mason if (slot == 0) { 46845f39d397SChris Mason struct btrfs_disk_key disk_key; 46855f39d397SChris Mason 46865f39d397SChris Mason btrfs_item_key(leaf, &disk_key, 0); 4687d5e09e38SFilipe Manana fixup_low_keys(trans, path, &disk_key, 1); 4688aa5d6bedSChris Mason } 4689aa5d6bedSChris Mason 46907c4063d1SFilipe Manana /* 46917c4063d1SFilipe Manana * Try to delete the leaf if it is mostly empty. We do this by 46927c4063d1SFilipe Manana * trying to move all its items into its left and right neighbours. 46937c4063d1SFilipe Manana * If we can't move all the items, then we don't delete it - it's 46947c4063d1SFilipe Manana * not ideal, but future insertions might fill the leaf with more 46957c4063d1SFilipe Manana * items, or items from other leaves might be moved later into our 46967c4063d1SFilipe Manana * leaf due to deletions on those leaves. 46977c4063d1SFilipe Manana */ 46980b246afaSJeff Mahoney if (used < BTRFS_LEAF_DATA_SIZE(fs_info) / 3) { 46997c4063d1SFilipe Manana u32 min_push_space; 47007c4063d1SFilipe Manana 4701be0e5c09SChris Mason /* push_leaf_left fixes the path. 4702be0e5c09SChris Mason * make sure the path still points to our leaf 4703016f9d0bSJosef Bacik * for possible call to btrfs_del_ptr below 4704be0e5c09SChris Mason */ 47054920c9acSChris Mason slot = path->slots[1]; 470667439dadSDavid Sterba atomic_inc(&leaf->refs); 47077c4063d1SFilipe Manana /* 47087c4063d1SFilipe Manana * We want to be able to at least push one item to the 47097c4063d1SFilipe Manana * left neighbour leaf, and that's the first item. 47107c4063d1SFilipe Manana */ 47117c4063d1SFilipe Manana min_push_space = sizeof(struct btrfs_item) + 47127c4063d1SFilipe Manana btrfs_item_size(leaf, 0); 47137c4063d1SFilipe Manana wret = push_leaf_left(trans, root, path, 0, 47147c4063d1SFilipe Manana min_push_space, 1, (u32)-1); 471554aa1f4dSChris Mason if (wret < 0 && wret != -ENOSPC) 4716aa5d6bedSChris Mason ret = wret; 47175f39d397SChris Mason 47185f39d397SChris Mason if (path->nodes[0] == leaf && 47195f39d397SChris Mason btrfs_header_nritems(leaf)) { 47207c4063d1SFilipe Manana /* 47217c4063d1SFilipe Manana * If we were not able to push all items from our 47227c4063d1SFilipe Manana * leaf to its left neighbour, then attempt to 47237c4063d1SFilipe Manana * either push all the remaining items to the 47247c4063d1SFilipe Manana * right neighbour or none. There's no advantage 47257c4063d1SFilipe Manana * in pushing only some items, instead of all, as 47267c4063d1SFilipe Manana * it's pointless to end up with a leaf having 47277c4063d1SFilipe Manana * too few items while the neighbours can be full 47287c4063d1SFilipe Manana * or nearly full. 47297c4063d1SFilipe Manana */ 47307c4063d1SFilipe Manana nritems = btrfs_header_nritems(leaf); 47317c4063d1SFilipe Manana min_push_space = leaf_space_used(leaf, 0, nritems); 47327c4063d1SFilipe Manana wret = push_leaf_right(trans, root, path, 0, 47337c4063d1SFilipe Manana min_push_space, 1, 0); 473454aa1f4dSChris Mason if (wret < 0 && wret != -ENOSPC) 4735aa5d6bedSChris Mason ret = wret; 4736aa5d6bedSChris Mason } 47375f39d397SChris Mason 47385f39d397SChris Mason if (btrfs_header_nritems(leaf) == 0) { 4739323ac95bSChris Mason path->slots[1] = slot; 4740751a2761SFilipe Manana ret = btrfs_del_leaf(trans, root, path, leaf); 4741751a2761SFilipe Manana if (ret < 0) 4742751a2761SFilipe Manana return ret; 47435f39d397SChris Mason free_extent_buffer(leaf); 4744143bede5SJeff Mahoney ret = 0; 47455de08d7dSChris Mason } else { 4746925baeddSChris Mason /* if we're still in the path, make sure 4747925baeddSChris Mason * we're dirty. Otherwise, one of the 4748925baeddSChris Mason * push_leaf functions must have already 4749925baeddSChris Mason * dirtied this buffer 4750925baeddSChris Mason */ 4751925baeddSChris Mason if (path->nodes[0] == leaf) 4752d5e09e38SFilipe Manana btrfs_mark_buffer_dirty(trans, leaf); 47535f39d397SChris Mason free_extent_buffer(leaf); 4754be0e5c09SChris Mason } 4755d5719762SChris Mason } else { 4756d5e09e38SFilipe Manana btrfs_mark_buffer_dirty(trans, leaf); 4757be0e5c09SChris Mason } 47589a8dd150SChris Mason } 4759aa5d6bedSChris Mason return ret; 47609a8dd150SChris Mason } 47619a8dd150SChris Mason 476297571fd0SChris Mason /* 47633f157a2fSChris Mason * A helper function to walk down the tree starting at min_key, and looking 4764de78b51aSEric Sandeen * for nodes or leaves that are have a minimum transaction id. 4765de78b51aSEric Sandeen * This is used by the btree defrag code, and tree logging 47663f157a2fSChris Mason * 47673f157a2fSChris Mason * This does not cow, but it does stuff the starting key it finds back 47683f157a2fSChris Mason * into min_key, so you can call btrfs_search_slot with cow=1 on the 47693f157a2fSChris Mason * key and get a writable path. 47703f157a2fSChris Mason * 47713f157a2fSChris Mason * This honors path->lowest_level to prevent descent past a given level 47723f157a2fSChris Mason * of the tree. 47733f157a2fSChris Mason * 4774d352ac68SChris Mason * min_trans indicates the oldest transaction that you are interested 4775d352ac68SChris Mason * in walking through. Any nodes or leaves older than min_trans are 4776d352ac68SChris Mason * skipped over (without reading them). 4777d352ac68SChris Mason * 47783f157a2fSChris Mason * returns zero if something useful was found, < 0 on error and 1 if there 47793f157a2fSChris Mason * was nothing in the tree that matched the search criteria. 47803f157a2fSChris Mason */ 47813f157a2fSChris Mason int btrfs_search_forward(struct btrfs_root *root, struct btrfs_key *min_key, 4782de78b51aSEric Sandeen struct btrfs_path *path, 47833f157a2fSChris Mason u64 min_trans) 47843f157a2fSChris Mason { 47853f157a2fSChris Mason struct extent_buffer *cur; 47863f157a2fSChris Mason struct btrfs_key found_key; 47873f157a2fSChris Mason int slot; 47889652480bSYan int sret; 47893f157a2fSChris Mason u32 nritems; 47903f157a2fSChris Mason int level; 47913f157a2fSChris Mason int ret = 1; 4792f98de9b9SFilipe Manana int keep_locks = path->keep_locks; 47933f157a2fSChris Mason 4794c922b016SStefan Roesch ASSERT(!path->nowait); 4795f98de9b9SFilipe Manana path->keep_locks = 1; 47963f157a2fSChris Mason again: 4797bd681513SChris Mason cur = btrfs_read_lock_root_node(root); 47983f157a2fSChris Mason level = btrfs_header_level(cur); 4799e02119d5SChris Mason WARN_ON(path->nodes[level]); 48003f157a2fSChris Mason path->nodes[level] = cur; 4801bd681513SChris Mason path->locks[level] = BTRFS_READ_LOCK; 48023f157a2fSChris Mason 48033f157a2fSChris Mason if (btrfs_header_generation(cur) < min_trans) { 48043f157a2fSChris Mason ret = 1; 48053f157a2fSChris Mason goto out; 48063f157a2fSChris Mason } 48073f157a2fSChris Mason while (1) { 48083f157a2fSChris Mason nritems = btrfs_header_nritems(cur); 48093f157a2fSChris Mason level = btrfs_header_level(cur); 4810fdf8d595SAnand Jain sret = btrfs_bin_search(cur, 0, min_key, &slot); 4811cbca7d59SFilipe Manana if (sret < 0) { 4812cbca7d59SFilipe Manana ret = sret; 4813cbca7d59SFilipe Manana goto out; 4814cbca7d59SFilipe Manana } 48153f157a2fSChris Mason 4816323ac95bSChris Mason /* at the lowest level, we're done, setup the path and exit */ 4817323ac95bSChris Mason if (level == path->lowest_level) { 4818e02119d5SChris Mason if (slot >= nritems) 4819e02119d5SChris Mason goto find_next_key; 48203f157a2fSChris Mason ret = 0; 48213f157a2fSChris Mason path->slots[level] = slot; 48223f157a2fSChris Mason btrfs_item_key_to_cpu(cur, &found_key, slot); 48233f157a2fSChris Mason goto out; 48243f157a2fSChris Mason } 48259652480bSYan if (sret && slot > 0) 48269652480bSYan slot--; 48273f157a2fSChris Mason /* 4828de78b51aSEric Sandeen * check this node pointer against the min_trans parameters. 4829260db43cSRandy Dunlap * If it is too old, skip to the next one. 48303f157a2fSChris Mason */ 48313f157a2fSChris Mason while (slot < nritems) { 48323f157a2fSChris Mason u64 gen; 4833e02119d5SChris Mason 48343f157a2fSChris Mason gen = btrfs_node_ptr_generation(cur, slot); 48353f157a2fSChris Mason if (gen < min_trans) { 48363f157a2fSChris Mason slot++; 48373f157a2fSChris Mason continue; 48383f157a2fSChris Mason } 48393f157a2fSChris Mason break; 48403f157a2fSChris Mason } 4841e02119d5SChris Mason find_next_key: 48423f157a2fSChris Mason /* 48433f157a2fSChris Mason * we didn't find a candidate key in this node, walk forward 48443f157a2fSChris Mason * and find another one 48453f157a2fSChris Mason */ 48463f157a2fSChris Mason if (slot >= nritems) { 4847e02119d5SChris Mason path->slots[level] = slot; 4848e02119d5SChris Mason sret = btrfs_find_next_key(root, path, min_key, level, 4849de78b51aSEric Sandeen min_trans); 4850e02119d5SChris Mason if (sret == 0) { 4851b3b4aa74SDavid Sterba btrfs_release_path(path); 48523f157a2fSChris Mason goto again; 48533f157a2fSChris Mason } else { 48543f157a2fSChris Mason goto out; 48553f157a2fSChris Mason } 48563f157a2fSChris Mason } 48573f157a2fSChris Mason /* save our key for returning back */ 48583f157a2fSChris Mason btrfs_node_key_to_cpu(cur, &found_key, slot); 48593f157a2fSChris Mason path->slots[level] = slot; 48603f157a2fSChris Mason if (level == path->lowest_level) { 48613f157a2fSChris Mason ret = 0; 48623f157a2fSChris Mason goto out; 48633f157a2fSChris Mason } 48644b231ae4SDavid Sterba cur = btrfs_read_node_slot(cur, slot); 4865fb770ae4SLiu Bo if (IS_ERR(cur)) { 4866fb770ae4SLiu Bo ret = PTR_ERR(cur); 4867fb770ae4SLiu Bo goto out; 4868fb770ae4SLiu Bo } 48693f157a2fSChris Mason 4870bd681513SChris Mason btrfs_tree_read_lock(cur); 4871b4ce94deSChris Mason 4872bd681513SChris Mason path->locks[level - 1] = BTRFS_READ_LOCK; 48733f157a2fSChris Mason path->nodes[level - 1] = cur; 4874f7c79f30SChris Mason unlock_up(path, level, 1, 0, NULL); 48753f157a2fSChris Mason } 48763f157a2fSChris Mason out: 4877f98de9b9SFilipe Manana path->keep_locks = keep_locks; 4878f98de9b9SFilipe Manana if (ret == 0) { 4879f98de9b9SFilipe Manana btrfs_unlock_up_safe(path, path->lowest_level + 1); 4880f98de9b9SFilipe Manana memcpy(min_key, &found_key, sizeof(found_key)); 4881f98de9b9SFilipe Manana } 48823f157a2fSChris Mason return ret; 48833f157a2fSChris Mason } 48843f157a2fSChris Mason 48853f157a2fSChris Mason /* 48863f157a2fSChris Mason * this is similar to btrfs_next_leaf, but does not try to preserve 48873f157a2fSChris Mason * and fixup the path. It looks for and returns the next key in the 4888de78b51aSEric Sandeen * tree based on the current path and the min_trans parameters. 48893f157a2fSChris Mason * 48903f157a2fSChris Mason * 0 is returned if another key is found, < 0 if there are any errors 48913f157a2fSChris Mason * and 1 is returned if there are no higher keys in the tree 48923f157a2fSChris Mason * 48933f157a2fSChris Mason * path->keep_locks should be set to 1 on the search made before 48943f157a2fSChris Mason * calling this function. 48953f157a2fSChris Mason */ 4896e7a84565SChris Mason int btrfs_find_next_key(struct btrfs_root *root, struct btrfs_path *path, 4897de78b51aSEric Sandeen struct btrfs_key *key, int level, u64 min_trans) 4898e7a84565SChris Mason { 4899e7a84565SChris Mason int slot; 4900e7a84565SChris Mason struct extent_buffer *c; 4901e7a84565SChris Mason 49026a9fb468SJosef Bacik WARN_ON(!path->keep_locks && !path->skip_locking); 4903e7a84565SChris Mason while (level < BTRFS_MAX_LEVEL) { 4904e7a84565SChris Mason if (!path->nodes[level]) 4905e7a84565SChris Mason return 1; 4906e7a84565SChris Mason 4907e7a84565SChris Mason slot = path->slots[level] + 1; 4908e7a84565SChris Mason c = path->nodes[level]; 49093f157a2fSChris Mason next: 4910e7a84565SChris Mason if (slot >= btrfs_header_nritems(c)) { 491133c66f43SYan Zheng int ret; 491233c66f43SYan Zheng int orig_lowest; 491333c66f43SYan Zheng struct btrfs_key cur_key; 491433c66f43SYan Zheng if (level + 1 >= BTRFS_MAX_LEVEL || 491533c66f43SYan Zheng !path->nodes[level + 1]) 4916e7a84565SChris Mason return 1; 491733c66f43SYan Zheng 49186a9fb468SJosef Bacik if (path->locks[level + 1] || path->skip_locking) { 491933c66f43SYan Zheng level++; 4920e7a84565SChris Mason continue; 4921e7a84565SChris Mason } 492233c66f43SYan Zheng 492333c66f43SYan Zheng slot = btrfs_header_nritems(c) - 1; 492433c66f43SYan Zheng if (level == 0) 492533c66f43SYan Zheng btrfs_item_key_to_cpu(c, &cur_key, slot); 492633c66f43SYan Zheng else 492733c66f43SYan Zheng btrfs_node_key_to_cpu(c, &cur_key, slot); 492833c66f43SYan Zheng 492933c66f43SYan Zheng orig_lowest = path->lowest_level; 4930b3b4aa74SDavid Sterba btrfs_release_path(path); 493133c66f43SYan Zheng path->lowest_level = level; 493233c66f43SYan Zheng ret = btrfs_search_slot(NULL, root, &cur_key, path, 493333c66f43SYan Zheng 0, 0); 493433c66f43SYan Zheng path->lowest_level = orig_lowest; 493533c66f43SYan Zheng if (ret < 0) 493633c66f43SYan Zheng return ret; 493733c66f43SYan Zheng 493833c66f43SYan Zheng c = path->nodes[level]; 493933c66f43SYan Zheng slot = path->slots[level]; 494033c66f43SYan Zheng if (ret == 0) 494133c66f43SYan Zheng slot++; 494233c66f43SYan Zheng goto next; 494333c66f43SYan Zheng } 494433c66f43SYan Zheng 4945e7a84565SChris Mason if (level == 0) 4946e7a84565SChris Mason btrfs_item_key_to_cpu(c, key, slot); 49473f157a2fSChris Mason else { 49483f157a2fSChris Mason u64 gen = btrfs_node_ptr_generation(c, slot); 49493f157a2fSChris Mason 49503f157a2fSChris Mason if (gen < min_trans) { 49513f157a2fSChris Mason slot++; 49523f157a2fSChris Mason goto next; 49533f157a2fSChris Mason } 4954e7a84565SChris Mason btrfs_node_key_to_cpu(c, key, slot); 49553f157a2fSChris Mason } 4956e7a84565SChris Mason return 0; 4957e7a84565SChris Mason } 4958e7a84565SChris Mason return 1; 4959e7a84565SChris Mason } 4960e7a84565SChris Mason 49613d7806ecSJan Schmidt int btrfs_next_old_leaf(struct btrfs_root *root, struct btrfs_path *path, 49623d7806ecSJan Schmidt u64 time_seq) 49633d7806ecSJan Schmidt { 4964d97e63b6SChris Mason int slot; 49658e73f275SChris Mason int level; 49665f39d397SChris Mason struct extent_buffer *c; 49678e73f275SChris Mason struct extent_buffer *next; 4968d96b3424SFilipe Manana struct btrfs_fs_info *fs_info = root->fs_info; 4969925baeddSChris Mason struct btrfs_key key; 4970d96b3424SFilipe Manana bool need_commit_sem = false; 4971925baeddSChris Mason u32 nritems; 4972925baeddSChris Mason int ret; 49730e46318dSJosef Bacik int i; 4974925baeddSChris Mason 4975bdcdd86cSFilipe Manana /* 4976bdcdd86cSFilipe Manana * The nowait semantics are used only for write paths, where we don't 4977bdcdd86cSFilipe Manana * use the tree mod log and sequence numbers. 4978bdcdd86cSFilipe Manana */ 4979bdcdd86cSFilipe Manana if (time_seq) 4980c922b016SStefan Roesch ASSERT(!path->nowait); 4981c922b016SStefan Roesch 4982925baeddSChris Mason nritems = btrfs_header_nritems(path->nodes[0]); 4983d397712bSChris Mason if (nritems == 0) 4984925baeddSChris Mason return 1; 4985925baeddSChris Mason 49868e73f275SChris Mason btrfs_item_key_to_cpu(path->nodes[0], &key, nritems - 1); 49878e73f275SChris Mason again: 49888e73f275SChris Mason level = 1; 49898e73f275SChris Mason next = NULL; 4990b3b4aa74SDavid Sterba btrfs_release_path(path); 49918e73f275SChris Mason 4992a2135011SChris Mason path->keep_locks = 1; 49938e73f275SChris Mason 4994d96b3424SFilipe Manana if (time_seq) { 49953d7806ecSJan Schmidt ret = btrfs_search_old_slot(root, &key, path, time_seq); 4996d96b3424SFilipe Manana } else { 4997d96b3424SFilipe Manana if (path->need_commit_sem) { 4998d96b3424SFilipe Manana path->need_commit_sem = 0; 4999d96b3424SFilipe Manana need_commit_sem = true; 5000bdcdd86cSFilipe Manana if (path->nowait) { 5001bdcdd86cSFilipe Manana if (!down_read_trylock(&fs_info->commit_root_sem)) { 5002bdcdd86cSFilipe Manana ret = -EAGAIN; 5003bdcdd86cSFilipe Manana goto done; 5004bdcdd86cSFilipe Manana } 5005bdcdd86cSFilipe Manana } else { 5006d96b3424SFilipe Manana down_read(&fs_info->commit_root_sem); 5007d96b3424SFilipe Manana } 5008bdcdd86cSFilipe Manana } 5009925baeddSChris Mason ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); 5010d96b3424SFilipe Manana } 5011925baeddSChris Mason path->keep_locks = 0; 5012925baeddSChris Mason 5013925baeddSChris Mason if (ret < 0) 5014d96b3424SFilipe Manana goto done; 5015925baeddSChris Mason 5016a2135011SChris Mason nritems = btrfs_header_nritems(path->nodes[0]); 5017168fd7d2SChris Mason /* 5018168fd7d2SChris Mason * by releasing the path above we dropped all our locks. A balance 5019168fd7d2SChris Mason * could have added more items next to the key that used to be 5020168fd7d2SChris Mason * at the very end of the block. So, check again here and 5021168fd7d2SChris Mason * advance the path if there are now more items available. 5022168fd7d2SChris Mason */ 5023a2135011SChris Mason if (nritems > 0 && path->slots[0] < nritems - 1) { 5024e457afecSYan Zheng if (ret == 0) 5025168fd7d2SChris Mason path->slots[0]++; 50268e73f275SChris Mason ret = 0; 5027925baeddSChris Mason goto done; 5028925baeddSChris Mason } 50290b43e04fSLiu Bo /* 50300b43e04fSLiu Bo * So the above check misses one case: 50310b43e04fSLiu Bo * - after releasing the path above, someone has removed the item that 50320b43e04fSLiu Bo * used to be at the very end of the block, and balance between leafs 50330b43e04fSLiu Bo * gets another one with bigger key.offset to replace it. 50340b43e04fSLiu Bo * 50350b43e04fSLiu Bo * This one should be returned as well, or we can get leaf corruption 50360b43e04fSLiu Bo * later(esp. in __btrfs_drop_extents()). 50370b43e04fSLiu Bo * 50380b43e04fSLiu Bo * And a bit more explanation about this check, 50390b43e04fSLiu Bo * with ret > 0, the key isn't found, the path points to the slot 50400b43e04fSLiu Bo * where it should be inserted, so the path->slots[0] item must be the 50410b43e04fSLiu Bo * bigger one. 50420b43e04fSLiu Bo */ 50430b43e04fSLiu Bo if (nritems > 0 && ret > 0 && path->slots[0] == nritems - 1) { 50440b43e04fSLiu Bo ret = 0; 50450b43e04fSLiu Bo goto done; 50460b43e04fSLiu Bo } 5047d97e63b6SChris Mason 5048234b63a0SChris Mason while (level < BTRFS_MAX_LEVEL) { 50498e73f275SChris Mason if (!path->nodes[level]) { 50508e73f275SChris Mason ret = 1; 50518e73f275SChris Mason goto done; 50528e73f275SChris Mason } 50535f39d397SChris Mason 5054d97e63b6SChris Mason slot = path->slots[level] + 1; 5055d97e63b6SChris Mason c = path->nodes[level]; 50565f39d397SChris Mason if (slot >= btrfs_header_nritems(c)) { 5057d97e63b6SChris Mason level++; 50588e73f275SChris Mason if (level == BTRFS_MAX_LEVEL) { 50598e73f275SChris Mason ret = 1; 50608e73f275SChris Mason goto done; 50618e73f275SChris Mason } 5062d97e63b6SChris Mason continue; 5063d97e63b6SChris Mason } 50645f39d397SChris Mason 50650e46318dSJosef Bacik 50660e46318dSJosef Bacik /* 50670e46318dSJosef Bacik * Our current level is where we're going to start from, and to 50680e46318dSJosef Bacik * make sure lockdep doesn't complain we need to drop our locks 50690e46318dSJosef Bacik * and nodes from 0 to our current level. 50700e46318dSJosef Bacik */ 50710e46318dSJosef Bacik for (i = 0; i < level; i++) { 50720e46318dSJosef Bacik if (path->locks[level]) { 50730e46318dSJosef Bacik btrfs_tree_read_unlock(path->nodes[i]); 50740e46318dSJosef Bacik path->locks[i] = 0; 50750e46318dSJosef Bacik } 50760e46318dSJosef Bacik free_extent_buffer(path->nodes[i]); 50770e46318dSJosef Bacik path->nodes[i] = NULL; 5078925baeddSChris Mason } 50795f39d397SChris Mason 50808e73f275SChris Mason next = c; 5081d07b8528SLiu Bo ret = read_block_for_search(root, path, &next, level, 5082cda79c54SDavid Sterba slot, &key); 5083bdcdd86cSFilipe Manana if (ret == -EAGAIN && !path->nowait) 50848e73f275SChris Mason goto again; 50855f39d397SChris Mason 508676a05b35SChris Mason if (ret < 0) { 5087b3b4aa74SDavid Sterba btrfs_release_path(path); 508876a05b35SChris Mason goto done; 508976a05b35SChris Mason } 509076a05b35SChris Mason 50915cd57b2cSChris Mason if (!path->skip_locking) { 5092bd681513SChris Mason ret = btrfs_try_tree_read_lock(next); 5093bdcdd86cSFilipe Manana if (!ret && path->nowait) { 5094bdcdd86cSFilipe Manana ret = -EAGAIN; 5095bdcdd86cSFilipe Manana goto done; 5096bdcdd86cSFilipe Manana } 5097d42244a0SJan Schmidt if (!ret && time_seq) { 5098d42244a0SJan Schmidt /* 5099d42244a0SJan Schmidt * If we don't get the lock, we may be racing 5100d42244a0SJan Schmidt * with push_leaf_left, holding that lock while 5101d42244a0SJan Schmidt * itself waiting for the leaf we've currently 5102d42244a0SJan Schmidt * locked. To solve this situation, we give up 5103d42244a0SJan Schmidt * on our lock and cycle. 5104d42244a0SJan Schmidt */ 5105cf538830SJan Schmidt free_extent_buffer(next); 5106d42244a0SJan Schmidt btrfs_release_path(path); 5107d42244a0SJan Schmidt cond_resched(); 5108d42244a0SJan Schmidt goto again; 5109d42244a0SJan Schmidt } 51100e46318dSJosef Bacik if (!ret) 51110e46318dSJosef Bacik btrfs_tree_read_lock(next); 5112bd681513SChris Mason } 5113d97e63b6SChris Mason break; 5114d97e63b6SChris Mason } 5115d97e63b6SChris Mason path->slots[level] = slot; 5116d97e63b6SChris Mason while (1) { 5117d97e63b6SChris Mason level--; 5118d97e63b6SChris Mason path->nodes[level] = next; 5119d97e63b6SChris Mason path->slots[level] = 0; 5120a74a4b97SChris Mason if (!path->skip_locking) 5121ffeb03cfSJosef Bacik path->locks[level] = BTRFS_READ_LOCK; 5122d97e63b6SChris Mason if (!level) 5123d97e63b6SChris Mason break; 5124b4ce94deSChris Mason 5125d07b8528SLiu Bo ret = read_block_for_search(root, path, &next, level, 5126cda79c54SDavid Sterba 0, &key); 5127bdcdd86cSFilipe Manana if (ret == -EAGAIN && !path->nowait) 51288e73f275SChris Mason goto again; 51298e73f275SChris Mason 513076a05b35SChris Mason if (ret < 0) { 5131b3b4aa74SDavid Sterba btrfs_release_path(path); 513276a05b35SChris Mason goto done; 513376a05b35SChris Mason } 513476a05b35SChris Mason 5135bdcdd86cSFilipe Manana if (!path->skip_locking) { 5136bdcdd86cSFilipe Manana if (path->nowait) { 5137bdcdd86cSFilipe Manana if (!btrfs_try_tree_read_lock(next)) { 5138bdcdd86cSFilipe Manana ret = -EAGAIN; 5139bdcdd86cSFilipe Manana goto done; 5140bdcdd86cSFilipe Manana } 5141bdcdd86cSFilipe Manana } else { 51420e46318dSJosef Bacik btrfs_tree_read_lock(next); 5143d97e63b6SChris Mason } 5144bdcdd86cSFilipe Manana } 5145bdcdd86cSFilipe Manana } 51468e73f275SChris Mason ret = 0; 5147925baeddSChris Mason done: 5148f7c79f30SChris Mason unlock_up(path, 0, 1, 0, NULL); 5149d96b3424SFilipe Manana if (need_commit_sem) { 5150d96b3424SFilipe Manana int ret2; 5151d96b3424SFilipe Manana 5152d96b3424SFilipe Manana path->need_commit_sem = 1; 5153d96b3424SFilipe Manana ret2 = finish_need_commit_sem_search(path); 5154d96b3424SFilipe Manana up_read(&fs_info->commit_root_sem); 5155d96b3424SFilipe Manana if (ret2) 5156d96b3424SFilipe Manana ret = ret2; 5157d96b3424SFilipe Manana } 51588e73f275SChris Mason 51598e73f275SChris Mason return ret; 5160d97e63b6SChris Mason } 51610b86a832SChris Mason 5162890d2b1aSJosef Bacik int btrfs_next_old_item(struct btrfs_root *root, struct btrfs_path *path, u64 time_seq) 5163890d2b1aSJosef Bacik { 5164890d2b1aSJosef Bacik path->slots[0]++; 5165890d2b1aSJosef Bacik if (path->slots[0] >= btrfs_header_nritems(path->nodes[0])) 5166890d2b1aSJosef Bacik return btrfs_next_old_leaf(root, path, time_seq); 5167890d2b1aSJosef Bacik return 0; 5168890d2b1aSJosef Bacik } 5169890d2b1aSJosef Bacik 51703f157a2fSChris Mason /* 51713f157a2fSChris Mason * this uses btrfs_prev_leaf to walk backwards in the tree, and keeps 51723f157a2fSChris Mason * searching until it gets past min_objectid or finds an item of 'type' 51733f157a2fSChris Mason * 51743f157a2fSChris Mason * returns 0 if something is found, 1 if nothing was found and < 0 on error 51753f157a2fSChris Mason */ 51760b86a832SChris Mason int btrfs_previous_item(struct btrfs_root *root, 51770b86a832SChris Mason struct btrfs_path *path, u64 min_objectid, 51780b86a832SChris Mason int type) 51790b86a832SChris Mason { 51800b86a832SChris Mason struct btrfs_key found_key; 51810b86a832SChris Mason struct extent_buffer *leaf; 5182e02119d5SChris Mason u32 nritems; 51830b86a832SChris Mason int ret; 51840b86a832SChris Mason 51850b86a832SChris Mason while (1) { 51860b86a832SChris Mason if (path->slots[0] == 0) { 51870b86a832SChris Mason ret = btrfs_prev_leaf(root, path); 51880b86a832SChris Mason if (ret != 0) 51890b86a832SChris Mason return ret; 51900b86a832SChris Mason } else { 51910b86a832SChris Mason path->slots[0]--; 51920b86a832SChris Mason } 51930b86a832SChris Mason leaf = path->nodes[0]; 5194e02119d5SChris Mason nritems = btrfs_header_nritems(leaf); 5195e02119d5SChris Mason if (nritems == 0) 5196e02119d5SChris Mason return 1; 5197e02119d5SChris Mason if (path->slots[0] == nritems) 5198e02119d5SChris Mason path->slots[0]--; 5199e02119d5SChris Mason 52000b86a832SChris Mason btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]); 5201e02119d5SChris Mason if (found_key.objectid < min_objectid) 5202e02119d5SChris Mason break; 52030a4eefbbSYan Zheng if (found_key.type == type) 52040a4eefbbSYan Zheng return 0; 5205e02119d5SChris Mason if (found_key.objectid == min_objectid && 5206e02119d5SChris Mason found_key.type < type) 5207e02119d5SChris Mason break; 52080b86a832SChris Mason } 52090b86a832SChris Mason return 1; 52100b86a832SChris Mason } 5211ade2e0b3SWang Shilong 5212ade2e0b3SWang Shilong /* 5213ade2e0b3SWang Shilong * search in extent tree to find a previous Metadata/Data extent item with 5214ade2e0b3SWang Shilong * min objecitd. 5215ade2e0b3SWang Shilong * 5216ade2e0b3SWang Shilong * returns 0 if something is found, 1 if nothing was found and < 0 on error 5217ade2e0b3SWang Shilong */ 5218ade2e0b3SWang Shilong int btrfs_previous_extent_item(struct btrfs_root *root, 5219ade2e0b3SWang Shilong struct btrfs_path *path, u64 min_objectid) 5220ade2e0b3SWang Shilong { 5221ade2e0b3SWang Shilong struct btrfs_key found_key; 5222ade2e0b3SWang Shilong struct extent_buffer *leaf; 5223ade2e0b3SWang Shilong u32 nritems; 5224ade2e0b3SWang Shilong int ret; 5225ade2e0b3SWang Shilong 5226ade2e0b3SWang Shilong while (1) { 5227ade2e0b3SWang Shilong if (path->slots[0] == 0) { 5228ade2e0b3SWang Shilong ret = btrfs_prev_leaf(root, path); 5229ade2e0b3SWang Shilong if (ret != 0) 5230ade2e0b3SWang Shilong return ret; 5231ade2e0b3SWang Shilong } else { 5232ade2e0b3SWang Shilong path->slots[0]--; 5233ade2e0b3SWang Shilong } 5234ade2e0b3SWang Shilong leaf = path->nodes[0]; 5235ade2e0b3SWang Shilong nritems = btrfs_header_nritems(leaf); 5236ade2e0b3SWang Shilong if (nritems == 0) 5237ade2e0b3SWang Shilong return 1; 5238ade2e0b3SWang Shilong if (path->slots[0] == nritems) 5239ade2e0b3SWang Shilong path->slots[0]--; 5240ade2e0b3SWang Shilong 5241ade2e0b3SWang Shilong btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]); 5242ade2e0b3SWang Shilong if (found_key.objectid < min_objectid) 5243ade2e0b3SWang Shilong break; 5244ade2e0b3SWang Shilong if (found_key.type == BTRFS_EXTENT_ITEM_KEY || 5245ade2e0b3SWang Shilong found_key.type == BTRFS_METADATA_ITEM_KEY) 5246ade2e0b3SWang Shilong return 0; 5247ade2e0b3SWang Shilong if (found_key.objectid == min_objectid && 5248ade2e0b3SWang Shilong found_key.type < BTRFS_EXTENT_ITEM_KEY) 5249ade2e0b3SWang Shilong break; 5250ade2e0b3SWang Shilong } 5251ade2e0b3SWang Shilong return 1; 5252ade2e0b3SWang Shilong } 5253226463d7SJosef Bacik 5254226463d7SJosef Bacik int __init btrfs_ctree_init(void) 5255226463d7SJosef Bacik { 5256226463d7SJosef Bacik btrfs_path_cachep = kmem_cache_create("btrfs_path", 5257226463d7SJosef Bacik sizeof(struct btrfs_path), 0, 5258226463d7SJosef Bacik SLAB_MEM_SPREAD, NULL); 5259226463d7SJosef Bacik if (!btrfs_path_cachep) 5260226463d7SJosef Bacik return -ENOMEM; 5261226463d7SJosef Bacik return 0; 5262226463d7SJosef Bacik } 5263226463d7SJosef Bacik 5264226463d7SJosef Bacik void __cold btrfs_ctree_exit(void) 5265226463d7SJosef Bacik { 5266226463d7SJosef Bacik kmem_cache_destroy(btrfs_path_cachep); 5267226463d7SJosef Bacik } 5268