From: Zhao Mengmeng <zhaomzhao@126.com>
To: syzbot+f8c98a50c323635be65d@syzkaller.appspotmail.com
Cc: kent.overstreet@linux.dev, linux-bcachefs@vger.kernel.org,
linux-kernel@vger.kernel.org, syzkaller-bugs@googlegroups.com
Subject: Re: [syzbot] [bcachefs?] UBSAN: shift-out-of-bounds in bch2_stripe_to_text
Date: Wed, 9 Oct 2024 11:27:00 +0800 [thread overview]
Message-ID: <4cd7f0c2-a6e8-4bc6-b9fc-4b0edc99f63f@126.com> (raw)
In-Reply-To: <66f4dcd2.050a0220.211276.003a.GAE@google.com>
[-- Attachment #1: Type: text/plain, Size: 88 bytes --]
#syz test: git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git 1ec6d097897a
[-- Attachment #2: 0001-bcachefs-Fix-shift-out-of-bounds-in-bch2_stripe_to_t.patch --]
[-- Type: text/x-patch, Size: 2160 bytes --]
From fd481965777d8a4fa677ec8318d2562737b2d745 Mon Sep 17 00:00:00 2001
From: Zhao Mengmeng <zhaomengmeng@kylinos.cn>
Date: Wed, 9 Oct 2024 11:18:04 +0800
Subject: [PATCH] bcachefs: Fix shift-out-of-bounds in bch2_stripe_to_text
syzbot report a shift-out-of-bounds issue:
------------[ cut here ]------------
UBSAN: shift-out-of-bounds in fs/bcachefs/ec.c:147:2
shift exponent 108 is too large for 32-bit type 'unsigned int'
----
Here s.csum_granularity_bits = 108, so shift is impossible for unsigned
int. To fix, add a check in bch2_stripe_validate() to bail out, it has
same checking logic with ec_stripe_key_init().
Reported-by: syzbot+f8c98a50c323635be65d@syzkaller.appspotmail.com
Tested-by: syzbot+f8c98a50c323635be65d@syzkaller.appspotmail.com
Closes: https://syzkaller.appspot.com/bug?extid=f8c98a50c323635be65d
Suggested-by: Hongbo Li <lihongbo22@huawei.com>
Signed-off-by: Zhao Mengmeng <zhaomengmeng@kylinos.cn>
---
fs/bcachefs/ec.c | 6 ++++++
fs/bcachefs/errcode.h | 3 ++-
2 files changed, 8 insertions(+), 1 deletion(-)
diff --git a/fs/bcachefs/ec.c b/fs/bcachefs/ec.c
index 141a4c63142f..bc5ff1331c6f 100644
--- a/fs/bcachefs/ec.c
+++ b/fs/bcachefs/ec.c
@@ -113,6 +113,12 @@ int bch2_stripe_validate(struct bch_fs *c, struct bkey_s_c k,
const struct bch_stripe *s = bkey_s_c_to_stripe(k).v;
int ret = 0;
+ if (s->csum_granularity_bits >= ilog2(le16_to_cpu(s->sectors))) {
+ bch_err_ratelimited(c, "stripe csum gran bits %u too big",
+ s->csum_granularity_bits);
+ return -BCH_ERR_stripe_csum_granularity_bits_too_big;
+ }
+
bkey_fsck_err_on(bkey_eq(k.k->p, POS_MIN) ||
bpos_gt(k.k->p, POS(0, U32_MAX)),
c, stripe_pos_bad,
diff --git a/fs/bcachefs/errcode.h b/fs/bcachefs/errcode.h
index 742dcdd3e5d7..14ba6bc7a029 100644
--- a/fs/bcachefs/errcode.h
+++ b/fs/bcachefs/errcode.h
@@ -258,7 +258,8 @@
x(BCH_ERR_nopromote, nopromote_no_writes) \
x(BCH_ERR_nopromote, nopromote_enomem) \
x(0, invalid_snapshot_node) \
- x(0, option_needs_open_fs)
+ x(0, option_needs_open_fs) \
+ x(EINVAL, stripe_csum_granularity_bits_too_big)
enum bch_errcode {
BCH_ERR_START = 2048,
--
2.43.0
next prev parent reply other threads:[~2024-10-09 3:28 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-09-26 4:02 syzbot
2024-09-27 2:53 ` Zhao Mengmeng
2024-09-27 3:15 ` syzbot
2024-09-27 3:39 ` Zhao Mengmeng
2024-09-27 4:00 ` syzbot
2024-09-27 4:43 ` Zhao Mengmeng
2024-09-27 5:04 ` syzbot
2024-10-08 8:12 ` Zhao Mengmeng
2024-10-08 8:29 ` syzbot
2024-10-08 8:14 ` Zhao Mengmeng
2024-10-08 8:50 ` syzbot
2024-10-09 3:27 ` Zhao Mengmeng [this message]
2024-10-09 3:50 ` syzbot
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=4cd7f0c2-a6e8-4bc6-b9fc-4b0edc99f63f@126.com \
--to=zhaomzhao@126.com \
--cc=kent.overstreet@linux.dev \
--cc=linux-bcachefs@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=syzbot+f8c98a50c323635be65d@syzkaller.appspotmail.com \
--cc=syzkaller-bugs@googlegroups.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
all inboxes | Powered by JetHome®