* [PATCH 5.10/5.15] jfs: add check if log->bdev is NULL in lbmStartIO()
@ 2024-01-12 16:50 Mikhail Ukhin
2024-01-12 19:31 ` Greg Kroah-Hartman
0 siblings, 1 reply; 3+ messages in thread
From: Mikhail Ukhin @ 2024-01-12 16:50 UTC (permalink / raw)
To: Dave Kleikamp, Christian Brauner, Jens Axboe, Jan Kara,
Greg Kroah-Hartman
Cc: Mikhail Ukhin, jfs-discussion, stable, lvc-project, linux-kernel,
Mikhail Ivanov, Pavel Koshutin, Artem Sadovnikov
Fuzzing of 5.10 stable branch shows NULL pointer dereference happens in
lbmStartIO() on log->bdev pointer. The reason for bdev being NULL is the
JFS_NOINTEGRITY flag is set on mount of this fs. When this flag is enabled,
it results in the open_dummy_log function being called, which initializes a
new dummy_log, but does not assign a value to bdev.
The error is fixed in 5.18 by commit
07888c665b405b1cd3577ddebfeb74f4717a84c4.
Backport of this commit is too intrusive, so it is more reasonable to apply
a small patch to fix this issue.
Found by Linux Verification Center (linuxtesting.org) with syzkaller.
Signed-off-by: Mikhail Ukhin <mish.uxin2012@yandex.ru>
Signed-off-by: Mikhail Ivanov <iwanov-23@bk.ru>
Signed-off-by: Pavel Koshutin <koshutin.pavel@yandex.ru>
Signed-off-by: Artem Sadovnikov <ancowi69@gmail.com>
---
fs/jfs/jfs_logmgr.c | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/fs/jfs/jfs_logmgr.c b/fs/jfs/jfs_logmgr.c
index 78fd136ac13b..d6f0fea96ba1 100644
--- a/fs/jfs/jfs_logmgr.c
+++ b/fs/jfs/jfs_logmgr.c
@@ -1983,7 +1983,8 @@ static int lbmRead(struct jfs_log * log, int pn, struct lbuf ** bpp)
bio = bio_alloc(GFP_NOFS, 1);
bio->bi_iter.bi_sector = bp->l_blkno << (log->l2bsize - 9);
- bio_set_dev(bio, log->bdev);
+ if (log->bdev != NULL)
+ bio_set_dev(bio, log->bdev);
bio_add_page(bio, bp->l_page, LOGPSIZE, bp->l_offset);
BUG_ON(bio->bi_iter.bi_size != LOGPSIZE);
@@ -2127,7 +2128,8 @@ static void lbmStartIO(struct lbuf * bp)
bio = bio_alloc(GFP_NOFS, 1);
bio->bi_iter.bi_sector = bp->l_blkno << (log->l2bsize - 9);
- bio_set_dev(bio, log->bdev);
+ if (log->bdev != NULL)
+ bio_set_dev(bio, log->bdev);
bio_add_page(bio, bp->l_page, LOGPSIZE, bp->l_offset);
BUG_ON(bio->bi_iter.bi_size != LOGPSIZE);
--
2.25.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH 5.10/5.15] jfs: add check if log->bdev is NULL in lbmStartIO()
2024-01-12 16:50 [PATCH 5.10/5.15] jfs: add check if log->bdev is NULL in lbmStartIO() Mikhail Ukhin
@ 2024-01-12 19:31 ` Greg Kroah-Hartman
2024-01-22 17:50 ` Greg Kroah-Hartman
0 siblings, 1 reply; 3+ messages in thread
From: Greg Kroah-Hartman @ 2024-01-12 19:31 UTC (permalink / raw)
To: Mikhail Ukhin
Cc: Dave Kleikamp, Christian Brauner, Jens Axboe, Jan Kara,
jfs-discussion, stable, lvc-project, linux-kernel, Mikhail Ivanov,
Pavel Koshutin, Artem Sadovnikov
On Fri, Jan 12, 2024 at 07:50:07PM +0300, Mikhail Ukhin wrote:
> Fuzzing of 5.10 stable branch shows NULL pointer dereference happens in
> lbmStartIO() on log->bdev pointer. The reason for bdev being NULL is the
> JFS_NOINTEGRITY flag is set on mount of this fs. When this flag is enabled,
> it results in the open_dummy_log function being called, which initializes a
> new dummy_log, but does not assign a value to bdev.
>
> The error is fixed in 5.18 by commit
> 07888c665b405b1cd3577ddebfeb74f4717a84c4.
> Backport of this commit is too intrusive, so it is more reasonable to apply
> a small patch to fix this issue.
>
> Found by Linux Verification Center (linuxtesting.org) with syzkaller.
>
> Signed-off-by: Mikhail Ukhin <mish.uxin2012@yandex.ru>
> Signed-off-by: Mikhail Ivanov <iwanov-23@bk.ru>
> Signed-off-by: Pavel Koshutin <koshutin.pavel@yandex.ru>
> Signed-off-by: Artem Sadovnikov <ancowi69@gmail.com>
> ---
> fs/jfs/jfs_logmgr.c | 6 ++++--
> 1 file changed, 4 insertions(+), 2 deletions(-)
Who is using jfs in 5.10 and 5.15? Why not just mark the filesystem as
BROKEN there instead? If you need to access your ancient filesystem
image just use a newer kernel.
For filesystems that are not used in older kernels, work like this feels
odd, especially for something just like a NULL dereference which doesn't
do much, right?
thanks,
greg k-h
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH 5.10/5.15] jfs: add check if log->bdev is NULL in lbmStartIO()
2024-01-12 19:31 ` Greg Kroah-Hartman
@ 2024-01-22 17:50 ` Greg Kroah-Hartman
0 siblings, 0 replies; 3+ messages in thread
From: Greg Kroah-Hartman @ 2024-01-22 17:50 UTC (permalink / raw)
To: Mikhail Ukhin
Cc: Dave Kleikamp, Christian Brauner, Jens Axboe, Jan Kara,
jfs-discussion, stable, lvc-project, linux-kernel, Mikhail Ivanov,
Pavel Koshutin, Artem Sadovnikov
On Fri, Jan 12, 2024 at 08:31:30PM +0100, Greg Kroah-Hartman wrote:
> On Fri, Jan 12, 2024 at 07:50:07PM +0300, Mikhail Ukhin wrote:
> > Fuzzing of 5.10 stable branch shows NULL pointer dereference happens in
> > lbmStartIO() on log->bdev pointer. The reason for bdev being NULL is the
> > JFS_NOINTEGRITY flag is set on mount of this fs. When this flag is enabled,
> > it results in the open_dummy_log function being called, which initializes a
> > new dummy_log, but does not assign a value to bdev.
> >
> > The error is fixed in 5.18 by commit
> > 07888c665b405b1cd3577ddebfeb74f4717a84c4.
> > Backport of this commit is too intrusive, so it is more reasonable to apply
> > a small patch to fix this issue.
> >
> > Found by Linux Verification Center (linuxtesting.org) with syzkaller.
> >
> > Signed-off-by: Mikhail Ukhin <mish.uxin2012@yandex.ru>
> > Signed-off-by: Mikhail Ivanov <iwanov-23@bk.ru>
> > Signed-off-by: Pavel Koshutin <koshutin.pavel@yandex.ru>
> > Signed-off-by: Artem Sadovnikov <ancowi69@gmail.com>
> > ---
> > fs/jfs/jfs_logmgr.c | 6 ++++--
> > 1 file changed, 4 insertions(+), 2 deletions(-)
>
> Who is using jfs in 5.10 and 5.15? Why not just mark the filesystem as
> BROKEN there instead? If you need to access your ancient filesystem
> image just use a newer kernel.
>
> For filesystems that are not used in older kernels, work like this feels
> odd, especially for something just like a NULL dereference which doesn't
> do much, right?
Now dropped from my review queue due to lack of response...
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2024-01-22 17:50 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-01-12 16:50 [PATCH 5.10/5.15] jfs: add check if log->bdev is NULL in lbmStartIO() Mikhail Ukhin
2024-01-12 19:31 ` Greg Kroah-Hartman
2024-01-22 17:50 ` Greg Kroah-Hartman
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).