diff options
author | Justin Stitt <justinstitt@google.com> | 2023-09-13 00:52:04 +0200 |
---|---|---|
committer | Kees Cook <keescook@chromium.org> | 2023-09-29 23:48:31 +0200 |
commit | de055e6116742291a31a21a10108d426574988ff (patch) | |
tree | 1baa45a4044badf9fd0f779c00cffd61efaf5a2a /drivers/cpufreq | |
parent | auxdisplay: panel: Replace deprecated strncpy() with strtomem_pad() (diff) | |
download | linux-de055e6116742291a31a21a10108d426574988ff.tar.xz linux-de055e6116742291a31a21a10108d426574988ff.zip |
bus: fsl-mc: Replace deprecated strncpy() with strscpy_pad()
`strncpy` is deprecated for use on NUL-terminated destination strings [1].
We need to prefer more robust and less ambiguous string interfaces.
`obj_desc->(type|label)` are expected to be NUL-terminated strings as
per "include/linux/fsl/mc.h +143"
| ...
| * struct fsl_mc_obj_desc - Object descriptor
| * @type: Type of object: NULL terminated string
| ...
It seems `cmd_params->obj_type` is also expected to be a NUL-terminated string.
A suitable replacement is `strscpy_pad` due to the fact that it
guarantees NUL-termination on the destination buffer whilst keeping the
NUL-padding behavior that `strncpy` provides.
Padding may not strictly be necessary but let's opt to keep it as this
ensures no functional change.
Link: https://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
Cc: Kees Cook <keescook@chromium.org>
Signed-off-by: Justin Stitt <justinstitt@google.com>
Reviewed-by: Kees Cook <keescook@chromium.org>
Link: https://lore.kernel.org/r/20230912-strncpy-drivers-bus-fsl-mc-dprc-c-v1-1-cdb56aa3f4f4@google.com
Signed-off-by: Kees Cook <keescook@chromium.org>
Diffstat (limited to 'drivers/cpufreq')
0 files changed, 0 insertions, 0 deletions