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