blob: 22b19bb9fa49d487cf8d63eb0288d964cab1c31d [file] [log] [blame]
Darren Tucker39c76322009-06-21 18:13:57 +10001/* $OpenBSD: canohost.c,v 1.65 2009/05/27 06:31:25 andreas 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
Damien Millerc7b06362006-03-15 11:53:45 +110023#include <ctype.h>
Darren Tucker39972492006-07-12 22:22:46 +100024#include <errno.h>
Damien Millerb8fe89c2006-07-24 14:51:00 +100025#include <netdb.h>
Damien Millera7a73ee2006-08-05 11:37:59 +100026#include <stdio.h>
Damien Millere7a1e5c2006-08-05 11:34:19 +100027#include <stdlib.h>
Damien Millere3476ed2006-07-24 14:13:33 +100028#include <string.h>
Damien Millerd7834352006-08-05 12:39:39 +100029#include <stdarg.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
43 * caller should free the returned string with xfree.
44 */
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;
50 int i;
51 socklen_t fromlen;
52 struct addrinfo hints, *ai, *aitop;
Damien Miller33804262001-02-04 23:20:18 +110053 char name[NI_MAXHOST], ntop[NI_MAXHOST], ntop2[NI_MAXHOST];
Damien Millerd4a8b7e1999-10-27 13:42:43 +100054
Damien Miller95def091999-11-25 00:26:21 +110055 /* Get IP address of client. */
56 fromlen = sizeof(from);
57 memset(&from, 0, sizeof(from));
Darren Tucker3f9fdc72004-06-22 12:56:01 +100058 if (getpeername(sock, (struct sockaddr *)&from, &fromlen) < 0) {
Damien Miller95def091999-11-25 00:26:21 +110059 debug("getpeername failed: %.100s", strerror(errno));
Darren Tucker3e33cec2003-10-02 16:12:36 +100060 cleanup_exit(255);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100061 }
Damien Miller7bcb0892000-03-11 20:45:40 +110062
Damien Miller2eaf37d2006-04-18 15:13:16 +100063 if (from.ss_family == AF_INET)
64 check_ip_options(sock, ntop);
65
Damien Miller927f5272003-11-24 12:57:25 +110066 ipv64_normalise_mapped(&from, &fromlen);
Damien Miller7bcb0892000-03-11 20:45:40 +110067
Damien Miller5e4471e2003-01-07 10:51:23 +110068 if (from.ss_family == AF_INET6)
69 fromlen = sizeof(struct sockaddr_in6);
Damien Miller7bcb0892000-03-11 20:45:40 +110070
Damien Miller34132e52000-01-14 15:45:46 +110071 if (getnameinfo((struct sockaddr *)&from, fromlen, ntop, sizeof(ntop),
Damien Miller9f0f5c62001-12-21 14:45:46 +110072 NULL, 0, NI_NUMERICHOST) != 0)
Damien Miller34132e52000-01-14 15:45:46 +110073 fatal("get_remote_hostname: getnameinfo NI_NUMERICHOST failed");
Damien Miller95def091999-11-25 00:26:21 +110074
Damien Miller3a961dc2003-06-03 10:25:48 +100075 if (!use_dns)
76 return xstrdup(ntop);
77
Ben Lindstrom121c7852001-04-18 15:32:44 +000078 debug3("Trying to reverse map address %.100s.", ntop);
Damien Miller34132e52000-01-14 15:45:46 +110079 /* Map the IP address to a host name. */
80 if (getnameinfo((struct sockaddr *)&from, fromlen, name, sizeof(name),
Damien Miller9f0f5c62001-12-21 14:45:46 +110081 NULL, 0, NI_NAMEREQD) != 0) {
Damien Miller33804262001-02-04 23:20:18 +110082 /* Host name not found. Use ip address. */
Damien Miller33804262001-02-04 23:20:18 +110083 return xstrdup(ntop);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100084 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +100085
Damien Miller3a961dc2003-06-03 10:25:48 +100086 /*
87 * if reverse lookup result looks like a numeric hostname,
88 * someone is trying to trick us by PTR record like following:
89 * 1.1.1.10.in-addr.arpa. IN PTR 2.3.4.5
90 */
91 memset(&hints, 0, sizeof(hints));
92 hints.ai_socktype = SOCK_DGRAM; /*dummy*/
Darren Tucker0f684862003-06-05 09:52:42 +100093 hints.ai_flags = AI_NUMERICHOST;
Darren Tucker30ac73b2008-06-13 04:46:45 +100094 if (getaddrinfo(name, NULL, &hints, &ai) == 0) {
Damien Miller3a961dc2003-06-03 10:25:48 +100095 logit("Nasty PTR record \"%s\" is set up for %s, ignoring",
96 name, ntop);
97 freeaddrinfo(ai);
98 return xstrdup(ntop);
99 }
100
Damien Miller5428f641999-11-25 11:54:57 +1100101 /*
Damien Miller33804262001-02-04 23:20:18 +1100102 * Convert it to all lowercase (which is expected by the rest
103 * of this software).
Damien Miller5428f641999-11-25 11:54:57 +1100104 */
Damien Miller33804262001-02-04 23:20:18 +1100105 for (i = 0; name[i]; i++)
106 if (isupper(name[i]))
Damien Miller1d2b6702006-03-26 14:09:54 +1100107 name[i] = (char)tolower(name[i]);
Damien Miller33804262001-02-04 23:20:18 +1100108 /*
109 * Map it back to an IP address and check that the given
110 * address actually is an address of this host. This is
111 * necessary because anyone with access to a name server can
112 * define arbitrary names for an IP address. Mapping from
113 * name to IP address can be trusted better (but can still be
114 * fooled if the intruder has access to the name server of
115 * the domain).
116 */
117 memset(&hints, 0, sizeof(hints));
118 hints.ai_family = from.ss_family;
119 hints.ai_socktype = SOCK_STREAM;
120 if (getaddrinfo(name, NULL, &hints, &aitop) != 0) {
Damien Miller996acd22003-04-09 20:59:48 +1000121 logit("reverse mapping checking getaddrinfo for %.700s "
Damien Millerde85a282006-03-15 12:06:41 +1100122 "[%s] failed - POSSIBLE BREAK-IN ATTEMPT!", name, ntop);
Damien Miller33804262001-02-04 23:20:18 +1100123 return xstrdup(ntop);
Damien Miller95def091999-11-25 00:26:21 +1100124 }
Damien Miller33804262001-02-04 23:20:18 +1100125 /* Look for the address from the list of addresses. */
126 for (ai = aitop; ai; ai = ai->ai_next) {
127 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop2,
128 sizeof(ntop2), NULL, 0, NI_NUMERICHOST) == 0 &&
129 (strcmp(ntop, ntop2) == 0))
130 break;
131 }
132 freeaddrinfo(aitop);
133 /* If we reached the end of the list, the address was not there. */
134 if (!ai) {
135 /* Address not found for the host name. */
Damien Miller996acd22003-04-09 20:59:48 +1000136 logit("Address %.100s maps to %.600s, but this does not "
Damien Miller5eb137c2005-12-31 16:19:53 +1100137 "map back to the address - POSSIBLE BREAK-IN ATTEMPT!",
Damien Miller33804262001-02-04 23:20:18 +1100138 ntop, name);
139 return xstrdup(ntop);
140 }
Damien Miller95def091999-11-25 00:26:21 +1100141 return xstrdup(name);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000142}
143
Damien Miller5428f641999-11-25 11:54:57 +1100144/*
Damien Miller33804262001-02-04 23:20:18 +1100145 * If IP options are supported, make sure there are none (log and
146 * disconnect them if any are found). Basically we are worried about
147 * source routing; it can be used to pretend you are somebody
148 * (ip-address) you are not. That itself may be "almost acceptable"
149 * under certain circumstances, but rhosts autentication is useless
150 * if source routing is accepted. Notice also that if we just dropped
151 * source routing here, the other side could use IP spoofing to do
152 * rest of the interaction and could still bypass security. So we
153 * exit here if we detect any IP options.
154 */
155/* IPv4 only */
Ben Lindstrombba81212001-06-25 05:01:22 +0000156static void
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000157check_ip_options(int sock, char *ipaddr)
Damien Miller33804262001-02-04 23:20:18 +1100158{
Darren Tucker89f4cf02003-08-07 13:29:04 +1000159#ifdef IP_OPTIONS
Ben Lindstrom075390a2001-02-10 21:34:46 +0000160 u_char options[200];
161 char text[sizeof(options) * 3 + 1];
Damien Miller33804262001-02-04 23:20:18 +1100162 socklen_t option_size;
Damien Millereccb9de2005-06-17 12:59:34 +1000163 u_int i;
164 int ipproto;
Damien Miller33804262001-02-04 23:20:18 +1100165 struct protoent *ip;
166
167 if ((ip = getprotobyname("ip")) != NULL)
168 ipproto = ip->p_proto;
169 else
170 ipproto = IPPROTO_IP;
171 option_size = sizeof(options);
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000172 if (getsockopt(sock, ipproto, IP_OPTIONS, options,
Damien Miller33804262001-02-04 23:20:18 +1100173 &option_size) >= 0 && option_size != 0) {
Ben Lindstrom075390a2001-02-10 21:34:46 +0000174 text[0] = '\0';
175 for (i = 0; i < option_size; i++)
176 snprintf(text + i*3, sizeof(text) - i*3,
177 " %2.2x", options[i]);
Damien Miller4d3fd542005-11-05 15:13:24 +1100178 fatal("Connection from %.100s with IP options:%.800s",
Damien Miller33804262001-02-04 23:20:18 +1100179 ipaddr, text);
180 }
Darren Tucker89f4cf02003-08-07 13:29:04 +1000181#endif /* IP_OPTIONS */
Damien Miller33804262001-02-04 23:20:18 +1100182}
183
Darren Tucker2fba9932005-02-02 23:30:24 +1100184void
Damien Miller927f5272003-11-24 12:57:25 +1100185ipv64_normalise_mapped(struct sockaddr_storage *addr, socklen_t *len)
186{
187 struct sockaddr_in6 *a6 = (struct sockaddr_in6 *)addr;
188 struct sockaddr_in *a4 = (struct sockaddr_in *)addr;
189 struct in_addr inaddr;
190 u_int16_t port;
191
Damien Miller94cf4c82005-07-17 17:04:47 +1000192 if (addr->ss_family != AF_INET6 ||
Damien Miller927f5272003-11-24 12:57:25 +1100193 !IN6_IS_ADDR_V4MAPPED(&a6->sin6_addr))
194 return;
195
196 debug3("Normalising mapped IPv4 in IPv6 address");
197
198 memcpy(&inaddr, ((char *)&a6->sin6_addr) + 12, sizeof(inaddr));
199 port = a6->sin6_port;
200
201 memset(addr, 0, sizeof(*a4));
202
203 a4->sin_family = AF_INET;
204 *len = sizeof(*a4);
205 memcpy(&a4->sin_addr, &inaddr, sizeof(inaddr));
206 a4->sin_port = port;
207}
208
Damien Miller33804262001-02-04 23:20:18 +1100209/*
Damien Miller5428f641999-11-25 11:54:57 +1100210 * Return the canonical name of the host in the other side of the current
211 * connection. The host name is cached, so it is efficient to call this
212 * several times.
213 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000214
Damien Miller95def091999-11-25 00:26:21 +1100215const char *
Damien Miller3a961dc2003-06-03 10:25:48 +1000216get_canonical_hostname(int use_dns)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000217{
Damien Miller24ecf612005-11-05 15:16:52 +1100218 char *host;
Damien Miller34132e52000-01-14 15:45:46 +1100219 static char *canonical_host_name = NULL;
Damien Miller24ecf612005-11-05 15:16:52 +1100220 static char *remote_ip = NULL;
Damien Miller34132e52000-01-14 15:45:46 +1100221
Damien Miller33804262001-02-04 23:20:18 +1100222 /* Check if we have previously retrieved name with same option. */
Damien Miller24ecf612005-11-05 15:16:52 +1100223 if (use_dns && canonical_host_name != NULL)
224 return canonical_host_name;
225 if (!use_dns && remote_ip != NULL)
226 return remote_ip;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000227
Damien Miller95def091999-11-25 00:26:21 +1100228 /* Get the real hostname if socket; otherwise return UNKNOWN. */
Damien Miller34132e52000-01-14 15:45:46 +1100229 if (packet_connection_is_on_socket())
Damien Miller24ecf612005-11-05 15:16:52 +1100230 host = get_remote_hostname(packet_get_connection_in(), use_dns);
Damien Miller95def091999-11-25 00:26:21 +1100231 else
Damien Miller24ecf612005-11-05 15:16:52 +1100232 host = "UNKNOWN";
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000233
Damien Miller24ecf612005-11-05 15:16:52 +1100234 if (use_dns)
235 canonical_host_name = host;
236 else
237 remote_ip = host;
238 return host;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000239}
240
Damien Miller5428f641999-11-25 11:54:57 +1100241/*
Ben Lindstromacaac972002-12-23 02:13:37 +0000242 * Returns the local/remote IP-address/hostname of socket as a string.
243 * The returned string must be freed.
Damien Millerd83ff352001-01-30 09:19:34 +1100244 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000245static char *
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000246get_socket_address(int sock, int remote, int flags)
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000247{
248 struct sockaddr_storage addr;
249 socklen_t addrlen;
250 char ntop[NI_MAXHOST];
Damien Miller9b8073e2005-03-01 21:16:18 +1100251 int r;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000252
253 /* Get IP address of client. */
254 addrlen = sizeof(addr);
255 memset(&addr, 0, sizeof(addr));
256
257 if (remote) {
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000258 if (getpeername(sock, (struct sockaddr *)&addr, &addrlen)
Damien Millerb2f844d2002-09-25 12:19:08 +1000259 < 0)
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000260 return NULL;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000261 } else {
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000262 if (getsockname(sock, (struct sockaddr *)&addr, &addrlen)
Damien Millerb2f844d2002-09-25 12:19:08 +1000263 < 0)
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000264 return NULL;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000265 }
Damien Miller5e4471e2003-01-07 10:51:23 +1100266
267 /* Work around Linux IPv6 weirdness */
268 if (addr.ss_family == AF_INET6)
269 addrlen = sizeof(struct sockaddr_in6);
270
Darren Tucker5b115d42005-05-03 19:05:32 +1000271 ipv64_normalise_mapped(&addr, &addrlen);
272
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000273 /* Get the address in ascii. */
Damien Miller9b8073e2005-03-01 21:16:18 +1100274 if ((r = getnameinfo((struct sockaddr *)&addr, addrlen, ntop,
275 sizeof(ntop), NULL, 0, flags)) != 0) {
276 error("get_socket_address: getnameinfo %d failed: %s", flags,
Darren Tucker4abde772007-12-29 02:43:51 +1100277 ssh_gai_strerror(r));
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000278 return NULL;
279 }
280 return xstrdup(ntop);
281}
Damien Millerd83ff352001-01-30 09:19:34 +1100282
283char *
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000284get_peer_ipaddr(int sock)
Damien Millerd83ff352001-01-30 09:19:34 +1100285{
Damien Millerb2f844d2002-09-25 12:19:08 +1000286 char *p;
287
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000288 if ((p = get_socket_address(sock, 1, NI_NUMERICHOST)) != NULL)
Damien Millerb2f844d2002-09-25 12:19:08 +1000289 return p;
290 return xstrdup("UNKNOWN");
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000291}
Damien Millerd83ff352001-01-30 09:19:34 +1100292
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000293char *
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000294get_local_ipaddr(int sock)
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000295{
Damien Millerb2f844d2002-09-25 12:19:08 +1000296 char *p;
297
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000298 if ((p = get_socket_address(sock, 0, NI_NUMERICHOST)) != NULL)
Damien Millerb2f844d2002-09-25 12:19:08 +1000299 return p;
300 return xstrdup("UNKNOWN");
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000301}
302
303char *
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000304get_local_name(int sock)
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000305{
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000306 return get_socket_address(sock, 0, NI_NAMEREQD);
Damien Millerd83ff352001-01-30 09:19:34 +1100307}
308
Darren Tucker39c76322009-06-21 18:13:57 +1000309void
310clear_cached_addr(void)
311{
312 if (canonical_host_ip != NULL) {
313 xfree(canonical_host_ip);
314 canonical_host_ip = NULL;
315 }
316 cached_port = -1;
317}
318
Damien Millerd83ff352001-01-30 09:19:34 +1100319/*
Damien Miller5428f641999-11-25 11:54:57 +1100320 * Returns the IP-address of the remote host as a string. The returned
Damien Miller34132e52000-01-14 15:45:46 +1100321 * string must not be freed.
Damien Miller5428f641999-11-25 11:54:57 +1100322 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000323
Damien Miller95def091999-11-25 00:26:21 +1100324const char *
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000325get_remote_ipaddr(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000326{
Damien Millerd83ff352001-01-30 09:19:34 +1100327 /* Check whether we have cached the ipaddr. */
328 if (canonical_host_ip == NULL) {
329 if (packet_connection_is_on_socket()) {
330 canonical_host_ip =
331 get_peer_ipaddr(packet_get_connection_in());
332 if (canonical_host_ip == NULL)
Darren Tucker3e33cec2003-10-02 16:12:36 +1000333 cleanup_exit(255);
Damien Millerd83ff352001-01-30 09:19:34 +1100334 } else {
335 /* If not on socket, return UNKNOWN. */
336 canonical_host_ip = xstrdup("UNKNOWN");
337 }
Damien Miller95def091999-11-25 00:26:21 +1100338 }
Damien Miller95def091999-11-25 00:26:21 +1100339 return canonical_host_ip;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000340}
341
Ben Lindstromf15a3862001-04-05 23:32:17 +0000342const char *
Damien Miller3a961dc2003-06-03 10:25:48 +1000343get_remote_name_or_ip(u_int utmp_len, int use_dns)
Ben Lindstromf15a3862001-04-05 23:32:17 +0000344{
345 static const char *remote = "";
346 if (utmp_len > 0)
Damien Miller3a961dc2003-06-03 10:25:48 +1000347 remote = get_canonical_hostname(use_dns);
Ben Lindstromf15a3862001-04-05 23:32:17 +0000348 if (utmp_len == 0 || strlen(remote) > utmp_len)
349 remote = get_remote_ipaddr();
350 return remote;
351}
352
Damien Miller34132e52000-01-14 15:45:46 +1100353/* Returns the local/remote port for the socket. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000354
Damien Miller4bf648f2009-02-14 16:28:21 +1100355int
Damien Miller34132e52000-01-14 15:45:46 +1100356get_sock_port(int sock, int local)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000357{
Damien Miller34132e52000-01-14 15:45:46 +1100358 struct sockaddr_storage from;
359 socklen_t fromlen;
360 char strport[NI_MAXSERV];
Damien Miller9b8073e2005-03-01 21:16:18 +1100361 int r;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000362
Damien Miller95def091999-11-25 00:26:21 +1100363 /* Get IP address of client. */
364 fromlen = sizeof(from);
365 memset(&from, 0, sizeof(from));
Damien Miller34132e52000-01-14 15:45:46 +1100366 if (local) {
367 if (getsockname(sock, (struct sockaddr *)&from, &fromlen) < 0) {
368 error("getsockname failed: %.100s", strerror(errno));
369 return 0;
370 }
371 } else {
Ben Lindstromacaac972002-12-23 02:13:37 +0000372 if (getpeername(sock, (struct sockaddr *)&from, &fromlen) < 0) {
Damien Miller34132e52000-01-14 15:45:46 +1100373 debug("getpeername failed: %.100s", strerror(errno));
Damien Miller677257f2005-06-17 12:55:03 +1000374 return -1;
Damien Miller34132e52000-01-14 15:45:46 +1100375 }
Damien Miller95def091999-11-25 00:26:21 +1100376 }
Damien Miller5e4471e2003-01-07 10:51:23 +1100377
378 /* Work around Linux IPv6 weirdness */
379 if (from.ss_family == AF_INET6)
380 fromlen = sizeof(struct sockaddr_in6);
381
Damien Miller95def091999-11-25 00:26:21 +1100382 /* Return port number. */
Damien Miller9b8073e2005-03-01 21:16:18 +1100383 if ((r = getnameinfo((struct sockaddr *)&from, fromlen, NULL, 0,
384 strport, sizeof(strport), NI_NUMERICSERV)) != 0)
385 fatal("get_sock_port: getnameinfo NI_NUMERICSERV failed: %s",
Darren Tucker4abde772007-12-29 02:43:51 +1100386 ssh_gai_strerror(r));
Damien Miller34132e52000-01-14 15:45:46 +1100387 return atoi(strport);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000388}
389
Damien Miller34132e52000-01-14 15:45:46 +1100390/* Returns remote/local port number for the current connection. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000391
Ben Lindstrombba81212001-06-25 05:01:22 +0000392static int
Damien Miller34132e52000-01-14 15:45:46 +1100393get_port(int local)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000394{
Damien Miller5428f641999-11-25 11:54:57 +1100395 /*
396 * If the connection is not a socket, return 65535. This is
397 * intentionally chosen to be an unprivileged port number.
398 */
Damien Miller34132e52000-01-14 15:45:46 +1100399 if (!packet_connection_is_on_socket())
Damien Miller95def091999-11-25 00:26:21 +1100400 return 65535;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000401
Damien Miller34132e52000-01-14 15:45:46 +1100402 /* Get socket and return the port number. */
403 return get_sock_port(packet_get_connection_in(), local);
404}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000405
Damien Miller4af51302000-04-16 11:18:38 +1000406int
Damien Miller34132e52000-01-14 15:45:46 +1100407get_peer_port(int sock)
408{
409 return get_sock_port(sock, 0);
410}
411
Damien Miller4af51302000-04-16 11:18:38 +1000412int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000413get_remote_port(void)
Damien Miller34132e52000-01-14 15:45:46 +1100414{
Damien Miller0670c732004-07-21 21:53:34 +1000415 /* Cache to avoid getpeername() on a dead connection */
Darren Tucker39c76322009-06-21 18:13:57 +1000416 if (cached_port == -1)
417 cached_port = get_port(0);
Damien Miller0670c732004-07-21 21:53:34 +1000418
Darren Tucker39c76322009-06-21 18:13:57 +1000419 return cached_port;
Damien Miller34132e52000-01-14 15:45:46 +1100420}
421
422int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000423get_local_port(void)
Damien Miller34132e52000-01-14 15:45:46 +1100424{
425 return get_port(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000426}