mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 00:48:50 +00:00
68a3ebd18b
When putting an inode during extent map shrinking we're doing a standard
iput() but that may take a long time in case the inode is dirty and we are
doing the final iput that triggers eviction - the VFS will have to wait
for writeback before calling the btrfs evict callback (see
fs/inode.c:evict()).
This slows down the task running the shrinker which may have been
triggered while updating some tree for example, meaning locks are held
as well as an open transaction handle.
Also if the iput() ends up triggering eviction and the inode has no links
anymore, then we trigger item truncation which requires flushing delayed
items, space reservation to start a transaction and that may trigger the
space reclaim task and wait for it, resulting in deadlocks in case the
reclaim task needs for example to commit a transaction and the shrinker
is being triggered from a path holding a transaction handle.
Syzbot reported such a case with the following stack traces:
======================================================
WARNING: possible circular locking dependency detected
6.10.0-rc2-syzkaller-00010-g2ab795141095 #0 Not tainted
------------------------------------------------------
kswapd0/111 is trying to acquire lock:
ffff88801eae4610 (sb_internal#3){.+.+}-{0:0}, at: btrfs_commit_inode_delayed_inode+0x110/0x330 fs/btrfs/delayed-inode.c:1275
but task is already holding lock:
ffffffff8dd3a9a0 (fs_reclaim){+.+.}-{0:0}, at: balance_pgdat+0xa88/0x1970 mm/vmscan.c:6924
which lock already depends on the new lock.
the existing dependency chain (in reverse order) is:
-> #3 (fs_reclaim){+.+.}-{0:0}:
__fs_reclaim_acquire mm/page_alloc.c:3783 [inline]
fs_reclaim_acquire+0x102/0x160 mm/page_alloc.c:3797
might_alloc include/linux/sched/mm.h:334 [inline]
slab_pre_alloc_hook mm/slub.c:3890 [inline]
slab_alloc_node mm/slub.c:3980 [inline]
kmem_cache_alloc_lru_noprof+0x58/0x2f0 mm/slub.c:4019
btrfs_alloc_inode+0x118/0xb20 fs/btrfs/inode.c:8411
alloc_inode+0x5d/0x230 fs/inode.c:261
iget5_locked fs/inode.c:1235 [inline]
iget5_locked+0x1c9/0x2c0 fs/inode.c:1228
btrfs_iget_locked fs/btrfs/inode.c:5590 [inline]
btrfs_iget_path fs/btrfs/inode.c:5607 [inline]
btrfs_iget+0xfb/0x230 fs/btrfs/inode.c:5636
create_reloc_inode+0x403/0x820 fs/btrfs/relocation.c:3911
btrfs_relocate_block_group+0x471/0xe60 fs/btrfs/relocation.c:4114
btrfs_relocate_chunk+0x143/0x450 fs/btrfs/volumes.c:3373
__btrfs_balance fs/btrfs/volumes.c:4157 [inline]
btrfs_balance+0x211a/0x3f00 fs/btrfs/volumes.c:4534
btrfs_ioctl_balance fs/btrfs/ioctl.c:3675 [inline]
btrfs_ioctl+0x12ed/0x8290 fs/btrfs/ioctl.c:4742
__do_compat_sys_ioctl+0x2c3/0x330 fs/ioctl.c:1007
do_syscall_32_irqs_on arch/x86/entry/common.c:165 [inline]
__do_fast_syscall_32+0x73/0x120 arch/x86/entry/common.c:386
do_fast_syscall_32+0x32/0x80 arch/x86/entry/common.c:411
entry_SYSENTER_compat_after_hwframe+0x84/0x8e
-> #2 (btrfs_trans_num_extwriters){++++}-{0:0}:
join_transaction+0x164/0xf40 fs/btrfs/transaction.c:315
start_transaction+0x427/0x1a70 fs/btrfs/transaction.c:700
btrfs_rebuild_free_space_tree+0xaa/0x480 fs/btrfs/free-space-tree.c:1323
btrfs_start_pre_rw_mount+0x218/0xf60 fs/btrfs/disk-io.c:2999
open_ctree+0x41ab/0x52e0 fs/btrfs/disk-io.c:3554
btrfs_fill_super fs/btrfs/super.c:946 [inline]
btrfs_get_tree_super fs/btrfs/super.c:1863 [inline]
btrfs_get_tree+0x11e9/0x1b90 fs/btrfs/super.c:2089
vfs_get_tree+0x8f/0x380 fs/super.c:1780
fc_mount+0x16/0xc0 fs/namespace.c:1125
btrfs_get_tree_subvol fs/btrfs/super.c:2052 [inline]
btrfs_get_tree+0xa53/0x1b90 fs/btrfs/super.c:2090
vfs_get_tree+0x8f/0x380 fs/super.c:1780
do_new_mount fs/namespace.c:3352 [inline]
path_mount+0x6e1/0x1f10 fs/namespace.c:3679
do_mount fs/namespace.c:3692 [inline]
__do_sys_mount fs/namespace.c:3898 [inline]
__se_sys_mount fs/namespace.c:3875 [inline]
__ia32_sys_mount+0x295/0x320 fs/namespace.c:3875
do_syscall_32_irqs_on arch/x86/entry/common.c:165 [inline]
__do_fast_syscall_32+0x73/0x120 arch/x86/entry/common.c:386
do_fast_syscall_32+0x32/0x80 arch/x86/entry/common.c:411
entry_SYSENTER_compat_after_hwframe+0x84/0x8e
-> #1 (btrfs_trans_num_writers){++++}-{0:0}:
join_transaction+0x148/0xf40 fs/btrfs/transaction.c:314
start_transaction+0x427/0x1a70 fs/btrfs/transaction.c:700
btrfs_rebuild_free_space_tree+0xaa/0x480 fs/btrfs/free-space-tree.c:1323
btrfs_start_pre_rw_mount+0x218/0xf60 fs/btrfs/disk-io.c:2999
open_ctree+0x41ab/0x52e0 fs/btrfs/disk-io.c:3554
btrfs_fill_super fs/btrfs/super.c:946 [inline]
btrfs_get_tree_super fs/btrfs/super.c:1863 [inline]
btrfs_get_tree+0x11e9/0x1b90 fs/btrfs/super.c:2089
vfs_get_tree+0x8f/0x380 fs/super.c:1780
fc_mount+0x16/0xc0 fs/namespace.c:1125
btrfs_get_tree_subvol fs/btrfs/super.c:2052 [inline]
btrfs_get_tree+0xa53/0x1b90 fs/btrfs/super.c:2090
vfs_get_tree+0x8f/0x380 fs/super.c:1780
do_new_mount fs/namespace.c:3352 [inline]
path_mount+0x6e1/0x1f10 fs/namespace.c:3679
do_mount fs/namespace.c:3692 [inline]
__do_sys_mount fs/namespace.c:3898 [inline]
__se_sys_mount fs/namespace.c:3875 [inline]
__ia32_sys_mount+0x295/0x320 fs/namespace.c:3875
do_syscall_32_irqs_on arch/x86/entry/common.c:165 [inline]
__do_fast_syscall_32+0x73/0x120 arch/x86/entry/common.c:386
do_fast_syscall_32+0x32/0x80 arch/x86/entry/common.c:411
entry_SYSENTER_compat_after_hwframe+0x84/0x8e
-> #0 (sb_internal#3){.+.+}-{0:0}:
check_prev_add kernel/locking/lockdep.c:3134 [inline]
check_prevs_add kernel/locking/lockdep.c:3253 [inline]
validate_chain kernel/locking/lockdep.c:3869 [inline]
__lock_acquire+0x2478/0x3b30 kernel/locking/lockdep.c:5137
lock_acquire kernel/locking/lockdep.c:5754 [inline]
lock_acquire+0x1b1/0x560 kernel/locking/lockdep.c:5719
percpu_down_read include/linux/percpu-rwsem.h:51 [inline]
__sb_start_write include/linux/fs.h:1655 [inline]
sb_start_intwrite include/linux/fs.h:1838 [inline]
start_transaction+0xbc1/0x1a70 fs/btrfs/transaction.c:694
btrfs_commit_inode_delayed_inode+0x110/0x330 fs/btrfs/delayed-inode.c:1275
btrfs_evict_inode+0x960/0xe80 fs/btrfs/inode.c:5291
evict+0x2ed/0x6c0 fs/inode.c:667
iput_final fs/inode.c:1741 [inline]
iput.part.0+0x5a8/0x7f0 fs/inode.c:1767
iput+0x5c/0x80 fs/inode.c:1757
btrfs_scan_root fs/btrfs/extent_map.c:1118 [inline]
btrfs_free_extent_maps+0xbd3/0x1320 fs/btrfs/extent_map.c:1189
super_cache_scan+0x409/0x550 fs/super.c:227
do_shrink_slab+0x44f/0x11c0 mm/shrinker.c:435
shrink_slab+0x18a/0x1310 mm/shrinker.c:662
shrink_one+0x493/0x7c0 mm/vmscan.c:4790
shrink_many mm/vmscan.c:4851 [inline]
lru_gen_shrink_node+0x89f/0x1750 mm/vmscan.c:4951
shrink_node mm/vmscan.c:5910 [inline]
kswapd_shrink_node mm/vmscan.c:6720 [inline]
balance_pgdat+0x1105/0x1970 mm/vmscan.c:6911
kswapd+0x5ea/0xbf0 mm/vmscan.c:7180
kthread+0x2c1/0x3a0 kernel/kthread.c:389
ret_from_fork+0x45/0x80 arch/x86/kernel/process.c:147
ret_from_fork_asm+0x1a/0x30 arch/x86/entry/entry_64.S:244
other info that might help us debug this:
Chain exists of:
sb_internal#3 --> btrfs_trans_num_extwriters --> fs_reclaim
Possible unsafe locking scenario:
CPU0 CPU1
---- ----
lock(fs_reclaim);
lock(btrfs_trans_num_extwriters);
lock(fs_reclaim);
rlock(sb_internal#3);
*** DEADLOCK ***
2 locks held by kswapd0/111:
#0: ffffffff8dd3a9a0 (fs_reclaim){+.+.}-{0:0}, at: balance_pgdat+0xa88/0x1970 mm/vmscan.c:6924
#1: ffff88801eae40e0 (&type->s_umount_key#62){++++}-{3:3}, at: super_trylock_shared fs/super.c:562 [inline]
#1: ffff88801eae40e0 (&type->s_umount_key#62){++++}-{3:3}, at: super_cache_scan+0x96/0x550 fs/super.c:196
stack backtrace:
CPU: 0 PID: 111 Comm: kswapd0 Not tainted 6.10.0-rc2-syzkaller-00010-g2ab795141095 #0
Hardware name: QEMU Standard PC (Q35 + ICH9, 2009), BIOS 1.16.2-debian-1.16.2-1 04/01/2014
Call Trace:
<TASK>
__dump_stack lib/dump_stack.c:88 [inline]
dump_stack_lvl+0x116/0x1f0 lib/dump_stack.c:114
check_noncircular+0x31a/0x400 kernel/locking/lockdep.c:2187
check_prev_add kernel/locking/lockdep.c:3134 [inline]
check_prevs_add kernel/locking/lockdep.c:3253 [inline]
validate_chain kernel/locking/lockdep.c:3869 [inline]
__lock_acquire+0x2478/0x3b30 kernel/locking/lockdep.c:5137
lock_acquire kernel/locking/lockdep.c:5754 [inline]
lock_acquire+0x1b1/0x560 kernel/locking/lockdep.c:5719
percpu_down_read include/linux/percpu-rwsem.h:51 [inline]
__sb_start_write include/linux/fs.h:1655 [inline]
sb_start_intwrite include/linux/fs.h:1838 [inline]
start_transaction+0xbc1/0x1a70 fs/btrfs/transaction.c:694
btrfs_commit_inode_delayed_inode+0x110/0x330 fs/btrfs/delayed-inode.c:1275
btrfs_evict_inode+0x960/0xe80 fs/btrfs/inode.c:5291
evict+0x2ed/0x6c0 fs/inode.c:667
iput_final fs/inode.c:1741 [inline]
iput.part.0+0x5a8/0x7f0 fs/inode.c:1767
iput+0x5c/0x80 fs/inode.c:1757
btrfs_scan_root fs/btrfs/extent_map.c:1118 [inline]
btrfs_free_extent_maps+0xbd3/0x1320 fs/btrfs/extent_map.c:1189
super_cache_scan+0x409/0x550 fs/super.c:227
do_shrink_slab+0x44f/0x11c0 mm/shrinker.c:435
shrink_slab+0x18a/0x1310 mm/shrinker.c:662
shrink_one+0x493/0x7c0 mm/vmscan.c:4790
shrink_many mm/vmscan.c:4851 [inline]
lru_gen_shrink_node+0x89f/0x1750 mm/vmscan.c:4951
shrink_node mm/vmscan.c:5910 [inline]
kswapd_shrink_node mm/vmscan.c:6720 [inline]
balance_pgdat+0x1105/0x1970 mm/vmscan.c:6911
kswapd+0x5ea/0xbf0 mm/vmscan.c:7180
kthread+0x2c1/0x3a0 kernel/kthread.c:389
ret_from_fork+0x45/0x80 arch/x86/kernel/process.c:147
ret_from_fork_asm+0x1a/0x30 arch/x86/entry/entry_64.S:244
</TASK>
So fix this by using btrfs_add_delayed_iput() so that the final iput is
delegated to the cleaner kthread.
Link: https://lore.kernel.org/linux-btrfs/000000000000892280061a344581@google.com/
Reported-by: syzbot+3dad89b3993a4b275e72@syzkaller.appspotmail.com
Fixes: 956a17d9d0
("btrfs: add a shrinker for extent maps")
Reviewed-by: Josef Bacik <josef@toxicpanda.com>
Signed-off-by: Filipe Manana <fdmanana@suse.com>
Reviewed-by: David Sterba <dsterba@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
1201 lines
33 KiB
C
1201 lines
33 KiB
C
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
#include <linux/err.h>
|
|
#include <linux/slab.h>
|
|
#include <linux/spinlock.h>
|
|
#include "messages.h"
|
|
#include "ctree.h"
|
|
#include "extent_map.h"
|
|
#include "compression.h"
|
|
#include "btrfs_inode.h"
|
|
#include "disk-io.h"
|
|
|
|
|
|
static struct kmem_cache *extent_map_cache;
|
|
|
|
int __init extent_map_init(void)
|
|
{
|
|
extent_map_cache = kmem_cache_create("btrfs_extent_map",
|
|
sizeof(struct extent_map), 0, 0, NULL);
|
|
if (!extent_map_cache)
|
|
return -ENOMEM;
|
|
return 0;
|
|
}
|
|
|
|
void __cold extent_map_exit(void)
|
|
{
|
|
kmem_cache_destroy(extent_map_cache);
|
|
}
|
|
|
|
/*
|
|
* Initialize the extent tree @tree. Should be called for each new inode or
|
|
* other user of the extent_map interface.
|
|
*/
|
|
void extent_map_tree_init(struct extent_map_tree *tree)
|
|
{
|
|
tree->map = RB_ROOT_CACHED;
|
|
INIT_LIST_HEAD(&tree->modified_extents);
|
|
rwlock_init(&tree->lock);
|
|
}
|
|
|
|
/*
|
|
* Allocate a new extent_map structure. The new structure is returned with a
|
|
* reference count of one and needs to be freed using free_extent_map()
|
|
*/
|
|
struct extent_map *alloc_extent_map(void)
|
|
{
|
|
struct extent_map *em;
|
|
em = kmem_cache_zalloc(extent_map_cache, GFP_NOFS);
|
|
if (!em)
|
|
return NULL;
|
|
RB_CLEAR_NODE(&em->rb_node);
|
|
refcount_set(&em->refs, 1);
|
|
INIT_LIST_HEAD(&em->list);
|
|
return em;
|
|
}
|
|
|
|
/*
|
|
* Drop the reference out on @em by one and free the structure if the reference
|
|
* count hits zero.
|
|
*/
|
|
void free_extent_map(struct extent_map *em)
|
|
{
|
|
if (!em)
|
|
return;
|
|
if (refcount_dec_and_test(&em->refs)) {
|
|
WARN_ON(extent_map_in_tree(em));
|
|
WARN_ON(!list_empty(&em->list));
|
|
kmem_cache_free(extent_map_cache, em);
|
|
}
|
|
}
|
|
|
|
/* Do the math around the end of an extent, handling wrapping. */
|
|
static u64 range_end(u64 start, u64 len)
|
|
{
|
|
if (start + len < start)
|
|
return (u64)-1;
|
|
return start + len;
|
|
}
|
|
|
|
static void dec_evictable_extent_maps(struct btrfs_inode *inode)
|
|
{
|
|
struct btrfs_fs_info *fs_info = inode->root->fs_info;
|
|
|
|
if (!btrfs_is_testing(fs_info) && is_fstree(btrfs_root_id(inode->root)))
|
|
percpu_counter_dec(&fs_info->evictable_extent_maps);
|
|
}
|
|
|
|
static int tree_insert(struct rb_root_cached *root, struct extent_map *em)
|
|
{
|
|
struct rb_node **p = &root->rb_root.rb_node;
|
|
struct rb_node *parent = NULL;
|
|
struct extent_map *entry = NULL;
|
|
struct rb_node *orig_parent = NULL;
|
|
u64 end = range_end(em->start, em->len);
|
|
bool leftmost = true;
|
|
|
|
while (*p) {
|
|
parent = *p;
|
|
entry = rb_entry(parent, struct extent_map, rb_node);
|
|
|
|
if (em->start < entry->start) {
|
|
p = &(*p)->rb_left;
|
|
} else if (em->start >= extent_map_end(entry)) {
|
|
p = &(*p)->rb_right;
|
|
leftmost = false;
|
|
} else {
|
|
return -EEXIST;
|
|
}
|
|
}
|
|
|
|
orig_parent = parent;
|
|
while (parent && em->start >= extent_map_end(entry)) {
|
|
parent = rb_next(parent);
|
|
entry = rb_entry(parent, struct extent_map, rb_node);
|
|
}
|
|
if (parent)
|
|
if (end > entry->start && em->start < extent_map_end(entry))
|
|
return -EEXIST;
|
|
|
|
parent = orig_parent;
|
|
entry = rb_entry(parent, struct extent_map, rb_node);
|
|
while (parent && em->start < entry->start) {
|
|
parent = rb_prev(parent);
|
|
entry = rb_entry(parent, struct extent_map, rb_node);
|
|
}
|
|
if (parent)
|
|
if (end > entry->start && em->start < extent_map_end(entry))
|
|
return -EEXIST;
|
|
|
|
rb_link_node(&em->rb_node, orig_parent, p);
|
|
rb_insert_color_cached(&em->rb_node, root, leftmost);
|
|
return 0;
|
|
}
|
|
|
|
/*
|
|
* Search through the tree for an extent_map with a given offset. If it can't
|
|
* be found, try to find some neighboring extents
|
|
*/
|
|
static struct rb_node *__tree_search(struct rb_root *root, u64 offset,
|
|
struct rb_node **prev_or_next_ret)
|
|
{
|
|
struct rb_node *n = root->rb_node;
|
|
struct rb_node *prev = NULL;
|
|
struct rb_node *orig_prev = NULL;
|
|
struct extent_map *entry;
|
|
struct extent_map *prev_entry = NULL;
|
|
|
|
ASSERT(prev_or_next_ret);
|
|
|
|
while (n) {
|
|
entry = rb_entry(n, struct extent_map, rb_node);
|
|
prev = n;
|
|
prev_entry = entry;
|
|
|
|
if (offset < entry->start)
|
|
n = n->rb_left;
|
|
else if (offset >= extent_map_end(entry))
|
|
n = n->rb_right;
|
|
else
|
|
return n;
|
|
}
|
|
|
|
orig_prev = prev;
|
|
while (prev && offset >= extent_map_end(prev_entry)) {
|
|
prev = rb_next(prev);
|
|
prev_entry = rb_entry(prev, struct extent_map, rb_node);
|
|
}
|
|
|
|
/*
|
|
* Previous extent map found, return as in this case the caller does not
|
|
* care about the next one.
|
|
*/
|
|
if (prev) {
|
|
*prev_or_next_ret = prev;
|
|
return NULL;
|
|
}
|
|
|
|
prev = orig_prev;
|
|
prev_entry = rb_entry(prev, struct extent_map, rb_node);
|
|
while (prev && offset < prev_entry->start) {
|
|
prev = rb_prev(prev);
|
|
prev_entry = rb_entry(prev, struct extent_map, rb_node);
|
|
}
|
|
*prev_or_next_ret = prev;
|
|
|
|
return NULL;
|
|
}
|
|
|
|
static inline u64 extent_map_block_end(const struct extent_map *em)
|
|
{
|
|
if (em->block_start + em->block_len < em->block_start)
|
|
return (u64)-1;
|
|
return em->block_start + em->block_len;
|
|
}
|
|
|
|
static bool can_merge_extent_map(const struct extent_map *em)
|
|
{
|
|
if (em->flags & EXTENT_FLAG_PINNED)
|
|
return false;
|
|
|
|
/* Don't merge compressed extents, we need to know their actual size. */
|
|
if (extent_map_is_compressed(em))
|
|
return false;
|
|
|
|
if (em->flags & EXTENT_FLAG_LOGGING)
|
|
return false;
|
|
|
|
/*
|
|
* We don't want to merge stuff that hasn't been written to the log yet
|
|
* since it may not reflect exactly what is on disk, and that would be
|
|
* bad.
|
|
*/
|
|
if (!list_empty(&em->list))
|
|
return false;
|
|
|
|
return true;
|
|
}
|
|
|
|
/* Check to see if two extent_map structs are adjacent and safe to merge. */
|
|
static bool mergeable_maps(const struct extent_map *prev, const struct extent_map *next)
|
|
{
|
|
if (extent_map_end(prev) != next->start)
|
|
return false;
|
|
|
|
if (prev->flags != next->flags)
|
|
return false;
|
|
|
|
if (next->block_start < EXTENT_MAP_LAST_BYTE - 1)
|
|
return next->block_start == extent_map_block_end(prev);
|
|
|
|
/* HOLES and INLINE extents. */
|
|
return next->block_start == prev->block_start;
|
|
}
|
|
|
|
static void try_merge_map(struct btrfs_inode *inode, struct extent_map *em)
|
|
{
|
|
struct extent_map_tree *tree = &inode->extent_tree;
|
|
struct extent_map *merge = NULL;
|
|
struct rb_node *rb;
|
|
|
|
/*
|
|
* We can't modify an extent map that is in the tree and that is being
|
|
* used by another task, as it can cause that other task to see it in
|
|
* inconsistent state during the merging. We always have 1 reference for
|
|
* the tree and 1 for this task (which is unpinning the extent map or
|
|
* clearing the logging flag), so anything > 2 means it's being used by
|
|
* other tasks too.
|
|
*/
|
|
if (refcount_read(&em->refs) > 2)
|
|
return;
|
|
|
|
if (!can_merge_extent_map(em))
|
|
return;
|
|
|
|
if (em->start != 0) {
|
|
rb = rb_prev(&em->rb_node);
|
|
if (rb)
|
|
merge = rb_entry(rb, struct extent_map, rb_node);
|
|
if (rb && can_merge_extent_map(merge) && mergeable_maps(merge, em)) {
|
|
em->start = merge->start;
|
|
em->orig_start = merge->orig_start;
|
|
em->len += merge->len;
|
|
em->block_len += merge->block_len;
|
|
em->block_start = merge->block_start;
|
|
em->generation = max(em->generation, merge->generation);
|
|
em->flags |= EXTENT_FLAG_MERGED;
|
|
|
|
rb_erase_cached(&merge->rb_node, &tree->map);
|
|
RB_CLEAR_NODE(&merge->rb_node);
|
|
free_extent_map(merge);
|
|
dec_evictable_extent_maps(inode);
|
|
}
|
|
}
|
|
|
|
rb = rb_next(&em->rb_node);
|
|
if (rb)
|
|
merge = rb_entry(rb, struct extent_map, rb_node);
|
|
if (rb && can_merge_extent_map(merge) && mergeable_maps(em, merge)) {
|
|
em->len += merge->len;
|
|
em->block_len += merge->block_len;
|
|
rb_erase_cached(&merge->rb_node, &tree->map);
|
|
RB_CLEAR_NODE(&merge->rb_node);
|
|
em->generation = max(em->generation, merge->generation);
|
|
em->flags |= EXTENT_FLAG_MERGED;
|
|
free_extent_map(merge);
|
|
dec_evictable_extent_maps(inode);
|
|
}
|
|
}
|
|
|
|
/*
|
|
* Unpin an extent from the cache.
|
|
*
|
|
* @inode: the inode from which we are unpinning an extent range
|
|
* @start: logical offset in the file
|
|
* @len: length of the extent
|
|
* @gen: generation that this extent has been modified in
|
|
*
|
|
* Called after an extent has been written to disk properly. Set the generation
|
|
* to the generation that actually added the file item to the inode so we know
|
|
* we need to sync this extent when we call fsync().
|
|
*
|
|
* Returns: 0 on success
|
|
* -ENOENT when the extent is not found in the tree
|
|
* -EUCLEAN if the found extent does not match the expected start
|
|
*/
|
|
int unpin_extent_cache(struct btrfs_inode *inode, u64 start, u64 len, u64 gen)
|
|
{
|
|
struct btrfs_fs_info *fs_info = inode->root->fs_info;
|
|
struct extent_map_tree *tree = &inode->extent_tree;
|
|
int ret = 0;
|
|
struct extent_map *em;
|
|
|
|
write_lock(&tree->lock);
|
|
em = lookup_extent_mapping(tree, start, len);
|
|
|
|
if (WARN_ON(!em)) {
|
|
btrfs_warn(fs_info,
|
|
"no extent map found for inode %llu (root %lld) when unpinning extent range [%llu, %llu), generation %llu",
|
|
btrfs_ino(inode), btrfs_root_id(inode->root),
|
|
start, start + len, gen);
|
|
ret = -ENOENT;
|
|
goto out;
|
|
}
|
|
|
|
if (WARN_ON(em->start != start)) {
|
|
btrfs_warn(fs_info,
|
|
"found extent map for inode %llu (root %lld) with unexpected start offset %llu when unpinning extent range [%llu, %llu), generation %llu",
|
|
btrfs_ino(inode), btrfs_root_id(inode->root),
|
|
em->start, start, start + len, gen);
|
|
ret = -EUCLEAN;
|
|
goto out;
|
|
}
|
|
|
|
em->generation = gen;
|
|
em->flags &= ~EXTENT_FLAG_PINNED;
|
|
|
|
try_merge_map(inode, em);
|
|
|
|
out:
|
|
write_unlock(&tree->lock);
|
|
free_extent_map(em);
|
|
return ret;
|
|
|
|
}
|
|
|
|
void clear_em_logging(struct btrfs_inode *inode, struct extent_map *em)
|
|
{
|
|
lockdep_assert_held_write(&inode->extent_tree.lock);
|
|
|
|
em->flags &= ~EXTENT_FLAG_LOGGING;
|
|
if (extent_map_in_tree(em))
|
|
try_merge_map(inode, em);
|
|
}
|
|
|
|
static inline void setup_extent_mapping(struct btrfs_inode *inode,
|
|
struct extent_map *em,
|
|
int modified)
|
|
{
|
|
refcount_inc(&em->refs);
|
|
|
|
ASSERT(list_empty(&em->list));
|
|
|
|
if (modified)
|
|
list_add(&em->list, &inode->extent_tree.modified_extents);
|
|
else
|
|
try_merge_map(inode, em);
|
|
}
|
|
|
|
/*
|
|
* Add a new extent map to an inode's extent map tree.
|
|
*
|
|
* @inode: the target inode
|
|
* @em: map to insert
|
|
* @modified: indicate whether the given @em should be added to the
|
|
* modified list, which indicates the extent needs to be logged
|
|
*
|
|
* Insert @em into the @inode's extent map tree or perform a simple
|
|
* forward/backward merge with existing mappings. The extent_map struct passed
|
|
* in will be inserted into the tree directly, with an additional reference
|
|
* taken, or a reference dropped if the merge attempt was successful.
|
|
*/
|
|
static int add_extent_mapping(struct btrfs_inode *inode,
|
|
struct extent_map *em, int modified)
|
|
{
|
|
struct extent_map_tree *tree = &inode->extent_tree;
|
|
struct btrfs_root *root = inode->root;
|
|
struct btrfs_fs_info *fs_info = root->fs_info;
|
|
int ret;
|
|
|
|
lockdep_assert_held_write(&tree->lock);
|
|
|
|
ret = tree_insert(&tree->map, em);
|
|
if (ret)
|
|
return ret;
|
|
|
|
setup_extent_mapping(inode, em, modified);
|
|
|
|
if (!btrfs_is_testing(fs_info) && is_fstree(btrfs_root_id(root)))
|
|
percpu_counter_inc(&fs_info->evictable_extent_maps);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static struct extent_map *
|
|
__lookup_extent_mapping(struct extent_map_tree *tree,
|
|
u64 start, u64 len, int strict)
|
|
{
|
|
struct extent_map *em;
|
|
struct rb_node *rb_node;
|
|
struct rb_node *prev_or_next = NULL;
|
|
u64 end = range_end(start, len);
|
|
|
|
rb_node = __tree_search(&tree->map.rb_root, start, &prev_or_next);
|
|
if (!rb_node) {
|
|
if (prev_or_next)
|
|
rb_node = prev_or_next;
|
|
else
|
|
return NULL;
|
|
}
|
|
|
|
em = rb_entry(rb_node, struct extent_map, rb_node);
|
|
|
|
if (strict && !(end > em->start && start < extent_map_end(em)))
|
|
return NULL;
|
|
|
|
refcount_inc(&em->refs);
|
|
return em;
|
|
}
|
|
|
|
/*
|
|
* Lookup extent_map that intersects @start + @len range.
|
|
*
|
|
* @tree: tree to lookup in
|
|
* @start: byte offset to start the search
|
|
* @len: length of the lookup range
|
|
*
|
|
* Find and return the first extent_map struct in @tree that intersects the
|
|
* [start, len] range. There may be additional objects in the tree that
|
|
* intersect, so check the object returned carefully to make sure that no
|
|
* additional lookups are needed.
|
|
*/
|
|
struct extent_map *lookup_extent_mapping(struct extent_map_tree *tree,
|
|
u64 start, u64 len)
|
|
{
|
|
return __lookup_extent_mapping(tree, start, len, 1);
|
|
}
|
|
|
|
/*
|
|
* Find a nearby extent map intersecting @start + @len (not an exact search).
|
|
*
|
|
* @tree: tree to lookup in
|
|
* @start: byte offset to start the search
|
|
* @len: length of the lookup range
|
|
*
|
|
* Find and return the first extent_map struct in @tree that intersects the
|
|
* [start, len] range.
|
|
*
|
|
* If one can't be found, any nearby extent may be returned
|
|
*/
|
|
struct extent_map *search_extent_mapping(struct extent_map_tree *tree,
|
|
u64 start, u64 len)
|
|
{
|
|
return __lookup_extent_mapping(tree, start, len, 0);
|
|
}
|
|
|
|
/*
|
|
* Remove an extent_map from its inode's extent tree.
|
|
*
|
|
* @inode: the inode the extent map belongs to
|
|
* @em: extent map being removed
|
|
*
|
|
* Remove @em from the extent tree of @inode. No reference counts are dropped,
|
|
* and no checks are done to see if the range is in use.
|
|
*/
|
|
void remove_extent_mapping(struct btrfs_inode *inode, struct extent_map *em)
|
|
{
|
|
struct extent_map_tree *tree = &inode->extent_tree;
|
|
|
|
lockdep_assert_held_write(&tree->lock);
|
|
|
|
WARN_ON(em->flags & EXTENT_FLAG_PINNED);
|
|
rb_erase_cached(&em->rb_node, &tree->map);
|
|
if (!(em->flags & EXTENT_FLAG_LOGGING))
|
|
list_del_init(&em->list);
|
|
RB_CLEAR_NODE(&em->rb_node);
|
|
|
|
dec_evictable_extent_maps(inode);
|
|
}
|
|
|
|
static void replace_extent_mapping(struct btrfs_inode *inode,
|
|
struct extent_map *cur,
|
|
struct extent_map *new,
|
|
int modified)
|
|
{
|
|
struct extent_map_tree *tree = &inode->extent_tree;
|
|
|
|
lockdep_assert_held_write(&tree->lock);
|
|
|
|
WARN_ON(cur->flags & EXTENT_FLAG_PINNED);
|
|
ASSERT(extent_map_in_tree(cur));
|
|
if (!(cur->flags & EXTENT_FLAG_LOGGING))
|
|
list_del_init(&cur->list);
|
|
rb_replace_node_cached(&cur->rb_node, &new->rb_node, &tree->map);
|
|
RB_CLEAR_NODE(&cur->rb_node);
|
|
|
|
setup_extent_mapping(inode, new, modified);
|
|
}
|
|
|
|
static struct extent_map *next_extent_map(const struct extent_map *em)
|
|
{
|
|
struct rb_node *next;
|
|
|
|
next = rb_next(&em->rb_node);
|
|
if (!next)
|
|
return NULL;
|
|
return container_of(next, struct extent_map, rb_node);
|
|
}
|
|
|
|
static struct extent_map *prev_extent_map(struct extent_map *em)
|
|
{
|
|
struct rb_node *prev;
|
|
|
|
prev = rb_prev(&em->rb_node);
|
|
if (!prev)
|
|
return NULL;
|
|
return container_of(prev, struct extent_map, rb_node);
|
|
}
|
|
|
|
/*
|
|
* Helper for btrfs_get_extent. Given an existing extent in the tree,
|
|
* the existing extent is the nearest extent to map_start,
|
|
* and an extent that you want to insert, deal with overlap and insert
|
|
* the best fitted new extent into the tree.
|
|
*/
|
|
static noinline int merge_extent_mapping(struct btrfs_inode *inode,
|
|
struct extent_map *existing,
|
|
struct extent_map *em,
|
|
u64 map_start)
|
|
{
|
|
struct extent_map *prev;
|
|
struct extent_map *next;
|
|
u64 start;
|
|
u64 end;
|
|
u64 start_diff;
|
|
|
|
if (map_start < em->start || map_start >= extent_map_end(em))
|
|
return -EINVAL;
|
|
|
|
if (existing->start > map_start) {
|
|
next = existing;
|
|
prev = prev_extent_map(next);
|
|
} else {
|
|
prev = existing;
|
|
next = next_extent_map(prev);
|
|
}
|
|
|
|
start = prev ? extent_map_end(prev) : em->start;
|
|
start = max_t(u64, start, em->start);
|
|
end = next ? next->start : extent_map_end(em);
|
|
end = min_t(u64, end, extent_map_end(em));
|
|
start_diff = start - em->start;
|
|
em->start = start;
|
|
em->len = end - start;
|
|
if (em->block_start < EXTENT_MAP_LAST_BYTE &&
|
|
!extent_map_is_compressed(em)) {
|
|
em->block_start += start_diff;
|
|
em->block_len = em->len;
|
|
}
|
|
return add_extent_mapping(inode, em, 0);
|
|
}
|
|
|
|
/*
|
|
* Add extent mapping into an inode's extent map tree.
|
|
*
|
|
* @inode: target inode
|
|
* @em_in: extent we are inserting
|
|
* @start: start of the logical range btrfs_get_extent() is requesting
|
|
* @len: length of the logical range btrfs_get_extent() is requesting
|
|
*
|
|
* Note that @em_in's range may be different from [start, start+len),
|
|
* but they must be overlapped.
|
|
*
|
|
* Insert @em_in into the inode's extent map tree. In case there is an
|
|
* overlapping range, handle the -EEXIST by either:
|
|
* a) Returning the existing extent in @em_in if @start is within the
|
|
* existing em.
|
|
* b) Merge the existing extent with @em_in passed in.
|
|
*
|
|
* Return 0 on success, otherwise -EEXIST.
|
|
*
|
|
*/
|
|
int btrfs_add_extent_mapping(struct btrfs_inode *inode,
|
|
struct extent_map **em_in, u64 start, u64 len)
|
|
{
|
|
int ret;
|
|
struct extent_map *em = *em_in;
|
|
struct btrfs_fs_info *fs_info = inode->root->fs_info;
|
|
|
|
/*
|
|
* Tree-checker should have rejected any inline extent with non-zero
|
|
* file offset. Here just do a sanity check.
|
|
*/
|
|
if (em->block_start == EXTENT_MAP_INLINE)
|
|
ASSERT(em->start == 0);
|
|
|
|
ret = add_extent_mapping(inode, em, 0);
|
|
/* it is possible that someone inserted the extent into the tree
|
|
* while we had the lock dropped. It is also possible that
|
|
* an overlapping map exists in the tree
|
|
*/
|
|
if (ret == -EEXIST) {
|
|
struct extent_map *existing;
|
|
|
|
existing = search_extent_mapping(&inode->extent_tree, start, len);
|
|
|
|
trace_btrfs_handle_em_exist(fs_info, existing, em, start, len);
|
|
|
|
/*
|
|
* existing will always be non-NULL, since there must be
|
|
* extent causing the -EEXIST.
|
|
*/
|
|
if (start >= existing->start &&
|
|
start < extent_map_end(existing)) {
|
|
free_extent_map(em);
|
|
*em_in = existing;
|
|
ret = 0;
|
|
} else {
|
|
u64 orig_start = em->start;
|
|
u64 orig_len = em->len;
|
|
|
|
/*
|
|
* The existing extent map is the one nearest to
|
|
* the [start, start + len) range which overlaps
|
|
*/
|
|
ret = merge_extent_mapping(inode, existing, em, start);
|
|
if (WARN_ON(ret)) {
|
|
free_extent_map(em);
|
|
*em_in = NULL;
|
|
btrfs_warn(fs_info,
|
|
"extent map merge error existing [%llu, %llu) with em [%llu, %llu) start %llu",
|
|
existing->start, extent_map_end(existing),
|
|
orig_start, orig_start + orig_len, start);
|
|
}
|
|
free_extent_map(existing);
|
|
}
|
|
}
|
|
|
|
ASSERT(ret == 0 || ret == -EEXIST);
|
|
return ret;
|
|
}
|
|
|
|
/*
|
|
* Drop all extent maps from a tree in the fastest possible way, rescheduling
|
|
* if needed. This avoids searching the tree, from the root down to the first
|
|
* extent map, before each deletion.
|
|
*/
|
|
static void drop_all_extent_maps_fast(struct btrfs_inode *inode)
|
|
{
|
|
struct extent_map_tree *tree = &inode->extent_tree;
|
|
|
|
write_lock(&tree->lock);
|
|
while (!RB_EMPTY_ROOT(&tree->map.rb_root)) {
|
|
struct extent_map *em;
|
|
struct rb_node *node;
|
|
|
|
node = rb_first_cached(&tree->map);
|
|
em = rb_entry(node, struct extent_map, rb_node);
|
|
em->flags &= ~(EXTENT_FLAG_PINNED | EXTENT_FLAG_LOGGING);
|
|
remove_extent_mapping(inode, em);
|
|
free_extent_map(em);
|
|
cond_resched_rwlock_write(&tree->lock);
|
|
}
|
|
write_unlock(&tree->lock);
|
|
}
|
|
|
|
/*
|
|
* Drop all extent maps in a given range.
|
|
*
|
|
* @inode: The target inode.
|
|
* @start: Start offset of the range.
|
|
* @end: End offset of the range (inclusive value).
|
|
* @skip_pinned: Indicate if pinned extent maps should be ignored or not.
|
|
*
|
|
* This drops all the extent maps that intersect the given range [@start, @end].
|
|
* Extent maps that partially overlap the range and extend behind or beyond it,
|
|
* are split.
|
|
* The caller should have locked an appropriate file range in the inode's io
|
|
* tree before calling this function.
|
|
*/
|
|
void btrfs_drop_extent_map_range(struct btrfs_inode *inode, u64 start, u64 end,
|
|
bool skip_pinned)
|
|
{
|
|
struct extent_map *split;
|
|
struct extent_map *split2;
|
|
struct extent_map *em;
|
|
struct extent_map_tree *em_tree = &inode->extent_tree;
|
|
u64 len = end - start + 1;
|
|
|
|
WARN_ON(end < start);
|
|
if (end == (u64)-1) {
|
|
if (start == 0 && !skip_pinned) {
|
|
drop_all_extent_maps_fast(inode);
|
|
return;
|
|
}
|
|
len = (u64)-1;
|
|
} else {
|
|
/* Make end offset exclusive for use in the loop below. */
|
|
end++;
|
|
}
|
|
|
|
/*
|
|
* It's ok if we fail to allocate the extent maps, see the comment near
|
|
* the bottom of the loop below. We only need two spare extent maps in
|
|
* the worst case, where the first extent map that intersects our range
|
|
* starts before the range and the last extent map that intersects our
|
|
* range ends after our range (and they might be the same extent map),
|
|
* because we need to split those two extent maps at the boundaries.
|
|
*/
|
|
split = alloc_extent_map();
|
|
split2 = alloc_extent_map();
|
|
|
|
write_lock(&em_tree->lock);
|
|
em = lookup_extent_mapping(em_tree, start, len);
|
|
|
|
while (em) {
|
|
/* extent_map_end() returns exclusive value (last byte + 1). */
|
|
const u64 em_end = extent_map_end(em);
|
|
struct extent_map *next_em = NULL;
|
|
u64 gen;
|
|
unsigned long flags;
|
|
bool modified;
|
|
bool compressed;
|
|
|
|
if (em_end < end) {
|
|
next_em = next_extent_map(em);
|
|
if (next_em) {
|
|
if (next_em->start < end)
|
|
refcount_inc(&next_em->refs);
|
|
else
|
|
next_em = NULL;
|
|
}
|
|
}
|
|
|
|
if (skip_pinned && (em->flags & EXTENT_FLAG_PINNED)) {
|
|
start = em_end;
|
|
goto next;
|
|
}
|
|
|
|
flags = em->flags;
|
|
/*
|
|
* In case we split the extent map, we want to preserve the
|
|
* EXTENT_FLAG_LOGGING flag on our extent map, but we don't want
|
|
* it on the new extent maps.
|
|
*/
|
|
em->flags &= ~(EXTENT_FLAG_PINNED | EXTENT_FLAG_LOGGING);
|
|
modified = !list_empty(&em->list);
|
|
|
|
/*
|
|
* The extent map does not cross our target range, so no need to
|
|
* split it, we can remove it directly.
|
|
*/
|
|
if (em->start >= start && em_end <= end)
|
|
goto remove_em;
|
|
|
|
gen = em->generation;
|
|
compressed = extent_map_is_compressed(em);
|
|
|
|
if (em->start < start) {
|
|
if (!split) {
|
|
split = split2;
|
|
split2 = NULL;
|
|
if (!split)
|
|
goto remove_em;
|
|
}
|
|
split->start = em->start;
|
|
split->len = start - em->start;
|
|
|
|
if (em->block_start < EXTENT_MAP_LAST_BYTE) {
|
|
split->orig_start = em->orig_start;
|
|
split->block_start = em->block_start;
|
|
|
|
if (compressed)
|
|
split->block_len = em->block_len;
|
|
else
|
|
split->block_len = split->len;
|
|
split->orig_block_len = max(split->block_len,
|
|
em->orig_block_len);
|
|
split->ram_bytes = em->ram_bytes;
|
|
} else {
|
|
split->orig_start = split->start;
|
|
split->block_len = 0;
|
|
split->block_start = em->block_start;
|
|
split->orig_block_len = 0;
|
|
split->ram_bytes = split->len;
|
|
}
|
|
|
|
split->generation = gen;
|
|
split->flags = flags;
|
|
replace_extent_mapping(inode, em, split, modified);
|
|
free_extent_map(split);
|
|
split = split2;
|
|
split2 = NULL;
|
|
}
|
|
if (em_end > end) {
|
|
if (!split) {
|
|
split = split2;
|
|
split2 = NULL;
|
|
if (!split)
|
|
goto remove_em;
|
|
}
|
|
split->start = end;
|
|
split->len = em_end - end;
|
|
split->block_start = em->block_start;
|
|
split->flags = flags;
|
|
split->generation = gen;
|
|
|
|
if (em->block_start < EXTENT_MAP_LAST_BYTE) {
|
|
split->orig_block_len = max(em->block_len,
|
|
em->orig_block_len);
|
|
|
|
split->ram_bytes = em->ram_bytes;
|
|
if (compressed) {
|
|
split->block_len = em->block_len;
|
|
split->orig_start = em->orig_start;
|
|
} else {
|
|
const u64 diff = end - em->start;
|
|
|
|
split->block_len = split->len;
|
|
split->block_start += diff;
|
|
split->orig_start = em->orig_start;
|
|
}
|
|
} else {
|
|
split->ram_bytes = split->len;
|
|
split->orig_start = split->start;
|
|
split->block_len = 0;
|
|
split->orig_block_len = 0;
|
|
}
|
|
|
|
if (extent_map_in_tree(em)) {
|
|
replace_extent_mapping(inode, em, split, modified);
|
|
} else {
|
|
int ret;
|
|
|
|
ret = add_extent_mapping(inode, split, modified);
|
|
/* Logic error, shouldn't happen. */
|
|
ASSERT(ret == 0);
|
|
if (WARN_ON(ret != 0) && modified)
|
|
btrfs_set_inode_full_sync(inode);
|
|
}
|
|
free_extent_map(split);
|
|
split = NULL;
|
|
}
|
|
remove_em:
|
|
if (extent_map_in_tree(em)) {
|
|
/*
|
|
* If the extent map is still in the tree it means that
|
|
* either of the following is true:
|
|
*
|
|
* 1) It fits entirely in our range (doesn't end beyond
|
|
* it or starts before it);
|
|
*
|
|
* 2) It starts before our range and/or ends after our
|
|
* range, and we were not able to allocate the extent
|
|
* maps for split operations, @split and @split2.
|
|
*
|
|
* If we are at case 2) then we just remove the entire
|
|
* extent map - this is fine since if anyone needs it to
|
|
* access the subranges outside our range, will just
|
|
* load it again from the subvolume tree's file extent
|
|
* item. However if the extent map was in the list of
|
|
* modified extents, then we must mark the inode for a
|
|
* full fsync, otherwise a fast fsync will miss this
|
|
* extent if it's new and needs to be logged.
|
|
*/
|
|
if ((em->start < start || em_end > end) && modified) {
|
|
ASSERT(!split);
|
|
btrfs_set_inode_full_sync(inode);
|
|
}
|
|
remove_extent_mapping(inode, em);
|
|
}
|
|
|
|
/*
|
|
* Once for the tree reference (we replaced or removed the
|
|
* extent map from the tree).
|
|
*/
|
|
free_extent_map(em);
|
|
next:
|
|
/* Once for us (for our lookup reference). */
|
|
free_extent_map(em);
|
|
|
|
em = next_em;
|
|
}
|
|
|
|
write_unlock(&em_tree->lock);
|
|
|
|
free_extent_map(split);
|
|
free_extent_map(split2);
|
|
}
|
|
|
|
/*
|
|
* Replace a range in the inode's extent map tree with a new extent map.
|
|
*
|
|
* @inode: The target inode.
|
|
* @new_em: The new extent map to add to the inode's extent map tree.
|
|
* @modified: Indicate if the new extent map should be added to the list of
|
|
* modified extents (for fast fsync tracking).
|
|
*
|
|
* Drops all the extent maps in the inode's extent map tree that intersect the
|
|
* range of the new extent map and adds the new extent map to the tree.
|
|
* The caller should have locked an appropriate file range in the inode's io
|
|
* tree before calling this function.
|
|
*/
|
|
int btrfs_replace_extent_map_range(struct btrfs_inode *inode,
|
|
struct extent_map *new_em,
|
|
bool modified)
|
|
{
|
|
const u64 end = new_em->start + new_em->len - 1;
|
|
struct extent_map_tree *tree = &inode->extent_tree;
|
|
int ret;
|
|
|
|
ASSERT(!extent_map_in_tree(new_em));
|
|
|
|
/*
|
|
* The caller has locked an appropriate file range in the inode's io
|
|
* tree, but getting -EEXIST when adding the new extent map can still
|
|
* happen in case there are extents that partially cover the range, and
|
|
* this is due to two tasks operating on different parts of the extent.
|
|
* See commit 18e83ac75bfe67 ("Btrfs: fix unexpected EEXIST from
|
|
* btrfs_get_extent") for an example and details.
|
|
*/
|
|
do {
|
|
btrfs_drop_extent_map_range(inode, new_em->start, end, false);
|
|
write_lock(&tree->lock);
|
|
ret = add_extent_mapping(inode, new_em, modified);
|
|
write_unlock(&tree->lock);
|
|
} while (ret == -EEXIST);
|
|
|
|
return ret;
|
|
}
|
|
|
|
/*
|
|
* Split off the first pre bytes from the extent_map at [start, start + len],
|
|
* and set the block_start for it to new_logical.
|
|
*
|
|
* This function is used when an ordered_extent needs to be split.
|
|
*/
|
|
int split_extent_map(struct btrfs_inode *inode, u64 start, u64 len, u64 pre,
|
|
u64 new_logical)
|
|
{
|
|
struct extent_map_tree *em_tree = &inode->extent_tree;
|
|
struct extent_map *em;
|
|
struct extent_map *split_pre = NULL;
|
|
struct extent_map *split_mid = NULL;
|
|
int ret = 0;
|
|
unsigned long flags;
|
|
|
|
ASSERT(pre != 0);
|
|
ASSERT(pre < len);
|
|
|
|
split_pre = alloc_extent_map();
|
|
if (!split_pre)
|
|
return -ENOMEM;
|
|
split_mid = alloc_extent_map();
|
|
if (!split_mid) {
|
|
ret = -ENOMEM;
|
|
goto out_free_pre;
|
|
}
|
|
|
|
lock_extent(&inode->io_tree, start, start + len - 1, NULL);
|
|
write_lock(&em_tree->lock);
|
|
em = lookup_extent_mapping(em_tree, start, len);
|
|
if (!em) {
|
|
ret = -EIO;
|
|
goto out_unlock;
|
|
}
|
|
|
|
ASSERT(em->len == len);
|
|
ASSERT(!extent_map_is_compressed(em));
|
|
ASSERT(em->block_start < EXTENT_MAP_LAST_BYTE);
|
|
ASSERT(em->flags & EXTENT_FLAG_PINNED);
|
|
ASSERT(!(em->flags & EXTENT_FLAG_LOGGING));
|
|
ASSERT(!list_empty(&em->list));
|
|
|
|
flags = em->flags;
|
|
em->flags &= ~EXTENT_FLAG_PINNED;
|
|
|
|
/* First, replace the em with a new extent_map starting from * em->start */
|
|
split_pre->start = em->start;
|
|
split_pre->len = pre;
|
|
split_pre->orig_start = split_pre->start;
|
|
split_pre->block_start = new_logical;
|
|
split_pre->block_len = split_pre->len;
|
|
split_pre->orig_block_len = split_pre->block_len;
|
|
split_pre->ram_bytes = split_pre->len;
|
|
split_pre->flags = flags;
|
|
split_pre->generation = em->generation;
|
|
|
|
replace_extent_mapping(inode, em, split_pre, 1);
|
|
|
|
/*
|
|
* Now we only have an extent_map at:
|
|
* [em->start, em->start + pre]
|
|
*/
|
|
|
|
/* Insert the middle extent_map. */
|
|
split_mid->start = em->start + pre;
|
|
split_mid->len = em->len - pre;
|
|
split_mid->orig_start = split_mid->start;
|
|
split_mid->block_start = em->block_start + pre;
|
|
split_mid->block_len = split_mid->len;
|
|
split_mid->orig_block_len = split_mid->block_len;
|
|
split_mid->ram_bytes = split_mid->len;
|
|
split_mid->flags = flags;
|
|
split_mid->generation = em->generation;
|
|
add_extent_mapping(inode, split_mid, 1);
|
|
|
|
/* Once for us */
|
|
free_extent_map(em);
|
|
/* Once for the tree */
|
|
free_extent_map(em);
|
|
|
|
out_unlock:
|
|
write_unlock(&em_tree->lock);
|
|
unlock_extent(&inode->io_tree, start, start + len - 1, NULL);
|
|
free_extent_map(split_mid);
|
|
out_free_pre:
|
|
free_extent_map(split_pre);
|
|
return ret;
|
|
}
|
|
|
|
static long btrfs_scan_inode(struct btrfs_inode *inode, long *scanned, long nr_to_scan)
|
|
{
|
|
const u64 cur_fs_gen = btrfs_get_fs_generation(inode->root->fs_info);
|
|
struct extent_map_tree *tree = &inode->extent_tree;
|
|
long nr_dropped = 0;
|
|
struct rb_node *node;
|
|
|
|
/*
|
|
* Take the mmap lock so that we serialize with the inode logging phase
|
|
* of fsync because we may need to set the full sync flag on the inode,
|
|
* in case we have to remove extent maps in the tree's list of modified
|
|
* extents. If we set the full sync flag in the inode while an fsync is
|
|
* in progress, we may risk missing new extents because before the flag
|
|
* is set, fsync decides to only wait for writeback to complete and then
|
|
* during inode logging it sees the flag set and uses the subvolume tree
|
|
* to find new extents, which may not be there yet because ordered
|
|
* extents haven't completed yet.
|
|
*
|
|
* We also do a try lock because otherwise we could deadlock. This is
|
|
* because the shrinker for this filesystem may be invoked while we are
|
|
* in a path that is holding the mmap lock in write mode. For example in
|
|
* a reflink operation while COWing an extent buffer, when allocating
|
|
* pages for a new extent buffer and under memory pressure, the shrinker
|
|
* may be invoked, and therefore we would deadlock by attempting to read
|
|
* lock the mmap lock while we are holding already a write lock on it.
|
|
*/
|
|
if (!down_read_trylock(&inode->i_mmap_lock))
|
|
return 0;
|
|
|
|
write_lock(&tree->lock);
|
|
node = rb_first_cached(&tree->map);
|
|
while (node) {
|
|
struct extent_map *em;
|
|
|
|
em = rb_entry(node, struct extent_map, rb_node);
|
|
node = rb_next(node);
|
|
(*scanned)++;
|
|
|
|
if (em->flags & EXTENT_FLAG_PINNED)
|
|
goto next;
|
|
|
|
/*
|
|
* If the inode is in the list of modified extents (new) and its
|
|
* generation is the same (or is greater than) the current fs
|
|
* generation, it means it was not yet persisted so we have to
|
|
* set the full sync flag so that the next fsync will not miss
|
|
* it.
|
|
*/
|
|
if (!list_empty(&em->list) && em->generation >= cur_fs_gen)
|
|
btrfs_set_inode_full_sync(inode);
|
|
|
|
remove_extent_mapping(inode, em);
|
|
trace_btrfs_extent_map_shrinker_remove_em(inode, em);
|
|
/* Drop the reference for the tree. */
|
|
free_extent_map(em);
|
|
nr_dropped++;
|
|
next:
|
|
if (*scanned >= nr_to_scan)
|
|
break;
|
|
|
|
/*
|
|
* Restart if we had to reschedule, and any extent maps that were
|
|
* pinned before may have become unpinned after we released the
|
|
* lock and took it again.
|
|
*/
|
|
if (cond_resched_rwlock_write(&tree->lock))
|
|
node = rb_first_cached(&tree->map);
|
|
}
|
|
write_unlock(&tree->lock);
|
|
up_read(&inode->i_mmap_lock);
|
|
|
|
return nr_dropped;
|
|
}
|
|
|
|
static long btrfs_scan_root(struct btrfs_root *root, long *scanned, long nr_to_scan)
|
|
{
|
|
struct btrfs_fs_info *fs_info = root->fs_info;
|
|
struct btrfs_inode *inode;
|
|
long nr_dropped = 0;
|
|
u64 min_ino = fs_info->extent_map_shrinker_last_ino + 1;
|
|
|
|
inode = btrfs_find_first_inode(root, min_ino);
|
|
while (inode) {
|
|
nr_dropped += btrfs_scan_inode(inode, scanned, nr_to_scan);
|
|
|
|
min_ino = btrfs_ino(inode) + 1;
|
|
fs_info->extent_map_shrinker_last_ino = btrfs_ino(inode);
|
|
btrfs_add_delayed_iput(inode);
|
|
|
|
if (*scanned >= nr_to_scan)
|
|
break;
|
|
|
|
cond_resched();
|
|
inode = btrfs_find_first_inode(root, min_ino);
|
|
}
|
|
|
|
if (inode) {
|
|
/*
|
|
* There are still inodes in this root or we happened to process
|
|
* the last one and reached the scan limit. In either case set
|
|
* the current root to this one, so we'll resume from the next
|
|
* inode if there is one or we will find out this was the last
|
|
* one and move to the next root.
|
|
*/
|
|
fs_info->extent_map_shrinker_last_root = btrfs_root_id(root);
|
|
} else {
|
|
/*
|
|
* No more inodes in this root, set extent_map_shrinker_last_ino to 0 so
|
|
* that when processing the next root we start from its first inode.
|
|
*/
|
|
fs_info->extent_map_shrinker_last_ino = 0;
|
|
fs_info->extent_map_shrinker_last_root = btrfs_root_id(root) + 1;
|
|
}
|
|
|
|
return nr_dropped;
|
|
}
|
|
|
|
long btrfs_free_extent_maps(struct btrfs_fs_info *fs_info, long nr_to_scan)
|
|
{
|
|
const u64 start_root_id = fs_info->extent_map_shrinker_last_root;
|
|
u64 next_root_id = start_root_id;
|
|
bool cycled = false;
|
|
long nr_dropped = 0;
|
|
long scanned = 0;
|
|
|
|
if (trace_btrfs_extent_map_shrinker_scan_enter_enabled()) {
|
|
s64 nr = percpu_counter_sum_positive(&fs_info->evictable_extent_maps);
|
|
|
|
trace_btrfs_extent_map_shrinker_scan_enter(fs_info, nr_to_scan, nr);
|
|
}
|
|
|
|
while (scanned < nr_to_scan) {
|
|
struct btrfs_root *root;
|
|
unsigned long count;
|
|
|
|
spin_lock(&fs_info->fs_roots_radix_lock);
|
|
count = radix_tree_gang_lookup(&fs_info->fs_roots_radix,
|
|
(void **)&root,
|
|
(unsigned long)next_root_id, 1);
|
|
if (count == 0) {
|
|
spin_unlock(&fs_info->fs_roots_radix_lock);
|
|
if (start_root_id > 0 && !cycled) {
|
|
next_root_id = 0;
|
|
fs_info->extent_map_shrinker_last_root = 0;
|
|
fs_info->extent_map_shrinker_last_ino = 0;
|
|
cycled = true;
|
|
continue;
|
|
}
|
|
break;
|
|
}
|
|
next_root_id = btrfs_root_id(root) + 1;
|
|
root = btrfs_grab_root(root);
|
|
spin_unlock(&fs_info->fs_roots_radix_lock);
|
|
|
|
if (!root)
|
|
continue;
|
|
|
|
if (is_fstree(btrfs_root_id(root)))
|
|
nr_dropped += btrfs_scan_root(root, &scanned, nr_to_scan);
|
|
|
|
btrfs_put_root(root);
|
|
}
|
|
|
|
if (trace_btrfs_extent_map_shrinker_scan_exit_enabled()) {
|
|
s64 nr = percpu_counter_sum_positive(&fs_info->evictable_extent_maps);
|
|
|
|
trace_btrfs_extent_map_shrinker_scan_exit(fs_info, nr_dropped, nr);
|
|
}
|
|
|
|
return nr_dropped;
|
|
}
|