blob: f5145922e6c8050003e9e40d8eebe3d216ece2a8 [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"
Darren Tucker3e33cec2003-10-02 16:12:36 +100015RCSID("$OpenBSD: canohost.c,v 1.38 2003/09/23 20:17:11 markus Exp $");
Damien Millerd4a8b7e1999-10-27 13:42:43 +100016
17#include "packet.h"
18#include "xmalloc.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000019#include "log.h"
Ben Lindstrom31ca54a2001-02-09 02:11:24 +000020#include "canohost.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100021
Ben Lindstrombba81212001-06-25 05:01:22 +000022static void check_ip_options(int, char *);
Damien Miller927f5272003-11-24 12:57:25 +110023static void ipv64_normalise_mapped(struct sockaddr_storage *, socklen_t *);
Damien Miller33804262001-02-04 23:20:18 +110024
Damien Miller5428f641999-11-25 11:54:57 +110025/*
26 * Return the canonical name of the host at the other end of the socket. The
27 * caller should free the returned string with xfree.
28 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100029
Ben Lindstrombba81212001-06-25 05:01:22 +000030static char *
Damien Miller3a961dc2003-06-03 10:25:48 +100031get_remote_hostname(int socket, int use_dns)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100032{
Damien Miller34132e52000-01-14 15:45:46 +110033 struct sockaddr_storage from;
34 int i;
35 socklen_t fromlen;
36 struct addrinfo hints, *ai, *aitop;
Damien Miller33804262001-02-04 23:20:18 +110037 char name[NI_MAXHOST], ntop[NI_MAXHOST], ntop2[NI_MAXHOST];
Damien Millerd4a8b7e1999-10-27 13:42:43 +100038
Damien Miller95def091999-11-25 00:26:21 +110039 /* Get IP address of client. */
40 fromlen = sizeof(from);
41 memset(&from, 0, sizeof(from));
Ben Lindstromacaac972002-12-23 02:13:37 +000042 if (getpeername(socket, (struct sockaddr *)&from, &fromlen) < 0) {
Damien Miller95def091999-11-25 00:26:21 +110043 debug("getpeername failed: %.100s", strerror(errno));
Darren Tucker3e33cec2003-10-02 16:12:36 +100044 cleanup_exit(255);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100045 }
Damien Miller7bcb0892000-03-11 20:45:40 +110046
Damien Miller927f5272003-11-24 12:57:25 +110047 ipv64_normalise_mapped(&from, &fromlen);
Damien Miller7bcb0892000-03-11 20:45:40 +110048
Damien Miller5e4471e2003-01-07 10:51:23 +110049 if (from.ss_family == AF_INET6)
50 fromlen = sizeof(struct sockaddr_in6);
Damien Miller7bcb0892000-03-11 20:45:40 +110051
Damien Miller34132e52000-01-14 15:45:46 +110052 if (getnameinfo((struct sockaddr *)&from, fromlen, ntop, sizeof(ntop),
Damien Miller9f0f5c62001-12-21 14:45:46 +110053 NULL, 0, NI_NUMERICHOST) != 0)
Damien Miller34132e52000-01-14 15:45:46 +110054 fatal("get_remote_hostname: getnameinfo NI_NUMERICHOST failed");
Damien Miller95def091999-11-25 00:26:21 +110055
Damien Miller3a961dc2003-06-03 10:25:48 +100056 if (!use_dns)
57 return xstrdup(ntop);
58
Ben Lindstrom9a17c9a2002-06-11 16:47:22 +000059 if (from.ss_family == AF_INET)
60 check_ip_options(socket, ntop);
61
Ben Lindstrom121c7852001-04-18 15:32:44 +000062 debug3("Trying to reverse map address %.100s.", ntop);
Damien Miller34132e52000-01-14 15:45:46 +110063 /* Map the IP address to a host name. */
64 if (getnameinfo((struct sockaddr *)&from, fromlen, name, sizeof(name),
Damien Miller9f0f5c62001-12-21 14:45:46 +110065 NULL, 0, NI_NAMEREQD) != 0) {
Damien Miller33804262001-02-04 23:20:18 +110066 /* Host name not found. Use ip address. */
Damien Miller33804262001-02-04 23:20:18 +110067 return xstrdup(ntop);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100068 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +100069
Damien Miller3a961dc2003-06-03 10:25:48 +100070 /*
71 * if reverse lookup result looks like a numeric hostname,
72 * someone is trying to trick us by PTR record like following:
73 * 1.1.1.10.in-addr.arpa. IN PTR 2.3.4.5
74 */
75 memset(&hints, 0, sizeof(hints));
76 hints.ai_socktype = SOCK_DGRAM; /*dummy*/
Darren Tucker0f684862003-06-05 09:52:42 +100077 hints.ai_flags = AI_NUMERICHOST;
Damien Miller3a961dc2003-06-03 10:25:48 +100078 if (getaddrinfo(name, "0", &hints, &ai) == 0) {
79 logit("Nasty PTR record \"%s\" is set up for %s, ignoring",
80 name, ntop);
81 freeaddrinfo(ai);
82 return xstrdup(ntop);
83 }
84
Damien Miller5428f641999-11-25 11:54:57 +110085 /*
Damien Miller33804262001-02-04 23:20:18 +110086 * Convert it to all lowercase (which is expected by the rest
87 * of this software).
Damien Miller5428f641999-11-25 11:54:57 +110088 */
Damien Miller33804262001-02-04 23:20:18 +110089 for (i = 0; name[i]; i++)
90 if (isupper(name[i]))
91 name[i] = tolower(name[i]);
Damien Miller33804262001-02-04 23:20:18 +110092 /*
93 * Map it back to an IP address and check that the given
94 * address actually is an address of this host. This is
95 * necessary because anyone with access to a name server can
96 * define arbitrary names for an IP address. Mapping from
97 * name to IP address can be trusted better (but can still be
98 * fooled if the intruder has access to the name server of
99 * the domain).
100 */
101 memset(&hints, 0, sizeof(hints));
102 hints.ai_family = from.ss_family;
103 hints.ai_socktype = SOCK_STREAM;
104 if (getaddrinfo(name, NULL, &hints, &aitop) != 0) {
Damien Miller996acd22003-04-09 20:59:48 +1000105 logit("reverse mapping checking getaddrinfo for %.700s "
Damien Miller33804262001-02-04 23:20:18 +1100106 "failed - POSSIBLE BREAKIN ATTEMPT!", name);
107 return xstrdup(ntop);
Damien Miller95def091999-11-25 00:26:21 +1100108 }
Damien Miller33804262001-02-04 23:20:18 +1100109 /* Look for the address from the list of addresses. */
110 for (ai = aitop; ai; ai = ai->ai_next) {
111 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop2,
112 sizeof(ntop2), NULL, 0, NI_NUMERICHOST) == 0 &&
113 (strcmp(ntop, ntop2) == 0))
114 break;
115 }
116 freeaddrinfo(aitop);
117 /* If we reached the end of the list, the address was not there. */
118 if (!ai) {
119 /* Address not found for the host name. */
Damien Miller996acd22003-04-09 20:59:48 +1000120 logit("Address %.100s maps to %.600s, but this does not "
Damien Miller33804262001-02-04 23:20:18 +1100121 "map back to the address - POSSIBLE BREAKIN ATTEMPT!",
122 ntop, name);
123 return xstrdup(ntop);
124 }
Damien Miller95def091999-11-25 00:26:21 +1100125 return xstrdup(name);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000126}
127
Damien Miller5428f641999-11-25 11:54:57 +1100128/*
Damien Miller33804262001-02-04 23:20:18 +1100129 * If IP options are supported, make sure there are none (log and
130 * disconnect them if any are found). Basically we are worried about
131 * source routing; it can be used to pretend you are somebody
132 * (ip-address) you are not. That itself may be "almost acceptable"
133 * under certain circumstances, but rhosts autentication is useless
134 * if source routing is accepted. Notice also that if we just dropped
135 * source routing here, the other side could use IP spoofing to do
136 * rest of the interaction and could still bypass security. So we
137 * exit here if we detect any IP options.
138 */
139/* IPv4 only */
Ben Lindstrombba81212001-06-25 05:01:22 +0000140static void
Damien Miller33804262001-02-04 23:20:18 +1100141check_ip_options(int socket, char *ipaddr)
142{
Darren Tucker89f4cf02003-08-07 13:29:04 +1000143#ifdef IP_OPTIONS
Ben Lindstrom075390a2001-02-10 21:34:46 +0000144 u_char options[200];
145 char text[sizeof(options) * 3 + 1];
Damien Miller33804262001-02-04 23:20:18 +1100146 socklen_t option_size;
Ben Lindstrom075390a2001-02-10 21:34:46 +0000147 int i, ipproto;
Damien Miller33804262001-02-04 23:20:18 +1100148 struct protoent *ip;
149
150 if ((ip = getprotobyname("ip")) != NULL)
151 ipproto = ip->p_proto;
152 else
153 ipproto = IPPROTO_IP;
154 option_size = sizeof(options);
Ben Lindstrom733a2352002-03-05 01:31:28 +0000155 if (getsockopt(socket, ipproto, IP_OPTIONS, options,
Damien Miller33804262001-02-04 23:20:18 +1100156 &option_size) >= 0 && option_size != 0) {
Ben Lindstrom075390a2001-02-10 21:34:46 +0000157 text[0] = '\0';
158 for (i = 0; i < option_size; i++)
159 snprintf(text + i*3, sizeof(text) - i*3,
160 " %2.2x", options[i]);
Damien Miller996acd22003-04-09 20:59:48 +1000161 logit("Connection from %.100s with IP options:%.800s",
Damien Miller33804262001-02-04 23:20:18 +1100162 ipaddr, text);
163 packet_disconnect("Connection from %.100s with IP options:%.800s",
164 ipaddr, text);
165 }
Darren Tucker89f4cf02003-08-07 13:29:04 +1000166#endif /* IP_OPTIONS */
Damien Miller33804262001-02-04 23:20:18 +1100167}
168
Damien Miller927f5272003-11-24 12:57:25 +1100169static void
170ipv64_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
177 if (addr->ss_family != AF_INET6 ||
178 !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 Miller34132e52000-01-14 15:45:46 +1100203 static char *canonical_host_name = NULL;
Damien Miller3a961dc2003-06-03 10:25:48 +1000204 static int use_dns_done = 0;
Damien Miller34132e52000-01-14 15:45:46 +1100205
Damien Miller33804262001-02-04 23:20:18 +1100206 /* Check if we have previously retrieved name with same option. */
207 if (canonical_host_name != NULL) {
Damien Miller3a961dc2003-06-03 10:25:48 +1000208 if (use_dns_done != use_dns)
Damien Miller33804262001-02-04 23:20:18 +1100209 xfree(canonical_host_name);
210 else
211 return canonical_host_name;
212 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000213
Damien Miller95def091999-11-25 00:26:21 +1100214 /* Get the real hostname if socket; otherwise return UNKNOWN. */
Damien Miller34132e52000-01-14 15:45:46 +1100215 if (packet_connection_is_on_socket())
Damien Miller33804262001-02-04 23:20:18 +1100216 canonical_host_name = get_remote_hostname(
Damien Miller3a961dc2003-06-03 10:25:48 +1000217 packet_get_connection_in(), use_dns);
Damien Miller95def091999-11-25 00:26:21 +1100218 else
219 canonical_host_name = xstrdup("UNKNOWN");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000220
Damien Miller3a961dc2003-06-03 10:25:48 +1000221 use_dns_done = use_dns;
Damien Miller95def091999-11-25 00:26:21 +1100222 return canonical_host_name;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000223}
224
Damien Miller5428f641999-11-25 11:54:57 +1100225/*
Ben Lindstromacaac972002-12-23 02:13:37 +0000226 * Returns the local/remote IP-address/hostname of socket as a string.
227 * The returned string must be freed.
Damien Millerd83ff352001-01-30 09:19:34 +1100228 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000229static char *
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000230get_socket_address(int socket, int remote, int flags)
231{
232 struct sockaddr_storage addr;
233 socklen_t addrlen;
234 char ntop[NI_MAXHOST];
235
236 /* Get IP address of client. */
237 addrlen = sizeof(addr);
238 memset(&addr, 0, sizeof(addr));
239
240 if (remote) {
241 if (getpeername(socket, (struct sockaddr *)&addr, &addrlen)
Damien Millerb2f844d2002-09-25 12:19:08 +1000242 < 0)
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000243 return NULL;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000244 } else {
245 if (getsockname(socket, (struct sockaddr *)&addr, &addrlen)
Damien Millerb2f844d2002-09-25 12:19:08 +1000246 < 0)
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000247 return NULL;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000248 }
Damien Miller5e4471e2003-01-07 10:51:23 +1100249
250 /* Work around Linux IPv6 weirdness */
251 if (addr.ss_family == AF_INET6)
252 addrlen = sizeof(struct sockaddr_in6);
253
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000254 /* Get the address in ascii. */
255 if (getnameinfo((struct sockaddr *)&addr, addrlen, ntop, sizeof(ntop),
Damien Miller9f0f5c62001-12-21 14:45:46 +1100256 NULL, 0, flags) != 0) {
Ben Lindstromacaac972002-12-23 02:13:37 +0000257 error("get_socket_address: getnameinfo %d failed", flags);
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000258 return NULL;
259 }
260 return xstrdup(ntop);
261}
Damien Millerd83ff352001-01-30 09:19:34 +1100262
263char *
264get_peer_ipaddr(int socket)
265{
Damien Millerb2f844d2002-09-25 12:19:08 +1000266 char *p;
267
268 if ((p = get_socket_address(socket, 1, NI_NUMERICHOST)) != NULL)
269 return p;
270 return xstrdup("UNKNOWN");
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000271}
Damien Millerd83ff352001-01-30 09:19:34 +1100272
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000273char *
274get_local_ipaddr(int socket)
275{
Damien Millerb2f844d2002-09-25 12:19:08 +1000276 char *p;
277
278 if ((p = get_socket_address(socket, 0, NI_NUMERICHOST)) != NULL)
279 return p;
280 return xstrdup("UNKNOWN");
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000281}
282
283char *
284get_local_name(int socket)
285{
286 return get_socket_address(socket, 0, NI_NAMEREQD);
Damien Millerd83ff352001-01-30 09:19:34 +1100287}
288
289/*
Damien Miller5428f641999-11-25 11:54:57 +1100290 * Returns the IP-address of the remote host as a string. The returned
Damien Miller34132e52000-01-14 15:45:46 +1100291 * string must not be freed.
Damien Miller5428f641999-11-25 11:54:57 +1100292 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000293
Damien Miller95def091999-11-25 00:26:21 +1100294const char *
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000295get_remote_ipaddr(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000296{
Damien Miller34132e52000-01-14 15:45:46 +1100297 static char *canonical_host_ip = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000298
Damien Millerd83ff352001-01-30 09:19:34 +1100299 /* Check whether we have cached the ipaddr. */
300 if (canonical_host_ip == NULL) {
301 if (packet_connection_is_on_socket()) {
302 canonical_host_ip =
303 get_peer_ipaddr(packet_get_connection_in());
304 if (canonical_host_ip == NULL)
Darren Tucker3e33cec2003-10-02 16:12:36 +1000305 cleanup_exit(255);
Damien Millerd83ff352001-01-30 09:19:34 +1100306 } else {
307 /* If not on socket, return UNKNOWN. */
308 canonical_host_ip = xstrdup("UNKNOWN");
309 }
Damien Miller95def091999-11-25 00:26:21 +1100310 }
Damien Miller95def091999-11-25 00:26:21 +1100311 return canonical_host_ip;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000312}
313
Ben Lindstromf15a3862001-04-05 23:32:17 +0000314const char *
Damien Miller3a961dc2003-06-03 10:25:48 +1000315get_remote_name_or_ip(u_int utmp_len, int use_dns)
Ben Lindstromf15a3862001-04-05 23:32:17 +0000316{
317 static const char *remote = "";
318 if (utmp_len > 0)
Damien Miller3a961dc2003-06-03 10:25:48 +1000319 remote = get_canonical_hostname(use_dns);
Ben Lindstromf15a3862001-04-05 23:32:17 +0000320 if (utmp_len == 0 || strlen(remote) > utmp_len)
321 remote = get_remote_ipaddr();
322 return remote;
323}
324
Damien Miller34132e52000-01-14 15:45:46 +1100325/* Returns the local/remote port for the socket. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000326
Ben Lindstrombba81212001-06-25 05:01:22 +0000327static int
Damien Miller34132e52000-01-14 15:45:46 +1100328get_sock_port(int sock, int local)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000329{
Damien Miller34132e52000-01-14 15:45:46 +1100330 struct sockaddr_storage from;
331 socklen_t fromlen;
332 char strport[NI_MAXSERV];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000333
Damien Miller95def091999-11-25 00:26:21 +1100334 /* Get IP address of client. */
335 fromlen = sizeof(from);
336 memset(&from, 0, sizeof(from));
Damien Miller34132e52000-01-14 15:45:46 +1100337 if (local) {
338 if (getsockname(sock, (struct sockaddr *)&from, &fromlen) < 0) {
339 error("getsockname failed: %.100s", strerror(errno));
340 return 0;
341 }
342 } else {
Ben Lindstromacaac972002-12-23 02:13:37 +0000343 if (getpeername(sock, (struct sockaddr *)&from, &fromlen) < 0) {
Damien Miller34132e52000-01-14 15:45:46 +1100344 debug("getpeername failed: %.100s", strerror(errno));
Darren Tucker3e33cec2003-10-02 16:12:36 +1000345 cleanup_exit(255);
Damien Miller34132e52000-01-14 15:45:46 +1100346 }
Damien Miller95def091999-11-25 00:26:21 +1100347 }
Damien Miller5e4471e2003-01-07 10:51:23 +1100348
349 /* Work around Linux IPv6 weirdness */
350 if (from.ss_family == AF_INET6)
351 fromlen = sizeof(struct sockaddr_in6);
352
Damien Miller95def091999-11-25 00:26:21 +1100353 /* Return port number. */
Damien Miller34132e52000-01-14 15:45:46 +1100354 if (getnameinfo((struct sockaddr *)&from, fromlen, NULL, 0,
Damien Miller9f0f5c62001-12-21 14:45:46 +1100355 strport, sizeof(strport), NI_NUMERICSERV) != 0)
Damien Miller34132e52000-01-14 15:45:46 +1100356 fatal("get_sock_port: getnameinfo NI_NUMERICSERV failed");
357 return atoi(strport);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000358}
359
Damien Miller34132e52000-01-14 15:45:46 +1100360/* Returns remote/local port number for the current connection. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000361
Ben Lindstrombba81212001-06-25 05:01:22 +0000362static int
Damien Miller34132e52000-01-14 15:45:46 +1100363get_port(int local)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000364{
Damien Miller5428f641999-11-25 11:54:57 +1100365 /*
366 * If the connection is not a socket, return 65535. This is
367 * intentionally chosen to be an unprivileged port number.
368 */
Damien Miller34132e52000-01-14 15:45:46 +1100369 if (!packet_connection_is_on_socket())
Damien Miller95def091999-11-25 00:26:21 +1100370 return 65535;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000371
Damien Miller34132e52000-01-14 15:45:46 +1100372 /* Get socket and return the port number. */
373 return get_sock_port(packet_get_connection_in(), local);
374}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000375
Damien Miller4af51302000-04-16 11:18:38 +1000376int
Damien Miller34132e52000-01-14 15:45:46 +1100377get_peer_port(int sock)
378{
379 return get_sock_port(sock, 0);
380}
381
Damien Miller4af51302000-04-16 11:18:38 +1000382int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000383get_remote_port(void)
Damien Miller34132e52000-01-14 15:45:46 +1100384{
385 return get_port(0);
386}
387
388int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000389get_local_port(void)
Damien Miller34132e52000-01-14 15:45:46 +1100390{
391 return get_port(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000392}