u-boot/drivers/qe
Vladimir Oltean 977b53f0b3 net: qe: uec: ensure mdiodev->name is NULL terminated after MDIO_NAME_LEN truncation
strncpy() simply bails out when copying a source string whose size
exceeds the destination string size, potentially leaving the destination
string unterminated.

One possible way to address is to pass MDIO_NAME_LEN - 1 and a
previously zero-initialized destination string, but this is more
difficult to maintain.

The chosen alternative is to use strlcpy(), which properly limits the
copy len in the (srclen >= size) case to "size - 1", and which is also
more efficient than the strncpy() byte-by-byte implementation by using
memcpy. The destination string returned by strlcpy() is always NULL
terminated.

Signed-off-by: Vladimir Oltean <vladimir.oltean@nxp.com>
Reviewed-by: Ramon Fried <rfried.dev@gmail.com>
2021-09-28 18:50:56 +03:00
..
fdt.c common: Drop asm/global_data.h from common header 2021-02-02 15:33:42 -05:00
Kconfig ppc: Remove TARGET_T1040QDS references 2021-04-10 08:04:42 -04:00
Makefile SPDX: Convert all of our single license tags to Linux Kernel style 2018-05-07 09:34:12 -04:00
qe.c global: Convert simple_strtoul() with hex to hextoul() 2021-08-02 13:32:14 -04:00
uccf.c net, qe: add DM support for QE UEC ethernet 2020-09-17 06:09:53 +02:00
uccf.h powerpc, qe: fix codingstyle issues for drivers/qe 2020-09-17 06:09:53 +02:00
uec.c net: qe: uec: ensure mdiodev->name is NULL terminated after MDIO_NAME_LEN truncation 2021-09-28 18:50:56 +03:00
uec.h powerpc, qe: fix codingstyle issues for drivers/qe 2020-09-17 06:09:53 +02:00
uec_phy.c net, qe: add DM support for QE UEC ethernet 2020-09-17 06:09:53 +02:00
uec_phy.h powerpc, qe: fix codingstyle issues for drivers/qe 2020-09-17 06:09:53 +02:00