b7178add9ecd88b090edf350041f63653fc36b74
[platform/upstream/curl.git] / tests / server / sockfilt.c
1 /***************************************************************************
2  *                                  _   _ ____  _
3  *  Project                     ___| | | |  _ \| |
4  *                             / __| | | | |_) | |
5  *                            | (__| |_| |  _ <| |___
6  *                             \___|\___/|_| \_\_____|
7  *
8  * Copyright (C) 1998 - 2014, Daniel Stenberg, <daniel@haxx.se>, et al.
9  *
10  * This software is licensed as described in the file COPYING, which
11  * you should have received as part of this distribution. The terms
12  * are also available at http://curl.haxx.se/docs/copyright.html.
13  *
14  * You may opt to use, copy, modify, merge, publish, distribute and/or sell
15  * copies of the Software, and permit persons to whom the Software is
16  * furnished to do so, under the terms of the COPYING file.
17  *
18  * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19  * KIND, either express or implied.
20  *
21  ***************************************************************************/
22 #include "server_setup.h"
23
24 /* Purpose
25  *
26  * 1. Accept a TCP connection on a custom port (ipv4 or ipv6), or connect
27  *    to a given (localhost) port.
28  *
29  * 2. Get commands on STDIN. Pass data on to the TCP stream.
30  *    Get data from TCP stream and pass on to STDOUT.
31  *
32  * This program is made to perform all the socket/stream/connection stuff for
33  * the test suite's (perl) FTP server. Previously the perl code did all of
34  * this by its own, but I decided to let this program do the socket layer
35  * because of several things:
36  *
37  * o We want the perl code to work with rather old perl installations, thus
38  *   we cannot use recent perl modules or features.
39  *
40  * o We want IPv6 support for systems that provide it, and doing optional IPv6
41  *   support in perl seems if not impossible so at least awkward.
42  *
43  * o We want FTP-SSL support, which means that a connection that starts with
44  *   plain sockets needs to be able to "go SSL" in the midst. This would also
45  *   require some nasty perl stuff I'd rather avoid.
46  *
47  * (Source originally based on sws.c)
48  */
49
50 /*
51  * Signal handling notes for sockfilt
52  * ----------------------------------
53  *
54  * This program is a single-threaded process.
55  *
56  * This program is intended to be highly portable and as such it must be kept as
57  * simple as possible, due to this the only signal handling mechanisms used will
58  * be those of ANSI C, and used only in the most basic form which is good enough
59  * for the purpose of this program.
60  *
61  * For the above reason and the specific needs of this program signals SIGHUP,
62  * SIGPIPE and SIGALRM will be simply ignored on systems where this can be done.
63  * If possible, signals SIGINT and SIGTERM will be handled by this program as an
64  * indication to cleanup and finish execution as soon as possible.  This will be
65  * achieved with a single signal handler 'exit_signal_handler' for both signals.
66  *
67  * The 'exit_signal_handler' upon the first SIGINT or SIGTERM received signal
68  * will just set to one the global var 'got_exit_signal' storing in global var
69  * 'exit_signal' the signal that triggered this change.
70  *
71  * Nothing fancy that could introduce problems is used, the program at certain
72  * points in its normal flow checks if var 'got_exit_signal' is set and in case
73  * this is true it just makes its way out of loops and functions in structured
74  * and well behaved manner to achieve proper program cleanup and termination.
75  *
76  * Even with the above mechanism implemented it is worthwile to note that other
77  * signals might still be received, or that there might be systems on which it
78  * is not possible to trap and ignore some of the above signals.  This implies
79  * that for increased portability and reliability the program must be coded as
80  * if no signal was being ignored or handled at all.  Enjoy it!
81  */
82
83 #ifdef HAVE_SIGNAL_H
84 #include <signal.h>
85 #endif
86 #ifdef HAVE_NETINET_IN_H
87 #include <netinet/in.h>
88 #endif
89 #ifdef HAVE_ARPA_INET_H
90 #include <arpa/inet.h>
91 #endif
92 #ifdef HAVE_NETDB_H
93 #include <netdb.h>
94 #endif
95
96 #define ENABLE_CURLX_PRINTF
97 /* make the curlx header define all printf() functions to use the curlx_*
98    versions instead */
99 #include "curlx.h" /* from the private lib dir */
100 #include "getpart.h"
101 #include "inet_pton.h"
102 #include "util.h"
103 #include "server_sockaddr.h"
104 #include "warnless.h"
105
106 /* include memdebug.h last */
107 #include "memdebug.h"
108
109 #ifdef USE_WINSOCK
110 #undef  EINTR
111 #define EINTR    4 /* errno.h value */
112 #undef  EAGAIN
113 #define EAGAIN  11 /* errno.h value */
114 #undef  ENOMEM
115 #define ENOMEM  12 /* errno.h value */
116 #undef  EINVAL
117 #define EINVAL  22 /* errno.h value */
118 #endif
119
120 #define DEFAULT_PORT 8999
121
122 #ifndef DEFAULT_LOGFILE
123 #define DEFAULT_LOGFILE "log/sockfilt.log"
124 #endif
125
126 const char *serverlogfile = DEFAULT_LOGFILE;
127
128 static bool verbose = FALSE;
129 static bool bind_only = FALSE;
130 #ifdef ENABLE_IPV6
131 static bool use_ipv6 = FALSE;
132 #endif
133 static const char *ipv_inuse = "IPv4";
134 static unsigned short port = DEFAULT_PORT;
135 static unsigned short connectport = 0; /* if non-zero, we activate this mode */
136
137 enum sockmode {
138   PASSIVE_LISTEN,    /* as a server waiting for connections */
139   PASSIVE_CONNECT,   /* as a server, connected to a client */
140   ACTIVE,            /* as a client, connected to a server */
141   ACTIVE_DISCONNECT  /* as a client, disconnected from server */
142 };
143
144 /* do-nothing macro replacement for systems which lack siginterrupt() */
145
146 #ifndef HAVE_SIGINTERRUPT
147 #define siginterrupt(x,y) do {} while(0)
148 #endif
149
150 /* vars used to keep around previous signal handlers */
151
152 typedef RETSIGTYPE (*SIGHANDLER_T)(int);
153
154 #ifdef SIGHUP
155 static SIGHANDLER_T old_sighup_handler  = SIG_ERR;
156 #endif
157
158 #ifdef SIGPIPE
159 static SIGHANDLER_T old_sigpipe_handler = SIG_ERR;
160 #endif
161
162 #ifdef SIGALRM
163 static SIGHANDLER_T old_sigalrm_handler = SIG_ERR;
164 #endif
165
166 #ifdef SIGINT
167 static SIGHANDLER_T old_sigint_handler  = SIG_ERR;
168 #endif
169
170 #ifdef SIGTERM
171 static SIGHANDLER_T old_sigterm_handler = SIG_ERR;
172 #endif
173
174 #if defined(SIGBREAK) && defined(WIN32)
175 static SIGHANDLER_T old_sigbreak_handler = SIG_ERR;
176 #endif
177
178 /* var which if set indicates that the program should finish execution */
179
180 SIG_ATOMIC_T got_exit_signal = 0;
181
182 /* if next is set indicates the first signal handled in exit_signal_handler */
183
184 static volatile int exit_signal = 0;
185
186 /* signal handler that will be triggered to indicate that the program
187   should finish its execution in a controlled manner as soon as possible.
188   The first time this is called it will set got_exit_signal to one and
189   store in exit_signal the signal that triggered its execution. */
190
191 static RETSIGTYPE exit_signal_handler(int signum)
192 {
193   int old_errno = errno;
194   if(got_exit_signal == 0) {
195     got_exit_signal = 1;
196     exit_signal = signum;
197   }
198   (void)signal(signum, exit_signal_handler);
199   errno = old_errno;
200 }
201
202 static void install_signal_handlers(void)
203 {
204 #ifdef SIGHUP
205   /* ignore SIGHUP signal */
206   if((old_sighup_handler = signal(SIGHUP, SIG_IGN)) == SIG_ERR)
207     logmsg("cannot install SIGHUP handler: %s", strerror(errno));
208 #endif
209 #ifdef SIGPIPE
210   /* ignore SIGPIPE signal */
211   if((old_sigpipe_handler = signal(SIGPIPE, SIG_IGN)) == SIG_ERR)
212     logmsg("cannot install SIGPIPE handler: %s", strerror(errno));
213 #endif
214 #ifdef SIGALRM
215   /* ignore SIGALRM signal */
216   if((old_sigalrm_handler = signal(SIGALRM, SIG_IGN)) == SIG_ERR)
217     logmsg("cannot install SIGALRM handler: %s", strerror(errno));
218 #endif
219 #ifdef SIGINT
220   /* handle SIGINT signal with our exit_signal_handler */
221   if((old_sigint_handler = signal(SIGINT, exit_signal_handler)) == SIG_ERR)
222     logmsg("cannot install SIGINT handler: %s", strerror(errno));
223   else
224     siginterrupt(SIGINT, 1);
225 #endif
226 #ifdef SIGTERM
227   /* handle SIGTERM signal with our exit_signal_handler */
228   if((old_sigterm_handler = signal(SIGTERM, exit_signal_handler)) == SIG_ERR)
229     logmsg("cannot install SIGTERM handler: %s", strerror(errno));
230   else
231     siginterrupt(SIGTERM, 1);
232 #endif
233 #if defined(SIGBREAK) && defined(WIN32)
234   /* handle SIGBREAK signal with our exit_signal_handler */
235   if((old_sigbreak_handler = signal(SIGBREAK, exit_signal_handler)) == SIG_ERR)
236     logmsg("cannot install SIGBREAK handler: %s", strerror(errno));
237   else
238     siginterrupt(SIGBREAK, 1);
239 #endif
240 }
241
242 static void restore_signal_handlers(void)
243 {
244 #ifdef SIGHUP
245   if(SIG_ERR != old_sighup_handler)
246     (void)signal(SIGHUP, old_sighup_handler);
247 #endif
248 #ifdef SIGPIPE
249   if(SIG_ERR != old_sigpipe_handler)
250     (void)signal(SIGPIPE, old_sigpipe_handler);
251 #endif
252 #ifdef SIGALRM
253   if(SIG_ERR != old_sigalrm_handler)
254     (void)signal(SIGALRM, old_sigalrm_handler);
255 #endif
256 #ifdef SIGINT
257   if(SIG_ERR != old_sigint_handler)
258     (void)signal(SIGINT, old_sigint_handler);
259 #endif
260 #ifdef SIGTERM
261   if(SIG_ERR != old_sigterm_handler)
262     (void)signal(SIGTERM, old_sigterm_handler);
263 #endif
264 #if defined(SIGBREAK) && defined(WIN32)
265   if(SIG_ERR != old_sigbreak_handler)
266     (void)signal(SIGBREAK, old_sigbreak_handler);
267 #endif
268 }
269
270 #ifdef WIN32
271 /*
272  * read-wrapper to support reading from stdin on Windows.
273  */
274 static ssize_t read_wincon(int fd, void *buf, size_t count)
275 {
276   HANDLE handle = NULL;
277   DWORD mode, rcount = 0;
278   BOOL success;
279
280   if(fd == fileno(stdin)) {
281     handle = GetStdHandle(STD_INPUT_HANDLE);
282   }
283   else {
284     return read(fd, buf, count);
285   }
286
287   if(GetConsoleMode(handle, &mode)) {
288     success = ReadConsole(handle, buf, count, &rcount, NULL);
289   }
290   else {
291     success = ReadFile(handle, buf, count, &rcount, NULL);
292   }
293   if(success) {
294     return rcount;
295   }
296
297   errno = GetLastError();
298   return -1;
299 }
300 #undef  read
301 #define read(a,b,c) read_wincon(a,b,c)
302
303 /*
304  * write-wrapper to support writing to stdout and stderr on Windows.
305  */
306 static ssize_t write_wincon(int fd, const void *buf, size_t count)
307 {
308   HANDLE handle = NULL;
309   DWORD mode, wcount = 0;
310   BOOL success;
311
312   if(fd == fileno(stdout)) {
313     handle = GetStdHandle(STD_OUTPUT_HANDLE);
314   }
315   else if(fd == fileno(stderr)) {
316     handle = GetStdHandle(STD_ERROR_HANDLE);
317   }
318   else {
319     return write(fd, buf, count);
320   }
321
322   if(GetConsoleMode(handle, &mode)) {
323     success = WriteConsole(handle, buf, count, &wcount, NULL);
324   }
325   else {
326     success = WriteFile(handle, buf, count, &wcount, NULL);
327   }
328   if(success) {
329     return wcount;
330   }
331
332   errno = GetLastError();
333   return -1;
334 }
335 #undef  write
336 #define write(a,b,c) write_wincon(a,b,c)
337 #endif
338
339 /*
340  * fullread is a wrapper around the read() function. This will repeat the call
341  * to read() until it actually has read the complete number of bytes indicated
342  * in nbytes or it fails with a condition that cannot be handled with a simple
343  * retry of the read call.
344  */
345
346 static ssize_t fullread(int filedes, void *buffer, size_t nbytes)
347 {
348   int error;
349   ssize_t rc;
350   ssize_t nread = 0;
351
352   do {
353     rc = read(filedes, (unsigned char *)buffer + nread, nbytes - nread);
354
355     if(got_exit_signal) {
356       logmsg("signalled to die");
357       return -1;
358     }
359
360     if(rc < 0) {
361       error = errno;
362       if((error == EINTR) || (error == EAGAIN))
363         continue;
364       logmsg("reading from file descriptor: %d,", filedes);
365       logmsg("unrecoverable read() failure: (%d) %s",
366              error, strerror(error));
367       return -1;
368     }
369
370     if(rc == 0) {
371       logmsg("got 0 reading from stdin");
372       return 0;
373     }
374
375     nread += rc;
376
377   } while((size_t)nread < nbytes);
378
379   if(verbose)
380     logmsg("read %zd bytes", nread);
381
382   return nread;
383 }
384
385 /*
386  * fullwrite is a wrapper around the write() function. This will repeat the
387  * call to write() until it actually has written the complete number of bytes
388  * indicated in nbytes or it fails with a condition that cannot be handled
389  * with a simple retry of the write call.
390  */
391
392 static ssize_t fullwrite(int filedes, const void *buffer, size_t nbytes)
393 {
394   int error;
395   ssize_t wc;
396   ssize_t nwrite = 0;
397
398   do {
399     wc = write(filedes, (unsigned char *)buffer + nwrite, nbytes - nwrite);
400
401     if(got_exit_signal) {
402       logmsg("signalled to die");
403       return -1;
404     }
405
406     if(wc < 0) {
407       error = errno;
408       if((error == EINTR) || (error == EAGAIN))
409         continue;
410       logmsg("writing to file descriptor: %d,", filedes);
411       logmsg("unrecoverable write() failure: (%d) %s",
412              error, strerror(error));
413       return -1;
414     }
415
416     if(wc == 0) {
417       logmsg("put 0 writing to stdout");
418       return 0;
419     }
420
421     nwrite += wc;
422
423   } while((size_t)nwrite < nbytes);
424
425   if(verbose)
426     logmsg("wrote %zd bytes", nwrite);
427
428   return nwrite;
429 }
430
431 /*
432  * read_stdin tries to read from stdin nbytes into the given buffer. This is a
433  * blocking function that will only return TRUE when nbytes have actually been
434  * read or FALSE when an unrecoverable error has been detected. Failure of this
435  * function is an indication that the sockfilt process should terminate.
436  */
437
438 static bool read_stdin(void *buffer, size_t nbytes)
439 {
440   ssize_t nread = fullread(fileno(stdin), buffer, nbytes);
441   if(nread != (ssize_t)nbytes) {
442     logmsg("exiting...");
443     return FALSE;
444   }
445   return TRUE;
446 }
447
448 /*
449  * write_stdout tries to write to stdio nbytes from the given buffer. This is a
450  * blocking function that will only return TRUE when nbytes have actually been
451  * written or FALSE when an unrecoverable error has been detected. Failure of
452  * this function is an indication that the sockfilt process should terminate.
453  */
454
455 static bool write_stdout(const void *buffer, size_t nbytes)
456 {
457   ssize_t nwrite = fullwrite(fileno(stdout), buffer, nbytes);
458   if(nwrite != (ssize_t)nbytes) {
459     logmsg("exiting...");
460     return FALSE;
461   }
462   return TRUE;
463 }
464
465 static void lograw(unsigned char *buffer, ssize_t len)
466 {
467   char data[120];
468   ssize_t i;
469   unsigned char *ptr = buffer;
470   char *optr = data;
471   ssize_t width=0;
472
473   for(i=0; i<len; i++) {
474     switch(ptr[i]) {
475     case '\n':
476       sprintf(optr, "\\n");
477       width += 2;
478       optr += 2;
479       break;
480     case '\r':
481       sprintf(optr, "\\r");
482       width += 2;
483       optr += 2;
484       break;
485     default:
486       sprintf(optr, "%c", (ISGRAPH(ptr[i]) || ptr[i]==0x20) ?ptr[i]:'.');
487       width++;
488       optr++;
489       break;
490     }
491
492     if(width>60) {
493       logmsg("'%s'", data);
494       width = 0;
495       optr = data;
496     }
497   }
498   if(width)
499     logmsg("'%s'", data);
500 }
501
502 #ifdef USE_WINSOCK
503 /*
504  * WinSock select() does not support standard file descriptors,
505  * it can only check SOCKETs. The following function is an attempt
506  * to re-create a select() function with support for other handle types.
507  *
508  * select() function with support for WINSOCK2 sockets and all
509  * other handle types supported by WaitForMultipleObjectsEx().
510  *
511  * TODO: Differentiate between read/write/except for non-SOCKET handles.
512  *
513  * http://msdn.microsoft.com/en-us/library/windows/desktop/ms687028.aspx
514  * http://msdn.microsoft.com/en-us/library/windows/desktop/ms741572.aspx
515  */
516 static DWORD WINAPI select_ws_stdin_wait_thread(LPVOID lpParameter)
517 {
518   HANDLE handle, handles[2];
519   INPUT_RECORD inputrecord;
520   LARGE_INTEGER size, pos;
521   DWORD type, length;
522
523   handle = GetStdHandle(STD_INPUT_HANDLE);
524   handles[0] = (HANDLE) lpParameter;
525   handles[1] = handle;
526   type = GetFileType(handle);
527
528   switch(type) {
529     case FILE_TYPE_DISK:
530       while(WaitForMultipleObjectsEx(2, handles, FALSE, INFINITE, FALSE)
531             == WAIT_OBJECT_0 + 1) {
532         size.QuadPart = 0;
533         if(GetFileSizeEx(handle, &size)) {
534           pos.QuadPart = 0;
535           if(SetFilePointerEx(handle, pos, &pos, FILE_CURRENT)) {
536             if(size.QuadPart == pos.QuadPart)
537               SleepEx(100, FALSE);
538             else
539               break;
540           }
541           else
542             break;
543         }
544         else
545           break;
546       }
547       break;
548
549     case FILE_TYPE_CHAR:
550       while(WaitForMultipleObjectsEx(2, handles, FALSE, INFINITE, FALSE)
551             == WAIT_OBJECT_0 + 1) {
552         if(GetConsoleMode(handle, &length)) {
553           length = 0;
554           if(PeekConsoleInput(handle, &inputrecord, 1, &length)) {
555             if(length == 1 && inputrecord.EventType != KEY_EVENT)
556               ReadConsoleInput(handle, &inputrecord, 1, &length);
557             else
558               break;
559           }
560           else
561             break;
562         }
563         else
564           break;
565       }
566       break;
567
568     case FILE_TYPE_PIPE:
569       while(WaitForMultipleObjectsEx(2, handles, FALSE, INFINITE, FALSE)
570             == WAIT_OBJECT_0 + 1) {
571         if(!PeekNamedPipe(handle, NULL, 0, NULL, &length, NULL)) {
572           if(GetLastError() == ERROR_BROKEN_PIPE)
573             SleepEx(100, FALSE);
574           else
575             break;
576         }
577         else
578           break;
579       }
580       break;
581
582     default:
583       WaitForMultipleObjectsEx(2, handles, FALSE, INFINITE, FALSE);
584       break;
585   }
586
587   return 0;
588 }
589 static int select_ws(int nfds, fd_set *readfds, fd_set *writefds,
590                      fd_set *exceptfds, struct timeval *timeout)
591 {
592   DWORD milliseconds, wait, idx;
593   WSAEVENT wsaevent, *wsaevents;
594   WSANETWORKEVENTS wsanetevents;
595   HANDLE handle, *handles;
596   curl_socket_t sock, *fdarr, *wsasocks;
597   long networkevents;
598   int error, fds;
599   HANDLE threadevent = NULL, threadhandle = NULL;
600   DWORD nfd = 0, wsa = 0;
601   int ret = 0;
602
603   /* check if the input value is valid */
604   if(nfds < 0) {
605     errno = EINVAL;
606     return -1;
607   }
608
609   /* check if we got descriptors, sleep in case we got none */
610   if(!nfds) {
611     Sleep((timeout->tv_sec * 1000) + (timeout->tv_usec / 1000));
612     return 0;
613   }
614
615   /* allocate internal array for the original input handles */
616   fdarr = malloc(nfds * sizeof(curl_socket_t));
617   if(fdarr == NULL) {
618     errno = ENOMEM;
619     return -1;
620   }
621
622   /* allocate internal array for the internal event handles */
623   handles = malloc(nfds * sizeof(HANDLE));
624   if(handles == NULL) {
625     free(fdarr);
626     errno = ENOMEM;
627     return -1;
628   }
629
630   /* allocate internal array for the internal socket handles */
631   wsasocks = malloc(nfds * sizeof(curl_socket_t));
632   if(wsasocks == NULL) {
633     free(handles);
634     free(fdarr);
635     errno = ENOMEM;
636     return -1;
637   }
638
639   /* allocate internal array for the internal WINSOCK2 events */
640   wsaevents = malloc(nfds * sizeof(WSAEVENT));
641   if(wsaevents == NULL) {
642     free(wsasocks);
643     free(handles);
644     free(fdarr);
645     errno = ENOMEM;
646     return -1;
647   }
648
649   /* loop over the handles in the input descriptor sets */
650   for(fds = 0; fds < nfds; fds++) {
651     networkevents = 0;
652     handles[nfd] = 0;
653
654     if(FD_ISSET(fds, readfds))
655       networkevents |= FD_READ|FD_ACCEPT|FD_CLOSE;
656
657     if(FD_ISSET(fds, writefds))
658       networkevents |= FD_WRITE|FD_CONNECT;
659
660     if(FD_ISSET(fds, exceptfds))
661       networkevents |= FD_OOB|FD_CLOSE;
662
663     /* only wait for events for which we actually care */
664     if(networkevents) {
665       fdarr[nfd] = curlx_sitosk(fds);
666       if(fds == fileno(stdin)) {
667         threadevent = CreateEvent(NULL, TRUE, FALSE, NULL);
668         threadhandle = CreateThread(NULL, 0,
669                                     &select_ws_stdin_wait_thread,
670                                     threadevent, 0, NULL);
671         handles[nfd] = threadhandle;
672       }
673       else if(fds == fileno(stdout)) {
674         handles[nfd] = GetStdHandle(STD_OUTPUT_HANDLE);
675       }
676       else if(fds == fileno(stderr)) {
677         handles[nfd] = GetStdHandle(STD_ERROR_HANDLE);
678       }
679       else {
680         wsaevent = WSACreateEvent();
681         if(wsaevent != WSA_INVALID_EVENT) {
682           error = WSAEventSelect(fds, wsaevent, networkevents);
683           if(error != SOCKET_ERROR) {
684             handles[nfd] = wsaevent;
685             wsasocks[wsa] = curlx_sitosk(fds);
686             wsaevents[wsa] = wsaevent;
687             wsa++;
688           }
689           else {
690             handles[nfd] = (HANDLE) curlx_sitosk(fds);
691             WSACloseEvent(wsaevent);
692           }
693         }
694       }
695       nfd++;
696     }
697   }
698
699   /* convert struct timeval to milliseconds */
700   if(timeout) {
701     milliseconds = ((timeout->tv_sec * 1000) + (timeout->tv_usec / 1000));
702   }
703   else {
704     milliseconds = INFINITE;
705   }
706
707   /* wait for one of the internal handles to trigger */
708   wait = WaitForMultipleObjectsEx(nfd, handles, FALSE, milliseconds, FALSE);
709
710   /* signal the event handle for the waiting thread */
711   if(threadevent) {
712     SetEvent(threadevent);
713   }
714
715   /* loop over the internal handles returned in the descriptors */
716   for(idx = 0; idx < nfd; idx++) {
717     handle = handles[idx];
718     sock = fdarr[idx];
719     fds = curlx_sktosi(sock);
720
721     /* check if the current internal handle was triggered */
722     if(wait != WAIT_FAILED && (wait - WAIT_OBJECT_0) <= idx &&
723        WaitForSingleObjectEx(handle, 0, FALSE) == WAIT_OBJECT_0) {
724       /* first handle stdin, stdout and stderr */
725       if(fds == fileno(stdin)) {
726         /* stdin is never ready for write or exceptional */
727         FD_CLR(sock, writefds);
728         FD_CLR(sock, exceptfds);
729       }
730       else if(fds == fileno(stdout) || fds == fileno(stderr)) {
731         /* stdout and stderr are never ready for read or exceptional */
732         FD_CLR(sock, readfds);
733         FD_CLR(sock, exceptfds);
734       }
735       else {
736         /* try to handle the event with the WINSOCK2 functions */
737         error = WSAEnumNetworkEvents(fds, handle, &wsanetevents);
738         if(error != SOCKET_ERROR) {
739           /* remove from descriptor set if not ready for read/accept/close */
740           if(!(wsanetevents.lNetworkEvents & (FD_READ|FD_ACCEPT|FD_CLOSE)))
741             FD_CLR(sock, readfds);
742
743           /* remove from descriptor set if not ready for write/connect */
744           if(!(wsanetevents.lNetworkEvents & (FD_WRITE|FD_CONNECT)))
745             FD_CLR(sock, writefds);
746
747           /* HACK:
748            * use exceptfds together with readfds to signal
749            * that the connection was closed by the client.
750            *
751            * Reason: FD_CLOSE is only signaled once, sometimes
752            * at the same time as FD_READ with data being available.
753            * This means that recv/sread is not reliable to detect
754            * that the connection is closed.
755            */
756           /* remove from descriptor set if not exceptional */
757           if(!(wsanetevents.lNetworkEvents & (FD_OOB|FD_CLOSE)))
758             FD_CLR(sock, exceptfds);
759         }
760       }
761
762       /* check if the event has not been filtered using specific tests */
763       if(FD_ISSET(sock, readfds) || FD_ISSET(sock, writefds) ||
764          FD_ISSET(sock, exceptfds)) {
765         ret++;
766       }
767     }
768     else {
769       /* remove from all descriptor sets since this handle did not trigger */
770       FD_CLR(sock, readfds);
771       FD_CLR(sock, writefds);
772       FD_CLR(sock, exceptfds);
773     }
774   }
775
776   for(idx = 0; idx < wsa; idx++) {
777     WSAEventSelect(wsasocks[idx], NULL, 0);
778     WSACloseEvent(wsaevents[idx]);
779   }
780
781   if(threadhandle) {
782     WaitForSingleObject(threadhandle, INFINITE);
783     CloseHandle(threadhandle);
784   }
785   if(threadevent) {
786     CloseHandle(threadevent);
787   }
788
789   free(wsaevents);
790   free(wsasocks);
791   free(handles);
792   free(fdarr);
793
794   return ret;
795 }
796 #define select(a,b,c,d,e) select_ws(a,b,c,d,e)
797 #endif  /* USE_WINSOCK */
798
799 /*
800   sockfdp is a pointer to an established stream or CURL_SOCKET_BAD
801
802   if sockfd is CURL_SOCKET_BAD, listendfd is a listening socket we must
803   accept()
804 */
805 static bool juggle(curl_socket_t *sockfdp,
806                    curl_socket_t listenfd,
807                    enum sockmode *mode)
808 {
809   struct timeval timeout;
810   fd_set fds_read;
811   fd_set fds_write;
812   fd_set fds_err;
813   curl_socket_t sockfd = CURL_SOCKET_BAD;
814   int maxfd = -99;
815   ssize_t rc;
816   ssize_t nread_socket;
817   ssize_t bytes_written;
818   ssize_t buffer_len;
819   int error = 0;
820
821  /* 'buffer' is this excessively large only to be able to support things like
822     test 1003 which tests exceedingly large server response lines */
823   unsigned char buffer[17010];
824   char data[16];
825
826   if(got_exit_signal) {
827     logmsg("signalled to die, exiting...");
828     return FALSE;
829   }
830
831 #ifdef HAVE_GETPPID
832   /* As a last resort, quit if sockfilt process becomes orphan. Just in case
833      parent ftpserver process has died without killing its sockfilt children */
834   if(getppid() <= 1) {
835     logmsg("process becomes orphan, exiting");
836     return FALSE;
837   }
838 #endif
839
840   timeout.tv_sec = 120;
841   timeout.tv_usec = 0;
842
843   FD_ZERO(&fds_read);
844   FD_ZERO(&fds_write);
845   FD_ZERO(&fds_err);
846
847   FD_SET((curl_socket_t)fileno(stdin), &fds_read);
848
849   switch(*mode) {
850
851   case PASSIVE_LISTEN:
852
853     /* server mode */
854     sockfd = listenfd;
855     /* there's always a socket to wait for */
856     FD_SET(sockfd, &fds_read);
857     maxfd = (int)sockfd;
858     break;
859
860   case PASSIVE_CONNECT:
861
862     sockfd = *sockfdp;
863     if(CURL_SOCKET_BAD == sockfd) {
864       /* eeek, we are supposedly connected and then this cannot be -1 ! */
865       logmsg("socket is -1! on %s:%d", __FILE__, __LINE__);
866       maxfd = 0; /* stdin */
867     }
868     else {
869       /* there's always a socket to wait for */
870       FD_SET(sockfd, &fds_read);
871 #ifdef USE_WINSOCK
872       FD_SET(sockfd, &fds_err);
873 #endif
874       maxfd = (int)sockfd;
875     }
876     break;
877
878   case ACTIVE:
879
880     sockfd = *sockfdp;
881     /* sockfd turns CURL_SOCKET_BAD when our connection has been closed */
882     if(CURL_SOCKET_BAD != sockfd) {
883       FD_SET(sockfd, &fds_read);
884 #ifdef USE_WINSOCK
885       FD_SET(sockfd, &fds_err);
886 #endif
887       maxfd = (int)sockfd;
888     }
889     else {
890       logmsg("No socket to read on");
891       maxfd = 0;
892     }
893     break;
894
895   case ACTIVE_DISCONNECT:
896
897     logmsg("disconnected, no socket to read on");
898     maxfd = 0;
899     sockfd = CURL_SOCKET_BAD;
900     break;
901
902   } /* switch(*mode) */
903
904
905   do {
906
907     /* select() blocking behavior call on blocking descriptors please */
908
909     rc = select(maxfd + 1, &fds_read, &fds_write, &fds_err, &timeout);
910
911     if(got_exit_signal) {
912       logmsg("signalled to die, exiting...");
913       return FALSE;
914     }
915
916   } while((rc == -1) && ((error = errno) == EINTR));
917
918   if(rc < 0) {
919     logmsg("select() failed with error: (%d) %s",
920            error, strerror(error));
921     return FALSE;
922   }
923
924   if(rc == 0)
925     /* timeout */
926     return TRUE;
927
928
929   if(FD_ISSET(fileno(stdin), &fds_read)) {
930     /* read from stdin, commands/data to be dealt with and possibly passed on
931        to the socket
932
933        protocol:
934
935        4 letter command + LF [mandatory]
936
937        4-digit hexadecimal data length + LF [if the command takes data]
938        data                       [the data being as long as set above]
939
940        Commands:
941
942        DATA - plain pass-thru data
943     */
944
945     if(!read_stdin(buffer, 5))
946       return FALSE;
947
948     logmsg("Received %c%c%c%c (on stdin)",
949            buffer[0], buffer[1], buffer[2], buffer[3] );
950
951     if(!memcmp("PING", buffer, 4)) {
952       /* send reply on stdout, just proving we are alive */
953       if(!write_stdout("PONG\n", 5))
954         return FALSE;
955     }
956
957     else if(!memcmp("PORT", buffer, 4)) {
958       /* Question asking us what PORT number we are listening to.
959          Replies to PORT with "IPv[num]/[port]" */
960       sprintf((char *)buffer, "%s/%hu\n", ipv_inuse, port);
961       buffer_len = (ssize_t)strlen((char *)buffer);
962       snprintf(data, sizeof(data), "PORT\n%04zx\n", buffer_len);
963       if(!write_stdout(data, 10))
964         return FALSE;
965       if(!write_stdout(buffer, buffer_len))
966         return FALSE;
967     }
968     else if(!memcmp("QUIT", buffer, 4)) {
969       /* just die */
970       logmsg("quits");
971       return FALSE;
972     }
973     else if(!memcmp("DATA", buffer, 4)) {
974       /* data IN => data OUT */
975
976       if(!read_stdin(buffer, 5))
977         return FALSE;
978
979       buffer[5] = '\0';
980
981       buffer_len = (ssize_t)strtol((char *)buffer, NULL, 16);
982       if (buffer_len > (ssize_t)sizeof(buffer)) {
983         logmsg("ERROR: Buffer size (%zu bytes) too small for data size "
984                "(%zd bytes)", sizeof(buffer), buffer_len);
985         return FALSE;
986       }
987       logmsg("> %zd bytes data, server => client", buffer_len);
988
989       if(!read_stdin(buffer, buffer_len))
990         return FALSE;
991
992       lograw(buffer, buffer_len);
993
994       if(*mode == PASSIVE_LISTEN) {
995         logmsg("*** We are disconnected!");
996         if(!write_stdout("DISC\n", 5))
997           return FALSE;
998       }
999       else {
1000         /* send away on the socket */
1001         bytes_written = swrite(sockfd, buffer, buffer_len);
1002         if(bytes_written != buffer_len) {
1003           logmsg("Not all data was sent. Bytes to send: %zd sent: %zd",
1004                  buffer_len, bytes_written);
1005         }
1006       }
1007     }
1008     else if(!memcmp("DISC", buffer, 4)) {
1009       /* disconnect! */
1010       if(!write_stdout("DISC\n", 5))
1011         return FALSE;
1012       if(sockfd != CURL_SOCKET_BAD) {
1013         logmsg("====> Client forcibly disconnected");
1014         sclose(sockfd);
1015         *sockfdp = CURL_SOCKET_BAD;
1016         if(*mode == PASSIVE_CONNECT)
1017           *mode = PASSIVE_LISTEN;
1018         else
1019           *mode = ACTIVE_DISCONNECT;
1020       }
1021       else
1022         logmsg("attempt to close already dead connection");
1023       return TRUE;
1024     }
1025   }
1026
1027
1028   if((sockfd != CURL_SOCKET_BAD) && (FD_ISSET(sockfd, &fds_read)) ) {
1029
1030     curl_socket_t newfd = CURL_SOCKET_BAD; /* newly accepted socket */
1031
1032     if(*mode == PASSIVE_LISTEN) {
1033       /* there's no stream set up yet, this is an indication that there's a
1034          client connecting. */
1035       newfd = accept(sockfd, NULL, NULL);
1036       if(CURL_SOCKET_BAD == newfd) {
1037         error = SOCKERRNO;
1038         logmsg("accept(%d, NULL, NULL) failed with error: (%d) %s",
1039                sockfd, error, strerror(error));
1040       }
1041       else {
1042         logmsg("====> Client connect");
1043         if(!write_stdout("CNCT\n", 5))
1044           return FALSE;
1045         *sockfdp = newfd; /* store the new socket */
1046         *mode = PASSIVE_CONNECT; /* we have connected */
1047       }
1048       return TRUE;
1049     }
1050
1051     /* read from socket, pass on data to stdout */
1052     nread_socket = sread(sockfd, buffer, sizeof(buffer));
1053
1054     if(nread_socket > 0) {
1055       snprintf(data, sizeof(data), "DATA\n%04zx\n", nread_socket);
1056       if(!write_stdout(data, 10))
1057         return FALSE;
1058       if(!write_stdout(buffer, nread_socket))
1059         return FALSE;
1060
1061       logmsg("< %zd bytes data, client => server", nread_socket);
1062       lograw(buffer, nread_socket);
1063     }
1064
1065     if(nread_socket <= 0
1066 #ifdef USE_WINSOCK
1067        || FD_ISSET(sockfd, &fds_err)
1068 #endif
1069        ) {
1070       logmsg("====> Client disconnect");
1071       if(!write_stdout("DISC\n", 5))
1072         return FALSE;
1073       sclose(sockfd);
1074       *sockfdp = CURL_SOCKET_BAD;
1075       if(*mode == PASSIVE_CONNECT)
1076         *mode = PASSIVE_LISTEN;
1077       else
1078         *mode = ACTIVE_DISCONNECT;
1079       return TRUE;
1080     }
1081   }
1082
1083   return TRUE;
1084 }
1085
1086 static curl_socket_t sockdaemon(curl_socket_t sock,
1087                                 unsigned short *listenport)
1088 {
1089   /* passive daemon style */
1090   srvr_sockaddr_union_t listener;
1091   int flag;
1092   int rc;
1093   int totdelay = 0;
1094   int maxretr = 10;
1095   int delay= 20;
1096   int attempt = 0;
1097   int error = 0;
1098
1099   do {
1100     attempt++;
1101     flag = 1;
1102     rc = setsockopt(sock, SOL_SOCKET, SO_REUSEADDR,
1103          (void *)&flag, sizeof(flag));
1104     if(rc) {
1105       error = SOCKERRNO;
1106       logmsg("setsockopt(SO_REUSEADDR) failed with error: (%d) %s",
1107              error, strerror(error));
1108       if(maxretr) {
1109         rc = wait_ms(delay);
1110         if(rc) {
1111           /* should not happen */
1112           error = errno;
1113           logmsg("wait_ms() failed with error: (%d) %s",
1114                  error, strerror(error));
1115           sclose(sock);
1116           return CURL_SOCKET_BAD;
1117         }
1118         if(got_exit_signal) {
1119           logmsg("signalled to die, exiting...");
1120           sclose(sock);
1121           return CURL_SOCKET_BAD;
1122         }
1123         totdelay += delay;
1124         delay *= 2; /* double the sleep for next attempt */
1125       }
1126     }
1127   } while(rc && maxretr--);
1128
1129   if(rc) {
1130     logmsg("setsockopt(SO_REUSEADDR) failed %d times in %d ms. Error: (%d) %s",
1131            attempt, totdelay, error, strerror(error));
1132     logmsg("Continuing anyway...");
1133   }
1134
1135   /* When the specified listener port is zero, it is actually a
1136      request to let the system choose a non-zero available port. */
1137
1138 #ifdef ENABLE_IPV6
1139   if(!use_ipv6) {
1140 #endif
1141     memset(&listener.sa4, 0, sizeof(listener.sa4));
1142     listener.sa4.sin_family = AF_INET;
1143     listener.sa4.sin_addr.s_addr = INADDR_ANY;
1144     listener.sa4.sin_port = htons(*listenport);
1145     rc = bind(sock, &listener.sa, sizeof(listener.sa4));
1146 #ifdef ENABLE_IPV6
1147   }
1148   else {
1149     memset(&listener.sa6, 0, sizeof(listener.sa6));
1150     listener.sa6.sin6_family = AF_INET6;
1151     listener.sa6.sin6_addr = in6addr_any;
1152     listener.sa6.sin6_port = htons(*listenport);
1153     rc = bind(sock, &listener.sa, sizeof(listener.sa6));
1154   }
1155 #endif /* ENABLE_IPV6 */
1156   if(rc) {
1157     error = SOCKERRNO;
1158     logmsg("Error binding socket on port %hu: (%d) %s",
1159            *listenport, error, strerror(error));
1160     sclose(sock);
1161     return CURL_SOCKET_BAD;
1162   }
1163
1164   if(!*listenport) {
1165     /* The system was supposed to choose a port number, figure out which
1166        port we actually got and update the listener port value with it. */
1167     curl_socklen_t la_size;
1168     srvr_sockaddr_union_t localaddr;
1169 #ifdef ENABLE_IPV6
1170     if(!use_ipv6)
1171 #endif
1172       la_size = sizeof(localaddr.sa4);
1173 #ifdef ENABLE_IPV6
1174     else
1175       la_size = sizeof(localaddr.sa6);
1176 #endif
1177     memset(&localaddr.sa, 0, (size_t)la_size);
1178     if(getsockname(sock, &localaddr.sa, &la_size) < 0) {
1179       error = SOCKERRNO;
1180       logmsg("getsockname() failed with error: (%d) %s",
1181              error, strerror(error));
1182       sclose(sock);
1183       return CURL_SOCKET_BAD;
1184     }
1185     switch (localaddr.sa.sa_family) {
1186     case AF_INET:
1187       *listenport = ntohs(localaddr.sa4.sin_port);
1188       break;
1189 #ifdef ENABLE_IPV6
1190     case AF_INET6:
1191       *listenport = ntohs(localaddr.sa6.sin6_port);
1192       break;
1193 #endif
1194     default:
1195       break;
1196     }
1197     if(!*listenport) {
1198       /* Real failure, listener port shall not be zero beyond this point. */
1199       logmsg("Apparently getsockname() succeeded, with listener port zero.");
1200       logmsg("A valid reason for this failure is a binary built without");
1201       logmsg("proper network library linkage. This might not be the only");
1202       logmsg("reason, but double check it before anything else.");
1203       sclose(sock);
1204       return CURL_SOCKET_BAD;
1205     }
1206   }
1207
1208   /* bindonly option forces no listening */
1209   if(bind_only) {
1210     logmsg("instructed to bind port without listening");
1211     return sock;
1212   }
1213
1214   /* start accepting connections */
1215   rc = listen(sock, 5);
1216   if(0 != rc) {
1217     error = SOCKERRNO;
1218     logmsg("listen(%d, 5) failed with error: (%d) %s",
1219            sock, error, strerror(error));
1220     sclose(sock);
1221     return CURL_SOCKET_BAD;
1222   }
1223
1224   return sock;
1225 }
1226
1227
1228 int main(int argc, char *argv[])
1229 {
1230   srvr_sockaddr_union_t me;
1231   curl_socket_t sock = CURL_SOCKET_BAD;
1232   curl_socket_t msgsock = CURL_SOCKET_BAD;
1233   int wrotepidfile = 0;
1234   char *pidname= (char *)".sockfilt.pid";
1235   bool juggle_again;
1236   int rc;
1237   int error;
1238   int arg=1;
1239   enum sockmode mode = PASSIVE_LISTEN; /* default */
1240   const char *addr = NULL;
1241
1242   while(argc>arg) {
1243     if(!strcmp("--version", argv[arg])) {
1244       printf("sockfilt IPv4%s\n",
1245 #ifdef ENABLE_IPV6
1246              "/IPv6"
1247 #else
1248              ""
1249 #endif
1250              );
1251       return 0;
1252     }
1253     else if(!strcmp("--verbose", argv[arg])) {
1254       verbose = TRUE;
1255       arg++;
1256     }
1257     else if(!strcmp("--pidfile", argv[arg])) {
1258       arg++;
1259       if(argc>arg)
1260         pidname = argv[arg++];
1261     }
1262     else if(!strcmp("--logfile", argv[arg])) {
1263       arg++;
1264       if(argc>arg)
1265         serverlogfile = argv[arg++];
1266     }
1267     else if(!strcmp("--ipv6", argv[arg])) {
1268 #ifdef ENABLE_IPV6
1269       ipv_inuse = "IPv6";
1270       use_ipv6 = TRUE;
1271 #endif
1272       arg++;
1273     }
1274     else if(!strcmp("--ipv4", argv[arg])) {
1275       /* for completeness, we support this option as well */
1276 #ifdef ENABLE_IPV6
1277       ipv_inuse = "IPv4";
1278       use_ipv6 = FALSE;
1279 #endif
1280       arg++;
1281     }
1282     else if(!strcmp("--bindonly", argv[arg])) {
1283       bind_only = TRUE;
1284       arg++;
1285     }
1286     else if(!strcmp("--port", argv[arg])) {
1287       arg++;
1288       if(argc>arg) {
1289         char *endptr;
1290         unsigned long ulnum = strtoul(argv[arg], &endptr, 10);
1291         if((endptr != argv[arg] + strlen(argv[arg])) ||
1292            ((ulnum != 0UL) && ((ulnum < 1025UL) || (ulnum > 65535UL)))) {
1293           fprintf(stderr, "sockfilt: invalid --port argument (%s)\n",
1294                   argv[arg]);
1295           return 0;
1296         }
1297         port = curlx_ultous(ulnum);
1298         arg++;
1299       }
1300     }
1301     else if(!strcmp("--connect", argv[arg])) {
1302       /* Asked to actively connect to the specified local port instead of
1303          doing a passive server-style listening. */
1304       arg++;
1305       if(argc>arg) {
1306         char *endptr;
1307         unsigned long ulnum = strtoul(argv[arg], &endptr, 10);
1308         if((endptr != argv[arg] + strlen(argv[arg])) ||
1309            (ulnum < 1025UL) || (ulnum > 65535UL)) {
1310           fprintf(stderr, "sockfilt: invalid --connect argument (%s)\n",
1311                   argv[arg]);
1312           return 0;
1313         }
1314         connectport = curlx_ultous(ulnum);
1315         arg++;
1316       }
1317     }
1318     else if(!strcmp("--addr", argv[arg])) {
1319       /* Set an IP address to use with --connect; otherwise use localhost */
1320       arg++;
1321       if(argc>arg) {
1322         addr = argv[arg];
1323         arg++;
1324       }
1325     }
1326     else {
1327       puts("Usage: sockfilt [option]\n"
1328            " --version\n"
1329            " --verbose\n"
1330            " --logfile [file]\n"
1331            " --pidfile [file]\n"
1332            " --ipv4\n"
1333            " --ipv6\n"
1334            " --bindonly\n"
1335            " --port [port]\n"
1336            " --connect [port]\n"
1337            " --addr [address]");
1338       return 0;
1339     }
1340   }
1341
1342 #ifdef WIN32
1343   win32_init();
1344   atexit(win32_cleanup);
1345
1346   setmode(fileno(stdin), O_BINARY);
1347   setmode(fileno(stdout), O_BINARY);
1348   setmode(fileno(stderr), O_BINARY);
1349 #endif
1350
1351   install_signal_handlers();
1352
1353 #ifdef ENABLE_IPV6
1354   if(!use_ipv6)
1355 #endif
1356     sock = socket(AF_INET, SOCK_STREAM, 0);
1357 #ifdef ENABLE_IPV6
1358   else
1359     sock = socket(AF_INET6, SOCK_STREAM, 0);
1360 #endif
1361
1362   if(CURL_SOCKET_BAD == sock) {
1363     error = SOCKERRNO;
1364     logmsg("Error creating socket: (%d) %s",
1365            error, strerror(error));
1366     write_stdout("FAIL\n", 5);
1367     goto sockfilt_cleanup;
1368   }
1369
1370   if(connectport) {
1371     /* Active mode, we should connect to the given port number */
1372     mode = ACTIVE;
1373 #ifdef ENABLE_IPV6
1374     if(!use_ipv6) {
1375 #endif
1376       memset(&me.sa4, 0, sizeof(me.sa4));
1377       me.sa4.sin_family = AF_INET;
1378       me.sa4.sin_port = htons(connectport);
1379       me.sa4.sin_addr.s_addr = INADDR_ANY;
1380       if (!addr)
1381         addr = "127.0.0.1";
1382       Curl_inet_pton(AF_INET, addr, &me.sa4.sin_addr);
1383
1384       rc = connect(sock, &me.sa, sizeof(me.sa4));
1385 #ifdef ENABLE_IPV6
1386     }
1387     else {
1388       memset(&me.sa6, 0, sizeof(me.sa6));
1389       me.sa6.sin6_family = AF_INET6;
1390       me.sa6.sin6_port = htons(connectport);
1391       if (!addr)
1392         addr = "::1";
1393       Curl_inet_pton(AF_INET6, addr, &me.sa6.sin6_addr);
1394
1395       rc = connect(sock, &me.sa, sizeof(me.sa6));
1396     }
1397 #endif /* ENABLE_IPV6 */
1398     if(rc) {
1399       error = SOCKERRNO;
1400       logmsg("Error connecting to port %hu: (%d) %s",
1401              connectport, error, strerror(error));
1402       write_stdout("FAIL\n", 5);
1403       goto sockfilt_cleanup;
1404     }
1405     logmsg("====> Client connect");
1406     msgsock = sock; /* use this as stream */
1407   }
1408   else {
1409     /* passive daemon style */
1410     sock = sockdaemon(sock, &port);
1411     if(CURL_SOCKET_BAD == sock) {
1412       write_stdout("FAIL\n", 5);
1413       goto sockfilt_cleanup;
1414     }
1415     msgsock = CURL_SOCKET_BAD; /* no stream socket yet */
1416   }
1417
1418   logmsg("Running %s version", ipv_inuse);
1419
1420   if(connectport)
1421     logmsg("Connected to port %hu", connectport);
1422   else if(bind_only)
1423     logmsg("Bound without listening on port %hu", port);
1424   else
1425     logmsg("Listening on port %hu", port);
1426
1427   wrotepidfile = write_pidfile(pidname);
1428   if(!wrotepidfile) {
1429     write_stdout("FAIL\n", 5);
1430     goto sockfilt_cleanup;
1431   }
1432
1433   do {
1434     juggle_again = juggle(&msgsock, sock, &mode);
1435   } while(juggle_again);
1436
1437 sockfilt_cleanup:
1438
1439   if((msgsock != sock) && (msgsock != CURL_SOCKET_BAD))
1440     sclose(msgsock);
1441
1442   if(sock != CURL_SOCKET_BAD)
1443     sclose(sock);
1444
1445   if(wrotepidfile)
1446     unlink(pidname);
1447
1448   restore_signal_handlers();
1449
1450   if(got_exit_signal) {
1451     logmsg("============> sockfilt exits with signal (%d)", exit_signal);
1452     /*
1453      * To properly set the return status of the process we
1454      * must raise the same signal SIGINT or SIGTERM that we
1455      * caught and let the old handler take care of it.
1456      */
1457     raise(exit_signal);
1458   }
1459
1460   logmsg("============> sockfilt quits");
1461   return 0;
1462 }
1463