1 /* Taken for Dropbear from OpenSSH 5.5p1 */
4 * Copyright (C) 2000-2003 Damien Miller. All rights reserved.
5 * Copyright (C) 1999 WIDE Project. All rights reserved.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
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.
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
33 * Pseudo-implementation of RFC2553 name / address resolution functions
35 * But these functions are not implemented correctly. The minimum subset
36 * is implemented for ssh use only. For example, this routine assumes
37 * that ai_family is AF_INET. Don't use it for another purpose.
45 #include <netinet/in.h>
46 #include <arpa/inet.h>
48 #ifndef HAVE_GETNAMEINFO
49 int getnameinfo(const struct sockaddr
*sa
, size_t salen
, char *host
,
50 size_t hostlen
, char *serv
, size_t servlen
, int flags
)
52 struct sockaddr_in
*sin
= (struct sockaddr_in
*)sa
;
56 if (sa
->sa_family
!= AF_UNSPEC
&& sa
->sa_family
!= AF_INET
)
59 snprintf(tmpserv
, sizeof(tmpserv
), "%d", ntohs(sin
->sin_port
));
60 if (strlcpy(serv
, tmpserv
, servlen
) >= servlen
)
65 if (flags
& NI_NUMERICHOST
) {
66 if (strlcpy(host
, inet_ntoa(sin
->sin_addr
),
72 hp
= gethostbyaddr((char *)&sin
->sin_addr
,
73 sizeof(struct in_addr
), AF_INET
);
77 if (strlcpy(host
, hp
->h_name
, hostlen
) >= hostlen
)
85 #endif /* !HAVE_GETNAMEINFO */
87 #ifndef HAVE_GAI_STRERROR
88 #ifdef HAVE_CONST_GAI_STRERROR_PROTO
97 return ("no address associated with name");
99 return ("memory allocation failure.");
101 return ("nodename nor servname provided, or not known");
103 return ("ai_family not supported");
105 return ("unknown/invalid error.");
108 #endif /* !HAVE_GAI_STRERROR */
110 #ifndef HAVE_FREEADDRINFO
112 freeaddrinfo(struct addrinfo
*ai
)
114 struct addrinfo
*next
;
122 #endif /* !HAVE_FREEADDRINFO */
124 #ifndef HAVE_GETADDRINFO
126 addrinfo
*malloc_ai(int port
, u_long addr
, const struct addrinfo
*hints
)
130 ai
= malloc(sizeof(*ai
) + sizeof(struct sockaddr_in
));
134 memset(ai
, '\0', sizeof(*ai
) + sizeof(struct sockaddr_in
));
136 ai
->ai_addr
= (struct sockaddr
*)(ai
+ 1);
137 /* XXX -- ssh doesn't use sa_len */
138 ai
->ai_addrlen
= sizeof(struct sockaddr_in
);
139 ai
->ai_addr
->sa_family
= ai
->ai_family
= AF_INET
;
141 ((struct sockaddr_in
*)(ai
)->ai_addr
)->sin_port
= port
;
142 ((struct sockaddr_in
*)(ai
)->ai_addr
)->sin_addr
.s_addr
= addr
;
144 /* XXX: the following is not generally correct, but does what we want */
145 if (hints
->ai_socktype
)
146 ai
->ai_socktype
= hints
->ai_socktype
;
148 ai
->ai_socktype
= SOCK_STREAM
;
150 if (hints
->ai_protocol
)
151 ai
->ai_protocol
= hints
->ai_protocol
;
157 getaddrinfo(const char *hostname
, const char *servname
,
158 const struct addrinfo
*hints
, struct addrinfo
**res
)
168 if (hints
&& hints
->ai_family
!= AF_UNSPEC
&&
169 hints
->ai_family
!= AF_INET
)
171 if (servname
!= NULL
) {
174 port
= strtol(servname
, &cp
, 10);
175 if (port
> 0 && port
<= 65535 && *cp
== '\0')
177 else if ((sp
= getservbyname(servname
, NULL
)) != NULL
)
183 if (hints
&& hints
->ai_flags
& AI_PASSIVE
) {
184 addr
= htonl(0x00000000);
185 if (hostname
&& inet_aton(hostname
, &in
) != 0)
187 *res
= malloc_ai(port
, addr
, hints
);
194 *res
= malloc_ai(port
, htonl(0x7f000001), hints
);
200 if (inet_aton(hostname
, &in
)) {
201 *res
= malloc_ai(port
, in
.s_addr
, hints
);
207 /* Don't try DNS if AI_NUMERICHOST is set */
208 if (hints
&& hints
->ai_flags
& AI_NUMERICHOST
)
211 hp
= gethostbyname(hostname
);
212 if (hp
&& hp
->h_name
&& hp
->h_name
[0] && hp
->h_addr_list
[0]) {
213 struct addrinfo
*cur
, *prev
;
215 cur
= prev
= *res
= NULL
;
216 for (i
= 0; hp
->h_addr_list
[i
]; i
++) {
217 struct in_addr
*in
= (struct in_addr
*)hp
->h_addr_list
[i
];
219 cur
= malloc_ai(port
, in
->s_addr
, hints
);
237 #endif /* !HAVE_GETADDRINFO */