* [PATCH] staging: nvec: validate battery response length before memcpy
@ 2026-03-24 19:50 Sebastian Josue Alba Vives
2026-03-29 20:48 ` Marc Dietrich
0 siblings, 1 reply; 2+ messages in thread
From: Sebastian Josue Alba Vives @ 2026-03-24 19:50 UTC (permalink / raw)
To: marvin24
Cc: ac100, linux-tegra, linux-kernel, stable,
Sebastian Josue Alba Vives
In nvec_power_notifier(), the response length from the embedded
controller is used directly as the size argument to memcpy() when
copying battery manufacturer, model, and type strings. The
destination buffers (bat_manu, bat_model, bat_type) are fixed at 30
bytes, but res->length is a u8 that can be up to 255, allowing a
heap buffer overflow.
Additionally, if res->length is less than 2, the subtraction
res->length - 2 wraps around as an unsigned value, resulting in a
large copy that corrupts kernel heap memory.
Add bounds checks before each memcpy to ensure the copy length does
not exceed the destination buffer size, and that res->length is at
least 2 to prevent unsigned integer underflow.
Cc: stable@vger.kernel.org
Signed-off-by: Sebastian Josue Alba Vives <sebasjosue84@gmail.com>
---
drivers/staging/nvec/nvec_power.c | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/drivers/staging/nvec/nvec_power.c b/drivers/staging/nvec/nvec_power.c
index 2faab9fde..29beef0a7 100644
--- a/drivers/staging/nvec/nvec_power.c
+++ b/drivers/staging/nvec/nvec_power.c
@@ -193,14 +193,20 @@ static int nvec_power_bat_notifier(struct notifier_block *nb,
power->bat_temperature = res->plu - 2732;
break;
case MANUFACTURER:
+ if (res->length < 2 || res->length - 2 > sizeof(power->bat_manu) - 1)
+ break;
memcpy(power->bat_manu, &res->plc, res->length - 2);
power->bat_manu[res->length - 2] = '\0';
break;
case MODEL:
+ if (res->length < 2 || res->length - 2 > sizeof(power->bat_model) - 1)
+ break;
memcpy(power->bat_model, &res->plc, res->length - 2);
power->bat_model[res->length - 2] = '\0';
break;
case TYPE:
+ if (res->length < 2 || res->length - 2 > sizeof(power->bat_type) - 1)
+ break;
memcpy(power->bat_type, &res->plc, res->length - 2);
power->bat_type[res->length - 2] = '\0';
/*
--
2.43.0
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] staging: nvec: validate battery response length before memcpy
2026-03-24 19:50 [PATCH] staging: nvec: validate battery response length before memcpy Sebastian Josue Alba Vives
@ 2026-03-29 20:48 ` Marc Dietrich
0 siblings, 0 replies; 2+ messages in thread
From: Marc Dietrich @ 2026-03-29 20:48 UTC (permalink / raw)
To: Sebastian Josue Alba Vives; +Cc: ac100, linux-tegra, linux-kernel, stable
Hello Sebastian,
On Tue, 24 Mar 2026, Sebastian Josue Alba Vives wrote:
> In nvec_power_notifier(), the response length from the embedded
> controller is used directly as the size argument to memcpy() when
> copying battery manufacturer, model, and type strings. The
> destination buffers (bat_manu, bat_model, bat_type) are fixed at 30
> bytes, but res->length is a u8 that can be up to 255, allowing a
> heap buffer overflow.
>
> Additionally, if res->length is less than 2, the subtraction
> res->length - 2 wraps around as an unsigned value, resulting in a
> large copy that corrupts kernel heap memory.
>
> Add bounds checks before each memcpy to ensure the copy length does
> not exceed the destination buffer size, and that res->length is at
> least 2 to prevent unsigned integer underflow.
>
> Cc: stable@vger.kernel.org
> Signed-off-by: Sebastian Josue Alba Vives <sebasjosue84@gmail.com>
> ---
> drivers/staging/nvec/nvec_power.c | 6 ++++++
> 1 file changed, 6 insertions(+)
>
> diff --git a/drivers/staging/nvec/nvec_power.c b/drivers/staging/nvec/nvec_power.c
> index 2faab9fde..29beef0a7 100644
> --- a/drivers/staging/nvec/nvec_power.c
> +++ b/drivers/staging/nvec/nvec_power.c
> @@ -193,14 +193,20 @@ static int nvec_power_bat_notifier(struct notifier_block *nb,
> power->bat_temperature = res->plu - 2732;
> break;
> case MANUFACTURER:
> + if (res->length < 2 || res->length - 2 > sizeof(power->bat_manu) - 1)
> + break;
I think this check is a valid one, even if unlikely to fail. Could be a
bit nicer by replacing sizeof() with a contant and storing res->length-2
to some variable, but I guess that's a matter of taste.
Tested-by: Marc Dietrich <marvin24@gmx.de>
Thanks,
Marc
> memcpy(power->bat_manu, &res->plc, res->length - 2);
> power->bat_manu[res->length - 2] = '\0';
> break;
> case MODEL:
> + if (res->length < 2 || res->length - 2 > sizeof(power->bat_model) - 1)
> + break;
> memcpy(power->bat_model, &res->plc, res->length - 2);
> power->bat_model[res->length - 2] = '\0';
> break;
> case TYPE:
> + if (res->length < 2 || res->length - 2 > sizeof(power->bat_type) - 1)
> + break;
> memcpy(power->bat_type, &res->plc, res->length - 2);
> power->bat_type[res->length - 2] = '\0';
> /*
> --
> 2.43.0
>
>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2026-03-29 20: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 19:50 [PATCH] staging: nvec: validate battery response length before memcpy Sebastian Josue Alba Vives
2026-03-29 20:48 ` Marc Dietrich
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox