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