]> andersk Git - openssh.git/blob - canohost.c
- deraadt@cvs.openbsd.org 2006/08/03 03:34:42
[openssh.git] / canohost.c
1 /* $OpenBSD: canohost.c,v 1.61 2006/08/03 03:34:41 deraadt Exp $ */
2 /*
3  * Author: Tatu Ylonen <ylo@cs.hut.fi>
4  * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5  *                    All rights reserved
6  * Functions for returning the canonical host name of the remote site.
7  *
8  * As far as I am concerned, the code I have written for this software
9  * can be used freely for any purpose.  Any derived versions of this
10  * software must be clearly marked as such, and if the derived work is
11  * incompatible with the protocol description in the RFC file, it must be
12  * called by a name other than "ssh" or "Secure Shell".
13  */
14
15 #include "includes.h"
16
17 #include <sys/types.h>
18 #include <sys/socket.h>
19
20 #include <netinet/in.h>
21
22 #include <ctype.h>
23 #include <errno.h>
24 #include <netdb.h>
25 #include <stdio.h>
26 #include <stdlib.h>
27 #include <string.h>
28 #include <stdarg.h>
29
30 #include "xmalloc.h"
31 #include "packet.h"
32 #include "log.h"
33 #include "canohost.h"
34
35 static void check_ip_options(int, char *);
36
37 /*
38  * Return the canonical name of the host at the other end of the socket. The
39  * caller should free the returned string with xfree.
40  */
41
42 static char *
43 get_remote_hostname(int sock, int use_dns)
44 {
45         struct sockaddr_storage from;
46         int i;
47         socklen_t fromlen;
48         struct addrinfo hints, *ai, *aitop;
49         char name[NI_MAXHOST], ntop[NI_MAXHOST], ntop2[NI_MAXHOST];
50
51         /* Get IP address of client. */
52         fromlen = sizeof(from);
53         memset(&from, 0, sizeof(from));
54         if (getpeername(sock, (struct sockaddr *)&from, &fromlen) < 0) {
55                 debug("getpeername failed: %.100s", strerror(errno));
56                 cleanup_exit(255);
57         }
58
59         if (from.ss_family == AF_INET)
60                 check_ip_options(sock, ntop);
61
62         ipv64_normalise_mapped(&from, &fromlen);
63
64         if (from.ss_family == AF_INET6)
65                 fromlen = sizeof(struct sockaddr_in6);
66
67         if (getnameinfo((struct sockaddr *)&from, fromlen, ntop, sizeof(ntop),
68             NULL, 0, NI_NUMERICHOST) != 0)
69                 fatal("get_remote_hostname: getnameinfo NI_NUMERICHOST failed");
70
71         if (!use_dns)
72                 return xstrdup(ntop);
73
74         debug3("Trying to reverse map address %.100s.", ntop);
75         /* Map the IP address to a host name. */
76         if (getnameinfo((struct sockaddr *)&from, fromlen, name, sizeof(name),
77             NULL, 0, NI_NAMEREQD) != 0) {
78                 /* Host name not found.  Use ip address. */
79                 return xstrdup(ntop);
80         }
81
82         /*
83          * if reverse lookup result looks like a numeric hostname,
84          * someone is trying to trick us by PTR record like following:
85          *      1.1.1.10.in-addr.arpa.  IN PTR  2.3.4.5
86          */
87         memset(&hints, 0, sizeof(hints));
88         hints.ai_socktype = SOCK_DGRAM; /*dummy*/
89         hints.ai_flags = AI_NUMERICHOST;
90         if (getaddrinfo(name, "0", &hints, &ai) == 0) {
91                 logit("Nasty PTR record \"%s\" is set up for %s, ignoring",
92                     name, ntop);
93                 freeaddrinfo(ai);
94                 return xstrdup(ntop);
95         }
96
97         /*
98          * Convert it to all lowercase (which is expected by the rest
99          * of this software).
100          */
101         for (i = 0; name[i]; i++)
102                 if (isupper(name[i]))
103                         name[i] = (char)tolower(name[i]);
104         /*
105          * Map it back to an IP address and check that the given
106          * address actually is an address of this host.  This is
107          * necessary because anyone with access to a name server can
108          * define arbitrary names for an IP address. Mapping from
109          * name to IP address can be trusted better (but can still be
110          * fooled if the intruder has access to the name server of
111          * the domain).
112          */
113         memset(&hints, 0, sizeof(hints));
114         hints.ai_family = from.ss_family;
115         hints.ai_socktype = SOCK_STREAM;
116         if (getaddrinfo(name, NULL, &hints, &aitop) != 0) {
117                 logit("reverse mapping checking getaddrinfo for %.700s "
118                     "[%s] failed - POSSIBLE BREAK-IN ATTEMPT!", name, ntop);
119                 return xstrdup(ntop);
120         }
121         /* Look for the address from the list of addresses. */
122         for (ai = aitop; ai; ai = ai->ai_next) {
123                 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop2,
124                     sizeof(ntop2), NULL, 0, NI_NUMERICHOST) == 0 &&
125                     (strcmp(ntop, ntop2) == 0))
126                                 break;
127         }
128         freeaddrinfo(aitop);
129         /* If we reached the end of the list, the address was not there. */
130         if (!ai) {
131                 /* Address not found for the host name. */
132                 logit("Address %.100s maps to %.600s, but this does not "
133                     "map back to the address - POSSIBLE BREAK-IN ATTEMPT!",
134                     ntop, name);
135                 return xstrdup(ntop);
136         }
137         return xstrdup(name);
138 }
139
140 /*
141  * If IP options are supported, make sure there are none (log and
142  * disconnect them if any are found).  Basically we are worried about
143  * source routing; it can be used to pretend you are somebody
144  * (ip-address) you are not. That itself may be "almost acceptable"
145  * under certain circumstances, but rhosts autentication is useless
146  * if source routing is accepted. Notice also that if we just dropped
147  * source routing here, the other side could use IP spoofing to do
148  * rest of the interaction and could still bypass security.  So we
149  * exit here if we detect any IP options.
150  */
151 /* IPv4 only */
152 static void
153 check_ip_options(int sock, char *ipaddr)
154 {
155 #ifdef IP_OPTIONS
156         u_char options[200];
157         char text[sizeof(options) * 3 + 1];
158         socklen_t option_size;
159         u_int i;
160         int ipproto;
161         struct protoent *ip;
162
163         if ((ip = getprotobyname("ip")) != NULL)
164                 ipproto = ip->p_proto;
165         else
166                 ipproto = IPPROTO_IP;
167         option_size = sizeof(options);
168         if (getsockopt(sock, ipproto, IP_OPTIONS, options,
169             &option_size) >= 0 && option_size != 0) {
170                 text[0] = '\0';
171                 for (i = 0; i < option_size; i++)
172                         snprintf(text + i*3, sizeof(text) - i*3,
173                             " %2.2x", options[i]);
174                 fatal("Connection from %.100s with IP options:%.800s",
175                     ipaddr, text);
176         }
177 #endif /* IP_OPTIONS */
178 }
179
180 void
181 ipv64_normalise_mapped(struct sockaddr_storage *addr, socklen_t *len)
182 {
183         struct sockaddr_in6 *a6 = (struct sockaddr_in6 *)addr;
184         struct sockaddr_in *a4 = (struct sockaddr_in *)addr;
185         struct in_addr inaddr;
186         u_int16_t port;
187
188         if (addr->ss_family != AF_INET6 ||
189             !IN6_IS_ADDR_V4MAPPED(&a6->sin6_addr))
190                 return;
191
192         debug3("Normalising mapped IPv4 in IPv6 address");
193
194         memcpy(&inaddr, ((char *)&a6->sin6_addr) + 12, sizeof(inaddr));
195         port = a6->sin6_port;
196
197         memset(addr, 0, sizeof(*a4));
198
199         a4->sin_family = AF_INET;
200         *len = sizeof(*a4);
201         memcpy(&a4->sin_addr, &inaddr, sizeof(inaddr));
202         a4->sin_port = port;
203 }
204
205 /*
206  * Return the canonical name of the host in the other side of the current
207  * connection.  The host name is cached, so it is efficient to call this
208  * several times.
209  */
210
211 const char *
212 get_canonical_hostname(int use_dns)
213 {
214         char *host;
215         static char *canonical_host_name = NULL;
216         static char *remote_ip = NULL;
217
218         /* Check if we have previously retrieved name with same option. */
219         if (use_dns && canonical_host_name != NULL)
220                 return canonical_host_name;
221         if (!use_dns && remote_ip != NULL)
222                 return remote_ip;
223
224         /* Get the real hostname if socket; otherwise return UNKNOWN. */
225         if (packet_connection_is_on_socket())
226                 host = get_remote_hostname(packet_get_connection_in(), use_dns);
227         else
228                 host = "UNKNOWN";
229
230         if (use_dns)
231                 canonical_host_name = host;
232         else
233                 remote_ip = host;
234         return host;
235 }
236
237 /*
238  * Returns the local/remote IP-address/hostname of socket as a string.
239  * The returned string must be freed.
240  */
241 static char *
242 get_socket_address(int sock, int remote, int flags)
243 {
244         struct sockaddr_storage addr;
245         socklen_t addrlen;
246         char ntop[NI_MAXHOST];
247         int r;
248
249         /* Get IP address of client. */
250         addrlen = sizeof(addr);
251         memset(&addr, 0, sizeof(addr));
252
253         if (remote) {
254                 if (getpeername(sock, (struct sockaddr *)&addr, &addrlen)
255                     < 0)
256                         return NULL;
257         } else {
258                 if (getsockname(sock, (struct sockaddr *)&addr, &addrlen)
259                     < 0)
260                         return NULL;
261         }
262
263         /* Work around Linux IPv6 weirdness */
264         if (addr.ss_family == AF_INET6)
265                 addrlen = sizeof(struct sockaddr_in6);
266
267         ipv64_normalise_mapped(&addr, &addrlen);
268
269         /* Get the address in ascii. */
270         if ((r = getnameinfo((struct sockaddr *)&addr, addrlen, ntop,
271             sizeof(ntop), NULL, 0, flags)) != 0) {
272                 error("get_socket_address: getnameinfo %d failed: %s", flags,
273                     r == EAI_SYSTEM ? strerror(errno) : gai_strerror(r));
274                 return NULL;
275         }
276         return xstrdup(ntop);
277 }
278
279 char *
280 get_peer_ipaddr(int sock)
281 {
282         char *p;
283
284         if ((p = get_socket_address(sock, 1, NI_NUMERICHOST)) != NULL)
285                 return p;
286         return xstrdup("UNKNOWN");
287 }
288
289 char *
290 get_local_ipaddr(int sock)
291 {
292         char *p;
293
294         if ((p = get_socket_address(sock, 0, NI_NUMERICHOST)) != NULL)
295                 return p;
296         return xstrdup("UNKNOWN");
297 }
298
299 char *
300 get_local_name(int sock)
301 {
302         return get_socket_address(sock, 0, NI_NAMEREQD);
303 }
304
305 /*
306  * Returns the IP-address of the remote host as a string.  The returned
307  * string must not be freed.
308  */
309
310 const char *
311 get_remote_ipaddr(void)
312 {
313         static char *canonical_host_ip = NULL;
314
315         /* Check whether we have cached the ipaddr. */
316         if (canonical_host_ip == NULL) {
317                 if (packet_connection_is_on_socket()) {
318                         canonical_host_ip =
319                             get_peer_ipaddr(packet_get_connection_in());
320                         if (canonical_host_ip == NULL)
321                                 cleanup_exit(255);
322                 } else {
323                         /* If not on socket, return UNKNOWN. */
324                         canonical_host_ip = xstrdup("UNKNOWN");
325                 }
326         }
327         return canonical_host_ip;
328 }
329
330 const char *
331 get_remote_name_or_ip(u_int utmp_len, int use_dns)
332 {
333         static const char *remote = "";
334         if (utmp_len > 0)
335                 remote = get_canonical_hostname(use_dns);
336         if (utmp_len == 0 || strlen(remote) > utmp_len)
337                 remote = get_remote_ipaddr();
338         return remote;
339 }
340
341 /* Returns the local/remote port for the socket. */
342
343 static int
344 get_sock_port(int sock, int local)
345 {
346         struct sockaddr_storage from;
347         socklen_t fromlen;
348         char strport[NI_MAXSERV];
349         int r;
350
351         /* Get IP address of client. */
352         fromlen = sizeof(from);
353         memset(&from, 0, sizeof(from));
354         if (local) {
355                 if (getsockname(sock, (struct sockaddr *)&from, &fromlen) < 0) {
356                         error("getsockname failed: %.100s", strerror(errno));
357                         return 0;
358                 }
359         } else {
360                 if (getpeername(sock, (struct sockaddr *)&from, &fromlen) < 0) {
361                         debug("getpeername failed: %.100s", strerror(errno));
362                         return -1;
363                 }
364         }
365
366         /* Work around Linux IPv6 weirdness */
367         if (from.ss_family == AF_INET6)
368                 fromlen = sizeof(struct sockaddr_in6);
369
370         /* Return port number. */
371         if ((r = getnameinfo((struct sockaddr *)&from, fromlen, NULL, 0,
372             strport, sizeof(strport), NI_NUMERICSERV)) != 0)
373                 fatal("get_sock_port: getnameinfo NI_NUMERICSERV failed: %s",
374                     r == EAI_SYSTEM ? strerror(errno) : gai_strerror(r));
375         return atoi(strport);
376 }
377
378 /* Returns remote/local port number for the current connection. */
379
380 static int
381 get_port(int local)
382 {
383         /*
384          * If the connection is not a socket, return 65535.  This is
385          * intentionally chosen to be an unprivileged port number.
386          */
387         if (!packet_connection_is_on_socket())
388                 return 65535;
389
390         /* Get socket and return the port number. */
391         return get_sock_port(packet_get_connection_in(), local);
392 }
393
394 int
395 get_peer_port(int sock)
396 {
397         return get_sock_port(sock, 0);
398 }
399
400 int
401 get_remote_port(void)
402 {
403         static int port = -1;
404
405         /* Cache to avoid getpeername() on a dead connection */
406         if (port == -1)
407                 port = get_port(0);
408
409         return port;
410 }
411
412 int
413 get_local_port(void)
414 {
415         return get_port(1);
416 }
This page took 0.067657 seconds and 5 git commands to generate.