about summary refs log tree commit diff
path: root/sysdeps/mach/hurd/if_index.c
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2018-04-03 23:13:13 +0200
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2018-04-03 23:14:11 +0200
commit92846492dc3ae0be25e7ea93daf42b08906068d9 (patch)
tree6192bbf862f45a9222b25918180dac33d29f4b98 /sysdeps/mach/hurd/if_index.c
parent5e17a480f83061a0dd0228b7e6415520f3136f94 (diff)
downloadglibc-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.c8
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;