process_encrypted_request(): Don't call init_current_action() when toggled off
[privoxy.git] / jcc.c
1 /*********************************************************************
2  *
3  * File        :  $Source: /cvsroot/ijbswa/current/jcc.c,v $
4  *
5  * Purpose     :  Main file.  Contains main() method, main loop, and
6  *                the main connection-handling function.
7  *
8  * Copyright   :  Written by and Copyright (C) 2001-2020 the
9  *                Privoxy team. https://www.privoxy.org/
10  *
11  *                Based on the Internet Junkbuster originally written
12  *                by and Copyright (C) 1997 Anonymous Coders and
13  *                Junkbusters Corporation.  http://www.junkbusters.com
14  *
15  *                This program is free software; you can redistribute it
16  *                and/or modify it under the terms of the GNU General
17  *                Public License as published by the Free Software
18  *                Foundation; either version 2 of the License, or (at
19  *                your option) any later version.
20  *
21  *                This program is distributed in the hope that it will
22  *                be useful, but WITHOUT ANY WARRANTY; without even the
23  *                implied warranty of MERCHANTABILITY or FITNESS FOR A
24  *                PARTICULAR PURPOSE.  See the GNU General Public
25  *                License for more details.
26  *
27  *                The GNU General Public License should be included with
28  *                this file.  If not, you can view it at
29  *                http://www.gnu.org/copyleft/gpl.html
30  *                or write to the Free Software Foundation, Inc., 59
31  *                Temple Place - Suite 330, Boston, MA  02111-1307, USA.
32  *
33  *********************************************************************/
34
35
36 #include "config.h"
37
38 #include <stdio.h>
39 #include <sys/types.h>
40 #include <stdlib.h>
41 #include <string.h>
42 #include <signal.h>
43 #include <fcntl.h>
44 #include <errno.h>
45 #include <assert.h>
46
47 #ifdef _WIN32
48 # ifndef FEATURE_PTHREAD
49 #  ifndef STRICT
50 #   define STRICT
51 #  endif
52 #  include <winsock2.h>
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 # endif
96
97 #ifdef HAVE_POLL
98 #ifdef __GLIBC__
99 #include <sys/poll.h>
100 #else
101 #include <poll.h>
102 #endif /* def __GLIBC__ */
103 #else
104 # ifndef FD_ZERO
105 #  include <select.h>
106 # endif
107 #warning poll() appears to be unavailable. Your platform will become unsupported in the future.
108 #endif /* HAVE_POLL */
109
110 #endif
111
112 #include "project.h"
113 #include "list.h"
114 #include "jcc.h"
115 #ifdef FEATURE_HTTPS_FILTERING
116 #include "ssl.h"
117 #endif
118 #include "filters.h"
119 #include "loaders.h"
120 #include "parsers.h"
121 #include "miscutil.h"
122 #include "errlog.h"
123 #include "jbsockets.h"
124 #include "gateway.h"
125 #include "actions.h"
126 #include "cgi.h"
127 #include "loadcfg.h"
128 #include "urlmatch.h"
129 #ifdef FEATURE_CLIENT_TAGS
130 #include "client-tags.h"
131 #endif
132
133 int daemon_mode = 1;
134 struct client_states clients[1];
135 struct file_list     files[1];
136
137 #ifdef FEATURE_STATISTICS
138 int urls_read     = 0;     /* total nr of urls read inc rejected */
139 int urls_rejected = 0;     /* total nr of urls rejected */
140 #endif /* def FEATURE_STATISTICS */
141
142 #ifdef FEATURE_GRACEFUL_TERMINATION
143 int g_terminate = 0;
144 #endif
145
146 #if !defined(_WIN32) && !defined(__OS2__)
147 static void sig_handler(int the_signal);
148 #endif
149 static int client_protocol_is_unsupported(const struct client_state *csp, char *req);
150 static jb_err get_request_destination_elsewhere(struct client_state *csp, struct list *headers);
151 static jb_err get_server_headers(struct client_state *csp);
152 static const char *crunch_reason(const struct http_response *rsp);
153 static void send_crunch_response(struct client_state *csp, struct http_response *rsp);
154 static char *get_request_line(struct client_state *csp);
155 static jb_err receive_client_request(struct client_state *csp);
156 static jb_err parse_client_request(struct client_state *csp);
157 static void build_request_line(struct client_state *csp, const struct forward_spec *fwd, char **request_line);
158 static jb_err change_request_destination(struct client_state *csp);
159 static void chat(struct client_state *csp);
160 static void serve(struct client_state *csp);
161 #if !defined(_WIN32) || defined(_WIN_CONSOLE)
162 static void usage(const char *myname);
163 #endif
164 static void initialize_mutexes(void);
165 static jb_socket bind_port_helper(const char *haddr, int hport, int backlog);
166 static void bind_ports_helper(struct configuration_spec *config, jb_socket sockets[]);
167 static void close_ports_helper(jb_socket sockets[]);
168 static void listen_loop(void);
169 static void serve(struct client_state *csp);
170
171 #ifdef __BEOS__
172 static int32 server_thread(void *data);
173 #endif /* def __BEOS__ */
174
175 #ifdef _WIN32
176 #define sleep(N)  Sleep(((N) * 1000))
177 #endif
178
179 #ifdef __OS2__
180 #define sleep(N)  DosSleep(((N) * 100))
181 #endif
182
183 #ifdef FUZZ
184 int process_fuzzed_input(char *fuzz_input_type, char *fuzz_input_file);
185 void show_fuzz_usage(const char *name);
186 #endif
187
188 #ifdef MUTEX_LOCKS_AVAILABLE
189 /*
190  * XXX: Does the locking stuff really belong in this file?
191  */
192 privoxy_mutex_t log_mutex;
193 privoxy_mutex_t log_init_mutex;
194 privoxy_mutex_t connection_reuse_mutex;
195
196 #ifdef LIMIT_MUTEX_NUMBER
197 privoxy_mutex_t certificates_mutexes[32];
198 #else
199 privoxy_mutex_t certificates_mutexes[65536];
200 #endif /* LIMIT_MUTEX_NUMBER */
201 privoxy_mutex_t rng_mutex;
202
203 #ifdef FEATURE_EXTERNAL_FILTERS
204 privoxy_mutex_t external_filter_mutex;
205 #endif
206 #ifdef FEATURE_CLIENT_TAGS
207 privoxy_mutex_t client_tags_mutex;
208 #endif
209
210 #if !defined(HAVE_GETHOSTBYADDR_R) || !defined(HAVE_GETHOSTBYNAME_R)
211 privoxy_mutex_t resolver_mutex;
212 #endif /* !defined(HAVE_GETHOSTBYADDR_R) || !defined(HAVE_GETHOSTBYNAME_R) */
213
214 #ifndef HAVE_GMTIME_R
215 privoxy_mutex_t gmtime_mutex;
216 #endif /* ndef HAVE_GMTIME_R */
217
218 #ifndef HAVE_LOCALTIME_R
219 privoxy_mutex_t localtime_mutex;
220 #endif /* ndef HAVE_GMTIME_R */
221
222 #if !defined(HAVE_ARC4RANDOM) && !defined(HAVE_RANDOM)
223 privoxy_mutex_t rand_mutex;
224 #endif /* !defined(HAVE_ARC4RANDOM) && !defined(HAVE_RANDOM) */
225
226 #endif /* def MUTEX_LOCKS_AVAILABLE */
227
228 #if defined(unix)
229 const char *basedir = NULL;
230 const char *pidfile = NULL;
231 static int received_hup_signal = 0;
232 #endif /* defined unix */
233
234 /* HTTP snipplets. */
235 static const char CSUCCEED[] =
236    "HTTP/1.1 200 Connection established\r\n\r\n";
237
238 static const char CHEADER[] =
239    "HTTP/1.1 400 Invalid header received from client\r\n"
240    "Content-Type: text/plain\r\n"
241    "Connection: close\r\n\r\n"
242    "Invalid header received from client.\r\n";
243
244 static const char FTP_RESPONSE[] =
245    "HTTP/1.1 400 Invalid request received from client\r\n"
246    "Content-Type: text/plain\r\n"
247    "Connection: close\r\n\r\n"
248    "Invalid request. Privoxy doesn't support FTP.\r\n";
249
250 static const char GOPHER_RESPONSE[] =
251    "HTTP/1.1 400 Invalid request received from client\r\n"
252    "Content-Type: text/plain\r\n"
253    "Connection: close\r\n\r\n"
254    "Invalid request. Privoxy doesn't support gopher.\r\n";
255
256 /* XXX: should be a template */
257 static const char MISSING_DESTINATION_RESPONSE[] =
258    "HTTP/1.1 400 Bad request received from client\r\n"
259    "Content-Type: text/plain\r\n"
260    "Connection: close\r\n\r\n"
261    "Bad request. Privoxy was unable to extract the destination.\r\n";
262
263 /* XXX: should be a template */
264 static const char INVALID_SERVER_HEADERS_RESPONSE[] =
265    "HTTP/1.1 502 Server or forwarder response invalid\r\n"
266    "Content-Type: text/plain\r\n"
267    "Connection: close\r\n\r\n"
268    "Bad response. The server or forwarder response doesn't look like HTTP.\r\n";
269
270 /* XXX: should be a template */
271 static const char MESSED_UP_REQUEST_RESPONSE[] =
272    "HTTP/1.1 400 Malformed request after rewriting\r\n"
273    "Content-Type: text/plain\r\n"
274    "Connection: close\r\n\r\n"
275    "Bad request. Messed up with header filters.\r\n";
276
277 static const char TOO_MANY_CONNECTIONS_RESPONSE[] =
278    "HTTP/1.1 503 Too many open connections\r\n"
279    "Content-Type: text/plain\r\n"
280    "Connection: close\r\n\r\n"
281    "Maximum number of open connections reached.\r\n";
282
283 static const char CLIENT_CONNECTION_TIMEOUT_RESPONSE[] =
284    "HTTP/1.1 504 Connection timeout\r\n"
285    "Content-Type: text/plain\r\n"
286    "Connection: close\r\n\r\n"
287    "The connection timed out because the client request didn't arrive in time.\r\n";
288
289 static const char CLIENT_BODY_PARSE_ERROR_RESPONSE[] =
290    "HTTP/1.1 400 Failed reading client body\r\n"
291    "Content-Type: text/plain\r\n"
292    "Connection: close\r\n\r\n"
293    "Failed parsing or buffering the chunk-encoded client body.\r\n";
294
295 static const char UNSUPPORTED_CLIENT_EXPECTATION_ERROR_RESPONSE[] =
296    "HTTP/1.1 417 Expecting too much\r\n"
297    "Content-Type: text/plain\r\n"
298    "Connection: close\r\n\r\n"
299    "Privoxy detected an unsupported Expect header value.\r\n";
300
301 /* A function to crunch a response */
302 typedef struct http_response *(*crunch_func_ptr)(struct client_state *);
303
304 /* Crunch function flags */
305 #define CF_NO_FLAGS        0
306 /* Cruncher applies to forced requests as well */
307 #define CF_IGNORE_FORCE    1
308 /* Crunched requests are counted for the block statistics */
309 #define CF_COUNT_AS_REJECT 2
310
311 /* A crunch function and its flags */
312 struct cruncher
313 {
314    const crunch_func_ptr cruncher;
315    const int flags;
316 };
317
318 static int crunch_response_triggered(struct client_state *csp, const struct cruncher crunchers[]);
319
320 /* Complete list of cruncher functions */
321 static const struct cruncher crunchers_all[] = {
322    { direct_response, CF_COUNT_AS_REJECT|CF_IGNORE_FORCE},
323    { block_url,       CF_COUNT_AS_REJECT },
324 #ifdef FEATURE_TRUST
325    { trust_url,       CF_COUNT_AS_REJECT },
326 #endif /* def FEATURE_TRUST */
327    { redirect_url,    CF_NO_FLAGS  },
328    { dispatch_cgi,    CF_IGNORE_FORCE},
329    { NULL,            0 }
330 };
331
332 /* Light version, used after tags are applied */
333 static const struct cruncher crunchers_light[] = {
334    { block_url,       CF_COUNT_AS_REJECT },
335    { redirect_url,    CF_NO_FLAGS },
336    { NULL,            0 }
337 };
338
339
340 /*
341  * XXX: Don't we really mean
342  *
343  * #if defined(unix)
344  *
345  * here?
346  */
347 #if !defined(_WIN32) && !defined(__OS2__)
348 /*********************************************************************
349  *
350  * Function    :  sig_handler
351  *
352  * Description :  Signal handler for different signals.
353  *                Exit gracefully on TERM and INT
354  *                or set a flag that will cause the errlog
355  *                to be reopened by the main thread on HUP.
356  *
357  * Parameters  :
358  *          1  :  the_signal = the signal cause this function to call
359  *
360  * Returns     :  -
361  *
362  *********************************************************************/
363 static void sig_handler(int the_signal)
364 {
365    switch(the_signal)
366    {
367       case SIGTERM:
368       case SIGINT:
369          log_error(LOG_LEVEL_INFO, "exiting by signal %d .. bye", the_signal);
370 #if defined(unix)
371          if (pidfile)
372          {
373             unlink(pidfile);
374          }
375 #endif /* unix */
376          exit(the_signal);
377          break;
378
379       case SIGHUP:
380 #if defined(unix)
381          received_hup_signal = 1;
382 #endif
383          break;
384
385       default:
386          /*
387           * We shouldn't be here, unless we catch signals
388           * in main() that we can't handle here!
389           */
390          log_error(LOG_LEVEL_FATAL, "sig_handler: exiting on unexpected signal %d", the_signal);
391    }
392    return;
393
394 }
395 #endif
396
397
398 /*********************************************************************
399  *
400  * Function    :  get_write_delay
401  *
402  * Description :  Parse the delay-response parameter.
403  *
404  * Parameters  :
405  *          1  :  csp = Current client state (buffers, headers, etc...)
406  *
407  * Returns     :  Number of milliseconds to delay writes.
408  *
409  *********************************************************************/
410 static unsigned int get_write_delay(const struct client_state *csp)
411 {
412    unsigned int delay;
413    char *endptr;
414    char *newval;
415
416    if ((csp->action->flags & ACTION_DELAY_RESPONSE) == 0)
417    {
418       return 0;
419    }
420    newval = csp->action->string[ACTION_STRING_DELAY_RESPONSE];
421
422    delay = (unsigned)strtol(newval, &endptr, 0);
423    if (*endptr != '\0')
424    {
425       log_error(LOG_LEVEL_FATAL,
426          "Invalid delay-response{} parameter: '%s'", newval);
427    }
428
429    return delay;
430
431 }
432
433
434 /*********************************************************************
435  *
436  * Function    :  client_protocol_is_unsupported
437  *
438  * Description :  Checks if the client used a known unsupported
439  *                protocol and deals with it by sending an error
440  *                response.
441  *
442  * Parameters  :
443  *          1  :  csp = Current client state (buffers, headers, etc...)
444  *          2  :  req = the first request line send by the client
445  *
446  * Returns     :  TRUE if an error response has been generated, or
447  *                FALSE if the request doesn't look invalid.
448  *
449  *********************************************************************/
450 static int client_protocol_is_unsupported(const struct client_state *csp, char *req)
451 {
452    /*
453     * If it's a FTP or gopher request, we don't support it.
454     *
455     * These checks are better than nothing, but they might
456     * not work in all configurations and some clients might
457     * have problems digesting the answer.
458     *
459     * They should, however, never cause more problems than
460     * Privoxy's old behaviour (returning the misleading HTML
461     * error message:
462     *
463     * "Could not resolve http://(ftp|gopher)://example.org").
464     */
465    if (!strncmpic(req, "GET ftp://", 10) || !strncmpic(req, "GET gopher://", 13))
466    {
467       const char *response = NULL;
468       const char *protocol = NULL;
469
470       if (!strncmpic(req, "GET ftp://", 10))
471       {
472          response = FTP_RESPONSE;
473          protocol = "FTP";
474       }
475       else
476       {
477          response = GOPHER_RESPONSE;
478          protocol = "GOPHER";
479       }
480       log_error(LOG_LEVEL_ERROR,
481          "%s tried to use Privoxy as %s proxy: %s",
482          csp->ip_addr_str, protocol, req);
483       log_error(LOG_LEVEL_CLF,
484          "%s - - [%T] \"%s\" 400 0", csp->ip_addr_str, req);
485       freez(req);
486       write_socket_delayed(csp->cfd, response, strlen(response),
487          get_write_delay(csp));
488
489       return TRUE;
490    }
491
492    return FALSE;
493 }
494
495
496 /*********************************************************************
497  *
498  * Function    :  client_has_unsupported_expectations
499  *
500  * Description :  Checks if the client used an unsupported expectation
501  *                in which case an error message is delivered.
502  *
503  * Parameters  :
504  *          1  :  csp = Current client state (buffers, headers, etc...)
505  *
506  * Returns     :  TRUE if an error response has been generated, or
507  *                FALSE if the request doesn't look invalid.
508  *
509  *********************************************************************/
510 static int client_has_unsupported_expectations(const struct client_state *csp)
511 {
512    if ((csp->flags & CSP_FLAG_UNSUPPORTED_CLIENT_EXPECTATION))
513    {
514       log_error(LOG_LEVEL_ERROR,
515          "Rejecting request from client %s with unsupported Expect header value",
516          csp->ip_addr_str);
517       log_error(LOG_LEVEL_CLF,
518          "%s - - [%T] \"%s\" 417 0", csp->ip_addr_str, csp->http->cmd);
519       write_socket_delayed(csp->cfd,
520          UNSUPPORTED_CLIENT_EXPECTATION_ERROR_RESPONSE,
521          strlen(UNSUPPORTED_CLIENT_EXPECTATION_ERROR_RESPONSE),
522          get_write_delay(csp));
523
524       return TRUE;
525    }
526
527    return FALSE;
528
529 }
530
531
532 /*********************************************************************
533  *
534  * Function    :  get_request_destination_elsewhere
535  *
536  * Description :  If the client's request was redirected into
537  *                Privoxy without the client's knowledge,
538  *                the request line lacks the destination host.
539  *
540  *                This function tries to get it elsewhere,
541  *                provided accept-intercepted-requests is enabled.
542  *
543  *                "Elsewhere" currently only means "Host: header",
544  *                but in the future we may ask the redirecting
545  *                packet filter to look the destination up.
546  *
547  *                If the destination stays unknown, an error
548  *                response is send to the client and headers
549  *                are freed so that chat() can return directly.
550  *
551  * Parameters  :
552  *          1  :  csp = Current client state (buffers, headers, etc...)
553  *          2  :  headers = a header list
554  *
555  * Returns     :  JB_ERR_OK if the destination is now known, or
556  *                JB_ERR_PARSE if it isn't.
557  *
558  *********************************************************************/
559 static jb_err get_request_destination_elsewhere(struct client_state *csp, struct list *headers)
560 {
561    char *req;
562
563    if (!(csp->config->feature_flags & RUNTIME_FEATURE_ACCEPT_INTERCEPTED_REQUESTS))
564    {
565       log_error(LOG_LEVEL_ERROR, "%s's request: \'%s\' is invalid."
566          " Privoxy isn't configured to accept intercepted requests.",
567          csp->ip_addr_str, csp->http->cmd);
568       /* XXX: Use correct size */
569       log_error(LOG_LEVEL_CLF, "%s - - [%T] \"%s\" 400 0",
570          csp->ip_addr_str, csp->http->cmd);
571
572       write_socket_delayed(csp->cfd, CHEADER, strlen(CHEADER),
573          get_write_delay(csp));
574       destroy_list(headers);
575
576       return JB_ERR_PARSE;
577    }
578    else if (JB_ERR_OK == get_destination_from_headers(headers, csp->http))
579    {
580 #ifndef FEATURE_EXTENDED_HOST_PATTERNS
581       /* Split the domain we just got for pattern matching */
582       init_domain_components(csp->http);
583 #endif
584
585       return JB_ERR_OK;
586    }
587    else
588    {
589       /* We can't work without destination. Go spread the news.*/
590
591       req = list_to_text(headers);
592       chomp(req);
593       /* XXX: Use correct size */
594       log_error(LOG_LEVEL_CLF, "%s - - [%T] \"%s\" 400 0",
595          csp->ip_addr_str, csp->http->cmd);
596       log_error(LOG_LEVEL_ERROR,
597          "Privoxy was unable to get the destination for %s's request:\n%s\n%s",
598          csp->ip_addr_str, csp->http->cmd, req);
599       freez(req);
600
601       write_socket_delayed(csp->cfd, MISSING_DESTINATION_RESPONSE,
602          strlen(MISSING_DESTINATION_RESPONSE), get_write_delay(csp));
603       destroy_list(headers);
604
605       return JB_ERR_PARSE;
606    }
607    /*
608     * TODO: If available, use PF's ioctl DIOCNATLOOK as last resort
609     * to get the destination IP address, use it as host directly
610     * or do a reverse DNS lookup first.
611     */
612 }
613
614
615 /*********************************************************************
616  *
617  * Function    :  get_server_headers
618  *
619  * Description :  Parses server headers in iob and fills them
620  *                into csp->headers so that they can later be
621  *                handled by sed().
622  *
623  * Parameters  :
624  *          1  :  csp = Current client state (buffers, headers, etc...)
625  *
626  * Returns     :  JB_ERR_OK if everything went fine, or
627  *                JB_ERR_PARSE if the headers were incomplete.
628  *
629  *********************************************************************/
630 static jb_err get_server_headers(struct client_state *csp)
631 {
632    int continue_hack_in_da_house = 0;
633    char * header;
634
635    while (((header = get_header(csp->iob)) != NULL) || continue_hack_in_da_house)
636    {
637       if (header == NULL)
638       {
639          /*
640           * continue hack in da house. Ignore the ending of
641           * this head and continue enlisting header lines.
642           * The reason is described below.
643           */
644          enlist(csp->headers, "");
645          continue_hack_in_da_house = 0;
646          continue;
647       }
648       else if (0 == strncmpic(header, "HTTP/1.1 100", 12))
649       {
650          /*
651           * It's a bodyless continue response, don't
652           * stop header parsing after reaching its end.
653           *
654           * As a result Privoxy will concatenate the
655           * next response's head and parse and deliver
656           * the headers as if they belonged to one request.
657           *
658           * The client will separate them because of the
659           * empty line between them.
660           *
661           * XXX: What we're doing here is clearly against
662           * the intended purpose of the continue header,
663           * and under some conditions (HTTP/1.0 client request)
664           * it's a standard violation.
665           *
666           * Anyway, "sort of against the spec" is preferable
667           * to "always getting confused by Continue responses"
668           * (Privoxy's behaviour before this hack was added)
669           */
670          log_error(LOG_LEVEL_HEADER, "Continue hack in da house.");
671          continue_hack_in_da_house = 1;
672       }
673       else if (*header == '\0')
674       {
675          /*
676           * If the header is empty, but the Continue hack
677           * isn't active, we can assume that we reached the
678           * end of the buffer before we hit the end of the
679           * head.
680           *
681           * Inform the caller an let it decide how to handle it.
682           */
683          return JB_ERR_PARSE;
684       }
685
686       if (JB_ERR_MEMORY == enlist(csp->headers, header))
687       {
688          /*
689           * XXX: Should we quit the request and return a
690           * out of memory error page instead?
691           */
692          log_error(LOG_LEVEL_ERROR,
693             "Out of memory while enlisting server headers. %s lost.",
694             header);
695       }
696       freez(header);
697    }
698
699    return JB_ERR_OK;
700 }
701
702
703 /*********************************************************************
704  *
705  * Function    :  crunch_reason
706  *
707  * Description :  Translates the crunch reason code into a string.
708  *
709  * Parameters  :
710  *          1  :  rsp = a http_response
711  *
712  * Returns     :  A string with the crunch reason or an error description.
713  *
714  *********************************************************************/
715 static const char *crunch_reason(const struct http_response *rsp)
716 {
717    char * reason = NULL;
718
719    assert(rsp != NULL);
720    if (rsp == NULL)
721    {
722       return "Internal error while searching for crunch reason";
723    }
724
725    switch (rsp->crunch_reason)
726    {
727       case UNSUPPORTED:
728          reason = "Unsupported HTTP feature";
729          break;
730       case BLOCKED:
731          reason = "Blocked";
732          break;
733       case UNTRUSTED:
734          reason = "Untrusted";
735          break;
736       case REDIRECTED:
737          reason = "Redirected";
738          break;
739       case CGI_CALL:
740          reason = "CGI Call";
741          break;
742       case NO_SUCH_DOMAIN:
743          reason = "DNS failure";
744          break;
745       case FORWARDING_FAILED:
746          reason = "Forwarding failed";
747          break;
748       case CONNECT_FAILED:
749          reason = "Connection failure";
750          break;
751       case OUT_OF_MEMORY:
752          reason = "Out of memory (may mask other reasons)";
753          break;
754       case CONNECTION_TIMEOUT:
755          reason = "Connection timeout";
756          break;
757       case NO_SERVER_DATA:
758          reason = "No server data received";
759          break;
760       default:
761          reason = "No reason recorded";
762          break;
763    }
764
765    return reason;
766 }
767
768
769 /*********************************************************************
770  *
771  * Function    :  log_applied_actions
772  *
773  * Description :  Logs the applied actions if LOG_LEVEL_ACTIONS is
774  *                enabled.
775  *
776  * Parameters  :
777  *          1  :  actions = Current action spec to log
778  *
779  * Returns     :  Nothing.
780  *
781  *********************************************************************/
782 static void log_applied_actions(const struct current_action_spec *actions)
783 {
784    /*
785     * The conversion to text requires lots of memory allocations so
786     * we only do the conversion if the user is actually interested.
787     */
788    if (debug_level_is_enabled(LOG_LEVEL_ACTIONS))
789    {
790       char *actions_as_text = actions_to_line_of_text(actions);
791       log_error(LOG_LEVEL_ACTIONS, "%s", actions_as_text);
792       freez(actions_as_text);
793    }
794 }
795
796
797 /*********************************************************************
798  *
799  * Function    :  send_crunch_response
800  *
801  * Description :  Delivers already prepared response for
802  *                intercepted requests, logs the interception
803  *                and frees the response.
804  *
805  * Parameters  :
806  *          1  :  csp = Current client state (buffers, headers, etc...)
807  *          2  :  rsp = Fully prepared response. Will be freed on exit.
808  *
809  * Returns     :  Nothing.
810  *
811  *********************************************************************/
812 static void send_crunch_response(struct client_state *csp, struct http_response *rsp)
813 {
814       const struct http_request *http = csp->http;
815       char status_code[4];
816
817       assert(rsp != NULL);
818       assert(rsp->head != NULL);
819
820       if (rsp == NULL)
821       {
822          log_error(LOG_LEVEL_FATAL, "NULL response in send_crunch_response.");
823       }
824
825       /*
826        * Extract the status code from the actual head
827        * that will be send to the client. It is the only
828        * way to get it right for all requests, including
829        * the fixed ones for out-of-memory problems.
830        *
831        * A head starts like this: 'HTTP/1.1 200...'
832        *                           0123456789|11
833        *                                     10
834        */
835       status_code[0] = rsp->head[9];
836       status_code[1] = rsp->head[10];
837       status_code[2] = rsp->head[11];
838       status_code[3] = '\0';
839
840       /* Log that the request was crunched and why. */
841       log_applied_actions(csp->action);
842       log_error(LOG_LEVEL_CRUNCH, "%s: %s", crunch_reason(rsp), http->url);
843       log_error(LOG_LEVEL_CLF, "%s - - [%T] \"%s\" %s %u",
844          csp->ip_addr_str, http->ocmd, status_code, rsp->content_length);
845
846       /* Write the answer to the client */
847 #ifdef FEATURE_HTTPS_FILTERING
848       if (client_use_ssl(csp))
849       {
850          if ((ssl_send_data(&(csp->mbedtls_client_attr.ssl),
851                  (const unsigned char *)rsp->head, rsp->head_length) < 0)
852           || (ssl_send_data(&(csp->mbedtls_client_attr.ssl),
853                  (const unsigned char *)rsp->body, rsp->content_length) < 0))
854          {
855             /* There is nothing we can do about it. */
856             log_error(LOG_LEVEL_CONNECT, "Couldn't deliver the error message "
857                "for %s through client socket %d using TLS/SSL",
858                http->url, csp->cfd);
859          }
860       }
861       else
862 #endif
863       {
864          if (write_socket_delayed(csp->cfd, rsp->head, rsp->head_length,
865                 get_write_delay(csp))
866           || write_socket_delayed(csp->cfd, rsp->body, rsp->content_length,
867                 get_write_delay(csp)))
868          {
869             /* There is nothing we can do about it. */
870             log_error(LOG_LEVEL_CONNECT,
871                "Couldn't deliver the error message for %s through client socket %d: %E",
872                http->url, csp->cfd);
873          }
874       }
875
876       /* Clean up and return */
877       if (cgi_error_memory() != rsp)
878       {
879          free_http_response(rsp);
880       }
881       return;
882 }
883
884
885 /*********************************************************************
886  *
887  * Function    :  crunch_response_triggered
888  *
889  * Description :  Checks if the request has to be crunched,
890  *                and delivers the crunch response if necessary.
891  *
892  * Parameters  :
893  *          1  :  csp = Current client state (buffers, headers, etc...)
894  *          2  :  crunchers = list of cruncher functions to run
895  *
896  * Returns     :  TRUE if the request was answered with a crunch response
897  *                FALSE otherwise.
898  *
899  *********************************************************************/
900 static int crunch_response_triggered(struct client_state *csp, const struct cruncher crunchers[])
901 {
902    struct http_response *rsp = NULL;
903    const struct cruncher *c;
904
905    /*
906     * If CGI request crunching is disabled,
907     * check the CGI dispatcher out of order to
908     * prevent unintentional blocks or redirects.
909     */
910    if (!(csp->config->feature_flags & RUNTIME_FEATURE_CGI_CRUNCHING)
911        && (NULL != (rsp = dispatch_cgi(csp))))
912    {
913       /* Deliver, log and free the interception response. */
914       send_crunch_response(csp, rsp);
915       csp->flags |= CSP_FLAG_CRUNCHED;
916       return TRUE;
917    }
918
919    for (c = crunchers; c->cruncher != NULL; c++)
920    {
921       /*
922        * Check the cruncher if either Privoxy is toggled
923        * on and the request isn't forced, or if the cruncher
924        * applies to forced requests as well.
925        */
926       if (((csp->flags & CSP_FLAG_TOGGLED_ON) &&
927           !(csp->flags & CSP_FLAG_FORCED)) ||
928           (c->flags & CF_IGNORE_FORCE))
929       {
930          rsp = c->cruncher(csp);
931          if (NULL != rsp)
932          {
933             /* Deliver, log and free the interception response. */
934             send_crunch_response(csp, rsp);
935             csp->flags |= CSP_FLAG_CRUNCHED;
936 #ifdef FEATURE_STATISTICS
937             if (c->flags & CF_COUNT_AS_REJECT)
938             {
939                csp->flags |= CSP_FLAG_REJECTED;
940             }
941 #endif /* def FEATURE_STATISTICS */
942
943             return TRUE;
944          }
945       }
946    }
947
948    return FALSE;
949 }
950
951
952 /*********************************************************************
953  *
954  * Function    :  build_request_line
955  *
956  * Description :  Builds the HTTP request line.
957  *
958  *                If a HTTP forwarder is used it expects the whole URL,
959  *                web servers only get the path.
960  *
961  * Parameters  :
962  *          1  :  csp = Current client state (buffers, headers, etc...)
963  *          2  :  fwd = The forwarding spec used for the request
964  *                XXX: Should use http->fwd instead.
965  *          3  :  request_line = The old request line which will be replaced.
966  *
967  * Returns     :  Nothing. Terminates in case of memory problems.
968  *
969  *********************************************************************/
970 static void build_request_line(struct client_state *csp, const struct forward_spec *fwd, char **request_line)
971 {
972    struct http_request *http = csp->http;
973
974    /*
975     * Downgrade http version from 1.1 to 1.0
976     * if +downgrade action applies.
977     */
978    if ((csp->action->flags & ACTION_DOWNGRADE)
979      && (!strcmpic(http->ver, "HTTP/1.1")))
980    {
981       freez(http->ver);
982       http->ver = strdup_or_die("HTTP/1.0");
983    }
984
985    /*
986     * Rebuild the request line.
987     */
988    freez(*request_line);
989    *request_line = strdup(http->gpc);
990    string_append(request_line, " ");
991
992    if (fwd->forward_host && fwd->type != FORWARD_WEBSERVER)
993    {
994       string_append(request_line, http->url);
995    }
996    else
997    {
998       string_append(request_line, http->path);
999    }
1000    string_append(request_line, " ");
1001    string_append(request_line, http->ver);
1002
1003    if (*request_line == NULL)
1004    {
1005       log_error(LOG_LEVEL_FATAL, "Out of memory writing HTTP command");
1006    }
1007    log_error(LOG_LEVEL_HEADER, "New HTTP Request-Line: %s", *request_line);
1008 }
1009
1010
1011 /*********************************************************************
1012  *
1013  * Function    :  change_request_destination
1014  *
1015  * Description :  Parse a (rewritten) request line and regenerate
1016  *                the http request data.
1017  *
1018  * Parameters  :
1019  *          1  :  csp = Current client state (buffers, headers, etc...)
1020  *
1021  * Returns     :  Forwards the parse_http_request() return code.
1022  *                Terminates in case of memory problems.
1023  *
1024  *********************************************************************/
1025 static jb_err change_request_destination(struct client_state *csp)
1026 {
1027    struct http_request *http = csp->http;
1028    jb_err err;
1029
1030    log_error(LOG_LEVEL_REDIRECTS, "Rewrite detected: %s",
1031       csp->headers->first->str);
1032    free_http_request(http);
1033    err = parse_http_request(csp->headers->first->str, http);
1034    if (JB_ERR_OK != err)
1035    {
1036       log_error(LOG_LEVEL_ERROR, "Couldn't parse rewritten request: %s.",
1037          jb_err_to_string(err));
1038    }
1039
1040    return err;
1041 }
1042
1043
1044 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
1045 /*********************************************************************
1046  *
1047  * Function    :  server_response_is_complete
1048  *
1049  * Description :  Determines whether we should stop reading
1050  *                from the server socket.
1051  *
1052  * Parameters  :
1053  *          1  :  csp = Current client state (buffers, headers, etc...)
1054  *          2  :  content_length = Length of content received so far.
1055  *
1056  * Returns     :  TRUE if the response is complete,
1057  *                FALSE otherwise.
1058  *
1059  *********************************************************************/
1060 static int server_response_is_complete(struct client_state *csp,
1061    unsigned long long content_length)
1062 {
1063    int content_length_known = !!(csp->flags & CSP_FLAG_CONTENT_LENGTH_SET);
1064
1065    if (!strcmpic(csp->http->gpc, "HEAD"))
1066    {
1067       /*
1068        * "HEAD" implies no body, we are thus expecting
1069        * no content. XXX: incomplete "list" of methods?
1070        */
1071       csp->expected_content_length = 0;
1072       content_length_known = TRUE;
1073       csp->flags |= CSP_FLAG_SERVER_CONTENT_LENGTH_SET;
1074    }
1075
1076    if (csp->http->status == 204 || csp->http->status == 304)
1077    {
1078       /*
1079        * Expect no body. XXX: incomplete "list" of status codes?
1080        */
1081       csp->expected_content_length = 0;
1082       content_length_known = TRUE;
1083       csp->flags |= CSP_FLAG_SERVER_CONTENT_LENGTH_SET;
1084    }
1085
1086    return (content_length_known && ((0 == csp->expected_content_length)
1087             || (csp->expected_content_length <= content_length)));
1088 }
1089
1090
1091 #ifdef FEATURE_CONNECTION_SHARING
1092 /*********************************************************************
1093  *
1094  * Function    :  wait_for_alive_connections
1095  *
1096  * Description :  Waits for alive connections to timeout.
1097  *
1098  * Parameters  :  N/A
1099  *
1100  * Returns     :  N/A
1101  *
1102  *********************************************************************/
1103 static void wait_for_alive_connections(void)
1104 {
1105    int connections_alive = close_unusable_connections();
1106
1107    while (0 < connections_alive)
1108    {
1109       log_error(LOG_LEVEL_CONNECT,
1110          "Waiting for %d connections to timeout.",
1111          connections_alive);
1112       sleep(60);
1113       connections_alive = close_unusable_connections();
1114    }
1115
1116    log_error(LOG_LEVEL_CONNECT, "No connections to wait for left.");
1117
1118 }
1119 #endif /* def FEATURE_CONNECTION_SHARING */
1120
1121
1122 /*********************************************************************
1123  *
1124  * Function    :  save_connection_destination
1125  *
1126  * Description :  Remembers a connection for reuse later on.
1127  *
1128  * Parameters  :
1129  *          1  :  sfd  = Open socket to remember.
1130  *          2  :  http = The destination for the connection.
1131  *          3  :  fwd  = The forwarder settings used.
1132  *          4  :  server_connection  = storage.
1133  *
1134  * Returns     : void
1135  *
1136  *********************************************************************/
1137 void save_connection_destination(jb_socket sfd,
1138                                  const struct http_request *http,
1139                                  const struct forward_spec *fwd,
1140                                  struct reusable_connection *server_connection)
1141 {
1142    assert(sfd != JB_INVALID_SOCKET);
1143    assert(NULL != http->host);
1144
1145    server_connection->sfd = sfd;
1146    server_connection->host = strdup_or_die(http->host);
1147    server_connection->port = http->port;
1148
1149    assert(NULL != fwd);
1150    assert(server_connection->gateway_host == NULL);
1151    assert(server_connection->gateway_port == 0);
1152    assert(server_connection->forwarder_type == 0);
1153    assert(server_connection->forward_host == NULL);
1154    assert(server_connection->forward_port == 0);
1155
1156    server_connection->forwarder_type = fwd->type;
1157    if (NULL != fwd->gateway_host)
1158    {
1159       server_connection->gateway_host = strdup_or_die(fwd->gateway_host);
1160    }
1161    else
1162    {
1163       server_connection->gateway_host = NULL;
1164    }
1165    server_connection->gateway_port = fwd->gateway_port;
1166
1167    if (NULL != fwd->forward_host)
1168    {
1169       server_connection->forward_host = strdup_or_die(fwd->forward_host);
1170    }
1171    else
1172    {
1173       server_connection->forward_host = NULL;
1174    }
1175    server_connection->forward_port = fwd->forward_port;
1176 }
1177
1178
1179 /*********************************************************************
1180  *
1181  * Function    : verify_request_length
1182  *
1183  * Description : Checks if we already got the whole client requests
1184  *               and sets CSP_FLAG_CLIENT_REQUEST_COMPLETELY_READ if
1185  *               we do.
1186  *
1187  *               Data that doesn't belong to the current request is
1188  *               either thrown away to let the client retry on a clean
1189  *               socket, or stashed to be dealt with after the current
1190  *               request is served.
1191  *
1192  * Parameters  :
1193  *          1  :  csp = Current client state (buffers, headers, etc...)
1194  *
1195  * Returns     :  void
1196  *
1197  *********************************************************************/
1198 static void verify_request_length(struct client_state *csp)
1199 {
1200    unsigned long long buffered_request_bytes =
1201       (unsigned long long)(csp->client_iob->eod - csp->client_iob->cur);
1202
1203    if ((csp->expected_client_content_length != 0)
1204       && (buffered_request_bytes != 0))
1205    {
1206       if (csp->expected_client_content_length >= buffered_request_bytes)
1207       {
1208          csp->expected_client_content_length -= buffered_request_bytes;
1209          log_error(LOG_LEVEL_CONNECT, "Reduced expected bytes to %llu "
1210             "to account for the %llu ones we already got.",
1211             csp->expected_client_content_length, buffered_request_bytes);
1212       }
1213       else
1214       {
1215          assert(csp->client_iob->eod > csp->client_iob->cur + csp->expected_client_content_length);
1216          csp->client_iob->eod = csp->client_iob->cur + csp->expected_client_content_length;
1217          log_error(LOG_LEVEL_CONNECT, "Reducing expected bytes to 0. "
1218             "Marking the server socket tainted after throwing %llu bytes away.",
1219             buffered_request_bytes - csp->expected_client_content_length);
1220          csp->expected_client_content_length = 0;
1221          csp->flags |= CSP_FLAG_SERVER_SOCKET_TAINTED;
1222       }
1223
1224       if (csp->expected_client_content_length == 0)
1225       {
1226          csp->flags |= CSP_FLAG_CLIENT_REQUEST_COMPLETELY_READ;
1227       }
1228    }
1229
1230    if (!(csp->flags & CSP_FLAG_CLIENT_REQUEST_COMPLETELY_READ)
1231       && ((csp->client_iob->cur < csp->client_iob->eod)
1232          || (csp->expected_client_content_length != 0)))
1233    {
1234       if (strcmpic(csp->http->gpc, "GET")
1235          && strcmpic(csp->http->gpc, "HEAD")
1236          && strcmpic(csp->http->gpc, "TRACE")
1237          && strcmpic(csp->http->gpc, "OPTIONS")
1238          && strcmpic(csp->http->gpc, "DELETE"))
1239       {
1240          /* XXX: this is an incomplete hack */
1241          csp->flags &= ~CSP_FLAG_CLIENT_REQUEST_COMPLETELY_READ;
1242          log_error(LOG_LEVEL_CONNECT, "There better be a request body.");
1243       }
1244       else
1245       {
1246          csp->flags |= CSP_FLAG_CLIENT_REQUEST_COMPLETELY_READ;
1247
1248          if ((csp->config->feature_flags & RUNTIME_FEATURE_TOLERATE_PIPELINING) == 0)
1249          {
1250             csp->flags |= CSP_FLAG_SERVER_SOCKET_TAINTED;
1251             log_error(LOG_LEVEL_CONNECT,
1252                "Possible pipeline attempt detected. The connection will not "
1253                "be kept alive and we will only serve the first request.");
1254             /* Nuke the pipelined requests from orbit, just to be sure. */
1255             clear_iob(csp->client_iob);
1256          }
1257          else
1258          {
1259             /*
1260              * Keep the pipelined data around for now, we'll deal with
1261              * it once we're done serving the current request.
1262              */
1263             csp->flags |= CSP_FLAG_PIPELINED_REQUEST_WAITING;
1264             assert(csp->client_iob->eod >= csp->client_iob->cur);
1265             log_error(LOG_LEVEL_CONNECT, "Complete client request followed by "
1266                "%d bytes of pipelined data received.",
1267                (int)(csp->client_iob->eod - csp->client_iob->cur));
1268          }
1269       }
1270    }
1271    else
1272    {
1273       csp->flags |= CSP_FLAG_CLIENT_REQUEST_COMPLETELY_READ;
1274       log_error(LOG_LEVEL_CONNECT, "Complete client request received.");
1275    }
1276 }
1277 #endif /* FEATURE_CONNECTION_KEEP_ALIVE */
1278
1279
1280 /*********************************************************************
1281  *
1282  * Function    :  mark_server_socket_tainted
1283  *
1284  * Description :  Makes sure we don't reuse a server socket
1285  *                (if we didn't read everything the server sent
1286  *                us reusing the socket would lead to garbage).
1287  *
1288  * Parameters  :
1289  *          1  :  csp = Current client state (buffers, headers, etc...)
1290  *
1291  * Returns     :  void.
1292  *
1293  *********************************************************************/
1294 static void mark_server_socket_tainted(struct client_state *csp)
1295 {
1296    /*
1297     * For consistency we always mark the server socket
1298     * tainted, however, to reduce the log noise we only
1299     * emit a log message if the server socket could have
1300     * actually been reused.
1301     */
1302    if ((csp->flags & CSP_FLAG_SERVER_CONNECTION_KEEP_ALIVE)
1303       && !(csp->flags & CSP_FLAG_SERVER_SOCKET_TAINTED))
1304    {
1305       log_error(LOG_LEVEL_CONNECT,
1306          "Marking the server socket %d tainted.",
1307          csp->server_connection.sfd);
1308    }
1309    csp->flags |= CSP_FLAG_SERVER_SOCKET_TAINTED;
1310 }
1311
1312 /*********************************************************************
1313  *
1314  * Function    :  get_request_line
1315  *
1316  * Description : Read the client request line.
1317  *
1318  * Parameters  :
1319  *          1  :  csp = Current client state (buffers, headers, etc...)
1320  *
1321  * Returns     :  Pointer to request line or NULL in case of errors.
1322  *
1323  *********************************************************************/
1324 static char *get_request_line(struct client_state *csp)
1325 {
1326    char buf[BUFFER_SIZE];
1327    char *request_line = NULL;
1328    int len;
1329
1330    memset(buf, 0, sizeof(buf));
1331
1332    if ((csp->flags & CSP_FLAG_PIPELINED_REQUEST_WAITING) != 0)
1333    {
1334       /*
1335        * If there are multiple pipelined requests waiting,
1336        * the flag will be set again once the next request
1337        * has been parsed.
1338        */
1339       csp->flags &= ~CSP_FLAG_PIPELINED_REQUEST_WAITING;
1340
1341       request_line = get_header(csp->client_iob);
1342       if ((NULL != request_line) && ('\0' != *request_line))
1343       {
1344          return request_line;
1345       }
1346       else
1347       {
1348          log_error(LOG_LEVEL_CONNECT, "No complete request line "
1349             "received yet. Continuing reading from %d.", csp->cfd);
1350       }
1351    }
1352
1353    do
1354    {
1355       if (
1356 #ifdef FUZZ
1357           0 == (csp->flags & CSP_FLAG_FUZZED_INPUT) &&
1358 #endif
1359           !data_is_available(csp->cfd, csp->config->socket_timeout)
1360           )
1361       {
1362          if (socket_is_still_alive(csp->cfd))
1363          {
1364             log_error(LOG_LEVEL_CONNECT,
1365                "No request line on socket %d received in time. Timeout: %d.",
1366                csp->cfd, csp->config->socket_timeout);
1367             write_socket_delayed(csp->cfd, CLIENT_CONNECTION_TIMEOUT_RESPONSE,
1368                strlen(CLIENT_CONNECTION_TIMEOUT_RESPONSE),
1369                get_write_delay(csp));
1370          }
1371          else
1372          {
1373             log_error(LOG_LEVEL_CONNECT,
1374                "The client side of the connection on socket %d got "
1375                "closed without sending a complete request line.", csp->cfd);
1376          }
1377          return NULL;
1378       }
1379
1380       len = read_socket(csp->cfd, buf, sizeof(buf) - 1);
1381
1382       if (len <= 0) return NULL;
1383
1384       /*
1385        * If there is no memory left for buffering the
1386        * request, there is nothing we can do but hang up
1387        */
1388       if (add_to_iob(csp->client_iob, csp->config->buffer_limit, buf, len))
1389       {
1390          return NULL;
1391       }
1392
1393       request_line = get_header(csp->client_iob);
1394
1395    } while ((NULL != request_line) && ('\0' == *request_line));
1396
1397    return request_line;
1398
1399 }
1400
1401 enum chunk_status
1402 {
1403    CHUNK_STATUS_MISSING_DATA,
1404    CHUNK_STATUS_BODY_COMPLETE,
1405    CHUNK_STATUS_PARSE_ERROR
1406 };
1407
1408
1409 /*********************************************************************
1410  *
1411  * Function    :  chunked_body_is_complete
1412  *
1413  * Description :  Figures out whether or not a chunked body is complete.
1414  *
1415  *                Currently it always starts at the beginning of the
1416  *                buffer which is somewhat wasteful and prevents Privoxy
1417  *                from starting to forward the correctly parsed chunks
1418  *                as soon as theoretically possible.
1419  *
1420  *                Should be modified to work with a common buffer,
1421  *                and allow the caller to skip already parsed chunks.
1422  *
1423  *                This would allow the function to be used for unbuffered
1424  *                response bodies as well.
1425  *
1426  * Parameters  :
1427  *          1  :  iob = Buffer with the body to check.
1428  *          2  :  length = Length of complete body
1429  *
1430  * Returns     :  Enum with the result of the check.
1431  *
1432  *********************************************************************/
1433 static enum chunk_status chunked_body_is_complete(struct iob *iob, size_t *length)
1434 {
1435    unsigned int chunksize;
1436    char *p = iob->cur;
1437
1438    do
1439    {
1440       /*
1441        * We need at least a single digit, followed by "\r\n",
1442        * followed by an unknown amount of data, followed by "\r\n".
1443        */
1444       if (p + 5 > iob->eod)
1445       {
1446          return CHUNK_STATUS_MISSING_DATA;
1447       }
1448       if (sscanf(p, "%x", &chunksize) != 1)
1449       {
1450          return CHUNK_STATUS_PARSE_ERROR;
1451       }
1452
1453       /*
1454        * We want at least a single digit, followed by "\r\n",
1455        * followed by the specified amount of data, followed by "\r\n".
1456        */
1457       if (p + chunksize + 5 > iob->eod)
1458       {
1459          return CHUNK_STATUS_MISSING_DATA;
1460       }
1461
1462       /* Skip chunk-size. */
1463       p = strstr(p, "\r\n");
1464       if (NULL == p)
1465       {
1466          return CHUNK_STATUS_PARSE_ERROR;
1467       }
1468       /* Move beyond the chunkdata. */
1469       p += 2 + chunksize;
1470
1471       /* There should be another "\r\n" to skip */
1472       if (memcmp(p, "\r\n", 2))
1473       {
1474          return CHUNK_STATUS_PARSE_ERROR;
1475       }
1476       p += 2;
1477    } while (chunksize > 0U);
1478
1479    *length = (size_t)(p - iob->cur);
1480    assert(*length <= (size_t)(iob->eod - iob->cur));
1481    assert(p <= iob->eod);
1482
1483    return CHUNK_STATUS_BODY_COMPLETE;
1484
1485 }
1486
1487
1488 /*********************************************************************
1489  *
1490  * Function    : receive_chunked_client_request_body
1491  *
1492  * Description : Read the chunk-encoded client request body.
1493  *               Failures are dealt with.
1494  *
1495  * Parameters  :
1496  *          1  :  csp = Current client state (buffers, headers, etc...)
1497  *
1498  * Returns     :  JB_ERR_OK or JB_ERR_PARSE
1499  *
1500  *********************************************************************/
1501 static jb_err receive_chunked_client_request_body(struct client_state *csp)
1502 {
1503    size_t body_length;
1504    enum chunk_status status;
1505
1506    while (CHUNK_STATUS_MISSING_DATA ==
1507       (status = chunked_body_is_complete(csp->client_iob, &body_length)))
1508    {
1509       char buf[BUFFER_SIZE];
1510       int len;
1511
1512       if (!data_is_available(csp->cfd, csp->config->socket_timeout))
1513       {
1514          log_error(LOG_LEVEL_ERROR,
1515             "Timeout while waiting for the client body.");
1516          break;
1517       }
1518       len = read_socket(csp->cfd, buf, sizeof(buf) - 1);
1519       if (len <= 0)
1520       {
1521          log_error(LOG_LEVEL_ERROR, "Read the client body failed: %E");
1522          break;
1523       }
1524       if (add_to_iob(csp->client_iob, csp->config->buffer_limit, buf, len))
1525       {
1526          break;
1527       }
1528    }
1529    if (status != CHUNK_STATUS_BODY_COMPLETE)
1530    {
1531       write_socket_delayed(csp->cfd, CLIENT_BODY_PARSE_ERROR_RESPONSE,
1532          strlen(CLIENT_BODY_PARSE_ERROR_RESPONSE), get_write_delay(csp));
1533       log_error(LOG_LEVEL_CLF,
1534          "%s - - [%T] \"Failed reading chunked client body\" 400 0", csp->ip_addr_str);
1535       return JB_ERR_PARSE;
1536    }
1537    log_error(LOG_LEVEL_CONNECT,
1538       "Chunked client body completely read. Length: %d", body_length);
1539    csp->expected_client_content_length = body_length;
1540
1541    return JB_ERR_OK;
1542
1543 }
1544
1545
1546 #ifdef FUZZ
1547 /*********************************************************************
1548  *
1549  * Function    :  fuzz_chunked_transfer_encoding
1550  *
1551  * Description :  Treat the fuzzed input as chunked transfer encoding
1552  *                to check and dechunk.
1553  *
1554  * Parameters  :
1555  *          1  :  csp      = Used to store the data.
1556  *          2  :  fuzz_input_file = File to read the input from.
1557  *
1558  * Returns     : Result of dechunking
1559  *
1560  *********************************************************************/
1561 extern int fuzz_chunked_transfer_encoding(struct client_state *csp, char *fuzz_input_file)
1562 {
1563    size_t length;
1564    size_t size = (size_t)(csp->iob->eod - csp->iob->cur);
1565    enum chunk_status status;
1566
1567    status = chunked_body_is_complete(csp->iob, &length);
1568    if (CHUNK_STATUS_BODY_COMPLETE != status)
1569    {
1570       log_error(LOG_LEVEL_INFO, "Chunked body is incomplete or invalid");
1571    }
1572
1573    return (JB_ERR_OK == remove_chunked_transfer_coding(csp->iob->cur, &size));
1574
1575 }
1576
1577
1578 /*********************************************************************
1579  *
1580  * Function    : fuzz_client_request
1581  *
1582  * Description : Try to get a client request from the fuzzed input.
1583  *
1584  * Parameters  :
1585  *          1  :  csp = Current client state (buffers, headers, etc...)
1586  *          2  :  fuzz_input_file = File to read the input from.
1587  *
1588  * Returns     :  Result of fuzzing.
1589  *
1590  *********************************************************************/
1591 extern int fuzz_client_request(struct client_state *csp, char *fuzz_input_file)
1592 {
1593    jb_err err;
1594
1595    csp->cfd = 0;
1596    csp->ip_addr_str = "fuzzer";
1597
1598    if (strcmp(fuzz_input_file, "-") != 0)
1599    {
1600       log_error(LOG_LEVEL_FATAL,
1601          "Fuzzed client requests can currenty only be read from stdin (-).");
1602    }
1603    err = receive_client_request(csp);
1604    if (err != JB_ERR_OK)
1605    {
1606       return 1;
1607    }
1608    err = parse_client_request(csp);
1609    if (err != JB_ERR_OK)
1610    {
1611       return 1;
1612    }
1613
1614    return 0;
1615
1616 }
1617 #endif  /* def FUZZ */
1618
1619
1620 #ifdef FEATURE_FORCE_LOAD
1621 /*********************************************************************
1622  *
1623  * Function    :  force_required
1624  *
1625  * Description : Checks a request line to see if it contains
1626  *               the FORCE_PREFIX. If it does, it is removed
1627  *               unless enforcing requests has beend disabled.
1628  *
1629  * Parameters  :
1630  *          1  :  request_line = HTTP request line
1631  *
1632  * Returns     :  TRUE if force is required, FALSE otherwise.
1633  *
1634  *********************************************************************/
1635 static int force_required(const struct client_state *csp, char *request_line)
1636 {
1637    char *p;
1638
1639    p = strstr(request_line, "http://");
1640    if (p != NULL)
1641    {
1642       /* Skip protocol */
1643       p += strlen("http://");
1644    }
1645    else
1646    {
1647       /* Intercepted request usually don't specify the protocol. */
1648       p = request_line;
1649    }
1650
1651    /* Go to the beginning of the path */
1652    p = strstr(p, "/");
1653    if (p == NULL)
1654    {
1655       /*
1656        * If the path is missing the request line is invalid and we
1657        * are done here. The client-visible rejection happens later on.
1658        */
1659       return 0;
1660    }
1661
1662    if (0 == strncmpic(p, FORCE_PREFIX, strlen(FORCE_PREFIX) - 1))
1663    {
1664       if (!(csp->config->feature_flags & RUNTIME_FEATURE_ENFORCE_BLOCKS))
1665       {
1666          /* XXX: Should clean more carefully */
1667          strclean(request_line, FORCE_PREFIX);
1668          log_error(LOG_LEVEL_FORCE,
1669             "Enforcing request: \"%s\".", request_line);
1670
1671          return 1;
1672       }
1673       log_error(LOG_LEVEL_FORCE,
1674          "Ignored force prefix in request: \"%s\".", request_line);
1675    }
1676
1677    return 0;
1678
1679 }
1680 #endif /* def FEATURE_FORCE_LOAD */
1681
1682
1683 /*********************************************************************
1684  *
1685  * Function    :  receive_client_request
1686  *
1687  * Description : Read the client's request (more precisely the
1688  *               client headers) and answer it if necessary.
1689  *
1690  * Parameters  :
1691  *          1  :  csp = Current client state (buffers, headers, etc...)
1692  *
1693  * Returns     :  JB_ERR_OK, JB_ERR_PARSE or JB_ERR_MEMORY
1694  *
1695  *********************************************************************/
1696 static jb_err receive_client_request(struct client_state *csp)
1697 {
1698    char buf[BUFFER_SIZE];
1699    char *p;
1700    char *req = NULL;
1701    struct http_request *http;
1702    int len;
1703    jb_err err;
1704
1705    /* Temporary copy of the client's headers before they get enlisted in csp->headers */
1706    struct list header_list;
1707    struct list *headers = &header_list;
1708
1709    /* We don't care if the arriving data is a valid HTTP request or not. */
1710    csp->requests_received_total++;
1711
1712    http = csp->http;
1713
1714    memset(buf, 0, sizeof(buf));
1715
1716    req = get_request_line(csp);
1717    if (req == NULL)
1718    {
1719       mark_server_socket_tainted(csp);
1720       return JB_ERR_PARSE;
1721    }
1722    assert(*req != '\0');
1723
1724    if (client_protocol_is_unsupported(csp, req))
1725    {
1726       return JB_ERR_PARSE;
1727    }
1728
1729 #ifdef FEATURE_FORCE_LOAD
1730    if (force_required(csp, req))
1731    {
1732       csp->flags |= CSP_FLAG_FORCED;
1733    }
1734 #endif /* def FEATURE_FORCE_LOAD */
1735
1736    err = parse_http_request(req, http);
1737    freez(req);
1738    if (JB_ERR_OK != err)
1739    {
1740       write_socket_delayed(csp->cfd, CHEADER, strlen(CHEADER),
1741          get_write_delay(csp));
1742       /* XXX: Use correct size */
1743       log_error(LOG_LEVEL_CLF, "%s - - [%T] \"Invalid request\" 400 0", csp->ip_addr_str);
1744       log_error(LOG_LEVEL_ERROR,
1745          "Couldn't parse request line received from %s: %s",
1746          csp->ip_addr_str, jb_err_to_string(err));
1747
1748       free_http_request(http);
1749       return JB_ERR_PARSE;
1750    }
1751
1752    /* grab the rest of the client's headers */
1753    init_list(headers);
1754    for (;;)
1755    {
1756       p = get_header(csp->client_iob);
1757
1758       if (p == NULL)
1759       {
1760          /* There are no additional headers to read. */
1761          break;
1762       }
1763
1764       if (*p == '\0')
1765       {
1766          /*
1767           * We didn't receive a complete header
1768           * line yet, get the rest of it.
1769           */
1770          if (!data_is_available(csp->cfd, csp->config->socket_timeout))
1771          {
1772             log_error(LOG_LEVEL_ERROR,
1773                "Stopped grabbing the client headers.");
1774             destroy_list(headers);
1775             return JB_ERR_PARSE;
1776          }
1777
1778          len = read_socket(csp->cfd, buf, sizeof(buf) - 1);
1779          if (len <= 0)
1780          {
1781             log_error(LOG_LEVEL_ERROR, "read from client failed: %E");
1782             destroy_list(headers);
1783             return JB_ERR_PARSE;
1784          }
1785
1786          if (add_to_iob(csp->client_iob, csp->config->buffer_limit, buf, len))
1787          {
1788             /*
1789              * If there is no memory left for buffering the
1790              * request, there is nothing we can do but hang up
1791              */
1792             destroy_list(headers);
1793             return JB_ERR_MEMORY;
1794          }
1795       }
1796       else
1797       {
1798          if (!strncmpic(p, "Transfer-Encoding:", 18))
1799          {
1800             /*
1801              * XXX: should be called through sed()
1802              *      but currently can't.
1803              */
1804             client_transfer_encoding(csp, &p);
1805          }
1806          /*
1807           * We were able to read a complete
1808           * header and can finally enlist it.
1809           */
1810          enlist(headers, p);
1811          freez(p);
1812       }
1813    }
1814
1815    if (http->host == NULL)
1816    {
1817       /*
1818        * If we still don't know the request destination,
1819        * the request is invalid or the client uses
1820        * Privoxy without its knowledge.
1821        */
1822       if (JB_ERR_OK != get_request_destination_elsewhere(csp, headers))
1823       {
1824          /*
1825           * Our attempts to get the request destination
1826           * elsewhere failed or Privoxy is configured
1827           * to only accept proxy requests.
1828           *
1829           * An error response has already been send
1830           * and we're done here.
1831           */
1832          return JB_ERR_PARSE;
1833       }
1834    }
1835
1836 #ifdef FEATURE_CLIENT_TAGS
1837    /* XXX: If the headers were enlisted sooner, passing csp would do. */
1838    set_client_address(csp, headers);
1839    get_tag_list_for_client(csp->client_tags, csp->client_address);
1840 #endif
1841
1842    /*
1843     * Determine the actions for this URL
1844     */
1845 #ifdef FEATURE_TOGGLE
1846    if (!(csp->flags & CSP_FLAG_TOGGLED_ON))
1847    {
1848       /* Most compatible set of actions (i.e. none) */
1849       init_current_action(csp->action);
1850    }
1851    else
1852 #endif /* ndef FEATURE_TOGGLE */
1853    {
1854       get_url_actions(csp, http);
1855    }
1856
1857    enlist(csp->headers, http->cmd);
1858
1859    /* Append the previously read headers */
1860    err = list_append_list_unique(csp->headers, headers);
1861    destroy_list(headers);
1862
1863    return err;
1864
1865 }
1866
1867
1868 /*********************************************************************
1869  *
1870  * Function    : parse_client_request
1871  *
1872  * Description : Parses the client's request and decides what to do
1873  *               with it.
1874  *
1875  *               Note that since we're not using select() we could get
1876  *               blocked here if a client connected, then didn't say
1877  *               anything!
1878  *
1879  * Parameters  :
1880  *          1  :  csp = Current client state (buffers, headers, etc...)
1881  *
1882  * Returns     :  JB_ERR_OK or JB_ERR_PARSE
1883  *
1884  *********************************************************************/
1885 static jb_err parse_client_request(struct client_state *csp)
1886 {
1887    struct http_request *http = csp->http;
1888    jb_err err;
1889
1890 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
1891    if ((csp->config->feature_flags & RUNTIME_FEATURE_CONNECTION_KEEP_ALIVE)
1892     && (!strcmpic(csp->http->ver, "HTTP/1.1"))
1893     && (csp->http->ssl == 0))
1894    {
1895       /* Assume persistence until further notice */
1896       csp->flags |= CSP_FLAG_CLIENT_CONNECTION_KEEP_ALIVE;
1897    }
1898
1899    if (csp->http->ssl == 0)
1900    {
1901       /*
1902        * This whole block belongs to chat() but currently
1903        * has to be executed before sed().
1904        */
1905       if (csp->flags & CSP_FLAG_CHUNKED_CLIENT_BODY)
1906       {
1907          if (receive_chunked_client_request_body(csp) != JB_ERR_OK)
1908          {
1909             return JB_ERR_PARSE;
1910          }
1911       }
1912       else
1913       {
1914          csp->expected_client_content_length = get_expected_content_length(csp->headers);
1915       }
1916       verify_request_length(csp);
1917    }
1918    else
1919    {
1920       csp->flags |= CSP_FLAG_SERVER_SOCKET_TAINTED;
1921    }
1922 #endif /* def FEATURE_CONNECTION_KEEP_ALIVE */
1923
1924    err = sed(csp, FILTER_CLIENT_HEADERS);
1925    if (JB_ERR_OK != err)
1926    {
1927       log_error(LOG_LEVEL_ERROR, "Failed to parse client request from %s.",
1928          csp->ip_addr_str);
1929       log_error(LOG_LEVEL_CLF, "%s - - [%T] \"%s\" 400 0",
1930          csp->ip_addr_str, csp->http->cmd);
1931       write_socket_delayed(csp->cfd, CHEADER, strlen(CHEADER), get_write_delay(csp));
1932       return JB_ERR_PARSE;
1933    }
1934    csp->flags |= CSP_FLAG_CLIENT_HEADER_PARSING_DONE;
1935
1936    /* Check request line for rewrites. */
1937    if ((NULL == csp->headers->first->str)
1938       || (strcmp(http->cmd, csp->headers->first->str) &&
1939          (JB_ERR_OK != change_request_destination(csp))))
1940    {
1941       /*
1942        * A header filter broke the request line - bail out.
1943        */
1944       write_socket_delayed(csp->cfd, MESSED_UP_REQUEST_RESPONSE,
1945          strlen(MESSED_UP_REQUEST_RESPONSE), get_write_delay(csp));
1946       /* XXX: Use correct size */
1947       log_error(LOG_LEVEL_CLF,
1948          "%s - - [%T] \"Invalid request generated\" 500 0", csp->ip_addr_str);
1949       log_error(LOG_LEVEL_ERROR,
1950          "Invalid request line after applying header filters.");
1951       free_http_request(http);
1952
1953       return JB_ERR_PARSE;
1954    }
1955
1956    if (client_has_unsupported_expectations(csp))
1957    {
1958       return JB_ERR_PARSE;
1959    }
1960
1961    return JB_ERR_OK;
1962
1963 }
1964
1965
1966 /*********************************************************************
1967  *
1968  * Function    : send_http_request
1969  *
1970  * Description : Sends the HTTP headers from the client request
1971  *               and all the body data that has already been received.
1972  *
1973  * Parameters  :
1974  *          1  :  csp = Current client state (buffers, headers, etc...)
1975  *
1976  * Returns     :  0 on success, anything else is an error.
1977  *
1978  *********************************************************************/
1979 static int send_http_request(struct client_state *csp)
1980 {
1981    char *hdr;
1982    int write_failure;
1983
1984    hdr = list_to_text(csp->headers);
1985    if (hdr == NULL)
1986    {
1987       /* FIXME Should handle error properly */
1988       log_error(LOG_LEVEL_FATAL, "Out of memory parsing client header");
1989    }
1990    list_remove_all(csp->headers);
1991
1992    /*
1993     * Write the client's (modified) header to the server
1994     * (along with anything else that may be in the buffer)
1995     */
1996    write_failure = 0 != write_socket(csp->server_connection.sfd, hdr, strlen(hdr));
1997    freez(hdr);
1998
1999    if (write_failure)
2000    {
2001       log_error(LOG_LEVEL_CONNECT, "Failed sending request headers to: %s: %E",
2002          csp->http->hostport);
2003    }
2004    else if (((csp->flags & CSP_FLAG_PIPELINED_REQUEST_WAITING) == 0)
2005       && (flush_iob(csp->server_connection.sfd, csp->client_iob, 0) < 0))
2006    {
2007       write_failure = 1;
2008       log_error(LOG_LEVEL_CONNECT, "Failed sending request body to: %s: %E",
2009          csp->http->hostport);
2010    }
2011
2012    return write_failure;
2013
2014 }
2015
2016
2017 #ifdef FEATURE_HTTPS_FILTERING
2018 /*********************************************************************
2019  *
2020  * Function    : receive_and_send_encrypted_post_data
2021  *
2022  * Description : Reads remaining POST data from the client and sends
2023  *               it to the server.
2024  *
2025  * Parameters  :
2026  *          1  :  csp = Current client state (buffers, headers, etc...)
2027  *
2028  * Returns     :  0 on success, anything else is an error.
2029  *
2030  *********************************************************************/
2031 static jb_err receive_and_send_encrypted_post_data(struct client_state *csp)
2032 {
2033    unsigned char buf[BUFFER_SIZE];
2034    int len;
2035
2036    while (is_ssl_pending(&(csp->mbedtls_client_attr.ssl)))
2037    {
2038       len = ssl_recv_data(&(csp->mbedtls_client_attr.ssl), buf, sizeof(buf));
2039       if (len == -1)
2040       {
2041          return 1;
2042       }
2043       if (len == 0)
2044       {
2045          /* XXX: Does this actually happen? */
2046          break;
2047       }
2048       log_error(LOG_LEVEL_HEADER, "Forwarding %d bytes of encrypted POST data",
2049          len);
2050       len = ssl_send_data(&(csp->mbedtls_server_attr.ssl), buf, (size_t)len);
2051       if (len == -1)
2052       {
2053          return 1;
2054       }
2055       if (csp->expected_client_content_length != 0)
2056       {
2057          if (csp->expected_client_content_length >= len)
2058          {
2059             csp->expected_client_content_length -= (unsigned)len;
2060          }
2061       }
2062    }
2063
2064    log_error(LOG_LEVEL_HEADER, "Done forwarding encrypted POST data");
2065
2066    return 0;
2067
2068 }
2069
2070
2071 /*********************************************************************
2072  *
2073  * Function    : send_https_request
2074  *
2075  * Description : Sends the HTTP headers from the client request
2076  *               and all the body data that has already been received.
2077  *
2078  * Parameters  :
2079  *          1  :  csp = Current client state (buffers, headers, etc...)
2080  *
2081  * Returns     :  0 on success, anything else is an error.
2082  *
2083  *********************************************************************/
2084 static int send_https_request(struct client_state *csp)
2085 {
2086    char *hdr;
2087    int ret;
2088    long flushed = 0;
2089
2090    hdr = list_to_text(csp->https_headers);
2091    if (hdr == NULL)
2092    {
2093       /* FIXME Should handle error properly */
2094       log_error(LOG_LEVEL_FATAL, "Out of memory parsing client header");
2095    }
2096    list_remove_all(csp->https_headers);
2097
2098    /*
2099     * Write the client's (modified) header to the server
2100     * (along with anything else that may be in the buffer)
2101     */
2102    ret = ssl_send_data(&(csp->mbedtls_server_attr.ssl),
2103       (const unsigned char *)hdr, strlen(hdr));
2104    freez(hdr);
2105
2106    if (ret < 0)
2107    {
2108       log_error(LOG_LEVEL_CONNECT,
2109          "Failed sending encrypted request headers to: %s: %E",
2110          csp->http->hostport);
2111       mark_server_socket_tainted(csp);
2112       close_client_and_server_ssl_connections(csp);
2113       return 1;
2114    }
2115
2116    if (((csp->flags & CSP_FLAG_PIPELINED_REQUEST_WAITING) == 0)
2117       && ((flushed = ssl_flush_socket(&(csp->mbedtls_server_attr.ssl),
2118             csp->client_iob)) < 0))
2119    {
2120       log_error(LOG_LEVEL_CONNECT, "Failed sending request body to: %s: %E",
2121          csp->http->hostport);
2122       return 1;
2123    }
2124    if (flushed != 0)
2125    {
2126       if (csp->expected_client_content_length != 0)
2127       {
2128          if (csp->expected_client_content_length < flushed)
2129          {
2130             log_error(LOG_LEVEL_ERROR,
2131                "Flushed %d bytes of request body while only expecting %llu",
2132                flushed, csp->expected_client_content_length);
2133             csp->expected_client_content_length = 0;
2134          }
2135          else
2136          {
2137             log_error(LOG_LEVEL_CONNECT,
2138                "Flushed %d bytes of request body while expecting %llu",
2139                flushed, csp->expected_client_content_length);
2140             csp->expected_client_content_length -= (unsigned)flushed;
2141             if (receive_and_send_encrypted_post_data(csp))
2142             {
2143                return 1;
2144             }
2145          }
2146       }
2147       else
2148       {
2149          log_error(LOG_LEVEL_CONNECT,
2150             "Flushed %d bytes of request body", flushed);
2151       }
2152    }
2153
2154    log_error(LOG_LEVEL_CONNECT, "Encrypted request sent");
2155
2156    return 0;
2157
2158 }
2159
2160
2161 /*********************************************************************
2162  *
2163  * Function    :  receive_encrypted_request
2164  *
2165  * Description :  Receives an encrypted request.
2166  *
2167  * Parameters  :
2168  *          1  :  csp = Current client state (buffers, headers, etc...)
2169  *
2170  * Returns     :  JB_ERR_OK on success,
2171  *                JB_ERR_PARSE or JB_ERR_MEMORY otherwise
2172  *
2173  *********************************************************************/
2174 static jb_err receive_encrypted_request(struct client_state *csp)
2175 {
2176    char buf[BUFFER_SIZE];
2177    int len;
2178    char *p;
2179
2180    do
2181    {
2182       log_error(LOG_LEVEL_HEADER, "Reading encrypted headers");
2183       if (!data_is_available(csp->cfd, (int)csp->config->keep_alive_timeout))
2184       {
2185          log_error(LOG_LEVEL_CONNECT,
2186             "Socket %d timed out while waiting for client headers", csp->cfd);
2187          return JB_ERR_PARSE;
2188       }
2189       len = ssl_recv_data(&(csp->mbedtls_client_attr.ssl),
2190          (unsigned char *)buf, sizeof(buf));
2191       if (len == -1)
2192       {
2193          return JB_ERR_PARSE;
2194       }
2195       if (add_to_iob(csp->client_iob, csp->config->buffer_limit, buf, len))
2196       {
2197          return JB_ERR_MEMORY;
2198       }
2199       p = strstr(csp->client_iob->cur, "\r\n\r\n");
2200    } while (p == NULL);
2201
2202    log_error(LOG_LEVEL_HEADER, "Encrypted headers received completely");
2203
2204    return JB_ERR_OK;
2205 }
2206
2207
2208 /*********************************************************************
2209  *
2210  * Function    :  process_encrypted_request
2211  *
2212  * Description :  Receives and parses an encrypted request.
2213  *
2214  * Parameters  :
2215  *          1  :  csp = Current client state (buffers, headers, etc...)
2216  *
2217  * Returns     :  JB_ERR_OK on success,
2218  *                JB_ERR_PARSE or JB_ERR_MEMORY otherwise
2219  *
2220  *********************************************************************/
2221 static jb_err process_encrypted_request(struct client_state *csp)
2222 {
2223    char *p;
2224    char *request_line;
2225    jb_err err;
2226    /* Temporary copy of the client's headers before they get enlisted in csp->https_headers */
2227    struct list header_list;
2228    struct list *headers = &header_list;
2229
2230    err = receive_encrypted_request(csp);
2231    if (err != JB_ERR_OK)
2232    {
2233       /* XXX: Also used for JB_ERR_MEMORY */
2234       ssl_send_data(&(csp->mbedtls_client_attr.ssl),
2235          (const unsigned char *)CHEADER, strlen(CHEADER));
2236       return err;
2237    }
2238
2239    /* We don't need get_request_line() because the whole HTTP head is buffered. */
2240    request_line = get_header(csp->client_iob);
2241    if (request_line == NULL)
2242    {
2243       ssl_send_data(&(csp->mbedtls_client_attr.ssl),
2244          (const unsigned char *)CHEADER, strlen(CHEADER));
2245       return JB_ERR_PARSE;
2246    }
2247    assert(*request_line != '\0');
2248
2249    if (client_protocol_is_unsupported(csp, request_line))
2250    {
2251       ssl_send_data(&(csp->mbedtls_client_attr.ssl),
2252          (const unsigned char *)CHEADER, strlen(CHEADER));
2253       return JB_ERR_PARSE;
2254    }
2255
2256 #ifdef FEATURE_FORCE_LOAD
2257    if (force_required(csp, request_line))
2258    {
2259       csp->flags |= CSP_FLAG_FORCED;
2260    }
2261 #endif /* def FEATURE_FORCE_LOAD */
2262
2263    free_http_request(csp->http);
2264
2265    err = parse_http_request(request_line, csp->http);
2266    /* XXX: Restore ssl setting. This is ugly */
2267    csp->http->client_ssl = 1;
2268    csp->http->server_ssl = 1;
2269
2270    freez(request_line);
2271    if (JB_ERR_OK != err)
2272    {
2273       ssl_send_data(&(csp->mbedtls_client_attr.ssl),
2274          (const unsigned char *)CHEADER, strlen(CHEADER));
2275       /* XXX: Use correct size */
2276       log_error(LOG_LEVEL_CLF, "%s - - [%T] \"Invalid request\" 400 0", csp->ip_addr_str);
2277       log_error(LOG_LEVEL_ERROR,
2278          "Couldn't parse request line received from %s: %s",
2279          csp->ip_addr_str, jb_err_to_string(err));
2280
2281       free_http_request(csp->http);
2282       return JB_ERR_PARSE;
2283    }
2284
2285    /* Parse the rest of the client's headers. */
2286    init_list(headers);
2287    for (;;)
2288    {
2289       p = get_header(csp->client_iob);
2290
2291       if (p == NULL)
2292       {
2293          /* There are no additional headers to read. */
2294          break;
2295       }
2296       enlist(headers, p);
2297       freez(p);
2298    }
2299
2300    if (JB_ERR_OK != get_destination_from_https_headers(headers, csp->http))
2301    {
2302       /*
2303        * Our attempts to get the request destination
2304        * elsewhere failed.
2305        */
2306       ssl_send_data(&(csp->mbedtls_client_attr.ssl),
2307          (const unsigned char *)CHEADER, strlen(CHEADER));
2308       return JB_ERR_PARSE;
2309    }
2310
2311 #ifndef FEATURE_EXTENDED_HOST_PATTERNS
2312    /* Split the domain we just got for pattern matching */
2313    init_domain_components(csp->http);
2314 #endif
2315
2316 #ifdef FEATURE_TOGGLE
2317    if ((csp->flags & CSP_FLAG_TOGGLED_ON) != 0)
2318 #endif
2319    {
2320       /* Determine the actions for this URL */
2321       get_url_actions(csp, csp->http);
2322    }
2323
2324    enlist(csp->https_headers, csp->http->cmd);
2325
2326    /* Append the previously read headers */
2327    err = list_append_list_unique(csp->https_headers, headers);
2328    destroy_list(headers);
2329    if (JB_ERR_OK != err)
2330    {
2331       /* XXX: Send error message */
2332       return err;
2333    }
2334
2335    /* XXX: Work around crash */
2336    csp->error_message = NULL;
2337
2338    /* XXX: Why do this here? */
2339    csp->http->ssl = 1;
2340
2341    err = sed_https(csp);
2342    if (JB_ERR_OK != err)
2343    {
2344       ssl_send_data(&(csp->mbedtls_client_attr.ssl),
2345          (const unsigned char *)CHEADER, strlen(CHEADER));
2346       log_error(LOG_LEVEL_ERROR, "Failed to parse client request from %s.",
2347          csp->ip_addr_str);
2348       log_error(LOG_LEVEL_CLF, "%s - - [%T] \"%s\" 400 0",
2349          csp->ip_addr_str, csp->http->cmd);
2350       return JB_ERR_PARSE;
2351    }
2352
2353    log_error(LOG_LEVEL_HEADER, "Encrypted request processed");
2354
2355    return err;
2356
2357 }
2358 #endif
2359
2360
2361 /*********************************************************************
2362  *
2363  * Function    :  handle_established_connection
2364  *
2365  * Description :  Shuffle data between client and server once the
2366  *                connection has been established.
2367  *
2368  * Parameters  :
2369  *          1  :  csp = Current client state (buffers, headers, etc...)
2370  *
2371  * Returns     :  Nothing.
2372  *
2373  *********************************************************************/
2374 static void handle_established_connection(struct client_state *csp)
2375 {
2376    char *hdr;
2377    char *p;
2378    int n;
2379 #ifdef HAVE_POLL
2380    struct pollfd poll_fds[2];
2381 #else
2382    fd_set rfds;
2383    jb_socket maxfd;
2384    struct timeval timeout;
2385 #endif
2386    int server_body;
2387    int ms_iis5_hack = 0;
2388    unsigned long long byte_count = 0;
2389    struct http_request *http;
2390    long len = 0; /* for buffer sizes (and negative error codes) */
2391    int buffer_and_filter_content = 0;
2392    unsigned int write_delay;
2393 #ifdef FEATURE_HTTPS_FILTERING
2394    int ret = 0;
2395    int use_ssl_tunnel = 0;
2396    csp->dont_verify_certificate = 0;
2397
2398    /*
2399     * Preset flags informing if SSL connections with server or client
2400     * are opened or closed
2401     */
2402    csp->ssl_with_server_is_opened = 0;
2403    csp->ssl_with_client_is_opened = 0;
2404
2405    if (csp->http->ssl && !(csp->action->flags & ACTION_ENABLE_HTTPS_FILTER))
2406    {
2407       /* Pass encrypted content without filtering. */
2408       use_ssl_tunnel = 1;
2409    }
2410 #endif
2411
2412    /* Skeleton for HTTP response, if we should intercept the request */
2413    struct http_response *rsp;
2414 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
2415    int watch_client_socket;
2416 #endif
2417
2418    csp->receive_buffer_size = csp->config->receive_buffer_size;
2419    csp->receive_buffer = zalloc(csp->receive_buffer_size + 1);
2420    if (csp->receive_buffer == NULL)
2421    {
2422       log_error(LOG_LEVEL_ERROR,
2423          "Out of memory. Failed to allocate the receive buffer.");
2424       rsp = cgi_error_memory();
2425       send_crunch_response(csp, rsp);
2426       return;
2427    }
2428
2429    http = csp->http;
2430
2431 #ifndef HAVE_POLL
2432    maxfd = (csp->cfd > csp->server_connection.sfd) ?
2433       csp->cfd : csp->server_connection.sfd;
2434 #endif
2435
2436    /* pass data between the client and server
2437     * until one or the other shuts down the connection.
2438     */
2439
2440    server_body = 0;
2441
2442 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
2443    watch_client_socket = 0 == (csp->flags & CSP_FLAG_PIPELINED_REQUEST_WAITING);
2444 #endif
2445    write_delay = get_write_delay(csp);
2446
2447    for (;;)
2448    {
2449 #ifndef HAVE_POLL
2450 #ifdef __OS2__
2451       /*
2452        * FD_ZERO here seems to point to an errant macro which crashes.
2453        * So do this by hand for now...
2454        */
2455       memset(&rfds,0x00,sizeof(fd_set));
2456 #else
2457       FD_ZERO(&rfds);
2458 #endif
2459 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
2460       if (!watch_client_socket)
2461       {
2462          maxfd = csp->server_connection.sfd;
2463       }
2464       else
2465 #endif /* def FEATURE_CONNECTION_KEEP_ALIVE */
2466       {
2467          FD_SET(csp->cfd, &rfds);
2468       }
2469
2470       FD_SET(csp->server_connection.sfd, &rfds);
2471 #endif /* ndef HAVE_POLL */
2472
2473 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
2474       if ((csp->flags & CSP_FLAG_CHUNKED)
2475          && !(csp->flags & CSP_FLAG_CONTENT_LENGTH_SET)
2476          && ((csp->iob->eod - csp->iob->cur) >= 5)
2477          && !memcmp(csp->iob->eod-5, "0\r\n\r\n", 5))
2478       {
2479          /*
2480           * XXX: This check should be obsolete now,
2481           *      but let's wait a while to be sure.
2482           */
2483          log_error(LOG_LEVEL_CONNECT,
2484             "Looks like we got the last chunk together with "
2485             "the server headers but didn't detect it earlier. "
2486             "We better stop reading.");
2487          byte_count = (unsigned long long)(csp->iob->eod - csp->iob->cur);
2488          csp->expected_content_length = byte_count;
2489          csp->flags |= CSP_FLAG_CONTENT_LENGTH_SET;
2490       }
2491       if (server_body && server_response_is_complete(csp, byte_count))
2492       {
2493          if (csp->expected_content_length == byte_count)
2494          {
2495             log_error(LOG_LEVEL_CONNECT,
2496                "Done reading from server. Content length: %llu as expected. "
2497                "Bytes most recently read: %d.",
2498                byte_count, len);
2499          }
2500          else
2501          {
2502             log_error(LOG_LEVEL_CONNECT,
2503                "Done reading from server. Expected content length: %llu. "
2504                "Actual content length: %llu. Bytes most recently read: %d.",
2505                csp->expected_content_length, byte_count, len);
2506          }
2507          len = 0;
2508          /*
2509           * XXX: Should not jump around, handle_established_connection()
2510           * is complicated enough already.
2511           */
2512          goto reading_done;
2513       }
2514 #endif  /* FEATURE_CONNECTION_KEEP_ALIVE */
2515
2516 #ifdef FEATURE_HTTPS_FILTERING
2517       /*
2518        * Test if some data from client or destination server are pending
2519        * on TLS/SSL. We must work with them preferably. TLS/SSL data can
2520        * be pending because of maximal fragment size.
2521        */
2522       int read_ssl_server = 0;
2523       int read_ssl_client = 0;
2524
2525       if (client_use_ssl(csp))
2526       {
2527          read_ssl_client = is_ssl_pending(&(csp->mbedtls_client_attr.ssl)) != 0;
2528       }
2529
2530       if (server_use_ssl(csp))
2531       {
2532          read_ssl_server = is_ssl_pending(&(csp->mbedtls_server_attr.ssl)) != 0;
2533       }
2534
2535       if (!read_ssl_server && !read_ssl_client)
2536 #endif
2537       {
2538 #ifdef HAVE_POLL
2539          poll_fds[0].fd = csp->cfd;
2540 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
2541          if (!watch_client_socket)
2542          {
2543             /*
2544              * Ignore incoming data, but still watch out
2545              * for disconnects etc. These flags are always
2546              * implied anyway but explicitly setting them
2547              * doesn't hurt.
2548              */
2549             poll_fds[0].events = POLLERR|POLLHUP;
2550          }
2551          else
2552 #endif
2553          {
2554             poll_fds[0].events = POLLIN;
2555          }
2556          poll_fds[1].fd = csp->server_connection.sfd;
2557          poll_fds[1].events = POLLIN;
2558          n = poll(poll_fds, 2, csp->config->socket_timeout * 1000);
2559 #else
2560          timeout.tv_sec = csp->config->socket_timeout;
2561          timeout.tv_usec = 0;
2562          n = select((int)maxfd + 1, &rfds, NULL, NULL, &timeout);
2563 #endif /* def HAVE_POLL */
2564
2565          /*server or client not responding in timeout */
2566          if (n == 0)
2567          {
2568             log_error(LOG_LEVEL_CONNECT, "Socket timeout %d reached: %s",
2569                csp->config->socket_timeout, http->url);
2570             if ((byte_count == 0) && (http->ssl == 0))
2571             {
2572                send_crunch_response(csp, error_response(csp, "connection-timeout"));
2573             }
2574             mark_server_socket_tainted(csp);
2575 #ifdef FEATURE_HTTPS_FILTERING
2576             close_client_and_server_ssl_connections(csp);
2577 #endif
2578             return;
2579          }
2580          else if (n < 0)
2581          {
2582 #ifdef HAVE_POLL
2583             log_error(LOG_LEVEL_ERROR, "poll() failed!: %E");
2584 #else
2585             log_error(LOG_LEVEL_ERROR, "select() failed!: %E");
2586 #endif
2587             mark_server_socket_tainted(csp);
2588 #ifdef FEATURE_HTTPS_FILTERING
2589             close_client_and_server_ssl_connections(csp);
2590 #endif
2591             return;
2592          }
2593       }
2594 #ifdef FEATURE_HTTPS_FILTERING
2595       else
2596       {
2597          /* set FD if some data are pending on TLS/SSL connections */
2598 #ifndef HAVE_POLL
2599          FD_ZERO(&rfds);
2600 #endif
2601          if (read_ssl_client)
2602          {
2603 #ifdef HAVE_POLL
2604             poll_fds[0].fd = csp->cfd;
2605             poll_fds[0].events = POLLIN;
2606 #else
2607             FD_SET(csp->cfd, &rfds);
2608 #endif
2609             n++;
2610          }
2611
2612          if (read_ssl_server)
2613          {
2614 #ifdef HAVE_POLL
2615             poll_fds[1].fd = csp->server_connection.sfd;
2616             poll_fds[1].events = POLLIN;
2617 #else
2618             FD_SET(csp->server_connection.sfd, &rfds);
2619 #endif
2620             n++;
2621          }
2622       }
2623 #endif
2624       /*
2625        * This is the body of the browser's request,
2626        * just read and write it.
2627        *
2628        * Receives data from browser and sends it to server
2629        *
2630        * XXX: Make sure the client doesn't use pipelining
2631        * behind Privoxy's back.
2632        */
2633 #ifdef HAVE_POLL
2634       if ((poll_fds[0].revents & (POLLERR|POLLHUP|POLLNVAL)) != 0)
2635       {
2636          log_error(LOG_LEVEL_CONNECT,
2637             "The client socket %d has become unusable while "
2638             "the server socket %d is still open.",
2639             csp->cfd, csp->server_connection.sfd);
2640          mark_server_socket_tainted(csp);
2641          break;
2642       }
2643
2644       if (poll_fds[0].revents != 0)
2645 #else
2646       if (FD_ISSET(csp->cfd, &rfds))
2647 #endif /* def HAVE_POLL*/
2648       {
2649          int max_bytes_to_read = (int)csp->receive_buffer_size;
2650
2651 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
2652          if ((csp->flags & CSP_FLAG_CLIENT_REQUEST_COMPLETELY_READ))
2653          {
2654             if (data_is_available(csp->cfd, 0))
2655             {
2656                /*
2657                 * If the next request is already waiting, we have
2658                 * to stop select()ing the client socket. Otherwise
2659                 * we would always return right away and get nothing
2660                 * else done.
2661                 */
2662                watch_client_socket = 0;
2663                log_error(LOG_LEVEL_CONNECT,
2664                   "Stop watching client socket %d. "
2665                   "There's already another request waiting.",
2666                   csp->cfd);
2667                continue;
2668             }
2669             /*
2670              * If the client socket is set, but there's no data
2671              * available on the socket, the client went fishing
2672              * and continuing talking to the server makes no sense.
2673              */
2674             log_error(LOG_LEVEL_CONNECT,
2675                "The client closed socket %d while "
2676                "the server socket %d is still open.",
2677                csp->cfd, csp->server_connection.sfd);
2678             mark_server_socket_tainted(csp);
2679             break;
2680          }
2681          if (csp->expected_client_content_length != 0)
2682          {
2683             if (csp->expected_client_content_length < csp->receive_buffer_size)
2684             {
2685                max_bytes_to_read = (int)csp->expected_client_content_length;
2686             }
2687             log_error(LOG_LEVEL_CONNECT,
2688                "Waiting for up to %d bytes from the client.",
2689                max_bytes_to_read);
2690          }
2691          assert(max_bytes_to_read <= csp->receive_buffer_size);
2692 #endif /* def FEATURE_CONNECTION_KEEP_ALIVE */
2693
2694 #ifdef FEATURE_HTTPS_FILTERING
2695          /*
2696           * Reading data from standard or secured connection (HTTP/HTTPS)
2697           */
2698          if (client_use_ssl(csp))
2699          {
2700             /*
2701              * Receiving HTTP request from client over TLS/SSL and sending
2702              * it to server over TLS/SSL.
2703              */
2704             len = ssl_recv_data(&(csp->mbedtls_client_attr.ssl),
2705                (unsigned char *)csp->receive_buffer, (size_t)max_bytes_to_read);
2706
2707             if (len <= 0)
2708             {
2709                mark_server_socket_tainted(csp);
2710                break;
2711             }
2712
2713             ret = ssl_send_data(&(csp->mbedtls_server_attr.ssl),
2714                (const unsigned char *)csp->receive_buffer, (size_t)len);
2715
2716             if (ret < 0)
2717             {
2718                log_error(LOG_LEVEL_ERROR,
2719                   "Send request over TLS/SSL to: %s failed", http->host);
2720                mark_server_socket_tainted(csp);
2721                close_client_and_server_ssl_connections(csp);
2722                return;
2723             }
2724          }
2725          else
2726 #endif /* def FEATURE_HTTPS_FILTERING */
2727          {
2728             len = read_socket(csp->cfd, csp->receive_buffer, max_bytes_to_read);
2729
2730             if (len <= 0)
2731             {
2732                /* XXX: not sure if this is necessary. */
2733                mark_server_socket_tainted(csp);
2734                break; /* "game over, man" */
2735             }
2736
2737 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
2738             if (csp->expected_client_content_length != 0)
2739             {
2740                assert(len <= max_bytes_to_read);
2741                csp->expected_client_content_length -= (unsigned)len;
2742                log_error(LOG_LEVEL_CONNECT,
2743                   "Expected client content length set to %llu "
2744                   "after reading %d bytes.",
2745                   csp->expected_client_content_length, len);
2746                if (csp->expected_client_content_length == 0)
2747                {
2748                   log_error(LOG_LEVEL_CONNECT,
2749                      "Done reading from the client.");
2750                   csp->flags |= CSP_FLAG_CLIENT_REQUEST_COMPLETELY_READ;
2751                }
2752             }
2753 #endif /* def FEATURE_CONNECTION_KEEP_ALIVE */
2754
2755             if (write_socket(csp->server_connection.sfd, csp->receive_buffer, (size_t)len))
2756             {
2757                log_error(LOG_LEVEL_ERROR, "write to: %s failed: %E", http->host);
2758                mark_server_socket_tainted(csp);
2759 #ifdef FEATURE_HTTPS_FILTERING
2760                close_client_and_server_ssl_connections(csp);
2761 #endif
2762                return;
2763             }
2764          }
2765          continue;
2766       }
2767
2768       /*
2769        * The server wants to talk. It could be the header or the body.
2770        * If `hdr' is null, then it's the header otherwise it's the body.
2771        * FIXME: Does `hdr' really mean `host'? No.
2772        */
2773 #ifdef HAVE_POLL
2774       if (poll_fds[1].revents != 0)
2775 #else
2776       if (FD_ISSET(csp->server_connection.sfd, &rfds))
2777 #endif /* HAVE_POLL */
2778       {
2779 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
2780          /*
2781           * If we are buffering content, we don't want to eat up to
2782           * buffer-limit bytes if the client no longer cares about them.
2783           * If we aren't buffering, however, a dead client socket will be
2784           * noticed pretty much right away anyway, so we can reduce the
2785           * overhead by skipping the check.
2786           */
2787          if (buffer_and_filter_content && !socket_is_still_alive(csp->cfd))
2788          {
2789 #ifdef _WIN32
2790             log_error(LOG_LEVEL_CONNECT,
2791                "The server still wants to talk, but the client may already have hung up on us.");
2792 #else
2793             log_error(LOG_LEVEL_CONNECT,
2794                "The server still wants to talk, but the client hung up on us.");
2795             mark_server_socket_tainted(csp);
2796 #ifdef FEATURE_HTTPS_FILTERING
2797             close_client_and_server_ssl_connections(csp);
2798 #endif
2799             return;
2800 #endif /* def _WIN32 */
2801          }
2802 #endif /* def FEATURE_CONNECTION_KEEP_ALIVE */
2803
2804 #ifdef FEATURE_HTTPS_FILTERING
2805          /*
2806           * Reading data from standard or secured connection (HTTP/HTTPS)
2807           */
2808          if (server_use_ssl(csp))
2809          {
2810             len = ssl_recv_data(&(csp->mbedtls_server_attr.ssl),
2811                (unsigned char *)csp->receive_buffer, csp->receive_buffer_size);
2812          }
2813          else
2814 #endif
2815          {
2816             len = read_socket(csp->server_connection.sfd, csp->receive_buffer,
2817                (int)csp->receive_buffer_size);
2818          }
2819
2820          if (len < 0)
2821          {
2822             log_error(LOG_LEVEL_ERROR, "read from: %s failed: %E", http->host);
2823
2824             if ((http->ssl && (csp->fwd == NULL))
2825 #ifdef FEATURE_HTTPS_FILTERING
2826                && use_ssl_tunnel
2827 #endif
2828                 )
2829             {
2830                /*
2831                 * Just hang up. We already confirmed the client's CONNECT
2832                 * request with status code 200 and unencrypted content is
2833                 * no longer welcome.
2834                 */
2835                log_error(LOG_LEVEL_ERROR,
2836                   "CONNECT already confirmed. Unable to tell the client about the problem.");
2837                return;
2838             }
2839             else if (byte_count)
2840             {
2841                /*
2842                 * Just hang up. We already transmitted the original headers
2843                 * and parts of the original content and therefore missed the
2844                 * chance to send an error message (without risking data corruption).
2845                 *
2846                 * XXX: we could retry with a fancy range request here.
2847                 */
2848                log_error(LOG_LEVEL_ERROR, "Already forwarded the original headers. "
2849                   "Unable to tell the client about the problem.");
2850                mark_server_socket_tainted(csp);
2851 #ifdef FEATURE_HTTPS_FILTERING
2852                close_client_and_server_ssl_connections(csp);
2853 #endif
2854                return;
2855             }
2856             /*
2857              * XXX: Consider handling the cases above the same.
2858              */
2859             mark_server_socket_tainted(csp);
2860             len = 0;
2861          }
2862
2863 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
2864          if (csp->flags & CSP_FLAG_CHUNKED)
2865          {
2866             if ((len >= 5) && !memcmp(csp->receive_buffer+len-5, "0\r\n\r\n", 5))
2867             {
2868                /* XXX: this is a temporary hack */
2869                log_error(LOG_LEVEL_CONNECT,
2870                   "Looks like we reached the end of the last chunk. "
2871                   "We better stop reading.");
2872                csp->expected_content_length = byte_count + (unsigned long long)len;
2873                csp->flags |= CSP_FLAG_CONTENT_LENGTH_SET;
2874             }
2875          }
2876          reading_done:
2877 #endif  /* FEATURE_CONNECTION_KEEP_ALIVE */
2878
2879          /*
2880           * This is guaranteed by allocating with zalloc_or_die()
2881           * and never (intentionally) writing to the last byte.
2882           *
2883           * csp->receive_buffer_size is the size of the part of the
2884           * buffer we intentionally write to, but we actually
2885           * allocated csp->receive_buffer_size+1 bytes so the assertion
2886           * stays within the allocated range.
2887           */
2888          assert(csp->receive_buffer[csp->receive_buffer_size] == '\0');
2889
2890          /*
2891           * Add a trailing zero to let be able to use string operations.
2892           * XXX: do we still need this with filter_popups gone?
2893           */
2894          assert(len <= csp->receive_buffer_size);
2895          csp->receive_buffer[len] = '\0';
2896
2897          /*
2898           * Normally, this would indicate that we've read
2899           * as much as the server has sent us and we can
2900           * close the client connection.  However, Microsoft
2901           * in its wisdom has released IIS/5 with a bug that
2902           * prevents it from sending the trailing \r\n in
2903           * a 302 redirect header (and possibly other headers).
2904           * To work around this if we've haven't parsed
2905           * a full header we'll append a trailing \r\n
2906           * and see if this now generates a valid one.
2907           *
2908           * This hack shouldn't have any impacts.  If we've
2909           * already transmitted the header or if this is a
2910           * SSL connection, then we won't bother with this
2911           * hack.  So we only work on partially received
2912           * headers.  If we append a \r\n and this still
2913           * doesn't generate a valid header, then we won't
2914           * transmit anything to the client.
2915           */
2916          if (len == 0)
2917          {
2918
2919             if (server_body || (http->ssl
2920 #ifdef FEATURE_HTTPS_FILTERING
2921                   && use_ssl_tunnel
2922 #endif
2923                ))
2924             {
2925                /*
2926                 * If we have been buffering up the document,
2927                 * now is the time to apply content modification
2928                 * and send the result to the client.
2929                 */
2930                if (buffer_and_filter_content)
2931                {
2932                   p = execute_content_filters(csp);
2933                   /*
2934                    * If content filtering fails, use the original
2935                    * buffer and length.
2936                    * (see p != NULL ? p : csp->iob->cur below)
2937                    */
2938                   if (NULL == p)
2939                   {
2940                      csp->content_length = (size_t)(csp->iob->eod - csp->iob->cur);
2941                   }
2942 #ifdef FEATURE_COMPRESSION
2943                   else if ((csp->flags & CSP_FLAG_CLIENT_SUPPORTS_DEFLATE)
2944                      && (csp->content_length > LOWER_LENGTH_LIMIT_FOR_COMPRESSION))
2945                   {
2946                      char *compressed_content = compress_buffer(p,
2947                         (size_t *)&csp->content_length, csp->config->compression_level);
2948                      if (compressed_content != NULL)
2949                      {
2950                         freez(p);
2951                         p = compressed_content;
2952                         csp->flags |= CSP_FLAG_BUFFERED_CONTENT_DEFLATED;
2953                      }
2954                   }
2955 #endif
2956
2957                   if (JB_ERR_OK != update_server_headers(csp))
2958                   {
2959                      log_error(LOG_LEVEL_FATAL,
2960                         "Failed to update server headers. after filtering.");
2961                   }
2962
2963                   hdr = list_to_text(csp->headers);
2964                   if (hdr == NULL)
2965                   {
2966                      /* FIXME Should handle error properly */
2967                      log_error(LOG_LEVEL_FATAL, "Out of memory parsing server header");
2968                   }
2969
2970 #ifdef FEATURE_HTTPS_FILTERING
2971                   /*
2972                    * Sending data with standard or secured connection (HTTP/HTTPS)
2973                    */
2974                   if (client_use_ssl(csp))
2975                   {
2976                      if ((ssl_send_data(&(csp->mbedtls_client_attr.ssl),
2977                             (const unsigned char *)hdr, strlen(hdr)) < 0)
2978                         || (ssl_send_data(&(csp->mbedtls_client_attr.ssl),
2979                               (const unsigned char *) ((p != NULL) ? p : csp->iob->cur),
2980                               csp->content_length) < 0))
2981                      {
2982                         log_error(LOG_LEVEL_ERROR, "write modified content to "
2983                            "client over TLS/SSL failed");
2984                         freez(hdr);
2985                         freez(p);
2986                         mark_server_socket_tainted(csp);
2987                         close_client_and_server_ssl_connections(csp);
2988                         return;
2989                      }
2990                   }
2991                   else
2992 #endif /* def FEATURE_HTTPS_FILTERING */
2993                   {
2994                      if (write_socket_delayed(csp->cfd, hdr, strlen(hdr), write_delay)
2995                       || write_socket_delayed(csp->cfd, ((p != NULL) ? p : csp->iob->cur),
2996                          (size_t)csp->content_length, write_delay))
2997                      {
2998                         log_error(LOG_LEVEL_ERROR, "write modified content to client failed: %E");
2999                         freez(hdr);
3000                         freez(p);
3001                         mark_server_socket_tainted(csp);
3002 #ifdef FEATURE_HTTPS_FILTERING
3003                         close_client_and_server_ssl_connections(csp);
3004 #endif
3005                         return;
3006                      }
3007                   }
3008
3009                   freez(hdr);
3010                   freez(p);
3011                }
3012
3013                break; /* "game over, man" */
3014             }
3015
3016             /*
3017              * This is NOT the body, so
3018              * Let's pretend the server just sent us a blank line.
3019              */
3020             snprintf(csp->receive_buffer, csp->receive_buffer_size, "\r\n");
3021             len = (int)strlen(csp->receive_buffer);
3022
3023             /*
3024              * Now, let the normal header parsing algorithm below do its
3025              * job.  If it fails, we'll exit instead of continuing.
3026              */
3027
3028             ms_iis5_hack = 1;
3029          }
3030
3031          /*
3032           * If we're in the body of the server document, just write it to
3033           * the client, unless we need to buffer the body for later
3034           * content-filtering.
3035           */
3036          if (server_body || (http->ssl
3037 #ifdef FEATURE_HTTPS_FILTERING
3038                && use_ssl_tunnel
3039 #endif
3040             ))
3041          {
3042             if (buffer_and_filter_content)
3043             {
3044                /*
3045                 * If there is no memory left for buffering the content, or the buffer limit
3046                 * has been reached, switch to non-filtering mode, i.e. make & write the
3047                 * header, flush the iob and buf, and get out of the way.
3048                 */
3049                if (add_to_iob(csp->iob, csp->config->buffer_limit, csp->receive_buffer, len))
3050                {
3051                   size_t hdrlen;
3052                   long flushed;
3053
3054                   log_error(LOG_LEVEL_INFO,
3055                      "Flushing header and buffers. Stepping back from filtering.");
3056
3057                   hdr = list_to_text(csp->headers);
3058                   if (hdr == NULL)
3059                   {
3060                      /*
3061                       * Memory is too tight to even generate the header.
3062                       * Send our static "Out-of-memory" page.
3063                       */
3064                      log_error(LOG_LEVEL_ERROR, "Out of memory while trying to flush.");
3065                      rsp = cgi_error_memory();
3066                      send_crunch_response(csp, rsp);
3067                      mark_server_socket_tainted(csp);
3068 #ifdef FEATURE_HTTPS_FILTERING
3069                      close_client_and_server_ssl_connections(csp);
3070 #endif
3071                      return;
3072                   }
3073                   hdrlen = strlen(hdr);
3074
3075 #ifdef FEATURE_HTTPS_FILTERING
3076                   /*
3077                    * Sending data with standard or secured connection (HTTP/HTTPS)
3078                    */
3079                   if (client_use_ssl(csp))
3080                   {
3081                      if ((ssl_send_data(&(csp->mbedtls_client_attr.ssl),
3082                             (const unsigned char *)hdr, hdrlen) < 0)
3083                         || ((flushed = ssl_flush_socket(&(csp->mbedtls_client_attr.ssl),
3084                                 csp->iob)) < 0)
3085                         || (ssl_send_data(&(csp->mbedtls_client_attr.ssl),
3086                               (const unsigned char *)csp->receive_buffer, (size_t)len) < 0))
3087                      {
3088                         log_error(LOG_LEVEL_CONNECT,
3089                            "Flush header and buffers to client failed");
3090                         freez(hdr);
3091                         mark_server_socket_tainted(csp);
3092                         close_client_and_server_ssl_connections(csp);
3093                         return;
3094                      }
3095                   }
3096                   else
3097 #endif /* def FEATURE_HTTPS_FILTERING */
3098                   {
3099                      if (write_socket_delayed(csp->cfd, hdr, hdrlen, write_delay)
3100                       || ((flushed = flush_iob(csp->cfd, csp->iob, write_delay)) < 0)
3101                       || write_socket_delayed(csp->cfd, csp->receive_buffer, (size_t)len,
3102                             write_delay))
3103                      {
3104                         log_error(LOG_LEVEL_CONNECT,
3105                            "Flush header and buffers to client failed: %E");
3106                         freez(hdr);
3107                         mark_server_socket_tainted(csp);
3108 #ifdef FEATURE_HTTPS_FILTERING
3109                         close_client_and_server_ssl_connections(csp);
3110 #endif
3111                         return;
3112                      }
3113                   }
3114
3115                   /*
3116                    * Reset the byte_count to the amount of bytes
3117                    * we just flushed. len will be added a few lines below,
3118                    * hdrlen doesn't matter for LOG_LEVEL_CLF.
3119                    */
3120                   byte_count = (unsigned long long)flushed;
3121                   freez(hdr);
3122                   buffer_and_filter_content = 0;
3123                   server_body = 1;
3124                }
3125             }
3126             else
3127             {
3128 #ifdef FEATURE_HTTPS_FILTERING
3129                /*
3130                 * Sending data with standard or secured connection (HTTP/HTTPS)
3131                 */
3132                if (client_use_ssl(csp))
3133                {
3134                   ret = ssl_send_data(&(csp->mbedtls_client_attr.ssl),
3135                      (const unsigned char *)csp->receive_buffer, (size_t)len);
3136                   if (ret < 0)
3137                   {
3138                      log_error(LOG_LEVEL_ERROR,
3139                         "Sending data to client failed");
3140                      mark_server_socket_tainted(csp);
3141                      close_client_and_server_ssl_connections(csp);
3142                      return;
3143                   }
3144                }
3145                else
3146 #endif /* def FEATURE_HTTPS_FILTERING */
3147                {
3148                   if (write_socket_delayed(csp->cfd, csp->receive_buffer,
3149                         (size_t)len, write_delay))
3150                   {
3151                      log_error(LOG_LEVEL_ERROR, "write to client failed: %E");
3152                      mark_server_socket_tainted(csp);
3153 #ifdef FEATURE_HTTPS_FILTERING
3154                      close_client_and_server_ssl_connections(csp);
3155 #endif
3156                      return;
3157                   }
3158                }
3159             }
3160             byte_count += (unsigned long long)len;
3161             continue;
3162          }
3163          else
3164          {
3165             /*
3166              * We're still looking for the end of the server's header.
3167              * Buffer up the data we just read.  If that fails, there's
3168              * little we can do but send our static out-of-memory page.
3169              */
3170             if (add_to_iob(csp->iob, csp->config->buffer_limit, csp->receive_buffer, len))
3171             {
3172                log_error(LOG_LEVEL_ERROR, "Out of memory while looking for end of server headers.");
3173                rsp = cgi_error_memory();
3174                send_crunch_response(csp, rsp);
3175                mark_server_socket_tainted(csp);
3176 #ifdef FEATURE_HTTPS_FILTERING
3177                close_client_and_server_ssl_connections(csp);
3178 #endif
3179                return;
3180             }
3181
3182             /* Convert iob into something sed() can digest */
3183             if (JB_ERR_PARSE == get_server_headers(csp))
3184             {
3185                if (ms_iis5_hack)
3186                {
3187                   /*
3188                    * Well, we tried our MS IIS/5 hack and it didn't work.
3189                    * The header is incomplete and there isn't anything
3190                    * we can do about it.
3191                    */
3192                   log_error(LOG_LEVEL_ERROR, "Invalid server headers. "
3193                      "Applying the MS IIS5 hack didn't help.");
3194                   log_error(LOG_LEVEL_CLF,
3195                      "%s - - [%T] \"%s\" 502 0", csp->ip_addr_str, http->cmd);
3196 #ifdef FEATURE_HTTPS_FILTERING
3197                   /*
3198                    * Sending data with standard or secured connection (HTTP/HTTPS)
3199                    */
3200                   if (client_use_ssl(csp))
3201                   {
3202                      ssl_send_data(&(csp->mbedtls_client_attr.ssl),
3203                         (const unsigned char *)INVALID_SERVER_HEADERS_RESPONSE,
3204                         strlen(INVALID_SERVER_HEADERS_RESPONSE));
3205                   }
3206                   else
3207 #endif /* def FEATURE_HTTPS_FILTERING */
3208                   {
3209                      write_socket_delayed(csp->cfd,
3210                         INVALID_SERVER_HEADERS_RESPONSE,
3211                         strlen(INVALID_SERVER_HEADERS_RESPONSE), write_delay);
3212                   }
3213                   mark_server_socket_tainted(csp);
3214 #ifdef FEATURE_HTTPS_FILTERING
3215                   close_client_and_server_ssl_connections(csp);
3216 #endif
3217                   return;
3218                }
3219                else
3220                {
3221                   /*
3222                    * Since we have to wait for more from the server before
3223                    * we can parse the headers we just continue here.
3224                    */
3225                   log_error(LOG_LEVEL_CONNECT,
3226                      "Continuing buffering server headers from socket %d. "
3227                      "Bytes most recently read: %d.", csp->cfd, len);
3228                   continue;
3229                }
3230             }
3231             else
3232             {
3233                /*
3234                 * Account for the content bytes we
3235                 * might have gotten with the headers.
3236                 */
3237                assert(csp->iob->eod >= csp->iob->cur);
3238                byte_count = (unsigned long long)(csp->iob->eod - csp->iob->cur);
3239             }
3240
3241             /* Did we actually get anything? */
3242             if (NULL == csp->headers->first)
3243             {
3244                if ((csp->flags & CSP_FLAG_REUSED_CLIENT_CONNECTION))
3245                {
3246                   log_error(LOG_LEVEL_ERROR,
3247                      "No server or forwarder response received on socket %d. "
3248                      "Closing client socket %d without sending data.",
3249                      csp->server_connection.sfd, csp->cfd);
3250                   log_error(LOG_LEVEL_CLF,
3251                      "%s - - [%T] \"%s\" 502 0", csp->ip_addr_str, http->cmd);
3252                }
3253                else
3254                {
3255                   log_error(LOG_LEVEL_ERROR,
3256                      "No server or forwarder response received on socket %d.",
3257                      csp->server_connection.sfd);
3258                   send_crunch_response(csp, error_response(csp, "no-server-data"));
3259                }
3260                free_http_request(http);
3261                mark_server_socket_tainted(csp);
3262 #ifdef FEATURE_HTTPS_FILTERING
3263                close_client_and_server_ssl_connections(csp);
3264 #endif
3265                return;
3266             }
3267
3268             if (!csp->headers->first->str)
3269             {
3270                log_error(LOG_LEVEL_ERROR, "header search: csp->headers->first->str == NULL, assert will be called");
3271             }
3272             assert(csp->headers->first->str);
3273
3274             if (strncmpic(csp->headers->first->str, "HTTP", 4) &&
3275                 strncmpic(csp->headers->first->str, "ICY", 3))
3276             {
3277                /*
3278                 * It doesn't look like a HTTP (or Shoutcast) response:
3279                 * tell the client and log the problem.
3280                 */
3281                if (strlen(csp->headers->first->str) > 30)
3282                {
3283                   csp->headers->first->str[30] = '\0';
3284                }
3285                log_error(LOG_LEVEL_ERROR,
3286                   "Invalid server or forwarder response. Starts with: %s",
3287                   csp->headers->first->str);
3288                log_error(LOG_LEVEL_CLF,
3289                   "%s - - [%T] \"%s\" 502 0", csp->ip_addr_str, http->cmd);
3290 #ifdef FEATURE_HTTPS_FILTERING
3291                /*
3292                 * Sending data with standard or secured connection (HTTP/HTTPS)
3293                 */
3294                if (client_use_ssl(csp))
3295                {
3296                   ssl_send_data(&(csp->mbedtls_client_attr.ssl),
3297                      (const unsigned char *)INVALID_SERVER_HEADERS_RESPONSE,
3298                      strlen(INVALID_SERVER_HEADERS_RESPONSE));
3299                }
3300                else
3301 #endif /* def FEATURE_HTTPS_FILTERING */
3302                {
3303                   write_socket_delayed(csp->cfd, INVALID_SERVER_HEADERS_RESPONSE,
3304                      strlen(INVALID_SERVER_HEADERS_RESPONSE), write_delay);
3305                }
3306                free_http_request(http);
3307                mark_server_socket_tainted(csp);
3308 #ifdef FEATURE_HTTPS_FILTERING
3309                close_client_and_server_ssl_connections(csp);
3310 #endif
3311                return;
3312             }
3313
3314             /*
3315              * We have now received the entire server header,
3316              * filter it and send the result to the client
3317              */
3318             if (JB_ERR_OK != sed(csp, FILTER_SERVER_HEADERS))
3319             {
3320                log_error(LOG_LEVEL_CLF,
3321                   "%s - - [%T] \"%s\" 502 0", csp->ip_addr_str, http->cmd);
3322 #ifdef FEATURE_HTTPS_FILTERING
3323                /*
3324                 * Sending data with standard or secured connection (HTTP/HTTPS)
3325                 */
3326                if (client_use_ssl(csp))
3327                {
3328                   ssl_send_data(&(csp->mbedtls_client_attr.ssl),
3329                      (const unsigned char *)INVALID_SERVER_HEADERS_RESPONSE,
3330                      strlen(INVALID_SERVER_HEADERS_RESPONSE));
3331                }
3332                else
3333 #endif
3334                {
3335                   write_socket_delayed(csp->cfd, INVALID_SERVER_HEADERS_RESPONSE,
3336                      strlen(INVALID_SERVER_HEADERS_RESPONSE), write_delay);
3337                }
3338                free_http_request(http);
3339                mark_server_socket_tainted(csp);
3340 #ifdef FEATURE_HTTPS_FILTERING
3341                close_client_and_server_ssl_connections(csp);
3342 #endif
3343                return;
3344             }
3345             hdr = list_to_text(csp->headers);
3346             if (hdr == NULL)
3347             {
3348                /* FIXME Should handle error properly */
3349                log_error(LOG_LEVEL_FATAL, "Out of memory parsing server header");
3350             }
3351
3352             if ((csp->flags & CSP_FLAG_CHUNKED)
3353                && !(csp->flags & CSP_FLAG_CONTENT_LENGTH_SET)
3354                && ((csp->iob->eod - csp->iob->cur) >= 5)
3355                && !memcmp(csp->iob->eod-5, "0\r\n\r\n", 5))
3356             {
3357                log_error(LOG_LEVEL_CONNECT,
3358                   "Looks like we got the last chunk together with "
3359                   "the server headers. We better stop reading.");
3360                byte_count = (unsigned long long)(csp->iob->eod - csp->iob->cur);
3361                csp->expected_content_length = byte_count;
3362                csp->flags |= CSP_FLAG_CONTENT_LENGTH_SET;
3363             }
3364
3365             csp->server_connection.response_received = time(NULL);
3366
3367             if (crunch_response_triggered(csp, crunchers_light))
3368             {
3369                /*
3370                 * One of the tags created by a server-header
3371                 * tagger triggered a crunch. We already
3372                 * delivered the crunch response to the client
3373                 * and are done here after cleaning up.
3374                 */
3375                freez(hdr);
3376                mark_server_socket_tainted(csp);
3377 #ifdef FEATURE_HTTPS_FILTERING
3378                close_client_and_server_ssl_connections(csp);
3379 #endif
3380                return;
3381             }
3382
3383             /* Buffer and pcrs filter this if appropriate. */
3384             buffer_and_filter_content = content_requires_filtering(csp);
3385
3386             if (!buffer_and_filter_content)
3387             {
3388                /*
3389                 * Write the server's (modified) header to
3390                 * the client (along with anything else that
3391                 * may be in the buffer). Use standard or secured
3392                 * connection.
3393                 */
3394 #ifdef FEATURE_HTTPS_FILTERING
3395                if (client_use_ssl(csp))
3396                {
3397                   if ((ssl_send_data(&(csp->mbedtls_client_attr.ssl),
3398                           (const unsigned char *)hdr, strlen(hdr)) < 0)
3399                      || (len = ssl_flush_socket(&(csp->mbedtls_client_attr.ssl),
3400                             csp->iob) < 0))
3401                   {
3402                      log_error(LOG_LEVEL_CONNECT, "Write header to client failed");
3403
3404                      /*
3405                       * The write failed, so don't bother mentioning it
3406                       * to the client... it probably can't hear us anyway.
3407                       */
3408                      freez(hdr);
3409                      mark_server_socket_tainted(csp);
3410 #ifdef FEATURE_HTTPS_FILTERING
3411                      close_client_and_server_ssl_connections(csp);
3412 #endif
3413                      return;
3414                   }
3415                }
3416                else
3417 #endif /* def FEATURE_HTTPS_FILTERING */
3418                {
3419                   if (write_socket_delayed(csp->cfd, hdr, strlen(hdr), write_delay)
3420                      || ((len = flush_iob(csp->cfd, csp->iob, write_delay)) < 0))
3421                   {
3422                      log_error(LOG_LEVEL_ERROR,
3423                         "write header to client failed");
3424                      /*
3425                       * The write failed, so don't bother mentioning it
3426                       * to the client... it probably can't hear us anyway.
3427                       */
3428                      freez(hdr);
3429                      mark_server_socket_tainted(csp);
3430 #ifdef FEATURE_HTTPS_FILTERING
3431                      close_client_and_server_ssl_connections(csp);
3432 #endif
3433                      return;
3434                   }
3435                }
3436                                 }
3437
3438             /* we're finished with the server's header */
3439
3440             freez(hdr);
3441             server_body = 1;
3442
3443             /*
3444              * If this was a MS IIS/5 hack then it means the server
3445              * has already closed the connection. Nothing more to read.
3446              * Time to bail.
3447              */
3448             if (ms_iis5_hack)
3449             {
3450                log_error(LOG_LEVEL_ERROR,
3451                   "Closed server connection detected. "
3452                   "Applying the MS IIS5 hack didn't help.");
3453                log_error(LOG_LEVEL_CLF,
3454                   "%s - - [%T] \"%s\" 502 0", csp->ip_addr_str, http->cmd);
3455 #ifdef FEATURE_HTTPS_FILTERING
3456                /*
3457                 * Sending data with standard or secured connection (HTTP/HTTPS)
3458                 */
3459                if (client_use_ssl(csp))
3460                {
3461                   ssl_send_data(&(csp->mbedtls_client_attr.ssl),
3462                      (const unsigned char *)INVALID_SERVER_HEADERS_RESPONSE,
3463                      strlen(INVALID_SERVER_HEADERS_RESPONSE));
3464                }
3465                else
3466 #endif /* def FEATURE_HTTPS_FILTERING */
3467                {
3468                   write_socket_delayed(csp->cfd, INVALID_SERVER_HEADERS_RESPONSE,
3469                      strlen(INVALID_SERVER_HEADERS_RESPONSE), write_delay);
3470                }
3471                mark_server_socket_tainted(csp);
3472 #ifdef FEATURE_HTTPS_FILTERING
3473                close_client_and_server_ssl_connections(csp);
3474 #endif
3475                return;
3476             }
3477          }
3478          continue;
3479       }
3480       mark_server_socket_tainted(csp);
3481 #ifdef FEATURE_HTTPS_FILTERING
3482       close_client_and_server_ssl_connections(csp);
3483 #endif
3484       return; /* huh? we should never get here */
3485    }
3486 #ifdef FEATURE_HTTPS_FILTERING
3487    close_client_and_server_ssl_connections(csp);
3488 #endif
3489    if (csp->content_length == 0)
3490    {
3491       /*
3492        * If Privoxy didn't recalculate the Content-Length,
3493        * byte_count is still correct.
3494        */
3495       csp->content_length = byte_count;
3496    }
3497
3498 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
3499    if ((csp->flags & CSP_FLAG_CONTENT_LENGTH_SET)
3500       && (csp->expected_content_length != byte_count))
3501    {
3502       log_error(LOG_LEVEL_CONNECT,
3503          "Received %llu bytes while expecting %llu.",
3504          byte_count, csp->expected_content_length);
3505       mark_server_socket_tainted(csp);
3506    }
3507 #endif
3508
3509    log_error(LOG_LEVEL_CLF, "%s - - [%T] \"%s\" 200 %llu",
3510       csp->ip_addr_str, http->ocmd, csp->content_length);
3511
3512    csp->server_connection.timestamp = time(NULL);
3513 }
3514
3515
3516 /*********************************************************************
3517  *
3518  * Function    :  chat
3519  *
3520  * Description :  Once a connection from the client has been accepted,
3521  *                this function is called (via serve()) to handle the
3522  *                main business of the communication.  This function
3523  *                returns after dealing with a single request. It can
3524  *                be called multiple times with the same client socket
3525  *                if the client is keeping the connection alive.
3526  *
3527  *                The decision whether or not a client connection will
3528  *                be kept alive is up to the caller which also must
3529  *                close the client socket when done.
3530  *
3531  *                FIXME: chat is nearly thousand lines long.
3532  *                Ridiculous.
3533  *
3534  * Parameters  :
3535  *          1  :  csp = Current client state (buffers, headers, etc...)
3536  *
3537  * Returns     :  Nothing.
3538  *
3539  *********************************************************************/
3540 static void chat(struct client_state *csp)
3541 {
3542    const struct forward_spec *fwd;
3543    struct http_request *http;
3544    /* Skeleton for HTTP response, if we should intercept the request */
3545    struct http_response *rsp;
3546 #ifdef FEATURE_HTTPS_FILTERING
3547    int use_ssl_tunnel = 0;
3548 #endif
3549
3550    http = csp->http;
3551
3552    if (receive_client_request(csp) != JB_ERR_OK)
3553    {
3554       return;
3555    }
3556    if (parse_client_request(csp) != JB_ERR_OK)
3557    {
3558       return;
3559    }
3560
3561    /* decide how to route the HTTP request */
3562    fwd = forward_url(csp, http);
3563    if (NULL == fwd)
3564    {
3565       log_error(LOG_LEVEL_FATAL, "gateway spec is NULL!?!?  This can't happen!");
3566       /* Never get here - LOG_LEVEL_FATAL causes program exit */
3567       return;
3568    }
3569
3570 #ifdef FEATURE_HTTPS_FILTERING
3571    /*
3572     * Setting flags to use old solution with SSL tunnel and to disable
3573     * certificates verification.
3574     */
3575    if (csp->http->ssl && !(csp->action->flags & ACTION_ENABLE_HTTPS_FILTER))
3576    {
3577       use_ssl_tunnel = 1;
3578    }
3579
3580    if (http->ssl && csp->action->flags & ACTION_IGNORE_CERTIFICATE_ERRORS)
3581    {
3582       csp->dont_verify_certificate = 1;
3583    }
3584 #endif
3585
3586    /*
3587     * build the http request to send to the server
3588     * we have to do one of the following:
3589     *
3590     * create =    use the original HTTP request to create a new
3591     *             HTTP request that has either the path component
3592     *             without the http://domainspec (w/path) or the
3593     *             full orininal URL (w/url)
3594     *             Note that the path and/or the HTTP version may
3595     *             have been altered by now.
3596     *
3597     * SSL proxy = Open a socket to the host:port of the server
3598     *             and create TLS/SSL connection with server and
3599     *             with client. Then behave like mediator between
3600     *             client and server over TLS/SSL.
3601     *
3602     * SSL proxy = Pass the request unchanged if forwarding a CONNECT
3603     *    with     request to a parent proxy. Note that we'll be sending
3604     * forwarding  the CFAIL message ourselves if connecting to the parent
3605     *             fails, but we won't send a CSUCCEED message if it works,
3606     *             since that would result in a double message (ours and the
3607     *             parent's). After sending the request to the parent, we
3608     *             must parse answer and send it to client. If connection
3609     *             with server is established, we do TLS/SSL proxy. Otherwise
3610     *             we send parent response to client and close connections.
3611     *
3612     * here's the matrix:
3613     *                        SSL
3614     *                    0        1
3615     *                +--------+--------+
3616     *                |        |        |
3617     *             0  | create |   SSL  |
3618     *                | w/path |  proxy |
3619     *  Forwarding    +--------+--------+
3620     *                |        |   SSL  |
3621     *             1  | create |  proxy |
3622     *                | w/url  |+forward|
3623     *                +--------+--------+
3624     *
3625     */
3626
3627 #ifdef FEATURE_HTTPS_FILTERING
3628    /*
3629     * Presetting SSL client and server flags
3630     */
3631    if (http->ssl && !use_ssl_tunnel)
3632    {
3633       http->client_ssl = 1;
3634       http->server_ssl = 1;
3635    }
3636    else
3637    {
3638       http->client_ssl = 0;
3639       http->server_ssl = 0;
3640    }
3641 #endif
3642
3643    if (http->ssl && connect_port_is_forbidden(csp))
3644    {
3645       const char *acceptable_connect_ports =
3646          csp->action->string[ACTION_STRING_LIMIT_CONNECT];
3647       assert(NULL != acceptable_connect_ports);
3648       log_error(LOG_LEVEL_INFO, "Request from %s marked for blocking. "
3649          "limit-connect{%s} doesn't allow CONNECT requests to %s",
3650          csp->ip_addr_str, acceptable_connect_ports, csp->http->hostport);
3651       csp->action->flags |= ACTION_BLOCK;
3652       http->ssl = 0;
3653 #ifdef FEATURE_HTTPS_FILTERING
3654       http->client_ssl = 0;
3655       http->server_ssl = 0;
3656 #endif
3657    }
3658
3659
3660    freez(csp->headers->first->str);
3661    build_request_line(csp, fwd, &csp->headers->first->str);
3662
3663    /*
3664     * We have a request. Check if one of the crunchers wants it
3665     * unless the client wants to use TLS/SSL in which case we
3666     * haven't setup the TLS context yet and will send the crunch
3667     * response later.
3668     */
3669    if (
3670 #ifdef FEATURE_HTTPS_FILTERING
3671        !client_use_ssl(csp) &&
3672 #endif
3673        crunch_response_triggered(csp, crunchers_all))
3674    {
3675       /*
3676        * Yes. The client got the crunch response and we're done here.
3677        */
3678       return;
3679    }
3680
3681    log_applied_actions(csp->action);
3682    log_error(LOG_LEVEL_GPC, "%s%s", http->hostport, http->path);
3683
3684    if (fwd->forward_host)
3685    {
3686       log_error(LOG_LEVEL_CONNECT, "via [%s]:%d to: %s",
3687          fwd->forward_host, fwd->forward_port, http->hostport);
3688    }
3689    else
3690    {
3691       log_error(LOG_LEVEL_CONNECT, "to %s", http->hostport);
3692    }
3693
3694    /* here we connect to the server, gateway, or the forwarder */
3695
3696 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
3697    if ((csp->server_connection.sfd != JB_INVALID_SOCKET)
3698       && socket_is_still_alive(csp->server_connection.sfd)
3699       && connection_destination_matches(&csp->server_connection, http, fwd))
3700    {
3701       log_error(LOG_LEVEL_CONNECT,
3702          "Reusing server socket %d connected to %s. Total requests: %u.",
3703          csp->server_connection.sfd, csp->server_connection.host,
3704          csp->server_connection.requests_sent_total);
3705    }
3706    else
3707    {
3708       if (csp->server_connection.sfd != JB_INVALID_SOCKET)
3709       {
3710 #ifdef FEATURE_CONNECTION_SHARING
3711          if (csp->config->feature_flags & RUNTIME_FEATURE_CONNECTION_SHARING)
3712          {
3713             remember_connection(&csp->server_connection);
3714          }
3715          else
3716 #endif /* def FEATURE_CONNECTION_SHARING */
3717          {
3718             log_error(LOG_LEVEL_CONNECT,
3719                "Closing server socket %d connected to %s. Total requests: %u.",
3720                csp->server_connection.sfd, csp->server_connection.host,
3721                csp->server_connection.requests_sent_total);
3722             close_socket(csp->server_connection.sfd);
3723          }
3724          mark_connection_closed(&csp->server_connection);
3725       }
3726 #endif /* def FEATURE_CONNECTION_KEEP_ALIVE */
3727 #ifdef FEATURE_HTTPS_FILTERING
3728       if (http->ssl && !use_ssl_tunnel)
3729       {
3730          int ret;
3731          /*
3732           * Creating an SSL proxy. If forwarding is disabled, we must send
3733           * CSUCCEED mesage to client. Then TLS/SSL connection with client
3734           * is created.
3735           */
3736
3737          if (fwd->forward_host == NULL)
3738          {
3739             /*
3740              * We're lying to the client as the connection hasn't actually
3741              * been established yet. We don't establish the connection until
3742              * we have seen and parsed the encrypted client headers.
3743              */
3744             if (write_socket_delayed(csp->cfd, CSUCCEED,
3745                   strlen(CSUCCEED), get_write_delay(csp)) != 0)
3746             {
3747                log_error(LOG_LEVEL_ERROR, "Sending SUCCEED to client failed");
3748                return;
3749             }
3750          }
3751
3752          ret = create_client_ssl_connection(csp);
3753          if (ret != 0)
3754          {
3755             log_error(LOG_LEVEL_ERROR,
3756                "Can't open secure connection with client");
3757             close_client_ssl_connection(csp); /* XXX: Is this needed? */
3758             return;
3759          }
3760          if (JB_ERR_OK != process_encrypted_request(csp))
3761          {
3762             log_error(LOG_LEVEL_ERROR, "Failed to parse encrypted request.");
3763             close_client_ssl_connection(csp);
3764             return;
3765          }
3766          /*
3767           * We have an encrypted request. Check if one of the crunchers now
3768           * wants it (for example because the previously invisible path was
3769           * required to match).
3770           */
3771          if (crunch_response_triggered(csp, crunchers_all))
3772          {
3773             /*
3774              * Yes. The client got the crunch response and we're done here.
3775              */
3776             close_client_ssl_connection(csp);
3777             return;
3778          }
3779       }
3780 #endif
3781       /*
3782        * Connecting to destination server
3783        */
3784       csp->server_connection.sfd = forwarded_connect(fwd, http, csp);
3785
3786       if (csp->server_connection.sfd == JB_INVALID_SOCKET)
3787       {
3788          if (fwd->type != SOCKS_NONE)
3789          {
3790             /* Socks error. */
3791             rsp = error_response(csp, "forwarding-failed");
3792          }
3793          else if (errno == EINVAL)
3794          {
3795             rsp = error_response(csp, "no-such-domain");
3796          }
3797          else
3798          {
3799             rsp = error_response(csp, "connect-failed");
3800          }
3801
3802          /* Write the answer to the client */
3803          if (rsp != NULL)
3804          {
3805             send_crunch_response(csp, rsp);
3806          }
3807
3808          /*
3809           * Temporary workaround to prevent already-read client
3810           * bodies from being parsed as new requests. For now we
3811           * err on the safe side and throw all the following
3812           * requests under the bus, even if no client body has been
3813           * buffered. A compliant client will repeat the dropped
3814           * requests on an untainted connection.
3815           *
3816           * The proper fix is to discard the no longer needed
3817           * client body in the buffer (if there is one) and to
3818           * continue parsing the bytes that follow.
3819           */
3820          drain_and_close_socket(csp->cfd);
3821          csp->cfd = JB_INVALID_SOCKET;
3822
3823          return;
3824       }
3825
3826 #ifdef FEATURE_HTTPS_FILTERING
3827       /*
3828        * Creating TLS/SSL connections with destination server or parent
3829        * proxy. If forwarding is enabled, we must send client request to
3830        * parent proxy and receive, parse and resend parent proxy answer.
3831        */
3832       if (http->ssl && !use_ssl_tunnel)
3833       {
3834          if (fwd->forward_host != NULL)
3835          {
3836             char server_response[BUFFER_SIZE];
3837             int ret = 0;
3838             int len = 0;
3839             char *hdr = list_to_text(csp->headers);
3840             memset(server_response, 0, sizeof(server_response));
3841
3842             if (hdr == NULL)
3843             {
3844                log_error(LOG_LEVEL_FATAL,
3845                   "Out of memory parsing client header");
3846             }
3847             list_remove_all(csp->headers);
3848
3849             /*
3850              * Sending client's CONNECT request to the parent proxy
3851              */
3852             ret = write_socket(csp->server_connection.sfd, hdr, strlen(hdr));
3853
3854             freez(hdr);
3855
3856             if (ret != 0)
3857             {
3858                log_error(LOG_LEVEL_CONNECT,
3859                   "Sending request headers to: %s failed", http->hostport);
3860                mark_server_socket_tainted(csp);
3861                close_client_ssl_connection(csp);
3862                return;
3863             }
3864
3865             /* Waiting for parent proxy server response */
3866             len = read_socket(csp->server_connection.sfd, server_response,
3867                sizeof(server_response)-1);
3868
3869             if (len <= 0)
3870             {
3871                log_error(LOG_LEVEL_ERROR, "No response from parent proxy "
3872                   "server on socket %d.", csp->server_connection.sfd);
3873
3874                rsp = error_response(csp, "no-server-data");
3875                if (rsp)
3876                {
3877                   send_crunch_response(csp, rsp);
3878                }
3879                mark_server_socket_tainted(csp);
3880                close_client_ssl_connection(csp);
3881                return;
3882             }
3883
3884             /*
3885              * Test if connection with destination server was established
3886              * successfully by parent proxy. Then we can send response to
3887              * the client and continue or stop.
3888              */
3889             if (!tunnel_established_successfully(server_response, (unsigned int)len))
3890             {
3891                log_error(LOG_LEVEL_ERROR, "Forwarder hasn't established "
3892                   "connection with destination server.");
3893
3894                write_socket(csp->cfd, server_response, (size_t)len);
3895                mark_server_socket_tainted(csp);
3896                close_client_ssl_connection(csp);
3897                return;
3898             }
3899
3900             /*
3901              * Parent proxy has established connection with destination server.
3902              * Now we must create TLS/SSL connection with parent proxy.
3903              */
3904             ret = create_server_ssl_connection(csp);
3905
3906             /*
3907             * If TLS/SSL connection wasn't created and invalid certificate
3908             * wasn't detected, we can interrupt this function. Otherwise, we
3909             * must inform the client about invalid server certificate.
3910             */
3911             if (ret != 0
3912                && (csp->server_cert_verification_result == SSL_CERT_NOT_VERIFIED
3913                   || csp->server_cert_verification_result == SSL_CERT_VALID))
3914             {
3915                rsp = error_response(csp, "connect-failed");
3916                if (rsp)
3917                {
3918                   send_crunch_response(csp, rsp);
3919                }
3920                return;
3921             }
3922
3923             /*
3924              * TLS/SSL connection with parent proxy is established, we can
3925              * inform client about success.
3926              */
3927             ret = write_socket(csp->cfd, server_response, (size_t)len);
3928             if (ret != 0)
3929             {
3930                log_error(LOG_LEVEL_ERROR,
3931                   "Sending parent proxy response to client failed");
3932                mark_server_socket_tainted(csp);
3933                close_client_ssl_connection(csp);
3934                return;
3935             }
3936          }/* -END- if (fwd->forward_host != NULL) */
3937          else
3938          {
3939             /*
3940              * Parent proxy is not used, we can just create TLS/SSL connection
3941              * with destination server
3942              */
3943             int ret = create_server_ssl_connection(csp);
3944             if (ret != 0)
3945             {
3946                if (csp->server_cert_verification_result != SSL_CERT_VALID &&
3947                    csp->server_cert_verification_result != SSL_CERT_NOT_VERIFIED)
3948                {
3949                   /*
3950                    * If the server certificate is invalid, we must inform
3951                    * the client and then close connection to the client.
3952                    */
3953                   ssl_send_certificate_error(csp);
3954                   close_client_and_server_ssl_connections(csp);
3955                   return;
3956                }
3957                if (csp->server_cert_verification_result == SSL_CERT_NOT_VERIFIED
3958                 || csp->server_cert_verification_result == SSL_CERT_VALID)
3959                {
3960                   /*
3961                    * The TLS/SSL connection wasn't created but an invalid
3962                    * certificate wasn't detected. Report it as connection
3963                    * failure.
3964                    */
3965                   rsp = error_response(csp, "connect-failed");
3966                   if (rsp)
3967                   {
3968                      send_crunch_response(csp, rsp);
3969                   }
3970                   return;
3971                }
3972             }
3973          }
3974       }/* -END- if (http->ssl) */
3975 #endif /* def FEATURE_HTTPS_FILTERING */
3976
3977 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
3978       save_connection_destination(csp->server_connection.sfd,
3979          http, fwd, &csp->server_connection);
3980       csp->server_connection.keep_alive_timeout =
3981          (unsigned)csp->config->keep_alive_timeout;
3982    }
3983 #endif /* def FEATURE_CONNECTION_KEEP_ALIVE */
3984
3985    csp->server_connection.requests_sent_total++;
3986
3987    if ((fwd->type == SOCKS_5T) && (NULL == csp->headers->first))
3988    {
3989       /* Client headers have been sent optimistically */
3990       assert(csp->headers->last == NULL);
3991    }
3992    else if (http->ssl == 0 || (fwd->forward_host
3993 #ifdef FEATURE_HTTPS_FILTERING
3994          && use_ssl_tunnel
3995 #endif
3996            ))
3997    {
3998       if (send_http_request(csp))
3999       {
4000          rsp = error_response(csp, "connect-failed");
4001          if (rsp)
4002          {
4003             send_crunch_response(csp, rsp);
4004          }
4005          return;
4006       }
4007    }
4008    else
4009    {
4010       /*
4011        * Using old solution with SSL tunnel or new solution with SSL proxy
4012        */
4013       list_remove_all(csp->headers);
4014 #ifdef FEATURE_HTTPS_FILTERING
4015       if (use_ssl_tunnel)
4016 #endif
4017       {
4018          /*
4019          * We're running an SSL tunnel and we're not forwarding,
4020          * so just ditch the client headers, send the "connect succeeded"
4021          * message to the client, flush the rest, and get out of the way.
4022          */
4023          if (write_socket_delayed(csp->cfd, CSUCCEED,
4024                strlen(CSUCCEED), get_write_delay(csp)))
4025          {
4026             return;
4027          }
4028       }
4029 #ifdef FEATURE_HTTPS_FILTERING
4030       else
4031       {
4032          /*
4033           * If server certificate is invalid, we must inform client and then
4034           * close connection with client.
4035           */
4036          if (csp->server_cert_verification_result != SSL_CERT_VALID)
4037          {
4038             ssl_send_certificate_error(csp);
4039             close_client_and_server_ssl_connections(csp);
4040             return;
4041          }
4042          if (send_https_request(csp))
4043          {
4044             rsp = error_response(csp, "connect-failed");
4045             if (rsp)
4046             {
4047                send_crunch_response(csp, rsp);
4048             }
4049             close_client_and_server_ssl_connections(csp);
4050             return;
4051          }
4052       }
4053 #endif /* def FEATURE_HTTPS_FILTERING */
4054       clear_iob(csp->client_iob);
4055    }/* -END- else ... if (http->ssl == 1) */
4056
4057    log_error(LOG_LEVEL_CONNECT, "to %s successful", http->hostport);
4058
4059    /* XXX: should the time start earlier for optimistically sent data? */
4060    csp->server_connection.request_sent = time(NULL);
4061
4062    handle_established_connection(csp);
4063    freez(csp->receive_buffer);
4064 }
4065
4066
4067 #ifdef FUZZ
4068 /*********************************************************************
4069  *
4070  * Function    :  fuzz_server_response
4071  *
4072  * Description :  Treat the input as a whole server response.
4073  *
4074  * Parameters  :
4075  *          1  :  csp = Current client state (buffers, headers, etc...)
4076  *          2  :  fuzz_input_file = File to read the input from.
4077  *
4078  * Returns     :  0
4079  *
4080  *********************************************************************/
4081 extern int fuzz_server_response(struct client_state *csp, char *fuzz_input_file)
4082 {
4083    static struct forward_spec fwd; /* Zero'd due to being static */
4084    csp->cfd = 0;
4085
4086    if (strcmp(fuzz_input_file, "-") == 0)
4087    {
4088       /* XXX: Doesn'T work yet. */
4089       csp->server_connection.sfd = 0;
4090    }
4091    else
4092    {
4093       csp->server_connection.sfd = open(fuzz_input_file, O_RDONLY);
4094       if (csp->server_connection.sfd == -1)
4095       {
4096          log_error(LOG_LEVEL_FATAL, "Failed to open %s: %E",
4097             fuzz_input_file);
4098       }
4099    }
4100    csp->fwd = &fwd;
4101    csp->content_type |= CT_GIF;
4102    csp->action->flags |= ACTION_DEANIMATE;
4103    csp->action->string[ACTION_STRING_DEANIMATE] = "last";
4104
4105    csp->http->path = strdup_or_die("/");
4106    csp->http->host = strdup_or_die("fuzz.example.org");
4107    csp->http->hostport = strdup_or_die("fuzz.example.org:80");
4108    /* Prevent client socket monitoring */
4109    csp->flags |= CSP_FLAG_PIPELINED_REQUEST_WAITING;
4110    csp->flags |= CSP_FLAG_CHUNKED;
4111
4112    csp->config->feature_flags |= RUNTIME_FEATURE_CONNECTION_KEEP_ALIVE;
4113    csp->flags |= CSP_FLAG_CLIENT_CONNECTION_KEEP_ALIVE;
4114
4115    csp->content_type |= CT_DECLARED|CT_GIF;
4116
4117    csp->config->socket_timeout = 0;
4118
4119    cgi_init_error_messages();
4120
4121    handle_established_connection(csp);
4122    freez(csp->receive_buffer);
4123
4124    return 0;
4125 }
4126 #endif
4127
4128
4129 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
4130 /*********************************************************************
4131  *
4132  * Function    :  prepare_csp_for_next_request
4133  *
4134  * Description :  Put the csp in a mostly vergin state.
4135  *
4136  * Parameters  :
4137  *          1  :  csp = Current client state (buffers, headers, etc...)
4138  *
4139  * Returns     :  N/A
4140  *
4141  *********************************************************************/
4142 static void prepare_csp_for_next_request(struct client_state *csp)
4143 {
4144    csp->content_type = 0;
4145    csp->content_length = 0;
4146    csp->expected_content_length = 0;
4147    csp->expected_client_content_length = 0;
4148    list_remove_all(csp->headers);
4149    clear_iob(csp->iob);
4150    freez(csp->error_message);
4151    free_http_request(csp->http);
4152    destroy_list(csp->headers);
4153    destroy_list(csp->tags);
4154 #ifdef FEATURE_CLIENT_TAGS
4155    destroy_list(csp->client_tags);
4156    freez(csp->client_address);
4157 #endif
4158    free_current_action(csp->action);
4159    if (NULL != csp->fwd)
4160    {
4161       unload_forward_spec(csp->fwd);
4162       csp->fwd = NULL;
4163    }
4164    /* XXX: Store per-connection flags someplace else. */
4165    csp->flags = (CSP_FLAG_ACTIVE | CSP_FLAG_REUSED_CLIENT_CONNECTION);
4166 #ifdef FEATURE_TOGGLE
4167    if (global_toggle_state)
4168 #endif /* def FEATURE_TOGGLE */
4169    {
4170       csp->flags |= CSP_FLAG_TOGGLED_ON;
4171    }
4172
4173    if (csp->client_iob->eod > csp->client_iob->cur)
4174    {
4175       long bytes_to_shift = csp->client_iob->cur - csp->client_iob->buf;
4176       size_t data_length  = (size_t)(csp->client_iob->eod - csp->client_iob->cur);
4177
4178       assert(bytes_to_shift > 0);
4179       assert(data_length > 0);
4180
4181       log_error(LOG_LEVEL_CONNECT, "Shifting %d pipelined bytes by %d bytes",
4182          data_length, bytes_to_shift);
4183       memmove(csp->client_iob->buf, csp->client_iob->cur, data_length);
4184       csp->client_iob->cur = csp->client_iob->buf;
4185       assert(csp->client_iob->eod == csp->client_iob->buf + bytes_to_shift + data_length);
4186       csp->client_iob->eod = csp->client_iob->buf + data_length;
4187       memset(csp->client_iob->eod, '\0', (size_t)bytes_to_shift);
4188
4189       csp->flags |= CSP_FLAG_PIPELINED_REQUEST_WAITING;
4190    }
4191    else
4192    {
4193       /*
4194        * We mainly care about resetting client_iob->cur so we don't
4195        * waste buffer space at the beginning and don't mess up the
4196        * request restoration done by cgi_show_request().
4197        *
4198        * Freeing the buffer itself isn't technically necessary,
4199        * but makes debugging more convenient.
4200        */
4201       clear_iob(csp->client_iob);
4202    }
4203 }
4204 #endif /* def FEATURE_CONNECTION_KEEP_ALIVE */
4205
4206
4207 /*********************************************************************
4208  *
4209  * Function    :  serve
4210  *
4211  * Description :  This is little more than chat.  We only "serve" to
4212  *                to close (or remember) any socket that chat may have
4213  *                opened.
4214  *
4215  * Parameters  :
4216  *          1  :  csp = Current client state (buffers, headers, etc...)
4217  *
4218  * Returns     :  N/A
4219  *
4220  *********************************************************************/
4221 static void serve(struct client_state *csp)
4222 {
4223    int config_file_change_detected = 0; /* Only used for debugging */
4224 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
4225 #ifdef FEATURE_CONNECTION_SHARING
4226    static int monitor_thread_running = 0;
4227 #endif /* def FEATURE_CONNECTION_SHARING */
4228    int continue_chatting = 0;
4229
4230    log_error(LOG_LEVEL_CONNECT, "Accepted connection from %s on socket %d",
4231       csp->ip_addr_str, csp->cfd);
4232
4233    do
4234    {
4235       unsigned int latency;
4236
4237       chat(csp);
4238
4239       /*
4240        * If the request has been crunched,
4241        * the calculated latency is zero.
4242        */
4243       latency = (unsigned)(csp->server_connection.response_received -
4244          csp->server_connection.request_sent) / 2;
4245
4246       if ((csp->flags & CSP_FLAG_CLIENT_CONNECTION_KEEP_ALIVE)
4247          && (csp->flags & CSP_FLAG_CRUNCHED)
4248          && (csp->expected_client_content_length != 0))
4249       {
4250          csp->flags |= CSP_FLAG_SERVER_SOCKET_TAINTED;
4251          log_error(LOG_LEVEL_CONNECT,
4252             "Tainting client socket %d due to unread data.", csp->cfd);
4253       }
4254
4255       continue_chatting = (csp->config->feature_flags
4256          & RUNTIME_FEATURE_CONNECTION_KEEP_ALIVE)
4257          && !(csp->flags & CSP_FLAG_SERVER_SOCKET_TAINTED)
4258          && (csp->cfd != JB_INVALID_SOCKET)
4259          && (csp->flags & CSP_FLAG_CLIENT_CONNECTION_KEEP_ALIVE)
4260          && ((csp->flags & CSP_FLAG_SERVER_CONTENT_LENGTH_SET)
4261             || (csp->flags & CSP_FLAG_CHUNKED));
4262
4263       if (!(csp->flags & CSP_FLAG_CRUNCHED)
4264          && (csp->server_connection.sfd != JB_INVALID_SOCKET))
4265       {
4266          if (!(csp->flags & CSP_FLAG_SERVER_KEEP_ALIVE_TIMEOUT_SET))
4267          {
4268             csp->server_connection.keep_alive_timeout = csp->config->default_server_timeout;
4269          }
4270          if (!(csp->flags & CSP_FLAG_SERVER_CONNECTION_KEEP_ALIVE)
4271             || (csp->flags & CSP_FLAG_SERVER_SOCKET_TAINTED)
4272             || !socket_is_still_alive(csp->server_connection.sfd)
4273             || !(latency < csp->server_connection.keep_alive_timeout))
4274          {
4275             log_error(LOG_LEVEL_CONNECT,
4276                "Closing server socket %d connected to %s. "
4277                "Keep-alive %u. Tainted: %u. Socket alive %u. Timeout: %u.",
4278                csp->server_connection.sfd, csp->server_connection.host,
4279                0 != (csp->flags & CSP_FLAG_SERVER_CONNECTION_KEEP_ALIVE),
4280                0 != (csp->flags & CSP_FLAG_SERVER_SOCKET_TAINTED),
4281                socket_is_still_alive(csp->server_connection.sfd),
4282                csp->server_connection.keep_alive_timeout);
4283 #ifdef FEATURE_CONNECTION_SHARING
4284             if (csp->config->feature_flags & RUNTIME_FEATURE_CONNECTION_SHARING)
4285             {
4286                forget_connection(csp->server_connection.sfd);
4287             }
4288 #endif /* def FEATURE_CONNECTION_SHARING */
4289             close_socket(csp->server_connection.sfd);
4290             mark_connection_closed(&csp->server_connection);
4291          }
4292       }
4293
4294       if (continue_chatting && any_loaded_file_changed(csp))
4295       {
4296          continue_chatting = 0;
4297          config_file_change_detected = 1;
4298       }
4299
4300       if (continue_chatting)
4301       {
4302          if (((csp->flags & CSP_FLAG_PIPELINED_REQUEST_WAITING) != 0)
4303             && socket_is_still_alive(csp->cfd))
4304          {
4305             log_error(LOG_LEVEL_CONNECT, "Client request %d has been "
4306                "pipelined on socket %d and the socket is still alive.",
4307                csp->requests_received_total+1, csp->cfd);
4308             prepare_csp_for_next_request(csp);
4309             continue;
4310          }
4311
4312          if (0 != (csp->flags & CSP_FLAG_CLIENT_CONNECTION_KEEP_ALIVE))
4313          {
4314             if (csp->server_connection.sfd != JB_INVALID_SOCKET)
4315             {
4316                log_error(LOG_LEVEL_CONNECT,
4317                   "Waiting for the next client request on socket %d. "
4318                   "Keeping the server socket %d to %s open.",
4319                   csp->cfd, csp->server_connection.sfd, csp->server_connection.host);
4320             }
4321             else
4322             {
4323                log_error(LOG_LEVEL_CONNECT,
4324                   "Waiting for the next client request on socket %d. "
4325                   "No server socket to keep open.", csp->cfd);
4326             }
4327          }
4328
4329          if ((csp->flags & CSP_FLAG_CLIENT_CONNECTION_KEEP_ALIVE)
4330             && data_is_available(csp->cfd, (int)csp->config->keep_alive_timeout)
4331             && socket_is_still_alive(csp->cfd))
4332          {
4333             log_error(LOG_LEVEL_CONNECT,
4334                "Client request %u arrived in time on socket %d.",
4335                csp->requests_received_total+1, csp->cfd);
4336             prepare_csp_for_next_request(csp);
4337          }
4338          else
4339          {
4340 #ifdef FEATURE_CONNECTION_SHARING
4341             if ((csp->config->feature_flags & RUNTIME_FEATURE_CONNECTION_SHARING)
4342                && (csp->server_connection.sfd != JB_INVALID_SOCKET)
4343                && (socket_is_still_alive(csp->server_connection.sfd)))
4344             {
4345                time_t time_open = time(NULL) - csp->server_connection.timestamp;
4346
4347                if (csp->server_connection.keep_alive_timeout < time_open - (time_t)latency)
4348                {
4349                   break;
4350                }
4351
4352                remember_connection(&csp->server_connection);
4353                csp->server_connection.sfd = JB_INVALID_SOCKET;
4354                drain_and_close_socket(csp->cfd);
4355                csp->cfd = JB_INVALID_SOCKET;
4356                privoxy_mutex_lock(&connection_reuse_mutex);
4357                if (!monitor_thread_running)
4358                {
4359                   monitor_thread_running = 1;
4360                   privoxy_mutex_unlock(&connection_reuse_mutex);
4361                   wait_for_alive_connections();
4362                   privoxy_mutex_lock(&connection_reuse_mutex);
4363                   monitor_thread_running = 0;
4364                }
4365                privoxy_mutex_unlock(&connection_reuse_mutex);
4366             }
4367 #endif /* def FEATURE_CONNECTION_SHARING */
4368             break;
4369          }
4370       }
4371       else if (csp->server_connection.sfd != JB_INVALID_SOCKET)
4372       {
4373          log_error(LOG_LEVEL_CONNECT,
4374             "Closing server socket %d connected to %s. Keep-alive: %u. "
4375             "Tainted: %u. Socket alive: %u. Timeout: %u. "
4376             "Configuration file change detected: %u",
4377             csp->server_connection.sfd, csp->server_connection.host,
4378             0 != (csp->flags & CSP_FLAG_SERVER_CONNECTION_KEEP_ALIVE),
4379             0 != (csp->flags & CSP_FLAG_SERVER_SOCKET_TAINTED),
4380             socket_is_still_alive(csp->server_connection.sfd),
4381             csp->server_connection.keep_alive_timeout,
4382             config_file_change_detected);
4383       }
4384    } while (continue_chatting);
4385
4386 #else
4387    chat(csp);
4388 #endif /* def FEATURE_CONNECTION_KEEP_ALIVE */
4389
4390    if (csp->server_connection.sfd != JB_INVALID_SOCKET)
4391    {
4392 #ifdef FEATURE_CONNECTION_SHARING
4393       if (csp->config->feature_flags & RUNTIME_FEATURE_CONNECTION_SHARING)
4394       {
4395          forget_connection(csp->server_connection.sfd);
4396       }
4397 #endif /* def FEATURE_CONNECTION_SHARING */
4398       close_socket(csp->server_connection.sfd);
4399    }
4400
4401 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
4402    mark_connection_closed(&csp->server_connection);
4403 #endif
4404
4405    if (csp->cfd != JB_INVALID_SOCKET)
4406    {
4407       log_error(LOG_LEVEL_CONNECT, "Closing client socket %d. "
4408          "Keep-alive: %u. Socket alive: %u. Data available: %u. "
4409          "Configuration file change detected: %u. Requests received: %u.",
4410          csp->cfd, 0 != (csp->flags & CSP_FLAG_CLIENT_CONNECTION_KEEP_ALIVE),
4411          socket_is_still_alive(csp->cfd), data_is_available(csp->cfd, 0),
4412          config_file_change_detected, csp->requests_received_total);
4413       drain_and_close_socket(csp->cfd);
4414    }
4415
4416    free_csp_resources(csp);
4417
4418    csp->flags &= ~CSP_FLAG_ACTIVE;
4419
4420 }
4421
4422
4423 #ifdef __BEOS__
4424 /*********************************************************************
4425  *
4426  * Function    :  server_thread
4427  *
4428  * Description :  We only exist to call `serve' in a threaded environment.
4429  *
4430  * Parameters  :
4431  *          1  :  data = Current client state (buffers, headers, etc...)
4432  *
4433  * Returns     :  Always 0.
4434  *
4435  *********************************************************************/
4436 static int32 server_thread(void *data)
4437 {
4438    serve((struct client_state *) data);
4439    return 0;
4440
4441 }
4442 #endif
4443
4444
4445 #if !defined(_WIN32) || defined(_WIN_CONSOLE)
4446 /*********************************************************************
4447  *
4448  * Function    :  usage
4449  *
4450  * Description :  Print usage info & exit.
4451  *
4452  * Parameters  :  Pointer to argv[0] for identifying ourselves
4453  *
4454  * Returns     :  No. ,-)
4455  *
4456  *********************************************************************/
4457 static void usage(const char *name)
4458 {
4459    printf("Privoxy version " VERSION " (" HOME_PAGE_URL ")\n"
4460           "Usage: %s [--config-test] "
4461 #if defined(unix)
4462           "[--chroot] "
4463 #endif /* defined(unix) */
4464           "[--help] "
4465 #if defined(unix)
4466           "[--no-daemon] [--pidfile pidfile] [--pre-chroot-nslookup hostname] [--user user[.group]] "
4467 #endif /* defined(unix) */
4468          "[--version] [configfile]\n",
4469           name);
4470
4471 #ifdef FUZZ
4472    show_fuzz_usage(name);
4473 #endif
4474
4475    printf("Aborting\n");
4476
4477    exit(2);
4478
4479 }
4480 #endif /* #if !defined(_WIN32) || defined(_WIN_CONSOLE) */
4481
4482
4483 #ifdef MUTEX_LOCKS_AVAILABLE
4484 /*********************************************************************
4485  *
4486  * Function    :  privoxy_mutex_lock
4487  *
4488  * Description :  Locks a mutex.
4489  *
4490  * Parameters  :
4491  *          1  :  mutex = The mutex to lock.
4492  *
4493  * Returns     :  Void. May exit in case of errors.
4494  *
4495  *********************************************************************/
4496 void privoxy_mutex_lock(privoxy_mutex_t *mutex)
4497 {
4498 #ifdef FEATURE_PTHREAD
4499    int err = pthread_mutex_lock(mutex);
4500    if (err)
4501    {
4502       if (mutex != &log_mutex)
4503       {
4504          log_error(LOG_LEVEL_FATAL,
4505             "Mutex locking failed: %s.\n", strerror(err));
4506       }
4507       exit(1);
4508    }
4509 #else
4510    EnterCriticalSection(mutex);
4511 #endif /* def FEATURE_PTHREAD */
4512 }
4513
4514
4515 /*********************************************************************
4516  *
4517  * Function    :  privoxy_mutex_unlock
4518  *
4519  * Description :  Unlocks a mutex.
4520  *
4521  * Parameters  :
4522  *          1  :  mutex = The mutex to unlock.
4523  *
4524  * Returns     :  Void. May exit in case of errors.
4525  *
4526  *********************************************************************/
4527 void privoxy_mutex_unlock(privoxy_mutex_t *mutex)
4528 {
4529 #ifdef FEATURE_PTHREAD
4530    int err = pthread_mutex_unlock(mutex);
4531    if (err)
4532    {
4533       if (mutex != &log_mutex)
4534       {
4535          log_error(LOG_LEVEL_FATAL,
4536             "Mutex unlocking failed: %s.\n", strerror(err));
4537       }
4538       exit(1);
4539    }
4540 #else
4541    LeaveCriticalSection(mutex);
4542 #endif /* def FEATURE_PTHREAD */
4543 }
4544
4545
4546 /*********************************************************************
4547  *
4548  * Function    :  privoxy_mutex_init
4549  *
4550  * Description :  Prepares a mutex.
4551  *
4552  * Parameters  :
4553  *          1  :  mutex = The mutex to initialize.
4554  *
4555  * Returns     :  Void. May exit in case of errors.
4556  *
4557  *********************************************************************/
4558 static void privoxy_mutex_init(privoxy_mutex_t *mutex)
4559 {
4560 #ifdef FEATURE_PTHREAD
4561    int err = pthread_mutex_init(mutex, 0);
4562    if (err)
4563    {
4564       printf("Fatal error. Mutex initialization failed: %s.\n",
4565          strerror(err));
4566       exit(1);
4567    }
4568 #else
4569    InitializeCriticalSection(mutex);
4570 #endif /* def FEATURE_PTHREAD */
4571 }
4572 #endif /* def MUTEX_LOCKS_AVAILABLE */
4573
4574 /*********************************************************************
4575  *
4576  * Function    :  initialize_mutexes
4577  *
4578  * Description :  Prepares mutexes if mutex support is available.
4579  *
4580  * Parameters  :  None
4581  *
4582  * Returns     :  Void, exits in case of errors.
4583  *
4584  *********************************************************************/
4585 static void initialize_mutexes(void)
4586 {
4587 #ifdef MUTEX_LOCKS_AVAILABLE
4588    /*
4589     * Prepare global mutex semaphores
4590     */
4591
4592 #ifdef LIMIT_MUTEX_NUMBER
4593    int i = 0;
4594    for (i = 0; i < 32; i++)
4595 #else
4596    int i = 0;
4597    for (i = 0; i < 65536; i++)
4598 #endif /* LIMIT_MUTEX_NUMBER */
4599    {
4600       privoxy_mutex_init(&(certificates_mutexes[i]));
4601    }
4602    privoxy_mutex_init(&rng_mutex);
4603
4604    privoxy_mutex_init(&log_mutex);
4605    privoxy_mutex_init(&log_init_mutex);
4606    privoxy_mutex_init(&connection_reuse_mutex);
4607 #ifdef FEATURE_EXTERNAL_FILTERS
4608    privoxy_mutex_init(&external_filter_mutex);
4609 #endif
4610 #ifdef FEATURE_CLIENT_TAGS
4611    privoxy_mutex_init(&client_tags_mutex);
4612 #endif
4613
4614    /*
4615     * XXX: The assumptions below are a bit naive
4616     * and can cause locks that aren't necessary.
4617     *
4618     * For example older FreeBSD versions (< 6.x?)
4619     * have no gethostbyname_r, but gethostbyname is
4620     * thread safe.
4621     */
4622 #if !defined(HAVE_GETHOSTBYADDR_R) || !defined(HAVE_GETHOSTBYNAME_R)
4623    privoxy_mutex_init(&resolver_mutex);
4624 #endif /* !defined(HAVE_GETHOSTBYADDR_R) || !defined(HAVE_GETHOSTBYNAME_R) */
4625    /*
4626     * XXX: should we use a single mutex for
4627     * localtime() and gmtime() as well?
4628     */
4629 #ifndef HAVE_GMTIME_R
4630    privoxy_mutex_init(&gmtime_mutex);
4631 #endif /* ndef HAVE_GMTIME_R */
4632
4633 #ifndef HAVE_LOCALTIME_R
4634    privoxy_mutex_init(&localtime_mutex);
4635 #endif /* ndef HAVE_GMTIME_R */
4636
4637 #if !defined(HAVE_ARC4RANDOM) && !defined(HAVE_RANDOM)
4638    privoxy_mutex_init(&rand_mutex);
4639 #endif /* !defined(HAVE_ARC4RANDOM) && !defined(HAVE_RANDOM) */
4640
4641 #endif /* def MUTEX_LOCKS_AVAILABLE */
4642 }
4643
4644 /*********************************************************************
4645  *
4646  * Function    :  main
4647  *
4648  * Description :  Load the config file and start the listen loop.
4649  *                This function is a lot more *sane* with the `load_config'
4650  *                and `listen_loop' functions; although it stills does
4651  *                a *little* too much for my taste.
4652  *
4653  * Parameters  :
4654  *          1  :  argc = Number of parameters (including $0).
4655  *          2  :  argv = Array of (char *)'s to the parameters.
4656  *
4657  * Returns     :  1 if : can't open config file, unrecognized directive,
4658  *                stats requested in multi-thread mode, can't open the
4659  *                log file, can't open the jar file, listen port is invalid,
4660  *                any load fails, and can't bind port.
4661  *
4662  *                Else main never returns, the process must be signaled
4663  *                to terminate execution.  Or, on Windows, use the
4664  *                "File", "Exit" menu option.
4665  *
4666  *********************************************************************/
4667 #ifdef __MINGW32__
4668 int real_main(int argc, char **argv)
4669 #else
4670 int main(int argc, char **argv)
4671 #endif
4672 {
4673    int argc_pos = 0;
4674    int do_config_test = 0;
4675 #ifndef HAVE_ARC4RANDOM
4676    unsigned int random_seed;
4677 #endif
4678 #ifdef unix
4679    struct passwd *pw = NULL;
4680    struct group *grp = NULL;
4681    int do_chroot = 0;
4682    char *pre_chroot_nslookup_to_load_resolver = NULL;
4683 #endif
4684 #ifdef FUZZ
4685    char *fuzz_input_type = NULL;
4686    char *fuzz_input_file = NULL;
4687 #endif
4688
4689    Argc = argc;
4690    Argv = argv;
4691
4692    configfile =
4693 #if !defined(_WIN32)
4694    "config"
4695 #else
4696    "config.txt"
4697 #endif
4698       ;
4699
4700    /* Prepare mutexes if supported and necessary. */
4701    initialize_mutexes();
4702
4703    /* Enable logging until further notice. */
4704    init_log_module();
4705
4706    /*
4707     * Parse the command line arguments
4708     *
4709     * XXX: simply printing usage information in case of
4710     * invalid arguments isn't particularly user friendly.
4711     */
4712    while (++argc_pos < argc)
4713    {
4714 #ifdef _WIN32
4715       /* Check to see if the service must be installed or uninstalled */
4716       if (strncmp(argv[argc_pos], "--install", 9) == 0)
4717       {
4718          const char *pName = argv[argc_pos] + 9;
4719          if (*pName == ':')
4720             pName++;
4721          exit((install_service(pName)) ? 0 : 1);
4722       }
4723       else if (strncmp(argv[argc_pos], "--uninstall", 11) == 0)
4724       {
4725          const char *pName = argv[argc_pos] + 11;
4726          if (*pName == ':')
4727             pName++;
4728          exit((uninstall_service(pName)) ? 0 : 1);
4729       }
4730       else if (strcmp(argv[argc_pos], "--service") == 0)
4731       {
4732          bRunAsService = TRUE;
4733          w32_set_service_cwd();
4734          atexit(w32_service_exit_notify);
4735       }
4736       else
4737 #endif /* defined(_WIN32) */
4738
4739
4740 #if !defined(_WIN32) || defined(_WIN_CONSOLE)
4741
4742       if (strcmp(argv[argc_pos], "--help") == 0)
4743       {
4744          usage(argv[0]);
4745       }
4746
4747       else if (strcmp(argv[argc_pos], "--version") == 0)
4748       {
4749          printf("Privoxy version " VERSION " (" HOME_PAGE_URL ")\n");
4750          exit(0);
4751       }
4752
4753 #if defined(unix)
4754
4755       else if (strcmp(argv[argc_pos], "--no-daemon") == 0)
4756       {
4757          set_debug_level(LOG_LEVEL_FATAL | LOG_LEVEL_ERROR | LOG_LEVEL_INFO);
4758          daemon_mode = 0;
4759       }
4760
4761       else if (strcmp(argv[argc_pos], "--pidfile") == 0)
4762       {
4763          if (++argc_pos == argc) usage(argv[0]);
4764          pidfile = strdup_or_die(argv[argc_pos]);
4765       }
4766
4767       else if (strcmp(argv[argc_pos], "--user") == 0)
4768       {
4769          char *user_arg;
4770          char *group_name;
4771
4772          if (++argc_pos == argc) usage(argv[argc_pos]);
4773
4774          user_arg = strdup_or_die(argv[argc_pos]);
4775          group_name = strchr(user_arg, '.');
4776          if (NULL != group_name)
4777          {
4778             /* Nul-terminate the user name */
4779             *group_name = '\0';
4780
4781             /* Skip the former delimiter to actually reach the group name */
4782             group_name++;
4783
4784             grp = getgrnam(group_name);
4785             if (NULL == grp)
4786             {
4787                log_error(LOG_LEVEL_FATAL, "Group '%s' not found.", group_name);
4788             }
4789          }
4790          pw = getpwnam(user_arg);
4791          if (NULL == pw)
4792          {
4793             log_error(LOG_LEVEL_FATAL, "User '%s' not found.", user_arg);
4794          }
4795
4796          freez(user_arg);
4797       }
4798
4799       else if (strcmp(argv[argc_pos], "--pre-chroot-nslookup") == 0)
4800       {
4801          if (++argc_pos == argc) usage(argv[0]);
4802          pre_chroot_nslookup_to_load_resolver = strdup_or_die(argv[argc_pos]);
4803       }
4804
4805       else if (strcmp(argv[argc_pos], "--chroot") == 0)
4806       {
4807          do_chroot = 1;
4808       }
4809 #endif /* defined(unix) */
4810
4811       else if (strcmp(argv[argc_pos], "--config-test") == 0)
4812       {
4813          do_config_test = 1;
4814       }
4815 #ifdef FUZZ
4816       else if (strcmp(argv[argc_pos], "--fuzz") == 0)
4817       {
4818          argc_pos++;
4819          if (argc < argc_pos + 2) usage(argv[0]);
4820          fuzz_input_type = argv[argc_pos];
4821          argc_pos++;
4822          fuzz_input_file = argv[argc_pos];
4823       }
4824       else if (strcmp(argv[argc_pos], "--stfu") == 0)
4825       {
4826          set_debug_level(LOG_LEVEL_STFU);
4827       }
4828 #endif
4829       else if (argc_pos + 1 != argc)
4830       {
4831          /*
4832           * This is neither the last command line
4833           * option, nor was it recognized before,
4834           * therefore it must be invalid.
4835           */
4836          usage(argv[0]);
4837       }
4838       else
4839
4840 #endif /* defined(_WIN32) && !defined(_WIN_CONSOLE) */
4841       {
4842          configfile = argv[argc_pos];
4843       }
4844
4845    } /* -END- while (more arguments) */
4846
4847    show_version(Argv[0]);
4848
4849 #if defined(unix)
4850    if (*configfile != '/')
4851    {
4852       char cwd[BUFFER_SIZE];
4853       char *abs_file;
4854       size_t abs_file_size;
4855
4856       /* make config-filename absolute here */
4857       if (NULL == getcwd(cwd, sizeof(cwd)))
4858       {
4859          perror("failed to get current working directory");
4860          exit(1);
4861       }
4862
4863       basedir = strdup_or_die(cwd);
4864       /* XXX: why + 5? */
4865       abs_file_size = strlen(cwd) + strlen(configfile) + 5;
4866       abs_file = malloc_or_die(abs_file_size);
4867       strlcpy(abs_file, basedir, abs_file_size);
4868       strlcat(abs_file, "/", abs_file_size);
4869       strlcat(abs_file, configfile, abs_file_size);
4870       configfile = abs_file;
4871    }
4872 #endif /* defined unix */
4873
4874
4875    files->next = NULL;
4876    clients->next = NULL;
4877
4878    /* XXX: factor out initialising after the next stable release. */
4879 #ifdef _WIN32
4880    InitWin32();
4881 #endif
4882
4883 #ifndef HAVE_ARC4RANDOM
4884    random_seed = (unsigned int)time(NULL);
4885 #ifdef HAVE_RANDOM
4886    srandom(random_seed);
4887 #else
4888    srand(random_seed);
4889 #endif /* ifdef HAVE_RANDOM */
4890 #endif /* ifndef HAVE_ARC4RANDOM */
4891
4892    /*
4893     * Unix signal handling
4894     *
4895     * Catch the abort, interrupt and terminate signals for a graceful exit
4896     * Catch the hangup signal so the errlog can be reopened.
4897     *
4898     * Ignore the broken pipe signal as connection failures
4899     * are handled when and where they occur without relying
4900     * on a signal.
4901     */
4902 #if !defined(_WIN32) && !defined(__OS2__)
4903 {
4904    int idx;
4905    const int catched_signals[] = { SIGTERM, SIGINT, SIGHUP };
4906
4907    for (idx = 0; idx < SZ(catched_signals); idx++)
4908    {
4909 #ifdef sun /* FIXME: Is it safe to check for HAVE_SIGSET instead? */
4910       if (sigset(catched_signals[idx], sig_handler) == SIG_ERR)
4911 #else
4912       if (signal(catched_signals[idx], sig_handler) == SIG_ERR)
4913 #endif /* ifdef sun */
4914       {
4915          log_error(LOG_LEVEL_FATAL, "Can't set signal-handler for signal %d: %E", catched_signals[idx]);
4916       }
4917    }
4918
4919    if (signal(SIGPIPE, SIG_IGN) == SIG_ERR)
4920    {
4921       log_error(LOG_LEVEL_FATAL, "Can't set ignore-handler for SIGPIPE: %E");
4922    }
4923
4924 }
4925 #else /* ifdef _WIN32 */
4926 # ifdef _WIN_CONSOLE
4927    /*
4928     * We *are* in a windows console app.
4929     * Print a verbose messages about FAQ's and such
4930     */
4931    printf("%s", win32_blurb);
4932 # endif /* def _WIN_CONSOLE */
4933 #endif /* def _WIN32 */
4934
4935 #ifdef FUZZ
4936    if (fuzz_input_type != NULL)
4937    {
4938       exit(process_fuzzed_input(fuzz_input_type, fuzz_input_file));
4939    }
4940    log_error(LOG_LEVEL_FATAL,
4941       "When compiled with fuzzing support, Privoxy should only be used for fuzzing. "
4942       "Various data structures are static which is unsafe when using threads.");
4943 #endif
4944
4945    if (do_config_test)
4946    {
4947       exit(NULL == load_config());
4948    }
4949
4950    /* Initialize the CGI subsystem */
4951    cgi_init_error_messages();
4952
4953    /*
4954     * If running on unix and without the --no-daemon
4955     * option, become a daemon. I.e. fork, detach
4956     * from tty and get process group leadership
4957     */
4958 #if defined(unix)
4959 {
4960    if (daemon_mode)
4961    {
4962       int fd;
4963       pid_t pid = fork();
4964
4965       if (pid < 0) /* error */
4966       {
4967          perror("fork");
4968          exit(3);
4969       }
4970       else if (pid != 0) /* parent */
4971       {
4972          int status;
4973          pid_t wpid;
4974          /*
4975           * must check for errors
4976           * child died due to missing files aso
4977           */
4978          sleep(1);
4979          wpid = waitpid(pid, &status, WNOHANG);
4980          if (wpid != 0)
4981          {
4982             exit(1);
4983          }
4984          exit(0);
4985       }
4986       /* child */
4987
4988       setsid();
4989
4990       /*
4991        * stderr (fd 2) will be closed later on,
4992        * when the config file has been parsed.
4993        */
4994       close(0);
4995       close(1);
4996
4997       /*
4998        * Reserve fd 0 and 1 to prevent abort() and friends
4999        * from sending stuff to the clients or servers.
5000        */
5001       fd = open("/dev/null", O_RDONLY);
5002       if (fd == -1)
5003       {
5004          log_error(LOG_LEVEL_FATAL, "Failed to open /dev/null: %E");
5005       }
5006       else if (fd != 0)
5007       {
5008          if (dup2(fd, 0) == -1)
5009          {
5010             log_error(LOG_LEVEL_FATAL, "Failed to reserve fd 0: %E");
5011          }
5012          close(fd);
5013       }
5014       fd = open("/dev/null", O_WRONLY);
5015       if (fd == -1)
5016       {
5017          log_error(LOG_LEVEL_FATAL, "Failed to open /dev/null: %E");
5018       }
5019       else if (fd != 1)
5020       {
5021          if (dup2(fd, 1) == -1)
5022          {
5023             log_error(LOG_LEVEL_FATAL, "Failed to reserve fd 1: %E");
5024          }
5025          close(fd);
5026       }
5027
5028 #ifdef FEATURE_EXTERNAL_FILTERS
5029       for (fd = 0; fd < 3; fd++)
5030       {
5031          mark_socket_for_close_on_execute(fd);
5032       }
5033 #endif
5034
5035       chdir("/");
5036
5037    } /* -END- if (daemon_mode) */
5038
5039    /*
5040     * As soon as we have written the PID file, we can switch
5041     * to the user and group ID indicated by the --user option
5042     */
5043    if (pidfile != NULL)
5044    {
5045       write_pid_file(pidfile);
5046    }
5047    if (NULL != pw)
5048    {
5049       if (setgid((NULL != grp) ? grp->gr_gid : pw->pw_gid))
5050       {
5051          log_error(LOG_LEVEL_FATAL, "Cannot setgid(): Insufficient permissions.");
5052       }
5053       if (NULL != grp)
5054       {
5055          if (setgroups(1, &grp->gr_gid))
5056          {
5057             log_error(LOG_LEVEL_FATAL, "setgroups() failed: %E");
5058          }
5059       }
5060       else if (initgroups(pw->pw_name, pw->pw_gid))
5061       {
5062          log_error(LOG_LEVEL_FATAL, "initgroups() failed: %E");
5063       }
5064       if (do_chroot)
5065       {
5066          if (!pw->pw_dir)
5067          {
5068             log_error(LOG_LEVEL_FATAL, "Home directory for %s undefined", pw->pw_name);
5069          }
5070          /* Read the time zone file from /etc before doing chroot. */
5071          tzset();
5072          if (NULL != pre_chroot_nslookup_to_load_resolver
5073              && '\0' != pre_chroot_nslookup_to_load_resolver[0])
5074          {
5075             /* Initialize resolver library. */
5076             (void) resolve_hostname_to_ip(pre_chroot_nslookup_to_load_resolver);
5077          }
5078          if (chroot(pw->pw_dir) < 0)
5079          {
5080             log_error(LOG_LEVEL_FATAL, "Cannot chroot to %s", pw->pw_dir);
5081          }
5082          if (chdir ("/"))
5083          {
5084             log_error(LOG_LEVEL_FATAL, "Cannot chdir /");
5085          }
5086       }
5087       if (setuid(pw->pw_uid))
5088       {
5089          log_error(LOG_LEVEL_FATAL, "Cannot setuid(): Insufficient permissions.");
5090       }
5091       if (do_chroot)
5092       {
5093          char putenv_dummy[64];
5094
5095          strlcpy(putenv_dummy, "HOME=/", sizeof(putenv_dummy));
5096          if (putenv(putenv_dummy) != 0)
5097          {
5098             log_error(LOG_LEVEL_FATAL, "Cannot putenv(): HOME");
5099          }
5100
5101          snprintf(putenv_dummy, sizeof(putenv_dummy), "USER=%s", pw->pw_name);
5102          if (putenv(putenv_dummy) != 0)
5103          {
5104             log_error(LOG_LEVEL_FATAL, "Cannot putenv(): USER");
5105          }
5106       }
5107    }
5108    else if (do_chroot)
5109    {
5110       log_error(LOG_LEVEL_FATAL, "Cannot chroot without --user argument.");
5111    }
5112 }
5113 #endif /* defined unix */
5114
5115 #ifdef _WIN32
5116    /* This will be FALSE unless the command line specified --service
5117     */
5118    if (bRunAsService)
5119    {
5120       /* Yup, so now we must attempt to establish a connection
5121        * with the service dispatcher. This will only work if this
5122        * process was launched by the service control manager to
5123        * actually run as a service. If this isn't the case, i've
5124        * known it take around 30 seconds or so for the call to return.
5125        */
5126
5127       /* The StartServiceCtrlDispatcher won't return until the service is stopping */
5128       if (w32_start_service_ctrl_dispatcher(w32ServiceDispatchTable))
5129       {
5130          /* Service has run, and at this point is now being stopped, so just return */
5131          return 0;
5132       }
5133
5134 #ifdef _WIN_CONSOLE
5135       printf("Warning: Failed to connect to Service Control Dispatcher\nwhen starting as a service!\n");
5136 #endif
5137       /* An error occurred. Usually it's because --service was wrongly specified
5138        * and we were unable to connect to the Service Control Dispatcher because
5139        * it wasn't expecting us and is therefore not listening.
5140        *
5141        * For now, just continue below to call the listen_loop function.
5142        */
5143    }
5144 #endif /* def _WIN32 */
5145
5146    listen_loop();
5147
5148    /* NOTREACHED */
5149    return(-1);
5150
5151 }
5152
5153
5154 /*********************************************************************
5155  *
5156  * Function    :  bind_port_helper
5157  *
5158  * Description :  Bind the listen port.  Handles logging, and aborts
5159  *                on failure.
5160  *
5161  * Parameters  :
5162  *          1  :  haddr = Host address to bind to. Use NULL to bind to
5163  *                        INADDR_ANY.
5164  *          2  :  hport = Specifies port to bind to.
5165  *          3  :  backlog = Listen backlog.
5166  *
5167  * Returns     :  Port that was opened.
5168  *
5169  *********************************************************************/
5170 static jb_socket bind_port_helper(const char *haddr, int hport, int backlog)
5171 {
5172    int result;
5173    jb_socket bfd;
5174
5175    result = bind_port(haddr, hport, backlog, &bfd);
5176
5177    if (result < 0)
5178    {
5179       const char *bind_address = (NULL != haddr) ? haddr : "INADDR_ANY";
5180       switch(result)
5181       {
5182          case -3:
5183             log_error(LOG_LEVEL_FATAL,
5184                "can't bind to %s:%d: There may be another Privoxy "
5185                "or some other proxy running on port %d",
5186                bind_address, hport, hport);
5187
5188          case -2:
5189             log_error(LOG_LEVEL_FATAL,
5190                "can't bind to %s:%d: The hostname is not resolvable",
5191                bind_address, hport);
5192
5193          default:
5194             log_error(LOG_LEVEL_FATAL, "can't bind to %s:%d: %E",
5195                bind_address, hport);
5196       }
5197
5198       /* shouldn't get here */
5199       return JB_INVALID_SOCKET;
5200    }
5201
5202 #ifndef HAVE_POLL
5203 #ifndef _WIN32
5204    if (bfd >= FD_SETSIZE)
5205    {
5206       log_error(LOG_LEVEL_FATAL,
5207          "Bind socket number too high to use select(): %d >= %d",
5208          bfd, FD_SETSIZE);
5209    }
5210 #endif
5211 #endif
5212
5213    if (haddr == NULL)
5214    {
5215       log_error(LOG_LEVEL_INFO, "Listening on port %d on all IP addresses",
5216          hport);
5217    }
5218    else
5219    {
5220       log_error(LOG_LEVEL_INFO, "Listening on port %d on IP address %s",
5221          hport, haddr);
5222    }
5223
5224    return bfd;
5225 }
5226
5227
5228 /*********************************************************************
5229  *
5230  * Function    :  bind_ports_helper
5231  *
5232  * Description :  Bind the listen ports.  Handles logging, and aborts
5233  *                on failure.
5234  *
5235  * Parameters  :
5236  *          1  :  config = Privoxy configuration.  Specifies ports
5237  *                         to bind to.
5238  *          2  :  sockets = Preallocated array of opened sockets
5239  *                          corresponding to specification in config.
5240  *                          All non-opened sockets will be set to
5241  *                          JB_INVALID_SOCKET.
5242  *
5243  * Returns     :  Nothing. Inspect sockets argument.
5244  *
5245  *********************************************************************/
5246 static void bind_ports_helper(struct configuration_spec * config,
5247                               jb_socket sockets[])
5248 {
5249    int i;
5250
5251    for (i = 0; i < MAX_LISTENING_SOCKETS; i++)
5252    {
5253       if (config->hport[i])
5254       {
5255          sockets[i] = bind_port_helper(config->haddr[i],
5256             config->hport[i], config->listen_backlog);
5257 #if defined(FEATURE_ACCEPT_FILTER) && defined(SO_ACCEPTFILTER)
5258          if (config->enable_accept_filter && sockets[i] != JB_INVALID_SOCKET)
5259          {
5260             struct accept_filter_arg af_options;
5261             bzero(&af_options, sizeof(af_options));
5262             strlcpy(af_options.af_name, "httpready", sizeof(af_options.af_name));
5263             if (setsockopt(sockets[i], SOL_SOCKET, SO_ACCEPTFILTER, &af_options,
5264                   sizeof(af_options)))
5265             {
5266                log_error(LOG_LEVEL_ERROR,
5267                   "Enabling accept filter for socket %d failed: %E", sockets[i]);
5268             }
5269          }
5270 #endif
5271       }
5272       else
5273       {
5274          sockets[i] = JB_INVALID_SOCKET;
5275       }
5276    }
5277    config->need_bind = 0;
5278 }
5279
5280
5281 /*********************************************************************
5282  *
5283  * Function    :  close_ports_helper
5284  *
5285  * Description :  Close listenings ports.
5286  *
5287  * Parameters  :
5288  *          1  :  sockets = Array of opened and non-opened sockets to
5289  *                          close. All sockets will be set to
5290  *                          JB_INVALID_SOCKET.
5291  *
5292  * Returns     :  Nothing.
5293  *
5294  *********************************************************************/
5295 static void close_ports_helper(jb_socket sockets[])
5296 {
5297    int i;
5298
5299    for (i = 0; i < MAX_LISTENING_SOCKETS; i++)
5300    {
5301       if (JB_INVALID_SOCKET != sockets[i])
5302       {
5303          close_socket(sockets[i]);
5304       }
5305       sockets[i] = JB_INVALID_SOCKET;
5306    }
5307 }
5308
5309
5310 #ifdef _WIN32
5311 /* Without this simple workaround we get this compiler warning from _beginthread
5312  *     warning C4028: formal parameter 1 different from declaration
5313  */
5314 void w32_service_listen_loop(void *p)
5315 {
5316    listen_loop();
5317 }
5318 #endif /* def _WIN32 */
5319
5320
5321 /*********************************************************************
5322  *
5323  * Function    :  listen_loop
5324  *
5325  * Description :  bind the listen port and enter a "FOREVER" listening loop.
5326  *
5327  * Parameters  :  N/A
5328  *
5329  * Returns     :  Never.
5330  *
5331  *********************************************************************/
5332 static void listen_loop(void)
5333 {
5334    struct client_states *csp_list = NULL;
5335    struct client_state *csp = NULL;
5336    jb_socket bfds[MAX_LISTENING_SOCKETS];
5337    struct configuration_spec *config;
5338    unsigned int active_threads = 0;
5339 #if defined(FEATURE_PTHREAD)
5340    pthread_attr_t attrs;
5341
5342    pthread_attr_init(&attrs);
5343    pthread_attr_setdetachstate(&attrs, PTHREAD_CREATE_DETACHED);
5344 #endif
5345
5346    config = load_config();
5347
5348 #ifdef FEATURE_CONNECTION_SHARING
5349    /*
5350     * XXX: Should be relocated once it no
5351     * longer needs to emit log messages.
5352     */
5353    initialize_reusable_connections();
5354 #endif /* def FEATURE_CONNECTION_SHARING */
5355
5356    bind_ports_helper(config, bfds);
5357
5358 #ifdef FEATURE_GRACEFUL_TERMINATION
5359    while (!g_terminate)
5360 #else
5361    for (;;)
5362 #endif
5363    {
5364 #if !defined(FEATURE_PTHREAD) && !defined(_WIN32) && !defined(__BEOS__) && !defined(__OS2__)
5365       while (waitpid(-1, NULL, WNOHANG) > 0)
5366       {
5367          /* zombie children */
5368       }
5369 #endif /* !defined(FEATURE_PTHREAD) && !defined(_WIN32) && !defined(__BEOS__) */
5370
5371       /*
5372        * Free data that was used by died threads
5373        */
5374       active_threads = sweep();
5375
5376 #if defined(unix)
5377       /*
5378        * Re-open the errlog after HUP signal
5379        */
5380       if (received_hup_signal)
5381       {
5382          if (NULL != config->logfile)
5383          {
5384             init_error_log(Argv[0], config->logfile);
5385          }
5386          received_hup_signal = 0;
5387       }
5388 #endif
5389
5390       csp_list = zalloc_or_die(sizeof(*csp_list));
5391       csp = &csp_list->csp;
5392
5393       log_error(LOG_LEVEL_CONNECT,
5394          "Waiting for the next client connection. Currently active threads: %d",
5395          active_threads);
5396
5397       /*
5398        * This config may be outdated, but for accept_connection()
5399        * it's fresh enough.
5400        */
5401       csp->config = config;
5402
5403       if (!accept_connection(csp, bfds))
5404       {
5405          log_error(LOG_LEVEL_CONNECT, "accept failed: %E");
5406          freez(csp_list);
5407          continue;
5408       }
5409
5410       csp->flags |= CSP_FLAG_ACTIVE;
5411       csp->server_connection.sfd = JB_INVALID_SOCKET;
5412
5413       csp->config = config = load_config();
5414
5415       if (config->need_bind)
5416       {
5417          /*
5418           * Since we were listening to the "old port", we will not see
5419           * a "listen" param change until the next request.  So, at
5420           * least 1 more request must be made for us to find the new
5421           * setting.  I am simply closing the old socket and binding the
5422           * new one.
5423           *
5424           * Which-ever is correct, we will serve 1 more page via the
5425           * old settings.  This should probably be a "show-status"
5426           * request.  This should not be a so common of an operation
5427           * that this will hurt people's feelings.
5428           */
5429
5430          close_ports_helper(bfds);
5431
5432          bind_ports_helper(config, bfds);
5433       }
5434
5435 #ifdef FEATURE_TOGGLE
5436       if (global_toggle_state)
5437 #endif /* def FEATURE_TOGGLE */
5438       {
5439          csp->flags |= CSP_FLAG_TOGGLED_ON;
5440       }
5441
5442       if (run_loader(csp))
5443       {
5444          log_error(LOG_LEVEL_FATAL, "a loader failed - must exit");
5445          /* Never get here - LOG_LEVEL_FATAL causes program exit */
5446       }
5447
5448 #ifdef FEATURE_ACL
5449       if (block_acl(NULL,csp))
5450       {
5451          log_error(LOG_LEVEL_CONNECT,
5452             "Connection from %s on %s (socket %d) dropped due to ACL",
5453             csp->ip_addr_str, csp->listen_addr_str, csp->cfd);
5454          close_socket(csp->cfd);
5455          freez(csp->ip_addr_str);
5456          freez(csp->listen_addr_str);
5457          freez(csp_list);
5458          continue;
5459       }
5460 #endif /* def FEATURE_ACL */
5461
5462       if ((0 != config->max_client_connections)
5463          && (active_threads >= config->max_client_connections))
5464       {
5465          log_error(LOG_LEVEL_CONNECT,
5466             "Rejecting connection from %s. Maximum number of connections reached.",
5467             csp->ip_addr_str);
5468          write_socket_delayed(csp->cfd, TOO_MANY_CONNECTIONS_RESPONSE,
5469             strlen(TOO_MANY_CONNECTIONS_RESPONSE), get_write_delay(csp));
5470          close_socket(csp->cfd);
5471          freez(csp->ip_addr_str);
5472          freez(csp->listen_addr_str);
5473          freez(csp_list);
5474          continue;
5475       }
5476
5477       /* add it to the list of clients */
5478       csp_list->next = clients->next;
5479       clients->next = csp_list;
5480
5481       if (config->multi_threaded)
5482       {
5483          int child_id;
5484
5485 /* this is a switch () statement in the C preprocessor - ugh */
5486 #undef SELECTED_ONE_OPTION
5487
5488 /* Use Pthreads in preference to native code */
5489 #if defined(FEATURE_PTHREAD) && !defined(SELECTED_ONE_OPTION)
5490 #define SELECTED_ONE_OPTION
5491          {
5492             pthread_t the_thread;
5493
5494             errno = pthread_create(&the_thread, &attrs,
5495                (void * (*)(void *))serve, csp);
5496             child_id = errno ? -1 : 0;
5497          }
5498 #endif
5499
5500 #if defined(_WIN32) && !defined(_CYGWIN) && !defined(SELECTED_ONE_OPTION)
5501 #define SELECTED_ONE_OPTION
5502          child_id = _beginthread(
5503             (void (*)(void *))serve,
5504             64 * 1024,
5505             csp);
5506 #endif
5507
5508 #if defined(__OS2__) && !defined(SELECTED_ONE_OPTION)
5509 #define SELECTED_ONE_OPTION
5510          child_id = _beginthread(
5511             (void(* _Optlink)(void*))serve,
5512             NULL,
5513             64 * 1024,
5514             csp);
5515 #endif
5516
5517 #if defined(__BEOS__) && !defined(SELECTED_ONE_OPTION)
5518 #define SELECTED_ONE_OPTION
5519          {
5520             thread_id tid = spawn_thread
5521                (server_thread, "server", B_NORMAL_PRIORITY, csp);
5522
5523             if ((tid >= 0) && (resume_thread(tid) == B_OK))
5524             {
5525                child_id = (int) tid;
5526             }
5527             else
5528             {
5529                child_id = -1;
5530             }
5531          }
5532 #endif
5533
5534 #if !defined(SELECTED_ONE_OPTION)
5535          child_id = fork();
5536
5537          /* This block is only needed when using fork().
5538           * When using threads, the server thread was
5539           * created and run by the call to _beginthread().
5540           */
5541          if (child_id == 0)   /* child */
5542          {
5543             int rc = 0;
5544 #ifdef FEATURE_TOGGLE
5545             int inherited_toggle_state = global_toggle_state;
5546 #endif /* def FEATURE_TOGGLE */
5547
5548             serve(csp);
5549
5550             /*
5551              * If we've been toggled or we've blocked the request, tell Mom
5552              */
5553
5554 #ifdef FEATURE_TOGGLE
5555             if (inherited_toggle_state != global_toggle_state)
5556             {
5557                rc |= RC_FLAG_TOGGLED;
5558             }
5559 #endif /* def FEATURE_TOGGLE */
5560
5561 #ifdef FEATURE_STATISTICS
5562             if (csp->flags & CSP_FLAG_REJECTED)
5563             {
5564                rc |= RC_FLAG_BLOCKED;
5565             }
5566 #endif /* ndef FEATURE_STATISTICS */
5567
5568             _exit(rc);
5569          }
5570          else if (child_id > 0) /* parent */
5571          {
5572             /* in a fork()'d environment, the parent's
5573              * copy of the client socket and the CSP
5574              * are not used.
5575              */
5576             int child_status;
5577 #if !defined(_WIN32) && !defined(__CYGWIN__)
5578
5579             wait(&child_status);
5580
5581             /*
5582              * Evaluate child's return code: If the child has
5583              *  - been toggled, toggle ourselves
5584              *  - blocked its request, bump up the stats counter
5585              */
5586
5587 #ifdef FEATURE_TOGGLE
5588             if (WIFEXITED(child_status) && (WEXITSTATUS(child_status) & RC_FLAG_TOGGLED))
5589             {
5590                global_toggle_state = !global_toggle_state;
5591             }
5592 #endif /* def FEATURE_TOGGLE */
5593
5594 #ifdef FEATURE_STATISTICS
5595             urls_read++;
5596             if (WIFEXITED(child_status) && (WEXITSTATUS(child_status) & RC_FLAG_BLOCKED))
5597             {
5598                urls_rejected++;
5599             }
5600 #endif /* def FEATURE_STATISTICS */
5601
5602 #endif /* !defined(_WIN32) && defined(__CYGWIN__) */
5603             close_socket(csp->cfd);
5604             csp->flags &= ~CSP_FLAG_ACTIVE;
5605          }
5606 #endif
5607
5608 #undef SELECTED_ONE_OPTION
5609 /* end of cpp switch () */
5610
5611          if (child_id < 0)
5612          {
5613             /*
5614              * Spawning the child failed, assume it's because
5615              * there are too many children running already.
5616              * XXX: If you assume ...
5617              */
5618             log_error(LOG_LEVEL_ERROR,
5619                "Unable to take any additional connections: %E. Active threads: %d",
5620                active_threads);
5621             write_socket_delayed(csp->cfd, TOO_MANY_CONNECTIONS_RESPONSE,
5622                strlen(TOO_MANY_CONNECTIONS_RESPONSE), get_write_delay(csp));
5623             close_socket(csp->cfd);
5624             csp->flags &= ~CSP_FLAG_ACTIVE;
5625          }
5626       }
5627       else
5628       {
5629          serve(csp);
5630       }
5631    }
5632
5633 #if defined(FEATURE_PTHREAD)
5634    pthread_attr_destroy(&attrs);
5635 #endif
5636
5637    /* NOTREACHED unless FEATURE_GRACEFUL_TERMINATION is defined */
5638
5639 #ifdef FEATURE_HTTPS_FILTERING
5640    /* Clean up.  Aim: free all memory (no leaks) */
5641    if (rng_seeded == 1)
5642    {
5643       mbedtls_ctr_drbg_free(&ctr_drbg);
5644       mbedtls_entropy_free(&entropy);
5645    }
5646 #endif
5647
5648 #ifdef FEATURE_GRACEFUL_TERMINATION
5649
5650    log_error(LOG_LEVEL_ERROR, "Graceful termination requested");
5651
5652    unload_current_config_file();
5653    unload_current_actions_file();
5654    unload_current_re_filterfile();
5655 #ifdef FEATURE_TRUST
5656    unload_current_trust_file();
5657 #endif
5658
5659    if (config->multi_threaded)
5660    {
5661       int i = 60;
5662       do
5663       {
5664          sleep(1);
5665          sweep();
5666       } while ((clients->next != NULL) && (--i > 0));
5667
5668       if (i <= 0)
5669       {
5670          log_error(LOG_LEVEL_ERROR, "Graceful termination failed - still some live clients after 1 minute wait.");
5671       }
5672    }
5673    sweep();
5674    sweep();
5675
5676 #if defined(unix)
5677    freez(basedir);
5678 #endif
5679
5680 #if defined(_WIN32) && !defined(_WIN_CONSOLE)
5681    /* Cleanup - remove taskbar icon etc. */
5682    TermLogWindow();
5683 #endif
5684
5685    exit(0);
5686 #endif /* FEATURE_GRACEFUL_TERMINATION */
5687
5688 }
5689
5690
5691 /*
5692   Local Variables:
5693   tab-width: 3
5694   end:
5695 */