blob: 2e5a0b86e1f7e8beb30dec264dbd4364742bdaf7 [file] [log] [blame]
Damien Millerfdb23062013-11-21 13:57:15 +11001/* $OpenBSD: canohost.c,v 1.69 2013/11/20 20:54:10 deraadt Exp $ */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002/*
Damien Miller95def091999-11-25 00:26:21 +11003 * Author: Tatu Ylonen <ylo@cs.hut.fi>
Damien Miller95def091999-11-25 00:26:21 +11004 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11006 * Functions for returning the canonical host name of the remote site.
Damien Miller4af51302000-04-16 11:18:38 +10007 *
Damien Millere4340be2000-09-16 13:29:08 +11008 * 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".
Damien Miller95def091999-11-25 00:26:21 +110013 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100014
15#include "includes.h"
Damien Millerc7b06362006-03-15 11:53:45 +110016
Damien Millere3b60b52006-07-10 21:08:03 +100017#include <sys/types.h>
Damien Miller8ec8c3e2006-07-10 20:35:38 +100018#include <sys/socket.h>
19
20#include <netinet/in.h>
Darren Tuckerdace2332006-09-22 19:22:17 +100021#include <arpa/inet.h>
Damien Miller8ec8c3e2006-07-10 20:35:38 +100022
Darren Tucker39972492006-07-12 22:22:46 +100023#include <errno.h>
Damien Millerb8fe89c2006-07-24 14:51:00 +100024#include <netdb.h>
Damien Millera7a73ee2006-08-05 11:37:59 +100025#include <stdio.h>
Damien Millere7a1e5c2006-08-05 11:34:19 +100026#include <stdlib.h>
Damien Millere3476ed2006-07-24 14:13:33 +100027#include <string.h>
Damien Millerd7834352006-08-05 12:39:39 +100028#include <stdarg.h>
Darren Tuckerdaaa4502010-01-13 22:43:33 +110029#include <unistd.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100030
Damien Millerd4a8b7e1999-10-27 13:42:43 +100031#include "xmalloc.h"
Damien Millerd7834352006-08-05 12:39:39 +100032#include "packet.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000033#include "log.h"
Ben Lindstrom31ca54a2001-02-09 02:11:24 +000034#include "canohost.h"
Darren Tucker4abde772007-12-29 02:43:51 +110035#include "misc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100036
Ben Lindstrombba81212001-06-25 05:01:22 +000037static void check_ip_options(int, char *);
Darren Tucker39c76322009-06-21 18:13:57 +100038static char *canonical_host_ip = NULL;
39static int cached_port = -1;
Damien Miller33804262001-02-04 23:20:18 +110040
Damien Miller5428f641999-11-25 11:54:57 +110041/*
42 * Return the canonical name of the host at the other end of the socket. The
Darren Tuckera627d422013-06-02 07:31:17 +100043 * caller should free the returned string.
Damien Miller5428f641999-11-25 11:54:57 +110044 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100045
Ben Lindstrombba81212001-06-25 05:01:22 +000046static char *
Darren Tucker3f9fdc72004-06-22 12:56:01 +100047get_remote_hostname(int sock, int use_dns)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100048{
Damien Miller34132e52000-01-14 15:45:46 +110049 struct sockaddr_storage from;
Damien Miller34132e52000-01-14 15:45:46 +110050 socklen_t fromlen;
51 struct addrinfo hints, *ai, *aitop;
Damien Miller33804262001-02-04 23:20:18 +110052 char name[NI_MAXHOST], ntop[NI_MAXHOST], ntop2[NI_MAXHOST];
Damien Millerd4a8b7e1999-10-27 13:42:43 +100053
Damien Miller95def091999-11-25 00:26:21 +110054 /* Get IP address of client. */
55 fromlen = sizeof(from);
56 memset(&from, 0, sizeof(from));
Darren Tucker3f9fdc72004-06-22 12:56:01 +100057 if (getpeername(sock, (struct sockaddr *)&from, &fromlen) < 0) {
Damien Miller95def091999-11-25 00:26:21 +110058 debug("getpeername failed: %.100s", strerror(errno));
Darren Tucker3e33cec2003-10-02 16:12:36 +100059 cleanup_exit(255);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100060 }
Damien Miller7bcb0892000-03-11 20:45:40 +110061
Damien Miller2eaf37d2006-04-18 15:13:16 +100062 if (from.ss_family == AF_INET)
63 check_ip_options(sock, ntop);
64
Damien Miller927f5272003-11-24 12:57:25 +110065 ipv64_normalise_mapped(&from, &fromlen);
Damien Miller7bcb0892000-03-11 20:45:40 +110066
Damien Miller5e4471e2003-01-07 10:51:23 +110067 if (from.ss_family == AF_INET6)
68 fromlen = sizeof(struct sockaddr_in6);
Damien Miller7bcb0892000-03-11 20:45:40 +110069
Damien Miller34132e52000-01-14 15:45:46 +110070 if (getnameinfo((struct sockaddr *)&from, fromlen, ntop, sizeof(ntop),
Damien Miller9f0f5c62001-12-21 14:45:46 +110071 NULL, 0, NI_NUMERICHOST) != 0)
Damien Miller34132e52000-01-14 15:45:46 +110072 fatal("get_remote_hostname: getnameinfo NI_NUMERICHOST failed");
Damien Miller95def091999-11-25 00:26:21 +110073
Damien Miller3a961dc2003-06-03 10:25:48 +100074 if (!use_dns)
75 return xstrdup(ntop);
76
Ben Lindstrom121c7852001-04-18 15:32:44 +000077 debug3("Trying to reverse map address %.100s.", ntop);
Damien Miller34132e52000-01-14 15:45:46 +110078 /* Map the IP address to a host name. */
79 if (getnameinfo((struct sockaddr *)&from, fromlen, name, sizeof(name),
Damien Miller9f0f5c62001-12-21 14:45:46 +110080 NULL, 0, NI_NAMEREQD) != 0) {
Damien Miller33804262001-02-04 23:20:18 +110081 /* Host name not found. Use ip address. */
Damien Miller33804262001-02-04 23:20:18 +110082 return xstrdup(ntop);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100083 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +100084
Damien Miller3a961dc2003-06-03 10:25:48 +100085 /*
86 * if reverse lookup result looks like a numeric hostname,
87 * someone is trying to trick us by PTR record like following:
88 * 1.1.1.10.in-addr.arpa. IN PTR 2.3.4.5
89 */
90 memset(&hints, 0, sizeof(hints));
91 hints.ai_socktype = SOCK_DGRAM; /*dummy*/
Darren Tucker0f684862003-06-05 09:52:42 +100092 hints.ai_flags = AI_NUMERICHOST;
Darren Tucker30ac73b2008-06-13 04:46:45 +100093 if (getaddrinfo(name, NULL, &hints, &ai) == 0) {
Damien Miller3a961dc2003-06-03 10:25:48 +100094 logit("Nasty PTR record \"%s\" is set up for %s, ignoring",
95 name, ntop);
96 freeaddrinfo(ai);
97 return xstrdup(ntop);
98 }
99
Damien Millere9fc72e2013-10-15 12:14:12 +1100100 /* Names are stores in lowercase. */
101 lowercase(name);
102
Damien Miller33804262001-02-04 23:20:18 +1100103 /*
104 * Map it back to an IP address and check that the given
105 * address actually is an address of this host. This is
106 * necessary because anyone with access to a name server can
107 * define arbitrary names for an IP address. Mapping from
108 * name to IP address can be trusted better (but can still be
109 * fooled if the intruder has access to the name server of
110 * the domain).
111 */
112 memset(&hints, 0, sizeof(hints));
113 hints.ai_family = from.ss_family;
114 hints.ai_socktype = SOCK_STREAM;
115 if (getaddrinfo(name, NULL, &hints, &aitop) != 0) {
Damien Miller996acd22003-04-09 20:59:48 +1000116 logit("reverse mapping checking getaddrinfo for %.700s "
Damien Millerde85a282006-03-15 12:06:41 +1100117 "[%s] failed - POSSIBLE BREAK-IN ATTEMPT!", name, ntop);
Damien Miller33804262001-02-04 23:20:18 +1100118 return xstrdup(ntop);
Damien Miller95def091999-11-25 00:26:21 +1100119 }
Damien Miller33804262001-02-04 23:20:18 +1100120 /* Look for the address from the list of addresses. */
121 for (ai = aitop; ai; ai = ai->ai_next) {
122 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop2,
123 sizeof(ntop2), NULL, 0, NI_NUMERICHOST) == 0 &&
124 (strcmp(ntop, ntop2) == 0))
125 break;
126 }
127 freeaddrinfo(aitop);
128 /* If we reached the end of the list, the address was not there. */
129 if (!ai) {
130 /* Address not found for the host name. */
Damien Miller996acd22003-04-09 20:59:48 +1000131 logit("Address %.100s maps to %.600s, but this does not "
Damien Miller5eb137c2005-12-31 16:19:53 +1100132 "map back to the address - POSSIBLE BREAK-IN ATTEMPT!",
Damien Miller33804262001-02-04 23:20:18 +1100133 ntop, name);
134 return xstrdup(ntop);
135 }
Damien Miller95def091999-11-25 00:26:21 +1100136 return xstrdup(name);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000137}
138
Damien Miller5428f641999-11-25 11:54:57 +1100139/*
Damien Miller33804262001-02-04 23:20:18 +1100140 * If IP options are supported, make sure there are none (log and
141 * disconnect them if any are found). Basically we are worried about
142 * source routing; it can be used to pretend you are somebody
143 * (ip-address) you are not. That itself may be "almost acceptable"
144 * under certain circumstances, but rhosts autentication is useless
145 * if source routing is accepted. Notice also that if we just dropped
146 * source routing here, the other side could use IP spoofing to do
147 * rest of the interaction and could still bypass security. So we
148 * exit here if we detect any IP options.
149 */
150/* IPv4 only */
Ben Lindstrombba81212001-06-25 05:01:22 +0000151static void
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000152check_ip_options(int sock, char *ipaddr)
Damien Miller33804262001-02-04 23:20:18 +1100153{
Darren Tucker89f4cf02003-08-07 13:29:04 +1000154#ifdef IP_OPTIONS
Ben Lindstrom075390a2001-02-10 21:34:46 +0000155 u_char options[200];
156 char text[sizeof(options) * 3 + 1];
Damien Miller33804262001-02-04 23:20:18 +1100157 socklen_t option_size;
Damien Millereccb9de2005-06-17 12:59:34 +1000158 u_int i;
159 int ipproto;
Damien Miller33804262001-02-04 23:20:18 +1100160 struct protoent *ip;
161
162 if ((ip = getprotobyname("ip")) != NULL)
163 ipproto = ip->p_proto;
164 else
165 ipproto = IPPROTO_IP;
166 option_size = sizeof(options);
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000167 if (getsockopt(sock, ipproto, IP_OPTIONS, options,
Damien Miller33804262001-02-04 23:20:18 +1100168 &option_size) >= 0 && option_size != 0) {
Ben Lindstrom075390a2001-02-10 21:34:46 +0000169 text[0] = '\0';
170 for (i = 0; i < option_size; i++)
171 snprintf(text + i*3, sizeof(text) - i*3,
172 " %2.2x", options[i]);
Damien Miller4d3fd542005-11-05 15:13:24 +1100173 fatal("Connection from %.100s with IP options:%.800s",
Damien Miller33804262001-02-04 23:20:18 +1100174 ipaddr, text);
175 }
Darren Tucker89f4cf02003-08-07 13:29:04 +1000176#endif /* IP_OPTIONS */
Damien Miller33804262001-02-04 23:20:18 +1100177}
178
Darren Tucker2fba9932005-02-02 23:30:24 +1100179void
Damien Miller927f5272003-11-24 12:57:25 +1100180ipv64_normalise_mapped(struct sockaddr_storage *addr, socklen_t *len)
181{
182 struct sockaddr_in6 *a6 = (struct sockaddr_in6 *)addr;
183 struct sockaddr_in *a4 = (struct sockaddr_in *)addr;
184 struct in_addr inaddr;
185 u_int16_t port;
186
Damien Miller94cf4c82005-07-17 17:04:47 +1000187 if (addr->ss_family != AF_INET6 ||
Damien Miller927f5272003-11-24 12:57:25 +1100188 !IN6_IS_ADDR_V4MAPPED(&a6->sin6_addr))
189 return;
190
191 debug3("Normalising mapped IPv4 in IPv6 address");
192
193 memcpy(&inaddr, ((char *)&a6->sin6_addr) + 12, sizeof(inaddr));
194 port = a6->sin6_port;
195
Damien Miller47e57bf2010-10-12 13:28:12 +1100196 bzero(a4, sizeof(*a4));
Damien Miller927f5272003-11-24 12:57:25 +1100197
198 a4->sin_family = AF_INET;
199 *len = sizeof(*a4);
200 memcpy(&a4->sin_addr, &inaddr, sizeof(inaddr));
201 a4->sin_port = port;
202}
203
Damien Miller33804262001-02-04 23:20:18 +1100204/*
Damien Miller5428f641999-11-25 11:54:57 +1100205 * Return the canonical name of the host in the other side of the current
206 * connection. The host name is cached, so it is efficient to call this
207 * several times.
208 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000209
Damien Miller95def091999-11-25 00:26:21 +1100210const char *
Damien Miller3a961dc2003-06-03 10:25:48 +1000211get_canonical_hostname(int use_dns)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000212{
Damien Miller24ecf612005-11-05 15:16:52 +1100213 char *host;
Damien Miller34132e52000-01-14 15:45:46 +1100214 static char *canonical_host_name = NULL;
Damien Miller24ecf612005-11-05 15:16:52 +1100215 static char *remote_ip = NULL;
Damien Miller34132e52000-01-14 15:45:46 +1100216
Damien Miller33804262001-02-04 23:20:18 +1100217 /* Check if we have previously retrieved name with same option. */
Damien Miller24ecf612005-11-05 15:16:52 +1100218 if (use_dns && canonical_host_name != NULL)
219 return canonical_host_name;
220 if (!use_dns && remote_ip != NULL)
221 return remote_ip;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000222
Damien Miller95def091999-11-25 00:26:21 +1100223 /* Get the real hostname if socket; otherwise return UNKNOWN. */
Damien Miller34132e52000-01-14 15:45:46 +1100224 if (packet_connection_is_on_socket())
Damien Miller24ecf612005-11-05 15:16:52 +1100225 host = get_remote_hostname(packet_get_connection_in(), use_dns);
Damien Miller95def091999-11-25 00:26:21 +1100226 else
Damien Miller24ecf612005-11-05 15:16:52 +1100227 host = "UNKNOWN";
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000228
Damien Miller24ecf612005-11-05 15:16:52 +1100229 if (use_dns)
230 canonical_host_name = host;
231 else
232 remote_ip = host;
233 return host;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000234}
235
Damien Miller5428f641999-11-25 11:54:57 +1100236/*
Ben Lindstromacaac972002-12-23 02:13:37 +0000237 * Returns the local/remote IP-address/hostname of socket as a string.
238 * The returned string must be freed.
Damien Millerd83ff352001-01-30 09:19:34 +1100239 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000240static char *
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000241get_socket_address(int sock, int remote, int flags)
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000242{
243 struct sockaddr_storage addr;
244 socklen_t addrlen;
245 char ntop[NI_MAXHOST];
Damien Miller9b8073e2005-03-01 21:16:18 +1100246 int r;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000247
248 /* Get IP address of client. */
249 addrlen = sizeof(addr);
250 memset(&addr, 0, sizeof(addr));
251
252 if (remote) {
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000253 if (getpeername(sock, (struct sockaddr *)&addr, &addrlen)
Damien Millerb2f844d2002-09-25 12:19:08 +1000254 < 0)
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000255 return NULL;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000256 } else {
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000257 if (getsockname(sock, (struct sockaddr *)&addr, &addrlen)
Damien Millerb2f844d2002-09-25 12:19:08 +1000258 < 0)
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000259 return NULL;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000260 }
Damien Miller5e4471e2003-01-07 10:51:23 +1100261
262 /* Work around Linux IPv6 weirdness */
263 if (addr.ss_family == AF_INET6)
264 addrlen = sizeof(struct sockaddr_in6);
265
Darren Tucker5b115d42005-05-03 19:05:32 +1000266 ipv64_normalise_mapped(&addr, &addrlen);
267
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000268 /* Get the address in ascii. */
Damien Miller9b8073e2005-03-01 21:16:18 +1100269 if ((r = getnameinfo((struct sockaddr *)&addr, addrlen, ntop,
270 sizeof(ntop), NULL, 0, flags)) != 0) {
271 error("get_socket_address: getnameinfo %d failed: %s", flags,
Darren Tucker4abde772007-12-29 02:43:51 +1100272 ssh_gai_strerror(r));
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000273 return NULL;
274 }
275 return xstrdup(ntop);
276}
Damien Millerd83ff352001-01-30 09:19:34 +1100277
278char *
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000279get_peer_ipaddr(int sock)
Damien Millerd83ff352001-01-30 09:19:34 +1100280{
Damien Millerb2f844d2002-09-25 12:19:08 +1000281 char *p;
282
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000283 if ((p = get_socket_address(sock, 1, NI_NUMERICHOST)) != NULL)
Damien Millerb2f844d2002-09-25 12:19:08 +1000284 return p;
285 return xstrdup("UNKNOWN");
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000286}
Damien Millerd83ff352001-01-30 09:19:34 +1100287
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000288char *
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000289get_local_ipaddr(int sock)
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000290{
Damien Millerb2f844d2002-09-25 12:19:08 +1000291 char *p;
292
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000293 if ((p = get_socket_address(sock, 0, NI_NUMERICHOST)) != NULL)
Damien Millerb2f844d2002-09-25 12:19:08 +1000294 return p;
295 return xstrdup("UNKNOWN");
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000296}
297
298char *
Darren Tuckerdaaa4502010-01-13 22:43:33 +1100299get_local_name(int fd)
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000300{
Darren Tuckerdaaa4502010-01-13 22:43:33 +1100301 char *host, myname[NI_MAXHOST];
302
303 /* Assume we were passed a socket */
304 if ((host = get_socket_address(fd, 0, NI_NAMEREQD)) != NULL)
305 return host;
306
307 /* Handle the case where we were passed a pipe */
308 if (gethostname(myname, sizeof(myname)) == -1) {
309 verbose("get_local_name: gethostname: %s", strerror(errno));
310 } else {
311 host = xstrdup(myname);
312 }
313
314 return host;
Damien Millerd83ff352001-01-30 09:19:34 +1100315}
316
Darren Tucker39c76322009-06-21 18:13:57 +1000317void
318clear_cached_addr(void)
319{
Darren Tuckera627d422013-06-02 07:31:17 +1000320 free(canonical_host_ip);
321 canonical_host_ip = NULL;
Darren Tucker39c76322009-06-21 18:13:57 +1000322 cached_port = -1;
323}
324
Damien Millerd83ff352001-01-30 09:19:34 +1100325/*
Damien Miller5428f641999-11-25 11:54:57 +1100326 * Returns the IP-address of the remote host as a string. The returned
Damien Miller34132e52000-01-14 15:45:46 +1100327 * string must not be freed.
Damien Miller5428f641999-11-25 11:54:57 +1100328 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000329
Damien Miller95def091999-11-25 00:26:21 +1100330const char *
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000331get_remote_ipaddr(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000332{
Damien Millerd83ff352001-01-30 09:19:34 +1100333 /* Check whether we have cached the ipaddr. */
334 if (canonical_host_ip == NULL) {
335 if (packet_connection_is_on_socket()) {
336 canonical_host_ip =
337 get_peer_ipaddr(packet_get_connection_in());
338 if (canonical_host_ip == NULL)
Darren Tucker3e33cec2003-10-02 16:12:36 +1000339 cleanup_exit(255);
Damien Millerd83ff352001-01-30 09:19:34 +1100340 } else {
341 /* If not on socket, return UNKNOWN. */
342 canonical_host_ip = xstrdup("UNKNOWN");
343 }
Damien Miller95def091999-11-25 00:26:21 +1100344 }
Damien Miller95def091999-11-25 00:26:21 +1100345 return canonical_host_ip;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000346}
347
Ben Lindstromf15a3862001-04-05 23:32:17 +0000348const char *
Damien Miller3a961dc2003-06-03 10:25:48 +1000349get_remote_name_or_ip(u_int utmp_len, int use_dns)
Ben Lindstromf15a3862001-04-05 23:32:17 +0000350{
351 static const char *remote = "";
352 if (utmp_len > 0)
Damien Miller3a961dc2003-06-03 10:25:48 +1000353 remote = get_canonical_hostname(use_dns);
Ben Lindstromf15a3862001-04-05 23:32:17 +0000354 if (utmp_len == 0 || strlen(remote) > utmp_len)
355 remote = get_remote_ipaddr();
356 return remote;
357}
358
Damien Miller34132e52000-01-14 15:45:46 +1100359/* Returns the local/remote port for the socket. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000360
Damien Miller4bf648f2009-02-14 16:28:21 +1100361int
Damien Miller34132e52000-01-14 15:45:46 +1100362get_sock_port(int sock, int local)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000363{
Damien Miller34132e52000-01-14 15:45:46 +1100364 struct sockaddr_storage from;
365 socklen_t fromlen;
366 char strport[NI_MAXSERV];
Damien Miller9b8073e2005-03-01 21:16:18 +1100367 int r;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000368
Damien Miller95def091999-11-25 00:26:21 +1100369 /* Get IP address of client. */
370 fromlen = sizeof(from);
371 memset(&from, 0, sizeof(from));
Damien Miller34132e52000-01-14 15:45:46 +1100372 if (local) {
373 if (getsockname(sock, (struct sockaddr *)&from, &fromlen) < 0) {
374 error("getsockname failed: %.100s", strerror(errno));
375 return 0;
376 }
377 } else {
Ben Lindstromacaac972002-12-23 02:13:37 +0000378 if (getpeername(sock, (struct sockaddr *)&from, &fromlen) < 0) {
Damien Miller34132e52000-01-14 15:45:46 +1100379 debug("getpeername failed: %.100s", strerror(errno));
Damien Miller677257f2005-06-17 12:55:03 +1000380 return -1;
Damien Miller34132e52000-01-14 15:45:46 +1100381 }
Damien Miller95def091999-11-25 00:26:21 +1100382 }
Damien Miller5e4471e2003-01-07 10:51:23 +1100383
384 /* Work around Linux IPv6 weirdness */
385 if (from.ss_family == AF_INET6)
386 fromlen = sizeof(struct sockaddr_in6);
387
Damien Miller95def091999-11-25 00:26:21 +1100388 /* Return port number. */
Damien Miller9b8073e2005-03-01 21:16:18 +1100389 if ((r = getnameinfo((struct sockaddr *)&from, fromlen, NULL, 0,
390 strport, sizeof(strport), NI_NUMERICSERV)) != 0)
391 fatal("get_sock_port: getnameinfo NI_NUMERICSERV failed: %s",
Darren Tucker4abde772007-12-29 02:43:51 +1100392 ssh_gai_strerror(r));
Damien Miller34132e52000-01-14 15:45:46 +1100393 return atoi(strport);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000394}
395
Damien Miller34132e52000-01-14 15:45:46 +1100396/* Returns remote/local port number for the current connection. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000397
Ben Lindstrombba81212001-06-25 05:01:22 +0000398static int
Damien Miller34132e52000-01-14 15:45:46 +1100399get_port(int local)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000400{
Damien Miller5428f641999-11-25 11:54:57 +1100401 /*
402 * If the connection is not a socket, return 65535. This is
403 * intentionally chosen to be an unprivileged port number.
404 */
Damien Miller34132e52000-01-14 15:45:46 +1100405 if (!packet_connection_is_on_socket())
Damien Miller95def091999-11-25 00:26:21 +1100406 return 65535;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000407
Damien Miller34132e52000-01-14 15:45:46 +1100408 /* Get socket and return the port number. */
409 return get_sock_port(packet_get_connection_in(), local);
410}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000411
Damien Miller4af51302000-04-16 11:18:38 +1000412int
Damien Miller34132e52000-01-14 15:45:46 +1100413get_peer_port(int sock)
414{
415 return get_sock_port(sock, 0);
416}
417
Damien Miller4af51302000-04-16 11:18:38 +1000418int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000419get_remote_port(void)
Damien Miller34132e52000-01-14 15:45:46 +1100420{
Damien Miller0670c732004-07-21 21:53:34 +1000421 /* Cache to avoid getpeername() on a dead connection */
Darren Tucker39c76322009-06-21 18:13:57 +1000422 if (cached_port == -1)
423 cached_port = get_port(0);
Damien Miller0670c732004-07-21 21:53:34 +1000424
Darren Tucker39c76322009-06-21 18:13:57 +1000425 return cached_port;
Damien Miller34132e52000-01-14 15:45:46 +1100426}
427
428int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000429get_local_port(void)
Damien Miller34132e52000-01-14 15:45:46 +1100430{
431 return get_port(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000432}