MiniDLNA update: 1.0.19.1 to 1.0.20
[tomato.git] / release / src / router / dropbear / fake-rfc2553.c
blob395cfcc56e081676257b6104e9c1bc014e4ad03d
1 /* Taken for Dropbear from OpenSSH 5.5p1 */
3 /*
4 * Copyright (C) 2000-2003 Damien Miller. All rights reserved.
5 * Copyright (C) 1999 WIDE Project. 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.
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.
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.
40 #include "includes.h"
42 #include <stdlib.h>
43 #include <string.h>
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;
53 struct hostent *hp;
54 char tmpserv[16];
56 if (sa->sa_family != AF_UNSPEC && sa->sa_family != AF_INET)
57 return (EAI_FAMILY);
58 if (serv != NULL) {
59 snprintf(tmpserv, sizeof(tmpserv), "%d", ntohs(sin->sin_port));
60 if (strlcpy(serv, tmpserv, servlen) >= servlen)
61 return (EAI_MEMORY);
64 if (host != NULL) {
65 if (flags & NI_NUMERICHOST) {
66 if (strlcpy(host, inet_ntoa(sin->sin_addr),
67 hostlen) >= hostlen)
68 return (EAI_MEMORY);
69 else
70 return (0);
71 } else {
72 hp = gethostbyaddr((char *)&sin->sin_addr,
73 sizeof(struct in_addr), AF_INET);
74 if (hp == NULL)
75 return (EAI_NODATA);
77 if (strlcpy(host, hp->h_name, hostlen) >= hostlen)
78 return (EAI_MEMORY);
79 else
80 return (0);
83 return (0);
85 #endif /* !HAVE_GETNAMEINFO */
87 #ifndef HAVE_GAI_STRERROR
88 #ifdef HAVE_CONST_GAI_STRERROR_PROTO
89 const char *
90 #else
91 char *
92 #endif
93 gai_strerror(int err)
95 switch (err) {
96 case EAI_NODATA:
97 return ("no address associated with name");
98 case EAI_MEMORY:
99 return ("memory allocation failure.");
100 case EAI_NONAME:
101 return ("nodename nor servname provided, or not known");
102 case EAI_FAMILY:
103 return ("ai_family not supported");
104 default:
105 return ("unknown/invalid error.");
108 #endif /* !HAVE_GAI_STRERROR */
110 #ifndef HAVE_FREEADDRINFO
111 void
112 freeaddrinfo(struct addrinfo *ai)
114 struct addrinfo *next;
116 for(; ai != NULL;) {
117 next = ai->ai_next;
118 free(ai);
119 ai = next;
122 #endif /* !HAVE_FREEADDRINFO */
124 #ifndef HAVE_GETADDRINFO
125 static struct
126 addrinfo *malloc_ai(int port, u_long addr, const struct addrinfo *hints)
128 struct addrinfo *ai;
130 ai = malloc(sizeof(*ai) + sizeof(struct sockaddr_in));
131 if (ai == NULL)
132 return (NULL);
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;
147 else
148 ai->ai_socktype = SOCK_STREAM;
150 if (hints->ai_protocol)
151 ai->ai_protocol = hints->ai_protocol;
153 return (ai);
157 getaddrinfo(const char *hostname, const char *servname,
158 const struct addrinfo *hints, struct addrinfo **res)
160 struct hostent *hp;
161 struct servent *sp;
162 struct in_addr in;
163 int i;
164 long int port;
165 u_long addr;
167 port = 0;
168 if (hints && hints->ai_family != AF_UNSPEC &&
169 hints->ai_family != AF_INET)
170 return (EAI_FAMILY);
171 if (servname != NULL) {
172 char *cp;
174 port = strtol(servname, &cp, 10);
175 if (port > 0 && port <= 65535 && *cp == '\0')
176 port = htons(port);
177 else if ((sp = getservbyname(servname, NULL)) != NULL)
178 port = sp->s_port;
179 else
180 port = 0;
183 if (hints && hints->ai_flags & AI_PASSIVE) {
184 addr = htonl(0x00000000);
185 if (hostname && inet_aton(hostname, &in) != 0)
186 addr = in.s_addr;
187 *res = malloc_ai(port, addr, hints);
188 if (*res == NULL)
189 return (EAI_MEMORY);
190 return (0);
193 if (!hostname) {
194 *res = malloc_ai(port, htonl(0x7f000001), hints);
195 if (*res == NULL)
196 return (EAI_MEMORY);
197 return (0);
200 if (inet_aton(hostname, &in)) {
201 *res = malloc_ai(port, in.s_addr, hints);
202 if (*res == NULL)
203 return (EAI_MEMORY);
204 return (0);
207 /* Don't try DNS if AI_NUMERICHOST is set */
208 if (hints && hints->ai_flags & AI_NUMERICHOST)
209 return (EAI_NONAME);
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);
220 if (cur == NULL) {
221 if (*res != NULL)
222 freeaddrinfo(*res);
223 return (EAI_MEMORY);
225 if (prev)
226 prev->ai_next = cur;
227 else
228 *res = cur;
230 prev = cur;
232 return (0);
235 return (EAI_NODATA);
237 #endif /* !HAVE_GETADDRINFO */