make type of st_dev explicitly dev_t in x86_64 stat.h
[musl] / src / network / __ipparse.c
index 604bdc2..79f3b8c 100644 (file)
@@ -1,25 +1,30 @@
-#include <string.h>
 #include <stdlib.h>
+#include <ctype.h>
 #include <sys/socket.h>
 #include <netinet/in.h>
+#include <arpa/inet.h>
 #include "__dns.h"
-#include <stdio.h>
 
-int __ipparse(void *dest, int family, const char *s)
+int __ipparse(void *dest, int family, const char *s0)
 {
+       const char *s = s0;
        unsigned char *d = dest;
        unsigned long a[16] = { 0 };
-       const char *z;
+       char *z;
        int i;
 
        if (family == AF_INET6) goto not_v4;
 
        for (i=0; i<4; i++) {
-               a[i] = strtoul(s, (char **)&z, 0);
-               if (z==s || (*z && *z != '.')) goto not_v4;
+               a[i] = strtoul(s, &z, 0);
+               if (z==s || (*z && *z != '.') || !isdigit(*s)) {
+                       if (family == AF_INET) return -1;
+                       goto not_v4;
+               }
                if (!*z) break;
                s=z+1;
        }
+       if (i==4) return -1;
        switch (i) {
        case 0:
                a[1] = a[0] & 0xffffff;
@@ -33,9 +38,14 @@ int __ipparse(void *dest, int family, const char *s)
        }
        ((struct sockaddr_in *)d)->sin_family = AF_INET;
        d = (void *)&((struct sockaddr_in *)d)->sin_addr;
-       for (i=0; i<4; i++) d[i] = a[i];
+       for (i=0; i<4; i++) {
+               if (a[i] > 255) return -1;
+               d[i] = a[i];
+       }
        return 0;
 
 not_v4:
-       return -1;
+       s = s0;
+       ((struct sockaddr_in6 *)d)->sin6_family = AF_INET6;
+       return inet_pton(AF_INET6, s, (void *)&((struct sockaddr_in6 *)d)->sin6_addr) <= 0 ? -1 : 0;
 }