diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2018-04-03 18:06:15 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2018-04-03 18:06:15 +0200 |
commit | 511ed56f2e792bea5e7145e1d5d5c93b9f47c41f (patch) | |
tree | 42ac6995af1c95abf73c77e4811ee3271a5232e0 | |
parent | e88ecbbfe836db5b6da809108759de4ca56be5e7 (diff) | |
download | glibc-511ed56f2e792bea5e7145e1d5d5c93b9f47c41f.zip glibc-511ed56f2e792bea5e7145e1d5d5c93b9f47c41f.tar.gz glibc-511ed56f2e792bea5e7145e1d5d5c93b9f47c41f.tar.bz2 |
hurd: Fix buffer overrun in __if_nametoindex
and building with mainline GCC which reports it.
* sysdeps/mach/hurd/if_index.c (__if_nametoindex): Always end
ifr.fr_name with a NUL caracter.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | sysdeps/mach/hurd/if_index.c | 4 |
2 files changed, 8 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2018-04-03 Samuel Thibault <samuel.thibault@ens-lyon.org> + + * sysdeps/mach/hurd/if_index.c (__if_nametoindex): Always end + ifr.fr_name with a NUL caracter. + 2018-04-03 Wilco Dijkstra <wdijkstr@arm.com> * sysdeps/ieee754/dbl-64/s_sin.c (__sin): Cleanup ifdefs. diff --git a/sysdeps/mach/hurd/if_index.c b/sysdeps/mach/hurd/if_index.c index d637353..7f647b7 100644 --- a/sysdeps/mach/hurd/if_index.c +++ b/sysdeps/mach/hurd/if_index.c @@ -37,7 +37,9 @@ __if_nametoindex (const char *ifname) if (fd < 0) return 0; - strncpy (ifr.ifr_name, ifname, IFNAMSIZ); + strncpy (ifr.ifr_name, ifname, IFNAMSIZ - 1); + ifr.ifr_name[IFNAMESIZ - 1] = '\0'; + if (__ioctl (fd, SIOCGIFINDEX, &ifr) < 0) { int saved_errno = errno; |