2002-10-31 22:49:52 +03:00
|
|
|
/*
|
|
|
|
* Unix networking abstraction.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <assert.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <arpa/inet.h>
|
|
|
|
#include <netinet/in.h>
|
|
|
|
#include <netinet/tcp.h>
|
|
|
|
#include <netdb.h>
|
2004-05-31 18:01:52 +04:00
|
|
|
#include <sys/un.h>
|
2002-10-31 22:49:52 +03:00
|
|
|
|
|
|
|
#define DEFINE_PLUG_METHOD_MACROS
|
|
|
|
#include "putty.h"
|
|
|
|
#include "network.h"
|
|
|
|
#include "tree234.h"
|
|
|
|
|
2005-04-25 22:51:15 +04:00
|
|
|
/* Solaris needs <sys/sockio.h> for SIOCATMARK. */
|
2005-05-06 02:47:30 +04:00
|
|
|
#ifndef SIOCATMARK
|
2005-04-25 22:51:15 +04:00
|
|
|
#include <sys/sockio.h>
|
|
|
|
#endif
|
|
|
|
|
2004-05-31 18:01:52 +04:00
|
|
|
#ifndef X11_UNIX_PATH
|
|
|
|
# define X11_UNIX_PATH "/tmp/.X11-unix/X"
|
|
|
|
#endif
|
|
|
|
|
2008-08-21 02:21:04 +04:00
|
|
|
/*
|
|
|
|
* We used to typedef struct Socket_tag *Socket.
|
|
|
|
*
|
|
|
|
* Since we have made the networking abstraction slightly more
|
|
|
|
* abstract, Socket no longer means a tcp socket (it could mean
|
|
|
|
* an ssl socket). So now we must use Actual_Socket when we know
|
|
|
|
* we are talking about a tcp socket.
|
|
|
|
*/
|
|
|
|
typedef struct Socket_tag *Actual_Socket;
|
|
|
|
|
2002-10-31 22:49:52 +03:00
|
|
|
struct Socket_tag {
|
|
|
|
struct socket_function_table *fn;
|
|
|
|
/* the above variable absolutely *must* be the first in this structure */
|
2003-05-04 18:18:18 +04:00
|
|
|
const char *error;
|
2002-10-31 22:49:52 +03:00
|
|
|
int s;
|
|
|
|
Plug plug;
|
|
|
|
void *private_ptr;
|
|
|
|
bufchain output_data;
|
2005-02-16 14:44:44 +03:00
|
|
|
int connected; /* irrelevant for listening sockets */
|
2002-10-31 22:49:52 +03:00
|
|
|
int writable;
|
|
|
|
int frozen; /* this causes readability notifications to be ignored */
|
|
|
|
int frozen_readable; /* this means we missed at least one readability
|
|
|
|
* notification while we were frozen */
|
|
|
|
int localhost_only; /* for listening sockets */
|
|
|
|
char oobdata[1];
|
|
|
|
int sending_oob;
|
|
|
|
int oobpending; /* is there OOB data available to read? */
|
|
|
|
int oobinline;
|
|
|
|
int pending_error; /* in case send() returns error */
|
|
|
|
int listener;
|
2005-01-16 17:29:34 +03:00
|
|
|
int nodelay, keepalive; /* for connect()-type sockets */
|
|
|
|
int privport, port; /* and again */
|
|
|
|
SockAddr addr;
|
2008-08-21 02:21:04 +04:00
|
|
|
/*
|
|
|
|
* We sometimes need pairs of Socket structures to be linked:
|
|
|
|
* if we are listening on the same IPv6 and v4 port, for
|
|
|
|
* example. So here we define `parent' and `child' pointers to
|
|
|
|
* track this link.
|
|
|
|
*/
|
|
|
|
Actual_Socket parent, child;
|
2002-10-31 22:49:52 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
struct SockAddr_tag {
|
2003-05-04 18:18:18 +04:00
|
|
|
const char *error;
|
2002-12-18 19:23:11 +03:00
|
|
|
/*
|
|
|
|
* Which address family this address belongs to. AF_INET for
|
|
|
|
* IPv4; AF_INET6 for IPv6; AF_UNSPEC indicates that name
|
|
|
|
* resolution has not been done and a simple host name is held
|
|
|
|
* in this SockAddr structure.
|
|
|
|
*/
|
2002-10-31 22:49:52 +03:00
|
|
|
int family;
|
2004-12-30 19:45:11 +03:00
|
|
|
#ifndef NO_IPV6
|
2005-01-16 17:29:34 +03:00
|
|
|
struct addrinfo *ais; /* Addresses IPv6 style. */
|
|
|
|
struct addrinfo *ai; /* steps along the linked list */
|
2003-04-17 03:33:44 +04:00
|
|
|
#else
|
2005-01-16 17:29:34 +03:00
|
|
|
unsigned long *addresses; /* Addresses IPv4 style. */
|
|
|
|
int naddresses, curraddr;
|
2002-10-31 22:49:52 +03:00
|
|
|
#endif
|
2002-12-18 19:23:11 +03:00
|
|
|
char hostname[512]; /* Store an unresolved host name. */
|
2002-10-31 22:49:52 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
static tree234 *sktree;
|
|
|
|
|
2003-03-29 19:47:06 +03:00
|
|
|
static void uxsel_tell(Actual_Socket s);
|
|
|
|
|
2002-10-31 22:49:52 +03:00
|
|
|
static int cmpfortree(void *av, void *bv)
|
|
|
|
{
|
|
|
|
Actual_Socket a = (Actual_Socket) av, b = (Actual_Socket) bv;
|
|
|
|
int as = a->s, bs = b->s;
|
|
|
|
if (as < bs)
|
|
|
|
return -1;
|
|
|
|
if (as > bs)
|
|
|
|
return +1;
|
2007-11-28 23:45:50 +03:00
|
|
|
if (a < b)
|
|
|
|
return -1;
|
|
|
|
if (a > b)
|
|
|
|
return +1;
|
2002-10-31 22:49:52 +03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int cmpforsearch(void *av, void *bv)
|
|
|
|
{
|
|
|
|
Actual_Socket b = (Actual_Socket) bv;
|
2003-05-10 12:35:54 +04:00
|
|
|
int as = *(int *)av, bs = b->s;
|
2002-10-31 22:49:52 +03:00
|
|
|
if (as < bs)
|
|
|
|
return -1;
|
|
|
|
if (as > bs)
|
|
|
|
return +1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void sk_init(void)
|
|
|
|
{
|
|
|
|
sktree = newtree234(cmpfortree);
|
|
|
|
}
|
|
|
|
|
|
|
|
void sk_cleanup(void)
|
|
|
|
{
|
|
|
|
Actual_Socket s;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (sktree) {
|
|
|
|
for (i = 0; (s = index234(sktree, i)) != NULL; i++) {
|
|
|
|
close(s->s);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-12-30 19:45:11 +03:00
|
|
|
SockAddr sk_namelookup(const char *host, char **canonicalname, int address_family)
|
2002-10-31 22:49:52 +03:00
|
|
|
{
|
2003-03-29 19:14:26 +03:00
|
|
|
SockAddr ret = snew(struct SockAddr_tag);
|
2004-12-30 19:45:11 +03:00
|
|
|
#ifndef NO_IPV6
|
2003-04-17 03:33:44 +04:00
|
|
|
struct addrinfo hints;
|
|
|
|
int err;
|
|
|
|
#else
|
2002-10-31 22:49:52 +03:00
|
|
|
unsigned long a;
|
|
|
|
struct hostent *h = NULL;
|
2005-01-16 17:29:34 +03:00
|
|
|
int n;
|
2003-04-17 03:33:44 +04:00
|
|
|
#endif
|
2002-10-31 22:49:52 +03:00
|
|
|
char realhost[8192];
|
|
|
|
|
|
|
|
/* Clear the structure and default to IPv4. */
|
|
|
|
memset(ret, 0, sizeof(struct SockAddr_tag));
|
|
|
|
ret->family = 0; /* We set this one when we have resolved the host. */
|
|
|
|
*realhost = '\0';
|
|
|
|
ret->error = NULL;
|
|
|
|
|
2004-12-30 19:45:11 +03:00
|
|
|
#ifndef NO_IPV6
|
2003-04-17 03:33:44 +04:00
|
|
|
hints.ai_flags = AI_CANONNAME;
|
2005-01-09 17:55:55 +03:00
|
|
|
hints.ai_family = (address_family == ADDRTYPE_IPV4 ? AF_INET :
|
|
|
|
address_family == ADDRTYPE_IPV6 ? AF_INET6 :
|
|
|
|
AF_UNSPEC);
|
|
|
|
hints.ai_socktype = SOCK_STREAM;
|
2003-04-17 03:33:44 +04:00
|
|
|
hints.ai_protocol = 0;
|
|
|
|
hints.ai_addrlen = 0;
|
|
|
|
hints.ai_addr = NULL;
|
|
|
|
hints.ai_canonname = NULL;
|
|
|
|
hints.ai_next = NULL;
|
2005-01-16 17:29:34 +03:00
|
|
|
err = getaddrinfo(host, NULL, &hints, &ret->ais);
|
|
|
|
ret->ai = ret->ais;
|
2003-04-17 03:33:44 +04:00
|
|
|
if (err != 0) {
|
|
|
|
ret->error = gai_strerror(err);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
ret->family = ret->ai->ai_family;
|
|
|
|
*realhost = '\0';
|
|
|
|
if (ret->ai->ai_canonname != NULL)
|
|
|
|
strncat(realhost, ret->ai->ai_canonname, sizeof(realhost) - 1);
|
|
|
|
else
|
|
|
|
strncat(realhost, host, sizeof(realhost) - 1);
|
|
|
|
#else
|
2005-01-14 22:28:18 +03:00
|
|
|
if ((a = inet_addr(host)) == (unsigned long)(in_addr_t)(-1)) {
|
2003-04-17 03:33:44 +04:00
|
|
|
/*
|
|
|
|
* Otherwise use the IPv4-only gethostbyname... (NOTE:
|
|
|
|
* we don't use gethostbyname as a fallback!)
|
|
|
|
*/
|
|
|
|
if (ret->family == 0) {
|
2005-01-16 17:29:34 +03:00
|
|
|
/*debug(("Resolving \"%s\" with gethostbyname() (IPv4 only)...\n", host)); */
|
|
|
|
if ( (h = gethostbyname(host)) )
|
|
|
|
ret->family = AF_INET;
|
2003-04-17 03:33:44 +04:00
|
|
|
}
|
|
|
|
if (ret->family == 0) {
|
2005-01-16 17:29:34 +03:00
|
|
|
ret->error = (h_errno == HOST_NOT_FOUND ||
|
|
|
|
h_errno == NO_DATA ||
|
|
|
|
h_errno == NO_ADDRESS ? "Host does not exist" :
|
|
|
|
h_errno == TRY_AGAIN ?
|
|
|
|
"Temporary name service failure" :
|
|
|
|
"gethostbyname: unknown error");
|
|
|
|
return ret;
|
2002-10-31 22:49:52 +03:00
|
|
|
}
|
2003-04-17 03:33:44 +04:00
|
|
|
/* This way we are always sure the h->h_name is valid :) */
|
|
|
|
strncpy(realhost, h->h_name, sizeof(realhost));
|
2005-01-16 17:29:34 +03:00
|
|
|
for (n = 0; h->h_addr_list[n]; n++);
|
|
|
|
ret->addresses = snewn(n, unsigned long);
|
|
|
|
ret->naddresses = n;
|
|
|
|
for (n = 0; n < ret->naddresses; n++) {
|
|
|
|
memcpy(&a, h->h_addr_list[n], sizeof(a));
|
|
|
|
ret->addresses[n] = ntohl(a);
|
|
|
|
}
|
2002-10-31 22:49:52 +03:00
|
|
|
} else {
|
|
|
|
/*
|
|
|
|
* This must be a numeric IPv4 address because it caused a
|
|
|
|
* success return from inet_addr.
|
|
|
|
*/
|
|
|
|
ret->family = AF_INET;
|
|
|
|
strncpy(realhost, host, sizeof(realhost));
|
2005-01-16 17:29:34 +03:00
|
|
|
ret->addresses = snew(unsigned long);
|
|
|
|
ret->naddresses = 1;
|
|
|
|
ret->addresses[0] = ntohl(a);
|
|
|
|
ret->curraddr = 0;
|
2002-10-31 22:49:52 +03:00
|
|
|
}
|
2003-04-17 03:33:44 +04:00
|
|
|
#endif
|
2002-10-31 22:49:52 +03:00
|
|
|
realhost[lenof(realhost)-1] = '\0';
|
2003-03-29 19:14:26 +03:00
|
|
|
*canonicalname = snewn(1+strlen(realhost), char);
|
2002-10-31 22:49:52 +03:00
|
|
|
strcpy(*canonicalname, realhost);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2003-01-12 18:26:10 +03:00
|
|
|
SockAddr sk_nonamelookup(const char *host)
|
2002-12-18 19:23:11 +03:00
|
|
|
{
|
2003-03-29 19:14:26 +03:00
|
|
|
SockAddr ret = snew(struct SockAddr_tag);
|
2003-01-02 13:07:50 +03:00
|
|
|
ret->error = NULL;
|
2002-12-18 19:23:11 +03:00
|
|
|
ret->family = AF_UNSPEC;
|
|
|
|
strncpy(ret->hostname, host, lenof(ret->hostname));
|
|
|
|
ret->hostname[lenof(ret->hostname)-1] = '\0';
|
2005-01-04 20:39:35 +03:00
|
|
|
#ifndef NO_IPV6
|
2005-01-16 17:29:34 +03:00
|
|
|
ret->ais = NULL;
|
|
|
|
#else
|
|
|
|
ret->addresses = NULL;
|
2005-01-04 20:39:35 +03:00
|
|
|
#endif
|
2002-12-18 19:23:11 +03:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2005-01-16 17:29:34 +03:00
|
|
|
static int sk_nextaddr(SockAddr addr)
|
|
|
|
{
|
|
|
|
#ifndef NO_IPV6
|
2006-02-11 21:29:55 +03:00
|
|
|
if (addr->ai && addr->ai->ai_next) {
|
2005-01-16 17:29:34 +03:00
|
|
|
addr->ai = addr->ai->ai_next;
|
|
|
|
addr->family = addr->ai->ai_family;
|
|
|
|
return TRUE;
|
|
|
|
} else
|
|
|
|
return FALSE;
|
|
|
|
#else
|
|
|
|
if (addr->curraddr+1 < addr->naddresses) {
|
|
|
|
addr->curraddr++;
|
|
|
|
return TRUE;
|
|
|
|
} else {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2002-10-31 22:49:52 +03:00
|
|
|
void sk_getaddr(SockAddr addr, char *buf, int buflen)
|
|
|
|
{
|
2003-04-17 03:33:44 +04:00
|
|
|
|
|
|
|
if (addr->family == AF_UNSPEC) {
|
|
|
|
strncpy(buf, addr->hostname, buflen);
|
|
|
|
buf[buflen-1] = '\0';
|
|
|
|
} else {
|
2004-12-30 19:45:11 +03:00
|
|
|
#ifndef NO_IPV6
|
2003-04-17 03:33:44 +04:00
|
|
|
if (getnameinfo(addr->ai->ai_addr, addr->ai->ai_addrlen, buf, buflen,
|
|
|
|
NULL, 0, NI_NUMERICHOST) != 0) {
|
|
|
|
buf[0] = '\0';
|
|
|
|
strncat(buf, "<unknown>", buflen - 1);
|
|
|
|
}
|
|
|
|
#else
|
2002-10-31 22:49:52 +03:00
|
|
|
struct in_addr a;
|
2003-04-17 03:33:44 +04:00
|
|
|
assert(addr->family == AF_INET);
|
2005-01-16 17:29:34 +03:00
|
|
|
a.s_addr = htonl(addr->addresses[addr->curraddr]);
|
2002-10-31 22:49:52 +03:00
|
|
|
strncpy(buf, inet_ntoa(a), buflen);
|
2002-12-18 19:23:11 +03:00
|
|
|
buf[buflen-1] = '\0';
|
2003-04-17 03:33:44 +04:00
|
|
|
#endif
|
2002-10-31 22:49:52 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-12-18 15:18:54 +03:00
|
|
|
int sk_hostname_is_local(char *name)
|
|
|
|
{
|
|
|
|
return !strcmp(name, "localhost");
|
|
|
|
}
|
|
|
|
|
2005-01-26 23:18:33 +03:00
|
|
|
#define ipv4_is_loopback(addr) \
|
|
|
|
(((addr).s_addr & htonl(0xff000000)) == htonl(0x7f000000))
|
|
|
|
|
|
|
|
static int sockaddr_is_loopback(struct sockaddr *sa)
|
|
|
|
{
|
|
|
|
struct sockaddr_in *sin;
|
|
|
|
#ifndef NO_IPV6
|
|
|
|
struct sockaddr_in6 *sin6;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
switch (sa->sa_family) {
|
|
|
|
case AF_INET:
|
|
|
|
sin = (struct sockaddr_in *)sa;
|
|
|
|
return ipv4_is_loopback(sin->sin_addr);
|
|
|
|
#ifndef NO_IPV6
|
|
|
|
case AF_INET6:
|
|
|
|
sin6 = (struct sockaddr_in6 *)sa;
|
|
|
|
return IN6_IS_ADDR_LOOPBACK(&sin6->sin6_addr);
|
|
|
|
#endif
|
2005-01-28 14:47:33 +03:00
|
|
|
case AF_UNIX:
|
2005-01-26 23:18:33 +03:00
|
|
|
return TRUE;
|
|
|
|
default:
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-12-18 15:18:54 +03:00
|
|
|
int sk_address_is_local(SockAddr addr)
|
|
|
|
{
|
2003-04-17 03:33:44 +04:00
|
|
|
|
|
|
|
if (addr->family == AF_UNSPEC)
|
|
|
|
return 0; /* we don't know; assume not */
|
|
|
|
else {
|
2004-12-30 19:45:11 +03:00
|
|
|
#ifndef NO_IPV6
|
2005-01-26 23:18:33 +03:00
|
|
|
return sockaddr_is_loopback(addr->ai->ai_addr);
|
2003-04-17 03:33:44 +04:00
|
|
|
#else
|
2002-12-18 15:18:54 +03:00
|
|
|
struct in_addr a;
|
2003-04-17 03:33:44 +04:00
|
|
|
assert(addr->family == AF_INET);
|
2005-01-16 17:29:34 +03:00
|
|
|
a.s_addr = htonl(addr->addresses[addr->curraddr]);
|
2002-12-18 15:18:54 +03:00
|
|
|
return ipv4_is_loopback(a);
|
2003-04-17 03:33:44 +04:00
|
|
|
#endif
|
2002-12-18 15:18:54 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-10-31 22:49:52 +03:00
|
|
|
int sk_addrtype(SockAddr addr)
|
|
|
|
{
|
2002-12-18 19:23:11 +03:00
|
|
|
return (addr->family == AF_INET ? ADDRTYPE_IPV4 :
|
2004-12-30 19:45:11 +03:00
|
|
|
#ifndef NO_IPV6
|
2002-12-18 19:23:11 +03:00
|
|
|
addr->family == AF_INET6 ? ADDRTYPE_IPV6 :
|
|
|
|
#endif
|
|
|
|
ADDRTYPE_NAME);
|
2002-10-31 22:49:52 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void sk_addrcopy(SockAddr addr, char *buf)
|
|
|
|
{
|
2003-04-17 03:33:44 +04:00
|
|
|
|
2004-12-30 19:45:11 +03:00
|
|
|
#ifndef NO_IPV6
|
2003-04-17 03:33:44 +04:00
|
|
|
if (addr->family == AF_INET)
|
|
|
|
memcpy(buf, &((struct sockaddr_in *)addr->ai->ai_addr)->sin_addr,
|
|
|
|
sizeof(struct in_addr));
|
|
|
|
else if (addr->family == AF_INET6)
|
|
|
|
memcpy(buf, &((struct sockaddr_in6 *)addr->ai->ai_addr)->sin6_addr,
|
|
|
|
sizeof(struct in6_addr));
|
|
|
|
else
|
|
|
|
assert(FALSE);
|
|
|
|
#else
|
|
|
|
struct in_addr a;
|
|
|
|
|
|
|
|
assert(addr->family == AF_INET);
|
2005-01-16 17:29:34 +03:00
|
|
|
a.s_addr = htonl(addr->addresses[addr->curraddr]);
|
2003-04-17 03:33:44 +04:00
|
|
|
memcpy(buf, (char*) &a.s_addr, 4);
|
2002-10-31 22:49:52 +03:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void sk_addr_free(SockAddr addr)
|
|
|
|
{
|
2003-04-17 03:33:44 +04:00
|
|
|
|
2004-12-30 19:45:11 +03:00
|
|
|
#ifndef NO_IPV6
|
2005-01-16 17:29:34 +03:00
|
|
|
if (addr->ais != NULL)
|
|
|
|
freeaddrinfo(addr->ais);
|
|
|
|
#else
|
|
|
|
sfree(addr->addresses);
|
2003-04-17 03:33:44 +04:00
|
|
|
#endif
|
2002-10-31 22:49:52 +03:00
|
|
|
sfree(addr);
|
|
|
|
}
|
|
|
|
|
|
|
|
static Plug sk_tcp_plug(Socket sock, Plug p)
|
|
|
|
{
|
|
|
|
Actual_Socket s = (Actual_Socket) sock;
|
|
|
|
Plug ret = s->plug;
|
|
|
|
if (p)
|
|
|
|
s->plug = p;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void sk_tcp_flush(Socket s)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* We send data to the socket as soon as we can anyway,
|
|
|
|
* so we don't need to do anything here. :-)
|
|
|
|
*/
|
|
|
|
}
|
|
|
|
|
|
|
|
static void sk_tcp_close(Socket s);
|
2003-01-10 21:33:35 +03:00
|
|
|
static int sk_tcp_write(Socket s, const char *data, int len);
|
|
|
|
static int sk_tcp_write_oob(Socket s, const char *data, int len);
|
2002-10-31 22:49:52 +03:00
|
|
|
static void sk_tcp_set_private_ptr(Socket s, void *ptr);
|
|
|
|
static void *sk_tcp_get_private_ptr(Socket s);
|
|
|
|
static void sk_tcp_set_frozen(Socket s, int is_frozen);
|
2003-05-04 18:18:18 +04:00
|
|
|
static const char *sk_tcp_socket_error(Socket s);
|
2002-10-31 22:49:52 +03:00
|
|
|
|
2003-01-11 12:31:54 +03:00
|
|
|
static struct socket_function_table tcp_fn_table = {
|
|
|
|
sk_tcp_plug,
|
|
|
|
sk_tcp_close,
|
|
|
|
sk_tcp_write,
|
|
|
|
sk_tcp_write_oob,
|
|
|
|
sk_tcp_flush,
|
|
|
|
sk_tcp_set_private_ptr,
|
|
|
|
sk_tcp_get_private_ptr,
|
|
|
|
sk_tcp_set_frozen,
|
|
|
|
sk_tcp_socket_error
|
|
|
|
};
|
|
|
|
|
2003-05-10 12:35:54 +04:00
|
|
|
Socket sk_register(OSSocket sockfd, Plug plug)
|
2002-10-31 22:49:52 +03:00
|
|
|
{
|
|
|
|
Actual_Socket ret;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Create Socket structure.
|
|
|
|
*/
|
2003-03-29 19:14:26 +03:00
|
|
|
ret = snew(struct Socket_tag);
|
2003-01-11 12:31:54 +03:00
|
|
|
ret->fn = &tcp_fn_table;
|
2002-10-31 22:49:52 +03:00
|
|
|
ret->error = NULL;
|
|
|
|
ret->plug = plug;
|
|
|
|
bufchain_init(&ret->output_data);
|
|
|
|
ret->writable = 1; /* to start with */
|
|
|
|
ret->sending_oob = 0;
|
|
|
|
ret->frozen = 1;
|
|
|
|
ret->frozen_readable = 0;
|
|
|
|
ret->localhost_only = 0; /* unused, but best init anyway */
|
|
|
|
ret->pending_error = 0;
|
|
|
|
ret->oobpending = FALSE;
|
|
|
|
ret->listener = 0;
|
2008-08-21 02:21:04 +04:00
|
|
|
ret->parent = ret->child = NULL;
|
2005-01-16 17:29:34 +03:00
|
|
|
ret->addr = NULL;
|
2005-02-14 18:30:09 +03:00
|
|
|
ret->connected = 1;
|
2002-10-31 22:49:52 +03:00
|
|
|
|
2003-05-10 12:35:54 +04:00
|
|
|
ret->s = sockfd;
|
2002-10-31 22:49:52 +03:00
|
|
|
|
|
|
|
if (ret->s < 0) {
|
2005-01-16 17:29:34 +03:00
|
|
|
ret->error = strerror(errno);
|
2002-10-31 22:49:52 +03:00
|
|
|
return (Socket) ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret->oobinline = 0;
|
|
|
|
|
2003-03-29 19:47:06 +03:00
|
|
|
uxsel_tell(ret);
|
2002-10-31 22:49:52 +03:00
|
|
|
add234(sktree, ret);
|
|
|
|
|
|
|
|
return (Socket) ret;
|
|
|
|
}
|
|
|
|
|
2005-01-16 17:29:34 +03:00
|
|
|
static int try_connect(Actual_Socket sock)
|
2002-10-31 22:49:52 +03:00
|
|
|
{
|
|
|
|
int s;
|
2004-12-30 19:45:11 +03:00
|
|
|
#ifndef NO_IPV6
|
2002-10-31 22:49:52 +03:00
|
|
|
struct sockaddr_in6 a6;
|
|
|
|
#endif
|
|
|
|
struct sockaddr_in a;
|
2004-05-31 18:01:52 +04:00
|
|
|
struct sockaddr_un au;
|
|
|
|
const struct sockaddr *sa;
|
2005-01-16 17:29:34 +03:00
|
|
|
int err = 0;
|
2002-10-31 22:49:52 +03:00
|
|
|
short localport;
|
2004-05-31 18:01:52 +04:00
|
|
|
int fl, salen;
|
2002-10-31 22:49:52 +03:00
|
|
|
|
2007-11-28 23:45:50 +03:00
|
|
|
/*
|
|
|
|
* Remove the socket from the tree before we overwrite its
|
|
|
|
* internal socket id, because that forms part of the tree's
|
|
|
|
* sorting criterion. We'll add it back before exiting this
|
|
|
|
* function, whether we changed anything or not.
|
|
|
|
*/
|
|
|
|
del234(sktree, sock);
|
|
|
|
|
2005-01-16 17:29:34 +03:00
|
|
|
if (sock->s >= 0)
|
|
|
|
close(sock->s);
|
|
|
|
|
|
|
|
plug_log(sock->plug, 0, sock->addr, sock->port, NULL, 0);
|
2002-10-31 22:49:52 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Open socket.
|
|
|
|
*/
|
2005-01-16 17:29:34 +03:00
|
|
|
assert(sock->addr->family != AF_UNSPEC);
|
|
|
|
s = socket(sock->addr->family, SOCK_STREAM, 0);
|
|
|
|
sock->s = s;
|
2002-10-31 22:49:52 +03:00
|
|
|
|
|
|
|
if (s < 0) {
|
2005-01-16 17:29:34 +03:00
|
|
|
err = errno;
|
|
|
|
goto ret;
|
2002-10-31 22:49:52 +03:00
|
|
|
}
|
|
|
|
|
2006-12-09 18:44:31 +03:00
|
|
|
cloexec(s);
|
2006-11-23 17:32:11 +03:00
|
|
|
|
2005-01-16 17:29:34 +03:00
|
|
|
if (sock->oobinline) {
|
2002-10-31 22:49:52 +03:00
|
|
|
int b = TRUE;
|
|
|
|
setsockopt(s, SOL_SOCKET, SO_OOBINLINE, (void *) &b, sizeof(b));
|
|
|
|
}
|
|
|
|
|
2005-01-16 17:29:34 +03:00
|
|
|
if (sock->nodelay) {
|
2002-10-31 22:49:52 +03:00
|
|
|
int b = TRUE;
|
|
|
|
setsockopt(s, IPPROTO_TCP, TCP_NODELAY, (void *) &b, sizeof(b));
|
|
|
|
}
|
|
|
|
|
2005-01-16 17:29:34 +03:00
|
|
|
if (sock->keepalive) {
|
2004-06-20 21:07:38 +04:00
|
|
|
int b = TRUE;
|
|
|
|
setsockopt(s, SOL_SOCKET, SO_KEEPALIVE, (void *) &b, sizeof(b));
|
|
|
|
}
|
|
|
|
|
2002-10-31 22:49:52 +03:00
|
|
|
/*
|
|
|
|
* Bind to local address.
|
|
|
|
*/
|
2005-01-16 17:29:34 +03:00
|
|
|
if (sock->privport)
|
2002-10-31 22:49:52 +03:00
|
|
|
localport = 1023; /* count from 1023 downwards */
|
|
|
|
else
|
|
|
|
localport = 0; /* just use port 0 (ie kernel picks) */
|
|
|
|
|
2004-02-03 17:47:43 +03:00
|
|
|
/* BSD IP stacks need sockaddr_in zeroed before filling in */
|
|
|
|
memset(&a,'\0',sizeof(struct sockaddr_in));
|
2004-12-30 19:45:11 +03:00
|
|
|
#ifndef NO_IPV6
|
2004-02-03 17:47:43 +03:00
|
|
|
memset(&a6,'\0',sizeof(struct sockaddr_in6));
|
|
|
|
#endif
|
2004-05-31 18:01:52 +04:00
|
|
|
|
|
|
|
/* We don't try to bind to a local address for UNIX domain sockets. (Why
|
|
|
|
* do we bother doing the bind when localport == 0 anyway?) */
|
2005-01-16 17:29:34 +03:00
|
|
|
if(sock->addr->family != AF_UNIX) {
|
2004-05-31 18:01:52 +04:00
|
|
|
/* Loop round trying to bind */
|
|
|
|
while (1) {
|
|
|
|
int retcode;
|
2002-10-31 22:49:52 +03:00
|
|
|
|
2004-12-30 19:45:11 +03:00
|
|
|
#ifndef NO_IPV6
|
2005-01-16 17:29:34 +03:00
|
|
|
if (sock->addr->family == AF_INET6) {
|
2004-05-31 18:01:52 +04:00
|
|
|
/* XXX use getaddrinfo to get a local address? */
|
|
|
|
a6.sin6_family = AF_INET6;
|
|
|
|
a6.sin6_addr = in6addr_any;
|
|
|
|
a6.sin6_port = htons(localport);
|
|
|
|
retcode = bind(s, (struct sockaddr *) &a6, sizeof(a6));
|
|
|
|
} else
|
2002-10-31 22:49:52 +03:00
|
|
|
#endif
|
2004-05-31 18:01:52 +04:00
|
|
|
{
|
2005-01-16 17:29:34 +03:00
|
|
|
assert(sock->addr->family == AF_INET);
|
2004-05-31 18:01:52 +04:00
|
|
|
a.sin_family = AF_INET;
|
|
|
|
a.sin_addr.s_addr = htonl(INADDR_ANY);
|
|
|
|
a.sin_port = htons(localport);
|
|
|
|
retcode = bind(s, (struct sockaddr *) &a, sizeof(a));
|
|
|
|
}
|
|
|
|
if (retcode >= 0) {
|
|
|
|
err = 0;
|
|
|
|
break; /* done */
|
|
|
|
} else {
|
|
|
|
err = errno;
|
|
|
|
if (err != EADDRINUSE) /* failed, for a bad reason */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (localport == 0)
|
|
|
|
break; /* we're only looping once */
|
|
|
|
localport--;
|
|
|
|
if (localport == 0)
|
|
|
|
break; /* we might have got to the end */
|
2002-10-31 22:49:52 +03:00
|
|
|
}
|
2004-05-31 18:01:52 +04:00
|
|
|
|
2005-01-16 17:29:34 +03:00
|
|
|
if (err)
|
|
|
|
goto ret;
|
2002-10-31 22:49:52 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Connect to remote address.
|
|
|
|
*/
|
2005-01-16 17:29:34 +03:00
|
|
|
switch(sock->addr->family) {
|
2004-12-30 19:45:11 +03:00
|
|
|
#ifndef NO_IPV6
|
2004-05-31 18:01:52 +04:00
|
|
|
case AF_INET:
|
|
|
|
/* XXX would be better to have got getaddrinfo() to fill in the port. */
|
2005-01-16 17:29:34 +03:00
|
|
|
((struct sockaddr_in *)sock->addr->ai->ai_addr)->sin_port =
|
|
|
|
htons(sock->port);
|
|
|
|
sa = (const struct sockaddr *)sock->addr->ai->ai_addr;
|
|
|
|
salen = sock->addr->ai->ai_addrlen;
|
2004-05-31 18:01:52 +04:00
|
|
|
break;
|
|
|
|
case AF_INET6:
|
2005-01-16 17:29:34 +03:00
|
|
|
((struct sockaddr_in *)sock->addr->ai->ai_addr)->sin_port =
|
|
|
|
htons(sock->port);
|
|
|
|
sa = (const struct sockaddr *)sock->addr->ai->ai_addr;
|
|
|
|
salen = sock->addr->ai->ai_addrlen;
|
2004-05-31 18:01:52 +04:00
|
|
|
break;
|
2003-04-17 03:33:44 +04:00
|
|
|
#else
|
2004-05-31 18:01:52 +04:00
|
|
|
case AF_INET:
|
|
|
|
a.sin_family = AF_INET;
|
2005-01-16 17:29:34 +03:00
|
|
|
a.sin_addr.s_addr = htonl(sock->addr->addresses[sock->addr->curraddr]);
|
|
|
|
a.sin_port = htons((short) sock->port);
|
2004-05-31 18:01:52 +04:00
|
|
|
sa = (const struct sockaddr *)&a;
|
|
|
|
salen = sizeof a;
|
|
|
|
break;
|
2003-04-17 03:33:44 +04:00
|
|
|
#endif
|
2004-05-31 18:01:52 +04:00
|
|
|
case AF_UNIX:
|
2005-01-16 17:29:34 +03:00
|
|
|
assert(sock->port == 0); /* to catch confused people */
|
|
|
|
assert(strlen(sock->addr->hostname) < sizeof au.sun_path);
|
2004-05-31 18:01:52 +04:00
|
|
|
memset(&au, 0, sizeof au);
|
|
|
|
au.sun_family = AF_UNIX;
|
2005-01-16 17:29:34 +03:00
|
|
|
strcpy(au.sun_path, sock->addr->hostname);
|
2004-05-31 18:01:52 +04:00
|
|
|
sa = (const struct sockaddr *)&au;
|
|
|
|
salen = sizeof au;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
assert(0 && "unknown address family");
|
2005-04-24 18:43:00 +04:00
|
|
|
exit(1); /* XXX: GCC doesn't understand assert() on some systems. */
|
2004-05-31 18:01:52 +04:00
|
|
|
}
|
2003-04-17 03:58:59 +04:00
|
|
|
|
|
|
|
fl = fcntl(s, F_GETFL);
|
|
|
|
if (fl != -1)
|
|
|
|
fcntl(s, F_SETFL, fl | O_NONBLOCK);
|
2003-01-09 21:14:24 +03:00
|
|
|
|
2004-05-31 18:01:52 +04:00
|
|
|
if ((connect(s, sa, salen)) < 0) {
|
2003-01-09 21:14:24 +03:00
|
|
|
if ( errno != EINPROGRESS ) {
|
2005-01-16 17:29:34 +03:00
|
|
|
err = errno;
|
|
|
|
goto ret;
|
2002-10-31 22:49:52 +03:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/*
|
|
|
|
* If we _don't_ get EWOULDBLOCK, the connect has completed
|
|
|
|
* and we should set the socket as connected and writable.
|
|
|
|
*/
|
2005-01-16 17:29:34 +03:00
|
|
|
sock->connected = 1;
|
|
|
|
sock->writable = 1;
|
2002-10-31 22:49:52 +03:00
|
|
|
}
|
|
|
|
|
2005-01-16 17:29:34 +03:00
|
|
|
uxsel_tell(sock);
|
|
|
|
|
|
|
|
ret:
|
2007-11-28 23:45:50 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* No matter what happened, put the socket back in the tree.
|
|
|
|
*/
|
|
|
|
add234(sktree, sock);
|
|
|
|
|
2005-01-16 17:29:34 +03:00
|
|
|
if (err)
|
|
|
|
plug_log(sock->plug, 1, sock->addr, sock->port, strerror(err), err);
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
Socket sk_new(SockAddr addr, int port, int privport, int oobinline,
|
|
|
|
int nodelay, int keepalive, Plug plug)
|
|
|
|
{
|
|
|
|
Actual_Socket ret;
|
|
|
|
int err;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Create Socket structure.
|
|
|
|
*/
|
|
|
|
ret = snew(struct Socket_tag);
|
|
|
|
ret->fn = &tcp_fn_table;
|
|
|
|
ret->error = NULL;
|
|
|
|
ret->plug = plug;
|
|
|
|
bufchain_init(&ret->output_data);
|
|
|
|
ret->connected = 0; /* to start with */
|
|
|
|
ret->writable = 0; /* to start with */
|
|
|
|
ret->sending_oob = 0;
|
|
|
|
ret->frozen = 0;
|
|
|
|
ret->frozen_readable = 0;
|
|
|
|
ret->localhost_only = 0; /* unused, but best init anyway */
|
|
|
|
ret->pending_error = 0;
|
2008-08-21 02:21:04 +04:00
|
|
|
ret->parent = ret->child = NULL;
|
2005-01-16 17:29:34 +03:00
|
|
|
ret->oobpending = FALSE;
|
|
|
|
ret->listener = 0;
|
|
|
|
ret->addr = addr;
|
|
|
|
ret->s = -1;
|
|
|
|
ret->oobinline = oobinline;
|
|
|
|
ret->nodelay = nodelay;
|
|
|
|
ret->keepalive = keepalive;
|
|
|
|
ret->privport = privport;
|
|
|
|
ret->port = port;
|
|
|
|
|
|
|
|
err = 0;
|
|
|
|
do {
|
|
|
|
err = try_connect(ret);
|
|
|
|
} while (err && sk_nextaddr(ret->addr));
|
2002-10-31 22:49:52 +03:00
|
|
|
|
2005-01-16 17:29:34 +03:00
|
|
|
if (err)
|
|
|
|
ret->error = strerror(err);
|
2003-08-07 20:04:33 +04:00
|
|
|
|
2002-10-31 22:49:52 +03:00
|
|
|
return (Socket) ret;
|
|
|
|
}
|
|
|
|
|
2008-08-21 02:21:04 +04:00
|
|
|
Socket sk_newlistener(char *srcaddr, int port, Plug plug, int local_host_only, int orig_address_family)
|
2002-10-31 22:49:52 +03:00
|
|
|
{
|
|
|
|
int s;
|
2004-12-30 19:45:11 +03:00
|
|
|
#ifndef NO_IPV6
|
2003-04-17 03:33:44 +04:00
|
|
|
struct addrinfo hints, *ai;
|
|
|
|
char portstr[6];
|
2005-01-16 15:37:19 +03:00
|
|
|
struct sockaddr_in6 a6;
|
2002-10-31 22:49:52 +03:00
|
|
|
#endif
|
2005-01-16 15:37:19 +03:00
|
|
|
struct sockaddr *addr;
|
|
|
|
int addrlen;
|
2002-10-31 22:49:52 +03:00
|
|
|
struct sockaddr_in a;
|
|
|
|
Actual_Socket ret;
|
|
|
|
int retcode;
|
2008-08-21 02:21:04 +04:00
|
|
|
int address_family;
|
2002-10-31 22:49:52 +03:00
|
|
|
int on = 1;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Create Socket structure.
|
|
|
|
*/
|
2003-03-29 19:14:26 +03:00
|
|
|
ret = snew(struct Socket_tag);
|
2003-01-11 12:31:54 +03:00
|
|
|
ret->fn = &tcp_fn_table;
|
2002-10-31 22:49:52 +03:00
|
|
|
ret->error = NULL;
|
|
|
|
ret->plug = plug;
|
|
|
|
bufchain_init(&ret->output_data);
|
|
|
|
ret->writable = 0; /* to start with */
|
|
|
|
ret->sending_oob = 0;
|
|
|
|
ret->frozen = 0;
|
|
|
|
ret->frozen_readable = 0;
|
|
|
|
ret->localhost_only = local_host_only;
|
|
|
|
ret->pending_error = 0;
|
2008-08-21 02:21:04 +04:00
|
|
|
ret->parent = ret->child = NULL;
|
2002-10-31 22:49:52 +03:00
|
|
|
ret->oobpending = FALSE;
|
|
|
|
ret->listener = 1;
|
2005-01-16 17:29:34 +03:00
|
|
|
ret->addr = NULL;
|
2002-10-31 22:49:52 +03:00
|
|
|
|
2004-12-30 19:45:11 +03:00
|
|
|
/*
|
|
|
|
* Translate address_family from platform-independent constants
|
|
|
|
* into local reality.
|
|
|
|
*/
|
2008-08-21 02:21:04 +04:00
|
|
|
address_family = (orig_address_family == ADDRTYPE_IPV4 ? AF_INET :
|
2005-09-13 23:54:01 +04:00
|
|
|
#ifndef NO_IPV6
|
2008-08-21 02:21:04 +04:00
|
|
|
orig_address_family == ADDRTYPE_IPV6 ? AF_INET6 :
|
2005-09-13 23:54:01 +04:00
|
|
|
#endif
|
|
|
|
AF_UNSPEC);
|
2004-12-30 19:45:11 +03:00
|
|
|
|
|
|
|
#ifndef NO_IPV6
|
|
|
|
/* Let's default to IPv6.
|
|
|
|
* If the stack doesn't support IPv6, we will fall back to IPv4. */
|
|
|
|
if (address_family == AF_UNSPEC) address_family = AF_INET6;
|
|
|
|
#else
|
|
|
|
/* No other choice, default to IPv4 */
|
|
|
|
if (address_family == AF_UNSPEC) address_family = AF_INET;
|
|
|
|
#endif
|
|
|
|
|
2002-10-31 22:49:52 +03:00
|
|
|
/*
|
|
|
|
* Open socket.
|
|
|
|
*/
|
2004-12-30 19:45:11 +03:00
|
|
|
s = socket(address_family, SOCK_STREAM, 0);
|
|
|
|
|
2005-09-13 23:54:01 +04:00
|
|
|
#ifndef NO_IPV6
|
2004-12-30 19:45:11 +03:00
|
|
|
/* If the host doesn't support IPv6 try fallback to IPv4. */
|
|
|
|
if (s < 0 && address_family == AF_INET6) {
|
|
|
|
address_family = AF_INET;
|
|
|
|
s = socket(address_family, SOCK_STREAM, 0);
|
|
|
|
}
|
2005-09-13 23:54:01 +04:00
|
|
|
#endif
|
2002-10-31 22:49:52 +03:00
|
|
|
|
|
|
|
if (s < 0) {
|
2005-01-16 17:29:34 +03:00
|
|
|
ret->error = strerror(errno);
|
2002-10-31 22:49:52 +03:00
|
|
|
return (Socket) ret;
|
|
|
|
}
|
|
|
|
|
2006-12-09 18:44:31 +03:00
|
|
|
cloexec(s);
|
2006-11-23 17:32:11 +03:00
|
|
|
|
2002-10-31 22:49:52 +03:00
|
|
|
ret->oobinline = 0;
|
|
|
|
|
|
|
|
setsockopt(s, SOL_SOCKET, SO_REUSEADDR, (const char *)&on, sizeof(on));
|
|
|
|
|
2005-01-16 15:37:19 +03:00
|
|
|
retcode = -1;
|
|
|
|
addr = NULL; addrlen = -1; /* placate optimiser */
|
|
|
|
|
|
|
|
if (srcaddr != NULL) {
|
2004-12-30 19:45:11 +03:00
|
|
|
#ifndef NO_IPV6
|
2005-01-16 15:37:19 +03:00
|
|
|
hints.ai_flags = AI_NUMERICHOST;
|
|
|
|
hints.ai_family = address_family;
|
2005-01-22 18:32:10 +03:00
|
|
|
hints.ai_socktype = SOCK_STREAM;
|
2005-01-16 15:37:19 +03:00
|
|
|
hints.ai_protocol = 0;
|
|
|
|
hints.ai_addrlen = 0;
|
|
|
|
hints.ai_addr = NULL;
|
|
|
|
hints.ai_canonname = NULL;
|
|
|
|
hints.ai_next = NULL;
|
2005-01-27 02:49:56 +03:00
|
|
|
assert(port >= 0 && port <= 99999);
|
2005-01-16 15:37:19 +03:00
|
|
|
sprintf(portstr, "%d", port);
|
|
|
|
retcode = getaddrinfo(srcaddr, portstr, &hints, &ai);
|
2005-01-22 18:20:35 +03:00
|
|
|
if (retcode == 0) {
|
2005-01-22 18:19:21 +03:00
|
|
|
addr = ai->ai_addr;
|
|
|
|
addrlen = ai->ai_addrlen;
|
|
|
|
}
|
2005-01-16 15:37:19 +03:00
|
|
|
#else
|
|
|
|
memset(&a,'\0',sizeof(struct sockaddr_in));
|
|
|
|
a.sin_family = AF_INET;
|
|
|
|
a.sin_port = htons(port);
|
|
|
|
a.sin_addr.s_addr = inet_addr(srcaddr);
|
|
|
|
if (a.sin_addr.s_addr != (in_addr_t)(-1)) {
|
|
|
|
/* Override localhost_only with specified listen addr. */
|
|
|
|
ret->localhost_only = ipv4_is_loopback(a.sin_addr);
|
|
|
|
}
|
2005-03-05 18:04:48 +03:00
|
|
|
addr = (struct sockaddr *)&a;
|
2005-01-16 15:37:19 +03:00
|
|
|
addrlen = sizeof(a);
|
|
|
|
retcode = 0;
|
2002-10-31 22:49:52 +03:00
|
|
|
#endif
|
2005-01-16 15:37:19 +03:00
|
|
|
}
|
2002-12-18 14:39:25 +03:00
|
|
|
|
2005-01-16 15:37:19 +03:00
|
|
|
if (retcode != 0) {
|
|
|
|
#ifndef NO_IPV6
|
|
|
|
if (address_family == AF_INET6) {
|
|
|
|
memset(&a6,'\0',sizeof(struct sockaddr_in6));
|
|
|
|
a6.sin6_family = AF_INET6;
|
|
|
|
a6.sin6_port = htons(port);
|
|
|
|
if (local_host_only)
|
|
|
|
a6.sin6_addr = in6addr_loopback;
|
|
|
|
else
|
|
|
|
a6.sin6_addr = in6addr_any;
|
|
|
|
addr = (struct sockaddr *)&a6;
|
|
|
|
addrlen = sizeof(a6);
|
|
|
|
} else
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
memset(&a,'\0',sizeof(struct sockaddr_in));
|
|
|
|
a.sin_family = AF_INET;
|
|
|
|
a.sin_port = htons(port);
|
2002-12-18 14:39:25 +03:00
|
|
|
if (local_host_only)
|
|
|
|
a.sin_addr.s_addr = htonl(INADDR_LOOPBACK);
|
|
|
|
else
|
|
|
|
a.sin_addr.s_addr = htonl(INADDR_ANY);
|
2005-01-16 15:37:19 +03:00
|
|
|
addr = (struct sockaddr *)&a;
|
|
|
|
addrlen = sizeof(a);
|
|
|
|
}
|
2002-10-31 22:49:52 +03:00
|
|
|
}
|
|
|
|
|
2005-01-16 15:37:19 +03:00
|
|
|
retcode = bind(s, addr, addrlen);
|
|
|
|
if (retcode < 0) {
|
|
|
|
close(s);
|
2005-01-16 17:29:34 +03:00
|
|
|
ret->error = strerror(errno);
|
2002-10-31 22:49:52 +03:00
|
|
|
return (Socket) ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (listen(s, SOMAXCONN) < 0) {
|
|
|
|
close(s);
|
2005-01-16 17:29:34 +03:00
|
|
|
ret->error = strerror(errno);
|
2002-10-31 22:49:52 +03:00
|
|
|
return (Socket) ret;
|
|
|
|
}
|
|
|
|
|
2008-08-21 02:21:04 +04:00
|
|
|
#ifndef NO_IPV6
|
|
|
|
/*
|
|
|
|
* If we were given ADDRTYPE_UNSPEC, we must also create an
|
|
|
|
* IPv4 listening socket and link it to this one.
|
|
|
|
*/
|
|
|
|
if (address_family == AF_INET6 && orig_address_family == ADDRTYPE_UNSPEC) {
|
|
|
|
Actual_Socket other;
|
|
|
|
|
|
|
|
other = (Actual_Socket) sk_newlistener(srcaddr, port, plug,
|
|
|
|
local_host_only, ADDRTYPE_IPV4);
|
|
|
|
|
|
|
|
if (other) {
|
|
|
|
if (!other->error) {
|
|
|
|
other->parent = ret;
|
|
|
|
ret->child = other;
|
|
|
|
} else {
|
|
|
|
/* If we couldn't create a listening socket on IPv4 as well
|
|
|
|
* as IPv6, we must return an error overall. */
|
|
|
|
close(s);
|
|
|
|
sfree(ret);
|
|
|
|
return (Socket) other;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2005-01-16 15:37:19 +03:00
|
|
|
ret->s = s;
|
|
|
|
|
2003-03-29 19:47:06 +03:00
|
|
|
uxsel_tell(ret);
|
2002-10-31 22:49:52 +03:00
|
|
|
add234(sktree, ret);
|
|
|
|
|
|
|
|
return (Socket) ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void sk_tcp_close(Socket sock)
|
|
|
|
{
|
|
|
|
Actual_Socket s = (Actual_Socket) sock;
|
|
|
|
|
2008-08-21 02:21:04 +04:00
|
|
|
if (s->child)
|
|
|
|
sk_tcp_close((Socket)s->child);
|
|
|
|
|
2003-03-29 19:47:06 +03:00
|
|
|
uxsel_del(s->s);
|
2002-10-31 22:49:52 +03:00
|
|
|
del234(sktree, s);
|
|
|
|
close(s->s);
|
2005-01-16 17:29:34 +03:00
|
|
|
if (s->addr)
|
|
|
|
sk_addr_free(s->addr);
|
2002-10-31 22:49:52 +03:00
|
|
|
sfree(s);
|
|
|
|
}
|
|
|
|
|
2005-01-28 14:39:45 +03:00
|
|
|
void *sk_getxdmdata(void *sock, int *lenp)
|
2003-01-11 12:31:54 +03:00
|
|
|
{
|
|
|
|
Actual_Socket s = (Actual_Socket) sock;
|
2005-01-28 14:39:45 +03:00
|
|
|
#ifdef NO_IPV6
|
2003-01-11 12:31:54 +03:00
|
|
|
struct sockaddr_in addr;
|
2005-01-28 14:39:45 +03:00
|
|
|
#else
|
|
|
|
struct sockaddr_storage addr;
|
|
|
|
struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *)&addr;
|
|
|
|
#endif
|
|
|
|
struct sockaddr *sa = (struct sockaddr *)&addr;
|
|
|
|
struct sockaddr_in *sin = (struct sockaddr_in *)&addr;
|
2003-01-11 12:31:54 +03:00
|
|
|
socklen_t addrlen;
|
2005-01-28 14:39:45 +03:00
|
|
|
char *buf;
|
|
|
|
static unsigned int unix_addr = 0xFFFFFFFF;
|
2003-01-11 12:31:54 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* We must check that this socket really _is_ an Actual_Socket.
|
|
|
|
*/
|
|
|
|
if (s->fn != &tcp_fn_table)
|
2005-01-28 14:39:45 +03:00
|
|
|
return NULL; /* failure */
|
2003-01-11 12:31:54 +03:00
|
|
|
|
|
|
|
addrlen = sizeof(addr);
|
2005-01-28 14:39:45 +03:00
|
|
|
if (getsockname(s->s, sa, &addrlen) < 0)
|
|
|
|
return NULL;
|
|
|
|
switch(sa->sa_family) {
|
2004-05-31 18:01:52 +04:00
|
|
|
case AF_INET:
|
2005-01-28 14:39:45 +03:00
|
|
|
*lenp = 6;
|
|
|
|
buf = snewn(*lenp, char);
|
|
|
|
PUT_32BIT_MSB_FIRST(buf, ntohl(sin->sin_addr.s_addr));
|
|
|
|
PUT_16BIT_MSB_FIRST(buf+4, ntohs(sin->sin_port));
|
2004-05-31 18:01:52 +04:00
|
|
|
break;
|
2005-01-28 14:39:45 +03:00
|
|
|
#ifndef NO_IPV6
|
|
|
|
case AF_INET6:
|
|
|
|
*lenp = 6;
|
|
|
|
buf = snewn(*lenp, char);
|
|
|
|
if (IN6_IS_ADDR_V4MAPPED(&sin6->sin6_addr)) {
|
|
|
|
memcpy(buf, sin6->sin6_addr.s6_addr + 12, 4);
|
|
|
|
PUT_16BIT_MSB_FIRST(buf+4, ntohs(sin6->sin6_port));
|
|
|
|
} else
|
|
|
|
/* This is stupid, but it's what XLib does. */
|
|
|
|
memset(buf, 0, 6);
|
|
|
|
break;
|
|
|
|
#endif
|
2004-05-31 18:01:52 +04:00
|
|
|
case AF_UNIX:
|
2005-01-28 14:39:45 +03:00
|
|
|
*lenp = 6;
|
|
|
|
buf = snewn(*lenp, char);
|
|
|
|
PUT_32BIT_MSB_FIRST(buf, unix_addr--);
|
|
|
|
PUT_16BIT_MSB_FIRST(buf+4, getpid());
|
2004-05-31 18:01:52 +04:00
|
|
|
break;
|
2003-01-11 12:31:54 +03:00
|
|
|
|
2004-05-31 18:01:52 +04:00
|
|
|
/* XXX IPV6 */
|
|
|
|
|
|
|
|
default:
|
2005-01-28 14:39:45 +03:00
|
|
|
return NULL;
|
2004-05-31 18:01:52 +04:00
|
|
|
}
|
2003-01-11 12:31:54 +03:00
|
|
|
|
2005-01-28 14:39:45 +03:00
|
|
|
return buf;
|
2003-01-11 12:31:54 +03:00
|
|
|
}
|
|
|
|
|
2002-10-31 22:49:52 +03:00
|
|
|
/*
|
|
|
|
* The function which tries to send on a socket once it's deemed
|
|
|
|
* writable.
|
|
|
|
*/
|
|
|
|
void try_send(Actual_Socket s)
|
|
|
|
{
|
|
|
|
while (s->sending_oob || bufchain_size(&s->output_data) > 0) {
|
|
|
|
int nsent;
|
|
|
|
int err;
|
|
|
|
void *data;
|
|
|
|
int len, urgentflag;
|
|
|
|
|
|
|
|
if (s->sending_oob) {
|
|
|
|
urgentflag = MSG_OOB;
|
|
|
|
len = s->sending_oob;
|
|
|
|
data = &s->oobdata;
|
|
|
|
} else {
|
|
|
|
urgentflag = 0;
|
|
|
|
bufchain_prefix(&s->output_data, &data, &len);
|
|
|
|
}
|
|
|
|
nsent = send(s->s, data, len, urgentflag);
|
|
|
|
noise_ultralight(nsent);
|
|
|
|
if (nsent <= 0) {
|
|
|
|
err = (nsent < 0 ? errno : 0);
|
|
|
|
if (err == EWOULDBLOCK) {
|
|
|
|
/*
|
|
|
|
* Perfectly normal: we've sent all we can for the moment.
|
|
|
|
*/
|
|
|
|
s->writable = FALSE;
|
|
|
|
return;
|
2005-02-23 02:30:09 +03:00
|
|
|
} else {
|
2002-10-31 22:49:52 +03:00
|
|
|
/*
|
2005-02-23 02:30:09 +03:00
|
|
|
* We unfortunately can't just call plug_closing(),
|
2002-10-31 22:49:52 +03:00
|
|
|
* because it's quite likely that we're currently
|
|
|
|
* _in_ a call from the code we'd be calling back
|
|
|
|
* to, so we'd have to make half the SSH code
|
|
|
|
* reentrant. Instead we flag a pending error on
|
|
|
|
* the socket, to be dealt with (by calling
|
|
|
|
* plug_closing()) at some suitable future moment.
|
|
|
|
*/
|
|
|
|
s->pending_error = err;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (s->sending_oob) {
|
|
|
|
if (nsent < len) {
|
|
|
|
memmove(s->oobdata, s->oobdata+nsent, len-nsent);
|
|
|
|
s->sending_oob = len - nsent;
|
|
|
|
} else {
|
|
|
|
s->sending_oob = 0;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
bufchain_consume(&s->output_data, nsent);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2003-03-29 19:47:06 +03:00
|
|
|
uxsel_tell(s);
|
2002-10-31 22:49:52 +03:00
|
|
|
}
|
|
|
|
|
2003-01-10 21:33:35 +03:00
|
|
|
static int sk_tcp_write(Socket sock, const char *buf, int len)
|
2002-10-31 22:49:52 +03:00
|
|
|
{
|
|
|
|
Actual_Socket s = (Actual_Socket) sock;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Add the data to the buffer list on the socket.
|
|
|
|
*/
|
|
|
|
bufchain_add(&s->output_data, buf, len);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Now try sending from the start of the buffer list.
|
|
|
|
*/
|
|
|
|
if (s->writable)
|
|
|
|
try_send(s);
|
|
|
|
|
2003-04-18 13:00:37 +04:00
|
|
|
/*
|
|
|
|
* Update the select() status to correctly reflect whether or
|
|
|
|
* not we should be selecting for write.
|
|
|
|
*/
|
|
|
|
uxsel_tell(s);
|
|
|
|
|
2002-10-31 22:49:52 +03:00
|
|
|
return bufchain_size(&s->output_data);
|
|
|
|
}
|
|
|
|
|
2003-01-10 21:33:35 +03:00
|
|
|
static int sk_tcp_write_oob(Socket sock, const char *buf, int len)
|
2002-10-31 22:49:52 +03:00
|
|
|
{
|
|
|
|
Actual_Socket s = (Actual_Socket) sock;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Replace the buffer list on the socket with the data.
|
|
|
|
*/
|
|
|
|
bufchain_clear(&s->output_data);
|
|
|
|
assert(len <= sizeof(s->oobdata));
|
|
|
|
memcpy(s->oobdata, buf, len);
|
|
|
|
s->sending_oob = len;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Now try sending from the start of the buffer list.
|
|
|
|
*/
|
|
|
|
if (s->writable)
|
|
|
|
try_send(s);
|
|
|
|
|
2003-04-18 13:00:37 +04:00
|
|
|
/*
|
|
|
|
* Update the select() status to correctly reflect whether or
|
|
|
|
* not we should be selecting for write.
|
|
|
|
*/
|
|
|
|
uxsel_tell(s);
|
|
|
|
|
2002-10-31 22:49:52 +03:00
|
|
|
return s->sending_oob;
|
|
|
|
}
|
|
|
|
|
2003-03-29 19:47:06 +03:00
|
|
|
static int net_select_result(int fd, int event)
|
2002-10-31 22:49:52 +03:00
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
char buf[20480]; /* nice big buffer for plenty of speed */
|
|
|
|
Actual_Socket s;
|
|
|
|
u_long atmark;
|
|
|
|
|
|
|
|
/* Find the Socket structure */
|
2003-05-10 12:35:54 +04:00
|
|
|
s = find234(sktree, &fd, cmpforsearch);
|
2002-10-31 22:49:52 +03:00
|
|
|
if (!s)
|
|
|
|
return 1; /* boggle */
|
|
|
|
|
|
|
|
noise_ultralight(event);
|
|
|
|
|
|
|
|
switch (event) {
|
|
|
|
case 4: /* exceptional */
|
|
|
|
if (!s->oobinline) {
|
|
|
|
/*
|
|
|
|
* On a non-oobinline socket, this indicates that we
|
|
|
|
* can immediately perform an OOB read and get back OOB
|
|
|
|
* data, which we will send to the back end with
|
|
|
|
* type==2 (urgent data).
|
|
|
|
*/
|
|
|
|
ret = recv(s->s, buf, sizeof(buf), MSG_OOB);
|
|
|
|
noise_ultralight(ret);
|
|
|
|
if (ret <= 0) {
|
2005-02-23 02:30:09 +03:00
|
|
|
return plug_closing(s->plug,
|
|
|
|
ret == 0 ? "Internal networking trouble" :
|
|
|
|
strerror(errno), errno, 0);
|
2002-10-31 22:49:52 +03:00
|
|
|
} else {
|
2005-01-16 17:29:34 +03:00
|
|
|
/*
|
|
|
|
* Receiving actual data on a socket means we can
|
|
|
|
* stop falling back through the candidate
|
|
|
|
* addresses to connect to.
|
|
|
|
*/
|
|
|
|
if (s->addr) {
|
|
|
|
sk_addr_free(s->addr);
|
|
|
|
s->addr = NULL;
|
|
|
|
}
|
2002-10-31 22:49:52 +03:00
|
|
|
return plug_receive(s->plug, 2, buf, ret);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If we reach here, this is an oobinline socket, which
|
2002-11-01 16:36:48 +03:00
|
|
|
* means we should set s->oobpending and then deal with it
|
|
|
|
* when we get called for the readability event (which
|
|
|
|
* should also occur).
|
2002-10-31 22:49:52 +03:00
|
|
|
*/
|
|
|
|
s->oobpending = TRUE;
|
2002-11-01 16:36:48 +03:00
|
|
|
break;
|
2002-10-31 22:49:52 +03:00
|
|
|
case 1: /* readable; also acceptance */
|
|
|
|
if (s->listener) {
|
|
|
|
/*
|
|
|
|
* On a listening socket, the readability event means a
|
|
|
|
* connection is ready to be accepted.
|
|
|
|
*/
|
2005-01-23 17:31:08 +03:00
|
|
|
#ifdef NO_IPV6
|
|
|
|
struct sockaddr_in ss;
|
|
|
|
#else
|
|
|
|
struct sockaddr_storage ss;
|
|
|
|
#endif
|
|
|
|
socklen_t addrlen = sizeof(ss);
|
2002-10-31 22:49:52 +03:00
|
|
|
int t; /* socket of connection */
|
2008-02-21 12:18:24 +03:00
|
|
|
int fl;
|
2002-10-31 22:49:52 +03:00
|
|
|
|
2005-01-23 17:31:08 +03:00
|
|
|
memset(&ss, 0, addrlen);
|
|
|
|
t = accept(s->s, (struct sockaddr *)&ss, &addrlen);
|
2002-10-31 22:49:52 +03:00
|
|
|
if (t < 0) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2008-02-21 12:18:24 +03:00
|
|
|
fl = fcntl(t, F_GETFL);
|
|
|
|
if (fl != -1)
|
|
|
|
fcntl(t, F_SETFL, fl | O_NONBLOCK);
|
|
|
|
|
2005-01-23 17:31:08 +03:00
|
|
|
if (s->localhost_only &&
|
|
|
|
!sockaddr_is_loopback((struct sockaddr *)&ss)) {
|
2002-10-31 22:49:52 +03:00
|
|
|
close(t); /* someone let nonlocal through?! */
|
2003-05-10 12:35:54 +04:00
|
|
|
} else if (plug_accepting(s->plug, t)) {
|
2002-10-31 22:49:52 +03:00
|
|
|
close(t); /* denied or error */
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If we reach here, this is not a listening socket, so
|
|
|
|
* readability really means readability.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* In the case the socket is still frozen, we don't even bother */
|
|
|
|
if (s->frozen) {
|
|
|
|
s->frozen_readable = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* We have received data on the socket. For an oobinline
|
|
|
|
* socket, this might be data _before_ an urgent pointer,
|
|
|
|
* in which case we send it to the back end with type==1
|
|
|
|
* (data prior to urgent).
|
|
|
|
*/
|
|
|
|
if (s->oobinline && s->oobpending) {
|
|
|
|
atmark = 1;
|
|
|
|
if (ioctl(s->s, SIOCATMARK, &atmark) == 0 && atmark)
|
|
|
|
s->oobpending = FALSE; /* clear this indicator */
|
|
|
|
} else
|
|
|
|
atmark = 1;
|
|
|
|
|
2002-11-01 16:36:48 +03:00
|
|
|
ret = recv(s->s, buf, s->oobpending ? 1 : sizeof(buf), 0);
|
2002-10-31 22:49:52 +03:00
|
|
|
noise_ultralight(ret);
|
|
|
|
if (ret < 0) {
|
|
|
|
if (errno == EWOULDBLOCK) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (ret < 0) {
|
2005-01-16 17:29:34 +03:00
|
|
|
/*
|
|
|
|
* An error at this point _might_ be an error reported
|
|
|
|
* by a non-blocking connect(). So before we return a
|
|
|
|
* panic status to the user, let's just see whether
|
|
|
|
* that's the case.
|
|
|
|
*/
|
|
|
|
int err = errno;
|
|
|
|
if (s->addr) {
|
|
|
|
plug_log(s->plug, 1, s->addr, s->port, strerror(err), err);
|
|
|
|
while (s->addr && sk_nextaddr(s->addr)) {
|
|
|
|
err = try_connect(s);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (err != 0)
|
|
|
|
return plug_closing(s->plug, strerror(err), err, 0);
|
2002-10-31 22:49:52 +03:00
|
|
|
} else if (0 == ret) {
|
|
|
|
return plug_closing(s->plug, NULL, 0, 0);
|
|
|
|
} else {
|
2005-01-16 17:29:34 +03:00
|
|
|
/*
|
|
|
|
* Receiving actual data on a socket means we can
|
|
|
|
* stop falling back through the candidate
|
|
|
|
* addresses to connect to.
|
|
|
|
*/
|
|
|
|
if (s->addr) {
|
|
|
|
sk_addr_free(s->addr);
|
|
|
|
s->addr = NULL;
|
|
|
|
}
|
2002-10-31 22:49:52 +03:00
|
|
|
return plug_receive(s->plug, atmark ? 0 : 1, buf, ret);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 2: /* writable */
|
2003-01-09 21:14:24 +03:00
|
|
|
if (!s->connected) {
|
|
|
|
/*
|
|
|
|
* select() reports a socket as _writable_ when an
|
|
|
|
* asynchronous connection is completed.
|
|
|
|
*/
|
|
|
|
s->connected = s->writable = 1;
|
2003-03-29 19:47:06 +03:00
|
|
|
uxsel_tell(s);
|
2003-01-09 21:14:24 +03:00
|
|
|
break;
|
|
|
|
} else {
|
2002-10-31 22:49:52 +03:00
|
|
|
int bufsize_before, bufsize_after;
|
|
|
|
s->writable = 1;
|
|
|
|
bufsize_before = s->sending_oob + bufchain_size(&s->output_data);
|
|
|
|
try_send(s);
|
|
|
|
bufsize_after = s->sending_oob + bufchain_size(&s->output_data);
|
|
|
|
if (bufsize_after < bufsize_before)
|
|
|
|
plug_sent(s->plug, bufsize_after);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Deal with socket errors detected in try_send().
|
|
|
|
*/
|
|
|
|
void net_pending_errors(void)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
Actual_Socket s;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This might be a fiddly business, because it's just possible
|
|
|
|
* that handling a pending error on one socket might cause
|
|
|
|
* others to be closed. (I can't think of any reason this might
|
|
|
|
* happen in current SSH implementation, but to maintain
|
|
|
|
* generality of this network layer I'll assume the worst.)
|
|
|
|
*
|
|
|
|
* So what we'll do is search the socket list for _one_ socket
|
|
|
|
* with a pending error, and then handle it, and then search
|
|
|
|
* the list again _from the beginning_. Repeat until we make a
|
|
|
|
* pass with no socket errors present. That way we are
|
|
|
|
* protected against the socket list changing under our feet.
|
|
|
|
*/
|
|
|
|
|
|
|
|
do {
|
|
|
|
for (i = 0; (s = index234(sktree, i)) != NULL; i++) {
|
|
|
|
if (s->pending_error) {
|
|
|
|
/*
|
|
|
|
* An error has occurred on this socket. Pass it to the
|
|
|
|
* plug.
|
|
|
|
*/
|
2005-01-16 17:29:34 +03:00
|
|
|
plug_closing(s->plug, strerror(s->pending_error),
|
2002-10-31 22:49:52 +03:00
|
|
|
s->pending_error, 0);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} while (s);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Each socket abstraction contains a `void *' private field in
|
|
|
|
* which the client can keep state.
|
|
|
|
*/
|
|
|
|
static void sk_tcp_set_private_ptr(Socket sock, void *ptr)
|
|
|
|
{
|
|
|
|
Actual_Socket s = (Actual_Socket) sock;
|
|
|
|
s->private_ptr = ptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void *sk_tcp_get_private_ptr(Socket sock)
|
|
|
|
{
|
|
|
|
Actual_Socket s = (Actual_Socket) sock;
|
|
|
|
return s->private_ptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Special error values are returned from sk_namelookup and sk_new
|
|
|
|
* if there's a problem. These functions extract an error message,
|
|
|
|
* or return NULL if there's no problem.
|
|
|
|
*/
|
2003-05-04 18:18:18 +04:00
|
|
|
const char *sk_addr_error(SockAddr addr)
|
2002-10-31 22:49:52 +03:00
|
|
|
{
|
|
|
|
return addr->error;
|
|
|
|
}
|
2003-05-04 18:18:18 +04:00
|
|
|
static const char *sk_tcp_socket_error(Socket sock)
|
2002-10-31 22:49:52 +03:00
|
|
|
{
|
|
|
|
Actual_Socket s = (Actual_Socket) sock;
|
|
|
|
return s->error;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void sk_tcp_set_frozen(Socket sock, int is_frozen)
|
|
|
|
{
|
|
|
|
Actual_Socket s = (Actual_Socket) sock;
|
|
|
|
if (s->frozen == is_frozen)
|
|
|
|
return;
|
|
|
|
s->frozen = is_frozen;
|
|
|
|
if (!is_frozen && s->frozen_readable) {
|
|
|
|
char c;
|
|
|
|
recv(s->s, &c, 1, MSG_PEEK);
|
|
|
|
}
|
|
|
|
s->frozen_readable = 0;
|
2003-03-29 19:47:06 +03:00
|
|
|
uxsel_tell(s);
|
2002-10-31 22:49:52 +03:00
|
|
|
}
|
|
|
|
|
2003-03-29 19:47:06 +03:00
|
|
|
static void uxsel_tell(Actual_Socket s)
|
2002-10-31 22:49:52 +03:00
|
|
|
{
|
2003-03-29 19:47:06 +03:00
|
|
|
int rwx = 0;
|
2005-02-16 14:44:44 +03:00
|
|
|
if (s->listener) {
|
|
|
|
rwx |= 1; /* read == accept */
|
|
|
|
} else {
|
|
|
|
if (!s->connected)
|
|
|
|
rwx |= 2; /* write == connect */
|
|
|
|
if (s->connected && !s->frozen)
|
|
|
|
rwx |= 1 | 4; /* read, except */
|
|
|
|
if (bufchain_size(&s->output_data))
|
|
|
|
rwx |= 2; /* write */
|
|
|
|
}
|
2003-03-29 19:47:06 +03:00
|
|
|
uxsel_set(s->s, rwx, net_select_result);
|
2002-10-31 22:49:52 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
int net_service_lookup(char *service)
|
|
|
|
{
|
|
|
|
struct servent *se;
|
|
|
|
se = getservbyname(service, NULL);
|
|
|
|
if (se != NULL)
|
|
|
|
return ntohs(se->s_port);
|
|
|
|
else
|
|
|
|
return 0;
|
|
|
|
}
|
2004-05-31 18:01:52 +04:00
|
|
|
|
2008-05-28 23:23:57 +04:00
|
|
|
SockAddr platform_get_x11_unix_address(const char *display, int displaynum,
|
|
|
|
char **canonicalname)
|
2004-05-31 18:01:52 +04:00
|
|
|
{
|
|
|
|
SockAddr ret = snew(struct SockAddr_tag);
|
|
|
|
int n;
|
|
|
|
|
|
|
|
memset(ret, 0, sizeof *ret);
|
|
|
|
ret->family = AF_UNIX;
|
2008-05-28 23:23:57 +04:00
|
|
|
/*
|
|
|
|
* Mac OS X Leopard uses an innovative X display naming
|
|
|
|
* convention in which the entire display name is the path to
|
|
|
|
* the Unix socket, including the trailing :0 which only
|
|
|
|
* _looks_ like a display number. Heuristically, I think
|
|
|
|
* detecting this by means of a leading slash ought to be
|
|
|
|
* adequate.
|
|
|
|
*/
|
|
|
|
if (display[0] == '/') {
|
|
|
|
n = snprintf(ret->hostname, sizeof ret->hostname,
|
|
|
|
"%s", display);
|
|
|
|
} else {
|
|
|
|
n = snprintf(ret->hostname, sizeof ret->hostname,
|
|
|
|
"%s%d", X11_UNIX_PATH, displaynum);
|
|
|
|
}
|
2004-05-31 18:01:52 +04:00
|
|
|
if(n < 0)
|
|
|
|
ret->error = "snprintf failed";
|
|
|
|
else if(n >= sizeof ret->hostname)
|
|
|
|
ret->error = "X11 UNIX name too long";
|
|
|
|
else
|
|
|
|
*canonicalname = dupstr(ret->hostname);
|
2005-01-16 17:29:34 +03:00
|
|
|
#ifndef NO_IPV6
|
2006-02-11 21:29:55 +03:00
|
|
|
ret->ai = ret->ais = NULL;
|
2005-01-16 17:29:34 +03:00
|
|
|
#else
|
|
|
|
ret->addresses = NULL;
|
2006-02-11 21:29:55 +03:00
|
|
|
ret->curraddr = ret->naddresses = 0;
|
2005-01-16 17:29:34 +03:00
|
|
|
#endif
|
2004-05-31 18:01:52 +04:00
|
|
|
return ret;
|
|
|
|
}
|