switch standard resolver functions to use the new dns backend
[musl] / src / network / dns_parse.c
1 #include <string.h>
2
3 int __dns_parse(const unsigned char *r, int rlen, int (*callback)(void *, int, const void *, int, const void *), void *ctx)
4 {
5         int qdcount, ancount;
6         const unsigned char *p;
7         int len;
8
9         if ((r[3]&15)) return 0;
10         p = r+12;
11         qdcount = r[4]*256 + r[5];
12         ancount = r[6]*256 + r[7];
13         if (qdcount+ancount > 64) return -1;
14         while (qdcount--) {
15                 while (p-r < rlen && *p-1U < 127) p++;
16                 if (*p>193 || (*p==193 && p[1]>254) || p>r+506)
17                         return -1;
18                 p += 5 + !!*p;
19         }
20         while (ancount--) {
21                 while (p-r < rlen && *p-1U < 127) p++;
22                 if (*p>193 || (*p==193 && p[1]>254) || p>r+506)
23                         return -1;
24                 p += 1 + !!*p;
25                 len = p[8]*256 + p[9];
26                 if (p+len > r+rlen) return -1;
27                 if (callback(ctx, p[1], p+10, len, r) < 0) return -1;
28                 p += 10 + len;
29         }
30         return 0;
31 }