diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2018-04-03 23:13:13 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2018-04-03 23:14:11 +0200 |
commit | 92846492dc3ae0be25e7ea93daf42b08906068d9 (patch) | |
tree | 6192bbf862f45a9222b25918180dac33d29f4b98 /sysdeps/mach/hurd/if_index.c | |
parent | 5e17a480f83061a0dd0228b7e6415520f3136f94 (diff) | |
download | glibc-92846492dc3ae0be25e7ea93daf42b08906068d9.tar.gz glibc-92846492dc3ae0be25e7ea93daf42b08906068d9.tar.xz glibc-92846492dc3ae0be25e7ea93daf42b08906068d9.zip |
hurd: Make __if_nametoindex return ENODEV if ifname is too long
rather than truncating it. * sysdeps/mach/hurd/if_index.c (__if_nametoindex): Return ENODEV if ifname is too long.
Diffstat (limited to 'sysdeps/mach/hurd/if_index.c')
-rw-r--r-- | sysdeps/mach/hurd/if_index.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/sysdeps/mach/hurd/if_index.c b/sysdeps/mach/hurd/if_index.c index 7f647b7036..b56bfc7ecd 100644 --- a/sysdeps/mach/hurd/if_index.c +++ b/sysdeps/mach/hurd/if_index.c @@ -37,9 +37,13 @@ __if_nametoindex (const char *ifname) if (fd < 0) return 0; - strncpy (ifr.ifr_name, ifname, IFNAMSIZ - 1); - ifr.ifr_name[IFNAMESIZ - 1] = '\0'; + if (strlen (ifname) >= IFNAMSIZ) + { + __set_errno (ENODEV); + return 0; + } + strncpy (ifr.ifr_name, ifname, IFNAMESIZ - 1); if (__ioctl (fd, SIOCGIFINDEX, &ifr) < 0) { int saved_errno = errno; |