* [PATCH] ACPI: EC: clean up handlers on probe failure in acpi_ec_setup()
@ 2026-03-24 16:54 Weiming Shi
2026-03-24 17:48 ` Rafael J. Wysocki
0 siblings, 1 reply; 2+ messages in thread
From: Weiming Shi @ 2026-03-24 16:54 UTC (permalink / raw)
To: Rafael J . Wysocki; +Cc: Len Brown, linux-acpi, Xiang Mei, Weiming Shi
When ec_install_handlers() returns -EPROBE_DEFER on reduced-hardware
platforms, it has already started the EC and installed the address
space handler with the struct acpi_ec pointer as handler context.
However, acpi_ec_setup() propagates the error without any cleanup.
The caller acpi_ec_add() then frees the struct acpi_ec for non-boot
instances, leaving a dangling handler context in ACPICA.
Any subsequent AML evaluation that accesses an EC OpRegion field
dispatches into acpi_ec_space_handler() with the freed pointer,
causing a use-after-free:
BUG: KASAN: slab-use-after-free in mutex_lock (kernel/locking/mutex.c:289)
Write of size 8 at addr ffff88800721de38 by task init/1
Call Trace:
<TASK>
mutex_lock (kernel/locking/mutex.c:289)
acpi_ec_space_handler (drivers/acpi/ec.c:1362)
acpi_ev_address_space_dispatch (drivers/acpi/acpica/evregion.c:293)
acpi_ex_access_region (drivers/acpi/acpica/exfldio.c:246)
acpi_ex_field_datum_io (drivers/acpi/acpica/exfldio.c:509)
acpi_ex_extract_from_field (drivers/acpi/acpica/exfldio.c:700)
acpi_ex_read_data_from_field (drivers/acpi/acpica/exfield.c:327)
acpi_ex_resolve_node_to_value (drivers/acpi/acpica/exresolv.c:392)
</TASK>
Allocated by task 1:
acpi_ec_alloc (drivers/acpi/ec.c:1424)
acpi_ec_add (drivers/acpi/ec.c:1692)
Freed by task 1:
kfree (mm/slub.c:6876)
acpi_ec_add (drivers/acpi/ec.c:1751)
The bug triggers on reduced-hardware EC platforms (ec->gpe < 0)
when the GPIO IRQ provider defers probing. Once the stale handler
exists, any unprivileged sysfs read that causes AML to touch an
EC OpRegion (battery, thermal, backlight) exercises the dangling
pointer.
Fix this by calling ec_remove_handlers() in the error path of
acpi_ec_setup() before clearing first_ec. ec_remove_handlers()
checks each EC_FLAGS_* bit before acting, so it is safe to call
regardless of how far ec_install_handlers() progressed:
-ENODEV (handler not installed): only calls acpi_ec_stop()
-EPROBE_DEFER (handler installed): removes handler, stops EC
Fixes: 03e9a0e05739 ("ACPI: EC: Consolidate event handler installation code")
Reported-by: Xiang Mei <xmei5@asu.edu>
Signed-off-by: Weiming Shi <bestswngs@gmail.com>
---
drivers/acpi/ec.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/drivers/acpi/ec.c b/drivers/acpi/ec.c
index 59b3d50ff01e..c981a53434ed 100644
--- a/drivers/acpi/ec.c
+++ b/drivers/acpi/ec.c
@@ -1655,6 +1655,8 @@ static int acpi_ec_setup(struct acpi_ec *ec, struct acpi_device *device, bool ca
ret = ec_install_handlers(ec, device, call_reg);
if (ret) {
+ ec_remove_handlers(ec);
+
if (ec == first_ec)
first_ec = NULL;
--
2.43.0
^ permalink raw reply related [flat|nested] 2+ messages in thread* Re: [PATCH] ACPI: EC: clean up handlers on probe failure in acpi_ec_setup()
2026-03-24 16:54 [PATCH] ACPI: EC: clean up handlers on probe failure in acpi_ec_setup() Weiming Shi
@ 2026-03-24 17:48 ` Rafael J. Wysocki
0 siblings, 0 replies; 2+ messages in thread
From: Rafael J. Wysocki @ 2026-03-24 17:48 UTC (permalink / raw)
To: Weiming Shi; +Cc: linux-acpi, Xiang Mei
On Tue, Mar 24, 2026 at 5:55 PM Weiming Shi <bestswngs@gmail.com> wrote:
>
> When ec_install_handlers() returns -EPROBE_DEFER on reduced-hardware
> platforms, it has already started the EC and installed the address
> space handler with the struct acpi_ec pointer as handler context.
> However, acpi_ec_setup() propagates the error without any cleanup.
> The caller acpi_ec_add() then frees the struct acpi_ec for non-boot
> instances, leaving a dangling handler context in ACPICA.
>
> Any subsequent AML evaluation that accesses an EC OpRegion field
> dispatches into acpi_ec_space_handler() with the freed pointer,
> causing a use-after-free:
>
> BUG: KASAN: slab-use-after-free in mutex_lock (kernel/locking/mutex.c:289)
> Write of size 8 at addr ffff88800721de38 by task init/1
> Call Trace:
> <TASK>
> mutex_lock (kernel/locking/mutex.c:289)
> acpi_ec_space_handler (drivers/acpi/ec.c:1362)
> acpi_ev_address_space_dispatch (drivers/acpi/acpica/evregion.c:293)
> acpi_ex_access_region (drivers/acpi/acpica/exfldio.c:246)
> acpi_ex_field_datum_io (drivers/acpi/acpica/exfldio.c:509)
> acpi_ex_extract_from_field (drivers/acpi/acpica/exfldio.c:700)
> acpi_ex_read_data_from_field (drivers/acpi/acpica/exfield.c:327)
> acpi_ex_resolve_node_to_value (drivers/acpi/acpica/exresolv.c:392)
> </TASK>
>
> Allocated by task 1:
> acpi_ec_alloc (drivers/acpi/ec.c:1424)
> acpi_ec_add (drivers/acpi/ec.c:1692)
>
> Freed by task 1:
> kfree (mm/slub.c:6876)
> acpi_ec_add (drivers/acpi/ec.c:1751)
>
> The bug triggers on reduced-hardware EC platforms (ec->gpe < 0)
> when the GPIO IRQ provider defers probing. Once the stale handler
> exists, any unprivileged sysfs read that causes AML to touch an
> EC OpRegion (battery, thermal, backlight) exercises the dangling
> pointer.
>
> Fix this by calling ec_remove_handlers() in the error path of
> acpi_ec_setup() before clearing first_ec. ec_remove_handlers()
> checks each EC_FLAGS_* bit before acting, so it is safe to call
> regardless of how far ec_install_handlers() progressed:
>
> -ENODEV (handler not installed): only calls acpi_ec_stop()
> -EPROBE_DEFER (handler installed): removes handler, stops EC
>
> Fixes: 03e9a0e05739 ("ACPI: EC: Consolidate event handler installation code")
> Reported-by: Xiang Mei <xmei5@asu.edu>
> Signed-off-by: Weiming Shi <bestswngs@gmail.com>
> ---
> drivers/acpi/ec.c | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/drivers/acpi/ec.c b/drivers/acpi/ec.c
> index 59b3d50ff01e..c981a53434ed 100644
> --- a/drivers/acpi/ec.c
> +++ b/drivers/acpi/ec.c
> @@ -1655,6 +1655,8 @@ static int acpi_ec_setup(struct acpi_ec *ec, struct acpi_device *device, bool ca
>
> ret = ec_install_handlers(ec, device, call_reg);
> if (ret) {
> + ec_remove_handlers(ec);
> +
> if (ec == first_ec)
> first_ec = NULL;
>
> --
Applied as 7.0-rc material, thanks!
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2026-03-24 17:48 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-03-24 16:54 [PATCH] ACPI: EC: clean up handlers on probe failure in acpi_ec_setup() Weiming Shi
2026-03-24 17:48 ` Rafael J. Wysocki
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox