getaddrinfo.c revision 1.19 1 /* $NetBSD: getaddrinfo.c,v 1.19 2000/01/17 15:57:29 itojun Exp $ */
2
3 /*
4 * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. Neither the name of the project nor the names of its contributors
16 * may be used to endorse or promote products derived from this software
17 * without specific prior written permission.
18 *
19 * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 * SUCH DAMAGE.
30 */
31
32 /*
33 * "#ifdef FAITH" part is local hack for supporting IPv4-v6 translator.
34 *
35 * Issues to be discussed:
36 * - Thread safe-ness must be checked.
37 * - Return values. There are nonstandard return values defined and used
38 * in the source code. This is because RFC2553 is silent about which error
39 * code must be returned for which situation.
40 * Note:
41 * - We use getipnodebyname() just for thread-safeness. There's no intent
42 * to let it do PF_UNSPEC (actually we never pass PF_UNSPEC to
43 * getipnodebyname().
44 * - The code filters out AFs that are not supported by the kernel,
45 * when resolving FQDNs and globbing NULL hostname. Is it the right
46 * thing to do? What is the relationship with post-RFC2553 AI_ADDRCONFIG
47 * in ai_flags?
48 */
49
50 #include <sys/types.h>
51 #include <sys/param.h>
52 #include <sys/socket.h>
53 #include <net/if.h>
54 #include <netinet/in.h>
55 #include <arpa/inet.h>
56 #include <arpa/nameser.h>
57 #include <netdb.h>
58 #include <resolv.h>
59 #include <string.h>
60 #include <stdlib.h>
61 #include <stddef.h>
62 #include <ctype.h>
63 #include <unistd.h>
64 #include <stdio.h>
65 #include <errno.h>
66
67 #define SUCCESS 0
68 #define ANY 0
69 #define YES 1
70 #define NO 0
71
72 #ifdef FAITH
73 static int translate = NO;
74 static struct in6_addr faith_prefix = IN6ADDR_ANY_INIT;
75 #endif
76
77 static const char in_addrany[] = { 0, 0, 0, 0 };
78 static const char in6_addrany[] = {
79 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
80 };
81 static const char in_loopback[] = { 127, 0, 0, 1 };
82 static const char in6_loopback[] = {
83 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1
84 };
85
86 struct sockinet {
87 u_char si_len;
88 u_char si_family;
89 u_short si_port;
90 u_int32_t si_scope_id;
91 };
92
93 static const struct afd {
94 int a_af;
95 int a_addrlen;
96 int a_socklen;
97 int a_off;
98 const char *a_addrany;
99 const char *a_loopback;
100 int a_scoped;
101 } afdl [] = {
102 #ifdef INET6
103 {PF_INET6, sizeof(struct in6_addr),
104 sizeof(struct sockaddr_in6),
105 offsetof(struct sockaddr_in6, sin6_addr),
106 in6_addrany, in6_loopback, 1},
107 #endif
108 {PF_INET, sizeof(struct in_addr),
109 sizeof(struct sockaddr_in),
110 offsetof(struct sockaddr_in, sin_addr),
111 in_addrany, in_loopback, 0},
112 {0, 0, 0, 0, NULL, NULL, 0},
113 };
114
115 struct explore {
116 int e_af;
117 int e_socktype;
118 int e_protocol;
119 const char *e_protostr;
120 int e_wild;
121 #define WILD_AF(ex) ((ex)->e_wild & 0x01)
122 #define WILD_SOCKTYPE(ex) ((ex)->e_wild & 0x02)
123 #define WILD_PROTOCOL(ex) ((ex)->e_wild & 0x04)
124 };
125
126 static const struct explore explore[] = {
127 #if 0
128 { PF_LOCAL, 0, ANY, ANY, NULL, 0x01 },
129 #endif
130 #ifdef INET6
131 { PF_INET6, SOCK_DGRAM, IPPROTO_UDP, "udp", 0x07 },
132 { PF_INET6, SOCK_STREAM, IPPROTO_TCP, "tcp", 0x07 },
133 { PF_INET6, SOCK_RAW, ANY, NULL, 0x05 },
134 #endif
135 { PF_INET, SOCK_DGRAM, IPPROTO_UDP, "udp", 0x07 },
136 { PF_INET, SOCK_STREAM, IPPROTO_TCP, "tcp", 0x07 },
137 { PF_INET, SOCK_RAW, ANY, NULL, 0x05 },
138 { -1, 0, 0, NULL, 0 },
139 };
140
141 #ifdef INET6
142 #define PTON_MAX 16
143 #else
144 #define PTON_MAX 4
145 #endif
146
147
148 static int str_isnumber __P((const char *));
149 static int explore_fqdn __P((const struct addrinfo *, const char *,
150 const char *, struct addrinfo **));
151 static int explore_null __P((const struct addrinfo *, const char *,
152 const char *, struct addrinfo **));
153 static int explore_numeric __P((const struct addrinfo *, const char *,
154 const char *, struct addrinfo **));
155 static int explore_numeric_scope __P((const struct addrinfo *, const char *,
156 const char *, struct addrinfo **));
157 static int get_name __P((const char *, const struct afd *, struct addrinfo **,
158 char *, const struct addrinfo *, const char *));
159 static int get_canonname __P((const struct addrinfo *,
160 struct addrinfo *, const char *));
161 static struct addrinfo *get_ai __P((const struct addrinfo *,
162 const struct afd *, const char *));
163 static int get_portmatch __P((const struct addrinfo *, const char *));
164 static int get_port __P((struct addrinfo *, const char *, int));
165 static const struct afd *find_afd __P((int));
166
167 static char *ai_errlist[] = {
168 "Success",
169 "Address family for hostname not supported", /* EAI_ADDRFAMILY */
170 "Temporary failure in name resolution", /* EAI_AGAIN */
171 "Invalid value for ai_flags", /* EAI_BADFLAGS */
172 "Non-recoverable failure in name resolution", /* EAI_FAIL */
173 "ai_family not supported", /* EAI_FAMILY */
174 "Memory allocation failure", /* EAI_MEMORY */
175 "No address associated with hostname", /* EAI_NODATA */
176 "hostname nor servname provided, or not known", /* EAI_NONAME */
177 "servname not supported for ai_socktype", /* EAI_SERVICE */
178 "ai_socktype not supported", /* EAI_SOCKTYPE */
179 "System error returned in errno", /* EAI_SYSTEM */
180 "Invalid value for hints", /* EAI_BADHINTS */
181 "Resolved protocol is unknown", /* EAI_PROTOCOL */
182 "Unknown error", /* EAI_MAX */
183 };
184
185 /* XXX macros that make external reference is BAD. */
186
187 #define GET_AI(ai, afd, addr) \
188 do { \
189 /* external reference: pai, error, and label free */ \
190 (ai) = get_ai(pai, (afd), (addr)); \
191 if ((ai) == NULL) { \
192 error = EAI_MEMORY; \
193 goto free; \
194 } \
195 } while (0)
196
197 #define GET_PORT(ai, serv) \
198 do { \
199 /* external reference: error and label free */ \
200 error = get_port((ai), (serv), 0); \
201 if (error != 0) \
202 goto free; \
203 } while (0)
204
205 #define GET_CANONNAME(ai, str) \
206 do { \
207 /* external reference: pai, error and label free */ \
208 error = get_canonname(pai, (ai), (str)); \
209 if (error != 0) \
210 goto free; \
211 } while (0)
212
213 #define ERR(err) \
214 do { \
215 /* external reference: error, and label bad */ \
216 error = (err); \
217 goto bad; \
218 } while (0)
219
220 #define MATCH_FAMILY(x, y, w) \
221 ((x) == (y) || ((w) && ((x) == PF_UNSPEC || (y) == PF_UNSPEC)))
222 #define MATCH(x, y, w) \
223 ((x) == (y) || ((w) && ((x) == ANY || (y) == ANY)))
224
225 char *
226 gai_strerror(ecode)
227 int ecode;
228 {
229 if (ecode < 0 || ecode > EAI_MAX)
230 ecode = EAI_MAX;
231 return ai_errlist[ecode];
232 }
233
234 void
235 freeaddrinfo(ai)
236 struct addrinfo *ai;
237 {
238 struct addrinfo *next;
239
240 do {
241 next = ai->ai_next;
242 if (ai->ai_canonname)
243 free(ai->ai_canonname);
244 /* no need to free(ai->ai_addr) */
245 free(ai);
246 } while ((ai = next) != NULL);
247 }
248
249 static int
250 str_isnumber(p)
251 const char *p;
252 {
253 char *q = (char *)p;
254 while (*q) {
255 if (! isdigit(*q))
256 return NO;
257 q++;
258 }
259 return YES;
260 }
261
262 int
263 getaddrinfo(hostname, servname, hints, res)
264 const char *hostname, *servname;
265 const struct addrinfo *hints;
266 struct addrinfo **res;
267 {
268 struct addrinfo sentinel;
269 struct addrinfo *cur;
270 int error = 0;
271 struct addrinfo ai;
272 struct addrinfo ai0;
273 struct addrinfo *pai;
274 const struct afd *afd;
275 const struct explore *ex;
276
277 #ifdef FAITH
278 static int firsttime = 1;
279
280 if (firsttime) {
281 /* translator hack */
282 char *q = getenv("GAI");
283 if (q && inet_pton(AF_INET6, q, &faith_prefix) == 1)
284 translate = YES;
285 firsttime = 0;
286 }
287 #endif
288
289 sentinel.ai_next = NULL;
290 cur = &sentinel;
291 pai = &ai;
292 pai->ai_flags = 0;
293 pai->ai_family = PF_UNSPEC;
294 pai->ai_socktype = ANY;
295 pai->ai_protocol = ANY;
296 pai->ai_addrlen = 0;
297 pai->ai_canonname = NULL;
298 pai->ai_addr = NULL;
299 pai->ai_next = NULL;
300
301 if (hostname == NULL && servname == NULL)
302 return EAI_NONAME;
303 if (hints) {
304 /* error check for hints */
305 if (hints->ai_addrlen || hints->ai_canonname ||
306 hints->ai_addr || hints->ai_next)
307 ERR(EAI_BADHINTS); /* xxx */
308 if (hints->ai_flags & ~AI_MASK)
309 ERR(EAI_BADFLAGS);
310 switch (hints->ai_family) {
311 case PF_UNSPEC:
312 case PF_INET:
313 #ifdef INET6
314 case PF_INET6:
315 #endif
316 break;
317 default:
318 ERR(EAI_FAMILY);
319 }
320 memcpy(pai, hints, sizeof(*pai));
321
322 /*
323 * if both socktype/protocol are specified, check if they
324 * are meaningful combination.
325 */
326 if (pai->ai_socktype != ANY && pai->ai_protocol != ANY) {
327 for (ex = explore; ex->e_af >= 0; ex++) {
328 if (pai->ai_family != ex->e_af)
329 continue;
330 if (ex->e_socktype == ANY)
331 continue;
332 if (ex->e_protocol == ANY)
333 continue;
334 if (pai->ai_socktype == ex->e_socktype
335 && pai->ai_protocol != ex->e_protocol) {
336 ERR(EAI_BADHINTS);
337 }
338 }
339 }
340 }
341
342 /*
343 * check for special cases. (1) numeric servname is disallowed if
344 * socktype/protocol are left unspecified. (2) servname is disallowed
345 * for raw and other inet{,6} sockets.
346 */
347 if (MATCH_FAMILY(pai->ai_family, PF_INET, 1)
348 || MATCH_FAMILY(pai->ai_family, PF_INET6, 1)) {
349 ai0 = *pai;
350
351 if (pai->ai_family == PF_UNSPEC)
352 pai->ai_family = PF_INET6;
353 error = get_portmatch(pai, servname);
354 if (error)
355 ERR(error);
356
357 *pai = ai0;
358 }
359
360 ai0 = *pai;
361
362 /* NULL hostname, or numeric hostname */
363 for (ex = explore; ex->e_af >= 0; ex++) {
364 *pai = ai0;
365
366 if (!MATCH_FAMILY(pai->ai_family, ex->e_af, WILD_AF(ex)))
367 continue;
368 if (!MATCH(pai->ai_socktype, ex->e_socktype, WILD_SOCKTYPE(ex)))
369 continue;
370 if (!MATCH(pai->ai_protocol, ex->e_protocol, WILD_PROTOCOL(ex)))
371 continue;
372
373 if (pai->ai_family == PF_UNSPEC)
374 pai->ai_family = ex->e_af;
375 if (pai->ai_socktype == ANY && ex->e_socktype != ANY)
376 pai->ai_socktype = ex->e_socktype;
377 if (pai->ai_protocol == ANY && ex->e_protocol != ANY)
378 pai->ai_protocol = ex->e_protocol;
379
380 if (hostname == NULL)
381 error = explore_null(pai, hostname, servname, &cur->ai_next);
382 else
383 error = explore_numeric_scope(pai, hostname, servname, &cur->ai_next);
384
385 if (error)
386 goto free;
387
388 while (cur && cur->ai_next)
389 cur = cur->ai_next;
390 }
391
392 /*
393 * XXX
394 * If numreic representation of AF1 can be interpreted as FQDN
395 * representation of AF2, we need to think again about the code below.
396 */
397 if (sentinel.ai_next)
398 goto good;
399
400 if (pai->ai_flags & AI_NUMERICHOST)
401 ERR(EAI_NONAME);
402 if (hostname == NULL)
403 ERR(EAI_NONAME);
404
405 /*
406 * hostname as alphabetical name.
407 * we would like to prefer AF_INET6 than AF_INET, so we'll make a
408 * outer loop by AFs.
409 */
410 for (afd = afdl; afd->a_af; afd++) {
411 *pai = ai0;
412
413 if (!MATCH_FAMILY(pai->ai_family, afd->a_af, 1))
414 continue;
415
416 for (ex = explore; ex->e_af >= 0; ex++) {
417 *pai = ai0;
418
419 if (pai->ai_family == PF_UNSPEC)
420 pai->ai_family = afd->a_af;
421
422 if (!MATCH_FAMILY(pai->ai_family, ex->e_af, WILD_AF(ex)))
423 continue;
424 if (!MATCH(pai->ai_socktype, ex->e_socktype,
425 WILD_SOCKTYPE(ex))) {
426 continue;
427 }
428 if (!MATCH(pai->ai_protocol, ex->e_protocol,
429 WILD_PROTOCOL(ex))) {
430 continue;
431 }
432
433 if (pai->ai_family == PF_UNSPEC)
434 pai->ai_family = ex->e_af;
435 if (pai->ai_socktype == ANY && ex->e_socktype != ANY)
436 pai->ai_socktype = ex->e_socktype;
437 if (pai->ai_protocol == ANY && ex->e_protocol != ANY)
438 pai->ai_protocol = ex->e_protocol;
439
440 error = explore_fqdn(pai, hostname, servname,
441 &cur->ai_next);
442
443 while (cur && cur->ai_next)
444 cur = cur->ai_next;
445 }
446 }
447
448 /* XXX */
449 if (sentinel.ai_next)
450 error = 0;
451
452 if (error)
453 goto free;
454 if (error == 0) {
455 if (sentinel.ai_next) {
456 good:
457 *res = sentinel.ai_next;
458 return SUCCESS;
459 } else
460 error = EAI_FAIL;
461 }
462 free:
463 bad:
464 if (sentinel.ai_next)
465 freeaddrinfo(sentinel.ai_next);
466 *res = NULL;
467 return error;
468 }
469
470 /*
471 * FQDN hostname, DNS lookup
472 */
473 static int
474 explore_fqdn(pai, hostname, servname, res)
475 const struct addrinfo *pai;
476 const char *hostname;
477 const char *servname;
478 struct addrinfo **res;
479 {
480 #if 0
481 int s;
482 #endif
483 struct hostent *hp;
484 int h_error;
485 int af;
486 char **aplist = NULL, *apbuf = NULL;
487 char *ap;
488 struct addrinfo sentinel, *cur;
489 int i;
490 #ifndef USE_GETIPNODEBY
491 int naddrs;
492 #endif
493 const struct afd *afd;
494 int error;
495
496 *res = NULL;
497 sentinel.ai_next = NULL;
498 cur = &sentinel;
499
500 #if 0
501 /*
502 * filter out AFs that are not supported by the kernel
503 * XXX errno?
504 */
505 s = socket(pai->ai_family, SOCK_DGRAM, 0);
506 if (s < 0) {
507 if (errno != EMFILE)
508 return 0;
509 } else
510 close(s);
511 #endif
512
513 /*
514 * if the servname does not match socktype/protocol, ignore it.
515 */
516 if (get_portmatch(pai, servname) != 0)
517 return 0;
518
519 afd = find_afd(pai->ai_family);
520
521 /*
522 * post-RFC2553: should look at (pai->ai_flags & AI_ADDRCONFIG)
523 * rather than hardcoding it. we may need to add AI_ADDRCONFIG
524 * handling code by ourselves in case we don't have getipnodebyname().
525 */
526 #ifdef USE_GETIPNODEBY
527 hp = getipnodebyname(hostname, pai->ai_family, AI_ADDRCONFIG, &h_error);
528 #else
529 hp = gethostbyname2(hostname, pai->ai_family);
530 h_error = h_errno;
531 #endif
532
533 if (hp == NULL) {
534 switch (h_error) {
535 case HOST_NOT_FOUND:
536 case NO_DATA:
537 error = EAI_NODATA;
538 break;
539 case TRY_AGAIN:
540 error = EAI_AGAIN;
541 break;
542 case NO_RECOVERY:
543 case NETDB_INTERNAL:
544 default:
545 error = EAI_FAIL;
546 break;
547 }
548 } else if ((hp->h_name == NULL) || (hp->h_name[0] == 0)
549 || (hp->h_addr_list[0] == NULL)) {
550 #ifdef USE_GETIPNODEBY
551 freehostent(hp);
552 #endif
553 hp = NULL;
554 error = EAI_FAIL;
555 }
556
557 if (hp == NULL)
558 goto free;
559
560 #ifdef USE_GETIPNODEBY
561 aplist = hp->h_addr_list;
562 #else
563 /*
564 * hp will be overwritten if we use gethostbyname2().
565 * always deep copy for simplification.
566 */
567 for (naddrs = 0; hp->h_addr_list[naddrs] != NULL; naddrs++)
568 ;
569 naddrs++;
570 aplist = (char **)malloc(sizeof(aplist[0]) * naddrs);
571 apbuf = (char *)malloc(hp->h_length * naddrs);
572 if (aplist == NULL || apbuf == NULL) {
573 error = EAI_MEMORY;
574 goto free;
575 }
576 memset(aplist, 0, sizeof(aplist[0]) * naddrs);
577 for (i = 0; i < naddrs; i++) {
578 if (hp->h_addr_list[i] == NULL) {
579 aplist[i] = NULL;
580 continue;
581 }
582 memcpy(&apbuf[i * hp->h_length], hp->h_addr_list[i],
583 hp->h_length);
584 aplist[i] = &apbuf[i * hp->h_length];
585 }
586 #endif
587
588 for (i = 0; aplist[i] != NULL; i++) {
589 af = hp->h_addrtype;
590 ap = aplist[i];
591 if (af == AF_INET6
592 && IN6_IS_ADDR_V4MAPPED((struct in6_addr *)ap)) {
593 af = AF_INET;
594 ap = ap + sizeof(struct in6_addr)
595 - sizeof(struct in_addr);
596 }
597
598 if (af != pai->ai_family)
599 continue;
600
601 if ((pai->ai_flags & AI_CANONNAME) == 0) {
602 GET_AI(cur->ai_next, afd, ap);
603 GET_PORT(cur->ai_next, servname);
604 } else {
605 /*
606 * if AI_CANONNAME and if reverse lookup
607 * fail, return ai anyway to pacify
608 * calling application.
609 *
610 * XXX getaddrinfo() is a name->address
611 * translation function, and it looks
612 * strange that we do addr->name
613 * translation here.
614 */
615 get_name(ap, afd, &cur->ai_next,
616 ap, pai, servname);
617 }
618
619 while (cur && cur->ai_next)
620 cur = cur->ai_next;
621 }
622
623 *res = sentinel.ai_next;
624 return 0;
625
626 free:
627 #ifdef USE_GETIPNODEBY
628 if (hp)
629 freehostent(hp);
630 #endif
631 if (aplist)
632 free(aplist);
633 if (apbuf)
634 free(apbuf);
635 if (sentinel.ai_next)
636 freeaddrinfo(sentinel.ai_next);
637 return error;
638 }
639
640 /*
641 * hostname == NULL.
642 * passive socket -> anyaddr (0.0.0.0 or ::)
643 * non-passive socket -> localhost (127.0.0.1 or ::1)
644 */
645 static int
646 explore_null(pai, hostname, servname, res)
647 const struct addrinfo *pai;
648 const char *hostname;
649 const char *servname;
650 struct addrinfo **res;
651 {
652 int s;
653 const struct afd *afd;
654 struct addrinfo *cur;
655 struct addrinfo sentinel;
656 int error;
657
658 *res = NULL;
659 sentinel.ai_next = NULL;
660 cur = &sentinel;
661
662 /*
663 * filter out AFs that are not supported by the kernel
664 * XXX errno?
665 */
666 s = socket(pai->ai_family, SOCK_DGRAM, 0);
667 if (s < 0) {
668 if (errno != EMFILE)
669 return 0;
670 } else
671 close(s);
672
673 /*
674 * if the servname does not match socktype/protocol, ignore it.
675 */
676 if (get_portmatch(pai, servname) != 0)
677 return 0;
678
679 afd = find_afd(pai->ai_family);
680
681 if (pai->ai_flags & AI_PASSIVE) {
682 GET_AI(cur->ai_next, afd, afd->a_addrany);
683 /* xxx meaningless?
684 * GET_CANONNAME(cur->ai_next, "anyaddr");
685 */
686 GET_PORT(cur->ai_next, servname);
687 } else {
688 GET_AI(cur->ai_next, afd, afd->a_loopback);
689 /* xxx meaningless?
690 * GET_CANONNAME(cur->ai_next, "localhost");
691 */
692 GET_PORT(cur->ai_next, servname);
693 }
694 cur = cur->ai_next;
695
696 *res = sentinel.ai_next;
697 return 0;
698
699 free:
700 if (sentinel.ai_next)
701 freeaddrinfo(sentinel.ai_next);
702 return error;
703 }
704
705 /*
706 * numeric hostname
707 */
708 static int
709 explore_numeric(pai, hostname, servname, res)
710 const struct addrinfo *pai;
711 const char *hostname;
712 const char *servname;
713 struct addrinfo **res;
714 {
715 const struct afd *afd;
716 struct addrinfo *cur;
717 struct addrinfo sentinel;
718 int error;
719 char pton[PTON_MAX];
720 int flags;
721
722 *res = NULL;
723 sentinel.ai_next = NULL;
724 cur = &sentinel;
725
726 /*
727 * if the servname does not match socktype/protocol, ignore it.
728 */
729 if (get_portmatch(pai, servname) != 0)
730 return 0;
731
732 afd = find_afd(pai->ai_family);
733 flags = pai->ai_flags;
734
735 if (inet_pton(afd->a_af, hostname, pton) == 1) {
736 u_int32_t v4a;
737 #ifdef INET6
738 u_char pfx;
739 #endif
740
741 switch (afd->a_af) {
742 case AF_INET:
743 v4a = (u_int32_t)ntohl(((struct in_addr *)pton)->s_addr);
744 if (IN_MULTICAST(v4a) || IN_EXPERIMENTAL(v4a))
745 flags &= ~AI_CANONNAME;
746 v4a >>= IN_CLASSA_NSHIFT;
747 if (v4a == 0 || v4a == IN_LOOPBACKNET)
748 flags &= ~AI_CANONNAME;
749 break;
750 #ifdef INET6
751 case AF_INET6:
752 pfx = ((struct in6_addr *)pton)->s6_addr[0];
753 if (pfx == 0 || pfx == 0xfe || pfx == 0xff)
754 flags &= ~AI_CANONNAME;
755 break;
756 #endif
757 }
758
759 if (pai->ai_family == afd->a_af ||
760 pai->ai_family == PF_UNSPEC /*?*/) {
761 if ((flags & AI_CANONNAME) == 0) {
762 GET_AI(cur->ai_next, afd, pton);
763 GET_PORT(cur->ai_next, servname);
764 } else {
765 /*
766 * if AI_CANONNAME and if reverse lookup
767 * fail, return ai anyway to pacify
768 * calling application.
769 *
770 * XXX getaddrinfo() is a name->address
771 * translation function, and it looks
772 * strange that we do addr->name
773 * translation here.
774 */
775 get_name(pton, afd, &cur->ai_next,
776 pton, pai, servname);
777 }
778 while (cur && cur->ai_next)
779 cur = cur->ai_next;
780 } else
781 ERR(EAI_FAMILY); /*xxx*/
782 }
783
784 *res = sentinel.ai_next;
785 return 0;
786
787 free:
788 bad:
789 if (sentinel.ai_next)
790 freeaddrinfo(sentinel.ai_next);
791 return error;
792 }
793
794 /*
795 * numeric hostname with scope
796 */
797 static int
798 explore_numeric_scope(pai, hostname, servname, res)
799 const struct addrinfo *pai;
800 const char *hostname;
801 const char *servname;
802 struct addrinfo **res;
803 {
804 #ifndef SCOPE_DELIMITER
805 return explore_numeric(pai, hostname, servname, res);
806 #else
807 const struct afd *afd;
808 struct addrinfo *cur;
809 int error;
810 char *cp, *hostname2 = NULL;
811 int scope;
812 struct sockaddr_in6 *sin6;
813
814 /*
815 * if the servname does not match socktype/protocol, ignore it.
816 */
817 if (get_portmatch(pai, servname) != 0)
818 return 0;
819
820 afd = find_afd(pai->ai_family);
821 if (!afd->a_scoped)
822 return explore_numeric(pai, hostname, servname, res);
823
824 cp = strchr(hostname, SCOPE_DELIMITER);
825 if (cp == NULL)
826 return explore_numeric(pai, hostname, servname, res);
827
828 /*
829 * Handle special case of <scoped_address><delimiter><scope id>
830 */
831 hostname2 = strdup(hostname);
832 if (hostname2 == NULL)
833 return EAI_MEMORY;
834 /* terminate at the delimiter */
835 hostname2[cp - hostname] = '\0';
836
837 cp++;
838 switch (pai->ai_family) {
839 #ifdef INET6
840 case AF_INET6:
841 scope = if_nametoindex(cp);
842 if (scope == 0) {
843 free(hostname2);
844 return (EAI_NONAME);
845 }
846 break;
847 #endif
848 }
849
850 error = explore_numeric(pai, hostname2, servname, res);
851 if (error == 0) {
852 for (cur = *res; cur; cur = cur->ai_next) {
853 if (cur->ai_family != AF_INET6)
854 continue;
855 sin6 = (struct sockaddr_in6 *)cur->ai_addr;
856 if (IN6_IS_ADDR_LINKLOCAL(&sin6->sin6_addr) ||
857 IN6_IS_ADDR_MC_LINKLOCAL(&sin6->sin6_addr))
858 sin6->sin6_scope_id = scope;
859 }
860 }
861
862 free(hostname2);
863
864 return error;
865 #endif
866 }
867
868 static int
869 get_name(addr, afd, res, numaddr, pai, servname)
870 const char *addr;
871 const struct afd *afd;
872 struct addrinfo **res;
873 char *numaddr;
874 const struct addrinfo *pai;
875 const char *servname;
876 {
877 struct hostent *hp = NULL;
878 struct addrinfo *cur = NULL;
879 int error = 0;
880 char *ap = NULL, *cn = NULL;
881 #ifdef USE_GETIPNODEBY
882 int h_error;
883
884 hp = getipnodebyaddr(addr, afd->a_addrlen, afd->a_af, &h_error);
885 #else
886 hp = gethostbyaddr(addr, afd->a_addrlen, afd->a_af);
887 #endif
888 if (hp && hp->h_name && hp->h_name[0] && hp->h_addr_list[0]) {
889 #ifdef USE_GETIPNODEBY
890 GET_AI(cur, afd, hp->h_addr_list[0]);
891 GET_PORT(cur, servname);
892 GET_CANONNAME(cur, hp->h_name);
893 #else
894 /* hp will be damaged if we use gethostbyaddr() */
895 if ((ap = (char *)malloc(hp->h_length)) == NULL) {
896 error = EAI_MEMORY;
897 goto free;
898 }
899 memcpy(ap, hp->h_addr_list[0], hp->h_length);
900 if ((cn = strdup(hp->h_name)) == NULL) {
901 error = EAI_MEMORY;
902 goto free;
903 }
904
905 GET_AI(cur, afd, ap);
906 GET_PORT(cur, servname);
907 GET_CANONNAME(cur, cn);
908 free(ap); ap = NULL;
909 free(cn); cn = NULL;
910 #endif
911 } else {
912 GET_AI(cur, afd, numaddr);
913 GET_PORT(cur, servname);
914 }
915
916 #ifdef USE_GETIPNODEBY
917 if (hp)
918 freehostent(hp);
919 #endif
920 *res = cur;
921 return SUCCESS;
922 free:
923 if (cur)
924 freeaddrinfo(cur);
925 if (ap)
926 free(ap);
927 if (cn)
928 free(cn);
929 #ifdef USE_GETIPNODEBY
930 if (hp)
931 freehostent(hp);
932 #endif
933 *res = NULL;
934 return error;
935 }
936
937 static int
938 get_canonname(pai, ai, str)
939 const struct addrinfo *pai;
940 struct addrinfo *ai;
941 const char *str;
942 {
943 if ((pai->ai_flags & AI_CANONNAME) != 0) {
944 ai->ai_canonname = (char *)malloc(strlen(str) + 1);
945 if (ai->ai_canonname == NULL)
946 return EAI_MEMORY;
947 strcpy(ai->ai_canonname, str);
948 }
949 return 0;
950 }
951
952 static struct addrinfo *
953 get_ai(pai, afd, addr)
954 const struct addrinfo *pai;
955 const struct afd *afd;
956 const char *addr;
957 {
958 char *p;
959 struct addrinfo *ai;
960
961 ai = (struct addrinfo *)malloc(sizeof(struct addrinfo)
962 + (afd->a_socklen));
963 if (ai == NULL)
964 return NULL;
965
966 memcpy(ai, pai, sizeof(struct addrinfo));
967 ai->ai_addr = (struct sockaddr *)(ai + 1);
968 memset(ai->ai_addr, 0, afd->a_socklen);
969 ai->ai_addr->sa_len = afd->a_socklen;
970 ai->ai_addrlen = afd->a_socklen;
971 ai->ai_addr->sa_family = ai->ai_family = afd->a_af;
972 p = (char *)(ai->ai_addr);
973 memcpy(p + afd->a_off, addr, afd->a_addrlen);
974 return ai;
975 }
976
977 static int
978 get_portmatch(ai, servname)
979 const struct addrinfo *ai;
980 const char *servname;
981 {
982
983 /* get_port does not touch first argument. when matchonly == 1. */
984 return get_port((struct addrinfo *)ai, servname, 1);
985 }
986
987 static int
988 get_port(ai, servname, matchonly)
989 struct addrinfo *ai;
990 const char *servname;
991 int matchonly;
992 {
993 const char *proto;
994 struct servent *sp;
995 int port;
996 int allownumeric;
997
998 if (servname == NULL)
999 return 0;
1000 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
1001 return 0;
1002
1003 switch (ai->ai_socktype) {
1004 case SOCK_RAW:
1005 return EAI_SERVICE;
1006 case SOCK_DGRAM:
1007 case SOCK_STREAM:
1008 allownumeric = 1;
1009 break;
1010 case ANY:
1011 allownumeric = 0;
1012 break;
1013 default:
1014 return EAI_SOCKTYPE;
1015 }
1016
1017 if (str_isnumber(servname)) {
1018 if (!allownumeric)
1019 return EAI_SERVICE;
1020 port = htons(atoi(servname));
1021 if (port < 0 || port > 65535)
1022 return EAI_SERVICE;
1023 } else {
1024 switch (ai->ai_socktype) {
1025 case SOCK_DGRAM:
1026 proto = "udp";
1027 break;
1028 case SOCK_STREAM:
1029 proto = "tcp";
1030 break;
1031 default:
1032 proto = NULL;
1033 break;
1034 }
1035
1036 if ((sp = getservbyname(servname, proto)) == NULL)
1037 return EAI_SERVICE;
1038 port = sp->s_port;
1039 }
1040
1041 if (!matchonly) {
1042 switch (ai->ai_family) {
1043 case AF_INET:
1044 ((struct sockaddr_in *)ai->ai_addr)->sin_port = port;
1045 break;
1046 #ifdef INET6
1047 case AF_INET6:
1048 ((struct sockaddr_in6 *)ai->ai_addr)->sin6_port = port;
1049 break;
1050 #endif
1051 }
1052 }
1053
1054 return 0;
1055 }
1056
1057 static const struct afd *
1058 find_afd(af)
1059 int af;
1060 {
1061 const struct afd *afd;
1062
1063 if (af == PF_UNSPEC)
1064 return NULL;
1065 for (afd = afdl; afd->a_af; afd++) {
1066 if (afd->a_af == af)
1067 return afd;
1068 }
1069 return NULL;
1070 }
1071