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