* [PATCH] clk: starfive: jh7110: reject oscillator lookup errors
@ 2026-09-13 12:51 Slavin Liu
2026-09-13 13:05 ` sashiko-bot
0 siblings, 1 reply; 2+ messages in thread
From: Slavin Liu @ 2026-09-13 12:51 UTC (permalink / raw)
To: kernel, hal.feng, sboyd, bmasney+clk, jbrunet+clk
Cc: linux-clk, linux-kernel, bolin.liu
Clock lookup may fail while allocating a consumer reference. Return
a notifier error rather than passing ERR_PTR as the new clock parent.
Detected by static analysis and reviewed with AI-assisted source auditing.
Fixes: 538d5477b252 ("clk: starfive: jh7110-sys: Add notifier for PLL0 clock")
Assisted-by: LLM
Signed-off-by: Slavin Liu <bolin.liu@seu.edu.cn>
---
drivers/clk/starfive/clk-starfive-jh7110-sys.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/drivers/clk/starfive/clk-starfive-jh7110-sys.c b/drivers/clk/starfive/clk-starfive-jh7110-sys.c
index 03c17cd2032f..847c0a39e5ab 100644
--- a/drivers/clk/starfive/clk-starfive-jh7110-sys.c
+++ b/drivers/clk/starfive/clk-starfive-jh7110-sys.c
@@ -390,6 +390,9 @@ static int jh7110_pll0_clk_notifier_cb(struct notifier_block *nb,
if (action == PRE_RATE_CHANGE) {
struct clk *osc = clk_get(priv->dev, "osc");
+ if (IS_ERR(osc))
+ return notifier_from_errno(PTR_ERR(osc));
+
priv->original_clk = clk_get_parent(cpu_root);
ret = clk_set_parent(cpu_root, osc);
clk_put(osc);
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] clk: starfive: jh7110: reject oscillator lookup errors
2026-09-13 12:51 [PATCH] clk: starfive: jh7110: reject oscillator lookup errors Slavin Liu
@ 2026-09-13 13:05 ` sashiko-bot
0 siblings, 0 replies; 2+ messages in thread
From: sashiko-bot @ 2026-09-13 13:05 UTC (permalink / raw)
To: Slavin Liu; +Cc: linux-clk
Thank you for your contribution! Sashiko AI review found 2 potential issue(s) to consider:
Pre-existing issues:
- [High] The clock notifier `jh7110_pll0_clk_notifier_cb` completely ignores the `ABORT_RATE_CHANGE` event, permanently leaving the CPU reparented to the slow oscillator if a clock rate change fails.
- [High] Missing cleanup in probe error paths causes a clock reference leak and a Use-After-Free (UAF) vulnerability in the notifier.
--
commit ebd9f7e3f2dc35439009c9df2e84ee190db37687
Author: Slavin Liu <bolin.liu@seu.edu.cn>
clk: starfive: jh7110: reject oscillator lookup errors
Clock lookup may fail while allocating a consumer reference. Return
a notifier error rather than passing ERR_PTR as the new clock parent.
> diff --git a/drivers/clk/starfive/clk-starfive-jh7110-sys.c b/drivers/clk/starfive/clk-starfive-jh7110-sys.c
> index 03c17cd2032f5..847c0a39e5ab5 100644
> --- a/drivers/clk/starfive/clk-starfive-jh7110-sys.c
> +++ b/drivers/clk/starfive/clk-starfive-jh7110-sys.c
> @@ -390,6 +390,9 @@ static int jh7110_pll0_clk_notifier_cb(struct notifier_block *nb,
> if (action == PRE_RATE_CHANGE) {
> struct clk *osc = clk_get(priv->dev, "osc");
>
> + if (IS_ERR(osc))
> + return notifier_from_errno(PTR_ERR(osc));
> +
> priv->original_clk = clk_get_parent(cpu_root);
> ret = clk_set_parent(cpu_root, osc);
> clk_put(osc);
[Severity: High]
This isn't a bug introduced by this patch, but does the notifier ignore the
ABORT_RATE_CHANGE event?
If a PLL rate change is aborted (e.g., rejected by a downstream clock
notifier returning NOTIFY_BAD, or failing at the hardware level), the
core clock framework emits an ABORT_RATE_CHANGE notification.
Because this event is ignored, the reparenting is never undone:
} else if (action == POST_RATE_CHANGE) {
ret = clk_set_parent(cpu_root, priv->original_clk);
}
Could the CPU clock remain permanently parented to the 24MHz slow oscillator
instead of being restored, severely degrading system performance?
[Severity: High]
This is a pre-existing issue, but does jh7110_syscrg_probe() leave a dangling
notifier if a later registration fails?
If probe fails after successfully registering the clock notifier
(e.g., devm_clk_hw_register fails), the devres frees the priv structure.
However, the notifier is never unregistered:
drivers/clk/starfive/clk-starfive-jh7110-sys.c:jh7110_syscrg_probe() {
...
pllclk = clk_get(priv->dev, "pll0_out");
if (IS_ERR(pllclk)) {
...
} else {
priv->pll_clk_nb.notifier_call = jh7110_pll0_clk_notifier_cb;
ret = clk_notifier_register(pllclk, &priv->pll_clk_nb);
if (ret)
return ret;
priv->pll[0] = NULL;
}
...
ret = devm_clk_hw_register(&pdev->dev, &clk->hw);
if (ret)
return ret; /* priv freed, but notifier still active */
...
}
Could a subsequent rate change on pll0_out dereference the freed memory?
Also, does the pllclk reference obtained via clk_get() leak since it is
never freed with clk_put()?
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260913125112.109755-1-bolin.liu@seu.edu.cn?part=1
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2026-09-13 13:05 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-09-13 12:51 [PATCH] clk: starfive: jh7110: reject oscillator lookup errors Slavin Liu
2026-09-13 13:05 ` sashiko-bot
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).