blob: 2345cc35c3154b35ab36e09325951305b6178f9c [file] [log] [blame]
Damien Millerd7834352006-08-05 12:39:39 +10001/* $OpenBSD: canohost.c,v 1.61 2006/08/03 03:34:41 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
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"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100035
Ben Lindstrombba81212001-06-25 05:01:22 +000036static void check_ip_options(int, char *);
Damien Miller33804262001-02-04 23:20:18 +110037
Damien Miller5428f641999-11-25 11:54:57 +110038/*
39 * Return the canonical name of the host at the other end of the socket. The
40 * caller should free the returned string with xfree.
41 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100042
Ben Lindstrombba81212001-06-25 05:01:22 +000043static char *
Darren Tucker3f9fdc72004-06-22 12:56:01 +100044get_remote_hostname(int sock, int use_dns)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100045{
Damien Miller34132e52000-01-14 15:45:46 +110046 struct sockaddr_storage from;
47 int i;
48 socklen_t fromlen;
49 struct addrinfo hints, *ai, *aitop;
Damien Miller33804262001-02-04 23:20:18 +110050 char name[NI_MAXHOST], ntop[NI_MAXHOST], ntop2[NI_MAXHOST];
Damien Millerd4a8b7e1999-10-27 13:42:43 +100051
Damien Miller95def091999-11-25 00:26:21 +110052 /* Get IP address of client. */
53 fromlen = sizeof(from);
54 memset(&from, 0, sizeof(from));
Darren Tucker3f9fdc72004-06-22 12:56:01 +100055 if (getpeername(sock, (struct sockaddr *)&from, &fromlen) < 0) {
Damien Miller95def091999-11-25 00:26:21 +110056 debug("getpeername failed: %.100s", strerror(errno));
Darren Tucker3e33cec2003-10-02 16:12:36 +100057 cleanup_exit(255);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100058 }
Damien Miller7bcb0892000-03-11 20:45:40 +110059
Damien Miller2eaf37d2006-04-18 15:13:16 +100060 if (from.ss_family == AF_INET)
61 check_ip_options(sock, ntop);
62
Damien Miller927f5272003-11-24 12:57:25 +110063 ipv64_normalise_mapped(&from, &fromlen);
Damien Miller7bcb0892000-03-11 20:45:40 +110064
Damien Miller5e4471e2003-01-07 10:51:23 +110065 if (from.ss_family == AF_INET6)
66 fromlen = sizeof(struct sockaddr_in6);
Damien Miller7bcb0892000-03-11 20:45:40 +110067
Damien Miller34132e52000-01-14 15:45:46 +110068 if (getnameinfo((struct sockaddr *)&from, fromlen, ntop, sizeof(ntop),
Damien Miller9f0f5c62001-12-21 14:45:46 +110069 NULL, 0, NI_NUMERICHOST) != 0)
Damien Miller34132e52000-01-14 15:45:46 +110070 fatal("get_remote_hostname: getnameinfo NI_NUMERICHOST failed");
Damien Miller95def091999-11-25 00:26:21 +110071
Damien Miller3a961dc2003-06-03 10:25:48 +100072 if (!use_dns)
73 return xstrdup(ntop);
74
Ben Lindstrom121c7852001-04-18 15:32:44 +000075 debug3("Trying to reverse map address %.100s.", ntop);
Damien Miller34132e52000-01-14 15:45:46 +110076 /* Map the IP address to a host name. */
77 if (getnameinfo((struct sockaddr *)&from, fromlen, name, sizeof(name),
Damien Miller9f0f5c62001-12-21 14:45:46 +110078 NULL, 0, NI_NAMEREQD) != 0) {
Damien Miller33804262001-02-04 23:20:18 +110079 /* Host name not found. Use ip address. */
Damien Miller33804262001-02-04 23:20:18 +110080 return xstrdup(ntop);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100081 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +100082
Damien Miller3a961dc2003-06-03 10:25:48 +100083 /*
84 * if reverse lookup result looks like a numeric hostname,
85 * someone is trying to trick us by PTR record like following:
86 * 1.1.1.10.in-addr.arpa. IN PTR 2.3.4.5
87 */
88 memset(&hints, 0, sizeof(hints));
89 hints.ai_socktype = SOCK_DGRAM; /*dummy*/
Darren Tucker0f684862003-06-05 09:52:42 +100090 hints.ai_flags = AI_NUMERICHOST;
Damien Miller3a961dc2003-06-03 10:25:48 +100091 if (getaddrinfo(name, "0", &hints, &ai) == 0) {
92 logit("Nasty PTR record \"%s\" is set up for %s, ignoring",
93 name, ntop);
94 freeaddrinfo(ai);
95 return xstrdup(ntop);
96 }
97
Damien Miller5428f641999-11-25 11:54:57 +110098 /*
Damien Miller33804262001-02-04 23:20:18 +110099 * Convert it to all lowercase (which is expected by the rest
100 * of this software).
Damien Miller5428f641999-11-25 11:54:57 +1100101 */
Damien Miller33804262001-02-04 23:20:18 +1100102 for (i = 0; name[i]; i++)
103 if (isupper(name[i]))
Damien Miller1d2b6702006-03-26 14:09:54 +1100104 name[i] = (char)tolower(name[i]);
Damien Miller33804262001-02-04 23:20:18 +1100105 /*
106 * Map it back to an IP address and check that the given
107 * address actually is an address of this host. This is
108 * necessary because anyone with access to a name server can
109 * define arbitrary names for an IP address. Mapping from
110 * name to IP address can be trusted better (but can still be
111 * fooled if the intruder has access to the name server of
112 * the domain).
113 */
114 memset(&hints, 0, sizeof(hints));
115 hints.ai_family = from.ss_family;
116 hints.ai_socktype = SOCK_STREAM;
117 if (getaddrinfo(name, NULL, &hints, &aitop) != 0) {
Damien Miller996acd22003-04-09 20:59:48 +1000118 logit("reverse mapping checking getaddrinfo for %.700s "
Damien Millerde85a282006-03-15 12:06:41 +1100119 "[%s] failed - POSSIBLE BREAK-IN ATTEMPT!", name, ntop);
Damien Miller33804262001-02-04 23:20:18 +1100120 return xstrdup(ntop);
Damien Miller95def091999-11-25 00:26:21 +1100121 }
Damien Miller33804262001-02-04 23:20:18 +1100122 /* Look for the address from the list of addresses. */
123 for (ai = aitop; ai; ai = ai->ai_next) {
124 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop2,
125 sizeof(ntop2), NULL, 0, NI_NUMERICHOST) == 0 &&
126 (strcmp(ntop, ntop2) == 0))
127 break;
128 }
129 freeaddrinfo(aitop);
130 /* If we reached the end of the list, the address was not there. */
131 if (!ai) {
132 /* Address not found for the host name. */
Damien Miller996acd22003-04-09 20:59:48 +1000133 logit("Address %.100s maps to %.600s, but this does not "
Damien Miller5eb137c2005-12-31 16:19:53 +1100134 "map back to the address - POSSIBLE BREAK-IN ATTEMPT!",
Damien Miller33804262001-02-04 23:20:18 +1100135 ntop, name);
136 return xstrdup(ntop);
137 }
Damien Miller95def091999-11-25 00:26:21 +1100138 return xstrdup(name);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000139}
140
Damien Miller5428f641999-11-25 11:54:57 +1100141/*
Damien Miller33804262001-02-04 23:20:18 +1100142 * If IP options are supported, make sure there are none (log and
143 * disconnect them if any are found). Basically we are worried about
144 * source routing; it can be used to pretend you are somebody
145 * (ip-address) you are not. That itself may be "almost acceptable"
146 * under certain circumstances, but rhosts autentication is useless
147 * if source routing is accepted. Notice also that if we just dropped
148 * source routing here, the other side could use IP spoofing to do
149 * rest of the interaction and could still bypass security. So we
150 * exit here if we detect any IP options.
151 */
152/* IPv4 only */
Ben Lindstrombba81212001-06-25 05:01:22 +0000153static void
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000154check_ip_options(int sock, char *ipaddr)
Damien Miller33804262001-02-04 23:20:18 +1100155{
Darren Tucker89f4cf02003-08-07 13:29:04 +1000156#ifdef IP_OPTIONS
Ben Lindstrom075390a2001-02-10 21:34:46 +0000157 u_char options[200];
158 char text[sizeof(options) * 3 + 1];
Damien Miller33804262001-02-04 23:20:18 +1100159 socklen_t option_size;
Damien Millereccb9de2005-06-17 12:59:34 +1000160 u_int i;
161 int ipproto;
Damien Miller33804262001-02-04 23:20:18 +1100162 struct protoent *ip;
163
164 if ((ip = getprotobyname("ip")) != NULL)
165 ipproto = ip->p_proto;
166 else
167 ipproto = IPPROTO_IP;
168 option_size = sizeof(options);
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000169 if (getsockopt(sock, ipproto, IP_OPTIONS, options,
Damien Miller33804262001-02-04 23:20:18 +1100170 &option_size) >= 0 && option_size != 0) {
Ben Lindstrom075390a2001-02-10 21:34:46 +0000171 text[0] = '\0';
172 for (i = 0; i < option_size; i++)
173 snprintf(text + i*3, sizeof(text) - i*3,
174 " %2.2x", options[i]);
Damien Miller4d3fd542005-11-05 15:13:24 +1100175 fatal("Connection from %.100s with IP options:%.800s",
Damien Miller33804262001-02-04 23:20:18 +1100176 ipaddr, text);
177 }
Darren Tucker89f4cf02003-08-07 13:29:04 +1000178#endif /* IP_OPTIONS */
Damien Miller33804262001-02-04 23:20:18 +1100179}
180
Darren Tucker2fba9932005-02-02 23:30:24 +1100181void
Damien Miller927f5272003-11-24 12:57:25 +1100182ipv64_normalise_mapped(struct sockaddr_storage *addr, socklen_t *len)
183{
184 struct sockaddr_in6 *a6 = (struct sockaddr_in6 *)addr;
185 struct sockaddr_in *a4 = (struct sockaddr_in *)addr;
186 struct in_addr inaddr;
187 u_int16_t port;
188
Damien Miller94cf4c82005-07-17 17:04:47 +1000189 if (addr->ss_family != AF_INET6 ||
Damien Miller927f5272003-11-24 12:57:25 +1100190 !IN6_IS_ADDR_V4MAPPED(&a6->sin6_addr))
191 return;
192
193 debug3("Normalising mapped IPv4 in IPv6 address");
194
195 memcpy(&inaddr, ((char *)&a6->sin6_addr) + 12, sizeof(inaddr));
196 port = a6->sin6_port;
197
198 memset(addr, 0, sizeof(*a4));
199
200 a4->sin_family = AF_INET;
201 *len = sizeof(*a4);
202 memcpy(&a4->sin_addr, &inaddr, sizeof(inaddr));
203 a4->sin_port = port;
204}
205
Damien Miller33804262001-02-04 23:20:18 +1100206/*
Damien Miller5428f641999-11-25 11:54:57 +1100207 * Return the canonical name of the host in the other side of the current
208 * connection. The host name is cached, so it is efficient to call this
209 * several times.
210 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000211
Damien Miller95def091999-11-25 00:26:21 +1100212const char *
Damien Miller3a961dc2003-06-03 10:25:48 +1000213get_canonical_hostname(int use_dns)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000214{
Damien Miller24ecf612005-11-05 15:16:52 +1100215 char *host;
Damien Miller34132e52000-01-14 15:45:46 +1100216 static char *canonical_host_name = NULL;
Damien Miller24ecf612005-11-05 15:16:52 +1100217 static char *remote_ip = NULL;
Damien Miller34132e52000-01-14 15:45:46 +1100218
Damien Miller33804262001-02-04 23:20:18 +1100219 /* Check if we have previously retrieved name with same option. */
Damien Miller24ecf612005-11-05 15:16:52 +1100220 if (use_dns && canonical_host_name != NULL)
221 return canonical_host_name;
222 if (!use_dns && remote_ip != NULL)
223 return remote_ip;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000224
Damien Miller95def091999-11-25 00:26:21 +1100225 /* Get the real hostname if socket; otherwise return UNKNOWN. */
Damien Miller34132e52000-01-14 15:45:46 +1100226 if (packet_connection_is_on_socket())
Damien Miller24ecf612005-11-05 15:16:52 +1100227 host = get_remote_hostname(packet_get_connection_in(), use_dns);
Damien Miller95def091999-11-25 00:26:21 +1100228 else
Damien Miller24ecf612005-11-05 15:16:52 +1100229 host = "UNKNOWN";
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000230
Damien Miller24ecf612005-11-05 15:16:52 +1100231 if (use_dns)
232 canonical_host_name = host;
233 else
234 remote_ip = host;
235 return host;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000236}
237
Damien Miller5428f641999-11-25 11:54:57 +1100238/*
Ben Lindstromacaac972002-12-23 02:13:37 +0000239 * Returns the local/remote IP-address/hostname of socket as a string.
240 * The returned string must be freed.
Damien Millerd83ff352001-01-30 09:19:34 +1100241 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000242static char *
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000243get_socket_address(int sock, int remote, int flags)
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000244{
245 struct sockaddr_storage addr;
246 socklen_t addrlen;
247 char ntop[NI_MAXHOST];
Damien Miller9b8073e2005-03-01 21:16:18 +1100248 int r;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000249
250 /* Get IP address of client. */
251 addrlen = sizeof(addr);
252 memset(&addr, 0, sizeof(addr));
253
254 if (remote) {
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000255 if (getpeername(sock, (struct sockaddr *)&addr, &addrlen)
Damien Millerb2f844d2002-09-25 12:19:08 +1000256 < 0)
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000257 return NULL;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000258 } else {
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000259 if (getsockname(sock, (struct sockaddr *)&addr, &addrlen)
Damien Millerb2f844d2002-09-25 12:19:08 +1000260 < 0)
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000261 return NULL;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000262 }
Damien Miller5e4471e2003-01-07 10:51:23 +1100263
264 /* Work around Linux IPv6 weirdness */
265 if (addr.ss_family == AF_INET6)
266 addrlen = sizeof(struct sockaddr_in6);
267
Darren Tucker5b115d42005-05-03 19:05:32 +1000268 ipv64_normalise_mapped(&addr, &addrlen);
269
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000270 /* Get the address in ascii. */
Damien Miller9b8073e2005-03-01 21:16:18 +1100271 if ((r = getnameinfo((struct sockaddr *)&addr, addrlen, ntop,
272 sizeof(ntop), NULL, 0, flags)) != 0) {
273 error("get_socket_address: getnameinfo %d failed: %s", flags,
274 r == EAI_SYSTEM ? strerror(errno) : gai_strerror(r));
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000275 return NULL;
276 }
277 return xstrdup(ntop);
278}
Damien Millerd83ff352001-01-30 09:19:34 +1100279
280char *
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000281get_peer_ipaddr(int sock)
Damien Millerd83ff352001-01-30 09:19:34 +1100282{
Damien Millerb2f844d2002-09-25 12:19:08 +1000283 char *p;
284
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000285 if ((p = get_socket_address(sock, 1, NI_NUMERICHOST)) != NULL)
Damien Millerb2f844d2002-09-25 12:19:08 +1000286 return p;
287 return xstrdup("UNKNOWN");
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000288}
Damien Millerd83ff352001-01-30 09:19:34 +1100289
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000290char *
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000291get_local_ipaddr(int sock)
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000292{
Damien Millerb2f844d2002-09-25 12:19:08 +1000293 char *p;
294
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000295 if ((p = get_socket_address(sock, 0, NI_NUMERICHOST)) != NULL)
Damien Millerb2f844d2002-09-25 12:19:08 +1000296 return p;
297 return xstrdup("UNKNOWN");
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000298}
299
300char *
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000301get_local_name(int sock)
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000302{
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000303 return get_socket_address(sock, 0, NI_NAMEREQD);
Damien Millerd83ff352001-01-30 09:19:34 +1100304}
305
306/*
Damien Miller5428f641999-11-25 11:54:57 +1100307 * Returns the IP-address of the remote host as a string. The returned
Damien Miller34132e52000-01-14 15:45:46 +1100308 * string must not be freed.
Damien Miller5428f641999-11-25 11:54:57 +1100309 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000310
Damien Miller95def091999-11-25 00:26:21 +1100311const char *
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000312get_remote_ipaddr(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000313{
Damien Miller34132e52000-01-14 15:45:46 +1100314 static char *canonical_host_ip = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000315
Damien Millerd83ff352001-01-30 09:19:34 +1100316 /* Check whether we have cached the ipaddr. */
317 if (canonical_host_ip == NULL) {
318 if (packet_connection_is_on_socket()) {
319 canonical_host_ip =
320 get_peer_ipaddr(packet_get_connection_in());
321 if (canonical_host_ip == NULL)
Darren Tucker3e33cec2003-10-02 16:12:36 +1000322 cleanup_exit(255);
Damien Millerd83ff352001-01-30 09:19:34 +1100323 } else {
324 /* If not on socket, return UNKNOWN. */
325 canonical_host_ip = xstrdup("UNKNOWN");
326 }
Damien Miller95def091999-11-25 00:26:21 +1100327 }
Damien Miller95def091999-11-25 00:26:21 +1100328 return canonical_host_ip;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000329}
330
Ben Lindstromf15a3862001-04-05 23:32:17 +0000331const char *
Damien Miller3a961dc2003-06-03 10:25:48 +1000332get_remote_name_or_ip(u_int utmp_len, int use_dns)
Ben Lindstromf15a3862001-04-05 23:32:17 +0000333{
334 static const char *remote = "";
335 if (utmp_len > 0)
Damien Miller3a961dc2003-06-03 10:25:48 +1000336 remote = get_canonical_hostname(use_dns);
Ben Lindstromf15a3862001-04-05 23:32:17 +0000337 if (utmp_len == 0 || strlen(remote) > utmp_len)
338 remote = get_remote_ipaddr();
339 return remote;
340}
341
Damien Miller34132e52000-01-14 15:45:46 +1100342/* Returns the local/remote port for the socket. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000343
Ben Lindstrombba81212001-06-25 05:01:22 +0000344static int
Damien Miller34132e52000-01-14 15:45:46 +1100345get_sock_port(int sock, int local)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000346{
Damien Miller34132e52000-01-14 15:45:46 +1100347 struct sockaddr_storage from;
348 socklen_t fromlen;
349 char strport[NI_MAXSERV];
Damien Miller9b8073e2005-03-01 21:16:18 +1100350 int r;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000351
Damien Miller95def091999-11-25 00:26:21 +1100352 /* Get IP address of client. */
353 fromlen = sizeof(from);
354 memset(&from, 0, sizeof(from));
Damien Miller34132e52000-01-14 15:45:46 +1100355 if (local) {
356 if (getsockname(sock, (struct sockaddr *)&from, &fromlen) < 0) {
357 error("getsockname failed: %.100s", strerror(errno));
358 return 0;
359 }
360 } else {
Ben Lindstromacaac972002-12-23 02:13:37 +0000361 if (getpeername(sock, (struct sockaddr *)&from, &fromlen) < 0) {
Damien Miller34132e52000-01-14 15:45:46 +1100362 debug("getpeername failed: %.100s", strerror(errno));
Damien Miller677257f2005-06-17 12:55:03 +1000363 return -1;
Damien Miller34132e52000-01-14 15:45:46 +1100364 }
Damien Miller95def091999-11-25 00:26:21 +1100365 }
Damien Miller5e4471e2003-01-07 10:51:23 +1100366
367 /* Work around Linux IPv6 weirdness */
368 if (from.ss_family == AF_INET6)
369 fromlen = sizeof(struct sockaddr_in6);
370
Damien Miller95def091999-11-25 00:26:21 +1100371 /* Return port number. */
Damien Miller9b8073e2005-03-01 21:16:18 +1100372 if ((r = getnameinfo((struct sockaddr *)&from, fromlen, NULL, 0,
373 strport, sizeof(strport), NI_NUMERICSERV)) != 0)
374 fatal("get_sock_port: getnameinfo NI_NUMERICSERV failed: %s",
375 r == EAI_SYSTEM ? strerror(errno) : gai_strerror(r));
Damien Miller34132e52000-01-14 15:45:46 +1100376 return atoi(strport);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000377}
378
Damien Miller34132e52000-01-14 15:45:46 +1100379/* Returns remote/local port number for the current connection. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000380
Ben Lindstrombba81212001-06-25 05:01:22 +0000381static int
Damien Miller34132e52000-01-14 15:45:46 +1100382get_port(int local)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000383{
Damien Miller5428f641999-11-25 11:54:57 +1100384 /*
385 * If the connection is not a socket, return 65535. This is
386 * intentionally chosen to be an unprivileged port number.
387 */
Damien Miller34132e52000-01-14 15:45:46 +1100388 if (!packet_connection_is_on_socket())
Damien Miller95def091999-11-25 00:26:21 +1100389 return 65535;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000390
Damien Miller34132e52000-01-14 15:45:46 +1100391 /* Get socket and return the port number. */
392 return get_sock_port(packet_get_connection_in(), local);
393}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000394
Damien Miller4af51302000-04-16 11:18:38 +1000395int
Damien Miller34132e52000-01-14 15:45:46 +1100396get_peer_port(int sock)
397{
398 return get_sock_port(sock, 0);
399}
400
Damien Miller4af51302000-04-16 11:18:38 +1000401int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000402get_remote_port(void)
Damien Miller34132e52000-01-14 15:45:46 +1100403{
Damien Miller0670c732004-07-21 21:53:34 +1000404 static int port = -1;
405
406 /* Cache to avoid getpeername() on a dead connection */
407 if (port == -1)
408 port = get_port(0);
409
410 return port;
Damien Miller34132e52000-01-14 15:45:46 +1100411}
412
413int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000414get_local_port(void)
Damien Miller34132e52000-01-14 15:45:46 +1100415{
416 return get_port(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000417}