* [PATCH] drm/virtio: Fix possible memory allocation failure
@ 2026-08-18 11:32 Triet Hoang
2026-08-18 11:40 ` sashiko-bot
2026-08-18 12:17 ` Triet Hoang
0 siblings, 2 replies; 3+ messages in thread
From: Triet Hoang @ 2026-08-18 11:32 UTC (permalink / raw)
To: dri-devel
Cc: virtualization, linux-kernel, airlied, kraxel, dmitry.osipenko,
gurchetansingh, olvaffe, maarten.lankhorst, mripard, tzimmermann,
simona, Triet Hoang
When kmem_cache_zalloc in virtio_gpu_get_vbuf fails, it will return
an error code. But none of its callers checks this error code, and
a core dump will take place.
Add __GFP_NOFAIL flag when calling kmem_cache_zalloc to make sure
it won't fail
Fixes: 6f3d9d0dd335 ("drm/virtio: Add drm_panic support")
Signed-off-by: Triet Hoang <triet.hoang.dev@gmail.com>
---
drivers/gpu/drm/virtio/virtgpu_vq.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/virtio/virtgpu_vq.c b/drivers/gpu/drm/virtio/virtgpu_vq.c
index e5e1af8b8e8a..fdf0f3c2d3b7 100644
--- a/drivers/gpu/drm/virtio/virtgpu_vq.c
+++ b/drivers/gpu/drm/virtio/virtgpu_vq.c
@@ -93,7 +93,7 @@ virtio_gpu_panic_get_vbuf(struct virtio_gpu_device *vgdev, int size)
{
struct virtio_gpu_vbuffer *vbuf;
- vbuf = kmem_cache_zalloc(vgdev->vbufs, GFP_ATOMIC);
+ vbuf = kmem_cache_zalloc(vgdev->vbufs, GFP_ATOMIC | __GFP_NOFAIL);
vbuf->buf = (void *)vbuf + sizeof(*vbuf);
vbuf->size = size;
--
2.53.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] drm/virtio: Fix possible memory allocation failure
2026-08-18 11:32 [PATCH] drm/virtio: Fix possible memory allocation failure Triet Hoang
@ 2026-08-18 11:40 ` sashiko-bot
2026-08-18 12:17 ` Triet Hoang
1 sibling, 0 replies; 3+ messages in thread
From: sashiko-bot @ 2026-08-18 11:40 UTC (permalink / raw)
To: Triet Hoang; +Cc: dri-devel
Thank you for your contribution! Sashiko AI review found 2 potential issue(s) to consider:
New issues:
- [High] Adding __GFP_NOFAIL to a GFP_ATOMIC allocation is invalid and triggers a kernel warning
Pre-existing issues:
- [High] NULL pointer dereference remains unfixed and slab allocation in panic handler is fundamentally unsafe
--
--- Patch [1]: [PATCH] drm/virtio: Fix possible memory allocation failure ---
commit 2b29d148bc8be5eb73791a39e29cb1b504f8f37b
Author: Triet Hoang <triet.hoang.dev@gmail.com>
drm/virtio: Fix possible memory allocation failure
This patch attempts to fix a possible NULL pointer dereference in
virtio_gpu_panic_get_vbuf() by adding the __GFP_NOFAIL flag to the
kmem_cache_zalloc() call instead of checking the return value.
> diff --git a/drivers/gpu/drm/virtio/virtgpu_vq.c b/drivers/gpu/drm/virtio/virtgpu_vq.c
> index 905b1f42cd983..be051ac4bd78c 100644
> --- a/drivers/gpu/drm/virtio/virtgpu_vq.c
> +++ b/drivers/gpu/drm/virtio/virtgpu_vq.c
> @@ -93,7 +93,7 @@ virtio_gpu_panic_get_vbuf(struct virtio_gpu_device *vgdev, int size)
> {
> struct virtio_gpu_vbuffer *vbuf;
>
> - vbuf = kmem_cache_zalloc(vgdev->vbufs, GFP_ATOMIC);
> + vbuf = kmem_cache_zalloc(vgdev->vbufs, GFP_ATOMIC | __GFP_NOFAIL);
[Severity: High]
Does this combination of flags work as intended? The page allocator explicitly
prohibits combining __GFP_NOFAIL with non-blocking flags like GFP_ATOMIC.
The allocator's slow path checks for !can_direct_reclaim (which is true for
GFP_ATOMIC), emits a WARN_ON_ONCE_GFP, and jumps to the failure path. This
returns NULL anyway, failing to guarantee allocation success while introducing
a new warning during a system panic.
>
> vbuf->buf = (void *)vbuf + sizeof(*vbuf);
[Severity: High]
This isn't a bug introduced by this patch, but since the allocator ignores
__GFP_NOFAIL for atomic allocations, can kmem_cache_zalloc() still return NULL
here?
If it does, this will dereference NULL and cause a double fault, breaking
the panic handler.
Additionally, is it safe to call kmem_cache_zalloc() during a kernel panic?
If a stopped CPU was holding a slab lock, wouldn't the panicking CPU spin
forever attempting to acquire it, resulting in a hard system hang?
> vbuf->size = size;
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260818113256.27848-1-triet.hoang.dev@gmail.com?part=1
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] drm/virtio: Fix possible memory allocation failure
2026-08-18 11:32 [PATCH] drm/virtio: Fix possible memory allocation failure Triet Hoang
2026-08-18 11:40 ` sashiko-bot
@ 2026-08-18 12:17 ` Triet Hoang
1 sibling, 0 replies; 3+ messages in thread
From: Triet Hoang @ 2026-08-18 12:17 UTC (permalink / raw)
To: triet.hoang.dev
Cc: airlied, dmitry.osipenko, dri-devel, gurchetansingh, kraxel,
linux-kernel, maarten.lankhorst, mripard, olvaffe, simona,
tzimmermann, virtualization
This is a stupid idea. Sorry about that and just forget the PATCH.
Regards,
Triet
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2026-08-18 12:17 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-08-18 11:32 [PATCH] drm/virtio: Fix possible memory allocation failure Triet Hoang
2026-08-18 11:40 ` sashiko-bot
2026-08-18 12:17 ` Triet Hoang
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.