blob: b69f7f13fe5f56972c76747f8469cef2470b903f [file] [log] [blame]
Damien Miller34132e52000-01-14 15:45:46 +11001/*
Damien Miller53950b62003-06-14 08:43:22 +10002 * Copyright (C) 2000-2003 Damien Miller. All rights reserved.
3 * Copyright (C) 1999 WIDE Project. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. Neither the name of the project nor the names of its contributors
14 * may be used to endorse or promote products derived from this software
15 * without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 */
29
30/*
Damien Millerc28e38d2003-06-05 18:52:47 +100031 * Pseudo-implementation of RFC2553 name / address resolution functions
Damien Miller34132e52000-01-14 15:45:46 +110032 *
33 * But these functions are not implemented correctly. The minimum subset
Darren Tuckerbc976f92003-06-11 23:56:41 +100034 * is implemented for ssh use only. For example, this routine assumes
Damien Miller34132e52000-01-14 15:45:46 +110035 * that ai_family is AF_INET. Don't use it for another purpose.
Damien Miller34132e52000-01-14 15:45:46 +110036 */
37
Darren Tucker4aff13f2003-06-05 19:37:30 +100038#include "includes.h"
Damien Miller62da44f2006-07-24 15:08:35 +100039#include <string.h>
Darren Tucker4aff13f2003-06-05 19:37:30 +100040
Darren Tucker2b4e38b2006-08-05 19:18:08 +100041#include <netinet/in.h>
42#include <arpa/inet.h>
43
Damien Millerc28e38d2003-06-05 18:52:47 +100044#ifndef HAVE_GETNAMEINFO
45int getnameinfo(const struct sockaddr *sa, size_t salen, char *host,
46 size_t hostlen, char *serv, size_t servlen, int flags)
47{
48 struct sockaddr_in *sin = (struct sockaddr_in *)sa;
49 struct hostent *hp;
50 char tmpserv[16];
51
52 if (serv != NULL) {
53 snprintf(tmpserv, sizeof(tmpserv), "%d", ntohs(sin->sin_port));
54 if (strlcpy(serv, tmpserv, servlen) >= servlen)
55 return (EAI_MEMORY);
56 }
57
58 if (host != NULL) {
59 if (flags & NI_NUMERICHOST) {
60 if (strlcpy(host, inet_ntoa(sin->sin_addr),
61 hostlen) >= hostlen)
62 return (EAI_MEMORY);
63 else
64 return (0);
65 } else {
66 hp = gethostbyaddr((char *)&sin->sin_addr,
67 sizeof(struct in_addr), AF_INET);
68 if (hp == NULL)
69 return (EAI_NODATA);
70
71 if (strlcpy(host, hp->h_name, hostlen) >= hostlen)
72 return (EAI_MEMORY);
73 else
74 return (0);
75 }
76 }
77 return (0);
78}
79#endif /* !HAVE_GETNAMEINFO */
Damien Millere9cf3572001-02-09 12:55:35 +110080
Damien Miller34132e52000-01-14 15:45:46 +110081#ifndef HAVE_GAI_STRERROR
Darren Tuckerd5e082f2003-09-22 12:08:23 +100082#ifdef HAVE_CONST_GAI_STRERROR_PROTO
83const char *
84#else
Damien Miller31741252003-05-19 00:13:38 +100085char *
Darren Tuckerd5e082f2003-09-22 12:08:23 +100086#endif
Damien Miller31741252003-05-19 00:13:38 +100087gai_strerror(int err)
Damien Miller34132e52000-01-14 15:45:46 +110088{
Damien Miller31741252003-05-19 00:13:38 +100089 switch (err) {
90 case EAI_NODATA:
91 return ("no address associated with name");
92 case EAI_MEMORY:
93 return ("memory allocation failure.");
Damien Miller10eac0c2003-06-05 09:48:32 +100094 case EAI_NONAME:
95 return ("nodename nor servname provided, or not known");
Damien Miller31741252003-05-19 00:13:38 +100096 default:
97 return ("unknown/invalid error.");
Damien Miller2f6a0ad2000-05-31 11:20:11 +100098 }
Damien Miller34132e52000-01-14 15:45:46 +110099}
100#endif /* !HAVE_GAI_STRERROR */
101
102#ifndef HAVE_FREEADDRINFO
Damien Miller31741252003-05-19 00:13:38 +1000103void
104freeaddrinfo(struct addrinfo *ai)
Damien Miller34132e52000-01-14 15:45:46 +1100105{
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000106 struct addrinfo *next;
107
Damien Millerc322bba2003-05-19 10:39:37 +1000108 for(; ai != NULL;) {
109 next = ai->ai_next;
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000110 free(ai);
Damien Miller31741252003-05-19 00:13:38 +1000111 ai = next;
112 }
Damien Miller34132e52000-01-14 15:45:46 +1100113}
114#endif /* !HAVE_FREEADDRINFO */
115
116#ifndef HAVE_GETADDRINFO
Damien Miller31741252003-05-19 00:13:38 +1000117static struct
118addrinfo *malloc_ai(int port, u_long addr, const struct addrinfo *hints)
Damien Miller34132e52000-01-14 15:45:46 +1100119{
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000120 struct addrinfo *ai;
Damien Miller34132e52000-01-14 15:45:46 +1100121
Damien Millerb95bb7f2003-06-05 10:04:12 +1000122 ai = malloc(sizeof(*ai) + sizeof(struct sockaddr_in));
123 if (ai == NULL)
124 return (NULL);
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000125
Damien Miller31741252003-05-19 00:13:38 +1000126 memset(ai, '\0', sizeof(*ai) + sizeof(struct sockaddr_in));
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000127
128 ai->ai_addr = (struct sockaddr *)(ai + 1);
129 /* XXX -- ssh doesn't use sa_len */
130 ai->ai_addrlen = sizeof(struct sockaddr_in);
131 ai->ai_addr->sa_family = ai->ai_family = AF_INET;
132
133 ((struct sockaddr_in *)(ai)->ai_addr)->sin_port = port;
134 ((struct sockaddr_in *)(ai)->ai_addr)->sin_addr.s_addr = addr;
135
Darren Tuckerabef5622003-05-14 21:48:51 +1000136 /* XXX: the following is not generally correct, but does what we want */
137 if (hints->ai_socktype)
138 ai->ai_socktype = hints->ai_socktype;
139 else
140 ai->ai_socktype = SOCK_STREAM;
141
142 if (hints->ai_protocol)
143 ai->ai_protocol = hints->ai_protocol;
144
Damien Miller31741252003-05-19 00:13:38 +1000145 return (ai);
Damien Miller34132e52000-01-14 15:45:46 +1100146}
147
Damien Miller31741252003-05-19 00:13:38 +1000148int
149getaddrinfo(const char *hostname, const char *servname,
150 const struct addrinfo *hints, struct addrinfo **res)
Damien Miller34132e52000-01-14 15:45:46 +1100151{
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000152 struct hostent *hp;
Damien Miller850b9422003-02-06 10:50:42 +1100153 struct servent *sp;
Damien Miller8e394e72000-07-08 11:50:37 +1000154 struct in_addr in;
Damien Miller850b9422003-02-06 10:50:42 +1100155 int i;
156 long int port;
Damien Miller62b6b172003-03-24 13:35:58 +1100157 u_long addr;
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000158
Damien Miller850b9422003-02-06 10:50:42 +1100159 port = 0;
160 if (servname != NULL) {
161 char *cp;
162
163 port = strtol(servname, &cp, 10);
164 if (port > 0 && port <= 65535 && *cp == '\0')
165 port = htons(port);
166 else if ((sp = getservbyname(servname, NULL)) != NULL)
167 port = sp->s_port;
168 else
169 port = 0;
170 }
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000171
172 if (hints && hints->ai_flags & AI_PASSIVE) {
Damien Miller62b6b172003-03-24 13:35:58 +1100173 addr = htonl(0x00000000);
174 if (hostname && inet_aton(hostname, &in) != 0)
175 addr = in.s_addr;
Damien Miller31741252003-05-19 00:13:38 +1000176 *res = malloc_ai(port, addr, hints);
Damien Millerb95bb7f2003-06-05 10:04:12 +1000177 if (*res == NULL)
178 return (EAI_MEMORY);
Damien Miller31741252003-05-19 00:13:38 +1000179 return (0);
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000180 }
181
182 if (!hostname) {
Damien Miller31741252003-05-19 00:13:38 +1000183 *res = malloc_ai(port, htonl(0x7f000001), hints);
Damien Millerb95bb7f2003-06-05 10:04:12 +1000184 if (*res == NULL)
185 return (EAI_MEMORY);
Damien Miller31741252003-05-19 00:13:38 +1000186 return (0);
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000187 }
188
Damien Miller7a0e5dc2000-07-11 12:15:54 +1000189 if (inet_aton(hostname, &in)) {
Damien Miller31741252003-05-19 00:13:38 +1000190 *res = malloc_ai(port, in.s_addr, hints);
Damien Millerb95bb7f2003-06-05 10:04:12 +1000191 if (*res == NULL)
192 return (EAI_MEMORY);
Damien Miller31741252003-05-19 00:13:38 +1000193 return (0);
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000194 }
195
Damien Miller10eac0c2003-06-05 09:48:32 +1000196 /* Don't try DNS if AI_NUMERICHOST is set */
197 if (hints && hints->ai_flags & AI_NUMERICHOST)
198 return (EAI_NONAME);
199
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000200 hp = gethostbyname(hostname);
201 if (hp && hp->h_name && hp->h_name[0] && hp->h_addr_list[0]) {
Damien Miller31741252003-05-19 00:13:38 +1000202 struct addrinfo *cur, *prev;
203
Damien Millerb95bb7f2003-06-05 10:04:12 +1000204 cur = prev = *res = NULL;
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000205 for (i = 0; hp->h_addr_list[i]; i++) {
Damien Miller31741252003-05-19 00:13:38 +1000206 struct in_addr *in = (struct in_addr *)hp->h_addr_list[i];
207
208 cur = malloc_ai(port, in->s_addr, hints);
Damien Millerb95bb7f2003-06-05 10:04:12 +1000209 if (cur == NULL) {
210 if (*res != NULL)
211 freeaddrinfo(*res);
212 return (EAI_MEMORY);
213 }
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000214 if (prev)
215 prev->ai_next = cur;
216 else
217 *res = cur;
218
219 prev = cur;
220 }
Damien Miller31741252003-05-19 00:13:38 +1000221 return (0);
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000222 }
223
Damien Miller31741252003-05-19 00:13:38 +1000224 return (EAI_NODATA);
Damien Miller34132e52000-01-14 15:45:46 +1100225}
226#endif /* !HAVE_GETADDRINFO */