[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <000000000000922bec060af9cbc2@google.com>
Date: Sat, 25 Nov 2023 05:10:38 -0800
From: syzbot <syzbot+0b7937459742a0a4cffd@...kaller.appspotmail.com>
To: linux-kernel@...r.kernel.org
Subject: Re: [syzbot] [udf?] KASAN: slab-use-after-free Read in udf_free_blocks
For archival purposes, forwarding an incoming command email to
linux-kernel@...r.kernel.org.
***
Subject: [udf?] KASAN: slab-use-after-free Read in udf_free_blocks
Author: eadavis@...com
please test uaf in udf_free_blocks
#syz test https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git 123212f53f3e
diff --git a/fs/open.c b/fs/open.c
index 02dc608d40d8..bc2d1db2fcba 100644
--- a/fs/open.c
+++ b/fs/open.c
@@ -1441,11 +1441,11 @@ static long do_sys_openat2(int dfd, const char __user *filename,
if (IS_ERR(f)) {
put_unused_fd(fd);
fd = PTR_ERR(f);
+ putname(tmp);
} else {
fd_install(fd, f);
}
}
- putname(tmp);
return fd;
}
Powered by blists - more mailing lists