]> asedeno.scripts.mit.edu Git - PuTTY.git/blob - unix/uxnet.c
903faeb096744e20e943fec174a2f0063166ad9a
[PuTTY.git] / unix / uxnet.c
1 /*
2  * Unix networking abstraction.
3  */
4
5 #include <stdio.h>
6 #include <stdlib.h>
7 #include <assert.h>
8 #include <errno.h>
9 #include <fcntl.h>
10 #include <unistd.h>
11 #include <sys/types.h>
12 #include <sys/socket.h>
13 #include <sys/ioctl.h>
14 #include <arpa/inet.h>
15 #include <netinet/in.h>
16 #include <netinet/tcp.h>
17 #include <netdb.h>
18 #include <sys/un.h>
19 #include <pwd.h>
20 #include <grp.h>
21
22 #define DEFINE_PLUG_METHOD_MACROS
23 #include "putty.h"
24 #include "network.h"
25 #include "tree234.h"
26
27 /* Solaris needs <sys/sockio.h> for SIOCATMARK. */
28 #ifndef SIOCATMARK
29 #include <sys/sockio.h>
30 #endif
31
32 #ifndef X11_UNIX_PATH
33 # define X11_UNIX_PATH "/tmp/.X11-unix/X"
34 #endif
35
36 /* 
37  * Access to sockaddr types without breaking C strict aliasing rules.
38  */
39 union sockaddr_union {
40     struct sockaddr_storage storage;
41     struct sockaddr sa;
42     struct sockaddr_in sin;
43 #ifndef NO_IPV6
44     struct sockaddr_in6 sin6;
45 #endif
46     struct sockaddr_un su;
47 };
48
49 /*
50  * We used to typedef struct Socket_tag *Socket.
51  *
52  * Since we have made the networking abstraction slightly more
53  * abstract, Socket no longer means a tcp socket (it could mean
54  * an ssl socket).  So now we must use Actual_Socket when we know
55  * we are talking about a tcp socket.
56  */
57 typedef struct Socket_tag *Actual_Socket;
58
59 /*
60  * Mutable state that goes with a SockAddr: stores information
61  * about where in the list of candidate IP(v*) addresses we've
62  * currently got to.
63  */
64 typedef struct SockAddrStep_tag SockAddrStep;
65 struct SockAddrStep_tag {
66 #ifndef NO_IPV6
67     struct addrinfo *ai;               /* steps along addr->ais */
68 #endif
69     int curraddr;
70 };
71
72 struct Socket_tag {
73     struct socket_function_table *fn;
74     /* the above variable absolutely *must* be the first in this structure */
75     const char *error;
76     int s;
77     Plug plug;
78     bufchain output_data;
79     int connected;                     /* irrelevant for listening sockets */
80     int writable;
81     int frozen; /* this causes readability notifications to be ignored */
82     int localhost_only;                /* for listening sockets */
83     char oobdata[1];
84     int sending_oob;
85     int oobpending;                    /* is there OOB data available to read? */
86     int oobinline;
87     enum { EOF_NO, EOF_PENDING, EOF_SENT } outgoingeof;
88     int incomingeof;
89     int pending_error;                 /* in case send() returns error */
90     int listener;
91     int nodelay, keepalive;            /* for connect()-type sockets */
92     int privport, port;                /* and again */
93     SockAddr addr;
94     SockAddrStep step;
95     /*
96      * We sometimes need pairs of Socket structures to be linked:
97      * if we are listening on the same IPv6 and v4 port, for
98      * example. So here we define `parent' and `child' pointers to
99      * track this link.
100      */
101     Actual_Socket parent, child;
102 };
103
104 struct SockAddr_tag {
105     int refcount;
106     const char *error;
107     enum { UNRESOLVED, UNIX, IP } superfamily;
108 #ifndef NO_IPV6
109     struct addrinfo *ais;              /* Addresses IPv6 style. */
110 #else
111     unsigned long *addresses;          /* Addresses IPv4 style. */
112     int naddresses;
113 #endif
114     char hostname[512];                /* Store an unresolved host name. */
115 };
116
117 /*
118  * Which address family this address belongs to. AF_INET for IPv4;
119  * AF_INET6 for IPv6; AF_UNSPEC indicates that name resolution has
120  * not been done and a simple host name is held in this SockAddr
121  * structure.
122  */
123 #ifndef NO_IPV6
124 #define SOCKADDR_FAMILY(addr, step) \
125     ((addr)->superfamily == UNRESOLVED ? AF_UNSPEC : \
126      (addr)->superfamily == UNIX ? AF_UNIX : \
127      (step).ai ? (step).ai->ai_family : AF_INET)
128 #else
129 /* Here we gratuitously reference 'step' to avoid gcc warnings about
130  * 'set but not used' when compiling -DNO_IPV6 */
131 #define SOCKADDR_FAMILY(addr, step) \
132     ((addr)->superfamily == UNRESOLVED ? AF_UNSPEC : \
133      (addr)->superfamily == UNIX ? AF_UNIX : \
134      (step).curraddr ? AF_INET : AF_INET)
135 #endif
136
137 /*
138  * Start a SockAddrStep structure to step through multiple
139  * addresses.
140  */
141 #ifndef NO_IPV6
142 #define START_STEP(addr, step) \
143     ((step).ai = (addr)->ais, (step).curraddr = 0)
144 #else
145 #define START_STEP(addr, step) \
146     ((step).curraddr = 0)
147 #endif
148
149 static tree234 *sktree;
150
151 static void uxsel_tell(Actual_Socket s);
152
153 static int cmpfortree(void *av, void *bv)
154 {
155     Actual_Socket a = (Actual_Socket) av, b = (Actual_Socket) bv;
156     int as = a->s, bs = b->s;
157     if (as < bs)
158         return -1;
159     if (as > bs)
160         return +1;
161     if (a < b)
162        return -1;
163     if (a > b)
164        return +1;
165     return 0;
166 }
167
168 static int cmpforsearch(void *av, void *bv)
169 {
170     Actual_Socket b = (Actual_Socket) bv;
171     int as = *(int *)av, bs = b->s;
172     if (as < bs)
173         return -1;
174     if (as > bs)
175         return +1;
176     return 0;
177 }
178
179 void sk_init(void)
180 {
181     sktree = newtree234(cmpfortree);
182 }
183
184 void sk_cleanup(void)
185 {
186     Actual_Socket s;
187     int i;
188
189     if (sktree) {
190         for (i = 0; (s = index234(sktree, i)) != NULL; i++) {
191             close(s->s);
192         }
193     }
194 }
195
196 SockAddr sk_namelookup(const char *host, char **canonicalname, int address_family)
197 {
198     SockAddr ret = snew(struct SockAddr_tag);
199 #ifndef NO_IPV6
200     struct addrinfo hints;
201     int err;
202 #else
203     unsigned long a;
204     struct hostent *h = NULL;
205     int n;
206 #endif
207     char realhost[8192];
208
209     /* Clear the structure and default to IPv4. */
210     memset(ret, 0, sizeof(struct SockAddr_tag));
211     ret->superfamily = UNRESOLVED;
212     *realhost = '\0';
213     ret->error = NULL;
214     ret->refcount = 1;
215
216 #ifndef NO_IPV6
217     hints.ai_flags = AI_CANONNAME;
218     hints.ai_family = (address_family == ADDRTYPE_IPV4 ? AF_INET :
219                        address_family == ADDRTYPE_IPV6 ? AF_INET6 :
220                        AF_UNSPEC);
221     hints.ai_socktype = SOCK_STREAM;
222     hints.ai_protocol = 0;
223     hints.ai_addrlen = 0;
224     hints.ai_addr = NULL;
225     hints.ai_canonname = NULL;
226     hints.ai_next = NULL;
227     {
228         char *trimmed_host = host_strduptrim(host); /* strip [] on literals */
229         err = getaddrinfo(trimmed_host, NULL, &hints, &ret->ais);
230         sfree(trimmed_host);
231     }
232     if (err != 0) {
233         ret->error = gai_strerror(err);
234         return ret;
235     }
236     ret->superfamily = IP;
237     *realhost = '\0';
238     if (ret->ais->ai_canonname != NULL)
239         strncat(realhost, ret->ais->ai_canonname, sizeof(realhost) - 1);
240     else
241         strncat(realhost, host, sizeof(realhost) - 1);
242 #else
243     if ((a = inet_addr(host)) == (unsigned long)(in_addr_t)(-1)) {
244         /*
245          * Otherwise use the IPv4-only gethostbyname... (NOTE:
246          * we don't use gethostbyname as a fallback!)
247          */
248         if (ret->superfamily == UNRESOLVED) {
249             /*debug(("Resolving \"%s\" with gethostbyname() (IPv4 only)...\n", host)); */
250             if ( (h = gethostbyname(host)) )
251                 ret->superfamily = IP;
252         }
253         if (ret->superfamily == UNRESOLVED) {
254             ret->error = (h_errno == HOST_NOT_FOUND ||
255                           h_errno == NO_DATA ||
256                           h_errno == NO_ADDRESS ? "Host does not exist" :
257                           h_errno == TRY_AGAIN ?
258                           "Temporary name service failure" :
259                           "gethostbyname: unknown error");
260             return ret;
261         }
262         /* This way we are always sure the h->h_name is valid :) */
263         strncpy(realhost, h->h_name, sizeof(realhost));
264         for (n = 0; h->h_addr_list[n]; n++);
265         ret->addresses = snewn(n, unsigned long);
266         ret->naddresses = n;
267         for (n = 0; n < ret->naddresses; n++) {
268             memcpy(&a, h->h_addr_list[n], sizeof(a));
269             ret->addresses[n] = ntohl(a);
270         }
271     } else {
272         /*
273          * This must be a numeric IPv4 address because it caused a
274          * success return from inet_addr.
275          */
276         ret->superfamily = IP;
277         strncpy(realhost, host, sizeof(realhost));
278         ret->addresses = snew(unsigned long);
279         ret->naddresses = 1;
280         ret->addresses[0] = ntohl(a);
281     }
282 #endif
283     realhost[lenof(realhost)-1] = '\0';
284     *canonicalname = snewn(1+strlen(realhost), char);
285     strcpy(*canonicalname, realhost);
286     return ret;
287 }
288
289 SockAddr sk_nonamelookup(const char *host)
290 {
291     SockAddr ret = snew(struct SockAddr_tag);
292     ret->error = NULL;
293     ret->superfamily = UNRESOLVED;
294     strncpy(ret->hostname, host, lenof(ret->hostname));
295     ret->hostname[lenof(ret->hostname)-1] = '\0';
296 #ifndef NO_IPV6
297     ret->ais = NULL;
298 #else
299     ret->addresses = NULL;
300 #endif
301     ret->refcount = 1;
302     return ret;
303 }
304
305 static int sk_nextaddr(SockAddr addr, SockAddrStep *step)
306 {
307 #ifndef NO_IPV6
308     if (step->ai && step->ai->ai_next) {
309         step->ai = step->ai->ai_next;
310         return TRUE;
311     } else
312         return FALSE;
313 #else
314     if (step->curraddr+1 < addr->naddresses) {
315         step->curraddr++;
316         return TRUE;
317     } else {
318         return FALSE;
319     }
320 #endif    
321 }
322
323 void sk_getaddr(SockAddr addr, char *buf, int buflen)
324 {
325     if (addr->superfamily == UNRESOLVED || addr->superfamily == UNIX) {
326         strncpy(buf, addr->hostname, buflen);
327         buf[buflen-1] = '\0';
328     } else {
329 #ifndef NO_IPV6
330         if (getnameinfo(addr->ais->ai_addr, addr->ais->ai_addrlen, buf, buflen,
331                         NULL, 0, NI_NUMERICHOST) != 0) {
332             buf[0] = '\0';
333             strncat(buf, "<unknown>", buflen - 1);
334         }
335 #else
336         struct in_addr a;
337         SockAddrStep step;
338         START_STEP(addr, step);
339         assert(SOCKADDR_FAMILY(addr, step) == AF_INET);
340         a.s_addr = htonl(addr->addresses[0]);
341         strncpy(buf, inet_ntoa(a), buflen);
342         buf[buflen-1] = '\0';
343 #endif
344     }
345 }
346
347 int sk_addr_needs_port(SockAddr addr)
348 {
349     if (addr->superfamily == UNRESOLVED || addr->superfamily == UNIX) {
350         return FALSE;
351     } else {
352         return TRUE;
353     }
354 }
355
356 int sk_hostname_is_local(const char *name)
357 {
358     return !strcmp(name, "localhost") ||
359            !strcmp(name, "::1") ||
360            !strncmp(name, "127.", 4);
361 }
362
363 #define ipv4_is_loopback(addr) \
364     (((addr).s_addr & htonl(0xff000000)) == htonl(0x7f000000))
365
366 static int sockaddr_is_loopback(struct sockaddr *sa)
367 {
368     union sockaddr_union *u = (union sockaddr_union *)sa;
369     switch (u->sa.sa_family) {
370       case AF_INET:
371         return ipv4_is_loopback(u->sin.sin_addr);
372 #ifndef NO_IPV6
373       case AF_INET6:
374         return IN6_IS_ADDR_LOOPBACK(&u->sin6.sin6_addr);
375 #endif
376       case AF_UNIX:
377         return TRUE;
378       default:
379         return FALSE;
380     }
381 }
382
383 int sk_address_is_local(SockAddr addr)
384 {
385     if (addr->superfamily == UNRESOLVED)
386         return 0;                      /* we don't know; assume not */
387     else if (addr->superfamily == UNIX)
388         return 1;
389     else {
390 #ifndef NO_IPV6
391         return sockaddr_is_loopback(addr->ais->ai_addr);
392 #else
393         struct in_addr a;
394         SockAddrStep step;
395         START_STEP(addr, step);
396         assert(SOCKADDR_FAMILY(addr, step) == AF_INET);
397         a.s_addr = htonl(addr->addresses[0]);
398         return ipv4_is_loopback(a);
399 #endif
400     }
401 }
402
403 int sk_address_is_special_local(SockAddr addr)
404 {
405     return addr->superfamily == UNIX;
406 }
407
408 int sk_addrtype(SockAddr addr)
409 {
410     SockAddrStep step;
411     int family;
412     START_STEP(addr, step);
413     family = SOCKADDR_FAMILY(addr, step);
414
415     return (family == AF_INET ? ADDRTYPE_IPV4 :
416 #ifndef NO_IPV6
417             family == AF_INET6 ? ADDRTYPE_IPV6 :
418 #endif
419             ADDRTYPE_NAME);
420 }
421
422 void sk_addrcopy(SockAddr addr, char *buf)
423 {
424     SockAddrStep step;
425     int family;
426     START_STEP(addr, step);
427     family = SOCKADDR_FAMILY(addr, step);
428
429 #ifndef NO_IPV6
430     if (family == AF_INET)
431         memcpy(buf, &((struct sockaddr_in *)step.ai->ai_addr)->sin_addr,
432                sizeof(struct in_addr));
433     else if (family == AF_INET6)
434         memcpy(buf, &((struct sockaddr_in6 *)step.ai->ai_addr)->sin6_addr,
435                sizeof(struct in6_addr));
436     else
437         assert(FALSE);
438 #else
439     struct in_addr a;
440
441     assert(family == AF_INET);
442     a.s_addr = htonl(addr->addresses[step.curraddr]);
443     memcpy(buf, (char*) &a.s_addr, 4);
444 #endif
445 }
446
447 void sk_addr_free(SockAddr addr)
448 {
449     if (--addr->refcount > 0)
450         return;
451 #ifndef NO_IPV6
452     if (addr->ais != NULL)
453         freeaddrinfo(addr->ais);
454 #else
455     sfree(addr->addresses);
456 #endif
457     sfree(addr);
458 }
459
460 SockAddr sk_addr_dup(SockAddr addr)
461 {
462     addr->refcount++;
463     return addr;
464 }
465
466 static Plug sk_tcp_plug(Socket sock, Plug p)
467 {
468     Actual_Socket s = (Actual_Socket) sock;
469     Plug ret = s->plug;
470     if (p)
471         s->plug = p;
472     return ret;
473 }
474
475 static void sk_tcp_flush(Socket s)
476 {
477     /*
478      * We send data to the socket as soon as we can anyway,
479      * so we don't need to do anything here.  :-)
480      */
481 }
482
483 static void sk_tcp_close(Socket s);
484 static int sk_tcp_write(Socket s, const char *data, int len);
485 static int sk_tcp_write_oob(Socket s, const char *data, int len);
486 static void sk_tcp_write_eof(Socket s);
487 static void sk_tcp_set_frozen(Socket s, int is_frozen);
488 static char *sk_tcp_peer_info(Socket s);
489 static const char *sk_tcp_socket_error(Socket s);
490
491 static struct socket_function_table tcp_fn_table = {
492     sk_tcp_plug,
493     sk_tcp_close,
494     sk_tcp_write,
495     sk_tcp_write_oob,
496     sk_tcp_write_eof,
497     sk_tcp_flush,
498     sk_tcp_set_frozen,
499     sk_tcp_socket_error,
500     sk_tcp_peer_info,
501 };
502
503 static Socket sk_tcp_accept(accept_ctx_t ctx, Plug plug)
504 {
505     int sockfd = ctx.i;
506     Actual_Socket ret;
507
508     /*
509      * Create Socket structure.
510      */
511     ret = snew(struct Socket_tag);
512     ret->fn = &tcp_fn_table;
513     ret->error = NULL;
514     ret->plug = plug;
515     bufchain_init(&ret->output_data);
516     ret->writable = 1;                 /* to start with */
517     ret->sending_oob = 0;
518     ret->frozen = 1;
519     ret->localhost_only = 0;           /* unused, but best init anyway */
520     ret->pending_error = 0;
521     ret->oobpending = FALSE;
522     ret->outgoingeof = EOF_NO;
523     ret->incomingeof = FALSE;
524     ret->listener = 0;
525     ret->parent = ret->child = NULL;
526     ret->addr = NULL;
527     ret->connected = 1;
528
529     ret->s = sockfd;
530
531     if (ret->s < 0) {
532         ret->error = strerror(errno);
533         return (Socket) ret;
534     }
535
536     ret->oobinline = 0;
537
538     uxsel_tell(ret);
539     add234(sktree, ret);
540
541     return (Socket) ret;
542 }
543
544 static int try_connect(Actual_Socket sock)
545 {
546     int s;
547     union sockaddr_union u;
548     const union sockaddr_union *sa;
549     int err = 0;
550     short localport;
551     int salen, family;
552
553     /*
554      * Remove the socket from the tree before we overwrite its
555      * internal socket id, because that forms part of the tree's
556      * sorting criterion. We'll add it back before exiting this
557      * function, whether we changed anything or not.
558      */
559     del234(sktree, sock);
560
561     if (sock->s >= 0)
562         close(sock->s);
563
564     plug_log(sock->plug, 0, sock->addr, sock->port, NULL, 0);
565
566     /*
567      * Open socket.
568      */
569     family = SOCKADDR_FAMILY(sock->addr, sock->step);
570     assert(family != AF_UNSPEC);
571     s = socket(family, SOCK_STREAM, 0);
572     sock->s = s;
573
574     if (s < 0) {
575         err = errno;
576         goto ret;
577     }
578
579     cloexec(s);
580
581     if (sock->oobinline) {
582         int b = TRUE;
583         if (setsockopt(s, SOL_SOCKET, SO_OOBINLINE,
584                        (void *) &b, sizeof(b)) < 0) {
585             err = errno;
586             close(s);
587             goto ret;
588         }
589     }
590
591     if (sock->nodelay) {
592         int b = TRUE;
593         if (setsockopt(s, IPPROTO_TCP, TCP_NODELAY,
594                        (void *) &b, sizeof(b)) < 0) {
595             err = errno;
596             close(s);
597             goto ret;
598         }
599     }
600
601     if (sock->keepalive) {
602         int b = TRUE;
603         if (setsockopt(s, SOL_SOCKET, SO_KEEPALIVE,
604                        (void *) &b, sizeof(b)) < 0) {
605             err = errno;
606             close(s);
607             goto ret;
608         }
609     }
610
611     /*
612      * Bind to local address.
613      */
614     if (sock->privport)
615         localport = 1023;              /* count from 1023 downwards */
616     else
617         localport = 0;                 /* just use port 0 (ie kernel picks) */
618
619     /* BSD IP stacks need sockaddr_in zeroed before filling in */
620     memset(&u,'\0',sizeof(u));
621
622     /* We don't try to bind to a local address for UNIX domain sockets.  (Why
623      * do we bother doing the bind when localport == 0 anyway?) */
624     if (family != AF_UNIX) {
625         /* Loop round trying to bind */
626         while (1) {
627             int retcode;
628
629 #ifndef NO_IPV6
630             if (family == AF_INET6) {
631                 /* XXX use getaddrinfo to get a local address? */
632                 u.sin6.sin6_family = AF_INET6;
633                 u.sin6.sin6_addr = in6addr_any;
634                 u.sin6.sin6_port = htons(localport);
635                 retcode = bind(s, &u.sa, sizeof(u.sin6));
636             } else
637 #endif
638             {
639                 assert(family == AF_INET);
640                 u.sin.sin_family = AF_INET;
641                 u.sin.sin_addr.s_addr = htonl(INADDR_ANY);
642                 u.sin.sin_port = htons(localport);
643                 retcode = bind(s, &u.sa, sizeof(u.sin));
644             }
645             if (retcode >= 0) {
646                 err = 0;
647                 break;                 /* done */
648             } else {
649                 err = errno;
650                 if (err != EADDRINUSE) /* failed, for a bad reason */
651                   break;
652             }
653             
654             if (localport == 0)
655               break;                   /* we're only looping once */
656             localport--;
657             if (localport == 0)
658               break;                   /* we might have got to the end */
659         }
660         
661         if (err)
662             goto ret;
663     }
664
665     /*
666      * Connect to remote address.
667      */
668     switch(family) {
669 #ifndef NO_IPV6
670       case AF_INET:
671         /* XXX would be better to have got getaddrinfo() to fill in the port. */
672         ((struct sockaddr_in *)sock->step.ai->ai_addr)->sin_port =
673             htons(sock->port);
674         sa = (const union sockaddr_union *)sock->step.ai->ai_addr;
675         salen = sock->step.ai->ai_addrlen;
676         break;
677       case AF_INET6:
678         ((struct sockaddr_in *)sock->step.ai->ai_addr)->sin_port =
679             htons(sock->port);
680         sa = (const union sockaddr_union *)sock->step.ai->ai_addr;
681         salen = sock->step.ai->ai_addrlen;
682         break;
683 #else
684       case AF_INET:
685         u.sin.sin_family = AF_INET;
686         u.sin.sin_addr.s_addr = htonl(sock->addr->addresses[sock->step.curraddr]);
687         u.sin.sin_port = htons((short) sock->port);
688         sa = &u;
689         salen = sizeof u.sin;
690         break;
691 #endif
692       case AF_UNIX:
693         assert(sock->port == 0);       /* to catch confused people */
694         assert(strlen(sock->addr->hostname) < sizeof u.su.sun_path);
695         u.su.sun_family = AF_UNIX;
696         strcpy(u.su.sun_path, sock->addr->hostname);
697         sa = &u;
698         salen = sizeof u.su;
699         break;
700
701       default:
702         assert(0 && "unknown address family");
703         exit(1); /* XXX: GCC doesn't understand assert() on some systems. */
704     }
705
706     nonblock(s);
707
708     if ((connect(s, &(sa->sa), salen)) < 0) {
709         if ( errno != EINPROGRESS ) {
710             err = errno;
711             goto ret;
712         }
713     } else {
714         /*
715          * If we _don't_ get EWOULDBLOCK, the connect has completed
716          * and we should set the socket as connected and writable.
717          */
718         sock->connected = 1;
719         sock->writable = 1;
720     }
721
722     uxsel_tell(sock);
723
724     ret:
725
726     /*
727      * No matter what happened, put the socket back in the tree.
728      */
729     add234(sktree, sock);
730
731     if (err)
732         plug_log(sock->plug, 1, sock->addr, sock->port, strerror(err), err);
733     return err;
734 }
735
736 Socket sk_new(SockAddr addr, int port, int privport, int oobinline,
737               int nodelay, int keepalive, Plug plug)
738 {
739     Actual_Socket ret;
740     int err;
741
742     /*
743      * Create Socket structure.
744      */
745     ret = snew(struct Socket_tag);
746     ret->fn = &tcp_fn_table;
747     ret->error = NULL;
748     ret->plug = plug;
749     bufchain_init(&ret->output_data);
750     ret->connected = 0;                /* to start with */
751     ret->writable = 0;                 /* to start with */
752     ret->sending_oob = 0;
753     ret->frozen = 0;
754     ret->localhost_only = 0;           /* unused, but best init anyway */
755     ret->pending_error = 0;
756     ret->parent = ret->child = NULL;
757     ret->oobpending = FALSE;
758     ret->outgoingeof = EOF_NO;
759     ret->incomingeof = FALSE;
760     ret->listener = 0;
761     ret->addr = addr;
762     START_STEP(ret->addr, ret->step);
763     ret->s = -1;
764     ret->oobinline = oobinline;
765     ret->nodelay = nodelay;
766     ret->keepalive = keepalive;
767     ret->privport = privport;
768     ret->port = port;
769
770     err = 0;
771     do {
772         err = try_connect(ret);
773     } while (err && sk_nextaddr(ret->addr, &ret->step));
774
775     if (err)
776         ret->error = strerror(err);
777
778     return (Socket) ret;
779 }
780
781 Socket sk_newlistener(const char *srcaddr, int port, Plug plug,
782                       int local_host_only, int orig_address_family)
783 {
784     int s;
785 #ifndef NO_IPV6
786     struct addrinfo hints, *ai = NULL;
787     char portstr[6];
788 #endif
789     union sockaddr_union u;
790     union sockaddr_union *addr;
791     int addrlen;
792     Actual_Socket ret;
793     int retcode;
794     int address_family;
795     int on = 1;
796
797     /*
798      * Create Socket structure.
799      */
800     ret = snew(struct Socket_tag);
801     ret->fn = &tcp_fn_table;
802     ret->error = NULL;
803     ret->plug = plug;
804     bufchain_init(&ret->output_data);
805     ret->writable = 0;                 /* to start with */
806     ret->sending_oob = 0;
807     ret->frozen = 0;
808     ret->localhost_only = local_host_only;
809     ret->pending_error = 0;
810     ret->parent = ret->child = NULL;
811     ret->oobpending = FALSE;
812     ret->outgoingeof = EOF_NO;
813     ret->incomingeof = FALSE;
814     ret->listener = 1;
815     ret->addr = NULL;
816     ret->s = -1;
817
818     /*
819      * Translate address_family from platform-independent constants
820      * into local reality.
821      */
822     address_family = (orig_address_family == ADDRTYPE_IPV4 ? AF_INET :
823 #ifndef NO_IPV6
824                       orig_address_family == ADDRTYPE_IPV6 ? AF_INET6 :
825 #endif
826                       AF_UNSPEC);
827
828 #ifndef NO_IPV6
829     /* Let's default to IPv6.
830      * If the stack doesn't support IPv6, we will fall back to IPv4. */
831     if (address_family == AF_UNSPEC) address_family = AF_INET6;
832 #else
833     /* No other choice, default to IPv4 */
834     if (address_family == AF_UNSPEC)  address_family = AF_INET;
835 #endif
836
837     /*
838      * Open socket.
839      */
840     s = socket(address_family, SOCK_STREAM, 0);
841
842 #ifndef NO_IPV6
843     /* If the host doesn't support IPv6 try fallback to IPv4. */
844     if (s < 0 && address_family == AF_INET6) {
845         address_family = AF_INET;
846         s = socket(address_family, SOCK_STREAM, 0);
847     }
848 #endif
849
850     if (s < 0) {
851         ret->error = strerror(errno);
852         return (Socket) ret;
853     }
854
855     cloexec(s);
856
857     ret->oobinline = 0;
858
859     if (setsockopt(s, SOL_SOCKET, SO_REUSEADDR,
860                    (const char *)&on, sizeof(on)) < 0) {
861         ret->error = strerror(errno);
862         close(s);
863         return (Socket) ret;
864     }
865
866     retcode = -1;
867     addr = NULL; addrlen = -1;         /* placate optimiser */
868
869     if (srcaddr != NULL) {
870 #ifndef NO_IPV6
871         hints.ai_flags = AI_NUMERICHOST;
872         hints.ai_family = address_family;
873         hints.ai_socktype = SOCK_STREAM;
874         hints.ai_protocol = 0;
875         hints.ai_addrlen = 0;
876         hints.ai_addr = NULL;
877         hints.ai_canonname = NULL;
878         hints.ai_next = NULL;
879         assert(port >= 0 && port <= 99999);
880         sprintf(portstr, "%d", port);
881         {
882             char *trimmed_addr = host_strduptrim(srcaddr);
883             retcode = getaddrinfo(trimmed_addr, portstr, &hints, &ai);
884             sfree(trimmed_addr);
885         }
886         if (retcode == 0) {
887             addr = (union sockaddr_union *)ai->ai_addr;
888             addrlen = ai->ai_addrlen;
889         }
890 #else
891         memset(&u,'\0',sizeof u);
892         u.sin.sin_family = AF_INET;
893         u.sin.sin_port = htons(port);
894         u.sin.sin_addr.s_addr = inet_addr(srcaddr);
895         if (u.sin.sin_addr.s_addr != (in_addr_t)(-1)) {
896             /* Override localhost_only with specified listen addr. */
897             ret->localhost_only = ipv4_is_loopback(u.sin.sin_addr);
898         }
899         addr = &u;
900         addrlen = sizeof(u.sin);
901         retcode = 0;
902 #endif
903     }
904
905     if (retcode != 0) {
906         memset(&u,'\0',sizeof u);
907 #ifndef NO_IPV6
908         if (address_family == AF_INET6) {
909             u.sin6.sin6_family = AF_INET6;
910             u.sin6.sin6_port = htons(port);
911             if (local_host_only)
912                 u.sin6.sin6_addr = in6addr_loopback;
913             else
914                 u.sin6.sin6_addr = in6addr_any;
915             addr = &u;
916             addrlen = sizeof(u.sin6);
917         } else
918 #endif
919         {
920             u.sin.sin_family = AF_INET;
921             u.sin.sin_port = htons(port);
922             if (local_host_only)
923                 u.sin.sin_addr.s_addr = htonl(INADDR_LOOPBACK);
924             else
925                 u.sin.sin_addr.s_addr = htonl(INADDR_ANY);
926             addr = &u;
927             addrlen = sizeof(u.sin);
928         }
929     }
930
931     retcode = bind(s, &addr->sa, addrlen);
932
933 #ifndef NO_IPV6
934     if (ai)
935         freeaddrinfo(ai);
936 #endif
937
938     if (retcode < 0) {
939         close(s);
940         ret->error = strerror(errno);
941         return (Socket) ret;
942     }
943
944     if (listen(s, SOMAXCONN) < 0) {
945         close(s);
946         ret->error = strerror(errno);
947         return (Socket) ret;
948     }
949
950 #ifndef NO_IPV6
951     /*
952      * If we were given ADDRTYPE_UNSPEC, we must also create an
953      * IPv4 listening socket and link it to this one.
954      */
955     if (address_family == AF_INET6 && orig_address_family == ADDRTYPE_UNSPEC) {
956         Actual_Socket other;
957
958         other = (Actual_Socket) sk_newlistener(srcaddr, port, plug,
959                                                local_host_only, ADDRTYPE_IPV4);
960
961         if (other) {
962             if (!other->error) {
963                 other->parent = ret;
964                 ret->child = other;
965             } else {
966                 /* If we couldn't create a listening socket on IPv4 as well
967                  * as IPv6, we must return an error overall. */
968                 close(s);
969                 sfree(ret);
970                 return (Socket) other;
971             }
972         }
973     }
974 #endif
975
976     ret->s = s;
977
978     uxsel_tell(ret);
979     add234(sktree, ret);
980
981     return (Socket) ret;
982 }
983
984 static void sk_tcp_close(Socket sock)
985 {
986     Actual_Socket s = (Actual_Socket) sock;
987
988     if (s->child)
989         sk_tcp_close((Socket)s->child);
990
991     uxsel_del(s->s);
992     del234(sktree, s);
993     close(s->s);
994     if (s->addr)
995         sk_addr_free(s->addr);
996     sfree(s);
997 }
998
999 void *sk_getxdmdata(void *sock, int *lenp)
1000 {
1001     Actual_Socket s = (Actual_Socket) sock;
1002     union sockaddr_union u;
1003     socklen_t addrlen;
1004     char *buf;
1005     static unsigned int unix_addr = 0xFFFFFFFF;
1006
1007     /*
1008      * We must check that this socket really _is_ an Actual_Socket.
1009      */
1010     if (s->fn != &tcp_fn_table)
1011         return NULL;                   /* failure */
1012
1013     addrlen = sizeof(u);
1014     if (getsockname(s->s, &u.sa, &addrlen) < 0)
1015         return NULL;
1016     switch(u.sa.sa_family) {
1017       case AF_INET:
1018         *lenp = 6;
1019         buf = snewn(*lenp, char);
1020         PUT_32BIT_MSB_FIRST(buf, ntohl(u.sin.sin_addr.s_addr));
1021         PUT_16BIT_MSB_FIRST(buf+4, ntohs(u.sin.sin_port));
1022         break;
1023 #ifndef NO_IPV6
1024     case AF_INET6:
1025         *lenp = 6;
1026         buf = snewn(*lenp, char);
1027         if (IN6_IS_ADDR_V4MAPPED(&u.sin6.sin6_addr)) {
1028             memcpy(buf, u.sin6.sin6_addr.s6_addr + 12, 4);
1029             PUT_16BIT_MSB_FIRST(buf+4, ntohs(u.sin6.sin6_port));
1030         } else
1031             /* This is stupid, but it's what XLib does. */
1032             memset(buf, 0, 6);
1033         break;
1034 #endif
1035       case AF_UNIX:
1036         *lenp = 6;
1037         buf = snewn(*lenp, char);
1038         PUT_32BIT_MSB_FIRST(buf, unix_addr--);
1039         PUT_16BIT_MSB_FIRST(buf+4, getpid());
1040         break;
1041
1042         /* XXX IPV6 */
1043
1044       default:
1045         return NULL;
1046     }
1047
1048     return buf;
1049 }
1050
1051 /*
1052  * Deal with socket errors detected in try_send().
1053  */
1054 static void socket_error_callback(void *vs)
1055 {
1056     Actual_Socket s = (Actual_Socket)vs;
1057
1058     /*
1059      * Just in case other socket work has caused this socket to vanish
1060      * or become somehow non-erroneous before this callback arrived...
1061      */
1062     if (!find234(sktree, s, NULL) || !s->pending_error)
1063         return;
1064
1065     /*
1066      * An error has occurred on this socket. Pass it to the plug.
1067      */
1068     plug_closing(s->plug, strerror(s->pending_error), s->pending_error, 0);
1069 }
1070
1071 /*
1072  * The function which tries to send on a socket once it's deemed
1073  * writable.
1074  */
1075 void try_send(Actual_Socket s)
1076 {
1077     while (s->sending_oob || bufchain_size(&s->output_data) > 0) {
1078         int nsent;
1079         int err;
1080         void *data;
1081         int len, urgentflag;
1082
1083         if (s->sending_oob) {
1084             urgentflag = MSG_OOB;
1085             len = s->sending_oob;
1086             data = &s->oobdata;
1087         } else {
1088             urgentflag = 0;
1089             bufchain_prefix(&s->output_data, &data, &len);
1090         }
1091         nsent = send(s->s, data, len, urgentflag);
1092         noise_ultralight(nsent);
1093         if (nsent <= 0) {
1094             err = (nsent < 0 ? errno : 0);
1095             if (err == EWOULDBLOCK) {
1096                 /*
1097                  * Perfectly normal: we've sent all we can for the moment.
1098                  */
1099                 s->writable = FALSE;
1100                 return;
1101             } else {
1102                 /*
1103                  * We unfortunately can't just call plug_closing(),
1104                  * because it's quite likely that we're currently
1105                  * _in_ a call from the code we'd be calling back
1106                  * to, so we'd have to make half the SSH code
1107                  * reentrant. Instead we flag a pending error on
1108                  * the socket, to be dealt with (by calling
1109                  * plug_closing()) at some suitable future moment.
1110                  */
1111                 s->pending_error = err;
1112                 /*
1113                  * Immediately cease selecting on this socket, so that
1114                  * we don't tight-loop repeatedly trying to do
1115                  * whatever it was that went wrong.
1116                  */
1117                 uxsel_tell(s);
1118                 /*
1119                  * Arrange to be called back from the top level to
1120                  * deal with the error condition on this socket.
1121                  */
1122                 queue_toplevel_callback(socket_error_callback, s);
1123                 return;
1124             }
1125         } else {
1126             if (s->sending_oob) {
1127                 if (nsent < len) {
1128                     memmove(s->oobdata, s->oobdata+nsent, len-nsent);
1129                     s->sending_oob = len - nsent;
1130                 } else {
1131                     s->sending_oob = 0;
1132                 }
1133             } else {
1134                 bufchain_consume(&s->output_data, nsent);
1135             }
1136         }
1137     }
1138
1139     /*
1140      * If we reach here, we've finished sending everything we might
1141      * have needed to send. Send EOF, if we need to.
1142      */
1143     if (s->outgoingeof == EOF_PENDING) {
1144         shutdown(s->s, SHUT_WR);
1145         s->outgoingeof = EOF_SENT;
1146     }
1147
1148     /*
1149      * Also update the select status, because we don't need to select
1150      * for writing any more.
1151      */
1152     uxsel_tell(s);
1153 }
1154
1155 static int sk_tcp_write(Socket sock, const char *buf, int len)
1156 {
1157     Actual_Socket s = (Actual_Socket) sock;
1158
1159     assert(s->outgoingeof == EOF_NO);
1160
1161     /*
1162      * Add the data to the buffer list on the socket.
1163      */
1164     bufchain_add(&s->output_data, buf, len);
1165
1166     /*
1167      * Now try sending from the start of the buffer list.
1168      */
1169     if (s->writable)
1170         try_send(s);
1171
1172     /*
1173      * Update the select() status to correctly reflect whether or
1174      * not we should be selecting for write.
1175      */
1176     uxsel_tell(s);
1177
1178     return bufchain_size(&s->output_data);
1179 }
1180
1181 static int sk_tcp_write_oob(Socket sock, const char *buf, int len)
1182 {
1183     Actual_Socket s = (Actual_Socket) sock;
1184
1185     assert(s->outgoingeof == EOF_NO);
1186
1187     /*
1188      * Replace the buffer list on the socket with the data.
1189      */
1190     bufchain_clear(&s->output_data);
1191     assert(len <= sizeof(s->oobdata));
1192     memcpy(s->oobdata, buf, len);
1193     s->sending_oob = len;
1194
1195     /*
1196      * Now try sending from the start of the buffer list.
1197      */
1198     if (s->writable)
1199         try_send(s);
1200
1201     /*
1202      * Update the select() status to correctly reflect whether or
1203      * not we should be selecting for write.
1204      */
1205     uxsel_tell(s);
1206
1207     return s->sending_oob;
1208 }
1209
1210 static void sk_tcp_write_eof(Socket sock)
1211 {
1212     Actual_Socket s = (Actual_Socket) sock;
1213
1214     assert(s->outgoingeof == EOF_NO);
1215
1216     /*
1217      * Mark the socket as pending outgoing EOF.
1218      */
1219     s->outgoingeof = EOF_PENDING;
1220
1221     /*
1222      * Now try sending from the start of the buffer list.
1223      */
1224     if (s->writable)
1225         try_send(s);
1226
1227     /*
1228      * Update the select() status to correctly reflect whether or
1229      * not we should be selecting for write.
1230      */
1231     uxsel_tell(s);
1232 }
1233
1234 static int net_select_result(int fd, int event)
1235 {
1236     int ret;
1237     char buf[20480];                   /* nice big buffer for plenty of speed */
1238     Actual_Socket s;
1239     u_long atmark;
1240
1241     /* Find the Socket structure */
1242     s = find234(sktree, &fd, cmpforsearch);
1243     if (!s)
1244         return 1;                      /* boggle */
1245
1246     noise_ultralight(event);
1247
1248     switch (event) {
1249       case 4:                          /* exceptional */
1250         if (!s->oobinline) {
1251             /*
1252              * On a non-oobinline socket, this indicates that we
1253              * can immediately perform an OOB read and get back OOB
1254              * data, which we will send to the back end with
1255              * type==2 (urgent data).
1256              */
1257             ret = recv(s->s, buf, sizeof(buf), MSG_OOB);
1258             noise_ultralight(ret);
1259             if (ret <= 0) {
1260                 return plug_closing(s->plug,
1261                                     ret == 0 ? "Internal networking trouble" :
1262                                     strerror(errno), errno, 0);
1263             } else {
1264                 /*
1265                  * Receiving actual data on a socket means we can
1266                  * stop falling back through the candidate
1267                  * addresses to connect to.
1268                  */
1269                 if (s->addr) {
1270                     sk_addr_free(s->addr);
1271                     s->addr = NULL;
1272                 }
1273                 return plug_receive(s->plug, 2, buf, ret);
1274             }
1275             break;
1276         }
1277
1278         /*
1279          * If we reach here, this is an oobinline socket, which
1280          * means we should set s->oobpending and then deal with it
1281          * when we get called for the readability event (which
1282          * should also occur).
1283          */
1284         s->oobpending = TRUE;
1285         break;
1286       case 1:                          /* readable; also acceptance */
1287         if (s->listener) {
1288             /*
1289              * On a listening socket, the readability event means a
1290              * connection is ready to be accepted.
1291              */
1292             union sockaddr_union su;
1293             socklen_t addrlen = sizeof(su);
1294             accept_ctx_t actx;
1295             int t;  /* socket of connection */
1296
1297             memset(&su, 0, addrlen);
1298             t = accept(s->s, &su.sa, &addrlen);
1299             if (t < 0) {
1300                 break;
1301             }
1302
1303             nonblock(t);
1304             actx.i = t;
1305
1306             if ((!s->addr || s->addr->superfamily != UNIX) &&
1307                 s->localhost_only && !sockaddr_is_loopback(&su.sa)) {
1308                 close(t);              /* someone let nonlocal through?! */
1309             } else if (plug_accepting(s->plug, sk_tcp_accept, actx)) {
1310                 close(t);              /* denied or error */
1311             }
1312             break;
1313         }
1314
1315         /*
1316          * If we reach here, this is not a listening socket, so
1317          * readability really means readability.
1318          */
1319
1320         /* In the case the socket is still frozen, we don't even bother */
1321         if (s->frozen)
1322             break;
1323
1324         /*
1325          * We have received data on the socket. For an oobinline
1326          * socket, this might be data _before_ an urgent pointer,
1327          * in which case we send it to the back end with type==1
1328          * (data prior to urgent).
1329          */
1330         if (s->oobinline && s->oobpending) {
1331             atmark = 1;
1332             if (ioctl(s->s, SIOCATMARK, &atmark) == 0 && atmark)
1333                 s->oobpending = FALSE; /* clear this indicator */
1334         } else
1335             atmark = 1;
1336
1337         ret = recv(s->s, buf, s->oobpending ? 1 : sizeof(buf), 0);
1338         noise_ultralight(ret);
1339         if (ret < 0) {
1340             if (errno == EWOULDBLOCK) {
1341                 break;
1342             }
1343         }
1344         if (ret < 0) {
1345             return plug_closing(s->plug, strerror(errno), errno, 0);
1346         } else if (0 == ret) {
1347             s->incomingeof = TRUE;     /* stop trying to read now */
1348             uxsel_tell(s);
1349             return plug_closing(s->plug, NULL, 0, 0);
1350         } else {
1351             /*
1352              * Receiving actual data on a socket means we can
1353              * stop falling back through the candidate
1354              * addresses to connect to.
1355              */
1356             if (s->addr) {
1357                 sk_addr_free(s->addr);
1358                 s->addr = NULL;
1359             }
1360             return plug_receive(s->plug, atmark ? 0 : 1, buf, ret);
1361         }
1362         break;
1363       case 2:                          /* writable */
1364         if (!s->connected) {
1365             /*
1366              * select() reports a socket as _writable_ when an
1367              * asynchronous connect() attempt either completes or
1368              * fails. So first we must find out which.
1369              */
1370             {
1371                 int err;
1372                 socklen_t errlen = sizeof(err);
1373                 char *errmsg = NULL;
1374                 if (getsockopt(s->s, SOL_SOCKET, SO_ERROR, &err, &errlen)<0) {
1375                     errmsg = dupprintf("getsockopt(SO_ERROR): %s",
1376                                        strerror(errno));
1377                     err = errno;       /* got to put something in here */
1378                 } else if (err != 0) {
1379                     errmsg = dupstr(strerror(err));
1380                 }
1381                 if (errmsg) {
1382                     /*
1383                      * The asynchronous connection attempt failed.
1384                      * Report the problem via plug_log, and try again
1385                      * with the next candidate address, if we have
1386                      * more than one.
1387                      */
1388                     assert(s->addr);
1389                     plug_log(s->plug, 1, s->addr, s->port, errmsg, err);
1390                     while (err && s->addr && sk_nextaddr(s->addr, &s->step)) {
1391                         err = try_connect(s);
1392                     }
1393                     if (err)
1394                         return plug_closing(s->plug, strerror(err), err, 0);
1395                     if (!s->connected)
1396                         return 0;      /* another async attempt in progress */
1397                 }
1398             }
1399
1400             /*
1401              * If we get here, we've managed to make a connection.
1402              */
1403             if (s->addr) {
1404                 sk_addr_free(s->addr);
1405                 s->addr = NULL;
1406             }
1407             s->connected = s->writable = 1;
1408             uxsel_tell(s);
1409         } else {
1410             int bufsize_before, bufsize_after;
1411             s->writable = 1;
1412             bufsize_before = s->sending_oob + bufchain_size(&s->output_data);
1413             try_send(s);
1414             bufsize_after = s->sending_oob + bufchain_size(&s->output_data);
1415             if (bufsize_after < bufsize_before)
1416                 plug_sent(s->plug, bufsize_after);
1417         }
1418         break;
1419     }
1420
1421     return 1;
1422 }
1423
1424 /*
1425  * Special error values are returned from sk_namelookup and sk_new
1426  * if there's a problem. These functions extract an error message,
1427  * or return NULL if there's no problem.
1428  */
1429 const char *sk_addr_error(SockAddr addr)
1430 {
1431     return addr->error;
1432 }
1433 static const char *sk_tcp_socket_error(Socket sock)
1434 {
1435     Actual_Socket s = (Actual_Socket) sock;
1436     return s->error;
1437 }
1438
1439 static void sk_tcp_set_frozen(Socket sock, int is_frozen)
1440 {
1441     Actual_Socket s = (Actual_Socket) sock;
1442     if (s->frozen == is_frozen)
1443         return;
1444     s->frozen = is_frozen;
1445     uxsel_tell(s);
1446 }
1447
1448 static char *sk_tcp_peer_info(Socket sock)
1449 {
1450     Actual_Socket s = (Actual_Socket) sock;
1451     union sockaddr_union addr;
1452     socklen_t addrlen = sizeof(addr);
1453 #ifndef NO_IPV6
1454     char buf[INET6_ADDRSTRLEN];
1455 #endif
1456
1457     if (getpeername(s->s, &addr.sa, &addrlen) < 0)
1458         return NULL;
1459     if (addr.storage.ss_family == AF_INET) {
1460         return dupprintf
1461             ("%s:%d",
1462              inet_ntoa(addr.sin.sin_addr),
1463              (int)ntohs(addr.sin.sin_port));
1464 #ifndef NO_IPV6
1465     } else if (addr.storage.ss_family == AF_INET6) {
1466         return dupprintf
1467             ("[%s]:%d",
1468              inet_ntop(AF_INET6, &addr.sin6.sin6_addr, buf, sizeof(buf)),
1469              (int)ntohs(addr.sin6.sin6_port));
1470 #endif
1471     } else if (addr.storage.ss_family == AF_UNIX) {
1472         /*
1473          * For Unix sockets, the source address is unlikely to be
1474          * helpful. Instead, we try SO_PEERCRED and try to get the
1475          * source pid.
1476          */
1477         int pid, uid, gid;
1478         if (so_peercred(s->s, &pid, &uid, &gid)) {
1479             char uidbuf[64], gidbuf[64];
1480             sprintf(uidbuf, "%d", uid);
1481             sprintf(gidbuf, "%d", gid);
1482             struct passwd *pw = getpwuid(uid);
1483             struct group *gr = getgrgid(gid);
1484             return dupprintf("pid %d (%s:%s)", pid,
1485                              pw ? pw->pw_name : uidbuf,
1486                              gr ? gr->gr_name : gidbuf);
1487         }
1488         return NULL;
1489     } else {
1490         return NULL;
1491     }
1492 }
1493
1494 static void uxsel_tell(Actual_Socket s)
1495 {
1496     int rwx = 0;
1497     if (!s->pending_error) {
1498         if (s->listener) {
1499             rwx |= 1;                  /* read == accept */
1500         } else {
1501             if (!s->connected)
1502                 rwx |= 2;              /* write == connect */
1503             if (s->connected && !s->frozen && !s->incomingeof)
1504                 rwx |= 1 | 4;          /* read, except */
1505             if (bufchain_size(&s->output_data))
1506                 rwx |= 2;              /* write */
1507         }
1508     }
1509     uxsel_set(s->s, rwx, net_select_result);
1510 }
1511
1512 int net_service_lookup(char *service)
1513 {
1514     struct servent *se;
1515     se = getservbyname(service, NULL);
1516     if (se != NULL)
1517         return ntohs(se->s_port);
1518     else
1519         return 0;
1520 }
1521
1522 char *get_hostname(void)
1523 {
1524     int len = 128;
1525     char *hostname = NULL;
1526     do {
1527         len *= 2;
1528         hostname = sresize(hostname, len, char);
1529         if ((gethostname(hostname, len) < 0) &&
1530             (errno != ENAMETOOLONG)) {
1531             sfree(hostname);
1532             hostname = NULL;
1533             break;
1534         }
1535     } while (strlen(hostname) >= len-1);
1536     return hostname;
1537 }
1538
1539 SockAddr platform_get_x11_unix_address(const char *sockpath, int displaynum)
1540 {
1541     SockAddr ret = snew(struct SockAddr_tag);
1542     int n;
1543
1544     memset(ret, 0, sizeof *ret);
1545     ret->superfamily = UNIX;
1546     /*
1547      * In special circumstances (notably Mac OS X Leopard), we'll
1548      * have been passed an explicit Unix socket path.
1549      */
1550     if (sockpath) {
1551         n = snprintf(ret->hostname, sizeof ret->hostname,
1552                      "%s", sockpath);
1553     } else {
1554         n = snprintf(ret->hostname, sizeof ret->hostname,
1555                      "%s%d", X11_UNIX_PATH, displaynum);
1556     }
1557
1558     if (n < 0)
1559         ret->error = "snprintf failed";
1560     else if (n >= sizeof ret->hostname)
1561         ret->error = "X11 UNIX name too long";
1562
1563 #ifndef NO_IPV6
1564     ret->ais = NULL;
1565 #else
1566     ret->addresses = NULL;
1567     ret->naddresses = 0;
1568 #endif
1569     ret->refcount = 1;
1570     return ret;
1571 }
1572
1573 SockAddr unix_sock_addr(const char *path)
1574 {
1575     SockAddr ret = snew(struct SockAddr_tag);
1576     int n;
1577
1578     memset(ret, 0, sizeof *ret);
1579     ret->superfamily = UNIX;
1580     n = snprintf(ret->hostname, sizeof ret->hostname, "%s", path);
1581
1582     if (n < 0)
1583         ret->error = "snprintf failed";
1584     else if (n >= sizeof ret->hostname)
1585         ret->error = "socket pathname too long";
1586
1587 #ifndef NO_IPV6
1588     ret->ais = NULL;
1589 #else
1590     ret->addresses = NULL;
1591     ret->naddresses = 0;
1592 #endif
1593     ret->refcount = 1;
1594     return ret;
1595 }
1596
1597 Socket new_unix_listener(SockAddr listenaddr, Plug plug)
1598 {
1599     int s;
1600     union sockaddr_union u;
1601     union sockaddr_union *addr;
1602     int addrlen;
1603     Actual_Socket ret;
1604     int retcode;
1605
1606     /*
1607      * Create Socket structure.
1608      */
1609     ret = snew(struct Socket_tag);
1610     ret->fn = &tcp_fn_table;
1611     ret->error = NULL;
1612     ret->plug = plug;
1613     bufchain_init(&ret->output_data);
1614     ret->writable = 0;                 /* to start with */
1615     ret->sending_oob = 0;
1616     ret->frozen = 0;
1617     ret->localhost_only = TRUE;
1618     ret->pending_error = 0;
1619     ret->parent = ret->child = NULL;
1620     ret->oobpending = FALSE;
1621     ret->outgoingeof = EOF_NO;
1622     ret->incomingeof = FALSE;
1623     ret->listener = 1;
1624     ret->addr = listenaddr;
1625     ret->s = -1;
1626
1627     assert(listenaddr->superfamily == UNIX);
1628
1629     /*
1630      * Open socket.
1631      */
1632     s = socket(AF_UNIX, SOCK_STREAM, 0);
1633     if (s < 0) {
1634         ret->error = strerror(errno);
1635         return (Socket) ret;
1636     }
1637
1638     cloexec(s);
1639
1640     ret->oobinline = 0;
1641
1642     memset(&u, '\0', sizeof(u));
1643     u.su.sun_family = AF_UNIX;
1644     strncpy(u.su.sun_path, listenaddr->hostname, sizeof(u.su.sun_path)-1);
1645     addr = &u;
1646     addrlen = sizeof(u.su);
1647
1648     if (unlink(u.su.sun_path) < 0 && errno != ENOENT) {
1649         close(s);
1650         ret->error = strerror(errno);
1651         return (Socket) ret;
1652     }
1653
1654     retcode = bind(s, &addr->sa, addrlen);
1655     if (retcode < 0) {
1656         close(s);
1657         ret->error = strerror(errno);
1658         return (Socket) ret;
1659     }
1660
1661     if (listen(s, SOMAXCONN) < 0) {
1662         close(s);
1663         ret->error = strerror(errno);
1664         return (Socket) ret;
1665     }
1666
1667     ret->s = s;
1668
1669     uxsel_tell(ret);
1670     add234(sktree, ret);
1671
1672     return (Socket) ret;
1673 }