From: "Jason A. Donenfeld" <Jason@zx2c4.com>
To: Zhichen Wang <wangzhichen@manus.ai>
Cc: Theodore Ts'o <tytso@mit.edu>,
linux-kernel@vger.kernel.org, stable@vger.kernel.org
Subject: Re: [PATCH] virt: vmgenid: set driver_data before registering notification handlers
Date: Thu, 27 Aug 2026 16:52:58 +0200 [thread overview]
Message-ID: <apBPSpFLsjlOTcxi@zx2c4.com> (raw)
In-Reply-To: <20260825135054.54883-1-wangzhichen@manus.ai>
On Tue, Aug 25, 2026 at 09:50:54PM +0800, Zhichen Wang wrote:
> Both probe paths register their notification handler before assigning
> driver_data, which the handler dereferences.
>
> In the devicetree path, the notification IRQ can fire as soon as
> devm_request_irq() registers the handler: the interrupt may already be
> pending at probe time, for example when a VMM injects the
> generation-changed notification while restoring a guest from a snapshot
> that was taken before the driver had probed (Firecracker does exactly
> this on snapshot restore). The IRQ is also requested with IRQF_SHARED,
> so another device sharing the line can trigger the handler just as
> early. The handler then calls vmgenid_notify(), which dereferences the
> still-NULL driver_data and panics:
>
> Unable to handle kernel NULL pointer dereference at virtual address 0000000000000010
> CPU: 0 UID: 0 PID: 1 Comm: swapper/0 Not tainted 6.18.38+ #1 PREEMPT(none)
> Hardware name: linux,dummy-virt (DT)
> pc : vmgenid_notify.isra.0+0x24/0x8c
> lr : vmgenid_of_irq_handler+0x14/0x34
> Call trace:
> vmgenid_notify.isra.0+0x24/0x8c (P)
> vmgenid_of_irq_handler+0x14/0x34
> __handle_irq_event_percpu+0x44/0x1bc
> handle_irq_event+0x4c/0xb4
> handle_fasteoi_irq+0xf8/0x1f8
>
> The ACPI path has the same ordering problem: the handler is installed
> with acpi_install_notify_handler() before driver_data is assigned.
> ACPI notifications are dispatched asynchronously from a workqueue, so
> the window is narrow, but a notification arriving between the two calls
> hits the same NULL dereference.
>
> Assign driver_data before registering the handlers. The state is fully
> initialized at that point, so the handlers are safe to run. Should
> registration fail, the probe error path leaves no dangling pointer
> behind: the driver core clears driver_data in device_unbind_cleanup().
>
> Fixes: 7b1bcd6b50a6 ("virt: vmgenid: add support for devicetree bindings")
> Fixes: e07606713a90 ("virt: vmgenid: change implementation to use a platform driver")
> Cc: stable@vger.kernel.org
> Signed-off-by: Zhichen Wang <wangzhichen@manus.ai>
> ---
> Verified on Firecracker v1.14 (aarch64, devicetree) with a snapshot
> taken before the vmgenid driver had probed, so the injected
> notification IRQ is pending when the restored guest reaches probe:
> the unpatched kernel panics with the trace above, while the patched
> kernel handles the pending IRQ as soon as devm_request_irq()
> registers the handler (/proc/interrupts shows the vmgenid IRQ count
> at 1) and boot completes normally. The ACPI path change is
> compile-tested; the window there is analogous but much harder to hit.
This patch went to gmail spam! I only saw it by accident just now.
Thanks for this. I'll try to test and verify this on Monday. Do you have
a handy repro script you were using that you can share? Also, wondering
if you saw this happen in the wild.
Jason
prev parent reply other threads:[~2026-08-27 14:53 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-08-25 13:50 Zhichen Wang
2026-08-27 14:52 ` Jason A. Donenfeld [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=apBPSpFLsjlOTcxi@zx2c4.com \
--to=jason@zx2c4.com \
--cc=linux-kernel@vger.kernel.org \
--cc=stable@vger.kernel.org \
--cc=tytso@mit.edu \
--cc=wangzhichen@manus.ai \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®