blob: 787d338d452a75b2f681c33c8fdbd22e473996f4 [file] [log] [blame]
Damien Miller8ec8c3e2006-07-10 20:35:38 +10001/* $OpenBSD: canohost.c,v 1.54 2006/07/05 02:42:09 stevesk 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 Miller8ec8c3e2006-07-10 20:35:38 +100017#include <sys/socket.h>
18
19#include <netinet/in.h>
20
Damien Millerc7b06362006-03-15 11:53:45 +110021#include <ctype.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100022
23#include "packet.h"
24#include "xmalloc.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000025#include "log.h"
Ben Lindstrom31ca54a2001-02-09 02:11:24 +000026#include "canohost.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100027
Ben Lindstrombba81212001-06-25 05:01:22 +000028static void check_ip_options(int, char *);
Damien Miller33804262001-02-04 23:20:18 +110029
Damien Miller5428f641999-11-25 11:54:57 +110030/*
31 * Return the canonical name of the host at the other end of the socket. The
32 * caller should free the returned string with xfree.
33 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100034
Ben Lindstrombba81212001-06-25 05:01:22 +000035static char *
Darren Tucker3f9fdc72004-06-22 12:56:01 +100036get_remote_hostname(int sock, int use_dns)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100037{
Damien Miller34132e52000-01-14 15:45:46 +110038 struct sockaddr_storage from;
39 int i;
40 socklen_t fromlen;
41 struct addrinfo hints, *ai, *aitop;
Damien Miller33804262001-02-04 23:20:18 +110042 char name[NI_MAXHOST], ntop[NI_MAXHOST], ntop2[NI_MAXHOST];
Damien Millerd4a8b7e1999-10-27 13:42:43 +100043
Damien Miller95def091999-11-25 00:26:21 +110044 /* Get IP address of client. */
45 fromlen = sizeof(from);
46 memset(&from, 0, sizeof(from));
Darren Tucker3f9fdc72004-06-22 12:56:01 +100047 if (getpeername(sock, (struct sockaddr *)&from, &fromlen) < 0) {
Damien Miller95def091999-11-25 00:26:21 +110048 debug("getpeername failed: %.100s", strerror(errno));
Darren Tucker3e33cec2003-10-02 16:12:36 +100049 cleanup_exit(255);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100050 }
Damien Miller7bcb0892000-03-11 20:45:40 +110051
Damien Miller2eaf37d2006-04-18 15:13:16 +100052 if (from.ss_family == AF_INET)
53 check_ip_options(sock, ntop);
54
Damien Miller927f5272003-11-24 12:57:25 +110055 ipv64_normalise_mapped(&from, &fromlen);
Damien Miller7bcb0892000-03-11 20:45:40 +110056
Damien Miller5e4471e2003-01-07 10:51:23 +110057 if (from.ss_family == AF_INET6)
58 fromlen = sizeof(struct sockaddr_in6);
Damien Miller7bcb0892000-03-11 20:45:40 +110059
Damien Miller34132e52000-01-14 15:45:46 +110060 if (getnameinfo((struct sockaddr *)&from, fromlen, ntop, sizeof(ntop),
Damien Miller9f0f5c62001-12-21 14:45:46 +110061 NULL, 0, NI_NUMERICHOST) != 0)
Damien Miller34132e52000-01-14 15:45:46 +110062 fatal("get_remote_hostname: getnameinfo NI_NUMERICHOST failed");
Damien Miller95def091999-11-25 00:26:21 +110063
Damien Miller3a961dc2003-06-03 10:25:48 +100064 if (!use_dns)
65 return xstrdup(ntop);
66
Ben Lindstrom121c7852001-04-18 15:32:44 +000067 debug3("Trying to reverse map address %.100s.", ntop);
Damien Miller34132e52000-01-14 15:45:46 +110068 /* Map the IP address to a host name. */
69 if (getnameinfo((struct sockaddr *)&from, fromlen, name, sizeof(name),
Damien Miller9f0f5c62001-12-21 14:45:46 +110070 NULL, 0, NI_NAMEREQD) != 0) {
Damien Miller33804262001-02-04 23:20:18 +110071 /* Host name not found. Use ip address. */
Damien Miller33804262001-02-04 23:20:18 +110072 return xstrdup(ntop);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100073 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +100074
Damien Miller3a961dc2003-06-03 10:25:48 +100075 /*
76 * if reverse lookup result looks like a numeric hostname,
77 * someone is trying to trick us by PTR record like following:
78 * 1.1.1.10.in-addr.arpa. IN PTR 2.3.4.5
79 */
80 memset(&hints, 0, sizeof(hints));
81 hints.ai_socktype = SOCK_DGRAM; /*dummy*/
Darren Tucker0f684862003-06-05 09:52:42 +100082 hints.ai_flags = AI_NUMERICHOST;
Damien Miller3a961dc2003-06-03 10:25:48 +100083 if (getaddrinfo(name, "0", &hints, &ai) == 0) {
84 logit("Nasty PTR record \"%s\" is set up for %s, ignoring",
85 name, ntop);
86 freeaddrinfo(ai);
87 return xstrdup(ntop);
88 }
89
Damien Miller5428f641999-11-25 11:54:57 +110090 /*
Damien Miller33804262001-02-04 23:20:18 +110091 * Convert it to all lowercase (which is expected by the rest
92 * of this software).
Damien Miller5428f641999-11-25 11:54:57 +110093 */
Damien Miller33804262001-02-04 23:20:18 +110094 for (i = 0; name[i]; i++)
95 if (isupper(name[i]))
Damien Miller1d2b6702006-03-26 14:09:54 +110096 name[i] = (char)tolower(name[i]);
Damien Miller33804262001-02-04 23:20:18 +110097 /*
98 * Map it back to an IP address and check that the given
99 * address actually is an address of this host. This is
100 * necessary because anyone with access to a name server can
101 * define arbitrary names for an IP address. Mapping from
102 * name to IP address can be trusted better (but can still be
103 * fooled if the intruder has access to the name server of
104 * the domain).
105 */
106 memset(&hints, 0, sizeof(hints));
107 hints.ai_family = from.ss_family;
108 hints.ai_socktype = SOCK_STREAM;
109 if (getaddrinfo(name, NULL, &hints, &aitop) != 0) {
Damien Miller996acd22003-04-09 20:59:48 +1000110 logit("reverse mapping checking getaddrinfo for %.700s "
Damien Millerde85a282006-03-15 12:06:41 +1100111 "[%s] failed - POSSIBLE BREAK-IN ATTEMPT!", name, ntop);
Damien Miller33804262001-02-04 23:20:18 +1100112 return xstrdup(ntop);
Damien Miller95def091999-11-25 00:26:21 +1100113 }
Damien Miller33804262001-02-04 23:20:18 +1100114 /* Look for the address from the list of addresses. */
115 for (ai = aitop; ai; ai = ai->ai_next) {
116 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop2,
117 sizeof(ntop2), NULL, 0, NI_NUMERICHOST) == 0 &&
118 (strcmp(ntop, ntop2) == 0))
119 break;
120 }
121 freeaddrinfo(aitop);
122 /* If we reached the end of the list, the address was not there. */
123 if (!ai) {
124 /* Address not found for the host name. */
Damien Miller996acd22003-04-09 20:59:48 +1000125 logit("Address %.100s maps to %.600s, but this does not "
Damien Miller5eb137c2005-12-31 16:19:53 +1100126 "map back to the address - POSSIBLE BREAK-IN ATTEMPT!",
Damien Miller33804262001-02-04 23:20:18 +1100127 ntop, name);
128 return xstrdup(ntop);
129 }
Damien Miller95def091999-11-25 00:26:21 +1100130 return xstrdup(name);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000131}
132
Damien Miller5428f641999-11-25 11:54:57 +1100133/*
Damien Miller33804262001-02-04 23:20:18 +1100134 * If IP options are supported, make sure there are none (log and
135 * disconnect them if any are found). Basically we are worried about
136 * source routing; it can be used to pretend you are somebody
137 * (ip-address) you are not. That itself may be "almost acceptable"
138 * under certain circumstances, but rhosts autentication is useless
139 * if source routing is accepted. Notice also that if we just dropped
140 * source routing here, the other side could use IP spoofing to do
141 * rest of the interaction and could still bypass security. So we
142 * exit here if we detect any IP options.
143 */
144/* IPv4 only */
Ben Lindstrombba81212001-06-25 05:01:22 +0000145static void
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000146check_ip_options(int sock, char *ipaddr)
Damien Miller33804262001-02-04 23:20:18 +1100147{
Darren Tucker89f4cf02003-08-07 13:29:04 +1000148#ifdef IP_OPTIONS
Ben Lindstrom075390a2001-02-10 21:34:46 +0000149 u_char options[200];
150 char text[sizeof(options) * 3 + 1];
Damien Miller33804262001-02-04 23:20:18 +1100151 socklen_t option_size;
Damien Millereccb9de2005-06-17 12:59:34 +1000152 u_int i;
153 int ipproto;
Damien Miller33804262001-02-04 23:20:18 +1100154 struct protoent *ip;
155
156 if ((ip = getprotobyname("ip")) != NULL)
157 ipproto = ip->p_proto;
158 else
159 ipproto = IPPROTO_IP;
160 option_size = sizeof(options);
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000161 if (getsockopt(sock, ipproto, IP_OPTIONS, options,
Damien Miller33804262001-02-04 23:20:18 +1100162 &option_size) >= 0 && option_size != 0) {
Ben Lindstrom075390a2001-02-10 21:34:46 +0000163 text[0] = '\0';
164 for (i = 0; i < option_size; i++)
165 snprintf(text + i*3, sizeof(text) - i*3,
166 " %2.2x", options[i]);
Damien Miller4d3fd542005-11-05 15:13:24 +1100167 fatal("Connection from %.100s with IP options:%.800s",
Damien Miller33804262001-02-04 23:20:18 +1100168 ipaddr, text);
169 }
Darren Tucker89f4cf02003-08-07 13:29:04 +1000170#endif /* IP_OPTIONS */
Damien Miller33804262001-02-04 23:20:18 +1100171}
172
Darren Tucker2fba9932005-02-02 23:30:24 +1100173void
Damien Miller927f5272003-11-24 12:57:25 +1100174ipv64_normalise_mapped(struct sockaddr_storage *addr, socklen_t *len)
175{
176 struct sockaddr_in6 *a6 = (struct sockaddr_in6 *)addr;
177 struct sockaddr_in *a4 = (struct sockaddr_in *)addr;
178 struct in_addr inaddr;
179 u_int16_t port;
180
Damien Miller94cf4c82005-07-17 17:04:47 +1000181 if (addr->ss_family != AF_INET6 ||
Damien Miller927f5272003-11-24 12:57:25 +1100182 !IN6_IS_ADDR_V4MAPPED(&a6->sin6_addr))
183 return;
184
185 debug3("Normalising mapped IPv4 in IPv6 address");
186
187 memcpy(&inaddr, ((char *)&a6->sin6_addr) + 12, sizeof(inaddr));
188 port = a6->sin6_port;
189
190 memset(addr, 0, sizeof(*a4));
191
192 a4->sin_family = AF_INET;
193 *len = sizeof(*a4);
194 memcpy(&a4->sin_addr, &inaddr, sizeof(inaddr));
195 a4->sin_port = port;
196}
197
Damien Miller33804262001-02-04 23:20:18 +1100198/*
Damien Miller5428f641999-11-25 11:54:57 +1100199 * Return the canonical name of the host in the other side of the current
200 * connection. The host name is cached, so it is efficient to call this
201 * several times.
202 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000203
Damien Miller95def091999-11-25 00:26:21 +1100204const char *
Damien Miller3a961dc2003-06-03 10:25:48 +1000205get_canonical_hostname(int use_dns)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000206{
Damien Miller24ecf612005-11-05 15:16:52 +1100207 char *host;
Damien Miller34132e52000-01-14 15:45:46 +1100208 static char *canonical_host_name = NULL;
Damien Miller24ecf612005-11-05 15:16:52 +1100209 static char *remote_ip = NULL;
Damien Miller34132e52000-01-14 15:45:46 +1100210
Damien Miller33804262001-02-04 23:20:18 +1100211 /* Check if we have previously retrieved name with same option. */
Damien Miller24ecf612005-11-05 15:16:52 +1100212 if (use_dns && canonical_host_name != NULL)
213 return canonical_host_name;
214 if (!use_dns && remote_ip != NULL)
215 return remote_ip;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000216
Damien Miller95def091999-11-25 00:26:21 +1100217 /* Get the real hostname if socket; otherwise return UNKNOWN. */
Damien Miller34132e52000-01-14 15:45:46 +1100218 if (packet_connection_is_on_socket())
Damien Miller24ecf612005-11-05 15:16:52 +1100219 host = get_remote_hostname(packet_get_connection_in(), use_dns);
Damien Miller95def091999-11-25 00:26:21 +1100220 else
Damien Miller24ecf612005-11-05 15:16:52 +1100221 host = "UNKNOWN";
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000222
Damien Miller24ecf612005-11-05 15:16:52 +1100223 if (use_dns)
224 canonical_host_name = host;
225 else
226 remote_ip = host;
227 return host;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000228}
229
Damien Miller5428f641999-11-25 11:54:57 +1100230/*
Ben Lindstromacaac972002-12-23 02:13:37 +0000231 * Returns the local/remote IP-address/hostname of socket as a string.
232 * The returned string must be freed.
Damien Millerd83ff352001-01-30 09:19:34 +1100233 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000234static char *
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000235get_socket_address(int sock, int remote, int flags)
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000236{
237 struct sockaddr_storage addr;
238 socklen_t addrlen;
239 char ntop[NI_MAXHOST];
Damien Miller9b8073e2005-03-01 21:16:18 +1100240 int r;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000241
242 /* Get IP address of client. */
243 addrlen = sizeof(addr);
244 memset(&addr, 0, sizeof(addr));
245
246 if (remote) {
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000247 if (getpeername(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 } else {
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000251 if (getsockname(sock, (struct sockaddr *)&addr, &addrlen)
Damien Millerb2f844d2002-09-25 12:19:08 +1000252 < 0)
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000253 return NULL;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000254 }
Damien Miller5e4471e2003-01-07 10:51:23 +1100255
256 /* Work around Linux IPv6 weirdness */
257 if (addr.ss_family == AF_INET6)
258 addrlen = sizeof(struct sockaddr_in6);
259
Darren Tucker5b115d42005-05-03 19:05:32 +1000260 ipv64_normalise_mapped(&addr, &addrlen);
261
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000262 /* Get the address in ascii. */
Damien Miller9b8073e2005-03-01 21:16:18 +1100263 if ((r = getnameinfo((struct sockaddr *)&addr, addrlen, ntop,
264 sizeof(ntop), NULL, 0, flags)) != 0) {
265 error("get_socket_address: getnameinfo %d failed: %s", flags,
266 r == EAI_SYSTEM ? strerror(errno) : gai_strerror(r));
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000267 return NULL;
268 }
269 return xstrdup(ntop);
270}
Damien Millerd83ff352001-01-30 09:19:34 +1100271
272char *
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000273get_peer_ipaddr(int sock)
Damien Millerd83ff352001-01-30 09:19:34 +1100274{
Damien Millerb2f844d2002-09-25 12:19:08 +1000275 char *p;
276
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000277 if ((p = get_socket_address(sock, 1, NI_NUMERICHOST)) != NULL)
Damien Millerb2f844d2002-09-25 12:19:08 +1000278 return p;
279 return xstrdup("UNKNOWN");
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000280}
Damien Millerd83ff352001-01-30 09:19:34 +1100281
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000282char *
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000283get_local_ipaddr(int sock)
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000284{
Damien Millerb2f844d2002-09-25 12:19:08 +1000285 char *p;
286
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000287 if ((p = get_socket_address(sock, 0, NI_NUMERICHOST)) != NULL)
Damien Millerb2f844d2002-09-25 12:19:08 +1000288 return p;
289 return xstrdup("UNKNOWN");
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000290}
291
292char *
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000293get_local_name(int sock)
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000294{
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000295 return get_socket_address(sock, 0, NI_NAMEREQD);
Damien Millerd83ff352001-01-30 09:19:34 +1100296}
297
298/*
Damien Miller5428f641999-11-25 11:54:57 +1100299 * Returns the IP-address of the remote host as a string. The returned
Damien Miller34132e52000-01-14 15:45:46 +1100300 * string must not be freed.
Damien Miller5428f641999-11-25 11:54:57 +1100301 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000302
Damien Miller95def091999-11-25 00:26:21 +1100303const char *
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000304get_remote_ipaddr(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000305{
Damien Miller34132e52000-01-14 15:45:46 +1100306 static char *canonical_host_ip = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000307
Damien Millerd83ff352001-01-30 09:19:34 +1100308 /* Check whether we have cached the ipaddr. */
309 if (canonical_host_ip == NULL) {
310 if (packet_connection_is_on_socket()) {
311 canonical_host_ip =
312 get_peer_ipaddr(packet_get_connection_in());
313 if (canonical_host_ip == NULL)
Darren Tucker3e33cec2003-10-02 16:12:36 +1000314 cleanup_exit(255);
Damien Millerd83ff352001-01-30 09:19:34 +1100315 } else {
316 /* If not on socket, return UNKNOWN. */
317 canonical_host_ip = xstrdup("UNKNOWN");
318 }
Damien Miller95def091999-11-25 00:26:21 +1100319 }
Damien Miller95def091999-11-25 00:26:21 +1100320 return canonical_host_ip;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000321}
322
Ben Lindstromf15a3862001-04-05 23:32:17 +0000323const char *
Damien Miller3a961dc2003-06-03 10:25:48 +1000324get_remote_name_or_ip(u_int utmp_len, int use_dns)
Ben Lindstromf15a3862001-04-05 23:32:17 +0000325{
326 static const char *remote = "";
327 if (utmp_len > 0)
Damien Miller3a961dc2003-06-03 10:25:48 +1000328 remote = get_canonical_hostname(use_dns);
Ben Lindstromf15a3862001-04-05 23:32:17 +0000329 if (utmp_len == 0 || strlen(remote) > utmp_len)
330 remote = get_remote_ipaddr();
331 return remote;
332}
333
Damien Miller34132e52000-01-14 15:45:46 +1100334/* Returns the local/remote port for the socket. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000335
Ben Lindstrombba81212001-06-25 05:01:22 +0000336static int
Damien Miller34132e52000-01-14 15:45:46 +1100337get_sock_port(int sock, int local)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000338{
Damien Miller34132e52000-01-14 15:45:46 +1100339 struct sockaddr_storage from;
340 socklen_t fromlen;
341 char strport[NI_MAXSERV];
Damien Miller9b8073e2005-03-01 21:16:18 +1100342 int r;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000343
Damien Miller95def091999-11-25 00:26:21 +1100344 /* Get IP address of client. */
345 fromlen = sizeof(from);
346 memset(&from, 0, sizeof(from));
Damien Miller34132e52000-01-14 15:45:46 +1100347 if (local) {
348 if (getsockname(sock, (struct sockaddr *)&from, &fromlen) < 0) {
349 error("getsockname failed: %.100s", strerror(errno));
350 return 0;
351 }
352 } else {
Ben Lindstromacaac972002-12-23 02:13:37 +0000353 if (getpeername(sock, (struct sockaddr *)&from, &fromlen) < 0) {
Damien Miller34132e52000-01-14 15:45:46 +1100354 debug("getpeername failed: %.100s", strerror(errno));
Damien Miller677257f2005-06-17 12:55:03 +1000355 return -1;
Damien Miller34132e52000-01-14 15:45:46 +1100356 }
Damien Miller95def091999-11-25 00:26:21 +1100357 }
Damien Miller5e4471e2003-01-07 10:51:23 +1100358
359 /* Work around Linux IPv6 weirdness */
360 if (from.ss_family == AF_INET6)
361 fromlen = sizeof(struct sockaddr_in6);
362
Damien Miller95def091999-11-25 00:26:21 +1100363 /* Return port number. */
Damien Miller9b8073e2005-03-01 21:16:18 +1100364 if ((r = getnameinfo((struct sockaddr *)&from, fromlen, NULL, 0,
365 strport, sizeof(strport), NI_NUMERICSERV)) != 0)
366 fatal("get_sock_port: getnameinfo NI_NUMERICSERV failed: %s",
367 r == EAI_SYSTEM ? strerror(errno) : gai_strerror(r));
Damien Miller34132e52000-01-14 15:45:46 +1100368 return atoi(strport);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000369}
370
Damien Miller34132e52000-01-14 15:45:46 +1100371/* Returns remote/local port number for the current connection. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000372
Ben Lindstrombba81212001-06-25 05:01:22 +0000373static int
Damien Miller34132e52000-01-14 15:45:46 +1100374get_port(int local)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000375{
Damien Miller5428f641999-11-25 11:54:57 +1100376 /*
377 * If the connection is not a socket, return 65535. This is
378 * intentionally chosen to be an unprivileged port number.
379 */
Damien Miller34132e52000-01-14 15:45:46 +1100380 if (!packet_connection_is_on_socket())
Damien Miller95def091999-11-25 00:26:21 +1100381 return 65535;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000382
Damien Miller34132e52000-01-14 15:45:46 +1100383 /* Get socket and return the port number. */
384 return get_sock_port(packet_get_connection_in(), local);
385}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000386
Damien Miller4af51302000-04-16 11:18:38 +1000387int
Damien Miller34132e52000-01-14 15:45:46 +1100388get_peer_port(int sock)
389{
390 return get_sock_port(sock, 0);
391}
392
Damien Miller4af51302000-04-16 11:18:38 +1000393int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000394get_remote_port(void)
Damien Miller34132e52000-01-14 15:45:46 +1100395{
Damien Miller0670c732004-07-21 21:53:34 +1000396 static int port = -1;
397
398 /* Cache to avoid getpeername() on a dead connection */
399 if (port == -1)
400 port = get_port(0);
401
402 return port;
Damien Miller34132e52000-01-14 15:45:46 +1100403}
404
405int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000406get_local_port(void)
Damien Miller34132e52000-01-14 15:45:46 +1100407{
408 return get_port(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000409}