fix all implicit conversion between signed/unsigned pointers
[musl] / src / network / getaddrinfo.c
1 #include <stdlib.h>
2 #include <stdio.h>
3 #include <netdb.h>
4 #include <netinet/in.h>
5 #include <sys/socket.h>
6 #include <unistd.h>
7 #include <string.h>
8 #include <ctype.h>
9 #include "__dns.h"
10 #include "stdio_impl.h"
11
12 static int is_valid(const char *host)
13 {
14         const unsigned char *s;
15         if (strlen(host)-1 > 254 || mbstowcs(0, host, 0) > 255) return 0;
16         for (s=(void *)host; *s>=0x80 || *s=='.' || *s=='-' || isalnum(*s); s++);
17         return !*s;
18 }
19
20 #if 0
21 static int have_af(int family)
22 {
23         struct sockaddr_in6 sin6 = { .sin6_family = family };
24         socklen_t sl = family == AF_INET
25                 ? sizeof(struct sockaddr_in)
26                 : sizeof(struct sockaddr_in6);
27         int sock = socket(family, SOCK_STREAM, 0);
28         int have = !bind(sock, (void *)&sin6, sl);
29         close(sock);
30         return have;
31 }
32 #endif
33
34 #include <stdlib.h>
35 #include <netdb.h>
36
37 union sa {
38         struct sockaddr_in sin;
39         struct sockaddr_in6 sin6;
40 };
41
42 struct aibuf {
43         struct addrinfo ai;
44         union sa sa;
45 };
46
47 /* Extra slots needed for storing canonical name */
48 #define EXTRA ((256+sizeof(struct aibuf)-1)/sizeof(struct aibuf))
49
50 int getaddrinfo(const char *host, const char *serv, const struct addrinfo *hint, struct addrinfo **res)
51 {
52         int flags = hint ? hint->ai_flags : 0;
53         int family = hint ? hint->ai_family : AF_UNSPEC;
54         int type = hint ? hint->ai_socktype : 0;
55         int proto = hint ? hint->ai_protocol : 0;
56         unsigned long port = 0;
57         struct aibuf *buf;
58         union sa sa = {{0}};
59         unsigned char reply[1024];
60         int i, j;
61         //char hostbuf[256];
62         char line[512];
63         FILE *f, _f;
64         unsigned char _buf[64];
65         char *z;
66         int result;
67         int cnt;
68
69         if (host && strlen(host)>255) return EAI_NONAME;
70         if (serv && strlen(serv)>32) return EAI_SERVICE;
71
72         if (type && !proto)
73                 proto = type==SOCK_DGRAM ? IPPROTO_UDP : IPPROTO_TCP;
74         if (!type && proto)
75                 type = proto==IPPROTO_UDP ? SOCK_DGRAM : SOCK_STREAM;
76
77         if (serv) {
78                 port = strtoul(serv, &z, 0);
79                 if (!*z && port > 65535) return EAI_SERVICE;
80                 if (!port) {
81                         if (flags & AI_NUMERICSERV) return EAI_SERVICE;
82
83                         //f = fopen("/etc/services", "rb");
84                         return EAI_SERVICE;
85                 }
86                 port = htons(port);
87         }
88
89         if (!host) {
90                 if (family == AF_UNSPEC) family = AF_INET;
91                 buf = calloc(sizeof *buf, 1+EXTRA);
92                 if (!buf) return EAI_MEMORY;
93                 buf->ai.ai_protocol = proto;
94                 buf->ai.ai_socktype = type;
95                 buf->ai.ai_addr = (void *)&buf->sa;
96                 buf->ai.ai_addrlen = family==AF_INET6 ? sizeof sa.sin6 : sizeof sa.sin;
97                 buf->ai.ai_family = family;
98                 buf->sa.sin.sin_family = family;
99                 buf->sa.sin.sin_port = port;
100                 if (!(flags & AI_PASSIVE)) {
101                         if (family == AF_INET) {
102                                 0[(uint8_t*)&buf->sa.sin.sin_addr.s_addr]=127;
103                                 3[(uint8_t*)&buf->sa.sin.sin_addr.s_addr]=1;
104                         } else buf[0].sa.sin6.sin6_addr.s6_addr[15] = 1;
105                 }
106                 *res = &buf->ai;
107                 return 0;
108         }
109
110         /* Try as a numeric address */
111         if (__ipparse(&sa, family, host) >= 0) {
112                 buf = calloc(sizeof *buf, 1+EXTRA);
113                 if (!buf) return EAI_MEMORY;
114                 family = sa.sin.sin_family;
115                 buf->ai.ai_protocol = proto;
116                 buf->ai.ai_socktype = type;
117                 buf->ai.ai_addr = (void *)&buf->sa;
118                 buf->ai.ai_addrlen = family==AF_INET6 ? sizeof sa.sin6 : sizeof sa.sin;
119                 buf->ai.ai_family = family;
120                 buf->sa = sa;
121                 buf->sa.sin.sin_port = port;
122                 *res = &buf->ai;
123                 return 0;
124         }
125
126         if (flags & AI_NUMERICHOST) return EAI_NONAME;
127
128         f = __fopen_rb_ca("/etc/hosts", &_f, _buf, sizeof _buf);
129         if (f) while (fgets(line, sizeof line, f)) {
130                 char *p;
131                 size_t l = strlen(host);
132
133                 if ((p=strchr(line, '#'))) *p++='\n', *p=0;
134                 for(p=line+1; (p=strstr(p, host)) &&
135                         (!isspace(p[-1]) || !isspace(p[l])); p++);
136                 if (!p) continue;
137                 __fclose_ca(f);
138
139                 /* Isolate IP address to parse */
140                 for (p=line; *p && !isspace(*p); p++);
141                 *p++ = 0;
142                 if (__ipparse(&sa, family, line) < 0) return EAI_NONAME;
143
144                 /* Allocate and fill result buffer */
145                 buf = calloc(sizeof *buf, 1+EXTRA);
146                 if (!buf) return EAI_MEMORY;
147                 family = sa.sin.sin_family;
148                 buf->ai.ai_protocol = proto;
149                 buf->ai.ai_socktype = type;
150                 buf->ai.ai_addr = (void *)&buf->sa;
151                 buf->ai.ai_addrlen = family==AF_INET6 ? sizeof sa.sin6 : sizeof sa.sin;
152                 buf->ai.ai_family = family;
153                 buf->sa = sa;
154                 buf->sa.sin.sin_port = port;
155
156                 /* Extract first name as canonical name */
157                 for (; *p && isspace(*p); p++);
158                 buf->ai.ai_canonname = (void *)(buf+1);
159                 snprintf(buf->ai.ai_canonname, 256, "%s", p);
160                 for (p=buf->ai.ai_canonname; *p && !isspace(*p); p++);
161                 *p = 0;
162                 if (!is_valid(buf->ai.ai_canonname))
163                         buf->ai.ai_canonname = 0;
164
165                 *res = &buf->ai;
166                 return 0;
167         }
168         if (f) __fclose_ca(f);
169
170 #if 0
171         f = __fopen_rb_ca("/etc/resolv.conf", &_f, _buf, sizeof _buf);
172         if (f) while (fgets(line, sizeof line, f)) {
173                 if (!isspace(line[10]) || (strncmp(line, "search", 6)
174                         && strncmp(line, "domain", 6))) continue;
175         }
176         if (f) __fclose_ca(f);
177 #endif
178
179         /* Perform one or more DNS queries for host */
180         memset(reply, 0, sizeof reply);
181         result = __dns_query(reply, host, family, 0);
182         if (result < 0) return result;
183
184         cnt = __dns_count_addrs(reply, result);
185         if (cnt <= 0) return EAI_NONAME;
186
187         buf = calloc(sizeof *buf, cnt+EXTRA);
188         if (!buf) return EAI_MEMORY;
189
190         i = 0;
191         if (family != AF_INET6) {
192                 j = __dns_get_rr(&buf[i].sa.sin.sin_addr, sizeof *buf, 4, cnt-i, reply, RR_A, 0);
193                 while (j--) buf[i++].sa.sin.sin_family = AF_INET;
194         }
195         if (family != AF_INET) {
196                 j = __dns_get_rr(&buf[i].sa.sin6.sin6_addr, sizeof *buf, 16, cnt-i, reply, RR_AAAA, 0);
197                 while (j--) buf[i++].sa.sin.sin_family = AF_INET6;
198         }
199         if (result>1) {
200                 j = __dns_get_rr(&buf[i].sa.sin.sin_addr, sizeof *buf, 4, cnt-i, reply+512, RR_A, 0);
201                 while (j--) buf[i++].sa.sin.sin_family = AF_INET;
202                 j = __dns_get_rr(&buf[i].sa.sin6.sin6_addr, sizeof *buf, 16, cnt-i, reply+512, RR_AAAA, 0);
203                 while (j--) buf[i++].sa.sin.sin_family = AF_INET6;
204         }
205
206         if (__dns_get_rr((void *)&buf[cnt], 0, 256, 1, reply, RR_CNAME, 1) < 0)
207                 strcpy((void *)&buf[cnt], host);
208
209         for (i=0; i<cnt; i++) {
210                 buf[i].ai.ai_protocol = proto;
211                 buf[i].ai.ai_socktype = type;
212                 buf[i].ai.ai_addr = (void *)&buf[i].sa;
213                 buf[i].ai.ai_addrlen = buf[i].sa.sin.sin_family==AF_INET6
214                         ? sizeof sa.sin6 : sizeof sa.sin;
215                 buf[i].ai.ai_family = buf[i].sa.sin.sin_family;
216                 buf[i].sa.sin.sin_port = port;
217                 buf[i].ai.ai_next = &buf[i+1].ai;
218                 buf[i].ai.ai_canonname = (void *)&buf[cnt];
219         }
220         buf[cnt-1].ai.ai_next = 0;
221         *res = &buf->ai;
222
223         return 0;
224 }