* [PATCH v2] platform/x86: intel_telemetry: initialize default trace verbosity
@ 2026-09-15 12:21 Aleksandrova Alyona
2026-09-15 12:26 ` Ilpo Järvinen
0 siblings, 1 reply; 2+ messages in thread
From: Aleksandrova Alyona @ 2026-09-15 12:21 UTC (permalink / raw)
To: Rajneesh Bhardwaj, David E . Box
Cc: Aleksandrova Alyona, Hans de Goede, Ilpo Järvinen,
Darren Hart, platform-driver-x86, linux-kernel, lvc-project
telemetry_def_get_trace_verbosity() returns success without initializing
the output verbosity value.
The default telemetry operations are installed when the core driver is
initialized and again by telemetry_clear_pltdata() when the platform
driver is removed. The telemetry debugfs files can remain available after
the platform driver removal.
A subsequent read of pss_trace_verbosity or ioss_trace_verbosity calls
telemetry_get_trace_verbosity(), which may use the default callback and
return success without setting verbosity. The uninitialized value is then
passed to seq_printf().
Validate the output pointer and initialize the default verbosity to zero
so callers never use an uninitialized value after a successful call.
Found by Linux Verification Center (linuxtesting.org) with SVACE.
Fixes: 378f956e3f93 ("platform/x86: Add Intel Telemetry Core Driver")
Signed-off-by: Aleksandrova Alyona <aga@itb.spb.ru>
---
drivers/platform/x86/intel/telemetry/core.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/drivers/platform/x86/intel/telemetry/core.c b/drivers/platform/x86/intel/telemetry/core.c
index f312864b8d07a..62299524a07b2 100644
--- a/drivers/platform/x86/intel/telemetry/core.c
+++ b/drivers/platform/x86/intel/telemetry/core.c
@@ -24,6 +24,10 @@ static struct telemetry_core_config telm_core_conf;
static int telemetry_def_get_trace_verbosity(enum telemetry_unit telem_unit,
u32 *verbosity)
{
+ if (!verbosity)
+ return -EINVAL;
+
+ *verbosity = 0;
return 0;
}
--
2.26.2
^ permalink raw reply [flat|nested] 2+ messages in thread* Re: [PATCH v2] platform/x86: intel_telemetry: initialize default trace verbosity
2026-09-15 12:21 [PATCH v2] platform/x86: intel_telemetry: initialize default trace verbosity Aleksandrova Alyona
@ 2026-09-15 12:26 ` Ilpo Järvinen
0 siblings, 0 replies; 2+ messages in thread
From: Ilpo Järvinen @ 2026-09-15 12:26 UTC (permalink / raw)
To: Aleksandrova Alyona
Cc: Rajneesh Bhardwaj, David E . Box, Hans de Goede, Darren Hart,
platform-driver-x86, LKML, lvc-project
On Tue, 15 Sep 2026, Aleksandrova Alyona wrote:
> telemetry_def_get_trace_verbosity() returns success without initializing
> the output verbosity value.
>
> The default telemetry operations are installed when the core driver is
> initialized and again by telemetry_clear_pltdata() when the platform
> driver is removed. The telemetry debugfs files can remain available after
> the platform driver removal.
>
> A subsequent read of pss_trace_verbosity or ioss_trace_verbosity calls
> telemetry_get_trace_verbosity(), which may use the default callback and
> return success without setting verbosity. The uninitialized value is then
> passed to seq_printf().
>
> Validate the output pointer and initialize the default verbosity to zero
> so callers never use an uninitialized value after a successful call.
>
> Found by Linux Verification Center (linuxtesting.org) with SVACE.
>
> Fixes: 378f956e3f93 ("platform/x86: Add Intel Telemetry Core Driver")
> Signed-off-by: Aleksandrova Alyona <aga@itb.spb.ru>
> ---
You're missing the information on what is changed in v2?!
> drivers/platform/x86/intel/telemetry/core.c | 4 ++++
> 1 file changed, 4 insertions(+)
>
> diff --git a/drivers/platform/x86/intel/telemetry/core.c b/drivers/platform/x86/intel/telemetry/core.c
> index f312864b8d07a..62299524a07b2 100644
> --- a/drivers/platform/x86/intel/telemetry/core.c
> +++ b/drivers/platform/x86/intel/telemetry/core.c
> @@ -24,6 +24,10 @@ static struct telemetry_core_config telm_core_conf;
> static int telemetry_def_get_trace_verbosity(enum telemetry_unit telem_unit,
> u32 *verbosity)
> {
> + if (!verbosity)
> + return -EINVAL;
> +
> + *verbosity = 0;
> return 0;
> }
>
>
--
i.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2026-09-15 12:29 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-09-15 12:21 [PATCH v2] platform/x86: intel_telemetry: initialize default trace verbosity Aleksandrova Alyona
2026-09-15 12:26 ` Ilpo Järvinen
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®