]> andersk Git - openssh.git/blame - canohost.c
- (dtucker) [defines.h] Include unistd.h before defining getpgrp; fixes
[openssh.git] / canohost.c
CommitLineData
31652869 1/* $OpenBSD: canohost.c,v 1.61 2006/08/03 03:34:41 deraadt 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>
21
b6438382 22#include <ctype.h>
028094f4 23#include <errno.h>
28cb0a43 24#include <netdb.h>
cf851879 25#include <stdio.h>
ffa517a8 26#include <stdlib.h>
00146caa 27#include <string.h>
31652869 28#include <stdarg.h>
8efc0c15 29
8efc0c15 30#include "xmalloc.h"
31652869 31#include "packet.h"
42f11eb2 32#include "log.h"
5ca51e19 33#include "canohost.h"
8efc0c15 34
396c147e 35static void check_ip_options(int, char *);
61e96248 36
aa3378df 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 */
8efc0c15 41
396c147e 42static char *
ca75d7de 43get_remote_hostname(int sock, int use_dns)
8efc0c15 44{
48e671d5 45 struct sockaddr_storage from;
46 int i;
47 socklen_t fromlen;
48 struct addrinfo hints, *ai, *aitop;
61e96248 49 char name[NI_MAXHOST], ntop[NI_MAXHOST], ntop2[NI_MAXHOST];
5260325f 50
51 /* Get IP address of client. */
52 fromlen = sizeof(from);
53 memset(&from, 0, sizeof(from));
ca75d7de 54 if (getpeername(sock, (struct sockaddr *)&from, &fromlen) < 0) {
5260325f 55 debug("getpeername failed: %.100s", strerror(errno));
2362db19 56 cleanup_exit(255);
5260325f 57 }
1639bb8f 58
88680c8b 59 if (from.ss_family == AF_INET)
60 check_ip_options(sock, ntop);
61
1639bb8f 62 ipv64_normalise_mapped(&from, &fromlen);
63
e7ccd20d 64 if (from.ss_family == AF_INET6)
65 fromlen = sizeof(struct sockaddr_in6);
80faa19f 66
48e671d5 67 if (getnameinfo((struct sockaddr *)&from, fromlen, ntop, sizeof(ntop),
184eed6a 68 NULL, 0, NI_NUMERICHOST) != 0)
48e671d5 69 fatal("get_remote_hostname: getnameinfo NI_NUMERICHOST failed");
5260325f 70
c5a7d788 71 if (!use_dns)
72 return xstrdup(ntop);
73
3a83b819 74 debug3("Trying to reverse map address %.100s.", ntop);
48e671d5 75 /* Map the IP address to a host name. */
76 if (getnameinfo((struct sockaddr *)&from, fromlen, name, sizeof(name),
184eed6a 77 NULL, 0, NI_NAMEREQD) != 0) {
61e96248 78 /* Host name not found. Use ip address. */
61e96248 79 return xstrdup(ntop);
8efc0c15 80 }
5260325f 81
c5a7d788 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*/
c44d7846 89 hints.ai_flags = AI_NUMERICHOST;
c5a7d788 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
61e96248 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]))
9555d258 103 name[i] = (char)tolower(name[i]);
aa3378df 104 /*
61e96248 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).
aa3378df 112 */
61e96248 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) {
bbe88b6d 117 logit("reverse mapping checking getaddrinfo for %.700s "
22aa23f8 118 "[%s] failed - POSSIBLE BREAK-IN ATTEMPT!", name, ntop);
61e96248 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. */
bbe88b6d 132 logit("Address %.100s maps to %.600s, but this does not "
1908529f 133 "map back to the address - POSSIBLE BREAK-IN ATTEMPT!",
61e96248 134 ntop, name);
135 return xstrdup(ntop);
8efc0c15 136 }
5260325f 137 return xstrdup(name);
8efc0c15 138}
139
61e96248 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 */
396c147e 152static void
ca75d7de 153check_ip_options(int sock, char *ipaddr)
61e96248 154{
97722976 155#ifdef IP_OPTIONS
e6fa162e 156 u_char options[200];
157 char text[sizeof(options) * 3 + 1];
61e96248 158 socklen_t option_size;
2ceb8101 159 u_int i;
160 int ipproto;
61e96248 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);
ca75d7de 168 if (getsockopt(sock, ipproto, IP_OPTIONS, options,
61e96248 169 &option_size) >= 0 && option_size != 0) {
e6fa162e 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]);
3a85986d 174 fatal("Connection from %.100s with IP options:%.800s",
61e96248 175 ipaddr, text);
176 }
97722976 177#endif /* IP_OPTIONS */
61e96248 178}
179
b6610e8f 180void
1639bb8f 181ipv64_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
d1cf9a87 188 if (addr->ss_family != AF_INET6 ||
1639bb8f 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
aa3378df 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 */
8efc0c15 210
5260325f 211const char *
c5a7d788 212get_canonical_hostname(int use_dns)
8efc0c15 213{
0bbbf2a4 214 char *host;
48e671d5 215 static char *canonical_host_name = NULL;
0bbbf2a4 216 static char *remote_ip = NULL;
48e671d5 217
61e96248 218 /* Check if we have previously retrieved name with same option. */
0bbbf2a4 219 if (use_dns && canonical_host_name != NULL)
220 return canonical_host_name;
221 if (!use_dns && remote_ip != NULL)
222 return remote_ip;
8efc0c15 223
5260325f 224 /* Get the real hostname if socket; otherwise return UNKNOWN. */
48e671d5 225 if (packet_connection_is_on_socket())
0bbbf2a4 226 host = get_remote_hostname(packet_get_connection_in(), use_dns);
5260325f 227 else
0bbbf2a4 228 host = "UNKNOWN";
8efc0c15 229
0bbbf2a4 230 if (use_dns)
231 canonical_host_name = host;
232 else
233 remote_ip = host;
234 return host;
8efc0c15 235}
236
aa3378df 237/*
649bb60b 238 * Returns the local/remote IP-address/hostname of socket as a string.
239 * The returned string must be freed.
aa3378df 240 */
396c147e 241static char *
ca75d7de 242get_socket_address(int sock, int remote, int flags)
8efc0c15 243{
8002af61 244 struct sockaddr_storage addr;
245 socklen_t addrlen;
48e671d5 246 char ntop[NI_MAXHOST];
adc75586 247 int r;
5260325f 248
5260325f 249 /* Get IP address of client. */
8002af61 250 addrlen = sizeof(addr);
251 memset(&addr, 0, sizeof(addr));
252
253 if (remote) {
ca75d7de 254 if (getpeername(sock, (struct sockaddr *)&addr, &addrlen)
99443922 255 < 0)
8002af61 256 return NULL;
8002af61 257 } else {
ca75d7de 258 if (getsockname(sock, (struct sockaddr *)&addr, &addrlen)
99443922 259 < 0)
8002af61 260 return NULL;
5260325f 261 }
e7ccd20d 262
263 /* Work around Linux IPv6 weirdness */
264 if (addr.ss_family == AF_INET6)
265 addrlen = sizeof(struct sockaddr_in6);
266
a56cebd3 267 ipv64_normalise_mapped(&addr, &addrlen);
268
8002af61 269 /* Get the address in ascii. */
adc75586 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));
865ac82e 274 return NULL;
275 }
276 return xstrdup(ntop);
277}
48e671d5 278
8002af61 279char *
ca75d7de 280get_peer_ipaddr(int sock)
8002af61 281{
99443922 282 char *p;
283
ca75d7de 284 if ((p = get_socket_address(sock, 1, NI_NUMERICHOST)) != NULL)
99443922 285 return p;
286 return xstrdup("UNKNOWN");
8002af61 287}
288
289char *
ca75d7de 290get_local_ipaddr(int sock)
8002af61 291{
99443922 292 char *p;
293
ca75d7de 294 if ((p = get_socket_address(sock, 0, NI_NUMERICHOST)) != NULL)
99443922 295 return p;
296 return xstrdup("UNKNOWN");
8002af61 297}
298
299char *
ca75d7de 300get_local_name(int sock)
8002af61 301{
ca75d7de 302 return get_socket_address(sock, 0, NI_NAMEREQD);
8002af61 303}
304
865ac82e 305/*
306 * Returns the IP-address of the remote host as a string. The returned
307 * string must not be freed.
308 */
5260325f 309
865ac82e 310const char *
d5bb9418 311get_remote_ipaddr(void)
865ac82e 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)
2362db19 321 cleanup_exit(255);
865ac82e 322 } else {
323 /* If not on socket, return UNKNOWN. */
324 canonical_host_ip = xstrdup("UNKNOWN");
325 }
326 }
5260325f 327 return canonical_host_ip;
8efc0c15 328}
329
46e3af7f 330const char *
c5a7d788 331get_remote_name_or_ip(u_int utmp_len, int use_dns)
46e3af7f 332{
333 static const char *remote = "";
334 if (utmp_len > 0)
c5a7d788 335 remote = get_canonical_hostname(use_dns);
46e3af7f 336 if (utmp_len == 0 || strlen(remote) > utmp_len)
337 remote = get_remote_ipaddr();
338 return remote;
339}
340
48e671d5 341/* Returns the local/remote port for the socket. */
8efc0c15 342
396c147e 343static int
48e671d5 344get_sock_port(int sock, int local)
8efc0c15 345{
48e671d5 346 struct sockaddr_storage from;
347 socklen_t fromlen;
348 char strport[NI_MAXSERV];
adc75586 349 int r;
5260325f 350
351 /* Get IP address of client. */
352 fromlen = sizeof(from);
353 memset(&from, 0, sizeof(from));
48e671d5 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 {
649bb60b 360 if (getpeername(sock, (struct sockaddr *)&from, &fromlen) < 0) {
48e671d5 361 debug("getpeername failed: %.100s", strerror(errno));
29798ed0 362 return -1;
48e671d5 363 }
5260325f 364 }
e7ccd20d 365
366 /* Work around Linux IPv6 weirdness */
367 if (from.ss_family == AF_INET6)
368 fromlen = sizeof(struct sockaddr_in6);
369
5260325f 370 /* Return port number. */
adc75586 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));
48e671d5 375 return atoi(strport);
8efc0c15 376}
377
48e671d5 378/* Returns remote/local port number for the current connection. */
8efc0c15 379
396c147e 380static int
48e671d5 381get_port(int local)
8efc0c15 382{
aa3378df 383 /*
384 * If the connection is not a socket, return 65535. This is
385 * intentionally chosen to be an unprivileged port number.
386 */
48e671d5 387 if (!packet_connection_is_on_socket())
5260325f 388 return 65535;
8efc0c15 389
48e671d5 390 /* Get socket and return the port number. */
391 return get_sock_port(packet_get_connection_in(), local);
392}
393
6ae2364d 394int
48e671d5 395get_peer_port(int sock)
396{
397 return get_sock_port(sock, 0);
398}
8efc0c15 399
6ae2364d 400int
d5bb9418 401get_remote_port(void)
48e671d5 402{
13f2a382 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;
48e671d5 410}
411
412int
d5bb9418 413get_local_port(void)
48e671d5 414{
415 return get_port(1);
8efc0c15 416}
This page took 0.29927 seconds and 5 git commands to generate.