1 /* $OpenBSD: canohost.c,v 1.66 2010/01/13 01:20:20 dtucker Exp $ */
3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
6 * Functions for returning the canonical host name of the remote site.
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".
17 #include <sys/types.h>
18 #include <sys/socket.h>
20 #include <netinet/in.h>
21 #include <arpa/inet.h>
38 static void check_ip_options(int, char *);
39 static char *canonical_host_ip
= NULL
;
40 static int cached_port
= -1;
43 * Return the canonical name of the host at the other end of the socket. The
44 * caller should free the returned string with xfree.
48 get_remote_hostname(int sock
, int use_dns
)
50 struct sockaddr_storage from
;
53 struct addrinfo hints
, *ai
, *aitop
;
54 char name
[NI_MAXHOST
], ntop
[NI_MAXHOST
], ntop2
[NI_MAXHOST
];
56 /* Get IP address of client. */
57 fromlen
= sizeof(from
);
58 memset(&from
, 0, sizeof(from
));
59 if (getpeername(sock
, (struct sockaddr
*)&from
, &fromlen
) < 0) {
60 debug("getpeername failed: %.100s", strerror(errno
));
64 if (from
.ss_family
== AF_INET
)
65 check_ip_options(sock
, ntop
);
67 ipv64_normalise_mapped(&from
, &fromlen
);
69 if (from
.ss_family
== AF_INET6
)
70 fromlen
= sizeof(struct sockaddr_in6
);
72 if (getnameinfo((struct sockaddr
*)&from
, fromlen
, ntop
, sizeof(ntop
),
73 NULL
, 0, NI_NUMERICHOST
) != 0)
74 fatal("get_remote_hostname: getnameinfo NI_NUMERICHOST failed");
79 debug3("Trying to reverse map address %.100s.", ntop
);
80 /* Map the IP address to a host name. */
81 if (getnameinfo((struct sockaddr
*)&from
, fromlen
, name
, sizeof(name
),
82 NULL
, 0, NI_NAMEREQD
) != 0) {
83 /* Host name not found. Use ip address. */
88 * if reverse lookup result looks like a numeric hostname,
89 * someone is trying to trick us by PTR record like following:
90 * 1.1.1.10.in-addr.arpa. IN PTR 2.3.4.5
92 memset(&hints
, 0, sizeof(hints
));
93 hints
.ai_socktype
= SOCK_DGRAM
; /*dummy*/
94 hints
.ai_flags
= AI_NUMERICHOST
;
95 if (getaddrinfo(name
, NULL
, &hints
, &ai
) == 0) {
96 logit("Nasty PTR record \"%s\" is set up for %s, ignoring",
103 * Convert it to all lowercase (which is expected by the rest
106 for (i
= 0; name
[i
]; i
++)
107 if (isupper(name
[i
]))
108 name
[i
] = (char)tolower(name
[i
]);
110 * Map it back to an IP address and check that the given
111 * address actually is an address of this host. This is
112 * necessary because anyone with access to a name server can
113 * define arbitrary names for an IP address. Mapping from
114 * name to IP address can be trusted better (but can still be
115 * fooled if the intruder has access to the name server of
118 memset(&hints
, 0, sizeof(hints
));
119 hints
.ai_family
= from
.ss_family
;
120 hints
.ai_socktype
= SOCK_STREAM
;
121 if (getaddrinfo(name
, NULL
, &hints
, &aitop
) != 0) {
122 logit("reverse mapping checking getaddrinfo for %.700s "
123 "[%s] failed - POSSIBLE BREAK-IN ATTEMPT!", name
, ntop
);
124 return xstrdup(ntop
);
126 /* Look for the address from the list of addresses. */
127 for (ai
= aitop
; ai
; ai
= ai
->ai_next
) {
128 if (getnameinfo(ai
->ai_addr
, ai
->ai_addrlen
, ntop2
,
129 sizeof(ntop2
), NULL
, 0, NI_NUMERICHOST
) == 0 &&
130 (strcmp(ntop
, ntop2
) == 0))
134 /* If we reached the end of the list, the address was not there. */
136 /* Address not found for the host name. */
137 logit("Address %.100s maps to %.600s, but this does not "
138 "map back to the address - POSSIBLE BREAK-IN ATTEMPT!",
140 return xstrdup(ntop
);
142 return xstrdup(name
);
146 * If IP options are supported, make sure there are none (log and
147 * disconnect them if any are found). Basically we are worried about
148 * source routing; it can be used to pretend you are somebody
149 * (ip-address) you are not. That itself may be "almost acceptable"
150 * under certain circumstances, but rhosts autentication is useless
151 * if source routing is accepted. Notice also that if we just dropped
152 * source routing here, the other side could use IP spoofing to do
153 * rest of the interaction and could still bypass security. So we
154 * exit here if we detect any IP options.
158 check_ip_options(int sock
, char *ipaddr
)
162 char text
[sizeof(options
) * 3 + 1];
163 socklen_t option_size
;
168 if ((ip
= getprotobyname("ip")) != NULL
)
169 ipproto
= ip
->p_proto
;
171 ipproto
= IPPROTO_IP
;
172 option_size
= sizeof(options
);
173 if (getsockopt(sock
, ipproto
, IP_OPTIONS
, options
,
174 &option_size
) >= 0 && option_size
!= 0) {
176 for (i
= 0; i
< option_size
; i
++)
177 snprintf(text
+ i
*3, sizeof(text
) - i
*3,
178 " %2.2x", options
[i
]);
179 fatal("Connection from %.100s with IP options:%.800s",
182 #endif /* IP_OPTIONS */
186 ipv64_normalise_mapped(struct sockaddr_storage
*addr
, socklen_t
*len
)
188 struct sockaddr_in6
*a6
= (struct sockaddr_in6
*)addr
;
189 struct sockaddr_in
*a4
= (struct sockaddr_in
*)addr
;
190 struct in_addr inaddr
;
193 if (addr
->ss_family
!= AF_INET6
||
194 !IN6_IS_ADDR_V4MAPPED(&a6
->sin6_addr
))
197 debug3("Normalising mapped IPv4 in IPv6 address");
199 memcpy(&inaddr
, ((char *)&a6
->sin6_addr
) + 12, sizeof(inaddr
));
200 port
= a6
->sin6_port
;
202 bzero(a4
, sizeof(*a4
));
204 a4
->sin_family
= AF_INET
;
206 memcpy(&a4
->sin_addr
, &inaddr
, sizeof(inaddr
));
211 * Return the canonical name of the host in the other side of the current
212 * connection. The host name is cached, so it is efficient to call this
217 get_canonical_hostname(int use_dns
)
220 static char *canonical_host_name
= NULL
;
221 static char *remote_ip
= NULL
;
223 /* Check if we have previously retrieved name with same option. */
224 if (use_dns
&& canonical_host_name
!= NULL
)
225 return canonical_host_name
;
226 if (!use_dns
&& remote_ip
!= NULL
)
229 /* Get the real hostname if socket; otherwise return UNKNOWN. */
230 if (packet_connection_is_on_socket())
231 host
= get_remote_hostname(packet_get_connection_in(), use_dns
);
236 canonical_host_name
= host
;
243 * Returns the local/remote IP-address/hostname of socket as a string.
244 * The returned string must be freed.
247 get_socket_address(int sock
, int remote
, int flags
)
249 struct sockaddr_storage addr
;
251 char ntop
[NI_MAXHOST
];
254 /* Get IP address of client. */
255 addrlen
= sizeof(addr
);
256 memset(&addr
, 0, sizeof(addr
));
259 if (getpeername(sock
, (struct sockaddr
*)&addr
, &addrlen
)
263 if (getsockname(sock
, (struct sockaddr
*)&addr
, &addrlen
)
268 /* Work around Linux IPv6 weirdness */
269 if (addr
.ss_family
== AF_INET6
)
270 addrlen
= sizeof(struct sockaddr_in6
);
272 ipv64_normalise_mapped(&addr
, &addrlen
);
274 /* Get the address in ascii. */
275 if ((r
= getnameinfo((struct sockaddr
*)&addr
, addrlen
, ntop
,
276 sizeof(ntop
), NULL
, 0, flags
)) != 0) {
277 error("get_socket_address: getnameinfo %d failed: %s", flags
,
278 ssh_gai_strerror(r
));
281 return xstrdup(ntop
);
285 get_peer_ipaddr(int sock
)
289 if ((p
= get_socket_address(sock
, 1, NI_NUMERICHOST
)) != NULL
)
291 return xstrdup("UNKNOWN");
295 get_local_ipaddr(int sock
)
299 if ((p
= get_socket_address(sock
, 0, NI_NUMERICHOST
)) != NULL
)
301 return xstrdup("UNKNOWN");
305 get_local_name(int fd
)
307 char *host
, myname
[NI_MAXHOST
];
309 /* Assume we were passed a socket */
310 if ((host
= get_socket_address(fd
, 0, NI_NAMEREQD
)) != NULL
)
313 /* Handle the case where we were passed a pipe */
314 if (gethostname(myname
, sizeof(myname
)) == -1) {
315 verbose("get_local_name: gethostname: %s", strerror(errno
));
317 host
= xstrdup(myname
);
324 clear_cached_addr(void)
326 if (canonical_host_ip
!= NULL
) {
327 xfree(canonical_host_ip
);
328 canonical_host_ip
= NULL
;
334 * Returns the IP-address of the remote host as a string. The returned
335 * string must not be freed.
339 get_remote_ipaddr(void)
341 /* Check whether we have cached the ipaddr. */
342 if (canonical_host_ip
== NULL
) {
343 if (packet_connection_is_on_socket()) {
345 get_peer_ipaddr(packet_get_connection_in());
346 if (canonical_host_ip
== NULL
)
349 /* If not on socket, return UNKNOWN. */
350 canonical_host_ip
= xstrdup("UNKNOWN");
353 return canonical_host_ip
;
357 get_remote_name_or_ip(u_int utmp_len
, int use_dns
)
359 static const char *remote
= "";
361 remote
= get_canonical_hostname(use_dns
);
362 if (utmp_len
== 0 || strlen(remote
) > utmp_len
)
363 remote
= get_remote_ipaddr();
367 /* Returns the local/remote port for the socket. */
370 get_sock_port(int sock
, int local
)
372 struct sockaddr_storage from
;
374 char strport
[NI_MAXSERV
];
377 /* Get IP address of client. */
378 fromlen
= sizeof(from
);
379 memset(&from
, 0, sizeof(from
));
381 if (getsockname(sock
, (struct sockaddr
*)&from
, &fromlen
) < 0) {
382 error("getsockname failed: %.100s", strerror(errno
));
386 if (getpeername(sock
, (struct sockaddr
*)&from
, &fromlen
) < 0) {
387 debug("getpeername failed: %.100s", strerror(errno
));
392 /* Work around Linux IPv6 weirdness */
393 if (from
.ss_family
== AF_INET6
)
394 fromlen
= sizeof(struct sockaddr_in6
);
396 /* Return port number. */
397 if ((r
= getnameinfo((struct sockaddr
*)&from
, fromlen
, NULL
, 0,
398 strport
, sizeof(strport
), NI_NUMERICSERV
)) != 0)
399 fatal("get_sock_port: getnameinfo NI_NUMERICSERV failed: %s",
400 ssh_gai_strerror(r
));
401 return atoi(strport
);
404 /* Returns remote/local port number for the current connection. */
410 * If the connection is not a socket, return 65535. This is
411 * intentionally chosen to be an unprivileged port number.
413 if (!packet_connection_is_on_socket())
416 /* Get socket and return the port number. */
417 return get_sock_port(packet_get_connection_in(), local
);
421 get_peer_port(int sock
)
423 return get_sock_port(sock
, 0);
427 get_remote_port(void)
429 /* Cache to avoid getpeername() on a dead connection */
430 if (cached_port
== -1)
431 cached_port
= get_port(0);