docbook2man-spec.pl: Update the inserted man page banner
[privoxy.git] / jcc.c
1 const char jcc_rcs[] = "$Id: jcc.c,v 1.435 2015/01/24 16:42:57 fabiankeil Exp $";
2 /*********************************************************************
3  *
4  * File        :  $Source: /cvsroot/ijbswa/current/jcc.c,v $
5  *
6  * Purpose     :  Main file.  Contains main() method, main loop, and
7  *                the main connection-handling function.
8  *
9  * Copyright   :  Written by and Copyright (C) 2001-2014 the
10  *                Privoxy team. http://www.privoxy.org/
11  *
12  *                Based on the Internet Junkbuster originally written
13  *                by and Copyright (C) 1997 Anonymous Coders and
14  *                Junkbusters Corporation.  http://www.junkbusters.com
15  *
16  *                This program is free software; you can redistribute it
17  *                and/or modify it under the terms of the GNU General
18  *                Public License as published by the Free Software
19  *                Foundation; either version 2 of the License, or (at
20  *                your option) any later version.
21  *
22  *                This program is distributed in the hope that it will
23  *                be useful, but WITHOUT ANY WARRANTY; without even the
24  *                implied warranty of MERCHANTABILITY or FITNESS FOR A
25  *                PARTICULAR PURPOSE.  See the GNU General Public
26  *                License for more details.
27  *
28  *                The GNU General Public License should be included with
29  *                this file.  If not, you can view it at
30  *                http://www.gnu.org/copyleft/gpl.html
31  *                or write to the Free Software Foundation, Inc., 59
32  *                Temple Place - Suite 330, Boston, MA  02111-1307, USA.
33  *
34  *********************************************************************/
35
36
37 #include "config.h"
38
39 #include <stdio.h>
40 #include <sys/types.h>
41 #include <stdlib.h>
42 #include <string.h>
43 #include <signal.h>
44 #include <fcntl.h>
45 #include <errno.h>
46 #include <assert.h>
47
48 #ifdef _WIN32
49 # ifndef FEATURE_PTHREAD
50 #  ifndef STRICT
51 #   define STRICT
52 #  endif
53 #  include <windows.h>
54 #  include <process.h>
55 # endif /* ndef FEATURE_PTHREAD */
56
57 # include "win32.h"
58 # ifndef _WIN_CONSOLE
59 #  include "w32log.h"
60 # endif /* ndef _WIN_CONSOLE */
61 # include "w32svrapi.h"
62
63 #else /* ifndef _WIN32 */
64
65 # if !defined (__OS2__)
66 # include <unistd.h>
67 # include <sys/wait.h>
68 # endif /* ndef __OS2__ */
69 # include <sys/time.h>
70 # include <sys/stat.h>
71 # include <sys/ioctl.h>
72
73 #ifdef sun
74 #include <sys/termios.h>
75 #endif /* sun */
76
77 #ifdef unix
78 #include <pwd.h>
79 #include <grp.h>
80 #endif
81
82 # include <signal.h>
83
84 # ifdef __BEOS__
85 #  include <socket.h>  /* BeOS has select() for sockets only. */
86 #  include <OS.h>      /* declarations for threads and stuff. */
87 # endif
88
89 # if defined(__EMX__) || defined(__OS2__)
90 #  include <sys/select.h>  /* OS/2/EMX needs a little help with select */
91 # endif
92 # ifdef __OS2__
93 #define INCL_DOS
94 # include <os2.h>
95 #define bzero(B,N) memset(B,0x00,n)
96 # endif
97
98 # ifndef FD_ZERO
99 #  include <select.h>
100 # endif
101
102 #endif
103
104 #include "project.h"
105 #include "list.h"
106 #include "jcc.h"
107 #include "filters.h"
108 #include "loaders.h"
109 #include "parsers.h"
110 #include "miscutil.h"
111 #include "errlog.h"
112 #include "jbsockets.h"
113 #include "gateway.h"
114 #include "actions.h"
115 #include "cgi.h"
116 #include "loadcfg.h"
117 #include "urlmatch.h"
118
119 const char jcc_h_rcs[] = JCC_H_VERSION;
120 const char project_h_rcs[] = PROJECT_H_VERSION;
121
122 int daemon_mode = 1;
123 struct client_states clients[1];
124 struct file_list     files[1];
125
126 #ifdef FEATURE_STATISTICS
127 int urls_read     = 0;     /* total nr of urls read inc rejected */
128 int urls_rejected = 0;     /* total nr of urls rejected */
129 #endif /* def FEATURE_STATISTICS */
130
131 #ifdef FEATURE_GRACEFUL_TERMINATION
132 int g_terminate = 0;
133 #endif
134
135 #if !defined(_WIN32) && !defined(__OS2__) && !defined(AMIGA)
136 static void sig_handler(int the_signal);
137 #endif
138 static int client_protocol_is_unsupported(const struct client_state *csp, char *req);
139 static jb_err get_request_destination_elsewhere(struct client_state *csp, struct list *headers);
140 static jb_err get_server_headers(struct client_state *csp);
141 static const char *crunch_reason(const struct http_response *rsp);
142 static void send_crunch_response(const struct client_state *csp, struct http_response *rsp);
143 static char *get_request_line(struct client_state *csp);
144 static jb_err receive_client_request(struct client_state *csp);
145 static jb_err parse_client_request(struct client_state *csp);
146 static void build_request_line(struct client_state *csp, const struct forward_spec *fwd, char **request_line);
147 static jb_err change_request_destination(struct client_state *csp);
148 static void chat(struct client_state *csp);
149 static void serve(struct client_state *csp);
150 #if !defined(_WIN32) || defined(_WIN_CONSOLE)
151 static void usage(const char *myname);
152 #endif
153 static void initialize_mutexes(void);
154 static jb_socket bind_port_helper(const char *haddr, int hport);
155 static void bind_ports_helper(struct configuration_spec *config, jb_socket sockets[]);
156 static void close_ports_helper(jb_socket sockets[]);
157 static void listen_loop(void);
158
159 #ifdef AMIGA
160 void serve(struct client_state *csp);
161 #else /* ifndef AMIGA */
162 static void serve(struct client_state *csp);
163 #endif /* def AMIGA */
164
165 #ifdef __BEOS__
166 static int32 server_thread(void *data);
167 #endif /* def __BEOS__ */
168
169 #ifdef _WIN32
170 #define sleep(N)  Sleep(((N) * 1000))
171 #endif
172
173 #ifdef __OS2__
174 #define sleep(N)  DosSleep(((N) * 100))
175 #endif
176
177 #ifdef MUTEX_LOCKS_AVAILABLE
178 /*
179  * XXX: Does the locking stuff really belong in this file?
180  */
181 privoxy_mutex_t log_mutex;
182 privoxy_mutex_t log_init_mutex;
183 privoxy_mutex_t connection_reuse_mutex;
184
185 #ifdef FEATURE_EXTERNAL_FILTERS
186 privoxy_mutex_t external_filter_mutex;
187 #endif
188
189 #if !defined(HAVE_GETHOSTBYADDR_R) || !defined(HAVE_GETHOSTBYNAME_R)
190 privoxy_mutex_t resolver_mutex;
191 #endif /* !defined(HAVE_GETHOSTBYADDR_R) || !defined(HAVE_GETHOSTBYNAME_R) */
192
193 #ifndef HAVE_GMTIME_R
194 privoxy_mutex_t gmtime_mutex;
195 #endif /* ndef HAVE_GMTIME_R */
196
197 #ifndef HAVE_LOCALTIME_R
198 privoxy_mutex_t localtime_mutex;
199 #endif /* ndef HAVE_GMTIME_R */
200
201 #ifndef HAVE_RANDOM
202 privoxy_mutex_t rand_mutex;
203 #endif /* ndef HAVE_RANDOM */
204
205 #endif /* def MUTEX_LOCKS_AVAILABLE */
206
207 #if defined(unix)
208 const char *basedir = NULL;
209 const char *pidfile = NULL;
210 static int received_hup_signal = 0;
211 #endif /* defined unix */
212
213 /* HTTP snipplets. */
214 static const char CSUCCEED[] =
215    "HTTP/1.1 200 Connection established\r\n"
216    "Proxy-Agent: Privoxy/" VERSION "\r\n\r\n";
217
218 static const char CHEADER[] =
219    "HTTP/1.1 400 Invalid header received from client\r\n"
220    "Proxy-Agent: Privoxy " VERSION "\r\n"
221    "Content-Type: text/plain\r\n"
222    "Connection: close\r\n\r\n"
223    "Invalid header received from client.\r\n";
224
225 static const char FTP_RESPONSE[] =
226    "HTTP/1.1 400 Invalid request received from client\r\n"
227    "Content-Type: text/plain\r\n"
228    "Connection: close\r\n\r\n"
229    "Invalid request. Privoxy doesn't support FTP.\r\n";
230
231 static const char GOPHER_RESPONSE[] =
232    "HTTP/1.1 400 Invalid request received from client\r\n"
233    "Content-Type: text/plain\r\n"
234    "Connection: close\r\n\r\n"
235    "Invalid request. Privoxy doesn't support gopher.\r\n";
236
237 /* XXX: should be a template */
238 static const char MISSING_DESTINATION_RESPONSE[] =
239    "HTTP/1.1 400 Bad request received from client\r\n"
240    "Proxy-Agent: Privoxy " VERSION "\r\n"
241    "Content-Type: text/plain\r\n"
242    "Connection: close\r\n\r\n"
243    "Bad request. Privoxy was unable to extract the destination.\r\n";
244
245 /* XXX: should be a template */
246 static const char INVALID_SERVER_HEADERS_RESPONSE[] =
247    "HTTP/1.1 502 Server or forwarder response invalid\r\n"
248    "Proxy-Agent: Privoxy " VERSION "\r\n"
249    "Content-Type: text/plain\r\n"
250    "Connection: close\r\n\r\n"
251    "Bad response. The server or forwarder response doesn't look like HTTP.\r\n";
252
253 /* XXX: should be a template */
254 static const char MESSED_UP_REQUEST_RESPONSE[] =
255    "HTTP/1.1 400 Malformed request after rewriting\r\n"
256    "Proxy-Agent: Privoxy " VERSION "\r\n"
257    "Content-Type: text/plain\r\n"
258    "Connection: close\r\n\r\n"
259    "Bad request. Messed up with header filters.\r\n";
260
261 static const char TOO_MANY_CONNECTIONS_RESPONSE[] =
262    "HTTP/1.1 503 Too many open connections\r\n"
263    "Proxy-Agent: Privoxy " VERSION "\r\n"
264    "Content-Type: text/plain\r\n"
265    "Connection: close\r\n\r\n"
266    "Maximum number of open connections reached.\r\n";
267
268 static const char CLIENT_CONNECTION_TIMEOUT_RESPONSE[] =
269    "HTTP/1.1 504 Connection timeout\r\n"
270    "Proxy-Agent: Privoxy " VERSION "\r\n"
271    "Content-Type: text/plain\r\n"
272    "Connection: close\r\n\r\n"
273    "The connection timed out because the client request didn't arrive in time.\r\n";
274
275 static const char CLIENT_BODY_PARSE_ERROR_RESPONSE[] =
276    "HTTP/1.1 400 Failed reading client body\r\n"
277    "Proxy-Agent: Privoxy " VERSION "\r\n"
278    "Content-Type: text/plain\r\n"
279    "Connection: close\r\n\r\n"
280    "Failed parsing or buffering the chunk-encoded client body.\r\n";
281
282 static const char UNSUPPORTED_CLIENT_EXPECTATION_ERROR_RESPONSE[] =
283    "HTTP/1.1 417 Expecting too much\r\n"
284    "Proxy-Agent: Privoxy " VERSION "\r\n"
285    "Content-Type: text/plain\r\n"
286    "Connection: close\r\n\r\n"
287    "Privoxy detected an unsupported Expect header value.\r\n";
288
289 /* A function to crunch a response */
290 typedef struct http_response *(*crunch_func_ptr)(struct client_state *);
291
292 /* Crunch function flags */
293 #define CF_NO_FLAGS        0
294 /* Cruncher applies to forced requests as well */
295 #define CF_IGNORE_FORCE    1
296 /* Crunched requests are counted for the block statistics */
297 #define CF_COUNT_AS_REJECT 2
298
299 /* A crunch function and its flags */
300 struct cruncher
301 {
302    const crunch_func_ptr cruncher;
303    const int flags;
304 };
305
306 static int crunch_response_triggered(struct client_state *csp, const struct cruncher crunchers[]);
307
308 /* Complete list of cruncher functions */
309 static const struct cruncher crunchers_all[] = {
310    { direct_response, CF_COUNT_AS_REJECT|CF_IGNORE_FORCE},
311    { block_url,       CF_COUNT_AS_REJECT },
312 #ifdef FEATURE_TRUST
313    { trust_url,       CF_COUNT_AS_REJECT },
314 #endif /* def FEATURE_TRUST */
315    { redirect_url,    CF_NO_FLAGS  },
316    { dispatch_cgi,    CF_IGNORE_FORCE},
317    { NULL,            0 }
318 };
319
320 /* Light version, used after tags are applied */
321 static const struct cruncher crunchers_light[] = {
322    { block_url,       CF_COUNT_AS_REJECT },
323    { redirect_url,    CF_NO_FLAGS },
324    { NULL,            0 }
325 };
326
327
328 /*
329  * XXX: Don't we really mean
330  *
331  * #if defined(unix)
332  *
333  * here?
334  */
335 #if !defined(_WIN32) && !defined(__OS2__) && !defined(AMIGA)
336 /*********************************************************************
337  *
338  * Function    :  sig_handler
339  *
340  * Description :  Signal handler for different signals.
341  *                Exit gracefully on TERM and INT
342  *                or set a flag that will cause the errlog
343  *                to be reopened by the main thread on HUP.
344  *
345  * Parameters  :
346  *          1  :  the_signal = the signal cause this function to call
347  *
348  * Returns     :  -
349  *
350  *********************************************************************/
351 static void sig_handler(int the_signal)
352 {
353    switch(the_signal)
354    {
355       case SIGTERM:
356       case SIGINT:
357          log_error(LOG_LEVEL_INFO, "exiting by signal %d .. bye", the_signal);
358 #if defined(unix)
359          if (pidfile)
360          {
361             unlink(pidfile);
362          }
363 #endif /* unix */
364          exit(the_signal);
365          break;
366
367       case SIGHUP:
368 #if defined(unix)
369          received_hup_signal = 1;
370 #endif
371          break;
372
373       default:
374          /*
375           * We shouldn't be here, unless we catch signals
376           * in main() that we can't handle here!
377           */
378          log_error(LOG_LEVEL_FATAL, "sig_handler: exiting on unexpected signal %d", the_signal);
379    }
380    return;
381
382 }
383 #endif
384
385
386 /*********************************************************************
387  *
388  * Function    :  client_protocol_is_unsupported
389  *
390  * Description :  Checks if the client used a known unsupported
391  *                protocol and deals with it by sending an error
392  *                response.
393  *
394  * Parameters  :
395  *          1  :  csp = Current client state (buffers, headers, etc...)
396  *          2  :  req = the first request line send by the client
397  *
398  * Returns     :  TRUE if an error response has been generated, or
399  *                FALSE if the request doesn't look invalid.
400  *
401  *********************************************************************/
402 static int client_protocol_is_unsupported(const struct client_state *csp, char *req)
403 {
404    /*
405     * If it's a FTP or gopher request, we don't support it.
406     *
407     * These checks are better than nothing, but they might
408     * not work in all configurations and some clients might
409     * have problems digesting the answer.
410     *
411     * They should, however, never cause more problems than
412     * Privoxy's old behaviour (returning the misleading HTML
413     * error message:
414     *
415     * "Could not resolve http://(ftp|gopher)://example.org").
416     */
417    if (!strncmpic(req, "GET ftp://", 10) || !strncmpic(req, "GET gopher://", 13))
418    {
419       const char *response = NULL;
420       const char *protocol = NULL;
421
422       if (!strncmpic(req, "GET ftp://", 10))
423       {
424          response = FTP_RESPONSE;
425          protocol = "FTP";
426       }
427       else
428       {
429          response = GOPHER_RESPONSE;
430          protocol = "GOPHER";
431       }
432       log_error(LOG_LEVEL_ERROR,
433          "%s tried to use Privoxy as %s proxy: %s",
434          csp->ip_addr_str, protocol, req);
435       log_error(LOG_LEVEL_CLF,
436          "%s - - [%T] \"%s\" 400 0", csp->ip_addr_str, req);
437       freez(req);
438       write_socket(csp->cfd, response, strlen(response));
439
440       return TRUE;
441    }
442
443    return FALSE;
444 }
445
446
447 /*********************************************************************
448  *
449  * Function    :  client_has_unsupported_expectations
450  *
451  * Description :  Checks if the client used an unsupported expectation
452  *                in which case an error message is delivered.
453  *
454  * Parameters  :
455  *          1  :  csp = Current client state (buffers, headers, etc...)
456  *
457  * Returns     :  TRUE if an error response has been generated, or
458  *                FALSE if the request doesn't look invalid.
459  *
460  *********************************************************************/
461 static int client_has_unsupported_expectations(const struct client_state *csp)
462 {
463    if ((csp->flags & CSP_FLAG_UNSUPPORTED_CLIENT_EXPECTATION))
464    {
465       log_error(LOG_LEVEL_ERROR,
466          "Rejecting request from client %s with unsupported Expect header value",
467          csp->ip_addr_str);
468       log_error(LOG_LEVEL_CLF,
469          "%s - - [%T] \"%s\" 417 0", csp->ip_addr_str, csp->http->cmd);
470       write_socket(csp->cfd, UNSUPPORTED_CLIENT_EXPECTATION_ERROR_RESPONSE,
471          strlen(UNSUPPORTED_CLIENT_EXPECTATION_ERROR_RESPONSE));
472
473       return TRUE;
474    }
475
476    return FALSE;
477
478 }
479
480
481 /*********************************************************************
482  *
483  * Function    :  get_request_destination_elsewhere
484  *
485  * Description :  If the client's request was redirected into
486  *                Privoxy without the client's knowledge,
487  *                the request line lacks the destination host.
488  *
489  *                This function tries to get it elsewhere,
490  *                provided accept-intercepted-requests is enabled.
491  *
492  *                "Elsewhere" currently only means "Host: header",
493  *                but in the future we may ask the redirecting
494  *                packet filter to look the destination up.
495  *
496  *                If the destination stays unknown, an error
497  *                response is send to the client and headers
498  *                are freed so that chat() can return directly.
499  *
500  * Parameters  :
501  *          1  :  csp = Current client state (buffers, headers, etc...)
502  *          2  :  headers = a header list
503  *
504  * Returns     :  JB_ERR_OK if the destination is now known, or
505  *                JB_ERR_PARSE if it isn't.
506  *
507  *********************************************************************/
508 static jb_err get_request_destination_elsewhere(struct client_state *csp, struct list *headers)
509 {
510    char *req;
511
512    if (!(csp->config->feature_flags & RUNTIME_FEATURE_ACCEPT_INTERCEPTED_REQUESTS))
513    {
514       log_error(LOG_LEVEL_ERROR, "%s's request: \'%s\' is invalid."
515          " Privoxy isn't configured to accept intercepted requests.",
516          csp->ip_addr_str, csp->http->cmd);
517       /* XXX: Use correct size */
518       log_error(LOG_LEVEL_CLF, "%s - - [%T] \"%s\" 400 0",
519          csp->ip_addr_str, csp->http->cmd);
520
521       write_socket(csp->cfd, CHEADER, strlen(CHEADER));
522       destroy_list(headers);
523
524       return JB_ERR_PARSE;
525    }
526    else if (JB_ERR_OK == get_destination_from_headers(headers, csp->http))
527    {
528 #ifndef FEATURE_EXTENDED_HOST_PATTERNS
529       /* Split the domain we just got for pattern matching */
530       init_domain_components(csp->http);
531 #endif
532
533       return JB_ERR_OK;
534    }
535    else
536    {
537       /* We can't work without destination. Go spread the news.*/
538
539       req = list_to_text(headers);
540       chomp(req);
541       /* XXX: Use correct size */
542       log_error(LOG_LEVEL_CLF, "%s - - [%T] \"%s\" 400 0",
543          csp->ip_addr_str, csp->http->cmd);
544       log_error(LOG_LEVEL_ERROR,
545          "Privoxy was unable to get the destination for %s's request:\n%s\n%s",
546          csp->ip_addr_str, csp->http->cmd, req);
547       freez(req);
548
549       write_socket(csp->cfd, MISSING_DESTINATION_RESPONSE, strlen(MISSING_DESTINATION_RESPONSE));
550       destroy_list(headers);
551
552       return JB_ERR_PARSE;
553    }
554    /*
555     * TODO: If available, use PF's ioctl DIOCNATLOOK as last resort
556     * to get the destination IP address, use it as host directly
557     * or do a reverse DNS lookup first.
558     */
559 }
560
561
562 /*********************************************************************
563  *
564  * Function    :  get_server_headers
565  *
566  * Description :  Parses server headers in iob and fills them
567  *                into csp->headers so that they can later be
568  *                handled by sed().
569  *
570  * Parameters  :
571  *          1  :  csp = Current client state (buffers, headers, etc...)
572  *
573  * Returns     :  JB_ERR_OK if everything went fine, or
574  *                JB_ERR_PARSE if the headers were incomplete.
575  *
576  *********************************************************************/
577 static jb_err get_server_headers(struct client_state *csp)
578 {
579    int continue_hack_in_da_house = 0;
580    char * header;
581
582    while (((header = get_header(csp->iob)) != NULL) || continue_hack_in_da_house)
583    {
584       if (header == NULL)
585       {
586          /*
587           * continue hack in da house. Ignore the ending of
588           * this head and continue enlisting header lines.
589           * The reason is described below.
590           */
591          enlist(csp->headers, "");
592          continue_hack_in_da_house = 0;
593          continue;
594       }
595       else if (0 == strncmpic(header, "HTTP/1.1 100", 12))
596       {
597          /*
598           * It's a bodyless continue response, don't
599           * stop header parsing after reaching its end.
600           *
601           * As a result Privoxy will concatenate the
602           * next response's head and parse and deliver
603           * the headers as if they belonged to one request.
604           *
605           * The client will separate them because of the
606           * empty line between them.
607           *
608           * XXX: What we're doing here is clearly against
609           * the intended purpose of the continue header,
610           * and under some conditions (HTTP/1.0 client request)
611           * it's a standard violation.
612           *
613           * Anyway, "sort of against the spec" is preferable
614           * to "always getting confused by Continue responses"
615           * (Privoxy's behaviour before this hack was added)
616           */
617          log_error(LOG_LEVEL_HEADER, "Continue hack in da house.");
618          continue_hack_in_da_house = 1;
619       }
620       else if (*header == '\0')
621       {
622          /*
623           * If the header is empty, but the Continue hack
624           * isn't active, we can assume that we reached the
625           * end of the buffer before we hit the end of the
626           * head.
627           *
628           * Inform the caller an let it decide how to handle it.
629           */
630          return JB_ERR_PARSE;
631       }
632
633       if (JB_ERR_MEMORY == enlist(csp->headers, header))
634       {
635          /*
636           * XXX: Should we quit the request and return a
637           * out of memory error page instead?
638           */
639          log_error(LOG_LEVEL_ERROR,
640             "Out of memory while enlisting server headers. %s lost.",
641             header);
642       }
643       freez(header);
644    }
645
646    return JB_ERR_OK;
647 }
648
649
650 /*********************************************************************
651  *
652  * Function    :  crunch_reason
653  *
654  * Description :  Translates the crunch reason code into a string.
655  *
656  * Parameters  :
657  *          1  :  rsp = a http_response
658  *
659  * Returns     :  A string with the crunch reason or an error description.
660  *
661  *********************************************************************/
662 static const char *crunch_reason(const struct http_response *rsp)
663 {
664    char * reason = NULL;
665
666    assert(rsp != NULL);
667    if (rsp == NULL)
668    {
669       return "Internal error while searching for crunch reason";
670    }
671
672    switch (rsp->crunch_reason)
673    {
674       case UNSUPPORTED:
675          reason = "Unsupported HTTP feature";
676          break;
677       case BLOCKED:
678          reason = "Blocked";
679          break;
680       case UNTRUSTED:
681          reason = "Untrusted";
682          break;
683       case REDIRECTED:
684          reason = "Redirected";
685          break;
686       case CGI_CALL:
687          reason = "CGI Call";
688          break;
689       case NO_SUCH_DOMAIN:
690          reason = "DNS failure";
691          break;
692       case FORWARDING_FAILED:
693          reason = "Forwarding failed";
694          break;
695       case CONNECT_FAILED:
696          reason = "Connection failure";
697          break;
698       case OUT_OF_MEMORY:
699          reason = "Out of memory (may mask other reasons)";
700          break;
701       case CONNECTION_TIMEOUT:
702          reason = "Connection timeout";
703          break;
704       case NO_SERVER_DATA:
705          reason = "No server data received";
706          break;
707       default:
708          reason = "No reason recorded";
709          break;
710    }
711
712    return reason;
713 }
714
715
716 /*********************************************************************
717  *
718  * Function    :  log_applied_actions
719  *
720  * Description :  Logs the applied actions if LOG_LEVEL_ACTIONS is
721  *                enabled.
722  *
723  * Parameters  :
724  *          1  :  actions = Current action spec to log
725  *
726  * Returns     :  Nothing.
727  *
728  *********************************************************************/
729 static void log_applied_actions(const struct current_action_spec *actions)
730 {
731    /*
732     * The conversion to text requires lots of memory allocations so
733     * we only do the conversion if the user is actually interested.
734     */
735    if (debug_level_is_enabled(LOG_LEVEL_ACTIONS))
736    {
737       char *actions_as_text = actions_to_line_of_text(actions);
738       log_error(LOG_LEVEL_ACTIONS, "%s", actions_as_text);
739       freez(actions_as_text);
740    }
741 }
742
743
744 /*********************************************************************
745  *
746  * Function    :  send_crunch_response
747  *
748  * Description :  Delivers already prepared response for
749  *                intercepted requests, logs the interception
750  *                and frees the response.
751  *
752  * Parameters  :
753  *          1  :  csp = Current client state (buffers, headers, etc...)
754  *          1  :  rsp = Fully prepared response. Will be freed on exit.
755  *
756  * Returns     :  Nothing.
757  *
758  *********************************************************************/
759 static void send_crunch_response(const struct client_state *csp, struct http_response *rsp)
760 {
761       const struct http_request *http = csp->http;
762       char status_code[4];
763
764       assert(rsp != NULL);
765       assert(rsp->head != NULL);
766
767       if (rsp == NULL)
768       {
769          log_error(LOG_LEVEL_FATAL, "NULL response in send_crunch_response.");
770       }
771
772       /*
773        * Extract the status code from the actual head
774        * that will be send to the client. It is the only
775        * way to get it right for all requests, including
776        * the fixed ones for out-of-memory problems.
777        *
778        * A head starts like this: 'HTTP/1.1 200...'
779        *                           0123456789|11
780        *                                     10
781        */
782       status_code[0] = rsp->head[9];
783       status_code[1] = rsp->head[10];
784       status_code[2] = rsp->head[11];
785       status_code[3] = '\0';
786
787       /* Log that the request was crunched and why. */
788       log_applied_actions(csp->action);
789       log_error(LOG_LEVEL_CRUNCH, "%s: %s", crunch_reason(rsp), http->url);
790       log_error(LOG_LEVEL_CLF, "%s - - [%T] \"%s\" %s %u",
791          csp->ip_addr_str, http->ocmd, status_code, rsp->content_length);
792
793       /* Write the answer to the client */
794       if (write_socket(csp->cfd, rsp->head, rsp->head_length)
795        || write_socket(csp->cfd, rsp->body, rsp->content_length))
796       {
797          /* There is nothing we can do about it. */
798          log_error(LOG_LEVEL_ERROR,
799             "Couldn't deliver the error message through client socket %d: %E",
800             csp->cfd);
801       }
802
803       /* Clean up and return */
804       if (cgi_error_memory() != rsp)
805       {
806          free_http_response(rsp);
807       }
808       return;
809 }
810
811
812 /*********************************************************************
813  *
814  * Function    :  crunch_response_triggered
815  *
816  * Description :  Checks if the request has to be crunched,
817  *                and delivers the crunch response if necessary.
818  *
819  * Parameters  :
820  *          1  :  csp = Current client state (buffers, headers, etc...)
821  *          2  :  crunchers = list of cruncher functions to run
822  *
823  * Returns     :  TRUE if the request was answered with a crunch response
824  *                FALSE otherwise.
825  *
826  *********************************************************************/
827 static int crunch_response_triggered(struct client_state *csp, const struct cruncher crunchers[])
828 {
829    struct http_response *rsp = NULL;
830    const struct cruncher *c;
831
832    /*
833     * If CGI request crunching is disabled,
834     * check the CGI dispatcher out of order to
835     * prevent unintentional blocks or redirects.
836     */
837    if (!(csp->config->feature_flags & RUNTIME_FEATURE_CGI_CRUNCHING)
838        && (NULL != (rsp = dispatch_cgi(csp))))
839    {
840       /* Deliver, log and free the interception response. */
841       send_crunch_response(csp, rsp);
842       csp->flags |= CSP_FLAG_CRUNCHED;
843       return TRUE;
844    }
845
846    for (c = crunchers; c->cruncher != NULL; c++)
847    {
848       /*
849        * Check the cruncher if either Privoxy is toggled
850        * on and the request isn't forced, or if the cruncher
851        * applies to forced requests as well.
852        */
853       if (((csp->flags & CSP_FLAG_TOGGLED_ON) &&
854           !(csp->flags & CSP_FLAG_FORCED)) ||
855           (c->flags & CF_IGNORE_FORCE))
856       {
857          rsp = c->cruncher(csp);
858          if (NULL != rsp)
859          {
860             /* Deliver, log and free the interception response. */
861             send_crunch_response(csp, rsp);
862             csp->flags |= CSP_FLAG_CRUNCHED;
863 #ifdef FEATURE_STATISTICS
864             if (c->flags & CF_COUNT_AS_REJECT)
865             {
866                csp->flags |= CSP_FLAG_REJECTED;
867             }
868 #endif /* def FEATURE_STATISTICS */
869
870             return TRUE;
871          }
872       }
873    }
874
875    return FALSE;
876 }
877
878
879 /*********************************************************************
880  *
881  * Function    :  build_request_line
882  *
883  * Description :  Builds the HTTP request line.
884  *
885  *                If a HTTP forwarder is used it expects the whole URL,
886  *                web servers only get the path.
887  *
888  * Parameters  :
889  *          1  :  csp = Current client state (buffers, headers, etc...)
890  *          2  :  fwd = The forwarding spec used for the request
891  *                XXX: Should use http->fwd instead.
892  *          3  :  request_line = The old request line which will be replaced.
893  *
894  * Returns     :  Nothing. Terminates in case of memory problems.
895  *
896  *********************************************************************/
897 static void build_request_line(struct client_state *csp, const struct forward_spec *fwd, char **request_line)
898 {
899    struct http_request *http = csp->http;
900
901    assert(http->ssl == 0);
902
903    /*
904     * Downgrade http version from 1.1 to 1.0
905     * if +downgrade action applies.
906     */
907    if ((csp->action->flags & ACTION_DOWNGRADE)
908      && (!strcmpic(http->ver, "HTTP/1.1")))
909    {
910       freez(http->ver);
911       http->ver = strdup_or_die("HTTP/1.0");
912    }
913
914    /*
915     * Rebuild the request line.
916     */
917    freez(*request_line);
918    *request_line = strdup(http->gpc);
919    string_append(request_line, " ");
920
921    if (fwd->forward_host)
922    {
923       string_append(request_line, http->url);
924    }
925    else
926    {
927       string_append(request_line, http->path);
928    }
929    string_append(request_line, " ");
930    string_append(request_line, http->ver);
931
932    if (*request_line == NULL)
933    {
934       log_error(LOG_LEVEL_FATAL, "Out of memory writing HTTP command");
935    }
936    log_error(LOG_LEVEL_HEADER, "New HTTP Request-Line: %s", *request_line);
937 }
938
939
940 /*********************************************************************
941  *
942  * Function    :  change_request_destination
943  *
944  * Description :  Parse a (rewritten) request line and regenerate
945  *                the http request data.
946  *
947  * Parameters  :
948  *          1  :  csp = Current client state (buffers, headers, etc...)
949  *
950  * Returns     :  Forwards the parse_http_request() return code.
951  *                Terminates in case of memory problems.
952  *
953  *********************************************************************/
954 static jb_err change_request_destination(struct client_state *csp)
955 {
956    struct http_request *http = csp->http;
957    jb_err err;
958
959    log_error(LOG_LEVEL_REDIRECTS, "Rewrite detected: %s",
960       csp->headers->first->str);
961    free_http_request(http);
962    err = parse_http_request(csp->headers->first->str, http);
963    if (JB_ERR_OK != err)
964    {
965       log_error(LOG_LEVEL_ERROR, "Couldn't parse rewritten request: %s.",
966          jb_err_to_string(err));
967    }
968
969    return err;
970 }
971
972
973 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
974 /*********************************************************************
975  *
976  * Function    :  server_response_is_complete
977  *
978  * Description :  Determines whether we should stop reading
979  *                from the server socket.
980  *
981  * Parameters  :
982  *          1  :  csp = Current client state (buffers, headers, etc...)
983  *          2  :  content_length = Length of content received so far.
984  *
985  * Returns     :  TRUE if the response is complete,
986  *                FALSE otherwise.
987  *
988  *********************************************************************/
989 static int server_response_is_complete(struct client_state *csp,
990    unsigned long long content_length)
991 {
992    int content_length_known = !!(csp->flags & CSP_FLAG_CONTENT_LENGTH_SET);
993
994    if (!strcmpic(csp->http->gpc, "HEAD"))
995    {
996       /*
997        * "HEAD" implies no body, we are thus expecting
998        * no content. XXX: incomplete "list" of methods?
999        */
1000       csp->expected_content_length = 0;
1001       content_length_known = TRUE;
1002       csp->flags |= CSP_FLAG_SERVER_CONTENT_LENGTH_SET;
1003    }
1004
1005    if (csp->http->status == 204 || csp->http->status == 304)
1006    {
1007       /*
1008        * Expect no body. XXX: incomplete "list" of status codes?
1009        */
1010       csp->expected_content_length = 0;
1011       content_length_known = TRUE;
1012       csp->flags |= CSP_FLAG_SERVER_CONTENT_LENGTH_SET;
1013    }
1014
1015    return (content_length_known && ((0 == csp->expected_content_length)
1016             || (csp->expected_content_length <= content_length)));
1017 }
1018
1019
1020 #ifdef FEATURE_CONNECTION_SHARING
1021 /*********************************************************************
1022  *
1023  * Function    :  wait_for_alive_connections
1024  *
1025  * Description :  Waits for alive connections to timeout.
1026  *
1027  * Parameters  :  N/A
1028  *
1029  * Returns     :  N/A
1030  *
1031  *********************************************************************/
1032 static void wait_for_alive_connections(void)
1033 {
1034    int connections_alive = close_unusable_connections();
1035
1036    while (0 < connections_alive)
1037    {
1038       log_error(LOG_LEVEL_CONNECT,
1039          "Waiting for %d connections to timeout.",
1040          connections_alive);
1041       sleep(60);
1042       connections_alive = close_unusable_connections();
1043    }
1044
1045    log_error(LOG_LEVEL_CONNECT, "No connections to wait for left.");
1046
1047 }
1048 #endif /* def FEATURE_CONNECTION_SHARING */
1049
1050
1051 /*********************************************************************
1052  *
1053  * Function    :  save_connection_destination
1054  *
1055  * Description :  Remembers a connection for reuse later on.
1056  *
1057  * Parameters  :
1058  *          1  :  sfd  = Open socket to remember.
1059  *          2  :  http = The destination for the connection.
1060  *          3  :  fwd  = The forwarder settings used.
1061  *          3  :  server_connection  = storage.
1062  *
1063  * Returns     : void
1064  *
1065  *********************************************************************/
1066 void save_connection_destination(jb_socket sfd,
1067                                  const struct http_request *http,
1068                                  const struct forward_spec *fwd,
1069                                  struct reusable_connection *server_connection)
1070 {
1071    assert(sfd != JB_INVALID_SOCKET);
1072    assert(NULL != http->host);
1073
1074    server_connection->sfd = sfd;
1075    server_connection->host = strdup_or_die(http->host);
1076    server_connection->port = http->port;
1077
1078    assert(NULL != fwd);
1079    assert(server_connection->gateway_host == NULL);
1080    assert(server_connection->gateway_port == 0);
1081    assert(server_connection->forwarder_type == 0);
1082    assert(server_connection->forward_host == NULL);
1083    assert(server_connection->forward_port == 0);
1084
1085    server_connection->forwarder_type = fwd->type;
1086    if (NULL != fwd->gateway_host)
1087    {
1088       server_connection->gateway_host = strdup_or_die(fwd->gateway_host);
1089    }
1090    else
1091    {
1092       server_connection->gateway_host = NULL;
1093    }
1094    server_connection->gateway_port = fwd->gateway_port;
1095
1096    if (NULL != fwd->forward_host)
1097    {
1098       server_connection->forward_host = strdup_or_die(fwd->forward_host);
1099    }
1100    else
1101    {
1102       server_connection->forward_host = NULL;
1103    }
1104    server_connection->forward_port = fwd->forward_port;
1105 }
1106
1107
1108 /*********************************************************************
1109  *
1110  * Function    : verify_request_length
1111  *
1112  * Description : Checks if we already got the whole client requests
1113  *               and sets CSP_FLAG_CLIENT_REQUEST_COMPLETELY_READ if
1114  *               we do.
1115  *
1116  *               Data that doesn't belong to the current request is
1117  *               either thrown away to let the client retry on a clean
1118  *               socket, or stashed to be dealt with after the current
1119  *               request is served.
1120  *
1121  * Parameters  :
1122  *          1  :  csp = Current client state (buffers, headers, etc...)
1123  *
1124  * Returns     :  void
1125  *
1126  *********************************************************************/
1127 static void verify_request_length(struct client_state *csp)
1128 {
1129    unsigned long long buffered_request_bytes =
1130       (unsigned long long)(csp->client_iob->eod - csp->client_iob->cur);
1131
1132    if ((csp->expected_client_content_length != 0)
1133       && (buffered_request_bytes != 0))
1134    {
1135       if (csp->expected_client_content_length >= buffered_request_bytes)
1136       {
1137          csp->expected_client_content_length -= buffered_request_bytes;
1138          log_error(LOG_LEVEL_CONNECT, "Reduced expected bytes to %llu "
1139             "to account for the %llu ones we already got.",
1140             csp->expected_client_content_length, buffered_request_bytes);
1141       }
1142       else
1143       {
1144          assert(csp->client_iob->eod > csp->client_iob->cur + csp->expected_client_content_length);
1145          csp->client_iob->eod = csp->client_iob->cur + csp->expected_client_content_length;
1146          log_error(LOG_LEVEL_CONNECT, "Reducing expected bytes to 0. "
1147             "Marking the server socket tainted after throwing %llu bytes away.",
1148             buffered_request_bytes - csp->expected_client_content_length);
1149          csp->expected_client_content_length = 0;
1150          csp->flags |= CSP_FLAG_SERVER_SOCKET_TAINTED;
1151       }
1152
1153       if (csp->expected_client_content_length == 0)
1154       {
1155          csp->flags |= CSP_FLAG_CLIENT_REQUEST_COMPLETELY_READ;
1156       }
1157    }
1158
1159    if (!(csp->flags & CSP_FLAG_CLIENT_REQUEST_COMPLETELY_READ)
1160       && ((csp->client_iob->cur < csp->client_iob->eod)
1161          || (csp->expected_client_content_length != 0)))
1162    {
1163       if (strcmpic(csp->http->gpc, "GET")
1164          && strcmpic(csp->http->gpc, "HEAD")
1165          && strcmpic(csp->http->gpc, "TRACE")
1166          && strcmpic(csp->http->gpc, "OPTIONS")
1167          && strcmpic(csp->http->gpc, "DELETE"))
1168       {
1169          /* XXX: this is an incomplete hack */
1170          csp->flags &= ~CSP_FLAG_CLIENT_REQUEST_COMPLETELY_READ;
1171          log_error(LOG_LEVEL_CONNECT, "There better be a request body.");
1172       }
1173       else
1174       {
1175          csp->flags |= CSP_FLAG_CLIENT_REQUEST_COMPLETELY_READ;
1176
1177          if ((csp->config->feature_flags & RUNTIME_FEATURE_TOLERATE_PIPELINING) == 0)
1178          {
1179             csp->flags |= CSP_FLAG_SERVER_SOCKET_TAINTED;
1180             log_error(LOG_LEVEL_CONNECT,
1181                "Possible pipeline attempt detected. The connection will not "
1182                "be kept alive and we will only serve the first request.");
1183             /* Nuke the pipelined requests from orbit, just to be sure. */
1184             clear_iob(csp->client_iob);
1185          }
1186          else
1187          {
1188             /*
1189              * Keep the pipelined data around for now, we'll deal with
1190              * it once we're done serving the current request.
1191              */
1192             csp->flags |= CSP_FLAG_PIPELINED_REQUEST_WAITING;
1193             assert(csp->client_iob->eod >= csp->client_iob->cur);
1194             log_error(LOG_LEVEL_CONNECT, "Complete client request followed by "
1195                "%d bytes of pipelined data received.",
1196                (int)(csp->client_iob->eod - csp->client_iob->cur));
1197          }
1198       }
1199    }
1200    else
1201    {
1202       csp->flags |= CSP_FLAG_CLIENT_REQUEST_COMPLETELY_READ;
1203       log_error(LOG_LEVEL_CONNECT, "Complete client request received.");
1204    }
1205 }
1206 #endif /* FEATURE_CONNECTION_KEEP_ALIVE */
1207
1208
1209 /*********************************************************************
1210  *
1211  * Function    :  mark_server_socket_tainted
1212  *
1213  * Description :  Makes sure we don't reuse a server socket
1214  *                (if we didn't read everything the server sent
1215  *                us reusing the socket would lead to garbage).
1216  *
1217  * Parameters  :
1218  *          1  :  csp = Current client state (buffers, headers, etc...)
1219  *
1220  * Returns     :  void.
1221  *
1222  *********************************************************************/
1223 static void mark_server_socket_tainted(struct client_state *csp)
1224 {
1225    /*
1226     * For consistency we always mark the server socket
1227     * tainted, however, to reduce the log noise we only
1228     * emit a log message if the server socket could have
1229     * actually been reused.
1230     */
1231    if ((csp->flags & CSP_FLAG_SERVER_CONNECTION_KEEP_ALIVE)
1232       && !(csp->flags & CSP_FLAG_SERVER_SOCKET_TAINTED))
1233    {
1234       log_error(LOG_LEVEL_CONNECT,
1235          "Marking the server socket %d tainted.",
1236          csp->server_connection.sfd);
1237    }
1238    csp->flags |= CSP_FLAG_SERVER_SOCKET_TAINTED;
1239 }
1240
1241 /*********************************************************************
1242  *
1243  * Function    :  get_request_line
1244  *
1245  * Description : Read the client request line.
1246  *
1247  * Parameters  :
1248  *          1  :  csp = Current client state (buffers, headers, etc...)
1249  *
1250  * Returns     :  Pointer to request line or NULL in case of errors.
1251  *
1252  *********************************************************************/
1253 static char *get_request_line(struct client_state *csp)
1254 {
1255    char buf[BUFFER_SIZE];
1256    char *request_line = NULL;
1257    int len;
1258
1259    memset(buf, 0, sizeof(buf));
1260
1261    if ((csp->flags & CSP_FLAG_PIPELINED_REQUEST_WAITING) != 0)
1262    {
1263       /*
1264        * If there are multiple pipelined requests waiting,
1265        * the flag will be set again once the next request
1266        * has been parsed.
1267        */
1268       csp->flags &= ~CSP_FLAG_PIPELINED_REQUEST_WAITING;
1269
1270       request_line = get_header(csp->client_iob);
1271       if ((NULL != request_line) && ('\0' != *request_line))
1272       {
1273          return request_line;
1274       }
1275       else
1276       {
1277          log_error(LOG_LEVEL_CONNECT, "No complete request line "
1278             "received yet. Continuing reading from %d.", csp->cfd);
1279       }
1280    }
1281
1282    do
1283    {
1284       if (!data_is_available(csp->cfd, csp->config->socket_timeout))
1285       {
1286          if (socket_is_still_alive(csp->cfd))
1287          {
1288             log_error(LOG_LEVEL_CONNECT,
1289                "No request line on socket %d received in time. Timeout: %d.",
1290                csp->cfd, csp->config->socket_timeout);
1291             write_socket(csp->cfd, CLIENT_CONNECTION_TIMEOUT_RESPONSE,
1292                strlen(CLIENT_CONNECTION_TIMEOUT_RESPONSE));
1293          }
1294          else
1295          {
1296             log_error(LOG_LEVEL_CONNECT,
1297                "The client side of the connection on socket %d got "
1298                "closed without sending a complete request line.", csp->cfd);
1299          }
1300          return NULL;
1301       }
1302
1303       len = read_socket(csp->cfd, buf, sizeof(buf) - 1);
1304
1305       if (len <= 0) return NULL;
1306
1307       /*
1308        * If there is no memory left for buffering the
1309        * request, there is nothing we can do but hang up
1310        */
1311       if (add_to_iob(csp->client_iob, csp->config->buffer_limit, buf, len))
1312       {
1313          return NULL;
1314       }
1315
1316       request_line = get_header(csp->client_iob);
1317
1318    } while ((NULL != request_line) && ('\0' == *request_line));
1319
1320    return request_line;
1321
1322 }
1323
1324 enum chunk_status
1325 {
1326    CHUNK_STATUS_MISSING_DATA,
1327    CHUNK_STATUS_BODY_COMPLETE,
1328    CHUNK_STATUS_PARSE_ERROR
1329 };
1330
1331
1332 /*********************************************************************
1333  *
1334  * Function    :  chunked_body_is_complete
1335  *
1336  * Description :  Figures out whether or not a chunked body is complete.
1337  *
1338  *                Currently it always starts at the beginning of the
1339  *                buffer which is somewhat wasteful and prevents Privoxy
1340  *                from starting to forward the correctly parsed chunks
1341  *                as soon as theoretically possible.
1342  *
1343  *                Should be modified to work with a common buffer,
1344  *                and allow the caller to skip already parsed chunks.
1345  *
1346  *                This would allow the function to be used for unbuffered
1347  *                response bodies as well.
1348  *
1349  * Parameters  :
1350  *          1  :  iob = Buffer with the body to check.
1351  *          2  :  length = Length of complete body
1352  *
1353  * Returns     :  Enum with the result of the check.
1354  *
1355  *********************************************************************/
1356 static enum chunk_status chunked_body_is_complete(struct iob *iob, size_t *length)
1357 {
1358    unsigned int chunksize;
1359    char *p = iob->cur;
1360
1361    do
1362    {
1363       /*
1364        * We need at least a single digit, followed by "\r\n",
1365        * followed by an unknown amount of data, followed by "\r\n".
1366        */
1367       if (p + 5 > iob->eod)
1368       {
1369          return CHUNK_STATUS_MISSING_DATA;
1370       }
1371       if (sscanf(p, "%x", &chunksize) != 1)
1372       {
1373          return CHUNK_STATUS_PARSE_ERROR;
1374       }
1375
1376       /*
1377        * We want at least a single digit, followed by "\r\n",
1378        * followed by the specified amount of data, followed by "\r\n".
1379        */
1380       if (p + chunksize + 5 > iob->eod)
1381       {
1382          return CHUNK_STATUS_MISSING_DATA;
1383       }
1384
1385       /* Skip chunk-size. */
1386       p = strstr(p, "\r\n");
1387       if (NULL == p)
1388       {
1389          return CHUNK_STATUS_PARSE_ERROR;
1390       }
1391       /* Move beyond the chunkdata. */
1392       p += 2 + chunksize;
1393
1394       /* There should be another "\r\n" to skip */
1395       if (memcmp(p, "\r\n", 2))
1396       {
1397          return CHUNK_STATUS_PARSE_ERROR;
1398       }
1399       p += 2;
1400    } while (chunksize > 0U);
1401
1402    *length = (size_t)(p - iob->cur);
1403    assert(*length <= (size_t)(iob->eod - iob->cur));
1404    assert(p <= iob->eod);
1405
1406    return CHUNK_STATUS_BODY_COMPLETE;
1407
1408 }
1409
1410
1411 /*********************************************************************
1412  *
1413  * Function    : receive_chunked_client_request_body
1414  *
1415  * Description : Read the chunk-encoded client request body.
1416  *               Failures are dealt with.
1417  *
1418  * Parameters  :
1419  *          1  :  csp = Current client state (buffers, headers, etc...)
1420  *
1421  * Returns     :  JB_ERR_OK or JB_ERR_PARSE
1422  *
1423  *********************************************************************/
1424 static jb_err receive_chunked_client_request_body(struct client_state *csp)
1425 {
1426    size_t body_length;
1427    enum chunk_status status;
1428
1429    while (CHUNK_STATUS_MISSING_DATA ==
1430       (status = chunked_body_is_complete(csp->client_iob,&body_length)))
1431    {
1432       char buf[BUFFER_SIZE];
1433       int len;
1434
1435       if (!data_is_available(csp->cfd, csp->config->socket_timeout))
1436       {
1437          log_error(LOG_LEVEL_ERROR,
1438             "Timeout while waiting for the client body.");
1439          break;
1440       }
1441       len = read_socket(csp->cfd, buf, sizeof(buf) - 1);
1442       if (len <= 0)
1443       {
1444          log_error(LOG_LEVEL_ERROR, "Read the client body failed: %E");
1445          break;
1446       }
1447       if (add_to_iob(csp->client_iob, csp->config->buffer_limit, buf, len))
1448       {
1449          break;
1450       }
1451    }
1452    if (status != CHUNK_STATUS_BODY_COMPLETE)
1453    {
1454       write_socket(csp->cfd, CLIENT_BODY_PARSE_ERROR_RESPONSE,
1455          strlen(CLIENT_BODY_PARSE_ERROR_RESPONSE));
1456       log_error(LOG_LEVEL_CLF,
1457          "%s - - [%T] \"Failed reading chunked client body\" 400 0", csp->ip_addr_str);
1458       return JB_ERR_PARSE;
1459    }
1460    log_error(LOG_LEVEL_CONNECT,
1461       "Chunked client body completely read. Length: %d", body_length);
1462    csp->expected_client_content_length = body_length;
1463
1464    return JB_ERR_OK;
1465
1466 }
1467
1468 /*********************************************************************
1469  *
1470  * Function    :  receive_client_request
1471  *
1472  * Description : Read the client's request (more precisely the
1473  *               client headers) and answer it if necessary.
1474  *
1475  * Parameters  :
1476  *          1  :  csp = Current client state (buffers, headers, etc...)
1477  *
1478  * Returns     :  JB_ERR_OK, JB_ERR_PARSE or JB_ERR_MEMORY
1479  *
1480  *********************************************************************/
1481 static jb_err receive_client_request(struct client_state *csp)
1482 {
1483    char buf[BUFFER_SIZE];
1484    char *p;
1485    char *req = NULL;
1486    struct http_request *http;
1487    int len;
1488    jb_err err;
1489
1490    /* Temporary copy of the client's headers before they get enlisted in csp->headers */
1491    struct list header_list;
1492    struct list *headers = &header_list;
1493
1494    /* We don't care if the arriving data is a valid HTTP request or not. */
1495    csp->requests_received_total++;
1496
1497    http = csp->http;
1498
1499    memset(buf, 0, sizeof(buf));
1500
1501    req = get_request_line(csp);
1502    if (req == NULL)
1503    {
1504       mark_server_socket_tainted(csp);
1505       return JB_ERR_PARSE;
1506    }
1507    assert(*req != '\0');
1508
1509    if (client_protocol_is_unsupported(csp, req))
1510    {
1511       return JB_ERR_PARSE;
1512    }
1513
1514 #ifdef FEATURE_FORCE_LOAD
1515    /*
1516     * If this request contains the FORCE_PREFIX and blocks
1517     * aren't enforced, get rid of it and set the force flag.
1518     */
1519    if (strstr(req, FORCE_PREFIX))
1520    {
1521       if (csp->config->feature_flags & RUNTIME_FEATURE_ENFORCE_BLOCKS)
1522       {
1523          log_error(LOG_LEVEL_FORCE,
1524             "Ignored force prefix in request: \"%s\".", req);
1525       }
1526       else
1527       {
1528          strclean(req, FORCE_PREFIX);
1529          log_error(LOG_LEVEL_FORCE, "Enforcing request: \"%s\".", req);
1530          csp->flags |= CSP_FLAG_FORCED;
1531       }
1532    }
1533 #endif /* def FEATURE_FORCE_LOAD */
1534
1535    err = parse_http_request(req, http);
1536    freez(req);
1537    if (JB_ERR_OK != err)
1538    {
1539       write_socket(csp->cfd, CHEADER, strlen(CHEADER));
1540       /* XXX: Use correct size */
1541       log_error(LOG_LEVEL_CLF, "%s - - [%T] \"Invalid request\" 400 0", csp->ip_addr_str);
1542       log_error(LOG_LEVEL_ERROR,
1543          "Couldn't parse request line received from %s: %s",
1544          csp->ip_addr_str, jb_err_to_string(err));
1545
1546       free_http_request(http);
1547       return JB_ERR_PARSE;
1548    }
1549
1550    /* grab the rest of the client's headers */
1551    init_list(headers);
1552    for (;;)
1553    {
1554       p = get_header(csp->client_iob);
1555
1556       if (p == NULL)
1557       {
1558          /* There are no additional headers to read. */
1559          break;
1560       }
1561
1562       if (*p == '\0')
1563       {
1564          /*
1565           * We didn't receive a complete header
1566           * line yet, get the rest of it.
1567           */
1568          if (!data_is_available(csp->cfd, csp->config->socket_timeout))
1569          {
1570             log_error(LOG_LEVEL_ERROR,
1571                "Stopped grabbing the client headers.");
1572             destroy_list(headers);
1573             return JB_ERR_PARSE;
1574          }
1575
1576          len = read_socket(csp->cfd, buf, sizeof(buf) - 1);
1577          if (len <= 0)
1578          {
1579             log_error(LOG_LEVEL_ERROR, "read from client failed: %E");
1580             destroy_list(headers);
1581             return JB_ERR_PARSE;
1582          }
1583
1584          if (add_to_iob(csp->client_iob, csp->config->buffer_limit, buf, len))
1585          {
1586             /*
1587              * If there is no memory left for buffering the
1588              * request, there is nothing we can do but hang up
1589              */
1590             destroy_list(headers);
1591             return JB_ERR_MEMORY;
1592          }
1593       }
1594       else
1595       {
1596          if (!strncmpic(p, "Transfer-Encoding:", 18))
1597          {
1598             /*
1599              * XXX: should be called through sed()
1600              *      but currently can't.
1601              */
1602             client_transfer_encoding(csp, &p);
1603          }
1604          /*
1605           * We were able to read a complete
1606           * header and can finally enlist it.
1607           */
1608          enlist(headers, p);
1609          freez(p);
1610       }
1611    }
1612
1613    if (http->host == NULL)
1614    {
1615       /*
1616        * If we still don't know the request destination,
1617        * the request is invalid or the client uses
1618        * Privoxy without its knowledge.
1619        */
1620       if (JB_ERR_OK != get_request_destination_elsewhere(csp, headers))
1621       {
1622          /*
1623           * Our attempts to get the request destination
1624           * elsewhere failed or Privoxy is configured
1625           * to only accept proxy requests.
1626           *
1627           * An error response has already been send
1628           * and we're done here.
1629           */
1630          return JB_ERR_PARSE;
1631       }
1632    }
1633
1634    /*
1635     * Determine the actions for this URL
1636     */
1637 #ifdef FEATURE_TOGGLE
1638    if (!(csp->flags & CSP_FLAG_TOGGLED_ON))
1639    {
1640       /* Most compatible set of actions (i.e. none) */
1641       init_current_action(csp->action);
1642    }
1643    else
1644 #endif /* ndef FEATURE_TOGGLE */
1645    {
1646       get_url_actions(csp, http);
1647    }
1648
1649    enlist(csp->headers, http->cmd);
1650
1651    /* Append the previously read headers */
1652    err = list_append_list_unique(csp->headers, headers);
1653    destroy_list(headers);
1654
1655    return err;
1656
1657 }
1658
1659
1660 /*********************************************************************
1661  *
1662  * Function    : parse_client_request
1663  *
1664  * Description : Parses the client's request and decides what to do
1665  *               with it.
1666  *
1667  *               Note that since we're not using select() we could get
1668  *               blocked here if a client connected, then didn't say
1669  *               anything!
1670  *
1671  * Parameters  :
1672  *          1  :  csp = Current client state (buffers, headers, etc...)
1673  *
1674  * Returns     :  JB_ERR_OK or JB_ERR_PARSE
1675  *
1676  *********************************************************************/
1677 static jb_err parse_client_request(struct client_state *csp)
1678 {
1679    struct http_request *http = csp->http;
1680    jb_err err;
1681
1682 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
1683    if ((csp->config->feature_flags & RUNTIME_FEATURE_CONNECTION_KEEP_ALIVE)
1684     && (!strcmpic(csp->http->ver, "HTTP/1.1"))
1685     && (csp->http->ssl == 0))
1686    {
1687       /* Assume persistence until further notice */
1688       csp->flags |= CSP_FLAG_CLIENT_CONNECTION_KEEP_ALIVE;
1689    }
1690
1691    if (csp->http->ssl == 0)
1692    {
1693       /*
1694        * This whole block belongs to chat() but currently
1695        * has to be executed before sed().
1696        */
1697       if (csp->flags & CSP_FLAG_CHUNKED_CLIENT_BODY)
1698       {
1699          if (receive_chunked_client_request_body(csp) != JB_ERR_OK)
1700          {
1701             return JB_ERR_PARSE;
1702          }
1703       }
1704       else
1705       {
1706          csp->expected_client_content_length = get_expected_content_length(csp->headers);
1707       }
1708       verify_request_length(csp);
1709    }
1710 #endif /* def FEATURE_CONNECTION_KEEP_ALIVE */
1711
1712    err = sed(csp, FILTER_CLIENT_HEADERS);
1713    if (JB_ERR_OK != err)
1714    {
1715       log_error(LOG_LEVEL_ERROR, "Failed to parse client request from %s.",
1716          csp->ip_addr_str);
1717       log_error(LOG_LEVEL_CLF, "%s - - [%T] \"%s\" 400 0",
1718          csp->ip_addr_str, csp->http->cmd);
1719       write_socket(csp->cfd, CHEADER, strlen(CHEADER));
1720       return JB_ERR_PARSE;
1721    }
1722    csp->flags |= CSP_FLAG_CLIENT_HEADER_PARSING_DONE;
1723
1724    /* Check request line for rewrites. */
1725    if ((NULL == csp->headers->first->str)
1726       || (strcmp(http->cmd, csp->headers->first->str) &&
1727          (JB_ERR_OK != change_request_destination(csp))))
1728    {
1729       /*
1730        * A header filter broke the request line - bail out.
1731        */
1732       write_socket(csp->cfd, MESSED_UP_REQUEST_RESPONSE, strlen(MESSED_UP_REQUEST_RESPONSE));
1733       /* XXX: Use correct size */
1734       log_error(LOG_LEVEL_CLF,
1735          "%s - - [%T] \"Invalid request generated\" 500 0", csp->ip_addr_str);
1736       log_error(LOG_LEVEL_ERROR,
1737          "Invalid request line after applying header filters.");
1738       free_http_request(http);
1739
1740       return JB_ERR_PARSE;
1741    }
1742
1743    if (client_has_unsupported_expectations(csp))
1744    {
1745       return JB_ERR_PARSE;
1746    }
1747
1748    return JB_ERR_OK;
1749
1750 }
1751
1752
1753 /*********************************************************************
1754  *
1755  * Function    :  chat
1756  *
1757  * Description :  Once a connection from the client has been accepted,
1758  *                this function is called (via serve()) to handle the
1759  *                main business of the communication.  This function
1760  *                returns after dealing with a single request. It can
1761  *                be called multiple times with the same client socket
1762  *                if the client is keeping the connection alive.
1763  *
1764  *                The decision whether or not a client connection will
1765  *                be kept alive is up to the caller which also must
1766  *                close the client socket when done.
1767  *
1768  *                FIXME: chat is nearly thousand lines long.
1769  *                Ridiculous.
1770  *
1771  * Parameters  :
1772  *          1  :  csp = Current client state (buffers, headers, etc...)
1773  *
1774  * Returns     :  Nothing.
1775  *
1776  *********************************************************************/
1777 static void chat(struct client_state *csp)
1778 {
1779    char buf[BUFFER_SIZE];
1780    char *hdr;
1781    char *p;
1782    fd_set rfds;
1783    int n;
1784    jb_socket maxfd;
1785    int server_body;
1786    int ms_iis5_hack = 0;
1787    unsigned long long byte_count = 0;
1788    const struct forward_spec *fwd;
1789    struct http_request *http;
1790    long len = 0; /* for buffer sizes (and negative error codes) */
1791    int buffer_and_filter_content = 0;
1792
1793    /* Skeleton for HTTP response, if we should intercept the request */
1794    struct http_response *rsp;
1795    struct timeval timeout;
1796 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
1797    int watch_client_socket;
1798 #endif
1799
1800    memset(buf, 0, sizeof(buf));
1801
1802    http = csp->http;
1803
1804    if (receive_client_request(csp) != JB_ERR_OK)
1805    {
1806       return;
1807    }
1808    if (parse_client_request(csp) != JB_ERR_OK)
1809    {
1810       return;
1811    }
1812
1813    /* decide how to route the HTTP request */
1814    fwd = forward_url(csp, http);
1815    if (NULL == fwd)
1816    {
1817       log_error(LOG_LEVEL_FATAL, "gateway spec is NULL!?!?  This can't happen!");
1818       /* Never get here - LOG_LEVEL_FATAL causes program exit */
1819       return;
1820    }
1821
1822    /*
1823     * build the http request to send to the server
1824     * we have to do one of the following:
1825     *
1826     * create = use the original HTTP request to create a new
1827     *          HTTP request that has either the path component
1828     *          without the http://domainspec (w/path) or the
1829     *          full orininal URL (w/url)
1830     *          Note that the path and/or the HTTP version may
1831     *          have been altered by now.
1832     *
1833     * connect = Open a socket to the host:port of the server
1834     *           and short-circuit server and client socket.
1835     *
1836     * pass =  Pass the request unchanged if forwarding a CONNECT
1837     *         request to a parent proxy. Note that we'll be sending
1838     *         the CFAIL message ourselves if connecting to the parent
1839     *         fails, but we won't send a CSUCCEED message if it works,
1840     *         since that would result in a double message (ours and the
1841     *         parent's). After sending the request to the parent, we simply
1842     *         tunnel.
1843     *
1844     * here's the matrix:
1845     *                        SSL
1846     *                    0        1
1847     *                +--------+--------+
1848     *                |        |        |
1849     *             0  | create | connect|
1850     *                | w/path |        |
1851     *  Forwarding    +--------+--------+
1852     *                |        |        |
1853     *             1  | create | pass   |
1854     *                | w/url  |        |
1855     *                +--------+--------+
1856     *
1857     */
1858
1859    if (http->ssl && connect_port_is_forbidden(csp))
1860    {
1861       const char *acceptable_connect_ports =
1862          csp->action->string[ACTION_STRING_LIMIT_CONNECT];
1863       assert(NULL != acceptable_connect_ports);
1864       log_error(LOG_LEVEL_INFO, "Request from %s marked for blocking. "
1865          "limit-connect{%s} doesn't allow CONNECT requests to %s",
1866          csp->ip_addr_str, acceptable_connect_ports, csp->http->hostport);
1867       csp->action->flags |= ACTION_BLOCK;
1868       http->ssl = 0;
1869    }
1870
1871    if (http->ssl == 0)
1872    {
1873       freez(csp->headers->first->str);
1874       build_request_line(csp, fwd, &csp->headers->first->str);
1875    }
1876
1877    /*
1878     * We have a request. Check if one of the crunchers wants it.
1879     */
1880    if (crunch_response_triggered(csp, crunchers_all))
1881    {
1882       /*
1883        * Yes. The client got the crunch response and we're done here.
1884        */
1885       return;
1886    }
1887
1888    log_applied_actions(csp->action);
1889    log_error(LOG_LEVEL_GPC, "%s%s", http->hostport, http->path);
1890
1891    if (fwd->forward_host)
1892    {
1893       log_error(LOG_LEVEL_CONNECT, "via [%s]:%d to: %s",
1894          fwd->forward_host, fwd->forward_port, http->hostport);
1895    }
1896    else
1897    {
1898       log_error(LOG_LEVEL_CONNECT, "to %s", http->hostport);
1899    }
1900
1901    /* here we connect to the server, gateway, or the forwarder */
1902
1903 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
1904    if ((csp->server_connection.sfd != JB_INVALID_SOCKET)
1905       && socket_is_still_alive(csp->server_connection.sfd)
1906       && connection_destination_matches(&csp->server_connection, http, fwd))
1907    {
1908       log_error(LOG_LEVEL_CONNECT,
1909          "Reusing server socket %d connected to %s. Total requests: %u.",
1910          csp->server_connection.sfd, csp->server_connection.host,
1911          csp->server_connection.requests_sent_total);
1912    }
1913    else
1914    {
1915       if (csp->server_connection.sfd != JB_INVALID_SOCKET)
1916       {
1917 #ifdef FEATURE_CONNECTION_SHARING
1918          if (csp->config->feature_flags & RUNTIME_FEATURE_CONNECTION_SHARING)
1919          {
1920             remember_connection(&csp->server_connection);
1921          }
1922          else
1923 #endif /* def FEATURE_CONNECTION_SHARING */
1924          {
1925             log_error(LOG_LEVEL_CONNECT,
1926                "Closing server socket %d connected to %s. Total requests: %u.",
1927                csp->server_connection.sfd, csp->server_connection.host,
1928                csp->server_connection.requests_sent_total);
1929             close_socket(csp->server_connection.sfd);
1930          }
1931          mark_connection_closed(&csp->server_connection);
1932       }
1933 #endif /* def FEATURE_CONNECTION_KEEP_ALIVE */
1934
1935       csp->server_connection.sfd = forwarded_connect(fwd, http, csp);
1936
1937       if (csp->server_connection.sfd == JB_INVALID_SOCKET)
1938       {
1939          if (fwd->type != SOCKS_NONE)
1940          {
1941             /* Socks error. */
1942             rsp = error_response(csp, "forwarding-failed");
1943          }
1944          else if (errno == EINVAL)
1945          {
1946             rsp = error_response(csp, "no-such-domain");
1947          }
1948          else
1949          {
1950             rsp = error_response(csp, "connect-failed");
1951          }
1952
1953          /* Write the answer to the client */
1954          if (rsp != NULL)
1955          {
1956             send_crunch_response(csp, rsp);
1957          }
1958
1959          /*
1960           * Temporary workaround to prevent already-read client
1961           * bodies from being parsed as new requests. For now we
1962           * err on the safe side and throw all the following
1963           * requests under the bus, even if no client body has been
1964           * buffered. A compliant client will repeat the dropped
1965           * requests on an untainted connection.
1966           *
1967           * The proper fix is to discard the no longer needed
1968           * client body in the buffer (if there is one) and to
1969           * continue parsing the bytes that follow.
1970           */
1971          drain_and_close_socket(csp->cfd);
1972          csp->cfd = JB_INVALID_SOCKET;
1973
1974          return;
1975       }
1976 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
1977       save_connection_destination(csp->server_connection.sfd,
1978          http, fwd, &csp->server_connection);
1979       csp->server_connection.keep_alive_timeout =
1980          (unsigned)csp->config->keep_alive_timeout;
1981    }
1982 #endif /* def FEATURE_CONNECTION_KEEP_ALIVE */
1983
1984    csp->server_connection.requests_sent_total++;
1985
1986    if ((fwd->type == SOCKS_5T) && (NULL == csp->headers->first))
1987    {
1988       /* Client headers have been sent optimistically */
1989       assert(csp->headers->last == NULL);
1990    }
1991    else if (fwd->forward_host || (http->ssl == 0))
1992    {
1993       int write_failure;
1994       hdr = list_to_text(csp->headers);
1995       if (hdr == NULL)
1996       {
1997          /* FIXME Should handle error properly */
1998          log_error(LOG_LEVEL_FATAL, "Out of memory parsing client header");
1999       }
2000       list_remove_all(csp->headers);
2001
2002       /*
2003        * Write the client's (modified) header to the server
2004        * (along with anything else that may be in the buffer)
2005        */
2006       write_failure = 0 != write_socket(csp->server_connection.sfd, hdr, strlen(hdr));
2007       freez(hdr);
2008
2009       if (write_failure)
2010       {
2011          log_error(LOG_LEVEL_CONNECT,
2012             "Failed sending request headers to: %s: %E", http->hostport);
2013       }
2014       else if (((csp->flags & CSP_FLAG_PIPELINED_REQUEST_WAITING) == 0)
2015          && (flush_socket(csp->server_connection.sfd, csp->client_iob) < 0))
2016       {
2017          write_failure = 1;
2018          log_error(LOG_LEVEL_CONNECT,
2019             "Failed sending request body to: %s: %E", http->hostport);
2020       }
2021
2022       if (write_failure)
2023       {
2024          rsp = error_response(csp, "connect-failed");
2025          if (rsp)
2026          {
2027             send_crunch_response(csp, rsp);
2028          }
2029          return;
2030       }
2031    }
2032    else
2033    {
2034       /*
2035        * We're running an SSL tunnel and we're not forwarding,
2036        * so just ditch the client headers, send the "connect succeeded"
2037        * message to the client, flush the rest, and get out of the way.
2038        */
2039       list_remove_all(csp->headers);
2040       if (write_socket(csp->cfd, CSUCCEED, strlen(CSUCCEED)))
2041       {
2042          return;
2043       }
2044       clear_iob(csp->client_iob);
2045    }
2046
2047    log_error(LOG_LEVEL_CONNECT, "to %s successful", http->hostport);
2048
2049    /* XXX: should the time start earlier for optimistically sent data? */
2050    csp->server_connection.request_sent = time(NULL);
2051
2052    maxfd = (csp->cfd > csp->server_connection.sfd) ?
2053       csp->cfd : csp->server_connection.sfd;
2054
2055    /* pass data between the client and server
2056     * until one or the other shuts down the connection.
2057     */
2058
2059    server_body = 0;
2060
2061 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
2062    watch_client_socket = 0 == (csp->flags & CSP_FLAG_PIPELINED_REQUEST_WAITING);
2063 #endif
2064
2065    for (;;)
2066    {
2067 #ifdef __OS2__
2068       /*
2069        * FD_ZERO here seems to point to an errant macro which crashes.
2070        * So do this by hand for now...
2071        */
2072       memset(&rfds,0x00,sizeof(fd_set));
2073 #else
2074       FD_ZERO(&rfds);
2075 #endif
2076 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
2077       if (!watch_client_socket)
2078       {
2079          maxfd = csp->server_connection.sfd;
2080       }
2081       else
2082 #endif /* def FEATURE_CONNECTION_KEEP_ALIVE */
2083       {
2084          FD_SET(csp->cfd, &rfds);
2085       }
2086
2087       FD_SET(csp->server_connection.sfd, &rfds);
2088
2089 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
2090       if ((csp->flags & CSP_FLAG_CHUNKED)
2091          && !(csp->flags & CSP_FLAG_CONTENT_LENGTH_SET)
2092          && ((csp->iob->eod - csp->iob->cur) >= 5)
2093          && !memcmp(csp->iob->eod-5, "0\r\n\r\n", 5))
2094       {
2095          /*
2096           * XXX: This check should be obsolete now,
2097           *      but let's wait a while to be sure.
2098           */
2099          log_error(LOG_LEVEL_CONNECT,
2100             "Looks like we got the last chunk together with "
2101             "the server headers but didn't detect it earlier. "
2102             "We better stop reading.");
2103          byte_count = (unsigned long long)(csp->iob->eod - csp->iob->cur);
2104          csp->expected_content_length = byte_count;
2105          csp->flags |= CSP_FLAG_CONTENT_LENGTH_SET;
2106       }
2107       if (server_body && server_response_is_complete(csp, byte_count))
2108       {
2109          if (csp->expected_content_length == byte_count)
2110          {
2111             log_error(LOG_LEVEL_CONNECT,
2112                "Done reading from server. Content length: %llu as expected. "
2113                "Bytes most recently read: %d.",
2114                byte_count, len);
2115          }
2116          else
2117          {
2118             log_error(LOG_LEVEL_CONNECT,
2119                "Done reading from server. Expected content length: %llu. "
2120                "Actual content length: %llu. Bytes most recently read: %d.",
2121                csp->expected_content_length, byte_count, len);
2122          }
2123          len = 0;
2124          /*
2125           * XXX: should not jump around,
2126           * chat() is complicated enough already.
2127           */
2128          goto reading_done;
2129       }
2130 #endif  /* FEATURE_CONNECTION_KEEP_ALIVE */
2131
2132       timeout.tv_sec = csp->config->socket_timeout;
2133       timeout.tv_usec = 0;
2134       n = select((int)maxfd+1, &rfds, NULL, NULL, &timeout);
2135
2136       if (n == 0)
2137       {
2138          log_error(LOG_LEVEL_ERROR,
2139             "Didn't receive data in time: %s", http->url);
2140          if ((byte_count == 0) && (http->ssl == 0))
2141          {
2142             send_crunch_response(csp, error_response(csp, "connection-timeout"));
2143          }
2144          mark_server_socket_tainted(csp);
2145          return;
2146       }
2147       else if (n < 0)
2148       {
2149          log_error(LOG_LEVEL_ERROR, "select() failed!: %E");
2150          mark_server_socket_tainted(csp);
2151          return;
2152       }
2153
2154       /*
2155        * This is the body of the browser's request,
2156        * just read and write it.
2157        *
2158        * XXX: Make sure the client doesn't use pipelining
2159        * behind Privoxy's back.
2160        */
2161       if (FD_ISSET(csp->cfd, &rfds))
2162       {
2163          int max_bytes_to_read = sizeof(buf) - 1;
2164
2165 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
2166          if ((csp->flags & CSP_FLAG_CLIENT_REQUEST_COMPLETELY_READ))
2167          {
2168             if (data_is_available(csp->cfd, 0))
2169             {
2170                /*
2171                 * If the next request is already waiting, we have
2172                 * to stop select()ing the client socket. Otherwise
2173                 * we would always return right away and get nothing
2174                 * else done.
2175                 */
2176                watch_client_socket = 0;
2177                log_error(LOG_LEVEL_CONNECT,
2178                   "Stopping to watch the client socket %d. "
2179                   "There's already another request waiting.",
2180                   csp->cfd);
2181                continue;
2182             }
2183             /*
2184              * If the client socket is set, but there's no data
2185              * available on the socket, the client went fishing
2186              * and continuing talking to the server makes no sense.
2187              */
2188             log_error(LOG_LEVEL_CONNECT,
2189                "The client closed socket %d while "
2190                "the server socket %d is still open.",
2191                csp->cfd, csp->server_connection.sfd);
2192             mark_server_socket_tainted(csp);
2193             break;
2194          }
2195          if (csp->expected_client_content_length != 0)
2196          {
2197             if (csp->expected_client_content_length < (sizeof(buf) - 1))
2198             {
2199                max_bytes_to_read = (int)csp->expected_client_content_length;
2200             }
2201             log_error(LOG_LEVEL_CONNECT,
2202                "Waiting for up to %d bytes from the client.",
2203                max_bytes_to_read);
2204          }
2205          assert(max_bytes_to_read < sizeof(buf));
2206 #endif /* def FEATURE_CONNECTION_KEEP_ALIVE */
2207
2208          len = read_socket(csp->cfd, buf, max_bytes_to_read);
2209
2210          if (len <= 0)
2211          {
2212             /* XXX: not sure if this is necessary. */
2213             mark_server_socket_tainted(csp);
2214             break; /* "game over, man" */
2215          }
2216
2217 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
2218          if (csp->expected_client_content_length != 0)
2219          {
2220             assert(len <= max_bytes_to_read);
2221             csp->expected_client_content_length -= (unsigned)len;
2222             log_error(LOG_LEVEL_CONNECT,
2223                "Expected client content length set to %llu "
2224                "after reading %d bytes.",
2225                csp->expected_client_content_length, len);
2226             if (csp->expected_client_content_length == 0)
2227             {
2228                log_error(LOG_LEVEL_CONNECT,
2229                   "Done reading from the client.");
2230                csp->flags |= CSP_FLAG_CLIENT_REQUEST_COMPLETELY_READ;
2231             }
2232          }
2233 #endif /* def FEATURE_CONNECTION_KEEP_ALIVE */
2234
2235          if (write_socket(csp->server_connection.sfd, buf, (size_t)len))
2236          {
2237             log_error(LOG_LEVEL_ERROR, "write to: %s failed: %E", http->host);
2238             mark_server_socket_tainted(csp);
2239             return;
2240          }
2241          continue;
2242       }
2243
2244       /*
2245        * The server wants to talk. It could be the header or the body.
2246        * If `hdr' is null, then it's the header otherwise it's the body.
2247        * FIXME: Does `hdr' really mean `host'? No.
2248        */
2249       if (FD_ISSET(csp->server_connection.sfd, &rfds))
2250       {
2251 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
2252          /*
2253           * If we are buffering content, we don't want to eat up to
2254           * buffer-limit bytes if the client no longer cares about them.
2255           * If we aren't buffering, however, a dead client socket will be
2256           * noticed pretty much right away anyway, so we can reduce the
2257           * overhead by skipping the check.
2258           */
2259          if (buffer_and_filter_content && !socket_is_still_alive(csp->cfd))
2260          {
2261 #ifdef _WIN32
2262             log_error(LOG_LEVEL_CONNECT,
2263                "The server still wants to talk, but the client may already have hung up on us.");
2264 #else
2265             log_error(LOG_LEVEL_CONNECT,
2266                "The server still wants to talk, but the client hung up on us.");
2267             mark_server_socket_tainted(csp);
2268             return;
2269 #endif /* def _WIN32 */
2270          }
2271 #endif /* def FEATURE_CONNECTION_KEEP_ALIVE */
2272
2273          len = read_socket(csp->server_connection.sfd, buf, sizeof(buf) - 1);
2274
2275          if (len < 0)
2276          {
2277             log_error(LOG_LEVEL_ERROR, "read from: %s failed: %E", http->host);
2278
2279             if (http->ssl && (fwd->forward_host == NULL))
2280             {
2281                /*
2282                 * Just hang up. We already confirmed the client's CONNECT
2283                 * request with status code 200 and unencrypted content is
2284                 * no longer welcome.
2285                 */
2286                log_error(LOG_LEVEL_ERROR,
2287                   "CONNECT already confirmed. Unable to tell the client about the problem.");
2288                return;
2289             }
2290             else if (byte_count)
2291             {
2292                /*
2293                 * Just hang up. We already transmitted the original headers
2294                 * and parts of the original content and therefore missed the
2295                 * chance to send an error message (without risking data corruption).
2296                 *
2297                 * XXX: we could retry with a fancy range request here.
2298                 */
2299                log_error(LOG_LEVEL_ERROR, "Already forwarded the original headers. "
2300                   "Unable to tell the client about the problem.");
2301                mark_server_socket_tainted(csp);
2302                return;
2303             }
2304             /*
2305              * XXX: Consider handling the cases above the same.
2306              */
2307             mark_server_socket_tainted(csp);
2308             len = 0;
2309          }
2310
2311 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
2312          if (csp->flags & CSP_FLAG_CHUNKED)
2313          {
2314             if ((len >= 5) && !memcmp(buf+len-5, "0\r\n\r\n", 5))
2315             {
2316                /* XXX: this is a temporary hack */
2317                log_error(LOG_LEVEL_CONNECT,
2318                   "Looks like we reached the end of the last chunk. "
2319                   "We better stop reading.");
2320                csp->expected_content_length = byte_count + (unsigned long long)len;
2321                csp->flags |= CSP_FLAG_CONTENT_LENGTH_SET;
2322             }
2323          }
2324          reading_done:
2325 #endif  /* FEATURE_CONNECTION_KEEP_ALIVE */
2326
2327          /*
2328           * Add a trailing zero to let be able to use string operations.
2329           * XXX: do we still need this with filter_popups gone?
2330           */
2331          buf[len] = '\0';
2332
2333          /*
2334           * Normally, this would indicate that we've read
2335           * as much as the server has sent us and we can
2336           * close the client connection.  However, Microsoft
2337           * in its wisdom has released IIS/5 with a bug that
2338           * prevents it from sending the trailing \r\n in
2339           * a 302 redirect header (and possibly other headers).
2340           * To work around this if we've haven't parsed
2341           * a full header we'll append a trailing \r\n
2342           * and see if this now generates a valid one.
2343           *
2344           * This hack shouldn't have any impacts.  If we've
2345           * already transmitted the header or if this is a
2346           * SSL connection, then we won't bother with this
2347           * hack.  So we only work on partially received
2348           * headers.  If we append a \r\n and this still
2349           * doesn't generate a valid header, then we won't
2350           * transmit anything to the client.
2351           */
2352          if (len == 0)
2353          {
2354
2355             if (server_body || http->ssl)
2356             {
2357                /*
2358                 * If we have been buffering up the document,
2359                 * now is the time to apply content modification
2360                 * and send the result to the client.
2361                 */
2362                if (buffer_and_filter_content)
2363                {
2364                   p = execute_content_filters(csp);
2365                   /*
2366                    * If content filtering fails, use the original
2367                    * buffer and length.
2368                    * (see p != NULL ? p : csp->iob->cur below)
2369                    */
2370                   if (NULL == p)
2371                   {
2372                      csp->content_length = (size_t)(csp->iob->eod - csp->iob->cur);
2373                   }
2374 #ifdef FEATURE_COMPRESSION
2375                   else if ((csp->flags & CSP_FLAG_CLIENT_SUPPORTS_DEFLATE)
2376                      && (csp->content_length > LOWER_LENGTH_LIMIT_FOR_COMPRESSION))
2377                   {
2378                      char *compressed_content = compress_buffer(p,
2379                         (size_t *)&csp->content_length, csp->config->compression_level);
2380                      if (compressed_content != NULL)
2381                      {
2382                         freez(p);
2383                         p = compressed_content;
2384                         csp->flags |= CSP_FLAG_BUFFERED_CONTENT_DEFLATED;
2385                      }
2386                   }
2387 #endif
2388
2389                   if (JB_ERR_OK != update_server_headers(csp))
2390                   {
2391                      log_error(LOG_LEVEL_FATAL,
2392                         "Failed to update server headers. after filtering.");
2393                   }
2394
2395                   hdr = list_to_text(csp->headers);
2396                   if (hdr == NULL)
2397                   {
2398                      /* FIXME Should handle error properly */
2399                      log_error(LOG_LEVEL_FATAL, "Out of memory parsing server header");
2400                   }
2401
2402                   if (write_socket(csp->cfd, hdr, strlen(hdr))
2403                    || write_socket(csp->cfd,
2404                          ((p != NULL) ? p : csp->iob->cur), (size_t)csp->content_length))
2405                   {
2406                      log_error(LOG_LEVEL_ERROR, "write modified content to client failed: %E");
2407                      freez(hdr);
2408                      freez(p);
2409                      mark_server_socket_tainted(csp);
2410                      return;
2411                   }
2412
2413                   freez(hdr);
2414                   freez(p);
2415                }
2416
2417                break; /* "game over, man" */
2418             }
2419
2420             /*
2421              * This is NOT the body, so
2422              * Let's pretend the server just sent us a blank line.
2423              */
2424             snprintf(buf, sizeof(buf), "\r\n");
2425             len = (int)strlen(buf);
2426
2427             /*
2428              * Now, let the normal header parsing algorithm below do its
2429              * job.  If it fails, we'll exit instead of continuing.
2430              */
2431
2432             ms_iis5_hack = 1;
2433          }
2434
2435          /*
2436           * If this is an SSL connection or we're in the body
2437           * of the server document, just write it to the client,
2438           * unless we need to buffer the body for later content-filtering
2439           */
2440          if (server_body || http->ssl)
2441          {
2442             if (buffer_and_filter_content)
2443             {
2444                /*
2445                 * If there is no memory left for buffering the content, or the buffer limit
2446                 * has been reached, switch to non-filtering mode, i.e. make & write the
2447                 * header, flush the iob and buf, and get out of the way.
2448                 */
2449                if (add_to_iob(csp->iob, csp->config->buffer_limit, buf, len))
2450                {
2451                   size_t hdrlen;
2452                   long flushed;
2453
2454                   log_error(LOG_LEVEL_INFO,
2455                      "Flushing header and buffers. Stepping back from filtering.");
2456
2457                   hdr = list_to_text(csp->headers);
2458                   if (hdr == NULL)
2459                   {
2460                      /*
2461                       * Memory is too tight to even generate the header.
2462                       * Send our static "Out-of-memory" page.
2463                       */
2464                      log_error(LOG_LEVEL_ERROR, "Out of memory while trying to flush.");
2465                      rsp = cgi_error_memory();
2466                      send_crunch_response(csp, rsp);
2467                      mark_server_socket_tainted(csp);
2468                      return;
2469                   }
2470                   hdrlen = strlen(hdr);
2471
2472                   if (write_socket(csp->cfd, hdr, hdrlen)
2473                    || ((flushed = flush_socket(csp->cfd, csp->iob)) < 0)
2474                    || (write_socket(csp->cfd, buf, (size_t)len)))
2475                   {
2476                      log_error(LOG_LEVEL_CONNECT,
2477                         "Flush header and buffers to client failed: %E");
2478                      freez(hdr);
2479                      mark_server_socket_tainted(csp);
2480                      return;
2481                   }
2482
2483                   /*
2484                    * Reset the byte_count to the amount of bytes
2485                    * we just flushed. len will be added a few lines below,
2486                    * hdrlen doesn't matter for LOG_LEVEL_CLF.
2487                    */
2488                   byte_count = (unsigned long long)flushed;
2489                   freez(hdr);
2490                   buffer_and_filter_content = 0;
2491                   server_body = 1;
2492                }
2493             }
2494             else
2495             {
2496                if (write_socket(csp->cfd, buf, (size_t)len))
2497                {
2498                   log_error(LOG_LEVEL_ERROR, "write to client failed: %E");
2499                   mark_server_socket_tainted(csp);
2500                   return;
2501                }
2502             }
2503             byte_count += (unsigned long long)len;
2504             continue;
2505          }
2506          else
2507          {
2508             /*
2509              * We're still looking for the end of the server's header.
2510              * Buffer up the data we just read.  If that fails, there's
2511              * little we can do but send our static out-of-memory page.
2512              */
2513             if (add_to_iob(csp->iob, csp->config->buffer_limit, buf, len))
2514             {
2515                log_error(LOG_LEVEL_ERROR, "Out of memory while looking for end of server headers.");
2516                rsp = cgi_error_memory();
2517                send_crunch_response(csp, rsp);
2518                mark_server_socket_tainted(csp);
2519                return;
2520             }
2521
2522             /* Convert iob into something sed() can digest */
2523             if (JB_ERR_PARSE == get_server_headers(csp))
2524             {
2525                if (ms_iis5_hack)
2526                {
2527                   /*
2528                    * Well, we tried our MS IIS/5 hack and it didn't work.
2529                    * The header is incomplete and there isn't anything
2530                    * we can do about it.
2531                    */
2532                   log_error(LOG_LEVEL_ERROR, "Invalid server headers. "
2533                      "Applying the MS IIS5 hack didn't help.");
2534                   log_error(LOG_LEVEL_CLF,
2535                      "%s - - [%T] \"%s\" 502 0", csp->ip_addr_str, http->cmd);
2536                   write_socket(csp->cfd, INVALID_SERVER_HEADERS_RESPONSE,
2537                      strlen(INVALID_SERVER_HEADERS_RESPONSE));
2538                   mark_server_socket_tainted(csp);
2539                   return;
2540                }
2541                else
2542                {
2543                   /*
2544                    * Since we have to wait for more from the server before
2545                    * we can parse the headers we just continue here.
2546                    */
2547                   log_error(LOG_LEVEL_CONNECT,
2548                      "Continuing buffering server headers from socket %d. "
2549                      "Bytes most recently read: %d.", csp->cfd, len);
2550                   continue;
2551                }
2552             }
2553             else
2554             {
2555                /*
2556                 * Account for the content bytes we
2557                 * might have gotten with the headers.
2558                 */
2559                assert(csp->iob->eod >= csp->iob->cur);
2560                byte_count = (unsigned long long)(csp->iob->eod - csp->iob->cur);
2561             }
2562
2563             /* Did we actually get anything? */
2564             if (NULL == csp->headers->first)
2565             {
2566                if ((csp->flags & CSP_FLAG_REUSED_CLIENT_CONNECTION))
2567                {
2568                   log_error(LOG_LEVEL_ERROR,
2569                      "No server or forwarder response received on socket %d. "
2570                      "Closing client socket %d without sending data.",
2571                      csp->server_connection.sfd, csp->cfd);
2572                   log_error(LOG_LEVEL_CLF,
2573                      "%s - - [%T] \"%s\" 502 0", csp->ip_addr_str, http->cmd);
2574                }
2575                else
2576                {
2577                   log_error(LOG_LEVEL_ERROR,
2578                      "No server or forwarder response received on socket %d.",
2579                      csp->server_connection.sfd);
2580                   send_crunch_response(csp, error_response(csp, "no-server-data"));
2581                }
2582                free_http_request(http);
2583                mark_server_socket_tainted(csp);
2584                return;
2585             }
2586
2587             assert(csp->headers->first->str);
2588             assert(!http->ssl);
2589             if (strncmpic(csp->headers->first->str, "HTTP", 4) &&
2590                 strncmpic(csp->headers->first->str, "ICY", 3))
2591             {
2592                /*
2593                 * It doesn't look like a HTTP (or Shoutcast) response:
2594                 * tell the client and log the problem.
2595                 */
2596                if (strlen(csp->headers->first->str) > 30)
2597                {
2598                   csp->headers->first->str[30] = '\0';
2599                }
2600                log_error(LOG_LEVEL_ERROR,
2601                   "Invalid server or forwarder response. Starts with: %s",
2602                   csp->headers->first->str);
2603                log_error(LOG_LEVEL_CLF,
2604                   "%s - - [%T] \"%s\" 502 0", csp->ip_addr_str, http->cmd);
2605                write_socket(csp->cfd, INVALID_SERVER_HEADERS_RESPONSE,
2606                   strlen(INVALID_SERVER_HEADERS_RESPONSE));
2607                free_http_request(http);
2608                mark_server_socket_tainted(csp);
2609                return;
2610             }
2611
2612             /*
2613              * We have now received the entire server header,
2614              * filter it and send the result to the client
2615              */
2616             if (JB_ERR_OK != sed(csp, FILTER_SERVER_HEADERS))
2617             {
2618                log_error(LOG_LEVEL_CLF,
2619                   "%s - - [%T] \"%s\" 502 0", csp->ip_addr_str, http->cmd);
2620                write_socket(csp->cfd, INVALID_SERVER_HEADERS_RESPONSE,
2621                   strlen(INVALID_SERVER_HEADERS_RESPONSE));
2622                free_http_request(http);
2623                mark_server_socket_tainted(csp);
2624                return;
2625             }
2626             hdr = list_to_text(csp->headers);
2627             if (hdr == NULL)
2628             {
2629                /* FIXME Should handle error properly */
2630                log_error(LOG_LEVEL_FATAL, "Out of memory parsing server header");
2631             }
2632
2633             if ((csp->flags & CSP_FLAG_CHUNKED)
2634                && !(csp->flags & CSP_FLAG_CONTENT_LENGTH_SET)
2635                && ((csp->iob->eod - csp->iob->cur) >= 5)
2636                && !memcmp(csp->iob->eod-5, "0\r\n\r\n", 5))
2637             {
2638                log_error(LOG_LEVEL_CONNECT,
2639                   "Looks like we got the last chunk together with "
2640                   "the server headers. We better stop reading.");
2641                byte_count = (unsigned long long)(csp->iob->eod - csp->iob->cur);
2642                csp->expected_content_length = byte_count;
2643                csp->flags |= CSP_FLAG_CONTENT_LENGTH_SET;
2644             }
2645
2646             csp->server_connection.response_received = time(NULL);
2647
2648             if (crunch_response_triggered(csp, crunchers_light))
2649             {
2650                /*
2651                 * One of the tags created by a server-header
2652                 * tagger triggered a crunch. We already
2653                 * delivered the crunch response to the client
2654                 * and are done here after cleaning up.
2655                 */
2656                 freez(hdr);
2657                 mark_server_socket_tainted(csp);
2658                 return;
2659             }
2660             /* Buffer and pcrs filter this if appropriate. */
2661
2662             if (!http->ssl) /* We talk plaintext */
2663             {
2664                buffer_and_filter_content = content_requires_filtering(csp);
2665             }
2666             /*
2667              * Only write if we're not buffering for content modification
2668              */
2669             if (!buffer_and_filter_content)
2670             {
2671                /*
2672                 * Write the server's (modified) header to
2673                 * the client (along with anything else that
2674                 * may be in the buffer)
2675                 */
2676
2677                if (write_socket(csp->cfd, hdr, strlen(hdr))
2678                 || ((len = flush_socket(csp->cfd, csp->iob)) < 0))
2679                {
2680                   log_error(LOG_LEVEL_CONNECT, "write header to client failed: %E");
2681
2682                   /*
2683                    * The write failed, so don't bother mentioning it
2684                    * to the client... it probably can't hear us anyway.
2685                    */
2686                   freez(hdr);
2687                   mark_server_socket_tainted(csp);
2688                   return;
2689                }
2690             }
2691
2692             /* we're finished with the server's header */
2693
2694             freez(hdr);
2695             server_body = 1;
2696
2697             /*
2698              * If this was a MS IIS/5 hack then it means the server
2699              * has already closed the connection. Nothing more to read.
2700              * Time to bail.
2701              */
2702             if (ms_iis5_hack)
2703             {
2704                log_error(LOG_LEVEL_ERROR,
2705                   "Closed server connection detected. "
2706                   "Applying the MS IIS5 hack didn't help.");
2707                log_error(LOG_LEVEL_CLF,
2708                   "%s - - [%T] \"%s\" 502 0", csp->ip_addr_str, http->cmd);
2709                write_socket(csp->cfd, INVALID_SERVER_HEADERS_RESPONSE,
2710                   strlen(INVALID_SERVER_HEADERS_RESPONSE));
2711                mark_server_socket_tainted(csp);
2712                return;
2713             }
2714          }
2715          continue;
2716       }
2717       mark_server_socket_tainted(csp);
2718       return; /* huh? we should never get here */
2719    }
2720
2721    if (csp->content_length == 0)
2722    {
2723       /*
2724        * If Privoxy didn't recalculate the Content-Length,
2725        * byte_count is still correct.
2726        */
2727       csp->content_length = byte_count;
2728    }
2729
2730 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
2731    if ((csp->flags & CSP_FLAG_CONTENT_LENGTH_SET)
2732       && (csp->expected_content_length != byte_count))
2733    {
2734       log_error(LOG_LEVEL_CONNECT,
2735          "Received %llu bytes while expecting %llu.",
2736          byte_count, csp->expected_content_length);
2737       mark_server_socket_tainted(csp);
2738    }
2739 #endif
2740
2741    log_error(LOG_LEVEL_CLF, "%s - - [%T] \"%s\" 200 %llu",
2742       csp->ip_addr_str, http->ocmd, csp->content_length);
2743
2744    csp->server_connection.timestamp = time(NULL);
2745 }
2746
2747
2748 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
2749 /*********************************************************************
2750  *
2751  * Function    :  prepare_csp_for_next_request
2752  *
2753  * Description :  Put the csp in a mostly vergin state.
2754  *
2755  * Parameters  :
2756  *          1  :  csp = Current client state (buffers, headers, etc...)
2757  *
2758  * Returns     :  N/A
2759  *
2760  *********************************************************************/
2761 static void prepare_csp_for_next_request(struct client_state *csp)
2762 {
2763    unsigned int toggled_on_flag_set = (0 != (csp->flags & CSP_FLAG_TOGGLED_ON));
2764
2765    csp->content_type = 0;
2766    csp->content_length = 0;
2767    csp->expected_content_length = 0;
2768    csp->expected_client_content_length = 0;
2769    list_remove_all(csp->headers);
2770    clear_iob(csp->iob);
2771    freez(csp->error_message);
2772    free_http_request(csp->http);
2773    destroy_list(csp->headers);
2774    destroy_list(csp->tags);
2775    free_current_action(csp->action);
2776    if (NULL != csp->fwd)
2777    {
2778       unload_forward_spec(csp->fwd);
2779       csp->fwd = NULL;
2780    }
2781    /* XXX: Store per-connection flags someplace else. */
2782    csp->flags = (CSP_FLAG_ACTIVE | CSP_FLAG_REUSED_CLIENT_CONNECTION);
2783    if (toggled_on_flag_set)
2784    {
2785       csp->flags |= CSP_FLAG_TOGGLED_ON;
2786    }
2787
2788    if (csp->client_iob->eod > csp->client_iob->cur)
2789    {
2790       long bytes_to_shift = csp->client_iob->cur - csp->client_iob->buf;
2791       size_t data_length  = (size_t)(csp->client_iob->eod - csp->client_iob->cur);
2792
2793       assert(bytes_to_shift > 0);
2794       assert(data_length > 0);
2795
2796       log_error(LOG_LEVEL_CONNECT, "Shifting %d pipelined bytes by %d bytes",
2797          data_length, bytes_to_shift);
2798       memmove(csp->client_iob->buf, csp->client_iob->cur, data_length);
2799       csp->client_iob->cur = csp->client_iob->buf;
2800       assert(csp->client_iob->eod == csp->client_iob->buf + bytes_to_shift + data_length);
2801       csp->client_iob->eod = csp->client_iob->buf + data_length;
2802       memset(csp->client_iob->eod, '\0', (size_t)bytes_to_shift);
2803
2804       csp->flags |= CSP_FLAG_PIPELINED_REQUEST_WAITING;
2805    }
2806    else
2807    {
2808       /*
2809        * We mainly care about resetting client_iob->cur so we don't
2810        * waste buffer space at the beginning and don't mess up the
2811        * request restoration done by cgi_show_request().
2812        *
2813        * Freeing the buffer itself isn't technically necessary,
2814        * but makes debugging more convenient.
2815        */
2816       clear_iob(csp->client_iob);
2817    }
2818 }
2819 #endif /* def FEATURE_CONNECTION_KEEP_ALIVE */
2820
2821
2822 /*********************************************************************
2823  *
2824  * Function    :  serve
2825  *
2826  * Description :  This is little more than chat.  We only "serve" to
2827  *                to close (or remember) any socket that chat may have
2828  *                opened.
2829  *
2830  * Parameters  :
2831  *          1  :  csp = Current client state (buffers, headers, etc...)
2832  *
2833  * Returns     :  N/A
2834  *
2835  *********************************************************************/
2836 #ifdef AMIGA
2837 void serve(struct client_state *csp)
2838 #else /* ifndef AMIGA */
2839 static void serve(struct client_state *csp)
2840 #endif /* def AMIGA */
2841 {
2842    int config_file_change_detected = 0; /* Only used for debugging */
2843 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
2844 #ifdef FEATURE_CONNECTION_SHARING
2845    static int monitor_thread_running = 0;
2846 #endif /* def FEATURE_CONNECTION_SHARING */
2847    int continue_chatting = 0;
2848
2849    log_error(LOG_LEVEL_CONNECT, "Accepted connection from %s on socket %d",
2850       csp->ip_addr_str, csp->cfd);
2851
2852    do
2853    {
2854       unsigned int latency;
2855
2856       chat(csp);
2857
2858       /*
2859        * If the request has been crunched,
2860        * the calculated latency is zero.
2861        */
2862       latency = (unsigned)(csp->server_connection.response_received -
2863          csp->server_connection.request_sent) / 2;
2864
2865       if ((csp->flags & CSP_FLAG_CLIENT_CONNECTION_KEEP_ALIVE)
2866          && (csp->flags & CSP_FLAG_CRUNCHED)
2867          && (csp->expected_client_content_length != 0))
2868       {
2869          csp->flags |= CSP_FLAG_SERVER_SOCKET_TAINTED;
2870          log_error(LOG_LEVEL_CONNECT,
2871             "Tainting client socket %d due to unread data.", csp->cfd);
2872       }
2873
2874       continue_chatting = (csp->config->feature_flags
2875          & RUNTIME_FEATURE_CONNECTION_KEEP_ALIVE)
2876          && !(csp->flags & CSP_FLAG_SERVER_SOCKET_TAINTED)
2877          && (csp->cfd != JB_INVALID_SOCKET)
2878          && (csp->flags & CSP_FLAG_CLIENT_CONNECTION_KEEP_ALIVE)
2879          && ((csp->flags & CSP_FLAG_SERVER_CONTENT_LENGTH_SET)
2880             || (csp->flags & CSP_FLAG_CHUNKED));
2881
2882       if (!(csp->flags & CSP_FLAG_CRUNCHED)
2883          && (csp->server_connection.sfd != JB_INVALID_SOCKET))
2884       {
2885          if (!(csp->flags & CSP_FLAG_SERVER_KEEP_ALIVE_TIMEOUT_SET))
2886          {
2887             csp->server_connection.keep_alive_timeout = csp->config->default_server_timeout;
2888          }
2889          if (!(csp->flags & CSP_FLAG_SERVER_CONNECTION_KEEP_ALIVE)
2890             || (csp->flags & CSP_FLAG_SERVER_SOCKET_TAINTED)
2891             || !socket_is_still_alive(csp->server_connection.sfd)
2892             || !(latency < csp->server_connection.keep_alive_timeout))
2893          {
2894             log_error(LOG_LEVEL_CONNECT,
2895                "Closing server socket %d connected to %s. "
2896                "Keep-alive %u. Tainted: %u. Socket alive %u. Timeout: %u.",
2897                csp->server_connection.sfd, csp->server_connection.host,
2898                0 != (csp->flags & CSP_FLAG_SERVER_CONNECTION_KEEP_ALIVE),
2899                0 != (csp->flags & CSP_FLAG_SERVER_SOCKET_TAINTED),
2900                socket_is_still_alive(csp->server_connection.sfd),
2901                csp->server_connection.keep_alive_timeout);
2902 #ifdef FEATURE_CONNECTION_SHARING
2903             if (csp->config->feature_flags & RUNTIME_FEATURE_CONNECTION_SHARING)
2904             {
2905                forget_connection(csp->server_connection.sfd);
2906             }
2907 #endif /* def FEATURE_CONNECTION_SHARING */
2908             close_socket(csp->server_connection.sfd);
2909             mark_connection_closed(&csp->server_connection);
2910          }
2911       }
2912
2913       if (continue_chatting && any_loaded_file_changed(csp))
2914       {
2915          continue_chatting = 0;
2916          config_file_change_detected = 1;
2917       }
2918
2919       if (continue_chatting)
2920       {
2921          if (((csp->flags & CSP_FLAG_PIPELINED_REQUEST_WAITING) != 0)
2922             && socket_is_still_alive(csp->cfd))
2923          {
2924             log_error(LOG_LEVEL_CONNECT, "Client request %d has been "
2925                "pipelined on socket %d and the socket is still alive.",
2926                csp->requests_received_total+1, csp->cfd);
2927             prepare_csp_for_next_request(csp);
2928             continue;
2929          }
2930
2931          if (0 != (csp->flags & CSP_FLAG_CLIENT_CONNECTION_KEEP_ALIVE))
2932          {
2933             if (csp->server_connection.sfd != JB_INVALID_SOCKET)
2934             {
2935                log_error(LOG_LEVEL_CONNECT,
2936                   "Waiting for the next client request on socket %d. "
2937                   "Keeping the server socket %d to %s open.",
2938                   csp->cfd, csp->server_connection.sfd, csp->server_connection.host);
2939             }
2940             else
2941             {
2942                log_error(LOG_LEVEL_CONNECT,
2943                   "Waiting for the next client request on socket %d. "
2944                   "No server socket to keep open.", csp->cfd);
2945             }
2946          }
2947
2948          if ((csp->flags & CSP_FLAG_CLIENT_CONNECTION_KEEP_ALIVE)
2949             && data_is_available(csp->cfd, (int)csp->config->keep_alive_timeout)
2950             && socket_is_still_alive(csp->cfd))
2951          {
2952             log_error(LOG_LEVEL_CONNECT,
2953                "Client request %u arrived in time on socket %d.",
2954                csp->requests_received_total+1, csp->cfd);
2955             prepare_csp_for_next_request(csp);
2956          }
2957          else
2958          {
2959 #ifdef FEATURE_CONNECTION_SHARING
2960             if ((csp->config->feature_flags & RUNTIME_FEATURE_CONNECTION_SHARING)
2961                && (csp->server_connection.sfd != JB_INVALID_SOCKET)
2962                && (socket_is_still_alive(csp->server_connection.sfd)))
2963             {
2964                time_t time_open = time(NULL) - csp->server_connection.timestamp;
2965
2966                if (csp->server_connection.keep_alive_timeout < time_open - (time_t)latency)
2967                {
2968                   break;
2969                }
2970
2971                remember_connection(&csp->server_connection);
2972                csp->server_connection.sfd = JB_INVALID_SOCKET;
2973                drain_and_close_socket(csp->cfd);
2974                csp->cfd = JB_INVALID_SOCKET;
2975                privoxy_mutex_lock(&connection_reuse_mutex);
2976                if (!monitor_thread_running)
2977                {
2978                   monitor_thread_running = 1;
2979                   privoxy_mutex_unlock(&connection_reuse_mutex);
2980                   wait_for_alive_connections();
2981                   privoxy_mutex_lock(&connection_reuse_mutex);
2982                   monitor_thread_running = 0;
2983                }
2984                privoxy_mutex_unlock(&connection_reuse_mutex);
2985             }
2986 #endif /* def FEATURE_CONNECTION_SHARING */
2987             break;
2988          }
2989       }
2990       else if (csp->server_connection.sfd != JB_INVALID_SOCKET)
2991       {
2992          log_error(LOG_LEVEL_CONNECT,
2993             "Closing server socket %d connected to %s. Keep-alive: %u. "
2994             "Tainted: %u. Socket alive: %u. Timeout: %u. "
2995             "Configuration file change detected: %u",
2996             csp->server_connection.sfd, csp->server_connection.host,
2997             0 != (csp->flags & CSP_FLAG_SERVER_CONNECTION_KEEP_ALIVE),
2998             0 != (csp->flags & CSP_FLAG_SERVER_SOCKET_TAINTED),
2999             socket_is_still_alive(csp->server_connection.sfd),
3000             csp->server_connection.keep_alive_timeout,
3001             config_file_change_detected);
3002       }
3003    } while (continue_chatting);
3004
3005 #else
3006    chat(csp);
3007 #endif /* def FEATURE_CONNECTION_KEEP_ALIVE */
3008
3009    if (csp->server_connection.sfd != JB_INVALID_SOCKET)
3010    {
3011 #ifdef FEATURE_CONNECTION_SHARING
3012       if (csp->config->feature_flags & RUNTIME_FEATURE_CONNECTION_SHARING)
3013       {
3014          forget_connection(csp->server_connection.sfd);
3015       }
3016 #endif /* def FEATURE_CONNECTION_SHARING */
3017       close_socket(csp->server_connection.sfd);
3018    }
3019
3020 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
3021    mark_connection_closed(&csp->server_connection);
3022 #endif
3023
3024    if (csp->cfd != JB_INVALID_SOCKET)
3025    {
3026       log_error(LOG_LEVEL_CONNECT, "Closing client socket %d. "
3027          "Keep-alive: %u. Socket alive: %u. Data available: %u. "
3028          "Configuration file change detected: %u. Requests received: %u.",
3029          csp->cfd, 0 != (csp->flags & CSP_FLAG_CLIENT_CONNECTION_KEEP_ALIVE),
3030          socket_is_still_alive(csp->cfd), data_is_available(csp->cfd, 0),
3031          config_file_change_detected, csp->requests_received_total);
3032       drain_and_close_socket(csp->cfd);
3033    }
3034
3035    csp->flags &= ~CSP_FLAG_ACTIVE;
3036
3037 }
3038
3039
3040 #ifdef __BEOS__
3041 /*********************************************************************
3042  *
3043  * Function    :  server_thread
3044  *
3045  * Description :  We only exist to call `serve' in a threaded environment.
3046  *
3047  * Parameters  :
3048  *          1  :  data = Current client state (buffers, headers, etc...)
3049  *
3050  * Returns     :  Always 0.
3051  *
3052  *********************************************************************/
3053 static int32 server_thread(void *data)
3054 {
3055    serve((struct client_state *) data);
3056    return 0;
3057
3058 }
3059 #endif
3060
3061
3062 #if !defined(_WIN32) || defined(_WIN_CONSOLE)
3063 /*********************************************************************
3064  *
3065  * Function    :  usage
3066  *
3067  * Description :  Print usage info & exit.
3068  *
3069  * Parameters  :  Pointer to argv[0] for identifying ourselves
3070  *
3071  * Returns     :  No. ,-)
3072  *
3073  *********************************************************************/
3074 static void usage(const char *myname)
3075 {
3076    printf("Privoxy version " VERSION " (" HOME_PAGE_URL ")\n"
3077           "Usage: %s [--config-test] "
3078 #if defined(unix)
3079           "[--chroot] "
3080 #endif /* defined(unix) */
3081           "[--help] "
3082 #if defined(unix)
3083           "[--no-daemon] [--pidfile pidfile] [--pre-chroot-nslookup hostname] [--user user[.group]] "
3084 #endif /* defined(unix) */
3085           "[--version] [configfile]\n"
3086           "Aborting\n", myname);
3087
3088    exit(2);
3089
3090 }
3091 #endif /* #if !defined(_WIN32) || defined(_WIN_CONSOLE) */
3092
3093
3094 #ifdef MUTEX_LOCKS_AVAILABLE
3095 /*********************************************************************
3096  *
3097  * Function    :  privoxy_mutex_lock
3098  *
3099  * Description :  Locks a mutex.
3100  *
3101  * Parameters  :
3102  *          1  :  mutex = The mutex to lock.
3103  *
3104  * Returns     :  Void. May exit in case of errors.
3105  *
3106  *********************************************************************/
3107 void privoxy_mutex_lock(privoxy_mutex_t *mutex)
3108 {
3109 #ifdef FEATURE_PTHREAD
3110    int err = pthread_mutex_lock(mutex);
3111    if (err)
3112    {
3113       if (mutex != &log_mutex)
3114       {
3115          log_error(LOG_LEVEL_FATAL,
3116             "Mutex locking failed: %s.\n", strerror(err));
3117       }
3118       exit(1);
3119    }
3120 #else
3121    EnterCriticalSection(mutex);
3122 #endif /* def FEATURE_PTHREAD */
3123 }
3124
3125
3126 /*********************************************************************
3127  *
3128  * Function    :  privoxy_mutex_unlock
3129  *
3130  * Description :  Unlocks a mutex.
3131  *
3132  * Parameters  :
3133  *          1  :  mutex = The mutex to unlock.
3134  *
3135  * Returns     :  Void. May exit in case of errors.
3136  *
3137  *********************************************************************/
3138 void privoxy_mutex_unlock(privoxy_mutex_t *mutex)
3139 {
3140 #ifdef FEATURE_PTHREAD
3141    int err = pthread_mutex_unlock(mutex);
3142    if (err)
3143    {
3144       if (mutex != &log_mutex)
3145       {
3146          log_error(LOG_LEVEL_FATAL,
3147             "Mutex unlocking failed: %s.\n", strerror(err));
3148       }
3149       exit(1);
3150    }
3151 #else
3152    LeaveCriticalSection(mutex);
3153 #endif /* def FEATURE_PTHREAD */
3154 }
3155
3156
3157 /*********************************************************************
3158  *
3159  * Function    :  privoxy_mutex_init
3160  *
3161  * Description :  Prepares a mutex.
3162  *
3163  * Parameters  :
3164  *          1  :  mutex = The mutex to initialize.
3165  *
3166  * Returns     :  Void. May exit in case of errors.
3167  *
3168  *********************************************************************/
3169 static void privoxy_mutex_init(privoxy_mutex_t *mutex)
3170 {
3171 #ifdef FEATURE_PTHREAD
3172    int err = pthread_mutex_init(mutex, 0);
3173    if (err)
3174    {
3175       printf("Fatal error. Mutex initialization failed: %s.\n",
3176          strerror(err));
3177       exit(1);
3178    }
3179 #else
3180    InitializeCriticalSection(mutex);
3181 #endif /* def FEATURE_PTHREAD */
3182 }
3183 #endif /* def MUTEX_LOCKS_AVAILABLE */
3184
3185 /*********************************************************************
3186  *
3187  * Function    :  initialize_mutexes
3188  *
3189  * Description :  Prepares mutexes if mutex support is available.
3190  *
3191  * Parameters  :  None
3192  *
3193  * Returns     :  Void, exits in case of errors.
3194  *
3195  *********************************************************************/
3196 static void initialize_mutexes(void)
3197 {
3198 #ifdef MUTEX_LOCKS_AVAILABLE
3199    /*
3200     * Prepare global mutex semaphores
3201     */
3202    privoxy_mutex_init(&log_mutex);
3203    privoxy_mutex_init(&log_init_mutex);
3204    privoxy_mutex_init(&connection_reuse_mutex);
3205 #ifdef FEATURE_EXTERNAL_FILTERS
3206    privoxy_mutex_init(&external_filter_mutex);
3207 #endif
3208
3209    /*
3210     * XXX: The assumptions below are a bit naive
3211     * and can cause locks that aren't necessary.
3212     *
3213     * For example older FreeBSD versions (< 6.x?)
3214     * have no gethostbyname_r, but gethostbyname is
3215     * thread safe.
3216     */
3217 #if !defined(HAVE_GETHOSTBYADDR_R) || !defined(HAVE_GETHOSTBYNAME_R)
3218    privoxy_mutex_init(&resolver_mutex);
3219 #endif /* !defined(HAVE_GETHOSTBYADDR_R) || !defined(HAVE_GETHOSTBYNAME_R) */
3220    /*
3221     * XXX: should we use a single mutex for
3222     * localtime() and gmtime() as well?
3223     */
3224 #ifndef HAVE_GMTIME_R
3225    privoxy_mutex_init(&gmtime_mutex);
3226 #endif /* ndef HAVE_GMTIME_R */
3227
3228 #ifndef HAVE_LOCALTIME_R
3229    privoxy_mutex_init(&localtime_mutex);
3230 #endif /* ndef HAVE_GMTIME_R */
3231
3232 #ifndef HAVE_RANDOM
3233    privoxy_mutex_init(&rand_mutex);
3234 #endif /* ndef HAVE_RANDOM */
3235
3236 #endif /* def MUTEX_LOCKS_AVAILABLE */
3237 }
3238
3239
3240 /*********************************************************************
3241  *
3242  * Function    :  main
3243  *
3244  * Description :  Load the config file and start the listen loop.
3245  *                This function is a lot more *sane* with the `load_config'
3246  *                and `listen_loop' functions; although it stills does
3247  *                a *little* too much for my taste.
3248  *
3249  * Parameters  :
3250  *          1  :  argc = Number of parameters (including $0).
3251  *          2  :  argv = Array of (char *)'s to the parameters.
3252  *
3253  * Returns     :  1 if : can't open config file, unrecognized directive,
3254  *                stats requested in multi-thread mode, can't open the
3255  *                log file, can't open the jar file, listen port is invalid,
3256  *                any load fails, and can't bind port.
3257  *
3258  *                Else main never returns, the process must be signaled
3259  *                to terminate execution.  Or, on Windows, use the
3260  *                "File", "Exit" menu option.
3261  *
3262  *********************************************************************/
3263 #ifdef __MINGW32__
3264 int real_main(int argc, char **argv)
3265 #else
3266 int main(int argc, char **argv)
3267 #endif
3268 {
3269    int argc_pos = 0;
3270    int do_config_test = 0;
3271    unsigned int random_seed;
3272 #ifdef unix
3273    struct passwd *pw = NULL;
3274    struct group *grp = NULL;
3275    int do_chroot = 0;
3276    char *pre_chroot_nslookup_to_load_resolver = NULL;
3277 #endif
3278
3279    Argc = argc;
3280    Argv = argv;
3281
3282    configfile =
3283 #if !defined(_WIN32)
3284    "config"
3285 #else
3286    "config.txt"
3287 #endif
3288       ;
3289
3290    /* Prepare mutexes if supported and necessary. */
3291    initialize_mutexes();
3292
3293    /* Enable logging until further notice. */
3294    init_log_module();
3295
3296    /*
3297     * Parse the command line arguments
3298     *
3299     * XXX: simply printing usage information in case of
3300     * invalid arguments isn't particularly user friendly.
3301     */
3302    while (++argc_pos < argc)
3303    {
3304 #ifdef _WIN32
3305       /* Check to see if the service must be installed or uninstalled */
3306       if (strncmp(argv[argc_pos], "--install", 9) == 0)
3307       {
3308          const char *pName = argv[argc_pos] + 9;
3309          if (*pName == ':')
3310             pName++;
3311          exit((install_service(pName)) ? 0 : 1);
3312       }
3313       else if (strncmp(argv[argc_pos], "--uninstall", 11) == 0)
3314       {
3315          const char *pName = argv[argc_pos] + 11;
3316          if (*pName == ':')
3317             pName++;
3318          exit((uninstall_service(pName)) ? 0 : 1);
3319       }
3320       else if (strcmp(argv[argc_pos], "--service") == 0)
3321       {
3322          bRunAsService = TRUE;
3323          w32_set_service_cwd();
3324          atexit(w32_service_exit_notify);
3325       }
3326       else
3327 #endif /* defined(_WIN32) */
3328
3329
3330 #if !defined(_WIN32) || defined(_WIN_CONSOLE)
3331
3332       if (strcmp(argv[argc_pos], "--help") == 0)
3333       {
3334          usage(argv[0]);
3335       }
3336
3337       else if (strcmp(argv[argc_pos], "--version") == 0)
3338       {
3339          printf("Privoxy version " VERSION " (" HOME_PAGE_URL ")\n");
3340          exit(0);
3341       }
3342
3343 #if defined(unix)
3344
3345       else if (strcmp(argv[argc_pos], "--no-daemon") == 0)
3346       {
3347          set_debug_level(LOG_LEVEL_FATAL | LOG_LEVEL_ERROR | LOG_LEVEL_INFO);
3348          daemon_mode = 0;
3349       }
3350
3351       else if (strcmp(argv[argc_pos], "--pidfile") == 0)
3352       {
3353          if (++argc_pos == argc) usage(argv[0]);
3354          pidfile = strdup_or_die(argv[argc_pos]);
3355       }
3356
3357       else if (strcmp(argv[argc_pos], "--user") == 0)
3358       {
3359          char *user_arg;
3360          char *group_name;
3361
3362          if (++argc_pos == argc) usage(argv[argc_pos]);
3363
3364          user_arg = strdup_or_die(argv[argc_pos]);
3365          group_name = strchr(user_arg, '.');
3366          if (NULL != group_name)
3367          {
3368             /* Nul-terminate the user name */
3369             *group_name = '\0';
3370
3371             /* Skip the former delimiter to actually reach the group name */
3372             group_name++;
3373
3374             grp = getgrnam(group_name);
3375             if (NULL == grp)
3376             {
3377                log_error(LOG_LEVEL_FATAL, "Group '%s' not found.", group_name);
3378             }
3379          }
3380          pw = getpwnam(user_arg);
3381          if (NULL == pw)
3382          {
3383             log_error(LOG_LEVEL_FATAL, "User '%s' not found.", user_arg);
3384          }
3385
3386          freez(user_arg);
3387       }
3388
3389       else if (strcmp(argv[argc_pos], "--pre-chroot-nslookup") == 0)
3390       {
3391          if (++argc_pos == argc) usage(argv[0]);
3392          pre_chroot_nslookup_to_load_resolver = strdup_or_die(argv[argc_pos]);
3393       }
3394
3395       else if (strcmp(argv[argc_pos], "--chroot") == 0)
3396       {
3397          do_chroot = 1;
3398       }
3399 #endif /* defined(unix) */
3400
3401       else if (strcmp(argv[argc_pos], "--config-test") == 0)
3402       {
3403          do_config_test = 1;
3404       }
3405
3406       else if (argc_pos + 1 != argc)
3407       {
3408          /*
3409           * This is neither the last command line
3410           * option, nor was it recognized before,
3411           * therefore it must be invalid.
3412           */
3413          usage(argv[0]);
3414       }
3415       else
3416
3417 #endif /* defined(_WIN32) && !defined(_WIN_CONSOLE) */
3418       {
3419          configfile = argv[argc_pos];
3420       }
3421
3422    } /* -END- while (more arguments) */
3423
3424    show_version(Argv[0]);
3425
3426 #if defined(unix)
3427    if (*configfile != '/')
3428    {
3429       char cwd[BUFFER_SIZE];
3430       char *abs_file;
3431       size_t abs_file_size;
3432
3433       /* make config-filename absolute here */
3434       if (NULL == getcwd(cwd, sizeof(cwd)))
3435       {
3436          perror("failed to get current working directory");
3437          exit(1);
3438       }
3439
3440       basedir = strdup_or_die(cwd);
3441       /* XXX: why + 5? */
3442       abs_file_size = strlen(cwd) + strlen(configfile) + 5;
3443       abs_file = malloc_or_die(abs_file_size);
3444       strlcpy(abs_file, basedir, abs_file_size);
3445       strlcat(abs_file, "/", abs_file_size);
3446       strlcat(abs_file, configfile, abs_file_size);
3447       configfile = abs_file;
3448    }
3449 #endif /* defined unix */
3450
3451
3452    files->next = NULL;
3453    clients->next = NULL;
3454
3455    /* XXX: factor out initialising after the next stable release. */
3456 #ifdef AMIGA
3457    InitAmiga();
3458 #elif defined(_WIN32)
3459    InitWin32();
3460 #endif
3461
3462    random_seed = (unsigned int)time(NULL);
3463 #ifdef HAVE_RANDOM
3464    srandom(random_seed);
3465 #else
3466    srand(random_seed);
3467 #endif /* ifdef HAVE_RANDOM */
3468
3469    /*
3470     * Unix signal handling
3471     *
3472     * Catch the abort, interrupt and terminate signals for a graceful exit
3473     * Catch the hangup signal so the errlog can be reopened.
3474     * Ignore the broken pipe signals (FIXME: Why?)
3475     */
3476 #if !defined(_WIN32) && !defined(__OS2__) && !defined(AMIGA)
3477 {
3478    int idx;
3479    const int catched_signals[] = { SIGTERM, SIGINT, SIGHUP };
3480
3481    for (idx = 0; idx < SZ(catched_signals); idx++)
3482    {
3483 #ifdef sun /* FIXME: Is it safe to check for HAVE_SIGSET instead? */
3484       if (sigset(catched_signals[idx], sig_handler) == SIG_ERR)
3485 #else
3486       if (signal(catched_signals[idx], sig_handler) == SIG_ERR)
3487 #endif /* ifdef sun */
3488       {
3489          log_error(LOG_LEVEL_FATAL, "Can't set signal-handler for signal %d: %E", catched_signals[idx]);
3490       }
3491    }
3492
3493    if (signal(SIGPIPE, SIG_IGN) == SIG_ERR)
3494    {
3495       log_error(LOG_LEVEL_FATAL, "Can't set ignore-handler for SIGPIPE: %E");
3496    }
3497
3498 }
3499 #else /* ifdef _WIN32 */
3500 # ifdef _WIN_CONSOLE
3501    /*
3502     * We *are* in a windows console app.
3503     * Print a verbose messages about FAQ's and such
3504     */
3505    printf("%s", win32_blurb);
3506 # endif /* def _WIN_CONSOLE */
3507 #endif /* def _WIN32 */
3508
3509    if (do_config_test)
3510    {
3511       exit(NULL == load_config());
3512    }
3513
3514    /* Initialize the CGI subsystem */
3515    cgi_init_error_messages();
3516
3517    /*
3518     * If running on unix and without the --no-daemon
3519     * option, become a daemon. I.e. fork, detach
3520     * from tty and get process group leadership
3521     */
3522 #if defined(unix)
3523 {
3524    if (daemon_mode)
3525    {
3526       int fd;
3527       pid_t pid = fork();
3528
3529       if (pid < 0) /* error */
3530       {
3531          perror("fork");
3532          exit(3);
3533       }
3534       else if (pid != 0) /* parent */
3535       {
3536          int status;
3537          pid_t wpid;
3538          /*
3539           * must check for errors
3540           * child died due to missing files aso
3541           */
3542          sleep(1);
3543          wpid = waitpid(pid, &status, WNOHANG);
3544          if (wpid != 0)
3545          {
3546             exit(1);
3547          }
3548          exit(0);
3549       }
3550       /* child */
3551
3552       setsid();
3553
3554       /*
3555        * stderr (fd 2) will be closed later on,
3556        * when the config file has been parsed.
3557        */
3558       close(0);
3559       close(1);
3560
3561       /*
3562        * Reserve fd 0 and 1 to prevent abort() and friends
3563        * from sending stuff to the clients or servers.
3564        */
3565       fd = open("/dev/null", O_RDONLY);
3566       if (fd == -1)
3567       {
3568          log_error(LOG_LEVEL_FATAL, "Failed to open /dev/null: %E");
3569       }
3570       else if (fd != 0)
3571       {
3572          if (dup2(fd, 0) == -1)
3573          {
3574             log_error(LOG_LEVEL_FATAL, "Failed to reserve fd 0: %E");
3575          }
3576          close(fd);
3577       }
3578       fd = open("/dev/null", O_WRONLY);
3579       if (fd == -1)
3580       {
3581          log_error(LOG_LEVEL_FATAL, "Failed to open /dev/null: %E");
3582       }
3583       else if (fd != 1)
3584       {
3585          if (dup2(fd, 1) == -1)
3586          {
3587             log_error(LOG_LEVEL_FATAL, "Failed to reserve fd 1: %E");
3588          }
3589          close(fd);
3590       }
3591
3592 #ifdef FEATURE_EXTERNAL_FILTERS
3593       for (fd = 0; fd < 3; fd++)
3594       {
3595          mark_socket_for_close_on_execute(fd);
3596       }
3597 #endif
3598
3599       chdir("/");
3600
3601    } /* -END- if (daemon_mode) */
3602
3603    /*
3604     * As soon as we have written the PID file, we can switch
3605     * to the user and group ID indicated by the --user option
3606     */
3607    write_pid_file();
3608
3609    if (NULL != pw)
3610    {
3611       if (setgid((NULL != grp) ? grp->gr_gid : pw->pw_gid))
3612       {
3613          log_error(LOG_LEVEL_FATAL, "Cannot setgid(): Insufficient permissions.");
3614       }
3615       if (NULL != grp)
3616       {
3617          if (setgroups(1, &grp->gr_gid))
3618          {
3619             log_error(LOG_LEVEL_FATAL, "setgroups() failed: %E");
3620          }
3621       }
3622       else if (initgroups(pw->pw_name, pw->pw_gid))
3623       {
3624          log_error(LOG_LEVEL_FATAL, "initgroups() failed: %E");
3625       }
3626       if (do_chroot)
3627       {
3628          if (!pw->pw_dir)
3629          {
3630             log_error(LOG_LEVEL_FATAL, "Home directory for %s undefined", pw->pw_name);
3631          }
3632          /* Read the time zone file from /etc before doing chroot. */
3633          tzset();
3634          if (NULL != pre_chroot_nslookup_to_load_resolver
3635              && '\0' != pre_chroot_nslookup_to_load_resolver[0])
3636          {
3637             /* Initialize resolver library. */
3638             (void) resolve_hostname_to_ip(pre_chroot_nslookup_to_load_resolver);
3639          }
3640          if (chroot(pw->pw_dir) < 0)
3641          {
3642             log_error(LOG_LEVEL_FATAL, "Cannot chroot to %s", pw->pw_dir);
3643          }
3644          if (chdir ("/"))
3645          {
3646             log_error(LOG_LEVEL_FATAL, "Cannot chdir /");
3647          }
3648       }
3649       if (setuid(pw->pw_uid))
3650       {
3651          log_error(LOG_LEVEL_FATAL, "Cannot setuid(): Insufficient permissions.");
3652       }
3653       if (do_chroot)
3654       {
3655          char putenv_dummy[64];
3656
3657          strlcpy(putenv_dummy, "HOME=/", sizeof(putenv_dummy));
3658          if (putenv(putenv_dummy) != 0)
3659          {
3660             log_error(LOG_LEVEL_FATAL, "Cannot putenv(): HOME");
3661          }
3662
3663          snprintf(putenv_dummy, sizeof(putenv_dummy), "USER=%s", pw->pw_name);
3664          if (putenv(putenv_dummy) != 0)
3665          {
3666             log_error(LOG_LEVEL_FATAL, "Cannot putenv(): USER");
3667          }
3668       }
3669    }
3670    else if (do_chroot)
3671    {
3672       log_error(LOG_LEVEL_FATAL, "Cannot chroot without --user argument.");
3673    }
3674 }
3675 #endif /* defined unix */
3676
3677 #ifdef _WIN32
3678    /* This will be FALSE unless the command line specified --service
3679     */
3680    if (bRunAsService)
3681    {
3682       /* Yup, so now we must attempt to establish a connection
3683        * with the service dispatcher. This will only work if this
3684        * process was launched by the service control manager to
3685        * actually run as a service. If this isn't the case, i've
3686        * known it take around 30 seconds or so for the call to return.
3687        */
3688
3689       /* The StartServiceCtrlDispatcher won't return until the service is stopping */
3690       if (w32_start_service_ctrl_dispatcher(w32ServiceDispatchTable))
3691       {
3692          /* Service has run, and at this point is now being stopped, so just return */
3693          return 0;
3694       }
3695
3696 #ifdef _WIN_CONSOLE
3697       printf("Warning: Failed to connect to Service Control Dispatcher\nwhen starting as a service!\n");
3698 #endif
3699       /* An error occurred. Usually it's because --service was wrongly specified
3700        * and we were unable to connect to the Service Control Dispatcher because
3701        * it wasn't expecting us and is therefore not listening.
3702        *
3703        * For now, just continue below to call the listen_loop function.
3704        */
3705    }
3706 #endif /* def _WIN32 */
3707
3708    listen_loop();
3709
3710    /* NOTREACHED */
3711    return(-1);
3712
3713 }
3714
3715
3716 /*********************************************************************
3717  *
3718  * Function    :  bind_port_helper
3719  *
3720  * Description :  Bind the listen port.  Handles logging, and aborts
3721  *                on failure.
3722  *
3723  * Parameters  :
3724  *          1  :  haddr = Host address to bind to. Use NULL to bind to
3725  *                        INADDR_ANY.
3726  *          2  :  hport = Specifies port to bind to.
3727  *
3728  * Returns     :  Port that was opened.
3729  *
3730  *********************************************************************/
3731 static jb_socket bind_port_helper(const char *haddr, int hport)
3732 {
3733    int result;
3734    jb_socket bfd;
3735
3736    result = bind_port(haddr, hport, &bfd);
3737
3738    if (result < 0)
3739    {
3740       const char *bind_address = (NULL != haddr) ? haddr : "INADDR_ANY";
3741       switch(result)
3742       {
3743          case -3:
3744             log_error(LOG_LEVEL_FATAL,
3745                "can't bind to %s:%d: There may be another Privoxy "
3746                "or some other proxy running on port %d",
3747                bind_address, hport, hport);
3748
3749          case -2:
3750             log_error(LOG_LEVEL_FATAL,
3751                "can't bind to %s:%d: The hostname is not resolvable",
3752                bind_address, hport);
3753
3754          default:
3755             log_error(LOG_LEVEL_FATAL, "can't bind to %s:%d: %E",
3756                bind_address, hport);
3757       }
3758
3759       /* shouldn't get here */
3760       return JB_INVALID_SOCKET;
3761    }
3762
3763 #ifndef _WIN32
3764    if (bfd >= FD_SETSIZE)
3765    {
3766       log_error(LOG_LEVEL_FATAL,
3767          "Bind socket number too high to use select(): %d >= %d",
3768          bfd, FD_SETSIZE);
3769    }
3770 #endif
3771
3772    if (haddr == NULL)
3773    {
3774       log_error(LOG_LEVEL_INFO, "Listening on port %d on all IP addresses",
3775          hport);
3776    }
3777    else
3778    {
3779       log_error(LOG_LEVEL_INFO, "Listening on port %d on IP address %s",
3780          hport, haddr);
3781    }
3782
3783    return bfd;
3784 }
3785
3786
3787 /*********************************************************************
3788  *
3789  * Function    :  bind_ports_helper
3790  *
3791  * Description :  Bind the listen ports.  Handles logging, and aborts
3792  *                on failure.
3793  *
3794  * Parameters  :
3795  *          1  :  config = Privoxy configuration.  Specifies ports
3796  *                         to bind to.
3797  *          2  :  sockets = Preallocated array of opened sockets
3798  *                          corresponding to specification in config.
3799  *                          All non-opened sockets will be set to
3800  *                          JB_INVALID_SOCKET.
3801  *
3802  * Returns     :  Nothing. Inspect sockets argument.
3803  *
3804  *********************************************************************/
3805 static void bind_ports_helper(struct configuration_spec * config,
3806                               jb_socket sockets[])
3807 {
3808    int i;
3809
3810    for (i = 0; i < MAX_LISTENING_SOCKETS; i++)
3811    {
3812       if (config->hport[i])
3813       {
3814          sockets[i] = bind_port_helper(config->haddr[i], config->hport[i]);
3815       }
3816       else
3817       {
3818          sockets[i] = JB_INVALID_SOCKET;
3819       }
3820    }
3821    config->need_bind = 0;
3822 }
3823
3824
3825 /*********************************************************************
3826  *
3827  * Function    :  close_ports_helper
3828  *
3829  * Description :  Close listenings ports.
3830  *
3831  * Parameters  :
3832  *          1  :  sockets = Array of opened and non-opened sockets to
3833  *                          close. All sockets will be set to
3834  *                          JB_INVALID_SOCKET.
3835  *
3836  * Returns     :  Nothing.
3837  *
3838  *********************************************************************/
3839 static void close_ports_helper(jb_socket sockets[])
3840 {
3841    int i;
3842
3843    for (i = 0; i < MAX_LISTENING_SOCKETS; i++)
3844    {
3845       if (JB_INVALID_SOCKET != sockets[i])
3846       {
3847          close_socket(sockets[i]);
3848       }
3849       sockets[i] = JB_INVALID_SOCKET;
3850    }
3851 }
3852
3853
3854 #ifdef _WIN32
3855 /* Without this simple workaround we get this compiler warning from _beginthread
3856  *     warning C4028: formal parameter 1 different from declaration
3857  */
3858 void w32_service_listen_loop(void *p)
3859 {
3860    listen_loop();
3861 }
3862 #endif /* def _WIN32 */
3863
3864
3865 /*********************************************************************
3866  *
3867  * Function    :  listen_loop
3868  *
3869  * Description :  bind the listen port and enter a "FOREVER" listening loop.
3870  *
3871  * Parameters  :  N/A
3872  *
3873  * Returns     :  Never.
3874  *
3875  *********************************************************************/
3876 static void listen_loop(void)
3877 {
3878    struct client_states *csp_list = NULL;
3879    struct client_state *csp = NULL;
3880    jb_socket bfds[MAX_LISTENING_SOCKETS];
3881    struct configuration_spec *config;
3882    unsigned int active_threads = 0;
3883
3884    config = load_config();
3885
3886 #ifdef FEATURE_CONNECTION_SHARING
3887    /*
3888     * XXX: Should be relocated once it no
3889     * longer needs to emit log messages.
3890     */
3891    initialize_reusable_connections();
3892 #endif /* def FEATURE_CONNECTION_SHARING */
3893
3894    bind_ports_helper(config, bfds);
3895
3896 #ifdef FEATURE_GRACEFUL_TERMINATION
3897    while (!g_terminate)
3898 #else
3899    for (;;)
3900 #endif
3901    {
3902 #if !defined(FEATURE_PTHREAD) && !defined(_WIN32) && !defined(__BEOS__) && !defined(AMIGA) && !defined(__OS2__)
3903       while (waitpid(-1, NULL, WNOHANG) > 0)
3904       {
3905          /* zombie children */
3906       }
3907 #endif /* !defined(FEATURE_PTHREAD) && !defined(_WIN32) && !defined(__BEOS__) && !defined(AMIGA) */
3908
3909       /*
3910        * Free data that was used by died threads
3911        */
3912       active_threads = sweep();
3913
3914 #if defined(unix)
3915       /*
3916        * Re-open the errlog after HUP signal
3917        */
3918       if (received_hup_signal)
3919       {
3920          if (NULL != config->logfile)
3921          {
3922             init_error_log(Argv[0], config->logfile);
3923          }
3924          received_hup_signal = 0;
3925       }
3926 #endif
3927
3928       csp_list = (struct client_states *)zalloc(sizeof(*csp_list));
3929       if (NULL == csp_list)
3930       {
3931          log_error(LOG_LEVEL_FATAL,
3932             "malloc(%d) for csp_list failed: %E", sizeof(*csp_list));
3933          continue;
3934       }
3935       csp = &csp_list->csp;
3936
3937       log_error(LOG_LEVEL_CONNECT,
3938          "Waiting for the next client connection. Currently active threads: %d",
3939          active_threads);
3940
3941       if (!accept_connection(csp, bfds))
3942       {
3943          log_error(LOG_LEVEL_CONNECT, "accept failed: %E");
3944
3945 #ifdef AMIGA
3946          if (!childs)
3947          {
3948             exit(1);
3949          }
3950 #endif
3951          freez(csp_list);
3952          continue;
3953       }
3954
3955       csp->flags |= CSP_FLAG_ACTIVE;
3956       csp->server_connection.sfd = JB_INVALID_SOCKET;
3957
3958       csp->config = config = load_config();
3959
3960       if (config->need_bind)
3961       {
3962          /*
3963           * Since we were listening to the "old port", we will not see
3964           * a "listen" param change until the next request.  So, at
3965           * least 1 more request must be made for us to find the new
3966           * setting.  I am simply closing the old socket and binding the
3967           * new one.
3968           *
3969           * Which-ever is correct, we will serve 1 more page via the
3970           * old settings.  This should probably be a "show-proxy-args"
3971           * request.  This should not be a so common of an operation
3972           * that this will hurt people's feelings.
3973           */
3974
3975          close_ports_helper(bfds);
3976
3977          bind_ports_helper(config, bfds);
3978       }
3979
3980 #ifdef FEATURE_TOGGLE
3981       if (global_toggle_state)
3982 #endif /* def FEATURE_TOGGLE */
3983       {
3984          csp->flags |= CSP_FLAG_TOGGLED_ON;
3985       }
3986
3987       if (run_loader(csp))
3988       {
3989          log_error(LOG_LEVEL_FATAL, "a loader failed - must exit");
3990          /* Never get here - LOG_LEVEL_FATAL causes program exit */
3991       }
3992
3993 #ifdef FEATURE_ACL
3994       if (block_acl(NULL,csp))
3995       {
3996          log_error(LOG_LEVEL_CONNECT,
3997             "Connection from %s on socket %d dropped due to ACL", csp->ip_addr_str, csp->cfd);
3998          close_socket(csp->cfd);
3999          freez(csp->ip_addr_str);
4000          freez(csp_list);
4001          continue;
4002       }
4003 #endif /* def FEATURE_ACL */
4004
4005       if ((0 != config->max_client_connections)
4006          && (active_threads >= config->max_client_connections))
4007       {
4008          log_error(LOG_LEVEL_CONNECT,
4009             "Rejecting connection from %s. Maximum number of connections reached.",
4010             csp->ip_addr_str);
4011          write_socket(csp->cfd, TOO_MANY_CONNECTIONS_RESPONSE,
4012             strlen(TOO_MANY_CONNECTIONS_RESPONSE));
4013          close_socket(csp->cfd);
4014          freez(csp->ip_addr_str);
4015          freez(csp_list);
4016          continue;
4017       }
4018
4019       /* add it to the list of clients */
4020       csp_list->next = clients->next;
4021       clients->next = csp_list;
4022
4023       if (config->multi_threaded)
4024       {
4025          int child_id;
4026
4027 /* this is a switch () statement in the C preprocessor - ugh */
4028 #undef SELECTED_ONE_OPTION
4029
4030 /* Use Pthreads in preference to native code */
4031 #if defined(FEATURE_PTHREAD) && !defined(SELECTED_ONE_OPTION)
4032 #define SELECTED_ONE_OPTION
4033          {
4034             pthread_t the_thread;
4035             pthread_attr_t attrs;
4036
4037             pthread_attr_init(&attrs);
4038             pthread_attr_setdetachstate(&attrs, PTHREAD_CREATE_DETACHED);
4039             errno = pthread_create(&the_thread, &attrs,
4040                (void * (*)(void *))serve, csp);
4041             child_id = errno ? -1 : 0;
4042             pthread_attr_destroy(&attrs);
4043          }
4044 #endif
4045
4046 #if defined(_WIN32) && !defined(_CYGWIN) && !defined(SELECTED_ONE_OPTION)
4047 #define SELECTED_ONE_OPTION
4048          child_id = _beginthread(
4049             (void (*)(void *))serve,
4050             64 * 1024,
4051             csp);
4052 #endif
4053
4054 #if defined(__OS2__) && !defined(SELECTED_ONE_OPTION)
4055 #define SELECTED_ONE_OPTION
4056          child_id = _beginthread(
4057             (void(* _Optlink)(void*))serve,
4058             NULL,
4059             64 * 1024,
4060             csp);
4061 #endif
4062
4063 #if defined(__BEOS__) && !defined(SELECTED_ONE_OPTION)
4064 #define SELECTED_ONE_OPTION
4065          {
4066             thread_id tid = spawn_thread
4067                (server_thread, "server", B_NORMAL_PRIORITY, csp);
4068
4069             if ((tid >= 0) && (resume_thread(tid) == B_OK))
4070             {
4071                child_id = (int) tid;
4072             }
4073             else
4074             {
4075                child_id = -1;
4076             }
4077          }
4078 #endif
4079
4080 #if defined(AMIGA) && !defined(SELECTED_ONE_OPTION)
4081 #define SELECTED_ONE_OPTION
4082          csp->cfd = ReleaseSocket(csp->cfd, -1);
4083
4084 #ifdef __amigaos4__
4085          child_id = (int)CreateNewProcTags(NP_Entry, (ULONG)server_thread,
4086                                            NP_Output, Output(),
4087                                            NP_CloseOutput, FALSE,
4088                                            NP_Name, (ULONG)"privoxy child",
4089                                            NP_Child, TRUE,
4090                                            TAG_DONE);
4091 #else
4092          child_id = (int)CreateNewProcTags(NP_Entry, (ULONG)server_thread,
4093                                            NP_Output, Output(),
4094                                            NP_CloseOutput, FALSE,
4095                                            NP_Name, (ULONG)"privoxy child",
4096                                            NP_StackSize, 200*1024,
4097                                            TAG_DONE);
4098 #endif
4099          if (0 != child_id)
4100          {
4101             childs++;
4102             ((struct Task *)child_id)->tc_UserData = csp;
4103             Signal((struct Task *)child_id, SIGF_SINGLE);
4104             Wait(SIGF_SINGLE);
4105          }
4106 #endif
4107
4108 #if !defined(SELECTED_ONE_OPTION)
4109          child_id = fork();
4110
4111          /* This block is only needed when using fork().
4112           * When using threads, the server thread was
4113           * created and run by the call to _beginthread().
4114           */
4115          if (child_id == 0)   /* child */
4116          {
4117             int rc = 0;
4118 #ifdef FEATURE_TOGGLE
4119             int inherited_toggle_state = global_toggle_state;
4120 #endif /* def FEATURE_TOGGLE */
4121
4122             serve(csp);
4123
4124             /*
4125              * If we've been toggled or we've blocked the request, tell Mom
4126              */
4127
4128 #ifdef FEATURE_TOGGLE
4129             if (inherited_toggle_state != global_toggle_state)
4130             {
4131                rc |= RC_FLAG_TOGGLED;
4132             }
4133 #endif /* def FEATURE_TOGGLE */
4134
4135 #ifdef FEATURE_STATISTICS
4136             if (csp->flags & CSP_FLAG_REJECTED)
4137             {
4138                rc |= RC_FLAG_BLOCKED;
4139             }
4140 #endif /* ndef FEATURE_STATISTICS */
4141
4142             _exit(rc);
4143          }
4144          else if (child_id > 0) /* parent */
4145          {
4146             /* in a fork()'d environment, the parent's
4147              * copy of the client socket and the CSP
4148              * are not used.
4149              */
4150             int child_status;
4151 #if !defined(_WIN32) && !defined(__CYGWIN__)
4152
4153             wait(&child_status);
4154
4155             /*
4156              * Evaluate child's return code: If the child has
4157              *  - been toggled, toggle ourselves
4158              *  - blocked its request, bump up the stats counter
4159              */
4160
4161 #ifdef FEATURE_TOGGLE
4162             if (WIFEXITED(child_status) && (WEXITSTATUS(child_status) & RC_FLAG_TOGGLED))
4163             {
4164                global_toggle_state = !global_toggle_state;
4165             }
4166 #endif /* def FEATURE_TOGGLE */
4167
4168 #ifdef FEATURE_STATISTICS
4169             urls_read++;
4170             if (WIFEXITED(child_status) && (WEXITSTATUS(child_status) & RC_FLAG_BLOCKED))
4171             {
4172                urls_rejected++;
4173             }
4174 #endif /* def FEATURE_STATISTICS */
4175
4176 #endif /* !defined(_WIN32) && defined(__CYGWIN__) */
4177             close_socket(csp->cfd);
4178             csp->flags &= ~CSP_FLAG_ACTIVE;
4179          }
4180 #endif
4181
4182 #undef SELECTED_ONE_OPTION
4183 /* end of cpp switch () */
4184
4185          if (child_id < 0)
4186          {
4187             /*
4188              * Spawning the child failed, assume it's because
4189              * there are too many children running already.
4190              * XXX: If you assume ...
4191              */
4192             log_error(LOG_LEVEL_ERROR,
4193                "Unable to take any additional connections: %E. Active threads: %d",
4194                active_threads);
4195             write_socket(csp->cfd, TOO_MANY_CONNECTIONS_RESPONSE,
4196                strlen(TOO_MANY_CONNECTIONS_RESPONSE));
4197             close_socket(csp->cfd);
4198             csp->flags &= ~CSP_FLAG_ACTIVE;
4199          }
4200       }
4201       else
4202       {
4203          serve(csp);
4204       }
4205    }
4206
4207    /* NOTREACHED unless FEATURE_GRACEFUL_TERMINATION is defined */
4208
4209    /* Clean up.  Aim: free all memory (no leaks) */
4210 #ifdef FEATURE_GRACEFUL_TERMINATION
4211
4212    log_error(LOG_LEVEL_ERROR, "Graceful termination requested");
4213
4214    unload_current_config_file();
4215    unload_current_actions_file();
4216    unload_current_re_filterfile();
4217 #ifdef FEATURE_TRUST
4218    unload_current_trust_file();
4219 #endif
4220
4221    if (config->multi_threaded)
4222    {
4223       int i = 60;
4224       do
4225       {
4226          sleep(1);
4227          sweep();
4228       } while ((clients->next != NULL) && (--i > 0));
4229
4230       if (i <= 0)
4231       {
4232          log_error(LOG_LEVEL_ERROR, "Graceful termination failed - still some live clients after 1 minute wait.");
4233       }
4234    }
4235    sweep();
4236    sweep();
4237
4238 #if defined(unix)
4239    freez(basedir);
4240 #endif
4241
4242 #if defined(_WIN32) && !defined(_WIN_CONSOLE)
4243    /* Cleanup - remove taskbar icon etc. */
4244    TermLogWindow();
4245 #endif
4246
4247    exit(0);
4248 #endif /* FEATURE_GRACEFUL_TERMINATION */
4249
4250 }
4251
4252
4253 /*
4254   Local Variables:
4255   tab-width: 3
4256   end:
4257 */