aboutsummaryrefslogtreecommitdiff
path: root/sbin/ifconfig/iffib.c
diff options
context:
space:
mode:
authorDon Lewis <truckman@FreeBSD.org>2016-05-16 00:25:24 +0000
committerDon Lewis <truckman@FreeBSD.org>2016-05-16 00:25:24 +0000
commitc871174916da0601196d2e1f8ace6a63838e850e (patch)
tree1076cbb0355b5f48b1303d093d224e97b4e9c118 /sbin/ifconfig/iffib.c
parente6e244562252798faf891dd77a94209fee8249cd (diff)
downloadsrc-c871174916da0601196d2e1f8ace6a63838e850e.tar.gz
src-c871174916da0601196d2e1f8ace6a63838e850e.zip
Use strlcpy() instead of strncpy() when copying ifname to ensure
that it is NUL terminated. Additional NUL padding is not required for short names. Use sizeof(destination) in a few places instead of IFNAMSIZ. Cast afp->af_ridreq and afp->af_addreq to make the intent of the code more obvious. Reported by: Coverity CID: 1009628, 1009630, 1009631, 1009632, 1009633, 1009635, 1009638 CID: 1009639, 1009640, 1009641, 1009642, 1009643, 1009644, 1009645 CID: 1009646, 1009647, 1010049, 1010050, 1010051, 1010052, 1010053 CID: 1010054, 1011293, 1011294, 1011295, 1011296, 1011297, 1011298 CID: 1011299, 1305821, 1351720, 1351721 MFC after: 1 week
Notes
Notes: svn path=/head/; revision=299873
Diffstat (limited to 'sbin/ifconfig/iffib.c')
-rw-r--r--sbin/ifconfig/iffib.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sbin/ifconfig/iffib.c b/sbin/ifconfig/iffib.c
index f54eab720914..19219482304b 100644
--- a/sbin/ifconfig/iffib.c
+++ b/sbin/ifconfig/iffib.c
@@ -49,13 +49,13 @@ fib_status(int s)
struct ifreq ifr;
memset(&ifr, 0, sizeof(ifr));
- strncpy(ifr.ifr_name, name, sizeof(ifr.ifr_name));
+ strlcpy(ifr.ifr_name, name, sizeof(ifr.ifr_name));
if (ioctl(s, SIOCGIFFIB, (caddr_t)&ifr) == 0 &&
ifr.ifr_fib != RT_DEFAULT_FIB)
printf("\tfib: %u\n", ifr.ifr_fib);
memset(&ifr, 0, sizeof(ifr));
- strncpy(ifr.ifr_name, name, sizeof(ifr.ifr_name));
+ strlcpy(ifr.ifr_name, name, sizeof(ifr.ifr_name));
if (ioctl(s, SIOCGTUNFIB, (caddr_t)&ifr) == 0 &&
ifr.ifr_fib != RT_DEFAULT_FIB)
printf("\ttunnelfib: %u\n", ifr.ifr_fib);
@@ -74,7 +74,7 @@ setiffib(const char *val, int dummy __unused, int s,
return;
}
- strncpy(ifr.ifr_name, name, sizeof (ifr.ifr_name));
+ strlcpy(ifr.ifr_name, name, sizeof (ifr.ifr_name));
ifr.ifr_fib = fib;
if (ioctl(s, SIOCSIFFIB, (caddr_t)&ifr) < 0)
warn("ioctl (SIOCSIFFIB)");
@@ -93,7 +93,7 @@ settunfib(const char *val, int dummy __unused, int s,
return;
}
- strncpy(ifr.ifr_name, name, sizeof (ifr.ifr_name));
+ strlcpy(ifr.ifr_name, name, sizeof (ifr.ifr_name));
ifr.ifr_fib = fib;
if (ioctl(s, SIOCSTUNFIB, (caddr_t)&ifr) < 0)
warn("ioctl (SIOCSTUNFIB)");