mirror of
https://github.com/torvalds/linux.git
synced 2026-09-23 05:04:02 +02:00
hwmon: (pwm-fan) Stop RPM timer before freeing tach data
sample_timer() rearms the RPM timer and accesses the devm-managed
ctx->tachs and ctx->pulses_per_revolution arrays. The cleanup action
which stops the timer is registered before those arrays are allocated.
Since devres releases entries in reverse order, driver detach can free
the arrays before pwm_fan_cleanup() shuts down the timer. A timer expiry
in that window accesses the freed tach data.
With a KASAN kernel, a test-only kprobe delayed entry to
pwm_fan_cleanup() while normal sysfs unbind ran. Each of three runs
reported three four-byte reads and two four-byte writes in sample_timer()
after its backing devm allocations had been freed. The helper did not
invoke the timer callback, cleanup actions or free functions.
With the fix, three matching unbind runs completed without KASAN, BUG,
WARNING, Oops or panic. Instrumentation confirmed that timer retirement
completed before the first timer backing allocation was released.
Split timer retirement from the power cleanup and register its devres
action after the timer backing data and IRQ actions are installed. This
preserves the early power rollback action while ensuring the timer is
retired before its backing data is released. Use timer_shutdown_sync()
because the callback can rearm itself.
Fixes: 01695410d4 ("hwmon: (pwm-fan) Store tach data separately")
Cc: stable@vger.kernel.org
Assisted-by: Codex:GPT-5
Signed-off-by: Yibo Tan <lhfff@tju.edu.cn>
Link: https://patch.msgid.link/20260911071809.130151-1-lhfff@tju.edu.cn
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
This commit is contained in:
parent
451b1c19dc
commit
26d5ff7976
|
|
@ -483,7 +483,6 @@ static void pwm_fan_cleanup(void *__ctx)
|
|||
{
|
||||
struct pwm_fan_ctx *ctx = __ctx;
|
||||
|
||||
timer_delete_sync(&ctx->rpm_timer);
|
||||
if (ctx->pwm_shutdown) {
|
||||
ctx->enable_mode = pwm_enable_reg_enable;
|
||||
__set_pwm(ctx, ctx->pwm_shutdown);
|
||||
|
|
@ -494,6 +493,13 @@ static void pwm_fan_cleanup(void *__ctx)
|
|||
}
|
||||
}
|
||||
|
||||
static void pwm_fan_timer_cleanup(void *__ctx)
|
||||
{
|
||||
struct pwm_fan_ctx *ctx = __ctx;
|
||||
|
||||
timer_shutdown_sync(&ctx->rpm_timer);
|
||||
}
|
||||
|
||||
static int pwm_fan_probe(struct platform_device *pdev)
|
||||
{
|
||||
struct thermal_cooling_device *cdev;
|
||||
|
|
@ -644,6 +650,10 @@ static int pwm_fan_probe(struct platform_device *pdev)
|
|||
}
|
||||
|
||||
if (ctx->tach_count > 0) {
|
||||
ret = devm_add_action_or_reset(dev, pwm_fan_timer_cleanup, ctx);
|
||||
if (ret)
|
||||
return ret;
|
||||
|
||||
ctx->sample_start = ktime_get();
|
||||
mod_timer(&ctx->rpm_timer, jiffies + HZ);
|
||||
|
||||
|
|
@ -700,6 +710,7 @@ static void pwm_fan_shutdown(struct platform_device *pdev)
|
|||
{
|
||||
struct pwm_fan_ctx *ctx = platform_get_drvdata(pdev);
|
||||
|
||||
pwm_fan_timer_cleanup(ctx);
|
||||
pwm_fan_cleanup(ctx);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user