Martin gave his approval to use GPLv3 with this code.
[rsync/rsync.git] / socket.c
... / ...
CommitLineData
1/*
2 * Socket functions used in rsync.
3 *
4 * Copyright (C) 1992-2001 Andrew Tridgell <tridge@samba.org>
5 * Copyright (C) 2001, 2002 Martin Pool <mbp@samba.org>
6 * Copyright (C) 2003-2007 Wayne Davison
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 3 as
10 * published by the Free Software Foundation.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, visit the http://fsf.org website.
19 */
20
21/* This file is now converted to use the new-style getaddrinfo()
22 * interface, which supports IPv6 but is also supported on recent
23 * IPv4-only machines. On systems that don't have that interface, we
24 * emulate it using the KAME implementation. */
25
26#include "rsync.h"
27#include <netinet/in_systm.h>
28#include <netinet/ip.h>
29#include <netinet/tcp.h>
30
31extern char *bind_address;
32extern int default_af_hint;
33
34#ifdef HAVE_SIGACTION
35static struct sigaction sigact;
36#endif
37
38/**
39 * Establish a proxy connection on an open socket to a web proxy by
40 * using the CONNECT method. If proxy_user and proxy_pass are not NULL,
41 * they are used to authenticate to the proxy using the "Basic"
42 * proxy-authorization protocol
43 **/
44static int establish_proxy_connection(int fd, char *host, int port,
45 char *proxy_user, char *proxy_pass)
46{
47 char *cp, buffer[1024];
48 char *authhdr, authbuf[1024];
49 int len;
50
51 if (proxy_user && proxy_pass) {
52 stringjoin(buffer, sizeof buffer,
53 proxy_user, ":", proxy_pass, NULL);
54 len = strlen(buffer);
55
56 if ((len*8 + 5) / 6 >= (int)sizeof authbuf - 3) {
57 rprintf(FERROR,
58 "authentication information is too long\n");
59 return -1;
60 }
61
62 base64_encode(buffer, len, authbuf, 1);
63 authhdr = "\r\nProxy-Authorization: Basic ";
64 } else {
65 *authbuf = '\0';
66 authhdr = "";
67 }
68
69 snprintf(buffer, sizeof buffer, "CONNECT %s:%d HTTP/1.0%s%s\r\n\r\n",
70 host, port, authhdr, authbuf);
71 len = strlen(buffer);
72 if (write(fd, buffer, len) != len) {
73 rsyserr(FERROR, errno, "failed to write to proxy");
74 return -1;
75 }
76
77 for (cp = buffer; cp < &buffer[sizeof buffer - 1]; cp++) {
78 if (read(fd, cp, 1) != 1) {
79 rsyserr(FERROR, errno, "failed to read from proxy");
80 return -1;
81 }
82 if (*cp == '\n')
83 break;
84 }
85
86 if (*cp != '\n')
87 cp++;
88 *cp-- = '\0';
89 if (*cp == '\r')
90 *cp = '\0';
91 if (strncmp(buffer, "HTTP/", 5) != 0) {
92 rprintf(FERROR, "bad response from proxy -- %s\n",
93 buffer);
94 return -1;
95 }
96 for (cp = &buffer[5]; isDigit(cp) || *cp == '.'; cp++) {}
97 while (*cp == ' ')
98 cp++;
99 if (*cp != '2') {
100 rprintf(FERROR, "bad response from proxy -- %s\n",
101 buffer);
102 return -1;
103 }
104 /* throw away the rest of the HTTP header */
105 while (1) {
106 for (cp = buffer; cp < &buffer[sizeof buffer - 1]; cp++) {
107 if (read(fd, cp, 1) != 1) {
108 rsyserr(FERROR, errno,
109 "failed to read from proxy");
110 return -1;
111 }
112 if (*cp == '\n')
113 break;
114 }
115 if (cp > buffer && *cp == '\n')
116 cp--;
117 if (cp == buffer && (*cp == '\n' || *cp == '\r'))
118 break;
119 }
120 return 0;
121}
122
123
124/**
125 * Try to set the local address for a newly-created socket. Return -1
126 * if this fails.
127 **/
128int try_bind_local(int s, int ai_family, int ai_socktype,
129 const char *bind_addr)
130{
131 int error;
132 struct addrinfo bhints, *bres_all, *r;
133
134 memset(&bhints, 0, sizeof bhints);
135 bhints.ai_family = ai_family;
136 bhints.ai_socktype = ai_socktype;
137 bhints.ai_flags = AI_PASSIVE;
138 if ((error = getaddrinfo(bind_addr, NULL, &bhints, &bres_all))) {
139 rprintf(FERROR, RSYNC_NAME ": getaddrinfo %s: %s\n",
140 bind_addr, gai_strerror(error));
141 return -1;
142 }
143
144 for (r = bres_all; r; r = r->ai_next) {
145 if (bind(s, r->ai_addr, r->ai_addrlen) == -1)
146 continue;
147 freeaddrinfo(bres_all);
148 return s;
149 }
150
151 /* no error message; there might be some problem that allows
152 * creation of the socket but not binding, perhaps if the
153 * machine has no ipv6 address of this name. */
154 freeaddrinfo(bres_all);
155 return -1;
156}
157
158
159/**
160 * Open a socket to a tcp remote host with the specified port .
161 *
162 * Based on code from Warren. Proxy support by Stephen Rothwell.
163 * getaddrinfo() rewrite contributed by KAME.net.
164 *
165 * Now that we support IPv6 we need to look up the remote machine's
166 * address first, using @p af_hint to set a preference for the type
167 * of address. Then depending on whether it has v4 or v6 addresses we
168 * try to open a connection.
169 *
170 * The loop allows for machines with some addresses which may not be
171 * reachable, perhaps because we can't e.g. route ipv6 to that network
172 * but we can get ip4 packets through.
173 *
174 * @param bind_addr Local address to use. Normally NULL to bind
175 * the wildcard address.
176 *
177 * @param af_hint Address family, e.g. AF_INET or AF_INET6.
178 **/
179int open_socket_out(char *host, int port, const char *bind_addr,
180 int af_hint)
181{
182 int type = SOCK_STREAM;
183 int error, s;
184 struct addrinfo hints, *res0, *res;
185 char portbuf[10];
186 char *h, *cp;
187 int proxied = 0;
188 char buffer[1024];
189 char *proxy_user = NULL, *proxy_pass = NULL;
190
191 /* if we have a RSYNC_PROXY env variable then redirect our
192 * connetcion via a web proxy at the given address. */
193 h = getenv("RSYNC_PROXY");
194 proxied = h != NULL && *h != '\0';
195
196 if (proxied) {
197 strlcpy(buffer, h, sizeof buffer);
198
199 /* Is the USER:PASS@ prefix present? */
200 if ((cp = strrchr(buffer, '@')) != NULL) {
201 *cp++ = '\0';
202 /* The remainder is the HOST:PORT part. */
203 h = cp;
204
205 if ((cp = strchr(buffer, ':')) == NULL) {
206 rprintf(FERROR,
207 "invalid proxy specification: should be USER:PASS@HOST:PORT\n");
208 return -1;
209 }
210 *cp++ = '\0';
211
212 proxy_user = buffer;
213 proxy_pass = cp;
214 } else {
215 /* The whole buffer is the HOST:PORT part. */
216 h = buffer;
217 }
218
219 if ((cp = strchr(h, ':')) == NULL) {
220 rprintf(FERROR,
221 "invalid proxy specification: should be HOST:PORT\n");
222 return -1;
223 }
224 *cp++ = '\0';
225 strlcpy(portbuf, cp, sizeof portbuf);
226 if (verbose >= 2) {
227 rprintf(FINFO, "connection via http proxy %s port %s\n",
228 h, portbuf);
229 }
230 } else {
231 snprintf(portbuf, sizeof portbuf, "%d", port);
232 h = host;
233 }
234
235 memset(&hints, 0, sizeof hints);
236 hints.ai_family = af_hint;
237 hints.ai_socktype = type;
238 error = getaddrinfo(h, portbuf, &hints, &res0);
239 if (error) {
240 rprintf(FERROR, RSYNC_NAME ": getaddrinfo: %s %s: %s\n",
241 h, portbuf, gai_strerror(error));
242 return -1;
243 }
244
245 s = -1;
246 /* Try to connect to all addresses for this machine until we get
247 * through. It might e.g. be multi-homed, or have both IPv4 and IPv6
248 * addresses. We need to create a socket for each record, since the
249 * address record tells us what protocol to use to try to connect. */
250 for (res = res0; res; res = res->ai_next) {
251 s = socket(res->ai_family, res->ai_socktype, res->ai_protocol);
252 if (s < 0)
253 continue;
254
255 if (bind_addr
256 && try_bind_local(s, res->ai_family, type,
257 bind_addr) == -1) {
258 close(s);
259 s = -1;
260 continue;
261 }
262 if (connect(s, res->ai_addr, res->ai_addrlen) < 0) {
263 close(s);
264 s = -1;
265 continue;
266 }
267 if (proxied
268 && establish_proxy_connection(s, host, port,
269 proxy_user, proxy_pass) != 0) {
270 close(s);
271 s = -1;
272 continue;
273 }
274 break;
275 }
276 freeaddrinfo(res0);
277 if (s < 0) {
278 rsyserr(FERROR, errno, "failed to connect to %s", h);
279 return -1;
280 }
281 return s;
282}
283
284
285/**
286 * Open an outgoing socket, but allow for it to be intercepted by
287 * $RSYNC_CONNECT_PROG, which will execute a program across a TCP
288 * socketpair rather than really opening a socket.
289 *
290 * We use this primarily in testing to detect TCP flow bugs, but not
291 * cause security problems by really opening remote connections.
292 *
293 * This is based on the Samba LIBSMB_PROG feature.
294 *
295 * @param bind_addr Local address to use. Normally NULL to get the stack default.
296 **/
297int open_socket_out_wrapped(char *host, int port, const char *bind_addr,
298 int af_hint)
299{
300 char *prog = getenv("RSYNC_CONNECT_PROG");
301
302 if (verbose >= 2) {
303 rprintf(FINFO, "%sopening tcp connection to %s port %d\n",
304 prog ? "Using RSYNC_CONNECT_PROG instead of " : "",
305 host, port);
306 }
307 if (prog)
308 return sock_exec(prog);
309 return open_socket_out(host, port, bind_addr, af_hint);
310}
311
312
313
314/**
315 * Open one or more sockets for incoming data using the specified type,
316 * port, and address.
317 *
318 * The getaddrinfo() call may return several address results, e.g. for
319 * the machine's IPv4 and IPv6 name.
320 *
321 * We return an array of file-descriptors to the sockets, with a trailing
322 * -1 value to indicate the end of the list.
323 *
324 * @param bind_addr Local address to bind, or NULL to allow it to
325 * default.
326 **/
327static int *open_socket_in(int type, int port, const char *bind_addr,
328 int af_hint)
329{
330 int one = 1;
331 int s, *socks, maxs, i, ecnt;
332 struct addrinfo hints, *all_ai, *resp;
333 char portbuf[10], **errmsgs;
334 int error;
335
336 memset(&hints, 0, sizeof hints);
337 hints.ai_family = af_hint;
338 hints.ai_socktype = type;
339 hints.ai_flags = AI_PASSIVE;
340 snprintf(portbuf, sizeof portbuf, "%d", port);
341 error = getaddrinfo(bind_addr, portbuf, &hints, &all_ai);
342 if (error) {
343 rprintf(FERROR, RSYNC_NAME ": getaddrinfo: bind address %s: %s\n",
344 bind_addr, gai_strerror(error));
345 return NULL;
346 }
347
348 /* Count max number of sockets we might open. */
349 for (maxs = 0, resp = all_ai; resp; resp = resp->ai_next, maxs++) {}
350
351 socks = new_array(int, maxs + 1);
352 errmsgs = new_array(char *, maxs);
353 if (!socks || !errmsgs)
354 out_of_memory("open_socket_in");
355
356 /* We may not be able to create the socket, if for example the
357 * machine knows about IPv6 in the C library, but not in the
358 * kernel. */
359 for (resp = all_ai, i = ecnt = 0; resp; resp = resp->ai_next) {
360 s = socket(resp->ai_family, resp->ai_socktype,
361 resp->ai_protocol);
362
363 if (s == -1) {
364 int r = asprintf(&errmsgs[ecnt++],
365 "socket(%d,%d,%d) failed: %s\n",
366 (int)resp->ai_family, (int)resp->ai_socktype,
367 (int)resp->ai_protocol, strerror(errno));
368 if (r < 0)
369 out_of_memory("open_socket_in");
370 /* See if there's another address that will work... */
371 continue;
372 }
373
374 setsockopt(s, SOL_SOCKET, SO_REUSEADDR,
375 (char *)&one, sizeof one);
376
377#ifdef IPV6_V6ONLY
378 if (resp->ai_family == AF_INET6) {
379 if (setsockopt(s, IPPROTO_IPV6, IPV6_V6ONLY,
380 (char *)&one, sizeof one) < 0
381 && default_af_hint != AF_INET6) {
382 close(s);
383 continue;
384 }
385 }
386#endif
387
388 /* Now we've got a socket - we need to bind it. */
389 if (bind(s, resp->ai_addr, resp->ai_addrlen) < 0) {
390 /* Nope, try another */
391 int r = asprintf(&errmsgs[ecnt++],
392 "bind() failed: %s (address-family %d)\n",
393 strerror(errno), (int)resp->ai_family);
394 if (r < 0)
395 out_of_memory("open_socket_in");
396 close(s);
397 continue;
398 }
399
400 socks[i++] = s;
401 }
402 socks[i] = -1;
403
404 if (all_ai)
405 freeaddrinfo(all_ai);
406
407 /* Only output the socket()/bind() messages if we were totally
408 * unsuccessful, or if the daemon is being run with -vv. */
409 for (s = 0; s < ecnt; s++) {
410 if (!i || verbose > 1)
411 rwrite(FLOG, errmsgs[s], strlen(errmsgs[s]), 0);
412 free(errmsgs[s]);
413 }
414 free(errmsgs);
415
416 if (!i) {
417 rprintf(FERROR,
418 "unable to bind any inbound sockets on port %d\n",
419 port);
420 free(socks);
421 return NULL;
422 }
423 return socks;
424}
425
426
427/*
428 * Determine if a file descriptor is in fact a socket
429 */
430int is_a_socket(int fd)
431{
432 int v;
433 socklen_t l = sizeof (int);
434
435 /* Parameters to getsockopt, setsockopt etc are very
436 * unstandardized across platforms, so don't be surprised if
437 * there are compiler warnings on e.g. SCO OpenSwerver or AIX.
438 * It seems they all eventually get the right idea.
439 *
440 * Debian says: ``The fifth argument of getsockopt and
441 * setsockopt is in reality an int [*] (and this is what BSD
442 * 4.* and libc4 and libc5 have). Some POSIX confusion
443 * resulted in the present socklen_t. The draft standard has
444 * not been adopted yet, but glibc2 already follows it and
445 * also has socklen_t [*]. See also accept(2).''
446 *
447 * We now return to your regularly scheduled programming. */
448 return getsockopt(fd, SOL_SOCKET, SO_TYPE, (char *)&v, &l) == 0;
449}
450
451
452static RETSIGTYPE sigchld_handler(UNUSED(int val))
453{
454#ifdef WNOHANG
455 while (waitpid(-1, NULL, WNOHANG) > 0) {}
456#endif
457#ifndef HAVE_SIGACTION
458 signal(SIGCHLD, sigchld_handler);
459#endif
460}
461
462
463void start_accept_loop(int port, int (*fn)(int, int))
464{
465 fd_set deffds;
466 int *sp, maxfd, i;
467
468#ifdef HAVE_SIGACTION
469 sigact.sa_flags = SA_NOCLDSTOP;
470#endif
471
472 /* open an incoming socket */
473 sp = open_socket_in(SOCK_STREAM, port, bind_address, default_af_hint);
474 if (sp == NULL)
475 exit_cleanup(RERR_SOCKETIO);
476
477 /* ready to listen */
478 FD_ZERO(&deffds);
479 for (i = 0, maxfd = -1; sp[i] >= 0; i++) {
480 if (listen(sp[i], 5) < 0) {
481 rsyserr(FERROR, errno, "listen() on socket failed");
482#ifdef INET6
483 if (errno == EADDRINUSE && i > 0) {
484 rprintf(FINFO,
485 "Try using --ipv4 or --ipv6 to avoid this listen() error.\n");
486 }
487#endif
488 exit_cleanup(RERR_SOCKETIO);
489 }
490 FD_SET(sp[i], &deffds);
491 if (maxfd < sp[i])
492 maxfd = sp[i];
493 }
494
495 /* now accept incoming connections - forking a new process
496 * for each incoming connection */
497 while (1) {
498 fd_set fds;
499 pid_t pid;
500 int fd;
501 struct sockaddr_storage addr;
502 socklen_t addrlen = sizeof addr;
503
504 /* close log file before the potentially very long select so
505 * file can be trimmed by another process instead of growing
506 * forever */
507 logfile_close();
508
509#ifdef FD_COPY
510 FD_COPY(&deffds, &fds);
511#else
512 fds = deffds;
513#endif
514
515 if (select(maxfd + 1, &fds, NULL, NULL, NULL) != 1)
516 continue;
517
518 for (i = 0, fd = -1; sp[i] >= 0; i++) {
519 if (FD_ISSET(sp[i], &fds)) {
520 fd = accept(sp[i], (struct sockaddr *)&addr,
521 &addrlen);
522 break;
523 }
524 }
525
526 if (fd < 0)
527 continue;
528
529 SIGACTION(SIGCHLD, sigchld_handler);
530
531 if ((pid = fork()) == 0) {
532 int ret;
533 for (i = 0; sp[i] >= 0; i++)
534 close(sp[i]);
535 /* Re-open log file in child before possibly giving
536 * up privileges (see logfile_close() above). */
537 logfile_reopen();
538 ret = fn(fd, fd);
539 close_all();
540 _exit(ret);
541 } else if (pid < 0) {
542 rsyserr(FERROR, errno,
543 "could not create child server process");
544 close(fd);
545 /* This might have happened because we're
546 * overloaded. Sleep briefly before trying to
547 * accept again. */
548 sleep(2);
549 } else {
550 /* Parent doesn't need this fd anymore. */
551 close(fd);
552 }
553 }
554}
555
556
557enum SOCK_OPT_TYPES {OPT_BOOL,OPT_INT,OPT_ON};
558
559struct
560{
561 char *name;
562 int level;
563 int option;
564 int value;
565 int opttype;
566} socket_options[] = {
567 {"SO_KEEPALIVE", SOL_SOCKET, SO_KEEPALIVE, 0, OPT_BOOL},
568 {"SO_REUSEADDR", SOL_SOCKET, SO_REUSEADDR, 0, OPT_BOOL},
569 {"SO_BROADCAST", SOL_SOCKET, SO_BROADCAST, 0, OPT_BOOL},
570#ifdef TCP_NODELAY
571 {"TCP_NODELAY", IPPROTO_TCP, TCP_NODELAY, 0, OPT_BOOL},
572#endif
573#ifdef IPTOS_LOWDELAY
574 {"IPTOS_LOWDELAY", IPPROTO_IP, IP_TOS, IPTOS_LOWDELAY, OPT_ON},
575#endif
576#ifdef IPTOS_THROUGHPUT
577 {"IPTOS_THROUGHPUT", IPPROTO_IP, IP_TOS, IPTOS_THROUGHPUT, OPT_ON},
578#endif
579#ifdef SO_SNDBUF
580 {"SO_SNDBUF", SOL_SOCKET, SO_SNDBUF, 0, OPT_INT},
581#endif
582#ifdef SO_RCVBUF
583 {"SO_RCVBUF", SOL_SOCKET, SO_RCVBUF, 0, OPT_INT},
584#endif
585#ifdef SO_SNDLOWAT
586 {"SO_SNDLOWAT", SOL_SOCKET, SO_SNDLOWAT, 0, OPT_INT},
587#endif
588#ifdef SO_RCVLOWAT
589 {"SO_RCVLOWAT", SOL_SOCKET, SO_RCVLOWAT, 0, OPT_INT},
590#endif
591#ifdef SO_SNDTIMEO
592 {"SO_SNDTIMEO", SOL_SOCKET, SO_SNDTIMEO, 0, OPT_INT},
593#endif
594#ifdef SO_RCVTIMEO
595 {"SO_RCVTIMEO", SOL_SOCKET, SO_RCVTIMEO, 0, OPT_INT},
596#endif
597 {NULL,0,0,0,0}};
598
599
600
601/**
602 * Set user socket options
603 **/
604void set_socket_options(int fd, char *options)
605{
606 char *tok;
607
608 if (!options || !*options)
609 return;
610
611 options = strdup(options);
612
613 if (!options)
614 out_of_memory("set_socket_options");
615
616 for (tok = strtok(options, " \t,"); tok; tok = strtok(NULL," \t,")) {
617 int ret=0,i;
618 int value = 1;
619 char *p;
620 int got_value = 0;
621
622 if ((p = strchr(tok,'='))) {
623 *p = 0;
624 value = atoi(p+1);
625 got_value = 1;
626 }
627
628 for (i = 0; socket_options[i].name; i++) {
629 if (strcmp(socket_options[i].name,tok)==0)
630 break;
631 }
632
633 if (!socket_options[i].name) {
634 rprintf(FERROR,"Unknown socket option %s\n",tok);
635 continue;
636 }
637
638 switch (socket_options[i].opttype) {
639 case OPT_BOOL:
640 case OPT_INT:
641 ret = setsockopt(fd,socket_options[i].level,
642 socket_options[i].option,
643 (char *)&value, sizeof (int));
644 break;
645
646 case OPT_ON:
647 if (got_value)
648 rprintf(FERROR,"syntax error -- %s does not take a value\n",tok);
649
650 {
651 int on = socket_options[i].value;
652 ret = setsockopt(fd,socket_options[i].level,
653 socket_options[i].option,
654 (char *)&on, sizeof (int));
655 }
656 break;
657 }
658
659 if (ret != 0) {
660 rsyserr(FERROR, errno,
661 "failed to set socket option %s", tok);
662 }
663 }
664
665 free(options);
666}
667
668/**
669 * Become a daemon, discarding the controlling terminal
670 **/
671void become_daemon(void)
672{
673 int i;
674
675 if (fork()) {
676 _exit(0);
677 }
678
679 /* detach from the terminal */
680#ifdef HAVE_SETSID
681 setsid();
682#elif defined TIOCNOTTY
683 i = open("/dev/tty", O_RDWR);
684 if (i >= 0) {
685 ioctl(i, (int)TIOCNOTTY, (char *)0);
686 close(i);
687 }
688#endif
689 /* make sure that stdin, stdout an stderr don't stuff things
690 * up (library functions, for example) */
691 for (i = 0; i < 3; i++) {
692 close(i);
693 open("/dev/null", O_RDWR);
694 }
695}
696
697
698/**
699 * This is like socketpair but uses tcp. It is used by the Samba
700 * regression test code.
701 *
702 * The function guarantees that nobody else can attach to the socket,
703 * or if they do that this function fails and the socket gets closed
704 * returns 0 on success, -1 on failure the resulting file descriptors
705 * are symmetrical.
706 **/
707static int socketpair_tcp(int fd[2])
708{
709 int listener;
710 struct sockaddr_in sock;
711 struct sockaddr_in sock2;
712 socklen_t socklen = sizeof sock;
713 int connect_done = 0;
714
715 fd[0] = fd[1] = listener = -1;
716
717 memset(&sock, 0, sizeof sock);
718
719 if ((listener = socket(PF_INET, SOCK_STREAM, 0)) == -1)
720 goto failed;
721
722 memset(&sock2, 0, sizeof sock2);
723#ifdef HAVE_SOCKADDR_IN_LEN
724 sock2.sin_len = sizeof sock2;
725#endif
726 sock2.sin_family = PF_INET;
727
728 bind(listener, (struct sockaddr *)&sock2, sizeof sock2);
729
730 if (listen(listener, 1) != 0)
731 goto failed;
732
733 if (getsockname(listener, (struct sockaddr *)&sock, &socklen) != 0)
734 goto failed;
735
736 if ((fd[1] = socket(PF_INET, SOCK_STREAM, 0)) == -1)
737 goto failed;
738
739 set_nonblocking(fd[1]);
740
741 sock.sin_addr.s_addr = htonl(INADDR_LOOPBACK);
742
743 if (connect(fd[1], (struct sockaddr *)&sock, sizeof sock) == -1) {
744 if (errno != EINPROGRESS)
745 goto failed;
746 } else
747 connect_done = 1;
748
749 if ((fd[0] = accept(listener, (struct sockaddr *)&sock, &socklen)) == -1)
750 goto failed;
751
752 close(listener);
753 listener = -1;
754
755 set_blocking(fd[1]);
756
757 if (connect_done == 0) {
758 if (connect(fd[1], (struct sockaddr *)&sock, sizeof sock) != 0
759 && errno != EISCONN)
760 goto failed;
761 }
762
763 /* all OK! */
764 return 0;
765
766 failed:
767 if (fd[0] != -1)
768 close(fd[0]);
769 if (fd[1] != -1)
770 close(fd[1]);
771 if (listener != -1)
772 close(listener);
773 return -1;
774}
775
776
777
778/**
779 * Run a program on a local tcp socket, so that we can talk to it's
780 * stdin and stdout. This is used to fake a connection to a daemon
781 * for testing -- not for the normal case of running SSH.
782 *
783 * @return a socket which is attached to a subprocess running
784 * "prog". stdin and stdout are attached. stderr is left attached to
785 * the original stderr
786 **/
787int sock_exec(const char *prog)
788{
789 int fd[2];
790
791 if (socketpair_tcp(fd) != 0) {
792 rsyserr(FERROR, errno, "socketpair_tcp failed");
793 return -1;
794 }
795 if (verbose >= 2)
796 rprintf(FINFO, "Running socket program: \"%s\"\n", prog);
797 if (fork() == 0) {
798 close(fd[0]);
799 close(0);
800 close(1);
801 dup(fd[1]);
802 dup(fd[1]);
803 exit(system(prog));
804 }
805 close(fd[1]);
806 return fd[0];
807}