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