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