diff options
author | Azeem Shaikh <azeemshaikh38@gmail.com> | 2023-07-03 16:06:41 +0000 |
---|---|---|
committer | Richard Weinberger <richard@nod.at> | 2023-08-19 22:24:39 +0200 |
commit | f5ff432d96e17a8fdb1962b73cea3823ebd701e8 (patch) | |
tree | 8012bd1df850a5db1c95fe861d1f13e47217317a /arch/um/include | |
parent | 2ccdd1b13c591d306f0401d98dedc4bdcd02b421 (diff) |
um: Remove strlcpy usage
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>
[rw: Massaged subject]
Signed-off-by: Richard Weinberger <richard@nod.at>
Diffstat (limited to 'arch/um/include')
-rw-r--r-- | arch/um/include/shared/user.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/arch/um/include/shared/user.h b/arch/um/include/shared/user.h index 0347a190429c..981e11d8e025 100644 --- a/arch/um/include/shared/user.h +++ b/arch/um/include/shared/user.h @@ -50,7 +50,6 @@ static inline int printk(const char *fmt, ...) #endif extern int in_aton(char *str); -extern size_t strlcpy(char *, const char *, size_t); extern size_t strlcat(char *, const char *, size_t); extern size_t strscpy(char *, const char *, size_t); |