lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <cac35c18-0389-4012-97b3-4b8243f8752d@gmx.com>
Date: Mon, 24 Feb 2025 18:26:34 +1030
From: Qu Wenruo <quwenruo.btrfs@....com>
To: Ma Ke <make24@...as.ac.cn>, clm@...com, josef@...icpanda.com,
 dsterba@...e.com, jeffm@...e.com
Cc: linux-btrfs@...r.kernel.org, linux-kernel@...r.kernel.org,
 stable@...r.kernel.org
Subject: Re: [PATCH] btrfs: add a sanity check for btrfs root in
 btrfs_search_old_slot()



在 2025/2/24 18:21, Ma Ke 写道:
> When searching the extent tree to gather the needed extent info,
> btrfs_search_old_slot() doesn't check if the target root is NULL or
> not, resulting the null-ptr-deref. Add sanity check for btrfs root
> before using it in btrfs_search_old_slot().

I do not think it's the case anymore.

Commit 6aecd91a5c5b ("btrfs: avoid NULL pointer dereference if no valid
extent tree") has introduced a check for the extent root, at the very
beginning of scrub_find_fill_first_stripe().

Thus it will never call find_first_extent_item() to search the NULL
extent tree.

Or do you have another case where we need to search extent tree
meanwhile the fs is mounted with rescue=ibadroots?

Thanks,
Qu

>
> Found by code review.
>
> Cc: stable@...r.kernel.org
> Fixes: 0b246afa62b0 ("btrfs: root->fs_info cleanup, add fs_info convenience variables")
> Signed-off-by: Ma Ke <make24@...as.ac.cn>
> ---
>   fs/btrfs/ctree.c | 6 +++++-
>   1 file changed, 5 insertions(+), 1 deletion(-)
>
> diff --git a/fs/btrfs/ctree.c b/fs/btrfs/ctree.c
> index 3dc5a35dd19b..4e2e1c38d33a 100644
> --- a/fs/btrfs/ctree.c
> +++ b/fs/btrfs/ctree.c
> @@ -2232,7 +2232,7 @@ ALLOW_ERROR_INJECTION(btrfs_search_slot, ERRNO);
>   int btrfs_search_old_slot(struct btrfs_root *root, const struct btrfs_key *key,
>   			  struct btrfs_path *p, u64 time_seq)
>   {
> -	struct btrfs_fs_info *fs_info = root->fs_info;
> +	struct btrfs_fs_info *fs_info;
>   	struct extent_buffer *b;
>   	int slot;
>   	int ret;
> @@ -2241,6 +2241,10 @@ int btrfs_search_old_slot(struct btrfs_root *root, const struct btrfs_key *key,
>   	int lowest_unlock = 1;
>   	u8 lowest_level = 0;
>
> +	if (!root)
> +		return -EINVAL;
> +
> +	fs_info = root->fs_info;
>   	lowest_level = p->lowest_level;
>   	WARN_ON(p->nodes[0] != NULL);
>   	ASSERT(!p->nowait);


Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ