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