fix for previous incorrect fix of cancellation in dns lookups
[musl] / src / network / __dns.c
index a5458b5..786c054 100644 (file)
 #define PACKET_MAX 512
 #define PTR_MAX (64 + sizeof ".in-addr.arpa")
 
+static void cleanup(void *p)
+{
+       close((intptr_t)p);
+}
+
 int __dns_doqueries(unsigned char *dest, const char *name, int *rr, int rrcnt)
 {
        time_t t0 = time(0);
@@ -44,6 +49,8 @@ int __dns_doqueries(unsigned char *dest, const char *name, int *rr, int rrcnt)
        int id;
        int cs;
 
+       pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, &cs);
+
        /* Construct query template - RR and ID will be filled later */
        if (strlen(name)-1 >= 254U) return EAI_NONAME;
        q[2] = q[5] = 1;
@@ -75,17 +82,20 @@ int __dns_doqueries(unsigned char *dest, const char *name, int *rr, int rrcnt)
        }
        if (f) __fclose_ca(f);
        if (!nns) {
-               ns[0].sin.sin_family = AF_INET;
+               ns[0].sin.sin_family = family = AF_INET;
                ns[0].sin.sin_port = htons(53);
+               ns[0].sin.sin_addr.s_addr = htonl(0x7f000001);
                nns=1;
                sl = sizeof sa.sin;
        }
 
-       pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, &cs);
-
        /* Get local address and open/bind a socket */
        sa.sin.sin_family = family;
        fd = socket(family, SOCK_DGRAM, 0);
+
+       pthread_cleanup_push(cleanup, (void *)(intptr_t)fd);
+       pthread_setcancelstate(cs, 0);
+
        if (bind(fd, (void *)&sa, sl) < 0) {
                errcode = EAI_SYSTEM;
                goto out;
@@ -143,8 +153,7 @@ int __dns_doqueries(unsigned char *dest, const char *name, int *rr, int rrcnt)
                if (got+failed == rrcnt) break;
        }
 out:
-       close(fd);
-       pthread_setcancelstate(cs, 0);
+       pthread_cleanup_pop(1);
 
        /* Return the number of results, or an error code if none */
        if (got) return got;