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