* [PATCH] platform/x86/intel/pmc: validate LPM mode without stale index
@ 2026-06-30 10:51 Yousef Alhouseen
2026-07-10 16:09 ` David Box
0 siblings, 1 reply; 2+ messages in thread
From: Yousef Alhouseen @ 2026-06-30 10:51 UTC (permalink / raw)
To: Rajneesh Bhardwaj, David E . Box
Cc: Hans de Goede, Ilpo Järvinen, platform-driver-x86,
linux-kernel, Yousef Alhouseen
pmc_lpm_mode_write() compares the requested mode with the loop variable
after pmc_for_each_mode(). If no low-power modes are enabled,
the loop never assigns that variable and the comparison reads an
uninitialized value.
Track a successful match explicitly, including the empty-mode case.
Signed-off-by: Yousef Alhouseen <alhouseenyousef@gmail.com>
---
drivers/platform/x86/intel/pmc/core.c | 14 ++++++++++----
1 file changed, 10 insertions(+), 4 deletions(-)
diff --git a/drivers/platform/x86/intel/pmc/core.c b/drivers/platform/x86/intel/pmc/core.c
index 9f77c0716e59..9833df172d4e 100644
--- a/drivers/platform/x86/intel/pmc/core.c
+++ b/drivers/platform/x86/intel/pmc/core.c
@@ -1147,6 +1147,7 @@ static ssize_t pmc_core_lpm_latch_mode_write(struct file *file,
struct pmc_dev *pmcdev = s->private;
struct pmc *pmc = pmcdev->pmcs[PMC_IDX_MAIN];
bool clear = false, c10 = false;
+ bool mode_enabled = false;
unsigned char buf[8];
int mode;
u32 reg;
@@ -1167,11 +1168,16 @@ static ssize_t pmc_core_lpm_latch_mode_write(struct file *file,
mode = sysfs_match_string(pmc_lpm_modes, buf);
/* Check string matches enabled mode */
- pmc_for_each_mode(m, pmc)
- if (mode == m)
- break;
+ if (mode >= 0) {
+ pmc_for_each_mode(m, pmc) {
+ if (mode == m) {
+ mode_enabled = true;
+ break;
+ }
+ }
+ }
- if (mode != m || mode < 0) {
+ if (!mode_enabled) {
if (sysfs_streq(buf, "clear"))
clear = true;
else if (sysfs_streq(buf, "c10"))
--
2.54.0
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] platform/x86/intel/pmc: validate LPM mode without stale index
2026-06-30 10:51 [PATCH] platform/x86/intel/pmc: validate LPM mode without stale index Yousef Alhouseen
@ 2026-07-10 16:09 ` David Box
0 siblings, 0 replies; 2+ messages in thread
From: David Box @ 2026-07-10 16:09 UTC (permalink / raw)
To: Yousef Alhouseen
Cc: Rajneesh Bhardwaj, Hans de Goede, Ilpo Järvinen,
platform-driver-x86, linux-kernel
On Tue, Jun 30, 2026 at 12:51:25PM +0200, Yousef Alhouseen wrote:
> pmc_lpm_mode_write() compares the requested mode with the loop variable
> after pmc_for_each_mode(). If no low-power modes are enabled,
> the loop never assigns that variable and the comparison reads an
> uninitialized value.
>
> Track a successful match explicitly, including the empty-mode case.
>
> Signed-off-by: Yousef Alhouseen <alhouseenyousef@gmail.com>
> ---
> drivers/platform/x86/intel/pmc/core.c | 14 ++++++++++----
> 1 file changed, 10 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/platform/x86/intel/pmc/core.c b/drivers/platform/x86/intel/pmc/core.c
> index 9f77c0716e59..9833df172d4e 100644
> --- a/drivers/platform/x86/intel/pmc/core.c
> +++ b/drivers/platform/x86/intel/pmc/core.c
> @@ -1147,6 +1147,7 @@ static ssize_t pmc_core_lpm_latch_mode_write(struct file *file,
> struct pmc_dev *pmcdev = s->private;
> struct pmc *pmc = pmcdev->pmcs[PMC_IDX_MAIN];
> bool clear = false, c10 = false;
> + bool mode_enabled = false;
> unsigned char buf[8];
> int mode;
> u32 reg;
> @@ -1167,11 +1168,16 @@ static ssize_t pmc_core_lpm_latch_mode_write(struct file *file,
> mode = sysfs_match_string(pmc_lpm_modes, buf);
>
Since you're now checking mode right after assignment remove this empty line to
tie it to the test.
> /* Check string matches enabled mode */
> - pmc_for_each_mode(m, pmc)
> - if (mode == m)
> - break;
> + if (mode >= 0) {
> + pmc_for_each_mode(m, pmc) {
> + if (mode == m) {
> + mode_enabled = true;
> + break;
> + }
> + }
> + }
>
> - if (mode != m || mode < 0) {
> + if (!mode_enabled) {
> if (sysfs_streq(buf, "clear"))
> clear = true;
> else if (sysfs_streq(buf, "c10"))
> --
> 2.54.0
>
With the above change,
Reviewed-by: David E. Box <david.e.box@linux.intel.com>
Thanks
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2026-07-10 16:09 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-06-30 10:51 [PATCH] platform/x86/intel/pmc: validate LPM mode without stale index Yousef Alhouseen
2026-07-10 16:09 ` David Box
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox