diff options
author | Justin Stitt <justinstitt@google.com> | 2023-09-21 04:54:00 +0000 |
---|---|---|
committer | Jonathan Cameron <Jonathan.Cameron@huawei.com> | 2023-10-05 15:01:08 +0100 |
commit | 1731a0c492c806ba3678b6c1aa3081a77ca1abb3 (patch) | |
tree | 6b06daee9c77268f9ac45cc6cd130fb5748267b1 /arch/openrisc/configs | |
parent | d27425d5d8b1cd930a31b92fb426cdbcbf876b10 (diff) | |
download | linux-stable-1731a0c492c806ba3678b6c1aa3081a77ca1abb3.tar.gz linux-stable-1731a0c492c806ba3678b6c1aa3081a77ca1abb3.tar.bz2 linux-stable-1731a0c492c806ba3678b6c1aa3081a77ca1abb3.zip |
iio: adc: stm32-adc: Replace deprecated strncpy() with strscpy()
strncpy() is deprecated for use on NUL-terminated destination strings [1].
We should prefer more robust and less ambiguous string interfaces.
We expect adc->chan_name[val] to be NUL-terminated based on ch_name's
use within functions that expect NUL-terminated strings like strncmp and
printf-likes:
| if (!strncmp(stm32_adc_ic[i].name, ch_name, STM32_ADC_CH_SZ)) {
| /* Check internal channel availability */
| switch (i) {
| case STM32_ADC_INT_CH_VDDCORE:
| if (!adc->cfg->regs->or_vddcore.reg)
| dev_warn(&indio_dev->dev,
| "%s channel not available\n", ch_name);
...
There is no evidence that NUL-padding is needed either.
Considering the above, a suitable replacement is strscpy() [2] due to
the fact that it guarantees NUL-termination on the destination buffer
without unnecessarily NUL-padding. If, for any reason, NUL-padding _is_
required we should go for `strscpy_pad`.
Link: https://www.kernel.org/doc/html/latest/process/deprecated.html#strncpy-on-nul-terminated-strings [1]
Link: https://manpages.debian.org/testing/linux-manual-4.8/strscpy.9.en.html [2]
Link: https://github.com/KSPP/linux/issues/90
Cc: linux-hardening@vger.kernel.org
Signed-off-by: Justin Stitt <justinstitt@google.com>
Reviewed-by: Kees Cook <keescook@chromium.org>
Link: https://lore.kernel.org/r/20230921-strncpy-drivers-iio-adc-stm32-adc-c-v1-1-c50eca098597@google.com
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Diffstat (limited to 'arch/openrisc/configs')
0 files changed, 0 insertions, 0 deletions