]> andersk Git - openssh.git/blame - canohost.c
- djm@cvs.openbsd.org 2006/03/25 01:30:23
[openssh.git] / canohost.c
CommitLineData
8efc0c15 1/*
5260325f 2 * Author: Tatu Ylonen <ylo@cs.hut.fi>
5260325f 3 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
5260325f 5 * Functions for returning the canonical host name of the remote site.
6ae2364d 6 *
bcbf86ec 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".
5260325f 12 */
8efc0c15 13
14#include "includes.h"
b6438382 15
16#include <ctype.h>
8efc0c15 17
18#include "packet.h"
19#include "xmalloc.h"
42f11eb2 20#include "log.h"
5ca51e19 21#include "canohost.h"
8efc0c15 22
396c147e 23static void check_ip_options(int, char *);
61e96248 24
aa3378df 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 */
8efc0c15 29
396c147e 30static char *
ca75d7de 31get_remote_hostname(int sock, int use_dns)
8efc0c15 32{
48e671d5 33 struct sockaddr_storage from;
34 int i;
35 socklen_t fromlen;
36 struct addrinfo hints, *ai, *aitop;
61e96248 37 char name[NI_MAXHOST], ntop[NI_MAXHOST], ntop2[NI_MAXHOST];
5260325f 38
39 /* Get IP address of client. */
40 fromlen = sizeof(from);
41 memset(&from, 0, sizeof(from));
ca75d7de 42 if (getpeername(sock, (struct sockaddr *)&from, &fromlen) < 0) {
5260325f 43 debug("getpeername failed: %.100s", strerror(errno));
2362db19 44 cleanup_exit(255);
5260325f 45 }
1639bb8f 46
47 ipv64_normalise_mapped(&from, &fromlen);
48
e7ccd20d 49 if (from.ss_family == AF_INET6)
50 fromlen = sizeof(struct sockaddr_in6);
80faa19f 51
48e671d5 52 if (getnameinfo((struct sockaddr *)&from, fromlen, ntop, sizeof(ntop),
184eed6a 53 NULL, 0, NI_NUMERICHOST) != 0)
48e671d5 54 fatal("get_remote_hostname: getnameinfo NI_NUMERICHOST failed");
5260325f 55
d2130e1f 56 if (from.ss_family == AF_INET)
57 check_ip_options(sock, ntop);
58
c5a7d788 59 if (!use_dns)
60 return xstrdup(ntop);
61
3a83b819 62 debug3("Trying to reverse map address %.100s.", ntop);
48e671d5 63 /* Map the IP address to a host name. */
64 if (getnameinfo((struct sockaddr *)&from, fromlen, name, sizeof(name),
184eed6a 65 NULL, 0, NI_NAMEREQD) != 0) {
61e96248 66 /* Host name not found. Use ip address. */
61e96248 67 return xstrdup(ntop);
8efc0c15 68 }
5260325f 69
c5a7d788 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*/
c44d7846 77 hints.ai_flags = AI_NUMERICHOST;
c5a7d788 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
61e96248 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]))
9555d258 91 name[i] = (char)tolower(name[i]);
aa3378df 92 /*
61e96248 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).
aa3378df 100 */
61e96248 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) {
bbe88b6d 105 logit("reverse mapping checking getaddrinfo for %.700s "
22aa23f8 106 "[%s] failed - POSSIBLE BREAK-IN ATTEMPT!", name, ntop);
61e96248 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. */
bbe88b6d 120 logit("Address %.100s maps to %.600s, but this does not "
1908529f 121 "map back to the address - POSSIBLE BREAK-IN ATTEMPT!",
61e96248 122 ntop, name);
123 return xstrdup(ntop);
8efc0c15 124 }
5260325f 125 return xstrdup(name);
8efc0c15 126}
127
61e96248 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 */
396c147e 140static void
ca75d7de 141check_ip_options(int sock, char *ipaddr)
61e96248 142{
97722976 143#ifdef IP_OPTIONS
e6fa162e 144 u_char options[200];
145 char text[sizeof(options) * 3 + 1];
61e96248 146 socklen_t option_size;
2ceb8101 147 u_int i;
148 int ipproto;
61e96248 149 struct protoent *ip;
150
151 if ((ip = getprotobyname("ip")) != NULL)
152 ipproto = ip->p_proto;
153 else
154 ipproto = IPPROTO_IP;
155 option_size = sizeof(options);
ca75d7de 156 if (getsockopt(sock, ipproto, IP_OPTIONS, options,
61e96248 157 &option_size) >= 0 && option_size != 0) {
e6fa162e 158 text[0] = '\0';
159 for (i = 0; i < option_size; i++)
160 snprintf(text + i*3, sizeof(text) - i*3,
161 " %2.2x", options[i]);
3a85986d 162 fatal("Connection from %.100s with IP options:%.800s",
61e96248 163 ipaddr, text);
164 }
97722976 165#endif /* IP_OPTIONS */
61e96248 166}
167
b6610e8f 168void
1639bb8f 169ipv64_normalise_mapped(struct sockaddr_storage *addr, socklen_t *len)
170{
171 struct sockaddr_in6 *a6 = (struct sockaddr_in6 *)addr;
172 struct sockaddr_in *a4 = (struct sockaddr_in *)addr;
173 struct in_addr inaddr;
174 u_int16_t port;
175
d1cf9a87 176 if (addr->ss_family != AF_INET6 ||
1639bb8f 177 !IN6_IS_ADDR_V4MAPPED(&a6->sin6_addr))
178 return;
179
180 debug3("Normalising mapped IPv4 in IPv6 address");
181
182 memcpy(&inaddr, ((char *)&a6->sin6_addr) + 12, sizeof(inaddr));
183 port = a6->sin6_port;
184
185 memset(addr, 0, sizeof(*a4));
186
187 a4->sin_family = AF_INET;
188 *len = sizeof(*a4);
189 memcpy(&a4->sin_addr, &inaddr, sizeof(inaddr));
190 a4->sin_port = port;
191}
192
aa3378df 193/*
194 * Return the canonical name of the host in the other side of the current
195 * connection. The host name is cached, so it is efficient to call this
196 * several times.
197 */
8efc0c15 198
5260325f 199const char *
c5a7d788 200get_canonical_hostname(int use_dns)
8efc0c15 201{
0bbbf2a4 202 char *host;
48e671d5 203 static char *canonical_host_name = NULL;
0bbbf2a4 204 static char *remote_ip = NULL;
48e671d5 205
61e96248 206 /* Check if we have previously retrieved name with same option. */
0bbbf2a4 207 if (use_dns && canonical_host_name != NULL)
208 return canonical_host_name;
209 if (!use_dns && remote_ip != NULL)
210 return remote_ip;
8efc0c15 211
5260325f 212 /* Get the real hostname if socket; otherwise return UNKNOWN. */
48e671d5 213 if (packet_connection_is_on_socket())
0bbbf2a4 214 host = get_remote_hostname(packet_get_connection_in(), use_dns);
5260325f 215 else
0bbbf2a4 216 host = "UNKNOWN";
8efc0c15 217
0bbbf2a4 218 if (use_dns)
219 canonical_host_name = host;
220 else
221 remote_ip = host;
222 return host;
8efc0c15 223}
224
aa3378df 225/*
649bb60b 226 * Returns the local/remote IP-address/hostname of socket as a string.
227 * The returned string must be freed.
aa3378df 228 */
396c147e 229static char *
ca75d7de 230get_socket_address(int sock, int remote, int flags)
8efc0c15 231{
8002af61 232 struct sockaddr_storage addr;
233 socklen_t addrlen;
48e671d5 234 char ntop[NI_MAXHOST];
adc75586 235 int r;
5260325f 236
5260325f 237 /* Get IP address of client. */
8002af61 238 addrlen = sizeof(addr);
239 memset(&addr, 0, sizeof(addr));
240
241 if (remote) {
ca75d7de 242 if (getpeername(sock, (struct sockaddr *)&addr, &addrlen)
99443922 243 < 0)
8002af61 244 return NULL;
8002af61 245 } else {
ca75d7de 246 if (getsockname(sock, (struct sockaddr *)&addr, &addrlen)
99443922 247 < 0)
8002af61 248 return NULL;
5260325f 249 }
e7ccd20d 250
251 /* Work around Linux IPv6 weirdness */
252 if (addr.ss_family == AF_INET6)
253 addrlen = sizeof(struct sockaddr_in6);
254
a56cebd3 255 ipv64_normalise_mapped(&addr, &addrlen);
256
8002af61 257 /* Get the address in ascii. */
adc75586 258 if ((r = getnameinfo((struct sockaddr *)&addr, addrlen, ntop,
259 sizeof(ntop), NULL, 0, flags)) != 0) {
260 error("get_socket_address: getnameinfo %d failed: %s", flags,
261 r == EAI_SYSTEM ? strerror(errno) : gai_strerror(r));
865ac82e 262 return NULL;
263 }
264 return xstrdup(ntop);
265}
48e671d5 266
8002af61 267char *
ca75d7de 268get_peer_ipaddr(int sock)
8002af61 269{
99443922 270 char *p;
271
ca75d7de 272 if ((p = get_socket_address(sock, 1, NI_NUMERICHOST)) != NULL)
99443922 273 return p;
274 return xstrdup("UNKNOWN");
8002af61 275}
276
277char *
ca75d7de 278get_local_ipaddr(int sock)
8002af61 279{
99443922 280 char *p;
281
ca75d7de 282 if ((p = get_socket_address(sock, 0, NI_NUMERICHOST)) != NULL)
99443922 283 return p;
284 return xstrdup("UNKNOWN");
8002af61 285}
286
287char *
ca75d7de 288get_local_name(int sock)
8002af61 289{
ca75d7de 290 return get_socket_address(sock, 0, NI_NAMEREQD);
8002af61 291}
292
865ac82e 293/*
294 * Returns the IP-address of the remote host as a string. The returned
295 * string must not be freed.
296 */
5260325f 297
865ac82e 298const char *
d5bb9418 299get_remote_ipaddr(void)
865ac82e 300{
301 static char *canonical_host_ip = NULL;
302
303 /* Check whether we have cached the ipaddr. */
304 if (canonical_host_ip == NULL) {
305 if (packet_connection_is_on_socket()) {
306 canonical_host_ip =
307 get_peer_ipaddr(packet_get_connection_in());
308 if (canonical_host_ip == NULL)
2362db19 309 cleanup_exit(255);
865ac82e 310 } else {
311 /* If not on socket, return UNKNOWN. */
312 canonical_host_ip = xstrdup("UNKNOWN");
313 }
314 }
5260325f 315 return canonical_host_ip;
8efc0c15 316}
317
46e3af7f 318const char *
c5a7d788 319get_remote_name_or_ip(u_int utmp_len, int use_dns)
46e3af7f 320{
321 static const char *remote = "";
322 if (utmp_len > 0)
c5a7d788 323 remote = get_canonical_hostname(use_dns);
46e3af7f 324 if (utmp_len == 0 || strlen(remote) > utmp_len)
325 remote = get_remote_ipaddr();
326 return remote;
327}
328
48e671d5 329/* Returns the local/remote port for the socket. */
8efc0c15 330
396c147e 331static int
48e671d5 332get_sock_port(int sock, int local)
8efc0c15 333{
48e671d5 334 struct sockaddr_storage from;
335 socklen_t fromlen;
336 char strport[NI_MAXSERV];
adc75586 337 int r;
5260325f 338
339 /* Get IP address of client. */
340 fromlen = sizeof(from);
341 memset(&from, 0, sizeof(from));
48e671d5 342 if (local) {
343 if (getsockname(sock, (struct sockaddr *)&from, &fromlen) < 0) {
344 error("getsockname failed: %.100s", strerror(errno));
345 return 0;
346 }
347 } else {
649bb60b 348 if (getpeername(sock, (struct sockaddr *)&from, &fromlen) < 0) {
48e671d5 349 debug("getpeername failed: %.100s", strerror(errno));
29798ed0 350 return -1;
48e671d5 351 }
5260325f 352 }
e7ccd20d 353
354 /* Work around Linux IPv6 weirdness */
355 if (from.ss_family == AF_INET6)
356 fromlen = sizeof(struct sockaddr_in6);
357
5260325f 358 /* Return port number. */
adc75586 359 if ((r = getnameinfo((struct sockaddr *)&from, fromlen, NULL, 0,
360 strport, sizeof(strport), NI_NUMERICSERV)) != 0)
361 fatal("get_sock_port: getnameinfo NI_NUMERICSERV failed: %s",
362 r == EAI_SYSTEM ? strerror(errno) : gai_strerror(r));
48e671d5 363 return atoi(strport);
8efc0c15 364}
365
48e671d5 366/* Returns remote/local port number for the current connection. */
8efc0c15 367
396c147e 368static int
48e671d5 369get_port(int local)
8efc0c15 370{
aa3378df 371 /*
372 * If the connection is not a socket, return 65535. This is
373 * intentionally chosen to be an unprivileged port number.
374 */
48e671d5 375 if (!packet_connection_is_on_socket())
5260325f 376 return 65535;
8efc0c15 377
48e671d5 378 /* Get socket and return the port number. */
379 return get_sock_port(packet_get_connection_in(), local);
380}
381
6ae2364d 382int
48e671d5 383get_peer_port(int sock)
384{
385 return get_sock_port(sock, 0);
386}
8efc0c15 387
6ae2364d 388int
d5bb9418 389get_remote_port(void)
48e671d5 390{
13f2a382 391 static int port = -1;
392
393 /* Cache to avoid getpeername() on a dead connection */
394 if (port == -1)
395 port = get_port(0);
396
397 return port;
48e671d5 398}
399
400int
d5bb9418 401get_local_port(void)
48e671d5 402{
403 return get_port(1);
8efc0c15 404}
This page took 0.616075 seconds and 5 git commands to generate.