]> git.ipfire.org Git - thirdparty/openssl.git/blame - crypto/bio/b_addr.c
Move a fall through comment
[thirdparty/openssl.git] / crypto / bio / b_addr.c
CommitLineData
b1322259 1/*
6738bf14 2 * Copyright 2016-2018 The OpenSSL Project Authors. All Rights Reserved.
28a0841b 3 *
09abbca1 4 * Licensed under the Apache License 2.0 (the "License"). You may not use
b1322259
RS
5 * this file except in compliance with the License. You can obtain a copy
6 * in the file LICENSE in the source distribution or at
7 * https://www.openssl.org/source/license.html
28a0841b
RL
8 */
9
86f31dd9 10#include <assert.h>
28a0841b
RL
11#include <string.h>
12
13#include "bio_lcl.h"
5c4328f0 14#include <openssl/crypto.h>
28a0841b 15
1288f26f 16#ifndef OPENSSL_NO_SOCK
28a0841b
RL
17#include <openssl/err.h>
18#include <openssl/buffer.h>
176db6dc 19#include "internal/thread_once.h"
28a0841b 20
ff234405 21CRYPTO_RWLOCK *bio_lookup_lock;
f989cd8c
AG
22static CRYPTO_ONCE bio_lookup_init = CRYPTO_ONCE_STATIC_INIT;
23
28a0841b
RL
24/*
25 * Throughout this file and bio_lcl.h, the existence of the macro
26 * AI_PASSIVE is used to detect the availability of struct addrinfo,
27 * getnameinfo() and getaddrinfo(). If that macro doesn't exist,
28 * we use our own implementation instead, using gethostbyname,
29 * getservbyname and a few other.
30 */
31
32/**********************************************************************
33 *
34 * Address structure
35 *
36 */
37
38BIO_ADDR *BIO_ADDR_new(void)
39{
43ecb9c3
RS
40 BIO_ADDR *ret = OPENSSL_zalloc(sizeof(*ret));
41
cb1d435c
MRA
42 if (ret == NULL) {
43 BIOerr(BIO_F_BIO_ADDR_NEW, ERR_R_MALLOC_FAILURE);
138388fe 44 return NULL;
cb1d435c 45 }
138388fe 46
7d1d48a2 47 ret->sa.sa_family = AF_UNSPEC;
28a0841b
RL
48 return ret;
49}
50
51void BIO_ADDR_free(BIO_ADDR *ap)
52{
53 OPENSSL_free(ap);
54}
55
7d1d48a2
MC
56void BIO_ADDR_clear(BIO_ADDR *ap)
57{
58 memset(ap, 0, sizeof(*ap));
59 ap->sa.sa_family = AF_UNSPEC;
60}
61
28a0841b
RL
62/*
63 * BIO_ADDR_make - non-public routine to fill a BIO_ADDR with the contents
64 * of a struct sockaddr.
65 */
66int BIO_ADDR_make(BIO_ADDR *ap, const struct sockaddr *sa)
67{
68 if (sa->sa_family == AF_INET) {
55bd917b 69 memcpy(&(ap->s_in), sa, sizeof(struct sockaddr_in));
28a0841b
RL
70 return 1;
71 }
72#ifdef AF_INET6
73 if (sa->sa_family == AF_INET6) {
55bd917b 74 memcpy(&(ap->s_in6), sa, sizeof(struct sockaddr_in6));
28a0841b
RL
75 return 1;
76 }
77#endif
78#ifdef AF_UNIX
17750375 79 if (sa->sa_family == AF_UNIX) {
55bd917b 80 memcpy(&(ap->s_un), sa, sizeof(struct sockaddr_un));
28a0841b
RL
81 return 1;
82 }
83#endif
84
85 return 0;
86}
87
88int BIO_ADDR_rawmake(BIO_ADDR *ap, int family,
89 const void *where, size_t wherelen,
90 unsigned short port)
91{
92#ifdef AF_UNIX
93 if (family == AF_UNIX) {
29620124 94 if (wherelen + 1 > sizeof(ap->s_un.sun_path))
28a0841b 95 return 0;
29620124
RL
96 memset(&ap->s_un, 0, sizeof(ap->s_un));
97 ap->s_un.sun_family = family;
98 strncpy(ap->s_un.sun_path, where, sizeof(ap->s_un.sun_path) - 1);
28a0841b
RL
99 return 1;
100 }
101#endif
102 if (family == AF_INET) {
103 if (wherelen != sizeof(struct in_addr))
104 return 0;
29620124
RL
105 memset(&ap->s_in, 0, sizeof(ap->s_in));
106 ap->s_in.sin_family = family;
107 ap->s_in.sin_port = port;
108 ap->s_in.sin_addr = *(struct in_addr *)where;
28a0841b
RL
109 return 1;
110 }
111#ifdef AF_INET6
112 if (family == AF_INET6) {
113 if (wherelen != sizeof(struct in6_addr))
114 return 0;
29620124
RL
115 memset(&ap->s_in6, 0, sizeof(ap->s_in6));
116 ap->s_in6.sin6_family = family;
117 ap->s_in6.sin6_port = port;
118 ap->s_in6.sin6_addr = *(struct in6_addr *)where;
28a0841b
RL
119 return 1;
120 }
121#endif
122
123 return 0;
124}
125
126int BIO_ADDR_family(const BIO_ADDR *ap)
127{
128 return ap->sa.sa_family;
129}
130
131int BIO_ADDR_rawaddress(const BIO_ADDR *ap, void *p, size_t *l)
132{
133 size_t len = 0;
134 const void *addrptr = NULL;
135
136 if (ap->sa.sa_family == AF_INET) {
29620124
RL
137 len = sizeof(ap->s_in.sin_addr);
138 addrptr = &ap->s_in.sin_addr;
28a0841b
RL
139 }
140#ifdef AF_INET6
141 else if (ap->sa.sa_family == AF_INET6) {
29620124
RL
142 len = sizeof(ap->s_in6.sin6_addr);
143 addrptr = &ap->s_in6.sin6_addr;
28a0841b
RL
144 }
145#endif
146#ifdef AF_UNIX
147 else if (ap->sa.sa_family == AF_UNIX) {
29620124
RL
148 len = strlen(ap->s_un.sun_path);
149 addrptr = &ap->s_un.sun_path;
28a0841b
RL
150 }
151#endif
152
153 if (addrptr == NULL)
154 return 0;
155
156 if (p != NULL) {
157 memcpy(p, addrptr, len);
158 }
159 if (l != NULL)
160 *l = len;
161
162 return 1;
163}
164
165unsigned short BIO_ADDR_rawport(const BIO_ADDR *ap)
166{
167 if (ap->sa.sa_family == AF_INET)
29620124 168 return ap->s_in.sin_port;
28a0841b
RL
169#ifdef AF_INET6
170 if (ap->sa.sa_family == AF_INET6)
29620124 171 return ap->s_in6.sin6_port;
28a0841b
RL
172#endif
173 return 0;
174}
175
176/*-
177 * addr_strings - helper function to get host and service names
178 * @ap: the BIO_ADDR that has the input info
179 * @numeric: 0 if actual names should be returned, 1 if the numeric
180 * representation should be returned.
181 * @hostname: a pointer to a pointer to a memory area to store the
182 * host name or numeric representation. Unused if NULL.
183 * @service: a pointer to a pointer to a memory area to store the
184 * service name or numeric representation. Unused if NULL.
185 *
186 * The return value is 0 on failure, with the error code in the error
187 * stack, and 1 on success.
188 */
189static int addr_strings(const BIO_ADDR *ap, int numeric,
190 char **hostname, char **service)
191{
ed03c461
RL
192 if (BIO_sock_init() != 1)
193 return 0;
194
28a0841b
RL
195 if (1) {
196#ifdef AI_PASSIVE
197 int ret = 0;
6faffd0a 198 char host[NI_MAXHOST] = "", serv[NI_MAXSERV] = "";
28a0841b
RL
199 int flags = 0;
200
201 if (numeric)
202 flags |= NI_NUMERICHOST | NI_NUMERICSERV;
203
204 if ((ret = getnameinfo(BIO_ADDR_sockaddr(ap),
205 BIO_ADDR_sockaddr_size(ap),
206 host, sizeof(host), serv, sizeof(serv),
207 flags)) != 0) {
208# ifdef EAI_SYSTEM
209 if (ret == EAI_SYSTEM) {
210 SYSerr(SYS_F_GETNAMEINFO, get_last_socket_error());
211 BIOerr(BIO_F_ADDR_STRINGS, ERR_R_SYS_LIB);
212 } else
213# endif
214 {
215 BIOerr(BIO_F_ADDR_STRINGS, ERR_R_SYS_LIB);
216 ERR_add_error_data(1, gai_strerror(ret));
217 }
218 return 0;
219 }
d40cf9bc 220
6faffd0a
RL
221 /* VMS getnameinfo() has a bug, it doesn't fill in serv, which
222 * leaves it with whatever garbage that happens to be there.
223 * However, we initialise serv with the empty string (serv[0]
224 * is therefore NUL), so it gets real easy to detect when things
225 * didn't go the way one might expect.
d40cf9bc 226 */
6faffd0a 227 if (serv[0] == '\0') {
d40cf9bc
RL
228 BIO_snprintf(serv, sizeof(serv), "%d",
229 ntohs(BIO_ADDR_rawport(ap)));
230 }
231
24854e01 232 if (hostname != NULL)
28a0841b 233 *hostname = OPENSSL_strdup(host);
24854e01 234 if (service != NULL)
28a0841b
RL
235 *service = OPENSSL_strdup(serv);
236 } else {
237#endif
24854e01 238 if (hostname != NULL)
29620124 239 *hostname = OPENSSL_strdup(inet_ntoa(ap->s_in.sin_addr));
24854e01 240 if (service != NULL) {
28a0841b 241 char serv[6]; /* port is 16 bits => max 5 decimal digits */
29620124 242 BIO_snprintf(serv, sizeof(serv), "%d", ntohs(ap->s_in.sin_port));
28a0841b
RL
243 *service = OPENSSL_strdup(serv);
244 }
245 }
246
24854e01
MC
247 if ((hostname != NULL && *hostname == NULL)
248 || (service != NULL && *service == NULL)) {
249 if (hostname != NULL) {
250 OPENSSL_free(*hostname);
251 *hostname = NULL;
252 }
253 if (service != NULL) {
254 OPENSSL_free(*service);
255 *service = NULL;
256 }
257 BIOerr(BIO_F_ADDR_STRINGS, ERR_R_MALLOC_FAILURE);
258 return 0;
259 }
260
28a0841b
RL
261 return 1;
262}
263
264char *BIO_ADDR_hostname_string(const BIO_ADDR *ap, int numeric)
265{
266 char *hostname = NULL;
267
268 if (addr_strings(ap, numeric, &hostname, NULL))
269 return hostname;
270
271 return NULL;
272}
273
274char *BIO_ADDR_service_string(const BIO_ADDR *ap, int numeric)
275{
276 char *service = NULL;
277
278 if (addr_strings(ap, numeric, NULL, &service))
279 return service;
280
281 return NULL;
282}
283
284char *BIO_ADDR_path_string(const BIO_ADDR *ap)
285{
286#ifdef AF_UNIX
287 if (ap->sa.sa_family == AF_UNIX)
29620124 288 return OPENSSL_strdup(ap->s_un.sun_path);
28a0841b
RL
289#endif
290 return NULL;
291}
292
293/*
294 * BIO_ADDR_sockaddr - non-public routine to return the struct sockaddr
295 * for a given BIO_ADDR. In reality, this is simply a type safe cast.
296 * The returned struct sockaddr is const, so it can't be tampered with.
297 */
298const struct sockaddr *BIO_ADDR_sockaddr(const BIO_ADDR *ap)
299{
300 return &(ap->sa);
301}
302
303/*
304 * BIO_ADDR_sockaddr_noconst - non-public function that does the same
305 * as BIO_ADDR_sockaddr, but returns a non-const. USE WITH CARE, as
306 * it allows you to tamper with the data (and thereby the contents
307 * of the input BIO_ADDR).
308 */
309struct sockaddr *BIO_ADDR_sockaddr_noconst(BIO_ADDR *ap)
310{
311 return &(ap->sa);
312}
313
314/*
315 * BIO_ADDR_sockaddr_size - non-public function that returns the size
316 * of the struct sockaddr the BIO_ADDR is using. If the protocol family
317 * isn't set or is something other than AF_INET, AF_INET6 or AF_UNIX,
318 * the size of the BIO_ADDR type is returned.
319 */
320socklen_t BIO_ADDR_sockaddr_size(const BIO_ADDR *ap)
321{
322 if (ap->sa.sa_family == AF_INET)
29620124 323 return sizeof(ap->s_in);
28a0841b
RL
324#ifdef AF_INET6
325 if (ap->sa.sa_family == AF_INET6)
29620124 326 return sizeof(ap->s_in6);
28a0841b
RL
327#endif
328#ifdef AF_UNIX
329 if (ap->sa.sa_family == AF_UNIX)
29620124 330 return sizeof(ap->s_un);
28a0841b
RL
331#endif
332 return sizeof(*ap);
333}
334
335/**********************************************************************
336 *
e5a82bfd 337 * Address info database
28a0841b
RL
338 *
339 */
340
341const BIO_ADDRINFO *BIO_ADDRINFO_next(const BIO_ADDRINFO *bai)
342{
343 if (bai != NULL)
344 return bai->bai_next;
345 return NULL;
346}
347
348int BIO_ADDRINFO_family(const BIO_ADDRINFO *bai)
349{
350 if (bai != NULL)
351 return bai->bai_family;
352 return 0;
353}
354
355int BIO_ADDRINFO_socktype(const BIO_ADDRINFO *bai)
356{
357 if (bai != NULL)
358 return bai->bai_socktype;
359 return 0;
360}
361
362int BIO_ADDRINFO_protocol(const BIO_ADDRINFO *bai)
363{
c72fb77f
RL
364 if (bai != NULL) {
365 if (bai->bai_protocol != 0)
366 return bai->bai_protocol;
367
368#ifdef AF_UNIX
369 if (bai->bai_family == AF_UNIX)
370 return 0;
371#endif
372
373 switch (bai->bai_socktype) {
374 case SOCK_STREAM:
375 return IPPROTO_TCP;
376 case SOCK_DGRAM:
377 return IPPROTO_UDP;
378 default:
379 break;
380 }
381 }
28a0841b
RL
382 return 0;
383}
384
385/*
386 * BIO_ADDRINFO_sockaddr_size - non-public function that returns the size
387 * of the struct sockaddr inside the BIO_ADDRINFO.
388 */
389socklen_t BIO_ADDRINFO_sockaddr_size(const BIO_ADDRINFO *bai)
390{
391 if (bai != NULL)
392 return bai->bai_addrlen;
393 return 0;
394}
395
396/*
397 * BIO_ADDRINFO_sockaddr - non-public function that returns bai_addr
398 * as the struct sockaddr it is.
399 */
400const struct sockaddr *BIO_ADDRINFO_sockaddr(const BIO_ADDRINFO *bai)
401{
402 if (bai != NULL)
403 return bai->bai_addr;
404 return NULL;
405}
406
407const BIO_ADDR *BIO_ADDRINFO_address(const BIO_ADDRINFO *bai)
408{
409 if (bai != NULL)
410 return (BIO_ADDR *)bai->bai_addr;
411 return NULL;
412}
413
414void BIO_ADDRINFO_free(BIO_ADDRINFO *bai)
415{
416 if (bai == NULL)
417 return;
418
419#ifdef AI_PASSIVE
420# ifdef AF_UNIX
421# define _cond bai->bai_family != AF_UNIX
422# else
423# define _cond 1
424# endif
425 if (_cond) {
426 freeaddrinfo(bai);
427 return;
428 }
429#endif
430
431 /* Free manually when we know that addrinfo_wrap() was used.
432 * See further comment above addrinfo_wrap()
433 */
434 while (bai != NULL) {
435 BIO_ADDRINFO *next = bai->bai_next;
436 OPENSSL_free(bai->bai_addr);
437 OPENSSL_free(bai);
438 bai = next;
439 }
440}
441
442/**********************************************************************
443 *
444 * Service functions
445 *
446 */
447
448/*-
449 * The specs in hostserv can take these forms:
450 *
451 * host:service => *host = "host", *service = "service"
452 * host:* => *host = "host", *service = NULL
453 * host: => *host = "host", *service = NULL
454 * :service => *host = NULL, *service = "service"
455 * *:service => *host = NULL, *service = "service"
456 *
457 * in case no : is present in the string, the result depends on
458 * hostserv_prio, as follows:
459 *
460 * when hostserv_prio == BIO_PARSE_PRIO_HOST
461 * host => *host = "host", *service untouched
462 *
463 * when hostserv_prio == BIO_PARSE_PRIO_SERV
464 * service => *host untouched, *service = "service"
465 *
466 */
467int BIO_parse_hostserv(const char *hostserv, char **host, char **service,
468 enum BIO_hostserv_priorities hostserv_prio)
469{
470 const char *h = NULL; size_t hl = 0;
471 const char *p = NULL; size_t pl = 0;
472
473 if (*hostserv == '[') {
474 if ((p = strchr(hostserv, ']')) == NULL)
475 goto spec_err;
476 h = hostserv + 1;
477 hl = p - h;
478 p++;
479 if (*p == '\0')
480 p = NULL;
481 else if (*p != ':')
482 goto spec_err;
483 else {
484 p++;
485 pl = strlen(p);
486 }
487 } else {
488 const char *p2 = strrchr(hostserv, ':');
489 p = strchr(hostserv, ':');
490
491 /*-
492 * Check for more than one colon. There are three possible
493 * interpretations:
494 * 1. IPv6 address with port number, last colon being separator.
495 * 2. IPv6 address only.
496 * 3. IPv6 address only if hostserv_prio == BIO_PARSE_PRIO_HOST,
497 * IPv6 address and port number if hostserv_prio == BIO_PARSE_PRIO_SERV
498 * Because of this ambiguity, we currently choose to make it an
499 * error.
500 */
501 if (p != p2)
502 goto amb_err;
503
504 if (p != NULL) {
505 h = hostserv;
506 hl = p - h;
507 p++;
508 pl = strlen(p);
509 } else if (hostserv_prio == BIO_PARSE_PRIO_HOST) {
510 h = hostserv;
511 hl = strlen(h);
512 } else {
513 p = hostserv;
514 pl = strlen(p);
515 }
516 }
517
80926502 518 if (p != NULL && strchr(p, ':'))
28a0841b
RL
519 goto spec_err;
520
521 if (h != NULL && host != NULL) {
522 if (hl == 0
523 || (hl == 1 && h[0] == '*')) {
524 *host = NULL;
525 } else {
526 *host = OPENSSL_strndup(h, hl);
527 if (*host == NULL)
528 goto memerr;
529 }
530 }
531 if (p != NULL && service != NULL) {
532 if (pl == 0
533 || (pl == 1 && p[0] == '*')) {
534 *service = NULL;
535 } else {
536 *service = OPENSSL_strndup(p, pl);
537 if (*service == NULL)
538 goto memerr;
539 }
540 }
541
542 return 1;
543 amb_err:
544 BIOerr(BIO_F_BIO_PARSE_HOSTSERV, BIO_R_AMBIGUOUS_HOST_OR_SERVICE);
545 return 0;
546 spec_err:
547 BIOerr(BIO_F_BIO_PARSE_HOSTSERV, BIO_R_MALFORMED_HOST_OR_SERVICE);
548 return 0;
549 memerr:
550 BIOerr(BIO_F_BIO_PARSE_HOSTSERV, ERR_R_MALLOC_FAILURE);
551 return 0;
552}
553
554/* addrinfo_wrap is used to build our own addrinfo "chain".
555 * (it has only one entry, so calling it a chain may be a stretch)
556 * It should ONLY be called when getaddrinfo() and friends
557 * aren't available, OR when dealing with a non IP protocol
558 * family, such as AF_UNIX
559 *
560 * the return value is 1 on success, or 0 on failure, which
8483a003 561 * only happens if a memory allocation error occurred.
28a0841b
RL
562 */
563static int addrinfo_wrap(int family, int socktype,
564 const void *where, size_t wherelen,
565 unsigned short port,
566 BIO_ADDRINFO **bai)
567{
cdb10bae
RS
568 if ((*bai = OPENSSL_zalloc(sizeof(**bai))) == NULL) {
569 BIOerr(BIO_F_ADDRINFO_WRAP, ERR_R_MALLOC_FAILURE);
28a0841b 570 return 0;
cdb10bae 571 }
43ecb9c3 572
28a0841b
RL
573 (*bai)->bai_family = family;
574 (*bai)->bai_socktype = socktype;
575 if (socktype == SOCK_STREAM)
576 (*bai)->bai_protocol = IPPROTO_TCP;
577 if (socktype == SOCK_DGRAM)
578 (*bai)->bai_protocol = IPPROTO_UDP;
579#ifdef AF_UNIX
580 if (family == AF_UNIX)
581 (*bai)->bai_protocol = 0;
582#endif
583 {
584 /* Magic: We know that BIO_ADDR_sockaddr_noconst is really
585 just an advanced cast of BIO_ADDR* to struct sockaddr *
586 by the power of union, so while it may seem that we're
587 creating a memory leak here, we are not. It will be
588 all right. */
589 BIO_ADDR *addr = BIO_ADDR_new();
590 if (addr != NULL) {
591 BIO_ADDR_rawmake(addr, family, where, wherelen, port);
592 (*bai)->bai_addr = BIO_ADDR_sockaddr_noconst(addr);
593 }
594 }
595 (*bai)->bai_next = NULL;
596 if ((*bai)->bai_addr == NULL) {
597 BIO_ADDRINFO_free(*bai);
598 *bai = NULL;
599 return 0;
600 }
601 return 1;
602}
603
c2e4e5d2 604DEFINE_RUN_ONCE_STATIC(do_bio_lookup_init)
f989cd8c 605{
eb2b9892
BE
606 if (!OPENSSL_init_crypto(0, NULL))
607 return 0;
63ab5ea1 608 bio_lookup_lock = CRYPTO_THREAD_lock_new();
5a7ad1f0 609 return bio_lookup_lock != NULL;
f989cd8c
AG
610}
611
5114d822
MC
612int BIO_lookup(const char *host, const char *service,
613 enum BIO_lookup_type lookup_type,
614 int family, int socktype, BIO_ADDRINFO **res)
615{
616 return BIO_lookup_ex(host, service, lookup_type, family, socktype, 0, res);
617}
618
28a0841b 619/*-
561f6f1e 620 * BIO_lookup_ex - look up the node and service you want to connect to.
28a0841b
RL
621 * @node: the node you want to connect to.
622 * @service: the service you want to connect to.
623 * @lookup_type: declare intent with the result, client or server.
624 * @family: the address family you want to use. Use AF_UNSPEC for any, or
625 * AF_INET, AF_INET6 or AF_UNIX.
626 * @socktype: The socket type you want to use. Can be SOCK_STREAM, SOCK_DGRAM
627 * or 0 for all.
5114d822
MC
628 * @protocol: The protocol to use, e.g. IPPROTO_TCP or IPPROTO_UDP or 0 for all.
629 * Note that some platforms may not return IPPROTO_SCTP without
630 * explicitly requesting it (i.e. IPPROTO_SCTP may not be returned
631 * with 0 for the protocol)
28a0841b
RL
632 * @res: Storage place for the resulting list of returned addresses
633 *
634 * This will do a lookup of the node and service that you want to connect to.
635 * It returns a linked list of different addresses you can try to connect to.
636 *
637 * When no longer needed you should call BIO_ADDRINFO_free() to free the result.
638 *
639 * The return value is 1 on success or 0 in case of error.
640 */
e8291428 641int BIO_lookup_ex(const char *host, const char *service, int lookup_type,
5114d822 642 int family, int socktype, int protocol, BIO_ADDRINFO **res)
28a0841b
RL
643{
644 int ret = 0; /* Assume failure */
645
646 switch(family) {
647 case AF_INET:
648#ifdef AF_INET6
649 case AF_INET6:
650#endif
651#ifdef AF_UNIX
652 case AF_UNIX:
653#endif
654#ifdef AF_UNSPEC
655 case AF_UNSPEC:
656#endif
657 break;
658 default:
5114d822 659 BIOerr(BIO_F_BIO_LOOKUP_EX, BIO_R_UNSUPPORTED_PROTOCOL_FAMILY);
28a0841b
RL
660 return 0;
661 }
662
663#ifdef AF_UNIX
664 if (family == AF_UNIX) {
665 if (addrinfo_wrap(family, socktype, host, strlen(host), 0, res))
666 return 1;
667 else
5114d822 668 BIOerr(BIO_F_BIO_LOOKUP_EX, ERR_R_MALLOC_FAILURE);
28a0841b
RL
669 return 0;
670 }
671#endif
672
ed03c461
RL
673 if (BIO_sock_init() != 1)
674 return 0;
675
28a0841b
RL
676 if (1) {
677#ifdef AI_PASSIVE
3e49ee23 678 int gai_ret = 0;
28a0841b 679 struct addrinfo hints;
3e49ee23 680
cbe29648 681 memset(&hints, 0, sizeof(hints));
28a0841b 682
28a0841b
RL
683 hints.ai_family = family;
684 hints.ai_socktype = socktype;
5114d822 685 hints.ai_protocol = protocol;
b8472b4e
TM
686#ifdef AI_ADDRCONFIG
687#ifdef AF_UNSPEC
688 if (family == AF_UNSPEC)
689#endif
690 hints.ai_flags |= AI_ADDRCONFIG;
691#endif
28a0841b
RL
692
693 if (lookup_type == BIO_LOOKUP_SERVER)
694 hints.ai_flags |= AI_PASSIVE;
695
696 /* Note that |res| SHOULD be a 'struct addrinfo **' thanks to
697 * macro magic in bio_lcl.h
698 */
3f91ede9 699 retry:
ed03c461 700 switch ((gai_ret = getaddrinfo(host, service, &hints, res))) {
28a0841b
RL
701# ifdef EAI_SYSTEM
702 case EAI_SYSTEM:
703 SYSerr(SYS_F_GETADDRINFO, get_last_socket_error());
5114d822 704 BIOerr(BIO_F_BIO_LOOKUP_EX, ERR_R_SYS_LIB);
28a0841b
RL
705 break;
706# endif
707 case 0:
708 ret = 1; /* Success */
709 break;
3f91ede9
TM
710# if (defined(EAI_FAMILY) || defined(EAI_ADDRFAMILY)) && defined(AI_ADDRCONFIG)
711# ifdef EAI_FAMILY
712 case EAI_FAMILY:
713# endif
714# ifdef EAI_ADDRFAMILY
715 case EAI_ADDRFAMILY:
716# endif
717 if (hints.ai_flags & AI_ADDRCONFIG) {
718 hints.ai_flags &= ~AI_ADDRCONFIG;
719 goto retry;
720 }
3f91ede9 721# endif
a2e52044 722 /* fall through */
28a0841b 723 default:
5114d822 724 BIOerr(BIO_F_BIO_LOOKUP_EX, ERR_R_SYS_LIB);
ed03c461 725 ERR_add_error_data(1, gai_strerror(gai_ret));
28a0841b
RL
726 break;
727 }
728 } else {
729#endif
37e3daf4 730 const struct hostent *he;
fcd9c8c0
RL
731/*
732 * Because struct hostent is defined for 32-bit pointers only with
733 * VMS C, we need to make sure that '&he_fallback_address' and
734 * '&he_fallback_addresses' are 32-bit pointers
735 */
736#if defined(OPENSSL_SYS_VMS) && defined(__DECC)
737# pragma pointer_size save
738# pragma pointer_size 32
739#endif
28a0841b
RL
740 /* Windows doesn't seem to have in_addr_t */
741#ifdef OPENSSL_SYS_WINDOWS
37e3daf4 742 static uint32_t he_fallback_address;
7fb4b92c
MC
743 static const char *he_fallback_addresses[] =
744 { (char *)&he_fallback_address, NULL };
28a0841b 745#else
37e3daf4 746 static in_addr_t he_fallback_address;
7fb4b92c
MC
747 static const char *he_fallback_addresses[] =
748 { (char *)&he_fallback_address, NULL };
28a0841b 749#endif
37e3daf4
KR
750 static const struct hostent he_fallback =
751 { NULL, NULL, AF_INET, sizeof(he_fallback_address),
752 (char **)&he_fallback_addresses };
fcd9c8c0
RL
753#if defined(OPENSSL_SYS_VMS) && defined(__DECC)
754# pragma pointer_size restore
755#endif
756
28a0841b 757 struct servent *se;
8483a003 758 /* Apparently, on WIN64, s_proto and s_port have traded places... */
28a0841b
RL
759#ifdef _WIN64
760 struct servent se_fallback = { NULL, NULL, NULL, 0 };
761#else
762 struct servent se_fallback = { NULL, NULL, 0, NULL };
763#endif
28a0841b 764
c2e4e5d2 765 if (!RUN_ONCE(&bio_lookup_init, do_bio_lookup_init)) {
5114d822 766 BIOerr(BIO_F_BIO_LOOKUP_EX, ERR_R_MALLOC_FAILURE);
c2e4e5d2
RL
767 ret = 0;
768 goto err;
769 }
f989cd8c
AG
770
771 CRYPTO_THREAD_write_lock(bio_lookup_lock);
37e3daf4 772 he_fallback_address = INADDR_ANY;
28a0841b
RL
773 if (host == NULL) {
774 he = &he_fallback;
775 switch(lookup_type) {
776 case BIO_LOOKUP_CLIENT:
777 he_fallback_address = INADDR_LOOPBACK;
778 break;
779 case BIO_LOOKUP_SERVER:
780 he_fallback_address = INADDR_ANY;
781 break;
782 default:
86f31dd9
MC
783 /* We forgot to handle a lookup type! */
784 assert("We forgot to handle a lookup type!" == NULL);
785 BIOerr(BIO_F_BIO_LOOKUP_EX, ERR_R_INTERNAL_ERROR);
786 ret = 0;
787 goto err;
28a0841b
RL
788 }
789 } else {
790 he = gethostbyname(host);
791
792 if (he == NULL) {
c86d1f19 793#ifndef OPENSSL_SYS_WINDOWS
3e49ee23
AP
794 /*
795 * This might be misleading, because h_errno is used as if
796 * it was errno. To minimize mixup add 1000. Underlying
797 * reason for this is that hstrerror is declared obsolete,
798 * not to mention that a) h_errno is not always guaranteed
69687aa8 799 * to be meaningless; b) hstrerror can reside in yet another
3e49ee23
AP
800 * library, linking for sake of hstrerror is an overkill;
801 * c) this path is not executed on contemporary systems
802 * anyway [above getaddrinfo/gai_strerror is]. We just let
803 * system administrator figure this out...
804 */
5c8b7b4c
KT
805# if defined(OPENSSL_SYS_VXWORKS)
806 /* h_errno doesn't exist on VxWorks */
807 SYSerr(SYS_F_GETHOSTBYNAME, 1000 );
808# else
3e49ee23 809 SYSerr(SYS_F_GETHOSTBYNAME, 1000 + h_errno);
5c8b7b4c 810# endif
c86d1f19
KR
811#else
812 SYSerr(SYS_F_GETHOSTBYNAME, WSAGetLastError());
813#endif
28a0841b
RL
814 ret = 0;
815 goto err;
816 }
817 }
818
819 if (service == NULL) {
820 se_fallback.s_port = 0;
622c7e99 821 se_fallback.s_proto = NULL;
28a0841b
RL
822 se = &se_fallback;
823 } else {
824 char *endp = NULL;
825 long portnum = strtol(service, &endp, 10);
fcd9c8c0
RL
826
827/*
828 * Because struct servent is defined for 32-bit pointers only with
829 * VMS C, we need to make sure that 'proto' is a 32-bit pointer.
830 */
831#if defined(OPENSSL_SYS_VMS) && defined(__DECC)
832# pragma pointer_size save
833# pragma pointer_size 32
834#endif
622c7e99 835 char *proto = NULL;
fcd9c8c0
RL
836#if defined(OPENSSL_SYS_VMS) && defined(__DECC)
837# pragma pointer_size restore
838#endif
622c7e99
RL
839
840 switch (socktype) {
841 case SOCK_STREAM:
842 proto = "tcp";
843 break;
844 case SOCK_DGRAM:
845 proto = "udp";
846 break;
847 }
28a0841b
RL
848
849 if (endp != service && *endp == '\0'
850 && portnum > 0 && portnum < 65536) {
3a63c0ed 851 se_fallback.s_port = htons((unsigned short)portnum);
28a0841b
RL
852 se_fallback.s_proto = proto;
853 se = &se_fallback;
854 } else if (endp == service) {
28a0841b
RL
855 se = getservbyname(service, proto);
856
857 if (se == NULL) {
c86d1f19 858#ifndef OPENSSL_SYS_WINDOWS
3e49ee23 859 SYSerr(SYS_F_GETSERVBYNAME, errno);
c86d1f19
KR
860#else
861 SYSerr(SYS_F_GETSERVBYNAME, WSAGetLastError());
862#endif
28a0841b
RL
863 goto err;
864 }
865 } else {
5114d822 866 BIOerr(BIO_F_BIO_LOOKUP_EX, BIO_R_MALFORMED_HOST_OR_SERVICE);
28a0841b
RL
867 goto err;
868 }
869 }
870
871 *res = NULL;
872
873 {
fcd9c8c0
RL
874/*
875 * Because hostent::h_addr_list is an array of 32-bit pointers with VMS C,
876 * we must make sure our iterator designates the same element type, hence
877 * the pointer size dance.
878 */
879#if defined(OPENSSL_SYS_VMS) && defined(__DECC)
880# pragma pointer_size save
881# pragma pointer_size 32
882#endif
28a0841b 883 char **addrlistp;
fcd9c8c0
RL
884#if defined(OPENSSL_SYS_VMS) && defined(__DECC)
885# pragma pointer_size restore
886#endif
28a0841b
RL
887 size_t addresses;
888 BIO_ADDRINFO *tmp_bai = NULL;
889
890 /* The easiest way to create a linked list from an
891 array is to start from the back */
892 for(addrlistp = he->h_addr_list; *addrlistp != NULL;
893 addrlistp++)
894 ;
895
896 for(addresses = addrlistp - he->h_addr_list;
897 addrlistp--, addresses-- > 0; ) {
898 if (!addrinfo_wrap(he->h_addrtype, socktype,
899 *addrlistp, he->h_length,
900 se->s_port, &tmp_bai))
901 goto addrinfo_malloc_err;
902 tmp_bai->bai_next = *res;
903 *res = tmp_bai;
904 continue;
905 addrinfo_malloc_err:
906 BIO_ADDRINFO_free(*res);
907 *res = NULL;
5114d822 908 BIOerr(BIO_F_BIO_LOOKUP_EX, ERR_R_MALLOC_FAILURE);
28a0841b
RL
909 ret = 0;
910 goto err;
911 }
912
913 ret = 1;
914 }
915 err:
f989cd8c 916 CRYPTO_THREAD_unlock(bio_lookup_lock);
28a0841b
RL
917 }
918
919 return ret;
920}
ff234405 921
1288f26f 922#endif /* OPENSSL_NO_SOCK */