1a542ad1bSJan Schmidt /* 2a542ad1bSJan Schmidt * Copyright (C) 2011 STRATO. All rights reserved. 3a542ad1bSJan Schmidt * 4a542ad1bSJan Schmidt * This program is free software; you can redistribute it and/or 5a542ad1bSJan Schmidt * modify it under the terms of the GNU General Public 6a542ad1bSJan Schmidt * License v2 as published by the Free Software Foundation. 7a542ad1bSJan Schmidt * 8a542ad1bSJan Schmidt * This program is distributed in the hope that it will be useful, 9a542ad1bSJan Schmidt * but WITHOUT ANY WARRANTY; without even the implied warranty of 10a542ad1bSJan Schmidt * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 11a542ad1bSJan Schmidt * General Public License for more details. 12a542ad1bSJan Schmidt * 13a542ad1bSJan Schmidt * You should have received a copy of the GNU General Public 14a542ad1bSJan Schmidt * License along with this program; if not, write to the 15a542ad1bSJan Schmidt * Free Software Foundation, Inc., 59 Temple Place - Suite 330, 16a542ad1bSJan Schmidt * Boston, MA 021110-1307, USA. 17a542ad1bSJan Schmidt */ 18a542ad1bSJan Schmidt 19425d17a2SLiu Bo #include <linux/vmalloc.h> 20a542ad1bSJan Schmidt #include "ctree.h" 21a542ad1bSJan Schmidt #include "disk-io.h" 22a542ad1bSJan Schmidt #include "backref.h" 238da6d581SJan Schmidt #include "ulist.h" 248da6d581SJan Schmidt #include "transaction.h" 258da6d581SJan Schmidt #include "delayed-ref.h" 26b916a59aSJan Schmidt #include "locking.h" 27a542ad1bSJan Schmidt 28976b1908SJan Schmidt struct extent_inode_elem { 29976b1908SJan Schmidt u64 inum; 30976b1908SJan Schmidt u64 offset; 31976b1908SJan Schmidt struct extent_inode_elem *next; 32976b1908SJan Schmidt }; 33976b1908SJan Schmidt 34976b1908SJan Schmidt static int check_extent_in_eb(struct btrfs_key *key, struct extent_buffer *eb, 35976b1908SJan Schmidt struct btrfs_file_extent_item *fi, 36976b1908SJan Schmidt u64 extent_item_pos, 37976b1908SJan Schmidt struct extent_inode_elem **eie) 38976b1908SJan Schmidt { 398ca15e05SJosef Bacik u64 offset = 0; 408ca15e05SJosef Bacik struct extent_inode_elem *e; 418ca15e05SJosef Bacik 428ca15e05SJosef Bacik if (!btrfs_file_extent_compression(eb, fi) && 438ca15e05SJosef Bacik !btrfs_file_extent_encryption(eb, fi) && 448ca15e05SJosef Bacik !btrfs_file_extent_other_encoding(eb, fi)) { 45976b1908SJan Schmidt u64 data_offset; 46976b1908SJan Schmidt u64 data_len; 47976b1908SJan Schmidt 48976b1908SJan Schmidt data_offset = btrfs_file_extent_offset(eb, fi); 49976b1908SJan Schmidt data_len = btrfs_file_extent_num_bytes(eb, fi); 50976b1908SJan Schmidt 51976b1908SJan Schmidt if (extent_item_pos < data_offset || 52976b1908SJan Schmidt extent_item_pos >= data_offset + data_len) 53976b1908SJan Schmidt return 1; 548ca15e05SJosef Bacik offset = extent_item_pos - data_offset; 558ca15e05SJosef Bacik } 56976b1908SJan Schmidt 57976b1908SJan Schmidt e = kmalloc(sizeof(*e), GFP_NOFS); 58976b1908SJan Schmidt if (!e) 59976b1908SJan Schmidt return -ENOMEM; 60976b1908SJan Schmidt 61976b1908SJan Schmidt e->next = *eie; 62976b1908SJan Schmidt e->inum = key->objectid; 638ca15e05SJosef Bacik e->offset = key->offset + offset; 64976b1908SJan Schmidt *eie = e; 65976b1908SJan Schmidt 66976b1908SJan Schmidt return 0; 67976b1908SJan Schmidt } 68976b1908SJan Schmidt 69f05c4746SWang Shilong static void free_inode_elem_list(struct extent_inode_elem *eie) 70f05c4746SWang Shilong { 71f05c4746SWang Shilong struct extent_inode_elem *eie_next; 72f05c4746SWang Shilong 73f05c4746SWang Shilong for (; eie; eie = eie_next) { 74f05c4746SWang Shilong eie_next = eie->next; 75f05c4746SWang Shilong kfree(eie); 76f05c4746SWang Shilong } 77f05c4746SWang Shilong } 78f05c4746SWang Shilong 79976b1908SJan Schmidt static int find_extent_in_eb(struct extent_buffer *eb, u64 wanted_disk_byte, 80976b1908SJan Schmidt u64 extent_item_pos, 81976b1908SJan Schmidt struct extent_inode_elem **eie) 82976b1908SJan Schmidt { 83976b1908SJan Schmidt u64 disk_byte; 84976b1908SJan Schmidt struct btrfs_key key; 85976b1908SJan Schmidt struct btrfs_file_extent_item *fi; 86976b1908SJan Schmidt int slot; 87976b1908SJan Schmidt int nritems; 88976b1908SJan Schmidt int extent_type; 89976b1908SJan Schmidt int ret; 90976b1908SJan Schmidt 91976b1908SJan Schmidt /* 92976b1908SJan Schmidt * from the shared data ref, we only have the leaf but we need 93976b1908SJan Schmidt * the key. thus, we must look into all items and see that we 94976b1908SJan Schmidt * find one (some) with a reference to our extent item. 95976b1908SJan Schmidt */ 96976b1908SJan Schmidt nritems = btrfs_header_nritems(eb); 97976b1908SJan Schmidt for (slot = 0; slot < nritems; ++slot) { 98976b1908SJan Schmidt btrfs_item_key_to_cpu(eb, &key, slot); 99976b1908SJan Schmidt if (key.type != BTRFS_EXTENT_DATA_KEY) 100976b1908SJan Schmidt continue; 101976b1908SJan Schmidt fi = btrfs_item_ptr(eb, slot, struct btrfs_file_extent_item); 102976b1908SJan Schmidt extent_type = btrfs_file_extent_type(eb, fi); 103976b1908SJan Schmidt if (extent_type == BTRFS_FILE_EXTENT_INLINE) 104976b1908SJan Schmidt continue; 105976b1908SJan Schmidt /* don't skip BTRFS_FILE_EXTENT_PREALLOC, we can handle that */ 106976b1908SJan Schmidt disk_byte = btrfs_file_extent_disk_bytenr(eb, fi); 107976b1908SJan Schmidt if (disk_byte != wanted_disk_byte) 108976b1908SJan Schmidt continue; 109976b1908SJan Schmidt 110976b1908SJan Schmidt ret = check_extent_in_eb(&key, eb, fi, extent_item_pos, eie); 111976b1908SJan Schmidt if (ret < 0) 112976b1908SJan Schmidt return ret; 113976b1908SJan Schmidt } 114976b1908SJan Schmidt 115976b1908SJan Schmidt return 0; 116976b1908SJan Schmidt } 117976b1908SJan Schmidt 1188da6d581SJan Schmidt /* 1198da6d581SJan Schmidt * this structure records all encountered refs on the way up to the root 1208da6d581SJan Schmidt */ 1218da6d581SJan Schmidt struct __prelim_ref { 1228da6d581SJan Schmidt struct list_head list; 1238da6d581SJan Schmidt u64 root_id; 124d5c88b73SJan Schmidt struct btrfs_key key_for_search; 1258da6d581SJan Schmidt int level; 1268da6d581SJan Schmidt int count; 1273301958bSJan Schmidt struct extent_inode_elem *inode_list; 1288da6d581SJan Schmidt u64 parent; 1298da6d581SJan Schmidt u64 wanted_disk_byte; 1308da6d581SJan Schmidt }; 1318da6d581SJan Schmidt 132b9e9a6cbSWang Shilong static struct kmem_cache *btrfs_prelim_ref_cache; 133b9e9a6cbSWang Shilong 134b9e9a6cbSWang Shilong int __init btrfs_prelim_ref_init(void) 135b9e9a6cbSWang Shilong { 136b9e9a6cbSWang Shilong btrfs_prelim_ref_cache = kmem_cache_create("btrfs_prelim_ref", 137b9e9a6cbSWang Shilong sizeof(struct __prelim_ref), 138b9e9a6cbSWang Shilong 0, 139b9e9a6cbSWang Shilong SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, 140b9e9a6cbSWang Shilong NULL); 141b9e9a6cbSWang Shilong if (!btrfs_prelim_ref_cache) 142b9e9a6cbSWang Shilong return -ENOMEM; 143b9e9a6cbSWang Shilong return 0; 144b9e9a6cbSWang Shilong } 145b9e9a6cbSWang Shilong 146b9e9a6cbSWang Shilong void btrfs_prelim_ref_exit(void) 147b9e9a6cbSWang Shilong { 148b9e9a6cbSWang Shilong if (btrfs_prelim_ref_cache) 149b9e9a6cbSWang Shilong kmem_cache_destroy(btrfs_prelim_ref_cache); 150b9e9a6cbSWang Shilong } 151b9e9a6cbSWang Shilong 152d5c88b73SJan Schmidt /* 153d5c88b73SJan Schmidt * the rules for all callers of this function are: 154d5c88b73SJan Schmidt * - obtaining the parent is the goal 155d5c88b73SJan Schmidt * - if you add a key, you must know that it is a correct key 156d5c88b73SJan Schmidt * - if you cannot add the parent or a correct key, then we will look into the 157d5c88b73SJan Schmidt * block later to set a correct key 158d5c88b73SJan Schmidt * 159d5c88b73SJan Schmidt * delayed refs 160d5c88b73SJan Schmidt * ============ 161d5c88b73SJan Schmidt * backref type | shared | indirect | shared | indirect 162d5c88b73SJan Schmidt * information | tree | tree | data | data 163d5c88b73SJan Schmidt * --------------------+--------+----------+--------+---------- 164d5c88b73SJan Schmidt * parent logical | y | - | - | - 165d5c88b73SJan Schmidt * key to resolve | - | y | y | y 166d5c88b73SJan Schmidt * tree block logical | - | - | - | - 167d5c88b73SJan Schmidt * root for resolving | y | y | y | y 168d5c88b73SJan Schmidt * 169d5c88b73SJan Schmidt * - column 1: we've the parent -> done 170d5c88b73SJan Schmidt * - column 2, 3, 4: we use the key to find the parent 171d5c88b73SJan Schmidt * 172d5c88b73SJan Schmidt * on disk refs (inline or keyed) 173d5c88b73SJan Schmidt * ============================== 174d5c88b73SJan Schmidt * backref type | shared | indirect | shared | indirect 175d5c88b73SJan Schmidt * information | tree | tree | data | data 176d5c88b73SJan Schmidt * --------------------+--------+----------+--------+---------- 177d5c88b73SJan Schmidt * parent logical | y | - | y | - 178d5c88b73SJan Schmidt * key to resolve | - | - | - | y 179d5c88b73SJan Schmidt * tree block logical | y | y | y | y 180d5c88b73SJan Schmidt * root for resolving | - | y | y | y 181d5c88b73SJan Schmidt * 182d5c88b73SJan Schmidt * - column 1, 3: we've the parent -> done 183d5c88b73SJan Schmidt * - column 2: we take the first key from the block to find the parent 184d5c88b73SJan Schmidt * (see __add_missing_keys) 185d5c88b73SJan Schmidt * - column 4: we use the key to find the parent 186d5c88b73SJan Schmidt * 187d5c88b73SJan Schmidt * additional information that's available but not required to find the parent 188d5c88b73SJan Schmidt * block might help in merging entries to gain some speed. 189d5c88b73SJan Schmidt */ 190d5c88b73SJan Schmidt 1918da6d581SJan Schmidt static int __add_prelim_ref(struct list_head *head, u64 root_id, 192d5c88b73SJan Schmidt struct btrfs_key *key, int level, 193742916b8SWang Shilong u64 parent, u64 wanted_disk_byte, int count, 194742916b8SWang Shilong gfp_t gfp_mask) 1958da6d581SJan Schmidt { 1968da6d581SJan Schmidt struct __prelim_ref *ref; 1978da6d581SJan Schmidt 19848ec4736SLiu Bo if (root_id == BTRFS_DATA_RELOC_TREE_OBJECTID) 19948ec4736SLiu Bo return 0; 20048ec4736SLiu Bo 201b9e9a6cbSWang Shilong ref = kmem_cache_alloc(btrfs_prelim_ref_cache, gfp_mask); 2028da6d581SJan Schmidt if (!ref) 2038da6d581SJan Schmidt return -ENOMEM; 2048da6d581SJan Schmidt 2058da6d581SJan Schmidt ref->root_id = root_id; 2068da6d581SJan Schmidt if (key) 207d5c88b73SJan Schmidt ref->key_for_search = *key; 2088da6d581SJan Schmidt else 209d5c88b73SJan Schmidt memset(&ref->key_for_search, 0, sizeof(ref->key_for_search)); 2108da6d581SJan Schmidt 2113301958bSJan Schmidt ref->inode_list = NULL; 2128da6d581SJan Schmidt ref->level = level; 2138da6d581SJan Schmidt ref->count = count; 2148da6d581SJan Schmidt ref->parent = parent; 2158da6d581SJan Schmidt ref->wanted_disk_byte = wanted_disk_byte; 2168da6d581SJan Schmidt list_add_tail(&ref->list, head); 2178da6d581SJan Schmidt 2188da6d581SJan Schmidt return 0; 2198da6d581SJan Schmidt } 2208da6d581SJan Schmidt 2218da6d581SJan Schmidt static int add_all_parents(struct btrfs_root *root, struct btrfs_path *path, 2227ef81ac8SJosef Bacik struct ulist *parents, struct __prelim_ref *ref, 22344853868SJosef Bacik int level, u64 time_seq, const u64 *extent_item_pos, 22444853868SJosef Bacik u64 total_refs) 2258da6d581SJan Schmidt { 22669bca40dSAlexander Block int ret = 0; 22769bca40dSAlexander Block int slot; 22869bca40dSAlexander Block struct extent_buffer *eb; 22969bca40dSAlexander Block struct btrfs_key key; 2307ef81ac8SJosef Bacik struct btrfs_key *key_for_search = &ref->key_for_search; 2318da6d581SJan Schmidt struct btrfs_file_extent_item *fi; 232ed8c4913SJosef Bacik struct extent_inode_elem *eie = NULL, *old = NULL; 2338da6d581SJan Schmidt u64 disk_byte; 2347ef81ac8SJosef Bacik u64 wanted_disk_byte = ref->wanted_disk_byte; 2357ef81ac8SJosef Bacik u64 count = 0; 2368da6d581SJan Schmidt 23769bca40dSAlexander Block if (level != 0) { 23869bca40dSAlexander Block eb = path->nodes[level]; 23969bca40dSAlexander Block ret = ulist_add(parents, eb->start, 0, GFP_NOFS); 2403301958bSJan Schmidt if (ret < 0) 2413301958bSJan Schmidt return ret; 2428da6d581SJan Schmidt return 0; 24369bca40dSAlexander Block } 2448da6d581SJan Schmidt 2458da6d581SJan Schmidt /* 24669bca40dSAlexander Block * We normally enter this function with the path already pointing to 24769bca40dSAlexander Block * the first item to check. But sometimes, we may enter it with 24869bca40dSAlexander Block * slot==nritems. In that case, go to the next leaf before we continue. 2498da6d581SJan Schmidt */ 25069bca40dSAlexander Block if (path->slots[0] >= btrfs_header_nritems(path->nodes[0])) 2513d7806ecSJan Schmidt ret = btrfs_next_old_leaf(root, path, time_seq); 2528da6d581SJan Schmidt 25344853868SJosef Bacik while (!ret && count < total_refs) { 2548da6d581SJan Schmidt eb = path->nodes[0]; 25569bca40dSAlexander Block slot = path->slots[0]; 25669bca40dSAlexander Block 25769bca40dSAlexander Block btrfs_item_key_to_cpu(eb, &key, slot); 25869bca40dSAlexander Block 25969bca40dSAlexander Block if (key.objectid != key_for_search->objectid || 26069bca40dSAlexander Block key.type != BTRFS_EXTENT_DATA_KEY) 26169bca40dSAlexander Block break; 26269bca40dSAlexander Block 26369bca40dSAlexander Block fi = btrfs_item_ptr(eb, slot, struct btrfs_file_extent_item); 2648da6d581SJan Schmidt disk_byte = btrfs_file_extent_disk_bytenr(eb, fi); 26569bca40dSAlexander Block 26669bca40dSAlexander Block if (disk_byte == wanted_disk_byte) { 26769bca40dSAlexander Block eie = NULL; 268ed8c4913SJosef Bacik old = NULL; 2697ef81ac8SJosef Bacik count++; 27069bca40dSAlexander Block if (extent_item_pos) { 27169bca40dSAlexander Block ret = check_extent_in_eb(&key, eb, fi, 27269bca40dSAlexander Block *extent_item_pos, 27369bca40dSAlexander Block &eie); 27469bca40dSAlexander Block if (ret < 0) 27569bca40dSAlexander Block break; 2768da6d581SJan Schmidt } 277ed8c4913SJosef Bacik if (ret > 0) 278ed8c4913SJosef Bacik goto next; 2794eb1f66dSTakashi Iwai ret = ulist_add_merge_ptr(parents, eb->start, 2804eb1f66dSTakashi Iwai eie, (void **)&old, GFP_NOFS); 28169bca40dSAlexander Block if (ret < 0) 28269bca40dSAlexander Block break; 283ed8c4913SJosef Bacik if (!ret && extent_item_pos) { 284ed8c4913SJosef Bacik while (old->next) 285ed8c4913SJosef Bacik old = old->next; 286ed8c4913SJosef Bacik old->next = eie; 28769bca40dSAlexander Block } 288f05c4746SWang Shilong eie = NULL; 28969bca40dSAlexander Block } 290ed8c4913SJosef Bacik next: 29169bca40dSAlexander Block ret = btrfs_next_old_item(root, path, time_seq); 2928da6d581SJan Schmidt } 2938da6d581SJan Schmidt 29469bca40dSAlexander Block if (ret > 0) 29569bca40dSAlexander Block ret = 0; 296f05c4746SWang Shilong else if (ret < 0) 297f05c4746SWang Shilong free_inode_elem_list(eie); 29869bca40dSAlexander Block return ret; 2998da6d581SJan Schmidt } 3008da6d581SJan Schmidt 3018da6d581SJan Schmidt /* 3028da6d581SJan Schmidt * resolve an indirect backref in the form (root_id, key, level) 3038da6d581SJan Schmidt * to a logical address 3048da6d581SJan Schmidt */ 3058da6d581SJan Schmidt static int __resolve_indirect_ref(struct btrfs_fs_info *fs_info, 306da61d31aSJosef Bacik struct btrfs_path *path, u64 time_seq, 3078da6d581SJan Schmidt struct __prelim_ref *ref, 308976b1908SJan Schmidt struct ulist *parents, 30944853868SJosef Bacik const u64 *extent_item_pos, u64 total_refs) 3108da6d581SJan Schmidt { 3118da6d581SJan Schmidt struct btrfs_root *root; 3128da6d581SJan Schmidt struct btrfs_key root_key; 3138da6d581SJan Schmidt struct extent_buffer *eb; 3148da6d581SJan Schmidt int ret = 0; 3158da6d581SJan Schmidt int root_level; 3168da6d581SJan Schmidt int level = ref->level; 317538f72cdSWang Shilong int index; 3188da6d581SJan Schmidt 3198da6d581SJan Schmidt root_key.objectid = ref->root_id; 3208da6d581SJan Schmidt root_key.type = BTRFS_ROOT_ITEM_KEY; 3218da6d581SJan Schmidt root_key.offset = (u64)-1; 322538f72cdSWang Shilong 323538f72cdSWang Shilong index = srcu_read_lock(&fs_info->subvol_srcu); 324538f72cdSWang Shilong 3258da6d581SJan Schmidt root = btrfs_read_fs_root_no_name(fs_info, &root_key); 3268da6d581SJan Schmidt if (IS_ERR(root)) { 327538f72cdSWang Shilong srcu_read_unlock(&fs_info->subvol_srcu, index); 3288da6d581SJan Schmidt ret = PTR_ERR(root); 3298da6d581SJan Schmidt goto out; 3308da6d581SJan Schmidt } 3318da6d581SJan Schmidt 3329e351cc8SJosef Bacik if (path->search_commit_root) 3339e351cc8SJosef Bacik root_level = btrfs_header_level(root->commit_root); 3349e351cc8SJosef Bacik else 3355b6602e7SJan Schmidt root_level = btrfs_old_root_level(root, time_seq); 3368da6d581SJan Schmidt 337538f72cdSWang Shilong if (root_level + 1 == level) { 338538f72cdSWang Shilong srcu_read_unlock(&fs_info->subvol_srcu, index); 3398da6d581SJan Schmidt goto out; 340538f72cdSWang Shilong } 3418da6d581SJan Schmidt 3428da6d581SJan Schmidt path->lowest_level = level; 3438445f61cSJan Schmidt ret = btrfs_search_old_slot(root, &ref->key_for_search, path, time_seq); 344538f72cdSWang Shilong 345538f72cdSWang Shilong /* root node has been locked, we can release @subvol_srcu safely here */ 346538f72cdSWang Shilong srcu_read_unlock(&fs_info->subvol_srcu, index); 347538f72cdSWang Shilong 3488da6d581SJan Schmidt pr_debug("search slot in root %llu (level %d, ref count %d) returned " 3498da6d581SJan Schmidt "%d for key (%llu %u %llu)\n", 350c1c9ff7cSGeert Uytterhoeven ref->root_id, level, ref->count, ret, 351c1c9ff7cSGeert Uytterhoeven ref->key_for_search.objectid, ref->key_for_search.type, 352c1c9ff7cSGeert Uytterhoeven ref->key_for_search.offset); 3538da6d581SJan Schmidt if (ret < 0) 3548da6d581SJan Schmidt goto out; 3558da6d581SJan Schmidt 3568da6d581SJan Schmidt eb = path->nodes[level]; 3579345457fSJan Schmidt while (!eb) { 358fae7f21cSDulshani Gunawardhana if (WARN_ON(!level)) { 3598da6d581SJan Schmidt ret = 1; 3608da6d581SJan Schmidt goto out; 3618da6d581SJan Schmidt } 3629345457fSJan Schmidt level--; 3639345457fSJan Schmidt eb = path->nodes[level]; 3649345457fSJan Schmidt } 3658da6d581SJan Schmidt 3667ef81ac8SJosef Bacik ret = add_all_parents(root, path, parents, ref, level, time_seq, 36744853868SJosef Bacik extent_item_pos, total_refs); 3688da6d581SJan Schmidt out: 369da61d31aSJosef Bacik path->lowest_level = 0; 370da61d31aSJosef Bacik btrfs_release_path(path); 3718da6d581SJan Schmidt return ret; 3728da6d581SJan Schmidt } 3738da6d581SJan Schmidt 3748da6d581SJan Schmidt /* 3758da6d581SJan Schmidt * resolve all indirect backrefs from the list 3768da6d581SJan Schmidt */ 3778da6d581SJan Schmidt static int __resolve_indirect_refs(struct btrfs_fs_info *fs_info, 378da61d31aSJosef Bacik struct btrfs_path *path, u64 time_seq, 379976b1908SJan Schmidt struct list_head *head, 38044853868SJosef Bacik const u64 *extent_item_pos, u64 total_refs) 3818da6d581SJan Schmidt { 3828da6d581SJan Schmidt int err; 3838da6d581SJan Schmidt int ret = 0; 3848da6d581SJan Schmidt struct __prelim_ref *ref; 3858da6d581SJan Schmidt struct __prelim_ref *ref_safe; 3868da6d581SJan Schmidt struct __prelim_ref *new_ref; 3878da6d581SJan Schmidt struct ulist *parents; 3888da6d581SJan Schmidt struct ulist_node *node; 389cd1b413cSJan Schmidt struct ulist_iterator uiter; 3908da6d581SJan Schmidt 3918da6d581SJan Schmidt parents = ulist_alloc(GFP_NOFS); 3928da6d581SJan Schmidt if (!parents) 3938da6d581SJan Schmidt return -ENOMEM; 3948da6d581SJan Schmidt 3958da6d581SJan Schmidt /* 3968da6d581SJan Schmidt * _safe allows us to insert directly after the current item without 3978da6d581SJan Schmidt * iterating over the newly inserted items. 3988da6d581SJan Schmidt * we're also allowed to re-assign ref during iteration. 3998da6d581SJan Schmidt */ 4008da6d581SJan Schmidt list_for_each_entry_safe(ref, ref_safe, head, list) { 4018da6d581SJan Schmidt if (ref->parent) /* already direct */ 4028da6d581SJan Schmidt continue; 4038da6d581SJan Schmidt if (ref->count == 0) 4048da6d581SJan Schmidt continue; 405da61d31aSJosef Bacik err = __resolve_indirect_ref(fs_info, path, time_seq, ref, 40644853868SJosef Bacik parents, extent_item_pos, 40744853868SJosef Bacik total_refs); 40895def2edSWang Shilong /* 40995def2edSWang Shilong * we can only tolerate ENOENT,otherwise,we should catch error 41095def2edSWang Shilong * and return directly. 41195def2edSWang Shilong */ 41295def2edSWang Shilong if (err == -ENOENT) { 4138da6d581SJan Schmidt continue; 41495def2edSWang Shilong } else if (err) { 41595def2edSWang Shilong ret = err; 41695def2edSWang Shilong goto out; 41795def2edSWang Shilong } 4188da6d581SJan Schmidt 4198da6d581SJan Schmidt /* we put the first parent into the ref at hand */ 420cd1b413cSJan Schmidt ULIST_ITER_INIT(&uiter); 421cd1b413cSJan Schmidt node = ulist_next(parents, &uiter); 4228da6d581SJan Schmidt ref->parent = node ? node->val : 0; 423995e01b7SJan Schmidt ref->inode_list = node ? 42435a3621bSStefan Behrens (struct extent_inode_elem *)(uintptr_t)node->aux : NULL; 4258da6d581SJan Schmidt 4268da6d581SJan Schmidt /* additional parents require new refs being added here */ 427cd1b413cSJan Schmidt while ((node = ulist_next(parents, &uiter))) { 428b9e9a6cbSWang Shilong new_ref = kmem_cache_alloc(btrfs_prelim_ref_cache, 429b9e9a6cbSWang Shilong GFP_NOFS); 4308da6d581SJan Schmidt if (!new_ref) { 4318da6d581SJan Schmidt ret = -ENOMEM; 432e36902d4SWang Shilong goto out; 4338da6d581SJan Schmidt } 4348da6d581SJan Schmidt memcpy(new_ref, ref, sizeof(*ref)); 4358da6d581SJan Schmidt new_ref->parent = node->val; 436995e01b7SJan Schmidt new_ref->inode_list = (struct extent_inode_elem *) 437995e01b7SJan Schmidt (uintptr_t)node->aux; 4388da6d581SJan Schmidt list_add(&new_ref->list, &ref->list); 4398da6d581SJan Schmidt } 4408da6d581SJan Schmidt ulist_reinit(parents); 4418da6d581SJan Schmidt } 442e36902d4SWang Shilong out: 4438da6d581SJan Schmidt ulist_free(parents); 4448da6d581SJan Schmidt return ret; 4458da6d581SJan Schmidt } 4468da6d581SJan Schmidt 447d5c88b73SJan Schmidt static inline int ref_for_same_block(struct __prelim_ref *ref1, 448d5c88b73SJan Schmidt struct __prelim_ref *ref2) 449d5c88b73SJan Schmidt { 450d5c88b73SJan Schmidt if (ref1->level != ref2->level) 451d5c88b73SJan Schmidt return 0; 452d5c88b73SJan Schmidt if (ref1->root_id != ref2->root_id) 453d5c88b73SJan Schmidt return 0; 454d5c88b73SJan Schmidt if (ref1->key_for_search.type != ref2->key_for_search.type) 455d5c88b73SJan Schmidt return 0; 456d5c88b73SJan Schmidt if (ref1->key_for_search.objectid != ref2->key_for_search.objectid) 457d5c88b73SJan Schmidt return 0; 458d5c88b73SJan Schmidt if (ref1->key_for_search.offset != ref2->key_for_search.offset) 459d5c88b73SJan Schmidt return 0; 460d5c88b73SJan Schmidt if (ref1->parent != ref2->parent) 461d5c88b73SJan Schmidt return 0; 462d5c88b73SJan Schmidt 463d5c88b73SJan Schmidt return 1; 464d5c88b73SJan Schmidt } 465d5c88b73SJan Schmidt 466d5c88b73SJan Schmidt /* 467d5c88b73SJan Schmidt * read tree blocks and add keys where required. 468d5c88b73SJan Schmidt */ 469d5c88b73SJan Schmidt static int __add_missing_keys(struct btrfs_fs_info *fs_info, 470d5c88b73SJan Schmidt struct list_head *head) 471d5c88b73SJan Schmidt { 472d5c88b73SJan Schmidt struct list_head *pos; 473d5c88b73SJan Schmidt struct extent_buffer *eb; 474d5c88b73SJan Schmidt 475d5c88b73SJan Schmidt list_for_each(pos, head) { 476d5c88b73SJan Schmidt struct __prelim_ref *ref; 477d5c88b73SJan Schmidt ref = list_entry(pos, struct __prelim_ref, list); 478d5c88b73SJan Schmidt 479d5c88b73SJan Schmidt if (ref->parent) 480d5c88b73SJan Schmidt continue; 481d5c88b73SJan Schmidt if (ref->key_for_search.type) 482d5c88b73SJan Schmidt continue; 483d5c88b73SJan Schmidt BUG_ON(!ref->wanted_disk_byte); 484d5c88b73SJan Schmidt eb = read_tree_block(fs_info->tree_root, ref->wanted_disk_byte, 485*707e8a07SDavid Sterba fs_info->tree_root->nodesize, 0); 486416bc658SJosef Bacik if (!eb || !extent_buffer_uptodate(eb)) { 487416bc658SJosef Bacik free_extent_buffer(eb); 488416bc658SJosef Bacik return -EIO; 489416bc658SJosef Bacik } 490d5c88b73SJan Schmidt btrfs_tree_read_lock(eb); 491d5c88b73SJan Schmidt if (btrfs_header_level(eb) == 0) 492d5c88b73SJan Schmidt btrfs_item_key_to_cpu(eb, &ref->key_for_search, 0); 493d5c88b73SJan Schmidt else 494d5c88b73SJan Schmidt btrfs_node_key_to_cpu(eb, &ref->key_for_search, 0); 495d5c88b73SJan Schmidt btrfs_tree_read_unlock(eb); 496d5c88b73SJan Schmidt free_extent_buffer(eb); 497d5c88b73SJan Schmidt } 498d5c88b73SJan Schmidt return 0; 499d5c88b73SJan Schmidt } 500d5c88b73SJan Schmidt 5018da6d581SJan Schmidt /* 5028da6d581SJan Schmidt * merge two lists of backrefs and adjust counts accordingly 5038da6d581SJan Schmidt * 5048da6d581SJan Schmidt * mode = 1: merge identical keys, if key is set 505d5c88b73SJan Schmidt * FIXME: if we add more keys in __add_prelim_ref, we can merge more here. 506d5c88b73SJan Schmidt * additionally, we could even add a key range for the blocks we 507d5c88b73SJan Schmidt * looked into to merge even more (-> replace unresolved refs by those 508d5c88b73SJan Schmidt * having a parent). 5098da6d581SJan Schmidt * mode = 2: merge identical parents 5108da6d581SJan Schmidt */ 511692206b1SWang Shilong static void __merge_refs(struct list_head *head, int mode) 5128da6d581SJan Schmidt { 5138da6d581SJan Schmidt struct list_head *pos1; 5148da6d581SJan Schmidt 5158da6d581SJan Schmidt list_for_each(pos1, head) { 5168da6d581SJan Schmidt struct list_head *n2; 5178da6d581SJan Schmidt struct list_head *pos2; 5188da6d581SJan Schmidt struct __prelim_ref *ref1; 5198da6d581SJan Schmidt 5208da6d581SJan Schmidt ref1 = list_entry(pos1, struct __prelim_ref, list); 5218da6d581SJan Schmidt 5228da6d581SJan Schmidt for (pos2 = pos1->next, n2 = pos2->next; pos2 != head; 5238da6d581SJan Schmidt pos2 = n2, n2 = pos2->next) { 5248da6d581SJan Schmidt struct __prelim_ref *ref2; 525d5c88b73SJan Schmidt struct __prelim_ref *xchg; 5263ef5969cSAlexander Block struct extent_inode_elem *eie; 5278da6d581SJan Schmidt 5288da6d581SJan Schmidt ref2 = list_entry(pos2, struct __prelim_ref, list); 5298da6d581SJan Schmidt 5308da6d581SJan Schmidt if (mode == 1) { 531d5c88b73SJan Schmidt if (!ref_for_same_block(ref1, ref2)) 5328da6d581SJan Schmidt continue; 533d5c88b73SJan Schmidt if (!ref1->parent && ref2->parent) { 534d5c88b73SJan Schmidt xchg = ref1; 535d5c88b73SJan Schmidt ref1 = ref2; 536d5c88b73SJan Schmidt ref2 = xchg; 537d5c88b73SJan Schmidt } 5388da6d581SJan Schmidt } else { 5398da6d581SJan Schmidt if (ref1->parent != ref2->parent) 5408da6d581SJan Schmidt continue; 5418da6d581SJan Schmidt } 5423ef5969cSAlexander Block 5433ef5969cSAlexander Block eie = ref1->inode_list; 5443ef5969cSAlexander Block while (eie && eie->next) 5453ef5969cSAlexander Block eie = eie->next; 5463ef5969cSAlexander Block if (eie) 5473ef5969cSAlexander Block eie->next = ref2->inode_list; 5483ef5969cSAlexander Block else 5493ef5969cSAlexander Block ref1->inode_list = ref2->inode_list; 5503ef5969cSAlexander Block ref1->count += ref2->count; 5513ef5969cSAlexander Block 5528da6d581SJan Schmidt list_del(&ref2->list); 553b9e9a6cbSWang Shilong kmem_cache_free(btrfs_prelim_ref_cache, ref2); 5548da6d581SJan Schmidt } 5558da6d581SJan Schmidt 5568da6d581SJan Schmidt } 5578da6d581SJan Schmidt } 5588da6d581SJan Schmidt 5598da6d581SJan Schmidt /* 5608da6d581SJan Schmidt * add all currently queued delayed refs from this head whose seq nr is 5618da6d581SJan Schmidt * smaller or equal that seq to the list 5628da6d581SJan Schmidt */ 5638da6d581SJan Schmidt static int __add_delayed_refs(struct btrfs_delayed_ref_head *head, u64 seq, 56444853868SJosef Bacik struct list_head *prefs, u64 *total_refs) 5658da6d581SJan Schmidt { 5668da6d581SJan Schmidt struct btrfs_delayed_extent_op *extent_op = head->extent_op; 5678da6d581SJan Schmidt struct rb_node *n = &head->node.rb_node; 568d5c88b73SJan Schmidt struct btrfs_key key; 569d5c88b73SJan Schmidt struct btrfs_key op_key = {0}; 5708da6d581SJan Schmidt int sgn; 571b1375d64SJan Schmidt int ret = 0; 5728da6d581SJan Schmidt 5738da6d581SJan Schmidt if (extent_op && extent_op->update_key) 574d5c88b73SJan Schmidt btrfs_disk_key_to_cpu(&op_key, &extent_op->key); 5758da6d581SJan Schmidt 576d7df2c79SJosef Bacik spin_lock(&head->lock); 577d7df2c79SJosef Bacik n = rb_first(&head->ref_root); 578d7df2c79SJosef Bacik while (n) { 5798da6d581SJan Schmidt struct btrfs_delayed_ref_node *node; 5808da6d581SJan Schmidt node = rb_entry(n, struct btrfs_delayed_ref_node, 5818da6d581SJan Schmidt rb_node); 582d7df2c79SJosef Bacik n = rb_next(n); 5838da6d581SJan Schmidt if (node->seq > seq) 5848da6d581SJan Schmidt continue; 5858da6d581SJan Schmidt 5868da6d581SJan Schmidt switch (node->action) { 5878da6d581SJan Schmidt case BTRFS_ADD_DELAYED_EXTENT: 5888da6d581SJan Schmidt case BTRFS_UPDATE_DELAYED_HEAD: 5898da6d581SJan Schmidt WARN_ON(1); 5908da6d581SJan Schmidt continue; 5918da6d581SJan Schmidt case BTRFS_ADD_DELAYED_REF: 5928da6d581SJan Schmidt sgn = 1; 5938da6d581SJan Schmidt break; 5948da6d581SJan Schmidt case BTRFS_DROP_DELAYED_REF: 5958da6d581SJan Schmidt sgn = -1; 5968da6d581SJan Schmidt break; 5978da6d581SJan Schmidt default: 5988da6d581SJan Schmidt BUG_ON(1); 5998da6d581SJan Schmidt } 60044853868SJosef Bacik *total_refs += (node->ref_mod * sgn); 6018da6d581SJan Schmidt switch (node->type) { 6028da6d581SJan Schmidt case BTRFS_TREE_BLOCK_REF_KEY: { 6038da6d581SJan Schmidt struct btrfs_delayed_tree_ref *ref; 6048da6d581SJan Schmidt 6058da6d581SJan Schmidt ref = btrfs_delayed_node_to_tree_ref(node); 606d5c88b73SJan Schmidt ret = __add_prelim_ref(prefs, ref->root, &op_key, 6078da6d581SJan Schmidt ref->level + 1, 0, node->bytenr, 608742916b8SWang Shilong node->ref_mod * sgn, GFP_ATOMIC); 6098da6d581SJan Schmidt break; 6108da6d581SJan Schmidt } 6118da6d581SJan Schmidt case BTRFS_SHARED_BLOCK_REF_KEY: { 6128da6d581SJan Schmidt struct btrfs_delayed_tree_ref *ref; 6138da6d581SJan Schmidt 6148da6d581SJan Schmidt ref = btrfs_delayed_node_to_tree_ref(node); 615d5c88b73SJan Schmidt ret = __add_prelim_ref(prefs, ref->root, NULL, 6168da6d581SJan Schmidt ref->level + 1, ref->parent, 6178da6d581SJan Schmidt node->bytenr, 618742916b8SWang Shilong node->ref_mod * sgn, GFP_ATOMIC); 6198da6d581SJan Schmidt break; 6208da6d581SJan Schmidt } 6218da6d581SJan Schmidt case BTRFS_EXTENT_DATA_REF_KEY: { 6228da6d581SJan Schmidt struct btrfs_delayed_data_ref *ref; 6238da6d581SJan Schmidt ref = btrfs_delayed_node_to_data_ref(node); 6248da6d581SJan Schmidt 6258da6d581SJan Schmidt key.objectid = ref->objectid; 6268da6d581SJan Schmidt key.type = BTRFS_EXTENT_DATA_KEY; 6278da6d581SJan Schmidt key.offset = ref->offset; 6288da6d581SJan Schmidt ret = __add_prelim_ref(prefs, ref->root, &key, 0, 0, 6298da6d581SJan Schmidt node->bytenr, 630742916b8SWang Shilong node->ref_mod * sgn, GFP_ATOMIC); 6318da6d581SJan Schmidt break; 6328da6d581SJan Schmidt } 6338da6d581SJan Schmidt case BTRFS_SHARED_DATA_REF_KEY: { 6348da6d581SJan Schmidt struct btrfs_delayed_data_ref *ref; 6358da6d581SJan Schmidt 6368da6d581SJan Schmidt ref = btrfs_delayed_node_to_data_ref(node); 6378da6d581SJan Schmidt 6388da6d581SJan Schmidt key.objectid = ref->objectid; 6398da6d581SJan Schmidt key.type = BTRFS_EXTENT_DATA_KEY; 6408da6d581SJan Schmidt key.offset = ref->offset; 6418da6d581SJan Schmidt ret = __add_prelim_ref(prefs, ref->root, &key, 0, 6428da6d581SJan Schmidt ref->parent, node->bytenr, 643742916b8SWang Shilong node->ref_mod * sgn, GFP_ATOMIC); 6448da6d581SJan Schmidt break; 6458da6d581SJan Schmidt } 6468da6d581SJan Schmidt default: 6478da6d581SJan Schmidt WARN_ON(1); 6488da6d581SJan Schmidt } 6491149ab6bSWang Shilong if (ret) 650d7df2c79SJosef Bacik break; 6518da6d581SJan Schmidt } 652d7df2c79SJosef Bacik spin_unlock(&head->lock); 653d7df2c79SJosef Bacik return ret; 6548da6d581SJan Schmidt } 6558da6d581SJan Schmidt 6568da6d581SJan Schmidt /* 6578da6d581SJan Schmidt * add all inline backrefs for bytenr to the list 6588da6d581SJan Schmidt */ 6598da6d581SJan Schmidt static int __add_inline_refs(struct btrfs_fs_info *fs_info, 6608da6d581SJan Schmidt struct btrfs_path *path, u64 bytenr, 66144853868SJosef Bacik int *info_level, struct list_head *prefs, 66244853868SJosef Bacik u64 *total_refs) 6638da6d581SJan Schmidt { 664b1375d64SJan Schmidt int ret = 0; 6658da6d581SJan Schmidt int slot; 6668da6d581SJan Schmidt struct extent_buffer *leaf; 6678da6d581SJan Schmidt struct btrfs_key key; 668261c84b6SJosef Bacik struct btrfs_key found_key; 6698da6d581SJan Schmidt unsigned long ptr; 6708da6d581SJan Schmidt unsigned long end; 6718da6d581SJan Schmidt struct btrfs_extent_item *ei; 6728da6d581SJan Schmidt u64 flags; 6738da6d581SJan Schmidt u64 item_size; 6748da6d581SJan Schmidt 6758da6d581SJan Schmidt /* 6768da6d581SJan Schmidt * enumerate all inline refs 6778da6d581SJan Schmidt */ 6788da6d581SJan Schmidt leaf = path->nodes[0]; 679dadcaf78SJan Schmidt slot = path->slots[0]; 6808da6d581SJan Schmidt 6818da6d581SJan Schmidt item_size = btrfs_item_size_nr(leaf, slot); 6828da6d581SJan Schmidt BUG_ON(item_size < sizeof(*ei)); 6838da6d581SJan Schmidt 6848da6d581SJan Schmidt ei = btrfs_item_ptr(leaf, slot, struct btrfs_extent_item); 6858da6d581SJan Schmidt flags = btrfs_extent_flags(leaf, ei); 68644853868SJosef Bacik *total_refs += btrfs_extent_refs(leaf, ei); 687261c84b6SJosef Bacik btrfs_item_key_to_cpu(leaf, &found_key, slot); 6888da6d581SJan Schmidt 6898da6d581SJan Schmidt ptr = (unsigned long)(ei + 1); 6908da6d581SJan Schmidt end = (unsigned long)ei + item_size; 6918da6d581SJan Schmidt 692261c84b6SJosef Bacik if (found_key.type == BTRFS_EXTENT_ITEM_KEY && 693261c84b6SJosef Bacik flags & BTRFS_EXTENT_FLAG_TREE_BLOCK) { 6948da6d581SJan Schmidt struct btrfs_tree_block_info *info; 6958da6d581SJan Schmidt 6968da6d581SJan Schmidt info = (struct btrfs_tree_block_info *)ptr; 6978da6d581SJan Schmidt *info_level = btrfs_tree_block_level(leaf, info); 6988da6d581SJan Schmidt ptr += sizeof(struct btrfs_tree_block_info); 6998da6d581SJan Schmidt BUG_ON(ptr > end); 700261c84b6SJosef Bacik } else if (found_key.type == BTRFS_METADATA_ITEM_KEY) { 701261c84b6SJosef Bacik *info_level = found_key.offset; 7028da6d581SJan Schmidt } else { 7038da6d581SJan Schmidt BUG_ON(!(flags & BTRFS_EXTENT_FLAG_DATA)); 7048da6d581SJan Schmidt } 7058da6d581SJan Schmidt 7068da6d581SJan Schmidt while (ptr < end) { 7078da6d581SJan Schmidt struct btrfs_extent_inline_ref *iref; 7088da6d581SJan Schmidt u64 offset; 7098da6d581SJan Schmidt int type; 7108da6d581SJan Schmidt 7118da6d581SJan Schmidt iref = (struct btrfs_extent_inline_ref *)ptr; 7128da6d581SJan Schmidt type = btrfs_extent_inline_ref_type(leaf, iref); 7138da6d581SJan Schmidt offset = btrfs_extent_inline_ref_offset(leaf, iref); 7148da6d581SJan Schmidt 7158da6d581SJan Schmidt switch (type) { 7168da6d581SJan Schmidt case BTRFS_SHARED_BLOCK_REF_KEY: 717d5c88b73SJan Schmidt ret = __add_prelim_ref(prefs, 0, NULL, 7188da6d581SJan Schmidt *info_level + 1, offset, 719742916b8SWang Shilong bytenr, 1, GFP_NOFS); 7208da6d581SJan Schmidt break; 7218da6d581SJan Schmidt case BTRFS_SHARED_DATA_REF_KEY: { 7228da6d581SJan Schmidt struct btrfs_shared_data_ref *sdref; 7238da6d581SJan Schmidt int count; 7248da6d581SJan Schmidt 7258da6d581SJan Schmidt sdref = (struct btrfs_shared_data_ref *)(iref + 1); 7268da6d581SJan Schmidt count = btrfs_shared_data_ref_count(leaf, sdref); 7278da6d581SJan Schmidt ret = __add_prelim_ref(prefs, 0, NULL, 0, offset, 728742916b8SWang Shilong bytenr, count, GFP_NOFS); 7298da6d581SJan Schmidt break; 7308da6d581SJan Schmidt } 7318da6d581SJan Schmidt case BTRFS_TREE_BLOCK_REF_KEY: 732d5c88b73SJan Schmidt ret = __add_prelim_ref(prefs, offset, NULL, 733d5c88b73SJan Schmidt *info_level + 1, 0, 734742916b8SWang Shilong bytenr, 1, GFP_NOFS); 7358da6d581SJan Schmidt break; 7368da6d581SJan Schmidt case BTRFS_EXTENT_DATA_REF_KEY: { 7378da6d581SJan Schmidt struct btrfs_extent_data_ref *dref; 7388da6d581SJan Schmidt int count; 7398da6d581SJan Schmidt u64 root; 7408da6d581SJan Schmidt 7418da6d581SJan Schmidt dref = (struct btrfs_extent_data_ref *)(&iref->offset); 7428da6d581SJan Schmidt count = btrfs_extent_data_ref_count(leaf, dref); 7438da6d581SJan Schmidt key.objectid = btrfs_extent_data_ref_objectid(leaf, 7448da6d581SJan Schmidt dref); 7458da6d581SJan Schmidt key.type = BTRFS_EXTENT_DATA_KEY; 7468da6d581SJan Schmidt key.offset = btrfs_extent_data_ref_offset(leaf, dref); 7478da6d581SJan Schmidt root = btrfs_extent_data_ref_root(leaf, dref); 748d5c88b73SJan Schmidt ret = __add_prelim_ref(prefs, root, &key, 0, 0, 749742916b8SWang Shilong bytenr, count, GFP_NOFS); 7508da6d581SJan Schmidt break; 7518da6d581SJan Schmidt } 7528da6d581SJan Schmidt default: 7538da6d581SJan Schmidt WARN_ON(1); 7548da6d581SJan Schmidt } 7551149ab6bSWang Shilong if (ret) 7561149ab6bSWang Shilong return ret; 7578da6d581SJan Schmidt ptr += btrfs_extent_inline_ref_size(type); 7588da6d581SJan Schmidt } 7598da6d581SJan Schmidt 7608da6d581SJan Schmidt return 0; 7618da6d581SJan Schmidt } 7628da6d581SJan Schmidt 7638da6d581SJan Schmidt /* 7648da6d581SJan Schmidt * add all non-inline backrefs for bytenr to the list 7658da6d581SJan Schmidt */ 7668da6d581SJan Schmidt static int __add_keyed_refs(struct btrfs_fs_info *fs_info, 7678da6d581SJan Schmidt struct btrfs_path *path, u64 bytenr, 768d5c88b73SJan Schmidt int info_level, struct list_head *prefs) 7698da6d581SJan Schmidt { 7708da6d581SJan Schmidt struct btrfs_root *extent_root = fs_info->extent_root; 7718da6d581SJan Schmidt int ret; 7728da6d581SJan Schmidt int slot; 7738da6d581SJan Schmidt struct extent_buffer *leaf; 7748da6d581SJan Schmidt struct btrfs_key key; 7758da6d581SJan Schmidt 7768da6d581SJan Schmidt while (1) { 7778da6d581SJan Schmidt ret = btrfs_next_item(extent_root, path); 7788da6d581SJan Schmidt if (ret < 0) 7798da6d581SJan Schmidt break; 7808da6d581SJan Schmidt if (ret) { 7818da6d581SJan Schmidt ret = 0; 7828da6d581SJan Schmidt break; 7838da6d581SJan Schmidt } 7848da6d581SJan Schmidt 7858da6d581SJan Schmidt slot = path->slots[0]; 7868da6d581SJan Schmidt leaf = path->nodes[0]; 7878da6d581SJan Schmidt btrfs_item_key_to_cpu(leaf, &key, slot); 7888da6d581SJan Schmidt 7898da6d581SJan Schmidt if (key.objectid != bytenr) 7908da6d581SJan Schmidt break; 7918da6d581SJan Schmidt if (key.type < BTRFS_TREE_BLOCK_REF_KEY) 7928da6d581SJan Schmidt continue; 7938da6d581SJan Schmidt if (key.type > BTRFS_SHARED_DATA_REF_KEY) 7948da6d581SJan Schmidt break; 7958da6d581SJan Schmidt 7968da6d581SJan Schmidt switch (key.type) { 7978da6d581SJan Schmidt case BTRFS_SHARED_BLOCK_REF_KEY: 798d5c88b73SJan Schmidt ret = __add_prelim_ref(prefs, 0, NULL, 7998da6d581SJan Schmidt info_level + 1, key.offset, 800742916b8SWang Shilong bytenr, 1, GFP_NOFS); 8018da6d581SJan Schmidt break; 8028da6d581SJan Schmidt case BTRFS_SHARED_DATA_REF_KEY: { 8038da6d581SJan Schmidt struct btrfs_shared_data_ref *sdref; 8048da6d581SJan Schmidt int count; 8058da6d581SJan Schmidt 8068da6d581SJan Schmidt sdref = btrfs_item_ptr(leaf, slot, 8078da6d581SJan Schmidt struct btrfs_shared_data_ref); 8088da6d581SJan Schmidt count = btrfs_shared_data_ref_count(leaf, sdref); 8098da6d581SJan Schmidt ret = __add_prelim_ref(prefs, 0, NULL, 0, key.offset, 810742916b8SWang Shilong bytenr, count, GFP_NOFS); 8118da6d581SJan Schmidt break; 8128da6d581SJan Schmidt } 8138da6d581SJan Schmidt case BTRFS_TREE_BLOCK_REF_KEY: 814d5c88b73SJan Schmidt ret = __add_prelim_ref(prefs, key.offset, NULL, 815d5c88b73SJan Schmidt info_level + 1, 0, 816742916b8SWang Shilong bytenr, 1, GFP_NOFS); 8178da6d581SJan Schmidt break; 8188da6d581SJan Schmidt case BTRFS_EXTENT_DATA_REF_KEY: { 8198da6d581SJan Schmidt struct btrfs_extent_data_ref *dref; 8208da6d581SJan Schmidt int count; 8218da6d581SJan Schmidt u64 root; 8228da6d581SJan Schmidt 8238da6d581SJan Schmidt dref = btrfs_item_ptr(leaf, slot, 8248da6d581SJan Schmidt struct btrfs_extent_data_ref); 8258da6d581SJan Schmidt count = btrfs_extent_data_ref_count(leaf, dref); 8268da6d581SJan Schmidt key.objectid = btrfs_extent_data_ref_objectid(leaf, 8278da6d581SJan Schmidt dref); 8288da6d581SJan Schmidt key.type = BTRFS_EXTENT_DATA_KEY; 8298da6d581SJan Schmidt key.offset = btrfs_extent_data_ref_offset(leaf, dref); 8308da6d581SJan Schmidt root = btrfs_extent_data_ref_root(leaf, dref); 8318da6d581SJan Schmidt ret = __add_prelim_ref(prefs, root, &key, 0, 0, 832742916b8SWang Shilong bytenr, count, GFP_NOFS); 8338da6d581SJan Schmidt break; 8348da6d581SJan Schmidt } 8358da6d581SJan Schmidt default: 8368da6d581SJan Schmidt WARN_ON(1); 8378da6d581SJan Schmidt } 8381149ab6bSWang Shilong if (ret) 8391149ab6bSWang Shilong return ret; 8401149ab6bSWang Shilong 8418da6d581SJan Schmidt } 8428da6d581SJan Schmidt 8438da6d581SJan Schmidt return ret; 8448da6d581SJan Schmidt } 8458da6d581SJan Schmidt 8468da6d581SJan Schmidt /* 8478da6d581SJan Schmidt * this adds all existing backrefs (inline backrefs, backrefs and delayed 8488da6d581SJan Schmidt * refs) for the given bytenr to the refs list, merges duplicates and resolves 8498da6d581SJan Schmidt * indirect refs to their parent bytenr. 8508da6d581SJan Schmidt * When roots are found, they're added to the roots list 8518da6d581SJan Schmidt * 8528da6d581SJan Schmidt * FIXME some caching might speed things up 8538da6d581SJan Schmidt */ 8548da6d581SJan Schmidt static int find_parent_nodes(struct btrfs_trans_handle *trans, 8558da6d581SJan Schmidt struct btrfs_fs_info *fs_info, u64 bytenr, 856097b8a7cSJan Schmidt u64 time_seq, struct ulist *refs, 857097b8a7cSJan Schmidt struct ulist *roots, const u64 *extent_item_pos) 8588da6d581SJan Schmidt { 8598da6d581SJan Schmidt struct btrfs_key key; 8608da6d581SJan Schmidt struct btrfs_path *path; 8618da6d581SJan Schmidt struct btrfs_delayed_ref_root *delayed_refs = NULL; 862d3b01064SLi Zefan struct btrfs_delayed_ref_head *head; 8638da6d581SJan Schmidt int info_level = 0; 8648da6d581SJan Schmidt int ret; 8658da6d581SJan Schmidt struct list_head prefs_delayed; 8668da6d581SJan Schmidt struct list_head prefs; 8678da6d581SJan Schmidt struct __prelim_ref *ref; 868f05c4746SWang Shilong struct extent_inode_elem *eie = NULL; 86944853868SJosef Bacik u64 total_refs = 0; 8708da6d581SJan Schmidt 8718da6d581SJan Schmidt INIT_LIST_HEAD(&prefs); 8728da6d581SJan Schmidt INIT_LIST_HEAD(&prefs_delayed); 8738da6d581SJan Schmidt 8748da6d581SJan Schmidt key.objectid = bytenr; 8758da6d581SJan Schmidt key.offset = (u64)-1; 876261c84b6SJosef Bacik if (btrfs_fs_incompat(fs_info, SKINNY_METADATA)) 877261c84b6SJosef Bacik key.type = BTRFS_METADATA_ITEM_KEY; 878261c84b6SJosef Bacik else 879261c84b6SJosef Bacik key.type = BTRFS_EXTENT_ITEM_KEY; 8808da6d581SJan Schmidt 8818da6d581SJan Schmidt path = btrfs_alloc_path(); 8828da6d581SJan Schmidt if (!path) 8838da6d581SJan Schmidt return -ENOMEM; 884e84752d4SWang Shilong if (!trans) { 885da61d31aSJosef Bacik path->search_commit_root = 1; 886e84752d4SWang Shilong path->skip_locking = 1; 887e84752d4SWang Shilong } 8888da6d581SJan Schmidt 8898da6d581SJan Schmidt /* 8908da6d581SJan Schmidt * grab both a lock on the path and a lock on the delayed ref head. 8918da6d581SJan Schmidt * We need both to get a consistent picture of how the refs look 8928da6d581SJan Schmidt * at a specified point in time 8938da6d581SJan Schmidt */ 8948da6d581SJan Schmidt again: 895d3b01064SLi Zefan head = NULL; 896d3b01064SLi Zefan 8978da6d581SJan Schmidt ret = btrfs_search_slot(trans, fs_info->extent_root, &key, path, 0, 0); 8988da6d581SJan Schmidt if (ret < 0) 8998da6d581SJan Schmidt goto out; 9008da6d581SJan Schmidt BUG_ON(ret == 0); 9018da6d581SJan Schmidt 902faa2dbf0SJosef Bacik #ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS 903faa2dbf0SJosef Bacik if (trans && likely(trans->type != __TRANS_DUMMY)) { 904faa2dbf0SJosef Bacik #else 905da61d31aSJosef Bacik if (trans) { 906faa2dbf0SJosef Bacik #endif 9078da6d581SJan Schmidt /* 9087a3ae2f8SJan Schmidt * look if there are updates for this ref queued and lock the 9097a3ae2f8SJan Schmidt * head 9108da6d581SJan Schmidt */ 9118da6d581SJan Schmidt delayed_refs = &trans->transaction->delayed_refs; 9128da6d581SJan Schmidt spin_lock(&delayed_refs->lock); 9138da6d581SJan Schmidt head = btrfs_find_delayed_ref_head(trans, bytenr); 9148da6d581SJan Schmidt if (head) { 9158da6d581SJan Schmidt if (!mutex_trylock(&head->mutex)) { 9168da6d581SJan Schmidt atomic_inc(&head->node.refs); 9178da6d581SJan Schmidt spin_unlock(&delayed_refs->lock); 9188da6d581SJan Schmidt 9198da6d581SJan Schmidt btrfs_release_path(path); 9208da6d581SJan Schmidt 9218da6d581SJan Schmidt /* 9228da6d581SJan Schmidt * Mutex was contended, block until it's 9238da6d581SJan Schmidt * released and try again 9248da6d581SJan Schmidt */ 9258da6d581SJan Schmidt mutex_lock(&head->mutex); 9268da6d581SJan Schmidt mutex_unlock(&head->mutex); 9278da6d581SJan Schmidt btrfs_put_delayed_ref(&head->node); 9288da6d581SJan Schmidt goto again; 9298da6d581SJan Schmidt } 930d7df2c79SJosef Bacik spin_unlock(&delayed_refs->lock); 931097b8a7cSJan Schmidt ret = __add_delayed_refs(head, time_seq, 93244853868SJosef Bacik &prefs_delayed, &total_refs); 933155725c9SJan Schmidt mutex_unlock(&head->mutex); 934d7df2c79SJosef Bacik if (ret) 9358da6d581SJan Schmidt goto out; 936d7df2c79SJosef Bacik } else { 9378da6d581SJan Schmidt spin_unlock(&delayed_refs->lock); 9387a3ae2f8SJan Schmidt } 939d7df2c79SJosef Bacik } 9408da6d581SJan Schmidt 9418da6d581SJan Schmidt if (path->slots[0]) { 9428da6d581SJan Schmidt struct extent_buffer *leaf; 9438da6d581SJan Schmidt int slot; 9448da6d581SJan Schmidt 945dadcaf78SJan Schmidt path->slots[0]--; 9468da6d581SJan Schmidt leaf = path->nodes[0]; 947dadcaf78SJan Schmidt slot = path->slots[0]; 9488da6d581SJan Schmidt btrfs_item_key_to_cpu(leaf, &key, slot); 9498da6d581SJan Schmidt if (key.objectid == bytenr && 950261c84b6SJosef Bacik (key.type == BTRFS_EXTENT_ITEM_KEY || 951261c84b6SJosef Bacik key.type == BTRFS_METADATA_ITEM_KEY)) { 9528da6d581SJan Schmidt ret = __add_inline_refs(fs_info, path, bytenr, 95344853868SJosef Bacik &info_level, &prefs, 95444853868SJosef Bacik &total_refs); 9558da6d581SJan Schmidt if (ret) 9568da6d581SJan Schmidt goto out; 957d5c88b73SJan Schmidt ret = __add_keyed_refs(fs_info, path, bytenr, 9588da6d581SJan Schmidt info_level, &prefs); 9598da6d581SJan Schmidt if (ret) 9608da6d581SJan Schmidt goto out; 9618da6d581SJan Schmidt } 9628da6d581SJan Schmidt } 9638da6d581SJan Schmidt btrfs_release_path(path); 9648da6d581SJan Schmidt 9658da6d581SJan Schmidt list_splice_init(&prefs_delayed, &prefs); 9668da6d581SJan Schmidt 967d5c88b73SJan Schmidt ret = __add_missing_keys(fs_info, &prefs); 968d5c88b73SJan Schmidt if (ret) 969d5c88b73SJan Schmidt goto out; 970d5c88b73SJan Schmidt 971692206b1SWang Shilong __merge_refs(&prefs, 1); 9728da6d581SJan Schmidt 973da61d31aSJosef Bacik ret = __resolve_indirect_refs(fs_info, path, time_seq, &prefs, 97444853868SJosef Bacik extent_item_pos, total_refs); 9758da6d581SJan Schmidt if (ret) 9768da6d581SJan Schmidt goto out; 9778da6d581SJan Schmidt 978692206b1SWang Shilong __merge_refs(&prefs, 2); 9798da6d581SJan Schmidt 9808da6d581SJan Schmidt while (!list_empty(&prefs)) { 9818da6d581SJan Schmidt ref = list_first_entry(&prefs, struct __prelim_ref, list); 9826c1500f2SJulia Lawall WARN_ON(ref->count < 0); 98398cfee21SWang Shilong if (roots && ref->count && ref->root_id && ref->parent == 0) { 9848da6d581SJan Schmidt /* no parent == root of tree */ 9858da6d581SJan Schmidt ret = ulist_add(roots, ref->root_id, 0, GFP_NOFS); 986f1723939SWang Shilong if (ret < 0) 987f1723939SWang Shilong goto out; 9888da6d581SJan Schmidt } 9898da6d581SJan Schmidt if (ref->count && ref->parent) { 9908a56457fSJosef Bacik if (extent_item_pos && !ref->inode_list && 9918a56457fSJosef Bacik ref->level == 0) { 992976b1908SJan Schmidt u32 bsz; 993976b1908SJan Schmidt struct extent_buffer *eb; 994*707e8a07SDavid Sterba 995*707e8a07SDavid Sterba bsz = fs_info->extent_root->nodesize; 996976b1908SJan Schmidt eb = read_tree_block(fs_info->extent_root, 997976b1908SJan Schmidt ref->parent, bsz, 0); 998416bc658SJosef Bacik if (!eb || !extent_buffer_uptodate(eb)) { 999416bc658SJosef Bacik free_extent_buffer(eb); 1000c16c2e2eSWang Shilong ret = -EIO; 1001c16c2e2eSWang Shilong goto out; 1002416bc658SJosef Bacik } 10036f7ff6d7SFilipe Manana btrfs_tree_read_lock(eb); 10046f7ff6d7SFilipe Manana btrfs_set_lock_blocking_rw(eb, BTRFS_READ_LOCK); 1005976b1908SJan Schmidt ret = find_extent_in_eb(eb, bytenr, 1006976b1908SJan Schmidt *extent_item_pos, &eie); 10076f7ff6d7SFilipe Manana btrfs_tree_read_unlock_blocking(eb); 1008976b1908SJan Schmidt free_extent_buffer(eb); 1009f5929cd8SFilipe David Borba Manana if (ret < 0) 1010f5929cd8SFilipe David Borba Manana goto out; 1011f5929cd8SFilipe David Borba Manana ref->inode_list = eie; 1012976b1908SJan Schmidt } 10134eb1f66dSTakashi Iwai ret = ulist_add_merge_ptr(refs, ref->parent, 10144eb1f66dSTakashi Iwai ref->inode_list, 10154eb1f66dSTakashi Iwai (void **)&eie, GFP_NOFS); 1016f1723939SWang Shilong if (ret < 0) 1017f1723939SWang Shilong goto out; 10183301958bSJan Schmidt if (!ret && extent_item_pos) { 10193301958bSJan Schmidt /* 10203301958bSJan Schmidt * we've recorded that parent, so we must extend 10213301958bSJan Schmidt * its inode list here 10223301958bSJan Schmidt */ 10233301958bSJan Schmidt BUG_ON(!eie); 10243301958bSJan Schmidt while (eie->next) 10253301958bSJan Schmidt eie = eie->next; 10263301958bSJan Schmidt eie->next = ref->inode_list; 10273301958bSJan Schmidt } 1028f05c4746SWang Shilong eie = NULL; 10298da6d581SJan Schmidt } 1030a4fdb61eSWang Shilong list_del(&ref->list); 1031b9e9a6cbSWang Shilong kmem_cache_free(btrfs_prelim_ref_cache, ref); 10328da6d581SJan Schmidt } 10338da6d581SJan Schmidt 10348da6d581SJan Schmidt out: 10358da6d581SJan Schmidt btrfs_free_path(path); 10368da6d581SJan Schmidt while (!list_empty(&prefs)) { 10378da6d581SJan Schmidt ref = list_first_entry(&prefs, struct __prelim_ref, list); 10388da6d581SJan Schmidt list_del(&ref->list); 1039b9e9a6cbSWang Shilong kmem_cache_free(btrfs_prelim_ref_cache, ref); 10408da6d581SJan Schmidt } 10418da6d581SJan Schmidt while (!list_empty(&prefs_delayed)) { 10428da6d581SJan Schmidt ref = list_first_entry(&prefs_delayed, struct __prelim_ref, 10438da6d581SJan Schmidt list); 10448da6d581SJan Schmidt list_del(&ref->list); 1045b9e9a6cbSWang Shilong kmem_cache_free(btrfs_prelim_ref_cache, ref); 10468da6d581SJan Schmidt } 1047f05c4746SWang Shilong if (ret < 0) 1048f05c4746SWang Shilong free_inode_elem_list(eie); 10498da6d581SJan Schmidt return ret; 10508da6d581SJan Schmidt } 10518da6d581SJan Schmidt 1052976b1908SJan Schmidt static void free_leaf_list(struct ulist *blocks) 1053976b1908SJan Schmidt { 1054976b1908SJan Schmidt struct ulist_node *node = NULL; 1055976b1908SJan Schmidt struct extent_inode_elem *eie; 1056976b1908SJan Schmidt struct ulist_iterator uiter; 1057976b1908SJan Schmidt 1058976b1908SJan Schmidt ULIST_ITER_INIT(&uiter); 1059976b1908SJan Schmidt while ((node = ulist_next(blocks, &uiter))) { 1060976b1908SJan Schmidt if (!node->aux) 1061976b1908SJan Schmidt continue; 1062995e01b7SJan Schmidt eie = (struct extent_inode_elem *)(uintptr_t)node->aux; 1063f05c4746SWang Shilong free_inode_elem_list(eie); 1064976b1908SJan Schmidt node->aux = 0; 1065976b1908SJan Schmidt } 1066976b1908SJan Schmidt 1067976b1908SJan Schmidt ulist_free(blocks); 1068976b1908SJan Schmidt } 1069976b1908SJan Schmidt 10708da6d581SJan Schmidt /* 10718da6d581SJan Schmidt * Finds all leafs with a reference to the specified combination of bytenr and 10728da6d581SJan Schmidt * offset. key_list_head will point to a list of corresponding keys (caller must 10738da6d581SJan Schmidt * free each list element). The leafs will be stored in the leafs ulist, which 10748da6d581SJan Schmidt * must be freed with ulist_free. 10758da6d581SJan Schmidt * 10768da6d581SJan Schmidt * returns 0 on success, <0 on error 10778da6d581SJan Schmidt */ 10788da6d581SJan Schmidt static int btrfs_find_all_leafs(struct btrfs_trans_handle *trans, 10798da6d581SJan Schmidt struct btrfs_fs_info *fs_info, u64 bytenr, 1080097b8a7cSJan Schmidt u64 time_seq, struct ulist **leafs, 1081976b1908SJan Schmidt const u64 *extent_item_pos) 10828da6d581SJan Schmidt { 10838da6d581SJan Schmidt int ret; 10848da6d581SJan Schmidt 10858da6d581SJan Schmidt *leafs = ulist_alloc(GFP_NOFS); 108698cfee21SWang Shilong if (!*leafs) 10878da6d581SJan Schmidt return -ENOMEM; 10888da6d581SJan Schmidt 1089097b8a7cSJan Schmidt ret = find_parent_nodes(trans, fs_info, bytenr, 109098cfee21SWang Shilong time_seq, *leafs, NULL, extent_item_pos); 10918da6d581SJan Schmidt if (ret < 0 && ret != -ENOENT) { 1092976b1908SJan Schmidt free_leaf_list(*leafs); 10938da6d581SJan Schmidt return ret; 10948da6d581SJan Schmidt } 10958da6d581SJan Schmidt 10968da6d581SJan Schmidt return 0; 10978da6d581SJan Schmidt } 10988da6d581SJan Schmidt 10998da6d581SJan Schmidt /* 11008da6d581SJan Schmidt * walk all backrefs for a given extent to find all roots that reference this 11018da6d581SJan Schmidt * extent. Walking a backref means finding all extents that reference this 11028da6d581SJan Schmidt * extent and in turn walk the backrefs of those, too. Naturally this is a 11038da6d581SJan Schmidt * recursive process, but here it is implemented in an iterative fashion: We 11048da6d581SJan Schmidt * find all referencing extents for the extent in question and put them on a 11058da6d581SJan Schmidt * list. In turn, we find all referencing extents for those, further appending 11068da6d581SJan Schmidt * to the list. The way we iterate the list allows adding more elements after 11078da6d581SJan Schmidt * the current while iterating. The process stops when we reach the end of the 11088da6d581SJan Schmidt * list. Found roots are added to the roots list. 11098da6d581SJan Schmidt * 11108da6d581SJan Schmidt * returns 0 on success, < 0 on error. 11118da6d581SJan Schmidt */ 11129e351cc8SJosef Bacik static int __btrfs_find_all_roots(struct btrfs_trans_handle *trans, 11138da6d581SJan Schmidt struct btrfs_fs_info *fs_info, u64 bytenr, 1114097b8a7cSJan Schmidt u64 time_seq, struct ulist **roots) 11158da6d581SJan Schmidt { 11168da6d581SJan Schmidt struct ulist *tmp; 11178da6d581SJan Schmidt struct ulist_node *node = NULL; 1118cd1b413cSJan Schmidt struct ulist_iterator uiter; 11198da6d581SJan Schmidt int ret; 11208da6d581SJan Schmidt 11218da6d581SJan Schmidt tmp = ulist_alloc(GFP_NOFS); 11228da6d581SJan Schmidt if (!tmp) 11238da6d581SJan Schmidt return -ENOMEM; 11248da6d581SJan Schmidt *roots = ulist_alloc(GFP_NOFS); 11258da6d581SJan Schmidt if (!*roots) { 11268da6d581SJan Schmidt ulist_free(tmp); 11278da6d581SJan Schmidt return -ENOMEM; 11288da6d581SJan Schmidt } 11298da6d581SJan Schmidt 1130cd1b413cSJan Schmidt ULIST_ITER_INIT(&uiter); 11318da6d581SJan Schmidt while (1) { 1132097b8a7cSJan Schmidt ret = find_parent_nodes(trans, fs_info, bytenr, 11338445f61cSJan Schmidt time_seq, tmp, *roots, NULL); 11348da6d581SJan Schmidt if (ret < 0 && ret != -ENOENT) { 11358da6d581SJan Schmidt ulist_free(tmp); 11368da6d581SJan Schmidt ulist_free(*roots); 11378da6d581SJan Schmidt return ret; 11388da6d581SJan Schmidt } 1139cd1b413cSJan Schmidt node = ulist_next(tmp, &uiter); 11408da6d581SJan Schmidt if (!node) 11418da6d581SJan Schmidt break; 11428da6d581SJan Schmidt bytenr = node->val; 1143bca1a290SWang Shilong cond_resched(); 11448da6d581SJan Schmidt } 11458da6d581SJan Schmidt 11468da6d581SJan Schmidt ulist_free(tmp); 11478da6d581SJan Schmidt return 0; 11488da6d581SJan Schmidt } 11498da6d581SJan Schmidt 11509e351cc8SJosef Bacik int btrfs_find_all_roots(struct btrfs_trans_handle *trans, 11519e351cc8SJosef Bacik struct btrfs_fs_info *fs_info, u64 bytenr, 11529e351cc8SJosef Bacik u64 time_seq, struct ulist **roots) 11539e351cc8SJosef Bacik { 11549e351cc8SJosef Bacik int ret; 11559e351cc8SJosef Bacik 11569e351cc8SJosef Bacik if (!trans) 11579e351cc8SJosef Bacik down_read(&fs_info->commit_root_sem); 11589e351cc8SJosef Bacik ret = __btrfs_find_all_roots(trans, fs_info, bytenr, time_seq, roots); 11599e351cc8SJosef Bacik if (!trans) 11609e351cc8SJosef Bacik up_read(&fs_info->commit_root_sem); 11619e351cc8SJosef Bacik return ret; 11629e351cc8SJosef Bacik } 11639e351cc8SJosef Bacik 1164a542ad1bSJan Schmidt /* 1165a542ad1bSJan Schmidt * this makes the path point to (inum INODE_ITEM ioff) 1166a542ad1bSJan Schmidt */ 1167a542ad1bSJan Schmidt int inode_item_info(u64 inum, u64 ioff, struct btrfs_root *fs_root, 1168a542ad1bSJan Schmidt struct btrfs_path *path) 1169a542ad1bSJan Schmidt { 1170a542ad1bSJan Schmidt struct btrfs_key key; 1171e33d5c3dSKelley Nielsen return btrfs_find_item(fs_root, path, inum, ioff, 1172e33d5c3dSKelley Nielsen BTRFS_INODE_ITEM_KEY, &key); 1173a542ad1bSJan Schmidt } 1174a542ad1bSJan Schmidt 1175a542ad1bSJan Schmidt static int inode_ref_info(u64 inum, u64 ioff, struct btrfs_root *fs_root, 1176a542ad1bSJan Schmidt struct btrfs_path *path, 1177a542ad1bSJan Schmidt struct btrfs_key *found_key) 1178a542ad1bSJan Schmidt { 1179e33d5c3dSKelley Nielsen return btrfs_find_item(fs_root, path, inum, ioff, 1180e33d5c3dSKelley Nielsen BTRFS_INODE_REF_KEY, found_key); 1181a542ad1bSJan Schmidt } 1182a542ad1bSJan Schmidt 1183f186373fSMark Fasheh int btrfs_find_one_extref(struct btrfs_root *root, u64 inode_objectid, 1184f186373fSMark Fasheh u64 start_off, struct btrfs_path *path, 1185f186373fSMark Fasheh struct btrfs_inode_extref **ret_extref, 1186f186373fSMark Fasheh u64 *found_off) 1187f186373fSMark Fasheh { 1188f186373fSMark Fasheh int ret, slot; 1189f186373fSMark Fasheh struct btrfs_key key; 1190f186373fSMark Fasheh struct btrfs_key found_key; 1191f186373fSMark Fasheh struct btrfs_inode_extref *extref; 1192f186373fSMark Fasheh struct extent_buffer *leaf; 1193f186373fSMark Fasheh unsigned long ptr; 1194f186373fSMark Fasheh 1195f186373fSMark Fasheh key.objectid = inode_objectid; 1196962a298fSDavid Sterba key.type = BTRFS_INODE_EXTREF_KEY; 1197f186373fSMark Fasheh key.offset = start_off; 1198f186373fSMark Fasheh 1199f186373fSMark Fasheh ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); 1200f186373fSMark Fasheh if (ret < 0) 1201f186373fSMark Fasheh return ret; 1202f186373fSMark Fasheh 1203f186373fSMark Fasheh while (1) { 1204f186373fSMark Fasheh leaf = path->nodes[0]; 1205f186373fSMark Fasheh slot = path->slots[0]; 1206f186373fSMark Fasheh if (slot >= btrfs_header_nritems(leaf)) { 1207f186373fSMark Fasheh /* 1208f186373fSMark Fasheh * If the item at offset is not found, 1209f186373fSMark Fasheh * btrfs_search_slot will point us to the slot 1210f186373fSMark Fasheh * where it should be inserted. In our case 1211f186373fSMark Fasheh * that will be the slot directly before the 1212f186373fSMark Fasheh * next INODE_REF_KEY_V2 item. In the case 1213f186373fSMark Fasheh * that we're pointing to the last slot in a 1214f186373fSMark Fasheh * leaf, we must move one leaf over. 1215f186373fSMark Fasheh */ 1216f186373fSMark Fasheh ret = btrfs_next_leaf(root, path); 1217f186373fSMark Fasheh if (ret) { 1218f186373fSMark Fasheh if (ret >= 1) 1219f186373fSMark Fasheh ret = -ENOENT; 1220f186373fSMark Fasheh break; 1221f186373fSMark Fasheh } 1222f186373fSMark Fasheh continue; 1223f186373fSMark Fasheh } 1224f186373fSMark Fasheh 1225f186373fSMark Fasheh btrfs_item_key_to_cpu(leaf, &found_key, slot); 1226f186373fSMark Fasheh 1227f186373fSMark Fasheh /* 1228f186373fSMark Fasheh * Check that we're still looking at an extended ref key for 1229f186373fSMark Fasheh * this particular objectid. If we have different 1230f186373fSMark Fasheh * objectid or type then there are no more to be found 1231f186373fSMark Fasheh * in the tree and we can exit. 1232f186373fSMark Fasheh */ 1233f186373fSMark Fasheh ret = -ENOENT; 1234f186373fSMark Fasheh if (found_key.objectid != inode_objectid) 1235f186373fSMark Fasheh break; 1236962a298fSDavid Sterba if (found_key.type != BTRFS_INODE_EXTREF_KEY) 1237f186373fSMark Fasheh break; 1238f186373fSMark Fasheh 1239f186373fSMark Fasheh ret = 0; 1240f186373fSMark Fasheh ptr = btrfs_item_ptr_offset(leaf, path->slots[0]); 1241f186373fSMark Fasheh extref = (struct btrfs_inode_extref *)ptr; 1242f186373fSMark Fasheh *ret_extref = extref; 1243f186373fSMark Fasheh if (found_off) 1244f186373fSMark Fasheh *found_off = found_key.offset; 1245f186373fSMark Fasheh break; 1246f186373fSMark Fasheh } 1247f186373fSMark Fasheh 1248f186373fSMark Fasheh return ret; 1249f186373fSMark Fasheh } 1250f186373fSMark Fasheh 125148a3b636SEric Sandeen /* 125248a3b636SEric Sandeen * this iterates to turn a name (from iref/extref) into a full filesystem path. 125348a3b636SEric Sandeen * Elements of the path are separated by '/' and the path is guaranteed to be 125448a3b636SEric Sandeen * 0-terminated. the path is only given within the current file system. 125548a3b636SEric Sandeen * Therefore, it never starts with a '/'. the caller is responsible to provide 125648a3b636SEric Sandeen * "size" bytes in "dest". the dest buffer will be filled backwards. finally, 125748a3b636SEric Sandeen * the start point of the resulting string is returned. this pointer is within 125848a3b636SEric Sandeen * dest, normally. 125948a3b636SEric Sandeen * in case the path buffer would overflow, the pointer is decremented further 126048a3b636SEric Sandeen * as if output was written to the buffer, though no more output is actually 126148a3b636SEric Sandeen * generated. that way, the caller can determine how much space would be 126248a3b636SEric Sandeen * required for the path to fit into the buffer. in that case, the returned 126348a3b636SEric Sandeen * value will be smaller than dest. callers must check this! 126448a3b636SEric Sandeen */ 126596b5bd77SJan Schmidt char *btrfs_ref_to_path(struct btrfs_root *fs_root, struct btrfs_path *path, 1266d24bec3aSMark Fasheh u32 name_len, unsigned long name_off, 1267a542ad1bSJan Schmidt struct extent_buffer *eb_in, u64 parent, 1268a542ad1bSJan Schmidt char *dest, u32 size) 1269a542ad1bSJan Schmidt { 1270a542ad1bSJan Schmidt int slot; 1271a542ad1bSJan Schmidt u64 next_inum; 1272a542ad1bSJan Schmidt int ret; 1273661bec6bSGabriel de Perthuis s64 bytes_left = ((s64)size) - 1; 1274a542ad1bSJan Schmidt struct extent_buffer *eb = eb_in; 1275a542ad1bSJan Schmidt struct btrfs_key found_key; 1276b916a59aSJan Schmidt int leave_spinning = path->leave_spinning; 1277d24bec3aSMark Fasheh struct btrfs_inode_ref *iref; 1278a542ad1bSJan Schmidt 1279a542ad1bSJan Schmidt if (bytes_left >= 0) 1280a542ad1bSJan Schmidt dest[bytes_left] = '\0'; 1281a542ad1bSJan Schmidt 1282b916a59aSJan Schmidt path->leave_spinning = 1; 1283a542ad1bSJan Schmidt while (1) { 1284d24bec3aSMark Fasheh bytes_left -= name_len; 1285a542ad1bSJan Schmidt if (bytes_left >= 0) 1286a542ad1bSJan Schmidt read_extent_buffer(eb, dest + bytes_left, 1287d24bec3aSMark Fasheh name_off, name_len); 1288b916a59aSJan Schmidt if (eb != eb_in) { 1289b916a59aSJan Schmidt btrfs_tree_read_unlock_blocking(eb); 1290a542ad1bSJan Schmidt free_extent_buffer(eb); 1291b916a59aSJan Schmidt } 1292a542ad1bSJan Schmidt ret = inode_ref_info(parent, 0, fs_root, path, &found_key); 12938f24b496SJan Schmidt if (ret > 0) 12948f24b496SJan Schmidt ret = -ENOENT; 1295a542ad1bSJan Schmidt if (ret) 1296a542ad1bSJan Schmidt break; 1297d24bec3aSMark Fasheh 1298a542ad1bSJan Schmidt next_inum = found_key.offset; 1299a542ad1bSJan Schmidt 1300a542ad1bSJan Schmidt /* regular exit ahead */ 1301a542ad1bSJan Schmidt if (parent == next_inum) 1302a542ad1bSJan Schmidt break; 1303a542ad1bSJan Schmidt 1304a542ad1bSJan Schmidt slot = path->slots[0]; 1305a542ad1bSJan Schmidt eb = path->nodes[0]; 1306a542ad1bSJan Schmidt /* make sure we can use eb after releasing the path */ 1307b916a59aSJan Schmidt if (eb != eb_in) { 1308a542ad1bSJan Schmidt atomic_inc(&eb->refs); 1309b916a59aSJan Schmidt btrfs_tree_read_lock(eb); 1310b916a59aSJan Schmidt btrfs_set_lock_blocking_rw(eb, BTRFS_READ_LOCK); 1311b916a59aSJan Schmidt } 1312a542ad1bSJan Schmidt btrfs_release_path(path); 1313a542ad1bSJan Schmidt iref = btrfs_item_ptr(eb, slot, struct btrfs_inode_ref); 1314d24bec3aSMark Fasheh 1315d24bec3aSMark Fasheh name_len = btrfs_inode_ref_name_len(eb, iref); 1316d24bec3aSMark Fasheh name_off = (unsigned long)(iref + 1); 1317d24bec3aSMark Fasheh 1318a542ad1bSJan Schmidt parent = next_inum; 1319a542ad1bSJan Schmidt --bytes_left; 1320a542ad1bSJan Schmidt if (bytes_left >= 0) 1321a542ad1bSJan Schmidt dest[bytes_left] = '/'; 1322a542ad1bSJan Schmidt } 1323a542ad1bSJan Schmidt 1324a542ad1bSJan Schmidt btrfs_release_path(path); 1325b916a59aSJan Schmidt path->leave_spinning = leave_spinning; 1326a542ad1bSJan Schmidt 1327a542ad1bSJan Schmidt if (ret) 1328a542ad1bSJan Schmidt return ERR_PTR(ret); 1329a542ad1bSJan Schmidt 1330a542ad1bSJan Schmidt return dest + bytes_left; 1331a542ad1bSJan Schmidt } 1332a542ad1bSJan Schmidt 1333a542ad1bSJan Schmidt /* 1334a542ad1bSJan Schmidt * this makes the path point to (logical EXTENT_ITEM *) 1335a542ad1bSJan Schmidt * returns BTRFS_EXTENT_FLAG_DATA for data, BTRFS_EXTENT_FLAG_TREE_BLOCK for 1336a542ad1bSJan Schmidt * tree blocks and <0 on error. 1337a542ad1bSJan Schmidt */ 1338a542ad1bSJan Schmidt int extent_from_logical(struct btrfs_fs_info *fs_info, u64 logical, 133969917e43SLiu Bo struct btrfs_path *path, struct btrfs_key *found_key, 134069917e43SLiu Bo u64 *flags_ret) 1341a542ad1bSJan Schmidt { 1342a542ad1bSJan Schmidt int ret; 1343a542ad1bSJan Schmidt u64 flags; 1344261c84b6SJosef Bacik u64 size = 0; 1345a542ad1bSJan Schmidt u32 item_size; 1346a542ad1bSJan Schmidt struct extent_buffer *eb; 1347a542ad1bSJan Schmidt struct btrfs_extent_item *ei; 1348a542ad1bSJan Schmidt struct btrfs_key key; 1349a542ad1bSJan Schmidt 1350261c84b6SJosef Bacik if (btrfs_fs_incompat(fs_info, SKINNY_METADATA)) 1351261c84b6SJosef Bacik key.type = BTRFS_METADATA_ITEM_KEY; 1352261c84b6SJosef Bacik else 1353a542ad1bSJan Schmidt key.type = BTRFS_EXTENT_ITEM_KEY; 1354a542ad1bSJan Schmidt key.objectid = logical; 1355a542ad1bSJan Schmidt key.offset = (u64)-1; 1356a542ad1bSJan Schmidt 1357a542ad1bSJan Schmidt ret = btrfs_search_slot(NULL, fs_info->extent_root, &key, path, 0, 0); 1358a542ad1bSJan Schmidt if (ret < 0) 1359a542ad1bSJan Schmidt return ret; 1360a542ad1bSJan Schmidt 1361850a8cdfSWang Shilong ret = btrfs_previous_extent_item(fs_info->extent_root, path, 0); 1362850a8cdfSWang Shilong if (ret) { 1363850a8cdfSWang Shilong if (ret > 0) 1364580f0a67SJosef Bacik ret = -ENOENT; 1365580f0a67SJosef Bacik return ret; 1366580f0a67SJosef Bacik } 1367850a8cdfSWang Shilong btrfs_item_key_to_cpu(path->nodes[0], found_key, path->slots[0]); 1368261c84b6SJosef Bacik if (found_key->type == BTRFS_METADATA_ITEM_KEY) 1369*707e8a07SDavid Sterba size = fs_info->extent_root->nodesize; 1370261c84b6SJosef Bacik else if (found_key->type == BTRFS_EXTENT_ITEM_KEY) 1371261c84b6SJosef Bacik size = found_key->offset; 1372261c84b6SJosef Bacik 1373580f0a67SJosef Bacik if (found_key->objectid > logical || 1374261c84b6SJosef Bacik found_key->objectid + size <= logical) { 1375c1c9ff7cSGeert Uytterhoeven pr_debug("logical %llu is not within any extent\n", logical); 1376a542ad1bSJan Schmidt return -ENOENT; 13774692cf58SJan Schmidt } 1378a542ad1bSJan Schmidt 1379a542ad1bSJan Schmidt eb = path->nodes[0]; 1380a542ad1bSJan Schmidt item_size = btrfs_item_size_nr(eb, path->slots[0]); 1381a542ad1bSJan Schmidt BUG_ON(item_size < sizeof(*ei)); 1382a542ad1bSJan Schmidt 1383a542ad1bSJan Schmidt ei = btrfs_item_ptr(eb, path->slots[0], struct btrfs_extent_item); 1384a542ad1bSJan Schmidt flags = btrfs_extent_flags(eb, ei); 1385a542ad1bSJan Schmidt 13864692cf58SJan Schmidt pr_debug("logical %llu is at position %llu within the extent (%llu " 13874692cf58SJan Schmidt "EXTENT_ITEM %llu) flags %#llx size %u\n", 1388c1c9ff7cSGeert Uytterhoeven logical, logical - found_key->objectid, found_key->objectid, 1389c1c9ff7cSGeert Uytterhoeven found_key->offset, flags, item_size); 139069917e43SLiu Bo 139169917e43SLiu Bo WARN_ON(!flags_ret); 139269917e43SLiu Bo if (flags_ret) { 1393a542ad1bSJan Schmidt if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK) 139469917e43SLiu Bo *flags_ret = BTRFS_EXTENT_FLAG_TREE_BLOCK; 139569917e43SLiu Bo else if (flags & BTRFS_EXTENT_FLAG_DATA) 139669917e43SLiu Bo *flags_ret = BTRFS_EXTENT_FLAG_DATA; 139769917e43SLiu Bo else 139869917e43SLiu Bo BUG_ON(1); 139969917e43SLiu Bo return 0; 140069917e43SLiu Bo } 1401a542ad1bSJan Schmidt 1402a542ad1bSJan Schmidt return -EIO; 1403a542ad1bSJan Schmidt } 1404a542ad1bSJan Schmidt 1405a542ad1bSJan Schmidt /* 1406a542ad1bSJan Schmidt * helper function to iterate extent inline refs. ptr must point to a 0 value 1407a542ad1bSJan Schmidt * for the first call and may be modified. it is used to track state. 1408a542ad1bSJan Schmidt * if more refs exist, 0 is returned and the next call to 1409a542ad1bSJan Schmidt * __get_extent_inline_ref must pass the modified ptr parameter to get the 1410a542ad1bSJan Schmidt * next ref. after the last ref was processed, 1 is returned. 1411a542ad1bSJan Schmidt * returns <0 on error 1412a542ad1bSJan Schmidt */ 1413a542ad1bSJan Schmidt static int __get_extent_inline_ref(unsigned long *ptr, struct extent_buffer *eb, 14146eda71d0SLiu Bo struct btrfs_key *key, 1415a542ad1bSJan Schmidt struct btrfs_extent_item *ei, u32 item_size, 1416a542ad1bSJan Schmidt struct btrfs_extent_inline_ref **out_eiref, 1417a542ad1bSJan Schmidt int *out_type) 1418a542ad1bSJan Schmidt { 1419a542ad1bSJan Schmidt unsigned long end; 1420a542ad1bSJan Schmidt u64 flags; 1421a542ad1bSJan Schmidt struct btrfs_tree_block_info *info; 1422a542ad1bSJan Schmidt 1423a542ad1bSJan Schmidt if (!*ptr) { 1424a542ad1bSJan Schmidt /* first call */ 1425a542ad1bSJan Schmidt flags = btrfs_extent_flags(eb, ei); 1426a542ad1bSJan Schmidt if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK) { 14276eda71d0SLiu Bo if (key->type == BTRFS_METADATA_ITEM_KEY) { 14286eda71d0SLiu Bo /* a skinny metadata extent */ 14296eda71d0SLiu Bo *out_eiref = 14306eda71d0SLiu Bo (struct btrfs_extent_inline_ref *)(ei + 1); 14316eda71d0SLiu Bo } else { 14326eda71d0SLiu Bo WARN_ON(key->type != BTRFS_EXTENT_ITEM_KEY); 1433a542ad1bSJan Schmidt info = (struct btrfs_tree_block_info *)(ei + 1); 1434a542ad1bSJan Schmidt *out_eiref = 1435a542ad1bSJan Schmidt (struct btrfs_extent_inline_ref *)(info + 1); 14366eda71d0SLiu Bo } 1437a542ad1bSJan Schmidt } else { 1438a542ad1bSJan Schmidt *out_eiref = (struct btrfs_extent_inline_ref *)(ei + 1); 1439a542ad1bSJan Schmidt } 1440a542ad1bSJan Schmidt *ptr = (unsigned long)*out_eiref; 1441cd857dd6SLiu Bo if ((unsigned long)(*ptr) >= (unsigned long)ei + item_size) 1442a542ad1bSJan Schmidt return -ENOENT; 1443a542ad1bSJan Schmidt } 1444a542ad1bSJan Schmidt 1445a542ad1bSJan Schmidt end = (unsigned long)ei + item_size; 14466eda71d0SLiu Bo *out_eiref = (struct btrfs_extent_inline_ref *)(*ptr); 1447a542ad1bSJan Schmidt *out_type = btrfs_extent_inline_ref_type(eb, *out_eiref); 1448a542ad1bSJan Schmidt 1449a542ad1bSJan Schmidt *ptr += btrfs_extent_inline_ref_size(*out_type); 1450a542ad1bSJan Schmidt WARN_ON(*ptr > end); 1451a542ad1bSJan Schmidt if (*ptr == end) 1452a542ad1bSJan Schmidt return 1; /* last */ 1453a542ad1bSJan Schmidt 1454a542ad1bSJan Schmidt return 0; 1455a542ad1bSJan Schmidt } 1456a542ad1bSJan Schmidt 1457a542ad1bSJan Schmidt /* 1458a542ad1bSJan Schmidt * reads the tree block backref for an extent. tree level and root are returned 1459a542ad1bSJan Schmidt * through out_level and out_root. ptr must point to a 0 value for the first 1460a542ad1bSJan Schmidt * call and may be modified (see __get_extent_inline_ref comment). 1461a542ad1bSJan Schmidt * returns 0 if data was provided, 1 if there was no more data to provide or 1462a542ad1bSJan Schmidt * <0 on error. 1463a542ad1bSJan Schmidt */ 1464a542ad1bSJan Schmidt int tree_backref_for_extent(unsigned long *ptr, struct extent_buffer *eb, 14656eda71d0SLiu Bo struct btrfs_key *key, struct btrfs_extent_item *ei, 14666eda71d0SLiu Bo u32 item_size, u64 *out_root, u8 *out_level) 1467a542ad1bSJan Schmidt { 1468a542ad1bSJan Schmidt int ret; 1469a542ad1bSJan Schmidt int type; 1470a542ad1bSJan Schmidt struct btrfs_tree_block_info *info; 1471a542ad1bSJan Schmidt struct btrfs_extent_inline_ref *eiref; 1472a542ad1bSJan Schmidt 1473a542ad1bSJan Schmidt if (*ptr == (unsigned long)-1) 1474a542ad1bSJan Schmidt return 1; 1475a542ad1bSJan Schmidt 1476a542ad1bSJan Schmidt while (1) { 14776eda71d0SLiu Bo ret = __get_extent_inline_ref(ptr, eb, key, ei, item_size, 1478a542ad1bSJan Schmidt &eiref, &type); 1479a542ad1bSJan Schmidt if (ret < 0) 1480a542ad1bSJan Schmidt return ret; 1481a542ad1bSJan Schmidt 1482a542ad1bSJan Schmidt if (type == BTRFS_TREE_BLOCK_REF_KEY || 1483a542ad1bSJan Schmidt type == BTRFS_SHARED_BLOCK_REF_KEY) 1484a542ad1bSJan Schmidt break; 1485a542ad1bSJan Schmidt 1486a542ad1bSJan Schmidt if (ret == 1) 1487a542ad1bSJan Schmidt return 1; 1488a542ad1bSJan Schmidt } 1489a542ad1bSJan Schmidt 1490a542ad1bSJan Schmidt /* we can treat both ref types equally here */ 1491a542ad1bSJan Schmidt info = (struct btrfs_tree_block_info *)(ei + 1); 1492a542ad1bSJan Schmidt *out_root = btrfs_extent_inline_ref_offset(eb, eiref); 1493a542ad1bSJan Schmidt *out_level = btrfs_tree_block_level(eb, info); 1494a542ad1bSJan Schmidt 1495a542ad1bSJan Schmidt if (ret == 1) 1496a542ad1bSJan Schmidt *ptr = (unsigned long)-1; 1497a542ad1bSJan Schmidt 1498a542ad1bSJan Schmidt return 0; 1499a542ad1bSJan Schmidt } 1500a542ad1bSJan Schmidt 1501976b1908SJan Schmidt static int iterate_leaf_refs(struct extent_inode_elem *inode_list, 1502976b1908SJan Schmidt u64 root, u64 extent_item_objectid, 15034692cf58SJan Schmidt iterate_extent_inodes_t *iterate, void *ctx) 1504a542ad1bSJan Schmidt { 1505976b1908SJan Schmidt struct extent_inode_elem *eie; 15064692cf58SJan Schmidt int ret = 0; 1507a542ad1bSJan Schmidt 1508976b1908SJan Schmidt for (eie = inode_list; eie; eie = eie->next) { 15094692cf58SJan Schmidt pr_debug("ref for %llu resolved, key (%llu EXTEND_DATA %llu), " 1510976b1908SJan Schmidt "root %llu\n", extent_item_objectid, 1511976b1908SJan Schmidt eie->inum, eie->offset, root); 1512976b1908SJan Schmidt ret = iterate(eie->inum, eie->offset, root, ctx); 15134692cf58SJan Schmidt if (ret) { 1514976b1908SJan Schmidt pr_debug("stopping iteration for %llu due to ret=%d\n", 1515976b1908SJan Schmidt extent_item_objectid, ret); 1516a542ad1bSJan Schmidt break; 1517a542ad1bSJan Schmidt } 1518a542ad1bSJan Schmidt } 1519a542ad1bSJan Schmidt 1520a542ad1bSJan Schmidt return ret; 1521a542ad1bSJan Schmidt } 1522a542ad1bSJan Schmidt 1523a542ad1bSJan Schmidt /* 1524a542ad1bSJan Schmidt * calls iterate() for every inode that references the extent identified by 15254692cf58SJan Schmidt * the given parameters. 1526a542ad1bSJan Schmidt * when the iterator function returns a non-zero value, iteration stops. 1527a542ad1bSJan Schmidt */ 1528a542ad1bSJan Schmidt int iterate_extent_inodes(struct btrfs_fs_info *fs_info, 15294692cf58SJan Schmidt u64 extent_item_objectid, u64 extent_item_pos, 15307a3ae2f8SJan Schmidt int search_commit_root, 1531a542ad1bSJan Schmidt iterate_extent_inodes_t *iterate, void *ctx) 1532a542ad1bSJan Schmidt { 1533a542ad1bSJan Schmidt int ret; 1534da61d31aSJosef Bacik struct btrfs_trans_handle *trans = NULL; 15357a3ae2f8SJan Schmidt struct ulist *refs = NULL; 15367a3ae2f8SJan Schmidt struct ulist *roots = NULL; 15374692cf58SJan Schmidt struct ulist_node *ref_node = NULL; 15384692cf58SJan Schmidt struct ulist_node *root_node = NULL; 15398445f61cSJan Schmidt struct seq_list tree_mod_seq_elem = {}; 1540cd1b413cSJan Schmidt struct ulist_iterator ref_uiter; 1541cd1b413cSJan Schmidt struct ulist_iterator root_uiter; 1542a542ad1bSJan Schmidt 15434692cf58SJan Schmidt pr_debug("resolving all inodes for extent %llu\n", 15444692cf58SJan Schmidt extent_item_objectid); 15454692cf58SJan Schmidt 1546da61d31aSJosef Bacik if (!search_commit_root) { 15477a3ae2f8SJan Schmidt trans = btrfs_join_transaction(fs_info->extent_root); 15487a3ae2f8SJan Schmidt if (IS_ERR(trans)) 15497a3ae2f8SJan Schmidt return PTR_ERR(trans); 15508445f61cSJan Schmidt btrfs_get_tree_mod_seq(fs_info, &tree_mod_seq_elem); 15519e351cc8SJosef Bacik } else { 15529e351cc8SJosef Bacik down_read(&fs_info->commit_root_sem); 15537a3ae2f8SJan Schmidt } 15544692cf58SJan Schmidt 15554692cf58SJan Schmidt ret = btrfs_find_all_leafs(trans, fs_info, extent_item_objectid, 1556097b8a7cSJan Schmidt tree_mod_seq_elem.seq, &refs, 15578445f61cSJan Schmidt &extent_item_pos); 15584692cf58SJan Schmidt if (ret) 15594692cf58SJan Schmidt goto out; 15604692cf58SJan Schmidt 1561cd1b413cSJan Schmidt ULIST_ITER_INIT(&ref_uiter); 1562cd1b413cSJan Schmidt while (!ret && (ref_node = ulist_next(refs, &ref_uiter))) { 15639e351cc8SJosef Bacik ret = __btrfs_find_all_roots(trans, fs_info, ref_node->val, 15648445f61cSJan Schmidt tree_mod_seq_elem.seq, &roots); 15654692cf58SJan Schmidt if (ret) 1566a542ad1bSJan Schmidt break; 1567cd1b413cSJan Schmidt ULIST_ITER_INIT(&root_uiter); 1568cd1b413cSJan Schmidt while (!ret && (root_node = ulist_next(roots, &root_uiter))) { 1569976b1908SJan Schmidt pr_debug("root %llu references leaf %llu, data list " 157034d73f54SAlexander Block "%#llx\n", root_node->val, ref_node->val, 1571c1c9ff7cSGeert Uytterhoeven ref_node->aux); 1572995e01b7SJan Schmidt ret = iterate_leaf_refs((struct extent_inode_elem *) 1573995e01b7SJan Schmidt (uintptr_t)ref_node->aux, 1574995e01b7SJan Schmidt root_node->val, 1575995e01b7SJan Schmidt extent_item_objectid, 1576a542ad1bSJan Schmidt iterate, ctx); 15774692cf58SJan Schmidt } 1578976b1908SJan Schmidt ulist_free(roots); 1579a542ad1bSJan Schmidt } 1580a542ad1bSJan Schmidt 1581976b1908SJan Schmidt free_leaf_list(refs); 15824692cf58SJan Schmidt out: 15837a3ae2f8SJan Schmidt if (!search_commit_root) { 15848445f61cSJan Schmidt btrfs_put_tree_mod_seq(fs_info, &tree_mod_seq_elem); 15854692cf58SJan Schmidt btrfs_end_transaction(trans, fs_info->extent_root); 15869e351cc8SJosef Bacik } else { 15879e351cc8SJosef Bacik up_read(&fs_info->commit_root_sem); 15887a3ae2f8SJan Schmidt } 15897a3ae2f8SJan Schmidt 1590a542ad1bSJan Schmidt return ret; 1591a542ad1bSJan Schmidt } 1592a542ad1bSJan Schmidt 1593a542ad1bSJan Schmidt int iterate_inodes_from_logical(u64 logical, struct btrfs_fs_info *fs_info, 1594a542ad1bSJan Schmidt struct btrfs_path *path, 1595a542ad1bSJan Schmidt iterate_extent_inodes_t *iterate, void *ctx) 1596a542ad1bSJan Schmidt { 1597a542ad1bSJan Schmidt int ret; 15984692cf58SJan Schmidt u64 extent_item_pos; 159969917e43SLiu Bo u64 flags = 0; 1600a542ad1bSJan Schmidt struct btrfs_key found_key; 16017a3ae2f8SJan Schmidt int search_commit_root = path->search_commit_root; 1602a542ad1bSJan Schmidt 160369917e43SLiu Bo ret = extent_from_logical(fs_info, logical, path, &found_key, &flags); 16044692cf58SJan Schmidt btrfs_release_path(path); 1605a542ad1bSJan Schmidt if (ret < 0) 1606a542ad1bSJan Schmidt return ret; 160769917e43SLiu Bo if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK) 16083627bf45SStefan Behrens return -EINVAL; 1609a542ad1bSJan Schmidt 16104692cf58SJan Schmidt extent_item_pos = logical - found_key.objectid; 16117a3ae2f8SJan Schmidt ret = iterate_extent_inodes(fs_info, found_key.objectid, 16127a3ae2f8SJan Schmidt extent_item_pos, search_commit_root, 16137a3ae2f8SJan Schmidt iterate, ctx); 1614a542ad1bSJan Schmidt 1615a542ad1bSJan Schmidt return ret; 1616a542ad1bSJan Schmidt } 1617a542ad1bSJan Schmidt 1618d24bec3aSMark Fasheh typedef int (iterate_irefs_t)(u64 parent, u32 name_len, unsigned long name_off, 1619d24bec3aSMark Fasheh struct extent_buffer *eb, void *ctx); 1620d24bec3aSMark Fasheh 1621d24bec3aSMark Fasheh static int iterate_inode_refs(u64 inum, struct btrfs_root *fs_root, 1622a542ad1bSJan Schmidt struct btrfs_path *path, 1623a542ad1bSJan Schmidt iterate_irefs_t *iterate, void *ctx) 1624a542ad1bSJan Schmidt { 1625aefc1eb1SJan Schmidt int ret = 0; 1626a542ad1bSJan Schmidt int slot; 1627a542ad1bSJan Schmidt u32 cur; 1628a542ad1bSJan Schmidt u32 len; 1629a542ad1bSJan Schmidt u32 name_len; 1630a542ad1bSJan Schmidt u64 parent = 0; 1631a542ad1bSJan Schmidt int found = 0; 1632a542ad1bSJan Schmidt struct extent_buffer *eb; 1633a542ad1bSJan Schmidt struct btrfs_item *item; 1634a542ad1bSJan Schmidt struct btrfs_inode_ref *iref; 1635a542ad1bSJan Schmidt struct btrfs_key found_key; 1636a542ad1bSJan Schmidt 1637aefc1eb1SJan Schmidt while (!ret) { 1638a542ad1bSJan Schmidt ret = inode_ref_info(inum, parent ? parent+1 : 0, fs_root, path, 1639a542ad1bSJan Schmidt &found_key); 1640a542ad1bSJan Schmidt if (ret < 0) 1641a542ad1bSJan Schmidt break; 1642a542ad1bSJan Schmidt if (ret) { 1643a542ad1bSJan Schmidt ret = found ? 0 : -ENOENT; 1644a542ad1bSJan Schmidt break; 1645a542ad1bSJan Schmidt } 1646a542ad1bSJan Schmidt ++found; 1647a542ad1bSJan Schmidt 1648a542ad1bSJan Schmidt parent = found_key.offset; 1649a542ad1bSJan Schmidt slot = path->slots[0]; 16503fe81ce2SFilipe David Borba Manana eb = btrfs_clone_extent_buffer(path->nodes[0]); 16513fe81ce2SFilipe David Borba Manana if (!eb) { 16523fe81ce2SFilipe David Borba Manana ret = -ENOMEM; 16533fe81ce2SFilipe David Borba Manana break; 16543fe81ce2SFilipe David Borba Manana } 16553fe81ce2SFilipe David Borba Manana extent_buffer_get(eb); 1656b916a59aSJan Schmidt btrfs_tree_read_lock(eb); 1657b916a59aSJan Schmidt btrfs_set_lock_blocking_rw(eb, BTRFS_READ_LOCK); 1658a542ad1bSJan Schmidt btrfs_release_path(path); 1659a542ad1bSJan Schmidt 1660dd3cc16bSRoss Kirk item = btrfs_item_nr(slot); 1661a542ad1bSJan Schmidt iref = btrfs_item_ptr(eb, slot, struct btrfs_inode_ref); 1662a542ad1bSJan Schmidt 1663a542ad1bSJan Schmidt for (cur = 0; cur < btrfs_item_size(eb, item); cur += len) { 1664a542ad1bSJan Schmidt name_len = btrfs_inode_ref_name_len(eb, iref); 1665a542ad1bSJan Schmidt /* path must be released before calling iterate()! */ 16664692cf58SJan Schmidt pr_debug("following ref at offset %u for inode %llu in " 1667c1c9ff7cSGeert Uytterhoeven "tree %llu\n", cur, found_key.objectid, 1668c1c9ff7cSGeert Uytterhoeven fs_root->objectid); 1669d24bec3aSMark Fasheh ret = iterate(parent, name_len, 1670d24bec3aSMark Fasheh (unsigned long)(iref + 1), eb, ctx); 1671aefc1eb1SJan Schmidt if (ret) 1672a542ad1bSJan Schmidt break; 1673a542ad1bSJan Schmidt len = sizeof(*iref) + name_len; 1674a542ad1bSJan Schmidt iref = (struct btrfs_inode_ref *)((char *)iref + len); 1675a542ad1bSJan Schmidt } 1676b916a59aSJan Schmidt btrfs_tree_read_unlock_blocking(eb); 1677a542ad1bSJan Schmidt free_extent_buffer(eb); 1678a542ad1bSJan Schmidt } 1679a542ad1bSJan Schmidt 1680a542ad1bSJan Schmidt btrfs_release_path(path); 1681a542ad1bSJan Schmidt 1682a542ad1bSJan Schmidt return ret; 1683a542ad1bSJan Schmidt } 1684a542ad1bSJan Schmidt 1685d24bec3aSMark Fasheh static int iterate_inode_extrefs(u64 inum, struct btrfs_root *fs_root, 1686d24bec3aSMark Fasheh struct btrfs_path *path, 1687d24bec3aSMark Fasheh iterate_irefs_t *iterate, void *ctx) 1688d24bec3aSMark Fasheh { 1689d24bec3aSMark Fasheh int ret; 1690d24bec3aSMark Fasheh int slot; 1691d24bec3aSMark Fasheh u64 offset = 0; 1692d24bec3aSMark Fasheh u64 parent; 1693d24bec3aSMark Fasheh int found = 0; 1694d24bec3aSMark Fasheh struct extent_buffer *eb; 1695d24bec3aSMark Fasheh struct btrfs_inode_extref *extref; 1696d24bec3aSMark Fasheh struct extent_buffer *leaf; 1697d24bec3aSMark Fasheh u32 item_size; 1698d24bec3aSMark Fasheh u32 cur_offset; 1699d24bec3aSMark Fasheh unsigned long ptr; 1700d24bec3aSMark Fasheh 1701d24bec3aSMark Fasheh while (1) { 1702d24bec3aSMark Fasheh ret = btrfs_find_one_extref(fs_root, inum, offset, path, &extref, 1703d24bec3aSMark Fasheh &offset); 1704d24bec3aSMark Fasheh if (ret < 0) 1705d24bec3aSMark Fasheh break; 1706d24bec3aSMark Fasheh if (ret) { 1707d24bec3aSMark Fasheh ret = found ? 0 : -ENOENT; 1708d24bec3aSMark Fasheh break; 1709d24bec3aSMark Fasheh } 1710d24bec3aSMark Fasheh ++found; 1711d24bec3aSMark Fasheh 1712d24bec3aSMark Fasheh slot = path->slots[0]; 17133fe81ce2SFilipe David Borba Manana eb = btrfs_clone_extent_buffer(path->nodes[0]); 17143fe81ce2SFilipe David Borba Manana if (!eb) { 17153fe81ce2SFilipe David Borba Manana ret = -ENOMEM; 17163fe81ce2SFilipe David Borba Manana break; 17173fe81ce2SFilipe David Borba Manana } 17183fe81ce2SFilipe David Borba Manana extent_buffer_get(eb); 1719d24bec3aSMark Fasheh 1720d24bec3aSMark Fasheh btrfs_tree_read_lock(eb); 1721d24bec3aSMark Fasheh btrfs_set_lock_blocking_rw(eb, BTRFS_READ_LOCK); 1722d24bec3aSMark Fasheh btrfs_release_path(path); 1723d24bec3aSMark Fasheh 1724d24bec3aSMark Fasheh leaf = path->nodes[0]; 1725e94acd86SValentina Giusti item_size = btrfs_item_size_nr(leaf, slot); 1726e94acd86SValentina Giusti ptr = btrfs_item_ptr_offset(leaf, slot); 1727d24bec3aSMark Fasheh cur_offset = 0; 1728d24bec3aSMark Fasheh 1729d24bec3aSMark Fasheh while (cur_offset < item_size) { 1730d24bec3aSMark Fasheh u32 name_len; 1731d24bec3aSMark Fasheh 1732d24bec3aSMark Fasheh extref = (struct btrfs_inode_extref *)(ptr + cur_offset); 1733d24bec3aSMark Fasheh parent = btrfs_inode_extref_parent(eb, extref); 1734d24bec3aSMark Fasheh name_len = btrfs_inode_extref_name_len(eb, extref); 1735d24bec3aSMark Fasheh ret = iterate(parent, name_len, 1736d24bec3aSMark Fasheh (unsigned long)&extref->name, eb, ctx); 1737d24bec3aSMark Fasheh if (ret) 1738d24bec3aSMark Fasheh break; 1739d24bec3aSMark Fasheh 1740d24bec3aSMark Fasheh cur_offset += btrfs_inode_extref_name_len(leaf, extref); 1741d24bec3aSMark Fasheh cur_offset += sizeof(*extref); 1742d24bec3aSMark Fasheh } 1743d24bec3aSMark Fasheh btrfs_tree_read_unlock_blocking(eb); 1744d24bec3aSMark Fasheh free_extent_buffer(eb); 1745d24bec3aSMark Fasheh 1746d24bec3aSMark Fasheh offset++; 1747d24bec3aSMark Fasheh } 1748d24bec3aSMark Fasheh 1749d24bec3aSMark Fasheh btrfs_release_path(path); 1750d24bec3aSMark Fasheh 1751d24bec3aSMark Fasheh return ret; 1752d24bec3aSMark Fasheh } 1753d24bec3aSMark Fasheh 1754d24bec3aSMark Fasheh static int iterate_irefs(u64 inum, struct btrfs_root *fs_root, 1755d24bec3aSMark Fasheh struct btrfs_path *path, iterate_irefs_t *iterate, 1756d24bec3aSMark Fasheh void *ctx) 1757d24bec3aSMark Fasheh { 1758d24bec3aSMark Fasheh int ret; 1759d24bec3aSMark Fasheh int found_refs = 0; 1760d24bec3aSMark Fasheh 1761d24bec3aSMark Fasheh ret = iterate_inode_refs(inum, fs_root, path, iterate, ctx); 1762d24bec3aSMark Fasheh if (!ret) 1763d24bec3aSMark Fasheh ++found_refs; 1764d24bec3aSMark Fasheh else if (ret != -ENOENT) 1765d24bec3aSMark Fasheh return ret; 1766d24bec3aSMark Fasheh 1767d24bec3aSMark Fasheh ret = iterate_inode_extrefs(inum, fs_root, path, iterate, ctx); 1768d24bec3aSMark Fasheh if (ret == -ENOENT && found_refs) 1769d24bec3aSMark Fasheh return 0; 1770d24bec3aSMark Fasheh 1771d24bec3aSMark Fasheh return ret; 1772d24bec3aSMark Fasheh } 1773d24bec3aSMark Fasheh 1774a542ad1bSJan Schmidt /* 1775a542ad1bSJan Schmidt * returns 0 if the path could be dumped (probably truncated) 1776a542ad1bSJan Schmidt * returns <0 in case of an error 1777a542ad1bSJan Schmidt */ 1778d24bec3aSMark Fasheh static int inode_to_path(u64 inum, u32 name_len, unsigned long name_off, 1779a542ad1bSJan Schmidt struct extent_buffer *eb, void *ctx) 1780a542ad1bSJan Schmidt { 1781a542ad1bSJan Schmidt struct inode_fs_paths *ipath = ctx; 1782a542ad1bSJan Schmidt char *fspath; 1783a542ad1bSJan Schmidt char *fspath_min; 1784a542ad1bSJan Schmidt int i = ipath->fspath->elem_cnt; 1785a542ad1bSJan Schmidt const int s_ptr = sizeof(char *); 1786a542ad1bSJan Schmidt u32 bytes_left; 1787a542ad1bSJan Schmidt 1788a542ad1bSJan Schmidt bytes_left = ipath->fspath->bytes_left > s_ptr ? 1789a542ad1bSJan Schmidt ipath->fspath->bytes_left - s_ptr : 0; 1790a542ad1bSJan Schmidt 1791740c3d22SChris Mason fspath_min = (char *)ipath->fspath->val + (i + 1) * s_ptr; 179296b5bd77SJan Schmidt fspath = btrfs_ref_to_path(ipath->fs_root, ipath->btrfs_path, name_len, 179396b5bd77SJan Schmidt name_off, eb, inum, fspath_min, bytes_left); 1794a542ad1bSJan Schmidt if (IS_ERR(fspath)) 1795a542ad1bSJan Schmidt return PTR_ERR(fspath); 1796a542ad1bSJan Schmidt 1797a542ad1bSJan Schmidt if (fspath > fspath_min) { 1798745c4d8eSJeff Mahoney ipath->fspath->val[i] = (u64)(unsigned long)fspath; 1799a542ad1bSJan Schmidt ++ipath->fspath->elem_cnt; 1800a542ad1bSJan Schmidt ipath->fspath->bytes_left = fspath - fspath_min; 1801a542ad1bSJan Schmidt } else { 1802a542ad1bSJan Schmidt ++ipath->fspath->elem_missed; 1803a542ad1bSJan Schmidt ipath->fspath->bytes_missing += fspath_min - fspath; 1804a542ad1bSJan Schmidt ipath->fspath->bytes_left = 0; 1805a542ad1bSJan Schmidt } 1806a542ad1bSJan Schmidt 1807a542ad1bSJan Schmidt return 0; 1808a542ad1bSJan Schmidt } 1809a542ad1bSJan Schmidt 1810a542ad1bSJan Schmidt /* 1811a542ad1bSJan Schmidt * this dumps all file system paths to the inode into the ipath struct, provided 1812a542ad1bSJan Schmidt * is has been created large enough. each path is zero-terminated and accessed 1813740c3d22SChris Mason * from ipath->fspath->val[i]. 1814a542ad1bSJan Schmidt * when it returns, there are ipath->fspath->elem_cnt number of paths available 1815740c3d22SChris Mason * in ipath->fspath->val[]. when the allocated space wasn't sufficient, the 1816a542ad1bSJan Schmidt * number of missed paths in recored in ipath->fspath->elem_missed, otherwise, 1817a542ad1bSJan Schmidt * it's zero. ipath->fspath->bytes_missing holds the number of bytes that would 1818a542ad1bSJan Schmidt * have been needed to return all paths. 1819a542ad1bSJan Schmidt */ 1820a542ad1bSJan Schmidt int paths_from_inode(u64 inum, struct inode_fs_paths *ipath) 1821a542ad1bSJan Schmidt { 1822a542ad1bSJan Schmidt return iterate_irefs(inum, ipath->fs_root, ipath->btrfs_path, 1823a542ad1bSJan Schmidt inode_to_path, ipath); 1824a542ad1bSJan Schmidt } 1825a542ad1bSJan Schmidt 1826a542ad1bSJan Schmidt struct btrfs_data_container *init_data_container(u32 total_bytes) 1827a542ad1bSJan Schmidt { 1828a542ad1bSJan Schmidt struct btrfs_data_container *data; 1829a542ad1bSJan Schmidt size_t alloc_bytes; 1830a542ad1bSJan Schmidt 1831a542ad1bSJan Schmidt alloc_bytes = max_t(size_t, total_bytes, sizeof(*data)); 1832425d17a2SLiu Bo data = vmalloc(alloc_bytes); 1833a542ad1bSJan Schmidt if (!data) 1834a542ad1bSJan Schmidt return ERR_PTR(-ENOMEM); 1835a542ad1bSJan Schmidt 1836a542ad1bSJan Schmidt if (total_bytes >= sizeof(*data)) { 1837a542ad1bSJan Schmidt data->bytes_left = total_bytes - sizeof(*data); 1838a542ad1bSJan Schmidt data->bytes_missing = 0; 1839a542ad1bSJan Schmidt } else { 1840a542ad1bSJan Schmidt data->bytes_missing = sizeof(*data) - total_bytes; 1841a542ad1bSJan Schmidt data->bytes_left = 0; 1842a542ad1bSJan Schmidt } 1843a542ad1bSJan Schmidt 1844a542ad1bSJan Schmidt data->elem_cnt = 0; 1845a542ad1bSJan Schmidt data->elem_missed = 0; 1846a542ad1bSJan Schmidt 1847a542ad1bSJan Schmidt return data; 1848a542ad1bSJan Schmidt } 1849a542ad1bSJan Schmidt 1850a542ad1bSJan Schmidt /* 1851a542ad1bSJan Schmidt * allocates space to return multiple file system paths for an inode. 1852a542ad1bSJan Schmidt * total_bytes to allocate are passed, note that space usable for actual path 1853a542ad1bSJan Schmidt * information will be total_bytes - sizeof(struct inode_fs_paths). 1854a542ad1bSJan Schmidt * the returned pointer must be freed with free_ipath() in the end. 1855a542ad1bSJan Schmidt */ 1856a542ad1bSJan Schmidt struct inode_fs_paths *init_ipath(s32 total_bytes, struct btrfs_root *fs_root, 1857a542ad1bSJan Schmidt struct btrfs_path *path) 1858a542ad1bSJan Schmidt { 1859a542ad1bSJan Schmidt struct inode_fs_paths *ifp; 1860a542ad1bSJan Schmidt struct btrfs_data_container *fspath; 1861a542ad1bSJan Schmidt 1862a542ad1bSJan Schmidt fspath = init_data_container(total_bytes); 1863a542ad1bSJan Schmidt if (IS_ERR(fspath)) 1864a542ad1bSJan Schmidt return (void *)fspath; 1865a542ad1bSJan Schmidt 1866a542ad1bSJan Schmidt ifp = kmalloc(sizeof(*ifp), GFP_NOFS); 1867a542ad1bSJan Schmidt if (!ifp) { 1868a542ad1bSJan Schmidt kfree(fspath); 1869a542ad1bSJan Schmidt return ERR_PTR(-ENOMEM); 1870a542ad1bSJan Schmidt } 1871a542ad1bSJan Schmidt 1872a542ad1bSJan Schmidt ifp->btrfs_path = path; 1873a542ad1bSJan Schmidt ifp->fspath = fspath; 1874a542ad1bSJan Schmidt ifp->fs_root = fs_root; 1875a542ad1bSJan Schmidt 1876a542ad1bSJan Schmidt return ifp; 1877a542ad1bSJan Schmidt } 1878a542ad1bSJan Schmidt 1879a542ad1bSJan Schmidt void free_ipath(struct inode_fs_paths *ipath) 1880a542ad1bSJan Schmidt { 18814735fb28SJesper Juhl if (!ipath) 18824735fb28SJesper Juhl return; 1883425d17a2SLiu Bo vfree(ipath->fspath); 1884a542ad1bSJan Schmidt kfree(ipath); 1885a542ad1bSJan Schmidt } 1886