fix if_indextoname error case
authorDaniel Sabogal <dsabogalcc@gmail.com>
Thu, 15 Sep 2016 15:27:30 +0000 (11:27 -0400)
committerRich Felker <dalias@aerifal.cx>
Fri, 16 Sep 2016 22:03:06 +0000 (18:03 -0400)
posix requires errno to be set to ENXIO if the interface does not exist.
linux returns ENODEV instead so we handle this.

src/network/if_indextoname.c

index 6ee7f13ce38ee10f1d32f7c9f266b9da2544beff..3b368bf0d1329be7e9844da37a3bd78eff6914b0 100644 (file)
@@ -3,6 +3,7 @@
 #include <sys/socket.h>
 #include <sys/ioctl.h>
 #include <string.h>
+#include <errno.h>
 #include "syscall.h"
 
 char *if_indextoname(unsigned index, char *name)
@@ -14,5 +15,9 @@ char *if_indextoname(unsigned index, char *name)
        ifr.ifr_ifindex = index;
        r = ioctl(fd, SIOCGIFNAME, &ifr);
        __syscall(SYS_close, fd);
-       return r < 0 ? 0 : strncpy(name, ifr.ifr_name, IF_NAMESIZE);
+       if (r < 0) {
+               if (errno == ENODEV) errno = ENXIO;
+               return 0;
+       }
+       return strncpy(name, ifr.ifr_name, IF_NAMESIZE);
 }