blob: 4837dcf06ba42027fd7cbd5e8d8a2d3a9855efe1 [file] [log] [blame]
David Sterbac1d7c512018-04-03 19:23:33 +02001// SPDX-License-Identifier: GPL-2.0
Jan Schmidta542ad12011-06-13 19:52:59 +02002/*
3 * Copyright (C) 2011 STRATO. All rights reserved.
Jan Schmidta542ad12011-06-13 19:52:59 +02004 */
5
David Sterbaf54de062017-05-31 19:32:09 +02006#include <linux/mm.h>
Lu Fengqiafce7722016-06-13 09:36:46 +08007#include <linux/rbtree.h>
Jeff Mahoney00142752017-07-12 16:20:08 -06008#include <trace/events/btrfs.h>
Jan Schmidta542ad12011-06-13 19:52:59 +02009#include "ctree.h"
10#include "disk-io.h"
11#include "backref.h"
Jan Schmidt8da6d582011-11-23 18:55:04 +010012#include "ulist.h"
13#include "transaction.h"
14#include "delayed-ref.h"
Jan Schmidtb916a592012-04-13 12:28:08 +020015#include "locking.h"
Jan Schmidta542ad12011-06-13 19:52:59 +020016
Josef Bacikdc046b12014-09-10 16:20:45 -040017/* Just an arbitrary number so we can be sure this happened */
18#define BACKREF_FOUND_SHARED 6
19
Jan Schmidt976b1902012-05-17 16:43:03 +020020struct extent_inode_elem {
21 u64 inum;
22 u64 offset;
23 struct extent_inode_elem *next;
24};
25
Jeff Mahoney73980be2017-06-28 21:56:55 -060026static int check_extent_in_eb(const struct btrfs_key *key,
27 const struct extent_buffer *eb,
28 const struct btrfs_file_extent_item *fi,
29 u64 extent_item_pos,
Zygo Blaxellc995ab32017-09-22 13:58:45 -040030 struct extent_inode_elem **eie,
31 bool ignore_offset)
Jan Schmidt976b1902012-05-17 16:43:03 +020032{
Josef Bacik8ca15e02013-07-05 13:58:19 -040033 u64 offset = 0;
Jan Schmidt976b1902012-05-17 16:43:03 +020034 struct extent_inode_elem *e;
35
Zygo Blaxellc995ab32017-09-22 13:58:45 -040036 if (!ignore_offset &&
37 !btrfs_file_extent_compression(eb, fi) &&
Josef Bacik8ca15e02013-07-05 13:58:19 -040038 !btrfs_file_extent_encryption(eb, fi) &&
39 !btrfs_file_extent_other_encoding(eb, fi)) {
40 u64 data_offset;
41 u64 data_len;
Jan Schmidt976b1902012-05-17 16:43:03 +020042
Josef Bacik8ca15e02013-07-05 13:58:19 -040043 data_offset = btrfs_file_extent_offset(eb, fi);
44 data_len = btrfs_file_extent_num_bytes(eb, fi);
45
46 if (extent_item_pos < data_offset ||
47 extent_item_pos >= data_offset + data_len)
48 return 1;
49 offset = extent_item_pos - data_offset;
50 }
Jan Schmidt976b1902012-05-17 16:43:03 +020051
52 e = kmalloc(sizeof(*e), GFP_NOFS);
53 if (!e)
54 return -ENOMEM;
55
56 e->next = *eie;
57 e->inum = key->objectid;
Josef Bacik8ca15e02013-07-05 13:58:19 -040058 e->offset = key->offset + offset;
Jan Schmidt976b1902012-05-17 16:43:03 +020059 *eie = e;
60
61 return 0;
62}
63
Wang Shilongf05c4742014-01-28 19:13:38 +080064static void free_inode_elem_list(struct extent_inode_elem *eie)
65{
66 struct extent_inode_elem *eie_next;
67
68 for (; eie; eie = eie_next) {
69 eie_next = eie->next;
70 kfree(eie);
71 }
72}
73
Jeff Mahoney73980be2017-06-28 21:56:55 -060074static int find_extent_in_eb(const struct extent_buffer *eb,
75 u64 wanted_disk_byte, u64 extent_item_pos,
Zygo Blaxellc995ab32017-09-22 13:58:45 -040076 struct extent_inode_elem **eie,
77 bool ignore_offset)
Jan Schmidt976b1902012-05-17 16:43:03 +020078{
79 u64 disk_byte;
80 struct btrfs_key key;
81 struct btrfs_file_extent_item *fi;
82 int slot;
83 int nritems;
84 int extent_type;
85 int ret;
86
87 /*
88 * from the shared data ref, we only have the leaf but we need
89 * the key. thus, we must look into all items and see that we
90 * find one (some) with a reference to our extent item.
91 */
92 nritems = btrfs_header_nritems(eb);
93 for (slot = 0; slot < nritems; ++slot) {
94 btrfs_item_key_to_cpu(eb, &key, slot);
95 if (key.type != BTRFS_EXTENT_DATA_KEY)
96 continue;
97 fi = btrfs_item_ptr(eb, slot, struct btrfs_file_extent_item);
98 extent_type = btrfs_file_extent_type(eb, fi);
99 if (extent_type == BTRFS_FILE_EXTENT_INLINE)
100 continue;
101 /* don't skip BTRFS_FILE_EXTENT_PREALLOC, we can handle that */
102 disk_byte = btrfs_file_extent_disk_bytenr(eb, fi);
103 if (disk_byte != wanted_disk_byte)
104 continue;
105
Zygo Blaxellc995ab32017-09-22 13:58:45 -0400106 ret = check_extent_in_eb(&key, eb, fi, extent_item_pos, eie, ignore_offset);
Jan Schmidt976b1902012-05-17 16:43:03 +0200107 if (ret < 0)
108 return ret;
109 }
110
111 return 0;
112}
113
Edmund Nadolski86d5f992017-07-12 16:20:06 -0600114struct preftree {
Liu Boecf160b2018-08-23 03:51:53 +0800115 struct rb_root_cached root;
Jeff Mahoney6c336b22017-07-12 16:20:07 -0600116 unsigned int count;
Edmund Nadolski86d5f992017-07-12 16:20:06 -0600117};
118
Liu Boecf160b2018-08-23 03:51:53 +0800119#define PREFTREE_INIT { .root = RB_ROOT_CACHED, .count = 0 }
Edmund Nadolski86d5f992017-07-12 16:20:06 -0600120
121struct preftrees {
122 struct preftree direct; /* BTRFS_SHARED_[DATA|BLOCK]_REF_KEY */
123 struct preftree indirect; /* BTRFS_[TREE_BLOCK|EXTENT_DATA]_REF_KEY */
124 struct preftree indirect_missing_keys;
125};
126
Edmund Nadolski3ec4d322017-07-12 16:20:10 -0600127/*
128 * Checks for a shared extent during backref search.
129 *
130 * The share_count tracks prelim_refs (direct and indirect) having a
131 * ref->count >0:
132 * - incremented when a ref->count transitions to >0
133 * - decremented when a ref->count transitions to <1
134 */
135struct share_check {
136 u64 root_objectid;
137 u64 inum;
138 int share_count;
139};
140
141static inline int extent_is_shared(struct share_check *sc)
142{
143 return (sc && sc->share_count > 1) ? BACKREF_FOUND_SHARED : 0;
144}
145
Wang Shilongb9e9a6c2013-08-09 13:25:36 +0800146static struct kmem_cache *btrfs_prelim_ref_cache;
147
148int __init btrfs_prelim_ref_init(void)
149{
150 btrfs_prelim_ref_cache = kmem_cache_create("btrfs_prelim_ref",
Jeff Mahoneye0c476b2017-06-28 21:56:57 -0600151 sizeof(struct prelim_ref),
Wang Shilongb9e9a6c2013-08-09 13:25:36 +0800152 0,
Nikolay Borisovfba4b692016-06-23 21:17:08 +0300153 SLAB_MEM_SPREAD,
Wang Shilongb9e9a6c2013-08-09 13:25:36 +0800154 NULL);
155 if (!btrfs_prelim_ref_cache)
156 return -ENOMEM;
157 return 0;
158}
159
David Sterbae67c7182018-02-19 17:24:18 +0100160void __cold btrfs_prelim_ref_exit(void)
Wang Shilongb9e9a6c2013-08-09 13:25:36 +0800161{
Kinglong Mee5598e902016-01-29 21:36:35 +0800162 kmem_cache_destroy(btrfs_prelim_ref_cache);
Wang Shilongb9e9a6c2013-08-09 13:25:36 +0800163}
164
Edmund Nadolski86d5f992017-07-12 16:20:06 -0600165static void free_pref(struct prelim_ref *ref)
166{
167 kmem_cache_free(btrfs_prelim_ref_cache, ref);
168}
169
170/*
171 * Return 0 when both refs are for the same block (and can be merged).
172 * A -1 return indicates ref1 is a 'lower' block than ref2, while 1
173 * indicates a 'higher' block.
174 */
175static int prelim_ref_compare(struct prelim_ref *ref1,
176 struct prelim_ref *ref2)
177{
178 if (ref1->level < ref2->level)
179 return -1;
180 if (ref1->level > ref2->level)
181 return 1;
182 if (ref1->root_id < ref2->root_id)
183 return -1;
184 if (ref1->root_id > ref2->root_id)
185 return 1;
186 if (ref1->key_for_search.type < ref2->key_for_search.type)
187 return -1;
188 if (ref1->key_for_search.type > ref2->key_for_search.type)
189 return 1;
190 if (ref1->key_for_search.objectid < ref2->key_for_search.objectid)
191 return -1;
192 if (ref1->key_for_search.objectid > ref2->key_for_search.objectid)
193 return 1;
194 if (ref1->key_for_search.offset < ref2->key_for_search.offset)
195 return -1;
196 if (ref1->key_for_search.offset > ref2->key_for_search.offset)
197 return 1;
198 if (ref1->parent < ref2->parent)
199 return -1;
200 if (ref1->parent > ref2->parent)
201 return 1;
202
203 return 0;
204}
205
Colin Ian Kingccc8dc72017-11-30 12:14:47 +0000206static void update_share_count(struct share_check *sc, int oldcount,
207 int newcount)
Edmund Nadolski3ec4d322017-07-12 16:20:10 -0600208{
209 if ((!sc) || (oldcount == 0 && newcount < 1))
210 return;
211
212 if (oldcount > 0 && newcount < 1)
213 sc->share_count--;
214 else if (oldcount < 1 && newcount > 0)
215 sc->share_count++;
216}
217
Edmund Nadolski86d5f992017-07-12 16:20:06 -0600218/*
219 * Add @newref to the @root rbtree, merging identical refs.
220 *
Edmund Nadolski3ec4d322017-07-12 16:20:10 -0600221 * Callers should assume that newref has been freed after calling.
Edmund Nadolski86d5f992017-07-12 16:20:06 -0600222 */
Jeff Mahoney00142752017-07-12 16:20:08 -0600223static void prelim_ref_insert(const struct btrfs_fs_info *fs_info,
224 struct preftree *preftree,
Edmund Nadolski3ec4d322017-07-12 16:20:10 -0600225 struct prelim_ref *newref,
226 struct share_check *sc)
Edmund Nadolski86d5f992017-07-12 16:20:06 -0600227{
Liu Boecf160b2018-08-23 03:51:53 +0800228 struct rb_root_cached *root;
Edmund Nadolski86d5f992017-07-12 16:20:06 -0600229 struct rb_node **p;
230 struct rb_node *parent = NULL;
231 struct prelim_ref *ref;
232 int result;
Liu Boecf160b2018-08-23 03:51:53 +0800233 bool leftmost = true;
Edmund Nadolski86d5f992017-07-12 16:20:06 -0600234
235 root = &preftree->root;
Liu Boecf160b2018-08-23 03:51:53 +0800236 p = &root->rb_root.rb_node;
Edmund Nadolski86d5f992017-07-12 16:20:06 -0600237
238 while (*p) {
239 parent = *p;
240 ref = rb_entry(parent, struct prelim_ref, rbnode);
241 result = prelim_ref_compare(ref, newref);
242 if (result < 0) {
243 p = &(*p)->rb_left;
244 } else if (result > 0) {
245 p = &(*p)->rb_right;
Liu Boecf160b2018-08-23 03:51:53 +0800246 leftmost = false;
Edmund Nadolski86d5f992017-07-12 16:20:06 -0600247 } else {
248 /* Identical refs, merge them and free @newref */
249 struct extent_inode_elem *eie = ref->inode_list;
250
251 while (eie && eie->next)
252 eie = eie->next;
253
254 if (!eie)
255 ref->inode_list = newref->inode_list;
256 else
257 eie->next = newref->inode_list;
Jeff Mahoney00142752017-07-12 16:20:08 -0600258 trace_btrfs_prelim_ref_merge(fs_info, ref, newref,
259 preftree->count);
Edmund Nadolski3ec4d322017-07-12 16:20:10 -0600260 /*
261 * A delayed ref can have newref->count < 0.
262 * The ref->count is updated to follow any
263 * BTRFS_[ADD|DROP]_DELAYED_REF actions.
264 */
265 update_share_count(sc, ref->count,
266 ref->count + newref->count);
Edmund Nadolski86d5f992017-07-12 16:20:06 -0600267 ref->count += newref->count;
268 free_pref(newref);
269 return;
270 }
271 }
272
Edmund Nadolski3ec4d322017-07-12 16:20:10 -0600273 update_share_count(sc, 0, newref->count);
Jeff Mahoney6c336b22017-07-12 16:20:07 -0600274 preftree->count++;
Jeff Mahoney00142752017-07-12 16:20:08 -0600275 trace_btrfs_prelim_ref_insert(fs_info, newref, NULL, preftree->count);
Edmund Nadolski86d5f992017-07-12 16:20:06 -0600276 rb_link_node(&newref->rbnode, parent, p);
Liu Boecf160b2018-08-23 03:51:53 +0800277 rb_insert_color_cached(&newref->rbnode, root, leftmost);
Edmund Nadolski86d5f992017-07-12 16:20:06 -0600278}
279
280/*
281 * Release the entire tree. We don't care about internal consistency so
282 * just free everything and then reset the tree root.
283 */
284static void prelim_release(struct preftree *preftree)
285{
286 struct prelim_ref *ref, *next_ref;
287
Liu Boecf160b2018-08-23 03:51:53 +0800288 rbtree_postorder_for_each_entry_safe(ref, next_ref,
289 &preftree->root.rb_root, rbnode)
Edmund Nadolski86d5f992017-07-12 16:20:06 -0600290 free_pref(ref);
291
Liu Boecf160b2018-08-23 03:51:53 +0800292 preftree->root = RB_ROOT_CACHED;
Jeff Mahoney6c336b22017-07-12 16:20:07 -0600293 preftree->count = 0;
Edmund Nadolski86d5f992017-07-12 16:20:06 -0600294}
295
Jan Schmidtd5c88b72012-05-15 17:55:51 +0200296/*
297 * the rules for all callers of this function are:
298 * - obtaining the parent is the goal
299 * - if you add a key, you must know that it is a correct key
300 * - if you cannot add the parent or a correct key, then we will look into the
301 * block later to set a correct key
302 *
303 * delayed refs
304 * ============
305 * backref type | shared | indirect | shared | indirect
306 * information | tree | tree | data | data
307 * --------------------+--------+----------+--------+----------
308 * parent logical | y | - | - | -
309 * key to resolve | - | y | y | y
310 * tree block logical | - | - | - | -
311 * root for resolving | y | y | y | y
312 *
313 * - column 1: we've the parent -> done
314 * - column 2, 3, 4: we use the key to find the parent
315 *
316 * on disk refs (inline or keyed)
317 * ==============================
318 * backref type | shared | indirect | shared | indirect
319 * information | tree | tree | data | data
320 * --------------------+--------+----------+--------+----------
321 * parent logical | y | - | y | -
322 * key to resolve | - | - | - | y
323 * tree block logical | y | y | y | y
324 * root for resolving | - | y | y | y
325 *
326 * - column 1, 3: we've the parent -> done
327 * - column 2: we take the first key from the block to find the parent
Jeff Mahoneye0c476b2017-06-28 21:56:57 -0600328 * (see add_missing_keys)
Jan Schmidtd5c88b72012-05-15 17:55:51 +0200329 * - column 4: we use the key to find the parent
330 *
331 * additional information that's available but not required to find the parent
332 * block might help in merging entries to gain some speed.
333 */
Jeff Mahoney00142752017-07-12 16:20:08 -0600334static int add_prelim_ref(const struct btrfs_fs_info *fs_info,
335 struct preftree *preftree, u64 root_id,
Jeff Mahoneye0c476b2017-06-28 21:56:57 -0600336 const struct btrfs_key *key, int level, u64 parent,
Edmund Nadolski3ec4d322017-07-12 16:20:10 -0600337 u64 wanted_disk_byte, int count,
338 struct share_check *sc, gfp_t gfp_mask)
Jan Schmidt8da6d582011-11-23 18:55:04 +0100339{
Jeff Mahoneye0c476b2017-06-28 21:56:57 -0600340 struct prelim_ref *ref;
Jan Schmidt8da6d582011-11-23 18:55:04 +0100341
Liu Bo48ec4732013-10-30 13:25:24 +0800342 if (root_id == BTRFS_DATA_RELOC_TREE_OBJECTID)
343 return 0;
344
Wang Shilongb9e9a6c2013-08-09 13:25:36 +0800345 ref = kmem_cache_alloc(btrfs_prelim_ref_cache, gfp_mask);
Jan Schmidt8da6d582011-11-23 18:55:04 +0100346 if (!ref)
347 return -ENOMEM;
348
349 ref->root_id = root_id;
ethanwu7ac8b882020-02-07 17:38:15 +0800350 if (key)
Jan Schmidtd5c88b72012-05-15 17:55:51 +0200351 ref->key_for_search = *key;
ethanwu7ac8b882020-02-07 17:38:15 +0800352 else
Jan Schmidtd5c88b72012-05-15 17:55:51 +0200353 memset(&ref->key_for_search, 0, sizeof(ref->key_for_search));
Jan Schmidt8da6d582011-11-23 18:55:04 +0100354
Jan Schmidt33019582012-05-30 18:05:21 +0200355 ref->inode_list = NULL;
Jan Schmidt8da6d582011-11-23 18:55:04 +0100356 ref->level = level;
357 ref->count = count;
358 ref->parent = parent;
359 ref->wanted_disk_byte = wanted_disk_byte;
Edmund Nadolski3ec4d322017-07-12 16:20:10 -0600360 prelim_ref_insert(fs_info, preftree, ref, sc);
361 return extent_is_shared(sc);
Jan Schmidt8da6d582011-11-23 18:55:04 +0100362}
363
Edmund Nadolski86d5f992017-07-12 16:20:06 -0600364/* direct refs use root == 0, key == NULL */
Jeff Mahoney00142752017-07-12 16:20:08 -0600365static int add_direct_ref(const struct btrfs_fs_info *fs_info,
366 struct preftrees *preftrees, int level, u64 parent,
Edmund Nadolski3ec4d322017-07-12 16:20:10 -0600367 u64 wanted_disk_byte, int count,
368 struct share_check *sc, gfp_t gfp_mask)
Edmund Nadolski86d5f992017-07-12 16:20:06 -0600369{
Jeff Mahoney00142752017-07-12 16:20:08 -0600370 return add_prelim_ref(fs_info, &preftrees->direct, 0, NULL, level,
Edmund Nadolski3ec4d322017-07-12 16:20:10 -0600371 parent, wanted_disk_byte, count, sc, gfp_mask);
Edmund Nadolski86d5f992017-07-12 16:20:06 -0600372}
373
374/* indirect refs use parent == 0 */
Jeff Mahoney00142752017-07-12 16:20:08 -0600375static int add_indirect_ref(const struct btrfs_fs_info *fs_info,
376 struct preftrees *preftrees, u64 root_id,
Edmund Nadolski86d5f992017-07-12 16:20:06 -0600377 const struct btrfs_key *key, int level,
Edmund Nadolski3ec4d322017-07-12 16:20:10 -0600378 u64 wanted_disk_byte, int count,
379 struct share_check *sc, gfp_t gfp_mask)
Edmund Nadolski86d5f992017-07-12 16:20:06 -0600380{
381 struct preftree *tree = &preftrees->indirect;
382
383 if (!key)
384 tree = &preftrees->indirect_missing_keys;
Jeff Mahoney00142752017-07-12 16:20:08 -0600385 return add_prelim_ref(fs_info, tree, root_id, key, level, 0,
Edmund Nadolski3ec4d322017-07-12 16:20:10 -0600386 wanted_disk_byte, count, sc, gfp_mask);
Edmund Nadolski86d5f992017-07-12 16:20:06 -0600387}
388
ethanwued58f2e2020-02-07 17:38:16 +0800389static int is_shared_data_backref(struct preftrees *preftrees, u64 bytenr)
390{
391 struct rb_node **p = &preftrees->direct.root.rb_root.rb_node;
392 struct rb_node *parent = NULL;
393 struct prelim_ref *ref = NULL;
Arnd Bergmann9c6c7232020-04-29 15:27:32 +0200394 struct prelim_ref target = {};
ethanwued58f2e2020-02-07 17:38:16 +0800395 int result;
396
397 target.parent = bytenr;
398
399 while (*p) {
400 parent = *p;
401 ref = rb_entry(parent, struct prelim_ref, rbnode);
402 result = prelim_ref_compare(ref, &target);
403
404 if (result < 0)
405 p = &(*p)->rb_left;
406 else if (result > 0)
407 p = &(*p)->rb_right;
408 else
409 return 1;
410 }
411 return 0;
412}
413
Jan Schmidt8da6d582011-11-23 18:55:04 +0100414static int add_all_parents(struct btrfs_root *root, struct btrfs_path *path,
ethanwued58f2e2020-02-07 17:38:16 +0800415 struct ulist *parents,
416 struct preftrees *preftrees, struct prelim_ref *ref,
Josef Bacik44853862014-03-19 13:35:14 -0400417 int level, u64 time_seq, const u64 *extent_item_pos,
ethanwub25b0b82020-02-07 17:38:18 +0800418 bool ignore_offset)
Jan Schmidt8da6d582011-11-23 18:55:04 +0100419{
Alexander Block69bca402012-06-19 07:42:26 -0600420 int ret = 0;
421 int slot;
422 struct extent_buffer *eb;
423 struct btrfs_key key;
Josef Bacik7ef81ac2014-01-24 14:05:42 -0500424 struct btrfs_key *key_for_search = &ref->key_for_search;
Jan Schmidt8da6d582011-11-23 18:55:04 +0100425 struct btrfs_file_extent_item *fi;
Josef Baciked8c4912013-07-05 14:03:47 -0400426 struct extent_inode_elem *eie = NULL, *old = NULL;
Jan Schmidt8da6d582011-11-23 18:55:04 +0100427 u64 disk_byte;
Josef Bacik7ef81ac2014-01-24 14:05:42 -0500428 u64 wanted_disk_byte = ref->wanted_disk_byte;
429 u64 count = 0;
ethanwu7ac8b882020-02-07 17:38:15 +0800430 u64 data_offset;
Jan Schmidt8da6d582011-11-23 18:55:04 +0100431
Alexander Block69bca402012-06-19 07:42:26 -0600432 if (level != 0) {
433 eb = path->nodes[level];
434 ret = ulist_add(parents, eb->start, 0, GFP_NOFS);
Jan Schmidt33019582012-05-30 18:05:21 +0200435 if (ret < 0)
436 return ret;
Jan Schmidt8da6d582011-11-23 18:55:04 +0100437 return 0;
Alexander Block69bca402012-06-19 07:42:26 -0600438 }
Jan Schmidt8da6d582011-11-23 18:55:04 +0100439
440 /*
ethanwued58f2e2020-02-07 17:38:16 +0800441 * 1. We normally enter this function with the path already pointing to
442 * the first item to check. But sometimes, we may enter it with
443 * slot == nritems.
444 * 2. We are searching for normal backref but bytenr of this leaf
445 * matches shared data backref
ethanwucfc0eed2020-02-07 17:38:17 +0800446 * 3. The leaf owner is not equal to the root we are searching
447 *
ethanwued58f2e2020-02-07 17:38:16 +0800448 * For these cases, go to the next leaf before we continue.
Jan Schmidt8da6d582011-11-23 18:55:04 +0100449 */
ethanwued58f2e2020-02-07 17:38:16 +0800450 eb = path->nodes[0];
451 if (path->slots[0] >= btrfs_header_nritems(eb) ||
ethanwucfc0eed2020-02-07 17:38:17 +0800452 is_shared_data_backref(preftrees, eb->start) ||
453 ref->root_id != btrfs_header_owner(eb)) {
Edmund Nadolskide47c9d2017-03-16 10:04:34 -0600454 if (time_seq == SEQ_LAST)
Qu Wenruo21633fc2015-04-16 14:54:50 +0800455 ret = btrfs_next_leaf(root, path);
456 else
457 ret = btrfs_next_old_leaf(root, path, time_seq);
458 }
Jan Schmidt8da6d582011-11-23 18:55:04 +0100459
ethanwub25b0b82020-02-07 17:38:18 +0800460 while (!ret && count < ref->count) {
Jan Schmidt8da6d582011-11-23 18:55:04 +0100461 eb = path->nodes[0];
Alexander Block69bca402012-06-19 07:42:26 -0600462 slot = path->slots[0];
463
464 btrfs_item_key_to_cpu(eb, &key, slot);
465
466 if (key.objectid != key_for_search->objectid ||
467 key.type != BTRFS_EXTENT_DATA_KEY)
468 break;
469
ethanwued58f2e2020-02-07 17:38:16 +0800470 /*
471 * We are searching for normal backref but bytenr of this leaf
ethanwucfc0eed2020-02-07 17:38:17 +0800472 * matches shared data backref, OR
473 * the leaf owner is not equal to the root we are searching for
ethanwued58f2e2020-02-07 17:38:16 +0800474 */
ethanwucfc0eed2020-02-07 17:38:17 +0800475 if (slot == 0 &&
476 (is_shared_data_backref(preftrees, eb->start) ||
477 ref->root_id != btrfs_header_owner(eb))) {
ethanwued58f2e2020-02-07 17:38:16 +0800478 if (time_seq == SEQ_LAST)
479 ret = btrfs_next_leaf(root, path);
480 else
481 ret = btrfs_next_old_leaf(root, path, time_seq);
482 continue;
483 }
Alexander Block69bca402012-06-19 07:42:26 -0600484 fi = btrfs_item_ptr(eb, slot, struct btrfs_file_extent_item);
485 disk_byte = btrfs_file_extent_disk_bytenr(eb, fi);
ethanwu7ac8b882020-02-07 17:38:15 +0800486 data_offset = btrfs_file_extent_offset(eb, fi);
Alexander Block69bca402012-06-19 07:42:26 -0600487
488 if (disk_byte == wanted_disk_byte) {
489 eie = NULL;
Josef Baciked8c4912013-07-05 14:03:47 -0400490 old = NULL;
ethanwu7ac8b882020-02-07 17:38:15 +0800491 if (ref->key_for_search.offset == key.offset - data_offset)
492 count++;
493 else
494 goto next;
Alexander Block69bca402012-06-19 07:42:26 -0600495 if (extent_item_pos) {
496 ret = check_extent_in_eb(&key, eb, fi,
497 *extent_item_pos,
Zygo Blaxellc995ab32017-09-22 13:58:45 -0400498 &eie, ignore_offset);
Alexander Block69bca402012-06-19 07:42:26 -0600499 if (ret < 0)
500 break;
501 }
Josef Baciked8c4912013-07-05 14:03:47 -0400502 if (ret > 0)
503 goto next;
Takashi Iwai4eb1f662014-07-28 10:57:04 +0200504 ret = ulist_add_merge_ptr(parents, eb->start,
505 eie, (void **)&old, GFP_NOFS);
Josef Baciked8c4912013-07-05 14:03:47 -0400506 if (ret < 0)
507 break;
508 if (!ret && extent_item_pos) {
509 while (old->next)
510 old = old->next;
511 old->next = eie;
Alexander Block69bca402012-06-19 07:42:26 -0600512 }
Wang Shilongf05c4742014-01-28 19:13:38 +0800513 eie = NULL;
Jan Schmidt8da6d582011-11-23 18:55:04 +0100514 }
Josef Baciked8c4912013-07-05 14:03:47 -0400515next:
Edmund Nadolskide47c9d2017-03-16 10:04:34 -0600516 if (time_seq == SEQ_LAST)
Qu Wenruo21633fc2015-04-16 14:54:50 +0800517 ret = btrfs_next_item(root, path);
518 else
519 ret = btrfs_next_old_item(root, path, time_seq);
Jan Schmidt8da6d582011-11-23 18:55:04 +0100520 }
521
Alexander Block69bca402012-06-19 07:42:26 -0600522 if (ret > 0)
523 ret = 0;
Wang Shilongf05c4742014-01-28 19:13:38 +0800524 else if (ret < 0)
525 free_inode_elem_list(eie);
Alexander Block69bca402012-06-19 07:42:26 -0600526 return ret;
Jan Schmidt8da6d582011-11-23 18:55:04 +0100527}
528
529/*
530 * resolve an indirect backref in the form (root_id, key, level)
531 * to a logical address
532 */
Jeff Mahoneye0c476b2017-06-28 21:56:57 -0600533static int resolve_indirect_ref(struct btrfs_fs_info *fs_info,
534 struct btrfs_path *path, u64 time_seq,
ethanwued58f2e2020-02-07 17:38:16 +0800535 struct preftrees *preftrees,
Jeff Mahoneye0c476b2017-06-28 21:56:57 -0600536 struct prelim_ref *ref, struct ulist *parents,
ethanwub25b0b82020-02-07 17:38:18 +0800537 const u64 *extent_item_pos, bool ignore_offset)
Jan Schmidt8da6d582011-11-23 18:55:04 +0100538{
Jan Schmidt8da6d582011-11-23 18:55:04 +0100539 struct btrfs_root *root;
540 struct btrfs_key root_key;
Jan Schmidt8da6d582011-11-23 18:55:04 +0100541 struct extent_buffer *eb;
542 int ret = 0;
543 int root_level;
544 int level = ref->level;
ethanwu7ac8b882020-02-07 17:38:15 +0800545 struct btrfs_key search_key = ref->key_for_search;
Jan Schmidt8da6d582011-11-23 18:55:04 +0100546
Jan Schmidt8da6d582011-11-23 18:55:04 +0100547 root_key.objectid = ref->root_id;
548 root_key.type = BTRFS_ROOT_ITEM_KEY;
549 root_key.offset = (u64)-1;
Wang Shilong538f72cd2014-01-23 13:47:48 +0800550
Josef Bacik2d9e9772015-11-05 14:37:58 -0800551 root = btrfs_get_fs_root(fs_info, &root_key, false);
Jan Schmidt8da6d582011-11-23 18:55:04 +0100552 if (IS_ERR(root)) {
553 ret = PTR_ERR(root);
Josef Bacik9326f762020-01-24 09:32:28 -0500554 goto out_free;
555 }
556
Josef Bacik39dba872020-03-13 17:17:09 -0400557 if (!path->search_commit_root &&
558 test_bit(BTRFS_ROOT_DELETING, &root->state)) {
559 ret = -ENOENT;
560 goto out;
561 }
562
Jeff Mahoneyf5ee5c92016-06-21 09:52:41 -0400563 if (btrfs_is_testing(fs_info)) {
Josef Bacikd9ee5222015-10-05 10:35:29 -0400564 ret = -ENOENT;
565 goto out;
566 }
567
Josef Bacik9e351cc2014-03-13 15:42:13 -0400568 if (path->search_commit_root)
569 root_level = btrfs_header_level(root->commit_root);
Edmund Nadolskide47c9d2017-03-16 10:04:34 -0600570 else if (time_seq == SEQ_LAST)
Qu Wenruo21633fc2015-04-16 14:54:50 +0800571 root_level = btrfs_header_level(root->node);
Josef Bacik9e351cc2014-03-13 15:42:13 -0400572 else
573 root_level = btrfs_old_root_level(root, time_seq);
Jan Schmidt8da6d582011-11-23 18:55:04 +0100574
Josef Bacikc75e8392020-02-14 16:11:47 -0500575 if (root_level + 1 == level)
Jan Schmidt8da6d582011-11-23 18:55:04 +0100576 goto out;
577
ethanwu7ac8b882020-02-07 17:38:15 +0800578 /*
579 * We can often find data backrefs with an offset that is too large
580 * (>= LLONG_MAX, maximum allowed file offset) due to underflows when
581 * subtracting a file's offset with the data offset of its
582 * corresponding extent data item. This can happen for example in the
583 * clone ioctl.
584 *
585 * So if we detect such case we set the search key's offset to zero to
586 * make sure we will find the matching file extent item at
587 * add_all_parents(), otherwise we will miss it because the offset
588 * taken form the backref is much larger then the offset of the file
589 * extent item. This can make us scan a very large number of file
590 * extent items, but at least it will not make us miss any.
591 *
592 * This is an ugly workaround for a behaviour that should have never
593 * existed, but it does and a fix for the clone ioctl would touch a lot
594 * of places, cause backwards incompatibility and would not fix the
595 * problem for extents cloned with older kernels.
596 */
597 if (search_key.type == BTRFS_EXTENT_DATA_KEY &&
598 search_key.offset >= LLONG_MAX)
599 search_key.offset = 0;
Jan Schmidt8da6d582011-11-23 18:55:04 +0100600 path->lowest_level = level;
Edmund Nadolskide47c9d2017-03-16 10:04:34 -0600601 if (time_seq == SEQ_LAST)
ethanwu7ac8b882020-02-07 17:38:15 +0800602 ret = btrfs_search_slot(NULL, root, &search_key, path, 0, 0);
Qu Wenruo21633fc2015-04-16 14:54:50 +0800603 else
ethanwu7ac8b882020-02-07 17:38:15 +0800604 ret = btrfs_search_old_slot(root, &search_key, path, time_seq);
Wang Shilong538f72cd2014-01-23 13:47:48 +0800605
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -0400606 btrfs_debug(fs_info,
607 "search slot in root %llu (level %d, ref count %d) returned %d for key (%llu %u %llu)",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +0200608 ref->root_id, level, ref->count, ret,
609 ref->key_for_search.objectid, ref->key_for_search.type,
610 ref->key_for_search.offset);
Jan Schmidt8da6d582011-11-23 18:55:04 +0100611 if (ret < 0)
612 goto out;
613
614 eb = path->nodes[level];
Jan Schmidt93454572012-06-27 15:23:09 +0200615 while (!eb) {
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +0530616 if (WARN_ON(!level)) {
Jan Schmidt93454572012-06-27 15:23:09 +0200617 ret = 1;
618 goto out;
619 }
620 level--;
621 eb = path->nodes[level];
Jan Schmidt8da6d582011-11-23 18:55:04 +0100622 }
623
ethanwued58f2e2020-02-07 17:38:16 +0800624 ret = add_all_parents(root, path, parents, preftrees, ref, level,
ethanwub25b0b82020-02-07 17:38:18 +0800625 time_seq, extent_item_pos, ignore_offset);
Jan Schmidt8da6d582011-11-23 18:55:04 +0100626out:
Josef Bacik00246522020-01-24 09:33:01 -0500627 btrfs_put_root(root);
Josef Bacik9326f762020-01-24 09:32:28 -0500628out_free:
Josef Bacikda61d312013-06-12 16:20:08 -0400629 path->lowest_level = 0;
630 btrfs_release_path(path);
Jan Schmidt8da6d582011-11-23 18:55:04 +0100631 return ret;
632}
633
Jeff Mahoney4dae0772017-06-28 21:56:56 -0600634static struct extent_inode_elem *
635unode_aux_to_inode_list(struct ulist_node *node)
636{
637 if (!node)
638 return NULL;
639 return (struct extent_inode_elem *)(uintptr_t)node->aux;
640}
641
Jan Schmidt8da6d582011-11-23 18:55:04 +0100642/*
Andrea Gelmini52042d82018-11-28 12:05:13 +0100643 * We maintain three separate rbtrees: one for direct refs, one for
Edmund Nadolski86d5f992017-07-12 16:20:06 -0600644 * indirect refs which have a key, and one for indirect refs which do not
645 * have a key. Each tree does merge on insertion.
646 *
647 * Once all of the references are located, we iterate over the tree of
648 * indirect refs with missing keys. An appropriate key is located and
649 * the ref is moved onto the tree for indirect refs. After all missing
650 * keys are thus located, we iterate over the indirect ref tree, resolve
651 * each reference, and then insert the resolved reference onto the
652 * direct tree (merging there too).
653 *
654 * New backrefs (i.e., for parent nodes) are added to the appropriate
655 * rbtree as they are encountered. The new backrefs are subsequently
656 * resolved as above.
Jan Schmidt8da6d582011-11-23 18:55:04 +0100657 */
Jeff Mahoneye0c476b2017-06-28 21:56:57 -0600658static int resolve_indirect_refs(struct btrfs_fs_info *fs_info,
659 struct btrfs_path *path, u64 time_seq,
Edmund Nadolski86d5f992017-07-12 16:20:06 -0600660 struct preftrees *preftrees,
ethanwub25b0b82020-02-07 17:38:18 +0800661 const u64 *extent_item_pos,
Zygo Blaxellc995ab32017-09-22 13:58:45 -0400662 struct share_check *sc, bool ignore_offset)
Jan Schmidt8da6d582011-11-23 18:55:04 +0100663{
664 int err;
665 int ret = 0;
Jan Schmidt8da6d582011-11-23 18:55:04 +0100666 struct ulist *parents;
667 struct ulist_node *node;
Jan Schmidtcd1b4132012-05-22 14:56:50 +0200668 struct ulist_iterator uiter;
Edmund Nadolski86d5f992017-07-12 16:20:06 -0600669 struct rb_node *rnode;
Jan Schmidt8da6d582011-11-23 18:55:04 +0100670
671 parents = ulist_alloc(GFP_NOFS);
672 if (!parents)
673 return -ENOMEM;
674
675 /*
Edmund Nadolski86d5f992017-07-12 16:20:06 -0600676 * We could trade memory usage for performance here by iterating
677 * the tree, allocating new refs for each insertion, and then
678 * freeing the entire indirect tree when we're done. In some test
679 * cases, the tree can grow quite large (~200k objects).
Jan Schmidt8da6d582011-11-23 18:55:04 +0100680 */
Liu Boecf160b2018-08-23 03:51:53 +0800681 while ((rnode = rb_first_cached(&preftrees->indirect.root))) {
Edmund Nadolski86d5f992017-07-12 16:20:06 -0600682 struct prelim_ref *ref;
683
684 ref = rb_entry(rnode, struct prelim_ref, rbnode);
685 if (WARN(ref->parent,
686 "BUG: direct ref found in indirect tree")) {
687 ret = -EINVAL;
688 goto out;
689 }
690
Liu Boecf160b2018-08-23 03:51:53 +0800691 rb_erase_cached(&ref->rbnode, &preftrees->indirect.root);
Jeff Mahoney6c336b22017-07-12 16:20:07 -0600692 preftrees->indirect.count--;
Edmund Nadolski86d5f992017-07-12 16:20:06 -0600693
694 if (ref->count == 0) {
695 free_pref(ref);
Jan Schmidt8da6d582011-11-23 18:55:04 +0100696 continue;
Edmund Nadolski86d5f992017-07-12 16:20:06 -0600697 }
698
Edmund Nadolski3ec4d322017-07-12 16:20:10 -0600699 if (sc && sc->root_objectid &&
700 ref->root_id != sc->root_objectid) {
Edmund Nadolski86d5f992017-07-12 16:20:06 -0600701 free_pref(ref);
Josef Bacikdc046b12014-09-10 16:20:45 -0400702 ret = BACKREF_FOUND_SHARED;
703 goto out;
704 }
ethanwued58f2e2020-02-07 17:38:16 +0800705 err = resolve_indirect_ref(fs_info, path, time_seq, preftrees,
706 ref, parents, extent_item_pos,
ethanwub25b0b82020-02-07 17:38:18 +0800707 ignore_offset);
Wang Shilong95def2ed2014-01-23 13:47:49 +0800708 /*
709 * we can only tolerate ENOENT,otherwise,we should catch error
710 * and return directly.
711 */
712 if (err == -ENOENT) {
Edmund Nadolski3ec4d322017-07-12 16:20:10 -0600713 prelim_ref_insert(fs_info, &preftrees->direct, ref,
714 NULL);
Jan Schmidt8da6d582011-11-23 18:55:04 +0100715 continue;
Wang Shilong95def2ed2014-01-23 13:47:49 +0800716 } else if (err) {
Edmund Nadolski86d5f992017-07-12 16:20:06 -0600717 free_pref(ref);
Wang Shilong95def2ed2014-01-23 13:47:49 +0800718 ret = err;
719 goto out;
720 }
Jan Schmidt8da6d582011-11-23 18:55:04 +0100721
722 /* we put the first parent into the ref at hand */
Jan Schmidtcd1b4132012-05-22 14:56:50 +0200723 ULIST_ITER_INIT(&uiter);
724 node = ulist_next(parents, &uiter);
Jan Schmidt8da6d582011-11-23 18:55:04 +0100725 ref->parent = node ? node->val : 0;
Jeff Mahoney4dae0772017-06-28 21:56:56 -0600726 ref->inode_list = unode_aux_to_inode_list(node);
Jan Schmidt8da6d582011-11-23 18:55:04 +0100727
Edmund Nadolski86d5f992017-07-12 16:20:06 -0600728 /* Add a prelim_ref(s) for any other parent(s). */
Jan Schmidtcd1b4132012-05-22 14:56:50 +0200729 while ((node = ulist_next(parents, &uiter))) {
Edmund Nadolski86d5f992017-07-12 16:20:06 -0600730 struct prelim_ref *new_ref;
731
Wang Shilongb9e9a6c2013-08-09 13:25:36 +0800732 new_ref = kmem_cache_alloc(btrfs_prelim_ref_cache,
733 GFP_NOFS);
Jan Schmidt8da6d582011-11-23 18:55:04 +0100734 if (!new_ref) {
Edmund Nadolski86d5f992017-07-12 16:20:06 -0600735 free_pref(ref);
Jan Schmidt8da6d582011-11-23 18:55:04 +0100736 ret = -ENOMEM;
Wang Shilonge36902d2013-04-15 10:26:38 +0000737 goto out;
Jan Schmidt8da6d582011-11-23 18:55:04 +0100738 }
739 memcpy(new_ref, ref, sizeof(*ref));
740 new_ref->parent = node->val;
Jeff Mahoney4dae0772017-06-28 21:56:56 -0600741 new_ref->inode_list = unode_aux_to_inode_list(node);
Edmund Nadolski3ec4d322017-07-12 16:20:10 -0600742 prelim_ref_insert(fs_info, &preftrees->direct,
743 new_ref, NULL);
Jan Schmidt8da6d582011-11-23 18:55:04 +0100744 }
Edmund Nadolski86d5f992017-07-12 16:20:06 -0600745
Edmund Nadolski3ec4d322017-07-12 16:20:10 -0600746 /*
Andrea Gelmini52042d82018-11-28 12:05:13 +0100747 * Now it's a direct ref, put it in the direct tree. We must
Edmund Nadolski3ec4d322017-07-12 16:20:10 -0600748 * do this last because the ref could be merged/freed here.
749 */
750 prelim_ref_insert(fs_info, &preftrees->direct, ref, NULL);
Edmund Nadolski86d5f992017-07-12 16:20:06 -0600751
Jan Schmidt8da6d582011-11-23 18:55:04 +0100752 ulist_reinit(parents);
Edmund Nadolski9dd14fd2017-07-12 16:20:09 -0600753 cond_resched();
Jan Schmidt8da6d582011-11-23 18:55:04 +0100754 }
Wang Shilonge36902d2013-04-15 10:26:38 +0000755out:
Jan Schmidt8da6d582011-11-23 18:55:04 +0100756 ulist_free(parents);
757 return ret;
758}
759
Jan Schmidtd5c88b72012-05-15 17:55:51 +0200760/*
761 * read tree blocks and add keys where required.
762 */
Jeff Mahoneye0c476b2017-06-28 21:56:57 -0600763static int add_missing_keys(struct btrfs_fs_info *fs_info,
Josef Bacik38e3eeb2019-01-16 11:00:57 -0500764 struct preftrees *preftrees, bool lock)
Jan Schmidtd5c88b72012-05-15 17:55:51 +0200765{
Jeff Mahoneye0c476b2017-06-28 21:56:57 -0600766 struct prelim_ref *ref;
Jan Schmidtd5c88b72012-05-15 17:55:51 +0200767 struct extent_buffer *eb;
Edmund Nadolski86d5f992017-07-12 16:20:06 -0600768 struct preftree *tree = &preftrees->indirect_missing_keys;
769 struct rb_node *node;
Jan Schmidtd5c88b72012-05-15 17:55:51 +0200770
Liu Boecf160b2018-08-23 03:51:53 +0800771 while ((node = rb_first_cached(&tree->root))) {
Edmund Nadolski86d5f992017-07-12 16:20:06 -0600772 ref = rb_entry(node, struct prelim_ref, rbnode);
Liu Boecf160b2018-08-23 03:51:53 +0800773 rb_erase_cached(node, &tree->root);
Edmund Nadolski86d5f992017-07-12 16:20:06 -0600774
775 BUG_ON(ref->parent); /* should not be a direct ref */
776 BUG_ON(ref->key_for_search.type);
Jan Schmidtd5c88b72012-05-15 17:55:51 +0200777 BUG_ON(!ref->wanted_disk_byte);
Edmund Nadolski86d5f992017-07-12 16:20:06 -0600778
Qu Wenruo581c1762018-03-29 09:08:11 +0800779 eb = read_tree_block(fs_info, ref->wanted_disk_byte, 0,
780 ref->level - 1, NULL);
Liu Bo64c043d2015-05-25 17:30:15 +0800781 if (IS_ERR(eb)) {
Edmund Nadolski86d5f992017-07-12 16:20:06 -0600782 free_pref(ref);
Liu Bo64c043d2015-05-25 17:30:15 +0800783 return PTR_ERR(eb);
784 } else if (!extent_buffer_uptodate(eb)) {
Edmund Nadolski86d5f992017-07-12 16:20:06 -0600785 free_pref(ref);
Josef Bacik416bc652013-04-23 14:17:42 -0400786 free_extent_buffer(eb);
787 return -EIO;
788 }
Josef Bacik38e3eeb2019-01-16 11:00:57 -0500789 if (lock)
790 btrfs_tree_read_lock(eb);
Jan Schmidtd5c88b72012-05-15 17:55:51 +0200791 if (btrfs_header_level(eb) == 0)
792 btrfs_item_key_to_cpu(eb, &ref->key_for_search, 0);
793 else
794 btrfs_node_key_to_cpu(eb, &ref->key_for_search, 0);
Josef Bacik38e3eeb2019-01-16 11:00:57 -0500795 if (lock)
796 btrfs_tree_read_unlock(eb);
Jan Schmidtd5c88b72012-05-15 17:55:51 +0200797 free_extent_buffer(eb);
Edmund Nadolski3ec4d322017-07-12 16:20:10 -0600798 prelim_ref_insert(fs_info, &preftrees->indirect, ref, NULL);
Edmund Nadolski9dd14fd2017-07-12 16:20:09 -0600799 cond_resched();
Jan Schmidtd5c88b72012-05-15 17:55:51 +0200800 }
801 return 0;
802}
803
Jan Schmidt8da6d582011-11-23 18:55:04 +0100804/*
Jan Schmidt8da6d582011-11-23 18:55:04 +0100805 * add all currently queued delayed refs from this head whose seq nr is
806 * smaller or equal that seq to the list
807 */
Jeff Mahoney00142752017-07-12 16:20:08 -0600808static int add_delayed_refs(const struct btrfs_fs_info *fs_info,
809 struct btrfs_delayed_ref_head *head, u64 seq,
ethanwub25b0b82020-02-07 17:38:18 +0800810 struct preftrees *preftrees, struct share_check *sc)
Jan Schmidt8da6d582011-11-23 18:55:04 +0100811{
Qu Wenruoc6fc2452015-03-30 17:03:00 +0800812 struct btrfs_delayed_ref_node *node;
Jan Schmidt8da6d582011-11-23 18:55:04 +0100813 struct btrfs_delayed_extent_op *extent_op = head->extent_op;
Jan Schmidtd5c88b72012-05-15 17:55:51 +0200814 struct btrfs_key key;
Edmund Nadolski86d5f992017-07-12 16:20:06 -0600815 struct btrfs_key tmp_op_key;
Josef Bacik0e0adbc2017-10-19 14:16:00 -0400816 struct rb_node *n;
Edmund Nadolski01747e92017-07-12 16:20:11 -0600817 int count;
Jan Schmidtb1375d62012-01-26 15:01:11 -0500818 int ret = 0;
Jan Schmidt8da6d582011-11-23 18:55:04 +0100819
Nikolay Borisova6dbcea2018-03-15 14:36:22 +0200820 if (extent_op && extent_op->update_key)
Edmund Nadolski86d5f992017-07-12 16:20:06 -0600821 btrfs_disk_key_to_cpu(&tmp_op_key, &extent_op->key);
Jan Schmidt8da6d582011-11-23 18:55:04 +0100822
Josef Bacikd7df2c72014-01-23 09:21:38 -0500823 spin_lock(&head->lock);
Liu Boe3d03962018-08-23 03:51:50 +0800824 for (n = rb_first_cached(&head->ref_tree); n; n = rb_next(n)) {
Josef Bacik0e0adbc2017-10-19 14:16:00 -0400825 node = rb_entry(n, struct btrfs_delayed_ref_node,
826 ref_node);
Jan Schmidt8da6d582011-11-23 18:55:04 +0100827 if (node->seq > seq)
828 continue;
829
830 switch (node->action) {
831 case BTRFS_ADD_DELAYED_EXTENT:
832 case BTRFS_UPDATE_DELAYED_HEAD:
833 WARN_ON(1);
834 continue;
835 case BTRFS_ADD_DELAYED_REF:
Edmund Nadolski01747e92017-07-12 16:20:11 -0600836 count = node->ref_mod;
Jan Schmidt8da6d582011-11-23 18:55:04 +0100837 break;
838 case BTRFS_DROP_DELAYED_REF:
Edmund Nadolski01747e92017-07-12 16:20:11 -0600839 count = node->ref_mod * -1;
Jan Schmidt8da6d582011-11-23 18:55:04 +0100840 break;
841 default:
Arnd Bergmann290342f2019-03-25 14:02:25 +0100842 BUG();
Jan Schmidt8da6d582011-11-23 18:55:04 +0100843 }
844 switch (node->type) {
845 case BTRFS_TREE_BLOCK_REF_KEY: {
Edmund Nadolski86d5f992017-07-12 16:20:06 -0600846 /* NORMAL INDIRECT METADATA backref */
Jan Schmidt8da6d582011-11-23 18:55:04 +0100847 struct btrfs_delayed_tree_ref *ref;
848
849 ref = btrfs_delayed_node_to_tree_ref(node);
Jeff Mahoney00142752017-07-12 16:20:08 -0600850 ret = add_indirect_ref(fs_info, preftrees, ref->root,
851 &tmp_op_key, ref->level + 1,
Edmund Nadolski01747e92017-07-12 16:20:11 -0600852 node->bytenr, count, sc,
853 GFP_ATOMIC);
Jan Schmidt8da6d582011-11-23 18:55:04 +0100854 break;
855 }
856 case BTRFS_SHARED_BLOCK_REF_KEY: {
Edmund Nadolski86d5f992017-07-12 16:20:06 -0600857 /* SHARED DIRECT METADATA backref */
Jan Schmidt8da6d582011-11-23 18:55:04 +0100858 struct btrfs_delayed_tree_ref *ref;
859
860 ref = btrfs_delayed_node_to_tree_ref(node);
Edmund Nadolski86d5f992017-07-12 16:20:06 -0600861
Edmund Nadolski01747e92017-07-12 16:20:11 -0600862 ret = add_direct_ref(fs_info, preftrees, ref->level + 1,
863 ref->parent, node->bytenr, count,
Edmund Nadolski3ec4d322017-07-12 16:20:10 -0600864 sc, GFP_ATOMIC);
Jan Schmidt8da6d582011-11-23 18:55:04 +0100865 break;
866 }
867 case BTRFS_EXTENT_DATA_REF_KEY: {
Edmund Nadolski86d5f992017-07-12 16:20:06 -0600868 /* NORMAL INDIRECT DATA backref */
Jan Schmidt8da6d582011-11-23 18:55:04 +0100869 struct btrfs_delayed_data_ref *ref;
Jan Schmidt8da6d582011-11-23 18:55:04 +0100870 ref = btrfs_delayed_node_to_data_ref(node);
871
872 key.objectid = ref->objectid;
873 key.type = BTRFS_EXTENT_DATA_KEY;
874 key.offset = ref->offset;
Josef Bacikdc046b12014-09-10 16:20:45 -0400875
876 /*
877 * Found a inum that doesn't match our known inum, we
878 * know it's shared.
879 */
Edmund Nadolski3ec4d322017-07-12 16:20:10 -0600880 if (sc && sc->inum && ref->objectid != sc->inum) {
Josef Bacikdc046b12014-09-10 16:20:45 -0400881 ret = BACKREF_FOUND_SHARED;
Edmund Nadolski3ec4d322017-07-12 16:20:10 -0600882 goto out;
Josef Bacikdc046b12014-09-10 16:20:45 -0400883 }
884
Jeff Mahoney00142752017-07-12 16:20:08 -0600885 ret = add_indirect_ref(fs_info, preftrees, ref->root,
Edmund Nadolski01747e92017-07-12 16:20:11 -0600886 &key, 0, node->bytenr, count, sc,
887 GFP_ATOMIC);
Jan Schmidt8da6d582011-11-23 18:55:04 +0100888 break;
889 }
890 case BTRFS_SHARED_DATA_REF_KEY: {
Edmund Nadolski86d5f992017-07-12 16:20:06 -0600891 /* SHARED DIRECT FULL backref */
Jan Schmidt8da6d582011-11-23 18:55:04 +0100892 struct btrfs_delayed_data_ref *ref;
Jan Schmidt8da6d582011-11-23 18:55:04 +0100893
894 ref = btrfs_delayed_node_to_data_ref(node);
Edmund Nadolski86d5f992017-07-12 16:20:06 -0600895
Edmund Nadolski01747e92017-07-12 16:20:11 -0600896 ret = add_direct_ref(fs_info, preftrees, 0, ref->parent,
897 node->bytenr, count, sc,
898 GFP_ATOMIC);
Jan Schmidt8da6d582011-11-23 18:55:04 +0100899 break;
900 }
901 default:
902 WARN_ON(1);
903 }
Edmund Nadolski3ec4d322017-07-12 16:20:10 -0600904 /*
905 * We must ignore BACKREF_FOUND_SHARED until all delayed
906 * refs have been checked.
907 */
908 if (ret && (ret != BACKREF_FOUND_SHARED))
Josef Bacikd7df2c72014-01-23 09:21:38 -0500909 break;
Jan Schmidt8da6d582011-11-23 18:55:04 +0100910 }
Edmund Nadolski3ec4d322017-07-12 16:20:10 -0600911 if (!ret)
912 ret = extent_is_shared(sc);
913out:
Josef Bacikd7df2c72014-01-23 09:21:38 -0500914 spin_unlock(&head->lock);
915 return ret;
Jan Schmidt8da6d582011-11-23 18:55:04 +0100916}
917
918/*
919 * add all inline backrefs for bytenr to the list
Edmund Nadolski3ec4d322017-07-12 16:20:10 -0600920 *
921 * Returns 0 on success, <0 on error, or BACKREF_FOUND_SHARED.
Jan Schmidt8da6d582011-11-23 18:55:04 +0100922 */
Jeff Mahoney00142752017-07-12 16:20:08 -0600923static int add_inline_refs(const struct btrfs_fs_info *fs_info,
924 struct btrfs_path *path, u64 bytenr,
Edmund Nadolski86d5f992017-07-12 16:20:06 -0600925 int *info_level, struct preftrees *preftrees,
ethanwub25b0b82020-02-07 17:38:18 +0800926 struct share_check *sc)
Jan Schmidt8da6d582011-11-23 18:55:04 +0100927{
Jan Schmidtb1375d62012-01-26 15:01:11 -0500928 int ret = 0;
Jan Schmidt8da6d582011-11-23 18:55:04 +0100929 int slot;
930 struct extent_buffer *leaf;
931 struct btrfs_key key;
Josef Bacik261c84b2013-06-28 13:11:22 -0400932 struct btrfs_key found_key;
Jan Schmidt8da6d582011-11-23 18:55:04 +0100933 unsigned long ptr;
934 unsigned long end;
935 struct btrfs_extent_item *ei;
936 u64 flags;
937 u64 item_size;
938
939 /*
940 * enumerate all inline refs
941 */
942 leaf = path->nodes[0];
Jan Schmidtdadcaf72012-05-22 13:43:25 +0200943 slot = path->slots[0];
Jan Schmidt8da6d582011-11-23 18:55:04 +0100944
945 item_size = btrfs_item_size_nr(leaf, slot);
946 BUG_ON(item_size < sizeof(*ei));
947
948 ei = btrfs_item_ptr(leaf, slot, struct btrfs_extent_item);
949 flags = btrfs_extent_flags(leaf, ei);
Josef Bacik261c84b2013-06-28 13:11:22 -0400950 btrfs_item_key_to_cpu(leaf, &found_key, slot);
Jan Schmidt8da6d582011-11-23 18:55:04 +0100951
952 ptr = (unsigned long)(ei + 1);
953 end = (unsigned long)ei + item_size;
954
Josef Bacik261c84b2013-06-28 13:11:22 -0400955 if (found_key.type == BTRFS_EXTENT_ITEM_KEY &&
956 flags & BTRFS_EXTENT_FLAG_TREE_BLOCK) {
Jan Schmidt8da6d582011-11-23 18:55:04 +0100957 struct btrfs_tree_block_info *info;
Jan Schmidt8da6d582011-11-23 18:55:04 +0100958
959 info = (struct btrfs_tree_block_info *)ptr;
960 *info_level = btrfs_tree_block_level(leaf, info);
Jan Schmidt8da6d582011-11-23 18:55:04 +0100961 ptr += sizeof(struct btrfs_tree_block_info);
962 BUG_ON(ptr > end);
Josef Bacik261c84b2013-06-28 13:11:22 -0400963 } else if (found_key.type == BTRFS_METADATA_ITEM_KEY) {
964 *info_level = found_key.offset;
Jan Schmidt8da6d582011-11-23 18:55:04 +0100965 } else {
966 BUG_ON(!(flags & BTRFS_EXTENT_FLAG_DATA));
967 }
968
969 while (ptr < end) {
970 struct btrfs_extent_inline_ref *iref;
971 u64 offset;
972 int type;
973
974 iref = (struct btrfs_extent_inline_ref *)ptr;
Liu Bo3de28d52017-08-18 15:15:19 -0600975 type = btrfs_get_extent_inline_ref_type(leaf, iref,
976 BTRFS_REF_TYPE_ANY);
977 if (type == BTRFS_REF_TYPE_INVALID)
Su Yueaf431dc2018-06-22 16:18:01 +0800978 return -EUCLEAN;
Liu Bo3de28d52017-08-18 15:15:19 -0600979
Jan Schmidt8da6d582011-11-23 18:55:04 +0100980 offset = btrfs_extent_inline_ref_offset(leaf, iref);
981
982 switch (type) {
983 case BTRFS_SHARED_BLOCK_REF_KEY:
Jeff Mahoney00142752017-07-12 16:20:08 -0600984 ret = add_direct_ref(fs_info, preftrees,
985 *info_level + 1, offset,
Edmund Nadolski3ec4d322017-07-12 16:20:10 -0600986 bytenr, 1, NULL, GFP_NOFS);
Jan Schmidt8da6d582011-11-23 18:55:04 +0100987 break;
988 case BTRFS_SHARED_DATA_REF_KEY: {
989 struct btrfs_shared_data_ref *sdref;
990 int count;
991
992 sdref = (struct btrfs_shared_data_ref *)(iref + 1);
993 count = btrfs_shared_data_ref_count(leaf, sdref);
Edmund Nadolski86d5f992017-07-12 16:20:06 -0600994
Jeff Mahoney00142752017-07-12 16:20:08 -0600995 ret = add_direct_ref(fs_info, preftrees, 0, offset,
Edmund Nadolski3ec4d322017-07-12 16:20:10 -0600996 bytenr, count, sc, GFP_NOFS);
Jan Schmidt8da6d582011-11-23 18:55:04 +0100997 break;
998 }
999 case BTRFS_TREE_BLOCK_REF_KEY:
Jeff Mahoney00142752017-07-12 16:20:08 -06001000 ret = add_indirect_ref(fs_info, preftrees, offset,
1001 NULL, *info_level + 1,
Edmund Nadolski3ec4d322017-07-12 16:20:10 -06001002 bytenr, 1, NULL, GFP_NOFS);
Jan Schmidt8da6d582011-11-23 18:55:04 +01001003 break;
1004 case BTRFS_EXTENT_DATA_REF_KEY: {
1005 struct btrfs_extent_data_ref *dref;
1006 int count;
1007 u64 root;
1008
1009 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1010 count = btrfs_extent_data_ref_count(leaf, dref);
1011 key.objectid = btrfs_extent_data_ref_objectid(leaf,
1012 dref);
1013 key.type = BTRFS_EXTENT_DATA_KEY;
1014 key.offset = btrfs_extent_data_ref_offset(leaf, dref);
Josef Bacikdc046b12014-09-10 16:20:45 -04001015
Edmund Nadolski3ec4d322017-07-12 16:20:10 -06001016 if (sc && sc->inum && key.objectid != sc->inum) {
Josef Bacikdc046b12014-09-10 16:20:45 -04001017 ret = BACKREF_FOUND_SHARED;
1018 break;
1019 }
1020
Jan Schmidt8da6d582011-11-23 18:55:04 +01001021 root = btrfs_extent_data_ref_root(leaf, dref);
Edmund Nadolski86d5f992017-07-12 16:20:06 -06001022
Jeff Mahoney00142752017-07-12 16:20:08 -06001023 ret = add_indirect_ref(fs_info, preftrees, root,
1024 &key, 0, bytenr, count,
Edmund Nadolski3ec4d322017-07-12 16:20:10 -06001025 sc, GFP_NOFS);
Jan Schmidt8da6d582011-11-23 18:55:04 +01001026 break;
1027 }
1028 default:
1029 WARN_ON(1);
1030 }
Wang Shilong1149ab62013-04-10 11:22:50 +00001031 if (ret)
1032 return ret;
Jan Schmidt8da6d582011-11-23 18:55:04 +01001033 ptr += btrfs_extent_inline_ref_size(type);
1034 }
1035
1036 return 0;
1037}
1038
1039/*
1040 * add all non-inline backrefs for bytenr to the list
Edmund Nadolski3ec4d322017-07-12 16:20:10 -06001041 *
1042 * Returns 0 on success, <0 on error, or BACKREF_FOUND_SHARED.
Jan Schmidt8da6d582011-11-23 18:55:04 +01001043 */
Jeff Mahoneye0c476b2017-06-28 21:56:57 -06001044static int add_keyed_refs(struct btrfs_fs_info *fs_info,
1045 struct btrfs_path *path, u64 bytenr,
Edmund Nadolski86d5f992017-07-12 16:20:06 -06001046 int info_level, struct preftrees *preftrees,
Edmund Nadolski3ec4d322017-07-12 16:20:10 -06001047 struct share_check *sc)
Jan Schmidt8da6d582011-11-23 18:55:04 +01001048{
1049 struct btrfs_root *extent_root = fs_info->extent_root;
1050 int ret;
1051 int slot;
1052 struct extent_buffer *leaf;
1053 struct btrfs_key key;
1054
1055 while (1) {
1056 ret = btrfs_next_item(extent_root, path);
1057 if (ret < 0)
1058 break;
1059 if (ret) {
1060 ret = 0;
1061 break;
1062 }
1063
1064 slot = path->slots[0];
1065 leaf = path->nodes[0];
1066 btrfs_item_key_to_cpu(leaf, &key, slot);
1067
1068 if (key.objectid != bytenr)
1069 break;
1070 if (key.type < BTRFS_TREE_BLOCK_REF_KEY)
1071 continue;
1072 if (key.type > BTRFS_SHARED_DATA_REF_KEY)
1073 break;
1074
1075 switch (key.type) {
1076 case BTRFS_SHARED_BLOCK_REF_KEY:
Edmund Nadolski86d5f992017-07-12 16:20:06 -06001077 /* SHARED DIRECT METADATA backref */
Jeff Mahoney00142752017-07-12 16:20:08 -06001078 ret = add_direct_ref(fs_info, preftrees,
1079 info_level + 1, key.offset,
Edmund Nadolski3ec4d322017-07-12 16:20:10 -06001080 bytenr, 1, NULL, GFP_NOFS);
Jan Schmidt8da6d582011-11-23 18:55:04 +01001081 break;
1082 case BTRFS_SHARED_DATA_REF_KEY: {
Edmund Nadolski86d5f992017-07-12 16:20:06 -06001083 /* SHARED DIRECT FULL backref */
Jan Schmidt8da6d582011-11-23 18:55:04 +01001084 struct btrfs_shared_data_ref *sdref;
1085 int count;
1086
1087 sdref = btrfs_item_ptr(leaf, slot,
1088 struct btrfs_shared_data_ref);
1089 count = btrfs_shared_data_ref_count(leaf, sdref);
Jeff Mahoney00142752017-07-12 16:20:08 -06001090 ret = add_direct_ref(fs_info, preftrees, 0,
1091 key.offset, bytenr, count,
Edmund Nadolski3ec4d322017-07-12 16:20:10 -06001092 sc, GFP_NOFS);
Jan Schmidt8da6d582011-11-23 18:55:04 +01001093 break;
1094 }
1095 case BTRFS_TREE_BLOCK_REF_KEY:
Edmund Nadolski86d5f992017-07-12 16:20:06 -06001096 /* NORMAL INDIRECT METADATA backref */
Jeff Mahoney00142752017-07-12 16:20:08 -06001097 ret = add_indirect_ref(fs_info, preftrees, key.offset,
1098 NULL, info_level + 1, bytenr,
Edmund Nadolski3ec4d322017-07-12 16:20:10 -06001099 1, NULL, GFP_NOFS);
Jan Schmidt8da6d582011-11-23 18:55:04 +01001100 break;
1101 case BTRFS_EXTENT_DATA_REF_KEY: {
Edmund Nadolski86d5f992017-07-12 16:20:06 -06001102 /* NORMAL INDIRECT DATA backref */
Jan Schmidt8da6d582011-11-23 18:55:04 +01001103 struct btrfs_extent_data_ref *dref;
1104 int count;
1105 u64 root;
1106
1107 dref = btrfs_item_ptr(leaf, slot,
1108 struct btrfs_extent_data_ref);
1109 count = btrfs_extent_data_ref_count(leaf, dref);
1110 key.objectid = btrfs_extent_data_ref_objectid(leaf,
1111 dref);
1112 key.type = BTRFS_EXTENT_DATA_KEY;
1113 key.offset = btrfs_extent_data_ref_offset(leaf, dref);
Josef Bacikdc046b12014-09-10 16:20:45 -04001114
Edmund Nadolski3ec4d322017-07-12 16:20:10 -06001115 if (sc && sc->inum && key.objectid != sc->inum) {
Josef Bacikdc046b12014-09-10 16:20:45 -04001116 ret = BACKREF_FOUND_SHARED;
1117 break;
1118 }
1119
Jan Schmidt8da6d582011-11-23 18:55:04 +01001120 root = btrfs_extent_data_ref_root(leaf, dref);
Jeff Mahoney00142752017-07-12 16:20:08 -06001121 ret = add_indirect_ref(fs_info, preftrees, root,
1122 &key, 0, bytenr, count,
Edmund Nadolski3ec4d322017-07-12 16:20:10 -06001123 sc, GFP_NOFS);
Jan Schmidt8da6d582011-11-23 18:55:04 +01001124 break;
1125 }
1126 default:
1127 WARN_ON(1);
1128 }
Wang Shilong1149ab62013-04-10 11:22:50 +00001129 if (ret)
1130 return ret;
1131
Jan Schmidt8da6d582011-11-23 18:55:04 +01001132 }
1133
1134 return ret;
1135}
1136
1137/*
1138 * this adds all existing backrefs (inline backrefs, backrefs and delayed
1139 * refs) for the given bytenr to the refs list, merges duplicates and resolves
1140 * indirect refs to their parent bytenr.
1141 * When roots are found, they're added to the roots list
1142 *
Edmund Nadolskide47c9d2017-03-16 10:04:34 -06001143 * If time_seq is set to SEQ_LAST, it will not search delayed_refs, and behave
Qu Wenruo21633fc2015-04-16 14:54:50 +08001144 * much like trans == NULL case, the difference only lies in it will not
1145 * commit root.
1146 * The special case is for qgroup to search roots in commit_transaction().
1147 *
Edmund Nadolski3ec4d322017-07-12 16:20:10 -06001148 * @sc - if !NULL, then immediately return BACKREF_FOUND_SHARED when a
1149 * shared extent is detected.
1150 *
1151 * Otherwise this returns 0 for success and <0 for an error.
1152 *
Zygo Blaxellc995ab32017-09-22 13:58:45 -04001153 * If ignore_offset is set to false, only extent refs whose offsets match
1154 * extent_item_pos are returned. If true, every extent ref is returned
1155 * and extent_item_pos is ignored.
1156 *
Jan Schmidt8da6d582011-11-23 18:55:04 +01001157 * FIXME some caching might speed things up
1158 */
1159static int find_parent_nodes(struct btrfs_trans_handle *trans,
1160 struct btrfs_fs_info *fs_info, u64 bytenr,
Jan Schmidt097b8a72012-06-21 11:08:04 +02001161 u64 time_seq, struct ulist *refs,
Josef Bacikdc046b12014-09-10 16:20:45 -04001162 struct ulist *roots, const u64 *extent_item_pos,
Zygo Blaxellc995ab32017-09-22 13:58:45 -04001163 struct share_check *sc, bool ignore_offset)
Jan Schmidt8da6d582011-11-23 18:55:04 +01001164{
1165 struct btrfs_key key;
1166 struct btrfs_path *path;
Jan Schmidt8da6d582011-11-23 18:55:04 +01001167 struct btrfs_delayed_ref_root *delayed_refs = NULL;
Li Zefand3b01062012-03-03 07:41:15 -05001168 struct btrfs_delayed_ref_head *head;
Jan Schmidt8da6d582011-11-23 18:55:04 +01001169 int info_level = 0;
1170 int ret;
Jeff Mahoneye0c476b2017-06-28 21:56:57 -06001171 struct prelim_ref *ref;
Edmund Nadolski86d5f992017-07-12 16:20:06 -06001172 struct rb_node *node;
Wang Shilongf05c4742014-01-28 19:13:38 +08001173 struct extent_inode_elem *eie = NULL;
Edmund Nadolski86d5f992017-07-12 16:20:06 -06001174 struct preftrees preftrees = {
1175 .direct = PREFTREE_INIT,
1176 .indirect = PREFTREE_INIT,
1177 .indirect_missing_keys = PREFTREE_INIT
1178 };
Jan Schmidt8da6d582011-11-23 18:55:04 +01001179
1180 key.objectid = bytenr;
Jan Schmidt8da6d582011-11-23 18:55:04 +01001181 key.offset = (u64)-1;
Josef Bacik261c84b2013-06-28 13:11:22 -04001182 if (btrfs_fs_incompat(fs_info, SKINNY_METADATA))
1183 key.type = BTRFS_METADATA_ITEM_KEY;
1184 else
1185 key.type = BTRFS_EXTENT_ITEM_KEY;
Jan Schmidt8da6d582011-11-23 18:55:04 +01001186
1187 path = btrfs_alloc_path();
1188 if (!path)
1189 return -ENOMEM;
Wang Shilonge84752d2014-02-13 11:19:47 +08001190 if (!trans) {
Josef Bacikda61d312013-06-12 16:20:08 -04001191 path->search_commit_root = 1;
Wang Shilonge84752d2014-02-13 11:19:47 +08001192 path->skip_locking = 1;
1193 }
Jan Schmidt8da6d582011-11-23 18:55:04 +01001194
Edmund Nadolskide47c9d2017-03-16 10:04:34 -06001195 if (time_seq == SEQ_LAST)
Qu Wenruo21633fc2015-04-16 14:54:50 +08001196 path->skip_locking = 1;
1197
Jan Schmidt8da6d582011-11-23 18:55:04 +01001198 /*
1199 * grab both a lock on the path and a lock on the delayed ref head.
1200 * We need both to get a consistent picture of how the refs look
1201 * at a specified point in time
1202 */
1203again:
Li Zefand3b01062012-03-03 07:41:15 -05001204 head = NULL;
1205
Jan Schmidt8da6d582011-11-23 18:55:04 +01001206 ret = btrfs_search_slot(trans, fs_info->extent_root, &key, path, 0, 0);
1207 if (ret < 0)
1208 goto out;
1209 BUG_ON(ret == 0);
1210
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04001211#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
Qu Wenruo21633fc2015-04-16 14:54:50 +08001212 if (trans && likely(trans->type != __TRANS_DUMMY) &&
Edmund Nadolskide47c9d2017-03-16 10:04:34 -06001213 time_seq != SEQ_LAST) {
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04001214#else
Edmund Nadolskide47c9d2017-03-16 10:04:34 -06001215 if (trans && time_seq != SEQ_LAST) {
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04001216#endif
Jan Schmidt7a3ae2f2012-03-23 17:32:28 +01001217 /*
1218 * look if there are updates for this ref queued and lock the
1219 * head
1220 */
1221 delayed_refs = &trans->transaction->delayed_refs;
1222 spin_lock(&delayed_refs->lock);
Liu Bof72ad18e2017-01-30 12:24:37 -08001223 head = btrfs_find_delayed_ref_head(delayed_refs, bytenr);
Jan Schmidt7a3ae2f2012-03-23 17:32:28 +01001224 if (head) {
1225 if (!mutex_trylock(&head->mutex)) {
Josef Bacikd2788502017-09-29 15:43:57 -04001226 refcount_inc(&head->refs);
Jan Schmidt7a3ae2f2012-03-23 17:32:28 +01001227 spin_unlock(&delayed_refs->lock);
Jan Schmidt8da6d582011-11-23 18:55:04 +01001228
Jan Schmidt7a3ae2f2012-03-23 17:32:28 +01001229 btrfs_release_path(path);
Jan Schmidt8da6d582011-11-23 18:55:04 +01001230
Jan Schmidt7a3ae2f2012-03-23 17:32:28 +01001231 /*
1232 * Mutex was contended, block until it's
1233 * released and try again
1234 */
1235 mutex_lock(&head->mutex);
1236 mutex_unlock(&head->mutex);
Josef Bacikd2788502017-09-29 15:43:57 -04001237 btrfs_put_delayed_ref_head(head);
Jan Schmidt7a3ae2f2012-03-23 17:32:28 +01001238 goto again;
1239 }
Josef Bacikd7df2c72014-01-23 09:21:38 -05001240 spin_unlock(&delayed_refs->lock);
Jeff Mahoney00142752017-07-12 16:20:08 -06001241 ret = add_delayed_refs(fs_info, head, time_seq,
ethanwub25b0b82020-02-07 17:38:18 +08001242 &preftrees, sc);
Jan Schmidt155725c2012-06-22 14:01:00 +02001243 mutex_unlock(&head->mutex);
Josef Bacikd7df2c72014-01-23 09:21:38 -05001244 if (ret)
Jan Schmidt7a3ae2f2012-03-23 17:32:28 +01001245 goto out;
Josef Bacikd7df2c72014-01-23 09:21:38 -05001246 } else {
1247 spin_unlock(&delayed_refs->lock);
Jan Schmidt8da6d582011-11-23 18:55:04 +01001248 }
Jan Schmidt8da6d582011-11-23 18:55:04 +01001249 }
Jan Schmidt8da6d582011-11-23 18:55:04 +01001250
1251 if (path->slots[0]) {
1252 struct extent_buffer *leaf;
1253 int slot;
1254
Jan Schmidtdadcaf72012-05-22 13:43:25 +02001255 path->slots[0]--;
Jan Schmidt8da6d582011-11-23 18:55:04 +01001256 leaf = path->nodes[0];
Jan Schmidtdadcaf72012-05-22 13:43:25 +02001257 slot = path->slots[0];
Jan Schmidt8da6d582011-11-23 18:55:04 +01001258 btrfs_item_key_to_cpu(leaf, &key, slot);
1259 if (key.objectid == bytenr &&
Josef Bacik261c84b2013-06-28 13:11:22 -04001260 (key.type == BTRFS_EXTENT_ITEM_KEY ||
1261 key.type == BTRFS_METADATA_ITEM_KEY)) {
Jeff Mahoney00142752017-07-12 16:20:08 -06001262 ret = add_inline_refs(fs_info, path, bytenr,
ethanwub25b0b82020-02-07 17:38:18 +08001263 &info_level, &preftrees, sc);
Jan Schmidt8da6d582011-11-23 18:55:04 +01001264 if (ret)
1265 goto out;
Jeff Mahoneye0c476b2017-06-28 21:56:57 -06001266 ret = add_keyed_refs(fs_info, path, bytenr, info_level,
Edmund Nadolski3ec4d322017-07-12 16:20:10 -06001267 &preftrees, sc);
Jan Schmidt8da6d582011-11-23 18:55:04 +01001268 if (ret)
1269 goto out;
1270 }
1271 }
Edmund Nadolski86d5f992017-07-12 16:20:06 -06001272
Jan Schmidt8da6d582011-11-23 18:55:04 +01001273 btrfs_release_path(path);
1274
Josef Bacik38e3eeb2019-01-16 11:00:57 -05001275 ret = add_missing_keys(fs_info, &preftrees, path->skip_locking == 0);
Jan Schmidtd5c88b72012-05-15 17:55:51 +02001276 if (ret)
1277 goto out;
1278
Liu Boecf160b2018-08-23 03:51:53 +08001279 WARN_ON(!RB_EMPTY_ROOT(&preftrees.indirect_missing_keys.root.rb_root));
Jan Schmidt8da6d582011-11-23 18:55:04 +01001280
Edmund Nadolski86d5f992017-07-12 16:20:06 -06001281 ret = resolve_indirect_refs(fs_info, path, time_seq, &preftrees,
ethanwub25b0b82020-02-07 17:38:18 +08001282 extent_item_pos, sc, ignore_offset);
Jan Schmidt8da6d582011-11-23 18:55:04 +01001283 if (ret)
1284 goto out;
1285
Liu Boecf160b2018-08-23 03:51:53 +08001286 WARN_ON(!RB_EMPTY_ROOT(&preftrees.indirect.root.rb_root));
Jan Schmidt8da6d582011-11-23 18:55:04 +01001287
Edmund Nadolski86d5f992017-07-12 16:20:06 -06001288 /*
1289 * This walks the tree of merged and resolved refs. Tree blocks are
1290 * read in as needed. Unique entries are added to the ulist, and
1291 * the list of found roots is updated.
1292 *
1293 * We release the entire tree in one go before returning.
1294 */
Liu Boecf160b2018-08-23 03:51:53 +08001295 node = rb_first_cached(&preftrees.direct.root);
Edmund Nadolski86d5f992017-07-12 16:20:06 -06001296 while (node) {
1297 ref = rb_entry(node, struct prelim_ref, rbnode);
1298 node = rb_next(&ref->rbnode);
Zygo Blaxellc8195a72018-01-23 22:22:09 -05001299 /*
1300 * ref->count < 0 can happen here if there are delayed
1301 * refs with a node->action of BTRFS_DROP_DELAYED_REF.
1302 * prelim_ref_insert() relies on this when merging
1303 * identical refs to keep the overall count correct.
1304 * prelim_ref_insert() will merge only those refs
1305 * which compare identically. Any refs having
1306 * e.g. different offsets would not be merged,
1307 * and would retain their original ref->count < 0.
1308 */
Wang Shilong98cfee212014-02-01 00:42:05 +08001309 if (roots && ref->count && ref->root_id && ref->parent == 0) {
Edmund Nadolski3ec4d322017-07-12 16:20:10 -06001310 if (sc && sc->root_objectid &&
1311 ref->root_id != sc->root_objectid) {
Josef Bacikdc046b12014-09-10 16:20:45 -04001312 ret = BACKREF_FOUND_SHARED;
1313 goto out;
1314 }
1315
Jan Schmidt8da6d582011-11-23 18:55:04 +01001316 /* no parent == root of tree */
1317 ret = ulist_add(roots, ref->root_id, 0, GFP_NOFS);
Wang Shilongf1723932013-03-29 23:03:21 +00001318 if (ret < 0)
1319 goto out;
Jan Schmidt8da6d582011-11-23 18:55:04 +01001320 }
1321 if (ref->count && ref->parent) {
Josef Bacik8a564572014-06-05 16:08:45 -04001322 if (extent_item_pos && !ref->inode_list &&
1323 ref->level == 0) {
Jan Schmidt976b1902012-05-17 16:43:03 +02001324 struct extent_buffer *eb;
David Sterba707e8a02014-06-04 19:22:26 +02001325
Qu Wenruo581c1762018-03-29 09:08:11 +08001326 eb = read_tree_block(fs_info, ref->parent, 0,
1327 ref->level, NULL);
Liu Bo64c043d2015-05-25 17:30:15 +08001328 if (IS_ERR(eb)) {
1329 ret = PTR_ERR(eb);
1330 goto out;
1331 } else if (!extent_buffer_uptodate(eb)) {
Josef Bacik416bc652013-04-23 14:17:42 -04001332 free_extent_buffer(eb);
Wang Shilongc16c2e22013-05-08 08:10:25 +00001333 ret = -EIO;
1334 goto out;
Josef Bacik416bc652013-04-23 14:17:42 -04001335 }
Josef Bacik38e3eeb2019-01-16 11:00:57 -05001336
1337 if (!path->skip_locking) {
1338 btrfs_tree_read_lock(eb);
1339 btrfs_set_lock_blocking_read(eb);
1340 }
Jan Schmidt976b1902012-05-17 16:43:03 +02001341 ret = find_extent_in_eb(eb, bytenr,
Zygo Blaxellc995ab32017-09-22 13:58:45 -04001342 *extent_item_pos, &eie, ignore_offset);
Josef Bacik38e3eeb2019-01-16 11:00:57 -05001343 if (!path->skip_locking)
1344 btrfs_tree_read_unlock_blocking(eb);
Jan Schmidt976b1902012-05-17 16:43:03 +02001345 free_extent_buffer(eb);
Filipe David Borba Mananaf5929cd2013-07-31 00:26:35 +01001346 if (ret < 0)
1347 goto out;
1348 ref->inode_list = eie;
Jan Schmidt976b1902012-05-17 16:43:03 +02001349 }
Takashi Iwai4eb1f662014-07-28 10:57:04 +02001350 ret = ulist_add_merge_ptr(refs, ref->parent,
1351 ref->inode_list,
1352 (void **)&eie, GFP_NOFS);
Wang Shilongf1723932013-03-29 23:03:21 +00001353 if (ret < 0)
1354 goto out;
Jan Schmidt33019582012-05-30 18:05:21 +02001355 if (!ret && extent_item_pos) {
1356 /*
1357 * we've recorded that parent, so we must extend
1358 * its inode list here
1359 */
1360 BUG_ON(!eie);
1361 while (eie->next)
1362 eie = eie->next;
1363 eie->next = ref->inode_list;
1364 }
Wang Shilongf05c4742014-01-28 19:13:38 +08001365 eie = NULL;
Jan Schmidt8da6d582011-11-23 18:55:04 +01001366 }
Edmund Nadolski9dd14fd2017-07-12 16:20:09 -06001367 cond_resched();
Jan Schmidt8da6d582011-11-23 18:55:04 +01001368 }
1369
1370out:
Jan Schmidt8da6d582011-11-23 18:55:04 +01001371 btrfs_free_path(path);
Edmund Nadolski86d5f992017-07-12 16:20:06 -06001372
1373 prelim_release(&preftrees.direct);
1374 prelim_release(&preftrees.indirect);
1375 prelim_release(&preftrees.indirect_missing_keys);
1376
Wang Shilongf05c4742014-01-28 19:13:38 +08001377 if (ret < 0)
1378 free_inode_elem_list(eie);
Jan Schmidt8da6d582011-11-23 18:55:04 +01001379 return ret;
1380}
1381
Jan Schmidt976b1902012-05-17 16:43:03 +02001382static void free_leaf_list(struct ulist *blocks)
1383{
1384 struct ulist_node *node = NULL;
1385 struct extent_inode_elem *eie;
Jan Schmidt976b1902012-05-17 16:43:03 +02001386 struct ulist_iterator uiter;
1387
1388 ULIST_ITER_INIT(&uiter);
1389 while ((node = ulist_next(blocks, &uiter))) {
1390 if (!node->aux)
1391 continue;
Jeff Mahoney4dae0772017-06-28 21:56:56 -06001392 eie = unode_aux_to_inode_list(node);
Wang Shilongf05c4742014-01-28 19:13:38 +08001393 free_inode_elem_list(eie);
Jan Schmidt976b1902012-05-17 16:43:03 +02001394 node->aux = 0;
1395 }
1396
1397 ulist_free(blocks);
1398}
1399
Jan Schmidt8da6d582011-11-23 18:55:04 +01001400/*
1401 * Finds all leafs with a reference to the specified combination of bytenr and
1402 * offset. key_list_head will point to a list of corresponding keys (caller must
1403 * free each list element). The leafs will be stored in the leafs ulist, which
1404 * must be freed with ulist_free.
1405 *
1406 * returns 0 on success, <0 on error
1407 */
Qu Wenruo19b546d2020-03-10 16:14:15 +08001408int btrfs_find_all_leafs(struct btrfs_trans_handle *trans,
1409 struct btrfs_fs_info *fs_info, u64 bytenr,
1410 u64 time_seq, struct ulist **leafs,
1411 const u64 *extent_item_pos, bool ignore_offset)
Jan Schmidt8da6d582011-11-23 18:55:04 +01001412{
Jan Schmidt8da6d582011-11-23 18:55:04 +01001413 int ret;
1414
Jan Schmidt8da6d582011-11-23 18:55:04 +01001415 *leafs = ulist_alloc(GFP_NOFS);
Wang Shilong98cfee212014-02-01 00:42:05 +08001416 if (!*leafs)
Jan Schmidt8da6d582011-11-23 18:55:04 +01001417 return -ENOMEM;
Jan Schmidt8da6d582011-11-23 18:55:04 +01001418
Lu Fengqiafce7722016-06-13 09:36:46 +08001419 ret = find_parent_nodes(trans, fs_info, bytenr, time_seq,
Zygo Blaxellc995ab32017-09-22 13:58:45 -04001420 *leafs, NULL, extent_item_pos, NULL, ignore_offset);
Jan Schmidt8da6d582011-11-23 18:55:04 +01001421 if (ret < 0 && ret != -ENOENT) {
Jan Schmidt976b1902012-05-17 16:43:03 +02001422 free_leaf_list(*leafs);
Jan Schmidt8da6d582011-11-23 18:55:04 +01001423 return ret;
1424 }
1425
1426 return 0;
1427}
1428
1429/*
1430 * walk all backrefs for a given extent to find all roots that reference this
1431 * extent. Walking a backref means finding all extents that reference this
1432 * extent and in turn walk the backrefs of those, too. Naturally this is a
1433 * recursive process, but here it is implemented in an iterative fashion: We
1434 * find all referencing extents for the extent in question and put them on a
1435 * list. In turn, we find all referencing extents for those, further appending
1436 * to the list. The way we iterate the list allows adding more elements after
1437 * the current while iterating. The process stops when we reach the end of the
1438 * list. Found roots are added to the roots list.
1439 *
1440 * returns 0 on success, < 0 on error.
1441 */
Jeff Mahoneye0c476b2017-06-28 21:56:57 -06001442static int btrfs_find_all_roots_safe(struct btrfs_trans_handle *trans,
1443 struct btrfs_fs_info *fs_info, u64 bytenr,
Zygo Blaxellc995ab32017-09-22 13:58:45 -04001444 u64 time_seq, struct ulist **roots,
1445 bool ignore_offset)
Jan Schmidt8da6d582011-11-23 18:55:04 +01001446{
1447 struct ulist *tmp;
1448 struct ulist_node *node = NULL;
Jan Schmidtcd1b4132012-05-22 14:56:50 +02001449 struct ulist_iterator uiter;
Jan Schmidt8da6d582011-11-23 18:55:04 +01001450 int ret;
1451
1452 tmp = ulist_alloc(GFP_NOFS);
1453 if (!tmp)
1454 return -ENOMEM;
1455 *roots = ulist_alloc(GFP_NOFS);
1456 if (!*roots) {
1457 ulist_free(tmp);
1458 return -ENOMEM;
1459 }
1460
Jan Schmidtcd1b4132012-05-22 14:56:50 +02001461 ULIST_ITER_INIT(&uiter);
Jan Schmidt8da6d582011-11-23 18:55:04 +01001462 while (1) {
Lu Fengqiafce7722016-06-13 09:36:46 +08001463 ret = find_parent_nodes(trans, fs_info, bytenr, time_seq,
Zygo Blaxellc995ab32017-09-22 13:58:45 -04001464 tmp, *roots, NULL, NULL, ignore_offset);
Jan Schmidt8da6d582011-11-23 18:55:04 +01001465 if (ret < 0 && ret != -ENOENT) {
1466 ulist_free(tmp);
1467 ulist_free(*roots);
1468 return ret;
1469 }
Jan Schmidtcd1b4132012-05-22 14:56:50 +02001470 node = ulist_next(tmp, &uiter);
Jan Schmidt8da6d582011-11-23 18:55:04 +01001471 if (!node)
1472 break;
1473 bytenr = node->val;
Wang Shilongbca1a292014-01-26 22:32:18 +08001474 cond_resched();
Jan Schmidt8da6d582011-11-23 18:55:04 +01001475 }
1476
1477 ulist_free(tmp);
1478 return 0;
1479}
1480
Josef Bacik9e351cc2014-03-13 15:42:13 -04001481int btrfs_find_all_roots(struct btrfs_trans_handle *trans,
1482 struct btrfs_fs_info *fs_info, u64 bytenr,
Zygo Blaxellc995ab32017-09-22 13:58:45 -04001483 u64 time_seq, struct ulist **roots,
1484 bool ignore_offset)
Josef Bacik9e351cc2014-03-13 15:42:13 -04001485{
1486 int ret;
1487
1488 if (!trans)
1489 down_read(&fs_info->commit_root_sem);
Jeff Mahoneye0c476b2017-06-28 21:56:57 -06001490 ret = btrfs_find_all_roots_safe(trans, fs_info, bytenr,
Zygo Blaxellc995ab32017-09-22 13:58:45 -04001491 time_seq, roots, ignore_offset);
Josef Bacik9e351cc2014-03-13 15:42:13 -04001492 if (!trans)
1493 up_read(&fs_info->commit_root_sem);
1494 return ret;
1495}
1496
Mark Fasheh2c2ed5a2015-05-19 12:49:50 -07001497/**
1498 * btrfs_check_shared - tell us whether an extent is shared
1499 *
Mark Fasheh2c2ed5a2015-05-19 12:49:50 -07001500 * btrfs_check_shared uses the backref walking code but will short
1501 * circuit as soon as it finds a root or inode that doesn't match the
1502 * one passed in. This provides a significant performance benefit for
1503 * callers (such as fiemap) which want to know whether the extent is
1504 * shared but do not need a ref count.
1505 *
Filipe Manana03628cd2019-04-15 14:50:51 +01001506 * This attempts to attach to the running transaction in order to account for
1507 * delayed refs, but continues on even when no running transaction exists.
Edmund Nadolskibb739cf2017-06-28 21:56:58 -06001508 *
Mark Fasheh2c2ed5a2015-05-19 12:49:50 -07001509 * Return: 0 if extent is not shared, 1 if it is shared, < 0 on error.
1510 */
David Sterba5911c8f2019-05-15 15:31:04 +02001511int btrfs_check_shared(struct btrfs_root *root, u64 inum, u64 bytenr,
1512 struct ulist *roots, struct ulist *tmp)
Josef Bacikdc046b12014-09-10 16:20:45 -04001513{
Edmund Nadolskibb739cf2017-06-28 21:56:58 -06001514 struct btrfs_fs_info *fs_info = root->fs_info;
1515 struct btrfs_trans_handle *trans;
Josef Bacikdc046b12014-09-10 16:20:45 -04001516 struct ulist_iterator uiter;
1517 struct ulist_node *node;
David Sterba3284da72015-02-25 15:47:32 +01001518 struct seq_list elem = SEQ_LIST_INIT(elem);
Josef Bacikdc046b12014-09-10 16:20:45 -04001519 int ret = 0;
Edmund Nadolski3ec4d322017-07-12 16:20:10 -06001520 struct share_check shared = {
Misono Tomohiro4fd786e2018-08-06 14:25:24 +09001521 .root_objectid = root->root_key.objectid,
Edmund Nadolski3ec4d322017-07-12 16:20:10 -06001522 .inum = inum,
1523 .share_count = 0,
1524 };
Josef Bacikdc046b12014-09-10 16:20:45 -04001525
David Sterba5911c8f2019-05-15 15:31:04 +02001526 ulist_init(roots);
1527 ulist_init(tmp);
Josef Bacikdc046b12014-09-10 16:20:45 -04001528
Filipe Mananaa6d155d2019-07-29 09:37:10 +01001529 trans = btrfs_join_transaction_nostart(root);
Edmund Nadolskibb739cf2017-06-28 21:56:58 -06001530 if (IS_ERR(trans)) {
Filipe Manana03628cd2019-04-15 14:50:51 +01001531 if (PTR_ERR(trans) != -ENOENT && PTR_ERR(trans) != -EROFS) {
1532 ret = PTR_ERR(trans);
1533 goto out;
1534 }
Edmund Nadolskibb739cf2017-06-28 21:56:58 -06001535 trans = NULL;
Josef Bacikdc046b12014-09-10 16:20:45 -04001536 down_read(&fs_info->commit_root_sem);
Edmund Nadolskibb739cf2017-06-28 21:56:58 -06001537 } else {
1538 btrfs_get_tree_mod_seq(fs_info, &elem);
1539 }
1540
Josef Bacikdc046b12014-09-10 16:20:45 -04001541 ULIST_ITER_INIT(&uiter);
1542 while (1) {
1543 ret = find_parent_nodes(trans, fs_info, bytenr, elem.seq, tmp,
Zygo Blaxellc995ab32017-09-22 13:58:45 -04001544 roots, NULL, &shared, false);
Josef Bacikdc046b12014-09-10 16:20:45 -04001545 if (ret == BACKREF_FOUND_SHARED) {
Mark Fasheh2c2ed5a2015-05-19 12:49:50 -07001546 /* this is the only condition under which we return 1 */
Josef Bacikdc046b12014-09-10 16:20:45 -04001547 ret = 1;
1548 break;
1549 }
1550 if (ret < 0 && ret != -ENOENT)
1551 break;
Mark Fasheh2c2ed5a2015-05-19 12:49:50 -07001552 ret = 0;
Josef Bacikdc046b12014-09-10 16:20:45 -04001553 node = ulist_next(tmp, &uiter);
1554 if (!node)
1555 break;
1556 bytenr = node->val;
Edmund Nadolski18bf5912018-03-14 09:03:11 -06001557 shared.share_count = 0;
Josef Bacikdc046b12014-09-10 16:20:45 -04001558 cond_resched();
1559 }
Edmund Nadolskibb739cf2017-06-28 21:56:58 -06001560
1561 if (trans) {
Josef Bacikdc046b12014-09-10 16:20:45 -04001562 btrfs_put_tree_mod_seq(fs_info, &elem);
Edmund Nadolskibb739cf2017-06-28 21:56:58 -06001563 btrfs_end_transaction(trans);
1564 } else {
Josef Bacikdc046b12014-09-10 16:20:45 -04001565 up_read(&fs_info->commit_root_sem);
Edmund Nadolskibb739cf2017-06-28 21:56:58 -06001566 }
Filipe Manana03628cd2019-04-15 14:50:51 +01001567out:
David Sterba5911c8f2019-05-15 15:31:04 +02001568 ulist_release(roots);
1569 ulist_release(tmp);
Josef Bacikdc046b12014-09-10 16:20:45 -04001570 return ret;
1571}
1572
Mark Fashehf1863732012-08-08 11:32:27 -07001573int btrfs_find_one_extref(struct btrfs_root *root, u64 inode_objectid,
1574 u64 start_off, struct btrfs_path *path,
1575 struct btrfs_inode_extref **ret_extref,
1576 u64 *found_off)
1577{
1578 int ret, slot;
1579 struct btrfs_key key;
1580 struct btrfs_key found_key;
1581 struct btrfs_inode_extref *extref;
Jeff Mahoney73980be2017-06-28 21:56:55 -06001582 const struct extent_buffer *leaf;
Mark Fashehf1863732012-08-08 11:32:27 -07001583 unsigned long ptr;
1584
1585 key.objectid = inode_objectid;
David Sterba962a2982014-06-04 18:41:45 +02001586 key.type = BTRFS_INODE_EXTREF_KEY;
Mark Fashehf1863732012-08-08 11:32:27 -07001587 key.offset = start_off;
1588
1589 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1590 if (ret < 0)
1591 return ret;
1592
1593 while (1) {
1594 leaf = path->nodes[0];
1595 slot = path->slots[0];
1596 if (slot >= btrfs_header_nritems(leaf)) {
1597 /*
1598 * If the item at offset is not found,
1599 * btrfs_search_slot will point us to the slot
1600 * where it should be inserted. In our case
1601 * that will be the slot directly before the
1602 * next INODE_REF_KEY_V2 item. In the case
1603 * that we're pointing to the last slot in a
1604 * leaf, we must move one leaf over.
1605 */
1606 ret = btrfs_next_leaf(root, path);
1607 if (ret) {
1608 if (ret >= 1)
1609 ret = -ENOENT;
1610 break;
1611 }
1612 continue;
1613 }
1614
1615 btrfs_item_key_to_cpu(leaf, &found_key, slot);
1616
1617 /*
1618 * Check that we're still looking at an extended ref key for
1619 * this particular objectid. If we have different
1620 * objectid or type then there are no more to be found
1621 * in the tree and we can exit.
1622 */
1623 ret = -ENOENT;
1624 if (found_key.objectid != inode_objectid)
1625 break;
David Sterba962a2982014-06-04 18:41:45 +02001626 if (found_key.type != BTRFS_INODE_EXTREF_KEY)
Mark Fashehf1863732012-08-08 11:32:27 -07001627 break;
1628
1629 ret = 0;
1630 ptr = btrfs_item_ptr_offset(leaf, path->slots[0]);
1631 extref = (struct btrfs_inode_extref *)ptr;
1632 *ret_extref = extref;
1633 if (found_off)
1634 *found_off = found_key.offset;
1635 break;
1636 }
1637
1638 return ret;
1639}
1640
Eric Sandeen48a3b632013-04-25 20:41:01 +00001641/*
1642 * this iterates to turn a name (from iref/extref) into a full filesystem path.
1643 * Elements of the path are separated by '/' and the path is guaranteed to be
1644 * 0-terminated. the path is only given within the current file system.
1645 * Therefore, it never starts with a '/'. the caller is responsible to provide
1646 * "size" bytes in "dest". the dest buffer will be filled backwards. finally,
1647 * the start point of the resulting string is returned. this pointer is within
1648 * dest, normally.
1649 * in case the path buffer would overflow, the pointer is decremented further
1650 * as if output was written to the buffer, though no more output is actually
1651 * generated. that way, the caller can determine how much space would be
1652 * required for the path to fit into the buffer. in that case, the returned
1653 * value will be smaller than dest. callers must check this!
1654 */
Jan Schmidt96b5bd72012-10-15 08:30:45 +00001655char *btrfs_ref_to_path(struct btrfs_root *fs_root, struct btrfs_path *path,
1656 u32 name_len, unsigned long name_off,
1657 struct extent_buffer *eb_in, u64 parent,
1658 char *dest, u32 size)
Jan Schmidta542ad12011-06-13 19:52:59 +02001659{
Jan Schmidta542ad12011-06-13 19:52:59 +02001660 int slot;
1661 u64 next_inum;
1662 int ret;
Gabriel de Perthuis661bec62012-10-10 08:50:47 -06001663 s64 bytes_left = ((s64)size) - 1;
Jan Schmidta542ad12011-06-13 19:52:59 +02001664 struct extent_buffer *eb = eb_in;
1665 struct btrfs_key found_key;
Jan Schmidtb916a592012-04-13 12:28:08 +02001666 int leave_spinning = path->leave_spinning;
Mark Fashehd24bec32012-08-08 11:33:54 -07001667 struct btrfs_inode_ref *iref;
Jan Schmidta542ad12011-06-13 19:52:59 +02001668
1669 if (bytes_left >= 0)
1670 dest[bytes_left] = '\0';
1671
Jan Schmidtb916a592012-04-13 12:28:08 +02001672 path->leave_spinning = 1;
Jan Schmidta542ad12011-06-13 19:52:59 +02001673 while (1) {
Mark Fashehd24bec32012-08-08 11:33:54 -07001674 bytes_left -= name_len;
Jan Schmidta542ad12011-06-13 19:52:59 +02001675 if (bytes_left >= 0)
1676 read_extent_buffer(eb, dest + bytes_left,
Mark Fashehd24bec32012-08-08 11:33:54 -07001677 name_off, name_len);
Jan Schmidtb916a592012-04-13 12:28:08 +02001678 if (eb != eb_in) {
Filipe Manana0c0fe3b2016-02-03 19:17:27 +00001679 if (!path->skip_locking)
1680 btrfs_tree_read_unlock_blocking(eb);
Jan Schmidta542ad12011-06-13 19:52:59 +02001681 free_extent_buffer(eb);
Jan Schmidtb916a592012-04-13 12:28:08 +02001682 }
David Sterbac234a242015-01-02 19:03:17 +01001683 ret = btrfs_find_item(fs_root, path, parent, 0,
1684 BTRFS_INODE_REF_KEY, &found_key);
Jan Schmidt8f24b492012-02-08 16:01:01 +01001685 if (ret > 0)
1686 ret = -ENOENT;
Jan Schmidta542ad12011-06-13 19:52:59 +02001687 if (ret)
1688 break;
Mark Fashehd24bec32012-08-08 11:33:54 -07001689
Jan Schmidta542ad12011-06-13 19:52:59 +02001690 next_inum = found_key.offset;
1691
1692 /* regular exit ahead */
1693 if (parent == next_inum)
1694 break;
1695
1696 slot = path->slots[0];
1697 eb = path->nodes[0];
1698 /* make sure we can use eb after releasing the path */
Jan Schmidtb916a592012-04-13 12:28:08 +02001699 if (eb != eb_in) {
Filipe Manana0c0fe3b2016-02-03 19:17:27 +00001700 if (!path->skip_locking)
David Sterba300aa892018-04-04 02:00:17 +02001701 btrfs_set_lock_blocking_read(eb);
Filipe Manana0c0fe3b2016-02-03 19:17:27 +00001702 path->nodes[0] = NULL;
1703 path->locks[0] = 0;
Jan Schmidtb916a592012-04-13 12:28:08 +02001704 }
Jan Schmidta542ad12011-06-13 19:52:59 +02001705 btrfs_release_path(path);
Jan Schmidta542ad12011-06-13 19:52:59 +02001706 iref = btrfs_item_ptr(eb, slot, struct btrfs_inode_ref);
Mark Fashehd24bec32012-08-08 11:33:54 -07001707
1708 name_len = btrfs_inode_ref_name_len(eb, iref);
1709 name_off = (unsigned long)(iref + 1);
1710
Jan Schmidta542ad12011-06-13 19:52:59 +02001711 parent = next_inum;
1712 --bytes_left;
1713 if (bytes_left >= 0)
1714 dest[bytes_left] = '/';
1715 }
1716
1717 btrfs_release_path(path);
Jan Schmidtb916a592012-04-13 12:28:08 +02001718 path->leave_spinning = leave_spinning;
Jan Schmidta542ad12011-06-13 19:52:59 +02001719
1720 if (ret)
1721 return ERR_PTR(ret);
1722
1723 return dest + bytes_left;
1724}
1725
1726/*
1727 * this makes the path point to (logical EXTENT_ITEM *)
1728 * returns BTRFS_EXTENT_FLAG_DATA for data, BTRFS_EXTENT_FLAG_TREE_BLOCK for
1729 * tree blocks and <0 on error.
1730 */
1731int extent_from_logical(struct btrfs_fs_info *fs_info, u64 logical,
Liu Bo69917e42012-09-07 20:01:28 -06001732 struct btrfs_path *path, struct btrfs_key *found_key,
1733 u64 *flags_ret)
Jan Schmidta542ad12011-06-13 19:52:59 +02001734{
1735 int ret;
1736 u64 flags;
Josef Bacik261c84b2013-06-28 13:11:22 -04001737 u64 size = 0;
Jan Schmidta542ad12011-06-13 19:52:59 +02001738 u32 item_size;
Jeff Mahoney73980be2017-06-28 21:56:55 -06001739 const struct extent_buffer *eb;
Jan Schmidta542ad12011-06-13 19:52:59 +02001740 struct btrfs_extent_item *ei;
1741 struct btrfs_key key;
1742
Josef Bacik261c84b2013-06-28 13:11:22 -04001743 if (btrfs_fs_incompat(fs_info, SKINNY_METADATA))
1744 key.type = BTRFS_METADATA_ITEM_KEY;
1745 else
1746 key.type = BTRFS_EXTENT_ITEM_KEY;
Jan Schmidta542ad12011-06-13 19:52:59 +02001747 key.objectid = logical;
1748 key.offset = (u64)-1;
1749
1750 ret = btrfs_search_slot(NULL, fs_info->extent_root, &key, path, 0, 0);
1751 if (ret < 0)
1752 return ret;
Jan Schmidta542ad12011-06-13 19:52:59 +02001753
Wang Shilong850a8cd2014-02-06 20:02:29 +08001754 ret = btrfs_previous_extent_item(fs_info->extent_root, path, 0);
1755 if (ret) {
1756 if (ret > 0)
1757 ret = -ENOENT;
1758 return ret;
Josef Bacik580f0a62014-01-23 16:03:45 -05001759 }
Wang Shilong850a8cd2014-02-06 20:02:29 +08001760 btrfs_item_key_to_cpu(path->nodes[0], found_key, path->slots[0]);
Josef Bacik261c84b2013-06-28 13:11:22 -04001761 if (found_key->type == BTRFS_METADATA_ITEM_KEY)
Jeff Mahoneyda170662016-06-15 09:22:56 -04001762 size = fs_info->nodesize;
Josef Bacik261c84b2013-06-28 13:11:22 -04001763 else if (found_key->type == BTRFS_EXTENT_ITEM_KEY)
1764 size = found_key->offset;
1765
Josef Bacik580f0a62014-01-23 16:03:45 -05001766 if (found_key->objectid > logical ||
Josef Bacik261c84b2013-06-28 13:11:22 -04001767 found_key->objectid + size <= logical) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04001768 btrfs_debug(fs_info,
1769 "logical %llu is not within any extent", logical);
Jan Schmidta542ad12011-06-13 19:52:59 +02001770 return -ENOENT;
Jan Schmidt4692cf52011-12-02 14:56:41 +01001771 }
Jan Schmidta542ad12011-06-13 19:52:59 +02001772
1773 eb = path->nodes[0];
1774 item_size = btrfs_item_size_nr(eb, path->slots[0]);
1775 BUG_ON(item_size < sizeof(*ei));
1776
1777 ei = btrfs_item_ptr(eb, path->slots[0], struct btrfs_extent_item);
1778 flags = btrfs_extent_flags(eb, ei);
1779
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04001780 btrfs_debug(fs_info,
1781 "logical %llu is at position %llu within the extent (%llu EXTENT_ITEM %llu) flags %#llx size %u",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02001782 logical, logical - found_key->objectid, found_key->objectid,
1783 found_key->offset, flags, item_size);
Liu Bo69917e42012-09-07 20:01:28 -06001784
1785 WARN_ON(!flags_ret);
1786 if (flags_ret) {
1787 if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK)
1788 *flags_ret = BTRFS_EXTENT_FLAG_TREE_BLOCK;
1789 else if (flags & BTRFS_EXTENT_FLAG_DATA)
1790 *flags_ret = BTRFS_EXTENT_FLAG_DATA;
1791 else
Arnd Bergmann290342f2019-03-25 14:02:25 +01001792 BUG();
Liu Bo69917e42012-09-07 20:01:28 -06001793 return 0;
1794 }
Jan Schmidta542ad12011-06-13 19:52:59 +02001795
1796 return -EIO;
1797}
1798
1799/*
1800 * helper function to iterate extent inline refs. ptr must point to a 0 value
1801 * for the first call and may be modified. it is used to track state.
1802 * if more refs exist, 0 is returned and the next call to
Jeff Mahoneye0c476b2017-06-28 21:56:57 -06001803 * get_extent_inline_ref must pass the modified ptr parameter to get the
Jan Schmidta542ad12011-06-13 19:52:59 +02001804 * next ref. after the last ref was processed, 1 is returned.
1805 * returns <0 on error
1806 */
Jeff Mahoneye0c476b2017-06-28 21:56:57 -06001807static int get_extent_inline_ref(unsigned long *ptr,
1808 const struct extent_buffer *eb,
1809 const struct btrfs_key *key,
1810 const struct btrfs_extent_item *ei,
1811 u32 item_size,
1812 struct btrfs_extent_inline_ref **out_eiref,
1813 int *out_type)
Jan Schmidta542ad12011-06-13 19:52:59 +02001814{
1815 unsigned long end;
1816 u64 flags;
1817 struct btrfs_tree_block_info *info;
1818
1819 if (!*ptr) {
1820 /* first call */
1821 flags = btrfs_extent_flags(eb, ei);
1822 if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK) {
Liu Bo6eda71d2014-06-09 10:54:07 +08001823 if (key->type == BTRFS_METADATA_ITEM_KEY) {
1824 /* a skinny metadata extent */
1825 *out_eiref =
1826 (struct btrfs_extent_inline_ref *)(ei + 1);
1827 } else {
1828 WARN_ON(key->type != BTRFS_EXTENT_ITEM_KEY);
1829 info = (struct btrfs_tree_block_info *)(ei + 1);
1830 *out_eiref =
1831 (struct btrfs_extent_inline_ref *)(info + 1);
1832 }
Jan Schmidta542ad12011-06-13 19:52:59 +02001833 } else {
1834 *out_eiref = (struct btrfs_extent_inline_ref *)(ei + 1);
1835 }
1836 *ptr = (unsigned long)*out_eiref;
Liu Bocd857dd2014-06-08 19:04:13 +08001837 if ((unsigned long)(*ptr) >= (unsigned long)ei + item_size)
Jan Schmidta542ad12011-06-13 19:52:59 +02001838 return -ENOENT;
1839 }
1840
1841 end = (unsigned long)ei + item_size;
Liu Bo6eda71d2014-06-09 10:54:07 +08001842 *out_eiref = (struct btrfs_extent_inline_ref *)(*ptr);
Liu Bo3de28d52017-08-18 15:15:19 -06001843 *out_type = btrfs_get_extent_inline_ref_type(eb, *out_eiref,
1844 BTRFS_REF_TYPE_ANY);
1845 if (*out_type == BTRFS_REF_TYPE_INVALID)
Su Yueaf431dc2018-06-22 16:18:01 +08001846 return -EUCLEAN;
Jan Schmidta542ad12011-06-13 19:52:59 +02001847
1848 *ptr += btrfs_extent_inline_ref_size(*out_type);
1849 WARN_ON(*ptr > end);
1850 if (*ptr == end)
1851 return 1; /* last */
1852
1853 return 0;
1854}
1855
1856/*
1857 * reads the tree block backref for an extent. tree level and root are returned
1858 * through out_level and out_root. ptr must point to a 0 value for the first
Jeff Mahoneye0c476b2017-06-28 21:56:57 -06001859 * call and may be modified (see get_extent_inline_ref comment).
Jan Schmidta542ad12011-06-13 19:52:59 +02001860 * returns 0 if data was provided, 1 if there was no more data to provide or
1861 * <0 on error.
1862 */
1863int tree_backref_for_extent(unsigned long *ptr, struct extent_buffer *eb,
Liu Bo6eda71d2014-06-09 10:54:07 +08001864 struct btrfs_key *key, struct btrfs_extent_item *ei,
1865 u32 item_size, u64 *out_root, u8 *out_level)
Jan Schmidta542ad12011-06-13 19:52:59 +02001866{
1867 int ret;
1868 int type;
Jan Schmidta542ad12011-06-13 19:52:59 +02001869 struct btrfs_extent_inline_ref *eiref;
1870
1871 if (*ptr == (unsigned long)-1)
1872 return 1;
1873
1874 while (1) {
Jeff Mahoneye0c476b2017-06-28 21:56:57 -06001875 ret = get_extent_inline_ref(ptr, eb, key, ei, item_size,
Liu Bo6eda71d2014-06-09 10:54:07 +08001876 &eiref, &type);
Jan Schmidta542ad12011-06-13 19:52:59 +02001877 if (ret < 0)
1878 return ret;
1879
1880 if (type == BTRFS_TREE_BLOCK_REF_KEY ||
1881 type == BTRFS_SHARED_BLOCK_REF_KEY)
1882 break;
1883
1884 if (ret == 1)
1885 return 1;
1886 }
1887
1888 /* we can treat both ref types equally here */
Jan Schmidta542ad12011-06-13 19:52:59 +02001889 *out_root = btrfs_extent_inline_ref_offset(eb, eiref);
Filipe Mananaa1317f42014-12-15 16:04:42 +00001890
1891 if (key->type == BTRFS_EXTENT_ITEM_KEY) {
1892 struct btrfs_tree_block_info *info;
1893
1894 info = (struct btrfs_tree_block_info *)(ei + 1);
1895 *out_level = btrfs_tree_block_level(eb, info);
1896 } else {
1897 ASSERT(key->type == BTRFS_METADATA_ITEM_KEY);
1898 *out_level = (u8)key->offset;
1899 }
Jan Schmidta542ad12011-06-13 19:52:59 +02001900
1901 if (ret == 1)
1902 *ptr = (unsigned long)-1;
1903
1904 return 0;
1905}
1906
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04001907static int iterate_leaf_refs(struct btrfs_fs_info *fs_info,
1908 struct extent_inode_elem *inode_list,
1909 u64 root, u64 extent_item_objectid,
1910 iterate_extent_inodes_t *iterate, void *ctx)
Jan Schmidta542ad12011-06-13 19:52:59 +02001911{
Jan Schmidt976b1902012-05-17 16:43:03 +02001912 struct extent_inode_elem *eie;
Jan Schmidt4692cf52011-12-02 14:56:41 +01001913 int ret = 0;
Jan Schmidta542ad12011-06-13 19:52:59 +02001914
Jan Schmidt976b1902012-05-17 16:43:03 +02001915 for (eie = inode_list; eie; eie = eie->next) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04001916 btrfs_debug(fs_info,
1917 "ref for %llu resolved, key (%llu EXTEND_DATA %llu), root %llu",
1918 extent_item_objectid, eie->inum,
1919 eie->offset, root);
Jan Schmidt976b1902012-05-17 16:43:03 +02001920 ret = iterate(eie->inum, eie->offset, root, ctx);
Jan Schmidt4692cf52011-12-02 14:56:41 +01001921 if (ret) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04001922 btrfs_debug(fs_info,
1923 "stopping iteration for %llu due to ret=%d",
1924 extent_item_objectid, ret);
Jan Schmidt4692cf52011-12-02 14:56:41 +01001925 break;
1926 }
Jan Schmidta542ad12011-06-13 19:52:59 +02001927 }
1928
Jan Schmidta542ad12011-06-13 19:52:59 +02001929 return ret;
1930}
1931
1932/*
1933 * calls iterate() for every inode that references the extent identified by
Jan Schmidt4692cf52011-12-02 14:56:41 +01001934 * the given parameters.
Jan Schmidta542ad12011-06-13 19:52:59 +02001935 * when the iterator function returns a non-zero value, iteration stops.
1936 */
1937int iterate_extent_inodes(struct btrfs_fs_info *fs_info,
Jan Schmidt4692cf52011-12-02 14:56:41 +01001938 u64 extent_item_objectid, u64 extent_item_pos,
Jan Schmidt7a3ae2f2012-03-23 17:32:28 +01001939 int search_commit_root,
Zygo Blaxellc995ab32017-09-22 13:58:45 -04001940 iterate_extent_inodes_t *iterate, void *ctx,
1941 bool ignore_offset)
Jan Schmidta542ad12011-06-13 19:52:59 +02001942{
Jan Schmidta542ad12011-06-13 19:52:59 +02001943 int ret;
Josef Bacikda61d312013-06-12 16:20:08 -04001944 struct btrfs_trans_handle *trans = NULL;
Jan Schmidt7a3ae2f2012-03-23 17:32:28 +01001945 struct ulist *refs = NULL;
1946 struct ulist *roots = NULL;
Jan Schmidt4692cf52011-12-02 14:56:41 +01001947 struct ulist_node *ref_node = NULL;
1948 struct ulist_node *root_node = NULL;
David Sterba3284da72015-02-25 15:47:32 +01001949 struct seq_list tree_mod_seq_elem = SEQ_LIST_INIT(tree_mod_seq_elem);
Jan Schmidtcd1b4132012-05-22 14:56:50 +02001950 struct ulist_iterator ref_uiter;
1951 struct ulist_iterator root_uiter;
Jan Schmidta542ad12011-06-13 19:52:59 +02001952
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04001953 btrfs_debug(fs_info, "resolving all inodes for extent %llu",
Jan Schmidt4692cf52011-12-02 14:56:41 +01001954 extent_item_objectid);
1955
Josef Bacikda61d312013-06-12 16:20:08 -04001956 if (!search_commit_root) {
Filipe Mananabfc61c32019-04-17 11:30:30 +01001957 trans = btrfs_attach_transaction(fs_info->extent_root);
1958 if (IS_ERR(trans)) {
1959 if (PTR_ERR(trans) != -ENOENT &&
1960 PTR_ERR(trans) != -EROFS)
1961 return PTR_ERR(trans);
1962 trans = NULL;
1963 }
Jan Schmidt7a3ae2f2012-03-23 17:32:28 +01001964 }
Jan Schmidt4692cf52011-12-02 14:56:41 +01001965
Filipe Mananabfc61c32019-04-17 11:30:30 +01001966 if (trans)
1967 btrfs_get_tree_mod_seq(fs_info, &tree_mod_seq_elem);
1968 else
1969 down_read(&fs_info->commit_root_sem);
1970
Jan Schmidt4692cf52011-12-02 14:56:41 +01001971 ret = btrfs_find_all_leafs(trans, fs_info, extent_item_objectid,
Jan Schmidt097b8a72012-06-21 11:08:04 +02001972 tree_mod_seq_elem.seq, &refs,
Zygo Blaxellc995ab32017-09-22 13:58:45 -04001973 &extent_item_pos, ignore_offset);
Jan Schmidt4692cf52011-12-02 14:56:41 +01001974 if (ret)
1975 goto out;
1976
Jan Schmidtcd1b4132012-05-22 14:56:50 +02001977 ULIST_ITER_INIT(&ref_uiter);
1978 while (!ret && (ref_node = ulist_next(refs, &ref_uiter))) {
Jeff Mahoneye0c476b2017-06-28 21:56:57 -06001979 ret = btrfs_find_all_roots_safe(trans, fs_info, ref_node->val,
Zygo Blaxellc995ab32017-09-22 13:58:45 -04001980 tree_mod_seq_elem.seq, &roots,
1981 ignore_offset);
Jan Schmidt4692cf52011-12-02 14:56:41 +01001982 if (ret)
Jan Schmidta542ad12011-06-13 19:52:59 +02001983 break;
Jan Schmidtcd1b4132012-05-22 14:56:50 +02001984 ULIST_ITER_INIT(&root_uiter);
1985 while (!ret && (root_node = ulist_next(roots, &root_uiter))) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04001986 btrfs_debug(fs_info,
1987 "root %llu references leaf %llu, data list %#llx",
1988 root_node->val, ref_node->val,
1989 ref_node->aux);
1990 ret = iterate_leaf_refs(fs_info,
1991 (struct extent_inode_elem *)
Jan Schmidt995e01b2012-08-13 02:52:38 -06001992 (uintptr_t)ref_node->aux,
1993 root_node->val,
1994 extent_item_objectid,
1995 iterate, ctx);
Jan Schmidta542ad12011-06-13 19:52:59 +02001996 }
Jan Schmidt976b1902012-05-17 16:43:03 +02001997 ulist_free(roots);
Jan Schmidta542ad12011-06-13 19:52:59 +02001998 }
1999
Jan Schmidt976b1902012-05-17 16:43:03 +02002000 free_leaf_list(refs);
Jan Schmidt4692cf52011-12-02 14:56:41 +01002001out:
Filipe Mananabfc61c32019-04-17 11:30:30 +01002002 if (trans) {
Jan Schmidt8445f612012-05-16 18:36:03 +02002003 btrfs_put_tree_mod_seq(fs_info, &tree_mod_seq_elem);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002004 btrfs_end_transaction(trans);
Josef Bacik9e351cc2014-03-13 15:42:13 -04002005 } else {
2006 up_read(&fs_info->commit_root_sem);
Jan Schmidt7a3ae2f2012-03-23 17:32:28 +01002007 }
2008
Jan Schmidta542ad12011-06-13 19:52:59 +02002009 return ret;
2010}
2011
2012int iterate_inodes_from_logical(u64 logical, struct btrfs_fs_info *fs_info,
2013 struct btrfs_path *path,
Zygo Blaxellc995ab32017-09-22 13:58:45 -04002014 iterate_extent_inodes_t *iterate, void *ctx,
2015 bool ignore_offset)
Jan Schmidta542ad12011-06-13 19:52:59 +02002016{
2017 int ret;
Jan Schmidt4692cf52011-12-02 14:56:41 +01002018 u64 extent_item_pos;
Liu Bo69917e42012-09-07 20:01:28 -06002019 u64 flags = 0;
Jan Schmidta542ad12011-06-13 19:52:59 +02002020 struct btrfs_key found_key;
Jan Schmidt7a3ae2f2012-03-23 17:32:28 +01002021 int search_commit_root = path->search_commit_root;
Jan Schmidta542ad12011-06-13 19:52:59 +02002022
Liu Bo69917e42012-09-07 20:01:28 -06002023 ret = extent_from_logical(fs_info, logical, path, &found_key, &flags);
Jan Schmidt4692cf52011-12-02 14:56:41 +01002024 btrfs_release_path(path);
Jan Schmidta542ad12011-06-13 19:52:59 +02002025 if (ret < 0)
2026 return ret;
Liu Bo69917e42012-09-07 20:01:28 -06002027 if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK)
Stefan Behrens3627bf42012-08-01 04:28:01 -06002028 return -EINVAL;
Jan Schmidta542ad12011-06-13 19:52:59 +02002029
Jan Schmidt4692cf52011-12-02 14:56:41 +01002030 extent_item_pos = logical - found_key.objectid;
Jan Schmidt7a3ae2f2012-03-23 17:32:28 +01002031 ret = iterate_extent_inodes(fs_info, found_key.objectid,
2032 extent_item_pos, search_commit_root,
Zygo Blaxellc995ab32017-09-22 13:58:45 -04002033 iterate, ctx, ignore_offset);
Jan Schmidta542ad12011-06-13 19:52:59 +02002034
2035 return ret;
2036}
2037
Mark Fashehd24bec32012-08-08 11:33:54 -07002038typedef int (iterate_irefs_t)(u64 parent, u32 name_len, unsigned long name_off,
2039 struct extent_buffer *eb, void *ctx);
2040
2041static int iterate_inode_refs(u64 inum, struct btrfs_root *fs_root,
2042 struct btrfs_path *path,
2043 iterate_irefs_t *iterate, void *ctx)
Jan Schmidta542ad12011-06-13 19:52:59 +02002044{
Jan Schmidtaefc1eb2012-04-13 12:28:00 +02002045 int ret = 0;
Jan Schmidta542ad12011-06-13 19:52:59 +02002046 int slot;
2047 u32 cur;
2048 u32 len;
2049 u32 name_len;
2050 u64 parent = 0;
2051 int found = 0;
2052 struct extent_buffer *eb;
2053 struct btrfs_item *item;
2054 struct btrfs_inode_ref *iref;
2055 struct btrfs_key found_key;
2056
Jan Schmidtaefc1eb2012-04-13 12:28:00 +02002057 while (!ret) {
David Sterbac234a242015-01-02 19:03:17 +01002058 ret = btrfs_find_item(fs_root, path, inum,
2059 parent ? parent + 1 : 0, BTRFS_INODE_REF_KEY,
2060 &found_key);
2061
Jan Schmidta542ad12011-06-13 19:52:59 +02002062 if (ret < 0)
2063 break;
2064 if (ret) {
2065 ret = found ? 0 : -ENOENT;
2066 break;
2067 }
2068 ++found;
2069
2070 parent = found_key.offset;
2071 slot = path->slots[0];
Filipe David Borba Manana3fe81ce2013-12-15 12:43:58 +00002072 eb = btrfs_clone_extent_buffer(path->nodes[0]);
2073 if (!eb) {
2074 ret = -ENOMEM;
2075 break;
2076 }
Jan Schmidta542ad12011-06-13 19:52:59 +02002077 btrfs_release_path(path);
2078
Ross Kirkdd3cc162013-09-16 15:58:09 +01002079 item = btrfs_item_nr(slot);
Jan Schmidta542ad12011-06-13 19:52:59 +02002080 iref = btrfs_item_ptr(eb, slot, struct btrfs_inode_ref);
2081
2082 for (cur = 0; cur < btrfs_item_size(eb, item); cur += len) {
2083 name_len = btrfs_inode_ref_name_len(eb, iref);
2084 /* path must be released before calling iterate()! */
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002085 btrfs_debug(fs_root->fs_info,
2086 "following ref at offset %u for inode %llu in tree %llu",
Misono Tomohiro4fd786e2018-08-06 14:25:24 +09002087 cur, found_key.objectid,
2088 fs_root->root_key.objectid);
Mark Fashehd24bec32012-08-08 11:33:54 -07002089 ret = iterate(parent, name_len,
2090 (unsigned long)(iref + 1), eb, ctx);
Jan Schmidtaefc1eb2012-04-13 12:28:00 +02002091 if (ret)
Jan Schmidta542ad12011-06-13 19:52:59 +02002092 break;
Jan Schmidta542ad12011-06-13 19:52:59 +02002093 len = sizeof(*iref) + name_len;
2094 iref = (struct btrfs_inode_ref *)((char *)iref + len);
2095 }
2096 free_extent_buffer(eb);
2097 }
2098
2099 btrfs_release_path(path);
2100
2101 return ret;
2102}
2103
Mark Fashehd24bec32012-08-08 11:33:54 -07002104static int iterate_inode_extrefs(u64 inum, struct btrfs_root *fs_root,
2105 struct btrfs_path *path,
2106 iterate_irefs_t *iterate, void *ctx)
2107{
2108 int ret;
2109 int slot;
2110 u64 offset = 0;
2111 u64 parent;
2112 int found = 0;
2113 struct extent_buffer *eb;
2114 struct btrfs_inode_extref *extref;
Mark Fashehd24bec32012-08-08 11:33:54 -07002115 u32 item_size;
2116 u32 cur_offset;
2117 unsigned long ptr;
2118
2119 while (1) {
2120 ret = btrfs_find_one_extref(fs_root, inum, offset, path, &extref,
2121 &offset);
2122 if (ret < 0)
2123 break;
2124 if (ret) {
2125 ret = found ? 0 : -ENOENT;
2126 break;
2127 }
2128 ++found;
2129
2130 slot = path->slots[0];
Filipe David Borba Manana3fe81ce2013-12-15 12:43:58 +00002131 eb = btrfs_clone_extent_buffer(path->nodes[0]);
2132 if (!eb) {
2133 ret = -ENOMEM;
2134 break;
2135 }
Mark Fashehd24bec32012-08-08 11:33:54 -07002136 btrfs_release_path(path);
2137
Chris Mason2849a852015-10-13 14:06:48 -04002138 item_size = btrfs_item_size_nr(eb, slot);
2139 ptr = btrfs_item_ptr_offset(eb, slot);
Mark Fashehd24bec32012-08-08 11:33:54 -07002140 cur_offset = 0;
2141
2142 while (cur_offset < item_size) {
2143 u32 name_len;
2144
2145 extref = (struct btrfs_inode_extref *)(ptr + cur_offset);
2146 parent = btrfs_inode_extref_parent(eb, extref);
2147 name_len = btrfs_inode_extref_name_len(eb, extref);
2148 ret = iterate(parent, name_len,
2149 (unsigned long)&extref->name, eb, ctx);
2150 if (ret)
2151 break;
2152
Chris Mason2849a852015-10-13 14:06:48 -04002153 cur_offset += btrfs_inode_extref_name_len(eb, extref);
Mark Fashehd24bec32012-08-08 11:33:54 -07002154 cur_offset += sizeof(*extref);
2155 }
Mark Fashehd24bec32012-08-08 11:33:54 -07002156 free_extent_buffer(eb);
2157
2158 offset++;
2159 }
2160
2161 btrfs_release_path(path);
2162
2163 return ret;
2164}
2165
2166static int iterate_irefs(u64 inum, struct btrfs_root *fs_root,
2167 struct btrfs_path *path, iterate_irefs_t *iterate,
2168 void *ctx)
2169{
2170 int ret;
2171 int found_refs = 0;
2172
2173 ret = iterate_inode_refs(inum, fs_root, path, iterate, ctx);
2174 if (!ret)
2175 ++found_refs;
2176 else if (ret != -ENOENT)
2177 return ret;
2178
2179 ret = iterate_inode_extrefs(inum, fs_root, path, iterate, ctx);
2180 if (ret == -ENOENT && found_refs)
2181 return 0;
2182
2183 return ret;
2184}
2185
Jan Schmidta542ad12011-06-13 19:52:59 +02002186/*
2187 * returns 0 if the path could be dumped (probably truncated)
2188 * returns <0 in case of an error
2189 */
Mark Fashehd24bec32012-08-08 11:33:54 -07002190static int inode_to_path(u64 inum, u32 name_len, unsigned long name_off,
2191 struct extent_buffer *eb, void *ctx)
Jan Schmidta542ad12011-06-13 19:52:59 +02002192{
2193 struct inode_fs_paths *ipath = ctx;
2194 char *fspath;
2195 char *fspath_min;
2196 int i = ipath->fspath->elem_cnt;
2197 const int s_ptr = sizeof(char *);
2198 u32 bytes_left;
2199
2200 bytes_left = ipath->fspath->bytes_left > s_ptr ?
2201 ipath->fspath->bytes_left - s_ptr : 0;
2202
Chris Mason740c3d22011-11-02 15:48:34 -04002203 fspath_min = (char *)ipath->fspath->val + (i + 1) * s_ptr;
Jan Schmidt96b5bd72012-10-15 08:30:45 +00002204 fspath = btrfs_ref_to_path(ipath->fs_root, ipath->btrfs_path, name_len,
2205 name_off, eb, inum, fspath_min, bytes_left);
Jan Schmidta542ad12011-06-13 19:52:59 +02002206 if (IS_ERR(fspath))
2207 return PTR_ERR(fspath);
2208
2209 if (fspath > fspath_min) {
Jeff Mahoney745c4d82011-11-20 07:31:57 -05002210 ipath->fspath->val[i] = (u64)(unsigned long)fspath;
Jan Schmidta542ad12011-06-13 19:52:59 +02002211 ++ipath->fspath->elem_cnt;
2212 ipath->fspath->bytes_left = fspath - fspath_min;
2213 } else {
2214 ++ipath->fspath->elem_missed;
2215 ipath->fspath->bytes_missing += fspath_min - fspath;
2216 ipath->fspath->bytes_left = 0;
2217 }
2218
2219 return 0;
2220}
2221
2222/*
2223 * this dumps all file system paths to the inode into the ipath struct, provided
2224 * is has been created large enough. each path is zero-terminated and accessed
Chris Mason740c3d22011-11-02 15:48:34 -04002225 * from ipath->fspath->val[i].
Jan Schmidta542ad12011-06-13 19:52:59 +02002226 * when it returns, there are ipath->fspath->elem_cnt number of paths available
Chris Mason740c3d22011-11-02 15:48:34 -04002227 * in ipath->fspath->val[]. when the allocated space wasn't sufficient, the
Nicholas D Steeves01327612016-05-19 21:18:45 -04002228 * number of missed paths is recorded in ipath->fspath->elem_missed, otherwise,
Jan Schmidta542ad12011-06-13 19:52:59 +02002229 * it's zero. ipath->fspath->bytes_missing holds the number of bytes that would
2230 * have been needed to return all paths.
2231 */
2232int paths_from_inode(u64 inum, struct inode_fs_paths *ipath)
2233{
2234 return iterate_irefs(inum, ipath->fs_root, ipath->btrfs_path,
Mark Fashehd24bec32012-08-08 11:33:54 -07002235 inode_to_path, ipath);
Jan Schmidta542ad12011-06-13 19:52:59 +02002236}
2237
Jan Schmidta542ad12011-06-13 19:52:59 +02002238struct btrfs_data_container *init_data_container(u32 total_bytes)
2239{
2240 struct btrfs_data_container *data;
2241 size_t alloc_bytes;
2242
2243 alloc_bytes = max_t(size_t, total_bytes, sizeof(*data));
David Sterbaf54de062017-05-31 19:32:09 +02002244 data = kvmalloc(alloc_bytes, GFP_KERNEL);
Jan Schmidta542ad12011-06-13 19:52:59 +02002245 if (!data)
2246 return ERR_PTR(-ENOMEM);
2247
2248 if (total_bytes >= sizeof(*data)) {
2249 data->bytes_left = total_bytes - sizeof(*data);
2250 data->bytes_missing = 0;
2251 } else {
2252 data->bytes_missing = sizeof(*data) - total_bytes;
2253 data->bytes_left = 0;
2254 }
2255
2256 data->elem_cnt = 0;
2257 data->elem_missed = 0;
2258
2259 return data;
2260}
2261
2262/*
2263 * allocates space to return multiple file system paths for an inode.
2264 * total_bytes to allocate are passed, note that space usable for actual path
2265 * information will be total_bytes - sizeof(struct inode_fs_paths).
2266 * the returned pointer must be freed with free_ipath() in the end.
2267 */
2268struct inode_fs_paths *init_ipath(s32 total_bytes, struct btrfs_root *fs_root,
2269 struct btrfs_path *path)
2270{
2271 struct inode_fs_paths *ifp;
2272 struct btrfs_data_container *fspath;
2273
2274 fspath = init_data_container(total_bytes);
2275 if (IS_ERR(fspath))
Misono Tomohiroafc69612018-07-26 10:22:58 +09002276 return ERR_CAST(fspath);
Jan Schmidta542ad12011-06-13 19:52:59 +02002277
David Sterbaf54de062017-05-31 19:32:09 +02002278 ifp = kmalloc(sizeof(*ifp), GFP_KERNEL);
Jan Schmidta542ad12011-06-13 19:52:59 +02002279 if (!ifp) {
David Sterbaf54de062017-05-31 19:32:09 +02002280 kvfree(fspath);
Jan Schmidta542ad12011-06-13 19:52:59 +02002281 return ERR_PTR(-ENOMEM);
2282 }
2283
2284 ifp->btrfs_path = path;
2285 ifp->fspath = fspath;
2286 ifp->fs_root = fs_root;
2287
2288 return ifp;
2289}
2290
2291void free_ipath(struct inode_fs_paths *ipath)
2292{
Jesper Juhl4735fb22012-04-12 22:47:52 +02002293 if (!ipath)
2294 return;
David Sterbaf54de062017-05-31 19:32:09 +02002295 kvfree(ipath->fspath);
Jan Schmidta542ad12011-06-13 19:52:59 +02002296 kfree(ipath);
2297}
Qu Wenruoa37f2322020-02-13 14:11:04 +08002298
2299struct btrfs_backref_iter *btrfs_backref_iter_alloc(
2300 struct btrfs_fs_info *fs_info, gfp_t gfp_flag)
2301{
2302 struct btrfs_backref_iter *ret;
2303
2304 ret = kzalloc(sizeof(*ret), gfp_flag);
2305 if (!ret)
2306 return NULL;
2307
2308 ret->path = btrfs_alloc_path();
2309 if (!ret) {
2310 kfree(ret);
2311 return NULL;
2312 }
2313
2314 /* Current backref iterator only supports iteration in commit root */
2315 ret->path->search_commit_root = 1;
2316 ret->path->skip_locking = 1;
2317 ret->fs_info = fs_info;
2318
2319 return ret;
2320}
2321
2322int btrfs_backref_iter_start(struct btrfs_backref_iter *iter, u64 bytenr)
2323{
2324 struct btrfs_fs_info *fs_info = iter->fs_info;
2325 struct btrfs_path *path = iter->path;
2326 struct btrfs_extent_item *ei;
2327 struct btrfs_key key;
2328 int ret;
2329
2330 key.objectid = bytenr;
2331 key.type = BTRFS_METADATA_ITEM_KEY;
2332 key.offset = (u64)-1;
2333 iter->bytenr = bytenr;
2334
2335 ret = btrfs_search_slot(NULL, fs_info->extent_root, &key, path, 0, 0);
2336 if (ret < 0)
2337 return ret;
2338 if (ret == 0) {
2339 ret = -EUCLEAN;
2340 goto release;
2341 }
2342 if (path->slots[0] == 0) {
2343 WARN_ON(IS_ENABLED(CONFIG_BTRFS_DEBUG));
2344 ret = -EUCLEAN;
2345 goto release;
2346 }
2347 path->slots[0]--;
2348
2349 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
2350 if ((key.type != BTRFS_EXTENT_ITEM_KEY &&
2351 key.type != BTRFS_METADATA_ITEM_KEY) || key.objectid != bytenr) {
2352 ret = -ENOENT;
2353 goto release;
2354 }
2355 memcpy(&iter->cur_key, &key, sizeof(key));
2356 iter->item_ptr = (u32)btrfs_item_ptr_offset(path->nodes[0],
2357 path->slots[0]);
2358 iter->end_ptr = (u32)(iter->item_ptr +
2359 btrfs_item_size_nr(path->nodes[0], path->slots[0]));
2360 ei = btrfs_item_ptr(path->nodes[0], path->slots[0],
2361 struct btrfs_extent_item);
2362
2363 /*
2364 * Only support iteration on tree backref yet.
2365 *
2366 * This is an extra precaution for non skinny-metadata, where
2367 * EXTENT_ITEM is also used for tree blocks, that we can only use
2368 * extent flags to determine if it's a tree block.
2369 */
2370 if (btrfs_extent_flags(path->nodes[0], ei) & BTRFS_EXTENT_FLAG_DATA) {
2371 ret = -ENOTSUPP;
2372 goto release;
2373 }
2374 iter->cur_ptr = (u32)(iter->item_ptr + sizeof(*ei));
2375
2376 /* If there is no inline backref, go search for keyed backref */
2377 if (iter->cur_ptr >= iter->end_ptr) {
2378 ret = btrfs_next_item(fs_info->extent_root, path);
2379
2380 /* No inline nor keyed ref */
2381 if (ret > 0) {
2382 ret = -ENOENT;
2383 goto release;
2384 }
2385 if (ret < 0)
2386 goto release;
2387
2388 btrfs_item_key_to_cpu(path->nodes[0], &iter->cur_key,
2389 path->slots[0]);
2390 if (iter->cur_key.objectid != bytenr ||
2391 (iter->cur_key.type != BTRFS_SHARED_BLOCK_REF_KEY &&
2392 iter->cur_key.type != BTRFS_TREE_BLOCK_REF_KEY)) {
2393 ret = -ENOENT;
2394 goto release;
2395 }
2396 iter->cur_ptr = (u32)btrfs_item_ptr_offset(path->nodes[0],
2397 path->slots[0]);
2398 iter->item_ptr = iter->cur_ptr;
2399 iter->end_ptr = (u32)(iter->item_ptr + btrfs_item_size_nr(
2400 path->nodes[0], path->slots[0]));
2401 }
2402
2403 return 0;
2404release:
2405 btrfs_backref_iter_release(iter);
2406 return ret;
2407}
Qu Wenruoc39c2dd2020-02-13 15:04:04 +08002408
2409/*
2410 * Go to the next backref item of current bytenr, can be either inlined or
2411 * keyed.
2412 *
2413 * Caller needs to check whether it's inline ref or not by iter->cur_key.
2414 *
2415 * Return 0 if we get next backref without problem.
2416 * Return >0 if there is no extra backref for this bytenr.
2417 * Return <0 if there is something wrong happened.
2418 */
2419int btrfs_backref_iter_next(struct btrfs_backref_iter *iter)
2420{
2421 struct extent_buffer *eb = btrfs_backref_get_eb(iter);
2422 struct btrfs_path *path = iter->path;
2423 struct btrfs_extent_inline_ref *iref;
2424 int ret;
2425 u32 size;
2426
2427 if (btrfs_backref_iter_is_inline_ref(iter)) {
2428 /* We're still inside the inline refs */
2429 ASSERT(iter->cur_ptr < iter->end_ptr);
2430
2431 if (btrfs_backref_has_tree_block_info(iter)) {
2432 /* First tree block info */
2433 size = sizeof(struct btrfs_tree_block_info);
2434 } else {
2435 /* Use inline ref type to determine the size */
2436 int type;
2437
2438 iref = (struct btrfs_extent_inline_ref *)
2439 ((unsigned long)iter->cur_ptr);
2440 type = btrfs_extent_inline_ref_type(eb, iref);
2441
2442 size = btrfs_extent_inline_ref_size(type);
2443 }
2444 iter->cur_ptr += size;
2445 if (iter->cur_ptr < iter->end_ptr)
2446 return 0;
2447
2448 /* All inline items iterated, fall through */
2449 }
2450
2451 /* We're at keyed items, there is no inline item, go to the next one */
2452 ret = btrfs_next_item(iter->fs_info->extent_root, iter->path);
2453 if (ret)
2454 return ret;
2455
2456 btrfs_item_key_to_cpu(path->nodes[0], &iter->cur_key, path->slots[0]);
2457 if (iter->cur_key.objectid != iter->bytenr ||
2458 (iter->cur_key.type != BTRFS_TREE_BLOCK_REF_KEY &&
2459 iter->cur_key.type != BTRFS_SHARED_BLOCK_REF_KEY))
2460 return 1;
2461 iter->item_ptr = (u32)btrfs_item_ptr_offset(path->nodes[0],
2462 path->slots[0]);
2463 iter->cur_ptr = iter->item_ptr;
2464 iter->end_ptr = iter->item_ptr + (u32)btrfs_item_size_nr(path->nodes[0],
2465 path->slots[0]);
2466 return 0;
2467}
Qu Wenruo584fb122020-03-03 13:14:41 +08002468
2469void btrfs_backref_init_cache(struct btrfs_fs_info *fs_info,
2470 struct btrfs_backref_cache *cache, int is_reloc)
2471{
2472 int i;
2473
2474 cache->rb_root = RB_ROOT;
2475 for (i = 0; i < BTRFS_MAX_LEVEL; i++)
2476 INIT_LIST_HEAD(&cache->pending[i]);
2477 INIT_LIST_HEAD(&cache->changed);
2478 INIT_LIST_HEAD(&cache->detached);
2479 INIT_LIST_HEAD(&cache->leaves);
2480 INIT_LIST_HEAD(&cache->pending_edge);
2481 INIT_LIST_HEAD(&cache->useless_node);
2482 cache->fs_info = fs_info;
2483 cache->is_reloc = is_reloc;
2484}
Qu Wenruob1818da2020-03-03 13:21:30 +08002485
2486struct btrfs_backref_node *btrfs_backref_alloc_node(
2487 struct btrfs_backref_cache *cache, u64 bytenr, int level)
2488{
2489 struct btrfs_backref_node *node;
2490
2491 ASSERT(level >= 0 && level < BTRFS_MAX_LEVEL);
2492 node = kzalloc(sizeof(*node), GFP_NOFS);
2493 if (!node)
2494 return node;
2495
2496 INIT_LIST_HEAD(&node->list);
2497 INIT_LIST_HEAD(&node->upper);
2498 INIT_LIST_HEAD(&node->lower);
2499 RB_CLEAR_NODE(&node->rb_node);
2500 cache->nr_nodes++;
2501 node->level = level;
2502 node->bytenr = bytenr;
2503
2504 return node;
2505}
Qu Wenruo47254d02020-03-03 13:22:57 +08002506
2507struct btrfs_backref_edge *btrfs_backref_alloc_edge(
2508 struct btrfs_backref_cache *cache)
2509{
2510 struct btrfs_backref_edge *edge;
2511
2512 edge = kzalloc(sizeof(*edge), GFP_NOFS);
2513 if (edge)
2514 cache->nr_edges++;
2515 return edge;
2516}