diff options
author | Azeem Shaikh <azeemshaikh38@gmail.com> | 2023-05-30 18:30:01 +0200 |
---|---|---|
committer | Kees Cook <keescook@chromium.org> | 2023-06-14 21:04:06 +0200 |
commit | bb07972fd64a8d666424e6e65648eed2ab758eac (patch) | |
tree | 25f499070a31399b5149ba5539e46241a9eec70d /arch/sparc/prom/bootstr_32.c | |
parent | Hexagon: Replace all non-returning strlcpy with strscpy (diff) | |
download | linux-bb07972fd64a8d666424e6e65648eed2ab758eac.tar.xz linux-bb07972fd64a8d666424e6e65648eed2ab758eac.zip |
sparc64: Replace all non-returning strlcpy with strscpy
strlcpy() reads the entire source buffer first.
This read may exceed the destination size limit.
This is both inefficient and can lead to linear read
overflows if a source string is not NUL-terminated [1].
In an effort to remove strlcpy() completely [2], replace
strlcpy() here with strscpy().
No return values were used, so direct replacement is safe.
[1] https://www.kernel.org/doc/html/latest/process/deprecated.html#strlcpy
[2] https://github.com/KSPP/linux/issues/89
Signed-off-by: Azeem Shaikh <azeemshaikh38@gmail.com>
Reviewed-by: Kees Cook <keescook@chromium.org>
Signed-off-by: Kees Cook <keescook@chromium.org>
Link: https://lore.kernel.org/r/20230530163001.985256-1-azeemshaikh38@gmail.com
Diffstat (limited to 'arch/sparc/prom/bootstr_32.c')
-rw-r--r-- | arch/sparc/prom/bootstr_32.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sparc/prom/bootstr_32.c b/arch/sparc/prom/bootstr_32.c index e3b731ff00f0..1c7cd258b0dc 100644 --- a/arch/sparc/prom/bootstr_32.c +++ b/arch/sparc/prom/bootstr_32.c @@ -52,7 +52,7 @@ prom_getbootargs(void) * V3 PROM cannot supply as with more than 128 bytes * of an argument. But a smart bootstrap loader can. */ - strlcpy(barg_buf, *romvec->pv_v2bootargs.bootargs, sizeof(barg_buf)); + strscpy(barg_buf, *romvec->pv_v2bootargs.bootargs, sizeof(barg_buf)); break; default: break; |