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