fix rejection of dns responses with pointers past 512 byte offset
[musl] / src / network / res_mkquery.c
index ec4568a..614bf78 100644 (file)
@@ -1,7 +1,6 @@
 #include <resolv.h>
 #include <string.h>
 #include <time.h>
-#include "libc.h"
 
 int __res_mkquery(int op, const char *dname, int class, int type,
        const unsigned char *data, int datalen,
@@ -14,6 +13,7 @@ int __res_mkquery(int op, const char *dname, int class, int type,
        int n;
 
        if (l && dname[l-1]=='.') l--;
+       if (l && dname[l-1]=='.') return -1;
        n = 17+l+!!l;
        if (l>253 || buflen<n || op>15u || class>255u || type>255u)
                return -1;
@@ -21,6 +21,7 @@ int __res_mkquery(int op, const char *dname, int class, int type,
        /* Construct query template - ID will be filled later */
        memset(q, 0, n);
        q[2] = op*8 + 1;
+       q[3] = 32; /* AD */
        q[5] = 1;
        memcpy((char *)q+13, dname, l);
        for (i=13; q[i]; i=j+1) {