blob: 76b0bee024cb907979b819d698e634f7b6942776 [file] [log] [blame]
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001/*
Damien Miller95def091999-11-25 00:26:21 +11002 * Author: Tatu Ylonen <ylo@cs.hut.fi>
Damien Miller95def091999-11-25 00:26:21 +11003 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11005 * Functions for returning the canonical host name of the remote site.
Damien Miller4af51302000-04-16 11:18:38 +10006 *
Damien Millere4340be2000-09-16 13:29:08 +11007 * 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".
Damien Miller95def091999-11-25 00:26:21 +110012 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100013
14#include "includes.h"
Damien Millerc7b06362006-03-15 11:53:45 +110015RCSID("$OpenBSD: canohost.c,v 1.49 2006/02/22 00:04:44 stevesk Exp $");
16
17#include <ctype.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100018
19#include "packet.h"
20#include "xmalloc.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000021#include "log.h"
Ben Lindstrom31ca54a2001-02-09 02:11:24 +000022#include "canohost.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100023
Ben Lindstrombba81212001-06-25 05:01:22 +000024static void check_ip_options(int, char *);
Damien Miller33804262001-02-04 23:20:18 +110025
Damien Miller5428f641999-11-25 11:54:57 +110026/*
27 * Return the canonical name of the host at the other end of the socket. The
28 * caller should free the returned string with xfree.
29 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100030
Ben Lindstrombba81212001-06-25 05:01:22 +000031static char *
Darren Tucker3f9fdc72004-06-22 12:56:01 +100032get_remote_hostname(int sock, int use_dns)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100033{
Damien Miller34132e52000-01-14 15:45:46 +110034 struct sockaddr_storage from;
35 int i;
36 socklen_t fromlen;
37 struct addrinfo hints, *ai, *aitop;
Damien Miller33804262001-02-04 23:20:18 +110038 char name[NI_MAXHOST], ntop[NI_MAXHOST], ntop2[NI_MAXHOST];
Damien Millerd4a8b7e1999-10-27 13:42:43 +100039
Damien Miller95def091999-11-25 00:26:21 +110040 /* Get IP address of client. */
41 fromlen = sizeof(from);
42 memset(&from, 0, sizeof(from));
Darren Tucker3f9fdc72004-06-22 12:56:01 +100043 if (getpeername(sock, (struct sockaddr *)&from, &fromlen) < 0) {
Damien Miller95def091999-11-25 00:26:21 +110044 debug("getpeername failed: %.100s", strerror(errno));
Darren Tucker3e33cec2003-10-02 16:12:36 +100045 cleanup_exit(255);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100046 }
Damien Miller7bcb0892000-03-11 20:45:40 +110047
Damien Miller927f5272003-11-24 12:57:25 +110048 ipv64_normalise_mapped(&from, &fromlen);
Damien Miller7bcb0892000-03-11 20:45:40 +110049
Damien Miller5e4471e2003-01-07 10:51:23 +110050 if (from.ss_family == AF_INET6)
51 fromlen = sizeof(struct sockaddr_in6);
Damien Miller7bcb0892000-03-11 20:45:40 +110052
Damien Miller34132e52000-01-14 15:45:46 +110053 if (getnameinfo((struct sockaddr *)&from, fromlen, ntop, sizeof(ntop),
Damien Miller9f0f5c62001-12-21 14:45:46 +110054 NULL, 0, NI_NUMERICHOST) != 0)
Damien Miller34132e52000-01-14 15:45:46 +110055 fatal("get_remote_hostname: getnameinfo NI_NUMERICHOST failed");
Damien Miller95def091999-11-25 00:26:21 +110056
Darren Tuckerb0b12292005-10-03 18:23:44 +100057 if (from.ss_family == AF_INET)
58 check_ip_options(sock, ntop);
59
Damien Miller3a961dc2003-06-03 10:25:48 +100060 if (!use_dns)
61 return xstrdup(ntop);
62
Ben Lindstrom121c7852001-04-18 15:32:44 +000063 debug3("Trying to reverse map address %.100s.", ntop);
Damien Miller34132e52000-01-14 15:45:46 +110064 /* Map the IP address to a host name. */
65 if (getnameinfo((struct sockaddr *)&from, fromlen, name, sizeof(name),
Damien Miller9f0f5c62001-12-21 14:45:46 +110066 NULL, 0, NI_NAMEREQD) != 0) {
Damien Miller33804262001-02-04 23:20:18 +110067 /* Host name not found. Use ip address. */
Damien Miller33804262001-02-04 23:20:18 +110068 return xstrdup(ntop);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100069 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +100070
Damien Miller3a961dc2003-06-03 10:25:48 +100071 /*
72 * if reverse lookup result looks like a numeric hostname,
73 * someone is trying to trick us by PTR record like following:
74 * 1.1.1.10.in-addr.arpa. IN PTR 2.3.4.5
75 */
76 memset(&hints, 0, sizeof(hints));
77 hints.ai_socktype = SOCK_DGRAM; /*dummy*/
Darren Tucker0f684862003-06-05 09:52:42 +100078 hints.ai_flags = AI_NUMERICHOST;
Damien Miller3a961dc2003-06-03 10:25:48 +100079 if (getaddrinfo(name, "0", &hints, &ai) == 0) {
80 logit("Nasty PTR record \"%s\" is set up for %s, ignoring",
81 name, ntop);
82 freeaddrinfo(ai);
83 return xstrdup(ntop);
84 }
85
Damien Miller5428f641999-11-25 11:54:57 +110086 /*
Damien Miller33804262001-02-04 23:20:18 +110087 * Convert it to all lowercase (which is expected by the rest
88 * of this software).
Damien Miller5428f641999-11-25 11:54:57 +110089 */
Damien Miller33804262001-02-04 23:20:18 +110090 for (i = 0; name[i]; i++)
91 if (isupper(name[i]))
92 name[i] = tolower(name[i]);
Damien Miller33804262001-02-04 23:20:18 +110093 /*
94 * Map it back to an IP address and check that the given
95 * address actually is an address of this host. This is
96 * necessary because anyone with access to a name server can
97 * define arbitrary names for an IP address. Mapping from
98 * name to IP address can be trusted better (but can still be
99 * fooled if the intruder has access to the name server of
100 * the domain).
101 */
102 memset(&hints, 0, sizeof(hints));
103 hints.ai_family = from.ss_family;
104 hints.ai_socktype = SOCK_STREAM;
105 if (getaddrinfo(name, NULL, &hints, &aitop) != 0) {
Damien Miller996acd22003-04-09 20:59:48 +1000106 logit("reverse mapping checking getaddrinfo for %.700s "
Damien Miller5eb137c2005-12-31 16:19:53 +1100107 "failed - POSSIBLE BREAK-IN ATTEMPT!", name);
Damien Miller33804262001-02-04 23:20:18 +1100108 return xstrdup(ntop);
Damien Miller95def091999-11-25 00:26:21 +1100109 }
Damien Miller33804262001-02-04 23:20:18 +1100110 /* Look for the address from the list of addresses. */
111 for (ai = aitop; ai; ai = ai->ai_next) {
112 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop2,
113 sizeof(ntop2), NULL, 0, NI_NUMERICHOST) == 0 &&
114 (strcmp(ntop, ntop2) == 0))
115 break;
116 }
117 freeaddrinfo(aitop);
118 /* If we reached the end of the list, the address was not there. */
119 if (!ai) {
120 /* Address not found for the host name. */
Damien Miller996acd22003-04-09 20:59:48 +1000121 logit("Address %.100s maps to %.600s, but this does not "
Damien Miller5eb137c2005-12-31 16:19:53 +1100122 "map back to the address - POSSIBLE BREAK-IN ATTEMPT!",
Damien Miller33804262001-02-04 23:20:18 +1100123 ntop, name);
124 return xstrdup(ntop);
125 }
Damien Miller95def091999-11-25 00:26:21 +1100126 return xstrdup(name);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000127}
128
Damien Miller5428f641999-11-25 11:54:57 +1100129/*
Damien Miller33804262001-02-04 23:20:18 +1100130 * If IP options are supported, make sure there are none (log and
131 * disconnect them if any are found). Basically we are worried about
132 * source routing; it can be used to pretend you are somebody
133 * (ip-address) you are not. That itself may be "almost acceptable"
134 * under certain circumstances, but rhosts autentication is useless
135 * if source routing is accepted. Notice also that if we just dropped
136 * source routing here, the other side could use IP spoofing to do
137 * rest of the interaction and could still bypass security. So we
138 * exit here if we detect any IP options.
139 */
140/* IPv4 only */
Ben Lindstrombba81212001-06-25 05:01:22 +0000141static void
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000142check_ip_options(int sock, char *ipaddr)
Damien Miller33804262001-02-04 23:20:18 +1100143{
Darren Tucker89f4cf02003-08-07 13:29:04 +1000144#ifdef IP_OPTIONS
Ben Lindstrom075390a2001-02-10 21:34:46 +0000145 u_char options[200];
146 char text[sizeof(options) * 3 + 1];
Damien Miller33804262001-02-04 23:20:18 +1100147 socklen_t option_size;
Damien Millereccb9de2005-06-17 12:59:34 +1000148 u_int i;
149 int ipproto;
Damien Miller33804262001-02-04 23:20:18 +1100150 struct protoent *ip;
151
152 if ((ip = getprotobyname("ip")) != NULL)
153 ipproto = ip->p_proto;
154 else
155 ipproto = IPPROTO_IP;
156 option_size = sizeof(options);
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000157 if (getsockopt(sock, ipproto, IP_OPTIONS, options,
Damien Miller33804262001-02-04 23:20:18 +1100158 &option_size) >= 0 && option_size != 0) {
Ben Lindstrom075390a2001-02-10 21:34:46 +0000159 text[0] = '\0';
160 for (i = 0; i < option_size; i++)
161 snprintf(text + i*3, sizeof(text) - i*3,
162 " %2.2x", options[i]);
Damien Miller4d3fd542005-11-05 15:13:24 +1100163 fatal("Connection from %.100s with IP options:%.800s",
Damien Miller33804262001-02-04 23:20:18 +1100164 ipaddr, text);
165 }
Darren Tucker89f4cf02003-08-07 13:29:04 +1000166#endif /* IP_OPTIONS */
Damien Miller33804262001-02-04 23:20:18 +1100167}
168
Darren Tucker2fba9932005-02-02 23:30:24 +1100169void
Damien Miller927f5272003-11-24 12:57:25 +1100170ipv64_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
Damien Miller94cf4c82005-07-17 17:04:47 +1000177 if (addr->ss_family != AF_INET6 ||
Damien Miller927f5272003-11-24 12:57:25 +1100178 !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
Damien Miller33804262001-02-04 23:20:18 +1100194/*
Damien Miller5428f641999-11-25 11:54:57 +1100195 * 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 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000199
Damien Miller95def091999-11-25 00:26:21 +1100200const char *
Damien Miller3a961dc2003-06-03 10:25:48 +1000201get_canonical_hostname(int use_dns)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000202{
Damien Miller24ecf612005-11-05 15:16:52 +1100203 char *host;
Damien Miller34132e52000-01-14 15:45:46 +1100204 static char *canonical_host_name = NULL;
Damien Miller24ecf612005-11-05 15:16:52 +1100205 static char *remote_ip = NULL;
Damien Miller34132e52000-01-14 15:45:46 +1100206
Damien Miller33804262001-02-04 23:20:18 +1100207 /* Check if we have previously retrieved name with same option. */
Damien Miller24ecf612005-11-05 15:16:52 +1100208 if (use_dns && canonical_host_name != NULL)
209 return canonical_host_name;
210 if (!use_dns && remote_ip != NULL)
211 return remote_ip;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000212
Damien Miller95def091999-11-25 00:26:21 +1100213 /* Get the real hostname if socket; otherwise return UNKNOWN. */
Damien Miller34132e52000-01-14 15:45:46 +1100214 if (packet_connection_is_on_socket())
Damien Miller24ecf612005-11-05 15:16:52 +1100215 host = get_remote_hostname(packet_get_connection_in(), use_dns);
Damien Miller95def091999-11-25 00:26:21 +1100216 else
Damien Miller24ecf612005-11-05 15:16:52 +1100217 host = "UNKNOWN";
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000218
Damien Miller24ecf612005-11-05 15:16:52 +1100219 if (use_dns)
220 canonical_host_name = host;
221 else
222 remote_ip = host;
223 return host;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000224}
225
Damien Miller5428f641999-11-25 11:54:57 +1100226/*
Ben Lindstromacaac972002-12-23 02:13:37 +0000227 * Returns the local/remote IP-address/hostname of socket as a string.
228 * The returned string must be freed.
Damien Millerd83ff352001-01-30 09:19:34 +1100229 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000230static char *
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000231get_socket_address(int sock, int remote, int flags)
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000232{
233 struct sockaddr_storage addr;
234 socklen_t addrlen;
235 char ntop[NI_MAXHOST];
Damien Miller9b8073e2005-03-01 21:16:18 +1100236 int r;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000237
238 /* Get IP address of client. */
239 addrlen = sizeof(addr);
240 memset(&addr, 0, sizeof(addr));
241
242 if (remote) {
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000243 if (getpeername(sock, (struct sockaddr *)&addr, &addrlen)
Damien Millerb2f844d2002-09-25 12:19:08 +1000244 < 0)
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000245 return NULL;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000246 } else {
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000247 if (getsockname(sock, (struct sockaddr *)&addr, &addrlen)
Damien Millerb2f844d2002-09-25 12:19:08 +1000248 < 0)
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000249 return NULL;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000250 }
Damien Miller5e4471e2003-01-07 10:51:23 +1100251
252 /* Work around Linux IPv6 weirdness */
253 if (addr.ss_family == AF_INET6)
254 addrlen = sizeof(struct sockaddr_in6);
255
Darren Tucker5b115d42005-05-03 19:05:32 +1000256 ipv64_normalise_mapped(&addr, &addrlen);
257
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000258 /* Get the address in ascii. */
Damien Miller9b8073e2005-03-01 21:16:18 +1100259 if ((r = getnameinfo((struct sockaddr *)&addr, addrlen, ntop,
260 sizeof(ntop), NULL, 0, flags)) != 0) {
261 error("get_socket_address: getnameinfo %d failed: %s", flags,
262 r == EAI_SYSTEM ? strerror(errno) : gai_strerror(r));
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000263 return NULL;
264 }
265 return xstrdup(ntop);
266}
Damien Millerd83ff352001-01-30 09:19:34 +1100267
268char *
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000269get_peer_ipaddr(int sock)
Damien Millerd83ff352001-01-30 09:19:34 +1100270{
Damien Millerb2f844d2002-09-25 12:19:08 +1000271 char *p;
272
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000273 if ((p = get_socket_address(sock, 1, NI_NUMERICHOST)) != NULL)
Damien Millerb2f844d2002-09-25 12:19:08 +1000274 return p;
275 return xstrdup("UNKNOWN");
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000276}
Damien Millerd83ff352001-01-30 09:19:34 +1100277
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000278char *
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000279get_local_ipaddr(int sock)
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000280{
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, 0, 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}
287
288char *
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000289get_local_name(int sock)
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000290{
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000291 return get_socket_address(sock, 0, NI_NAMEREQD);
Damien Millerd83ff352001-01-30 09:19:34 +1100292}
293
294/*
Damien Miller5428f641999-11-25 11:54:57 +1100295 * Returns the IP-address of the remote host as a string. The returned
Damien Miller34132e52000-01-14 15:45:46 +1100296 * string must not be freed.
Damien Miller5428f641999-11-25 11:54:57 +1100297 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000298
Damien Miller95def091999-11-25 00:26:21 +1100299const char *
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000300get_remote_ipaddr(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000301{
Damien Miller34132e52000-01-14 15:45:46 +1100302 static char *canonical_host_ip = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000303
Damien Millerd83ff352001-01-30 09:19:34 +1100304 /* Check whether we have cached the ipaddr. */
305 if (canonical_host_ip == NULL) {
306 if (packet_connection_is_on_socket()) {
307 canonical_host_ip =
308 get_peer_ipaddr(packet_get_connection_in());
309 if (canonical_host_ip == NULL)
Darren Tucker3e33cec2003-10-02 16:12:36 +1000310 cleanup_exit(255);
Damien Millerd83ff352001-01-30 09:19:34 +1100311 } else {
312 /* If not on socket, return UNKNOWN. */
313 canonical_host_ip = xstrdup("UNKNOWN");
314 }
Damien Miller95def091999-11-25 00:26:21 +1100315 }
Damien Miller95def091999-11-25 00:26:21 +1100316 return canonical_host_ip;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000317}
318
Ben Lindstromf15a3862001-04-05 23:32:17 +0000319const char *
Damien Miller3a961dc2003-06-03 10:25:48 +1000320get_remote_name_or_ip(u_int utmp_len, int use_dns)
Ben Lindstromf15a3862001-04-05 23:32:17 +0000321{
322 static const char *remote = "";
323 if (utmp_len > 0)
Damien Miller3a961dc2003-06-03 10:25:48 +1000324 remote = get_canonical_hostname(use_dns);
Ben Lindstromf15a3862001-04-05 23:32:17 +0000325 if (utmp_len == 0 || strlen(remote) > utmp_len)
326 remote = get_remote_ipaddr();
327 return remote;
328}
329
Damien Miller34132e52000-01-14 15:45:46 +1100330/* Returns the local/remote port for the socket. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000331
Ben Lindstrombba81212001-06-25 05:01:22 +0000332static int
Damien Miller34132e52000-01-14 15:45:46 +1100333get_sock_port(int sock, int local)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000334{
Damien Miller34132e52000-01-14 15:45:46 +1100335 struct sockaddr_storage from;
336 socklen_t fromlen;
337 char strport[NI_MAXSERV];
Damien Miller9b8073e2005-03-01 21:16:18 +1100338 int r;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000339
Damien Miller95def091999-11-25 00:26:21 +1100340 /* Get IP address of client. */
341 fromlen = sizeof(from);
342 memset(&from, 0, sizeof(from));
Damien Miller34132e52000-01-14 15:45:46 +1100343 if (local) {
344 if (getsockname(sock, (struct sockaddr *)&from, &fromlen) < 0) {
345 error("getsockname failed: %.100s", strerror(errno));
346 return 0;
347 }
348 } else {
Ben Lindstromacaac972002-12-23 02:13:37 +0000349 if (getpeername(sock, (struct sockaddr *)&from, &fromlen) < 0) {
Damien Miller34132e52000-01-14 15:45:46 +1100350 debug("getpeername failed: %.100s", strerror(errno));
Damien Miller677257f2005-06-17 12:55:03 +1000351 return -1;
Damien Miller34132e52000-01-14 15:45:46 +1100352 }
Damien Miller95def091999-11-25 00:26:21 +1100353 }
Damien Miller5e4471e2003-01-07 10:51:23 +1100354
355 /* Work around Linux IPv6 weirdness */
356 if (from.ss_family == AF_INET6)
357 fromlen = sizeof(struct sockaddr_in6);
358
Damien Miller95def091999-11-25 00:26:21 +1100359 /* Return port number. */
Damien Miller9b8073e2005-03-01 21:16:18 +1100360 if ((r = getnameinfo((struct sockaddr *)&from, fromlen, NULL, 0,
361 strport, sizeof(strport), NI_NUMERICSERV)) != 0)
362 fatal("get_sock_port: getnameinfo NI_NUMERICSERV failed: %s",
363 r == EAI_SYSTEM ? strerror(errno) : gai_strerror(r));
Damien Miller34132e52000-01-14 15:45:46 +1100364 return atoi(strport);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000365}
366
Damien Miller34132e52000-01-14 15:45:46 +1100367/* Returns remote/local port number for the current connection. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000368
Ben Lindstrombba81212001-06-25 05:01:22 +0000369static int
Damien Miller34132e52000-01-14 15:45:46 +1100370get_port(int local)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000371{
Damien Miller5428f641999-11-25 11:54:57 +1100372 /*
373 * If the connection is not a socket, return 65535. This is
374 * intentionally chosen to be an unprivileged port number.
375 */
Damien Miller34132e52000-01-14 15:45:46 +1100376 if (!packet_connection_is_on_socket())
Damien Miller95def091999-11-25 00:26:21 +1100377 return 65535;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000378
Damien Miller34132e52000-01-14 15:45:46 +1100379 /* Get socket and return the port number. */
380 return get_sock_port(packet_get_connection_in(), local);
381}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000382
Damien Miller4af51302000-04-16 11:18:38 +1000383int
Damien Miller34132e52000-01-14 15:45:46 +1100384get_peer_port(int sock)
385{
386 return get_sock_port(sock, 0);
387}
388
Damien Miller4af51302000-04-16 11:18:38 +1000389int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000390get_remote_port(void)
Damien Miller34132e52000-01-14 15:45:46 +1100391{
Damien Miller0670c732004-07-21 21:53:34 +1000392 static int port = -1;
393
394 /* Cache to avoid getpeername() on a dead connection */
395 if (port == -1)
396 port = get_port(0);
397
398 return port;
Damien Miller34132e52000-01-14 15:45:46 +1100399}
400
401int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000402get_local_port(void)
Damien Miller34132e52000-01-14 15:45:46 +1100403{
404 return get_port(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000405}