Linux Btrfs filesystem development
 help / color / mirror / Atom feed
* [PATCH] btrfs: don't access possibly stale fs_info data for printing duplicate device
@ 2020-11-12 11:59 Johannes Thumshirn
  2020-11-12 12:02 ` Nikolay Borisov
  0 siblings, 1 reply; 8+ messages in thread
From: Johannes Thumshirn @ 2020-11-12 11:59 UTC (permalink / raw)
  To: David Sterba
  Cc: Johannes Thumshirn, linux-btrfs, Anand Jain, Nikolay Borisov,
	syzbot+582e66e5edf36a22c7b0

Syzbot reported a possible use-after-free when printing a duplicate device
warning device_list_add().

At this point it can happen that a btrfs_device::fs_info is not correctly
setup yet, so we're accessing stale data, when printing the warning
message using the btrfs_printk() wrappers.

Instead of printing possibly uninitialized or already freed memory in
btrfs_printk(), use a normal pr_warn().

Reported-by: syzbot+582e66e5edf36a22c7b0@syzkaller.appspotmail.com
Signed-off-by: Johannes Thumshirn <johannes.thumshirn@wdc.com>
---

This is an alternative and IMHO simpler aproach to what Anand proposed in
https://lore.kernel.org/linux-btrfs/20200114060920.4527-2-anand.jain@oracle.com/T/


 fs/btrfs/volumes.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/fs/btrfs/volumes.c b/fs/btrfs/volumes.c
index bb1aa96e1233..eb1af5e3d596 100644
--- a/fs/btrfs/volumes.c
+++ b/fs/btrfs/volumes.c
@@ -940,8 +940,8 @@ static noinline struct btrfs_device *device_list_add(const char *path,
 			if (device->bdev != path_bdev) {
 				bdput(path_bdev);
 				mutex_unlock(&fs_devices->device_list_mutex);
-				btrfs_warn_in_rcu(device->fs_info,
-	"duplicate device %s devid %llu generation %llu scanned by %s (%d)",
+				pr_warn(
+	"BTRFS: duplicate device %s devid %llu generation %llu scanned by %s (%d)",
 						  path, devid, found_transid,
 						  current->comm,
 						  task_pid_nr(current));
-- 
2.26.2


^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2020-11-13 18:45 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-11-12 11:59 [PATCH] btrfs: don't access possibly stale fs_info data for printing duplicate device Johannes Thumshirn
2020-11-12 12:02 ` Nikolay Borisov
2020-11-12 12:09   ` Johannes Thumshirn
2020-11-12 12:25     ` Nikolay Borisov
2020-11-13 16:53     ` David Sterba
2020-11-13 16:57       ` David Sterba
2020-11-13 18:41         ` Johannes Thumshirn
2020-11-13 18:45           ` Johannes Thumshirn

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox