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