virtualization.lists.linux-foundation.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] virtiofs: fix NULL dereference in virtio_fs_add_queues_sysfs()
@ 2025-12-13  1:28 Qianchang Zhao
  2025-12-15 14:32 ` Stefan Hajnoczi
  0 siblings, 1 reply; 2+ messages in thread
From: Qianchang Zhao @ 2025-12-13  1:28 UTC (permalink / raw)
  To: Vivek Goyal, Stefan Hajnoczi, Miklos Szeredi
  Cc: Eugenio Pérez, virtualization, linux-fsdevel, linux-kernel,
	Zhitong Liu, Qianchang Zhao, stable

virtio_fs_add_queues_sysfs() creates per-queue sysfs kobjects via
kobject_create_and_add(). The current code checks the wrong variable
after the allocation:

- kobject_create_and_add() may return NULL on failure.
- The code incorrectly checks fs->mqs_kobj (the parent kobject), which is
  expected to be non-NULL at this point.
- If kobject_create_and_add() fails, fsvq->kobj is NULL but the code can
  still call sysfs_create_group(fsvq->kobj, ...), leading to a NULL pointer
  dereference and kernel panic (DoS).

Fix by validating fsvq->kobj immediately after kobject_create_and_add()
and aborting on failure, so sysfs_create_group() is never called with a
NULL kobject.

Reported-by: Qianchang Zhao <pioooooooooip@gmail.com>
Reported-by: Zhitong Liu <liuzhitong1993@gmail.com>
Cc: stable@vger.kernel.org
Signed-off-by: Qianchang Zhao <pioooooooooip@gmail.com>
---
 fs/fuse/virtio_fs.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/fuse/virtio_fs.c b/fs/fuse/virtio_fs.c
index 6bc7c97b0..b2f6486fe 100644
--- a/fs/fuse/virtio_fs.c
+++ b/fs/fuse/virtio_fs.c
@@ -373,7 +373,7 @@ static int virtio_fs_add_queues_sysfs(struct virtio_fs *fs)
 
 		sprintf(buff, "%d", i);
 		fsvq->kobj = kobject_create_and_add(buff, fs->mqs_kobj);
-		if (!fs->mqs_kobj) {
+		if (!fsvq->kobj) {
 			ret = -ENOMEM;
 			goto out_del;
 		}
-- 
2.34.1


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

* Re: [PATCH] virtiofs: fix NULL dereference in virtio_fs_add_queues_sysfs()
  2025-12-13  1:28 [PATCH] virtiofs: fix NULL dereference in virtio_fs_add_queues_sysfs() Qianchang Zhao
@ 2025-12-15 14:32 ` Stefan Hajnoczi
  0 siblings, 0 replies; 2+ messages in thread
From: Stefan Hajnoczi @ 2025-12-15 14:32 UTC (permalink / raw)
  To: Qianchang Zhao
  Cc: Vivek Goyal, Miklos Szeredi, Eugenio Pérez, virtualization,
	linux-fsdevel, linux-kernel, Zhitong Liu, stable, Alok Tiwari

[-- Attachment #1: Type: text/plain, Size: 1811 bytes --]

On Sat, Dec 13, 2025 at 10:28:29AM +0900, Qianchang Zhao wrote:
> virtio_fs_add_queues_sysfs() creates per-queue sysfs kobjects via
> kobject_create_and_add(). The current code checks the wrong variable
> after the allocation:
> 
> - kobject_create_and_add() may return NULL on failure.
> - The code incorrectly checks fs->mqs_kobj (the parent kobject), which is
>   expected to be non-NULL at this point.
> - If kobject_create_and_add() fails, fsvq->kobj is NULL but the code can
>   still call sysfs_create_group(fsvq->kobj, ...), leading to a NULL pointer
>   dereference and kernel panic (DoS).
> 
> Fix by validating fsvq->kobj immediately after kobject_create_and_add()
> and aborting on failure, so sysfs_create_group() is never called with a
> NULL kobject.
> 
> Reported-by: Qianchang Zhao <pioooooooooip@gmail.com>
> Reported-by: Zhitong Liu <liuzhitong1993@gmail.com>
> Cc: stable@vger.kernel.org
> Signed-off-by: Qianchang Zhao <pioooooooooip@gmail.com>
> ---
>  fs/fuse/virtio_fs.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

This issue was fixed in October. It no longer exists in mainline Linux:

  commit c014021253d77cd89b2d8788ce522283d83fbd40
  Author: Alok Tiwari <alok.a.tiwari@oracle.com>
  Date:   Mon Oct 27 03:46:47 2025 -0700
  
      virtio-fs: fix incorrect check for fsvq->kobj

> diff --git a/fs/fuse/virtio_fs.c b/fs/fuse/virtio_fs.c
> index 6bc7c97b0..b2f6486fe 100644
> --- a/fs/fuse/virtio_fs.c
> +++ b/fs/fuse/virtio_fs.c
> @@ -373,7 +373,7 @@ static int virtio_fs_add_queues_sysfs(struct virtio_fs *fs)
>  
>  		sprintf(buff, "%d", i);
>  		fsvq->kobj = kobject_create_and_add(buff, fs->mqs_kobj);
> -		if (!fs->mqs_kobj) {
> +		if (!fsvq->kobj) {
>  			ret = -ENOMEM;
>  			goto out_del;
>  		}
> -- 
> 2.34.1
> 

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

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

end of thread, other threads:[~2025-12-15 14:32 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-12-13  1:28 [PATCH] virtiofs: fix NULL dereference in virtio_fs_add_queues_sysfs() Qianchang Zhao
2025-12-15 14:32 ` Stefan Hajnoczi

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).