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