public inbox for linux-bcachefs@vger.kernel.org
 help / color / mirror / Atom feed
From: Hongbo Li <lihongbo22@huawei.com>
To: Mohammed Anees <pvmohammedanees2003@gmail.com>
Cc: <kent.overstreet@linux.dev>, <linux-bcachefs@vger.kernel.org>,
	<linux-kernel@vger.kernel.org>,
	<syzbot+37186860aa7812b331d5@syzkaller.appspotmail.com>
Subject: Re: [PATCH resend v3] bcachefs: Fix NULL pointer dereference in bch2_opt_to_text
Date: Wed, 9 Oct 2024 09:28:00 +0800	[thread overview]
Message-ID: <d7604803-a26b-448e-a4d8-7247f8ca7bf2@huawei.com> (raw)
In-Reply-To: <20241008135105.7426-1-pvmohammedanees2003@gmail.com>



On 2024/10/8 21:51, Mohammed Anees wrote:
> Hi Hongbo,
> 
>> As definition, max is the right bound for value. opt->max - 1 is valid.
>> May be you should remove the equals sign.
> 
> This is not true, max is not the right upper bound when it comes to
> this but rather the size of the array instead, therefore opt->max - 1
> is where we should stop.
> 
> const struct bch_option bch2_opt_table[] = {
> #define OPT_BOOL()		.type = BCH_OPT_BOOL, .min = 0, .max = 2
> #define OPT_UINT(_min, _max)	.type = BCH_OPT_UINT,			\
> 				.min = _min, .max = _max
> #define OPT_STR(_choices)	.type = BCH_OPT_STR,			\
> 				.min = 0, .max = ARRAY_SIZE(_choices),	\
> 				.choices = _choices
> ...
> 
> Here if you look at OPT_STR you see that it is indeed the size
> of the array.
> 
>> It should be no problem to just solve this null pointer issue() (How is
>> this stack triggered, may be I lost something.), but this should be a
> 
> The reason this is triggered is because in bch2_opt_to_text,
> the parameter v passed is beyond the number of options available
> to Opt_str_hash.
> 
> #define BCH_STR_HASH_OPTS()		\
> 	x(crc32c,		0)	\
> 	x(crc64,		1)	\
> 	x(siphash,		2)
> 

ok, got! the length of bch2_str_hash_types is bigger than 
BCH_STR_HASH_OPTS, I miss this. Thank you.

> Passing a value v of 3 attempts to access a non-existent fourth element.
> This value v corresponds to str_hash in the bch_opts structure within the
> bch_fs struct. Since print_mount_opts checks each option, it seems
> appropriate to add the validation there. Please let me know if
> I've misunderstood anything.

This situation is due to syzbot constructing abnormal data, for example, 
in the case of bool type option, there may not be an exception here, but 
the printed values may no longer be 0 or 1, this will not cause program 
failure, but it does not match the expected value. Moreover, for 
BITFIELD type option, the value may also exceed the number of bits, 
which should also pose a risk of overflow when printing in prt_bitflags.

Thanks,
Hongbo
> 
> Thanks!
> 

  reply	other threads:[~2024-10-09  1:28 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-10-05 13:02 [PATCH resend v3] bcachefs: Fix NULL pointer dereference in bch2_opt_to_text Mohammed Anees
2024-10-08  2:23 ` Hongbo Li
2024-10-08 13:51   ` Mohammed Anees
2024-10-09  1:28     ` Hongbo Li [this message]
2024-10-08 17:17 ` Kent Overstreet

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=d7604803-a26b-448e-a4d8-7247f8ca7bf2@huawei.com \
    --to=lihongbo22@huawei.com \
    --cc=kent.overstreet@linux.dev \
    --cc=linux-bcachefs@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=pvmohammedanees2003@gmail.com \
    --cc=syzbot+37186860aa7812b331d5@syzkaller.appspotmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox