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 log_error(LOG_LEVEL_CRUNCH, "%s: %s", crunch_reason(rsp), http->url);
852 log_error(LOG_LEVEL_CLF, "%s - - [%T] \"%s\" %s %u",
853 csp->ip_addr_str, http->ocmd, status_code, rsp->content_length);
855 /* Write the answer to the client */
856 #ifdef FEATURE_HTTPS_INSPECTION
857 if (client_use_ssl(csp))
859 if ((ssl_send_data(&(csp->mbedtls_client_attr.ssl),
860 (const unsigned char *)rsp->head, rsp->head_length) < 0)
861 || (ssl_send_data(&(csp->mbedtls_client_attr.ssl),
862 (const unsigned char *)rsp->body, rsp->content_length) < 0))
864 /* There is nothing we can do about it. */
865 log_error(LOG_LEVEL_CONNECT, "Couldn't deliver the error message "
866 "for %s through client socket %d using TLS/SSL",
867 http->url, csp->cfd);
873 if (write_socket_delayed(csp->cfd, rsp->head, rsp->head_length,
874 get_write_delay(csp))
875 || write_socket_delayed(csp->cfd, rsp->body, rsp->content_length,
876 get_write_delay(csp)))
878 /* There is nothing we can do about it. */
879 log_error(LOG_LEVEL_CONNECT,
880 "Couldn't deliver the error message for %s through client socket %d: %E",
881 http->url, csp->cfd);
885 /* Clean up and return */
886 if (cgi_error_memory() != rsp)
888 free_http_response(rsp);
894 /*********************************************************************
896 * Function : crunch_response_triggered
898 * Description : Checks if the request has to be crunched,
899 * and delivers the crunch response if necessary.
902 * 1 : csp = Current client state (buffers, headers, etc...)
903 * 2 : crunchers = list of cruncher functions to run
905 * Returns : TRUE if the request was answered with a crunch response
908 *********************************************************************/
909 static int crunch_response_triggered(struct client_state *csp, const struct cruncher crunchers[])
911 struct http_response *rsp = NULL;
912 const struct cruncher *c;
915 * If CGI request crunching is disabled,
916 * check the CGI dispatcher out of order to
917 * prevent unintentional blocks or redirects.
919 if (!(csp->config->feature_flags & RUNTIME_FEATURE_CGI_CRUNCHING)
920 && (NULL != (rsp = dispatch_cgi(csp))))
922 /* Deliver, log and free the interception response. */
923 send_crunch_response(csp, rsp);
924 csp->flags |= CSP_FLAG_CRUNCHED;
928 for (c = crunchers; c->cruncher != NULL; c++)
931 * Check the cruncher if either Privoxy is toggled
932 * on and the request isn't forced, or if the cruncher
933 * applies to forced requests as well.
935 if (((csp->flags & CSP_FLAG_TOGGLED_ON) &&
936 !(csp->flags & CSP_FLAG_FORCED)) ||
937 (c->flags & CF_IGNORE_FORCE))
939 rsp = c->cruncher(csp);
942 /* Deliver, log and free the interception response. */
943 send_crunch_response(csp, rsp);
944 csp->flags |= CSP_FLAG_CRUNCHED;
945 #ifdef FEATURE_STATISTICS
946 if (c->flags & CF_COUNT_AS_REJECT)
948 csp->flags |= CSP_FLAG_REJECTED;
950 #endif /* def FEATURE_STATISTICS */
961 /*********************************************************************
963 * Function : build_request_line
965 * Description : Builds the HTTP request line.
967 * If a HTTP forwarder is used it expects the whole URL,
968 * web servers only get the path.
971 * 1 : csp = Current client state (buffers, headers, etc...)
972 * 2 : fwd = The forwarding spec used for the request
973 * XXX: Should use http->fwd instead.
974 * 3 : request_line = The old request line which will be replaced.
976 * Returns : Nothing. Terminates in case of memory problems.
978 *********************************************************************/
979 static void build_request_line(struct client_state *csp, const struct forward_spec *fwd, char **request_line)
981 struct http_request *http = csp->http;
984 * Downgrade http version from 1.1 to 1.0
985 * if +downgrade action applies.
987 if ((csp->action->flags & ACTION_DOWNGRADE)
988 && (!strcmpic(http->ver, "HTTP/1.1")))
991 http->ver = strdup_or_die("HTTP/1.0");
995 * Rebuild the request line.
997 freez(*request_line);
998 *request_line = strdup(http->gpc);
999 string_append(request_line, " ");
1001 if (fwd->forward_host && fwd->type != FORWARD_WEBSERVER)
1003 string_append(request_line, http->url);
1007 string_append(request_line, http->path);
1009 string_append(request_line, " ");
1010 string_append(request_line, http->ver);
1012 if (*request_line == NULL)
1014 log_error(LOG_LEVEL_FATAL, "Out of memory writing HTTP command");
1016 log_error(LOG_LEVEL_HEADER, "New HTTP Request-Line: %s", *request_line);
1020 /*********************************************************************
1022 * Function : change_request_destination
1024 * Description : Parse a (rewritten) request line and regenerate
1025 * the http request data.
1028 * 1 : csp = Current client state (buffers, headers, etc...)
1030 * Returns : Forwards the parse_http_request() return code.
1031 * Terminates in case of memory problems.
1033 *********************************************************************/
1034 static jb_err change_request_destination(struct client_state *csp)
1036 struct http_request *http = csp->http;
1039 log_error(LOG_LEVEL_REDIRECTS, "Rewrite detected: %s",
1040 csp->headers->first->str);
1041 free_http_request(http);
1042 err = parse_http_request(csp->headers->first->str, http);
1043 if (JB_ERR_OK != err)
1045 log_error(LOG_LEVEL_ERROR, "Couldn't parse rewritten request: %s.",
1046 jb_err_to_string(err));
1053 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
1054 /*********************************************************************
1056 * Function : server_response_is_complete
1058 * Description : Determines whether we should stop reading
1059 * from the server socket.
1062 * 1 : csp = Current client state (buffers, headers, etc...)
1063 * 2 : content_length = Length of content received so far.
1065 * Returns : TRUE if the response is complete,
1068 *********************************************************************/
1069 static int server_response_is_complete(struct client_state *csp,
1070 unsigned long long content_length)
1072 int content_length_known = !!(csp->flags & CSP_FLAG_CONTENT_LENGTH_SET);
1074 if (!strcmpic(csp->http->gpc, "HEAD"))
1077 * "HEAD" implies no body, we are thus expecting
1078 * no content. XXX: incomplete "list" of methods?
1080 csp->expected_content_length = 0;
1081 content_length_known = TRUE;
1082 csp->flags |= CSP_FLAG_SERVER_CONTENT_LENGTH_SET;
1085 if (csp->http->status == 204 || csp->http->status == 304)
1088 * Expect no body. XXX: incomplete "list" of status codes?
1090 csp->expected_content_length = 0;
1091 content_length_known = TRUE;
1092 csp->flags |= CSP_FLAG_SERVER_CONTENT_LENGTH_SET;
1095 return (content_length_known && ((0 == csp->expected_content_length)
1096 || (csp->expected_content_length <= content_length)));
1100 #ifdef FEATURE_CONNECTION_SHARING
1101 /*********************************************************************
1103 * Function : wait_for_alive_connections
1105 * Description : Waits for alive connections to timeout.
1111 *********************************************************************/
1112 static void wait_for_alive_connections(void)
1114 int connections_alive = close_unusable_connections();
1116 while (0 < connections_alive)
1118 log_error(LOG_LEVEL_CONNECT,
1119 "Waiting for %d connections to timeout.",
1122 connections_alive = close_unusable_connections();
1125 log_error(LOG_LEVEL_CONNECT, "No connections to wait for left.");
1128 #endif /* def FEATURE_CONNECTION_SHARING */
1131 /*********************************************************************
1133 * Function : save_connection_destination
1135 * Description : Remembers a connection for reuse later on.
1138 * 1 : sfd = Open socket to remember.
1139 * 2 : http = The destination for the connection.
1140 * 3 : fwd = The forwarder settings used.
1141 * 4 : server_connection = storage.
1145 *********************************************************************/
1146 void save_connection_destination(jb_socket sfd,
1147 const struct http_request *http,
1148 const struct forward_spec *fwd,
1149 struct reusable_connection *server_connection)
1151 assert(sfd != JB_INVALID_SOCKET);
1152 assert(NULL != http->host);
1154 server_connection->sfd = sfd;
1155 server_connection->host = strdup_or_die(http->host);
1156 server_connection->port = http->port;
1158 assert(NULL != fwd);
1159 assert(server_connection->gateway_host == NULL);
1160 assert(server_connection->gateway_port == 0);
1161 assert(server_connection->forwarder_type == 0);
1162 assert(server_connection->forward_host == NULL);
1163 assert(server_connection->forward_port == 0);
1165 server_connection->forwarder_type = fwd->type;
1166 if (NULL != fwd->gateway_host)
1168 server_connection->gateway_host = strdup_or_die(fwd->gateway_host);
1172 server_connection->gateway_host = NULL;
1174 server_connection->gateway_port = fwd->gateway_port;
1176 if (NULL != fwd->forward_host)
1178 server_connection->forward_host = strdup_or_die(fwd->forward_host);
1182 server_connection->forward_host = NULL;
1184 server_connection->forward_port = fwd->forward_port;
1188 /*********************************************************************
1190 * Function : verify_request_length
1192 * Description : Checks if we already got the whole client requests
1193 * and sets CSP_FLAG_CLIENT_REQUEST_COMPLETELY_READ if
1196 * Data that doesn't belong to the current request is
1197 * either thrown away to let the client retry on a clean
1198 * socket, or stashed to be dealt with after the current
1199 * request is served.
1202 * 1 : csp = Current client state (buffers, headers, etc...)
1206 *********************************************************************/
1207 static void verify_request_length(struct client_state *csp)
1209 unsigned long long buffered_request_bytes =
1210 (unsigned long long)(csp->client_iob->eod - csp->client_iob->cur);
1212 if ((csp->expected_client_content_length != 0)
1213 && (buffered_request_bytes != 0))
1215 if (csp->expected_client_content_length >= buffered_request_bytes)
1217 csp->expected_client_content_length -= buffered_request_bytes;
1218 log_error(LOG_LEVEL_CONNECT, "Reduced expected bytes to %llu "
1219 "to account for the %llu ones we already got.",
1220 csp->expected_client_content_length, buffered_request_bytes);
1224 assert(csp->client_iob->eod > csp->client_iob->cur + csp->expected_client_content_length);
1225 csp->client_iob->eod = csp->client_iob->cur + csp->expected_client_content_length;
1226 log_error(LOG_LEVEL_CONNECT, "Reducing expected bytes to 0. "
1227 "Marking the server socket tainted after throwing %llu bytes away.",
1228 buffered_request_bytes - csp->expected_client_content_length);
1229 csp->expected_client_content_length = 0;
1230 csp->flags |= CSP_FLAG_SERVER_SOCKET_TAINTED;
1233 if (csp->expected_client_content_length == 0)
1235 csp->flags |= CSP_FLAG_CLIENT_REQUEST_COMPLETELY_READ;
1239 if (!(csp->flags & CSP_FLAG_CLIENT_REQUEST_COMPLETELY_READ)
1240 && ((csp->client_iob->cur < csp->client_iob->eod)
1241 || (csp->expected_client_content_length != 0)))
1243 if (strcmpic(csp->http->gpc, "GET")
1244 && strcmpic(csp->http->gpc, "HEAD")
1245 && strcmpic(csp->http->gpc, "TRACE")
1246 && strcmpic(csp->http->gpc, "OPTIONS")
1247 && strcmpic(csp->http->gpc, "DELETE"))
1249 /* XXX: this is an incomplete hack */
1250 csp->flags &= ~CSP_FLAG_CLIENT_REQUEST_COMPLETELY_READ;
1251 log_error(LOG_LEVEL_CONNECT, "There better be a request body.");
1255 csp->flags |= CSP_FLAG_CLIENT_REQUEST_COMPLETELY_READ;
1257 if ((csp->config->feature_flags & RUNTIME_FEATURE_TOLERATE_PIPELINING) == 0)
1259 csp->flags |= CSP_FLAG_SERVER_SOCKET_TAINTED;
1260 log_error(LOG_LEVEL_CONNECT,
1261 "Possible pipeline attempt detected. The connection will not "
1262 "be kept alive and we will only serve the first request.");
1263 /* Nuke the pipelined requests from orbit, just to be sure. */
1264 clear_iob(csp->client_iob);
1269 * Keep the pipelined data around for now, we'll deal with
1270 * it once we're done serving the current request.
1272 csp->flags |= CSP_FLAG_PIPELINED_REQUEST_WAITING;
1273 assert(csp->client_iob->eod >= csp->client_iob->cur);
1274 log_error(LOG_LEVEL_CONNECT, "Complete client request followed by "
1275 "%d bytes of pipelined data received.",
1276 (int)(csp->client_iob->eod - csp->client_iob->cur));
1282 csp->flags |= CSP_FLAG_CLIENT_REQUEST_COMPLETELY_READ;
1283 log_error(LOG_LEVEL_CONNECT, "Complete client request received.");
1286 #endif /* FEATURE_CONNECTION_KEEP_ALIVE */
1289 /*********************************************************************
1291 * Function : mark_server_socket_tainted
1293 * Description : Makes sure we don't reuse a server socket
1294 * (if we didn't read everything the server sent
1295 * us reusing the socket would lead to garbage).
1298 * 1 : csp = Current client state (buffers, headers, etc...)
1302 *********************************************************************/
1303 static void mark_server_socket_tainted(struct client_state *csp)
1306 * For consistency we always mark the server socket
1307 * tainted, however, to reduce the log noise we only
1308 * emit a log message if the server socket could have
1309 * actually been reused.
1311 if ((csp->flags & CSP_FLAG_SERVER_CONNECTION_KEEP_ALIVE)
1312 && !(csp->flags & CSP_FLAG_SERVER_SOCKET_TAINTED))
1314 log_error(LOG_LEVEL_CONNECT,
1315 "Marking the server socket %d tainted.",
1316 csp->server_connection.sfd);
1318 csp->flags |= CSP_FLAG_SERVER_SOCKET_TAINTED;
1321 /*********************************************************************
1323 * Function : get_request_line
1325 * Description : Read the client request line.
1328 * 1 : csp = Current client state (buffers, headers, etc...)
1330 * Returns : Pointer to request line or NULL in case of errors.
1332 *********************************************************************/
1333 static char *get_request_line(struct client_state *csp)
1335 char buf[BUFFER_SIZE];
1336 char *request_line = NULL;
1339 memset(buf, 0, sizeof(buf));
1341 if ((csp->flags & CSP_FLAG_PIPELINED_REQUEST_WAITING) != 0)
1344 * If there are multiple pipelined requests waiting,
1345 * the flag will be set again once the next request
1348 csp->flags &= ~CSP_FLAG_PIPELINED_REQUEST_WAITING;
1350 request_line = get_header(csp->client_iob);
1351 if ((NULL != request_line) && ('\0' != *request_line))
1353 return request_line;
1357 log_error(LOG_LEVEL_CONNECT, "No complete request line "
1358 "received yet. Continuing reading from %d.", csp->cfd);
1366 0 == (csp->flags & CSP_FLAG_FUZZED_INPUT) &&
1368 !data_is_available(csp->cfd, csp->config->socket_timeout)
1371 if (socket_is_still_alive(csp->cfd))
1373 log_error(LOG_LEVEL_CONNECT,
1374 "No request line on socket %d received in time. Timeout: %d.",
1375 csp->cfd, csp->config->socket_timeout);
1376 write_socket_delayed(csp->cfd, CLIENT_CONNECTION_TIMEOUT_RESPONSE,
1377 strlen(CLIENT_CONNECTION_TIMEOUT_RESPONSE),
1378 get_write_delay(csp));
1382 log_error(LOG_LEVEL_CONNECT,
1383 "The client side of the connection on socket %d got "
1384 "closed without sending a complete request line.", csp->cfd);
1389 len = read_socket(csp->cfd, buf, sizeof(buf) - 1);
1391 if (len <= 0) return NULL;
1394 * If there is no memory left for buffering the
1395 * request, there is nothing we can do but hang up
1397 if (add_to_iob(csp->client_iob, csp->config->buffer_limit, buf, len))
1402 request_line = get_header(csp->client_iob);
1404 } while ((NULL != request_line) && ('\0' == *request_line));
1406 return request_line;
1412 CHUNK_STATUS_MISSING_DATA,
1413 CHUNK_STATUS_BODY_COMPLETE,
1414 CHUNK_STATUS_PARSE_ERROR
1418 /*********************************************************************
1420 * Function : chunked_body_is_complete
1422 * Description : Figures out whether or not a chunked body is complete.
1424 * Currently it always starts at the beginning of the
1425 * buffer which is somewhat wasteful and prevents Privoxy
1426 * from starting to forward the correctly parsed chunks
1427 * as soon as theoretically possible.
1429 * Should be modified to work with a common buffer,
1430 * and allow the caller to skip already parsed chunks.
1432 * This would allow the function to be used for unbuffered
1433 * response bodies as well.
1436 * 1 : iob = Buffer with the body to check.
1437 * 2 : length = Length of complete body
1439 * Returns : Enum with the result of the check.
1441 *********************************************************************/
1442 static enum chunk_status chunked_body_is_complete(struct iob *iob, size_t *length)
1444 unsigned int chunksize;
1450 * We need at least a single digit, followed by "\r\n",
1451 * followed by an unknown amount of data, followed by "\r\n".
1453 if (p + 5 > iob->eod)
1455 return CHUNK_STATUS_MISSING_DATA;
1457 if (sscanf(p, "%x", &chunksize) != 1)
1459 return CHUNK_STATUS_PARSE_ERROR;
1463 * We want at least a single digit, followed by "\r\n",
1464 * followed by the specified amount of data, followed by "\r\n".
1466 if (p + chunksize + 5 > iob->eod)
1468 return CHUNK_STATUS_MISSING_DATA;
1471 /* Skip chunk-size. */
1472 p = strstr(p, "\r\n");
1475 return CHUNK_STATUS_PARSE_ERROR;
1477 /* Move beyond the chunkdata. */
1480 /* There should be another "\r\n" to skip */
1481 if (memcmp(p, "\r\n", 2))
1483 return CHUNK_STATUS_PARSE_ERROR;
1486 } while (chunksize > 0U);
1488 *length = (size_t)(p - iob->cur);
1489 assert(*length <= (size_t)(iob->eod - iob->cur));
1490 assert(p <= iob->eod);
1492 return CHUNK_STATUS_BODY_COMPLETE;
1497 /*********************************************************************
1499 * Function : receive_chunked_client_request_body
1501 * Description : Read the chunk-encoded client request body.
1502 * Failures are dealt with.
1505 * 1 : csp = Current client state (buffers, headers, etc...)
1507 * Returns : JB_ERR_OK or JB_ERR_PARSE
1509 *********************************************************************/
1510 static jb_err receive_chunked_client_request_body(struct client_state *csp)
1513 enum chunk_status status;
1515 while (CHUNK_STATUS_MISSING_DATA ==
1516 (status = chunked_body_is_complete(csp->client_iob, &body_length)))
1518 char buf[BUFFER_SIZE];
1521 if (!data_is_available(csp->cfd, csp->config->socket_timeout))
1523 log_error(LOG_LEVEL_ERROR,
1524 "Timeout while waiting for the client body.");
1527 len = read_socket(csp->cfd, buf, sizeof(buf) - 1);
1530 log_error(LOG_LEVEL_ERROR, "Read the client body failed: %E");
1533 if (add_to_iob(csp->client_iob, csp->config->buffer_limit, buf, len))
1538 if (status != CHUNK_STATUS_BODY_COMPLETE)
1540 write_socket_delayed(csp->cfd, CLIENT_BODY_PARSE_ERROR_RESPONSE,
1541 strlen(CLIENT_BODY_PARSE_ERROR_RESPONSE), get_write_delay(csp));
1542 log_error(LOG_LEVEL_CLF,
1543 "%s - - [%T] \"Failed reading chunked client body\" 400 0", csp->ip_addr_str);
1544 return JB_ERR_PARSE;
1546 log_error(LOG_LEVEL_CONNECT,
1547 "Chunked client body completely read. Length: %d", body_length);
1548 csp->expected_client_content_length = body_length;
1556 /*********************************************************************
1558 * Function : fuzz_chunked_transfer_encoding
1560 * Description : Treat the fuzzed input as chunked transfer encoding
1561 * to check and dechunk.
1564 * 1 : csp = Used to store the data.
1565 * 2 : fuzz_input_file = File to read the input from.
1567 * Returns : Result of dechunking
1569 *********************************************************************/
1570 extern int fuzz_chunked_transfer_encoding(struct client_state *csp, char *fuzz_input_file)
1573 size_t size = (size_t)(csp->iob->eod - csp->iob->cur);
1574 enum chunk_status status;
1576 status = chunked_body_is_complete(csp->iob, &length);
1577 if (CHUNK_STATUS_BODY_COMPLETE != status)
1579 log_error(LOG_LEVEL_INFO, "Chunked body is incomplete or invalid");
1582 return (JB_ERR_OK == remove_chunked_transfer_coding(csp->iob->cur, &size));
1587 /*********************************************************************
1589 * Function : fuzz_client_request
1591 * Description : Try to get a client request from the fuzzed input.
1594 * 1 : csp = Current client state (buffers, headers, etc...)
1595 * 2 : fuzz_input_file = File to read the input from.
1597 * Returns : Result of fuzzing.
1599 *********************************************************************/
1600 extern int fuzz_client_request(struct client_state *csp, char *fuzz_input_file)
1605 csp->ip_addr_str = "fuzzer";
1607 if (strcmp(fuzz_input_file, "-") != 0)
1609 log_error(LOG_LEVEL_FATAL,
1610 "Fuzzed client requests can currenty only be read from stdin (-).");
1612 err = receive_client_request(csp);
1613 if (err != JB_ERR_OK)
1617 err = parse_client_request(csp);
1618 if (err != JB_ERR_OK)
1626 #endif /* def FUZZ */
1629 #ifdef FEATURE_FORCE_LOAD
1630 /*********************************************************************
1632 * Function : force_required
1634 * Description : Checks a request line to see if it contains
1635 * the FORCE_PREFIX. If it does, it is removed
1636 * unless enforcing requests has beend disabled.
1639 * 1 : request_line = HTTP request line
1641 * Returns : TRUE if force is required, FALSE otherwise.
1643 *********************************************************************/
1644 static int force_required(const struct client_state *csp, char *request_line)
1648 p = strstr(request_line, "http://");
1652 p += strlen("http://");
1656 /* Intercepted request usually don't specify the protocol. */
1660 /* Go to the beginning of the path */
1665 * If the path is missing the request line is invalid and we
1666 * are done here. The client-visible rejection happens later on.
1671 if (0 == strncmpic(p, FORCE_PREFIX, strlen(FORCE_PREFIX) - 1))
1673 if (!(csp->config->feature_flags & RUNTIME_FEATURE_ENFORCE_BLOCKS))
1675 /* XXX: Should clean more carefully */
1676 strclean(request_line, FORCE_PREFIX);
1677 log_error(LOG_LEVEL_FORCE,
1678 "Enforcing request: \"%s\".", request_line);
1682 log_error(LOG_LEVEL_FORCE,
1683 "Ignored force prefix in request: \"%s\".", request_line);
1689 #endif /* def FEATURE_FORCE_LOAD */
1692 /*********************************************************************
1694 * Function : receive_client_request
1696 * Description : Read the client's request (more precisely the
1697 * client headers) and answer it if necessary.
1700 * 1 : csp = Current client state (buffers, headers, etc...)
1702 * Returns : JB_ERR_OK, JB_ERR_PARSE or JB_ERR_MEMORY
1704 *********************************************************************/
1705 static jb_err receive_client_request(struct client_state *csp)
1707 char buf[BUFFER_SIZE];
1710 struct http_request *http;
1714 /* Temporary copy of the client's headers before they get enlisted in csp->headers */
1715 struct list header_list;
1716 struct list *headers = &header_list;
1718 /* We don't care if the arriving data is a valid HTTP request or not. */
1719 csp->requests_received_total++;
1723 memset(buf, 0, sizeof(buf));
1725 req = get_request_line(csp);
1728 mark_server_socket_tainted(csp);
1729 return JB_ERR_PARSE;
1731 assert(*req != '\0');
1733 if (client_protocol_is_unsupported(csp, req))
1735 return JB_ERR_PARSE;
1738 #ifdef FEATURE_FORCE_LOAD
1739 if (force_required(csp, req))
1741 csp->flags |= CSP_FLAG_FORCED;
1743 #endif /* def FEATURE_FORCE_LOAD */
1745 err = parse_http_request(req, http);
1747 if (JB_ERR_OK != err)
1749 write_socket_delayed(csp->cfd, CHEADER, strlen(CHEADER),
1750 get_write_delay(csp));
1751 /* XXX: Use correct size */
1752 log_error(LOG_LEVEL_CLF, "%s - - [%T] \"Invalid request\" 400 0", csp->ip_addr_str);
1753 log_error(LOG_LEVEL_ERROR,
1754 "Couldn't parse request line received from %s: %s",
1755 csp->ip_addr_str, jb_err_to_string(err));
1757 free_http_request(http);
1758 return JB_ERR_PARSE;
1761 /* grab the rest of the client's headers */
1765 p = get_header(csp->client_iob);
1769 /* There are no additional headers to read. */
1776 * We didn't receive a complete header
1777 * line yet, get the rest of it.
1779 if (!data_is_available(csp->cfd, csp->config->socket_timeout))
1781 log_error(LOG_LEVEL_ERROR,
1782 "Stopped grabbing the client headers.");
1783 destroy_list(headers);
1784 return JB_ERR_PARSE;
1787 len = read_socket(csp->cfd, buf, sizeof(buf) - 1);
1790 log_error(LOG_LEVEL_ERROR, "read from client failed: %E");
1791 destroy_list(headers);
1792 return JB_ERR_PARSE;
1795 if (add_to_iob(csp->client_iob, csp->config->buffer_limit, buf, len))
1798 * If there is no memory left for buffering the
1799 * request, there is nothing we can do but hang up
1801 destroy_list(headers);
1802 return JB_ERR_MEMORY;
1807 if (!strncmpic(p, "Transfer-Encoding:", 18))
1810 * XXX: should be called through sed()
1811 * but currently can't.
1813 client_transfer_encoding(csp, &p);
1816 * We were able to read a complete
1817 * header and can finally enlist it.
1824 if (http->host == NULL)
1827 * If we still don't know the request destination,
1828 * the request is invalid or the client uses
1829 * Privoxy without its knowledge.
1831 if (JB_ERR_OK != get_request_destination_elsewhere(csp, headers))
1834 * Our attempts to get the request destination
1835 * elsewhere failed or Privoxy is configured
1836 * to only accept proxy requests.
1838 * An error response has already been send
1839 * and we're done here.
1841 return JB_ERR_PARSE;
1845 #ifdef FEATURE_CLIENT_TAGS
1846 /* XXX: If the headers were enlisted sooner, passing csp would do. */
1847 set_client_address(csp, headers);
1848 get_tag_list_for_client(csp->client_tags, csp->client_address);
1852 * Determine the actions for this URL
1854 #ifdef FEATURE_TOGGLE
1855 if (!(csp->flags & CSP_FLAG_TOGGLED_ON))
1857 /* Most compatible set of actions (i.e. none) */
1858 init_current_action(csp->action);
1861 #endif /* ndef FEATURE_TOGGLE */
1863 get_url_actions(csp, http);
1866 enlist(csp->headers, http->cmd);
1868 /* Append the previously read headers */
1869 err = list_append_list_unique(csp->headers, headers);
1870 destroy_list(headers);
1877 /*********************************************************************
1879 * Function : parse_client_request
1881 * Description : Parses the client's request and decides what to do
1884 * Note that since we're not using select() we could get
1885 * blocked here if a client connected, then didn't say
1889 * 1 : csp = Current client state (buffers, headers, etc...)
1891 * Returns : JB_ERR_OK or JB_ERR_PARSE
1893 *********************************************************************/
1894 static jb_err parse_client_request(struct client_state *csp)
1896 struct http_request *http = csp->http;
1899 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
1900 if ((csp->config->feature_flags & RUNTIME_FEATURE_CONNECTION_KEEP_ALIVE)
1901 && (!strcmpic(csp->http->ver, "HTTP/1.1"))
1902 && (csp->http->ssl == 0))
1904 /* Assume persistence until further notice */
1905 csp->flags |= CSP_FLAG_CLIENT_CONNECTION_KEEP_ALIVE;
1908 if (csp->http->ssl == 0)
1911 * This whole block belongs to chat() but currently
1912 * has to be executed before sed().
1914 if (csp->flags & CSP_FLAG_CHUNKED_CLIENT_BODY)
1916 if (receive_chunked_client_request_body(csp) != JB_ERR_OK)
1918 return JB_ERR_PARSE;
1923 csp->expected_client_content_length = get_expected_content_length(csp->headers);
1925 verify_request_length(csp);
1929 csp->flags |= CSP_FLAG_SERVER_SOCKET_TAINTED;
1931 #endif /* def FEATURE_CONNECTION_KEEP_ALIVE */
1933 err = sed(csp, FILTER_CLIENT_HEADERS);
1934 if (JB_ERR_OK != err)
1936 log_error(LOG_LEVEL_ERROR, "Failed to parse client request from %s.",
1938 log_error(LOG_LEVEL_CLF, "%s - - [%T] \"%s\" 400 0",
1939 csp->ip_addr_str, csp->http->cmd);
1940 write_socket_delayed(csp->cfd, CHEADER, strlen(CHEADER), get_write_delay(csp));
1941 return JB_ERR_PARSE;
1943 csp->flags |= CSP_FLAG_CLIENT_HEADER_PARSING_DONE;
1945 /* Check request line for rewrites. */
1946 if ((NULL == csp->headers->first->str)
1947 || (strcmp(http->cmd, csp->headers->first->str) &&
1948 (JB_ERR_OK != change_request_destination(csp))))
1951 * A header filter broke the request line - bail out.
1953 write_socket_delayed(csp->cfd, MESSED_UP_REQUEST_RESPONSE,
1954 strlen(MESSED_UP_REQUEST_RESPONSE), get_write_delay(csp));
1955 /* XXX: Use correct size */
1956 log_error(LOG_LEVEL_CLF,
1957 "%s - - [%T] \"Invalid request generated\" 500 0", csp->ip_addr_str);
1958 log_error(LOG_LEVEL_ERROR,
1959 "Invalid request line after applying header filters.");
1960 free_http_request(http);
1962 return JB_ERR_PARSE;
1965 if (client_has_unsupported_expectations(csp))
1967 return JB_ERR_PARSE;
1975 /*********************************************************************
1977 * Function : send_http_request
1979 * Description : Sends the HTTP headers from the client request
1980 * and all the body data that has already been received.
1983 * 1 : csp = Current client state (buffers, headers, etc...)
1985 * Returns : 0 on success, anything else is an error.
1987 *********************************************************************/
1988 static int send_http_request(struct client_state *csp)
1993 hdr = list_to_text(csp->headers);
1996 /* FIXME Should handle error properly */
1997 log_error(LOG_LEVEL_FATAL, "Out of memory parsing client header");
1999 list_remove_all(csp->headers);
2002 * Write the client's (modified) header to the server
2003 * (along with anything else that may be in the buffer)
2005 write_failure = 0 != write_socket(csp->server_connection.sfd, hdr, strlen(hdr));
2010 log_error(LOG_LEVEL_CONNECT, "Failed sending request headers to: %s: %E",
2011 csp->http->hostport);
2013 else if (((csp->flags & CSP_FLAG_PIPELINED_REQUEST_WAITING) == 0)
2014 && (flush_iob(csp->server_connection.sfd, csp->client_iob, 0) < 0))
2017 log_error(LOG_LEVEL_CONNECT, "Failed sending request body to: %s: %E",
2018 csp->http->hostport);
2021 return write_failure;
2026 #ifdef FEATURE_HTTPS_INSPECTION
2027 /*********************************************************************
2029 * Function : receive_and_send_encrypted_post_data
2031 * Description : Reads remaining POST data from the client and sends
2035 * 1 : csp = Current client state (buffers, headers, etc...)
2037 * Returns : 0 on success, anything else is an error.
2039 *********************************************************************/
2040 static jb_err receive_and_send_encrypted_post_data(struct client_state *csp)
2042 int content_length_known = csp->expected_client_content_length != 0;
2044 while (is_ssl_pending(&(csp->mbedtls_client_attr.ssl)))
2046 unsigned char buf[BUFFER_SIZE];
2048 int max_bytes_to_read = sizeof(buf);
2050 if (content_length_known && csp->expected_client_content_length < sizeof(buf))
2052 max_bytes_to_read = (int)csp->expected_client_content_length;
2054 log_error(LOG_LEVEL_CONNECT,
2055 "Waiting for up to %d bytes of POST data from the client.",
2057 len = ssl_recv_data(&(csp->mbedtls_client_attr.ssl), buf,
2058 (unsigned)max_bytes_to_read);
2065 /* XXX: Does this actually happen? */
2068 log_error(LOG_LEVEL_HEADER, "Forwarding %d bytes of encrypted POST data",
2070 len = ssl_send_data(&(csp->mbedtls_server_attr.ssl), buf, (size_t)len);
2075 if (csp->expected_client_content_length != 0)
2077 if (csp->expected_client_content_length >= len)
2079 csp->expected_client_content_length -= (unsigned)len;
2081 if (csp->expected_client_content_length == 0)
2083 log_error(LOG_LEVEL_HEADER, "Forwarded the last %d bytes", len);
2089 log_error(LOG_LEVEL_HEADER, "Done forwarding encrypted POST data");
2096 /*********************************************************************
2098 * Function : send_https_request
2100 * Description : Sends the HTTP headers from the client request
2101 * and all the body data that has already been received.
2104 * 1 : csp = Current client state (buffers, headers, etc...)
2106 * Returns : 0 on success, anything else is an error.
2108 *********************************************************************/
2109 static int send_https_request(struct client_state *csp)
2115 hdr = list_to_text(csp->https_headers);
2118 /* FIXME Should handle error properly */
2119 log_error(LOG_LEVEL_FATAL, "Out of memory parsing client header");
2121 list_remove_all(csp->https_headers);
2124 * Write the client's (modified) header to the server
2125 * (along with anything else that may be in the buffer)
2127 ret = ssl_send_data(&(csp->mbedtls_server_attr.ssl),
2128 (const unsigned char *)hdr, strlen(hdr));
2133 log_error(LOG_LEVEL_CONNECT,
2134 "Failed sending encrypted request headers to: %s: %E",
2135 csp->http->hostport);
2136 mark_server_socket_tainted(csp);
2140 if (((csp->flags & CSP_FLAG_PIPELINED_REQUEST_WAITING) == 0)
2141 && ((flushed = ssl_flush_socket(&(csp->mbedtls_server_attr.ssl),
2142 csp->client_iob)) < 0))
2144 log_error(LOG_LEVEL_CONNECT, "Failed sending request body to: %s: %E",
2145 csp->http->hostport);
2150 if (csp->expected_client_content_length != 0)
2152 if (csp->expected_client_content_length < flushed)
2154 log_error(LOG_LEVEL_ERROR,
2155 "Flushed %d bytes of request body while only expecting %llu",
2156 flushed, csp->expected_client_content_length);
2157 csp->expected_client_content_length = 0;
2161 log_error(LOG_LEVEL_CONNECT,
2162 "Flushed %d bytes of request body while expecting %llu",
2163 flushed, csp->expected_client_content_length);
2164 csp->expected_client_content_length -= (unsigned)flushed;
2165 if (receive_and_send_encrypted_post_data(csp))
2173 log_error(LOG_LEVEL_CONNECT,
2174 "Flushed %d bytes of request body", flushed);
2178 log_error(LOG_LEVEL_CONNECT, "Encrypted request sent");
2185 /*********************************************************************
2187 * Function : receive_encrypted_request
2189 * Description : Receives an encrypted request.
2192 * 1 : csp = Current client state (buffers, headers, etc...)
2194 * Returns : JB_ERR_OK on success,
2195 * JB_ERR_PARSE or JB_ERR_MEMORY otherwise
2197 *********************************************************************/
2198 static jb_err receive_encrypted_request(struct client_state *csp)
2200 char buf[BUFFER_SIZE];
2206 log_error(LOG_LEVEL_HEADER, "Reading encrypted headers");
2207 if (!data_is_available(csp->cfd, (int)csp->config->keep_alive_timeout))
2209 log_error(LOG_LEVEL_CONNECT,
2210 "Socket %d timed out while waiting for client headers", csp->cfd);
2211 return JB_ERR_PARSE;
2213 len = ssl_recv_data(&(csp->mbedtls_client_attr.ssl),
2214 (unsigned char *)buf, sizeof(buf));
2217 return JB_ERR_PARSE;
2219 if (add_to_iob(csp->client_iob, csp->config->buffer_limit, buf, len))
2221 return JB_ERR_MEMORY;
2223 p = strstr(csp->client_iob->cur, "\r\n\r\n");
2224 } while (p == NULL);
2226 log_error(LOG_LEVEL_HEADER, "Encrypted headers received completely");
2232 /*********************************************************************
2234 * Function : process_encrypted_request
2236 * Description : Receives and parses an encrypted request.
2239 * 1 : csp = Current client state (buffers, headers, etc...)
2241 * Returns : JB_ERR_OK on success,
2242 * JB_ERR_PARSE or JB_ERR_MEMORY otherwise
2244 *********************************************************************/
2245 static jb_err process_encrypted_request(struct client_state *csp)
2250 /* Temporary copy of the client's headers before they get enlisted in csp->https_headers */
2251 struct list header_list;
2252 struct list *headers = &header_list;
2254 err = receive_encrypted_request(csp);
2255 if (err != JB_ERR_OK)
2257 /* XXX: Also used for JB_ERR_MEMORY */
2258 log_error(LOG_LEVEL_ERROR, "Failed to receive encrypted request: %s",
2259 jb_err_to_string(err));
2260 ssl_send_data(&(csp->mbedtls_client_attr.ssl),
2261 (const unsigned char *)CHEADER, strlen(CHEADER));
2265 /* We don't need get_request_line() because the whole HTTP head is buffered. */
2266 request_line = get_header(csp->client_iob);
2267 if (request_line == NULL)
2269 log_error(LOG_LEVEL_ERROR, "Failed to get the encrypted request line");
2270 ssl_send_data(&(csp->mbedtls_client_attr.ssl),
2271 (const unsigned char *)CHEADER, strlen(CHEADER));
2272 return JB_ERR_PARSE;
2274 assert(*request_line != '\0');
2276 if (client_protocol_is_unsupported(csp, request_line))
2279 * If the protocol is unsupported we're done here.
2280 * client_protocol_is_unsupported() took care of sending
2281 * the error response and logging the error message.
2283 return JB_ERR_PARSE;
2286 #ifdef FEATURE_FORCE_LOAD
2287 if (force_required(csp, request_line))
2289 csp->flags |= CSP_FLAG_FORCED;
2291 #endif /* def FEATURE_FORCE_LOAD */
2293 free_http_request(csp->http);
2295 err = parse_http_request(request_line, csp->http);
2296 /* XXX: Restore ssl setting. This is ugly */
2297 csp->http->client_ssl = 1;
2298 csp->http->server_ssl = 1;
2300 freez(request_line);
2301 if (JB_ERR_OK != err)
2303 ssl_send_data(&(csp->mbedtls_client_attr.ssl),
2304 (const unsigned char *)CHEADER, strlen(CHEADER));
2305 /* XXX: Use correct size */
2306 log_error(LOG_LEVEL_CLF, "%s - - [%T] \"Invalid request\" 400 0", csp->ip_addr_str);
2307 log_error(LOG_LEVEL_ERROR,
2308 "Couldn't parse request line received from %s: %s",
2309 csp->ip_addr_str, jb_err_to_string(err));
2311 free_http_request(csp->http);
2312 return JB_ERR_PARSE;
2315 /* Parse the rest of the client's headers. */
2319 p = get_header(csp->client_iob);
2323 /* There are no additional headers to read. */
2330 if (JB_ERR_OK != get_destination_from_https_headers(headers, csp->http))
2333 * Our attempts to get the request destination
2336 log_error(LOG_LEVEL_ERROR,
2337 "Failed to get the encrypted request destination");
2338 ssl_send_data(&(csp->mbedtls_client_attr.ssl),
2339 (const unsigned char *)CHEADER, strlen(CHEADER));
2340 return JB_ERR_PARSE;
2343 #ifndef FEATURE_EXTENDED_HOST_PATTERNS
2344 /* Split the domain we just got for pattern matching */
2345 init_domain_components(csp->http);
2348 #ifdef FEATURE_TOGGLE
2349 if ((csp->flags & CSP_FLAG_TOGGLED_ON) != 0)
2352 /* Determine the actions for this URL */
2353 get_url_actions(csp, csp->http);
2356 enlist(csp->https_headers, csp->http->cmd);
2358 /* Append the previously read headers */
2359 err = list_append_list_unique(csp->https_headers, headers);
2360 destroy_list(headers);
2361 if (JB_ERR_OK != err)
2363 /* XXX: Send error message */
2367 /* XXX: Work around crash */
2368 csp->error_message = NULL;
2370 /* XXX: Why do this here? */
2373 err = sed_https(csp);
2374 if (JB_ERR_OK != err)
2376 ssl_send_data(&(csp->mbedtls_client_attr.ssl),
2377 (const unsigned char *)CHEADER, strlen(CHEADER));
2378 log_error(LOG_LEVEL_ERROR, "Failed to parse client request from %s.",
2380 log_error(LOG_LEVEL_CLF, "%s - - [%T] \"%s\" 400 0",
2381 csp->ip_addr_str, csp->http->cmd);
2382 return JB_ERR_PARSE;
2385 log_error(LOG_LEVEL_HEADER, "Encrypted request processed");
2386 log_applied_actions(csp->action);
2394 /*********************************************************************
2396 * Function : handle_established_connection
2398 * Description : Shuffle data between client and server once the
2399 * connection has been established.
2402 * 1 : csp = Current client state (buffers, headers, etc...)
2404 * Returns : Nothing.
2406 *********************************************************************/
2407 static void handle_established_connection(struct client_state *csp)
2413 struct pollfd poll_fds[2];
2417 struct timeval timeout;
2420 int ms_iis5_hack = 0;
2421 unsigned long long byte_count = 0;
2422 struct http_request *http;
2423 long len = 0; /* for buffer sizes (and negative error codes) */
2424 int buffer_and_filter_content = 0;
2425 unsigned int write_delay;
2426 #ifdef FEATURE_HTTPS_INSPECTION
2428 int use_ssl_tunnel = 0;
2429 csp->dont_verify_certificate = 0;
2431 if (csp->http->ssl && !(csp->action->flags & ACTION_HTTPS_INSPECTION))
2433 /* Pass encrypted content without filtering. */
2438 /* Skeleton for HTTP response, if we should intercept the request */
2439 struct http_response *rsp;
2440 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
2441 int watch_client_socket;
2444 csp->receive_buffer_size = csp->config->receive_buffer_size;
2445 csp->receive_buffer = zalloc(csp->receive_buffer_size + 1);
2446 if (csp->receive_buffer == NULL)
2448 log_error(LOG_LEVEL_ERROR,
2449 "Out of memory. Failed to allocate the receive buffer.");
2450 rsp = cgi_error_memory();
2451 send_crunch_response(csp, rsp);
2458 maxfd = (csp->cfd > csp->server_connection.sfd) ?
2459 csp->cfd : csp->server_connection.sfd;
2462 /* pass data between the client and server
2463 * until one or the other shuts down the connection.
2468 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
2469 watch_client_socket = 0 == (csp->flags & CSP_FLAG_PIPELINED_REQUEST_WAITING);
2471 write_delay = get_write_delay(csp);
2478 * FD_ZERO here seems to point to an errant macro which crashes.
2479 * So do this by hand for now...
2481 memset(&rfds,0x00,sizeof(fd_set));
2485 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
2486 if (!watch_client_socket)
2488 maxfd = csp->server_connection.sfd;
2491 #endif /* def FEATURE_CONNECTION_KEEP_ALIVE */
2493 FD_SET(csp->cfd, &rfds);
2496 FD_SET(csp->server_connection.sfd, &rfds);
2497 #endif /* ndef HAVE_POLL */
2499 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
2500 if ((csp->flags & CSP_FLAG_CHUNKED)
2501 && !(csp->flags & CSP_FLAG_CONTENT_LENGTH_SET)
2502 && ((csp->iob->eod - csp->iob->cur) >= 5)
2503 && !memcmp(csp->iob->eod-5, "0\r\n\r\n", 5))
2506 * XXX: This check should be obsolete now,
2507 * but let's wait a while to be sure.
2509 log_error(LOG_LEVEL_CONNECT,
2510 "Looks like we got the last chunk together with "
2511 "the server headers but didn't detect it earlier. "
2512 "We better stop reading.");
2513 byte_count = (unsigned long long)(csp->iob->eod - csp->iob->cur);
2514 csp->expected_content_length = byte_count;
2515 csp->flags |= CSP_FLAG_CONTENT_LENGTH_SET;
2517 if (server_body && server_response_is_complete(csp, byte_count))
2519 if (csp->expected_content_length == byte_count)
2521 log_error(LOG_LEVEL_CONNECT,
2522 "Done reading from server. Content length: %llu as expected. "
2523 "Bytes most recently read: %d.",
2528 log_error(LOG_LEVEL_CONNECT,
2529 "Done reading from server. Expected content length: %llu. "
2530 "Actual content length: %llu. Bytes most recently read: %d.",
2531 csp->expected_content_length, byte_count, len);
2535 * XXX: Should not jump around, handle_established_connection()
2536 * is complicated enough already.
2540 #endif /* FEATURE_CONNECTION_KEEP_ALIVE */
2543 poll_fds[0].fd = csp->cfd;
2544 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
2545 if (!watch_client_socket)
2548 * Ignore incoming data, but still watch out
2549 * for disconnects etc. These flags are always
2550 * implied anyway but explicitly setting them
2553 poll_fds[0].events = POLLERR|POLLHUP;
2558 poll_fds[0].events = POLLIN;
2560 poll_fds[1].fd = csp->server_connection.sfd;
2561 poll_fds[1].events = POLLIN;
2562 n = poll(poll_fds, 2, csp->config->socket_timeout * 1000);
2564 timeout.tv_sec = csp->config->socket_timeout;
2565 timeout.tv_usec = 0;
2566 n = select((int)maxfd + 1, &rfds, NULL, NULL, &timeout);
2567 #endif /* def HAVE_POLL */
2569 /*server or client not responding in timeout */
2572 log_error(LOG_LEVEL_CONNECT, "Socket timeout %d reached: %s",
2573 csp->config->socket_timeout, http->url);
2574 if ((byte_count == 0) && (http->ssl == 0))
2576 send_crunch_response(csp, error_response(csp, "connection-timeout"));
2578 mark_server_socket_tainted(csp);
2579 #ifdef FEATURE_HTTPS_INSPECTION
2580 close_client_and_server_ssl_connections(csp);
2587 log_error(LOG_LEVEL_ERROR, "poll() failed!: %E");
2589 log_error(LOG_LEVEL_ERROR, "select() failed!: %E");
2591 mark_server_socket_tainted(csp);
2592 #ifdef FEATURE_HTTPS_INSPECTION
2593 close_client_and_server_ssl_connections(csp);
2599 * This is the body of the browser's request,
2600 * just read and write it.
2602 * Receives data from browser and sends it to server
2604 * XXX: Make sure the client doesn't use pipelining
2605 * behind Privoxy's back.
2608 if ((poll_fds[0].revents & (POLLERR|POLLHUP|POLLNVAL)) != 0)
2610 log_error(LOG_LEVEL_CONNECT,
2611 "The client socket %d has become unusable while "
2612 "the server socket %d is still open.",
2613 csp->cfd, csp->server_connection.sfd);
2614 mark_server_socket_tainted(csp);
2618 if (poll_fds[0].revents != 0)
2620 if (FD_ISSET(csp->cfd, &rfds))
2621 #endif /* def HAVE_POLL*/
2623 int max_bytes_to_read = (int)csp->receive_buffer_size;
2625 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
2626 if ((csp->flags & CSP_FLAG_CLIENT_REQUEST_COMPLETELY_READ))
2628 if (data_is_available(csp->cfd, 0))
2631 * If the next request is already waiting, we have
2632 * to stop select()ing the client socket. Otherwise
2633 * we would always return right away and get nothing
2636 watch_client_socket = 0;
2637 log_error(LOG_LEVEL_CONNECT,
2638 "Stop watching client socket %d. "
2639 "There's already another request waiting.",
2644 * If the client socket is set, but there's no data
2645 * available on the socket, the client went fishing
2646 * and continuing talking to the server makes no sense.
2648 log_error(LOG_LEVEL_CONNECT,
2649 "The client closed socket %d while "
2650 "the server socket %d is still open.",
2651 csp->cfd, csp->server_connection.sfd);
2652 mark_server_socket_tainted(csp);
2655 if (csp->expected_client_content_length != 0)
2657 if (csp->expected_client_content_length < csp->receive_buffer_size)
2659 max_bytes_to_read = (int)csp->expected_client_content_length;
2661 log_error(LOG_LEVEL_CONNECT,
2662 "Waiting for up to %d bytes from the client.",
2665 assert(max_bytes_to_read <= csp->receive_buffer_size);
2666 #endif /* def FEATURE_CONNECTION_KEEP_ALIVE */
2668 #ifdef FEATURE_HTTPS_INSPECTION
2670 * Reading data from standard or secured connection (HTTP/HTTPS)
2672 if (client_use_ssl(csp))
2675 * Receiving HTTP request from client over TLS/SSL and sending
2676 * it to server over TLS/SSL.
2678 len = ssl_recv_data(&(csp->mbedtls_client_attr.ssl),
2679 (unsigned char *)csp->receive_buffer, (size_t)max_bytes_to_read);
2683 mark_server_socket_tainted(csp);
2687 ret = ssl_send_data(&(csp->mbedtls_server_attr.ssl),
2688 (const unsigned char *)csp->receive_buffer, (size_t)len);
2692 log_error(LOG_LEVEL_ERROR,
2693 "Send request over TLS/SSL to: %s failed", http->host);
2694 mark_server_socket_tainted(csp);
2695 close_client_and_server_ssl_connections(csp);
2700 #endif /* def FEATURE_HTTPS_INSPECTION */
2702 len = read_socket(csp->cfd, csp->receive_buffer, max_bytes_to_read);
2706 /* XXX: not sure if this is necessary. */
2707 mark_server_socket_tainted(csp);
2708 break; /* "game over, man" */
2711 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
2712 if (csp->expected_client_content_length != 0)
2714 assert(len <= max_bytes_to_read);
2715 csp->expected_client_content_length -= (unsigned)len;
2716 log_error(LOG_LEVEL_CONNECT,
2717 "Expected client content length set to %llu "
2718 "after reading %d bytes.",
2719 csp->expected_client_content_length, len);
2720 if (csp->expected_client_content_length == 0)
2722 log_error(LOG_LEVEL_CONNECT,
2723 "Done reading from the client.");
2724 csp->flags |= CSP_FLAG_CLIENT_REQUEST_COMPLETELY_READ;
2727 #endif /* def FEATURE_CONNECTION_KEEP_ALIVE */
2729 if (write_socket(csp->server_connection.sfd, csp->receive_buffer, (size_t)len))
2731 log_error(LOG_LEVEL_ERROR, "write to: %s failed: %E", http->host);
2732 mark_server_socket_tainted(csp);
2740 * The server wants to talk. It could be the header or the body.
2741 * If `hdr' is null, then it's the header otherwise it's the body.
2742 * FIXME: Does `hdr' really mean `host'? No.
2745 if (poll_fds[1].revents != 0)
2747 if (FD_ISSET(csp->server_connection.sfd, &rfds))
2748 #endif /* HAVE_POLL */
2750 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
2752 * If we are buffering content, we don't want to eat up to
2753 * buffer-limit bytes if the client no longer cares about them.
2754 * If we aren't buffering, however, a dead client socket will be
2755 * noticed pretty much right away anyway, so we can reduce the
2756 * overhead by skipping the check.
2758 if (buffer_and_filter_content && !socket_is_still_alive(csp->cfd))
2761 log_error(LOG_LEVEL_CONNECT,
2762 "The server still wants to talk, but the client may already have hung up on us.");
2764 log_error(LOG_LEVEL_CONNECT,
2765 "The server still wants to talk, but the client hung up on us.");
2766 mark_server_socket_tainted(csp);
2767 #ifdef FEATURE_HTTPS_INSPECTION
2768 close_client_and_server_ssl_connections(csp);
2771 #endif /* def _WIN32 */
2773 #endif /* def FEATURE_CONNECTION_KEEP_ALIVE */
2775 #ifdef FEATURE_HTTPS_INSPECTION
2777 * Reading data from standard or secured connection (HTTP/HTTPS)
2779 if (server_use_ssl(csp))
2781 len = ssl_recv_data(&(csp->mbedtls_server_attr.ssl),
2782 (unsigned char *)csp->receive_buffer, csp->receive_buffer_size);
2787 len = read_socket(csp->server_connection.sfd, csp->receive_buffer,
2788 (int)csp->receive_buffer_size);
2793 log_error(LOG_LEVEL_ERROR, "read from: %s failed: %E", http->host);
2795 if ((http->ssl && (csp->fwd == NULL))
2796 #ifdef FEATURE_HTTPS_INSPECTION
2802 * Just hang up. We already confirmed the client's CONNECT
2803 * request with status code 200 and unencrypted content is
2804 * no longer welcome.
2806 log_error(LOG_LEVEL_ERROR,
2807 "CONNECT already confirmed. Unable to tell the client about the problem.");
2810 else if (byte_count)
2813 * Just hang up. We already transmitted the original headers
2814 * and parts of the original content and therefore missed the
2815 * chance to send an error message (without risking data corruption).
2817 * XXX: we could retry with a fancy range request here.
2819 log_error(LOG_LEVEL_ERROR, "Already forwarded the original headers. "
2820 "Unable to tell the client about the problem.");
2821 mark_server_socket_tainted(csp);
2822 #ifdef FEATURE_HTTPS_INSPECTION
2823 close_client_and_server_ssl_connections(csp);
2828 * XXX: Consider handling the cases above the same.
2830 mark_server_socket_tainted(csp);
2834 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
2835 if (csp->flags & CSP_FLAG_CHUNKED)
2837 if ((len >= 5) && !memcmp(csp->receive_buffer+len-5, "0\r\n\r\n", 5))
2839 /* XXX: this is a temporary hack */
2840 log_error(LOG_LEVEL_CONNECT,
2841 "Looks like we reached the end of the last chunk. "
2842 "We better stop reading.");
2843 csp->expected_content_length = byte_count + (unsigned long long)len;
2844 csp->flags |= CSP_FLAG_CONTENT_LENGTH_SET;
2848 #endif /* FEATURE_CONNECTION_KEEP_ALIVE */
2851 * This is guaranteed by allocating with zalloc_or_die()
2852 * and never (intentionally) writing to the last byte.
2854 * csp->receive_buffer_size is the size of the part of the
2855 * buffer we intentionally write to, but we actually
2856 * allocated csp->receive_buffer_size+1 bytes so the assertion
2857 * stays within the allocated range.
2859 assert(csp->receive_buffer[csp->receive_buffer_size] == '\0');
2862 * Add a trailing zero to let be able to use string operations.
2863 * XXX: do we still need this with filter_popups gone?
2865 assert(len <= csp->receive_buffer_size);
2866 csp->receive_buffer[len] = '\0';
2869 * Normally, this would indicate that we've read
2870 * as much as the server has sent us and we can
2871 * close the client connection. However, Microsoft
2872 * in its wisdom has released IIS/5 with a bug that
2873 * prevents it from sending the trailing \r\n in
2874 * a 302 redirect header (and possibly other headers).
2875 * To work around this if we've haven't parsed
2876 * a full header we'll append a trailing \r\n
2877 * and see if this now generates a valid one.
2879 * This hack shouldn't have any impacts. If we've
2880 * already transmitted the header or if this is a
2881 * SSL connection, then we won't bother with this
2882 * hack. So we only work on partially received
2883 * headers. If we append a \r\n and this still
2884 * doesn't generate a valid header, then we won't
2885 * transmit anything to the client.
2890 if (server_body || (http->ssl
2891 #ifdef FEATURE_HTTPS_INSPECTION
2897 * If we have been buffering up the document,
2898 * now is the time to apply content modification
2899 * and send the result to the client.
2901 if (buffer_and_filter_content)
2903 p = execute_content_filters(csp);
2905 * If content filtering fails, use the original
2906 * buffer and length.
2907 * (see p != NULL ? p : csp->iob->cur below)
2911 csp->content_length = (size_t)(csp->iob->eod - csp->iob->cur);
2913 #ifdef FEATURE_COMPRESSION
2914 else if ((csp->flags & CSP_FLAG_CLIENT_SUPPORTS_DEFLATE)
2915 && (csp->content_length > LOWER_LENGTH_LIMIT_FOR_COMPRESSION))
2917 char *compressed_content = compress_buffer(p,
2918 (size_t *)&csp->content_length, csp->config->compression_level);
2919 if (compressed_content != NULL)
2922 p = compressed_content;
2923 csp->flags |= CSP_FLAG_BUFFERED_CONTENT_DEFLATED;
2928 if (JB_ERR_OK != update_server_headers(csp))
2930 log_error(LOG_LEVEL_FATAL,
2931 "Failed to update server headers. after filtering.");
2934 hdr = list_to_text(csp->headers);
2937 /* FIXME Should handle error properly */
2938 log_error(LOG_LEVEL_FATAL, "Out of memory parsing server header");
2941 #ifdef FEATURE_HTTPS_INSPECTION
2943 * Sending data with standard or secured connection (HTTP/HTTPS)
2945 if (client_use_ssl(csp))
2947 if ((ssl_send_data(&(csp->mbedtls_client_attr.ssl),
2948 (const unsigned char *)hdr, strlen(hdr)) < 0)
2949 || (ssl_send_data(&(csp->mbedtls_client_attr.ssl),
2950 (const unsigned char *) ((p != NULL) ? p : csp->iob->cur),
2951 csp->content_length) < 0))
2953 log_error(LOG_LEVEL_ERROR, "write modified content to "
2954 "client over TLS/SSL failed");
2957 mark_server_socket_tainted(csp);
2958 close_client_and_server_ssl_connections(csp);
2963 #endif /* def FEATURE_HTTPS_INSPECTION */
2965 if (write_socket_delayed(csp->cfd, hdr, strlen(hdr), write_delay)
2966 || write_socket_delayed(csp->cfd, ((p != NULL) ? p : csp->iob->cur),
2967 (size_t)csp->content_length, write_delay))
2969 log_error(LOG_LEVEL_ERROR, "write modified content to client failed: %E");
2972 mark_server_socket_tainted(csp);
2981 break; /* "game over, man" */
2985 * This is NOT the body, so
2986 * Let's pretend the server just sent us a blank line.
2988 snprintf(csp->receive_buffer, csp->receive_buffer_size, "\r\n");
2989 len = (int)strlen(csp->receive_buffer);
2992 * Now, let the normal header parsing algorithm below do its
2993 * job. If it fails, we'll exit instead of continuing.
3000 * If we're in the body of the server document, just write it to
3001 * the client, unless we need to buffer the body for later
3002 * content-filtering.
3004 if (server_body || (http->ssl
3005 #ifdef FEATURE_HTTPS_INSPECTION
3010 if (buffer_and_filter_content)
3013 * If there is no memory left for buffering the content, or the buffer limit
3014 * has been reached, switch to non-filtering mode, i.e. make & write the
3015 * header, flush the iob and buf, and get out of the way.
3017 if (add_to_iob(csp->iob, csp->config->buffer_limit, csp->receive_buffer, len))
3022 log_error(LOG_LEVEL_INFO,
3023 "Flushing header and buffers. Stepping back from filtering.");
3025 hdr = list_to_text(csp->headers);
3029 * Memory is too tight to even generate the header.
3030 * Send our static "Out-of-memory" page.
3032 log_error(LOG_LEVEL_ERROR, "Out of memory while trying to flush.");
3033 rsp = cgi_error_memory();
3034 send_crunch_response(csp, rsp);
3035 mark_server_socket_tainted(csp);
3036 #ifdef FEATURE_HTTPS_INSPECTION
3037 close_client_and_server_ssl_connections(csp);
3041 hdrlen = strlen(hdr);
3043 #ifdef FEATURE_HTTPS_INSPECTION
3045 * Sending data with standard or secured connection (HTTP/HTTPS)
3047 if (client_use_ssl(csp))
3049 if ((ssl_send_data(&(csp->mbedtls_client_attr.ssl),
3050 (const unsigned char *)hdr, hdrlen) < 0)
3051 || ((flushed = ssl_flush_socket(&(csp->mbedtls_client_attr.ssl),
3053 || (ssl_send_data(&(csp->mbedtls_client_attr.ssl),
3054 (const unsigned char *)csp->receive_buffer, (size_t)len) < 0))
3056 log_error(LOG_LEVEL_CONNECT,
3057 "Flush header and buffers to client failed");
3059 mark_server_socket_tainted(csp);
3060 close_client_and_server_ssl_connections(csp);
3065 #endif /* def FEATURE_HTTPS_INSPECTION */
3067 if (write_socket_delayed(csp->cfd, hdr, hdrlen, write_delay)
3068 || ((flushed = flush_iob(csp->cfd, csp->iob, write_delay)) < 0)
3069 || write_socket_delayed(csp->cfd, csp->receive_buffer, (size_t)len,
3072 log_error(LOG_LEVEL_CONNECT,
3073 "Flush header and buffers to client failed: %E");
3075 mark_server_socket_tainted(csp);
3081 * Reset the byte_count to the amount of bytes
3082 * we just flushed. len will be added a few lines below,
3083 * hdrlen doesn't matter for LOG_LEVEL_CLF.
3085 byte_count = (unsigned long long)flushed;
3087 buffer_and_filter_content = 0;
3093 #ifdef FEATURE_HTTPS_INSPECTION
3095 * Sending data with standard or secured connection (HTTP/HTTPS)
3097 if (client_use_ssl(csp))
3099 ret = ssl_send_data(&(csp->mbedtls_client_attr.ssl),
3100 (const unsigned char *)csp->receive_buffer, (size_t)len);
3103 log_error(LOG_LEVEL_ERROR,
3104 "Sending data to client failed");
3105 mark_server_socket_tainted(csp);
3106 close_client_and_server_ssl_connections(csp);
3111 #endif /* def FEATURE_HTTPS_INSPECTION */
3113 if (write_socket_delayed(csp->cfd, csp->receive_buffer,
3114 (size_t)len, write_delay))
3116 log_error(LOG_LEVEL_ERROR, "write to client failed: %E");
3117 mark_server_socket_tainted(csp);
3122 byte_count += (unsigned long long)len;
3128 * We're still looking for the end of the server's header.
3129 * Buffer up the data we just read. If that fails, there's
3130 * little we can do but send our static out-of-memory page.
3132 if (add_to_iob(csp->iob, csp->config->buffer_limit, csp->receive_buffer, len))
3134 log_error(LOG_LEVEL_ERROR, "Out of memory while looking for end of server headers.");
3135 rsp = cgi_error_memory();
3136 send_crunch_response(csp, rsp);
3137 mark_server_socket_tainted(csp);
3138 #ifdef FEATURE_HTTPS_INSPECTION
3139 close_client_and_server_ssl_connections(csp);
3144 /* Convert iob into something sed() can digest */
3145 if (JB_ERR_PARSE == get_server_headers(csp))
3150 * Well, we tried our MS IIS/5 hack and it didn't work.
3151 * The header is incomplete and there isn't anything
3152 * we can do about it.
3154 log_error(LOG_LEVEL_ERROR, "Invalid server headers. "
3155 "Applying the MS IIS5 hack didn't help.");
3156 log_error(LOG_LEVEL_CLF,
3157 "%s - - [%T] \"%s\" 502 0", csp->ip_addr_str, http->cmd);
3158 #ifdef FEATURE_HTTPS_INSPECTION
3160 * Sending data with standard or secured connection (HTTP/HTTPS)
3162 if (client_use_ssl(csp))
3164 ssl_send_data(&(csp->mbedtls_client_attr.ssl),
3165 (const unsigned char *)INVALID_SERVER_HEADERS_RESPONSE,
3166 strlen(INVALID_SERVER_HEADERS_RESPONSE));
3169 #endif /* def FEATURE_HTTPS_INSPECTION */
3171 write_socket_delayed(csp->cfd,
3172 INVALID_SERVER_HEADERS_RESPONSE,
3173 strlen(INVALID_SERVER_HEADERS_RESPONSE), write_delay);
3175 mark_server_socket_tainted(csp);
3176 #ifdef FEATURE_HTTPS_INSPECTION
3177 close_client_and_server_ssl_connections(csp);
3184 * Since we have to wait for more from the server before
3185 * we can parse the headers we just continue here.
3187 log_error(LOG_LEVEL_CONNECT,
3188 "Continuing buffering server headers from socket %d. "
3189 "Bytes most recently read: %d.", csp->cfd, len);
3196 * Account for the content bytes we
3197 * might have gotten with the headers.
3199 assert(csp->iob->eod >= csp->iob->cur);
3200 byte_count = (unsigned long long)(csp->iob->eod - csp->iob->cur);
3203 /* Did we actually get anything? */
3204 if (NULL == csp->headers->first)
3206 if ((csp->flags & CSP_FLAG_REUSED_CLIENT_CONNECTION))
3208 log_error(LOG_LEVEL_ERROR,
3209 "No server or forwarder response received on socket %d. "
3210 "Closing client socket %d without sending data.",
3211 csp->server_connection.sfd, csp->cfd);
3212 log_error(LOG_LEVEL_CLF,
3213 "%s - - [%T] \"%s\" 502 0", csp->ip_addr_str, http->cmd);
3217 log_error(LOG_LEVEL_ERROR,
3218 "No server or forwarder response received on socket %d.",
3219 csp->server_connection.sfd);
3220 send_crunch_response(csp, error_response(csp, "no-server-data"));
3222 free_http_request(http);
3223 mark_server_socket_tainted(csp);
3224 #ifdef FEATURE_HTTPS_INSPECTION
3225 close_client_and_server_ssl_connections(csp);
3230 if (!csp->headers->first->str)
3232 log_error(LOG_LEVEL_ERROR, "header search: csp->headers->first->str == NULL, assert will be called");
3234 assert(csp->headers->first->str);
3236 if (strncmpic(csp->headers->first->str, "HTTP", 4) &&
3237 strncmpic(csp->headers->first->str, "ICY", 3))
3240 * It doesn't look like a HTTP (or Shoutcast) response:
3241 * tell the client and log the problem.
3243 if (strlen(csp->headers->first->str) > 30)
3245 csp->headers->first->str[30] = '\0';
3247 log_error(LOG_LEVEL_ERROR,
3248 "Invalid server or forwarder response. Starts with: %s",
3249 csp->headers->first->str);
3250 log_error(LOG_LEVEL_CLF,
3251 "%s - - [%T] \"%s\" 502 0", csp->ip_addr_str, http->cmd);
3252 #ifdef FEATURE_HTTPS_INSPECTION
3254 * Sending data with standard or secured connection (HTTP/HTTPS)
3256 if (client_use_ssl(csp))
3258 ssl_send_data(&(csp->mbedtls_client_attr.ssl),
3259 (const unsigned char *)INVALID_SERVER_HEADERS_RESPONSE,
3260 strlen(INVALID_SERVER_HEADERS_RESPONSE));
3263 #endif /* def FEATURE_HTTPS_INSPECTION */
3265 write_socket_delayed(csp->cfd, INVALID_SERVER_HEADERS_RESPONSE,
3266 strlen(INVALID_SERVER_HEADERS_RESPONSE), write_delay);
3268 free_http_request(http);
3269 mark_server_socket_tainted(csp);
3270 #ifdef FEATURE_HTTPS_INSPECTION
3271 close_client_and_server_ssl_connections(csp);
3277 * We have now received the entire server header,
3278 * filter it and send the result to the client
3280 if (JB_ERR_OK != sed(csp, FILTER_SERVER_HEADERS))
3282 log_error(LOG_LEVEL_CLF,
3283 "%s - - [%T] \"%s\" 502 0", csp->ip_addr_str, http->cmd);
3284 #ifdef FEATURE_HTTPS_INSPECTION
3286 * Sending data with standard or secured connection (HTTP/HTTPS)
3288 if (client_use_ssl(csp))
3290 ssl_send_data(&(csp->mbedtls_client_attr.ssl),
3291 (const unsigned char *)INVALID_SERVER_HEADERS_RESPONSE,
3292 strlen(INVALID_SERVER_HEADERS_RESPONSE));
3297 write_socket_delayed(csp->cfd, INVALID_SERVER_HEADERS_RESPONSE,
3298 strlen(INVALID_SERVER_HEADERS_RESPONSE), write_delay);
3300 free_http_request(http);
3301 mark_server_socket_tainted(csp);
3302 #ifdef FEATURE_HTTPS_INSPECTION
3303 close_client_and_server_ssl_connections(csp);
3307 hdr = list_to_text(csp->headers);
3310 /* FIXME Should handle error properly */
3311 log_error(LOG_LEVEL_FATAL, "Out of memory parsing server header");
3314 if ((csp->flags & CSP_FLAG_CHUNKED)
3315 && !(csp->flags & CSP_FLAG_CONTENT_LENGTH_SET)
3316 && ((csp->iob->eod - csp->iob->cur) >= 5)
3317 && !memcmp(csp->iob->eod-5, "0\r\n\r\n", 5))
3319 log_error(LOG_LEVEL_CONNECT,
3320 "Looks like we got the last chunk together with "
3321 "the server headers. We better stop reading.");
3322 byte_count = (unsigned long long)(csp->iob->eod - csp->iob->cur);
3323 csp->expected_content_length = byte_count;
3324 csp->flags |= CSP_FLAG_CONTENT_LENGTH_SET;
3327 csp->server_connection.response_received = time(NULL);
3329 if (crunch_response_triggered(csp, crunchers_light))
3332 * One of the tags created by a server-header
3333 * tagger triggered a crunch. We already
3334 * delivered the crunch response to the client
3335 * and are done here after cleaning up.
3338 mark_server_socket_tainted(csp);
3339 #ifdef FEATURE_HTTPS_INSPECTION
3340 close_client_and_server_ssl_connections(csp);
3345 /* Buffer and pcrs filter this if appropriate. */
3346 buffer_and_filter_content = content_requires_filtering(csp);
3348 if (!buffer_and_filter_content)
3351 * Write the server's (modified) header to
3352 * the client (along with anything else that
3353 * may be in the buffer). Use standard or secured
3356 #ifdef FEATURE_HTTPS_INSPECTION
3357 if (client_use_ssl(csp))
3359 if ((ssl_send_data(&(csp->mbedtls_client_attr.ssl),
3360 (const unsigned char *)hdr, strlen(hdr)) < 0)
3361 || (len = ssl_flush_socket(&(csp->mbedtls_client_attr.ssl),
3364 log_error(LOG_LEVEL_CONNECT, "Write header to client failed");
3367 * The write failed, so don't bother mentioning it
3368 * to the client... it probably can't hear us anyway.
3371 mark_server_socket_tainted(csp);
3372 #ifdef FEATURE_HTTPS_INSPECTION
3373 close_client_and_server_ssl_connections(csp);
3379 #endif /* def FEATURE_HTTPS_INSPECTION */
3381 if (write_socket_delayed(csp->cfd, hdr, strlen(hdr), write_delay)
3382 || ((len = flush_iob(csp->cfd, csp->iob, write_delay)) < 0))
3384 log_error(LOG_LEVEL_ERROR,
3385 "write header to client failed");
3387 * The write failed, so don't bother mentioning it
3388 * to the client... it probably can't hear us anyway.
3391 mark_server_socket_tainted(csp);
3397 /* we're finished with the server's header */
3403 * If this was a MS IIS/5 hack then it means the server
3404 * has already closed the connection. Nothing more to read.
3409 log_error(LOG_LEVEL_ERROR,
3410 "Closed server connection detected. "
3411 "Applying the MS IIS5 hack didn't help.");
3412 log_error(LOG_LEVEL_CLF,
3413 "%s - - [%T] \"%s\" 502 0", csp->ip_addr_str, http->cmd);
3414 #ifdef FEATURE_HTTPS_INSPECTION
3416 * Sending data with standard or secured connection (HTTP/HTTPS)
3418 if (client_use_ssl(csp))
3420 ssl_send_data(&(csp->mbedtls_client_attr.ssl),
3421 (const unsigned char *)INVALID_SERVER_HEADERS_RESPONSE,
3422 strlen(INVALID_SERVER_HEADERS_RESPONSE));
3425 #endif /* def FEATURE_HTTPS_INSPECTION */
3427 write_socket_delayed(csp->cfd, INVALID_SERVER_HEADERS_RESPONSE,
3428 strlen(INVALID_SERVER_HEADERS_RESPONSE), write_delay);
3430 mark_server_socket_tainted(csp);
3431 #ifdef FEATURE_HTTPS_INSPECTION
3432 close_client_and_server_ssl_connections(csp);
3439 mark_server_socket_tainted(csp);
3440 #ifdef FEATURE_HTTPS_INSPECTION
3441 close_client_and_server_ssl_connections(csp);
3443 return; /* huh? we should never get here */
3445 #ifdef FEATURE_HTTPS_INSPECTION
3446 close_client_and_server_ssl_connections(csp);
3448 if (csp->content_length == 0)
3451 * If Privoxy didn't recalculate the Content-Length,
3452 * byte_count is still correct.
3454 csp->content_length = byte_count;
3457 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
3458 if ((csp->flags & CSP_FLAG_CONTENT_LENGTH_SET)
3459 && (csp->expected_content_length != byte_count))
3461 log_error(LOG_LEVEL_CONNECT,
3462 "Received %llu bytes while expecting %llu.",
3463 byte_count, csp->expected_content_length);
3464 mark_server_socket_tainted(csp);
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 log_error(LOG_LEVEL_GPC, "%s%s", http->hostport, http->path);
3643 if (fwd->forward_host)
3645 log_error(LOG_LEVEL_CONNECT, "via [%s]:%d to: %s",
3646 fwd->forward_host, fwd->forward_port, http->hostport);
3650 log_error(LOG_LEVEL_CONNECT, "to %s", http->hostport);
3653 /* here we connect to the server, gateway, or the forwarder */
3655 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
3656 if ((csp->server_connection.sfd != JB_INVALID_SOCKET)
3657 && socket_is_still_alive(csp->server_connection.sfd)
3658 && connection_destination_matches(&csp->server_connection, http, fwd))
3660 log_error(LOG_LEVEL_CONNECT,
3661 "Reusing server socket %d connected to %s. Total requests: %u.",
3662 csp->server_connection.sfd, csp->server_connection.host,
3663 csp->server_connection.requests_sent_total);
3667 if (csp->server_connection.sfd != JB_INVALID_SOCKET)
3669 #ifdef FEATURE_CONNECTION_SHARING
3670 if (csp->config->feature_flags & RUNTIME_FEATURE_CONNECTION_SHARING)
3672 remember_connection(&csp->server_connection);
3675 #endif /* def FEATURE_CONNECTION_SHARING */
3677 log_error(LOG_LEVEL_CONNECT,
3678 "Closing server socket %d connected to %s. Total requests: %u.",
3679 csp->server_connection.sfd, csp->server_connection.host,
3680 csp->server_connection.requests_sent_total);
3681 close_socket(csp->server_connection.sfd);
3683 mark_connection_closed(&csp->server_connection);
3685 #endif /* def FEATURE_CONNECTION_KEEP_ALIVE */
3686 #ifdef FEATURE_HTTPS_INSPECTION
3687 if (http->ssl && !use_ssl_tunnel)
3691 * Creating an SSL proxy. If forwarding is disabled, we must send
3692 * CSUCCEED mesage to client. Then TLS/SSL connection with client
3696 if (fwd->forward_host == NULL)
3699 * We're lying to the client as the connection hasn't actually
3700 * been established yet. We don't establish the connection until
3701 * we have seen and parsed the encrypted client headers.
3703 if (write_socket_delayed(csp->cfd, CSUCCEED,
3704 strlen(CSUCCEED), get_write_delay(csp)) != 0)
3706 log_error(LOG_LEVEL_ERROR, "Sending SUCCEED to client failed");
3711 ret = create_client_ssl_connection(csp);
3714 log_error(LOG_LEVEL_ERROR,
3715 "Can't open secure connection with client");
3716 close_client_ssl_connection(csp); /* XXX: Is this needed? */
3719 if (JB_ERR_OK != process_encrypted_request(csp))
3721 log_error(LOG_LEVEL_ERROR, "Failed to parse encrypted request.");
3722 close_client_ssl_connection(csp);
3726 * We have an encrypted request. Check if one of the crunchers now
3727 * wants it (for example because the previously invisible path was
3728 * required to match).
3730 if (crunch_response_triggered(csp, crunchers_all))
3733 * Yes. The client got the crunch response and we're done here.
3735 close_client_ssl_connection(csp);
3741 * Connecting to destination server
3743 csp->server_connection.sfd = forwarded_connect(fwd, http, csp);
3745 if (csp->server_connection.sfd == JB_INVALID_SOCKET)
3747 if (fwd->type != SOCKS_NONE)
3750 rsp = error_response(csp, "forwarding-failed");
3752 else if (errno == EINVAL)
3754 rsp = error_response(csp, "no-such-domain");
3758 rsp = error_response(csp, "connect-failed");
3761 /* Write the answer to the client */
3764 send_crunch_response(csp, rsp);
3768 * Temporary workaround to prevent already-read client
3769 * bodies from being parsed as new requests. For now we
3770 * err on the safe side and throw all the following
3771 * requests under the bus, even if no client body has been