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