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-2020 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 */
65 # if !defined (__OS2__)
67 # include <sys/wait.h>
68 # endif /* ndef __OS2__ */
69 # include <sys/time.h>
70 # include <sys/stat.h>
71 # include <sys/ioctl.h>
74 #include <sys/termios.h>
85 # include <socket.h> /* BeOS has select() for sockets only. */
86 # include <OS.h> /* declarations for threads and stuff. */
89 # if defined(__EMX__) || defined(__OS2__)
90 # include <sys/select.h> /* OS/2/EMX needs a little help with select */
102 #endif /* def __GLIBC__ */
107 #warning poll() appears to be unavailable. Your platform will become unsupported in the future.
108 #endif /* HAVE_POLL */
115 #ifdef FEATURE_HTTPS_INSPECTION
121 #include "miscutil.h"
123 #include "jbsockets.h"
128 #include "urlmatch.h"
129 #ifdef FEATURE_CLIENT_TAGS
130 #include "client-tags.h"
134 struct client_states clients[1];
135 struct file_list files[1];
137 #ifdef FEATURE_STATISTICS
138 int urls_read = 0; /* total nr of urls read inc rejected */
139 int urls_rejected = 0; /* total nr of urls rejected */
140 #endif /* def FEATURE_STATISTICS */
142 #ifdef FEATURE_GRACEFUL_TERMINATION
146 #if !defined(_WIN32) && !defined(__OS2__)
147 static void sig_handler(int the_signal);
149 static int client_protocol_is_unsupported(struct client_state *csp, char *req);
150 static jb_err get_request_destination_elsewhere(struct client_state *csp, struct list *headers);
151 static jb_err get_server_headers(struct client_state *csp);
152 static const char *crunch_reason(const struct http_response *rsp);
153 static void send_crunch_response(struct client_state *csp, struct http_response *rsp);
154 static char *get_request_line(struct client_state *csp);
155 static jb_err receive_client_request(struct client_state *csp);
156 static jb_err parse_client_request(struct client_state *csp);
157 static void build_request_line(struct client_state *csp, const struct forward_spec *fwd, char **request_line);
158 static jb_err change_request_destination(struct client_state *csp);
159 static void chat(struct client_state *csp);
160 static void serve(struct client_state *csp);
161 #if !defined(_WIN32) || defined(_WIN_CONSOLE)
162 static void usage(const char *myname);
164 static void initialize_mutexes(void);
165 static jb_socket bind_port_helper(const char *haddr, int hport, int backlog);
166 static void bind_ports_helper(struct configuration_spec *config, jb_socket sockets[]);
167 static void close_ports_helper(jb_socket sockets[]);
168 static void listen_loop(void);
169 static void serve(struct client_state *csp);
172 static int32 server_thread(void *data);
173 #endif /* def __BEOS__ */
176 #define sleep(N) Sleep(((N) * 1000))
180 #define sleep(N) DosSleep(((N) * 100))
184 int process_fuzzed_input(char *fuzz_input_type, char *fuzz_input_file);
185 void show_fuzz_usage(const char *name);
188 #ifdef MUTEX_LOCKS_AVAILABLE
190 * XXX: Does the locking stuff really belong in this file?
192 privoxy_mutex_t log_mutex;
193 privoxy_mutex_t log_init_mutex;
194 privoxy_mutex_t connection_reuse_mutex;
196 #ifdef FEATURE_HTTPS_INSPECTION
197 privoxy_mutex_t certificate_mutex;
198 privoxy_mutex_t rng_mutex;
201 #ifdef FEATURE_EXTERNAL_FILTERS
202 privoxy_mutex_t external_filter_mutex;
204 #ifdef FEATURE_CLIENT_TAGS
205 privoxy_mutex_t client_tags_mutex;
208 #if !defined(HAVE_GETHOSTBYADDR_R) || !defined(HAVE_GETHOSTBYNAME_R)
209 privoxy_mutex_t resolver_mutex;
210 #endif /* !defined(HAVE_GETHOSTBYADDR_R) || !defined(HAVE_GETHOSTBYNAME_R) */
212 #ifndef HAVE_GMTIME_R
213 privoxy_mutex_t gmtime_mutex;
214 #endif /* ndef HAVE_GMTIME_R */
216 #ifndef HAVE_LOCALTIME_R
217 privoxy_mutex_t localtime_mutex;
218 #endif /* ndef HAVE_GMTIME_R */
220 #if !defined(HAVE_ARC4RANDOM) && !defined(HAVE_RANDOM)
221 privoxy_mutex_t rand_mutex;
222 #endif /* !defined(HAVE_ARC4RANDOM) && !defined(HAVE_RANDOM) */
224 #endif /* def MUTEX_LOCKS_AVAILABLE */
227 const char *basedir = NULL;
228 const char *pidfile = NULL;
229 static int received_hup_signal = 0;
230 #endif /* defined unix */
232 /* HTTP snipplets. */
233 static const char CSUCCEED[] =
234 "HTTP/1.1 200 Connection established\r\n\r\n";
236 static const char CHEADER[] =
237 "HTTP/1.1 400 Invalid header received from client\r\n"
238 "Content-Type: text/plain\r\n"
239 "Connection: close\r\n\r\n"
240 "Invalid header received from client.\r\n";
242 static const char FTP_RESPONSE[] =
243 "HTTP/1.1 400 Invalid request received from client\r\n"
244 "Content-Type: text/plain\r\n"
245 "Connection: close\r\n\r\n"
246 "Invalid request. Privoxy doesn't support FTP.\r\n";
248 static const char GOPHER_RESPONSE[] =
249 "HTTP/1.1 400 Invalid request received from client\r\n"
250 "Content-Type: text/plain\r\n"
251 "Connection: close\r\n\r\n"
252 "Invalid request. Privoxy doesn't support gopher.\r\n";
254 /* XXX: should be a template */
255 static const char MISSING_DESTINATION_RESPONSE[] =
256 "HTTP/1.1 400 Bad request received from client\r\n"
257 "Content-Type: text/plain\r\n"
258 "Connection: close\r\n\r\n"
259 "Bad request. Privoxy was unable to extract the destination.\r\n";
261 /* XXX: should be a template */
262 static const char INVALID_SERVER_HEADERS_RESPONSE[] =
263 "HTTP/1.1 502 Server or forwarder response invalid\r\n"
264 "Content-Type: text/plain\r\n"
265 "Connection: close\r\n\r\n"
266 "Bad response. The server or forwarder response doesn't look like HTTP.\r\n";
268 /* XXX: should be a template */
269 static const char MESSED_UP_REQUEST_RESPONSE[] =
270 "HTTP/1.1 400 Malformed request after rewriting\r\n"
271 "Content-Type: text/plain\r\n"
272 "Connection: close\r\n\r\n"
273 "Bad request. Messed up with header filters.\r\n";
275 static const char TOO_MANY_CONNECTIONS_RESPONSE[] =
276 "HTTP/1.1 503 Too many open connections\r\n"
277 "Content-Type: text/plain\r\n"
278 "Connection: close\r\n\r\n"
279 "Maximum number of open connections reached.\r\n";
281 static const char CLIENT_CONNECTION_TIMEOUT_RESPONSE[] =
282 "HTTP/1.1 504 Connection timeout\r\n"
283 "Content-Type: text/plain\r\n"
284 "Connection: close\r\n\r\n"
285 "The connection timed out because the client request didn't arrive in time.\r\n";
287 static const char CLIENT_BODY_PARSE_ERROR_RESPONSE[] =
288 "HTTP/1.1 400 Failed reading client body\r\n"
289 "Content-Type: text/plain\r\n"
290 "Connection: close\r\n\r\n"
291 "Failed parsing or buffering the chunk-encoded client body.\r\n";
293 static const char UNSUPPORTED_CLIENT_EXPECTATION_ERROR_RESPONSE[] =
294 "HTTP/1.1 417 Expecting too much\r\n"
295 "Content-Type: text/plain\r\n"
296 "Connection: close\r\n\r\n"
297 "Privoxy detected an unsupported Expect header value.\r\n";
299 /* A function to crunch a response */
300 typedef struct http_response *(*crunch_func_ptr)(struct client_state *);
302 /* Crunch function flags */
303 #define CF_NO_FLAGS 0
304 /* Cruncher applies to forced requests as well */
305 #define CF_IGNORE_FORCE 1
306 /* Crunched requests are counted for the block statistics */
307 #define CF_COUNT_AS_REJECT 2
309 /* A crunch function and its flags */
312 const crunch_func_ptr cruncher;
316 static int crunch_response_triggered(struct client_state *csp, const struct cruncher crunchers[]);
318 /* Complete list of cruncher functions */
319 static const struct cruncher crunchers_all[] = {
320 { direct_response, CF_COUNT_AS_REJECT|CF_IGNORE_FORCE},
321 { block_url, CF_COUNT_AS_REJECT },
323 { trust_url, CF_COUNT_AS_REJECT },
324 #endif /* def FEATURE_TRUST */
325 { redirect_url, CF_NO_FLAGS },
326 { dispatch_cgi, CF_IGNORE_FORCE},
330 /* Light version, used after tags are applied */
331 static const struct cruncher crunchers_light[] = {
332 { block_url, CF_COUNT_AS_REJECT },
333 { redirect_url, CF_NO_FLAGS },
339 * XXX: Don't we really mean
345 #if !defined(_WIN32) && !defined(__OS2__)
346 /*********************************************************************
348 * Function : sig_handler
350 * Description : Signal handler for different signals.
351 * Exit gracefully on TERM and INT
352 * or set a flag that will cause the errlog
353 * to be reopened by the main thread on HUP.
356 * 1 : the_signal = the signal cause this function to call
360 *********************************************************************/
361 static void sig_handler(int the_signal)
367 log_error(LOG_LEVEL_INFO, "exiting by signal %d .. bye", the_signal);
379 received_hup_signal = 1;
385 * We shouldn't be here, unless we catch signals
386 * in main() that we can't handle here!
388 log_error(LOG_LEVEL_FATAL, "sig_handler: exiting on unexpected signal %d", the_signal);
396 /*********************************************************************
398 * Function : get_write_delay
400 * Description : Parse the delay-response parameter.
403 * 1 : csp = Current client state (buffers, headers, etc...)
405 * Returns : Number of milliseconds to delay writes.
407 *********************************************************************/
408 static unsigned int get_write_delay(const struct client_state *csp)
414 if ((csp->action->flags & ACTION_DELAY_RESPONSE) == 0)
418 newval = csp->action->string[ACTION_STRING_DELAY_RESPONSE];
420 delay = (unsigned)strtol(newval, &endptr, 0);
423 log_error(LOG_LEVEL_FATAL,
424 "Invalid delay-response{} parameter: '%s'", newval);
432 /*********************************************************************
434 * Function : client_protocol_is_unsupported
436 * Description : Checks if the client used a known unsupported
437 * protocol and deals with it by sending an error
441 * 1 : csp = Current client state (buffers, headers, etc...)
442 * 2 : req = the first request line send by the client
444 * Returns : TRUE if an error response has been generated, or
445 * FALSE if the request doesn't look invalid.
447 *********************************************************************/
448 static int client_protocol_is_unsupported(struct client_state *csp, char *req)
451 * If it's a FTP or gopher request, we don't support it.
453 * These checks are better than nothing, but they might
454 * not work in all configurations and some clients might
455 * have problems digesting the answer.
457 * They should, however, never cause more problems than
458 * Privoxy's old behaviour (returning the misleading HTML
461 * "Could not resolve http://(ftp|gopher)://example.org").
463 if (!strncmpic(req, "GET ftp://", 10) || !strncmpic(req, "GET gopher://", 13))
465 const char *response = NULL;
466 const char *protocol = NULL;
468 if (!strncmpic(req, "GET ftp://", 10))
470 response = FTP_RESPONSE;
475 response = GOPHER_RESPONSE;
478 log_error(LOG_LEVEL_ERROR,
479 "%s tried to use Privoxy as %s proxy: %s",
480 csp->ip_addr_str, protocol, req);
481 log_error(LOG_LEVEL_CLF,
482 "%s - - [%T] \"%s\" 400 0", csp->ip_addr_str, req);
485 #ifdef FEATURE_HTTPS_INSPECTION
486 if (client_use_ssl(csp))
488 ssl_send_data(&(csp->mbedtls_client_attr.ssl),
489 (const unsigned char *)response, strlen(response));
494 write_socket_delayed(csp->cfd, response, strlen(response),
495 get_write_delay(csp));
505 /*********************************************************************
507 * Function : client_has_unsupported_expectations
509 * Description : Checks if the client used an unsupported expectation
510 * in which case an error message is delivered.
513 * 1 : csp = Current client state (buffers, headers, etc...)
515 * Returns : TRUE if an error response has been generated, or
516 * FALSE if the request doesn't look invalid.
518 *********************************************************************/
519 static int client_has_unsupported_expectations(const struct client_state *csp)
521 if ((csp->flags & CSP_FLAG_UNSUPPORTED_CLIENT_EXPECTATION))
523 log_error(LOG_LEVEL_ERROR,
524 "Rejecting request from client %s with unsupported Expect header value",
526 log_error(LOG_LEVEL_CLF,
527 "%s - - [%T] \"%s\" 417 0", csp->ip_addr_str, csp->http->cmd);
528 write_socket_delayed(csp->cfd,
529 UNSUPPORTED_CLIENT_EXPECTATION_ERROR_RESPONSE,
530 strlen(UNSUPPORTED_CLIENT_EXPECTATION_ERROR_RESPONSE),
531 get_write_delay(csp));
541 /*********************************************************************
543 * Function : get_request_destination_elsewhere
545 * Description : If the client's request was redirected into
546 * Privoxy without the client's knowledge,
547 * the request line lacks the destination host.
549 * This function tries to get it elsewhere,
550 * provided accept-intercepted-requests is enabled.
552 * "Elsewhere" currently only means "Host: header",
553 * but in the future we may ask the redirecting
554 * packet filter to look the destination up.
556 * If the destination stays unknown, an error
557 * response is send to the client and headers
558 * are freed so that chat() can return directly.
561 * 1 : csp = Current client state (buffers, headers, etc...)
562 * 2 : headers = a header list
564 * Returns : JB_ERR_OK if the destination is now known, or
565 * JB_ERR_PARSE if it isn't.
567 *********************************************************************/
568 static jb_err get_request_destination_elsewhere(struct client_state *csp, struct list *headers)
572 if (!(csp->config->feature_flags & RUNTIME_FEATURE_ACCEPT_INTERCEPTED_REQUESTS))
574 log_error(LOG_LEVEL_ERROR, "%s's request: \'%s\' is invalid."
575 " Privoxy isn't configured to accept intercepted requests.",
576 csp->ip_addr_str, csp->http->cmd);
577 /* XXX: Use correct size */
578 log_error(LOG_LEVEL_CLF, "%s - - [%T] \"%s\" 400 0",
579 csp->ip_addr_str, csp->http->cmd);
581 write_socket_delayed(csp->cfd, CHEADER, strlen(CHEADER),
582 get_write_delay(csp));
583 destroy_list(headers);
587 else if (JB_ERR_OK == get_destination_from_headers(headers, csp->http))
589 #ifndef FEATURE_EXTENDED_HOST_PATTERNS
590 /* Split the domain we just got for pattern matching */
591 init_domain_components(csp->http);
598 /* We can't work without destination. Go spread the news.*/
600 req = list_to_text(headers);
602 /* XXX: Use correct size */
603 log_error(LOG_LEVEL_CLF, "%s - - [%T] \"%s\" 400 0",
604 csp->ip_addr_str, csp->http->cmd);
605 log_error(LOG_LEVEL_ERROR,
606 "Privoxy was unable to get the destination for %s's request:\n%s\n%s",
607 csp->ip_addr_str, csp->http->cmd, req);
610 write_socket_delayed(csp->cfd, MISSING_DESTINATION_RESPONSE,
611 strlen(MISSING_DESTINATION_RESPONSE), get_write_delay(csp));
612 destroy_list(headers);
617 * TODO: If available, use PF's ioctl DIOCNATLOOK as last resort
618 * to get the destination IP address, use it as host directly
619 * or do a reverse DNS lookup first.
624 /*********************************************************************
626 * Function : get_server_headers
628 * Description : Parses server headers in iob and fills them
629 * into csp->headers so that they can later be
633 * 1 : csp = Current client state (buffers, headers, etc...)
635 * Returns : JB_ERR_OK if everything went fine, or
636 * JB_ERR_PARSE if the headers were incomplete.
638 *********************************************************************/
639 static jb_err get_server_headers(struct client_state *csp)
641 int continue_hack_in_da_house = 0;
644 while (((header = get_header(csp->iob)) != NULL) || continue_hack_in_da_house)
649 * continue hack in da house. Ignore the ending of
650 * this head and continue enlisting header lines.
651 * The reason is described below.
653 enlist(csp->headers, "");
654 continue_hack_in_da_house = 0;
657 else if (0 == strncmpic(header, "HTTP/1.1 100", 12))
660 * It's a bodyless continue response, don't
661 * stop header parsing after reaching its end.
663 * As a result Privoxy will concatenate the
664 * next response's head and parse and deliver
665 * the headers as if they belonged to one request.
667 * The client will separate them because of the
668 * empty line between them.
670 * XXX: What we're doing here is clearly against
671 * the intended purpose of the continue header,
672 * and under some conditions (HTTP/1.0 client request)
673 * it's a standard violation.
675 * Anyway, "sort of against the spec" is preferable
676 * to "always getting confused by Continue responses"
677 * (Privoxy's behaviour before this hack was added)
679 log_error(LOG_LEVEL_HEADER, "Continue hack in da house.");
680 continue_hack_in_da_house = 1;
682 else if (*header == '\0')
685 * If the header is empty, but the Continue hack
686 * isn't active, we can assume that we reached the
687 * end of the buffer before we hit the end of the
690 * Inform the caller an let it decide how to handle it.
695 if (JB_ERR_MEMORY == enlist(csp->headers, header))
698 * XXX: Should we quit the request and return a
699 * out of memory error page instead?
701 log_error(LOG_LEVEL_ERROR,
702 "Out of memory while enlisting server headers. %s lost.",
712 /*********************************************************************
714 * Function : crunch_reason
716 * Description : Translates the crunch reason code into a string.
719 * 1 : rsp = a http_response
721 * Returns : A string with the crunch reason or an error description.
723 *********************************************************************/
724 static const char *crunch_reason(const struct http_response *rsp)
726 char * reason = NULL;
731 return "Internal error while searching for crunch reason";
734 switch (rsp->crunch_reason)
737 reason = "Unsupported HTTP feature";
743 reason = "Untrusted";
746 reason = "Redirected";
752 reason = "DNS failure";
754 case FORWARDING_FAILED:
755 reason = "Forwarding failed";
758 reason = "Connection failure";
761 reason = "Out of memory (may mask other reasons)";
763 case CONNECTION_TIMEOUT:
764 reason = "Connection timeout";
767 reason = "No server data received";
770 reason = "No reason recorded";
778 /*********************************************************************
780 * Function : log_applied_actions
782 * Description : Logs the applied actions if LOG_LEVEL_ACTIONS is
786 * 1 : actions = Current action spec to log
790 *********************************************************************/
791 static void log_applied_actions(const struct current_action_spec *actions)
794 * The conversion to text requires lots of memory allocations so
795 * we only do the conversion if the user is actually interested.
797 if (debug_level_is_enabled(LOG_LEVEL_ACTIONS))
799 char *actions_as_text = actions_to_line_of_text(actions);
800 log_error(LOG_LEVEL_ACTIONS, "%s", actions_as_text);
801 freez(actions_as_text);
806 /*********************************************************************
808 * Function : send_crunch_response
810 * Description : Delivers already prepared response for
811 * intercepted requests, logs the interception
812 * and frees the response.
815 * 1 : csp = Current client state (buffers, headers, etc...)
816 * 2 : rsp = Fully prepared response. Will be freed on exit.
820 *********************************************************************/
821 static void send_crunch_response(struct client_state *csp, struct http_response *rsp)
823 const struct http_request *http = csp->http;
827 assert(rsp->head != NULL);
831 log_error(LOG_LEVEL_FATAL, "NULL response in send_crunch_response.");
835 * Extract the status code from the actual head
836 * that will be send to the client. It is the only
837 * way to get it right for all requests, including
838 * the fixed ones for out-of-memory problems.
840 * A head starts like this: 'HTTP/1.1 200...'
844 status_code[0] = rsp->head[9];
845 status_code[1] = rsp->head[10];
846 status_code[2] = rsp->head[11];
847 status_code[3] = '\0';
849 /* Log that the request was crunched and why. */
850 log_applied_actions(csp->action);
851 #ifdef FEATURE_HTTPS_INSPECTION
852 if (client_use_ssl(csp))
854 log_error(LOG_LEVEL_CRUNCH, "%s: https://%s%s", crunch_reason(rsp),
855 http->hostport, http->path);
856 log_error(LOG_LEVEL_CLF, "%s - - [%T] \"%s https://%s%s %s\" %s %llu",
857 csp->ip_addr_str, http->gpc, http->hostport, http->path,
858 http->version, status_code, rsp->content_length);
863 log_error(LOG_LEVEL_CRUNCH, "%s: %s", crunch_reason(rsp), http->url);
864 log_error(LOG_LEVEL_CLF, "%s - - [%T] \"%s\" %s %u",
865 csp->ip_addr_str, http->ocmd, status_code, rsp->content_length);
867 /* Write the answer to the client */
868 #ifdef FEATURE_HTTPS_INSPECTION
869 if (client_use_ssl(csp))
871 if ((ssl_send_data(&(csp->mbedtls_client_attr.ssl),
872 (const unsigned char *)rsp->head, rsp->head_length) < 0)
873 || (ssl_send_data(&(csp->mbedtls_client_attr.ssl),
874 (const unsigned char *)rsp->body, rsp->content_length) < 0))
876 /* There is nothing we can do about it. */
877 log_error(LOG_LEVEL_CONNECT, "Couldn't deliver the error message "
878 "for %s through client socket %d using TLS/SSL",
879 http->url, csp->cfd);
885 if (write_socket_delayed(csp->cfd, rsp->head, rsp->head_length,
886 get_write_delay(csp))
887 || write_socket_delayed(csp->cfd, rsp->body, rsp->content_length,
888 get_write_delay(csp)))
890 /* There is nothing we can do about it. */
891 log_error(LOG_LEVEL_CONNECT,
892 "Couldn't deliver the error message for %s through client socket %d: %E",
893 http->url, csp->cfd);
897 /* Clean up and return */
898 if (cgi_error_memory() != rsp)
900 free_http_response(rsp);
906 /*********************************************************************
908 * Function : crunch_response_triggered
910 * Description : Checks if the request has to be crunched,
911 * and delivers the crunch response if necessary.
914 * 1 : csp = Current client state (buffers, headers, etc...)
915 * 2 : crunchers = list of cruncher functions to run
917 * Returns : TRUE if the request was answered with a crunch response
920 *********************************************************************/
921 static int crunch_response_triggered(struct client_state *csp, const struct cruncher crunchers[])
923 struct http_response *rsp = NULL;
924 const struct cruncher *c;
927 * If CGI request crunching is disabled,
928 * check the CGI dispatcher out of order to
929 * prevent unintentional blocks or redirects.
931 if (!(csp->config->feature_flags & RUNTIME_FEATURE_CGI_CRUNCHING)
932 && (NULL != (rsp = dispatch_cgi(csp))))
934 /* Deliver, log and free the interception response. */
935 send_crunch_response(csp, rsp);
936 csp->flags |= CSP_FLAG_CRUNCHED;
940 for (c = crunchers; c->cruncher != NULL; c++)
943 * Check the cruncher if either Privoxy is toggled
944 * on and the request isn't forced, or if the cruncher
945 * applies to forced requests as well.
947 if (((csp->flags & CSP_FLAG_TOGGLED_ON) &&
948 !(csp->flags & CSP_FLAG_FORCED)) ||
949 (c->flags & CF_IGNORE_FORCE))
951 rsp = c->cruncher(csp);
954 /* Deliver, log and free the interception response. */
955 send_crunch_response(csp, rsp);
956 csp->flags |= CSP_FLAG_CRUNCHED;
957 #ifdef FEATURE_STATISTICS
958 if (c->flags & CF_COUNT_AS_REJECT)
960 csp->flags |= CSP_FLAG_REJECTED;
962 #endif /* def FEATURE_STATISTICS */
973 /*********************************************************************
975 * Function : build_request_line
977 * Description : Builds the HTTP request line.
979 * If a HTTP forwarder is used it expects the whole URL,
980 * web servers only get the path.
983 * 1 : csp = Current client state (buffers, headers, etc...)
984 * 2 : fwd = The forwarding spec used for the request
985 * XXX: Should use http->fwd instead.
986 * 3 : request_line = The old request line which will be replaced.
988 * Returns : Nothing. Terminates in case of memory problems.
990 *********************************************************************/
991 static void build_request_line(struct client_state *csp, const struct forward_spec *fwd, char **request_line)
993 struct http_request *http = csp->http;
996 * Downgrade http version from 1.1 to 1.0
997 * if +downgrade action applies.
999 if ((csp->action->flags & ACTION_DOWNGRADE)
1000 && (!strcmpic(http->version, "HTTP/1.1")))
1002 freez(http->version);
1003 http->version = strdup_or_die("HTTP/1.0");
1007 * Rebuild the request line.
1009 freez(*request_line);
1010 *request_line = strdup(http->gpc);
1011 string_append(request_line, " ");
1013 if (fwd->forward_host && fwd->type != FORWARD_WEBSERVER)
1015 string_append(request_line, http->url);
1019 string_append(request_line, http->path);
1021 string_append(request_line, " ");
1022 string_append(request_line, http->version);
1024 if (*request_line == NULL)
1026 log_error(LOG_LEVEL_FATAL, "Out of memory writing HTTP command");
1028 log_error(LOG_LEVEL_HEADER, "New HTTP Request-Line: %s", *request_line);
1032 /*********************************************************************
1034 * Function : change_request_destination
1036 * Description : Parse a (rewritten) request line and regenerate
1037 * the http request data.
1040 * 1 : csp = Current client state (buffers, headers, etc...)
1042 * Returns : Forwards the parse_http_request() return code.
1043 * Terminates in case of memory problems.
1045 *********************************************************************/
1046 static jb_err change_request_destination(struct client_state *csp)
1048 struct http_request *http = csp->http;
1051 log_error(LOG_LEVEL_REDIRECTS, "Rewrite detected: %s",
1052 csp->headers->first->str);
1053 free_http_request(http);
1054 err = parse_http_request(csp->headers->first->str, http);
1055 if (JB_ERR_OK != err)
1057 log_error(LOG_LEVEL_ERROR, "Couldn't parse rewritten request: %s.",
1058 jb_err_to_string(err));
1065 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
1066 /*********************************************************************
1068 * Function : server_response_is_complete
1070 * Description : Determines whether we should stop reading
1071 * from the server socket.
1074 * 1 : csp = Current client state (buffers, headers, etc...)
1075 * 2 : content_length = Length of content received so far.
1077 * Returns : TRUE if the response is complete,
1080 *********************************************************************/
1081 static int server_response_is_complete(struct client_state *csp,
1082 unsigned long long content_length)
1084 int content_length_known = !!(csp->flags & CSP_FLAG_CONTENT_LENGTH_SET);
1086 if (!strcmpic(csp->http->gpc, "HEAD"))
1089 * "HEAD" implies no body, we are thus expecting
1090 * no content. XXX: incomplete "list" of methods?
1092 csp->expected_content_length = 0;
1093 content_length_known = TRUE;
1094 csp->flags |= CSP_FLAG_SERVER_CONTENT_LENGTH_SET;
1097 if (csp->http->status == 204 || csp->http->status == 304)
1100 * Expect no body. XXX: incomplete "list" of status codes?
1102 csp->expected_content_length = 0;
1103 content_length_known = TRUE;
1104 csp->flags |= CSP_FLAG_SERVER_CONTENT_LENGTH_SET;
1107 return (content_length_known && ((0 == csp->expected_content_length)
1108 || (csp->expected_content_length <= content_length)));
1112 #ifdef FEATURE_CONNECTION_SHARING
1113 /*********************************************************************
1115 * Function : wait_for_alive_connections
1117 * Description : Waits for alive connections to timeout.
1123 *********************************************************************/
1124 static void wait_for_alive_connections(void)
1126 int connections_alive = close_unusable_connections();
1128 while (0 < connections_alive)
1130 log_error(LOG_LEVEL_CONNECT,
1131 "Waiting for %d connections to timeout.",
1134 connections_alive = close_unusable_connections();
1137 log_error(LOG_LEVEL_CONNECT, "No connections to wait for left.");
1140 #endif /* def FEATURE_CONNECTION_SHARING */
1143 /*********************************************************************
1145 * Function : save_connection_destination
1147 * Description : Remembers a connection for reuse later on.
1150 * 1 : sfd = Open socket to remember.
1151 * 2 : http = The destination for the connection.
1152 * 3 : fwd = The forwarder settings used.
1153 * 4 : server_connection = storage.
1157 *********************************************************************/
1158 void save_connection_destination(jb_socket sfd,
1159 const struct http_request *http,
1160 const struct forward_spec *fwd,
1161 struct reusable_connection *server_connection)
1163 assert(sfd != JB_INVALID_SOCKET);
1164 assert(NULL != http->host);
1166 server_connection->sfd = sfd;
1167 server_connection->host = strdup_or_die(http->host);
1168 server_connection->port = http->port;
1170 assert(NULL != fwd);
1171 assert(server_connection->gateway_host == NULL);
1172 assert(server_connection->gateway_port == 0);
1173 assert(server_connection->forwarder_type == 0);
1174 assert(server_connection->forward_host == NULL);
1175 assert(server_connection->forward_port == 0);
1177 server_connection->forwarder_type = fwd->type;
1178 if (NULL != fwd->gateway_host)
1180 server_connection->gateway_host = strdup_or_die(fwd->gateway_host);
1184 server_connection->gateway_host = NULL;
1186 server_connection->gateway_port = fwd->gateway_port;
1188 if (NULL != fwd->forward_host)
1190 server_connection->forward_host = strdup_or_die(fwd->forward_host);
1194 server_connection->forward_host = NULL;
1196 server_connection->forward_port = fwd->forward_port;
1200 /*********************************************************************
1202 * Function : verify_request_length
1204 * Description : Checks if we already got the whole client requests
1205 * and sets CSP_FLAG_CLIENT_REQUEST_COMPLETELY_READ if
1208 * Data that doesn't belong to the current request is
1209 * either thrown away to let the client retry on a clean
1210 * socket, or stashed to be dealt with after the current
1211 * request is served.
1214 * 1 : csp = Current client state (buffers, headers, etc...)
1218 *********************************************************************/
1219 static void verify_request_length(struct client_state *csp)
1221 unsigned long long buffered_request_bytes =
1222 (unsigned long long)(csp->client_iob->eod - csp->client_iob->cur);
1224 if ((csp->expected_client_content_length != 0)
1225 && (buffered_request_bytes != 0))
1227 if (csp->expected_client_content_length >= buffered_request_bytes)
1229 csp->expected_client_content_length -= buffered_request_bytes;
1230 log_error(LOG_LEVEL_CONNECT, "Reduced expected bytes to %llu "
1231 "to account for the %llu ones we already got.",
1232 csp->expected_client_content_length, buffered_request_bytes);
1236 assert(csp->client_iob->eod > csp->client_iob->cur + csp->expected_client_content_length);
1237 csp->client_iob->eod = csp->client_iob->cur + csp->expected_client_content_length;
1238 log_error(LOG_LEVEL_CONNECT, "Reducing expected bytes to 0. "
1239 "Marking the server socket tainted after throwing %llu bytes away.",
1240 buffered_request_bytes - csp->expected_client_content_length);
1241 csp->expected_client_content_length = 0;
1242 csp->flags |= CSP_FLAG_SERVER_SOCKET_TAINTED;
1245 if (csp->expected_client_content_length == 0)
1247 csp->flags |= CSP_FLAG_CLIENT_REQUEST_COMPLETELY_READ;
1251 if (!(csp->flags & CSP_FLAG_CLIENT_REQUEST_COMPLETELY_READ)
1252 && ((csp->client_iob->cur < csp->client_iob->eod)
1253 || (csp->expected_client_content_length != 0)))
1255 if (strcmpic(csp->http->gpc, "GET")
1256 && strcmpic(csp->http->gpc, "HEAD")
1257 && strcmpic(csp->http->gpc, "TRACE")
1258 && strcmpic(csp->http->gpc, "OPTIONS")
1259 && strcmpic(csp->http->gpc, "DELETE"))
1261 /* XXX: this is an incomplete hack */
1262 csp->flags &= ~CSP_FLAG_CLIENT_REQUEST_COMPLETELY_READ;
1263 log_error(LOG_LEVEL_CONNECT, "There better be a request body.");
1267 csp->flags |= CSP_FLAG_CLIENT_REQUEST_COMPLETELY_READ;
1269 if ((csp->config->feature_flags & RUNTIME_FEATURE_TOLERATE_PIPELINING) == 0)
1271 csp->flags |= CSP_FLAG_SERVER_SOCKET_TAINTED;
1272 log_error(LOG_LEVEL_CONNECT,
1273 "Possible pipeline attempt detected. The connection will not "
1274 "be kept alive and we will only serve the first request.");
1275 /* Nuke the pipelined requests from orbit, just to be sure. */
1276 clear_iob(csp->client_iob);
1281 * Keep the pipelined data around for now, we'll deal with
1282 * it once we're done serving the current request.
1284 csp->flags |= CSP_FLAG_PIPELINED_REQUEST_WAITING;
1285 assert(csp->client_iob->eod >= csp->client_iob->cur);
1286 log_error(LOG_LEVEL_CONNECT, "Complete client request followed by "
1287 "%d bytes of pipelined data received.",
1288 (int)(csp->client_iob->eod - csp->client_iob->cur));
1294 csp->flags |= CSP_FLAG_CLIENT_REQUEST_COMPLETELY_READ;
1295 log_error(LOG_LEVEL_CONNECT, "Complete client request received.");
1298 #endif /* FEATURE_CONNECTION_KEEP_ALIVE */
1301 /*********************************************************************
1303 * Function : mark_server_socket_tainted
1305 * Description : Makes sure we don't reuse a server socket
1306 * (if we didn't read everything the server sent
1307 * us reusing the socket would lead to garbage).
1310 * 1 : csp = Current client state (buffers, headers, etc...)
1314 *********************************************************************/
1315 static void mark_server_socket_tainted(struct client_state *csp)
1318 * For consistency we always mark the server socket
1319 * tainted, however, to reduce the log noise we only
1320 * emit a log message if the server socket could have
1321 * actually been reused.
1323 if ((csp->flags & CSP_FLAG_SERVER_CONNECTION_KEEP_ALIVE)
1324 && !(csp->flags & CSP_FLAG_SERVER_SOCKET_TAINTED))
1326 log_error(LOG_LEVEL_CONNECT,
1327 "Marking the server socket %d tainted.",
1328 csp->server_connection.sfd);
1330 csp->flags |= CSP_FLAG_SERVER_SOCKET_TAINTED;
1333 /*********************************************************************
1335 * Function : get_request_line
1337 * Description : Read the client request line.
1340 * 1 : csp = Current client state (buffers, headers, etc...)
1342 * Returns : Pointer to request line or NULL in case of errors.
1344 *********************************************************************/
1345 static char *get_request_line(struct client_state *csp)
1347 char buf[BUFFER_SIZE];
1348 char *request_line = NULL;
1351 memset(buf, 0, sizeof(buf));
1353 if ((csp->flags & CSP_FLAG_PIPELINED_REQUEST_WAITING) != 0)
1356 * If there are multiple pipelined requests waiting,
1357 * the flag will be set again once the next request
1360 csp->flags &= ~CSP_FLAG_PIPELINED_REQUEST_WAITING;
1362 request_line = get_header(csp->client_iob);
1363 if ((NULL != request_line) && ('\0' != *request_line))
1365 return request_line;
1369 log_error(LOG_LEVEL_CONNECT, "No complete request line "
1370 "received yet. Continuing reading from %d.", csp->cfd);
1378 0 == (csp->flags & CSP_FLAG_FUZZED_INPUT) &&
1380 !data_is_available(csp->cfd, csp->config->socket_timeout)
1383 if (socket_is_still_alive(csp->cfd))
1385 log_error(LOG_LEVEL_CONNECT,
1386 "No request line on socket %d received in time. Timeout: %d.",
1387 csp->cfd, csp->config->socket_timeout);
1388 write_socket_delayed(csp->cfd, CLIENT_CONNECTION_TIMEOUT_RESPONSE,
1389 strlen(CLIENT_CONNECTION_TIMEOUT_RESPONSE),
1390 get_write_delay(csp));
1394 log_error(LOG_LEVEL_CONNECT,
1395 "The client side of the connection on socket %d got "
1396 "closed without sending a complete request line.", csp->cfd);
1401 len = read_socket(csp->cfd, buf, sizeof(buf) - 1);
1403 if (len <= 0) return NULL;
1406 * If there is no memory left for buffering the
1407 * request, there is nothing we can do but hang up
1409 if (add_to_iob(csp->client_iob, csp->config->buffer_limit, buf, len))
1414 request_line = get_header(csp->client_iob);
1416 } while ((NULL != request_line) && ('\0' == *request_line));
1418 return request_line;
1424 CHUNK_STATUS_MISSING_DATA,
1425 CHUNK_STATUS_BODY_COMPLETE,
1426 CHUNK_STATUS_PARSE_ERROR
1430 /*********************************************************************
1432 * Function : chunked_body_is_complete
1434 * Description : Figures out whether or not a chunked body is complete.
1436 * Currently it always starts at the beginning of the
1437 * buffer which is somewhat wasteful and prevents Privoxy
1438 * from starting to forward the correctly parsed chunks
1439 * as soon as theoretically possible.
1441 * Should be modified to work with a common buffer,
1442 * and allow the caller to skip already parsed chunks.
1444 * This would allow the function to be used for unbuffered
1445 * response bodies as well.
1448 * 1 : iob = Buffer with the body to check.
1449 * 2 : length = Length of complete body
1451 * Returns : Enum with the result of the check.
1453 *********************************************************************/
1454 static enum chunk_status chunked_body_is_complete(struct iob *iob, size_t *length)
1456 unsigned int chunksize;
1462 * We need at least a single digit, followed by "\r\n",
1463 * followed by an unknown amount of data, followed by "\r\n".
1465 if (p + 5 > iob->eod)
1467 return CHUNK_STATUS_MISSING_DATA;
1469 if (sscanf(p, "%x", &chunksize) != 1)
1471 return CHUNK_STATUS_PARSE_ERROR;
1475 * We want at least a single digit, followed by "\r\n",
1476 * followed by the specified amount of data, followed by "\r\n".
1478 if (p + chunksize + 5 > iob->eod)
1480 return CHUNK_STATUS_MISSING_DATA;
1483 /* Skip chunk-size. */
1484 p = strstr(p, "\r\n");
1487 return CHUNK_STATUS_PARSE_ERROR;
1489 /* Move beyond the chunkdata. */
1492 /* There should be another "\r\n" to skip */
1493 if (memcmp(p, "\r\n", 2))
1495 return CHUNK_STATUS_PARSE_ERROR;
1498 } while (chunksize > 0U);
1500 *length = (size_t)(p - iob->cur);
1501 assert(*length <= (size_t)(iob->eod - iob->cur));
1502 assert(p <= iob->eod);
1504 return CHUNK_STATUS_BODY_COMPLETE;
1509 /*********************************************************************
1511 * Function : receive_chunked_client_request_body
1513 * Description : Read the chunk-encoded client request body.
1514 * Failures are dealt with.
1517 * 1 : csp = Current client state (buffers, headers, etc...)
1519 * Returns : JB_ERR_OK or JB_ERR_PARSE
1521 *********************************************************************/
1522 static jb_err receive_chunked_client_request_body(struct client_state *csp)
1525 enum chunk_status status;
1527 while (CHUNK_STATUS_MISSING_DATA ==
1528 (status = chunked_body_is_complete(csp->client_iob, &body_length)))
1530 char buf[BUFFER_SIZE];
1533 if (!data_is_available(csp->cfd, csp->config->socket_timeout))
1535 log_error(LOG_LEVEL_ERROR,
1536 "Timeout while waiting for the client body.");
1539 len = read_socket(csp->cfd, buf, sizeof(buf) - 1);
1542 log_error(LOG_LEVEL_ERROR, "Read the client body failed: %E");
1545 if (add_to_iob(csp->client_iob, csp->config->buffer_limit, buf, len))
1550 if (status != CHUNK_STATUS_BODY_COMPLETE)
1552 write_socket_delayed(csp->cfd, CLIENT_BODY_PARSE_ERROR_RESPONSE,
1553 strlen(CLIENT_BODY_PARSE_ERROR_RESPONSE), get_write_delay(csp));
1554 log_error(LOG_LEVEL_CLF,
1555 "%s - - [%T] \"Failed reading chunked client body\" 400 0", csp->ip_addr_str);
1556 return JB_ERR_PARSE;
1558 log_error(LOG_LEVEL_CONNECT,
1559 "Chunked client body completely read. Length: %d", body_length);
1560 csp->expected_client_content_length = body_length;
1568 /*********************************************************************
1570 * Function : fuzz_chunked_transfer_encoding
1572 * Description : Treat the fuzzed input as chunked transfer encoding
1573 * to check and dechunk.
1576 * 1 : csp = Used to store the data.
1577 * 2 : fuzz_input_file = File to read the input from.
1579 * Returns : Result of dechunking
1581 *********************************************************************/
1582 extern int fuzz_chunked_transfer_encoding(struct client_state *csp, char *fuzz_input_file)
1585 size_t size = (size_t)(csp->iob->eod - csp->iob->cur);
1586 enum chunk_status status;
1588 status = chunked_body_is_complete(csp->iob, &length);
1589 if (CHUNK_STATUS_BODY_COMPLETE != status)
1591 log_error(LOG_LEVEL_INFO, "Chunked body is incomplete or invalid");
1594 return (JB_ERR_OK == remove_chunked_transfer_coding(csp->iob->cur, &size));
1599 /*********************************************************************
1601 * Function : fuzz_client_request
1603 * Description : Try to get a client request from the fuzzed input.
1606 * 1 : csp = Current client state (buffers, headers, etc...)
1607 * 2 : fuzz_input_file = File to read the input from.
1609 * Returns : Result of fuzzing.
1611 *********************************************************************/
1612 extern int fuzz_client_request(struct client_state *csp, char *fuzz_input_file)
1617 csp->ip_addr_str = "fuzzer";
1619 if (strcmp(fuzz_input_file, "-") != 0)
1621 log_error(LOG_LEVEL_FATAL,
1622 "Fuzzed client requests can currenty only be read from stdin (-).");
1624 err = receive_client_request(csp);
1625 if (err != JB_ERR_OK)
1629 err = parse_client_request(csp);
1630 if (err != JB_ERR_OK)
1638 #endif /* def FUZZ */
1641 #ifdef FEATURE_FORCE_LOAD
1642 /*********************************************************************
1644 * Function : force_required
1646 * Description : Checks a request line to see if it contains
1647 * the FORCE_PREFIX. If it does, it is removed
1648 * unless enforcing requests has beend disabled.
1651 * 1 : request_line = HTTP request line
1653 * Returns : TRUE if force is required, FALSE otherwise.
1655 *********************************************************************/
1656 static int force_required(const struct client_state *csp, char *request_line)
1660 p = strstr(request_line, "http://");
1664 p += strlen("http://");
1668 /* Intercepted request usually don't specify the protocol. */
1672 /* Go to the beginning of the path */
1677 * If the path is missing the request line is invalid and we
1678 * are done here. The client-visible rejection happens later on.
1683 if (0 == strncmpic(p, FORCE_PREFIX, strlen(FORCE_PREFIX) - 1))
1685 if (!(csp->config->feature_flags & RUNTIME_FEATURE_ENFORCE_BLOCKS))
1687 /* XXX: Should clean more carefully */
1688 strclean(request_line, FORCE_PREFIX);
1689 log_error(LOG_LEVEL_FORCE,
1690 "Enforcing request: \"%s\".", request_line);
1694 log_error(LOG_LEVEL_FORCE,
1695 "Ignored force prefix in request: \"%s\".", request_line);
1701 #endif /* def FEATURE_FORCE_LOAD */
1704 /*********************************************************************
1706 * Function : receive_client_request
1708 * Description : Read the client's request (more precisely the
1709 * client headers) and answer it if necessary.
1712 * 1 : csp = Current client state (buffers, headers, etc...)
1714 * Returns : JB_ERR_OK, JB_ERR_PARSE or JB_ERR_MEMORY
1716 *********************************************************************/
1717 static jb_err receive_client_request(struct client_state *csp)
1719 char buf[BUFFER_SIZE];
1722 struct http_request *http;
1726 /* Temporary copy of the client's headers before they get enlisted in csp->headers */
1727 struct list header_list;
1728 struct list *headers = &header_list;
1730 /* We don't care if the arriving data is a valid HTTP request or not. */
1731 csp->requests_received_total++;
1735 memset(buf, 0, sizeof(buf));
1737 req = get_request_line(csp);
1740 mark_server_socket_tainted(csp);
1741 return JB_ERR_PARSE;
1743 assert(*req != '\0');
1745 if (client_protocol_is_unsupported(csp, req))
1747 return JB_ERR_PARSE;
1750 #ifdef FEATURE_FORCE_LOAD
1751 if (force_required(csp, req))
1753 csp->flags |= CSP_FLAG_FORCED;
1755 #endif /* def FEATURE_FORCE_LOAD */
1757 err = parse_http_request(req, http);
1759 if (JB_ERR_OK != err)
1761 write_socket_delayed(csp->cfd, CHEADER, strlen(CHEADER),
1762 get_write_delay(csp));
1763 /* XXX: Use correct size */
1764 log_error(LOG_LEVEL_CLF, "%s - - [%T] \"Invalid request\" 400 0", csp->ip_addr_str);
1765 log_error(LOG_LEVEL_ERROR,
1766 "Couldn't parse request line received from %s: %s",
1767 csp->ip_addr_str, jb_err_to_string(err));
1769 free_http_request(http);
1770 return JB_ERR_PARSE;
1773 /* grab the rest of the client's headers */
1777 p = get_header(csp->client_iob);
1781 /* There are no additional headers to read. */
1788 * We didn't receive a complete header
1789 * line yet, get the rest of it.
1791 if (!data_is_available(csp->cfd, csp->config->socket_timeout))
1793 log_error(LOG_LEVEL_ERROR,
1794 "Stopped grabbing the client headers.");
1795 destroy_list(headers);
1796 return JB_ERR_PARSE;
1799 len = read_socket(csp->cfd, buf, sizeof(buf) - 1);
1802 log_error(LOG_LEVEL_ERROR, "read from client failed: %E");
1803 destroy_list(headers);
1804 return JB_ERR_PARSE;
1807 if (add_to_iob(csp->client_iob, csp->config->buffer_limit, buf, len))
1810 * If there is no memory left for buffering the
1811 * request, there is nothing we can do but hang up
1813 destroy_list(headers);
1814 return JB_ERR_MEMORY;
1819 if (!strncmpic(p, "Transfer-Encoding:", 18))
1822 * XXX: should be called through sed()
1823 * but currently can't.
1825 client_transfer_encoding(csp, &p);
1828 * We were able to read a complete
1829 * header and can finally enlist it.
1836 if (http->host == NULL)
1839 * If we still don't know the request destination,
1840 * the request is invalid or the client uses
1841 * Privoxy without its knowledge.
1843 if (JB_ERR_OK != get_request_destination_elsewhere(csp, headers))
1846 * Our attempts to get the request destination
1847 * elsewhere failed or Privoxy is configured
1848 * to only accept proxy requests.
1850 * An error response has already been send
1851 * and we're done here.
1853 return JB_ERR_PARSE;
1857 #ifdef FEATURE_CLIENT_TAGS
1858 /* XXX: If the headers were enlisted sooner, passing csp would do. */
1859 set_client_address(csp, headers);
1860 get_tag_list_for_client(csp->client_tags, csp->client_address);
1864 * Determine the actions for this URL
1866 #ifdef FEATURE_TOGGLE
1867 if (!(csp->flags & CSP_FLAG_TOGGLED_ON))
1869 /* Most compatible set of actions (i.e. none) */
1870 init_current_action(csp->action);
1873 #endif /* ndef FEATURE_TOGGLE */
1875 get_url_actions(csp, http);
1878 enlist(csp->headers, http->cmd);
1880 /* Append the previously read headers */
1881 err = list_append_list_unique(csp->headers, headers);
1882 destroy_list(headers);
1889 /*********************************************************************
1891 * Function : parse_client_request
1893 * Description : Parses the client's request and decides what to do
1896 * Note that since we're not using select() we could get
1897 * blocked here if a client connected, then didn't say
1901 * 1 : csp = Current client state (buffers, headers, etc...)
1903 * Returns : JB_ERR_OK or JB_ERR_PARSE
1905 *********************************************************************/
1906 static jb_err parse_client_request(struct client_state *csp)
1908 struct http_request *http = csp->http;
1911 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
1912 if ((csp->config->feature_flags & RUNTIME_FEATURE_CONNECTION_KEEP_ALIVE)
1913 && (!strcmpic(csp->http->version, "HTTP/1.1"))
1914 && (csp->http->ssl == 0))
1916 /* Assume persistence until further notice */
1917 csp->flags |= CSP_FLAG_CLIENT_CONNECTION_KEEP_ALIVE;
1920 if (csp->http->ssl == 0)
1923 * This whole block belongs to chat() but currently
1924 * has to be executed before sed().
1926 if (csp->flags & CSP_FLAG_CHUNKED_CLIENT_BODY)
1928 if (receive_chunked_client_request_body(csp) != JB_ERR_OK)
1930 return JB_ERR_PARSE;
1935 csp->expected_client_content_length = get_expected_content_length(csp->headers);
1937 verify_request_length(csp);
1941 csp->flags |= CSP_FLAG_SERVER_SOCKET_TAINTED;
1943 #endif /* def FEATURE_CONNECTION_KEEP_ALIVE */
1945 err = sed(csp, FILTER_CLIENT_HEADERS);
1946 if (JB_ERR_OK != err)
1948 log_error(LOG_LEVEL_ERROR, "Failed to parse client request from %s.",
1950 log_error(LOG_LEVEL_CLF, "%s - - [%T] \"%s\" 400 0",
1951 csp->ip_addr_str, csp->http->cmd);
1952 write_socket_delayed(csp->cfd, CHEADER, strlen(CHEADER), get_write_delay(csp));
1953 return JB_ERR_PARSE;
1955 csp->flags |= CSP_FLAG_CLIENT_HEADER_PARSING_DONE;
1957 /* Check request line for rewrites. */
1958 if ((NULL == csp->headers->first->str)
1959 || (strcmp(http->cmd, csp->headers->first->str) &&
1960 (JB_ERR_OK != change_request_destination(csp))))
1963 * A header filter broke the request line - bail out.
1965 write_socket_delayed(csp->cfd, MESSED_UP_REQUEST_RESPONSE,
1966 strlen(MESSED_UP_REQUEST_RESPONSE), get_write_delay(csp));
1967 /* XXX: Use correct size */
1968 log_error(LOG_LEVEL_CLF,
1969 "%s - - [%T] \"Invalid request generated\" 500 0", csp->ip_addr_str);
1970 log_error(LOG_LEVEL_ERROR,
1971 "Invalid request line after applying header filters.");
1972 free_http_request(http);
1974 return JB_ERR_PARSE;
1977 if (client_has_unsupported_expectations(csp))
1979 return JB_ERR_PARSE;
1987 /*********************************************************************
1989 * Function : send_http_request
1991 * Description : Sends the HTTP headers from the client request
1992 * and all the body data that has already been received.
1995 * 1 : csp = Current client state (buffers, headers, etc...)
1997 * Returns : 0 on success, anything else is an error.
1999 *********************************************************************/
2000 static int send_http_request(struct client_state *csp)
2005 hdr = list_to_text(csp->headers);
2008 /* FIXME Should handle error properly */
2009 log_error(LOG_LEVEL_FATAL, "Out of memory parsing client header");
2011 list_remove_all(csp->headers);
2014 * Write the client's (modified) header to the server
2015 * (along with anything else that may be in the buffer)
2017 write_failure = 0 != write_socket(csp->server_connection.sfd, hdr, strlen(hdr));
2022 log_error(LOG_LEVEL_CONNECT, "Failed sending request headers to: %s: %E",
2023 csp->http->hostport);
2025 else if (((csp->flags & CSP_FLAG_PIPELINED_REQUEST_WAITING) == 0)
2026 && (flush_iob(csp->server_connection.sfd, csp->client_iob, 0) < 0))
2029 log_error(LOG_LEVEL_CONNECT, "Failed sending request body to: %s: %E",
2030 csp->http->hostport);
2033 return write_failure;
2038 #ifdef FEATURE_HTTPS_INSPECTION
2039 /*********************************************************************
2041 * Function : receive_and_send_encrypted_post_data
2043 * Description : Reads remaining POST data from the client and sends
2047 * 1 : csp = Current client state (buffers, headers, etc...)
2049 * Returns : 0 on success, anything else is an error.
2051 *********************************************************************/
2052 static jb_err receive_and_send_encrypted_post_data(struct client_state *csp)
2054 int content_length_known = csp->expected_client_content_length != 0;
2056 while (is_ssl_pending(&(csp->mbedtls_client_attr.ssl))
2057 || (content_length_known && csp->expected_client_content_length != 0))
2059 unsigned char buf[BUFFER_SIZE];
2061 int max_bytes_to_read = sizeof(buf);
2063 if (content_length_known && csp->expected_client_content_length < sizeof(buf))
2065 max_bytes_to_read = (int)csp->expected_client_content_length;
2067 log_error(LOG_LEVEL_CONNECT,
2068 "Waiting for up to %d bytes of POST data from the client.",
2070 len = ssl_recv_data(&(csp->mbedtls_client_attr.ssl), buf,
2071 (unsigned)max_bytes_to_read);
2078 /* XXX: Does this actually happen? */
2081 log_error(LOG_LEVEL_HEADER, "Forwarding %d bytes of encrypted POST data",
2083 len = ssl_send_data(&(csp->mbedtls_server_attr.ssl), buf, (size_t)len);
2088 if (csp->expected_client_content_length != 0)
2090 if (csp->expected_client_content_length >= len)
2092 csp->expected_client_content_length -= (unsigned)len;
2094 if (csp->expected_client_content_length == 0)
2096 log_error(LOG_LEVEL_HEADER, "Forwarded the last %d bytes", len);
2102 log_error(LOG_LEVEL_HEADER, "Done forwarding encrypted POST data");
2109 /*********************************************************************
2111 * Function : send_https_request
2113 * Description : Sends the HTTP headers from the client request
2114 * and all the body data that has already been received.
2117 * 1 : csp = Current client state (buffers, headers, etc...)
2119 * Returns : 0 on success, anything else is an error.
2121 *********************************************************************/
2122 static int send_https_request(struct client_state *csp)
2128 hdr = list_to_text(csp->https_headers);
2131 /* FIXME Should handle error properly */
2132 log_error(LOG_LEVEL_FATAL, "Out of memory parsing client header");
2134 list_remove_all(csp->https_headers);
2137 * Write the client's (modified) header to the server
2138 * (along with anything else that may be in the buffer)
2140 ret = ssl_send_data(&(csp->mbedtls_server_attr.ssl),
2141 (const unsigned char *)hdr, strlen(hdr));
2146 log_error(LOG_LEVEL_CONNECT,
2147 "Failed sending encrypted request headers to: %s: %E",
2148 csp->http->hostport);
2149 mark_server_socket_tainted(csp);
2153 if (((csp->flags & CSP_FLAG_PIPELINED_REQUEST_WAITING) == 0)
2154 && ((flushed = ssl_flush_socket(&(csp->mbedtls_server_attr.ssl),
2155 csp->client_iob)) < 0))
2157 log_error(LOG_LEVEL_CONNECT, "Failed sending request body to: %s: %E",
2158 csp->http->hostport);
2163 if (csp->expected_client_content_length != 0)
2165 if (csp->expected_client_content_length < flushed)
2167 log_error(LOG_LEVEL_ERROR,
2168 "Flushed %d bytes of request body while only expecting %llu",
2169 flushed, csp->expected_client_content_length);
2170 csp->expected_client_content_length = 0;
2174 log_error(LOG_LEVEL_CONNECT,
2175 "Flushed %d bytes of request body while expecting %llu",
2176 flushed, csp->expected_client_content_length);
2177 csp->expected_client_content_length -= (unsigned)flushed;
2178 if (receive_and_send_encrypted_post_data(csp))
2186 log_error(LOG_LEVEL_CONNECT,
2187 "Flushed %d bytes of request body", flushed);
2191 log_error(LOG_LEVEL_CONNECT, "Encrypted request sent");
2198 /*********************************************************************
2200 * Function : receive_encrypted_request
2202 * Description : Receives an encrypted request.
2205 * 1 : csp = Current client state (buffers, headers, etc...)
2207 * Returns : JB_ERR_OK on success,
2208 * JB_ERR_PARSE or JB_ERR_MEMORY otherwise
2210 *********************************************************************/
2211 static jb_err receive_encrypted_request(struct client_state *csp)
2213 char buf[BUFFER_SIZE];
2219 log_error(LOG_LEVEL_HEADER, "Reading encrypted headers");
2220 if (!data_is_available(csp->cfd, (int)csp->config->keep_alive_timeout))
2222 log_error(LOG_LEVEL_CONNECT,
2223 "Socket %d timed out while waiting for client headers", csp->cfd);
2224 return JB_ERR_PARSE;
2226 len = ssl_recv_data(&(csp->mbedtls_client_attr.ssl),
2227 (unsigned char *)buf, sizeof(buf));
2230 return JB_ERR_PARSE;
2232 if (add_to_iob(csp->client_iob, csp->config->buffer_limit, buf, len))
2234 return JB_ERR_MEMORY;
2236 p = strstr(csp->client_iob->cur, "\r\n\r\n");
2237 } while (p == NULL);
2239 log_error(LOG_LEVEL_HEADER, "Encrypted headers received completely");
2245 /*********************************************************************
2247 * Function : process_encrypted_request
2249 * Description : Receives and parses an encrypted request.
2252 * 1 : csp = Current client state (buffers, headers, etc...)
2254 * Returns : JB_ERR_OK on success,
2255 * JB_ERR_PARSE or JB_ERR_MEMORY otherwise
2257 *********************************************************************/
2258 static jb_err process_encrypted_request(struct client_state *csp)
2263 /* Temporary copy of the client's headers before they get enlisted in csp->https_headers */
2264 struct list header_list;
2265 struct list *headers = &header_list;
2267 err = receive_encrypted_request(csp);
2268 if (err != JB_ERR_OK)
2270 /* XXX: Also used for JB_ERR_MEMORY */
2271 log_error(LOG_LEVEL_ERROR, "Failed to receive encrypted request: %s",
2272 jb_err_to_string(err));
2273 ssl_send_data(&(csp->mbedtls_client_attr.ssl),
2274 (const unsigned char *)CHEADER, strlen(CHEADER));
2278 /* We don't need get_request_line() because the whole HTTP head is buffered. */
2279 request_line = get_header(csp->client_iob);
2280 if (request_line == NULL)
2282 log_error(LOG_LEVEL_ERROR, "Failed to get the encrypted request line");
2283 ssl_send_data(&(csp->mbedtls_client_attr.ssl),
2284 (const unsigned char *)CHEADER, strlen(CHEADER));
2285 return JB_ERR_PARSE;
2287 assert(*request_line != '\0');
2289 if (client_protocol_is_unsupported(csp, request_line))
2292 * If the protocol is unsupported we're done here.
2293 * client_protocol_is_unsupported() took care of sending
2294 * the error response and logging the error message.
2296 return JB_ERR_PARSE;
2299 #ifdef FEATURE_FORCE_LOAD
2300 if (force_required(csp, request_line))
2302 csp->flags |= CSP_FLAG_FORCED;
2304 #endif /* def FEATURE_FORCE_LOAD */
2306 free_http_request(csp->http);
2308 err = parse_http_request(request_line, csp->http);
2309 /* XXX: Restore ssl setting. This is ugly */
2310 csp->http->client_ssl = 1;
2311 csp->http->server_ssl = 1;
2313 freez(request_line);
2314 if (JB_ERR_OK != err)
2316 ssl_send_data(&(csp->mbedtls_client_attr.ssl),
2317 (const unsigned char *)CHEADER, strlen(CHEADER));
2318 /* XXX: Use correct size */
2319 log_error(LOG_LEVEL_CLF, "%s - - [%T] \"Invalid request\" 400 0", csp->ip_addr_str);
2320 log_error(LOG_LEVEL_ERROR,
2321 "Couldn't parse request line received from %s: %s",
2322 csp->ip_addr_str, jb_err_to_string(err));
2324 free_http_request(csp->http);
2325 return JB_ERR_PARSE;
2328 /* Parse the rest of the client's headers. */
2332 p = get_header(csp->client_iob);
2336 /* There are no additional headers to read. */
2343 if (JB_ERR_OK != get_destination_from_https_headers(headers, csp->http))
2346 * Our attempts to get the request destination
2349 log_error(LOG_LEVEL_ERROR,
2350 "Failed to get the encrypted request destination");
2351 ssl_send_data(&(csp->mbedtls_client_attr.ssl),
2352 (const unsigned char *)CHEADER, strlen(CHEADER));
2353 return JB_ERR_PARSE;
2356 #ifndef FEATURE_EXTENDED_HOST_PATTERNS
2357 /* Split the domain we just got for pattern matching */
2358 init_domain_components(csp->http);
2361 #ifdef FEATURE_TOGGLE
2362 if ((csp->flags & CSP_FLAG_TOGGLED_ON) != 0)
2365 /* Determine the actions for this URL */
2366 get_url_actions(csp, csp->http);
2369 enlist(csp->https_headers, csp->http->cmd);
2371 /* Append the previously read headers */
2372 err = list_append_list_unique(csp->https_headers, headers);
2373 destroy_list(headers);
2374 if (JB_ERR_OK != err)
2376 /* XXX: Send error message */
2380 /* XXX: Work around crash */
2381 csp->error_message = NULL;
2383 /* XXX: Why do this here? */
2386 err = sed_https(csp);
2387 if (JB_ERR_OK != err)
2389 ssl_send_data(&(csp->mbedtls_client_attr.ssl),
2390 (const unsigned char *)CHEADER, strlen(CHEADER));
2391 log_error(LOG_LEVEL_ERROR, "Failed to parse client request from %s.",
2393 log_error(LOG_LEVEL_CLF, "%s - - [%T] \"%s\" 400 0",
2394 csp->ip_addr_str, csp->http->cmd);
2395 return JB_ERR_PARSE;
2398 log_error(LOG_LEVEL_HEADER, "Encrypted request processed");
2399 log_applied_actions(csp->action);
2400 log_error(LOG_LEVEL_GPC, "https://%s%s", csp->http->hostport,
2409 /*********************************************************************
2411 * Function : handle_established_connection
2413 * Description : Shuffle data between client and server once the
2414 * connection has been established.
2417 * 1 : csp = Current client state (buffers, headers, etc...)
2419 * Returns : Nothing.
2421 *********************************************************************/
2422 static void handle_established_connection(struct client_state *csp)
2428 struct pollfd poll_fds[2];
2432 struct timeval timeout;
2435 int ms_iis5_hack = 0;
2436 unsigned long long byte_count = 0;
2437 struct http_request *http;
2438 long len = 0; /* for buffer sizes (and negative error codes) */
2439 int buffer_and_filter_content = 0;
2440 unsigned int write_delay;
2441 #ifdef FEATURE_HTTPS_INSPECTION
2443 int use_ssl_tunnel = 0;
2444 csp->dont_verify_certificate = 0;
2446 if (csp->http->ssl && !(csp->action->flags & ACTION_HTTPS_INSPECTION))
2448 /* Pass encrypted content without filtering. */
2453 /* Skeleton for HTTP response, if we should intercept the request */
2454 struct http_response *rsp;
2455 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
2456 int watch_client_socket;
2459 csp->receive_buffer_size = csp->config->receive_buffer_size;
2460 csp->receive_buffer = zalloc(csp->receive_buffer_size + 1);
2461 if (csp->receive_buffer == NULL)
2463 log_error(LOG_LEVEL_ERROR,
2464 "Out of memory. Failed to allocate the receive buffer.");
2465 rsp = cgi_error_memory();
2466 send_crunch_response(csp, rsp);
2473 maxfd = (csp->cfd > csp->server_connection.sfd) ?
2474 csp->cfd : csp->server_connection.sfd;
2477 /* pass data between the client and server
2478 * until one or the other shuts down the connection.
2483 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
2484 watch_client_socket = 0 == (csp->flags & CSP_FLAG_PIPELINED_REQUEST_WAITING);
2486 write_delay = get_write_delay(csp);
2493 * FD_ZERO here seems to point to an errant macro which crashes.
2494 * So do this by hand for now...
2496 memset(&rfds,0x00,sizeof(fd_set));
2500 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
2501 if (!watch_client_socket)
2503 maxfd = csp->server_connection.sfd;
2506 #endif /* def FEATURE_CONNECTION_KEEP_ALIVE */
2508 FD_SET(csp->cfd, &rfds);
2511 FD_SET(csp->server_connection.sfd, &rfds);
2512 #endif /* ndef HAVE_POLL */
2514 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
2515 if ((csp->flags & CSP_FLAG_CHUNKED)
2516 && !(csp->flags & CSP_FLAG_CONTENT_LENGTH_SET)
2517 && ((csp->iob->eod - csp->iob->cur) >= 5)
2518 && !memcmp(csp->iob->eod-5, "0\r\n\r\n", 5))
2521 * XXX: This check should be obsolete now,
2522 * but let's wait a while to be sure.
2524 log_error(LOG_LEVEL_CONNECT,
2525 "Looks like we got the last chunk together with "
2526 "the server headers but didn't detect it earlier. "
2527 "We better stop reading.");
2528 byte_count = (unsigned long long)(csp->iob->eod - csp->iob->cur);
2529 csp->expected_content_length = byte_count;
2530 csp->flags |= CSP_FLAG_CONTENT_LENGTH_SET;
2532 if (server_body && server_response_is_complete(csp, byte_count))
2534 if (csp->expected_content_length == byte_count)
2536 log_error(LOG_LEVEL_CONNECT,
2537 "Done reading from server. Content length: %llu as expected. "
2538 "Bytes most recently read: %d.",
2543 log_error(LOG_LEVEL_CONNECT,
2544 "Done reading from server. Expected content length: %llu. "
2545 "Actual content length: %llu. Bytes most recently read: %d.",
2546 csp->expected_content_length, byte_count, len);
2550 * XXX: Should not jump around, handle_established_connection()
2551 * is complicated enough already.
2555 #endif /* FEATURE_CONNECTION_KEEP_ALIVE */
2558 poll_fds[0].fd = csp->cfd;
2559 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
2560 if (!watch_client_socket)
2563 * Ignore incoming data, but still watch out
2564 * for disconnects etc. These flags are always
2565 * implied anyway but explicitly setting them
2568 poll_fds[0].events = POLLERR|POLLHUP;
2573 poll_fds[0].events = POLLIN;
2575 poll_fds[1].fd = csp->server_connection.sfd;
2576 poll_fds[1].events = POLLIN;
2577 n = poll(poll_fds, 2, csp->config->socket_timeout * 1000);
2579 timeout.tv_sec = csp->config->socket_timeout;
2580 timeout.tv_usec = 0;
2581 n = select((int)maxfd + 1, &rfds, NULL, NULL, &timeout);
2582 #endif /* def HAVE_POLL */
2584 /*server or client not responding in timeout */
2587 log_error(LOG_LEVEL_CONNECT, "Socket timeout %d reached: %s",
2588 csp->config->socket_timeout, http->url);
2589 if ((byte_count == 0) && (http->ssl == 0))
2591 send_crunch_response(csp, error_response(csp, "connection-timeout"));
2593 mark_server_socket_tainted(csp);
2594 #ifdef FEATURE_HTTPS_INSPECTION
2595 close_client_and_server_ssl_connections(csp);
2602 log_error(LOG_LEVEL_ERROR, "poll() failed!: %E");
2604 log_error(LOG_LEVEL_ERROR, "select() failed!: %E");
2606 mark_server_socket_tainted(csp);
2607 #ifdef FEATURE_HTTPS_INSPECTION
2608 close_client_and_server_ssl_connections(csp);
2614 * This is the body of the browser's request,
2615 * just read and write it.
2617 * Receives data from browser and sends it to server
2619 * XXX: Make sure the client doesn't use pipelining
2620 * behind Privoxy's back.
2623 if ((poll_fds[0].revents & (POLLERR|POLLHUP|POLLNVAL)) != 0)
2625 log_error(LOG_LEVEL_CONNECT,
2626 "The client socket %d has become unusable while "
2627 "the server socket %d is still open.",
2628 csp->cfd, csp->server_connection.sfd);
2629 mark_server_socket_tainted(csp);
2633 if (poll_fds[0].revents != 0)
2635 if (FD_ISSET(csp->cfd, &rfds))
2636 #endif /* def HAVE_POLL*/
2638 int max_bytes_to_read = (int)csp->receive_buffer_size;
2640 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
2641 if ((csp->flags & CSP_FLAG_CLIENT_REQUEST_COMPLETELY_READ))
2643 if (data_is_available(csp->cfd, 0))
2646 * If the next request is already waiting, we have
2647 * to stop select()ing the client socket. Otherwise
2648 * we would always return right away and get nothing
2651 watch_client_socket = 0;
2652 log_error(LOG_LEVEL_CONNECT,
2653 "Stop watching client socket %d. "
2654 "There's already another request waiting.",
2659 * If the client socket is set, but there's no data
2660 * available on the socket, the client went fishing
2661 * and continuing talking to the server makes no sense.
2663 log_error(LOG_LEVEL_CONNECT,
2664 "The client closed socket %d while "
2665 "the server socket %d is still open.",
2666 csp->cfd, csp->server_connection.sfd);
2667 mark_server_socket_tainted(csp);
2670 if (csp->expected_client_content_length != 0)
2672 if (csp->expected_client_content_length < csp->receive_buffer_size)
2674 max_bytes_to_read = (int)csp->expected_client_content_length;
2676 log_error(LOG_LEVEL_CONNECT,
2677 "Waiting for up to %d bytes from the client.",
2680 assert(max_bytes_to_read <= csp->receive_buffer_size);
2681 #endif /* def FEATURE_CONNECTION_KEEP_ALIVE */
2683 #ifdef FEATURE_HTTPS_INSPECTION
2684 if (client_use_ssl(csp))
2686 log_error(LOG_LEVEL_CONNECT, "Breaking with TLS/SSL.");
2690 #endif /* def FEATURE_HTTPS_INSPECTION */
2692 len = read_socket(csp->cfd, csp->receive_buffer, max_bytes_to_read);
2696 /* XXX: not sure if this is necessary. */
2697 mark_server_socket_tainted(csp);
2698 break; /* "game over, man" */
2701 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
2702 if (csp->expected_client_content_length != 0)
2704 assert(len <= max_bytes_to_read);
2705 csp->expected_client_content_length -= (unsigned)len;
2706 log_error(LOG_LEVEL_CONNECT,
2707 "Expected client content length set to %llu "
2708 "after reading %d bytes.",
2709 csp->expected_client_content_length, len);
2710 if (csp->expected_client_content_length == 0)
2712 log_error(LOG_LEVEL_CONNECT,
2713 "Done reading from the client.");
2714 csp->flags |= CSP_FLAG_CLIENT_REQUEST_COMPLETELY_READ;
2717 #endif /* def FEATURE_CONNECTION_KEEP_ALIVE */
2719 if (write_socket(csp->server_connection.sfd, csp->receive_buffer, (size_t)len))
2721 log_error(LOG_LEVEL_ERROR, "write to: %s failed: %E", http->host);
2722 mark_server_socket_tainted(csp);
2730 * The server wants to talk. It could be the header or the body.
2731 * If `hdr' is null, then it's the header otherwise it's the body.
2732 * FIXME: Does `hdr' really mean `host'? No.
2735 if (poll_fds[1].revents != 0)
2737 if (FD_ISSET(csp->server_connection.sfd, &rfds))
2738 #endif /* HAVE_POLL */
2740 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
2742 * If we are buffering content, we don't want to eat up to
2743 * buffer-limit bytes if the client no longer cares about them.
2744 * If we aren't buffering, however, a dead client socket will be
2745 * noticed pretty much right away anyway, so we can reduce the
2746 * overhead by skipping the check.
2748 if (buffer_and_filter_content && !socket_is_still_alive(csp->cfd))
2751 log_error(LOG_LEVEL_CONNECT,
2752 "The server still wants to talk, but the client may already have hung up on us.");
2754 log_error(LOG_LEVEL_CONNECT,
2755 "The server still wants to talk, but the client hung up on us.");
2756 mark_server_socket_tainted(csp);
2757 #ifdef FEATURE_HTTPS_INSPECTION
2758 close_client_and_server_ssl_connections(csp);
2761 #endif /* def _WIN32 */
2763 #endif /* def FEATURE_CONNECTION_KEEP_ALIVE */
2765 #ifdef FEATURE_HTTPS_INSPECTION
2767 * Reading data from standard or secured connection (HTTP/HTTPS)
2769 if (server_use_ssl(csp))
2771 len = ssl_recv_data(&(csp->mbedtls_server_attr.ssl),
2772 (unsigned char *)csp->receive_buffer, csp->receive_buffer_size);
2777 len = read_socket(csp->server_connection.sfd, csp->receive_buffer,
2778 (int)csp->receive_buffer_size);
2783 log_error(LOG_LEVEL_ERROR, "read from: %s failed: %E", http->host);
2785 if ((http->ssl && (csp->fwd == NULL))
2786 #ifdef FEATURE_HTTPS_INSPECTION
2792 * Just hang up. We already confirmed the client's CONNECT
2793 * request with status code 200 and unencrypted content is
2794 * no longer welcome.
2796 log_error(LOG_LEVEL_ERROR,
2797 "CONNECT already confirmed. Unable to tell the client about the problem.");
2800 else if (byte_count)
2803 * Just hang up. We already transmitted the original headers
2804 * and parts of the original content and therefore missed the
2805 * chance to send an error message (without risking data corruption).
2807 * XXX: we could retry with a fancy range request here.
2809 log_error(LOG_LEVEL_ERROR, "Already forwarded the original headers. "
2810 "Unable to tell the client about the problem.");
2811 mark_server_socket_tainted(csp);
2812 #ifdef FEATURE_HTTPS_INSPECTION
2813 close_client_and_server_ssl_connections(csp);
2818 * XXX: Consider handling the cases above the same.
2820 mark_server_socket_tainted(csp);
2824 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
2825 if (csp->flags & CSP_FLAG_CHUNKED)
2827 if ((len >= 5) && !memcmp(csp->receive_buffer+len-5, "0\r\n\r\n", 5))
2829 /* XXX: this is a temporary hack */
2830 log_error(LOG_LEVEL_CONNECT,
2831 "Looks like we reached the end of the last chunk. "
2832 "We better stop reading.");
2833 csp->expected_content_length = byte_count + (unsigned long long)len;
2834 csp->flags |= CSP_FLAG_CONTENT_LENGTH_SET;
2838 #endif /* FEATURE_CONNECTION_KEEP_ALIVE */
2841 * This is guaranteed by allocating with zalloc_or_die()
2842 * and never (intentionally) writing to the last byte.
2844 * csp->receive_buffer_size is the size of the part of the
2845 * buffer we intentionally write to, but we actually
2846 * allocated csp->receive_buffer_size+1 bytes so the assertion
2847 * stays within the allocated range.
2849 assert(csp->receive_buffer[csp->receive_buffer_size] == '\0');
2852 * Add a trailing zero to let be able to use string operations.
2853 * XXX: do we still need this with filter_popups gone?
2855 assert(len <= csp->receive_buffer_size);
2856 csp->receive_buffer[len] = '\0';
2859 * Normally, this would indicate that we've read
2860 * as much as the server has sent us and we can
2861 * close the client connection. However, Microsoft
2862 * in its wisdom has released IIS/5 with a bug that
2863 * prevents it from sending the trailing \r\n in
2864 * a 302 redirect header (and possibly other headers).
2865 * To work around this if we've haven't parsed
2866 * a full header we'll append a trailing \r\n
2867 * and see if this now generates a valid one.
2869 * This hack shouldn't have any impacts. If we've
2870 * already transmitted the header or if this is a
2871 * SSL connection, then we won't bother with this
2872 * hack. So we only work on partially received
2873 * headers. If we append a \r\n and this still
2874 * doesn't generate a valid header, then we won't
2875 * transmit anything to the client.
2880 if (server_body || (http->ssl
2881 #ifdef FEATURE_HTTPS_INSPECTION
2887 * If we have been buffering up the document,
2888 * now is the time to apply content modification
2889 * and send the result to the client.
2891 if (buffer_and_filter_content)
2893 p = execute_content_filters(csp);
2895 * If content filtering fails, use the original
2896 * buffer and length.
2897 * (see p != NULL ? p : csp->iob->cur below)
2901 csp->content_length = (size_t)(csp->iob->eod - csp->iob->cur);
2903 #ifdef FEATURE_COMPRESSION
2904 else if ((csp->flags & CSP_FLAG_CLIENT_SUPPORTS_DEFLATE)
2905 && (csp->content_length > LOWER_LENGTH_LIMIT_FOR_COMPRESSION))
2907 char *compressed_content = compress_buffer(p,
2908 (size_t *)&csp->content_length, csp->config->compression_level);
2909 if (compressed_content != NULL)
2912 p = compressed_content;
2913 csp->flags |= CSP_FLAG_BUFFERED_CONTENT_DEFLATED;
2918 if (JB_ERR_OK != update_server_headers(csp))
2920 log_error(LOG_LEVEL_FATAL,
2921 "Failed to update server headers. after filtering.");
2924 hdr = list_to_text(csp->headers);
2927 /* FIXME Should handle error properly */
2928 log_error(LOG_LEVEL_FATAL, "Out of memory parsing server header");
2931 #ifdef FEATURE_HTTPS_INSPECTION
2933 * Sending data with standard or secured connection (HTTP/HTTPS)
2935 if (client_use_ssl(csp))
2937 if ((ssl_send_data(&(csp->mbedtls_client_attr.ssl),
2938 (const unsigned char *)hdr, strlen(hdr)) < 0)
2939 || (ssl_send_data(&(csp->mbedtls_client_attr.ssl),
2940 (const unsigned char *) ((p != NULL) ? p : csp->iob->cur),
2941 csp->content_length) < 0))
2943 log_error(LOG_LEVEL_ERROR, "write modified content to "
2944 "client over TLS/SSL failed");
2947 mark_server_socket_tainted(csp);
2948 close_client_and_server_ssl_connections(csp);
2953 #endif /* def FEATURE_HTTPS_INSPECTION */
2955 if (write_socket_delayed(csp->cfd, hdr, strlen(hdr), write_delay)
2956 || write_socket_delayed(csp->cfd, ((p != NULL) ? p : csp->iob->cur),
2957 (size_t)csp->content_length, write_delay))
2959 log_error(LOG_LEVEL_ERROR, "write modified content to client failed: %E");
2962 mark_server_socket_tainted(csp);
2971 break; /* "game over, man" */
2975 * This is NOT the body, so
2976 * Let's pretend the server just sent us a blank line.
2978 snprintf(csp->receive_buffer, csp->receive_buffer_size, "\r\n");
2979 len = (int)strlen(csp->receive_buffer);
2982 * Now, let the normal header parsing algorithm below do its
2983 * job. If it fails, we'll exit instead of continuing.
2990 * If we're in the body of the server document, just write it to
2991 * the client, unless we need to buffer the body for later
2992 * content-filtering.
2994 if (server_body || (http->ssl
2995 #ifdef FEATURE_HTTPS_INSPECTION
3000 if (buffer_and_filter_content)
3003 * If there is no memory left for buffering the content, or the buffer limit
3004 * has been reached, switch to non-filtering mode, i.e. make & write the
3005 * header, flush the iob and buf, and get out of the way.
3007 if (add_to_iob(csp->iob, csp->config->buffer_limit, csp->receive_buffer, len))
3012 log_error(LOG_LEVEL_INFO,
3013 "Flushing header and buffers. Stepping back from filtering.");
3015 hdr = list_to_text(csp->headers);
3019 * Memory is too tight to even generate the header.
3020 * Send our static "Out-of-memory" page.
3022 log_error(LOG_LEVEL_ERROR, "Out of memory while trying to flush.");
3023 rsp = cgi_error_memory();
3024 send_crunch_response(csp, rsp);
3025 mark_server_socket_tainted(csp);
3026 #ifdef FEATURE_HTTPS_INSPECTION
3027 close_client_and_server_ssl_connections(csp);
3031 hdrlen = strlen(hdr);
3033 #ifdef FEATURE_HTTPS_INSPECTION
3035 * Sending data with standard or secured connection (HTTP/HTTPS)
3037 if (client_use_ssl(csp))
3039 if ((ssl_send_data(&(csp->mbedtls_client_attr.ssl),
3040 (const unsigned char *)hdr, hdrlen) < 0)
3041 || ((flushed = ssl_flush_socket(&(csp->mbedtls_client_attr.ssl),
3043 || (ssl_send_data(&(csp->mbedtls_client_attr.ssl),
3044 (const unsigned char *)csp->receive_buffer, (size_t)len) < 0))
3046 log_error(LOG_LEVEL_CONNECT,
3047 "Flush header and buffers to client failed");
3049 mark_server_socket_tainted(csp);
3050 close_client_and_server_ssl_connections(csp);
3055 #endif /* def FEATURE_HTTPS_INSPECTION */
3057 if (write_socket_delayed(csp->cfd, hdr, hdrlen, write_delay)
3058 || ((flushed = flush_iob(csp->cfd, csp->iob, write_delay)) < 0)
3059 || write_socket_delayed(csp->cfd, csp->receive_buffer, (size_t)len,
3062 log_error(LOG_LEVEL_CONNECT,
3063 "Flush header and buffers to client failed: %E");
3065 mark_server_socket_tainted(csp);
3071 * Reset the byte_count to the amount of bytes
3072 * we just flushed. len will be added a few lines below,
3073 * hdrlen doesn't matter for LOG_LEVEL_CLF.
3075 byte_count = (unsigned long long)flushed;
3077 buffer_and_filter_content = 0;
3083 #ifdef FEATURE_HTTPS_INSPECTION
3085 * Sending data with standard or secured connection (HTTP/HTTPS)
3087 if (client_use_ssl(csp))
3089 ret = ssl_send_data(&(csp->mbedtls_client_attr.ssl),
3090 (const unsigned char *)csp->receive_buffer, (size_t)len);
3093 log_error(LOG_LEVEL_ERROR,
3094 "Sending data to client failed");
3095 mark_server_socket_tainted(csp);
3096 close_client_and_server_ssl_connections(csp);
3101 #endif /* def FEATURE_HTTPS_INSPECTION */
3103 if (write_socket_delayed(csp->cfd, csp->receive_buffer,
3104 (size_t)len, write_delay))
3106 log_error(LOG_LEVEL_ERROR, "write to client failed: %E");
3107 mark_server_socket_tainted(csp);
3112 byte_count += (unsigned long long)len;
3118 * We're still looking for the end of the server's header.
3119 * Buffer up the data we just read. If that fails, there's
3120 * little we can do but send our static out-of-memory page.
3122 if (add_to_iob(csp->iob, csp->config->buffer_limit, csp->receive_buffer, len))
3124 log_error(LOG_LEVEL_ERROR, "Out of memory while looking for end of server headers.");
3125 rsp = cgi_error_memory();
3126 send_crunch_response(csp, rsp);
3127 mark_server_socket_tainted(csp);
3128 #ifdef FEATURE_HTTPS_INSPECTION
3129 close_client_and_server_ssl_connections(csp);
3134 /* Convert iob into something sed() can digest */
3135 if (JB_ERR_PARSE == get_server_headers(csp))
3140 * Well, we tried our MS IIS/5 hack and it didn't work.
3141 * The header is incomplete and there isn't anything
3142 * we can do about it.
3144 log_error(LOG_LEVEL_ERROR, "Invalid server headers. "
3145 "Applying the MS IIS5 hack didn't help.");
3146 log_error(LOG_LEVEL_CLF,
3147 "%s - - [%T] \"%s\" 502 0", csp->ip_addr_str, http->cmd);
3148 #ifdef FEATURE_HTTPS_INSPECTION
3150 * Sending data with standard or secured connection (HTTP/HTTPS)
3152 if (client_use_ssl(csp))
3154 ssl_send_data(&(csp->mbedtls_client_attr.ssl),
3155 (const unsigned char *)INVALID_SERVER_HEADERS_RESPONSE,
3156 strlen(INVALID_SERVER_HEADERS_RESPONSE));
3159 #endif /* def FEATURE_HTTPS_INSPECTION */
3161 write_socket_delayed(csp->cfd,
3162 INVALID_SERVER_HEADERS_RESPONSE,
3163 strlen(INVALID_SERVER_HEADERS_RESPONSE), write_delay);
3165 mark_server_socket_tainted(csp);
3166 #ifdef FEATURE_HTTPS_INSPECTION
3167 close_client_and_server_ssl_connections(csp);
3174 * Since we have to wait for more from the server before
3175 * we can parse the headers we just continue here.
3177 log_error(LOG_LEVEL_CONNECT,
3178 "Continuing buffering server headers from socket %d. "
3179 "Bytes most recently read: %d.", csp->cfd, len);
3186 * Account for the content bytes we
3187 * might have gotten with the headers.
3189 assert(csp->iob->eod >= csp->iob->cur);
3190 byte_count = (unsigned long long)(csp->iob->eod - csp->iob->cur);
3193 /* Did we actually get anything? */
3194 if (NULL == csp->headers->first)
3196 if ((csp->flags & CSP_FLAG_REUSED_CLIENT_CONNECTION))
3198 log_error(LOG_LEVEL_ERROR,
3199 "No server or forwarder response received on socket %d. "
3200 "Closing client socket %d without sending data.",
3201 csp->server_connection.sfd, csp->cfd);
3202 log_error(LOG_LEVEL_CLF,
3203 "%s - - [%T] \"%s\" 502 0", csp->ip_addr_str, http->cmd);
3207 log_error(LOG_LEVEL_ERROR,
3208 "No server or forwarder response received on socket %d.",
3209 csp->server_connection.sfd);
3210 send_crunch_response(csp, error_response(csp, "no-server-data"));
3212 free_http_request(http);
3213 mark_server_socket_tainted(csp);
3214 #ifdef FEATURE_HTTPS_INSPECTION
3215 close_client_and_server_ssl_connections(csp);
3220 if (!csp->headers->first->str)
3222 log_error(LOG_LEVEL_ERROR, "header search: csp->headers->first->str == NULL, assert will be called");
3224 assert(csp->headers->first->str);
3226 if (strncmpic(csp->headers->first->str, "HTTP", 4) &&
3227 strncmpic(csp->headers->first->str, "ICY", 3))
3230 * It doesn't look like a HTTP (or Shoutcast) response:
3231 * tell the client and log the problem.
3233 if (strlen(csp->headers->first->str) > 30)
3235 csp->headers->first->str[30] = '\0';
3237 log_error(LOG_LEVEL_ERROR,
3238 "Invalid server or forwarder response. Starts with: %s",
3239 csp->headers->first->str);
3240 log_error(LOG_LEVEL_CLF,
3241 "%s - - [%T] \"%s\" 502 0", csp->ip_addr_str, http->cmd);
3242 #ifdef FEATURE_HTTPS_INSPECTION
3244 * Sending data with standard or secured connection (HTTP/HTTPS)
3246 if (client_use_ssl(csp))
3248 ssl_send_data(&(csp->mbedtls_client_attr.ssl),
3249 (const unsigned char *)INVALID_SERVER_HEADERS_RESPONSE,
3250 strlen(INVALID_SERVER_HEADERS_RESPONSE));
3253 #endif /* def FEATURE_HTTPS_INSPECTION */
3255 write_socket_delayed(csp->cfd, INVALID_SERVER_HEADERS_RESPONSE,
3256 strlen(INVALID_SERVER_HEADERS_RESPONSE), write_delay);
3258 free_http_request(http);
3259 mark_server_socket_tainted(csp);
3260 #ifdef FEATURE_HTTPS_INSPECTION
3261 close_client_and_server_ssl_connections(csp);
3267 * We have now received the entire server header,
3268 * filter it and send the result to the client
3270 if (JB_ERR_OK != sed(csp, FILTER_SERVER_HEADERS))
3272 log_error(LOG_LEVEL_CLF,
3273 "%s - - [%T] \"%s\" 502 0", csp->ip_addr_str, http->cmd);
3274 #ifdef FEATURE_HTTPS_INSPECTION
3276 * Sending data with standard or secured connection (HTTP/HTTPS)
3278 if (client_use_ssl(csp))
3280 ssl_send_data(&(csp->mbedtls_client_attr.ssl),
3281 (const unsigned char *)INVALID_SERVER_HEADERS_RESPONSE,
3282 strlen(INVALID_SERVER_HEADERS_RESPONSE));
3287 write_socket_delayed(csp->cfd, INVALID_SERVER_HEADERS_RESPONSE,
3288 strlen(INVALID_SERVER_HEADERS_RESPONSE), write_delay);
3290 free_http_request(http);
3291 mark_server_socket_tainted(csp);
3292 #ifdef FEATURE_HTTPS_INSPECTION
3293 close_client_and_server_ssl_connections(csp);
3297 hdr = list_to_text(csp->headers);
3300 /* FIXME Should handle error properly */
3301 log_error(LOG_LEVEL_FATAL, "Out of memory parsing server header");
3304 if ((csp->flags & CSP_FLAG_CHUNKED)
3305 && !(csp->flags & CSP_FLAG_CONTENT_LENGTH_SET)
3306 && ((csp->iob->eod - csp->iob->cur) >= 5)
3307 && !memcmp(csp->iob->eod-5, "0\r\n\r\n", 5))
3309 log_error(LOG_LEVEL_CONNECT,
3310 "Looks like we got the last chunk together with "
3311 "the server headers. We better stop reading.");
3312 byte_count = (unsigned long long)(csp->iob->eod - csp->iob->cur);
3313 csp->expected_content_length = byte_count;
3314 csp->flags |= CSP_FLAG_CONTENT_LENGTH_SET;
3317 csp->server_connection.response_received = time(NULL);
3319 if (crunch_response_triggered(csp, crunchers_light))
3322 * One of the tags created by a server-header
3323 * tagger triggered a crunch. We already
3324 * delivered the crunch response to the client
3325 * and are done here after cleaning up.
3328 mark_server_socket_tainted(csp);
3329 #ifdef FEATURE_HTTPS_INSPECTION
3330 close_client_and_server_ssl_connections(csp);
3335 /* Buffer and pcrs filter this if appropriate. */
3336 buffer_and_filter_content = content_requires_filtering(csp);
3338 if (!buffer_and_filter_content)
3341 * Write the server's (modified) header to
3342 * the client (along with anything else that
3343 * may be in the buffer). Use standard or secured
3346 #ifdef FEATURE_HTTPS_INSPECTION
3347 if (client_use_ssl(csp))
3349 if ((ssl_send_data(&(csp->mbedtls_client_attr.ssl),
3350 (const unsigned char *)hdr, strlen(hdr)) < 0)
3351 || (len = ssl_flush_socket(&(csp->mbedtls_client_attr.ssl),
3354 log_error(LOG_LEVEL_CONNECT, "Write header to client failed");
3357 * The write failed, so don't bother mentioning it
3358 * to the client... it probably can't hear us anyway.
3361 mark_server_socket_tainted(csp);
3362 #ifdef FEATURE_HTTPS_INSPECTION
3363 close_client_and_server_ssl_connections(csp);
3369 #endif /* def FEATURE_HTTPS_INSPECTION */
3371 if (write_socket_delayed(csp->cfd, hdr, strlen(hdr), write_delay)
3372 || ((len = flush_iob(csp->cfd, csp->iob, write_delay)) < 0))
3374 log_error(LOG_LEVEL_ERROR,
3375 "write header to client failed");
3377 * The write failed, so don't bother mentioning it
3378 * to the client... it probably can't hear us anyway.
3381 mark_server_socket_tainted(csp);
3387 /* we're finished with the server's header */
3393 * If this was a MS IIS/5 hack then it means the server
3394 * has already closed the connection. Nothing more to read.
3399 log_error(LOG_LEVEL_ERROR,
3400 "Closed server connection detected. "
3401 "Applying the MS IIS5 hack didn't help.");
3402 log_error(LOG_LEVEL_CLF,
3403 "%s - - [%T] \"%s\" 502 0", csp->ip_addr_str, http->cmd);
3404 #ifdef FEATURE_HTTPS_INSPECTION
3406 * Sending data with standard or secured connection (HTTP/HTTPS)
3408 if (client_use_ssl(csp))
3410 ssl_send_data(&(csp->mbedtls_client_attr.ssl),
3411 (const unsigned char *)INVALID_SERVER_HEADERS_RESPONSE,
3412 strlen(INVALID_SERVER_HEADERS_RESPONSE));
3415 #endif /* def FEATURE_HTTPS_INSPECTION */
3417 write_socket_delayed(csp->cfd, INVALID_SERVER_HEADERS_RESPONSE,
3418 strlen(INVALID_SERVER_HEADERS_RESPONSE), write_delay);
3420 mark_server_socket_tainted(csp);
3421 #ifdef FEATURE_HTTPS_INSPECTION
3422 close_client_and_server_ssl_connections(csp);
3429 mark_server_socket_tainted(csp);
3430 #ifdef FEATURE_HTTPS_INSPECTION
3431 close_client_and_server_ssl_connections(csp);
3433 return; /* huh? we should never get here */
3435 #ifdef FEATURE_HTTPS_INSPECTION
3436 close_client_and_server_ssl_connections(csp);
3438 if (csp->content_length == 0)
3441 * If Privoxy didn't recalculate the Content-Length,
3442 * byte_count is still correct.
3444 csp->content_length = byte_count;
3447 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
3448 if ((csp->flags & CSP_FLAG_CONTENT_LENGTH_SET)
3449 && (csp->expected_content_length != byte_count))
3451 log_error(LOG_LEVEL_CONNECT,
3452 "Received %llu bytes while expecting %llu.",
3453 byte_count, csp->expected_content_length);
3454 mark_server_socket_tainted(csp);
3458 #ifdef FEATURE_HTTPS_INSPECTION
3459 if (client_use_ssl(csp))
3461 log_error(LOG_LEVEL_CLF, "%s - - [%T] \"%s https://%s%s %s\" 200 %llu",
3462 csp->ip_addr_str, http->gpc, http->hostport, http->path,
3463 http->version, csp->content_length);
3468 log_error(LOG_LEVEL_CLF, "%s - - [%T] \"%s\" 200 %llu",
3469 csp->ip_addr_str, http->ocmd, csp->content_length);
3471 csp->server_connection.timestamp = time(NULL);
3475 /*********************************************************************
3479 * Description : Once a connection from the client has been accepted,
3480 * this function is called (via serve()) to handle the
3481 * main business of the communication. This function
3482 * returns after dealing with a single request. It can
3483 * be called multiple times with the same client socket
3484 * if the client is keeping the connection alive.
3486 * The decision whether or not a client connection will
3487 * be kept alive is up to the caller which also must
3488 * close the client socket when done.
3490 * FIXME: chat is nearly thousand lines long.
3494 * 1 : csp = Current client state (buffers, headers, etc...)
3496 * Returns : Nothing.
3498 *********************************************************************/
3499 static void chat(struct client_state *csp)
3501 const struct forward_spec *fwd;
3502 struct http_request *http;
3503 /* Skeleton for HTTP response, if we should intercept the request */
3504 struct http_response *rsp;
3505 #ifdef FEATURE_HTTPS_INSPECTION
3506 int use_ssl_tunnel = 0;
3511 if (receive_client_request(csp) != JB_ERR_OK)
3515 if (parse_client_request(csp) != JB_ERR_OK)
3520 /* decide how to route the HTTP request */
3521 fwd = forward_url(csp, http);
3524 log_error(LOG_LEVEL_FATAL, "gateway spec is NULL!?!? This can't happen!");
3525 /* Never get here - LOG_LEVEL_FATAL causes program exit */
3529 #ifdef FEATURE_HTTPS_INSPECTION
3531 * Setting flags to use old solution with SSL tunnel and to disable
3532 * certificates verification.
3534 if (csp->http->ssl && !(csp->action->flags & ACTION_HTTPS_INSPECTION))
3539 if (http->ssl && csp->action->flags & ACTION_IGNORE_CERTIFICATE_ERRORS)
3541 csp->dont_verify_certificate = 1;
3546 * build the http request to send to the server
3547 * we have to do one of the following:
3549 * create = use the original HTTP request to create a new
3550 * HTTP request that has either the path component
3551 * without the http://domainspec (w/path) or the
3552 * full orininal URL (w/url)
3553 * Note that the path and/or the HTTP version may
3554 * have been altered by now.
3556 * SSL proxy = Open a socket to the host:port of the server
3557 * and create TLS/SSL connection with server and
3558 * with client. Then behave like mediator between
3559 * client and server over TLS/SSL.
3561 * SSL proxy = Pass the request unchanged if forwarding a CONNECT
3562 * with request to a parent proxy. Note that we'll be sending
3563 * forwarding the CFAIL message ourselves if connecting to the parent
3564 * fails, but we won't send a CSUCCEED message if it works,
3565 * since that would result in a double message (ours and the
3566 * parent's). After sending the request to the parent, we
3567 * must parse answer and send it to client. If connection
3568 * with server is established, we do TLS/SSL proxy. Otherwise
3569 * we send parent response to client and close connections.
3571 * here's the matrix:
3574 * +--------+--------+
3576 * 0 | create | SSL |
3577 * | w/path | proxy |
3578 * Forwarding +--------+--------+
3580 * 1 | create | proxy |
3581 * | w/url |+forward|
3582 * +--------+--------+
3586 #ifdef FEATURE_HTTPS_INSPECTION
3588 * Presetting SSL client and server flags
3590 if (http->ssl && !use_ssl_tunnel)
3592 http->client_ssl = 1;
3593 http->server_ssl = 1;
3597 http->client_ssl = 0;
3598 http->server_ssl = 0;
3602 if (http->ssl && connect_port_is_forbidden(csp))
3604 const char *acceptable_connect_ports =
3605 csp->action->string[ACTION_STRING_LIMIT_CONNECT];
3606 assert(NULL != acceptable_connect_ports);
3607 log_error(LOG_LEVEL_INFO, "Request from %s marked for blocking. "
3608 "limit-connect{%s} doesn't allow CONNECT requests to %s",
3609 csp->ip_addr_str, acceptable_connect_ports, csp->http->hostport);
3610 csp->action->flags |= ACTION_BLOCK;
3612 #ifdef FEATURE_HTTPS_INSPECTION
3613 http->client_ssl = 0;
3614 http->server_ssl = 0;
3619 freez(csp->headers->first->str);
3620 build_request_line(csp, fwd, &csp->headers->first->str);
3623 * We have a request. Check if one of the crunchers wants it
3624 * unless the client wants to use TLS/SSL in which case we
3625 * haven't setup the TLS context yet and will send the crunch
3629 #ifdef FEATURE_HTTPS_INSPECTION
3630 !client_use_ssl(csp) &&
3632 crunch_response_triggered(csp, crunchers_all))
3635 * Yes. The client got the crunch response and we're done here.
3640 log_applied_actions(csp->action);
3641 #ifdef FEATURE_HTTPS_INSPECTION
3643 * Log the request unless we're https inspecting
3644 * in which case we don't have the path yet and
3645 * will log the request later.
3647 if (!client_use_ssl(csp))
3650 log_error(LOG_LEVEL_GPC, "%s%s", http->hostport, http->path);
3652 if (fwd->forward_host)
3654 log_error(LOG_LEVEL_CONNECT, "via [%s]:%d to: %s",
3655 fwd->forward_host, fwd->forward_port, http->hostport);
3659 log_error(LOG_LEVEL_CONNECT, "to %s", http->hostport);
3662 /* here we connect to the server, gateway, or the forwarder */
3664 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
3665 if ((csp->server_connection.sfd != JB_INVALID_SOCKET)
3666 && socket_is_still_alive(csp->server_connection.sfd)
3667 && connection_destination_matches(&csp->server_connection, http, fwd))
3669 log_error(LOG_LEVEL_CONNECT,
3670 "Reusing server socket %d connected to %s. Total requests: %u.",
3671 csp->server_connection.sfd, csp->server_connection.host,
3672 csp->server_connection.requests_sent_total);
3676 if (csp->server_connection.sfd != JB_INVALID_SOCKET)
3678 #ifdef FEATURE_CONNECTION_SHARING
3679 if (csp->config->feature_flags & RUNTIME_FEATURE_CONNECTION_SHARING)
3681 remember_connection(&csp->server_connection);
3684 #endif /* def FEATURE_CONNECTION_SHARING */
3686 log_error(LOG_LEVEL_CONNECT,
3687 "Closing server socket %d connected to %s. Total requests: %u.",
3688 csp->server_connection.sfd, csp->server_connection.host,
3689 csp->server_connection.requests_sent_total);
3690 close_socket(csp->server_connection.sfd);
3692 mark_connection_closed(&csp->server_connection);
3694 #endif /* def FEATURE_CONNECTION_KEEP_ALIVE */
3695 #ifdef FEATURE_HTTPS_INSPECTION
3696 if (http->ssl && !use_ssl_tunnel)
3700 * Creating an SSL proxy. If forwarding is disabled, we must send
3701 * CSUCCEED mesage to client. Then TLS/SSL connection with client
3705 if (fwd->forward_host == NULL)
3708 * We're lying to the client as the connection hasn't actually
3709 * been established yet. We don't establish the connection until
3710 * we have seen and parsed the encrypted client headers.
3712 if (write_socket_delayed(csp->cfd, CSUCCEED,
3713 strlen(CSUCCEED), get_write_delay(csp)) != 0)
3715 log_error(LOG_LEVEL_ERROR, "Sending SUCCEED to client failed");
3720 ret = create_client_ssl_connection(csp);
3723 log_error(LOG_LEVEL_ERROR,
3724 "Can't open secure connection with client");
3725 close_client_ssl_connection(csp); /* XXX: Is this needed? */
3728 if (JB_ERR_OK != process_encrypted_request(csp))
3730 log_error(LOG_LEVEL_ERROR, "Failed to parse encrypted request.");
3731 close_client_ssl_connection(csp);
3735 * We have an encrypted request. Check if one of the crunchers now
3736 * wants it (for example because the previously invisible path was
3737 * required to match).
3739 if (crunch_response_triggered(csp, crunchers_all))
3742 * Yes. The client got the crunch response and we're done here.
3744 close_client_ssl_connection(csp);
3750 * Connecting to destination server
3752 csp->server_connection.sfd = forwarded_connect(fwd, http, csp);
3754 if (csp->server_connection.sfd == JB_INVALID_SOCKET)
3756 if (fwd->type != SOCKS_NONE)
3759 rsp = error_response(csp, "forwarding-failed");
3761 else if (errno == EINVAL)
3763 rsp = error_response(csp, "no-such-domain");
3767 rsp = error_response(csp, "connect-failed");
3770 /* Write the answer to the client */
3773 send_crunch_response(csp, rsp);