1 /*********************************************************************
3 * File : $Source: /cvsroot/ijbswa/current/jcc.c,v $
5 * Purpose : Main file. Contains main() method, main loop, and
6 * the main connection-handling function.
8 * Copyright : Written by and Copyright (C) 2001-2021 the
9 * Privoxy team. https://www.privoxy.org/
11 * Based on the Internet Junkbuster originally written
12 * by and Copyright (C) 1997 Anonymous Coders and
13 * Junkbusters Corporation. http://www.junkbusters.com
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.
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.
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.
33 *********************************************************************/
39 #include <sys/types.h>
48 # ifndef FEATURE_PTHREAD
52 # include <winsock2.h>
55 # endif /* ndef FEATURE_PTHREAD */
60 # endif /* ndef _WIN_CONSOLE */
61 # include "w32svrapi.h"
63 #else /* ifndef _WIN32 */
66 # include <sys/wait.h>
67 # include <sys/time.h>
68 # include <sys/stat.h>
69 # include <sys/ioctl.h>
72 #include <sys/termios.h>
83 # include <socket.h> /* BeOS has select() for sockets only. */
84 # include <OS.h> /* declarations for threads and stuff. */
92 #endif /* def __GLIBC__ */
97 #warning poll() appears to be unavailable. Your platform will become unsupported in the future.
98 #endif /* HAVE_POLL */
105 #ifdef FEATURE_HTTPS_INSPECTION
111 #include "miscutil.h"
113 #include "jbsockets.h"
118 #include "urlmatch.h"
119 #ifdef FEATURE_CLIENT_TAGS
120 #include "client-tags.h"
124 struct client_states clients[1];
125 struct file_list files[1];
127 #ifdef FEATURE_STATISTICS
128 int urls_read = 0; /* total nr of urls read inc rejected */
129 int urls_rejected = 0; /* total nr of urls rejected */
130 #endif /* def FEATURE_STATISTICS */
132 #ifdef FEATURE_GRACEFUL_TERMINATION
137 static void sig_handler(int the_signal);
139 static int client_protocol_is_unsupported(struct client_state *csp, char *req);
140 static jb_err get_request_destination_elsewhere(struct client_state *csp, struct list *headers);
141 static jb_err get_server_headers(struct client_state *csp);
142 static const char *crunch_reason(const struct http_response *rsp);
143 static void send_crunch_response(struct client_state *csp, struct http_response *rsp);
144 static char *get_request_line(struct client_state *csp);
145 static jb_err receive_client_request(struct client_state *csp);
146 static jb_err parse_client_request(struct client_state *csp);
147 static void build_request_line(struct client_state *csp, const struct forward_spec *fwd, char **request_line);
148 static jb_err change_request_destination(struct client_state *csp);
149 static void handle_established_connection(struct client_state *csp);
150 static void chat(struct client_state *csp);
151 static void serve(struct client_state *csp);
152 #if !defined(_WIN32) || defined(_WIN_CONSOLE)
153 static void usage(const char *myname);
155 static void initialize_mutexes(void);
156 static jb_socket bind_port_helper(const char *haddr, int hport, int backlog);
157 static void bind_ports_helper(struct configuration_spec *config, jb_socket sockets[]);
158 static void close_ports_helper(jb_socket sockets[]);
159 static void listen_loop(void);
160 static void serve(struct client_state *csp);
163 static int32 server_thread(void *data);
164 #endif /* def __BEOS__ */
167 #define sleep(N) Sleep(((N) * 1000))
171 int process_fuzzed_input(char *fuzz_input_type, char *fuzz_input_file);
172 void show_fuzz_usage(const char *name);
175 #ifdef MUTEX_LOCKS_AVAILABLE
177 * XXX: Does the locking stuff really belong in this file?
179 privoxy_mutex_t log_mutex;
180 privoxy_mutex_t log_init_mutex;
181 privoxy_mutex_t connection_reuse_mutex;
183 #ifdef FEATURE_HTTPS_INSPECTION
184 privoxy_mutex_t certificate_mutex;
185 privoxy_mutex_t ssl_init_mutex;
188 #ifdef FEATURE_EXTERNAL_FILTERS
189 privoxy_mutex_t external_filter_mutex;
191 #ifdef FEATURE_CLIENT_TAGS
192 privoxy_mutex_t client_tags_mutex;
194 #ifdef FEATURE_EXTENDED_STATISTICS
195 privoxy_mutex_t filter_statistics_mutex;
196 privoxy_mutex_t block_statistics_mutex;
199 #if !defined(HAVE_GETHOSTBYADDR_R) || !defined(HAVE_GETHOSTBYNAME_R)
200 privoxy_mutex_t resolver_mutex;
201 #endif /* !defined(HAVE_GETHOSTBYADDR_R) || !defined(HAVE_GETHOSTBYNAME_R) */
203 #ifndef HAVE_GMTIME_R
204 privoxy_mutex_t gmtime_mutex;
205 #endif /* ndef HAVE_GMTIME_R */
207 #ifndef HAVE_LOCALTIME_R
208 privoxy_mutex_t localtime_mutex;
209 #endif /* ndef HAVE_GMTIME_R */
211 #if !defined(HAVE_ARC4RANDOM) && !defined(HAVE_RANDOM)
212 privoxy_mutex_t rand_mutex;
213 #endif /* !defined(HAVE_ARC4RANDOM) && !defined(HAVE_RANDOM) */
215 #endif /* def MUTEX_LOCKS_AVAILABLE */
218 const char *basedir = NULL;
219 const char *pidfile = NULL;
220 static int received_hup_signal = 0;
221 #endif /* defined unix */
223 /* HTTP snipplets. */
224 static const char CSUCCEED[] =
225 "HTTP/1.1 200 Connection established\r\n\r\n";
227 static const char CHEADER[] =
228 "HTTP/1.1 400 Invalid header received from client\r\n"
229 "Content-Type: text/plain\r\n"
230 "Connection: close\r\n\r\n"
231 "Invalid header received from client.\r\n";
233 static const char FTP_RESPONSE[] =
234 "HTTP/1.1 400 Invalid request received from client\r\n"
235 "Content-Type: text/plain\r\n"
236 "Connection: close\r\n\r\n"
237 "Invalid request. Privoxy doesn't support FTP.\r\n";
239 static const char GOPHER_RESPONSE[] =
240 "HTTP/1.1 400 Invalid request received from client\r\n"
241 "Content-Type: text/plain\r\n"
242 "Connection: close\r\n\r\n"
243 "Invalid request. Privoxy doesn't support gopher.\r\n";
245 /* XXX: should be a template */
246 static const char MISSING_DESTINATION_RESPONSE[] =
247 "HTTP/1.1 400 Bad request received from client\r\n"
248 "Content-Type: text/plain\r\n"
249 "Connection: close\r\n\r\n"
250 "Bad request. Privoxy was unable to extract the destination.\r\n";
252 /* XXX: should be a template */
253 static const char INVALID_SERVER_HEADERS_RESPONSE[] =
254 "HTTP/1.1 502 Server or forwarder response invalid\r\n"
255 "Content-Type: text/plain\r\n"
256 "Connection: close\r\n\r\n"
257 "Bad response. The server or forwarder response doesn't look like HTTP.\r\n";
259 /* XXX: should be a template */
260 static const char MESSED_UP_REQUEST_RESPONSE[] =
261 "HTTP/1.1 400 Malformed request after rewriting\r\n"
262 "Content-Type: text/plain\r\n"
263 "Connection: close\r\n\r\n"
264 "Bad request. Messed up with header filters.\r\n";
266 static const char TOO_MANY_CONNECTIONS_RESPONSE[] =
267 "HTTP/1.1 503 Too many open connections\r\n"
268 "Content-Type: text/plain\r\n"
269 "Connection: close\r\n\r\n"
270 "Maximum number of open connections reached.\r\n";
272 static const char CLIENT_CONNECTION_TIMEOUT_RESPONSE[] =
273 "HTTP/1.1 504 Connection timeout\r\n"
274 "Content-Type: text/plain\r\n"
275 "Connection: close\r\n\r\n"
276 "The connection timed out because the client request didn't arrive in time.\r\n";
278 static const char CLIENT_BODY_PARSE_ERROR_RESPONSE[] =
279 "HTTP/1.1 400 Failed reading client body\r\n"
280 "Content-Type: text/plain\r\n"
281 "Connection: close\r\n\r\n"
282 "Failed parsing or buffering the chunk-encoded client body.\r\n";
284 static const char UNSUPPORTED_CLIENT_EXPECTATION_ERROR_RESPONSE[] =
285 "HTTP/1.1 417 Expecting too much\r\n"
286 "Content-Type: text/plain\r\n"
287 "Connection: close\r\n\r\n"
288 "Privoxy detected an unsupported Expect header value.\r\n";
290 /* A function to crunch a response */
291 typedef struct http_response *(*crunch_func_ptr)(struct client_state *);
293 /* Crunch function flags */
294 #define CF_NO_FLAGS 0
295 /* Cruncher applies to forced requests as well */
296 #define CF_IGNORE_FORCE 1
297 /* Crunched requests are counted for the block statistics */
298 #define CF_COUNT_AS_REJECT 2
300 /* A crunch function and its flags */
303 const crunch_func_ptr cruncher;
307 static int crunch_response_triggered(struct client_state *csp, const struct cruncher crunchers[]);
309 /* Complete list of cruncher functions */
310 static const struct cruncher crunchers_all[] = {
311 { direct_response, CF_COUNT_AS_REJECT|CF_IGNORE_FORCE},
312 { block_url, CF_COUNT_AS_REJECT },
314 { trust_url, CF_COUNT_AS_REJECT },
315 #endif /* def FEATURE_TRUST */
316 { redirect_url, CF_NO_FLAGS },
317 { dispatch_cgi, CF_IGNORE_FORCE},
321 /* Light version, used after tags are applied */
322 static const struct cruncher crunchers_light[] = {
323 { block_url, CF_COUNT_AS_REJECT },
324 { redirect_url, CF_NO_FLAGS },
330 * XXX: Don't we really mean
337 /*********************************************************************
339 * Function : sig_handler
341 * Description : Signal handler for different signals.
342 * Exit gracefully on TERM and INT
343 * or set a flag that will cause the errlog
344 * to be reopened by the main thread on HUP.
347 * 1 : the_signal = the signal cause this function to call
351 *********************************************************************/
352 static void sig_handler(int the_signal)
358 log_error(LOG_LEVEL_INFO, "exiting by signal %d .. bye", the_signal);
370 received_hup_signal = 1;
376 * We shouldn't be here, unless we catch signals
377 * in main() that we can't handle here!
379 log_error(LOG_LEVEL_FATAL,
380 "sig_handler: exiting on unexpected signal %d", the_signal);
388 /*********************************************************************
390 * Function : get_write_delay
392 * Description : Parse the delay-response parameter.
395 * 1 : csp = Current client state (buffers, headers, etc...)
397 * Returns : Number of milliseconds to delay writes.
399 *********************************************************************/
400 static unsigned int get_write_delay(const struct client_state *csp)
406 if ((csp->action->flags & ACTION_DELAY_RESPONSE) == 0)
410 newval = csp->action->string[ACTION_STRING_DELAY_RESPONSE];
412 delay = (unsigned)strtol(newval, &endptr, 0);
415 log_error(LOG_LEVEL_FATAL,
416 "Invalid delay-response{} parameter: '%s'", newval);
424 /*********************************************************************
426 * Function : client_protocol_is_unsupported
428 * Description : Checks if the client used a known unsupported
429 * protocol and deals with it by sending an error
433 * 1 : csp = Current client state (buffers, headers, etc...)
434 * 2 : req = the first request line send by the client
436 * Returns : TRUE if an error response has been generated, or
437 * FALSE if the request doesn't look invalid.
439 *********************************************************************/
440 static int client_protocol_is_unsupported(struct client_state *csp, char *req)
443 * If it's a FTP or gopher request, we don't support it.
445 * These checks are better than nothing, but they might
446 * not work in all configurations and some clients might
447 * have problems digesting the answer.
449 * They should, however, never cause more problems than
450 * Privoxy's old behaviour (returning the misleading HTML
453 * "Could not resolve http://(ftp|gopher)://example.org").
455 if (!strncmpic(req, "GET ftp://", 10) || !strncmpic(req, "GET gopher://", 13))
457 const char *response = NULL;
458 const char *protocol = NULL;
460 if (!strncmpic(req, "GET ftp://", 10))
462 response = FTP_RESPONSE;
467 response = GOPHER_RESPONSE;
470 log_error(LOG_LEVEL_ERROR,
471 "%s tried to use Privoxy as %s proxy: %s",
472 csp->ip_addr_str, protocol, req);
473 log_error(LOG_LEVEL_CLF,
474 "%s - - [%T] \"%s\" 400 0", csp->ip_addr_str, req);
477 #ifdef FEATURE_HTTPS_INSPECTION
478 if (client_use_ssl(csp))
480 ssl_send_data_delayed(&(csp->ssl_client_attr),
481 (const unsigned char *)response, strlen(response),
482 get_write_delay(csp));
487 write_socket_delayed(csp->cfd, response, strlen(response),
488 get_write_delay(csp));
498 /*********************************************************************
500 * Function : client_has_unsupported_expectations
502 * Description : Checks if the client used an unsupported expectation
503 * in which case an error message is delivered.
506 * 1 : csp = Current client state (buffers, headers, etc...)
508 * Returns : TRUE if an error response has been generated, or
509 * FALSE if the request doesn't look invalid.
511 *********************************************************************/
512 static int client_has_unsupported_expectations(const struct client_state *csp)
514 if ((csp->flags & CSP_FLAG_UNSUPPORTED_CLIENT_EXPECTATION))
516 log_error(LOG_LEVEL_ERROR,
517 "Rejecting request from client %s with unsupported Expect header value",
519 log_error(LOG_LEVEL_CLF,
520 "%s - - [%T] \"%s\" 417 0", csp->ip_addr_str, csp->http->cmd);
521 write_socket_delayed(csp->cfd,
522 UNSUPPORTED_CLIENT_EXPECTATION_ERROR_RESPONSE,
523 strlen(UNSUPPORTED_CLIENT_EXPECTATION_ERROR_RESPONSE),
524 get_write_delay(csp));
534 /*********************************************************************
536 * Function : get_request_destination_elsewhere
538 * Description : If the client's request was redirected into
539 * Privoxy without the client's knowledge,
540 * the request line lacks the destination host.
542 * This function tries to get it elsewhere,
543 * provided accept-intercepted-requests is enabled.
545 * "Elsewhere" currently only means "Host: header",
546 * but in the future we may ask the redirecting
547 * packet filter to look the destination up.
549 * If the destination stays unknown, an error
550 * response is send to the client and headers
551 * are freed so that chat() can return directly.
554 * 1 : csp = Current client state (buffers, headers, etc...)
555 * 2 : headers = a header list
557 * Returns : JB_ERR_OK if the destination is now known, or
558 * JB_ERR_PARSE if it isn't.
560 *********************************************************************/
561 static jb_err get_request_destination_elsewhere(struct client_state *csp, struct list *headers)
563 if (!(csp->config->feature_flags & RUNTIME_FEATURE_ACCEPT_INTERCEPTED_REQUESTS))
565 log_error(LOG_LEVEL_ERROR, "%s's request: \'%s\' is invalid."
566 " Privoxy isn't configured to accept intercepted requests.",
567 csp->ip_addr_str, csp->http->cmd);
568 /* XXX: Use correct size */
569 log_error(LOG_LEVEL_CLF, "%s - - [%T] \"%s\" 400 0",
570 csp->ip_addr_str, csp->http->cmd);
572 write_socket_delayed(csp->cfd, CHEADER, strlen(CHEADER),
573 get_write_delay(csp));
574 destroy_list(headers);
578 else if (JB_ERR_OK == get_destination_from_headers(headers, csp->http))
580 /* Split the domain we just got for pattern matching */
581 init_domain_components(csp->http);
587 /* We can't work without destination. Go spread the news.*/
589 /* XXX: Use correct size */
590 log_error(LOG_LEVEL_CLF, "%s - - [%T] \"%s\" 400 0",
591 csp->ip_addr_str, csp->http->cmd);
592 log_error(LOG_LEVEL_ERROR,
593 "Privoxy was unable to get the destination for %s's request: %s",
594 csp->ip_addr_str, csp->http->cmd);
596 write_socket_delayed(csp->cfd, MISSING_DESTINATION_RESPONSE,
597 strlen(MISSING_DESTINATION_RESPONSE), get_write_delay(csp));
598 destroy_list(headers);
603 * TODO: If available, use PF's ioctl DIOCNATLOOK as last resort
604 * to get the destination IP address, use it as host directly
605 * or do a reverse DNS lookup first.
610 /*********************************************************************
612 * Function : get_server_headers
614 * Description : Parses server headers in iob and fills them
615 * into csp->headers so that they can later be
619 * 1 : csp = Current client state (buffers, headers, etc...)
621 * Returns : JB_ERR_OK if everything went fine, or
622 * JB_ERR_PARSE if the headers were incomplete.
624 *********************************************************************/
625 static jb_err get_server_headers(struct client_state *csp)
627 int continue_hack_in_da_house = 0;
630 while (((header = get_header(csp->iob)) != NULL) || continue_hack_in_da_house)
635 * continue hack in da house. Ignore the ending of
636 * this head and continue enlisting header lines.
637 * The reason is described below.
639 enlist(csp->headers, "");
640 continue_hack_in_da_house = 0;
643 else if (0 == strncmpic(header, "HTTP/1.1 100", 12))
646 * It's a bodyless continue response, don't
647 * stop header parsing after reaching its end.
649 * As a result Privoxy will concatenate the
650 * next response's head and parse and deliver
651 * the headers as if they belonged to one request.
653 * The client will separate them because of the
654 * empty line between them.
656 * XXX: What we're doing here is clearly against
657 * the intended purpose of the continue header,
658 * and under some conditions (HTTP/1.0 client request)
659 * it's a standard violation.
661 * Anyway, "sort of against the spec" is preferable
662 * to "always getting confused by Continue responses"
663 * (Privoxy's behaviour before this hack was added)
665 log_error(LOG_LEVEL_HEADER, "Continue hack in da house.");
666 continue_hack_in_da_house = 1;
668 else if (*header == '\0')
671 * If the header is empty, but the Continue hack
672 * isn't active, we can assume that we reached the
673 * end of the buffer before we hit the end of the
676 * Inform the caller an let it decide how to handle it.
681 if (JB_ERR_MEMORY == enlist(csp->headers, header))
684 * XXX: Should we quit the request and return a
685 * out of memory error page instead?
687 log_error(LOG_LEVEL_ERROR,
688 "Out of memory while enlisting server headers. %s lost.",
698 /*********************************************************************
700 * Function : crunch_reason
702 * Description : Translates the crunch reason code into a string.
705 * 1 : rsp = a http_response
707 * Returns : A string with the crunch reason or an error description.
709 *********************************************************************/
710 static const char *crunch_reason(const struct http_response *rsp)
712 char * reason = NULL;
717 return "Internal error while searching for crunch reason";
720 switch (rsp->crunch_reason)
723 reason = "Unsupported HTTP feature";
729 reason = "Untrusted";
732 reason = "Redirected";
738 reason = "DNS failure";
740 case FORWARDING_FAILED:
741 reason = "Forwarding failed";
744 reason = "Connection failure";
747 reason = "Out of memory (may mask other reasons)";
749 case CONNECTION_TIMEOUT:
750 reason = "Connection timeout";
753 reason = "No server data received";
756 reason = "No reason recorded";
764 /*********************************************************************
766 * Function : log_applied_actions
768 * Description : Logs the applied actions if LOG_LEVEL_ACTIONS is
772 * 1 : actions = Current action spec to log
776 *********************************************************************/
777 static void log_applied_actions(const struct current_action_spec *actions)
780 * The conversion to text requires lots of memory allocations so
781 * we only do the conversion if the user is actually interested.
783 if (debug_level_is_enabled(LOG_LEVEL_ACTIONS))
785 char *actions_as_text = actions_to_line_of_text(actions);
786 log_error(LOG_LEVEL_ACTIONS, "%s", actions_as_text);
787 freez(actions_as_text);
792 /*********************************************************************
794 * Function : send_crunch_response
796 * Description : Delivers already prepared response for
797 * intercepted requests, logs the interception
798 * and frees the response.
801 * 1 : csp = Current client state (buffers, headers, etc...)
802 * 2 : rsp = Fully prepared response. Will be freed on exit.
806 *********************************************************************/
807 static void send_crunch_response(struct client_state *csp, struct http_response *rsp)
809 const struct http_request *http = csp->http;
813 assert(rsp->head != NULL);
817 log_error(LOG_LEVEL_FATAL, "NULL response in send_crunch_response.");
821 * Extract the status code from the actual head
822 * that will be send to the client. It is the only
823 * way to get it right for all requests, including
824 * the fixed ones for out-of-memory problems.
826 * A head starts like this: 'HTTP/1.1 200...'
830 status_code[0] = rsp->head[9];
831 status_code[1] = rsp->head[10];
832 status_code[2] = rsp->head[11];
833 status_code[3] = '\0';
835 /* Log that the request was crunched and why. */
836 log_applied_actions(csp->action);
837 #ifdef FEATURE_HTTPS_INSPECTION
838 if (client_use_ssl(csp))
840 log_error(LOG_LEVEL_CRUNCH, "%s: https://%s%s", crunch_reason(rsp),
841 http->hostport, http->path);
842 log_error(LOG_LEVEL_CLF, "%s - - [%T] \"%s https://%s%s %s\" %s %lu",
843 csp->ip_addr_str, http->gpc, http->hostport, http->path,
844 http->version, status_code, rsp->content_length);
849 log_error(LOG_LEVEL_CRUNCH, "%s: %s", crunch_reason(rsp), http->url);
850 log_error(LOG_LEVEL_CLF, "%s - - [%T] \"%s\" %s %lu",
851 csp->ip_addr_str, http->ocmd, status_code, rsp->content_length);
853 /* Write the answer to the client */
854 #ifdef FEATURE_HTTPS_INSPECTION
855 if (client_use_ssl(csp))
857 if ((ssl_send_data_delayed(&(csp->ssl_client_attr),
858 (const unsigned char *)rsp->head, rsp->head_length,
859 get_write_delay(csp)) < 0)
860 || (ssl_send_data_delayed(&(csp->ssl_client_attr),
861 (const unsigned char *)rsp->body, rsp->content_length,
862 get_write_delay(csp)) < 0))
864 /* There is nothing we can do about it. */
865 log_error(LOG_LEVEL_CONNECT, "Couldn't deliver the error message "
866 "for https://%s%s through client socket %d using TLS/SSL",
867 http->hostport, http->url, csp->cfd);
873 if (write_socket_delayed(csp->cfd, rsp->head, rsp->head_length,
874 get_write_delay(csp))
875 || write_socket_delayed(csp->cfd, rsp->body, rsp->content_length,
876 get_write_delay(csp)))
878 /* There is nothing we can do about it. */
879 log_error(LOG_LEVEL_CONNECT,
880 "Couldn't deliver the error message for %s through client socket %d: %E",
881 http->url, csp->cfd);
885 /* Clean up and return */
886 if (cgi_error_memory() != rsp)
888 free_http_response(rsp);
894 /*********************************************************************
896 * Function : crunch_response_triggered
898 * Description : Checks if the request has to be crunched,
899 * and delivers the crunch response if necessary.
902 * 1 : csp = Current client state (buffers, headers, etc...)
903 * 2 : crunchers = list of cruncher functions to run
905 * Returns : TRUE if the request was answered with a crunch response
908 *********************************************************************/
909 static int crunch_response_triggered(struct client_state *csp, const struct cruncher crunchers[])
911 struct http_response *rsp = NULL;
912 const struct cruncher *c;
915 * If CGI request crunching is disabled,
916 * check the CGI dispatcher out of order to
917 * prevent unintentional blocks or redirects.
919 if (!(csp->config->feature_flags & RUNTIME_FEATURE_CGI_CRUNCHING)
920 && (NULL != (rsp = dispatch_cgi(csp))))
922 /* Deliver, log and free the interception response. */
923 send_crunch_response(csp, rsp);
924 csp->flags |= CSP_FLAG_CRUNCHED;
928 for (c = crunchers; c->cruncher != NULL; c++)
931 * Check the cruncher if either Privoxy is toggled
932 * on and the request isn't forced, or if the cruncher
933 * applies to forced requests as well.
935 if (((csp->flags & CSP_FLAG_TOGGLED_ON) &&
936 !(csp->flags & CSP_FLAG_FORCED)) ||
937 (c->flags & CF_IGNORE_FORCE))
939 rsp = c->cruncher(csp);
942 /* Deliver, log and free the interception response. */
943 send_crunch_response(csp, rsp);
944 csp->flags |= CSP_FLAG_CRUNCHED;
945 #ifdef FEATURE_STATISTICS
946 if (c->flags & CF_COUNT_AS_REJECT)
948 csp->flags |= CSP_FLAG_REJECTED;
950 #endif /* def FEATURE_STATISTICS */
961 /*********************************************************************
963 * Function : build_request_line
965 * Description : Builds the HTTP request line.
967 * If a HTTP forwarder is used it expects the whole URL,
968 * web servers only get the path.
971 * 1 : csp = Current client state (buffers, headers, etc...)
972 * 2 : fwd = The forwarding spec used for the request.
974 * 3 : request_line = The old request line which will be replaced.
976 * Returns : Nothing. Terminates in case of memory problems.
978 *********************************************************************/
979 static void build_request_line(struct client_state *csp, const struct forward_spec *fwd, char **request_line)
981 struct http_request *http = csp->http;
984 * Downgrade http version from 1.1 to 1.0
985 * if +downgrade action applies.
987 if ((csp->action->flags & ACTION_DOWNGRADE)
988 && (!strcmpic(http->version, "HTTP/1.1")))
990 freez(http->version);
991 http->version = strdup_or_die("HTTP/1.0");
995 * Rebuild the request line.
997 freez(*request_line);
998 *request_line = strdup(http->gpc);
999 string_append(request_line, " ");
1001 if (fwd != NULL && fwd->forward_host && fwd->type != FORWARD_WEBSERVER)
1003 string_append(request_line, http->url);
1007 string_append(request_line, http->path);
1009 string_append(request_line, " ");
1010 string_append(request_line, http->version);
1012 if (*request_line == NULL)
1014 log_error(LOG_LEVEL_FATAL, "Out of memory writing HTTP command");
1016 log_error(LOG_LEVEL_HEADER, "New HTTP Request-Line: %s", *request_line);
1020 /*********************************************************************
1022 * Function : change_request_destination
1024 * Description : Parse a (rewritten) request line and regenerate
1025 * the http request data.
1028 * 1 : csp = Current client state (buffers, headers, etc...)
1030 * Returns : Forwards the parse_http_request() return code.
1031 * Terminates in case of memory problems.
1033 *********************************************************************/
1034 static jb_err change_request_destination(struct client_state *csp)
1036 struct http_request *http = csp->http;
1039 log_error(LOG_LEVEL_REDIRECTS, "Rewrite detected: %s",
1040 csp->headers->first->str);
1041 free_http_request(http);
1042 err = parse_http_request(csp->headers->first->str, http);
1043 if (JB_ERR_OK != err)
1045 log_error(LOG_LEVEL_ERROR, "Couldn't parse rewritten request: %s.",
1046 jb_err_to_string(err));
1048 if (http->ssl && strcmpic(csp->http->gpc, "CONNECT"))
1051 * A client header filter changed the request URL from
1052 * http:// to https:// which we currently don't support.
1054 log_error(LOG_LEVEL_ERROR, "Changing the request destination from http "
1055 "to https behind the client's back currently isn't supported.");
1056 return JB_ERR_PARSE;
1063 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
1064 /*********************************************************************
1066 * Function : server_response_is_complete
1068 * Description : Determines whether we should stop reading
1069 * from the server socket.
1072 * 1 : csp = Current client state (buffers, headers, etc...)
1073 * 2 : content_length = Length of content received so far.
1075 * Returns : TRUE if the response is complete,
1078 *********************************************************************/
1079 static int server_response_is_complete(struct client_state *csp,
1080 unsigned long long content_length)
1082 int content_length_known = !!(csp->flags & CSP_FLAG_CONTENT_LENGTH_SET);
1084 if (!strcmpic(csp->http->gpc, "HEAD"))
1087 * "HEAD" implies no body, we are thus expecting
1088 * no content. XXX: incomplete "list" of methods?
1090 csp->expected_content_length = 0;
1091 content_length_known = TRUE;
1092 csp->flags |= CSP_FLAG_SERVER_CONTENT_LENGTH_SET;
1095 if (csp->http->status == 204 || csp->http->status == 304)
1098 * Expect no body. XXX: incomplete "list" of status codes?
1100 csp->expected_content_length = 0;
1101 content_length_known = TRUE;
1102 csp->flags |= CSP_FLAG_SERVER_CONTENT_LENGTH_SET;
1105 return (content_length_known && ((0 == csp->expected_content_length)
1106 || (csp->expected_content_length <= content_length)));
1110 #ifdef FEATURE_CONNECTION_SHARING
1111 /*********************************************************************
1113 * Function : wait_for_alive_connections
1115 * Description : Waits for alive connections to timeout.
1121 *********************************************************************/
1122 static void wait_for_alive_connections(void)
1124 int connections_alive = close_unusable_connections();
1126 while (0 < connections_alive)
1128 log_error(LOG_LEVEL_CONNECT,
1129 "Waiting for %d connections to timeout.",
1132 connections_alive = close_unusable_connections();
1135 log_error(LOG_LEVEL_CONNECT, "No connections to wait for left.");
1138 #endif /* def FEATURE_CONNECTION_SHARING */
1141 /*********************************************************************
1143 * Function : save_connection_destination
1145 * Description : Remembers a connection for reuse later on.
1148 * 1 : sfd = Open socket to remember.
1149 * 2 : http = The destination for the connection.
1150 * 3 : fwd = The forwarder settings used.
1151 * 4 : server_connection = storage.
1155 *********************************************************************/
1156 void save_connection_destination(jb_socket sfd,
1157 const struct http_request *http,
1158 const struct forward_spec *fwd,
1159 struct reusable_connection *server_connection)
1161 assert(sfd != JB_INVALID_SOCKET);
1162 assert(NULL != http->host);
1164 server_connection->sfd = sfd;
1165 server_connection->host = strdup_or_die(http->host);
1166 server_connection->port = http->port;
1168 assert(NULL != fwd);
1169 assert(server_connection->gateway_host == NULL);
1170 assert(server_connection->gateway_port == 0);
1171 assert(server_connection->forwarder_type == 0);
1172 assert(server_connection->forward_host == NULL);
1173 assert(server_connection->forward_port == 0);
1175 server_connection->forwarder_type = fwd->type;
1176 if (NULL != fwd->gateway_host)
1178 server_connection->gateway_host = strdup_or_die(fwd->gateway_host);
1182 server_connection->gateway_host = NULL;
1184 server_connection->gateway_port = fwd->gateway_port;
1185 if (NULL != fwd->auth_username)
1187 server_connection->auth_username = strdup_or_die(fwd->auth_username);
1191 server_connection->auth_username = NULL;
1193 if (NULL != fwd->auth_password)
1195 server_connection->auth_password = strdup_or_die(fwd->auth_password);
1199 server_connection->auth_password = NULL;
1202 if (NULL != fwd->forward_host)
1204 server_connection->forward_host = strdup_or_die(fwd->forward_host);
1208 server_connection->forward_host = NULL;
1210 server_connection->forward_port = fwd->forward_port;
1212 #endif /* FEATURE_CONNECTION_KEEP_ALIVE */
1215 /*********************************************************************
1217 * Function : verify_request_length
1219 * Description : Checks if we already got the whole client requests
1220 * and sets CSP_FLAG_CLIENT_REQUEST_COMPLETELY_READ if
1223 * Data that doesn't belong to the current request is
1224 * either thrown away to let the client retry on a clean
1225 * socket, or stashed to be dealt with after the current
1226 * request is served.
1229 * 1 : csp = Current client state (buffers, headers, etc...)
1233 *********************************************************************/
1234 static void verify_request_length(struct client_state *csp)
1236 unsigned long long buffered_request_bytes =
1237 (unsigned long long)(csp->client_iob->eod - csp->client_iob->cur);
1239 if ((csp->expected_client_content_length != 0)
1240 && (buffered_request_bytes != 0))
1242 if (csp->expected_client_content_length >= buffered_request_bytes)
1244 csp->expected_client_content_length -= buffered_request_bytes;
1245 log_error(LOG_LEVEL_CONNECT, "Reduced expected bytes to %llu "
1246 "to account for the %llu ones we already got.",
1247 csp->expected_client_content_length, buffered_request_bytes);
1251 assert(csp->client_iob->eod > csp->client_iob->cur + csp->expected_client_content_length);
1252 csp->client_iob->eod = csp->client_iob->cur + csp->expected_client_content_length;
1253 log_error(LOG_LEVEL_CONNECT, "Reducing expected bytes to 0. "
1254 "Marking the server socket tainted after throwing %llu bytes away.",
1255 buffered_request_bytes - csp->expected_client_content_length);
1256 csp->expected_client_content_length = 0;
1257 csp->flags |= CSP_FLAG_SERVER_SOCKET_TAINTED;
1260 if (csp->expected_client_content_length == 0)
1262 csp->flags |= CSP_FLAG_CLIENT_REQUEST_COMPLETELY_READ;
1266 if (!(csp->flags & CSP_FLAG_CLIENT_REQUEST_COMPLETELY_READ)
1267 && ((csp->client_iob->cur < csp->client_iob->eod)
1268 || (csp->expected_client_content_length != 0)))
1270 if (strcmpic(csp->http->gpc, "GET")
1271 && strcmpic(csp->http->gpc, "HEAD")
1272 && strcmpic(csp->http->gpc, "TRACE")
1273 && strcmpic(csp->http->gpc, "OPTIONS")
1274 && strcmpic(csp->http->gpc, "DELETE"))
1276 /* XXX: this is an incomplete hack */
1277 csp->flags &= ~CSP_FLAG_CLIENT_REQUEST_COMPLETELY_READ;
1278 log_error(LOG_LEVEL_CONNECT, "There better be a request body.");
1282 csp->flags |= CSP_FLAG_CLIENT_REQUEST_COMPLETELY_READ;
1284 if ((csp->config->feature_flags & RUNTIME_FEATURE_TOLERATE_PIPELINING) == 0)
1286 csp->flags |= CSP_FLAG_SERVER_SOCKET_TAINTED;
1287 log_error(LOG_LEVEL_CONNECT,
1288 "Possible pipeline attempt detected. The connection will not "
1289 "be kept alive and we will only serve the first request.");
1290 /* Nuke the pipelined requests from orbit, just to be sure. */
1291 clear_iob(csp->client_iob);
1296 * Keep the pipelined data around for now, we'll deal with
1297 * it once we're done serving the current request.
1299 csp->flags |= CSP_FLAG_PIPELINED_REQUEST_WAITING;
1300 assert(csp->client_iob->eod >= csp->client_iob->cur);
1301 log_error(LOG_LEVEL_CONNECT, "Complete client request followed by "
1302 "%d bytes of pipelined data received.",
1303 (int)(csp->client_iob->eod - csp->client_iob->cur));
1309 csp->flags |= CSP_FLAG_CLIENT_REQUEST_COMPLETELY_READ;
1310 log_error(LOG_LEVEL_CONNECT, "Complete client request received.");
1315 /*********************************************************************
1317 * Function : mark_server_socket_tainted
1319 * Description : Makes sure we don't reuse a server socket
1320 * (if we didn't read everything the server sent
1321 * us reusing the socket would lead to garbage).
1324 * 1 : csp = Current client state (buffers, headers, etc...)
1328 *********************************************************************/
1329 static void mark_server_socket_tainted(struct client_state *csp)
1332 * For consistency we always mark the server socket
1333 * tainted, however, to reduce the log noise we only
1334 * emit a log message if the server socket could have
1335 * actually been reused.
1337 if ((csp->flags & CSP_FLAG_SERVER_CONNECTION_KEEP_ALIVE)
1338 && !(csp->flags & CSP_FLAG_SERVER_SOCKET_TAINTED))
1340 log_error(LOG_LEVEL_CONNECT,
1341 "Marking the server socket %d tainted.",
1342 csp->server_connection.sfd);
1344 csp->flags |= CSP_FLAG_SERVER_SOCKET_TAINTED;
1347 /*********************************************************************
1349 * Function : get_request_line
1351 * Description : Read the client request line.
1354 * 1 : csp = Current client state (buffers, headers, etc...)
1356 * Returns : Pointer to request line or NULL in case of errors.
1358 *********************************************************************/
1359 static char *get_request_line(struct client_state *csp)
1361 char buf[BUFFER_SIZE];
1362 char *request_line = NULL;
1365 memset(buf, 0, sizeof(buf));
1367 if ((csp->flags & CSP_FLAG_PIPELINED_REQUEST_WAITING) != 0)
1370 * If there are multiple pipelined requests waiting,
1371 * the flag will be set again once the next request
1374 csp->flags &= ~CSP_FLAG_PIPELINED_REQUEST_WAITING;
1376 request_line = get_header(csp->client_iob);
1377 if ((NULL != request_line) && ('\0' != *request_line))
1379 return request_line;
1383 log_error(LOG_LEVEL_CONNECT, "No complete request line "
1384 "received yet. Continuing reading from %d.", csp->cfd);
1392 0 == (csp->flags & CSP_FLAG_FUZZED_INPUT) &&
1394 !data_is_available(csp->cfd, csp->config->socket_timeout)
1397 if (socket_is_still_alive(csp->cfd))
1399 log_error(LOG_LEVEL_CONNECT,
1400 "No request line on socket %d received in time. Timeout: %d.",
1401 csp->cfd, csp->config->socket_timeout);
1402 write_socket_delayed(csp->cfd, CLIENT_CONNECTION_TIMEOUT_RESPONSE,
1403 strlen(CLIENT_CONNECTION_TIMEOUT_RESPONSE),
1404 get_write_delay(csp));
1408 log_error(LOG_LEVEL_CONNECT,
1409 "The client side of the connection on socket %d got "
1410 "closed without sending a complete request line.", csp->cfd);
1415 len = read_socket(csp->cfd, buf, sizeof(buf) - 1);
1417 if (len <= 0) return NULL;
1420 * If there is no memory left for buffering the
1421 * request, there is nothing we can do but hang up
1423 if (add_to_iob(csp->client_iob, csp->config->buffer_limit, buf, len))
1428 request_line = get_header(csp->client_iob);
1430 } while ((NULL != request_line) && ('\0' == *request_line));
1432 return request_line;
1438 CHUNK_STATUS_MISSING_DATA,
1439 CHUNK_STATUS_BODY_COMPLETE,
1440 CHUNK_STATUS_PARSE_ERROR
1444 /*********************************************************************
1446 * Function : chunked_body_is_complete
1448 * Description : Figures out whether or not a chunked body is complete.
1450 * Currently it always starts at the beginning of the
1451 * buffer which is somewhat wasteful and prevents Privoxy
1452 * from starting to forward the correctly parsed chunks
1453 * as soon as theoretically possible.
1455 * Should be modified to work with a common buffer,
1456 * and allow the caller to skip already parsed chunks.
1458 * This would allow the function to be used for unbuffered
1459 * response bodies as well.
1462 * 1 : iob = Buffer with the body to check.
1463 * 2 : length = Length of complete body
1465 * Returns : Enum with the result of the check.
1467 *********************************************************************/
1468 static enum chunk_status chunked_body_is_complete(struct iob *iob, size_t *length)
1470 unsigned int chunksize;
1476 * We need at least a single digit, followed by "\r\n",
1477 * followed by an unknown amount of data, followed by "\r\n".
1479 if (p + 5 > iob->eod)
1481 return CHUNK_STATUS_MISSING_DATA;
1483 if (sscanf(p, "%x", &chunksize) != 1)
1485 return CHUNK_STATUS_PARSE_ERROR;
1489 * We want at least a single digit, followed by "\r\n",
1490 * followed by the specified amount of data, followed by "\r\n".
1492 if (p + chunksize + 5 > iob->eod)
1494 return CHUNK_STATUS_MISSING_DATA;
1497 /* Skip chunk-size. */
1498 p = strstr(p, "\r\n");
1501 return CHUNK_STATUS_PARSE_ERROR;
1503 /* Move beyond the chunkdata. */
1506 /* There should be another "\r\n" to skip */
1507 if (memcmp(p, "\r\n", 2))
1509 return CHUNK_STATUS_PARSE_ERROR;
1512 } while (chunksize > 0U);
1514 *length = (size_t)(p - iob->cur);
1515 assert(*length <= (size_t)(iob->eod - iob->cur));
1516 assert(p <= iob->eod);
1518 return CHUNK_STATUS_BODY_COMPLETE;
1523 /*********************************************************************
1525 * Function : receive_chunked_client_request_body
1527 * Description : Read the chunk-encoded client request body.
1528 * Failures are dealt with.
1531 * 1 : csp = Current client state (buffers, headers, etc...)
1533 * Returns : JB_ERR_OK or JB_ERR_PARSE
1535 *********************************************************************/
1536 static jb_err receive_chunked_client_request_body(struct client_state *csp)
1539 enum chunk_status status;
1541 while (CHUNK_STATUS_MISSING_DATA ==
1542 (status = chunked_body_is_complete(csp->client_iob, &body_length)))
1544 char buf[BUFFER_SIZE];
1547 if (!data_is_available(csp->cfd, csp->config->socket_timeout))
1549 log_error(LOG_LEVEL_ERROR,
1550 "Timeout while waiting for the client body.");
1553 len = read_socket(csp->cfd, buf, sizeof(buf) - 1);
1556 log_error(LOG_LEVEL_ERROR,
1557 "Reading the client body failed: %E");
1560 if (add_to_iob(csp->client_iob, csp->config->buffer_limit, buf, len))
1565 if (status != CHUNK_STATUS_BODY_COMPLETE)
1567 write_socket_delayed(csp->cfd, CLIENT_BODY_PARSE_ERROR_RESPONSE,
1568 strlen(CLIENT_BODY_PARSE_ERROR_RESPONSE), get_write_delay(csp));
1569 log_error(LOG_LEVEL_CLF,
1570 "%s - - [%T] \"Failed reading chunked client body\" 400 0", csp->ip_addr_str);
1571 return JB_ERR_PARSE;
1573 log_error(LOG_LEVEL_CONNECT,
1574 "Chunked client body completely read. Length: %lu", body_length);
1575 csp->expected_client_content_length = body_length;
1583 /*********************************************************************
1585 * Function : fuzz_chunked_transfer_encoding
1587 * Description : Treat the fuzzed input as chunked transfer encoding
1588 * to check and dechunk.
1591 * 1 : csp = Used to store the data.
1592 * 2 : fuzz_input_file = File to read the input from.
1594 * Returns : Result of dechunking
1596 *********************************************************************/
1597 extern int fuzz_chunked_transfer_encoding(struct client_state *csp, char *fuzz_input_file)
1600 size_t size = (size_t)(csp->iob->eod - csp->iob->cur);
1601 enum chunk_status status;
1603 status = chunked_body_is_complete(csp->iob, &length);
1604 if (CHUNK_STATUS_BODY_COMPLETE != status)
1606 log_error(LOG_LEVEL_INFO, "Chunked body is incomplete or invalid");
1609 return (JB_ERR_OK == remove_chunked_transfer_coding(csp->iob->cur, &size));
1614 /*********************************************************************
1616 * Function : fuzz_client_request
1618 * Description : Try to get a client request from the fuzzed input.
1621 * 1 : csp = Current client state (buffers, headers, etc...)
1622 * 2 : fuzz_input_file = File to read the input from.
1624 * Returns : Result of fuzzing.
1626 *********************************************************************/
1627 extern int fuzz_client_request(struct client_state *csp, char *fuzz_input_file)
1632 csp->ip_addr_str = "fuzzer";
1634 if (strcmp(fuzz_input_file, "-") != 0)
1636 log_error(LOG_LEVEL_FATAL,
1637 "Fuzzed client requests can currently only be read from stdin (-).");
1639 err = receive_client_request(csp);
1640 if (err != JB_ERR_OK)
1644 err = parse_client_request(csp);
1645 if (err != JB_ERR_OK)
1653 #endif /* def FUZZ */
1656 #ifdef FEATURE_FORCE_LOAD
1657 /*********************************************************************
1659 * Function : force_required
1661 * Description : Checks a request line to see if it contains
1662 * the FORCE_PREFIX. If it does, it is removed
1663 * unless enforcing requests has beend disabled.
1666 * 1 : request_line = HTTP request line
1668 * Returns : TRUE if force is required, FALSE otherwise.
1670 *********************************************************************/
1671 static int force_required(const struct client_state *csp, char *request_line)
1675 p = strstr(request_line, "http://");
1679 p += strlen("http://");
1683 /* Intercepted request usually don't specify the protocol. */
1687 /* Go to the beginning of the path */
1692 * If the path is missing the request line is invalid and we
1693 * are done here. The client-visible rejection happens later on.
1698 if (0 == strncmpic(p, FORCE_PREFIX, strlen(FORCE_PREFIX) - 1))
1700 if (!(csp->config->feature_flags & RUNTIME_FEATURE_ENFORCE_BLOCKS))
1702 /* XXX: Should clean more carefully */
1703 strclean(request_line, FORCE_PREFIX);
1704 log_error(LOG_LEVEL_FORCE,
1705 "Enforcing request: \"%s\".", request_line);
1709 log_error(LOG_LEVEL_FORCE,
1710 "Ignored force prefix in request: \"%s\".", request_line);
1716 #endif /* def FEATURE_FORCE_LOAD */
1719 /*********************************************************************
1721 * Function : receive_client_request
1723 * Description : Read the client's request (more precisely the
1724 * client headers) and answer it if necessary.
1727 * 1 : csp = Current client state (buffers, headers, etc...)
1729 * Returns : JB_ERR_OK, JB_ERR_PARSE or JB_ERR_MEMORY
1731 *********************************************************************/
1732 static jb_err receive_client_request(struct client_state *csp)
1734 char buf[BUFFER_SIZE];
1737 struct http_request *http;
1741 /* Temporary copy of the client's headers before they get enlisted in csp->headers */
1742 struct list header_list;
1743 struct list *headers = &header_list;
1745 /* We don't care if the arriving data is a valid HTTP request or not. */
1746 csp->requests_received_total++;
1750 memset(buf, 0, sizeof(buf));
1752 req = get_request_line(csp);
1755 mark_server_socket_tainted(csp);
1756 return JB_ERR_PARSE;
1758 assert(*req != '\0');
1760 if (client_protocol_is_unsupported(csp, req))
1762 return JB_ERR_PARSE;
1765 #ifdef FEATURE_FORCE_LOAD
1766 if (force_required(csp, req))
1768 csp->flags |= CSP_FLAG_FORCED;
1770 #endif /* def FEATURE_FORCE_LOAD */
1772 err = parse_http_request(req, http);
1774 if (JB_ERR_OK != err)
1776 write_socket_delayed(csp->cfd, CHEADER, strlen(CHEADER),
1777 get_write_delay(csp));
1778 /* XXX: Use correct size */
1779 log_error(LOG_LEVEL_CLF, "%s - - [%T] \"Invalid request\" 400 0", csp->ip_addr_str);
1780 log_error(LOG_LEVEL_ERROR,
1781 "Couldn't parse request line received from %s: %s",
1782 csp->ip_addr_str, jb_err_to_string(err));
1784 free_http_request(http);
1785 return JB_ERR_PARSE;
1788 /* grab the rest of the client's headers */
1792 p = get_header(csp->client_iob);
1796 /* There are no additional headers to read. */
1803 * We didn't receive a complete header
1804 * line yet, get the rest of it.
1806 if (!data_is_available(csp->cfd, csp->config->socket_timeout))
1808 log_error(LOG_LEVEL_ERROR,
1809 "Stopped grabbing the client headers.");
1810 destroy_list(headers);
1811 return JB_ERR_PARSE;
1814 len = read_socket(csp->cfd, buf, sizeof(buf) - 1);
1817 log_error(LOG_LEVEL_ERROR, "read from client failed: %E");
1818 destroy_list(headers);
1819 return JB_ERR_PARSE;
1822 if (add_to_iob(csp->client_iob, csp->config->buffer_limit, buf, len))
1825 * If there is no memory left for buffering the
1826 * request, there is nothing we can do but hang up
1828 destroy_list(headers);
1829 return JB_ERR_MEMORY;
1834 if (!strncmpic(p, "Transfer-Encoding:", 18))
1837 * XXX: should be called through sed()
1838 * but currently can't.
1840 client_transfer_encoding(csp, &p);
1843 * We were able to read a complete
1844 * header and can finally enlist it.
1851 if (http->host == NULL)
1854 * If we still don't know the request destination,
1855 * the request is invalid or the client uses
1856 * Privoxy without its knowledge.
1858 if (JB_ERR_OK != get_request_destination_elsewhere(csp, headers))
1861 * Our attempts to get the request destination
1862 * elsewhere failed or Privoxy is configured
1863 * to only accept proxy requests.
1865 * An error response has already been sent
1866 * and we're done here.
1868 return JB_ERR_PARSE;
1872 #ifdef FEATURE_CLIENT_TAGS
1873 /* XXX: If the headers were enlisted sooner, passing csp would do. */
1874 set_client_address(csp, headers);
1875 get_tag_list_for_client(csp->client_tags, csp->client_address);
1879 * Determine the actions for this URL
1881 #ifdef FEATURE_TOGGLE
1882 if (!(csp->flags & CSP_FLAG_TOGGLED_ON))
1884 /* Most compatible set of actions (i.e. none) */
1885 init_current_action(csp->action);
1888 #endif /* ndef FEATURE_TOGGLE */
1890 get_url_actions(csp, http);
1893 enlist(csp->headers, http->cmd);
1895 /* Append the previously read headers */
1896 err = list_append_list_unique(csp->headers, headers);
1897 destroy_list(headers);
1904 /*********************************************************************
1906 * Function : parse_client_request
1908 * Description : Parses the client's request and decides what to do
1911 * Note that since we're not using select() we could get
1912 * blocked here if a client connected, then didn't say
1916 * 1 : csp = Current client state (buffers, headers, etc...)
1918 * Returns : JB_ERR_OK or JB_ERR_PARSE
1920 *********************************************************************/
1921 static jb_err parse_client_request(struct client_state *csp)
1923 struct http_request *http = csp->http;
1926 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
1927 if ((csp->config->feature_flags & RUNTIME_FEATURE_CONNECTION_KEEP_ALIVE)
1928 && (!strcmpic(csp->http->version, "HTTP/1.1"))
1929 && (csp->http->ssl == 0))
1931 /* Assume persistence until further notice */
1932 csp->flags |= CSP_FLAG_CLIENT_CONNECTION_KEEP_ALIVE;
1934 #endif /* def FEATURE_CONNECTION_KEEP_ALIVE */
1936 if (csp->http->ssl == 0)
1939 * This whole block belongs to chat() but currently
1940 * has to be executed before sed().
1942 if (csp->flags & CSP_FLAG_CHUNKED_CLIENT_BODY)
1944 if (receive_chunked_client_request_body(csp) != JB_ERR_OK)
1946 return JB_ERR_PARSE;
1951 csp->expected_client_content_length = get_expected_content_length(csp->headers);
1953 verify_request_length(csp);
1955 #ifndef FEATURE_HTTPS_INSPECTION
1958 csp->flags |= CSP_FLAG_SERVER_SOCKET_TAINTED;
1962 err = sed(csp, FILTER_CLIENT_HEADERS);
1963 if (JB_ERR_OK != err)
1965 log_error(LOG_LEVEL_ERROR, "Failed to parse client request from %s.",
1967 log_error(LOG_LEVEL_CLF, "%s - - [%T] \"%s\" 400 0",
1968 csp->ip_addr_str, csp->http->cmd);
1969 write_socket_delayed(csp->cfd, CHEADER, strlen(CHEADER), get_write_delay(csp));
1970 return JB_ERR_PARSE;
1972 csp->flags |= CSP_FLAG_CLIENT_HEADER_PARSING_DONE;
1974 /* Check request line for rewrites. */
1975 if ((NULL == csp->headers->first->str)
1976 || (strcmp(http->cmd, csp->headers->first->str) &&
1977 (JB_ERR_OK != change_request_destination(csp))))
1980 * A header filter broke the request line - bail out.
1982 write_socket_delayed(csp->cfd, MESSED_UP_REQUEST_RESPONSE,
1983 strlen(MESSED_UP_REQUEST_RESPONSE), get_write_delay(csp));
1984 /* XXX: Use correct size */
1985 log_error(LOG_LEVEL_CLF,
1986 "%s - - [%T] \"Invalid request generated\" 400 0", csp->ip_addr_str);
1987 log_error(LOG_LEVEL_ERROR,
1988 "Invalid request line after applying header filters.");
1989 free_http_request(http);
1991 return JB_ERR_PARSE;
1994 if (client_has_unsupported_expectations(csp))
1996 return JB_ERR_PARSE;
2004 /*********************************************************************
2006 * Function : read_http_request_body
2008 * Description : Reads remaining request body from the client.
2011 * 1 : csp = Current client state (buffers, headers, etc...)
2013 * Returns : 0 on success, anything else is an error.
2015 *********************************************************************/
2016 static int read_http_request_body(struct client_state *csp)
2018 size_t to_read = csp->expected_client_content_length;
2021 assert(to_read != 0);
2023 /* check if all data has been already read */
2024 if (to_read <= (csp->client_iob->eod - csp->client_iob->cur))
2029 for (to_read -= (size_t)(csp->client_iob->eod - csp->client_iob->cur);
2030 to_read > 0 && data_is_available(csp->cfd, csp->config->socket_timeout);
2031 to_read -= (unsigned)len)
2033 char buf[BUFFER_SIZE];
2034 size_t max_bytes_to_read = to_read < sizeof(buf) ? to_read : sizeof(buf);
2036 log_error(LOG_LEVEL_CONNECT,
2037 "Waiting for up to %d bytes of request body from the client.",
2039 len = read_socket(csp->cfd, buf, (int)max_bytes_to_read);
2042 log_error(LOG_LEVEL_CONNECT, "Failed receiving request body from %s: %E", csp->ip_addr_str);
2045 if (add_to_iob(csp->client_iob, csp->config->buffer_limit, (char *)buf, len))
2049 assert(to_read >= len);
2054 log_error(LOG_LEVEL_CONNECT, "Not enough request body has been read: expected %d more bytes",
2055 csp->expected_client_content_length);
2058 log_error(LOG_LEVEL_CONNECT, "The last %d bytes of the request body have been read",
2059 csp->expected_client_content_length);
2064 /*********************************************************************
2066 * Function : update_client_headers
2068 * Description : Updates the HTTP headers from the client request.
2071 * 1 : csp = Current client state (buffers, headers, etc...)
2072 * 2 : new_content_length = new content length value to set
2074 * Returns : 0 on success, anything else is an error.
2076 *********************************************************************/
2077 static int update_client_headers(struct client_state *csp, size_t new_content_length)
2079 static const char content_length[] = "Content-Length:";
2081 struct list_entry *p;
2083 #ifndef FEATURE_HTTPS_INSPECTION
2084 for (p = csp->headers->first;
2086 for (p = csp->http->client_ssl ? csp->https_headers->first : csp->headers->first;
2088 !updated && (p != NULL); p = p->next)
2090 /* Header crunch()ed in previous run? -> ignore */
2096 /* Does the current parser handle this header? */
2097 if (0 == strncmpic(p->str, content_length, sizeof(content_length) - 1))
2099 updated = (JB_ERR_OK == header_adjust_content_length((char **)&(p->str), new_content_length));
2111 /*********************************************************************
2113 * Function : can_filter_request_body
2115 * Description : Checks if the current request body can be stored in
2116 * the client_iob without hitting buffer limit.
2119 * 1 : csp = Current client state (buffers, headers, etc...)
2121 * Returns : TRUE if the current request size do not exceed buffer limit
2124 *********************************************************************/
2125 static int can_filter_request_body(const struct client_state *csp)
2127 if (!can_add_to_iob(csp->client_iob, csp->config->buffer_limit,
2128 csp->expected_client_content_length))
2130 log_error(LOG_LEVEL_INFO,
2131 "Not filtering request body from %s: buffer limit %d will be exceeded "
2132 "(content length %d)", csp->ip_addr_str, csp->config->buffer_limit,
2133 csp->expected_client_content_length);
2140 /*********************************************************************
2142 * Function : send_http_request
2144 * Description : Sends the HTTP headers from the client request
2145 * and all the body data that has already been received.
2148 * 1 : csp = Current client state (buffers, headers, etc...)
2150 * Returns : 0 on success, anything else is an error.
2152 *********************************************************************/
2153 static int send_http_request(struct client_state *csp)
2157 const char *to_send;
2159 int filter_client_body = csp->expected_client_content_length != 0 &&
2160 client_body_filters_enabled(csp->action) && can_filter_request_body(csp);
2162 if (filter_client_body)
2164 if (read_http_request_body(csp))
2168 to_send_len = csp->expected_client_content_length;
2169 to_send = execute_client_body_filters(csp, &to_send_len);
2170 if (to_send == NULL)
2172 /* just flush client_iob */
2173 filter_client_body = FALSE;
2175 else if (to_send_len != csp->expected_client_content_length &&
2176 update_client_headers(csp, to_send_len))
2178 log_error(LOG_LEVEL_HEADER, "Error updating client headers");
2181 csp->expected_client_content_length = 0;
2184 hdr = list_to_text(csp->headers);
2187 /* FIXME Should handle error properly */
2188 log_error(LOG_LEVEL_FATAL, "Out of memory parsing client header");
2190 list_remove_all(csp->headers);
2193 * Write the client's (modified) header to the server
2194 * (along with anything else that may be in the buffer)
2196 write_failure = 0 != write_socket(csp->server_connection.sfd, hdr, strlen(hdr));
2201 log_error(LOG_LEVEL_CONNECT, "Failed sending request headers to: %s: %E",
2202 csp->http->hostport);
2206 if (filter_client_body)
2208 write_failure = 0 != write_socket(csp->server_connection.sfd, to_send, to_send_len);
2212 log_error(LOG_LEVEL_CONNECT, "Failed sending filtered request body to: %s: %E",
2213 csp->http->hostport);
2218 if (((csp->flags & CSP_FLAG_PIPELINED_REQUEST_WAITING) == 0)
2219 && (flush_iob(csp->server_connection.sfd, csp->client_iob, 0) < 0))
2221 log_error(LOG_LEVEL_CONNECT, "Failed sending request body to: %s: %E",
2222 csp->http->hostport);
2229 #ifdef FEATURE_HTTPS_INSPECTION
2230 /*********************************************************************
2232 * Function : read_https_request_body
2234 * Description : Reads remaining request body from the client.
2237 * 1 : csp = Current client state (buffers, headers, etc...)
2239 * Returns : 0 on success, anything else is an error.
2241 *********************************************************************/
2242 static int read_https_request_body(struct client_state *csp)
2244 size_t to_read = csp->expected_client_content_length;
2247 assert(to_read != 0);
2249 /* check if all data has been already read */
2250 if (to_read <= (csp->client_iob->eod - csp->client_iob->cur))
2255 for (to_read -= (size_t)(csp->client_iob->eod - csp->client_iob->cur);
2256 to_read > 0 && (is_ssl_pending(&(csp->ssl_client_attr)) ||
2257 data_is_available(csp->cfd, csp->config->socket_timeout));
2258 to_read -= (unsigned)len)
2260 unsigned char buf[BUFFER_SIZE];
2261 size_t max_bytes_to_read = to_read < sizeof(buf) ? to_read : sizeof(buf);
2263 log_error(LOG_LEVEL_CONNECT,
2264 "Waiting for up to %d bytes of request body from the client.",
2266 len = ssl_recv_data(&(csp->ssl_client_attr), buf,
2267 (unsigned)max_bytes_to_read);
2270 log_error(LOG_LEVEL_CONNECT, "Failed receiving request body from %s", csp->ip_addr_str);
2273 if (add_to_iob(csp->client_iob, csp->config->buffer_limit, (char *)buf, len))
2277 assert(to_read >= len);
2282 log_error(LOG_LEVEL_CONNECT, "Not enough request body has been read: expected %d more bytes", to_read);
2286 log_error(LOG_LEVEL_CONNECT, "The last %d bytes of the request body have been read",
2287 csp->expected_client_content_length);
2292 /*********************************************************************
2294 * Function : receive_and_send_encrypted_post_data
2296 * Description : Reads remaining request body from the client and sends
2300 * 1 : csp = Current client state (buffers, headers, etc...)
2302 * Returns : 0 on success, anything else is an error.
2304 *********************************************************************/
2305 static int receive_and_send_encrypted_post_data(struct client_state *csp)
2307 int content_length_known = csp->expected_client_content_length != 0;
2309 while (is_ssl_pending(&(csp->ssl_client_attr))
2310 || (content_length_known && csp->expected_client_content_length != 0))
2312 unsigned char buf[BUFFER_SIZE];
2314 int max_bytes_to_read = sizeof(buf);
2316 if (content_length_known && csp->expected_client_content_length < sizeof(buf))
2318 max_bytes_to_read = (int)csp->expected_client_content_length;
2320 log_error(LOG_LEVEL_CONNECT,
2321 "Waiting for up to %d bytes of request body from the client.",
2323 len = ssl_recv_data(&(csp->ssl_client_attr), buf,
2324 (unsigned)max_bytes_to_read);
2331 /* XXX: Does this actually happen? */
2334 log_error(LOG_LEVEL_CONNECT, "Forwarding %d bytes of encrypted request body",
2336 len = ssl_send_data(&(csp->ssl_server_attr), buf, (size_t)len);
2341 if (csp->expected_client_content_length != 0)
2343 if (csp->expected_client_content_length >= len)
2345 csp->expected_client_content_length -= (unsigned)len;
2347 if (csp->expected_client_content_length == 0)
2349 log_error(LOG_LEVEL_CONNECT, "Forwarded the last %d bytes", len);
2355 log_error(LOG_LEVEL_CONNECT, "Done forwarding encrypted request body");
2362 /*********************************************************************
2364 * Function : send_https_request
2366 * Description : Sends the HTTP headers from the client request
2367 * and all the body data that has already been received.
2370 * 1 : csp = Current client state (buffers, headers, etc...)
2372 * Returns : 0 on success, anything else is an error.
2374 *********************************************************************/
2375 static int send_https_request(struct client_state *csp)
2380 const char *to_send;
2382 int filter_client_body = csp->expected_client_content_length != 0 &&
2383 client_body_filters_enabled(csp->action) && can_filter_request_body(csp);
2385 if (filter_client_body)
2387 if (read_https_request_body(csp))
2391 to_send_len = csp->expected_client_content_length;
2392 to_send = execute_client_body_filters(csp, &to_send_len);
2393 if (to_send == NULL)
2395 /* just flush client_iob */
2396 filter_client_body = FALSE;
2398 else if (to_send_len != csp->expected_client_content_length &&
2399 update_client_headers(csp, to_send_len))
2401 log_error(LOG_LEVEL_HEADER, "Error updating client headers");
2404 csp->expected_client_content_length = 0;
2407 hdr = list_to_text(csp->https_headers);
2410 /* FIXME Should handle error properly */
2411 log_error(LOG_LEVEL_FATAL, "Out of memory parsing client header");
2413 list_remove_all(csp->https_headers);
2416 * Write the client's (modified) header to the server
2417 * (along with anything else that may be in the buffer)
2419 ret = ssl_send_data(&(csp->ssl_server_attr),
2420 (const unsigned char *)hdr, strlen(hdr));
2425 log_error(LOG_LEVEL_CONNECT,
2426 "Failed sending encrypted request headers to: %s: %E",
2427 csp->http->hostport);
2428 mark_server_socket_tainted(csp);
2432 if (filter_client_body)
2434 ret = ssl_send_data(&(csp->ssl_server_attr), (const unsigned char *)to_send, to_send_len);
2438 log_error(LOG_LEVEL_CONNECT, "Failed sending filtered request body to: %s",
2439 csp->http->hostport);
2444 if (((csp->flags & CSP_FLAG_PIPELINED_REQUEST_WAITING) == 0)
2445 && ((flushed = ssl_flush_socket(&(csp->ssl_server_attr),
2446 csp->client_iob)) < 0))
2448 log_error(LOG_LEVEL_CONNECT, "Failed sending request body to: %s: %E",
2449 csp->http->hostport);
2452 if (flushed != 0 || csp->expected_client_content_length != 0)
2454 if (csp->expected_client_content_length != 0)
2456 if (csp->expected_client_content_length < flushed)
2458 log_error(LOG_LEVEL_ERROR,
2459 "Flushed %ld bytes of request body while only expecting %llu",
2460 flushed, csp->expected_client_content_length);
2461 csp->expected_client_content_length = 0;
2465 log_error(LOG_LEVEL_CONNECT,
2466 "Flushed %ld bytes of request body while expecting %llu",
2467 flushed, csp->expected_client_content_length);
2468 csp->expected_client_content_length -= (unsigned)flushed;
2469 if (receive_and_send_encrypted_post_data(csp))
2477 log_error(LOG_LEVEL_CONNECT,
2478 "Flushed %ld bytes of request body", flushed);
2482 log_error(LOG_LEVEL_CONNECT, "Encrypted request sent");
2489 /*********************************************************************
2491 * Function : receive_encrypted_request
2493 * Description : Receives an encrypted request.
2496 * 1 : csp = Current client state (buffers, headers, etc...)
2498 * Returns : JB_ERR_OK on success,
2499 * JB_ERR_PARSE or JB_ERR_MEMORY otherwise
2501 *********************************************************************/
2502 static jb_err receive_encrypted_request(struct client_state *csp)
2504 char buf[BUFFER_SIZE];
2510 log_error(LOG_LEVEL_HEADER, "Reading encrypted headers");
2511 if (!is_ssl_pending(&(csp->ssl_client_attr)) &&
2512 !data_is_available(csp->cfd, csp->config->socket_timeout))
2514 log_error(LOG_LEVEL_CONNECT,
2515 "Socket %d timed out while waiting for client headers", csp->cfd);
2516 return JB_ERR_PARSE;
2518 len = ssl_recv_data(&(csp->ssl_client_attr),
2519 (unsigned char *)buf, sizeof(buf));
2522 log_error(LOG_LEVEL_CONNECT,
2523 "Socket %d closed while waiting for client headers", csp->cfd);
2524 return JB_ERR_PARSE;
2528 return JB_ERR_PARSE;
2530 if (add_to_iob(csp->client_iob, csp->config->buffer_limit, buf, len))
2532 return JB_ERR_MEMORY;
2534 p = strstr(csp->client_iob->cur, "\r\n\r\n");
2535 } while (p == NULL);
2537 log_error(LOG_LEVEL_HEADER, "Encrypted headers received completely");
2543 /*********************************************************************
2545 * Function : change_encrypted_request_destination
2547 * Description : Parse a (rewritten) request line from an encrypted
2548 * request and regenerate the http request data.
2551 * 1 : csp = Current client state (buffers, headers, etc...)
2553 * Returns : Forwards the parse_http_request() return code.
2554 * Terminates in case of memory problems.
2556 *********************************************************************/
2557 static jb_err change_encrypted_request_destination(struct client_state *csp)
2560 char *original_host = csp->http->host;
2561 int original_port = csp->http->port;
2563 log_error(LOG_LEVEL_REDIRECTS, "Rewrite detected: %s",
2564 csp->https_headers->first->str);
2565 csp->http->host = NULL;
2566 free_http_request(csp->http);
2567 err = parse_http_request(csp->https_headers->first->str, csp->http);
2568 if (JB_ERR_OK != err)
2570 log_error(LOG_LEVEL_ERROR, "Couldn't parse rewritten request: %s.",
2571 jb_err_to_string(err));
2572 freez(original_host);
2576 if (csp->http->host == NULL)
2578 char port_string[10];
2580 * The rewritten request line did not specify a host
2581 * which means we can use the original host specified
2584 csp->http->host = original_host;
2585 csp->http->port = original_port;
2586 log_error(LOG_LEVEL_REDIRECTS, "Keeping the original host: %s",
2589 * If the rewritten request line didn't contain a host
2590 * it also didn't contain a port so we can reuse the host
2593 freez(csp->http->hostport);
2594 csp->http->hostport = strdup_or_die(csp->http->host);
2595 snprintf(port_string, sizeof(port_string), ":%d", original_port);
2596 err = string_append(&csp->http->hostport, port_string);
2597 if (err != JB_ERR_OK)
2599 log_error(LOG_LEVEL_ERROR, "Failed to rebuild hostport: %s.",
2600 jb_err_to_string(err));
2605 * While the request line didn't mention it,
2606 * we're https-inspecting and want to speak TLS
2609 csp->http->server_ssl = 1;
2614 /* The rewrite filter added a host so we can ditch the original */
2615 freez(original_host);
2616 csp->http->server_ssl = csp->http->ssl;
2619 csp->http->client_ssl = 1;
2621 freez(csp->https_headers->first->str);
2622 build_request_line(csp, NULL, &csp->https_headers->first->str);
2624 if (!server_use_ssl(csp))
2626 log_error(LOG_LEVEL_REDIRECTS,
2627 "Rewritten request line results in downgrade to http");
2629 * Replace the unencryptd headers received with the
2630 * CONNECT request with the ones we received securely.
2632 destroy_list(csp->headers);
2633 csp->headers->first = csp->https_headers->first;
2634 csp->headers->last = csp->https_headers->last;
2635 csp->https_headers->first = NULL;
2636 csp->https_headers->last = NULL;
2644 /*********************************************************************
2646 * Function : process_encrypted_request
2648 * Description : Receives and parses an encrypted request.
2651 * 1 : csp = Current client state (buffers, headers, etc...)
2653 * Returns : JB_ERR_OK on success,
2654 * JB_ERR_PARSE or JB_ERR_MEMORY otherwise
2656 *********************************************************************/
2657 static jb_err process_encrypted_request(struct client_state *csp)
2662 /* Temporary copy of the client's headers before they get enlisted in csp->https_headers */
2663 struct list header_list;
2664 struct list *headers = &header_list;
2666 assert(csp->ssl_with_client_is_opened);
2668 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
2669 if (csp->config->feature_flags & RUNTIME_FEATURE_CONNECTION_KEEP_ALIVE)
2671 csp->flags |= CSP_FLAG_CLIENT_CONNECTION_KEEP_ALIVE;
2674 err = receive_encrypted_request(csp);
2675 if (err != JB_ERR_OK)
2677 if (csp->client_iob->cur == NULL ||
2678 csp->client_iob->cur == csp->client_iob->eod)
2681 * We did not receive any data, most likely because the
2682 * client is done. Don't log this as a parse failure.
2684 return JB_ERR_PARSE;
2686 /* XXX: Also used for JB_ERR_MEMORY */
2687 log_error(LOG_LEVEL_ERROR, "Failed to receive encrypted request: %s",
2688 jb_err_to_string(err));
2689 ssl_send_data_delayed(&(csp->ssl_client_attr),
2690 (const unsigned char *)CHEADER, strlen(CHEADER), get_write_delay(csp));
2694 /* We don't need get_request_line() because the whole HTTP head is buffered. */
2695 request_line = get_header(csp->client_iob);
2696 if (request_line == NULL)
2698 log_error(LOG_LEVEL_ERROR, "Failed to get the encrypted request line");
2699 ssl_send_data_delayed(&(csp->ssl_client_attr),
2700 (const unsigned char *)CHEADER, strlen(CHEADER), get_write_delay(csp));
2701 return JB_ERR_PARSE;
2703 assert(*request_line != '\0');
2705 if (client_protocol_is_unsupported(csp, request_line))
2708 * If the protocol is unsupported we're done here.
2709 * client_protocol_is_unsupported() took care of sending
2710 * the error response and logging the error message.
2712 return JB_ERR_PARSE;
2715 #ifdef FEATURE_FORCE_LOAD
2716 if (force_required(csp, request_line))
2718 csp->flags |= CSP_FLAG_FORCED;
2720 #endif /* def FEATURE_FORCE_LOAD */
2722 free_http_request(csp->http);
2724 err = parse_http_request(request_line, csp->http);
2725 /* XXX: Restore ssl setting. This is ugly */
2726 csp->http->client_ssl = 1;
2727 csp->http->server_ssl = 1;
2729 freez(request_line);
2730 if (JB_ERR_OK != err)
2732 ssl_send_data_delayed(&(csp->ssl_client_attr),
2733 (const unsigned char *)CHEADER, strlen(CHEADER), get_write_delay(csp));
2734 /* XXX: Use correct size */
2735 log_error(LOG_LEVEL_CLF, "%s - - [%T] \"Invalid request\" 400 0", csp->ip_addr_str);
2736 log_error(LOG_LEVEL_ERROR,
2737 "Couldn't parse request line received from %s: %s",
2738 csp->ip_addr_str, jb_err_to_string(err));
2740 free_http_request(csp->http);
2741 return JB_ERR_PARSE;
2744 /* Parse the rest of the client's headers. */
2748 p = get_header(csp->client_iob);
2752 /* There are no additional headers to read. */
2759 if (JB_ERR_OK != get_destination_from_https_headers(headers, csp->http))
2762 * Our attempts to get the request destination
2765 log_error(LOG_LEVEL_ERROR,
2766 "Failed to get the encrypted request destination");
2767 ssl_send_data_delayed(&(csp->ssl_client_attr),
2768 (const unsigned char *)CHEADER, strlen(CHEADER), get_write_delay(csp));
2769 return JB_ERR_PARSE;
2772 /* Split the domain we just got for pattern matching */
2773 init_domain_components(csp->http);
2775 #ifdef FEATURE_CLIENT_TAGS
2776 /* XXX: If the headers were enlisted sooner, passing csp would do. */
2777 if (csp->client_address == NULL)
2779 set_client_address(csp, headers);
2780 get_tag_list_for_client(csp->client_tags, csp->client_address);
2784 #ifdef FEATURE_TOGGLE
2785 if ((csp->flags & CSP_FLAG_TOGGLED_ON) != 0)
2789 * Determine the actions for this request after
2790 * clearing the ones from the previous one.
2792 free_current_action(csp->action);
2793 get_url_actions(csp, csp->http);
2796 enlist(csp->https_headers, csp->http->cmd);
2798 /* Append the previously read headers */
2799 err = list_append_list_unique(csp->https_headers, headers);
2800 destroy_list(headers);
2801 if (JB_ERR_OK != err)
2803 /* XXX: Send error message */
2807 /* XXX: Work around crash */
2808 csp->error_message = NULL;
2810 /* XXX: Why do this here? */
2813 err = sed_https(csp);
2814 if (JB_ERR_OK != err)
2816 ssl_send_data_delayed(&(csp->ssl_client_attr),
2817 (const unsigned char *)CHEADER, strlen(CHEADER), get_write_delay(csp));
2818 log_error(LOG_LEVEL_ERROR, "Failed to parse client request from %s.",
2820 log_error(LOG_LEVEL_CLF, "%s - - [%T] \"%s\" 400 0",
2821 csp->ip_addr_str, csp->http->cmd);
2822 return JB_ERR_PARSE;
2825 if ((NULL == csp->https_headers->first->str)
2826 || (strcmp(csp->http->cmd, csp->https_headers->first->str) &&
2827 (JB_ERR_OK != change_encrypted_request_destination(csp))))
2829 ssl_send_data_delayed(&(csp->ssl_client_attr),
2830 (const unsigned char *)MESSED_UP_REQUEST_RESPONSE,
2831 strlen(MESSED_UP_REQUEST_RESPONSE), get_write_delay(csp));
2832 log_error(LOG_LEVEL_ERROR,
2833 "Invalid request line after applying header filters.");
2834 /* XXX: Use correct size */
2835 log_error(LOG_LEVEL_CLF,
2836 "%s - - [%T] \"Invalid request generated\" 400 0", csp->ip_addr_str);
2838 return JB_ERR_PARSE;
2841 log_error(LOG_LEVEL_HEADER, "Encrypted request processed");
2842 log_applied_actions(csp->action);
2843 log_error(LOG_LEVEL_REQUEST, "https://%s%s", csp->http->hostport,
2850 /*********************************************************************
2852 * Function : cgi_page_requested
2854 * Description : Checks if a request is for an internal CGI page.
2857 * 1 : host = The host requested by the client.
2859 * Returns : 1 if a CGI page has been requested, 0 otherwise
2861 *********************************************************************/
2862 static int cgi_page_requested(const char *host)
2864 if ((0 == strcmpic(host, CGI_SITE_1_HOST))
2865 || (0 == strcmpic(host, CGI_SITE_1_HOST "."))
2866 || (0 == strcmpic(host, CGI_SITE_2_HOST))
2867 || (0 == strcmpic(host, CGI_SITE_2_HOST ".")))
2877 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
2878 /*********************************************************************
2880 * Function : continue_https_chat
2882 * Description : Behaves similar to chat() but only deals with
2883 * https-inspected requests that arrive on an already
2884 * established connection. The first request is always
2885 * served by chat() which is a lot more complex as it
2886 * has to deal with forwarding settings and connection
2889 * If a connection to the server has already been
2890 * opened it is reused unless the request is blocked
2891 * or the forwarder changed.
2893 * If a connection to the server has not yet been
2894 * opened (because the previous request was crunched),
2895 * or the forwarder changed, the connection is dropped
2896 * so that the client retries on a fresh one.
2899 * 1 : csp = Current client state (buffers, headers, etc...)
2901 * Returns : Nothing.
2903 *********************************************************************/
2904 static void continue_https_chat(struct client_state *csp)
2906 const struct forward_spec *fwd;
2908 if (JB_ERR_OK != process_encrypted_request(csp))
2913 csp->requests_received_total++;
2916 * We have an encrypted request. Check if one of the crunchers wants it.
2918 if (crunch_response_triggered(csp, crunchers_all))
2921 * Yes. The client got the crunch response and we're done here.
2925 if (csp->ssl_with_server_is_opened == 0)
2927 log_error(LOG_LEVEL_CONNECT,
2928 "Dropping the client connection on socket %d. "
2929 "The server connection has not been established yet.",
2931 csp->flags &= ~CSP_FLAG_CLIENT_CONNECTION_KEEP_ALIVE;
2934 assert(csp->server_connection.sfd != JB_INVALID_SOCKET);
2936 fwd = forward_url(csp, csp->http);
2937 if (!connection_destination_matches(&csp->server_connection, csp->http, fwd))
2939 log_error(LOG_LEVEL_CONNECT,
2940 "Dropping the client connection on socket %d with "
2941 "server socket %d connected to %s. The forwarder has changed.",
2942 csp->cfd, csp->server_connection.sfd, csp->server_connection.host);
2943 csp->flags &= ~CSP_FLAG_CLIENT_CONNECTION_KEEP_ALIVE;
2947 log_error(LOG_LEVEL_CONNECT,
2948 "Reusing server socket %d connected to %s. Requests already sent: %u.",
2949 csp->server_connection.sfd, csp->server_connection.host,
2950 csp->server_connection.requests_sent_total);
2952 if (send_https_request(csp))
2955 * Most likely the server connection timed out. We can't easily
2956 * create a new one so simply drop the client connection without a
2957 * error response to let the client retry.
2959 log_error(LOG_LEVEL_CONNECT,
2960 "Dropping client connection on socket %d. "
2961 "Forwarding the encrypted client request failed.",
2965 csp->server_connection.requests_sent_total++;
2966 handle_established_connection(csp);
2967 freez(csp->receive_buffer);
2969 #endif /* def FEATURE_CONNECTION_KEEP_ALIVE */
2973 /*********************************************************************
2975 * Function : handle_established_connection
2977 * Description : Shuffle data between client and server once the
2978 * connection has been established.
2981 * 1 : csp = Current client state (buffers, headers, etc...)
2983 * Returns : Nothing.
2985 *********************************************************************/
2986 static void handle_established_connection(struct client_state *csp)
2992 struct pollfd poll_fds[2];
2996 struct timeval timeout;
2999 int ms_iis5_hack = 0;
3000 unsigned long long byte_count = 0;
3001 struct http_request *http;
3002 long len = 0; /* for buffer sizes (and negative error codes) */
3003 int buffer_and_filter_content = 0;
3004 unsigned int write_delay;
3005 #ifdef FEATURE_HTTPS_INSPECTION
3007 int use_ssl_tunnel = 0;
3008 csp->dont_verify_certificate = 0;
3010 if (csp->http->ssl && !(csp->action->flags & ACTION_HTTPS_INSPECTION))
3012 /* Pass encrypted content without filtering. */
3017 /* Skeleton for HTTP response, if we should intercept the request */
3018 struct http_response *rsp;
3019 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
3020 int watch_client_socket;
3023 csp->receive_buffer_size = csp->config->receive_buffer_size;
3024 csp->receive_buffer = zalloc(csp->receive_buffer_size + 1);
3025 if (csp->receive_buffer == NULL)
3027 log_error(LOG_LEVEL_ERROR,
3028 "Out of memory. Failed to allocate the receive buffer.");
3029 rsp = cgi_error_memory();
3030 send_crunch_response(csp, rsp);
3037 maxfd = (csp->cfd > csp->server_connection.sfd) ?
3038 csp->cfd : csp->server_connection.sfd;
3041 /* pass data between the client and server
3042 * until one or the other shuts down the connection.
3047 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
3048 watch_client_socket = 0 == (csp->flags & CSP_FLAG_PIPELINED_REQUEST_WAITING);
3050 write_delay = get_write_delay(csp);
3056 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
3057 if (!watch_client_socket)
3059 maxfd = csp->server_connection.sfd;
3062 #endif /* def FEATURE_CONNECTION_KEEP_ALIVE */
3064 FD_SET(csp->cfd, &rfds);
3067 FD_SET(csp->server_connection.sfd, &rfds);
3068 #endif /* ndef HAVE_POLL */
3070 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
3071 if ((csp->flags & CSP_FLAG_CHUNKED)
3072 && !(csp->flags & CSP_FLAG_CONTENT_LENGTH_SET)
3073 && ((csp->iob->eod - csp->iob->cur) >= 5)
3074 && !memcmp(csp->iob->eod-5, "0\r\n\r\n", 5))
3077 * XXX: This check should be obsolete now,
3078 * but let's wait a while to be sure.
3080 log_error(LOG_LEVEL_CONNECT,
3081 "Looks like we got the last chunk together with "
3082 "the server headers but didn't detect it earlier. "
3083 "We better stop reading.");
3084 byte_count = (unsigned long long)(csp->iob->eod - csp->iob->cur);
3085 csp->expected_content_length = byte_count;
3086 csp->flags |= CSP_FLAG_CONTENT_LENGTH_SET;
3088 if (server_body && server_response_is_complete(csp, byte_count))
3090 if (csp->expected_content_length == byte_count)
3092 log_error(LOG_LEVEL_CONNECT,
3093 "Done reading from server. Content length: %llu as expected. "
3094 "Bytes most recently read: %ld.",
3099 log_error(LOG_LEVEL_CONNECT,
3100 "Done reading from server. Expected content length: %llu. "
3101 "Actual content length: %llu. Bytes most recently read: %ld.",
3102 csp->expected_content_length, byte_count, len);
3106 * XXX: Should not jump around, handle_established_connection()
3107 * is complicated enough already.
3111 #endif /* FEATURE_CONNECTION_KEEP_ALIVE */
3114 poll_fds[0].fd = csp->cfd;
3115 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
3116 if (!watch_client_socket)
3119 * Ignore incoming data, but still watch out
3120 * for disconnects etc. These flags are always
3121 * implied anyway but explicitly setting them
3124 poll_fds[0].events = POLLERR|POLLHUP;
3129 poll_fds[0].events = POLLIN;
3131 poll_fds[1].fd = csp->server_connection.sfd;
3132 poll_fds[1].events = POLLIN;
3133 n = poll(poll_fds, 2, csp->config->socket_timeout * 1000);
3135 timeout.tv_sec = csp->config->socket_timeout;
3136 timeout.tv_usec = 0;
3137 n = select((int)maxfd + 1, &rfds, NULL, NULL, &timeout);
3138 #endif /* def HAVE_POLL */
3140 /*server or client not responding in timeout */
3143 log_error(LOG_LEVEL_CONNECT, "Socket timeout %d reached: %s",
3144 csp->config->socket_timeout, http->url);
3145 if ((byte_count == 0) && (http->ssl == 0))
3147 send_crunch_response(csp, error_response(csp, "connection-timeout"));
3149 mark_server_socket_tainted(csp);
3150 #ifdef FEATURE_HTTPS_INSPECTION
3151 close_client_and_server_ssl_connections(csp);
3158 log_error(LOG_LEVEL_ERROR, "poll() failed!: %E");
3160 log_error(LOG_LEVEL_ERROR, "select() failed!: %E");
3162 mark_server_socket_tainted(csp);
3163 #ifdef FEATURE_HTTPS_INSPECTION
3164 close_client_and_server_ssl_connections(csp);
3170 * This is the body of the browser's request,
3171 * just read and write it.
3173 * Receives data from browser and sends it to server
3175 * XXX: Make sure the client doesn't use pipelining
3176 * behind Privoxy's back.
3179 if ((poll_fds[0].revents & (POLLERR|POLLHUP|POLLNVAL)) != 0)
3181 log_error(LOG_LEVEL_CONNECT,
3182 "The client socket %d has become unusable while "
3183 "the server socket %d is still open.",
3184 csp->cfd, csp->server_connection.sfd);
3185 mark_server_socket_tainted(csp);
3189 if (poll_fds[0].revents != 0)
3191 if (FD_ISSET(csp->cfd, &rfds))
3192 #endif /* def HAVE_POLL*/
3194 int max_bytes_to_read = (int)csp->receive_buffer_size;
3196 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
3197 if ((csp->flags & CSP_FLAG_CLIENT_REQUEST_COMPLETELY_READ))
3199 if (data_is_available(csp->cfd, 0))
3202 * If the next request is already waiting, we have
3203 * to stop select()ing the client socket. Otherwise
3204 * we would always return right away and get nothing
3207 watch_client_socket = 0;
3208 log_error(LOG_LEVEL_CONNECT,
3209 "Stop watching client socket %d. "
3210 "There's already another request waiting.",
3215 * If the client socket is set, but there's no data
3216 * available on the socket, the client went fishing
3217 * and continuing talking to the server makes no sense.
3219 log_error(LOG_LEVEL_CONNECT,
3220 "The client closed socket %d while "
3221 "the server socket %d is still open.",
3222 csp->cfd, csp->server_connection.sfd);
3223 mark_server_socket_tainted(csp);
3226 if (csp->expected_client_content_length != 0)
3228 if (csp->expected_client_content_length < csp->receive_buffer_size)
3230 max_bytes_to_read = (int)csp->expected_client_content_length;
3232 log_error(LOG_LEVEL_CONNECT,
3233 "Waiting for up to %d bytes from the client.",
3236 assert(max_bytes_to_read <= csp->receive_buffer_size);
3237 #endif /* def FEATURE_CONNECTION_KEEP_ALIVE */
3239 #ifdef FEATURE_HTTPS_INSPECTION
3240 if (client_use_ssl(csp))
3242 if (csp->http->status == 101)
3244 len = ssl_recv_data(&(csp->ssl_client_attr),
3245 (unsigned char *)csp->receive_buffer,
3246 (size_t)max_bytes_to_read);
3249 log_error(LOG_LEVEL_ERROR, "Failed to receive data "
3250 "on client socket %d for an upgraded connection",
3256 log_error(LOG_LEVEL_CONNECT, "Done receiving data "
3257 "on client socket %d for an upgraded connection",
3261 byte_count += (unsigned long long)len;
3262 len = ssl_send_data(&(csp->ssl_server_attr),
3263 (unsigned char *)csp->receive_buffer, (size_t)len);
3266 log_error(LOG_LEVEL_ERROR, "Failed to send data "
3267 "on server socket %d for an upgraded connection",
3268 csp->server_connection.sfd);
3273 log_error(LOG_LEVEL_CONNECT, "Breaking with TLS/SSL.");
3277 #endif /* def FEATURE_HTTPS_INSPECTION */
3279 len = read_socket(csp->cfd, csp->receive_buffer, max_bytes_to_read);
3283 /* XXX: not sure if this is necessary. */
3284 mark_server_socket_tainted(csp);
3285 break; /* "game over, man" */
3288 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
3289 if (csp->expected_client_content_length != 0)
3291 assert(len <= max_bytes_to_read);
3292 csp->expected_client_content_length -= (unsigned)len;
3293 log_error(LOG_LEVEL_CONNECT,
3294 "Expected client content length set to %llu "
3295 "after reading %ld bytes.",
3296 csp->expected_client_content_length, len);
3297 if (csp->expected_client_content_length == 0)
3299 log_error(LOG_LEVEL_CONNECT,
3300 "Done reading from the client.");
3301 csp->flags |= CSP_FLAG_CLIENT_REQUEST_COMPLETELY_READ;
3304 #endif /* def FEATURE_CONNECTION_KEEP_ALIVE */
3306 if (write_socket(csp->server_connection.sfd, csp->receive_buffer, (size_t)len))
3308 log_error(LOG_LEVEL_ERROR, "write to: %s failed: %E", http->host);
3309 mark_server_socket_tainted(csp);
3317 * The server wants to talk. It could be the header or the body.
3318 * If `hdr' is null, then it's the header otherwise it's the body.
3319 * FIXME: Does `hdr' really mean `host'? No.
3322 if (poll_fds[1].revents != 0)
3324 if (FD_ISSET(csp->server_connection.sfd, &rfds))
3325 #endif /* HAVE_POLL */
3327 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
3329 * If we are buffering content, we don't want to eat up to
3330 * buffer-limit bytes if the client no longer cares about them.
3331 * If we aren't buffering, however, a dead client socket will be
3332 * noticed pretty much right away anyway, so we can reduce the
3333 * overhead by skipping the check.
3335 if (buffer_and_filter_content && !socket_is_still_alive(csp->cfd))
3338 log_error(LOG_LEVEL_CONNECT,
3339 "The server still wants to talk, but the client may already have hung up on us.");
3341 log_error(LOG_LEVEL_CONNECT,
3342 "The server still wants to talk, but the client hung up on us.");
3343 mark_server_socket_tainted(csp);
3344 #ifdef FEATURE_HTTPS_INSPECTION
3345 close_client_and_server_ssl_connections(csp);
3348 #endif /* def _WIN32 */
3350 #endif /* def FEATURE_CONNECTION_KEEP_ALIVE */
3352 #ifdef FEATURE_HTTPS_INSPECTION
3354 * Reading data from standard or secured connection (HTTP/HTTPS)
3356 if (server_use_ssl(csp))
3358 len = ssl_recv_data(&(csp->ssl_server_attr),
3359 (unsigned char *)csp->receive_buffer, csp->receive_buffer_size);
3364 len = read_socket(csp->server_connection.sfd, csp->receive_buffer,
3365 (int)csp->receive_buffer_size);
3370 log_error(LOG_LEVEL_ERROR, "read from: %s failed: %E", http->host);
3372 if ((http->ssl && (csp->fwd == NULL))
3373 #ifdef FEATURE_HTTPS_INSPECTION
3379 * Just hang up. We already confirmed the client's CONNECT
3380 * request with status code 200 and unencrypted content is
3381 * no longer welcome.
3383 log_error(LOG_LEVEL_ERROR,
3384 "CONNECT already confirmed. Unable to tell the client about the problem.");
3387 else if (byte_count)
3390 * Just hang up. We already transmitted the original headers
3391 * and parts of the original content and therefore missed the
3392 * chance to send an error message (without risking data corruption).
3394 * XXX: we could retry with a fancy range request here.
3396 log_error(LOG_LEVEL_ERROR, "Already forwarded the original headers. "
3397 "Unable to tell the client about the problem.");
3398 mark_server_socket_tainted(csp);
3399 #ifdef FEATURE_HTTPS_INSPECTION
3400 close_client_and_server_ssl_connections(csp);
3405 * XXX: Consider handling the cases above the same.
3407 mark_server_socket_tainted(csp);
3411 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
3412 if (csp->flags & CSP_FLAG_CHUNKED)
3414 if ((len >= 5) && !memcmp(csp->receive_buffer+len-5, "0\r\n\r\n", 5))
3416 /* XXX: this is a temporary hack */
3417 log_error(LOG_LEVEL_CONNECT,
3418 "Looks like we reached the end of the last chunk. "
3419 "We better stop reading.");
3420 csp->expected_content_length = byte_count + (unsigned long long)len;
3421 csp->flags |= CSP_FLAG_CONTENT_LENGTH_SET;
3425 #endif /* FEATURE_CONNECTION_KEEP_ALIVE */
3428 * This is guaranteed by allocating with zalloc_or_die()
3429 * and never (intentionally) writing to the last byte.
3431 * csp->receive_buffer_size is the size of the part of the
3432 * buffer we intentionally write to, but we actually
3433 * allocated csp->receive_buffer_size+1 bytes so the assertion
3434 * stays within the allocated range.
3436 assert(csp->receive_buffer[csp->receive_buffer_size] == '\0');
3439 * Add a trailing zero to let be able to use string operations.
3440 * XXX: do we still need this with filter_popups gone?
3442 assert(len <= csp->receive_buffer_size);
3443 csp->receive_buffer[len] = '\0';
3446 * Normally, this would indicate that we've read
3447 * as much as the server has sent us and we can
3448 * close the client connection. However, Microsoft
3449 * in its wisdom has released IIS/5 with a bug that
3450 * prevents it from sending the trailing \r\n in
3451 * a 302 redirect header (and possibly other headers).
3452 * To work around this if we've haven't parsed
3453 * a full header we'll append a trailing \r\n
3454 * and see if this now generates a valid one.
3456 * This hack shouldn't have any impacts. If we've
3457 * already transmitted the header or if this is a
3458 * SSL connection, then we won't bother with this
3459 * hack. So we only work on partially received
3460 * headers. If we append a \r\n and this still
3461 * doesn't generate a valid header, then we won't
3462 * transmit anything to the client.
3467 if (server_body || (http->ssl
3468 #ifdef FEATURE_HTTPS_INSPECTION
3474 * If we have been buffering up the document,
3475 * now is the time to apply content modification
3476 * and send the result to the client.
3478 if (buffer_and_filter_content)
3480 p = execute_content_filters(csp);
3482 * If content filtering fails, use the original
3483 * buffer and length.
3484 * (see p != NULL ? p : csp->iob->cur below)
3488 csp->content_length = (size_t)(csp->iob->eod - csp->iob->cur);
3490 #ifdef FEATURE_COMPRESSION
3491 else if ((csp->flags & CSP_FLAG_CLIENT_SUPPORTS_DEFLATE)
3492 && (csp->content_length > LOWER_LENGTH_LIMIT_FOR_COMPRESSION))
3494 char *compressed_content = compress_buffer(p,
3495 (size_t *)&csp->content_length, csp->config->compression_level);
3496 if (compressed_content != NULL)
3499 p = compressed_content;
3500 csp->flags |= CSP_FLAG_BUFFERED_CONTENT_DEFLATED;
3505 if (JB_ERR_OK != update_server_headers(csp))
3507 log_error(LOG_LEVEL_FATAL,
3508 "Failed to update server headers. after filtering.");
3511 hdr = list_to_text(csp->headers);
3514 /* FIXME Should handle error properly */
3515 log_error(LOG_LEVEL_FATAL, "Out of memory parsing server header");
3518 #ifdef FEATURE_HTTPS_INSPECTION
3520 * Sending data with standard or secured connection (HTTP/HTTPS)
3522 if (client_use_ssl(csp))
3524 if ((ssl_send_data_delayed(&(csp->ssl_client_attr),
3525 (const unsigned char *)hdr, strlen(hdr),
3526 get_write_delay(csp)) < 0)
3527 || (ssl_send_data_delayed(&(csp->ssl_client_attr),
3528 (const unsigned char *) ((p != NULL) ? p : csp->iob->cur),
3529 csp->content_length, get_write_delay(csp)) < 0))
3531 log_error(LOG_LEVEL_ERROR, "write modified content to "
3532 "client over TLS/SSL failed");
3535 mark_server_socket_tainted(csp);
3536 close_client_and_server_ssl_connections(csp);
3541 #endif /* def FEATURE_HTTPS_INSPECTION */
3543 if (write_socket_delayed(csp->cfd, hdr, strlen(hdr), write_delay)
3544 || write_socket_delayed(csp->cfd, ((p != NULL) ? p : csp->iob->cur),
3545 (size_t)csp->content_length, write_delay))
3547 log_error(LOG_LEVEL_ERROR, "write modified content to client failed: %E");
3550 mark_server_socket_tainted(csp);
3559 break; /* "game over, man" */
3563 * This is NOT the body, so
3564 * Let's pretend the server just sent us a blank line.
3566 snprintf(csp->receive_buffer, csp->receive_buffer_size, "\r\n");
3567 len = (int)strlen(csp->receive_buffer);
3570 * Now, let the normal header parsing algorithm below do its
3571 * job. If it fails, we'll exit instead of continuing.
3578 * If we're in the body of the server document, just write it to
3579 * the client, unless we need to buffer the body for later
3580 * content-filtering.
3582 if (server_body || (http->ssl
3583 #ifdef FEATURE_HTTPS_INSPECTION
3588 if (buffer_and_filter_content)
3591 * If there is no memory left for buffering the content, or the buffer limit
3592 * has been reached, switch to non-filtering mode, i.e. make & write the
3593 * header, flush the iob and buf, and get out of the way.
3595 if (add_to_iob(csp->iob, csp->config->buffer_limit, csp->receive_buffer, len))
3600 log_error(LOG_LEVEL_INFO,
3601 "Flushing header and buffers. Stepping back from filtering.");
3603 hdr = list_to_text(csp->headers);
3607 * Memory is too tight to even generate the header.
3608 * Send our static "Out-of-memory" page.
3610 log_error(LOG_LEVEL_ERROR, "Out of memory while trying to flush.");
3611 rsp = cgi_error_memory();
3612 send_crunch_response(csp, rsp);
3613 mark_server_socket_tainted(csp);
3614 #ifdef FEATURE_HTTPS_INSPECTION
3615 close_client_and_server_ssl_connections(csp);
3619 hdrlen = strlen(hdr);
3621 #ifdef FEATURE_HTTPS_INSPECTION
3623 * Sending data with standard or secured connection (HTTP/HTTPS)
3625 if (client_use_ssl(csp))
3627 if ((ssl_send_data_delayed(&(csp->ssl_client_attr),
3628 (const unsigned char *)hdr, hdrlen, get_write_delay(csp)) < 0)
3629 || ((flushed = ssl_flush_socket(&(csp->ssl_client_attr),
3631 || (ssl_send_data_delayed(&(csp->ssl_client_attr),
3632 (const unsigned char *)csp->receive_buffer, (size_t)len,
3633 get_write_delay(csp)) < 0))
3635 log_error(LOG_LEVEL_CONNECT,
3636 "Flush header and buffers to client failed");
3638 mark_server_socket_tainted(csp);
3639 close_client_and_server_ssl_connections(csp);
3644 #endif /* def FEATURE_HTTPS_INSPECTION */
3646 if (write_socket_delayed(csp->cfd, hdr, hdrlen, write_delay)
3647 || ((flushed = flush_iob(csp->cfd, csp->iob, write_delay)) < 0)
3648 || write_socket_delayed(csp->cfd, csp->receive_buffer, (size_t)len,
3651 log_error(LOG_LEVEL_CONNECT,
3652 "Flush header and buffers to client failed: %E");
3654 mark_server_socket_tainted(csp);
3660 * Reset the byte_count to the amount of bytes
3661 * we just flushed. len will be added a few lines below,
3662 * hdrlen doesn't matter for LOG_LEVEL_CLF.
3664 byte_count = (unsigned long long)flushed;
3666 buffer_and_filter_content = 0;
3672 #ifdef FEATURE_HTTPS_INSPECTION
3674 * Sending data with standard or secured connection (HTTP/HTTPS)
3676 if (client_use_ssl(csp))
3678 ret = ssl_send_data_delayed(&(csp->ssl_client_attr),
3679 (const unsigned char *)csp->receive_buffer, (size_t)len,
3680 get_write_delay(csp));
3683 log_error(LOG_LEVEL_ERROR,
3684 "Sending data to client failed");
3685 mark_server_socket_tainted(csp);
3686 close_client_and_server_ssl_connections(csp);
3691 #endif /* def FEATURE_HTTPS_INSPECTION */
3693 if (write_socket_delayed(csp->cfd, csp->receive_buffer,
3694 (size_t)len, write_delay))
3696 log_error(LOG_LEVEL_ERROR, "write to client failed: %E");
3697 mark_server_socket_tainted(csp);
3702 byte_count += (unsigned long long)len;
3708 * We're still looking for the end of the server's header.
3709 * Buffer up the data we just read. If that fails, there's
3710 * little we can do but send our static out-of-memory page.
3712 if (add_to_iob(csp->iob, csp->config->buffer_limit, csp->receive_buffer, len))
3714 log_error(LOG_LEVEL_ERROR, "Out of memory while looking for end of server headers.");
3715 rsp = cgi_error_memory();
3716 send_crunch_response(csp, rsp);
3717 mark_server_socket_tainted(csp);
3718 #ifdef FEATURE_HTTPS_INSPECTION
3719 close_client_and_server_ssl_connections(csp);
3724 /* Convert iob into something sed() can digest */
3725 if (JB_ERR_PARSE == get_server_headers(csp))
3730 * Well, we tried our MS IIS/5 hack and it didn't work.
3731 * The header is incomplete and there isn't anything
3732 * we can do about it.
3734 log_error(LOG_LEVEL_ERROR, "Invalid server headers. "
3735 "Applying the MS IIS5 hack didn't help.");
3736 log_error(LOG_LEVEL_CLF,
3737 "%s - - [%T] \"%s\" 502 0", csp->ip_addr_str, http->cmd);
3738 #ifdef FEATURE_HTTPS_INSPECTION
3740 * Sending data with standard or secured connection (HTTP/HTTPS)
3742 if (client_use_ssl(csp))
3744 ssl_send_data_delayed(&(csp->ssl_client_attr),
3745 (const unsigned char *)INVALID_SERVER_HEADERS_RESPONSE,
3746 strlen(INVALID_SERVER_HEADERS_RESPONSE), get_write_delay(csp));
3749 #endif /* def FEATURE_HTTPS_INSPECTION */
3751 write_socket_delayed(csp->cfd,
3752 INVALID_SERVER_HEADERS_RESPONSE,
3753 strlen(INVALID_SERVER_HEADERS_RESPONSE), write_delay);
3755 mark_server_socket_tainted(csp);
3756 #ifdef FEATURE_HTTPS_INSPECTION
3757 close_client_and_server_ssl_connections(csp);
3764 * Since we have to wait for more from the server before
3765 * we can parse the headers we just continue here.
3767 log_error(LOG_LEVEL_CONNECT,
3768 "Continuing buffering server headers from socket %d. "
3769 "Bytes most recently read: %ld.", csp->cfd, len);
3776 * Account for the content bytes we
3777 * might have gotten with the headers.
3779 assert(csp->iob->eod >= csp->iob->cur);
3780 byte_count = (unsigned long long)(csp->iob->eod - csp->iob->cur);
3783 /* Did we actually get anything? */
3784 if (NULL == csp->headers->first)
3786 if ((csp->flags & CSP_FLAG_REUSED_CLIENT_CONNECTION))
3788 log_error(LOG_LEVEL_ERROR,
3789 "No server or forwarder response received on socket %d. "
3790 "Closing client socket %d without sending data.",
3791 csp->server_connection.sfd, csp->cfd);
3792 log_error(LOG_LEVEL_CLF,
3793 "%s - - [%T] \"%s\" 502 0", csp->ip_addr_str, http->cmd);
3797 log_error(LOG_LEVEL_ERROR,
3798 "No server or forwarder response received on socket %d.",
3799 csp->server_connection.sfd);
3800 send_crunch_response(csp, error_response(csp, "no-server-data"));
3802 free_http_request(http);
3803 mark_server_socket_tainted(csp);
3804 #ifdef FEATURE_HTTPS_INSPECTION
3805 close_client_and_server_ssl_connections(csp);
3810 if (!csp->headers->first->str)
3812 log_error(LOG_LEVEL_ERROR, "header search: csp->headers->first->str == NULL, assert will be called");
3814 assert(csp->headers->first->str);
3816 if (strncmpic(csp->headers->first->str, "HTTP", 4) &&
3817 strncmpic(csp->headers->first->str, "ICY", 3))
3820 * It doesn't look like a HTTP (or Shoutcast) response:
3821 * tell the client and log the problem.
3823 if (strlen(csp->headers->first->str) > 30)
3825 csp->headers->first->str[30] = '\0';
3827 log_error(LOG_LEVEL_ERROR,
3828 "Invalid server or forwarder response. Starts with: %s",
3829 csp->headers->first->str);
3830 log_error(LOG_LEVEL_CLF,
3831 "%s - - [%T] \"%s\" 502 0", csp->ip_addr_str, http->cmd);
3832 #ifdef FEATURE_HTTPS_INSPECTION
3834 * Sending data with standard or secured connection (HTTP/HTTPS)
3836 if (client_use_ssl(csp))
3838 ssl_send_data_delayed(&(csp->ssl_client_attr),
3839 (const unsigned char *)INVALID_SERVER_HEADERS_RESPONSE,
3840 strlen(INVALID_SERVER_HEADERS_RESPONSE),
3841 get_write_delay(csp));
3844 #endif /* def FEATURE_HTTPS_INSPECTION */
3846 write_socket_delayed(csp->cfd, INVALID_SERVER_HEADERS_RESPONSE,
3847 strlen(INVALID_SERVER_HEADERS_RESPONSE), write_delay);
3849 free_http_request(http);
3850 mark_server_socket_tainted(csp);
3851 #ifdef FEATURE_HTTPS_INSPECTION
3852 close_client_and_server_ssl_connections(csp);
3858 * We have now received the entire server header,
3859 * filter it and send the result to the client
3861 if (JB_ERR_OK != sed(csp, FILTER_SERVER_HEADERS))
3863 log_error(LOG_LEVEL_CLF,
3864 "%s - - [%T] \"%s\" 502 0", csp->ip_addr_str, http->cmd);
3865 #ifdef FEATURE_HTTPS_INSPECTION
3867 * Sending data with standard or secured connection (HTTP/HTTPS)
3869 if (client_use_ssl(csp))
3871 ssl_send_data_delayed(&(csp->ssl_client_attr),
3872 (const unsigned char *)INVALID_SERVER_HEADERS_RESPONSE,
3873 strlen(INVALID_SERVER_HEADERS_RESPONSE),
3874 get_write_delay(csp));
3879 write_socket_delayed(csp->cfd, INVALID_SERVER_HEADERS_RESPONSE,
3880 strlen(INVALID_SERVER_HEADERS_RESPONSE), write_delay);
3882 free_http_request(http);
3883 mark_server_socket_tainted(csp);
3884 #ifdef FEATURE_HTTPS_INSPECTION
3885 close_client_and_server_ssl_connections(csp);
3889 hdr = list_to_text(csp->headers);
3892 /* FIXME Should handle error properly */
3893 log_error(LOG_LEVEL_FATAL, "Out of memory parsing server header");
3896 if ((csp->flags & CSP_FLAG_CHUNKED)
3897 && !(csp->flags & CSP_FLAG_CONTENT_LENGTH_SET)
3898 && ((csp->iob->eod - csp->iob->cur) >= 5)
3899 && !memcmp(csp->iob->eod-5, "0\r\n\r\n", 5))
3901 log_error(LOG_LEVEL_CONNECT,
3902 "Looks like we got the last chunk together with "
3903 "the server headers. We better stop reading.");
3904 byte_count = (unsigned long long)(csp->iob->eod - csp->iob->cur);
3905 csp->expected_content_length = byte_count;
3906 csp->flags |= CSP_FLAG_CONTENT_LENGTH_SET;
3909 csp->server_connection.response_received = time(NULL);
3911 if (crunch_response_triggered(csp, crunchers_light))
3914 * One of the tags created by a server-header
3915 * tagger triggered a crunch. We already
3916 * delivered the crunch response to the client
3917 * and are done here after cleaning up.
3920 mark_server_socket_tainted(csp);
3921 #ifdef FEATURE_HTTPS_INSPECTION
3922 close_client_and_server_ssl_connections(csp);
3927 /* Buffer and pcrs filter this if appropriate. */
3928 buffer_and_filter_content = content_requires_filtering(csp);
3930 if (!buffer_and_filter_content)
3933 * Write the server's (modified) header to
3934 * the client (along with anything else that
3935 * may be in the buffer). Use standard or secured
3938 #ifdef FEATURE_HTTPS_INSPECTION
3939 if (client_use_ssl(csp))
3941 if ((ssl_send_data_delayed(&(csp->ssl_client_attr),
3942 (const unsigned char *)hdr, strlen(hdr),
3943 get_write_delay(csp)) < 0)
3944 || (len = ssl_flush_socket(&(csp->ssl_client_attr),
3947 log_error(LOG_LEVEL_CONNECT, "Write header to client failed");
3950 * The write failed, so don't bother mentioning it
3951 * to the client... it probably can't hear us anyway.
3954 mark_server_socket_tainted(csp);
3955 #ifdef FEATURE_HTTPS_INSPECTION
3956 close_client_and_server_ssl_connections(csp);
3962 #endif /* def FEATURE_HTTPS_INSPECTION */
3964 if (write_socket_delayed(csp->cfd, hdr, strlen(hdr), write_delay)
3965 || ((len = flush_iob(csp->cfd, csp->iob, write_delay)) < 0))
3967 log_error(LOG_LEVEL_ERROR,
3968 "write header to client failed");
3970 * The write failed, so don't bother mentioning it
3971 * to the client... it probably can't hear us anyway.
3974 mark_server_socket_tainted(csp);
3980 /* we're finished with the server's header */
3986 * If this was a MS IIS/5 hack then it means the server
3987 * has already closed the connection. Nothing more to read.
3992 log_error(LOG_LEVEL_ERROR,
3993 "Closed server connection detected. "
3994 "Applying the MS IIS5 hack didn't help.");
3995 log_error(LOG_LEVEL_CLF,
3996 "%s - - [%T] \"%s\" 502 0", csp->ip_addr_str, http->cmd);
3997 #ifdef FEATURE_HTTPS_INSPECTION
3999 * Sending data with standard or secured connection (HTTP/HTTPS)
4001 if (client_use_ssl(csp))
4003 ssl_send_data_delayed(&(csp->ssl_client_attr),
4004 (const unsigned char *)INVALID_SERVER_HEADERS_RESPONSE,
4005 strlen(INVALID_SERVER_HEADERS_RESPONSE),
4006 get_write_delay(csp));
4009 #endif /* def FEATURE_HTTPS_INSPECTION */
4011 write_socket_delayed(csp->cfd, INVALID_SERVER_HEADERS_RESPONSE,
4012 strlen(INVALID_SERVER_HEADERS_RESPONSE), write_delay);
4014 mark_server_socket_tainted(csp);
4015 #ifdef FEATURE_HTTPS_INSPECTION
4016 close_client_and_server_ssl_connections(csp);
4023 mark_server_socket_tainted(csp);
4024 #ifdef FEATURE_HTTPS_INSPECTION
4025 close_client_and_server_ssl_connections(csp);
4027 return; /* huh? we should never get here */
4030 if (csp->content_length == 0)
4033 * If Privoxy didn't recalculate the Content-Length,
4034 * byte_count is still correct.
4036 csp->content_length = byte_count;
4039 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
4040 if ((csp->flags & CSP_FLAG_CONTENT_LENGTH_SET)
4041 && (csp->expected_content_length != byte_count))
4043 log_error(LOG_LEVEL_CONNECT,
4044 "Received %llu bytes while expecting %llu.",
4045 byte_count, csp->expected_content_length);
4046 mark_server_socket_tainted(csp);
4050 #ifdef FEATURE_HTTPS_INSPECTION
4051 if (client_use_ssl(csp))
4053 log_error(LOG_LEVEL_CLF, "%s - - [%T] \"%s https://%s%s %s\" 200 %llu",
4054 csp->ip_addr_str, http->gpc, http->hostport, http->path,
4055 http->version, csp->content_length);
4060 log_error(LOG_LEVEL_CLF, "%s - - [%T] \"%s\" 200 %llu",
4061 csp->ip_addr_str, http->ocmd, csp->content_length);
4063 csp->server_connection.timestamp = time(NULL);
4067 /*********************************************************************
4071 * Description : Once a connection from the client has been accepted,
4072 * this function is called (via serve()) to handle the
4073 * main business of the communication. This function
4074 * returns after dealing with a single request. It can
4075 * be called multiple times with the same client socket
4076 * if the client is keeping the connection alive.
4078 * The decision whether or not a client connection will
4079 * be kept alive is up to the caller which also must
4080 * close the client socket when done.
4082 * FIXME: chat is nearly thousand lines long.
4086 * 1 : csp = Current client state (buffers, headers, etc...)
4088 * Returns : Nothing.
4090 *********************************************************************/
4091 static void chat(struct client_state *csp)
4093 const struct forward_spec *fwd;
4094 struct http_request *http;
4095 /* Skeleton for HTTP response, if we should intercept the request */
4096 struct http_response *rsp;
4097 #ifdef FEATURE_HTTPS_INSPECTION
4098 int use_ssl_tunnel = 0;
4103 if (receive_client_request(csp) != JB_ERR_OK)
4107 if (parse_client_request(csp) != JB_ERR_OK)
4112 /* decide how to route the HTTP request */
4113 fwd = forward_url(csp, http);
4115 #ifdef FEATURE_HTTPS_INSPECTION
4117 * Setting flags to use old solution with SSL tunnel and to disable
4118 * certificate verification.
4120 if (csp->http->ssl && !(csp->action->flags & ACTION_HTTPS_INSPECTION)
4121 && !cgi_page_requested(csp->http->host))
4126 if (http->ssl && (csp->action->flags & ACTION_IGNORE_CERTIFICATE_ERRORS))
4128 csp->dont_verify_certificate = 1;
4133 * build the http request to send to the server
4134 * we have to do one of the following:
4136 * create = use the original HTTP request to create a new
4137 * HTTP request that has either the path component
4138 * without the http://domainspec (w/path) or the
4139 * full orininal URL (w/url)
4140 * Note that the path and/or the HTTP version may
4141 * have been altered by now.
4143 * SSL proxy = Open a socket to the host:port of the server
4144 * and create TLS/SSL connection with server and
4145 * with client. Then behave like mediator between
4146 * client and server over TLS/SSL.
4148 * SSL proxy = Pass the request unchanged if forwarding a CONNECT
4149 * with request to a parent proxy. Note that we'll be sending
4150 * forwarding the CFAIL message ourselves if connecting to the parent
4151 * fails, but we won't send a CSUCCEED message if it works,
4152 * since that would result in a double message (ours and the
4153 * parent's). After sending the request to the parent, we
4154 * must parse answer and send it to client. If connection
4155 * with server is established, we do TLS/SSL proxy. Otherwise
4156 * we send parent response to client and close connections.
4158 * here's the matrix:
4161 * +--------+--------+
4163 * 0 | create | SSL |
4164 * | w/path | proxy |
4165 * Forwarding +--------+--------+
4167 * 1 | create | proxy |
4168 * | w/url |+forward|
4169 * +--------+--------+
4173 #ifdef FEATURE_HTTPS_INSPECTION
4175 * Presetting SSL client and server flags
4177 if (http->ssl && !use_ssl_tunnel)
4179 http->client_ssl = 1;
4180 http->server_ssl = 1;
4184 http->client_ssl = 0;
4185 http->server_ssl = 0;
4189 #ifdef FEATURE_HTTPS_INSPECTION
4191 * Log the request unless we're https inspecting
4192 * in which case we don't have the path yet and
4193 * will log the request later.
4195 if (!client_use_ssl(csp))
4198 log_error(LOG_LEVEL_REQUEST, "%s%s", http->hostport, http->path);
4201 if (http->ssl && connect_port_is_forbidden(csp))
4203 const char *acceptable_connect_ports =
4204 csp->action->string[ACTION_STRING_LIMIT_CONNECT];
4205 assert(NULL != acceptable_connect_ports);
4206 log_error(LOG_LEVEL_INFO, "Request from %s marked for blocking. "
4207 "limit-connect{%s} doesn't allow CONNECT requests to %s",
4208 csp->ip_addr_str, acceptable_connect_ports, csp->http->hostport);
4209 csp->action->flags |= ACTION_BLOCK;
4211 #ifdef FEATURE_HTTPS_INSPECTION
4212 http->client_ssl = 0;
4213 http->server_ssl = 0;
4218 freez(csp->headers->first->str);
4219 build_request_line(csp, fwd, &csp->headers->first->str);
4222 * We have a request. Check if one of the crunchers wants it
4223 * unless the client wants to use TLS/SSL in which case we
4224 * haven't setup the TLS context yet and will send the crunch
4228 #ifdef FEATURE_HTTPS_INSPECTION
4229 !client_use_ssl(csp) &&
4231 crunch_response_triggered(csp, crunchers_all))
4234 * Yes. The client got the crunch response and we're done here.
4239 log_applied_actions(csp->action);
4240 if (fwd->forward_host)
4242 log_error(LOG_LEVEL_CONNECT, "via [%s]:%d to: %s",
4243 fwd->forward_host, fwd->forward_port, http->hostport);
4247 log_error(LOG_LEVEL_CONNECT, "to %s", http->hostport);
4250 /* here we connect to the server, gateway, or the forwarder */
4252 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
4253 if ((csp->server_connection.sfd != JB_INVALID_SOCKET)
4254 && socket_is_still_alive(csp->server_connection.sfd)
4255 && connection_destination_matches(&csp->server_connection, http, fwd))
4257 log_error(LOG_LEVEL_CONNECT,
4258 "Reusing server socket %d connected to %s. Total requests: %u.",
4259 csp->server_connection.sfd, csp->server_connection.host,
4260 csp->server_connection.requests_sent_total);
4264 if (csp->server_connection.sfd != JB_INVALID_SOCKET)
4266 #ifdef FEATURE_CONNECTION_SHARING
4267 if (csp->config->feature_flags & RUNTIME_FEATURE_CONNECTION_SHARING
4268 #ifdef FEATURE_HTTPS_INSPECTION
4269 && !server_use_ssl(csp)
4273 remember_connection(&csp->server_connection);
4276 #endif /* def FEATURE_CONNECTION_SHARING */
4278 log_error(LOG_LEVEL_CONNECT,
4279 "Closing server socket %d connected to %s. Total requests: %u.",
4280 csp->server_connection.sfd, csp->server_connection.host,
4281 csp->server_connection.requests_sent_total);
4282 close_socket(csp->server_connection.sfd);
4284 mark_connection_closed(&csp->server_connection);
4286 #endif /* def FEATURE_CONNECTION_KEEP_ALIVE */
4287 #ifdef FEATURE_HTTPS_INSPECTION
4288 if (client_use_ssl(csp) && !use_ssl_tunnel)
4292 * Creating a SSL proxy.
4294 * By sending the CSUCCEED message we're lying to the client as
4295 * the connection hasn't actually been established yet. We don't
4296 * establish the connection until we have seen and parsed the
4297 * encrypted client headers.
4299 if (write_socket_delayed(csp->cfd, CSUCCEED,
4300 strlen(CSUCCEED), get_write_delay(csp)) != 0)
4302 log_error(LOG_LEVEL_ERROR, "Sending SUCCEED to client failed");
4306 ret = create_client_ssl_connection(csp);
4309 log_error(LOG_LEVEL_ERROR,
4310 "Failed to open a secure connection with the client");
4313 if (JB_ERR_OK != process_encrypted_request(csp))
4315 close_client_ssl_connection(csp);
4319 * We have an encrypted request. Check if one of the crunchers now
4320 * wants it (for example because the previously invisible path was
4321 * required to match).
4323 if (crunch_response_triggered(csp, crunchers_all))
4326 * Yes. The client got the crunch response and we're done here.
4333 * Connecting to destination server
4335 csp->server_connection.sfd = forwarded_connect(fwd, http, csp);
4337 if (csp->server_connection.sfd == JB_INVALID_SOCKET)
4339 if (fwd->type != SOCKS_NONE)
4342 rsp = error_response(csp, "forwarding-failed");
4344 else if (errno == EINVAL)
4346 rsp = error_response(csp, "no-such-domain");
4350 rsp = error_response(csp, "connect-failed");
4353 /* Write the answer to the client */
4356 send_crunch_response(csp, rsp);
4360 * Temporary workaround to prevent already-read client
4361 * bodies from being parsed as new requests. For now we
4362 * err on the safe side and throw all the following
4363 * requests under the bus, even if no client body has been
4364 * buffered. A compliant client will repeat the dropped
4365 * requests on an untainted connection.
4367 * The proper fix is to discard the no longer needed
4368 * client body in the buffer (if there is one) and to
4369 * continue parsing the bytes that follow.
4371 #ifdef FEATURE_HTTPS_INSPECTION
4372 close_client_ssl_connection(csp);
4374 drain_and_close_socket(csp->cfd);
4375 csp->cfd = JB_INVALID_SOCKET;
4380 #ifdef FEATURE_HTTPS_INSPECTION
4382 * Creating TLS/SSL connections with destination server or parent
4383 * proxy. If forwarding is enabled, we must send client request to
4384 * parent proxy and receive, parse and resend parent proxy answer.
4386 if (http->ssl && !use_ssl_tunnel)
4388 if (fwd->forward_host != NULL)
4390 char server_response[BUFFER_SIZE];
4393 char *hdr = list_to_text(csp->headers);
4394 memset(server_response, 0, sizeof(server_response));
4398 log_error(LOG_LEVEL_FATAL,
4399 "Out of memory parsing client header");
4401 list_remove_all(csp->headers);
4404 * Sending client's CONNECT request to the parent proxy
4406 ret = write_socket(csp->server_connection.sfd, hdr, strlen(hdr));
4412 log_error(LOG_LEVEL_CONNECT,
4413 "Sending request headers to: %s failed", http->hostport);
4414 mark_server_socket_tainted(csp);
4415 close_client_ssl_connection(csp);
4419 /* Waiting for parent proxy server response */
4420 len = read_socket(csp->server_connection.sfd, server_response,
4421 sizeof(server_response)-1);
4425 log_error(LOG_LEVEL_ERROR, "No response from parent proxy "
4426 "server on socket %d.", csp->server_connection.sfd);
4428 rsp = error_response(csp, "no-server-data");
4431 send_crunch_response(csp, rsp);
4433 mark_server_socket_tainted(csp);
4434 close_client_ssl_connection(csp);
4439 * Test if the connection to the destination server was
4440 * established successfully by the parent proxy.
4442 if (!tunnel_established_successfully(server_response, (unsigned int)len))
4444 log_error(LOG_LEVEL_ERROR,
4445 "The forwarder %s failed to establish a connection with %s",
4446 fwd->forward_host, http->host);
4447 rsp = error_response(csp, "connect-failed");
4450 send_crunch_response(csp, rsp);
4452 mark_server_socket_tainted(csp);
4453 close_client_ssl_connection(csp);
4456 } /* -END- if (fwd->forward_host != NULL) */
4459 * We can now create the TLS/SSL connection with the destination server.
4461 int ret = create_server_ssl_connection(csp);
4464 if (csp->server_cert_verification_result != SSL_CERT_VALID &&
4465 csp->server_cert_verification_result != SSL_CERT_NOT_VERIFIED)
4468 * If the server certificate is invalid, we must inform
4469 * the client and then close connection to the client.
4471 ssl_send_certificate_error(csp);
4472 close_client_and_server_ssl_connections(csp);
4475 if (csp->server_cert_verification_result == SSL_CERT_NOT_VERIFIED
4476 || csp->server_cert_verification_result == SSL_CERT_VALID)
4479 * The TLS/SSL connection wasn't created but an invalid
4480 * certificate wasn't detected. Report it as connection
4483 rsp = error_response(csp, "connect-failed");
4486 send_crunch_response(csp, rsp);
4488 close_client_and_server_ssl_connections(csp);
4492 }/* -END- if (http->ssl) */
4493 #endif /* def FEATURE_HTTPS_INSPECTION */
4495 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
4496 save_connection_destination(csp->server_connection.sfd,
4497 http, fwd, &csp->server_connection);
4498 csp->server_connection.keep_alive_timeout =
4499 (unsigned)csp->config->keep_alive_timeout;
4501 #endif /* def FEATURE_CONNECTION_KEEP_ALIVE */
4503 csp->server_connection.requests_sent_total++;
4505 if ((fwd->type == SOCKS_5T) && (NULL == csp->headers->first))
4507 /* Client headers have been sent optimistically */
4508 assert(csp->headers->last == NULL);
4510 else if (http->ssl == 0 || (fwd->forward_host
4511 #ifdef FEATURE_HTTPS_INSPECTION
4516 if (send_http_request(csp))
4518 rsp = error_response(csp, "connect-failed");
4521 send_crunch_response(csp, rsp);
4529 * Using old solution with SSL tunnel or new solution with SSL proxy
4531 list_remove_all(csp->headers);
4532 #ifdef FEATURE_HTTPS_INSPECTION
4537 * We're running an SSL tunnel and we're not forwarding,
4538 * so just ditch the client headers, send the "connect succeeded"
4539 * message to the client, flush the rest, and get out of the way.
4541 if (write_socket_delayed(csp->cfd, CSUCCEED,
4542 strlen(CSUCCEED), get_write_delay(csp)))
4547 #ifdef FEATURE_HTTPS_INSPECTION
4551 * If server certificate has been verified and is invalid,
4552 * we must inform the client and then close the connection
4553 * with client and server.
4555 if (csp->server_cert_verification_result != SSL_CERT_VALID &&
4556 csp->server_cert_verification_result != SSL_CERT_NOT_VERIFIED)
4558 ssl_send_certificate_error(csp);
4559 close_client_and_server_ssl_connections(csp);
4562 if (send_https_request(csp))
4564 rsp = error_response(csp, "connect-failed");
4567 send_crunch_response(csp, rsp);
4569 close_client_and_server_ssl_connections(csp);
4573 #endif /* def FEATURE_HTTPS_INSPECTION */
4574 clear_iob(csp->client_iob);
4575 }/* -END- else ... if (http->ssl == 1) */
4577 log_error(LOG_LEVEL_CONNECT, "to %s successful", http->hostport);
4579 /* XXX: should the time start earlier for optimistically sent data? */
4580 csp->server_connection.request_sent = time(NULL);
4582 handle_established_connection(csp);
4583 freez(csp->receive_buffer);
4588 /*********************************************************************
4590 * Function : fuzz_server_response
4592 * Description : Treat the input as a whole server response.
4595 * 1 : csp = Current client state (buffers, headers, etc...)
4596 * 2 : fuzz_input_file = File to read the input from.
4600 *********************************************************************/
4601 extern int fuzz_server_response(struct client_state *csp, char *fuzz_input_file)
4603 static struct forward_spec fwd; /* Zero'd due to being static */
4606 if (strcmp(fuzz_input_file, "-") == 0)
4608 /* XXX: Doesn't work yet. */
4609 csp->server_connection.sfd = 0;
4613 csp->server_connection.sfd = open(fuzz_input_file, O_RDONLY);
4614 if (csp->server_connection.sfd == -1)
4616 log_error(LOG_LEVEL_FATAL, "Failed to open %s: %E",
4621 csp->content_type |= CT_GIF;
4622 csp->action->flags |= ACTION_DEANIMATE;
4623 csp->action->string[ACTION_STRING_DEANIMATE] = "last";
4625 csp->http->path = strdup_or_die("/");
4626 csp->http->host = strdup_or_die("fuzz.example.org");
4627 csp->http->hostport = strdup_or_die("fuzz.example.org:80");
4628 /* Prevent client socket monitoring */
4629 csp->flags |= CSP_FLAG_PIPELINED_REQUEST_WAITING;
4630 csp->flags |= CSP_FLAG_CHUNKED;
4632 csp->config->feature_flags |= RUNTIME_FEATURE_CONNECTION_KEEP_ALIVE;
4633 csp->flags |= CSP_FLAG_CLIENT_CONNECTION_KEEP_ALIVE;
4635 csp->content_type |= CT_DECLARED|CT_GIF;
4637 csp->config->socket_timeout = 0;
4639 cgi_init_error_messages();
4641 handle_established_connection(csp);
4642 freez(csp->receive_buffer);
4649 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
4650 /*********************************************************************
4652 * Function : prepare_csp_for_next_request
4654 * Description : Put the csp in a mostly vergin state.
4657 * 1 : csp = Current client state (buffers, headers, etc...)
4661 *********************************************************************/
4662 static void prepare_csp_for_next_request(struct client_state *csp)
4664 csp->content_type = 0;
4665 csp->content_length = 0;
4666 csp->expected_content_length = 0;
4667 csp->expected_client_content_length = 0;
4668 list_remove_all(csp->headers);
4669 clear_iob(csp->iob);
4670 freez(csp->error_message);
4671 free_http_request(csp->http);
4672 destroy_list(csp->headers);
4673 #ifdef FEATURE_HTTPS_INSPECTION
4674 destroy_list(csp->https_headers);
4676 destroy_list(csp->tags);
4677 #ifdef FEATURE_CLIENT_TAGS
4678 destroy_list(csp->client_tags);
4679 freez(csp->client_address);
4681 free_current_action(csp->action);
4682 if (NULL != csp->fwd)
4684 unload_forward_spec(csp->fwd);
4687 /* XXX: Store per-connection flags someplace else. */
4688 csp->flags = (CSP_FLAG_ACTIVE | CSP_FLAG_REUSED_CLIENT_CONNECTION);
4689 #ifdef FEATURE_TOGGLE
4690 if (global_toggle_state)
4691 #endif /* def FEATURE_TOGGLE */
4693 csp->flags |= CSP_FLAG_TOGGLED_ON;
4696 if (csp->client_iob->eod > csp->client_iob->cur)
4698 long bytes_to_shift = csp->client_iob->cur - csp->client_iob->buf;
4699 size_t data_length = (size_t)(csp->client_iob->eod - csp->client_iob->cur);
4701 assert(bytes_to_shift > 0);
4702 assert(data_length > 0);
4704 log_error(LOG_LEVEL_CONNECT, "Shifting %lu pipelined bytes by %ld bytes",
4705 data_length, bytes_to_shift);
4706 memmove(csp->client_iob->buf, csp->client_iob->cur, data_length);
4707 csp->client_iob->cur = csp->client_iob->buf;
4708 assert(csp->client_iob->eod == csp->client_iob->buf + bytes_to_shift + data_length);
4709 csp->client_iob->eod = csp->client_iob->buf + data_length;
4710 memset(csp->client_iob->eod, '\0', (size_t)bytes_to_shift);
4712 csp->flags |= CSP_FLAG_PIPELINED_REQUEST_WAITING;
4717 * We mainly care about resetting client_iob->cur so we don't
4718 * waste buffer space at the beginning and don't mess up the
4719 * request restoration done by cgi_show_request().
4721 * Freeing the buffer itself isn't technically necessary,
4722 * but makes debugging more convenient.
4724 clear_iob(csp->client_iob);
4727 #endif /* def FEATURE_CONNECTION_KEEP_ALIVE */
4730 /*********************************************************************
4734 * Description : This is little more than chat. We only "serve" to
4735 * to close (or remember) any socket that chat may have
4739 * 1 : csp = Current client state (buffers, headers, etc...)
4743 *********************************************************************/
4744 static void serve(struct client_state *csp)
4746 int config_file_change_detected = 0; /* Only used for debugging */
4747 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
4748 #ifdef FEATURE_CONNECTION_SHARING
4749 static int monitor_thread_running = 0;
4750 #endif /* def FEATURE_CONNECTION_SHARING */
4751 int continue_chatting = 0;
4753 log_error(LOG_LEVEL_CONNECT, "Accepted connection from %s on socket %d",
4754 csp->ip_addr_str, csp->cfd);
4758 unsigned int latency;
4760 #ifdef FEATURE_HTTPS_INSPECTION
4761 if (continue_chatting && client_use_ssl(csp))
4763 continue_https_chat(csp);
4772 * If the request has been crunched,
4773 * the calculated latency is zero.
4775 latency = (unsigned)(csp->server_connection.response_received -
4776 csp->server_connection.request_sent) / 2;
4778 if ((csp->flags & CSP_FLAG_CLIENT_CONNECTION_KEEP_ALIVE)
4779 && (csp->flags & CSP_FLAG_CRUNCHED)
4780 && (csp->expected_client_content_length != 0))
4782 csp->flags |= CSP_FLAG_SERVER_SOCKET_TAINTED;
4783 log_error(LOG_LEVEL_CONNECT,
4784 "Tainting client socket %d due to unread data.", csp->cfd);
4787 continue_chatting = (csp->config->feature_flags
4788 & RUNTIME_FEATURE_CONNECTION_KEEP_ALIVE)
4789 && !(csp->flags & CSP_FLAG_SERVER_SOCKET_TAINTED)
4790 && (csp->cfd != JB_INVALID_SOCKET)
4791 && (csp->flags & CSP_FLAG_CLIENT_CONNECTION_KEEP_ALIVE)
4792 && ((csp->flags & CSP_FLAG_SERVER_CONTENT_LENGTH_SET)
4793 || (csp->flags & CSP_FLAG_CHUNKED));
4795 if (!(csp->flags & CSP_FLAG_CRUNCHED)
4796 && (csp->server_connection.sfd != JB_INVALID_SOCKET))
4798 if (!(csp->flags & CSP_FLAG_SERVER_KEEP_ALIVE_TIMEOUT_SET))
4800 csp->server_connection.keep_alive_timeout = csp->config->default_server_timeout;
4802 if (!(csp->flags & CSP_FLAG_SERVER_CONNECTION_KEEP_ALIVE)
4803 || (csp->flags & CSP_FLAG_SERVER_SOCKET_TAINTED)
4804 || !socket_is_still_alive(csp->server_connection.sfd)
4805 || !(latency < csp->server_connection.keep_alive_timeout))
4807 log_error(LOG_LEVEL_CONNECT,
4808 "Closing server socket %d connected to %s. "
4809 "Keep-alive: %u. Tainted: %u. Socket alive: %u. Timeout: %u.",
4810 csp->server_connection.sfd, csp->server_connection.host,
4811 0 != (csp->flags & CSP_FLAG_SERVER_CONNECTION_KEEP_ALIVE),
4812 0 != (csp->flags & CSP_FLAG_SERVER_SOCKET_TAINTED),
4813 socket_is_still_alive(csp->server_connection.sfd),
4814 csp->server_connection.keep_alive_timeout);
4815 #ifdef FEATURE_CONNECTION_SHARING
4816 if (csp->config->feature_flags & RUNTIME_FEATURE_CONNECTION_SHARING)
4818 forget_connection(csp->server_connection.sfd);
4820 #endif /* def FEATURE_CONNECTION_SHARING */
4821 #ifdef FEATURE_HTTPS_INSPECTION
4822 close_server_ssl_connection(csp);
4824 close_socket(csp->server_connection.sfd);
4825 mark_connection_closed(&csp->server_connection);
4829 if (continue_chatting && any_loaded_file_changed(csp))
4831 continue_chatting = 0;
4832 config_file_change_detected = 1;
4834 #ifdef FEATURE_HTTPS_INSPECTION
4835 if (continue_chatting && client_use_ssl(csp) &&
4836 csp->ssl_with_client_is_opened == 0)
4838 continue_chatting = 0;
4839 log_error(LOG_LEVEL_CONNECT, "Client socket %d is no longer usable. "
4840 "The TLS session has been terminated.", csp->cfd);
4844 if (continue_chatting)
4846 if (((csp->flags & CSP_FLAG_PIPELINED_REQUEST_WAITING) != 0)
4847 && socket_is_still_alive(csp->cfd))
4849 log_error(LOG_LEVEL_CONNECT, "Client request %d has been "
4850 "pipelined on socket %d and the socket is still alive.",
4851 csp->requests_received_total+1, csp->cfd);
4852 prepare_csp_for_next_request(csp);
4856 if (0 != (csp->flags & CSP_FLAG_CLIENT_CONNECTION_KEEP_ALIVE))
4858 if (csp->server_connection.sfd != JB_INVALID_SOCKET)
4860 log_error(LOG_LEVEL_CONNECT,
4861 "Waiting for the next client request on socket %d. "
4862 "Keeping the server socket %d to %s open.",
4863 csp->cfd, csp->server_connection.sfd, csp->server_connection.host);
4867 log_error(LOG_LEVEL_CONNECT,
4868 "Waiting for the next client request on socket %d. "
4869 "No server socket to keep open.", csp->cfd);
4873 if ((csp->flags & CSP_FLAG_CLIENT_CONNECTION_KEEP_ALIVE)
4874 && data_is_available(csp->cfd, (int)csp->config->keep_alive_timeout)
4875 && socket_is_still_alive(csp->cfd))
4877 log_error(LOG_LEVEL_CONNECT,
4878 "Data arrived in time on client socket %d. Requests so far: %u",
4879 csp->cfd, csp->requests_received_total);
4880 prepare_csp_for_next_request(csp);
4884 #ifdef FEATURE_CONNECTION_SHARING
4885 if ((csp->config->feature_flags & RUNTIME_FEATURE_CONNECTION_SHARING)
4886 && (csp->server_connection.sfd != JB_INVALID_SOCKET)
4887 && (socket_is_still_alive(csp->server_connection.sfd))
4888 #ifdef FEATURE_HTTPS_INSPECTION
4889 && !server_use_ssl(csp)
4893 time_t time_open = time(NULL) - csp->server_connection.timestamp;
4895 if (csp->server_connection.keep_alive_timeout < time_open - (time_t)latency)
4900 remember_connection(&csp->server_connection);
4901 csp->server_connection.sfd = JB_INVALID_SOCKET;
4902 drain_and_close_socket(csp->cfd);
4903 csp->cfd = JB_INVALID_SOCKET;
4904 privoxy_mutex_lock(&connection_reuse_mutex);
4905 if (!monitor_thread_running)
4907 monitor_thread_running = 1;
4908 privoxy_mutex_unlock(&connection_reuse_mutex);
4909 wait_for_alive_connections();
4910 privoxy_mutex_lock(&connection_reuse_mutex);
4911 monitor_thread_running = 0;
4913 privoxy_mutex_unlock(&connection_reuse_mutex);
4915 #endif /* def FEATURE_CONNECTION_SHARING */
4919 else if (csp->server_connection.sfd != JB_INVALID_SOCKET)
4921 log_error(LOG_LEVEL_CONNECT,
4922 "Closing server socket %d connected to %s. Keep-alive: %u. "
4923 "Tainted: %u. Socket alive: %u. Timeout: %u. "
4924 "Configuration file change detected: %u",
4925 csp->server_connection.sfd, csp->server_connection.host,
4926 0 != (csp->flags & CSP_FLAG_SERVER_CONNECTION_KEEP_ALIVE),
4927 0 != (csp->flags & CSP_FLAG_SERVER_SOCKET_TAINTED),
4928 socket_is_still_alive(csp->server_connection.sfd),
4929 csp->server_connection.keep_alive_timeout,
4930 config_file_change_detected);
4932 } while (continue_chatting);
4936 #endif /* def FEATURE_CONNECTION_KEEP_ALIVE */
4938 if (csp->cfd != JB_INVALID_SOCKET)
4940 log_error(LOG_LEVEL_CONNECT, "Closing client socket %d. "
4941 "Keep-alive: %u. Socket alive: %u. Data available: %u. "
4942 "Configuration file change detected: %u. Requests received: %u.",
4943 csp->cfd, 0 != (csp->flags & CSP_FLAG_CLIENT_CONNECTION_KEEP_ALIVE),
4944 socket_is_still_alive(csp->cfd), data_is_available(csp->cfd, 0),
4945 config_file_change_detected, csp->requests_received_total);
4946 #ifdef FEATURE_HTTPS_INSPECTION
4947 close_client_ssl_connection(csp);
4949 drain_and_close_socket(csp->cfd);
4952 if (csp->server_connection.sfd != JB_INVALID_SOCKET)
4954 #ifdef FEATURE_CONNECTION_SHARING
4955 if (csp->config->feature_flags & RUNTIME_FEATURE_CONNECTION_SHARING)
4957 forget_connection(csp->server_connection.sfd);
4959 #endif /* def FEATURE_CONNECTION_SHARING */
4961 #ifdef FEATURE_HTTPS_INSPECTION
4962 close_server_ssl_connection(csp);
4963 #endif /* def FEATURE_HTTPS_INSPECTION */
4965 close_socket(csp->server_connection.sfd);
4968 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
4969 mark_connection_closed(&csp->server_connection);
4972 free_csp_resources(csp);
4974 csp->flags &= ~CSP_FLAG_ACTIVE;
4980 /*********************************************************************
4982 * Function : server_thread
4984 * Description : We only exist to call `serve' in a threaded environment.
4987 * 1 : data = Current client state (buffers, headers, etc...)
4989 * Returns : Always 0.
4991 *********************************************************************/
4992 static int32 server_thread(void *data)
4994 serve((struct client_state *) data);
5001 #if !defined(_WIN32) || defined(_WIN_CONSOLE)
5002 /*********************************************************************
5006 * Description : Print usage info & exit.
5008 * Parameters : Pointer to argv[0] for identifying ourselves
5012 *********************************************************************/
5013 static void usage(const char *name)
5015 printf("Privoxy version " VERSION " (" HOME_PAGE_URL ")\n"
5016 "Usage: %s [--config-test] "
5019 #endif /* defined(unix) */
5022 "[--no-daemon] [--pidfile pidfile] [--pre-chroot-nslookup hostname] [--user user[.group]] "
5023 #endif /* defined(unix) */
5024 "[--version] [configfile]\n",
5028 show_fuzz_usage(name);
5031 printf("Aborting\n");
5036 #endif /* #if !defined(_WIN32) || defined(_WIN_CONSOLE) */
5039 #ifdef MUTEX_LOCKS_AVAILABLE
5040 /*********************************************************************
5042 * Function : privoxy_mutex_lock
5044 * Description : Locks a mutex.
5047 * 1 : mutex = The mutex to lock.
5049 * Returns : Void. May exit in case of errors.
5051 *********************************************************************/
5052 void privoxy_mutex_lock(privoxy_mutex_t *mutex)
5054 #ifdef FEATURE_PTHREAD
5055 int err = pthread_mutex_lock(mutex);
5058 if (mutex != &log_mutex)
5060 log_error(LOG_LEVEL_FATAL,
5061 "Mutex locking failed: %s.\n", strerror(err));
5066 EnterCriticalSection(mutex);
5067 #endif /* def FEATURE_PTHREAD */
5071 /*********************************************************************
5073 * Function : privoxy_mutex_unlock
5075 * Description : Unlocks a mutex.
5078 * 1 : mutex = The mutex to unlock.
5080 * Returns : Void. May exit in case of errors.
5082 *********************************************************************/
5083 void privoxy_mutex_unlock(privoxy_mutex_t *mutex)
5085 #ifdef FEATURE_PTHREAD
5086 int err = pthread_mutex_unlock(mutex);
5089 if (mutex != &log_mutex)
5091 log_error(LOG_LEVEL_FATAL,
5092 "Mutex unlocking failed: %s.\n", strerror(err));
5097 LeaveCriticalSection(mutex);
5098 #endif /* def FEATURE_PTHREAD */
5102 /*********************************************************************
5104 * Function : privoxy_mutex_init
5106 * Description : Prepares a mutex.
5109 * 1 : mutex = The mutex to initialize.
5111 * Returns : Void. May exit in case of errors.
5113 *********************************************************************/
5114 static void privoxy_mutex_init(privoxy_mutex_t *mutex)
5116 #ifdef FEATURE_PTHREAD
5117 int err = pthread_mutex_init(mutex, 0);
5120 printf("Fatal error. Mutex initialization failed: %s.\n",
5125 InitializeCriticalSection(mutex);
5126 #endif /* def FEATURE_PTHREAD */
5128 #endif /* def MUTEX_LOCKS_AVAILABLE */
5130 /*********************************************************************
5132 * Function : initialize_mutexes
5134 * Description : Prepares mutexes if mutex support is available.
5138 * Returns : Void, exits in case of errors.
5140 *********************************************************************/
5141 static void initialize_mutexes(void)
5143 #ifdef MUTEX_LOCKS_AVAILABLE
5145 * Prepare global mutex semaphores
5148 #ifdef FEATURE_HTTPS_INSPECTION
5149 privoxy_mutex_init(&certificate_mutex);
5150 privoxy_mutex_init(&ssl_init_mutex);
5153 privoxy_mutex_init(&log_mutex);
5154 privoxy_mutex_init(&log_init_mutex);
5155 privoxy_mutex_init(&connection_reuse_mutex);
5156 #ifdef FEATURE_EXTERNAL_FILTERS
5157 privoxy_mutex_init(&external_filter_mutex);
5159 #ifdef FEATURE_CLIENT_TAGS
5160 privoxy_mutex_init(&client_tags_mutex);
5162 #ifdef FEATURE_EXTENDED_STATISTICS
5163 privoxy_mutex_init(&filter_statistics_mutex);
5164 privoxy_mutex_init(&block_statistics_mutex);
5168 * XXX: The assumptions below are a bit naive
5169 * and can cause locks that aren't necessary.
5171 * For example older FreeBSD versions (< 6.x?)
5172 * have no gethostbyname_r, but gethostbyname is
5175 #if !defined(HAVE_GETHOSTBYADDR_R) || !defined(HAVE_GETHOSTBYNAME_R)
5176 privoxy_mutex_init(&resolver_mutex);
5177 #endif /* !defined(HAVE_GETHOSTBYADDR_R) || !defined(HAVE_GETHOSTBYNAME_R) */
5179 * XXX: should we use a single mutex for
5180 * localtime() and gmtime() as well?
5182 #ifndef HAVE_GMTIME_R
5183 privoxy_mutex_init(&gmtime_mutex);
5184 #endif /* ndef HAVE_GMTIME_R */
5186 #ifndef HAVE_LOCALTIME_R
5187 privoxy_mutex_init(&localtime_mutex);
5188 #endif /* ndef HAVE_GMTIME_R */
5190 #if !defined(HAVE_ARC4RANDOM) && !defined(HAVE_RANDOM)
5191 privoxy_mutex_init(&rand_mutex);
5192 #endif /* !defined(HAVE_ARC4RANDOM) && !defined(HAVE_RANDOM) */
5194 #endif /* def MUTEX_LOCKS_AVAILABLE */
5197 /*********************************************************************
5201 * Description : Load the config file and start the listen loop.
5202 * This function is a lot more *sane* with the `load_config'
5203 * and `listen_loop' functions; although it stills does
5204 * a *little* too much for my taste.
5207 * 1 : argc = Number of parameters (including $0).
5208 * 2 : argv = Array of (char *)'s to the parameters.
5210 * Returns : 1 if : can't open config file, unrecognized directive,
5211 * stats requested in multi-thread mode, can't open the
5212 * log file, can't open the jar file, listen port is invalid,
5213 * any load fails, and can't bind port.
5215 * Else main never returns, the process must be signaled
5216 * to terminate execution. Or, on Windows, use the
5217 * "File", "Exit" menu option.
5219 *********************************************************************/
5221 int real_main(int argc, char **argv)
5223 int main(int argc, char **argv)
5227 int do_config_test = 0;
5228 #ifndef HAVE_ARC4RANDOM
5229 unsigned int random_seed;
5232 struct passwd *pw = NULL;
5233 struct group *grp = NULL;
5235 char *pre_chroot_nslookup_to_load_resolver = NULL;
5238 char *fuzz_input_type = NULL;
5239 char *fuzz_input_file = NULL;
5246 #if !defined(_WIN32)
5253 /* Prepare mutexes if supported and necessary. */
5254 initialize_mutexes();
5256 /* Enable logging until further notice. */
5260 * Parse the command line arguments
5262 * XXX: simply printing usage information in case of
5263 * invalid arguments isn't particularly user friendly.
5265 while (++argc_pos < argc)
5268 /* Check to see if the service must be installed or uninstalled */
5269 if (strncmp(argv[argc_pos], "--install", 9) == 0)
5271 const char *pName = argv[argc_pos] + 9;
5274 exit((install_service(pName)) ? 0 : 1);
5276 else if (strncmp(argv[argc_pos], "--uninstall", 11) == 0)
5278 const char *pName = argv[argc_pos] + 11;
5281 exit((uninstall_service(pName)) ? 0 : 1);
5283 else if (strcmp(argv[argc_pos], "--service") == 0)
5285 bRunAsService = TRUE;
5286 w32_set_service_cwd();
5287 atexit(w32_service_exit_notify);
5290 #endif /* defined(_WIN32) */
5293 #if !defined(_WIN32) || defined(_WIN_CONSOLE)
5295 if (strcmp(argv[argc_pos], "--help") == 0)
5300 else if (strcmp(argv[argc_pos], "--version") == 0)
5302 printf("Privoxy version " VERSION " (" HOME_PAGE_URL ")\n");
5308 else if (strcmp(argv[argc_pos], "--no-daemon") == 0)
5310 set_debug_level(LOG_LEVEL_FATAL | LOG_LEVEL_ERROR | LOG_LEVEL_INFO);
5314 else if (strcmp(argv[argc_pos], "--pidfile") == 0)
5316 if (++argc_pos == argc) usage(argv[0]);
5317 pidfile = strdup_or_die(argv[argc_pos]);
5320 else if (strcmp(argv[argc_pos], "--user") == 0)
5325 if (++argc_pos == argc) usage(argv[argc_pos]);
5327 user_arg = strdup_or_die(argv[argc_pos]);
5328 group_name = strchr(user_arg, '.');
5329 if (NULL != group_name)
5331 /* Nul-terminate the user name */
5334 /* Skip the former delimiter to actually reach the group name */
5337 grp = getgrnam(group_name);
5340 log_error(LOG_LEVEL_FATAL, "Group '%s' not found.", group_name);
5343 pw = getpwnam(user_arg);
5346 log_error(LOG_LEVEL_FATAL, "User '%s' not found.", user_arg);
5352 else if (strcmp(argv[argc_pos], "--pre-chroot-nslookup") == 0)
5354 if (++argc_pos == argc) usage(argv[0]);
5355 pre_chroot_nslookup_to_load_resolver = strdup_or_die(argv[argc_pos]);
5358 else if (strcmp(argv[argc_pos], "--chroot") == 0)
5362 #endif /* defined(unix) */
5364 else if (strcmp(argv[argc_pos], "--config-test") == 0)
5369 else if (strcmp(argv[argc_pos], "--fuzz") == 0)
5372 if (argc < argc_pos + 2) usage(argv[0]);
5373 fuzz_input_type = argv[argc_pos];
5375 fuzz_input_file = argv[argc_pos];
5377 else if (strcmp(argv[argc_pos], "--stfu") == 0)
5379 set_debug_level(LOG_LEVEL_STFU);
5382 else if (argc_pos + 1 != argc)
5385 * This is neither the last command line
5386 * option, nor was it recognized before,
5387 * therefore it must be invalid.
5393 #endif /* defined(_WIN32) && !defined(_WIN_CONSOLE) */
5395 configfile = argv[argc_pos];
5398 } /* -END- while (more arguments) */
5400 show_version(Argv[0]);
5403 if (*configfile != '/')
5405 char cwd[BUFFER_SIZE];
5407 size_t abs_file_size;
5409 /* make config-filename absolute here */
5410 if (NULL == getcwd(cwd, sizeof(cwd)))
5412 perror("failed to get current working directory");
5416 basedir = strdup_or_die(cwd);
5418 abs_file_size = strlen(cwd) + strlen(configfile) + 5;
5419 abs_file = malloc_or_die(abs_file_size);
5420 strlcpy(abs_file, basedir, abs_file_size);
5421 strlcat(abs_file, "/", abs_file_size);
5422 strlcat(abs_file, configfile, abs_file_size);
5423 configfile = abs_file;
5425 #endif /* defined unix */
5429 clients->next = NULL;
5431 /* XXX: factor out initialising after the next stable release. */
5436 #ifndef HAVE_ARC4RANDOM
5437 random_seed = (unsigned int)time(NULL);
5439 srandom(random_seed);
5442 #endif /* ifdef HAVE_RANDOM */
5443 #endif /* ifndef HAVE_ARC4RANDOM */
5446 * Unix signal handling
5448 * Catch the abort, interrupt and terminate signals for a graceful exit
5449 * Catch the hangup signal so the errlog can be reopened.
5451 * Ignore the broken pipe signal as connection failures
5452 * are handled when and where they occur without relying
5455 #if !defined(_WIN32)
5458 const int catched_signals[] = { SIGTERM, SIGINT, SIGHUP };
5460 for (idx = 0; idx < SZ(catched_signals); idx++)
5462 #ifdef sun /* FIXME: Is it safe to check for HAVE_SIGSET instead? */
5463 if (sigset(catched_signals[idx], sig_handler) == SIG_ERR)
5465 if (signal(catched_signals[idx], sig_handler) == SIG_ERR)
5466 #endif /* ifdef sun */
5468 log_error(LOG_LEVEL_FATAL, "Can't set signal-handler for signal %d: %E", catched_signals[idx]);
5472 if (signal(SIGPIPE, SIG_IGN) == SIG_ERR)
5474 log_error(LOG_LEVEL_FATAL, "Can't set ignore-handler for SIGPIPE: %E");
5478 #else /* ifdef _WIN32 */
5479 # ifdef _WIN_CONSOLE
5481 * We *are* in a windows console app.
5482 * Print a verbose messages about FAQ's and such
5484 printf("%s", win32_blurb);
5485 # endif /* def _WIN_CONSOLE */
5486 #endif /* def _WIN32 */
5489 if (fuzz_input_type != NULL)
5491 exit(process_fuzzed_input(fuzz_input_type, fuzz_input_file));
5493 log_error(LOG_LEVEL_FATAL,
5494 "When compiled with fuzzing support, Privoxy should only be used for fuzzing. "
5495 "Various data structures are static which is unsafe when using threads.");
5500 exit(NULL == load_config());
5503 /* Initialize the CGI subsystem */
5504 cgi_init_error_messages();
5507 * If running on unix and without the --no-daemon
5508 * option, become a daemon. I.e. fork, detach
5509 * from tty and get process group leadership
5518 if (pid < 0) /* error */
5523 else if (pid != 0) /* parent */
5528 * must check for errors
5529 * child died due to missing files aso
5532 wpid = waitpid(pid, &status, WNOHANG);
5544 * stderr (fd 2) will be closed later on,
5545 * when the config file has been parsed.
5551 * Reserve fd 0 and 1 to prevent abort() and friends
5552 * from sending stuff to the clients or servers.
5554 fd = open("/dev/null", O_RDONLY);
5557 log_error(LOG_LEVEL_FATAL, "Failed to open /dev/null: %E");
5561 if (dup2(fd, 0) == -1)
5563 log_error(LOG_LEVEL_FATAL, "Failed to reserve fd 0: %E");
5567 fd = open("/dev/null", O_WRONLY);
5570 log_error(LOG_LEVEL_FATAL, "Failed to open /dev/null: %E");
5574 if (dup2(fd, 1) == -1)
5576 log_error(LOG_LEVEL_FATAL, "Failed to reserve fd 1: %E");
5581 #ifdef FEATURE_EXTERNAL_FILTERS
5582 for (fd = 0; fd < 3; fd++)
5584 mark_socket_for_close_on_execute(fd);
5588 if (chdir("/") != 0)
5590 log_error(LOG_LEVEL_FATAL, "Failed to cd into '/': %E");
5593 } /* -END- if (daemon_mode) */
5596 * As soon as we have written the PID file, we can switch
5597 * to the user and group ID indicated by the --user option
5599 if (pidfile != NULL)
5601 write_pid_file(pidfile);
5605 if (setgid((NULL != grp) ? grp->gr_gid : pw->pw_gid))
5607 log_error(LOG_LEVEL_FATAL, "Cannot setgid(): Insufficient permissions.");
5611 if (setgroups(1, &grp->gr_gid))
5613 log_error(LOG_LEVEL_FATAL, "setgroups() failed: %E");
5616 else if (initgroups(pw->pw_name, pw->pw_gid))
5618 log_error(LOG_LEVEL_FATAL, "initgroups() failed: %E");
5624 log_error(LOG_LEVEL_FATAL, "Home directory for %s undefined", pw->pw_name);
5626 /* Read the time zone file from /etc before doing chroot. */
5628 if (NULL != pre_chroot_nslookup_to_load_resolver
5629 && '\0' != pre_chroot_nslookup_to_load_resolver[0])
5631 /* Initialize resolver library. */
5632 (void) resolve_hostname_to_ip(pre_chroot_nslookup_to_load_resolver);
5634 if (chroot(pw->pw_dir) < 0)
5636 log_error(LOG_LEVEL_FATAL, "Cannot chroot to %s", pw->pw_dir);
5640 log_error(LOG_LEVEL_FATAL, "Cannot chdir /");
5643 if (setuid(pw->pw_uid))
5645 log_error(LOG_LEVEL_FATAL, "Cannot setuid(): Insufficient permissions.");
5649 char putenv_dummy[64];
5651 strlcpy(putenv_dummy, "HOME=/", sizeof(putenv_dummy));
5652 if (putenv(putenv_dummy) != 0)
5654 log_error(LOG_LEVEL_FATAL, "Cannot putenv(): HOME");
5657 snprintf(putenv_dummy, sizeof(putenv_dummy), "USER=%s", pw->pw_name);
5658 if (putenv(putenv_dummy) != 0)
5660 log_error(LOG_LEVEL_FATAL, "Cannot putenv(): USER");
5666 log_error(LOG_LEVEL_FATAL, "Cannot chroot without --user argument.");
5669 #endif /* defined unix */
5672 /* This will be FALSE unless the command line specified --service
5676 /* Yup, so now we must attempt to establish a connection
5677 * with the service dispatcher. This will only work if this
5678 * process was launched by the service control manager to
5679 * actually run as a service. If this isn't the case, i've
5680 * known it take around 30 seconds or so for the call to return.
5683 /* The StartServiceCtrlDispatcher won't return until the service is stopping */
5684 if (w32_start_service_ctrl_dispatcher(w32ServiceDispatchTable))
5686 /* Service has run, and at this point is now being stopped, so just return */
5691 printf("Warning: Failed to connect to Service Control Dispatcher\nwhen starting as a service!\n");
5693 /* An error occurred. Usually it's because --service was wrongly specified
5694 * and we were unable to connect to the Service Control Dispatcher because
5695 * it wasn't expecting us and is therefore not listening.
5697 * For now, just continue below to call the listen_loop function.
5700 #endif /* def _WIN32 */
5710 /*********************************************************************
5712 * Function : bind_port_helper
5714 * Description : Bind the listen port. Handles logging, and aborts
5718 * 1 : haddr = Host address to bind to. Use NULL to bind to
5720 * 2 : hport = Specifies port to bind to.
5721 * 3 : backlog = Listen backlog.
5723 * Returns : Port that was opened.
5725 *********************************************************************/
5726 static jb_socket bind_port_helper(const char *haddr, int hport, int backlog)
5731 result = bind_port(haddr, hport, backlog, &bfd);
5735 const char *bind_address = (NULL != haddr) ? haddr : "INADDR_ANY";
5739 log_error(LOG_LEVEL_FATAL,
5740 "can't bind to %s:%d: There may be another Privoxy "
5741 "or some other proxy running on port %d",
5742 bind_address, hport, hport);
5745 log_error(LOG_LEVEL_FATAL,
5746 "can't bind to %s:%d: The hostname is not resolvable",
5747 bind_address, hport);
5750 log_error(LOG_LEVEL_FATAL, "can't bind to %s:%d: %E",
5751 bind_address, hport);
5754 /* shouldn't get here */
5755 return JB_INVALID_SOCKET;
5760 if (bfd >= FD_SETSIZE)
5762 log_error(LOG_LEVEL_FATAL,
5763 "Bind socket number too high to use select(): %d >= %d",
5771 log_error(LOG_LEVEL_INFO, "Listening on port %d on all IP addresses",
5776 log_error(LOG_LEVEL_INFO, "Listening on port %d on IP address %s",
5784 /*********************************************************************
5786 * Function : bind_ports_helper
5788 * Description : Bind the listen ports. Handles logging, and aborts
5792 * 1 : config = Privoxy configuration. Specifies ports
5794 * 2 : sockets = Preallocated array of opened sockets
5795 * corresponding to specification in config.
5796 * All non-opened sockets will be set to
5797 * JB_INVALID_SOCKET.
5799 * Returns : Nothing. Inspect sockets argument.
5801 *********************************************************************/
5802 static void bind_ports_helper(struct configuration_spec * config,
5803 jb_socket sockets[])
5807 for (i = 0; i < MAX_LISTENING_SOCKETS; i++)
5809 if (config->hport[i])
5811 sockets[i] = bind_port_helper(config->haddr[i],
5812 config->hport[i], config->listen_backlog);
5813 #if defined(FEATURE_ACCEPT_FILTER) && defined(SO_ACCEPTFILTER)
5814 if (config->enable_accept_filter && sockets[i] != JB_INVALID_SOCKET)
5816 struct accept_filter_arg af_options;
5817 bzero(&af_options, sizeof(af_options));
5818 strlcpy(af_options.af_name, "httpready", sizeof(af_options.af_name));
5819 if (setsockopt(sockets[i], SOL_SOCKET, SO_ACCEPTFILTER, &af_options,
5820 sizeof(af_options)))
5822 log_error(LOG_LEVEL_ERROR,
5823 "Enabling accept filter for socket %d failed: %E", sockets[i]);
5830 sockets[i] = JB_INVALID_SOCKET;
5833 config->need_bind = 0;
5837 /*********************************************************************
5839 * Function : close_ports_helper
5841 * Description : Close listenings ports.
5844 * 1 : sockets = Array of opened and non-opened sockets to
5845 * close. All sockets will be set to
5846 * JB_INVALID_SOCKET.
5848 * Returns : Nothing.
5850 *********************************************************************/
5851 static void close_ports_helper(jb_socket sockets[])
5855 for (i = 0; i < MAX_LISTENING_SOCKETS; i++)
5857 if (JB_INVALID_SOCKET != sockets[i])
5859 close_socket(sockets[i]);
5861 sockets[i] = JB_INVALID_SOCKET;
5867 /* Without this simple workaround we get this compiler warning from _beginthread
5868 * warning C4028: formal parameter 1 different from declaration
5870 void w32_service_listen_loop(void *p)
5874 #endif /* def _WIN32 */
5877 /*********************************************************************
5879 * Function : listen_loop
5881 * Description : bind the listen port and enter a "FOREVER" listening loop.
5887 *********************************************************************/
5888 static void listen_loop(void)
5890 struct client_states *csp_list = NULL;
5891 struct client_state *csp = NULL;
5892 jb_socket bfds[MAX_LISTENING_SOCKETS];
5893 struct configuration_spec *config;
5894 unsigned int active_threads = 0;
5895 #if defined(FEATURE_PTHREAD)
5896 pthread_attr_t attrs;
5898 pthread_attr_init(&attrs);
5899 pthread_attr_setdetachstate(&attrs, PTHREAD_CREATE_DETACHED);
5902 config = load_config();
5904 #ifdef FEATURE_CONNECTION_SHARING
5906 * XXX: Should be relocated once it no
5907 * longer needs to emit log messages.
5909 initialize_reusable_connections();
5910 #endif /* def FEATURE_CONNECTION_SHARING */
5912 bind_ports_helper(config, bfds);
5914 #ifdef FEATURE_GRACEFUL_TERMINATION
5915 while (!g_terminate)
5920 #if !defined(FEATURE_PTHREAD) && !defined(_WIN32) && !defined(__BEOS__)
5921 while (waitpid(-1, NULL, WNOHANG) > 0)
5923 /* zombie children */
5925 #endif /* !defined(FEATURE_PTHREAD) && !defined(_WIN32) && !defined(__BEOS__) */
5928 * Free data that was used by died threads
5930 active_threads = sweep();
5934 * Re-open the errlog after HUP signal
5936 if (received_hup_signal)
5938 if (NULL != config->logfile)
5940 init_error_log(Argv[0], config->logfile);
5942 received_hup_signal = 0;
5946 csp_list = zalloc_or_die(sizeof(*csp_list));
5947 csp = &csp_list->csp;
5949 log_error(LOG_LEVEL_CONNECT,
5950 "Waiting for the next client connection. Currently active threads: %u",
5954 * This config may be outdated, but for accept_connection()
5955 * it's fresh enough.
5957 csp->config = config;
5959 if (!accept_connection(csp, bfds))
5961 log_error(LOG_LEVEL_CONNECT, "accept failed: %E");
5966 csp->flags |= CSP_FLAG_ACTIVE;
5967 csp->server_connection.sfd = JB_INVALID_SOCKET;
5969 csp->config = config = load_config();
5971 if (config->need_bind)
5974 * Since we were listening to the "old port", we will not see
5975 * a "listen" param change until the next request. So, at
5976 * least 1 more request must be made for us to find the new
5977 * setting. I am simply closing the old socket and binding the
5980 * Which-ever is correct, we will serve 1 more page via the
5981 * old settings. This should probably be a "show-status"
5982 * request. This should not be a so common of an operation
5983 * that this will hurt people's feelings.
5986 close_ports_helper(bfds);
5988 bind_ports_helper(config, bfds);
5991 #ifdef FEATURE_TOGGLE
5992 if (global_toggle_state)
5993 #endif /* def FEATURE_TOGGLE */
5995 csp->flags |= CSP_FLAG_TOGGLED_ON;
5998 if (run_loader(csp))
6000 log_error(LOG_LEVEL_FATAL, "a loader failed - must exit");
6001 /* Never get here - LOG_LEVEL_FATAL causes program exit */
6005 if (block_acl(NULL,csp))
6007 log_error(LOG_LEVEL_CONNECT,
6008 "Connection from %s on %s (socket %d) dropped due to ACL",
6009 csp->ip_addr_str, csp->listen_addr_str, csp->cfd);
6010 close_socket(csp->cfd);
6011 freez(csp->ip_addr_str);
6012 freez(csp->listen_addr_str);
6016 #endif /* def FEATURE_ACL */
6018 if ((0 != config->max_client_connections)
6019 && (active_threads >= config->max_client_connections))
6021 log_error(LOG_LEVEL_CONNECT,
6022 "Rejecting connection from %s. Maximum number of connections reached.",
6024 write_socket_delayed(csp->cfd, TOO_MANY_CONNECTIONS_RESPONSE,
6025 strlen(TOO_MANY_CONNECTIONS_RESPONSE), get_write_delay(csp));
6026 close_socket(csp->cfd);
6027 freez(csp->ip_addr_str);
6028 freez(csp->listen_addr_str);
6033 /* add it to the list of clients */
6034 csp_list->next = clients->next;
6035 clients->next = csp_list;
6037 if (config->multi_threaded)
6041 /* this is a switch () statement in the C preprocessor - ugh */
6042 #undef SELECTED_ONE_OPTION
6044 /* Use Pthreads in preference to native code */
6045 #if defined(FEATURE_PTHREAD) && !defined(SELECTED_ONE_OPTION)
6046 #define SELECTED_ONE_OPTION
6048 pthread_t the_thread;
6051 ret = pthread_create(&the_thread, &attrs,
6052 (void * (*)(void *))serve, csp);
6053 child_id = ret ? -1 : 0;
6057 #if defined(_WIN32) && !defined(_CYGWIN) && !defined(SELECTED_ONE_OPTION)
6058 #define SELECTED_ONE_OPTION
6059 child_id = _beginthread(
6060 (void (*)(void *))serve,
6065 #if defined(__BEOS__) && !defined(SELECTED_ONE_OPTION)
6066 #define SELECTED_ONE_OPTION
6068 thread_id tid = spawn_thread
6069 (server_thread, "server", B_NORMAL_PRIORITY, csp);
6071 if ((tid >= 0) && (resume_thread(tid) == B_OK))
6073 child_id = (int) tid;
6082 #if !defined(SELECTED_ONE_OPTION)
6085 /* This block is only needed when using fork().
6086 * When using threads, the server thread was
6087 * created and run by the call to _beginthread().
6089 if (child_id == 0) /* child */
6092 #ifdef FEATURE_TOGGLE
6093 int inherited_toggle_state = global_toggle_state;
6094 #endif /* def FEATURE_TOGGLE */
6099 * If we've been toggled or we've blocked the request, tell Mom
6102 #ifdef FEATURE_TOGGLE
6103 if (inherited_toggle_state != global_toggle_state)
6105 rc |= RC_FLAG_TOGGLED;
6107 #endif /* def FEATURE_TOGGLE */
6109 #ifdef FEATURE_STATISTICS
6110 if (csp->flags & CSP_FLAG_REJECTED)
6112 rc |= RC_FLAG_BLOCKED;
6114 #endif /* ndef FEATURE_STATISTICS */
6118 else if (child_id > 0) /* parent */
6120 /* in a fork()'d environment, the parent's
6121 * copy of the client socket and the CSP
6125 #if !defined(_WIN32) && !defined(__CYGWIN__)
6127 wait(&child_status);
6130 * Evaluate child's return code: If the child has
6131 * - been toggled, toggle ourselves
6132 * - blocked its request, bump up the stats counter
6135 #ifdef FEATURE_TOGGLE
6136 if (WIFEXITED(child_status) && (WEXITSTATUS(child_status) & RC_FLAG_TOGGLED))
6138 global_toggle_state = !global_toggle_state;
6140 #endif /* def FEATURE_TOGGLE */
6142 #ifdef FEATURE_STATISTICS
6144 if (WIFEXITED(child_status) && (WEXITSTATUS(child_status) & RC_FLAG_BLOCKED))
6148 #endif /* def FEATURE_STATISTICS */
6150 #endif /* !defined(_WIN32) && defined(__CYGWIN__) */
6151 close_socket(csp->cfd);
6152 csp->flags &= ~CSP_FLAG_ACTIVE;
6156 #undef SELECTED_ONE_OPTION
6157 /* end of cpp switch () */
6162 * Spawning the child failed, assume it's because
6163 * there are too many children running already.
6164 * XXX: If you assume ...
6166 log_error(LOG_LEVEL_ERROR,
6167 "Unable to take any additional connections: %E. Active threads: %u",
6169 write_socket_delayed(csp->cfd, TOO_MANY_CONNECTIONS_RESPONSE,
6170 strlen(TOO_MANY_CONNECTIONS_RESPONSE), get_write_delay(csp));
6171 close_socket(csp->cfd);
6172 csp->flags &= ~CSP_FLAG_ACTIVE;
6181 #if defined(FEATURE_PTHREAD)
6182 pthread_attr_destroy(&attrs);
6185 /* NOTREACHED unless FEATURE_GRACEFUL_TERMINATION is defined */
6187 #ifdef FEATURE_GRACEFUL_TERMINATION
6189 log_error(LOG_LEVEL_INFO, "Graceful termination requested.");
6191 unload_current_config_file();
6192 unload_current_actions_file();
6193 unload_current_re_filterfile();
6194 #ifdef FEATURE_TRUST
6195 unload_current_trust_file();
6198 if (config->multi_threaded)
6205 } while ((clients->next != NULL) && (--i > 0));
6209 log_error(LOG_LEVEL_ERROR, "Graceful termination failed "
6210 "- still some live clients after 1 minute wait.");
6220 #ifdef FEATURE_HTTPS_INSPECTION
6222 * Only release TLS backed resources if there
6223 * are no active connections left.
6225 if (clients->next == NULL)
6231 log_error(LOG_LEVEL_INFO, "Exiting gracefully.");
6233 #if defined(_WIN32) && !defined(_WIN_CONSOLE)
6234 /* Cleanup - remove taskbar icon etc. */
6239 #endif /* FEATURE_GRACEFUL_TERMINATION */