s390/ipl: refactor deprecated strncpy
authorJustin Stitt <justinstitt@google.com>
Fri, 11 Aug 2023 21:56:15 +0000 (21:56 +0000)
committerHeiko Carstens <hca@linux.ibm.com>
Fri, 18 Aug 2023 13:08:12 +0000 (15:08 +0200)
commitcfd012107f11ec4af010f11eca341edc831abf6c
tree23e77634348c056f784a92f53e0cb1ce836fe7f9
parent979fe44af819d76fc02a5a97ad1cb74f7d83578e
s390/ipl: refactor deprecated strncpy

`strncpy` is deprecated for use on NUL-terminated destination strings [1].

Use `strscpy` which has the same behavior as `strncpy` here with the
extra safeguard of guaranteeing NUL-termination of destination
strings.  In it's current form, this may result in silent truncation
if the src string has the same size as the destination string.

[hca@linux.ibm.com: use strscpy() instead of strscpy_pad()]
Link: www.kernel.org/doc/html/latest/process/deprecated.html#strncpy-on-nul-terminated-strings[1]
Link: https://github.com/KSPP/linux/issues/90
Cc: linux-hardening@vger.kernel.org
Signed-off-by: Justin Stitt <justinstitt@google.com>
Link: https://lore.kernel.org/r/20230811-arch-s390-kernel-v1-1-7edbeeab3809@google.com
Signed-off-by: Heiko Carstens <hca@linux.ibm.com>
arch/s390/kernel/ipl.c