2018-04-04 01:23:33 +08:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2011-06-14 01:52:59 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2011 STRATO. All rights reserved.
|
|
|
|
*/
|
|
|
|
|
2017-06-01 01:32:09 +08:00
|
|
|
#include <linux/mm.h>
|
btrfs: fix check_shared for fiemap ioctl
Only in the case of different root_id or different object_id, check_shared
identified extent as the shared. However, If a extent was referred by
different offset of same file, it should also be identified as shared.
In addition, check_shared's loop scale is at least n^3, so if a extent
has too many references, even causes soft hang up.
First, add all delayed_ref to the ref_tree and calculate the unqiue_refs,
if the unique_refs is greater than one, return BACKREF_FOUND_SHARED.
Then individually add the on-disk reference(inline/keyed) to the ref_tree
and calculate the unique_refs of the ref_tree to check if the unique_refs
is greater than one.Because once there are two references to return
SHARED, so the time complexity is close to the constant.
Reported-by: Tsutomu Itoh <t-itoh@jp.fujitsu.com>
Signed-off-by: Lu Fengqi <lufq.fnst@cn.fujitsu.com>
Signed-off-by: David Sterba <dsterba@suse.com>
2016-06-13 09:36:46 +08:00
|
|
|
#include <linux/rbtree.h>
|
2017-07-13 06:20:08 +08:00
|
|
|
#include <trace/events/btrfs.h>
|
2011-06-14 01:52:59 +08:00
|
|
|
#include "ctree.h"
|
|
|
|
#include "disk-io.h"
|
|
|
|
#include "backref.h"
|
2011-11-24 01:55:04 +08:00
|
|
|
#include "ulist.h"
|
|
|
|
#include "transaction.h"
|
|
|
|
#include "delayed-ref.h"
|
2012-04-13 18:28:08 +08:00
|
|
|
#include "locking.h"
|
2011-06-14 01:52:59 +08:00
|
|
|
|
2014-09-11 04:20:45 +08:00
|
|
|
/* Just an arbitrary number so we can be sure this happened */
|
|
|
|
#define BACKREF_FOUND_SHARED 6
|
|
|
|
|
2012-05-17 22:43:03 +08:00
|
|
|
struct extent_inode_elem {
|
|
|
|
u64 inum;
|
|
|
|
u64 offset;
|
|
|
|
struct extent_inode_elem *next;
|
|
|
|
};
|
|
|
|
|
2017-06-29 11:56:55 +08:00
|
|
|
static int check_extent_in_eb(const struct btrfs_key *key,
|
|
|
|
const struct extent_buffer *eb,
|
|
|
|
const struct btrfs_file_extent_item *fi,
|
|
|
|
u64 extent_item_pos,
|
btrfs: add a flag to iterate_inodes_from_logical to find all extent refs for uncompressed extents
The LOGICAL_INO ioctl provides a backward mapping from extent bytenr and
offset (encoded as a single logical address) to a list of extent refs.
LOGICAL_INO complements TREE_SEARCH, which provides the forward mapping
(extent ref -> extent bytenr and offset, or logical address). These are
useful capabilities for programs that manipulate extents and extent
references from userspace (e.g. dedup and defrag utilities).
When the extents are uncompressed (and not encrypted and not other),
check_extent_in_eb performs filtering of the extent refs to remove any
extent refs which do not contain the same extent offset as the 'logical'
parameter's extent offset. This prevents LOGICAL_INO from returning
references to more than a single block.
To find the set of extent references to an uncompressed extent from [a, b),
userspace has to run a loop like this pseudocode:
for (i = a; i < b; ++i)
extent_ref_set += LOGICAL_INO(i);
At each iteration of the loop (up to 32768 iterations for a 128M extent),
data we are interested in is collected in the kernel, then deleted by
the filter in check_extent_in_eb.
When the extents are compressed (or encrypted or other), the 'logical'
parameter must be an extent bytenr (the 'a' parameter in the loop).
No filtering by extent offset is done (or possible?) so the result is
the complete set of extent refs for the entire extent. This removes
the need for the loop, since we get all the extent refs in one call.
Add an 'ignore_offset' argument to iterate_inodes_from_logical,
[...several levels of function call graph...], and check_extent_in_eb, so
that we can disable the extent offset filtering for uncompressed extents.
This flag can be set by an improved version of the LOGICAL_INO ioctl to
get either behavior as desired.
There is no functional change in this patch. The new flag is always
false.
Signed-off-by: Zygo Blaxell <ce3g8jdj@umail.furryterror.org>
Reviewed-by: David Sterba <dsterba@suse.com>
[ minor coding style fixes ]
Signed-off-by: David Sterba <dsterba@suse.com>
2017-09-23 01:58:45 +08:00
|
|
|
struct extent_inode_elem **eie,
|
|
|
|
bool ignore_offset)
|
2012-05-17 22:43:03 +08:00
|
|
|
{
|
2013-07-06 01:58:19 +08:00
|
|
|
u64 offset = 0;
|
2012-05-17 22:43:03 +08:00
|
|
|
struct extent_inode_elem *e;
|
|
|
|
|
btrfs: add a flag to iterate_inodes_from_logical to find all extent refs for uncompressed extents
The LOGICAL_INO ioctl provides a backward mapping from extent bytenr and
offset (encoded as a single logical address) to a list of extent refs.
LOGICAL_INO complements TREE_SEARCH, which provides the forward mapping
(extent ref -> extent bytenr and offset, or logical address). These are
useful capabilities for programs that manipulate extents and extent
references from userspace (e.g. dedup and defrag utilities).
When the extents are uncompressed (and not encrypted and not other),
check_extent_in_eb performs filtering of the extent refs to remove any
extent refs which do not contain the same extent offset as the 'logical'
parameter's extent offset. This prevents LOGICAL_INO from returning
references to more than a single block.
To find the set of extent references to an uncompressed extent from [a, b),
userspace has to run a loop like this pseudocode:
for (i = a; i < b; ++i)
extent_ref_set += LOGICAL_INO(i);
At each iteration of the loop (up to 32768 iterations for a 128M extent),
data we are interested in is collected in the kernel, then deleted by
the filter in check_extent_in_eb.
When the extents are compressed (or encrypted or other), the 'logical'
parameter must be an extent bytenr (the 'a' parameter in the loop).
No filtering by extent offset is done (or possible?) so the result is
the complete set of extent refs for the entire extent. This removes
the need for the loop, since we get all the extent refs in one call.
Add an 'ignore_offset' argument to iterate_inodes_from_logical,
[...several levels of function call graph...], and check_extent_in_eb, so
that we can disable the extent offset filtering for uncompressed extents.
This flag can be set by an improved version of the LOGICAL_INO ioctl to
get either behavior as desired.
There is no functional change in this patch. The new flag is always
false.
Signed-off-by: Zygo Blaxell <ce3g8jdj@umail.furryterror.org>
Reviewed-by: David Sterba <dsterba@suse.com>
[ minor coding style fixes ]
Signed-off-by: David Sterba <dsterba@suse.com>
2017-09-23 01:58:45 +08:00
|
|
|
if (!ignore_offset &&
|
|
|
|
!btrfs_file_extent_compression(eb, fi) &&
|
2013-07-06 01:58:19 +08:00
|
|
|
!btrfs_file_extent_encryption(eb, fi) &&
|
|
|
|
!btrfs_file_extent_other_encoding(eb, fi)) {
|
|
|
|
u64 data_offset;
|
|
|
|
u64 data_len;
|
2012-05-17 22:43:03 +08:00
|
|
|
|
2013-07-06 01:58:19 +08:00
|
|
|
data_offset = btrfs_file_extent_offset(eb, fi);
|
|
|
|
data_len = btrfs_file_extent_num_bytes(eb, fi);
|
|
|
|
|
|
|
|
if (extent_item_pos < data_offset ||
|
|
|
|
extent_item_pos >= data_offset + data_len)
|
|
|
|
return 1;
|
|
|
|
offset = extent_item_pos - data_offset;
|
|
|
|
}
|
2012-05-17 22:43:03 +08:00
|
|
|
|
|
|
|
e = kmalloc(sizeof(*e), GFP_NOFS);
|
|
|
|
if (!e)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
e->next = *eie;
|
|
|
|
e->inum = key->objectid;
|
2013-07-06 01:58:19 +08:00
|
|
|
e->offset = key->offset + offset;
|
2012-05-17 22:43:03 +08:00
|
|
|
*eie = e;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-01-28 19:13:38 +08:00
|
|
|
static void free_inode_elem_list(struct extent_inode_elem *eie)
|
|
|
|
{
|
|
|
|
struct extent_inode_elem *eie_next;
|
|
|
|
|
|
|
|
for (; eie; eie = eie_next) {
|
|
|
|
eie_next = eie->next;
|
|
|
|
kfree(eie);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-29 11:56:55 +08:00
|
|
|
static int find_extent_in_eb(const struct extent_buffer *eb,
|
|
|
|
u64 wanted_disk_byte, u64 extent_item_pos,
|
btrfs: add a flag to iterate_inodes_from_logical to find all extent refs for uncompressed extents
The LOGICAL_INO ioctl provides a backward mapping from extent bytenr and
offset (encoded as a single logical address) to a list of extent refs.
LOGICAL_INO complements TREE_SEARCH, which provides the forward mapping
(extent ref -> extent bytenr and offset, or logical address). These are
useful capabilities for programs that manipulate extents and extent
references from userspace (e.g. dedup and defrag utilities).
When the extents are uncompressed (and not encrypted and not other),
check_extent_in_eb performs filtering of the extent refs to remove any
extent refs which do not contain the same extent offset as the 'logical'
parameter's extent offset. This prevents LOGICAL_INO from returning
references to more than a single block.
To find the set of extent references to an uncompressed extent from [a, b),
userspace has to run a loop like this pseudocode:
for (i = a; i < b; ++i)
extent_ref_set += LOGICAL_INO(i);
At each iteration of the loop (up to 32768 iterations for a 128M extent),
data we are interested in is collected in the kernel, then deleted by
the filter in check_extent_in_eb.
When the extents are compressed (or encrypted or other), the 'logical'
parameter must be an extent bytenr (the 'a' parameter in the loop).
No filtering by extent offset is done (or possible?) so the result is
the complete set of extent refs for the entire extent. This removes
the need for the loop, since we get all the extent refs in one call.
Add an 'ignore_offset' argument to iterate_inodes_from_logical,
[...several levels of function call graph...], and check_extent_in_eb, so
that we can disable the extent offset filtering for uncompressed extents.
This flag can be set by an improved version of the LOGICAL_INO ioctl to
get either behavior as desired.
There is no functional change in this patch. The new flag is always
false.
Signed-off-by: Zygo Blaxell <ce3g8jdj@umail.furryterror.org>
Reviewed-by: David Sterba <dsterba@suse.com>
[ minor coding style fixes ]
Signed-off-by: David Sterba <dsterba@suse.com>
2017-09-23 01:58:45 +08:00
|
|
|
struct extent_inode_elem **eie,
|
|
|
|
bool ignore_offset)
|
2012-05-17 22:43:03 +08:00
|
|
|
{
|
|
|
|
u64 disk_byte;
|
|
|
|
struct btrfs_key key;
|
|
|
|
struct btrfs_file_extent_item *fi;
|
|
|
|
int slot;
|
|
|
|
int nritems;
|
|
|
|
int extent_type;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* from the shared data ref, we only have the leaf but we need
|
|
|
|
* the key. thus, we must look into all items and see that we
|
|
|
|
* find one (some) with a reference to our extent item.
|
|
|
|
*/
|
|
|
|
nritems = btrfs_header_nritems(eb);
|
|
|
|
for (slot = 0; slot < nritems; ++slot) {
|
|
|
|
btrfs_item_key_to_cpu(eb, &key, slot);
|
|
|
|
if (key.type != BTRFS_EXTENT_DATA_KEY)
|
|
|
|
continue;
|
|
|
|
fi = btrfs_item_ptr(eb, slot, struct btrfs_file_extent_item);
|
|
|
|
extent_type = btrfs_file_extent_type(eb, fi);
|
|
|
|
if (extent_type == BTRFS_FILE_EXTENT_INLINE)
|
|
|
|
continue;
|
|
|
|
/* don't skip BTRFS_FILE_EXTENT_PREALLOC, we can handle that */
|
|
|
|
disk_byte = btrfs_file_extent_disk_bytenr(eb, fi);
|
|
|
|
if (disk_byte != wanted_disk_byte)
|
|
|
|
continue;
|
|
|
|
|
btrfs: add a flag to iterate_inodes_from_logical to find all extent refs for uncompressed extents
The LOGICAL_INO ioctl provides a backward mapping from extent bytenr and
offset (encoded as a single logical address) to a list of extent refs.
LOGICAL_INO complements TREE_SEARCH, which provides the forward mapping
(extent ref -> extent bytenr and offset, or logical address). These are
useful capabilities for programs that manipulate extents and extent
references from userspace (e.g. dedup and defrag utilities).
When the extents are uncompressed (and not encrypted and not other),
check_extent_in_eb performs filtering of the extent refs to remove any
extent refs which do not contain the same extent offset as the 'logical'
parameter's extent offset. This prevents LOGICAL_INO from returning
references to more than a single block.
To find the set of extent references to an uncompressed extent from [a, b),
userspace has to run a loop like this pseudocode:
for (i = a; i < b; ++i)
extent_ref_set += LOGICAL_INO(i);
At each iteration of the loop (up to 32768 iterations for a 128M extent),
data we are interested in is collected in the kernel, then deleted by
the filter in check_extent_in_eb.
When the extents are compressed (or encrypted or other), the 'logical'
parameter must be an extent bytenr (the 'a' parameter in the loop).
No filtering by extent offset is done (or possible?) so the result is
the complete set of extent refs for the entire extent. This removes
the need for the loop, since we get all the extent refs in one call.
Add an 'ignore_offset' argument to iterate_inodes_from_logical,
[...several levels of function call graph...], and check_extent_in_eb, so
that we can disable the extent offset filtering for uncompressed extents.
This flag can be set by an improved version of the LOGICAL_INO ioctl to
get either behavior as desired.
There is no functional change in this patch. The new flag is always
false.
Signed-off-by: Zygo Blaxell <ce3g8jdj@umail.furryterror.org>
Reviewed-by: David Sterba <dsterba@suse.com>
[ minor coding style fixes ]
Signed-off-by: David Sterba <dsterba@suse.com>
2017-09-23 01:58:45 +08:00
|
|
|
ret = check_extent_in_eb(&key, eb, fi, extent_item_pos, eie, ignore_offset);
|
2012-05-17 22:43:03 +08:00
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-07-13 06:20:06 +08:00
|
|
|
struct preftree {
|
2018-08-23 03:51:53 +08:00
|
|
|
struct rb_root_cached root;
|
2017-07-13 06:20:07 +08:00
|
|
|
unsigned int count;
|
2017-07-13 06:20:06 +08:00
|
|
|
};
|
|
|
|
|
2018-08-23 03:51:53 +08:00
|
|
|
#define PREFTREE_INIT { .root = RB_ROOT_CACHED, .count = 0 }
|
2017-07-13 06:20:06 +08:00
|
|
|
|
|
|
|
struct preftrees {
|
|
|
|
struct preftree direct; /* BTRFS_SHARED_[DATA|BLOCK]_REF_KEY */
|
|
|
|
struct preftree indirect; /* BTRFS_[TREE_BLOCK|EXTENT_DATA]_REF_KEY */
|
|
|
|
struct preftree indirect_missing_keys;
|
|
|
|
};
|
|
|
|
|
2017-07-13 06:20:10 +08:00
|
|
|
/*
|
|
|
|
* Checks for a shared extent during backref search.
|
|
|
|
*
|
|
|
|
* The share_count tracks prelim_refs (direct and indirect) having a
|
|
|
|
* ref->count >0:
|
|
|
|
* - incremented when a ref->count transitions to >0
|
|
|
|
* - decremented when a ref->count transitions to <1
|
|
|
|
*/
|
|
|
|
struct share_check {
|
|
|
|
u64 root_objectid;
|
|
|
|
u64 inum;
|
|
|
|
int share_count;
|
2024-06-12 13:13:20 +08:00
|
|
|
bool have_delayed_delete_refs;
|
2017-07-13 06:20:10 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
static inline int extent_is_shared(struct share_check *sc)
|
|
|
|
{
|
|
|
|
return (sc && sc->share_count > 1) ? BACKREF_FOUND_SHARED : 0;
|
|
|
|
}
|
|
|
|
|
2013-08-09 13:25:36 +08:00
|
|
|
static struct kmem_cache *btrfs_prelim_ref_cache;
|
|
|
|
|
|
|
|
int __init btrfs_prelim_ref_init(void)
|
|
|
|
{
|
|
|
|
btrfs_prelim_ref_cache = kmem_cache_create("btrfs_prelim_ref",
|
2017-06-29 11:56:57 +08:00
|
|
|
sizeof(struct prelim_ref),
|
2013-08-09 13:25:36 +08:00
|
|
|
0,
|
2016-06-24 02:17:08 +08:00
|
|
|
SLAB_MEM_SPREAD,
|
2013-08-09 13:25:36 +08:00
|
|
|
NULL);
|
|
|
|
if (!btrfs_prelim_ref_cache)
|
|
|
|
return -ENOMEM;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-02-20 00:24:18 +08:00
|
|
|
void __cold btrfs_prelim_ref_exit(void)
|
2013-08-09 13:25:36 +08:00
|
|
|
{
|
2016-01-29 21:36:35 +08:00
|
|
|
kmem_cache_destroy(btrfs_prelim_ref_cache);
|
2013-08-09 13:25:36 +08:00
|
|
|
}
|
|
|
|
|
2017-07-13 06:20:06 +08:00
|
|
|
static void free_pref(struct prelim_ref *ref)
|
|
|
|
{
|
|
|
|
kmem_cache_free(btrfs_prelim_ref_cache, ref);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Return 0 when both refs are for the same block (and can be merged).
|
|
|
|
* A -1 return indicates ref1 is a 'lower' block than ref2, while 1
|
|
|
|
* indicates a 'higher' block.
|
|
|
|
*/
|
|
|
|
static int prelim_ref_compare(struct prelim_ref *ref1,
|
|
|
|
struct prelim_ref *ref2)
|
|
|
|
{
|
|
|
|
if (ref1->level < ref2->level)
|
|
|
|
return -1;
|
|
|
|
if (ref1->level > ref2->level)
|
|
|
|
return 1;
|
|
|
|
if (ref1->root_id < ref2->root_id)
|
|
|
|
return -1;
|
|
|
|
if (ref1->root_id > ref2->root_id)
|
|
|
|
return 1;
|
|
|
|
if (ref1->key_for_search.type < ref2->key_for_search.type)
|
|
|
|
return -1;
|
|
|
|
if (ref1->key_for_search.type > ref2->key_for_search.type)
|
|
|
|
return 1;
|
|
|
|
if (ref1->key_for_search.objectid < ref2->key_for_search.objectid)
|
|
|
|
return -1;
|
|
|
|
if (ref1->key_for_search.objectid > ref2->key_for_search.objectid)
|
|
|
|
return 1;
|
|
|
|
if (ref1->key_for_search.offset < ref2->key_for_search.offset)
|
|
|
|
return -1;
|
|
|
|
if (ref1->key_for_search.offset > ref2->key_for_search.offset)
|
|
|
|
return 1;
|
|
|
|
if (ref1->parent < ref2->parent)
|
|
|
|
return -1;
|
|
|
|
if (ref1->parent > ref2->parent)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-11-30 20:14:47 +08:00
|
|
|
static void update_share_count(struct share_check *sc, int oldcount,
|
|
|
|
int newcount)
|
2017-07-13 06:20:10 +08:00
|
|
|
{
|
|
|
|
if ((!sc) || (oldcount == 0 && newcount < 1))
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (oldcount > 0 && newcount < 1)
|
|
|
|
sc->share_count--;
|
|
|
|
else if (oldcount < 1 && newcount > 0)
|
|
|
|
sc->share_count++;
|
|
|
|
}
|
|
|
|
|
2017-07-13 06:20:06 +08:00
|
|
|
/*
|
|
|
|
* Add @newref to the @root rbtree, merging identical refs.
|
|
|
|
*
|
2017-07-13 06:20:10 +08:00
|
|
|
* Callers should assume that newref has been freed after calling.
|
2017-07-13 06:20:06 +08:00
|
|
|
*/
|
2017-07-13 06:20:08 +08:00
|
|
|
static void prelim_ref_insert(const struct btrfs_fs_info *fs_info,
|
|
|
|
struct preftree *preftree,
|
2017-07-13 06:20:10 +08:00
|
|
|
struct prelim_ref *newref,
|
|
|
|
struct share_check *sc)
|
2017-07-13 06:20:06 +08:00
|
|
|
{
|
2018-08-23 03:51:53 +08:00
|
|
|
struct rb_root_cached *root;
|
2017-07-13 06:20:06 +08:00
|
|
|
struct rb_node **p;
|
|
|
|
struct rb_node *parent = NULL;
|
|
|
|
struct prelim_ref *ref;
|
|
|
|
int result;
|
2018-08-23 03:51:53 +08:00
|
|
|
bool leftmost = true;
|
2017-07-13 06:20:06 +08:00
|
|
|
|
|
|
|
root = &preftree->root;
|
2018-08-23 03:51:53 +08:00
|
|
|
p = &root->rb_root.rb_node;
|
2017-07-13 06:20:06 +08:00
|
|
|
|
|
|
|
while (*p) {
|
|
|
|
parent = *p;
|
|
|
|
ref = rb_entry(parent, struct prelim_ref, rbnode);
|
|
|
|
result = prelim_ref_compare(ref, newref);
|
|
|
|
if (result < 0) {
|
|
|
|
p = &(*p)->rb_left;
|
|
|
|
} else if (result > 0) {
|
|
|
|
p = &(*p)->rb_right;
|
2018-08-23 03:51:53 +08:00
|
|
|
leftmost = false;
|
2017-07-13 06:20:06 +08:00
|
|
|
} else {
|
|
|
|
/* Identical refs, merge them and free @newref */
|
|
|
|
struct extent_inode_elem *eie = ref->inode_list;
|
|
|
|
|
|
|
|
while (eie && eie->next)
|
|
|
|
eie = eie->next;
|
|
|
|
|
|
|
|
if (!eie)
|
|
|
|
ref->inode_list = newref->inode_list;
|
|
|
|
else
|
|
|
|
eie->next = newref->inode_list;
|
2017-07-13 06:20:08 +08:00
|
|
|
trace_btrfs_prelim_ref_merge(fs_info, ref, newref,
|
|
|
|
preftree->count);
|
2017-07-13 06:20:10 +08:00
|
|
|
/*
|
|
|
|
* A delayed ref can have newref->count < 0.
|
|
|
|
* The ref->count is updated to follow any
|
|
|
|
* BTRFS_[ADD|DROP]_DELAYED_REF actions.
|
|
|
|
*/
|
|
|
|
update_share_count(sc, ref->count,
|
|
|
|
ref->count + newref->count);
|
2017-07-13 06:20:06 +08:00
|
|
|
ref->count += newref->count;
|
|
|
|
free_pref(newref);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-13 06:20:10 +08:00
|
|
|
update_share_count(sc, 0, newref->count);
|
2017-07-13 06:20:07 +08:00
|
|
|
preftree->count++;
|
2017-07-13 06:20:08 +08:00
|
|
|
trace_btrfs_prelim_ref_insert(fs_info, newref, NULL, preftree->count);
|
2017-07-13 06:20:06 +08:00
|
|
|
rb_link_node(&newref->rbnode, parent, p);
|
2018-08-23 03:51:53 +08:00
|
|
|
rb_insert_color_cached(&newref->rbnode, root, leftmost);
|
2017-07-13 06:20:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Release the entire tree. We don't care about internal consistency so
|
|
|
|
* just free everything and then reset the tree root.
|
|
|
|
*/
|
|
|
|
static void prelim_release(struct preftree *preftree)
|
|
|
|
{
|
|
|
|
struct prelim_ref *ref, *next_ref;
|
|
|
|
|
2018-08-23 03:51:53 +08:00
|
|
|
rbtree_postorder_for_each_entry_safe(ref, next_ref,
|
2024-06-12 13:13:20 +08:00
|
|
|
&preftree->root.rb_root, rbnode) {
|
|
|
|
free_inode_elem_list(ref->inode_list);
|
2017-07-13 06:20:06 +08:00
|
|
|
free_pref(ref);
|
2024-06-12 13:13:20 +08:00
|
|
|
}
|
2017-07-13 06:20:06 +08:00
|
|
|
|
2018-08-23 03:51:53 +08:00
|
|
|
preftree->root = RB_ROOT_CACHED;
|
2017-07-13 06:20:07 +08:00
|
|
|
preftree->count = 0;
|
2017-07-13 06:20:06 +08:00
|
|
|
}
|
|
|
|
|
2012-05-15 23:55:51 +08:00
|
|
|
/*
|
|
|
|
* the rules for all callers of this function are:
|
|
|
|
* - obtaining the parent is the goal
|
|
|
|
* - if you add a key, you must know that it is a correct key
|
|
|
|
* - if you cannot add the parent or a correct key, then we will look into the
|
|
|
|
* block later to set a correct key
|
|
|
|
*
|
|
|
|
* delayed refs
|
|
|
|
* ============
|
|
|
|
* backref type | shared | indirect | shared | indirect
|
|
|
|
* information | tree | tree | data | data
|
|
|
|
* --------------------+--------+----------+--------+----------
|
|
|
|
* parent logical | y | - | - | -
|
|
|
|
* key to resolve | - | y | y | y
|
|
|
|
* tree block logical | - | - | - | -
|
|
|
|
* root for resolving | y | y | y | y
|
|
|
|
*
|
|
|
|
* - column 1: we've the parent -> done
|
|
|
|
* - column 2, 3, 4: we use the key to find the parent
|
|
|
|
*
|
|
|
|
* on disk refs (inline or keyed)
|
|
|
|
* ==============================
|
|
|
|
* backref type | shared | indirect | shared | indirect
|
|
|
|
* information | tree | tree | data | data
|
|
|
|
* --------------------+--------+----------+--------+----------
|
|
|
|
* parent logical | y | - | y | -
|
|
|
|
* key to resolve | - | - | - | y
|
|
|
|
* tree block logical | y | y | y | y
|
|
|
|
* root for resolving | - | y | y | y
|
|
|
|
*
|
|
|
|
* - column 1, 3: we've the parent -> done
|
|
|
|
* - column 2: we take the first key from the block to find the parent
|
2017-06-29 11:56:57 +08:00
|
|
|
* (see add_missing_keys)
|
2012-05-15 23:55:51 +08:00
|
|
|
* - column 4: we use the key to find the parent
|
|
|
|
*
|
|
|
|
* additional information that's available but not required to find the parent
|
|
|
|
* block might help in merging entries to gain some speed.
|
|
|
|
*/
|
2017-07-13 06:20:08 +08:00
|
|
|
static int add_prelim_ref(const struct btrfs_fs_info *fs_info,
|
|
|
|
struct preftree *preftree, u64 root_id,
|
2017-06-29 11:56:57 +08:00
|
|
|
const struct btrfs_key *key, int level, u64 parent,
|
2017-07-13 06:20:10 +08:00
|
|
|
u64 wanted_disk_byte, int count,
|
|
|
|
struct share_check *sc, gfp_t gfp_mask)
|
2011-11-24 01:55:04 +08:00
|
|
|
{
|
2017-06-29 11:56:57 +08:00
|
|
|
struct prelim_ref *ref;
|
2011-11-24 01:55:04 +08:00
|
|
|
|
2013-10-30 13:25:24 +08:00
|
|
|
if (root_id == BTRFS_DATA_RELOC_TREE_OBJECTID)
|
|
|
|
return 0;
|
|
|
|
|
2013-08-09 13:25:36 +08:00
|
|
|
ref = kmem_cache_alloc(btrfs_prelim_ref_cache, gfp_mask);
|
2011-11-24 01:55:04 +08:00
|
|
|
if (!ref)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
ref->root_id = root_id;
|
2024-06-11 20:26:44 +08:00
|
|
|
if (key)
|
2012-05-15 23:55:51 +08:00
|
|
|
ref->key_for_search = *key;
|
2024-06-11 20:26:44 +08:00
|
|
|
else
|
2012-05-15 23:55:51 +08:00
|
|
|
memset(&ref->key_for_search, 0, sizeof(ref->key_for_search));
|
2011-11-24 01:55:04 +08:00
|
|
|
|
2012-05-31 00:05:21 +08:00
|
|
|
ref->inode_list = NULL;
|
2011-11-24 01:55:04 +08:00
|
|
|
ref->level = level;
|
|
|
|
ref->count = count;
|
|
|
|
ref->parent = parent;
|
|
|
|
ref->wanted_disk_byte = wanted_disk_byte;
|
2017-07-13 06:20:10 +08:00
|
|
|
prelim_ref_insert(fs_info, preftree, ref, sc);
|
|
|
|
return extent_is_shared(sc);
|
2011-11-24 01:55:04 +08:00
|
|
|
}
|
|
|
|
|
2017-07-13 06:20:06 +08:00
|
|
|
/* direct refs use root == 0, key == NULL */
|
2017-07-13 06:20:08 +08:00
|
|
|
static int add_direct_ref(const struct btrfs_fs_info *fs_info,
|
|
|
|
struct preftrees *preftrees, int level, u64 parent,
|
2017-07-13 06:20:10 +08:00
|
|
|
u64 wanted_disk_byte, int count,
|
|
|
|
struct share_check *sc, gfp_t gfp_mask)
|
2017-07-13 06:20:06 +08:00
|
|
|
{
|
2017-07-13 06:20:08 +08:00
|
|
|
return add_prelim_ref(fs_info, &preftrees->direct, 0, NULL, level,
|
2017-07-13 06:20:10 +08:00
|
|
|
parent, wanted_disk_byte, count, sc, gfp_mask);
|
2017-07-13 06:20:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* indirect refs use parent == 0 */
|
2017-07-13 06:20:08 +08:00
|
|
|
static int add_indirect_ref(const struct btrfs_fs_info *fs_info,
|
|
|
|
struct preftrees *preftrees, u64 root_id,
|
2017-07-13 06:20:06 +08:00
|
|
|
const struct btrfs_key *key, int level,
|
2017-07-13 06:20:10 +08:00
|
|
|
u64 wanted_disk_byte, int count,
|
|
|
|
struct share_check *sc, gfp_t gfp_mask)
|
2017-07-13 06:20:06 +08:00
|
|
|
{
|
|
|
|
struct preftree *tree = &preftrees->indirect;
|
|
|
|
|
|
|
|
if (!key)
|
|
|
|
tree = &preftrees->indirect_missing_keys;
|
2017-07-13 06:20:08 +08:00
|
|
|
return add_prelim_ref(fs_info, tree, root_id, key, level, 0,
|
2017-07-13 06:20:10 +08:00
|
|
|
wanted_disk_byte, count, sc, gfp_mask);
|
2017-07-13 06:20:06 +08:00
|
|
|
}
|
|
|
|
|
2024-06-11 20:26:44 +08:00
|
|
|
static int is_shared_data_backref(struct preftrees *preftrees, u64 bytenr)
|
|
|
|
{
|
|
|
|
struct rb_node **p = &preftrees->direct.root.rb_root.rb_node;
|
|
|
|
struct rb_node *parent = NULL;
|
|
|
|
struct prelim_ref *ref = NULL;
|
|
|
|
struct prelim_ref target = {0};
|
|
|
|
int result;
|
|
|
|
|
|
|
|
target.parent = bytenr;
|
|
|
|
|
|
|
|
while (*p) {
|
|
|
|
parent = *p;
|
|
|
|
ref = rb_entry(parent, struct prelim_ref, rbnode);
|
|
|
|
result = prelim_ref_compare(ref, &target);
|
|
|
|
|
|
|
|
if (result < 0)
|
|
|
|
p = &(*p)->rb_left;
|
|
|
|
else if (result > 0)
|
|
|
|
p = &(*p)->rb_right;
|
|
|
|
else
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-11-24 01:55:04 +08:00
|
|
|
static int add_all_parents(struct btrfs_root *root, struct btrfs_path *path,
|
2024-06-11 20:26:44 +08:00
|
|
|
struct ulist *parents,
|
|
|
|
struct preftrees *preftrees, struct prelim_ref *ref,
|
2014-03-20 01:35:14 +08:00
|
|
|
int level, u64 time_seq, const u64 *extent_item_pos,
|
2024-06-11 20:26:44 +08:00
|
|
|
bool ignore_offset)
|
2011-11-24 01:55:04 +08:00
|
|
|
{
|
2012-06-19 21:42:26 +08:00
|
|
|
int ret = 0;
|
|
|
|
int slot;
|
|
|
|
struct extent_buffer *eb;
|
|
|
|
struct btrfs_key key;
|
2014-01-25 03:05:42 +08:00
|
|
|
struct btrfs_key *key_for_search = &ref->key_for_search;
|
2011-11-24 01:55:04 +08:00
|
|
|
struct btrfs_file_extent_item *fi;
|
2013-07-06 02:03:47 +08:00
|
|
|
struct extent_inode_elem *eie = NULL, *old = NULL;
|
2011-11-24 01:55:04 +08:00
|
|
|
u64 disk_byte;
|
2014-01-25 03:05:42 +08:00
|
|
|
u64 wanted_disk_byte = ref->wanted_disk_byte;
|
|
|
|
u64 count = 0;
|
2024-06-11 20:26:44 +08:00
|
|
|
u64 data_offset;
|
2024-06-12 13:13:20 +08:00
|
|
|
u8 type;
|
2011-11-24 01:55:04 +08:00
|
|
|
|
2012-06-19 21:42:26 +08:00
|
|
|
if (level != 0) {
|
|
|
|
eb = path->nodes[level];
|
|
|
|
ret = ulist_add(parents, eb->start, 0, GFP_NOFS);
|
2012-05-31 00:05:21 +08:00
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
2011-11-24 01:55:04 +08:00
|
|
|
return 0;
|
2012-06-19 21:42:26 +08:00
|
|
|
}
|
2011-11-24 01:55:04 +08:00
|
|
|
|
|
|
|
/*
|
2024-06-11 20:26:44 +08:00
|
|
|
* 1. We normally enter this function with the path already pointing to
|
|
|
|
* the first item to check. But sometimes, we may enter it with
|
|
|
|
* slot == nritems.
|
|
|
|
* 2. We are searching for normal backref but bytenr of this leaf
|
|
|
|
* matches shared data backref
|
|
|
|
* 3. The leaf owner is not equal to the root we are searching
|
|
|
|
*
|
|
|
|
* For these cases, go to the next leaf before we continue.
|
2011-11-24 01:55:04 +08:00
|
|
|
*/
|
2024-06-11 20:26:44 +08:00
|
|
|
eb = path->nodes[0];
|
|
|
|
if (path->slots[0] >= btrfs_header_nritems(eb) ||
|
|
|
|
is_shared_data_backref(preftrees, eb->start) ||
|
|
|
|
ref->root_id != btrfs_header_owner(eb)) {
|
2017-03-17 00:04:34 +08:00
|
|
|
if (time_seq == SEQ_LAST)
|
2015-04-16 14:54:50 +08:00
|
|
|
ret = btrfs_next_leaf(root, path);
|
|
|
|
else
|
|
|
|
ret = btrfs_next_old_leaf(root, path, time_seq);
|
|
|
|
}
|
2011-11-24 01:55:04 +08:00
|
|
|
|
2024-06-11 20:26:44 +08:00
|
|
|
while (!ret && count < ref->count) {
|
2011-11-24 01:55:04 +08:00
|
|
|
eb = path->nodes[0];
|
2012-06-19 21:42:26 +08:00
|
|
|
slot = path->slots[0];
|
|
|
|
|
|
|
|
btrfs_item_key_to_cpu(eb, &key, slot);
|
|
|
|
|
|
|
|
if (key.objectid != key_for_search->objectid ||
|
|
|
|
key.type != BTRFS_EXTENT_DATA_KEY)
|
|
|
|
break;
|
|
|
|
|
2024-06-11 20:26:44 +08:00
|
|
|
/*
|
|
|
|
* We are searching for normal backref but bytenr of this leaf
|
|
|
|
* matches shared data backref, OR
|
|
|
|
* the leaf owner is not equal to the root we are searching for
|
|
|
|
*/
|
|
|
|
if (slot == 0 &&
|
|
|
|
(is_shared_data_backref(preftrees, eb->start) ||
|
|
|
|
ref->root_id != btrfs_header_owner(eb))) {
|
|
|
|
if (time_seq == SEQ_LAST)
|
|
|
|
ret = btrfs_next_leaf(root, path);
|
|
|
|
else
|
|
|
|
ret = btrfs_next_old_leaf(root, path, time_seq);
|
|
|
|
continue;
|
|
|
|
}
|
2012-06-19 21:42:26 +08:00
|
|
|
fi = btrfs_item_ptr(eb, slot, struct btrfs_file_extent_item);
|
2024-06-12 13:13:20 +08:00
|
|
|
type = btrfs_file_extent_type(eb, fi);
|
|
|
|
if (type == BTRFS_FILE_EXTENT_INLINE)
|
|
|
|
goto next;
|
2012-06-19 21:42:26 +08:00
|
|
|
disk_byte = btrfs_file_extent_disk_bytenr(eb, fi);
|
2024-06-11 20:26:44 +08:00
|
|
|
data_offset = btrfs_file_extent_offset(eb, fi);
|
2012-06-19 21:42:26 +08:00
|
|
|
|
|
|
|
if (disk_byte == wanted_disk_byte) {
|
|
|
|
eie = NULL;
|
2013-07-06 02:03:47 +08:00
|
|
|
old = NULL;
|
2024-06-11 20:26:44 +08:00
|
|
|
if (ref->key_for_search.offset == key.offset - data_offset)
|
|
|
|
count++;
|
|
|
|
else
|
|
|
|
goto next;
|
2012-06-19 21:42:26 +08:00
|
|
|
if (extent_item_pos) {
|
|
|
|
ret = check_extent_in_eb(&key, eb, fi,
|
|
|
|
*extent_item_pos,
|
btrfs: add a flag to iterate_inodes_from_logical to find all extent refs for uncompressed extents
The LOGICAL_INO ioctl provides a backward mapping from extent bytenr and
offset (encoded as a single logical address) to a list of extent refs.
LOGICAL_INO complements TREE_SEARCH, which provides the forward mapping
(extent ref -> extent bytenr and offset, or logical address). These are
useful capabilities for programs that manipulate extents and extent
references from userspace (e.g. dedup and defrag utilities).
When the extents are uncompressed (and not encrypted and not other),
check_extent_in_eb performs filtering of the extent refs to remove any
extent refs which do not contain the same extent offset as the 'logical'
parameter's extent offset. This prevents LOGICAL_INO from returning
references to more than a single block.
To find the set of extent references to an uncompressed extent from [a, b),
userspace has to run a loop like this pseudocode:
for (i = a; i < b; ++i)
extent_ref_set += LOGICAL_INO(i);
At each iteration of the loop (up to 32768 iterations for a 128M extent),
data we are interested in is collected in the kernel, then deleted by
the filter in check_extent_in_eb.
When the extents are compressed (or encrypted or other), the 'logical'
parameter must be an extent bytenr (the 'a' parameter in the loop).
No filtering by extent offset is done (or possible?) so the result is
the complete set of extent refs for the entire extent. This removes
the need for the loop, since we get all the extent refs in one call.
Add an 'ignore_offset' argument to iterate_inodes_from_logical,
[...several levels of function call graph...], and check_extent_in_eb, so
that we can disable the extent offset filtering for uncompressed extents.
This flag can be set by an improved version of the LOGICAL_INO ioctl to
get either behavior as desired.
There is no functional change in this patch. The new flag is always
false.
Signed-off-by: Zygo Blaxell <ce3g8jdj@umail.furryterror.org>
Reviewed-by: David Sterba <dsterba@suse.com>
[ minor coding style fixes ]
Signed-off-by: David Sterba <dsterba@suse.com>
2017-09-23 01:58:45 +08:00
|
|
|
&eie, ignore_offset);
|
2012-06-19 21:42:26 +08:00
|
|
|
if (ret < 0)
|
|
|
|
break;
|
|
|
|
}
|
2013-07-06 02:03:47 +08:00
|
|
|
if (ret > 0)
|
|
|
|
goto next;
|
2014-07-28 16:57:04 +08:00
|
|
|
ret = ulist_add_merge_ptr(parents, eb->start,
|
|
|
|
eie, (void **)&old, GFP_NOFS);
|
2013-07-06 02:03:47 +08:00
|
|
|
if (ret < 0)
|
|
|
|
break;
|
|
|
|
if (!ret && extent_item_pos) {
|
|
|
|
while (old->next)
|
|
|
|
old = old->next;
|
|
|
|
old->next = eie;
|
2012-06-19 21:42:26 +08:00
|
|
|
}
|
2014-01-28 19:13:38 +08:00
|
|
|
eie = NULL;
|
2011-11-24 01:55:04 +08:00
|
|
|
}
|
2013-07-06 02:03:47 +08:00
|
|
|
next:
|
2017-03-17 00:04:34 +08:00
|
|
|
if (time_seq == SEQ_LAST)
|
2015-04-16 14:54:50 +08:00
|
|
|
ret = btrfs_next_item(root, path);
|
|
|
|
else
|
|
|
|
ret = btrfs_next_old_item(root, path, time_seq);
|
2011-11-24 01:55:04 +08:00
|
|
|
}
|
|
|
|
|
2012-06-19 21:42:26 +08:00
|
|
|
if (ret > 0)
|
|
|
|
ret = 0;
|
2014-01-28 19:13:38 +08:00
|
|
|
else if (ret < 0)
|
|
|
|
free_inode_elem_list(eie);
|
2012-06-19 21:42:26 +08:00
|
|
|
return ret;
|
2011-11-24 01:55:04 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* resolve an indirect backref in the form (root_id, key, level)
|
|
|
|
* to a logical address
|
|
|
|
*/
|
2017-06-29 11:56:57 +08:00
|
|
|
static int resolve_indirect_ref(struct btrfs_fs_info *fs_info,
|
|
|
|
struct btrfs_path *path, u64 time_seq,
|
2024-06-11 20:26:44 +08:00
|
|
|
struct preftrees *preftrees,
|
2017-06-29 11:56:57 +08:00
|
|
|
struct prelim_ref *ref, struct ulist *parents,
|
2024-06-11 20:26:44 +08:00
|
|
|
const u64 *extent_item_pos, bool ignore_offset)
|
2011-11-24 01:55:04 +08:00
|
|
|
{
|
|
|
|
struct btrfs_root *root;
|
|
|
|
struct btrfs_key root_key;
|
|
|
|
struct extent_buffer *eb;
|
|
|
|
int ret = 0;
|
|
|
|
int root_level;
|
|
|
|
int level = ref->level;
|
2014-01-23 13:47:48 +08:00
|
|
|
int index;
|
2024-06-11 20:26:44 +08:00
|
|
|
struct btrfs_key search_key = ref->key_for_search;
|
2011-11-24 01:55:04 +08:00
|
|
|
|
|
|
|
root_key.objectid = ref->root_id;
|
|
|
|
root_key.type = BTRFS_ROOT_ITEM_KEY;
|
|
|
|
root_key.offset = (u64)-1;
|
2014-01-23 13:47:48 +08:00
|
|
|
|
|
|
|
index = srcu_read_lock(&fs_info->subvol_srcu);
|
|
|
|
|
2015-11-06 06:37:58 +08:00
|
|
|
root = btrfs_get_fs_root(fs_info, &root_key, false);
|
2011-11-24 01:55:04 +08:00
|
|
|
if (IS_ERR(root)) {
|
2014-01-23 13:47:48 +08:00
|
|
|
srcu_read_unlock(&fs_info->subvol_srcu, index);
|
2011-11-24 01:55:04 +08:00
|
|
|
ret = PTR_ERR(root);
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
2016-06-21 21:52:41 +08:00
|
|
|
if (btrfs_is_testing(fs_info)) {
|
2015-10-05 22:35:29 +08:00
|
|
|
srcu_read_unlock(&fs_info->subvol_srcu, index);
|
|
|
|
ret = -ENOENT;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
2014-03-14 03:42:13 +08:00
|
|
|
if (path->search_commit_root)
|
|
|
|
root_level = btrfs_header_level(root->commit_root);
|
2017-03-17 00:04:34 +08:00
|
|
|
else if (time_seq == SEQ_LAST)
|
2015-04-16 14:54:50 +08:00
|
|
|
root_level = btrfs_header_level(root->node);
|
2014-03-14 03:42:13 +08:00
|
|
|
else
|
|
|
|
root_level = btrfs_old_root_level(root, time_seq);
|
2011-11-24 01:55:04 +08:00
|
|
|
|
2014-01-23 13:47:48 +08:00
|
|
|
if (root_level + 1 == level) {
|
|
|
|
srcu_read_unlock(&fs_info->subvol_srcu, index);
|
2011-11-24 01:55:04 +08:00
|
|
|
goto out;
|
2014-01-23 13:47:48 +08:00
|
|
|
}
|
2011-11-24 01:55:04 +08:00
|
|
|
|
2024-06-11 20:26:44 +08:00
|
|
|
/*
|
|
|
|
* We can often find data backrefs with an offset that is too large
|
|
|
|
* (>= LLONG_MAX, maximum allowed file offset) due to underflows when
|
|
|
|
* subtracting a file's offset with the data offset of its
|
|
|
|
* corresponding extent data item. This can happen for example in the
|
|
|
|
* clone ioctl.
|
|
|
|
*
|
|
|
|
* So if we detect such case we set the search key's offset to zero to
|
|
|
|
* make sure we will find the matching file extent item at
|
|
|
|
* add_all_parents(), otherwise we will miss it because the offset
|
|
|
|
* taken form the backref is much larger then the offset of the file
|
|
|
|
* extent item. This can make us scan a very large number of file
|
|
|
|
* extent items, but at least it will not make us miss any.
|
|
|
|
*
|
|
|
|
* This is an ugly workaround for a behaviour that should have never
|
|
|
|
* existed, but it does and a fix for the clone ioctl would touch a lot
|
|
|
|
* of places, cause backwards incompatibility and would not fix the
|
|
|
|
* problem for extents cloned with older kernels.
|
|
|
|
*/
|
|
|
|
if (search_key.type == BTRFS_EXTENT_DATA_KEY &&
|
|
|
|
search_key.offset >= LLONG_MAX)
|
|
|
|
search_key.offset = 0;
|
2011-11-24 01:55:04 +08:00
|
|
|
path->lowest_level = level;
|
2017-03-17 00:04:34 +08:00
|
|
|
if (time_seq == SEQ_LAST)
|
2024-06-11 20:26:44 +08:00
|
|
|
ret = btrfs_search_slot(NULL, root, &search_key, path, 0, 0);
|
2015-04-16 14:54:50 +08:00
|
|
|
else
|
2024-06-11 20:26:44 +08:00
|
|
|
ret = btrfs_search_old_slot(root, &search_key, path, time_seq);
|
2014-01-23 13:47:48 +08:00
|
|
|
|
|
|
|
/* root node has been locked, we can release @subvol_srcu safely here */
|
|
|
|
srcu_read_unlock(&fs_info->subvol_srcu, index);
|
|
|
|
|
2016-09-20 22:05:02 +08:00
|
|
|
btrfs_debug(fs_info,
|
|
|
|
"search slot in root %llu (level %d, ref count %d) returned %d for key (%llu %u %llu)",
|
2013-08-20 19:20:07 +08:00
|
|
|
ref->root_id, level, ref->count, ret,
|
|
|
|
ref->key_for_search.objectid, ref->key_for_search.type,
|
|
|
|
ref->key_for_search.offset);
|
2011-11-24 01:55:04 +08:00
|
|
|
if (ret < 0)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
eb = path->nodes[level];
|
2012-06-27 21:23:09 +08:00
|
|
|
while (!eb) {
|
2013-10-31 13:00:08 +08:00
|
|
|
if (WARN_ON(!level)) {
|
2012-06-27 21:23:09 +08:00
|
|
|
ret = 1;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
level--;
|
|
|
|
eb = path->nodes[level];
|
2011-11-24 01:55:04 +08:00
|
|
|
}
|
|
|
|
|
2024-06-11 20:26:44 +08:00
|
|
|
ret = add_all_parents(root, path, parents, preftrees, ref, level,
|
|
|
|
time_seq, extent_item_pos, ignore_offset);
|
2011-11-24 01:55:04 +08:00
|
|
|
out:
|
2013-06-13 04:20:08 +08:00
|
|
|
path->lowest_level = 0;
|
|
|
|
btrfs_release_path(path);
|
2011-11-24 01:55:04 +08:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2017-06-29 11:56:56 +08:00
|
|
|
static struct extent_inode_elem *
|
|
|
|
unode_aux_to_inode_list(struct ulist_node *node)
|
|
|
|
{
|
|
|
|
if (!node)
|
|
|
|
return NULL;
|
|
|
|
return (struct extent_inode_elem *)(uintptr_t)node->aux;
|
|
|
|
}
|
|
|
|
|
2024-06-12 13:13:20 +08:00
|
|
|
static void free_leaf_list(struct ulist *ulist)
|
|
|
|
{
|
|
|
|
struct ulist_node *node;
|
|
|
|
struct ulist_iterator uiter;
|
|
|
|
|
|
|
|
ULIST_ITER_INIT(&uiter);
|
|
|
|
while ((node = ulist_next(ulist, &uiter)))
|
|
|
|
free_inode_elem_list(unode_aux_to_inode_list(node));
|
|
|
|
|
|
|
|
ulist_free(ulist);
|
|
|
|
}
|
|
|
|
|
2011-11-24 01:55:04 +08:00
|
|
|
/*
|
2018-11-28 19:05:13 +08:00
|
|
|
* We maintain three separate rbtrees: one for direct refs, one for
|
2017-07-13 06:20:06 +08:00
|
|
|
* indirect refs which have a key, and one for indirect refs which do not
|
|
|
|
* have a key. Each tree does merge on insertion.
|
|
|
|
*
|
|
|
|
* Once all of the references are located, we iterate over the tree of
|
|
|
|
* indirect refs with missing keys. An appropriate key is located and
|
|
|
|
* the ref is moved onto the tree for indirect refs. After all missing
|
|
|
|
* keys are thus located, we iterate over the indirect ref tree, resolve
|
|
|
|
* each reference, and then insert the resolved reference onto the
|
|
|
|
* direct tree (merging there too).
|
|
|
|
*
|
|
|
|
* New backrefs (i.e., for parent nodes) are added to the appropriate
|
|
|
|
* rbtree as they are encountered. The new backrefs are subsequently
|
|
|
|
* resolved as above.
|
2011-11-24 01:55:04 +08:00
|
|
|
*/
|
2017-06-29 11:56:57 +08:00
|
|
|
static int resolve_indirect_refs(struct btrfs_fs_info *fs_info,
|
|
|
|
struct btrfs_path *path, u64 time_seq,
|
2017-07-13 06:20:06 +08:00
|
|
|
struct preftrees *preftrees,
|
2024-06-11 20:26:44 +08:00
|
|
|
const u64 *extent_item_pos,
|
btrfs: add a flag to iterate_inodes_from_logical to find all extent refs for uncompressed extents
The LOGICAL_INO ioctl provides a backward mapping from extent bytenr and
offset (encoded as a single logical address) to a list of extent refs.
LOGICAL_INO complements TREE_SEARCH, which provides the forward mapping
(extent ref -> extent bytenr and offset, or logical address). These are
useful capabilities for programs that manipulate extents and extent
references from userspace (e.g. dedup and defrag utilities).
When the extents are uncompressed (and not encrypted and not other),
check_extent_in_eb performs filtering of the extent refs to remove any
extent refs which do not contain the same extent offset as the 'logical'
parameter's extent offset. This prevents LOGICAL_INO from returning
references to more than a single block.
To find the set of extent references to an uncompressed extent from [a, b),
userspace has to run a loop like this pseudocode:
for (i = a; i < b; ++i)
extent_ref_set += LOGICAL_INO(i);
At each iteration of the loop (up to 32768 iterations for a 128M extent),
data we are interested in is collected in the kernel, then deleted by
the filter in check_extent_in_eb.
When the extents are compressed (or encrypted or other), the 'logical'
parameter must be an extent bytenr (the 'a' parameter in the loop).
No filtering by extent offset is done (or possible?) so the result is
the complete set of extent refs for the entire extent. This removes
the need for the loop, since we get all the extent refs in one call.
Add an 'ignore_offset' argument to iterate_inodes_from_logical,
[...several levels of function call graph...], and check_extent_in_eb, so
that we can disable the extent offset filtering for uncompressed extents.
This flag can be set by an improved version of the LOGICAL_INO ioctl to
get either behavior as desired.
There is no functional change in this patch. The new flag is always
false.
Signed-off-by: Zygo Blaxell <ce3g8jdj@umail.furryterror.org>
Reviewed-by: David Sterba <dsterba@suse.com>
[ minor coding style fixes ]
Signed-off-by: David Sterba <dsterba@suse.com>
2017-09-23 01:58:45 +08:00
|
|
|
struct share_check *sc, bool ignore_offset)
|
2011-11-24 01:55:04 +08:00
|
|
|
{
|
|
|
|
int err;
|
|
|
|
int ret = 0;
|
|
|
|
struct ulist *parents;
|
|
|
|
struct ulist_node *node;
|
2012-05-22 20:56:50 +08:00
|
|
|
struct ulist_iterator uiter;
|
2017-07-13 06:20:06 +08:00
|
|
|
struct rb_node *rnode;
|
2011-11-24 01:55:04 +08:00
|
|
|
|
|
|
|
parents = ulist_alloc(GFP_NOFS);
|
|
|
|
if (!parents)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
/*
|
2017-07-13 06:20:06 +08:00
|
|
|
* We could trade memory usage for performance here by iterating
|
|
|
|
* the tree, allocating new refs for each insertion, and then
|
|
|
|
* freeing the entire indirect tree when we're done. In some test
|
|
|
|
* cases, the tree can grow quite large (~200k objects).
|
2011-11-24 01:55:04 +08:00
|
|
|
*/
|
2018-08-23 03:51:53 +08:00
|
|
|
while ((rnode = rb_first_cached(&preftrees->indirect.root))) {
|
2017-07-13 06:20:06 +08:00
|
|
|
struct prelim_ref *ref;
|
|
|
|
|
|
|
|
ref = rb_entry(rnode, struct prelim_ref, rbnode);
|
|
|
|
if (WARN(ref->parent,
|
|
|
|
"BUG: direct ref found in indirect tree")) {
|
|
|
|
ret = -EINVAL;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
2018-08-23 03:51:53 +08:00
|
|
|
rb_erase_cached(&ref->rbnode, &preftrees->indirect.root);
|
2017-07-13 06:20:07 +08:00
|
|
|
preftrees->indirect.count--;
|
2017-07-13 06:20:06 +08:00
|
|
|
|
|
|
|
if (ref->count == 0) {
|
|
|
|
free_pref(ref);
|
2011-11-24 01:55:04 +08:00
|
|
|
continue;
|
2017-07-13 06:20:06 +08:00
|
|
|
}
|
|
|
|
|
2017-07-13 06:20:10 +08:00
|
|
|
if (sc && sc->root_objectid &&
|
|
|
|
ref->root_id != sc->root_objectid) {
|
2017-07-13 06:20:06 +08:00
|
|
|
free_pref(ref);
|
2014-09-11 04:20:45 +08:00
|
|
|
ret = BACKREF_FOUND_SHARED;
|
|
|
|
goto out;
|
|
|
|
}
|
2024-06-11 20:26:44 +08:00
|
|
|
err = resolve_indirect_ref(fs_info, path, time_seq, preftrees,
|
|
|
|
ref, parents, extent_item_pos,
|
|
|
|
ignore_offset);
|
2014-01-23 13:47:49 +08:00
|
|
|
/*
|
|
|
|
* we can only tolerate ENOENT,otherwise,we should catch error
|
|
|
|
* and return directly.
|
|
|
|
*/
|
|
|
|
if (err == -ENOENT) {
|
2017-07-13 06:20:10 +08:00
|
|
|
prelim_ref_insert(fs_info, &preftrees->direct, ref,
|
|
|
|
NULL);
|
2011-11-24 01:55:04 +08:00
|
|
|
continue;
|
2014-01-23 13:47:49 +08:00
|
|
|
} else if (err) {
|
2017-07-13 06:20:06 +08:00
|
|
|
free_pref(ref);
|
2014-01-23 13:47:49 +08:00
|
|
|
ret = err;
|
|
|
|
goto out;
|
|
|
|
}
|
2011-11-24 01:55:04 +08:00
|
|
|
|
|
|
|
/* we put the first parent into the ref at hand */
|
2012-05-22 20:56:50 +08:00
|
|
|
ULIST_ITER_INIT(&uiter);
|
|
|
|
node = ulist_next(parents, &uiter);
|
2011-11-24 01:55:04 +08:00
|
|
|
ref->parent = node ? node->val : 0;
|
2017-06-29 11:56:56 +08:00
|
|
|
ref->inode_list = unode_aux_to_inode_list(node);
|
2011-11-24 01:55:04 +08:00
|
|
|
|
2017-07-13 06:20:06 +08:00
|
|
|
/* Add a prelim_ref(s) for any other parent(s). */
|
2012-05-22 20:56:50 +08:00
|
|
|
while ((node = ulist_next(parents, &uiter))) {
|
2017-07-13 06:20:06 +08:00
|
|
|
struct prelim_ref *new_ref;
|
|
|
|
|
2013-08-09 13:25:36 +08:00
|
|
|
new_ref = kmem_cache_alloc(btrfs_prelim_ref_cache,
|
|
|
|
GFP_NOFS);
|
2011-11-24 01:55:04 +08:00
|
|
|
if (!new_ref) {
|
2017-07-13 06:20:06 +08:00
|
|
|
free_pref(ref);
|
2011-11-24 01:55:04 +08:00
|
|
|
ret = -ENOMEM;
|
2013-04-15 18:26:38 +08:00
|
|
|
goto out;
|
2011-11-24 01:55:04 +08:00
|
|
|
}
|
|
|
|
memcpy(new_ref, ref, sizeof(*ref));
|
|
|
|
new_ref->parent = node->val;
|
2017-06-29 11:56:56 +08:00
|
|
|
new_ref->inode_list = unode_aux_to_inode_list(node);
|
2017-07-13 06:20:10 +08:00
|
|
|
prelim_ref_insert(fs_info, &preftrees->direct,
|
|
|
|
new_ref, NULL);
|
2011-11-24 01:55:04 +08:00
|
|
|
}
|
2017-07-13 06:20:06 +08:00
|
|
|
|
2017-07-13 06:20:10 +08:00
|
|
|
/*
|
2018-11-28 19:05:13 +08:00
|
|
|
* Now it's a direct ref, put it in the direct tree. We must
|
2017-07-13 06:20:10 +08:00
|
|
|
* do this last because the ref could be merged/freed here.
|
|
|
|
*/
|
|
|
|
prelim_ref_insert(fs_info, &preftrees->direct, ref, NULL);
|
2017-07-13 06:20:06 +08:00
|
|
|
|
2011-11-24 01:55:04 +08:00
|
|
|
ulist_reinit(parents);
|
2017-07-13 06:20:09 +08:00
|
|
|
cond_resched();
|
2011-11-24 01:55:04 +08:00
|
|
|
}
|
2013-04-15 18:26:38 +08:00
|
|
|
out:
|
2024-06-12 13:13:20 +08:00
|
|
|
/*
|
|
|
|
* We may have inode lists attached to refs in the parents ulist, so we
|
|
|
|
* must free them before freeing the ulist and its refs.
|
|
|
|
*/
|
|
|
|
free_leaf_list(parents);
|
2011-11-24 01:55:04 +08:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2012-05-15 23:55:51 +08:00
|
|
|
/*
|
|
|
|
* read tree blocks and add keys where required.
|
|
|
|
*/
|
2017-06-29 11:56:57 +08:00
|
|
|
static int add_missing_keys(struct btrfs_fs_info *fs_info,
|
btrfs: honor path->skip_locking in backref code
Qgroups will do the old roots lookup at delayed ref time, which could be
while walking down the extent root while running a delayed ref. This
should be fine, except we specifically lock eb's in the backref walking
code irrespective of path->skip_locking, which deadlocks the system.
Fix up the backref code to honor path->skip_locking, nobody will be
modifying the commit_root when we're searching so it's completely safe
to do.
This happens since fb235dc06fac ("btrfs: qgroup: Move half of the qgroup
accounting time out of commit trans"), kernel may lockup with quota
enabled.
There is one backref trace triggered by snapshot dropping along with
write operation in the source subvolume. The example can be reliably
reproduced:
btrfs-cleaner D 0 4062 2 0x80000000
Call Trace:
schedule+0x32/0x90
btrfs_tree_read_lock+0x93/0x130 [btrfs]
find_parent_nodes+0x29b/0x1170 [btrfs]
btrfs_find_all_roots_safe+0xa8/0x120 [btrfs]
btrfs_find_all_roots+0x57/0x70 [btrfs]
btrfs_qgroup_trace_extent_post+0x37/0x70 [btrfs]
btrfs_qgroup_trace_leaf_items+0x10b/0x140 [btrfs]
btrfs_qgroup_trace_subtree+0xc8/0xe0 [btrfs]
do_walk_down+0x541/0x5e3 [btrfs]
walk_down_tree+0xab/0xe7 [btrfs]
btrfs_drop_snapshot+0x356/0x71a [btrfs]
btrfs_clean_one_deleted_snapshot+0xb8/0xf0 [btrfs]
cleaner_kthread+0x12b/0x160 [btrfs]
kthread+0x112/0x130
ret_from_fork+0x27/0x50
When dropping snapshots with qgroup enabled, we will trigger backref
walk.
However such backref walk at that timing is pretty dangerous, as if one
of the parent nodes get WRITE locked by other thread, we could cause a
dead lock.
For example:
FS 260 FS 261 (Dropped)
node A node B
/ \ / \
node C node D node E
/ \ / \ / \
leaf F|leaf G|leaf H|leaf I|leaf J|leaf K
The lock sequence would be:
Thread A (cleaner) | Thread B (other writer)
-----------------------------------------------------------------------
write_lock(B) |
write_lock(D) |
^^^ called by walk_down_tree() |
| write_lock(A)
| write_lock(D) << Stall
read_lock(H) << for backref walk |
read_lock(D) << lock owner is |
the same thread A |
so read lock is OK |
read_lock(A) << Stall |
So thread A hold write lock D, and needs read lock A to unlock.
While thread B holds write lock A, while needs lock D to unlock.
This will cause a deadlock.
This is not only limited to snapshot dropping case. As the backref
walk, even only happens on commit trees, is breaking the normal top-down
locking order, makes it deadlock prone.
Fixes: fb235dc06fac ("btrfs: qgroup: Move half of the qgroup accounting time out of commit trans")
CC: stable@vger.kernel.org # 4.14+
Reported-and-tested-by: David Sterba <dsterba@suse.com>
Reported-by: Filipe Manana <fdmanana@suse.com>
Reviewed-by: Qu Wenruo <wqu@suse.com>
Signed-off-by: Josef Bacik <josef@toxicpanda.com>
Reviewed-by: Filipe Manana <fdmanana@suse.com>
[ rebase to latest branch and fix lock assert bug in btrfs/007 ]
Signed-off-by: Qu Wenruo <wqu@suse.com>
[ copy logs and deadlock analysis from Qu's patch ]
Signed-off-by: David Sterba <dsterba@suse.com>
2019-01-17 00:00:57 +08:00
|
|
|
struct preftrees *preftrees, bool lock)
|
2012-05-15 23:55:51 +08:00
|
|
|
{
|
2017-06-29 11:56:57 +08:00
|
|
|
struct prelim_ref *ref;
|
2012-05-15 23:55:51 +08:00
|
|
|
struct extent_buffer *eb;
|
2017-07-13 06:20:06 +08:00
|
|
|
struct preftree *tree = &preftrees->indirect_missing_keys;
|
|
|
|
struct rb_node *node;
|
2012-05-15 23:55:51 +08:00
|
|
|
|
2018-08-23 03:51:53 +08:00
|
|
|
while ((node = rb_first_cached(&tree->root))) {
|
2017-07-13 06:20:06 +08:00
|
|
|
ref = rb_entry(node, struct prelim_ref, rbnode);
|
2018-08-23 03:51:53 +08:00
|
|
|
rb_erase_cached(node, &tree->root);
|
2017-07-13 06:20:06 +08:00
|
|
|
|
|
|
|
BUG_ON(ref->parent); /* should not be a direct ref */
|
|
|
|
BUG_ON(ref->key_for_search.type);
|
2012-05-15 23:55:51 +08:00
|
|
|
BUG_ON(!ref->wanted_disk_byte);
|
2017-07-13 06:20:06 +08:00
|
|
|
|
2018-03-29 09:08:11 +08:00
|
|
|
eb = read_tree_block(fs_info, ref->wanted_disk_byte, 0,
|
|
|
|
ref->level - 1, NULL);
|
2015-05-25 17:30:15 +08:00
|
|
|
if (IS_ERR(eb)) {
|
2017-07-13 06:20:06 +08:00
|
|
|
free_pref(ref);
|
2015-05-25 17:30:15 +08:00
|
|
|
return PTR_ERR(eb);
|
|
|
|
} else if (!extent_buffer_uptodate(eb)) {
|
2017-07-13 06:20:06 +08:00
|
|
|
free_pref(ref);
|
2013-04-24 02:17:42 +08:00
|
|
|
free_extent_buffer(eb);
|
|
|
|
return -EIO;
|
|
|
|
}
|
btrfs: honor path->skip_locking in backref code
Qgroups will do the old roots lookup at delayed ref time, which could be
while walking down the extent root while running a delayed ref. This
should be fine, except we specifically lock eb's in the backref walking
code irrespective of path->skip_locking, which deadlocks the system.
Fix up the backref code to honor path->skip_locking, nobody will be
modifying the commit_root when we're searching so it's completely safe
to do.
This happens since fb235dc06fac ("btrfs: qgroup: Move half of the qgroup
accounting time out of commit trans"), kernel may lockup with quota
enabled.
There is one backref trace triggered by snapshot dropping along with
write operation in the source subvolume. The example can be reliably
reproduced:
btrfs-cleaner D 0 4062 2 0x80000000
Call Trace:
schedule+0x32/0x90
btrfs_tree_read_lock+0x93/0x130 [btrfs]
find_parent_nodes+0x29b/0x1170 [btrfs]
btrfs_find_all_roots_safe+0xa8/0x120 [btrfs]
btrfs_find_all_roots+0x57/0x70 [btrfs]
btrfs_qgroup_trace_extent_post+0x37/0x70 [btrfs]
btrfs_qgroup_trace_leaf_items+0x10b/0x140 [btrfs]
btrfs_qgroup_trace_subtree+0xc8/0xe0 [btrfs]
do_walk_down+0x541/0x5e3 [btrfs]
walk_down_tree+0xab/0xe7 [btrfs]
btrfs_drop_snapshot+0x356/0x71a [btrfs]
btrfs_clean_one_deleted_snapshot+0xb8/0xf0 [btrfs]
cleaner_kthread+0x12b/0x160 [btrfs]
kthread+0x112/0x130
ret_from_fork+0x27/0x50
When dropping snapshots with qgroup enabled, we will trigger backref
walk.
However such backref walk at that timing is pretty dangerous, as if one
of the parent nodes get WRITE locked by other thread, we could cause a
dead lock.
For example:
FS 260 FS 261 (Dropped)
node A node B
/ \ / \
node C node D node E
/ \ / \ / \
leaf F|leaf G|leaf H|leaf I|leaf J|leaf K
The lock sequence would be:
Thread A (cleaner) | Thread B (other writer)
-----------------------------------------------------------------------
write_lock(B) |
write_lock(D) |
^^^ called by walk_down_tree() |
| write_lock(A)
| write_lock(D) << Stall
read_lock(H) << for backref walk |
read_lock(D) << lock owner is |
the same thread A |
so read lock is OK |
read_lock(A) << Stall |
So thread A hold write lock D, and needs read lock A to unlock.
While thread B holds write lock A, while needs lock D to unlock.
This will cause a deadlock.
This is not only limited to snapshot dropping case. As the backref
walk, even only happens on commit trees, is breaking the normal top-down
locking order, makes it deadlock prone.
Fixes: fb235dc06fac ("btrfs: qgroup: Move half of the qgroup accounting time out of commit trans")
CC: stable@vger.kernel.org # 4.14+
Reported-and-tested-by: David Sterba <dsterba@suse.com>
Reported-by: Filipe Manana <fdmanana@suse.com>
Reviewed-by: Qu Wenruo <wqu@suse.com>
Signed-off-by: Josef Bacik <josef@toxicpanda.com>
Reviewed-by: Filipe Manana <fdmanana@suse.com>
[ rebase to latest branch and fix lock assert bug in btrfs/007 ]
Signed-off-by: Qu Wenruo <wqu@suse.com>
[ copy logs and deadlock analysis from Qu's patch ]
Signed-off-by: David Sterba <dsterba@suse.com>
2019-01-17 00:00:57 +08:00
|
|
|
if (lock)
|
|
|
|
btrfs_tree_read_lock(eb);
|
2012-05-15 23:55:51 +08:00
|
|
|
if (btrfs_header_level(eb) == 0)
|
|
|
|
btrfs_item_key_to_cpu(eb, &ref->key_for_search, 0);
|
|
|
|
else
|
|
|
|
btrfs_node_key_to_cpu(eb, &ref->key_for_search, 0);
|
btrfs: honor path->skip_locking in backref code
Qgroups will do the old roots lookup at delayed ref time, which could be
while walking down the extent root while running a delayed ref. This
should be fine, except we specifically lock eb's in the backref walking
code irrespective of path->skip_locking, which deadlocks the system.
Fix up the backref code to honor path->skip_locking, nobody will be
modifying the commit_root when we're searching so it's completely safe
to do.
This happens since fb235dc06fac ("btrfs: qgroup: Move half of the qgroup
accounting time out of commit trans"), kernel may lockup with quota
enabled.
There is one backref trace triggered by snapshot dropping along with
write operation in the source subvolume. The example can be reliably
reproduced:
btrfs-cleaner D 0 4062 2 0x80000000
Call Trace:
schedule+0x32/0x90
btrfs_tree_read_lock+0x93/0x130 [btrfs]
find_parent_nodes+0x29b/0x1170 [btrfs]
btrfs_find_all_roots_safe+0xa8/0x120 [btrfs]
btrfs_find_all_roots+0x57/0x70 [btrfs]
btrfs_qgroup_trace_extent_post+0x37/0x70 [btrfs]
btrfs_qgroup_trace_leaf_items+0x10b/0x140 [btrfs]
btrfs_qgroup_trace_subtree+0xc8/0xe0 [btrfs]
do_walk_down+0x541/0x5e3 [btrfs]
walk_down_tree+0xab/0xe7 [btrfs]
btrfs_drop_snapshot+0x356/0x71a [btrfs]
btrfs_clean_one_deleted_snapshot+0xb8/0xf0 [btrfs]
cleaner_kthread+0x12b/0x160 [btrfs]
kthread+0x112/0x130
ret_from_fork+0x27/0x50
When dropping snapshots with qgroup enabled, we will trigger backref
walk.
However such backref walk at that timing is pretty dangerous, as if one
of the parent nodes get WRITE locked by other thread, we could cause a
dead lock.
For example:
FS 260 FS 261 (Dropped)
node A node B
/ \ / \
node C node D node E
/ \ / \ / \
leaf F|leaf G|leaf H|leaf I|leaf J|leaf K
The lock sequence would be:
Thread A (cleaner) | Thread B (other writer)
-----------------------------------------------------------------------
write_lock(B) |
write_lock(D) |
^^^ called by walk_down_tree() |
| write_lock(A)
| write_lock(D) << Stall
read_lock(H) << for backref walk |
read_lock(D) << lock owner is |
the same thread A |
so read lock is OK |
read_lock(A) << Stall |
So thread A hold write lock D, and needs read lock A to unlock.
While thread B holds write lock A, while needs lock D to unlock.
This will cause a deadlock.
This is not only limited to snapshot dropping case. As the backref
walk, even only happens on commit trees, is breaking the normal top-down
locking order, makes it deadlock prone.
Fixes: fb235dc06fac ("btrfs: qgroup: Move half of the qgroup accounting time out of commit trans")
CC: stable@vger.kernel.org # 4.14+
Reported-and-tested-by: David Sterba <dsterba@suse.com>
Reported-by: Filipe Manana <fdmanana@suse.com>
Reviewed-by: Qu Wenruo <wqu@suse.com>
Signed-off-by: Josef Bacik <josef@toxicpanda.com>
Reviewed-by: Filipe Manana <fdmanana@suse.com>
[ rebase to latest branch and fix lock assert bug in btrfs/007 ]
Signed-off-by: Qu Wenruo <wqu@suse.com>
[ copy logs and deadlock analysis from Qu's patch ]
Signed-off-by: David Sterba <dsterba@suse.com>
2019-01-17 00:00:57 +08:00
|
|
|
if (lock)
|
|
|
|
btrfs_tree_read_unlock(eb);
|
2012-05-15 23:55:51 +08:00
|
|
|
free_extent_buffer(eb);
|
2017-07-13 06:20:10 +08:00
|
|
|
prelim_ref_insert(fs_info, &preftrees->indirect, ref, NULL);
|
2017-07-13 06:20:09 +08:00
|
|
|
cond_resched();
|
2012-05-15 23:55:51 +08:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-11-24 01:55:04 +08:00
|
|
|
/*
|
|
|
|
* add all currently queued delayed refs from this head whose seq nr is
|
|
|
|
* smaller or equal that seq to the list
|
|
|
|
*/
|
2017-07-13 06:20:08 +08:00
|
|
|
static int add_delayed_refs(const struct btrfs_fs_info *fs_info,
|
|
|
|
struct btrfs_delayed_ref_head *head, u64 seq,
|
2024-06-11 20:26:44 +08:00
|
|
|
struct preftrees *preftrees, struct share_check *sc)
|
2011-11-24 01:55:04 +08:00
|
|
|
{
|
2015-03-30 17:03:00 +08:00
|
|
|
struct btrfs_delayed_ref_node *node;
|
2012-05-15 23:55:51 +08:00
|
|
|
struct btrfs_key key;
|
2017-10-20 02:16:00 +08:00
|
|
|
struct rb_node *n;
|
2017-07-13 06:20:11 +08:00
|
|
|
int count;
|
2012-01-27 04:01:11 +08:00
|
|
|
int ret = 0;
|
2011-11-24 01:55:04 +08:00
|
|
|
|
2014-01-23 22:21:38 +08:00
|
|
|
spin_lock(&head->lock);
|
2018-08-23 03:51:50 +08:00
|
|
|
for (n = rb_first_cached(&head->ref_tree); n; n = rb_next(n)) {
|
2017-10-20 02:16:00 +08:00
|
|
|
node = rb_entry(n, struct btrfs_delayed_ref_node,
|
|
|
|
ref_node);
|
2011-11-24 01:55:04 +08:00
|
|
|
if (node->seq > seq)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
switch (node->action) {
|
|
|
|
case BTRFS_ADD_DELAYED_EXTENT:
|
|
|
|
case BTRFS_UPDATE_DELAYED_HEAD:
|
|
|
|
WARN_ON(1);
|
|
|
|
continue;
|
|
|
|
case BTRFS_ADD_DELAYED_REF:
|
2017-07-13 06:20:11 +08:00
|
|
|
count = node->ref_mod;
|
2011-11-24 01:55:04 +08:00
|
|
|
break;
|
|
|
|
case BTRFS_DROP_DELAYED_REF:
|
2017-07-13 06:20:11 +08:00
|
|
|
count = node->ref_mod * -1;
|
2011-11-24 01:55:04 +08:00
|
|
|
break;
|
|
|
|
default:
|
btrfs: use BUG() instead of BUG_ON(1)
BUG_ON(1) leads to bogus warnings from clang when
CONFIG_PROFILE_ANNOTATED_BRANCHES is set:
fs/btrfs/volumes.c:5041:3: error: variable 'max_chunk_size' is used uninitialized whenever 'if' condition is false
[-Werror,-Wsometimes-uninitialized]
BUG_ON(1);
^~~~~~~~~
include/asm-generic/bug.h:61:36: note: expanded from macro 'BUG_ON'
#define BUG_ON(condition) do { if (unlikely(condition)) BUG(); } while (0)
^~~~~~~~~~~~~~~~~~~
include/linux/compiler.h:48:23: note: expanded from macro 'unlikely'
# define unlikely(x) (__branch_check__(x, 0, __builtin_constant_p(x)))
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
fs/btrfs/volumes.c:5046:9: note: uninitialized use occurs here
max_chunk_size);
^~~~~~~~~~~~~~
include/linux/kernel.h:860:36: note: expanded from macro 'min'
#define min(x, y) __careful_cmp(x, y, <)
^
include/linux/kernel.h:853:17: note: expanded from macro '__careful_cmp'
__cmp_once(x, y, __UNIQUE_ID(__x), __UNIQUE_ID(__y), op))
^
include/linux/kernel.h:847:25: note: expanded from macro '__cmp_once'
typeof(y) unique_y = (y); \
^
fs/btrfs/volumes.c:5041:3: note: remove the 'if' if its condition is always true
BUG_ON(1);
^
include/asm-generic/bug.h:61:32: note: expanded from macro 'BUG_ON'
#define BUG_ON(condition) do { if (unlikely(condition)) BUG(); } while (0)
^
fs/btrfs/volumes.c:4993:20: note: initialize the variable 'max_chunk_size' to silence this warning
u64 max_chunk_size;
^
= 0
Change it to BUG() so clang can see that this code path can never
continue.
Reviewed-by: Nikolay Borisov <nborisov@suse.com>
Reviewed-by: David Sterba <dsterba@suse.com>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: David Sterba <dsterba@suse.com>
2019-03-25 21:02:25 +08:00
|
|
|
BUG();
|
2011-11-24 01:55:04 +08:00
|
|
|
}
|
|
|
|
switch (node->type) {
|
|
|
|
case BTRFS_TREE_BLOCK_REF_KEY: {
|
2017-07-13 06:20:06 +08:00
|
|
|
/* NORMAL INDIRECT METADATA backref */
|
2011-11-24 01:55:04 +08:00
|
|
|
struct btrfs_delayed_tree_ref *ref;
|
2024-06-12 13:13:20 +08:00
|
|
|
struct btrfs_key *key_ptr = NULL;
|
|
|
|
|
|
|
|
if (head->extent_op && head->extent_op->update_key) {
|
|
|
|
btrfs_disk_key_to_cpu(&key, &head->extent_op->key);
|
|
|
|
key_ptr = &key;
|
|
|
|
}
|
2011-11-24 01:55:04 +08:00
|
|
|
|
|
|
|
ref = btrfs_delayed_node_to_tree_ref(node);
|
2017-07-13 06:20:08 +08:00
|
|
|
ret = add_indirect_ref(fs_info, preftrees, ref->root,
|
2024-06-12 13:13:20 +08:00
|
|
|
key_ptr, ref->level + 1,
|
2017-07-13 06:20:11 +08:00
|
|
|
node->bytenr, count, sc,
|
|
|
|
GFP_ATOMIC);
|
2011-11-24 01:55:04 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case BTRFS_SHARED_BLOCK_REF_KEY: {
|
2017-07-13 06:20:06 +08:00
|
|
|
/* SHARED DIRECT METADATA backref */
|
2011-11-24 01:55:04 +08:00
|
|
|
struct btrfs_delayed_tree_ref *ref;
|
|
|
|
|
|
|
|
ref = btrfs_delayed_node_to_tree_ref(node);
|
2017-07-13 06:20:06 +08:00
|
|
|
|
2017-07-13 06:20:11 +08:00
|
|
|
ret = add_direct_ref(fs_info, preftrees, ref->level + 1,
|
|
|
|
ref->parent, node->bytenr, count,
|
2017-07-13 06:20:10 +08:00
|
|
|
sc, GFP_ATOMIC);
|
2011-11-24 01:55:04 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case BTRFS_EXTENT_DATA_REF_KEY: {
|
2017-07-13 06:20:06 +08:00
|
|
|
/* NORMAL INDIRECT DATA backref */
|
2011-11-24 01:55:04 +08:00
|
|
|
struct btrfs_delayed_data_ref *ref;
|
|
|
|
ref = btrfs_delayed_node_to_data_ref(node);
|
|
|
|
|
|
|
|
key.objectid = ref->objectid;
|
|
|
|
key.type = BTRFS_EXTENT_DATA_KEY;
|
|
|
|
key.offset = ref->offset;
|
2014-09-11 04:20:45 +08:00
|
|
|
|
|
|
|
/*
|
2024-06-12 13:13:20 +08:00
|
|
|
* If we have a share check context and a reference for
|
|
|
|
* another inode, we can't exit immediately. This is
|
|
|
|
* because even if this is a BTRFS_ADD_DELAYED_REF
|
|
|
|
* reference we may find next a BTRFS_DROP_DELAYED_REF
|
|
|
|
* which cancels out this ADD reference.
|
|
|
|
*
|
|
|
|
* If this is a DROP reference and there was no previous
|
|
|
|
* ADD reference, then we need to signal that when we
|
|
|
|
* process references from the extent tree (through
|
|
|
|
* add_inline_refs() and add_keyed_refs()), we should
|
|
|
|
* not exit early if we find a reference for another
|
|
|
|
* inode, because one of the delayed DROP references
|
|
|
|
* may cancel that reference in the extent tree.
|
2014-09-11 04:20:45 +08:00
|
|
|
*/
|
2024-06-12 13:13:20 +08:00
|
|
|
if (sc && count < 0)
|
|
|
|
sc->have_delayed_delete_refs = true;
|
2014-09-11 04:20:45 +08:00
|
|
|
|
2017-07-13 06:20:08 +08:00
|
|
|
ret = add_indirect_ref(fs_info, preftrees, ref->root,
|
2017-07-13 06:20:11 +08:00
|
|
|
&key, 0, node->bytenr, count, sc,
|
|
|
|
GFP_ATOMIC);
|
2011-11-24 01:55:04 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case BTRFS_SHARED_DATA_REF_KEY: {
|
2017-07-13 06:20:06 +08:00
|
|
|
/* SHARED DIRECT FULL backref */
|
2011-11-24 01:55:04 +08:00
|
|
|
struct btrfs_delayed_data_ref *ref;
|
|
|
|
|
|
|
|
ref = btrfs_delayed_node_to_data_ref(node);
|
2017-07-13 06:20:06 +08:00
|
|
|
|
2017-07-13 06:20:11 +08:00
|
|
|
ret = add_direct_ref(fs_info, preftrees, 0, ref->parent,
|
|
|
|
node->bytenr, count, sc,
|
|
|
|
GFP_ATOMIC);
|
2011-11-24 01:55:04 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
WARN_ON(1);
|
|
|
|
}
|
2017-07-13 06:20:10 +08:00
|
|
|
/*
|
|
|
|
* We must ignore BACKREF_FOUND_SHARED until all delayed
|
|
|
|
* refs have been checked.
|
|
|
|
*/
|
|
|
|
if (ret && (ret != BACKREF_FOUND_SHARED))
|
2014-01-23 22:21:38 +08:00
|
|
|
break;
|
2011-11-24 01:55:04 +08:00
|
|
|
}
|
2017-07-13 06:20:10 +08:00
|
|
|
if (!ret)
|
|
|
|
ret = extent_is_shared(sc);
|
2024-06-12 13:13:20 +08:00
|
|
|
|
2014-01-23 22:21:38 +08:00
|
|
|
spin_unlock(&head->lock);
|
|
|
|
return ret;
|
2011-11-24 01:55:04 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* add all inline backrefs for bytenr to the list
|
2017-07-13 06:20:10 +08:00
|
|
|
*
|
|
|
|
* Returns 0 on success, <0 on error, or BACKREF_FOUND_SHARED.
|
2011-11-24 01:55:04 +08:00
|
|
|
*/
|
2017-07-13 06:20:08 +08:00
|
|
|
static int add_inline_refs(const struct btrfs_fs_info *fs_info,
|
|
|
|
struct btrfs_path *path, u64 bytenr,
|
2017-07-13 06:20:06 +08:00
|
|
|
int *info_level, struct preftrees *preftrees,
|
2024-06-11 20:26:44 +08:00
|
|
|
struct share_check *sc)
|
2011-11-24 01:55:04 +08:00
|
|
|
{
|
2012-01-27 04:01:11 +08:00
|
|
|
int ret = 0;
|
2011-11-24 01:55:04 +08:00
|
|
|
int slot;
|
|
|
|
struct extent_buffer *leaf;
|
|
|
|
struct btrfs_key key;
|
2013-06-29 01:11:22 +08:00
|
|
|
struct btrfs_key found_key;
|
2011-11-24 01:55:04 +08:00
|
|
|
unsigned long ptr;
|
|
|
|
unsigned long end;
|
|
|
|
struct btrfs_extent_item *ei;
|
|
|
|
u64 flags;
|
|
|
|
u64 item_size;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* enumerate all inline refs
|
|
|
|
*/
|
|
|
|
leaf = path->nodes[0];
|
2012-05-22 19:43:25 +08:00
|
|
|
slot = path->slots[0];
|
2011-11-24 01:55:04 +08:00
|
|
|
|
|
|
|
item_size = btrfs_item_size_nr(leaf, slot);
|
|
|
|
BUG_ON(item_size < sizeof(*ei));
|
|
|
|
|
|
|
|
ei = btrfs_item_ptr(leaf, slot, struct btrfs_extent_item);
|
|
|
|
flags = btrfs_extent_flags(leaf, ei);
|
2013-06-29 01:11:22 +08:00
|
|
|
btrfs_item_key_to_cpu(leaf, &found_key, slot);
|
2011-11-24 01:55:04 +08:00
|
|
|
|
|
|
|
ptr = (unsigned long)(ei + 1);
|
|
|
|
end = (unsigned long)ei + item_size;
|
|
|
|
|
2013-06-29 01:11:22 +08:00
|
|
|
if (found_key.type == BTRFS_EXTENT_ITEM_KEY &&
|
|
|
|
flags & BTRFS_EXTENT_FLAG_TREE_BLOCK) {
|
2011-11-24 01:55:04 +08:00
|
|
|
struct btrfs_tree_block_info *info;
|
|
|
|
|
|
|
|
info = (struct btrfs_tree_block_info *)ptr;
|
|
|
|
*info_level = btrfs_tree_block_level(leaf, info);
|
|
|
|
ptr += sizeof(struct btrfs_tree_block_info);
|
|
|
|
BUG_ON(ptr > end);
|
2013-06-29 01:11:22 +08:00
|
|
|
} else if (found_key.type == BTRFS_METADATA_ITEM_KEY) {
|
|
|
|
*info_level = found_key.offset;
|
2011-11-24 01:55:04 +08:00
|
|
|
} else {
|
|
|
|
BUG_ON(!(flags & BTRFS_EXTENT_FLAG_DATA));
|
|
|
|
}
|
|
|
|
|
|
|
|
while (ptr < end) {
|
|
|
|
struct btrfs_extent_inline_ref *iref;
|
|
|
|
u64 offset;
|
|
|
|
int type;
|
|
|
|
|
|
|
|
iref = (struct btrfs_extent_inline_ref *)ptr;
|
2017-08-19 05:15:19 +08:00
|
|
|
type = btrfs_get_extent_inline_ref_type(leaf, iref,
|
|
|
|
BTRFS_REF_TYPE_ANY);
|
|
|
|
if (type == BTRFS_REF_TYPE_INVALID)
|
2018-06-22 16:18:01 +08:00
|
|
|
return -EUCLEAN;
|
2017-08-19 05:15:19 +08:00
|
|
|
|
2011-11-24 01:55:04 +08:00
|
|
|
offset = btrfs_extent_inline_ref_offset(leaf, iref);
|
|
|
|
|
|
|
|
switch (type) {
|
|
|
|
case BTRFS_SHARED_BLOCK_REF_KEY:
|
2017-07-13 06:20:08 +08:00
|
|
|
ret = add_direct_ref(fs_info, preftrees,
|
|
|
|
*info_level + 1, offset,
|
2017-07-13 06:20:10 +08:00
|
|
|
bytenr, 1, NULL, GFP_NOFS);
|
2011-11-24 01:55:04 +08:00
|
|
|
break;
|
|
|
|
case BTRFS_SHARED_DATA_REF_KEY: {
|
|
|
|
struct btrfs_shared_data_ref *sdref;
|
|
|
|
int count;
|
|
|
|
|
|
|
|
sdref = (struct btrfs_shared_data_ref *)(iref + 1);
|
|
|
|
count = btrfs_shared_data_ref_count(leaf, sdref);
|
2017-07-13 06:20:06 +08:00
|
|
|
|
2017-07-13 06:20:08 +08:00
|
|
|
ret = add_direct_ref(fs_info, preftrees, 0, offset,
|
2017-07-13 06:20:10 +08:00
|
|
|
bytenr, count, sc, GFP_NOFS);
|
2011-11-24 01:55:04 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case BTRFS_TREE_BLOCK_REF_KEY:
|
2017-07-13 06:20:08 +08:00
|
|
|
ret = add_indirect_ref(fs_info, preftrees, offset,
|
|
|
|
NULL, *info_level + 1,
|
2017-07-13 06:20:10 +08:00
|
|
|
bytenr, 1, NULL, GFP_NOFS);
|
2011-11-24 01:55:04 +08:00
|
|
|
break;
|
|
|
|
case BTRFS_EXTENT_DATA_REF_KEY: {
|
|
|
|
struct btrfs_extent_data_ref *dref;
|
|
|
|
int count;
|
|
|
|
u64 root;
|
|
|
|
|
|
|
|
dref = (struct btrfs_extent_data_ref *)(&iref->offset);
|
|
|
|
count = btrfs_extent_data_ref_count(leaf, dref);
|
|
|
|
key.objectid = btrfs_extent_data_ref_objectid(leaf,
|
|
|
|
dref);
|
|
|
|
key.type = BTRFS_EXTENT_DATA_KEY;
|
|
|
|
key.offset = btrfs_extent_data_ref_offset(leaf, dref);
|
2014-09-11 04:20:45 +08:00
|
|
|
|
2024-06-12 13:13:20 +08:00
|
|
|
if (sc && sc->inum && key.objectid != sc->inum &&
|
|
|
|
!sc->have_delayed_delete_refs) {
|
2014-09-11 04:20:45 +08:00
|
|
|
ret = BACKREF_FOUND_SHARED;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2011-11-24 01:55:04 +08:00
|
|
|
root = btrfs_extent_data_ref_root(leaf, dref);
|
2017-07-13 06:20:06 +08:00
|
|
|
|
2017-07-13 06:20:08 +08:00
|
|
|
ret = add_indirect_ref(fs_info, preftrees, root,
|
|
|
|
&key, 0, bytenr, count,
|
2017-07-13 06:20:10 +08:00
|
|
|
sc, GFP_NOFS);
|
2024-06-12 13:13:20 +08:00
|
|
|
|
2011-11-24 01:55:04 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
WARN_ON(1);
|
|
|
|
}
|
2013-04-10 19:22:50 +08:00
|
|
|
if (ret)
|
|
|
|
return ret;
|
2011-11-24 01:55:04 +08:00
|
|
|
ptr += btrfs_extent_inline_ref_size(type);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* add all non-inline backrefs for bytenr to the list
|
2017-07-13 06:20:10 +08:00
|
|
|
*
|
|
|
|
* Returns 0 on success, <0 on error, or BACKREF_FOUND_SHARED.
|
2011-11-24 01:55:04 +08:00
|
|
|
*/
|
2017-06-29 11:56:57 +08:00
|
|
|
static int add_keyed_refs(struct btrfs_fs_info *fs_info,
|
|
|
|
struct btrfs_path *path, u64 bytenr,
|
2017-07-13 06:20:06 +08:00
|
|
|
int info_level, struct preftrees *preftrees,
|
2017-07-13 06:20:10 +08:00
|
|
|
struct share_check *sc)
|
2011-11-24 01:55:04 +08:00
|
|
|
{
|
|
|
|
struct btrfs_root *extent_root = fs_info->extent_root;
|
|
|
|
int ret;
|
|
|
|
int slot;
|
|
|
|
struct extent_buffer *leaf;
|
|
|
|
struct btrfs_key key;
|
|
|
|
|
|
|
|
while (1) {
|
|
|
|
ret = btrfs_next_item(extent_root, path);
|
|
|
|
if (ret < 0)
|
|
|
|
break;
|
|
|
|
if (ret) {
|
|
|
|
ret = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
slot = path->slots[0];
|
|
|
|
leaf = path->nodes[0];
|
|
|
|
btrfs_item_key_to_cpu(leaf, &key, slot);
|
|
|
|
|
|
|
|
if (key.objectid != bytenr)
|
|
|
|
break;
|
|
|
|
if (key.type < BTRFS_TREE_BLOCK_REF_KEY)
|
|
|
|
continue;
|
|
|
|
if (key.type > BTRFS_SHARED_DATA_REF_KEY)
|
|
|
|
break;
|
|
|
|
|
|
|
|
switch (key.type) {
|
|
|
|
case BTRFS_SHARED_BLOCK_REF_KEY:
|
2017-07-13 06:20:06 +08:00
|
|
|
/* SHARED DIRECT METADATA backref */
|
2017-07-13 06:20:08 +08:00
|
|
|
ret = add_direct_ref(fs_info, preftrees,
|
|
|
|
info_level + 1, key.offset,
|
2017-07-13 06:20:10 +08:00
|
|
|
bytenr, 1, NULL, GFP_NOFS);
|
2011-11-24 01:55:04 +08:00
|
|
|
break;
|
|
|
|
case BTRFS_SHARED_DATA_REF_KEY: {
|
2017-07-13 06:20:06 +08:00
|
|
|
/* SHARED DIRECT FULL backref */
|
2011-11-24 01:55:04 +08:00
|
|
|
struct btrfs_shared_data_ref *sdref;
|
|
|
|
int count;
|
|
|
|
|
|
|
|
sdref = btrfs_item_ptr(leaf, slot,
|
|
|
|
struct btrfs_shared_data_ref);
|
|
|
|
count = btrfs_shared_data_ref_count(leaf, sdref);
|
2017-07-13 06:20:08 +08:00
|
|
|
ret = add_direct_ref(fs_info, preftrees, 0,
|
|
|
|
key.offset, bytenr, count,
|
2017-07-13 06:20:10 +08:00
|
|
|
sc, GFP_NOFS);
|
2011-11-24 01:55:04 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case BTRFS_TREE_BLOCK_REF_KEY:
|
2017-07-13 06:20:06 +08:00
|
|
|
/* NORMAL INDIRECT METADATA backref */
|
2017-07-13 06:20:08 +08:00
|
|
|
ret = add_indirect_ref(fs_info, preftrees, key.offset,
|
|
|
|
NULL, info_level + 1, bytenr,
|
2017-07-13 06:20:10 +08:00
|
|
|
1, NULL, GFP_NOFS);
|
2011-11-24 01:55:04 +08:00
|
|
|
break;
|
|
|
|
case BTRFS_EXTENT_DATA_REF_KEY: {
|
2017-07-13 06:20:06 +08:00
|
|
|
/* NORMAL INDIRECT DATA backref */
|
2011-11-24 01:55:04 +08:00
|
|
|
struct btrfs_extent_data_ref *dref;
|
|
|
|
int count;
|
|
|
|
u64 root;
|
|
|
|
|
|
|
|
dref = btrfs_item_ptr(leaf, slot,
|
|
|
|
struct btrfs_extent_data_ref);
|
|
|
|
count = btrfs_extent_data_ref_count(leaf, dref);
|
|
|
|
key.objectid = btrfs_extent_data_ref_objectid(leaf,
|
|
|
|
dref);
|
|
|
|
key.type = BTRFS_EXTENT_DATA_KEY;
|
|
|
|
key.offset = btrfs_extent_data_ref_offset(leaf, dref);
|
2014-09-11 04:20:45 +08:00
|
|
|
|
2024-06-12 13:13:20 +08:00
|
|
|
if (sc && sc->inum && key.objectid != sc->inum &&
|
|
|
|
!sc->have_delayed_delete_refs) {
|
2014-09-11 04:20:45 +08:00
|
|
|
ret = BACKREF_FOUND_SHARED;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2011-11-24 01:55:04 +08:00
|
|
|
root = btrfs_extent_data_ref_root(leaf, dref);
|
2017-07-13 06:20:08 +08:00
|
|
|
ret = add_indirect_ref(fs_info, preftrees, root,
|
|
|
|
&key, 0, bytenr, count,
|
2017-07-13 06:20:10 +08:00
|
|
|
sc, GFP_NOFS);
|
2011-11-24 01:55:04 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
WARN_ON(1);
|
|
|
|
}
|
2013-04-10 19:22:50 +08:00
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
2011-11-24 01:55:04 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* this adds all existing backrefs (inline backrefs, backrefs and delayed
|
|
|
|
* refs) for the given bytenr to the refs list, merges duplicates and resolves
|
|
|
|
* indirect refs to their parent bytenr.
|
|
|
|
* When roots are found, they're added to the roots list
|
|
|
|
*
|
2017-03-17 00:04:34 +08:00
|
|
|
* If time_seq is set to SEQ_LAST, it will not search delayed_refs, and behave
|
2015-04-16 14:54:50 +08:00
|
|
|
* much like trans == NULL case, the difference only lies in it will not
|
|
|
|
* commit root.
|
|
|
|
* The special case is for qgroup to search roots in commit_transaction().
|
|
|
|
*
|
2017-07-13 06:20:10 +08:00
|
|
|
* @sc - if !NULL, then immediately return BACKREF_FOUND_SHARED when a
|
|
|
|
* shared extent is detected.
|
|
|
|
*
|
|
|
|
* Otherwise this returns 0 for success and <0 for an error.
|
|
|
|
*
|
btrfs: add a flag to iterate_inodes_from_logical to find all extent refs for uncompressed extents
The LOGICAL_INO ioctl provides a backward mapping from extent bytenr and
offset (encoded as a single logical address) to a list of extent refs.
LOGICAL_INO complements TREE_SEARCH, which provides the forward mapping
(extent ref -> extent bytenr and offset, or logical address). These are
useful capabilities for programs that manipulate extents and extent
references from userspace (e.g. dedup and defrag utilities).
When the extents are uncompressed (and not encrypted and not other),
check_extent_in_eb performs filtering of the extent refs to remove any
extent refs which do not contain the same extent offset as the 'logical'
parameter's extent offset. This prevents LOGICAL_INO from returning
references to more than a single block.
To find the set of extent references to an uncompressed extent from [a, b),
userspace has to run a loop like this pseudocode:
for (i = a; i < b; ++i)
extent_ref_set += LOGICAL_INO(i);
At each iteration of the loop (up to 32768 iterations for a 128M extent),
data we are interested in is collected in the kernel, then deleted by
the filter in check_extent_in_eb.
When the extents are compressed (or encrypted or other), the 'logical'
parameter must be an extent bytenr (the 'a' parameter in the loop).
No filtering by extent offset is done (or possible?) so the result is
the complete set of extent refs for the entire extent. This removes
the need for the loop, since we get all the extent refs in one call.
Add an 'ignore_offset' argument to iterate_inodes_from_logical,
[...several levels of function call graph...], and check_extent_in_eb, so
that we can disable the extent offset filtering for uncompressed extents.
This flag can be set by an improved version of the LOGICAL_INO ioctl to
get either behavior as desired.
There is no functional change in this patch. The new flag is always
false.
Signed-off-by: Zygo Blaxell <ce3g8jdj@umail.furryterror.org>
Reviewed-by: David Sterba <dsterba@suse.com>
[ minor coding style fixes ]
Signed-off-by: David Sterba <dsterba@suse.com>
2017-09-23 01:58:45 +08:00
|
|
|
* If ignore_offset is set to false, only extent refs whose offsets match
|
|
|
|
* extent_item_pos are returned. If true, every extent ref is returned
|
|
|
|
* and extent_item_pos is ignored.
|
|
|
|
*
|
2011-11-24 01:55:04 +08:00
|
|
|
* FIXME some caching might speed things up
|
|
|
|
*/
|
|
|
|
static int find_parent_nodes(struct btrfs_trans_handle *trans,
|
|
|
|
struct btrfs_fs_info *fs_info, u64 bytenr,
|
2012-06-21 17:08:04 +08:00
|
|
|
u64 time_seq, struct ulist *refs,
|
2014-09-11 04:20:45 +08:00
|
|
|
struct ulist *roots, const u64 *extent_item_pos,
|
btrfs: add a flag to iterate_inodes_from_logical to find all extent refs for uncompressed extents
The LOGICAL_INO ioctl provides a backward mapping from extent bytenr and
offset (encoded as a single logical address) to a list of extent refs.
LOGICAL_INO complements TREE_SEARCH, which provides the forward mapping
(extent ref -> extent bytenr and offset, or logical address). These are
useful capabilities for programs that manipulate extents and extent
references from userspace (e.g. dedup and defrag utilities).
When the extents are uncompressed (and not encrypted and not other),
check_extent_in_eb performs filtering of the extent refs to remove any
extent refs which do not contain the same extent offset as the 'logical'
parameter's extent offset. This prevents LOGICAL_INO from returning
references to more than a single block.
To find the set of extent references to an uncompressed extent from [a, b),
userspace has to run a loop like this pseudocode:
for (i = a; i < b; ++i)
extent_ref_set += LOGICAL_INO(i);
At each iteration of the loop (up to 32768 iterations for a 128M extent),
data we are interested in is collected in the kernel, then deleted by
the filter in check_extent_in_eb.
When the extents are compressed (or encrypted or other), the 'logical'
parameter must be an extent bytenr (the 'a' parameter in the loop).
No filtering by extent offset is done (or possible?) so the result is
the complete set of extent refs for the entire extent. This removes
the need for the loop, since we get all the extent refs in one call.
Add an 'ignore_offset' argument to iterate_inodes_from_logical,
[...several levels of function call graph...], and check_extent_in_eb, so
that we can disable the extent offset filtering for uncompressed extents.
This flag can be set by an improved version of the LOGICAL_INO ioctl to
get either behavior as desired.
There is no functional change in this patch. The new flag is always
false.
Signed-off-by: Zygo Blaxell <ce3g8jdj@umail.furryterror.org>
Reviewed-by: David Sterba <dsterba@suse.com>
[ minor coding style fixes ]
Signed-off-by: David Sterba <dsterba@suse.com>
2017-09-23 01:58:45 +08:00
|
|
|
struct share_check *sc, bool ignore_offset)
|
2011-11-24 01:55:04 +08:00
|
|
|
{
|
|
|
|
struct btrfs_key key;
|
|
|
|
struct btrfs_path *path;
|
|
|
|
struct btrfs_delayed_ref_root *delayed_refs = NULL;
|
2012-03-03 20:41:15 +08:00
|
|
|
struct btrfs_delayed_ref_head *head;
|
2011-11-24 01:55:04 +08:00
|
|
|
int info_level = 0;
|
|
|
|
int ret;
|
2017-06-29 11:56:57 +08:00
|
|
|
struct prelim_ref *ref;
|
2017-07-13 06:20:06 +08:00
|
|
|
struct rb_node *node;
|
2014-01-28 19:13:38 +08:00
|
|
|
struct extent_inode_elem *eie = NULL;
|
2017-07-13 06:20:06 +08:00
|
|
|
struct preftrees preftrees = {
|
|
|
|
.direct = PREFTREE_INIT,
|
|
|
|
.indirect = PREFTREE_INIT,
|
|
|
|
.indirect_missing_keys = PREFTREE_INIT
|
|
|
|
};
|
2011-11-24 01:55:04 +08:00
|
|
|
|
|
|
|
key.objectid = bytenr;
|
|
|
|
key.offset = (u64)-1;
|
2013-06-29 01:11:22 +08:00
|
|
|
if (btrfs_fs_incompat(fs_info, SKINNY_METADATA))
|
|
|
|
key.type = BTRFS_METADATA_ITEM_KEY;
|
|
|
|
else
|
|
|
|
key.type = BTRFS_EXTENT_ITEM_KEY;
|
2011-11-24 01:55:04 +08:00
|
|
|
|
|
|
|
path = btrfs_alloc_path();
|
|
|
|
if (!path)
|
|
|
|
return -ENOMEM;
|
2014-02-13 11:19:47 +08:00
|
|
|
if (!trans) {
|
2013-06-13 04:20:08 +08:00
|
|
|
path->search_commit_root = 1;
|
2014-02-13 11:19:47 +08:00
|
|
|
path->skip_locking = 1;
|
|
|
|
}
|
2011-11-24 01:55:04 +08:00
|
|
|
|
2017-03-17 00:04:34 +08:00
|
|
|
if (time_seq == SEQ_LAST)
|
2015-04-16 14:54:50 +08:00
|
|
|
path->skip_locking = 1;
|
|
|
|
|
2011-11-24 01:55:04 +08:00
|
|
|
/*
|
|
|
|
* grab both a lock on the path and a lock on the delayed ref head.
|
|
|
|
* We need both to get a consistent picture of how the refs look
|
|
|
|
* at a specified point in time
|
|
|
|
*/
|
|
|
|
again:
|
2012-03-03 20:41:15 +08:00
|
|
|
head = NULL;
|
|
|
|
|
2011-11-24 01:55:04 +08:00
|
|
|
ret = btrfs_search_slot(trans, fs_info->extent_root, &key, path, 0, 0);
|
|
|
|
if (ret < 0)
|
|
|
|
goto out;
|
2024-06-12 13:13:20 +08:00
|
|
|
if (ret == 0) {
|
|
|
|
/* This shouldn't happen, indicates a bug or fs corruption. */
|
|
|
|
ASSERT(ret != 0);
|
|
|
|
ret = -EUCLEAN;
|
|
|
|
goto out;
|
|
|
|
}
|
2011-11-24 01:55:04 +08:00
|
|
|
|
2014-05-08 05:06:09 +08:00
|
|
|
#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
|
2015-04-16 14:54:50 +08:00
|
|
|
if (trans && likely(trans->type != __TRANS_DUMMY) &&
|
2017-03-17 00:04:34 +08:00
|
|
|
time_seq != SEQ_LAST) {
|
2014-05-08 05:06:09 +08:00
|
|
|
#else
|
2017-03-17 00:04:34 +08:00
|
|
|
if (trans && time_seq != SEQ_LAST) {
|
2014-05-08 05:06:09 +08:00
|
|
|
#endif
|
2012-03-24 00:32:28 +08:00
|
|
|
/*
|
|
|
|
* look if there are updates for this ref queued and lock the
|
|
|
|
* head
|
|
|
|
*/
|
|
|
|
delayed_refs = &trans->transaction->delayed_refs;
|
|
|
|
spin_lock(&delayed_refs->lock);
|
2017-01-31 04:24:37 +08:00
|
|
|
head = btrfs_find_delayed_ref_head(delayed_refs, bytenr);
|
2012-03-24 00:32:28 +08:00
|
|
|
if (head) {
|
|
|
|
if (!mutex_trylock(&head->mutex)) {
|
2017-09-30 03:43:57 +08:00
|
|
|
refcount_inc(&head->refs);
|
2012-03-24 00:32:28 +08:00
|
|
|
spin_unlock(&delayed_refs->lock);
|
|
|
|
|
|
|
|
btrfs_release_path(path);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Mutex was contended, block until it's
|
|
|
|
* released and try again
|
|
|
|
*/
|
|
|
|
mutex_lock(&head->mutex);
|
|
|
|
mutex_unlock(&head->mutex);
|
2017-09-30 03:43:57 +08:00
|
|
|
btrfs_put_delayed_ref_head(head);
|
2012-03-24 00:32:28 +08:00
|
|
|
goto again;
|
|
|
|
}
|
2014-01-23 22:21:38 +08:00
|
|
|
spin_unlock(&delayed_refs->lock);
|
2017-07-13 06:20:08 +08:00
|
|
|
ret = add_delayed_refs(fs_info, head, time_seq,
|
2024-06-11 20:26:44 +08:00
|
|
|
&preftrees, sc);
|
2012-06-22 20:01:00 +08:00
|
|
|
mutex_unlock(&head->mutex);
|
2014-01-23 22:21:38 +08:00
|
|
|
if (ret)
|
2012-03-24 00:32:28 +08:00
|
|
|
goto out;
|
2014-01-23 22:21:38 +08:00
|
|
|
} else {
|
|
|
|
spin_unlock(&delayed_refs->lock);
|
2012-03-03 20:41:15 +08:00
|
|
|
}
|
2011-11-24 01:55:04 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (path->slots[0]) {
|
|
|
|
struct extent_buffer *leaf;
|
|
|
|
int slot;
|
|
|
|
|
2012-05-22 19:43:25 +08:00
|
|
|
path->slots[0]--;
|
2011-11-24 01:55:04 +08:00
|
|
|
leaf = path->nodes[0];
|
2012-05-22 19:43:25 +08:00
|
|
|
slot = path->slots[0];
|
2011-11-24 01:55:04 +08:00
|
|
|
btrfs_item_key_to_cpu(leaf, &key, slot);
|
|
|
|
if (key.objectid == bytenr &&
|
2013-06-29 01:11:22 +08:00
|
|
|
(key.type == BTRFS_EXTENT_ITEM_KEY ||
|
|
|
|
key.type == BTRFS_METADATA_ITEM_KEY)) {
|
2017-07-13 06:20:08 +08:00
|
|
|
ret = add_inline_refs(fs_info, path, bytenr,
|
2024-06-11 20:26:44 +08:00
|
|
|
&info_level, &preftrees, sc);
|
2011-11-24 01:55:04 +08:00
|
|
|
if (ret)
|
|
|
|
goto out;
|
2017-06-29 11:56:57 +08:00
|
|
|
ret = add_keyed_refs(fs_info, path, bytenr, info_level,
|
2017-07-13 06:20:10 +08:00
|
|
|
&preftrees, sc);
|
2011-11-24 01:55:04 +08:00
|
|
|
if (ret)
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-13 06:20:06 +08:00
|
|
|
btrfs_release_path(path);
|
2011-11-24 01:55:04 +08:00
|
|
|
|
btrfs: honor path->skip_locking in backref code
Qgroups will do the old roots lookup at delayed ref time, which could be
while walking down the extent root while running a delayed ref. This
should be fine, except we specifically lock eb's in the backref walking
code irrespective of path->skip_locking, which deadlocks the system.
Fix up the backref code to honor path->skip_locking, nobody will be
modifying the commit_root when we're searching so it's completely safe
to do.
This happens since fb235dc06fac ("btrfs: qgroup: Move half of the qgroup
accounting time out of commit trans"), kernel may lockup with quota
enabled.
There is one backref trace triggered by snapshot dropping along with
write operation in the source subvolume. The example can be reliably
reproduced:
btrfs-cleaner D 0 4062 2 0x80000000
Call Trace:
schedule+0x32/0x90
btrfs_tree_read_lock+0x93/0x130 [btrfs]
find_parent_nodes+0x29b/0x1170 [btrfs]
btrfs_find_all_roots_safe+0xa8/0x120 [btrfs]
btrfs_find_all_roots+0x57/0x70 [btrfs]
btrfs_qgroup_trace_extent_post+0x37/0x70 [btrfs]
btrfs_qgroup_trace_leaf_items+0x10b/0x140 [btrfs]
btrfs_qgroup_trace_subtree+0xc8/0xe0 [btrfs]
do_walk_down+0x541/0x5e3 [btrfs]
walk_down_tree+0xab/0xe7 [btrfs]
btrfs_drop_snapshot+0x356/0x71a [btrfs]
btrfs_clean_one_deleted_snapshot+0xb8/0xf0 [btrfs]
cleaner_kthread+0x12b/0x160 [btrfs]
kthread+0x112/0x130
ret_from_fork+0x27/0x50
When dropping snapshots with qgroup enabled, we will trigger backref
walk.
However such backref walk at that timing is pretty dangerous, as if one
of the parent nodes get WRITE locked by other thread, we could cause a
dead lock.
For example:
FS 260 FS 261 (Dropped)
node A node B
/ \ / \
node C node D node E
/ \ / \ / \
leaf F|leaf G|leaf H|leaf I|leaf J|leaf K
The lock sequence would be:
Thread A (cleaner) | Thread B (other writer)
-----------------------------------------------------------------------
write_lock(B) |
write_lock(D) |
^^^ called by walk_down_tree() |
| write_lock(A)
| write_lock(D) << Stall
read_lock(H) << for backref walk |
read_lock(D) << lock owner is |
the same thread A |
so read lock is OK |
read_lock(A) << Stall |
So thread A hold write lock D, and needs read lock A to unlock.
While thread B holds write lock A, while needs lock D to unlock.
This will cause a deadlock.
This is not only limited to snapshot dropping case. As the backref
walk, even only happens on commit trees, is breaking the normal top-down
locking order, makes it deadlock prone.
Fixes: fb235dc06fac ("btrfs: qgroup: Move half of the qgroup accounting time out of commit trans")
CC: stable@vger.kernel.org # 4.14+
Reported-and-tested-by: David Sterba <dsterba@suse.com>
Reported-by: Filipe Manana <fdmanana@suse.com>
Reviewed-by: Qu Wenruo <wqu@suse.com>
Signed-off-by: Josef Bacik <josef@toxicpanda.com>
Reviewed-by: Filipe Manana <fdmanana@suse.com>
[ rebase to latest branch and fix lock assert bug in btrfs/007 ]
Signed-off-by: Qu Wenruo <wqu@suse.com>
[ copy logs and deadlock analysis from Qu's patch ]
Signed-off-by: David Sterba <dsterba@suse.com>
2019-01-17 00:00:57 +08:00
|
|
|
ret = add_missing_keys(fs_info, &preftrees, path->skip_locking == 0);
|
2012-05-15 23:55:51 +08:00
|
|
|
if (ret)
|
|
|
|
goto out;
|
|
|
|
|
2018-08-23 03:51:53 +08:00
|
|
|
WARN_ON(!RB_EMPTY_ROOT(&preftrees.indirect_missing_keys.root.rb_root));
|
2011-11-24 01:55:04 +08:00
|
|
|
|
2017-07-13 06:20:06 +08:00
|
|
|
ret = resolve_indirect_refs(fs_info, path, time_seq, &preftrees,
|
2024-06-11 20:26:44 +08:00
|
|
|
extent_item_pos, sc, ignore_offset);
|
2011-11-24 01:55:04 +08:00
|
|
|
if (ret)
|
|
|
|
goto out;
|
|
|
|
|
2018-08-23 03:51:53 +08:00
|
|
|
WARN_ON(!RB_EMPTY_ROOT(&preftrees.indirect.root.rb_root));
|
2011-11-24 01:55:04 +08:00
|
|
|
|
2017-07-13 06:20:06 +08:00
|
|
|
/*
|
|
|
|
* This walks the tree of merged and resolved refs. Tree blocks are
|
|
|
|
* read in as needed. Unique entries are added to the ulist, and
|
|
|
|
* the list of found roots is updated.
|
|
|
|
*
|
|
|
|
* We release the entire tree in one go before returning.
|
|
|
|
*/
|
2018-08-23 03:51:53 +08:00
|
|
|
node = rb_first_cached(&preftrees.direct.root);
|
2017-07-13 06:20:06 +08:00
|
|
|
while (node) {
|
|
|
|
ref = rb_entry(node, struct prelim_ref, rbnode);
|
|
|
|
node = rb_next(&ref->rbnode);
|
2018-01-24 11:22:09 +08:00
|
|
|
/*
|
|
|
|
* ref->count < 0 can happen here if there are delayed
|
|
|
|
* refs with a node->action of BTRFS_DROP_DELAYED_REF.
|
|
|
|
* prelim_ref_insert() relies on this when merging
|
|
|
|
* identical refs to keep the overall count correct.
|
|
|
|
* prelim_ref_insert() will merge only those refs
|
|
|
|
* which compare identically. Any refs having
|
|
|
|
* e.g. different offsets would not be merged,
|
|
|
|
* and would retain their original ref->count < 0.
|
|
|
|
*/
|
2014-02-01 00:42:05 +08:00
|
|
|
if (roots && ref->count && ref->root_id && ref->parent == 0) {
|
2017-07-13 06:20:10 +08:00
|
|
|
if (sc && sc->root_objectid &&
|
|
|
|
ref->root_id != sc->root_objectid) {
|
2014-09-11 04:20:45 +08:00
|
|
|
ret = BACKREF_FOUND_SHARED;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
2011-11-24 01:55:04 +08:00
|
|
|
/* no parent == root of tree */
|
|
|
|
ret = ulist_add(roots, ref->root_id, 0, GFP_NOFS);
|
2013-03-30 07:03:21 +08:00
|
|
|
if (ret < 0)
|
|
|
|
goto out;
|
2011-11-24 01:55:04 +08:00
|
|
|
}
|
|
|
|
if (ref->count && ref->parent) {
|
2014-06-06 04:08:45 +08:00
|
|
|
if (extent_item_pos && !ref->inode_list &&
|
|
|
|
ref->level == 0) {
|
2012-05-17 22:43:03 +08:00
|
|
|
struct extent_buffer *eb;
|
2014-06-05 01:22:26 +08:00
|
|
|
|
2018-03-29 09:08:11 +08:00
|
|
|
eb = read_tree_block(fs_info, ref->parent, 0,
|
|
|
|
ref->level, NULL);
|
2015-05-25 17:30:15 +08:00
|
|
|
if (IS_ERR(eb)) {
|
|
|
|
ret = PTR_ERR(eb);
|
|
|
|
goto out;
|
|
|
|
} else if (!extent_buffer_uptodate(eb)) {
|
2013-04-24 02:17:42 +08:00
|
|
|
free_extent_buffer(eb);
|
2013-05-08 16:10:25 +08:00
|
|
|
ret = -EIO;
|
|
|
|
goto out;
|
2013-04-24 02:17:42 +08:00
|
|
|
}
|
btrfs: honor path->skip_locking in backref code
Qgroups will do the old roots lookup at delayed ref time, which could be
while walking down the extent root while running a delayed ref. This
should be fine, except we specifically lock eb's in the backref walking
code irrespective of path->skip_locking, which deadlocks the system.
Fix up the backref code to honor path->skip_locking, nobody will be
modifying the commit_root when we're searching so it's completely safe
to do.
This happens since fb235dc06fac ("btrfs: qgroup: Move half of the qgroup
accounting time out of commit trans"), kernel may lockup with quota
enabled.
There is one backref trace triggered by snapshot dropping along with
write operation in the source subvolume. The example can be reliably
reproduced:
btrfs-cleaner D 0 4062 2 0x80000000
Call Trace:
schedule+0x32/0x90
btrfs_tree_read_lock+0x93/0x130 [btrfs]
find_parent_nodes+0x29b/0x1170 [btrfs]
btrfs_find_all_roots_safe+0xa8/0x120 [btrfs]
btrfs_find_all_roots+0x57/0x70 [btrfs]
btrfs_qgroup_trace_extent_post+0x37/0x70 [btrfs]
btrfs_qgroup_trace_leaf_items+0x10b/0x140 [btrfs]
btrfs_qgroup_trace_subtree+0xc8/0xe0 [btrfs]
do_walk_down+0x541/0x5e3 [btrfs]
walk_down_tree+0xab/0xe7 [btrfs]
btrfs_drop_snapshot+0x356/0x71a [btrfs]
btrfs_clean_one_deleted_snapshot+0xb8/0xf0 [btrfs]
cleaner_kthread+0x12b/0x160 [btrfs]
kthread+0x112/0x130
ret_from_fork+0x27/0x50
When dropping snapshots with qgroup enabled, we will trigger backref
walk.
However such backref walk at that timing is pretty dangerous, as if one
of the parent nodes get WRITE locked by other thread, we could cause a
dead lock.
For example:
FS 260 FS 261 (Dropped)
node A node B
/ \ / \
node C node D node E
/ \ / \ / \
leaf F|leaf G|leaf H|leaf I|leaf J|leaf K
The lock sequence would be:
Thread A (cleaner) | Thread B (other writer)
-----------------------------------------------------------------------
write_lock(B) |
write_lock(D) |
^^^ called by walk_down_tree() |
| write_lock(A)
| write_lock(D) << Stall
read_lock(H) << for backref walk |
read_lock(D) << lock owner is |
the same thread A |
so read lock is OK |
read_lock(A) << Stall |
So thread A hold write lock D, and needs read lock A to unlock.
While thread B holds write lock A, while needs lock D to unlock.
This will cause a deadlock.
This is not only limited to snapshot dropping case. As the backref
walk, even only happens on commit trees, is breaking the normal top-down
locking order, makes it deadlock prone.
Fixes: fb235dc06fac ("btrfs: qgroup: Move half of the qgroup accounting time out of commit trans")
CC: stable@vger.kernel.org # 4.14+
Reported-and-tested-by: David Sterba <dsterba@suse.com>
Reported-by: Filipe Manana <fdmanana@suse.com>
Reviewed-by: Qu Wenruo <wqu@suse.com>
Signed-off-by: Josef Bacik <josef@toxicpanda.com>
Reviewed-by: Filipe Manana <fdmanana@suse.com>
[ rebase to latest branch and fix lock assert bug in btrfs/007 ]
Signed-off-by: Qu Wenruo <wqu@suse.com>
[ copy logs and deadlock analysis from Qu's patch ]
Signed-off-by: David Sterba <dsterba@suse.com>
2019-01-17 00:00:57 +08:00
|
|
|
|
|
|
|
if (!path->skip_locking) {
|
|
|
|
btrfs_tree_read_lock(eb);
|
|
|
|
btrfs_set_lock_blocking_read(eb);
|
|
|
|
}
|
2012-05-17 22:43:03 +08:00
|
|
|
ret = find_extent_in_eb(eb, bytenr,
|
btrfs: add a flag to iterate_inodes_from_logical to find all extent refs for uncompressed extents
The LOGICAL_INO ioctl provides a backward mapping from extent bytenr and
offset (encoded as a single logical address) to a list of extent refs.
LOGICAL_INO complements TREE_SEARCH, which provides the forward mapping
(extent ref -> extent bytenr and offset, or logical address). These are
useful capabilities for programs that manipulate extents and extent
references from userspace (e.g. dedup and defrag utilities).
When the extents are uncompressed (and not encrypted and not other),
check_extent_in_eb performs filtering of the extent refs to remove any
extent refs which do not contain the same extent offset as the 'logical'
parameter's extent offset. This prevents LOGICAL_INO from returning
references to more than a single block.
To find the set of extent references to an uncompressed extent from [a, b),
userspace has to run a loop like this pseudocode:
for (i = a; i < b; ++i)
extent_ref_set += LOGICAL_INO(i);
At each iteration of the loop (up to 32768 iterations for a 128M extent),
data we are interested in is collected in the kernel, then deleted by
the filter in check_extent_in_eb.
When the extents are compressed (or encrypted or other), the 'logical'
parameter must be an extent bytenr (the 'a' parameter in the loop).
No filtering by extent offset is done (or possible?) so the result is
the complete set of extent refs for the entire extent. This removes
the need for the loop, since we get all the extent refs in one call.
Add an 'ignore_offset' argument to iterate_inodes_from_logical,
[...several levels of function call graph...], and check_extent_in_eb, so
that we can disable the extent offset filtering for uncompressed extents.
This flag can be set by an improved version of the LOGICAL_INO ioctl to
get either behavior as desired.
There is no functional change in this patch. The new flag is always
false.
Signed-off-by: Zygo Blaxell <ce3g8jdj@umail.furryterror.org>
Reviewed-by: David Sterba <dsterba@suse.com>
[ minor coding style fixes ]
Signed-off-by: David Sterba <dsterba@suse.com>
2017-09-23 01:58:45 +08:00
|
|
|
*extent_item_pos, &eie, ignore_offset);
|
btrfs: honor path->skip_locking in backref code
Qgroups will do the old roots lookup at delayed ref time, which could be
while walking down the extent root while running a delayed ref. This
should be fine, except we specifically lock eb's in the backref walking
code irrespective of path->skip_locking, which deadlocks the system.
Fix up the backref code to honor path->skip_locking, nobody will be
modifying the commit_root when we're searching so it's completely safe
to do.
This happens since fb235dc06fac ("btrfs: qgroup: Move half of the qgroup
accounting time out of commit trans"), kernel may lockup with quota
enabled.
There is one backref trace triggered by snapshot dropping along with
write operation in the source subvolume. The example can be reliably
reproduced:
btrfs-cleaner D 0 4062 2 0x80000000
Call Trace:
schedule+0x32/0x90
btrfs_tree_read_lock+0x93/0x130 [btrfs]
find_parent_nodes+0x29b/0x1170 [btrfs]
btrfs_find_all_roots_safe+0xa8/0x120 [btrfs]
btrfs_find_all_roots+0x57/0x70 [btrfs]
btrfs_qgroup_trace_extent_post+0x37/0x70 [btrfs]
btrfs_qgroup_trace_leaf_items+0x10b/0x140 [btrfs]
btrfs_qgroup_trace_subtree+0xc8/0xe0 [btrfs]
do_walk_down+0x541/0x5e3 [btrfs]
walk_down_tree+0xab/0xe7 [btrfs]
btrfs_drop_snapshot+0x356/0x71a [btrfs]
btrfs_clean_one_deleted_snapshot+0xb8/0xf0 [btrfs]
cleaner_kthread+0x12b/0x160 [btrfs]
kthread+0x112/0x130
ret_from_fork+0x27/0x50
When dropping snapshots with qgroup enabled, we will trigger backref
walk.
However such backref walk at that timing is pretty dangerous, as if one
of the parent nodes get WRITE locked by other thread, we could cause a
dead lock.
For example:
FS 260 FS 261 (Dropped)
node A node B
/ \ / \
node C node D node E
/ \ / \ / \
leaf F|leaf G|leaf H|leaf I|leaf J|leaf K
The lock sequence would be:
Thread A (cleaner) | Thread B (other writer)
-----------------------------------------------------------------------
write_lock(B) |
write_lock(D) |
^^^ called by walk_down_tree() |
| write_lock(A)
| write_lock(D) << Stall
read_lock(H) << for backref walk |
read_lock(D) << lock owner is |
the same thread A |
so read lock is OK |
read_lock(A) << Stall |
So thread A hold write lock D, and needs read lock A to unlock.
While thread B holds write lock A, while needs lock D to unlock.
This will cause a deadlock.
This is not only limited to snapshot dropping case. As the backref
walk, even only happens on commit trees, is breaking the normal top-down
locking order, makes it deadlock prone.
Fixes: fb235dc06fac ("btrfs: qgroup: Move half of the qgroup accounting time out of commit trans")
CC: stable@vger.kernel.org # 4.14+
Reported-and-tested-by: David Sterba <dsterba@suse.com>
Reported-by: Filipe Manana <fdmanana@suse.com>
Reviewed-by: Qu Wenruo <wqu@suse.com>
Signed-off-by: Josef Bacik <josef@toxicpanda.com>
Reviewed-by: Filipe Manana <fdmanana@suse.com>
[ rebase to latest branch and fix lock assert bug in btrfs/007 ]
Signed-off-by: Qu Wenruo <wqu@suse.com>
[ copy logs and deadlock analysis from Qu's patch ]
Signed-off-by: David Sterba <dsterba@suse.com>
2019-01-17 00:00:57 +08:00
|
|
|
if (!path->skip_locking)
|
|
|
|
btrfs_tree_read_unlock_blocking(eb);
|
2012-05-17 22:43:03 +08:00
|
|
|
free_extent_buffer(eb);
|
2013-07-31 07:26:35 +08:00
|
|
|
if (ret < 0)
|
|
|
|
goto out;
|
|
|
|
ref->inode_list = eie;
|
2024-06-12 13:13:20 +08:00
|
|
|
/*
|
|
|
|
* We transferred the list ownership to the ref,
|
|
|
|
* so set to NULL to avoid a double free in case
|
|
|
|
* an error happens after this.
|
|
|
|
*/
|
|
|
|
eie = NULL;
|
2012-05-17 22:43:03 +08:00
|
|
|
}
|
2014-07-28 16:57:04 +08:00
|
|
|
ret = ulist_add_merge_ptr(refs, ref->parent,
|
|
|
|
ref->inode_list,
|
|
|
|
(void **)&eie, GFP_NOFS);
|
2013-03-30 07:03:21 +08:00
|
|
|
if (ret < 0)
|
|
|
|
goto out;
|
2012-05-31 00:05:21 +08:00
|
|
|
if (!ret && extent_item_pos) {
|
|
|
|
/*
|
2024-06-12 13:13:20 +08:00
|
|
|
* We've recorded that parent, so we must extend
|
|
|
|
* its inode list here.
|
|
|
|
*
|
|
|
|
* However if there was corruption we may not
|
|
|
|
* have found an eie, return an error in this
|
|
|
|
* case.
|
2012-05-31 00:05:21 +08:00
|
|
|
*/
|
2024-06-12 13:13:20 +08:00
|
|
|
ASSERT(eie);
|
|
|
|
if (!eie) {
|
|
|
|
ret = -EUCLEAN;
|
|
|
|
goto out;
|
|
|
|
}
|
2012-05-31 00:05:21 +08:00
|
|
|
while (eie->next)
|
|
|
|
eie = eie->next;
|
|
|
|
eie->next = ref->inode_list;
|
|
|
|
}
|
2014-01-28 19:13:38 +08:00
|
|
|
eie = NULL;
|
2024-06-12 13:13:20 +08:00
|
|
|
/*
|
|
|
|
* We have transferred the inode list ownership from
|
|
|
|
* this ref to the ref we added to the 'refs' ulist.
|
|
|
|
* So set this ref's inode list to NULL to avoid
|
|
|
|
* use-after-free when our caller uses it or double
|
|
|
|
* frees in case an error happens before we return.
|
|
|
|
*/
|
|
|
|
ref->inode_list = NULL;
|
2011-11-24 01:55:04 +08:00
|
|
|
}
|
2017-07-13 06:20:09 +08:00
|
|
|
cond_resched();
|
2011-11-24 01:55:04 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
out:
|
|
|
|
btrfs_free_path(path);
|
2017-07-13 06:20:06 +08:00
|
|
|
|
|
|
|
prelim_release(&preftrees.direct);
|
|
|
|
prelim_release(&preftrees.indirect);
|
|
|
|
prelim_release(&preftrees.indirect_missing_keys);
|
|
|
|
|
2014-01-28 19:13:38 +08:00
|
|
|
if (ret < 0)
|
|
|
|
free_inode_elem_list(eie);
|
2011-11-24 01:55:04 +08:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Finds all leafs with a reference to the specified combination of bytenr and
|
|
|
|
* offset. key_list_head will point to a list of corresponding keys (caller must
|
|
|
|
* free each list element). The leafs will be stored in the leafs ulist, which
|
|
|
|
* must be freed with ulist_free.
|
|
|
|
*
|
|
|
|
* returns 0 on success, <0 on error
|
|
|
|
*/
|
|
|
|
static int btrfs_find_all_leafs(struct btrfs_trans_handle *trans,
|
|
|
|
struct btrfs_fs_info *fs_info, u64 bytenr,
|
2012-06-21 17:08:04 +08:00
|
|
|
u64 time_seq, struct ulist **leafs,
|
btrfs: add a flag to iterate_inodes_from_logical to find all extent refs for uncompressed extents
The LOGICAL_INO ioctl provides a backward mapping from extent bytenr and
offset (encoded as a single logical address) to a list of extent refs.
LOGICAL_INO complements TREE_SEARCH, which provides the forward mapping
(extent ref -> extent bytenr and offset, or logical address). These are
useful capabilities for programs that manipulate extents and extent
references from userspace (e.g. dedup and defrag utilities).
When the extents are uncompressed (and not encrypted and not other),
check_extent_in_eb performs filtering of the extent refs to remove any
extent refs which do not contain the same extent offset as the 'logical'
parameter's extent offset. This prevents LOGICAL_INO from returning
references to more than a single block.
To find the set of extent references to an uncompressed extent from [a, b),
userspace has to run a loop like this pseudocode:
for (i = a; i < b; ++i)
extent_ref_set += LOGICAL_INO(i);
At each iteration of the loop (up to 32768 iterations for a 128M extent),
data we are interested in is collected in the kernel, then deleted by
the filter in check_extent_in_eb.
When the extents are compressed (or encrypted or other), the 'logical'
parameter must be an extent bytenr (the 'a' parameter in the loop).
No filtering by extent offset is done (or possible?) so the result is
the complete set of extent refs for the entire extent. This removes
the need for the loop, since we get all the extent refs in one call.
Add an 'ignore_offset' argument to iterate_inodes_from_logical,
[...several levels of function call graph...], and check_extent_in_eb, so
that we can disable the extent offset filtering for uncompressed extents.
This flag can be set by an improved version of the LOGICAL_INO ioctl to
get either behavior as desired.
There is no functional change in this patch. The new flag is always
false.
Signed-off-by: Zygo Blaxell <ce3g8jdj@umail.furryterror.org>
Reviewed-by: David Sterba <dsterba@suse.com>
[ minor coding style fixes ]
Signed-off-by: David Sterba <dsterba@suse.com>
2017-09-23 01:58:45 +08:00
|
|
|
const u64 *extent_item_pos, bool ignore_offset)
|
2011-11-24 01:55:04 +08:00
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
*leafs = ulist_alloc(GFP_NOFS);
|
2014-02-01 00:42:05 +08:00
|
|
|
if (!*leafs)
|
2011-11-24 01:55:04 +08:00
|
|
|
return -ENOMEM;
|
|
|
|
|
btrfs: fix check_shared for fiemap ioctl
Only in the case of different root_id or different object_id, check_shared
identified extent as the shared. However, If a extent was referred by
different offset of same file, it should also be identified as shared.
In addition, check_shared's loop scale is at least n^3, so if a extent
has too many references, even causes soft hang up.
First, add all delayed_ref to the ref_tree and calculate the unqiue_refs,
if the unique_refs is greater than one, return BACKREF_FOUND_SHARED.
Then individually add the on-disk reference(inline/keyed) to the ref_tree
and calculate the unique_refs of the ref_tree to check if the unique_refs
is greater than one.Because once there are two references to return
SHARED, so the time complexity is close to the constant.
Reported-by: Tsutomu Itoh <t-itoh@jp.fujitsu.com>
Signed-off-by: Lu Fengqi <lufq.fnst@cn.fujitsu.com>
Signed-off-by: David Sterba <dsterba@suse.com>
2016-06-13 09:36:46 +08:00
|
|
|
ret = find_parent_nodes(trans, fs_info, bytenr, time_seq,
|
btrfs: add a flag to iterate_inodes_from_logical to find all extent refs for uncompressed extents
The LOGICAL_INO ioctl provides a backward mapping from extent bytenr and
offset (encoded as a single logical address) to a list of extent refs.
LOGICAL_INO complements TREE_SEARCH, which provides the forward mapping
(extent ref -> extent bytenr and offset, or logical address). These are
useful capabilities for programs that manipulate extents and extent
references from userspace (e.g. dedup and defrag utilities).
When the extents are uncompressed (and not encrypted and not other),
check_extent_in_eb performs filtering of the extent refs to remove any
extent refs which do not contain the same extent offset as the 'logical'
parameter's extent offset. This prevents LOGICAL_INO from returning
references to more than a single block.
To find the set of extent references to an uncompressed extent from [a, b),
userspace has to run a loop like this pseudocode:
for (i = a; i < b; ++i)
extent_ref_set += LOGICAL_INO(i);
At each iteration of the loop (up to 32768 iterations for a 128M extent),
data we are interested in is collected in the kernel, then deleted by
the filter in check_extent_in_eb.
When the extents are compressed (or encrypted or other), the 'logical'
parameter must be an extent bytenr (the 'a' parameter in the loop).
No filtering by extent offset is done (or possible?) so the result is
the complete set of extent refs for the entire extent. This removes
the need for the loop, since we get all the extent refs in one call.
Add an 'ignore_offset' argument to iterate_inodes_from_logical,
[...several levels of function call graph...], and check_extent_in_eb, so
that we can disable the extent offset filtering for uncompressed extents.
This flag can be set by an improved version of the LOGICAL_INO ioctl to
get either behavior as desired.
There is no functional change in this patch. The new flag is always
false.
Signed-off-by: Zygo Blaxell <ce3g8jdj@umail.furryterror.org>
Reviewed-by: David Sterba <dsterba@suse.com>
[ minor coding style fixes ]
Signed-off-by: David Sterba <dsterba@suse.com>
2017-09-23 01:58:45 +08:00
|
|
|
*leafs, NULL, extent_item_pos, NULL, ignore_offset);
|
2011-11-24 01:55:04 +08:00
|
|
|
if (ret < 0 && ret != -ENOENT) {
|
2012-05-17 22:43:03 +08:00
|
|
|
free_leaf_list(*leafs);
|
2011-11-24 01:55:04 +08:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* walk all backrefs for a given extent to find all roots that reference this
|
|
|
|
* extent. Walking a backref means finding all extents that reference this
|
|
|
|
* extent and in turn walk the backrefs of those, too. Naturally this is a
|
|
|
|
* recursive process, but here it is implemented in an iterative fashion: We
|
|
|
|
* find all referencing extents for the extent in question and put them on a
|
|
|
|
* list. In turn, we find all referencing extents for those, further appending
|
|
|
|
* to the list. The way we iterate the list allows adding more elements after
|
|
|
|
* the current while iterating. The process stops when we reach the end of the
|
|
|
|
* list. Found roots are added to the roots list.
|
|
|
|
*
|
|
|
|
* returns 0 on success, < 0 on error.
|
|
|
|
*/
|
2017-06-29 11:56:57 +08:00
|
|
|
static int btrfs_find_all_roots_safe(struct btrfs_trans_handle *trans,
|
|
|
|
struct btrfs_fs_info *fs_info, u64 bytenr,
|
btrfs: add a flag to iterate_inodes_from_logical to find all extent refs for uncompressed extents
The LOGICAL_INO ioctl provides a backward mapping from extent bytenr and
offset (encoded as a single logical address) to a list of extent refs.
LOGICAL_INO complements TREE_SEARCH, which provides the forward mapping
(extent ref -> extent bytenr and offset, or logical address). These are
useful capabilities for programs that manipulate extents and extent
references from userspace (e.g. dedup and defrag utilities).
When the extents are uncompressed (and not encrypted and not other),
check_extent_in_eb performs filtering of the extent refs to remove any
extent refs which do not contain the same extent offset as the 'logical'
parameter's extent offset. This prevents LOGICAL_INO from returning
references to more than a single block.
To find the set of extent references to an uncompressed extent from [a, b),
userspace has to run a loop like this pseudocode:
for (i = a; i < b; ++i)
extent_ref_set += LOGICAL_INO(i);
At each iteration of the loop (up to 32768 iterations for a 128M extent),
data we are interested in is collected in the kernel, then deleted by
the filter in check_extent_in_eb.
When the extents are compressed (or encrypted or other), the 'logical'
parameter must be an extent bytenr (the 'a' parameter in the loop).
No filtering by extent offset is done (or possible?) so the result is
the complete set of extent refs for the entire extent. This removes
the need for the loop, since we get all the extent refs in one call.
Add an 'ignore_offset' argument to iterate_inodes_from_logical,
[...several levels of function call graph...], and check_extent_in_eb, so
that we can disable the extent offset filtering for uncompressed extents.
This flag can be set by an improved version of the LOGICAL_INO ioctl to
get either behavior as desired.
There is no functional change in this patch. The new flag is always
false.
Signed-off-by: Zygo Blaxell <ce3g8jdj@umail.furryterror.org>
Reviewed-by: David Sterba <dsterba@suse.com>
[ minor coding style fixes ]
Signed-off-by: David Sterba <dsterba@suse.com>
2017-09-23 01:58:45 +08:00
|
|
|
u64 time_seq, struct ulist **roots,
|
|
|
|
bool ignore_offset)
|
2011-11-24 01:55:04 +08:00
|
|
|
{
|
|
|
|
struct ulist *tmp;
|
|
|
|
struct ulist_node *node = NULL;
|
2012-05-22 20:56:50 +08:00
|
|
|
struct ulist_iterator uiter;
|
2011-11-24 01:55:04 +08:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
tmp = ulist_alloc(GFP_NOFS);
|
|
|
|
if (!tmp)
|
|
|
|
return -ENOMEM;
|
|
|
|
*roots = ulist_alloc(GFP_NOFS);
|
|
|
|
if (!*roots) {
|
|
|
|
ulist_free(tmp);
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
|
2012-05-22 20:56:50 +08:00
|
|
|
ULIST_ITER_INIT(&uiter);
|
2011-11-24 01:55:04 +08:00
|
|
|
while (1) {
|
btrfs: fix check_shared for fiemap ioctl
Only in the case of different root_id or different object_id, check_shared
identified extent as the shared. However, If a extent was referred by
different offset of same file, it should also be identified as shared.
In addition, check_shared's loop scale is at least n^3, so if a extent
has too many references, even causes soft hang up.
First, add all delayed_ref to the ref_tree and calculate the unqiue_refs,
if the unique_refs is greater than one, return BACKREF_FOUND_SHARED.
Then individually add the on-disk reference(inline/keyed) to the ref_tree
and calculate the unique_refs of the ref_tree to check if the unique_refs
is greater than one.Because once there are two references to return
SHARED, so the time complexity is close to the constant.
Reported-by: Tsutomu Itoh <t-itoh@jp.fujitsu.com>
Signed-off-by: Lu Fengqi <lufq.fnst@cn.fujitsu.com>
Signed-off-by: David Sterba <dsterba@suse.com>
2016-06-13 09:36:46 +08:00
|
|
|
ret = find_parent_nodes(trans, fs_info, bytenr, time_seq,
|
btrfs: add a flag to iterate_inodes_from_logical to find all extent refs for uncompressed extents
The LOGICAL_INO ioctl provides a backward mapping from extent bytenr and
offset (encoded as a single logical address) to a list of extent refs.
LOGICAL_INO complements TREE_SEARCH, which provides the forward mapping
(extent ref -> extent bytenr and offset, or logical address). These are
useful capabilities for programs that manipulate extents and extent
references from userspace (e.g. dedup and defrag utilities).
When the extents are uncompressed (and not encrypted and not other),
check_extent_in_eb performs filtering of the extent refs to remove any
extent refs which do not contain the same extent offset as the 'logical'
parameter's extent offset. This prevents LOGICAL_INO from returning
references to more than a single block.
To find the set of extent references to an uncompressed extent from [a, b),
userspace has to run a loop like this pseudocode:
for (i = a; i < b; ++i)
extent_ref_set += LOGICAL_INO(i);
At each iteration of the loop (up to 32768 iterations for a 128M extent),
data we are interested in is collected in the kernel, then deleted by
the filter in check_extent_in_eb.
When the extents are compressed (or encrypted or other), the 'logical'
parameter must be an extent bytenr (the 'a' parameter in the loop).
No filtering by extent offset is done (or possible?) so the result is
the complete set of extent refs for the entire extent. This removes
the need for the loop, since we get all the extent refs in one call.
Add an 'ignore_offset' argument to iterate_inodes_from_logical,
[...several levels of function call graph...], and check_extent_in_eb, so
that we can disable the extent offset filtering for uncompressed extents.
This flag can be set by an improved version of the LOGICAL_INO ioctl to
get either behavior as desired.
There is no functional change in this patch. The new flag is always
false.
Signed-off-by: Zygo Blaxell <ce3g8jdj@umail.furryterror.org>
Reviewed-by: David Sterba <dsterba@suse.com>
[ minor coding style fixes ]
Signed-off-by: David Sterba <dsterba@suse.com>
2017-09-23 01:58:45 +08:00
|
|
|
tmp, *roots, NULL, NULL, ignore_offset);
|
2011-11-24 01:55:04 +08:00
|
|
|
if (ret < 0 && ret != -ENOENT) {
|
|
|
|
ulist_free(tmp);
|
|
|
|
ulist_free(*roots);
|
2024-06-11 20:26:44 +08:00
|
|
|
*roots = NULL;
|
2011-11-24 01:55:04 +08:00
|
|
|
return ret;
|
|
|
|
}
|
2012-05-22 20:56:50 +08:00
|
|
|
node = ulist_next(tmp, &uiter);
|
2011-11-24 01:55:04 +08:00
|
|
|
if (!node)
|
|
|
|
break;
|
|
|
|
bytenr = node->val;
|
2014-01-26 22:32:18 +08:00
|
|
|
cond_resched();
|
2011-11-24 01:55:04 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
ulist_free(tmp);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-03-14 03:42:13 +08:00
|
|
|
int btrfs_find_all_roots(struct btrfs_trans_handle *trans,
|
|
|
|
struct btrfs_fs_info *fs_info, u64 bytenr,
|
btrfs: add a flag to iterate_inodes_from_logical to find all extent refs for uncompressed extents
The LOGICAL_INO ioctl provides a backward mapping from extent bytenr and
offset (encoded as a single logical address) to a list of extent refs.
LOGICAL_INO complements TREE_SEARCH, which provides the forward mapping
(extent ref -> extent bytenr and offset, or logical address). These are
useful capabilities for programs that manipulate extents and extent
references from userspace (e.g. dedup and defrag utilities).
When the extents are uncompressed (and not encrypted and not other),
check_extent_in_eb performs filtering of the extent refs to remove any
extent refs which do not contain the same extent offset as the 'logical'
parameter's extent offset. This prevents LOGICAL_INO from returning
references to more than a single block.
To find the set of extent references to an uncompressed extent from [a, b),
userspace has to run a loop like this pseudocode:
for (i = a; i < b; ++i)
extent_ref_set += LOGICAL_INO(i);
At each iteration of the loop (up to 32768 iterations for a 128M extent),
data we are interested in is collected in the kernel, then deleted by
the filter in check_extent_in_eb.
When the extents are compressed (or encrypted or other), the 'logical'
parameter must be an extent bytenr (the 'a' parameter in the loop).
No filtering by extent offset is done (or possible?) so the result is
the complete set of extent refs for the entire extent. This removes
the need for the loop, since we get all the extent refs in one call.
Add an 'ignore_offset' argument to iterate_inodes_from_logical,
[...several levels of function call graph...], and check_extent_in_eb, so
that we can disable the extent offset filtering for uncompressed extents.
This flag can be set by an improved version of the LOGICAL_INO ioctl to
get either behavior as desired.
There is no functional change in this patch. The new flag is always
false.
Signed-off-by: Zygo Blaxell <ce3g8jdj@umail.furryterror.org>
Reviewed-by: David Sterba <dsterba@suse.com>
[ minor coding style fixes ]
Signed-off-by: David Sterba <dsterba@suse.com>
2017-09-23 01:58:45 +08:00
|
|
|
u64 time_seq, struct ulist **roots,
|
|
|
|
bool ignore_offset)
|
2014-03-14 03:42:13 +08:00
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (!trans)
|
|
|
|
down_read(&fs_info->commit_root_sem);
|
2017-06-29 11:56:57 +08:00
|
|
|
ret = btrfs_find_all_roots_safe(trans, fs_info, bytenr,
|
btrfs: add a flag to iterate_inodes_from_logical to find all extent refs for uncompressed extents
The LOGICAL_INO ioctl provides a backward mapping from extent bytenr and
offset (encoded as a single logical address) to a list of extent refs.
LOGICAL_INO complements TREE_SEARCH, which provides the forward mapping
(extent ref -> extent bytenr and offset, or logical address). These are
useful capabilities for programs that manipulate extents and extent
references from userspace (e.g. dedup and defrag utilities).
When the extents are uncompressed (and not encrypted and not other),
check_extent_in_eb performs filtering of the extent refs to remove any
extent refs which do not contain the same extent offset as the 'logical'
parameter's extent offset. This prevents LOGICAL_INO from returning
references to more than a single block.
To find the set of extent references to an uncompressed extent from [a, b),
userspace has to run a loop like this pseudocode:
for (i = a; i < b; ++i)
extent_ref_set += LOGICAL_INO(i);
At each iteration of the loop (up to 32768 iterations for a 128M extent),
data we are interested in is collected in the kernel, then deleted by
the filter in check_extent_in_eb.
When the extents are compressed (or encrypted or other), the 'logical'
parameter must be an extent bytenr (the 'a' parameter in the loop).
No filtering by extent offset is done (or possible?) so the result is
the complete set of extent refs for the entire extent. This removes
the need for the loop, since we get all the extent refs in one call.
Add an 'ignore_offset' argument to iterate_inodes_from_logical,
[...several levels of function call graph...], and check_extent_in_eb, so
that we can disable the extent offset filtering for uncompressed extents.
This flag can be set by an improved version of the LOGICAL_INO ioctl to
get either behavior as desired.
There is no functional change in this patch. The new flag is always
false.
Signed-off-by: Zygo Blaxell <ce3g8jdj@umail.furryterror.org>
Reviewed-by: David Sterba <dsterba@suse.com>
[ minor coding style fixes ]
Signed-off-by: David Sterba <dsterba@suse.com>
2017-09-23 01:58:45 +08:00
|
|
|
time_seq, roots, ignore_offset);
|
2014-03-14 03:42:13 +08:00
|
|
|
if (!trans)
|
|
|
|
up_read(&fs_info->commit_root_sem);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2015-05-20 03:49:50 +08:00
|
|
|
/**
|
|
|
|
* btrfs_check_shared - tell us whether an extent is shared
|
|
|
|
*
|
|
|
|
* btrfs_check_shared uses the backref walking code but will short
|
|
|
|
* circuit as soon as it finds a root or inode that doesn't match the
|
|
|
|
* one passed in. This provides a significant performance benefit for
|
|
|
|
* callers (such as fiemap) which want to know whether the extent is
|
|
|
|
* shared but do not need a ref count.
|
|
|
|
*
|
Btrfs: do not start a transaction during fiemap
During fiemap, for regular extents (non inline) we need to check if they
are shared and if they are, set the shared bit. Checking if an extent is
shared requires checking the delayed references of the currently running
transaction, since some reference might have not yet hit the extent tree
and be only in the in-memory delayed references.
However we were using a transaction join for this, which creates a new
transaction when there is no transaction currently running. That means
that two more potential failures can happen: creating the transaction and
committing it. Further, if no write activity is currently happening in the
system, and fiemap calls keep being done, we end up creating and
committing transactions that do nothing.
In some extreme cases this can result in the commit of the transaction
created by fiemap to fail with ENOSPC when updating the root item of a
subvolume tree because a join does not reserve any space, leading to a
trace like the following:
heisenberg kernel: ------------[ cut here ]------------
heisenberg kernel: BTRFS: Transaction aborted (error -28)
heisenberg kernel: WARNING: CPU: 0 PID: 7137 at fs/btrfs/root-tree.c:136 btrfs_update_root+0x22b/0x320 [btrfs]
(...)
heisenberg kernel: CPU: 0 PID: 7137 Comm: btrfs-transacti Not tainted 4.19.0-4-amd64 #1 Debian 4.19.28-2
heisenberg kernel: Hardware name: FUJITSU LIFEBOOK U757/FJNB2A5, BIOS Version 1.21 03/19/2018
heisenberg kernel: RIP: 0010:btrfs_update_root+0x22b/0x320 [btrfs]
(...)
heisenberg kernel: RSP: 0018:ffffb5448828bd40 EFLAGS: 00010286
heisenberg kernel: RAX: 0000000000000000 RBX: ffff8ed56bccef50 RCX: 0000000000000006
heisenberg kernel: RDX: 0000000000000007 RSI: 0000000000000092 RDI: ffff8ed6bda166a0
heisenberg kernel: RBP: 00000000ffffffe4 R08: 00000000000003df R09: 0000000000000007
heisenberg kernel: R10: 0000000000000000 R11: 0000000000000001 R12: ffff8ed63396a078
heisenberg kernel: R13: ffff8ed092d7c800 R14: ffff8ed64f5db028 R15: ffff8ed6bd03d068
heisenberg kernel: FS: 0000000000000000(0000) GS:ffff8ed6bda00000(0000) knlGS:0000000000000000
heisenberg kernel: CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
heisenberg kernel: CR2: 00007f46f75f8000 CR3: 0000000310a0a002 CR4: 00000000003606f0
heisenberg kernel: DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000
heisenberg kernel: DR3: 0000000000000000 DR6: 00000000fffe0ff0 DR7: 0000000000000400
heisenberg kernel: Call Trace:
heisenberg kernel: commit_fs_roots+0x166/0x1d0 [btrfs]
heisenberg kernel: ? _cond_resched+0x15/0x30
heisenberg kernel: ? btrfs_run_delayed_refs+0xac/0x180 [btrfs]
heisenberg kernel: btrfs_commit_transaction+0x2bd/0x870 [btrfs]
heisenberg kernel: ? start_transaction+0x9d/0x3f0 [btrfs]
heisenberg kernel: transaction_kthread+0x147/0x180 [btrfs]
heisenberg kernel: ? btrfs_cleanup_transaction+0x530/0x530 [btrfs]
heisenberg kernel: kthread+0x112/0x130
heisenberg kernel: ? kthread_bind+0x30/0x30
heisenberg kernel: ret_from_fork+0x35/0x40
heisenberg kernel: ---[ end trace 05de912e30e012d9 ]---
Since fiemap (and btrfs_check_shared()) is a read-only operation, do not do
a transaction join to avoid the overhead of creating a new transaction (if
there is currently no running transaction) and introducing a potential
point of failure when the new transaction gets committed, instead use a
transaction attach to grab a handle for the currently running transaction
if any.
Reported-by: Christoph Anton Mitterer <calestyo@scientia.net>
Link: https://lore.kernel.org/linux-btrfs/b2a668d7124f1d3e410367f587926f622b3f03a4.camel@scientia.net/
Fixes: afce772e87c36c ("btrfs: fix check_shared for fiemap ioctl")
CC: stable@vger.kernel.org # 4.14+
Reviewed-by: Qu Wenruo <wqu@suse.com>
Signed-off-by: Filipe Manana <fdmanana@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
2019-04-15 21:50:51 +08:00
|
|
|
* This attempts to attach to the running transaction in order to account for
|
|
|
|
* delayed refs, but continues on even when no running transaction exists.
|
2017-06-29 11:56:58 +08:00
|
|
|
*
|
2015-05-20 03:49:50 +08:00
|
|
|
* Return: 0 if extent is not shared, 1 if it is shared, < 0 on error.
|
|
|
|
*/
|
2019-05-15 21:31:04 +08:00
|
|
|
int btrfs_check_shared(struct btrfs_root *root, u64 inum, u64 bytenr,
|
|
|
|
struct ulist *roots, struct ulist *tmp)
|
2014-09-11 04:20:45 +08:00
|
|
|
{
|
2017-06-29 11:56:58 +08:00
|
|
|
struct btrfs_fs_info *fs_info = root->fs_info;
|
|
|
|
struct btrfs_trans_handle *trans;
|
2014-09-11 04:20:45 +08:00
|
|
|
struct ulist_iterator uiter;
|
|
|
|
struct ulist_node *node;
|
2015-02-25 22:47:32 +08:00
|
|
|
struct seq_list elem = SEQ_LIST_INIT(elem);
|
2014-09-11 04:20:45 +08:00
|
|
|
int ret = 0;
|
2017-07-13 06:20:10 +08:00
|
|
|
struct share_check shared = {
|
2018-08-06 13:25:24 +08:00
|
|
|
.root_objectid = root->root_key.objectid,
|
2017-07-13 06:20:10 +08:00
|
|
|
.inum = inum,
|
|
|
|
.share_count = 0,
|
2024-06-12 13:13:20 +08:00
|
|
|
.have_delayed_delete_refs = false,
|
2017-07-13 06:20:10 +08:00
|
|
|
};
|
2014-09-11 04:20:45 +08:00
|
|
|
|
2019-05-15 21:31:04 +08:00
|
|
|
ulist_init(roots);
|
|
|
|
ulist_init(tmp);
|
2014-09-11 04:20:45 +08:00
|
|
|
|
Btrfs: fix deadlock between fiemap and transaction commits
The fiemap handler locks a file range that can have unflushed delalloc,
and after locking the range, it tries to attach to a running transaction.
If the running transaction started its commit, that is, it is in state
TRANS_STATE_COMMIT_START, and either the filesystem was mounted with the
flushoncommit option or the transaction is creating a snapshot for the
subvolume that contains the file that fiemap is operating on, we end up
deadlocking. This happens because fiemap is blocked on the transaction,
waiting for it to complete, and the transaction is waiting for the flushed
dealloc to complete, which requires locking the file range that the fiemap
task already locked. The following stack traces serve as an example of
when this deadlock happens:
(...)
[404571.515510] Workqueue: btrfs-endio-write btrfs_endio_write_helper [btrfs]
[404571.515956] Call Trace:
[404571.516360] ? __schedule+0x3ae/0x7b0
[404571.516730] schedule+0x3a/0xb0
[404571.517104] lock_extent_bits+0x1ec/0x2a0 [btrfs]
[404571.517465] ? remove_wait_queue+0x60/0x60
[404571.517832] btrfs_finish_ordered_io+0x292/0x800 [btrfs]
[404571.518202] normal_work_helper+0xea/0x530 [btrfs]
[404571.518566] process_one_work+0x21e/0x5c0
[404571.518990] worker_thread+0x4f/0x3b0
[404571.519413] ? process_one_work+0x5c0/0x5c0
[404571.519829] kthread+0x103/0x140
[404571.520191] ? kthread_create_worker_on_cpu+0x70/0x70
[404571.520565] ret_from_fork+0x3a/0x50
[404571.520915] kworker/u8:6 D 0 31651 2 0x80004000
[404571.521290] Workqueue: btrfs-flush_delalloc btrfs_flush_delalloc_helper [btrfs]
(...)
[404571.537000] fsstress D 0 13117 13115 0x00004000
[404571.537263] Call Trace:
[404571.537524] ? __schedule+0x3ae/0x7b0
[404571.537788] schedule+0x3a/0xb0
[404571.538066] wait_current_trans+0xc8/0x100 [btrfs]
[404571.538349] ? remove_wait_queue+0x60/0x60
[404571.538680] start_transaction+0x33c/0x500 [btrfs]
[404571.539076] btrfs_check_shared+0xa3/0x1f0 [btrfs]
[404571.539513] ? extent_fiemap+0x2ce/0x650 [btrfs]
[404571.539866] extent_fiemap+0x2ce/0x650 [btrfs]
[404571.540170] do_vfs_ioctl+0x526/0x6f0
[404571.540436] ksys_ioctl+0x70/0x80
[404571.540734] __x64_sys_ioctl+0x16/0x20
[404571.540997] do_syscall_64+0x60/0x1d0
[404571.541279] entry_SYSCALL_64_after_hwframe+0x49/0xbe
(...)
[404571.543729] btrfs D 0 14210 14208 0x00004000
[404571.544023] Call Trace:
[404571.544275] ? __schedule+0x3ae/0x7b0
[404571.544526] ? wait_for_completion+0x112/0x1a0
[404571.544795] schedule+0x3a/0xb0
[404571.545064] schedule_timeout+0x1ff/0x390
[404571.545351] ? lock_acquire+0xa6/0x190
[404571.545638] ? wait_for_completion+0x49/0x1a0
[404571.545890] ? wait_for_completion+0x112/0x1a0
[404571.546228] wait_for_completion+0x131/0x1a0
[404571.546503] ? wake_up_q+0x70/0x70
[404571.546775] btrfs_wait_ordered_extents+0x27c/0x400 [btrfs]
[404571.547159] btrfs_commit_transaction+0x3b0/0xae0 [btrfs]
[404571.547449] ? btrfs_mksubvol+0x4a4/0x640 [btrfs]
[404571.547703] ? remove_wait_queue+0x60/0x60
[404571.547969] btrfs_mksubvol+0x605/0x640 [btrfs]
[404571.548226] ? __sb_start_write+0xd4/0x1c0
[404571.548512] ? mnt_want_write_file+0x24/0x50
[404571.548789] btrfs_ioctl_snap_create_transid+0x169/0x1a0 [btrfs]
[404571.549048] btrfs_ioctl_snap_create_v2+0x11d/0x170 [btrfs]
[404571.549307] btrfs_ioctl+0x133f/0x3150 [btrfs]
[404571.549549] ? mem_cgroup_charge_statistics+0x4c/0xd0
[404571.549792] ? mem_cgroup_commit_charge+0x84/0x4b0
[404571.550064] ? __handle_mm_fault+0xe3e/0x11f0
[404571.550306] ? do_raw_spin_unlock+0x49/0xc0
[404571.550608] ? _raw_spin_unlock+0x24/0x30
[404571.550976] ? __handle_mm_fault+0xedf/0x11f0
[404571.551319] ? do_vfs_ioctl+0xa2/0x6f0
[404571.551659] ? btrfs_ioctl_get_supported_features+0x30/0x30 [btrfs]
[404571.552087] do_vfs_ioctl+0xa2/0x6f0
[404571.552355] ksys_ioctl+0x70/0x80
[404571.552621] __x64_sys_ioctl+0x16/0x20
[404571.552864] do_syscall_64+0x60/0x1d0
[404571.553104] entry_SYSCALL_64_after_hwframe+0x49/0xbe
(...)
If we were joining the transaction instead of attaching to it, we would
not risk a deadlock because a join only blocks if the transaction is in a
state greater then or equals to TRANS_STATE_COMMIT_DOING, and the delalloc
flush performed by a transaction is done before it reaches that state,
when it is in the state TRANS_STATE_COMMIT_START. However a transaction
join is intended for use cases where we do modify the filesystem, and
fiemap only needs to peek at delayed references from the current
transaction in order to determine if extents are shared, and, besides
that, when there is no current transaction or when it blocks to wait for
a current committing transaction to complete, it creates a new transaction
without reserving any space. Such unnecessary transactions, besides doing
unnecessary IO, can cause transaction aborts (-ENOSPC) and unnecessary
rotation of the precious backup roots.
So fix this by adding a new transaction join variant, named join_nostart,
which behaves like the regular join, but it does not create a transaction
when none currently exists or after waiting for a committing transaction
to complete.
Fixes: 03628cdbc64db6 ("Btrfs: do not start a transaction during fiemap")
Signed-off-by: Filipe Manana <fdmanana@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
2019-07-29 16:37:10 +08:00
|
|
|
trans = btrfs_join_transaction_nostart(root);
|
2017-06-29 11:56:58 +08:00
|
|
|
if (IS_ERR(trans)) {
|
Btrfs: do not start a transaction during fiemap
During fiemap, for regular extents (non inline) we need to check if they
are shared and if they are, set the shared bit. Checking if an extent is
shared requires checking the delayed references of the currently running
transaction, since some reference might have not yet hit the extent tree
and be only in the in-memory delayed references.
However we were using a transaction join for this, which creates a new
transaction when there is no transaction currently running. That means
that two more potential failures can happen: creating the transaction and
committing it. Further, if no write activity is currently happening in the
system, and fiemap calls keep being done, we end up creating and
committing transactions that do nothing.
In some extreme cases this can result in the commit of the transaction
created by fiemap to fail with ENOSPC when updating the root item of a
subvolume tree because a join does not reserve any space, leading to a
trace like the following:
heisenberg kernel: ------------[ cut here ]------------
heisenberg kernel: BTRFS: Transaction aborted (error -28)
heisenberg kernel: WARNING: CPU: 0 PID: 7137 at fs/btrfs/root-tree.c:136 btrfs_update_root+0x22b/0x320 [btrfs]
(...)
heisenberg kernel: CPU: 0 PID: 7137 Comm: btrfs-transacti Not tainted 4.19.0-4-amd64 #1 Debian 4.19.28-2
heisenberg kernel: Hardware name: FUJITSU LIFEBOOK U757/FJNB2A5, BIOS Version 1.21 03/19/2018
heisenberg kernel: RIP: 0010:btrfs_update_root+0x22b/0x320 [btrfs]
(...)
heisenberg kernel: RSP: 0018:ffffb5448828bd40 EFLAGS: 00010286
heisenberg kernel: RAX: 0000000000000000 RBX: ffff8ed56bccef50 RCX: 0000000000000006
heisenberg kernel: RDX: 0000000000000007 RSI: 0000000000000092 RDI: ffff8ed6bda166a0
heisenberg kernel: RBP: 00000000ffffffe4 R08: 00000000000003df R09: 0000000000000007
heisenberg kernel: R10: 0000000000000000 R11: 0000000000000001 R12: ffff8ed63396a078
heisenberg kernel: R13: ffff8ed092d7c800 R14: ffff8ed64f5db028 R15: ffff8ed6bd03d068
heisenberg kernel: FS: 0000000000000000(0000) GS:ffff8ed6bda00000(0000) knlGS:0000000000000000
heisenberg kernel: CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
heisenberg kernel: CR2: 00007f46f75f8000 CR3: 0000000310a0a002 CR4: 00000000003606f0
heisenberg kernel: DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000
heisenberg kernel: DR3: 0000000000000000 DR6: 00000000fffe0ff0 DR7: 0000000000000400
heisenberg kernel: Call Trace:
heisenberg kernel: commit_fs_roots+0x166/0x1d0 [btrfs]
heisenberg kernel: ? _cond_resched+0x15/0x30
heisenberg kernel: ? btrfs_run_delayed_refs+0xac/0x180 [btrfs]
heisenberg kernel: btrfs_commit_transaction+0x2bd/0x870 [btrfs]
heisenberg kernel: ? start_transaction+0x9d/0x3f0 [btrfs]
heisenberg kernel: transaction_kthread+0x147/0x180 [btrfs]
heisenberg kernel: ? btrfs_cleanup_transaction+0x530/0x530 [btrfs]
heisenberg kernel: kthread+0x112/0x130
heisenberg kernel: ? kthread_bind+0x30/0x30
heisenberg kernel: ret_from_fork+0x35/0x40
heisenberg kernel: ---[ end trace 05de912e30e012d9 ]---
Since fiemap (and btrfs_check_shared()) is a read-only operation, do not do
a transaction join to avoid the overhead of creating a new transaction (if
there is currently no running transaction) and introducing a potential
point of failure when the new transaction gets committed, instead use a
transaction attach to grab a handle for the currently running transaction
if any.
Reported-by: Christoph Anton Mitterer <calestyo@scientia.net>
Link: https://lore.kernel.org/linux-btrfs/b2a668d7124f1d3e410367f587926f622b3f03a4.camel@scientia.net/
Fixes: afce772e87c36c ("btrfs: fix check_shared for fiemap ioctl")
CC: stable@vger.kernel.org # 4.14+
Reviewed-by: Qu Wenruo <wqu@suse.com>
Signed-off-by: Filipe Manana <fdmanana@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
2019-04-15 21:50:51 +08:00
|
|
|
if (PTR_ERR(trans) != -ENOENT && PTR_ERR(trans) != -EROFS) {
|
|
|
|
ret = PTR_ERR(trans);
|
|
|
|
goto out;
|
|
|
|
}
|
2017-06-29 11:56:58 +08:00
|
|
|
trans = NULL;
|
2014-09-11 04:20:45 +08:00
|
|
|
down_read(&fs_info->commit_root_sem);
|
2017-06-29 11:56:58 +08:00
|
|
|
} else {
|
|
|
|
btrfs_get_tree_mod_seq(fs_info, &elem);
|
|
|
|
}
|
|
|
|
|
2014-09-11 04:20:45 +08:00
|
|
|
ULIST_ITER_INIT(&uiter);
|
|
|
|
while (1) {
|
|
|
|
ret = find_parent_nodes(trans, fs_info, bytenr, elem.seq, tmp,
|
btrfs: add a flag to iterate_inodes_from_logical to find all extent refs for uncompressed extents
The LOGICAL_INO ioctl provides a backward mapping from extent bytenr and
offset (encoded as a single logical address) to a list of extent refs.
LOGICAL_INO complements TREE_SEARCH, which provides the forward mapping
(extent ref -> extent bytenr and offset, or logical address). These are
useful capabilities for programs that manipulate extents and extent
references from userspace (e.g. dedup and defrag utilities).
When the extents are uncompressed (and not encrypted and not other),
check_extent_in_eb performs filtering of the extent refs to remove any
extent refs which do not contain the same extent offset as the 'logical'
parameter's extent offset. This prevents LOGICAL_INO from returning
references to more than a single block.
To find the set of extent references to an uncompressed extent from [a, b),
userspace has to run a loop like this pseudocode:
for (i = a; i < b; ++i)
extent_ref_set += LOGICAL_INO(i);
At each iteration of the loop (up to 32768 iterations for a 128M extent),
data we are interested in is collected in the kernel, then deleted by
the filter in check_extent_in_eb.
When the extents are compressed (or encrypted or other), the 'logical'
parameter must be an extent bytenr (the 'a' parameter in the loop).
No filtering by extent offset is done (or possible?) so the result is
the complete set of extent refs for the entire extent. This removes
the need for the loop, since we get all the extent refs in one call.
Add an 'ignore_offset' argument to iterate_inodes_from_logical,
[...several levels of function call graph...], and check_extent_in_eb, so
that we can disable the extent offset filtering for uncompressed extents.
This flag can be set by an improved version of the LOGICAL_INO ioctl to
get either behavior as desired.
There is no functional change in this patch. The new flag is always
false.
Signed-off-by: Zygo Blaxell <ce3g8jdj@umail.furryterror.org>
Reviewed-by: David Sterba <dsterba@suse.com>
[ minor coding style fixes ]
Signed-off-by: David Sterba <dsterba@suse.com>
2017-09-23 01:58:45 +08:00
|
|
|
roots, NULL, &shared, false);
|
2014-09-11 04:20:45 +08:00
|
|
|
if (ret == BACKREF_FOUND_SHARED) {
|
2015-05-20 03:49:50 +08:00
|
|
|
/* this is the only condition under which we return 1 */
|
2014-09-11 04:20:45 +08:00
|
|
|
ret = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (ret < 0 && ret != -ENOENT)
|
|
|
|
break;
|
2015-05-20 03:49:50 +08:00
|
|
|
ret = 0;
|
2014-09-11 04:20:45 +08:00
|
|
|
node = ulist_next(tmp, &uiter);
|
|
|
|
if (!node)
|
|
|
|
break;
|
|
|
|
bytenr = node->val;
|
2018-03-14 23:03:11 +08:00
|
|
|
shared.share_count = 0;
|
2024-06-12 13:13:20 +08:00
|
|
|
shared.have_delayed_delete_refs = false;
|
2014-09-11 04:20:45 +08:00
|
|
|
cond_resched();
|
|
|
|
}
|
2017-06-29 11:56:58 +08:00
|
|
|
|
|
|
|
if (trans) {
|
2014-09-11 04:20:45 +08:00
|
|
|
btrfs_put_tree_mod_seq(fs_info, &elem);
|
2017-06-29 11:56:58 +08:00
|
|
|
btrfs_end_transaction(trans);
|
|
|
|
} else {
|
2014-09-11 04:20:45 +08:00
|
|
|
up_read(&fs_info->commit_root_sem);
|
2017-06-29 11:56:58 +08:00
|
|
|
}
|
Btrfs: do not start a transaction during fiemap
During fiemap, for regular extents (non inline) we need to check if they
are shared and if they are, set the shared bit. Checking if an extent is
shared requires checking the delayed references of the currently running
transaction, since some reference might have not yet hit the extent tree
and be only in the in-memory delayed references.
However we were using a transaction join for this, which creates a new
transaction when there is no transaction currently running. That means
that two more potential failures can happen: creating the transaction and
committing it. Further, if no write activity is currently happening in the
system, and fiemap calls keep being done, we end up creating and
committing transactions that do nothing.
In some extreme cases this can result in the commit of the transaction
created by fiemap to fail with ENOSPC when updating the root item of a
subvolume tree because a join does not reserve any space, leading to a
trace like the following:
heisenberg kernel: ------------[ cut here ]------------
heisenberg kernel: BTRFS: Transaction aborted (error -28)
heisenberg kernel: WARNING: CPU: 0 PID: 7137 at fs/btrfs/root-tree.c:136 btrfs_update_root+0x22b/0x320 [btrfs]
(...)
heisenberg kernel: CPU: 0 PID: 7137 Comm: btrfs-transacti Not tainted 4.19.0-4-amd64 #1 Debian 4.19.28-2
heisenberg kernel: Hardware name: FUJITSU LIFEBOOK U757/FJNB2A5, BIOS Version 1.21 03/19/2018
heisenberg kernel: RIP: 0010:btrfs_update_root+0x22b/0x320 [btrfs]
(...)
heisenberg kernel: RSP: 0018:ffffb5448828bd40 EFLAGS: 00010286
heisenberg kernel: RAX: 0000000000000000 RBX: ffff8ed56bccef50 RCX: 0000000000000006
heisenberg kernel: RDX: 0000000000000007 RSI: 0000000000000092 RDI: ffff8ed6bda166a0
heisenberg kernel: RBP: 00000000ffffffe4 R08: 00000000000003df R09: 0000000000000007
heisenberg kernel: R10: 0000000000000000 R11: 0000000000000001 R12: ffff8ed63396a078
heisenberg kernel: R13: ffff8ed092d7c800 R14: ffff8ed64f5db028 R15: ffff8ed6bd03d068
heisenberg kernel: FS: 0000000000000000(0000) GS:ffff8ed6bda00000(0000) knlGS:0000000000000000
heisenberg kernel: CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
heisenberg kernel: CR2: 00007f46f75f8000 CR3: 0000000310a0a002 CR4: 00000000003606f0
heisenberg kernel: DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000
heisenberg kernel: DR3: 0000000000000000 DR6: 00000000fffe0ff0 DR7: 0000000000000400
heisenberg kernel: Call Trace:
heisenberg kernel: commit_fs_roots+0x166/0x1d0 [btrfs]
heisenberg kernel: ? _cond_resched+0x15/0x30
heisenberg kernel: ? btrfs_run_delayed_refs+0xac/0x180 [btrfs]
heisenberg kernel: btrfs_commit_transaction+0x2bd/0x870 [btrfs]
heisenberg kernel: ? start_transaction+0x9d/0x3f0 [btrfs]
heisenberg kernel: transaction_kthread+0x147/0x180 [btrfs]
heisenberg kernel: ? btrfs_cleanup_transaction+0x530/0x530 [btrfs]
heisenberg kernel: kthread+0x112/0x130
heisenberg kernel: ? kthread_bind+0x30/0x30
heisenberg kernel: ret_from_fork+0x35/0x40
heisenberg kernel: ---[ end trace 05de912e30e012d9 ]---
Since fiemap (and btrfs_check_shared()) is a read-only operation, do not do
a transaction join to avoid the overhead of creating a new transaction (if
there is currently no running transaction) and introducing a potential
point of failure when the new transaction gets committed, instead use a
transaction attach to grab a handle for the currently running transaction
if any.
Reported-by: Christoph Anton Mitterer <calestyo@scientia.net>
Link: https://lore.kernel.org/linux-btrfs/b2a668d7124f1d3e410367f587926f622b3f03a4.camel@scientia.net/
Fixes: afce772e87c36c ("btrfs: fix check_shared for fiemap ioctl")
CC: stable@vger.kernel.org # 4.14+
Reviewed-by: Qu Wenruo <wqu@suse.com>
Signed-off-by: Filipe Manana <fdmanana@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
2019-04-15 21:50:51 +08:00
|
|
|
out:
|
2019-05-15 21:31:04 +08:00
|
|
|
ulist_release(roots);
|
|
|
|
ulist_release(tmp);
|
2014-09-11 04:20:45 +08:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2012-08-09 02:32:27 +08:00
|
|
|
int btrfs_find_one_extref(struct btrfs_root *root, u64 inode_objectid,
|
|
|
|
u64 start_off, struct btrfs_path *path,
|
|
|
|
struct btrfs_inode_extref **ret_extref,
|
|
|
|
u64 *found_off)
|
|
|
|
{
|
|
|
|
int ret, slot;
|
|
|
|
struct btrfs_key key;
|
|
|
|
struct btrfs_key found_key;
|
|
|
|
struct btrfs_inode_extref *extref;
|
2017-06-29 11:56:55 +08:00
|
|
|
const struct extent_buffer *leaf;
|
2012-08-09 02:32:27 +08:00
|
|
|
unsigned long ptr;
|
|
|
|
|
|
|
|
key.objectid = inode_objectid;
|
2014-06-05 00:41:45 +08:00
|
|
|
key.type = BTRFS_INODE_EXTREF_KEY;
|
2012-08-09 02:32:27 +08:00
|
|
|
key.offset = start_off;
|
|
|
|
|
|
|
|
ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
while (1) {
|
|
|
|
leaf = path->nodes[0];
|
|
|
|
slot = path->slots[0];
|
|
|
|
if (slot >= btrfs_header_nritems(leaf)) {
|
|
|
|
/*
|
|
|
|
* If the item at offset is not found,
|
|
|
|
* btrfs_search_slot will point us to the slot
|
|
|
|
* where it should be inserted. In our case
|
|
|
|
* that will be the slot directly before the
|
|
|
|
* next INODE_REF_KEY_V2 item. In the case
|
|
|
|
* that we're pointing to the last slot in a
|
|
|
|
* leaf, we must move one leaf over.
|
|
|
|
*/
|
|
|
|
ret = btrfs_next_leaf(root, path);
|
|
|
|
if (ret) {
|
|
|
|
if (ret >= 1)
|
|
|
|
ret = -ENOENT;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
btrfs_item_key_to_cpu(leaf, &found_key, slot);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Check that we're still looking at an extended ref key for
|
|
|
|
* this particular objectid. If we have different
|
|
|
|
* objectid or type then there are no more to be found
|
|
|
|
* in the tree and we can exit.
|
|
|
|
*/
|
|
|
|
ret = -ENOENT;
|
|
|
|
if (found_key.objectid != inode_objectid)
|
|
|
|
break;
|
2014-06-05 00:41:45 +08:00
|
|
|
if (found_key.type != BTRFS_INODE_EXTREF_KEY)
|
2012-08-09 02:32:27 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
ret = 0;
|
|
|
|
ptr = btrfs_item_ptr_offset(leaf, path->slots[0]);
|
|
|
|
extref = (struct btrfs_inode_extref *)ptr;
|
|
|
|
*ret_extref = extref;
|
|
|
|
if (found_off)
|
|
|
|
*found_off = found_key.offset;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2013-04-26 04:41:01 +08:00
|
|
|
/*
|
|
|
|
* this iterates to turn a name (from iref/extref) into a full filesystem path.
|
|
|
|
* Elements of the path are separated by '/' and the path is guaranteed to be
|
|
|
|
* 0-terminated. the path is only given within the current file system.
|
|
|
|
* Therefore, it never starts with a '/'. the caller is responsible to provide
|
|
|
|
* "size" bytes in "dest". the dest buffer will be filled backwards. finally,
|
|
|
|
* the start point of the resulting string is returned. this pointer is within
|
|
|
|
* dest, normally.
|
|
|
|
* in case the path buffer would overflow, the pointer is decremented further
|
|
|
|
* as if output was written to the buffer, though no more output is actually
|
|
|
|
* generated. that way, the caller can determine how much space would be
|
|
|
|
* required for the path to fit into the buffer. in that case, the returned
|
|
|
|
* value will be smaller than dest. callers must check this!
|
|
|
|
*/
|
2012-10-15 16:30:45 +08:00
|
|
|
char *btrfs_ref_to_path(struct btrfs_root *fs_root, struct btrfs_path *path,
|
|
|
|
u32 name_len, unsigned long name_off,
|
|
|
|
struct extent_buffer *eb_in, u64 parent,
|
|
|
|
char *dest, u32 size)
|
2011-06-14 01:52:59 +08:00
|
|
|
{
|
|
|
|
int slot;
|
|
|
|
u64 next_inum;
|
|
|
|
int ret;
|
2012-10-10 22:50:47 +08:00
|
|
|
s64 bytes_left = ((s64)size) - 1;
|
2011-06-14 01:52:59 +08:00
|
|
|
struct extent_buffer *eb = eb_in;
|
|
|
|
struct btrfs_key found_key;
|
2012-04-13 18:28:08 +08:00
|
|
|
int leave_spinning = path->leave_spinning;
|
2012-08-09 02:33:54 +08:00
|
|
|
struct btrfs_inode_ref *iref;
|
2011-06-14 01:52:59 +08:00
|
|
|
|
|
|
|
if (bytes_left >= 0)
|
|
|
|
dest[bytes_left] = '\0';
|
|
|
|
|
2012-04-13 18:28:08 +08:00
|
|
|
path->leave_spinning = 1;
|
2011-06-14 01:52:59 +08:00
|
|
|
while (1) {
|
2012-08-09 02:33:54 +08:00
|
|
|
bytes_left -= name_len;
|
2011-06-14 01:52:59 +08:00
|
|
|
if (bytes_left >= 0)
|
|
|
|
read_extent_buffer(eb, dest + bytes_left,
|
2012-08-09 02:33:54 +08:00
|
|
|
name_off, name_len);
|
2012-04-13 18:28:08 +08:00
|
|
|
if (eb != eb_in) {
|
2016-02-04 03:17:27 +08:00
|
|
|
if (!path->skip_locking)
|
|
|
|
btrfs_tree_read_unlock_blocking(eb);
|
2011-06-14 01:52:59 +08:00
|
|
|
free_extent_buffer(eb);
|
2012-04-13 18:28:08 +08:00
|
|
|
}
|
2015-01-03 02:03:17 +08:00
|
|
|
ret = btrfs_find_item(fs_root, path, parent, 0,
|
|
|
|
BTRFS_INODE_REF_KEY, &found_key);
|
2012-02-08 23:01:01 +08:00
|
|
|
if (ret > 0)
|
|
|
|
ret = -ENOENT;
|
2011-06-14 01:52:59 +08:00
|
|
|
if (ret)
|
|
|
|
break;
|
2012-08-09 02:33:54 +08:00
|
|
|
|
2011-06-14 01:52:59 +08:00
|
|
|
next_inum = found_key.offset;
|
|
|
|
|
|
|
|
/* regular exit ahead */
|
|
|
|
if (parent == next_inum)
|
|
|
|
break;
|
|
|
|
|
|
|
|
slot = path->slots[0];
|
|
|
|
eb = path->nodes[0];
|
|
|
|
/* make sure we can use eb after releasing the path */
|
2012-04-13 18:28:08 +08:00
|
|
|
if (eb != eb_in) {
|
2016-02-04 03:17:27 +08:00
|
|
|
if (!path->skip_locking)
|
2018-04-04 08:00:17 +08:00
|
|
|
btrfs_set_lock_blocking_read(eb);
|
2016-02-04 03:17:27 +08:00
|
|
|
path->nodes[0] = NULL;
|
|
|
|
path->locks[0] = 0;
|
2012-04-13 18:28:08 +08:00
|
|
|
}
|
2011-06-14 01:52:59 +08:00
|
|
|
btrfs_release_path(path);
|
|
|
|
iref = btrfs_item_ptr(eb, slot, struct btrfs_inode_ref);
|
2012-08-09 02:33:54 +08:00
|
|
|
|
|
|
|
name_len = btrfs_inode_ref_name_len(eb, iref);
|
|
|
|
name_off = (unsigned long)(iref + 1);
|
|
|
|
|
2011-06-14 01:52:59 +08:00
|
|
|
parent = next_inum;
|
|
|
|
--bytes_left;
|
|
|
|
if (bytes_left >= 0)
|
|
|
|
dest[bytes_left] = '/';
|
|
|
|
}
|
|
|
|
|
|
|
|
btrfs_release_path(path);
|
2012-04-13 18:28:08 +08:00
|
|
|
path->leave_spinning = leave_spinning;
|
2011-06-14 01:52:59 +08:00
|
|
|
|
|
|
|
if (ret)
|
|
|
|
return ERR_PTR(ret);
|
|
|
|
|
|
|
|
return dest + bytes_left;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* this makes the path point to (logical EXTENT_ITEM *)
|
|
|
|
* returns BTRFS_EXTENT_FLAG_DATA for data, BTRFS_EXTENT_FLAG_TREE_BLOCK for
|
|
|
|
* tree blocks and <0 on error.
|
|
|
|
*/
|
|
|
|
int extent_from_logical(struct btrfs_fs_info *fs_info, u64 logical,
|
2012-09-08 10:01:28 +08:00
|
|
|
struct btrfs_path *path, struct btrfs_key *found_key,
|
|
|
|
u64 *flags_ret)
|
2011-06-14 01:52:59 +08:00
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
u64 flags;
|
2013-06-29 01:11:22 +08:00
|
|
|
u64 size = 0;
|
2011-06-14 01:52:59 +08:00
|
|
|
u32 item_size;
|
2017-06-29 11:56:55 +08:00
|
|
|
const struct extent_buffer *eb;
|
2011-06-14 01:52:59 +08:00
|
|
|
struct btrfs_extent_item *ei;
|
|
|
|
struct btrfs_key key;
|
|
|
|
|
2013-06-29 01:11:22 +08:00
|
|
|
if (btrfs_fs_incompat(fs_info, SKINNY_METADATA))
|
|
|
|
key.type = BTRFS_METADATA_ITEM_KEY;
|
|
|
|
else
|
|
|
|
key.type = BTRFS_EXTENT_ITEM_KEY;
|
2011-06-14 01:52:59 +08:00
|
|
|
key.objectid = logical;
|
|
|
|
key.offset = (u64)-1;
|
|
|
|
|
|
|
|
ret = btrfs_search_slot(NULL, fs_info->extent_root, &key, path, 0, 0);
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
2014-02-06 20:02:29 +08:00
|
|
|
ret = btrfs_previous_extent_item(fs_info->extent_root, path, 0);
|
|
|
|
if (ret) {
|
|
|
|
if (ret > 0)
|
|
|
|
ret = -ENOENT;
|
|
|
|
return ret;
|
2014-01-24 05:03:45 +08:00
|
|
|
}
|
2014-02-06 20:02:29 +08:00
|
|
|
btrfs_item_key_to_cpu(path->nodes[0], found_key, path->slots[0]);
|
2013-06-29 01:11:22 +08:00
|
|
|
if (found_key->type == BTRFS_METADATA_ITEM_KEY)
|
2016-06-15 21:22:56 +08:00
|
|
|
size = fs_info->nodesize;
|
2013-06-29 01:11:22 +08:00
|
|
|
else if (found_key->type == BTRFS_EXTENT_ITEM_KEY)
|
|
|
|
size = found_key->offset;
|
|
|
|
|
2014-01-24 05:03:45 +08:00
|
|
|
if (found_key->objectid > logical ||
|
2013-06-29 01:11:22 +08:00
|
|
|
found_key->objectid + size <= logical) {
|
2016-09-20 22:05:02 +08:00
|
|
|
btrfs_debug(fs_info,
|
|
|
|
"logical %llu is not within any extent", logical);
|
2011-06-14 01:52:59 +08:00
|
|
|
return -ENOENT;
|
2011-12-02 21:56:41 +08:00
|
|
|
}
|
2011-06-14 01:52:59 +08:00
|
|
|
|
|
|
|
eb = path->nodes[0];
|
|
|
|
item_size = btrfs_item_size_nr(eb, path->slots[0]);
|
|
|
|
BUG_ON(item_size < sizeof(*ei));
|
|
|
|
|
|
|
|
ei = btrfs_item_ptr(eb, path->slots[0], struct btrfs_extent_item);
|
|
|
|
flags = btrfs_extent_flags(eb, ei);
|
|
|
|
|
2016-09-20 22:05:02 +08:00
|
|
|
btrfs_debug(fs_info,
|
|
|
|
"logical %llu is at position %llu within the extent (%llu EXTENT_ITEM %llu) flags %#llx size %u",
|
2013-08-20 19:20:07 +08:00
|
|
|
logical, logical - found_key->objectid, found_key->objectid,
|
|
|
|
found_key->offset, flags, item_size);
|
2012-09-08 10:01:28 +08:00
|
|
|
|
|
|
|
WARN_ON(!flags_ret);
|
|
|
|
if (flags_ret) {
|
|
|
|
if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK)
|
|
|
|
*flags_ret = BTRFS_EXTENT_FLAG_TREE_BLOCK;
|
|
|
|
else if (flags & BTRFS_EXTENT_FLAG_DATA)
|
|
|
|
*flags_ret = BTRFS_EXTENT_FLAG_DATA;
|
|
|
|
else
|
btrfs: use BUG() instead of BUG_ON(1)
BUG_ON(1) leads to bogus warnings from clang when
CONFIG_PROFILE_ANNOTATED_BRANCHES is set:
fs/btrfs/volumes.c:5041:3: error: variable 'max_chunk_size' is used uninitialized whenever 'if' condition is false
[-Werror,-Wsometimes-uninitialized]
BUG_ON(1);
^~~~~~~~~
include/asm-generic/bug.h:61:36: note: expanded from macro 'BUG_ON'
#define BUG_ON(condition) do { if (unlikely(condition)) BUG(); } while (0)
^~~~~~~~~~~~~~~~~~~
include/linux/compiler.h:48:23: note: expanded from macro 'unlikely'
# define unlikely(x) (__branch_check__(x, 0, __builtin_constant_p(x)))
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
fs/btrfs/volumes.c:5046:9: note: uninitialized use occurs here
max_chunk_size);
^~~~~~~~~~~~~~
include/linux/kernel.h:860:36: note: expanded from macro 'min'
#define min(x, y) __careful_cmp(x, y, <)
^
include/linux/kernel.h:853:17: note: expanded from macro '__careful_cmp'
__cmp_once(x, y, __UNIQUE_ID(__x), __UNIQUE_ID(__y), op))
^
include/linux/kernel.h:847:25: note: expanded from macro '__cmp_once'
typeof(y) unique_y = (y); \
^
fs/btrfs/volumes.c:5041:3: note: remove the 'if' if its condition is always true
BUG_ON(1);
^
include/asm-generic/bug.h:61:32: note: expanded from macro 'BUG_ON'
#define BUG_ON(condition) do { if (unlikely(condition)) BUG(); } while (0)
^
fs/btrfs/volumes.c:4993:20: note: initialize the variable 'max_chunk_size' to silence this warning
u64 max_chunk_size;
^
= 0
Change it to BUG() so clang can see that this code path can never
continue.
Reviewed-by: Nikolay Borisov <nborisov@suse.com>
Reviewed-by: David Sterba <dsterba@suse.com>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: David Sterba <dsterba@suse.com>
2019-03-25 21:02:25 +08:00
|
|
|
BUG();
|
2012-09-08 10:01:28 +08:00
|
|
|
return 0;
|
|
|
|
}
|
2011-06-14 01:52:59 +08:00
|
|
|
|
|
|
|
return -EIO;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* helper function to iterate extent inline refs. ptr must point to a 0 value
|
|
|
|
* for the first call and may be modified. it is used to track state.
|
|
|
|
* if more refs exist, 0 is returned and the next call to
|
2017-06-29 11:56:57 +08:00
|
|
|
* get_extent_inline_ref must pass the modified ptr parameter to get the
|
2011-06-14 01:52:59 +08:00
|
|
|
* next ref. after the last ref was processed, 1 is returned.
|
|
|
|
* returns <0 on error
|
|
|
|
*/
|
2017-06-29 11:56:57 +08:00
|
|
|
static int get_extent_inline_ref(unsigned long *ptr,
|
|
|
|
const struct extent_buffer *eb,
|
|
|
|
const struct btrfs_key *key,
|
|
|
|
const struct btrfs_extent_item *ei,
|
|
|
|
u32 item_size,
|
|
|
|
struct btrfs_extent_inline_ref **out_eiref,
|
|
|
|
int *out_type)
|
2011-06-14 01:52:59 +08:00
|
|
|
{
|
|
|
|
unsigned long end;
|
|
|
|
u64 flags;
|
|
|
|
struct btrfs_tree_block_info *info;
|
|
|
|
|
|
|
|
if (!*ptr) {
|
|
|
|
/* first call */
|
|
|
|
flags = btrfs_extent_flags(eb, ei);
|
|
|
|
if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK) {
|
2014-06-09 10:54:07 +08:00
|
|
|
if (key->type == BTRFS_METADATA_ITEM_KEY) {
|
|
|
|
/* a skinny metadata extent */
|
|
|
|
*out_eiref =
|
|
|
|
(struct btrfs_extent_inline_ref *)(ei + 1);
|
|
|
|
} else {
|
|
|
|
WARN_ON(key->type != BTRFS_EXTENT_ITEM_KEY);
|
|
|
|
info = (struct btrfs_tree_block_info *)(ei + 1);
|
|
|
|
*out_eiref =
|
|
|
|
(struct btrfs_extent_inline_ref *)(info + 1);
|
|
|
|
}
|
2011-06-14 01:52:59 +08:00
|
|
|
} else {
|
|
|
|
*out_eiref = (struct btrfs_extent_inline_ref *)(ei + 1);
|
|
|
|
}
|
|
|
|
*ptr = (unsigned long)*out_eiref;
|
2014-06-08 19:04:13 +08:00
|
|
|
if ((unsigned long)(*ptr) >= (unsigned long)ei + item_size)
|
2011-06-14 01:52:59 +08:00
|
|
|
return -ENOENT;
|
|
|
|
}
|
|
|
|
|
|
|
|
end = (unsigned long)ei + item_size;
|
2014-06-09 10:54:07 +08:00
|
|
|
*out_eiref = (struct btrfs_extent_inline_ref *)(*ptr);
|
2017-08-19 05:15:19 +08:00
|
|
|
*out_type = btrfs_get_extent_inline_ref_type(eb, *out_eiref,
|
|
|
|
BTRFS_REF_TYPE_ANY);
|
|
|
|
if (*out_type == BTRFS_REF_TYPE_INVALID)
|
2018-06-22 16:18:01 +08:00
|
|
|
return -EUCLEAN;
|
2011-06-14 01:52:59 +08:00
|
|
|
|
|
|
|
*ptr += btrfs_extent_inline_ref_size(*out_type);
|
|
|
|
WARN_ON(*ptr > end);
|
|
|
|
if (*ptr == end)
|
|
|
|
return 1; /* last */
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* reads the tree block backref for an extent. tree level and root are returned
|
|
|
|
* through out_level and out_root. ptr must point to a 0 value for the first
|
2017-06-29 11:56:57 +08:00
|
|
|
* call and may be modified (see get_extent_inline_ref comment).
|
2011-06-14 01:52:59 +08:00
|
|
|
* returns 0 if data was provided, 1 if there was no more data to provide or
|
|
|
|
* <0 on error.
|
|
|
|
*/
|
|
|
|
int tree_backref_for_extent(unsigned long *ptr, struct extent_buffer *eb,
|
2014-06-09 10:54:07 +08:00
|
|
|
struct btrfs_key *key, struct btrfs_extent_item *ei,
|
|
|
|
u32 item_size, u64 *out_root, u8 *out_level)
|
2011-06-14 01:52:59 +08:00
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
int type;
|
|
|
|
struct btrfs_extent_inline_ref *eiref;
|
|
|
|
|
|
|
|
if (*ptr == (unsigned long)-1)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
while (1) {
|
2017-06-29 11:56:57 +08:00
|
|
|
ret = get_extent_inline_ref(ptr, eb, key, ei, item_size,
|
2014-06-09 10:54:07 +08:00
|
|
|
&eiref, &type);
|
2011-06-14 01:52:59 +08:00
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
if (type == BTRFS_TREE_BLOCK_REF_KEY ||
|
|
|
|
type == BTRFS_SHARED_BLOCK_REF_KEY)
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (ret == 1)
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* we can treat both ref types equally here */
|
|
|
|
*out_root = btrfs_extent_inline_ref_offset(eb, eiref);
|
2014-12-16 00:04:42 +08:00
|
|
|
|
|
|
|
if (key->type == BTRFS_EXTENT_ITEM_KEY) {
|
|
|
|
struct btrfs_tree_block_info *info;
|
|
|
|
|
|
|
|
info = (struct btrfs_tree_block_info *)(ei + 1);
|
|
|
|
*out_level = btrfs_tree_block_level(eb, info);
|
|
|
|
} else {
|
|
|
|
ASSERT(key->type == BTRFS_METADATA_ITEM_KEY);
|
|
|
|
*out_level = (u8)key->offset;
|
|
|
|
}
|
2011-06-14 01:52:59 +08:00
|
|
|
|
|
|
|
if (ret == 1)
|
|
|
|
*ptr = (unsigned long)-1;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-09-20 22:05:02 +08:00
|
|
|
static int iterate_leaf_refs(struct btrfs_fs_info *fs_info,
|
|
|
|
struct extent_inode_elem *inode_list,
|
|
|
|
u64 root, u64 extent_item_objectid,
|
|
|
|
iterate_extent_inodes_t *iterate, void *ctx)
|
2011-06-14 01:52:59 +08:00
|
|
|
{
|
2012-05-17 22:43:03 +08:00
|
|
|
struct extent_inode_elem *eie;
|
2011-12-02 21:56:41 +08:00
|
|
|
int ret = 0;
|
|
|
|
|
2012-05-17 22:43:03 +08:00
|
|
|
for (eie = inode_list; eie; eie = eie->next) {
|
2016-09-20 22:05:02 +08:00
|
|
|
btrfs_debug(fs_info,
|
|
|
|
"ref for %llu resolved, key (%llu EXTEND_DATA %llu), root %llu",
|
|
|
|
extent_item_objectid, eie->inum,
|
|
|
|
eie->offset, root);
|
2012-05-17 22:43:03 +08:00
|
|
|
ret = iterate(eie->inum, eie->offset, root, ctx);
|
2011-12-02 21:56:41 +08:00
|
|
|
if (ret) {
|
2016-09-20 22:05:02 +08:00
|
|
|
btrfs_debug(fs_info,
|
|
|
|
"stopping iteration for %llu due to ret=%d",
|
|
|
|
extent_item_objectid, ret);
|
2011-12-02 21:56:41 +08:00
|
|
|
break;
|
|
|
|
}
|
2011-06-14 01:52:59 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* calls iterate() for every inode that references the extent identified by
|
2011-12-02 21:56:41 +08:00
|
|
|
* the given parameters.
|
2011-06-14 01:52:59 +08:00
|
|
|
* when the iterator function returns a non-zero value, iteration stops.
|
|
|
|
*/
|
|
|
|
int iterate_extent_inodes(struct btrfs_fs_info *fs_info,
|
2011-12-02 21:56:41 +08:00
|
|
|
u64 extent_item_objectid, u64 extent_item_pos,
|
2012-03-24 00:32:28 +08:00
|
|
|
int search_commit_root,
|
btrfs: add a flag to iterate_inodes_from_logical to find all extent refs for uncompressed extents
The LOGICAL_INO ioctl provides a backward mapping from extent bytenr and
offset (encoded as a single logical address) to a list of extent refs.
LOGICAL_INO complements TREE_SEARCH, which provides the forward mapping
(extent ref -> extent bytenr and offset, or logical address). These are
useful capabilities for programs that manipulate extents and extent
references from userspace (e.g. dedup and defrag utilities).
When the extents are uncompressed (and not encrypted and not other),
check_extent_in_eb performs filtering of the extent refs to remove any
extent refs which do not contain the same extent offset as the 'logical'
parameter's extent offset. This prevents LOGICAL_INO from returning
references to more than a single block.
To find the set of extent references to an uncompressed extent from [a, b),
userspace has to run a loop like this pseudocode:
for (i = a; i < b; ++i)
extent_ref_set += LOGICAL_INO(i);
At each iteration of the loop (up to 32768 iterations for a 128M extent),
data we are interested in is collected in the kernel, then deleted by
the filter in check_extent_in_eb.
When the extents are compressed (or encrypted or other), the 'logical'
parameter must be an extent bytenr (the 'a' parameter in the loop).
No filtering by extent offset is done (or possible?) so the result is
the complete set of extent refs for the entire extent. This removes
the need for the loop, since we get all the extent refs in one call.
Add an 'ignore_offset' argument to iterate_inodes_from_logical,
[...several levels of function call graph...], and check_extent_in_eb, so
that we can disable the extent offset filtering for uncompressed extents.
This flag can be set by an improved version of the LOGICAL_INO ioctl to
get either behavior as desired.
There is no functional change in this patch. The new flag is always
false.
Signed-off-by: Zygo Blaxell <ce3g8jdj@umail.furryterror.org>
Reviewed-by: David Sterba <dsterba@suse.com>
[ minor coding style fixes ]
Signed-off-by: David Sterba <dsterba@suse.com>
2017-09-23 01:58:45 +08:00
|
|
|
iterate_extent_inodes_t *iterate, void *ctx,
|
|
|
|
bool ignore_offset)
|
2011-06-14 01:52:59 +08:00
|
|
|
{
|
|
|
|
int ret;
|
2013-06-13 04:20:08 +08:00
|
|
|
struct btrfs_trans_handle *trans = NULL;
|
2012-03-24 00:32:28 +08:00
|
|
|
struct ulist *refs = NULL;
|
|
|
|
struct ulist *roots = NULL;
|
2011-12-02 21:56:41 +08:00
|
|
|
struct ulist_node *ref_node = NULL;
|
|
|
|
struct ulist_node *root_node = NULL;
|
2015-02-25 22:47:32 +08:00
|
|
|
struct seq_list tree_mod_seq_elem = SEQ_LIST_INIT(tree_mod_seq_elem);
|
2012-05-22 20:56:50 +08:00
|
|
|
struct ulist_iterator ref_uiter;
|
|
|
|
struct ulist_iterator root_uiter;
|
2011-06-14 01:52:59 +08:00
|
|
|
|
2016-09-20 22:05:02 +08:00
|
|
|
btrfs_debug(fs_info, "resolving all inodes for extent %llu",
|
2011-12-02 21:56:41 +08:00
|
|
|
extent_item_objectid);
|
2011-06-14 01:52:59 +08:00
|
|
|
|
2013-06-13 04:20:08 +08:00
|
|
|
if (!search_commit_root) {
|
Btrfs: do not start a transaction at iterate_extent_inodes()
When finding out which inodes have references on a particular extent, done
by backref.c:iterate_extent_inodes(), from the BTRFS_IOC_LOGICAL_INO (both
v1 and v2) ioctl and from scrub we use the transaction join API to grab a
reference on the currently running transaction, since in order to give
accurate results we need to inspect the delayed references of the currently
running transaction.
However, if there is currently no running transaction, the join operation
will create a new transaction. This is inefficient as the transaction will
eventually be committed, doing unnecessary IO and introducing a potential
point of failure that will lead to a transaction abort due to -ENOSPC, as
recently reported [1].
That's because the join, creates the transaction but does not reserve any
space, so when attempting to update the root item of the root passed to
btrfs_join_transaction(), during the transaction commit, we can end up
failling with -ENOSPC. Users of a join operation are supposed to actually
do some filesystem changes and reserve space by some means, which is not
the case of iterate_extent_inodes(), it is a read-only operation for all
contextes from which it is called.
The reported [1] -ENOSPC failure stack trace is the following:
heisenberg kernel: ------------[ cut here ]------------
heisenberg kernel: BTRFS: Transaction aborted (error -28)
heisenberg kernel: WARNING: CPU: 0 PID: 7137 at fs/btrfs/root-tree.c:136 btrfs_update_root+0x22b/0x320 [btrfs]
(...)
heisenberg kernel: CPU: 0 PID: 7137 Comm: btrfs-transacti Not tainted 4.19.0-4-amd64 #1 Debian 4.19.28-2
heisenberg kernel: Hardware name: FUJITSU LIFEBOOK U757/FJNB2A5, BIOS Version 1.21 03/19/2018
heisenberg kernel: RIP: 0010:btrfs_update_root+0x22b/0x320 [btrfs]
(...)
heisenberg kernel: RSP: 0018:ffffb5448828bd40 EFLAGS: 00010286
heisenberg kernel: RAX: 0000000000000000 RBX: ffff8ed56bccef50 RCX: 0000000000000006
heisenberg kernel: RDX: 0000000000000007 RSI: 0000000000000092 RDI: ffff8ed6bda166a0
heisenberg kernel: RBP: 00000000ffffffe4 R08: 00000000000003df R09: 0000000000000007
heisenberg kernel: R10: 0000000000000000 R11: 0000000000000001 R12: ffff8ed63396a078
heisenberg kernel: R13: ffff8ed092d7c800 R14: ffff8ed64f5db028 R15: ffff8ed6bd03d068
heisenberg kernel: FS: 0000000000000000(0000) GS:ffff8ed6bda00000(0000) knlGS:0000000000000000
heisenberg kernel: CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
heisenberg kernel: CR2: 00007f46f75f8000 CR3: 0000000310a0a002 CR4: 00000000003606f0
heisenberg kernel: DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000
heisenberg kernel: DR3: 0000000000000000 DR6: 00000000fffe0ff0 DR7: 0000000000000400
heisenberg kernel: Call Trace:
heisenberg kernel: commit_fs_roots+0x166/0x1d0 [btrfs]
heisenberg kernel: ? _cond_resched+0x15/0x30
heisenberg kernel: ? btrfs_run_delayed_refs+0xac/0x180 [btrfs]
heisenberg kernel: btrfs_commit_transaction+0x2bd/0x870 [btrfs]
heisenberg kernel: ? start_transaction+0x9d/0x3f0 [btrfs]
heisenberg kernel: transaction_kthread+0x147/0x180 [btrfs]
heisenberg kernel: ? btrfs_cleanup_transaction+0x530/0x530 [btrfs]
heisenberg kernel: kthread+0x112/0x130
heisenberg kernel: ? kthread_bind+0x30/0x30
heisenberg kernel: ret_from_fork+0x35/0x40
heisenberg kernel: ---[ end trace 05de912e30e012d9 ]---
So fix that by using the attach API, which does not create a transaction
when there is currently no running transaction.
[1] https://lore.kernel.org/linux-btrfs/b2a668d7124f1d3e410367f587926f622b3f03a4.camel@scientia.net/
Reported-by: Zygo Blaxell <ce3g8jdj@umail.furryterror.org>
CC: stable@vger.kernel.org # 4.4+
Signed-off-by: Filipe Manana <fdmanana@suse.com>
Reviewed-by: David Sterba <dsterba@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
2019-04-17 18:30:30 +08:00
|
|
|
trans = btrfs_attach_transaction(fs_info->extent_root);
|
|
|
|
if (IS_ERR(trans)) {
|
|
|
|
if (PTR_ERR(trans) != -ENOENT &&
|
|
|
|
PTR_ERR(trans) != -EROFS)
|
|
|
|
return PTR_ERR(trans);
|
|
|
|
trans = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (trans)
|
2012-05-17 00:36:03 +08:00
|
|
|
btrfs_get_tree_mod_seq(fs_info, &tree_mod_seq_elem);
|
Btrfs: do not start a transaction at iterate_extent_inodes()
When finding out which inodes have references on a particular extent, done
by backref.c:iterate_extent_inodes(), from the BTRFS_IOC_LOGICAL_INO (both
v1 and v2) ioctl and from scrub we use the transaction join API to grab a
reference on the currently running transaction, since in order to give
accurate results we need to inspect the delayed references of the currently
running transaction.
However, if there is currently no running transaction, the join operation
will create a new transaction. This is inefficient as the transaction will
eventually be committed, doing unnecessary IO and introducing a potential
point of failure that will lead to a transaction abort due to -ENOSPC, as
recently reported [1].
That's because the join, creates the transaction but does not reserve any
space, so when attempting to update the root item of the root passed to
btrfs_join_transaction(), during the transaction commit, we can end up
failling with -ENOSPC. Users of a join operation are supposed to actually
do some filesystem changes and reserve space by some means, which is not
the case of iterate_extent_inodes(), it is a read-only operation for all
contextes from which it is called.
The reported [1] -ENOSPC failure stack trace is the following:
heisenberg kernel: ------------[ cut here ]------------
heisenberg kernel: BTRFS: Transaction aborted (error -28)
heisenberg kernel: WARNING: CPU: 0 PID: 7137 at fs/btrfs/root-tree.c:136 btrfs_update_root+0x22b/0x320 [btrfs]
(...)
heisenberg kernel: CPU: 0 PID: 7137 Comm: btrfs-transacti Not tainted 4.19.0-4-amd64 #1 Debian 4.19.28-2
heisenberg kernel: Hardware name: FUJITSU LIFEBOOK U757/FJNB2A5, BIOS Version 1.21 03/19/2018
heisenberg kernel: RIP: 0010:btrfs_update_root+0x22b/0x320 [btrfs]
(...)
heisenberg kernel: RSP: 0018:ffffb5448828bd40 EFLAGS: 00010286
heisenberg kernel: RAX: 0000000000000000 RBX: ffff8ed56bccef50 RCX: 0000000000000006
heisenberg kernel: RDX: 0000000000000007 RSI: 0000000000000092 RDI: ffff8ed6bda166a0
heisenberg kernel: RBP: 00000000ffffffe4 R08: 00000000000003df R09: 0000000000000007
heisenberg kernel: R10: 0000000000000000 R11: 0000000000000001 R12: ffff8ed63396a078
heisenberg kernel: R13: ffff8ed092d7c800 R14: ffff8ed64f5db028 R15: ffff8ed6bd03d068
heisenberg kernel: FS: 0000000000000000(0000) GS:ffff8ed6bda00000(0000) knlGS:0000000000000000
heisenberg kernel: CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
heisenberg kernel: CR2: 00007f46f75f8000 CR3: 0000000310a0a002 CR4: 00000000003606f0
heisenberg kernel: DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000
heisenberg kernel: DR3: 0000000000000000 DR6: 00000000fffe0ff0 DR7: 0000000000000400
heisenberg kernel: Call Trace:
heisenberg kernel: commit_fs_roots+0x166/0x1d0 [btrfs]
heisenberg kernel: ? _cond_resched+0x15/0x30
heisenberg kernel: ? btrfs_run_delayed_refs+0xac/0x180 [btrfs]
heisenberg kernel: btrfs_commit_transaction+0x2bd/0x870 [btrfs]
heisenberg kernel: ? start_transaction+0x9d/0x3f0 [btrfs]
heisenberg kernel: transaction_kthread+0x147/0x180 [btrfs]
heisenberg kernel: ? btrfs_cleanup_transaction+0x530/0x530 [btrfs]
heisenberg kernel: kthread+0x112/0x130
heisenberg kernel: ? kthread_bind+0x30/0x30
heisenberg kernel: ret_from_fork+0x35/0x40
heisenberg kernel: ---[ end trace 05de912e30e012d9 ]---
So fix that by using the attach API, which does not create a transaction
when there is currently no running transaction.
[1] https://lore.kernel.org/linux-btrfs/b2a668d7124f1d3e410367f587926f622b3f03a4.camel@scientia.net/
Reported-by: Zygo Blaxell <ce3g8jdj@umail.furryterror.org>
CC: stable@vger.kernel.org # 4.4+
Signed-off-by: Filipe Manana <fdmanana@suse.com>
Reviewed-by: David Sterba <dsterba@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
2019-04-17 18:30:30 +08:00
|
|
|
else
|
2014-03-14 03:42:13 +08:00
|
|
|
down_read(&fs_info->commit_root_sem);
|
2011-06-14 01:52:59 +08:00
|
|
|
|
2011-12-02 21:56:41 +08:00
|
|
|
ret = btrfs_find_all_leafs(trans, fs_info, extent_item_objectid,
|
2012-06-21 17:08:04 +08:00
|
|
|
tree_mod_seq_elem.seq, &refs,
|
btrfs: add a flag to iterate_inodes_from_logical to find all extent refs for uncompressed extents
The LOGICAL_INO ioctl provides a backward mapping from extent bytenr and
offset (encoded as a single logical address) to a list of extent refs.
LOGICAL_INO complements TREE_SEARCH, which provides the forward mapping
(extent ref -> extent bytenr and offset, or logical address). These are
useful capabilities for programs that manipulate extents and extent
references from userspace (e.g. dedup and defrag utilities).
When the extents are uncompressed (and not encrypted and not other),
check_extent_in_eb performs filtering of the extent refs to remove any
extent refs which do not contain the same extent offset as the 'logical'
parameter's extent offset. This prevents LOGICAL_INO from returning
references to more than a single block.
To find the set of extent references to an uncompressed extent from [a, b),
userspace has to run a loop like this pseudocode:
for (i = a; i < b; ++i)
extent_ref_set += LOGICAL_INO(i);
At each iteration of the loop (up to 32768 iterations for a 128M extent),
data we are interested in is collected in the kernel, then deleted by
the filter in check_extent_in_eb.
When the extents are compressed (or encrypted or other), the 'logical'
parameter must be an extent bytenr (the 'a' parameter in the loop).
No filtering by extent offset is done (or possible?) so the result is
the complete set of extent refs for the entire extent. This removes
the need for the loop, since we get all the extent refs in one call.
Add an 'ignore_offset' argument to iterate_inodes_from_logical,
[...several levels of function call graph...], and check_extent_in_eb, so
that we can disable the extent offset filtering for uncompressed extents.
This flag can be set by an improved version of the LOGICAL_INO ioctl to
get either behavior as desired.
There is no functional change in this patch. The new flag is always
false.
Signed-off-by: Zygo Blaxell <ce3g8jdj@umail.furryterror.org>
Reviewed-by: David Sterba <dsterba@suse.com>
[ minor coding style fixes ]
Signed-off-by: David Sterba <dsterba@suse.com>
2017-09-23 01:58:45 +08:00
|
|
|
&extent_item_pos, ignore_offset);
|
2011-12-02 21:56:41 +08:00
|
|
|
if (ret)
|
|
|
|
goto out;
|
2011-06-14 01:52:59 +08:00
|
|
|
|
2012-05-22 20:56:50 +08:00
|
|
|
ULIST_ITER_INIT(&ref_uiter);
|
|
|
|
while (!ret && (ref_node = ulist_next(refs, &ref_uiter))) {
|
2017-06-29 11:56:57 +08:00
|
|
|
ret = btrfs_find_all_roots_safe(trans, fs_info, ref_node->val,
|
btrfs: add a flag to iterate_inodes_from_logical to find all extent refs for uncompressed extents
The LOGICAL_INO ioctl provides a backward mapping from extent bytenr and
offset (encoded as a single logical address) to a list of extent refs.
LOGICAL_INO complements TREE_SEARCH, which provides the forward mapping
(extent ref -> extent bytenr and offset, or logical address). These are
useful capabilities for programs that manipulate extents and extent
references from userspace (e.g. dedup and defrag utilities).
When the extents are uncompressed (and not encrypted and not other),
check_extent_in_eb performs filtering of the extent refs to remove any
extent refs which do not contain the same extent offset as the 'logical'
parameter's extent offset. This prevents LOGICAL_INO from returning
references to more than a single block.
To find the set of extent references to an uncompressed extent from [a, b),
userspace has to run a loop like this pseudocode:
for (i = a; i < b; ++i)
extent_ref_set += LOGICAL_INO(i);
At each iteration of the loop (up to 32768 iterations for a 128M extent),
data we are interested in is collected in the kernel, then deleted by
the filter in check_extent_in_eb.
When the extents are compressed (or encrypted or other), the 'logical'
parameter must be an extent bytenr (the 'a' parameter in the loop).
No filtering by extent offset is done (or possible?) so the result is
the complete set of extent refs for the entire extent. This removes
the need for the loop, since we get all the extent refs in one call.
Add an 'ignore_offset' argument to iterate_inodes_from_logical,
[...several levels of function call graph...], and check_extent_in_eb, so
that we can disable the extent offset filtering for uncompressed extents.
This flag can be set by an improved version of the LOGICAL_INO ioctl to
get either behavior as desired.
There is no functional change in this patch. The new flag is always
false.
Signed-off-by: Zygo Blaxell <ce3g8jdj@umail.furryterror.org>
Reviewed-by: David Sterba <dsterba@suse.com>
[ minor coding style fixes ]
Signed-off-by: David Sterba <dsterba@suse.com>
2017-09-23 01:58:45 +08:00
|
|
|
tree_mod_seq_elem.seq, &roots,
|
|
|
|
ignore_offset);
|
2011-12-02 21:56:41 +08:00
|
|
|
if (ret)
|
|
|
|
break;
|
2012-05-22 20:56:50 +08:00
|
|
|
ULIST_ITER_INIT(&root_uiter);
|
|
|
|
while (!ret && (root_node = ulist_next(roots, &root_uiter))) {
|
2016-09-20 22:05:02 +08:00
|
|
|
btrfs_debug(fs_info,
|
|
|
|
"root %llu references leaf %llu, data list %#llx",
|
|
|
|
root_node->val, ref_node->val,
|
|
|
|
ref_node->aux);
|
|
|
|
ret = iterate_leaf_refs(fs_info,
|
|
|
|
(struct extent_inode_elem *)
|
2012-08-13 16:52:38 +08:00
|
|
|
(uintptr_t)ref_node->aux,
|
|
|
|
root_node->val,
|
|
|
|
extent_item_objectid,
|
|
|
|
iterate, ctx);
|
2011-12-02 21:56:41 +08:00
|
|
|
}
|
2012-05-17 22:43:03 +08:00
|
|
|
ulist_free(roots);
|
2011-06-14 01:52:59 +08:00
|
|
|
}
|
|
|
|
|
2012-05-17 22:43:03 +08:00
|
|
|
free_leaf_list(refs);
|
2011-12-02 21:56:41 +08:00
|
|
|
out:
|
Btrfs: do not start a transaction at iterate_extent_inodes()
When finding out which inodes have references on a particular extent, done
by backref.c:iterate_extent_inodes(), from the BTRFS_IOC_LOGICAL_INO (both
v1 and v2) ioctl and from scrub we use the transaction join API to grab a
reference on the currently running transaction, since in order to give
accurate results we need to inspect the delayed references of the currently
running transaction.
However, if there is currently no running transaction, the join operation
will create a new transaction. This is inefficient as the transaction will
eventually be committed, doing unnecessary IO and introducing a potential
point of failure that will lead to a transaction abort due to -ENOSPC, as
recently reported [1].
That's because the join, creates the transaction but does not reserve any
space, so when attempting to update the root item of the root passed to
btrfs_join_transaction(), during the transaction commit, we can end up
failling with -ENOSPC. Users of a join operation are supposed to actually
do some filesystem changes and reserve space by some means, which is not
the case of iterate_extent_inodes(), it is a read-only operation for all
contextes from which it is called.
The reported [1] -ENOSPC failure stack trace is the following:
heisenberg kernel: ------------[ cut here ]------------
heisenberg kernel: BTRFS: Transaction aborted (error -28)
heisenberg kernel: WARNING: CPU: 0 PID: 7137 at fs/btrfs/root-tree.c:136 btrfs_update_root+0x22b/0x320 [btrfs]
(...)
heisenberg kernel: CPU: 0 PID: 7137 Comm: btrfs-transacti Not tainted 4.19.0-4-amd64 #1 Debian 4.19.28-2
heisenberg kernel: Hardware name: FUJITSU LIFEBOOK U757/FJNB2A5, BIOS Version 1.21 03/19/2018
heisenberg kernel: RIP: 0010:btrfs_update_root+0x22b/0x320 [btrfs]
(...)
heisenberg kernel: RSP: 0018:ffffb5448828bd40 EFLAGS: 00010286
heisenberg kernel: RAX: 0000000000000000 RBX: ffff8ed56bccef50 RCX: 0000000000000006
heisenberg kernel: RDX: 0000000000000007 RSI: 0000000000000092 RDI: ffff8ed6bda166a0
heisenberg kernel: RBP: 00000000ffffffe4 R08: 00000000000003df R09: 0000000000000007
heisenberg kernel: R10: 0000000000000000 R11: 0000000000000001 R12: ffff8ed63396a078
heisenberg kernel: R13: ffff8ed092d7c800 R14: ffff8ed64f5db028 R15: ffff8ed6bd03d068
heisenberg kernel: FS: 0000000000000000(0000) GS:ffff8ed6bda00000(0000) knlGS:0000000000000000
heisenberg kernel: CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
heisenberg kernel: CR2: 00007f46f75f8000 CR3: 0000000310a0a002 CR4: 00000000003606f0
heisenberg kernel: DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000
heisenberg kernel: DR3: 0000000000000000 DR6: 00000000fffe0ff0 DR7: 0000000000000400
heisenberg kernel: Call Trace:
heisenberg kernel: commit_fs_roots+0x166/0x1d0 [btrfs]
heisenberg kernel: ? _cond_resched+0x15/0x30
heisenberg kernel: ? btrfs_run_delayed_refs+0xac/0x180 [btrfs]
heisenberg kernel: btrfs_commit_transaction+0x2bd/0x870 [btrfs]
heisenberg kernel: ? start_transaction+0x9d/0x3f0 [btrfs]
heisenberg kernel: transaction_kthread+0x147/0x180 [btrfs]
heisenberg kernel: ? btrfs_cleanup_transaction+0x530/0x530 [btrfs]
heisenberg kernel: kthread+0x112/0x130
heisenberg kernel: ? kthread_bind+0x30/0x30
heisenberg kernel: ret_from_fork+0x35/0x40
heisenberg kernel: ---[ end trace 05de912e30e012d9 ]---
So fix that by using the attach API, which does not create a transaction
when there is currently no running transaction.
[1] https://lore.kernel.org/linux-btrfs/b2a668d7124f1d3e410367f587926f622b3f03a4.camel@scientia.net/
Reported-by: Zygo Blaxell <ce3g8jdj@umail.furryterror.org>
CC: stable@vger.kernel.org # 4.4+
Signed-off-by: Filipe Manana <fdmanana@suse.com>
Reviewed-by: David Sterba <dsterba@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
2019-04-17 18:30:30 +08:00
|
|
|
if (trans) {
|
2012-05-17 00:36:03 +08:00
|
|
|
btrfs_put_tree_mod_seq(fs_info, &tree_mod_seq_elem);
|
2016-09-10 09:39:03 +08:00
|
|
|
btrfs_end_transaction(trans);
|
2014-03-14 03:42:13 +08:00
|
|
|
} else {
|
|
|
|
up_read(&fs_info->commit_root_sem);
|
2012-03-24 00:32:28 +08:00
|
|
|
}
|
|
|
|
|
2011-06-14 01:52:59 +08:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
int iterate_inodes_from_logical(u64 logical, struct btrfs_fs_info *fs_info,
|
|
|
|
struct btrfs_path *path,
|
btrfs: add a flag to iterate_inodes_from_logical to find all extent refs for uncompressed extents
The LOGICAL_INO ioctl provides a backward mapping from extent bytenr and
offset (encoded as a single logical address) to a list of extent refs.
LOGICAL_INO complements TREE_SEARCH, which provides the forward mapping
(extent ref -> extent bytenr and offset, or logical address). These are
useful capabilities for programs that manipulate extents and extent
references from userspace (e.g. dedup and defrag utilities).
When the extents are uncompressed (and not encrypted and not other),
check_extent_in_eb performs filtering of the extent refs to remove any
extent refs which do not contain the same extent offset as the 'logical'
parameter's extent offset. This prevents LOGICAL_INO from returning
references to more than a single block.
To find the set of extent references to an uncompressed extent from [a, b),
userspace has to run a loop like this pseudocode:
for (i = a; i < b; ++i)
extent_ref_set += LOGICAL_INO(i);
At each iteration of the loop (up to 32768 iterations for a 128M extent),
data we are interested in is collected in the kernel, then deleted by
the filter in check_extent_in_eb.
When the extents are compressed (or encrypted or other), the 'logical'
parameter must be an extent bytenr (the 'a' parameter in the loop).
No filtering by extent offset is done (or possible?) so the result is
the complete set of extent refs for the entire extent. This removes
the need for the loop, since we get all the extent refs in one call.
Add an 'ignore_offset' argument to iterate_inodes_from_logical,
[...several levels of function call graph...], and check_extent_in_eb, so
that we can disable the extent offset filtering for uncompressed extents.
This flag can be set by an improved version of the LOGICAL_INO ioctl to
get either behavior as desired.
There is no functional change in this patch. The new flag is always
false.
Signed-off-by: Zygo Blaxell <ce3g8jdj@umail.furryterror.org>
Reviewed-by: David Sterba <dsterba@suse.com>
[ minor coding style fixes ]
Signed-off-by: David Sterba <dsterba@suse.com>
2017-09-23 01:58:45 +08:00
|
|
|
iterate_extent_inodes_t *iterate, void *ctx,
|
|
|
|
bool ignore_offset)
|
2011-06-14 01:52:59 +08:00
|
|
|
{
|
|
|
|
int ret;
|
2011-12-02 21:56:41 +08:00
|
|
|
u64 extent_item_pos;
|
2012-09-08 10:01:28 +08:00
|
|
|
u64 flags = 0;
|
2011-06-14 01:52:59 +08:00
|
|
|
struct btrfs_key found_key;
|
2012-03-24 00:32:28 +08:00
|
|
|
int search_commit_root = path->search_commit_root;
|
2011-06-14 01:52:59 +08:00
|
|
|
|
2012-09-08 10:01:28 +08:00
|
|
|
ret = extent_from_logical(fs_info, logical, path, &found_key, &flags);
|
2011-12-02 21:56:41 +08:00
|
|
|
btrfs_release_path(path);
|
2011-06-14 01:52:59 +08:00
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
2012-09-08 10:01:28 +08:00
|
|
|
if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK)
|
2012-08-01 18:28:01 +08:00
|
|
|
return -EINVAL;
|
2011-06-14 01:52:59 +08:00
|
|
|
|
2011-12-02 21:56:41 +08:00
|
|
|
extent_item_pos = logical - found_key.objectid;
|
2012-03-24 00:32:28 +08:00
|
|
|
ret = iterate_extent_inodes(fs_info, found_key.objectid,
|
|
|
|
extent_item_pos, search_commit_root,
|
btrfs: add a flag to iterate_inodes_from_logical to find all extent refs for uncompressed extents
The LOGICAL_INO ioctl provides a backward mapping from extent bytenr and
offset (encoded as a single logical address) to a list of extent refs.
LOGICAL_INO complements TREE_SEARCH, which provides the forward mapping
(extent ref -> extent bytenr and offset, or logical address). These are
useful capabilities for programs that manipulate extents and extent
references from userspace (e.g. dedup and defrag utilities).
When the extents are uncompressed (and not encrypted and not other),
check_extent_in_eb performs filtering of the extent refs to remove any
extent refs which do not contain the same extent offset as the 'logical'
parameter's extent offset. This prevents LOGICAL_INO from returning
references to more than a single block.
To find the set of extent references to an uncompressed extent from [a, b),
userspace has to run a loop like this pseudocode:
for (i = a; i < b; ++i)
extent_ref_set += LOGICAL_INO(i);
At each iteration of the loop (up to 32768 iterations for a 128M extent),
data we are interested in is collected in the kernel, then deleted by
the filter in check_extent_in_eb.
When the extents are compressed (or encrypted or other), the 'logical'
parameter must be an extent bytenr (the 'a' parameter in the loop).
No filtering by extent offset is done (or possible?) so the result is
the complete set of extent refs for the entire extent. This removes
the need for the loop, since we get all the extent refs in one call.
Add an 'ignore_offset' argument to iterate_inodes_from_logical,
[...several levels of function call graph...], and check_extent_in_eb, so
that we can disable the extent offset filtering for uncompressed extents.
This flag can be set by an improved version of the LOGICAL_INO ioctl to
get either behavior as desired.
There is no functional change in this patch. The new flag is always
false.
Signed-off-by: Zygo Blaxell <ce3g8jdj@umail.furryterror.org>
Reviewed-by: David Sterba <dsterba@suse.com>
[ minor coding style fixes ]
Signed-off-by: David Sterba <dsterba@suse.com>
2017-09-23 01:58:45 +08:00
|
|
|
iterate, ctx, ignore_offset);
|
2011-06-14 01:52:59 +08:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2012-08-09 02:33:54 +08:00
|
|
|
typedef int (iterate_irefs_t)(u64 parent, u32 name_len, unsigned long name_off,
|
|
|
|
struct extent_buffer *eb, void *ctx);
|
|
|
|
|
|
|
|
static int iterate_inode_refs(u64 inum, struct btrfs_root *fs_root,
|
|
|
|
struct btrfs_path *path,
|
|
|
|
iterate_irefs_t *iterate, void *ctx)
|
2011-06-14 01:52:59 +08:00
|
|
|
{
|
2012-04-13 18:28:00 +08:00
|
|
|
int ret = 0;
|
2011-06-14 01:52:59 +08:00
|
|
|
int slot;
|
|
|
|
u32 cur;
|
|
|
|
u32 len;
|
|
|
|
u32 name_len;
|
|
|
|
u64 parent = 0;
|
|
|
|
int found = 0;
|
|
|
|
struct extent_buffer *eb;
|
|
|
|
struct btrfs_item *item;
|
|
|
|
struct btrfs_inode_ref *iref;
|
|
|
|
struct btrfs_key found_key;
|
|
|
|
|
2012-04-13 18:28:00 +08:00
|
|
|
while (!ret) {
|
2015-01-03 02:03:17 +08:00
|
|
|
ret = btrfs_find_item(fs_root, path, inum,
|
|
|
|
parent ? parent + 1 : 0, BTRFS_INODE_REF_KEY,
|
|
|
|
&found_key);
|
|
|
|
|
2011-06-14 01:52:59 +08:00
|
|
|
if (ret < 0)
|
|
|
|
break;
|
|
|
|
if (ret) {
|
|
|
|
ret = found ? 0 : -ENOENT;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
++found;
|
|
|
|
|
|
|
|
parent = found_key.offset;
|
|
|
|
slot = path->slots[0];
|
2013-12-15 20:43:58 +08:00
|
|
|
eb = btrfs_clone_extent_buffer(path->nodes[0]);
|
|
|
|
if (!eb) {
|
|
|
|
ret = -ENOMEM;
|
|
|
|
break;
|
|
|
|
}
|
2011-06-14 01:52:59 +08:00
|
|
|
btrfs_release_path(path);
|
|
|
|
|
2013-09-16 22:58:09 +08:00
|
|
|
item = btrfs_item_nr(slot);
|
2011-06-14 01:52:59 +08:00
|
|
|
iref = btrfs_item_ptr(eb, slot, struct btrfs_inode_ref);
|
|
|
|
|
|
|
|
for (cur = 0; cur < btrfs_item_size(eb, item); cur += len) {
|
|
|
|
name_len = btrfs_inode_ref_name_len(eb, iref);
|
|
|
|
/* path must be released before calling iterate()! */
|
2016-09-20 22:05:02 +08:00
|
|
|
btrfs_debug(fs_root->fs_info,
|
|
|
|
"following ref at offset %u for inode %llu in tree %llu",
|
2018-08-06 13:25:24 +08:00
|
|
|
cur, found_key.objectid,
|
|
|
|
fs_root->root_key.objectid);
|
2012-08-09 02:33:54 +08:00
|
|
|
ret = iterate(parent, name_len,
|
|
|
|
(unsigned long)(iref + 1), eb, ctx);
|
2012-04-13 18:28:00 +08:00
|
|
|
if (ret)
|
2011-06-14 01:52:59 +08:00
|
|
|
break;
|
|
|
|
len = sizeof(*iref) + name_len;
|
|
|
|
iref = (struct btrfs_inode_ref *)((char *)iref + len);
|
|
|
|
}
|
|
|
|
free_extent_buffer(eb);
|
|
|
|
}
|
|
|
|
|
|
|
|
btrfs_release_path(path);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2012-08-09 02:33:54 +08:00
|
|
|
static int iterate_inode_extrefs(u64 inum, struct btrfs_root *fs_root,
|
|
|
|
struct btrfs_path *path,
|
|
|
|
iterate_irefs_t *iterate, void *ctx)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
int slot;
|
|
|
|
u64 offset = 0;
|
|
|
|
u64 parent;
|
|
|
|
int found = 0;
|
|
|
|
struct extent_buffer *eb;
|
|
|
|
struct btrfs_inode_extref *extref;
|
|
|
|
u32 item_size;
|
|
|
|
u32 cur_offset;
|
|
|
|
unsigned long ptr;
|
|
|
|
|
|
|
|
while (1) {
|
|
|
|
ret = btrfs_find_one_extref(fs_root, inum, offset, path, &extref,
|
|
|
|
&offset);
|
|
|
|
if (ret < 0)
|
|
|
|
break;
|
|
|
|
if (ret) {
|
|
|
|
ret = found ? 0 : -ENOENT;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
++found;
|
|
|
|
|
|
|
|
slot = path->slots[0];
|
2013-12-15 20:43:58 +08:00
|
|
|
eb = btrfs_clone_extent_buffer(path->nodes[0]);
|
|
|
|
if (!eb) {
|
|
|
|
ret = -ENOMEM;
|
|
|
|
break;
|
|
|
|
}
|
2012-08-09 02:33:54 +08:00
|
|
|
btrfs_release_path(path);
|
|
|
|
|
2015-10-14 02:06:48 +08:00
|
|
|
item_size = btrfs_item_size_nr(eb, slot);
|
|
|
|
ptr = btrfs_item_ptr_offset(eb, slot);
|
2012-08-09 02:33:54 +08:00
|
|
|
cur_offset = 0;
|
|
|
|
|
|
|
|
while (cur_offset < item_size) {
|
|
|
|
u32 name_len;
|
|
|
|
|
|
|
|
extref = (struct btrfs_inode_extref *)(ptr + cur_offset);
|
|
|
|
parent = btrfs_inode_extref_parent(eb, extref);
|
|
|
|
name_len = btrfs_inode_extref_name_len(eb, extref);
|
|
|
|
ret = iterate(parent, name_len,
|
|
|
|
(unsigned long)&extref->name, eb, ctx);
|
|
|
|
if (ret)
|
|
|
|
break;
|
|
|
|
|
2015-10-14 02:06:48 +08:00
|
|
|
cur_offset += btrfs_inode_extref_name_len(eb, extref);
|
2012-08-09 02:33:54 +08:00
|
|
|
cur_offset += sizeof(*extref);
|
|
|
|
}
|
|
|
|
free_extent_buffer(eb);
|
|
|
|
|
|
|
|
offset++;
|
|
|
|
}
|
|
|
|
|
|
|
|
btrfs_release_path(path);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int iterate_irefs(u64 inum, struct btrfs_root *fs_root,
|
|
|
|
struct btrfs_path *path, iterate_irefs_t *iterate,
|
|
|
|
void *ctx)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
int found_refs = 0;
|
|
|
|
|
|
|
|
ret = iterate_inode_refs(inum, fs_root, path, iterate, ctx);
|
|
|
|
if (!ret)
|
|
|
|
++found_refs;
|
|
|
|
else if (ret != -ENOENT)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
ret = iterate_inode_extrefs(inum, fs_root, path, iterate, ctx);
|
|
|
|
if (ret == -ENOENT && found_refs)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2011-06-14 01:52:59 +08:00
|
|
|
/*
|
|
|
|
* returns 0 if the path could be dumped (probably truncated)
|
|
|
|
* returns <0 in case of an error
|
|
|
|
*/
|
2012-08-09 02:33:54 +08:00
|
|
|
static int inode_to_path(u64 inum, u32 name_len, unsigned long name_off,
|
|
|
|
struct extent_buffer *eb, void *ctx)
|
2011-06-14 01:52:59 +08:00
|
|
|
{
|
|
|
|
struct inode_fs_paths *ipath = ctx;
|
|
|
|
char *fspath;
|
|
|
|
char *fspath_min;
|
|
|
|
int i = ipath->fspath->elem_cnt;
|
|
|
|
const int s_ptr = sizeof(char *);
|
|
|
|
u32 bytes_left;
|
|
|
|
|
|
|
|
bytes_left = ipath->fspath->bytes_left > s_ptr ?
|
|
|
|
ipath->fspath->bytes_left - s_ptr : 0;
|
|
|
|
|
2011-11-03 03:48:34 +08:00
|
|
|
fspath_min = (char *)ipath->fspath->val + (i + 1) * s_ptr;
|
2012-10-15 16:30:45 +08:00
|
|
|
fspath = btrfs_ref_to_path(ipath->fs_root, ipath->btrfs_path, name_len,
|
|
|
|
name_off, eb, inum, fspath_min, bytes_left);
|
2011-06-14 01:52:59 +08:00
|
|
|
if (IS_ERR(fspath))
|
|
|
|
return PTR_ERR(fspath);
|
|
|
|
|
|
|
|
if (fspath > fspath_min) {
|
2011-11-20 20:31:57 +08:00
|
|
|
ipath->fspath->val[i] = (u64)(unsigned long)fspath;
|
2011-06-14 01:52:59 +08:00
|
|
|
++ipath->fspath->elem_cnt;
|
|
|
|
ipath->fspath->bytes_left = fspath - fspath_min;
|
|
|
|
} else {
|
|
|
|
++ipath->fspath->elem_missed;
|
|
|
|
ipath->fspath->bytes_missing += fspath_min - fspath;
|
|
|
|
ipath->fspath->bytes_left = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* this dumps all file system paths to the inode into the ipath struct, provided
|
|
|
|
* is has been created large enough. each path is zero-terminated and accessed
|
2011-11-03 03:48:34 +08:00
|
|
|
* from ipath->fspath->val[i].
|
2011-06-14 01:52:59 +08:00
|
|
|
* when it returns, there are ipath->fspath->elem_cnt number of paths available
|
2011-11-03 03:48:34 +08:00
|
|
|
* in ipath->fspath->val[]. when the allocated space wasn't sufficient, the
|
2016-05-20 09:18:45 +08:00
|
|
|
* number of missed paths is recorded in ipath->fspath->elem_missed, otherwise,
|
2011-06-14 01:52:59 +08:00
|
|
|
* it's zero. ipath->fspath->bytes_missing holds the number of bytes that would
|
|
|
|
* have been needed to return all paths.
|
|
|
|
*/
|
|
|
|
int paths_from_inode(u64 inum, struct inode_fs_paths *ipath)
|
|
|
|
{
|
|
|
|
return iterate_irefs(inum, ipath->fs_root, ipath->btrfs_path,
|
2012-08-09 02:33:54 +08:00
|
|
|
inode_to_path, ipath);
|
2011-06-14 01:52:59 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
struct btrfs_data_container *init_data_container(u32 total_bytes)
|
|
|
|
{
|
|
|
|
struct btrfs_data_container *data;
|
|
|
|
size_t alloc_bytes;
|
|
|
|
|
|
|
|
alloc_bytes = max_t(size_t, total_bytes, sizeof(*data));
|
2017-06-01 01:32:09 +08:00
|
|
|
data = kvmalloc(alloc_bytes, GFP_KERNEL);
|
2011-06-14 01:52:59 +08:00
|
|
|
if (!data)
|
|
|
|
return ERR_PTR(-ENOMEM);
|
|
|
|
|
|
|
|
if (total_bytes >= sizeof(*data)) {
|
|
|
|
data->bytes_left = total_bytes - sizeof(*data);
|
|
|
|
data->bytes_missing = 0;
|
|
|
|
} else {
|
|
|
|
data->bytes_missing = sizeof(*data) - total_bytes;
|
|
|
|
data->bytes_left = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
data->elem_cnt = 0;
|
|
|
|
data->elem_missed = 0;
|
|
|
|
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* allocates space to return multiple file system paths for an inode.
|
|
|
|
* total_bytes to allocate are passed, note that space usable for actual path
|
|
|
|
* information will be total_bytes - sizeof(struct inode_fs_paths).
|
|
|
|
* the returned pointer must be freed with free_ipath() in the end.
|
|
|
|
*/
|
|
|
|
struct inode_fs_paths *init_ipath(s32 total_bytes, struct btrfs_root *fs_root,
|
|
|
|
struct btrfs_path *path)
|
|
|
|
{
|
|
|
|
struct inode_fs_paths *ifp;
|
|
|
|
struct btrfs_data_container *fspath;
|
|
|
|
|
|
|
|
fspath = init_data_container(total_bytes);
|
|
|
|
if (IS_ERR(fspath))
|
2018-07-26 09:22:58 +08:00
|
|
|
return ERR_CAST(fspath);
|
2011-06-14 01:52:59 +08:00
|
|
|
|
2017-06-01 01:32:09 +08:00
|
|
|
ifp = kmalloc(sizeof(*ifp), GFP_KERNEL);
|
2011-06-14 01:52:59 +08:00
|
|
|
if (!ifp) {
|
2017-06-01 01:32:09 +08:00
|
|
|
kvfree(fspath);
|
2011-06-14 01:52:59 +08:00
|
|
|
return ERR_PTR(-ENOMEM);
|
|
|
|
}
|
|
|
|
|
|
|
|
ifp->btrfs_path = path;
|
|
|
|
ifp->fspath = fspath;
|
|
|
|
ifp->fs_root = fs_root;
|
|
|
|
|
|
|
|
return ifp;
|
|
|
|
}
|
|
|
|
|
|
|
|
void free_ipath(struct inode_fs_paths *ipath)
|
|
|
|
{
|
2012-04-13 04:47:52 +08:00
|
|
|
if (!ipath)
|
|
|
|
return;
|
2017-06-01 01:32:09 +08:00
|
|
|
kvfree(ipath->fspath);
|
2011-06-14 01:52:59 +08:00
|
|
|
kfree(ipath);
|
|
|
|
}
|