* [PATCH] watchdog: exar: Shorten identity name to fit correctly
@ 2025-04-15 22:52 Kees Cook
2025-04-15 23:19 ` Guenter Roeck
0 siblings, 1 reply; 2+ messages in thread
From: Kees Cook @ 2025-04-15 22:52 UTC (permalink / raw)
To: Wim Van Sebroeck
Cc: Kees Cook, Guenter Roeck, linux-watchdog, David Müller,
linux-kernel, linux-hardening
The static initializer for struct watchdog_info::identity is too long
and gets initialized without a trailing NUL byte. Since the length
of "identity" is part of UAPI and tied to ioctls, just shorten
the name of the device. Avoids the warning seen with GCC 15's
-Wunterminated-string-initialization option:
drivers/watchdog/exar_wdt.c:224:27: warning: initializer-string for array of 'unsigned char' truncates NUL terminator but destination lacks 'nonstring' attribute (33 chars into 32 available) [-Wunterminated-string-initialization]
224 | .identity = "Exar/MaxLinear XR28V38x Watchdog",
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Fixes: 81126222bd3a ("watchdog: Exar/MaxLinear XR28V38x driver")
Signed-off-by: Kees Cook <kees@kernel.org>
---
Cc: Wim Van Sebroeck <wim@linux-watchdog.org>
Cc: Guenter Roeck <linux@roeck-us.net>
Cc: linux-watchdog@vger.kernel.org
---
drivers/watchdog/exar_wdt.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/watchdog/exar_wdt.c b/drivers/watchdog/exar_wdt.c
index 7c61ff343271..c2e3bb08df89 100644
--- a/drivers/watchdog/exar_wdt.c
+++ b/drivers/watchdog/exar_wdt.c
@@ -221,7 +221,7 @@ static const struct watchdog_info exar_wdt_info = {
.options = WDIOF_KEEPALIVEPING |
WDIOF_SETTIMEOUT |
WDIOF_MAGICCLOSE,
- .identity = "Exar/MaxLinear XR28V38x Watchdog",
+ .identity = "Exar XR28V38x Watchdog",
};
static const struct watchdog_ops exar_wdt_ops = {
--
2.34.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] watchdog: exar: Shorten identity name to fit correctly
2025-04-15 22:52 [PATCH] watchdog: exar: Shorten identity name to fit correctly Kees Cook
@ 2025-04-15 23:19 ` Guenter Roeck
0 siblings, 0 replies; 2+ messages in thread
From: Guenter Roeck @ 2025-04-15 23:19 UTC (permalink / raw)
To: Kees Cook, Wim Van Sebroeck
Cc: linux-watchdog, David Müller, linux-kernel, linux-hardening
On 4/15/25 15:52, Kees Cook wrote:
> The static initializer for struct watchdog_info::identity is too long
> and gets initialized without a trailing NUL byte. Since the length
> of "identity" is part of UAPI and tied to ioctls, just shorten
> the name of the device. Avoids the warning seen with GCC 15's
> -Wunterminated-string-initialization option:
>
> drivers/watchdog/exar_wdt.c:224:27: warning: initializer-string for array of 'unsigned char' truncates NUL terminator but destination lacks 'nonstring' attribute (33 chars into 32 available) [-Wunterminated-string-initialization]
> 224 | .identity = "Exar/MaxLinear XR28V38x Watchdog",
> | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>
> Fixes: 81126222bd3a ("watchdog: Exar/MaxLinear XR28V38x driver")
> Signed-off-by: Kees Cook <kees@kernel.org>
Reviewed-by: Guenter Roeck <linux@roeck-us.net>
> ---
> Cc: Wim Van Sebroeck <wim@linux-watchdog.org>
> Cc: Guenter Roeck <linux@roeck-us.net>
> Cc: linux-watchdog@vger.kernel.org
> ---
> drivers/watchdog/exar_wdt.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/watchdog/exar_wdt.c b/drivers/watchdog/exar_wdt.c
> index 7c61ff343271..c2e3bb08df89 100644
> --- a/drivers/watchdog/exar_wdt.c
> +++ b/drivers/watchdog/exar_wdt.c
> @@ -221,7 +221,7 @@ static const struct watchdog_info exar_wdt_info = {
> .options = WDIOF_KEEPALIVEPING |
> WDIOF_SETTIMEOUT |
> WDIOF_MAGICCLOSE,
> - .identity = "Exar/MaxLinear XR28V38x Watchdog",
> + .identity = "Exar XR28V38x Watchdog",
> };
>
> static const struct watchdog_ops exar_wdt_ops = {
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2025-04-15 23:19 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-04-15 22:52 [PATCH] watchdog: exar: Shorten identity name to fit correctly Kees Cook
2025-04-15 23:19 ` Guenter Roeck
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).