get rid of
[privoxy.git] / jcc.c
1 const char jcc_rcs[] = "$Id: jcc.c,v 1.234 2009/03/18 20:48:42 fabiankeil Exp $";
2 /*********************************************************************
3  *
4  * File        :  $Source: /cvsroot/ijbswa/current/jcc.c,v $
5  *
6  * Purpose     :  Main file.  Contains main() method, main loop, and
7  *                the main connection-handling function.
8  *
9  * Copyright   :  Written by and Copyright (C) 2001-2009 the SourceForge
10  *                Privoxy team. http://www.privoxy.org/
11  *
12  *                Based on the Internet Junkbuster originally written
13  *                by and Copyright (C) 1997 Anonymous Coders and
14  *                Junkbusters Corporation.  http://www.junkbusters.com
15  *
16  *                This program is free software; you can redistribute it
17  *                and/or modify it under the terms of the GNU General
18  *                Public License as published by the Free Software
19  *                Foundation; either version 2 of the License, or (at
20  *                your option) any later version.
21  *
22  *                This program is distributed in the hope that it will
23  *                be useful, but WITHOUT ANY WARRANTY; without even the
24  *                implied warranty of MERCHANTABILITY or FITNESS FOR A
25  *                PARTICULAR PURPOSE.  See the GNU General Public
26  *                License for more details.
27  *
28  *                The GNU General Public License should be included with
29  *                this file.  If not, you can view it at
30  *                http://www.gnu.org/copyleft/gpl.html
31  *                or write to the Free Software Foundation, Inc., 59
32  *                Temple Place - Suite 330, Boston, MA  02111-1307, USA.
33  *
34  * Revisions   :
35  *    $Log: jcc.c,v $
36  *    Revision 1.234  2009/03/18 20:48:42  fabiankeil
37  *    If the --no-daemon option is used, enable LOG_LEVEL_INFO
38  *    before the config file has been parsed (as we always did).
39  *
40  *    Revision 1.233  2009/03/13 14:10:07  fabiankeil
41  *    Fix some more harmless warnings on amd64.
42  *
43  *    Revision 1.232  2009/03/08 19:29:16  fabiankeil
44  *    Reinitialize the timeout structure every time before passing
45  *    it to select(). Apparently some implementations mess with it.
46  *    Probably fixes #2669131 reported by cyberpatrol.
47  *
48  *    Revision 1.231  2009/03/08 14:19:23  fabiankeil
49  *    Fix justified (but harmless) compiler warnings
50  *    on platforms where sizeof(int) < sizeof(long).
51  *
52  *    Revision 1.230  2009/03/07 13:09:17  fabiankeil
53  *    Change csp->expected_content and_csp->expected_content_length from
54  *    size_t to unsigned long long to reduce the likelihood of integer
55  *    overflows that would let us close the connection prematurely.
56  *    Bug found while investigating #2669131, reported by cyberpatrol.
57  *
58  *    Revision 1.229  2009/03/07 11:17:01  fabiankeil
59  *    Fix compiler warning.
60  *
61  *    Revision 1.228  2009/03/06 20:30:13  fabiankeil
62  *    Log unsigned values as such.
63  *
64  *    Revision 1.227  2009/03/02 19:18:11  fabiankeil
65  *    Streamline parse_http_request()'s prototype. As
66  *    cparser pointed out it doesn't actually use csp.
67  *
68  *    Revision 1.226  2009/03/01 18:28:24  fabiankeil
69  *    Help clang understand that we aren't dereferencing
70  *    NULL pointers here.
71  *
72  *    Revision 1.225  2009/02/19 18:09:32  fabiankeil
73  *    Unbreak build without FEATURE_CONNECTION_KEEP_ALIVE.
74  *    Noticed by David.
75  *
76  *    Revision 1.224  2009/02/14 15:32:04  fabiankeil
77  *    Add the request URL to the timeout message in chat().
78  *    Suggested by Lee.
79  *
80  *    Revision 1.223  2009/02/09 21:21:16  fabiankeil
81  *    Now that init_log_module() is called earlier, call show_version()
82  *    later on from main() directly so it doesn't get called for --help
83  *    or --version.
84  *
85  *    Revision 1.222  2009/02/08 12:56:51  fabiankeil
86  *    Call initialize_mutexes() before init_log_module() again.
87  *    Broken since r220, might be the cause of Lee's #2579448.
88  *
89  *    Revision 1.221  2009/02/06 18:02:58  fabiankeil
90  *    When dropping privileges, also give up membership in supplementary
91  *    groups. Thanks to Matthias Drochner for reporting the problem,
92  *    providing the initial patch and testing the final version.
93  *
94  *    Revision 1.220  2009/02/04 18:29:07  fabiankeil
95  *    Initialize the log module before parsing arguments.
96  *    Thanks to Matthias Drochner for the report.
97  *
98  *    Revision 1.219  2009/01/31 16:08:21  fabiankeil
99  *    Remove redundant error check in receive_client_request().
100  *
101  *    Revision 1.218  2009/01/31 12:25:54  fabiankeil
102  *    Flatten indentation in receive_client_request().
103  *
104  *    Revision 1.217  2009/01/07 19:50:09  fabiankeil
105  *    - If the socket-timeout has been reached and the client
106  *      hasn't received any data yet, send an explanation before
107  *      closing the connection.
108  *    - In get_request_line(), signal timeouts the right way.
109  *
110  *    Revision 1.216  2008/12/24 22:13:11  ler762
111  *    fix GCC 3.4.4 warning
112  *
113  *    Revision 1.215  2008/12/24 17:06:19  fabiankeil
114  *    Keep a thread around to timeout alive connections
115  *    even if no new requests are coming in.
116  *
117  *    Revision 1.214  2008/12/20 14:53:55  fabiankeil
118  *    Add config option socket-timeout to control the time
119  *    Privoxy waits for data to arrive on a socket. Useful
120  *    in case of stale ssh tunnels or when fuzz-testing.
121  *
122  *    Revision 1.213  2008/12/15 18:45:51  fabiankeil
123  *    When logging crunches, log the whole URL, so one can easily
124  *    differentiate between vanilla HTTP and CONNECT requests.
125  *
126  *    Revision 1.212  2008/12/14 15:46:22  fabiankeil
127  *    Give crunched requests their own log level.
128  *
129  *    Revision 1.211  2008/12/06 10:05:03  fabiankeil
130  *    Downgrade "Received x bytes while expecting y." message to
131  *    LOG_LEVEL_CONNECT as it doesn't necessarily indicate an error.
132  *
133  *    Revision 1.210  2008/12/02 22:03:18  fabiankeil
134  *    Don't miscalculate byte_count if we don't get all the
135  *    server headers with one read_socket() call. With keep-alive
136  *    support enabled, this caused delays until the server closed
137  *    the connection.
138  *
139  *    Revision 1.209  2008/11/27 09:44:04  fabiankeil
140  *    Cosmetics for the last commit: Don't watch out for
141  *    the last chunk if the content isn't chunk-encoded or
142  *    if we already determined the content length previously.
143  *
144  *    Revision 1.208  2008/11/26 18:24:17  fabiankeil
145  *    Recognize that the server response is complete if the
146  *    last chunk is read together with the server headers.
147  *    Reported by Lee.
148  *
149  *    Revision 1.207  2008/11/25 17:25:16  fabiankeil
150  *    Don't convert the client-header list to text until we need to.
151  *
152  *    Revision 1.206  2008/11/23 17:00:11  fabiankeil
153  *    Some more chat() cosmetics.
154  *
155  *    Revision 1.205  2008/11/16 12:43:49  fabiankeil
156  *    Turn keep-alive support into a runtime feature
157  *    that is disabled by setting keep-alive-timeout
158  *    to a negative value.
159  *
160  *    Revision 1.204  2008/11/06 19:42:17  fabiankeil
161  *    Fix last-chunk detection hack to also apply
162  *    if buf[] contains nothing but the last-chunk.
163  *
164  *    Revision 1.203  2008/11/06 18:34:35  fabiankeil
165  *    Factor receive_client_request() and
166  *    parse_client_request() out of chat().
167  *
168  *    Revision 1.202  2008/11/02 18:40:34  fabiankeil
169  *    If we received a different amount of data than we expected,
170  *    log a warning and make sure the server socket isn't reused.
171  *
172  *    Revision 1.201  2008/11/02 16:48:20  fabiankeil
173  *    Revert revision 1.195 and try again.
174  *
175  *    Revision 1.200  2008/10/26 16:53:18  fabiankeil
176  *    Fix gcc44 warning.
177  *
178  *    Revision 1.199  2008/10/26 15:36:10  fabiankeil
179  *    Remove two debug messages with LOG_LEVEL_INFO.
180  *
181  *    Revision 1.198  2008/10/22 15:19:55  fabiankeil
182  *    Once More, With Feeling: if there is no logfile
183  *    because the user didn't specify one, we shouldn't
184  *    call init_error_log() after receiving SIGHUP either.
185  *
186  *    Revision 1.197  2008/10/20 17:02:40  fabiankeil
187  *    If SIGHUP is received while we aren't running in daemon
188  *    mode, calling init_error_log() would be a mistake.
189  *
190  *    Revision 1.196  2008/10/16 09:16:41  fabiankeil
191  *    - Fix two gcc44 conversion warnings.
192  *    - Don't bother logging the last five bytes
193  *      of the 0-chunk.
194  *
195  *    Revision 1.195  2008/10/13 16:04:37  fabiankeil
196  *    Make sure we don't try to reuse tainted server sockets.
197  *
198  *    Revision 1.194  2008/10/12 18:35:18  fabiankeil
199  *    The last commit was a bit too ambitious, apparently the content
200  *    length adjustment is only necessary if we aren't buffering.
201  *
202  *    Revision 1.193  2008/10/12 15:57:35  fabiankeil
203  *    Fix content length calculation if we read headers
204  *    and the start of the body at once. Now that we have
205  *    FEATURE_CONNECTION_KEEP_ALIVE, it actually matters.
206  *
207  *    Revision 1.192  2008/10/11 18:19:14  fabiankeil
208  *    Even more chat() cosmetics.
209  *
210  *    Revision 1.191  2008/10/11 18:00:14  fabiankeil
211  *    Reformat some comments in chat().
212  *
213  *    Revision 1.190  2008/10/11 14:58:00  fabiankeil
214  *    In case of chunk-encoded content, stop reading if
215  *    the buffer looks like it ends with the last chunk.
216  *
217  *    Revision 1.189  2008/10/11 09:53:00  fabiankeil
218  *    Let server_response_is_complete() deal properly with
219  *    content that is neither buffered nor read all at once.
220  *
221  *    Revision 1.188  2008/10/09 18:21:41  fabiankeil
222  *    Flush work-in-progress changes to keep outgoing connections
223  *    alive where possible. Incomplete and mostly #ifdef'd out.
224  *
225  *    Revision 1.187  2008/09/07 12:35:05  fabiankeil
226  *    Add mutex lock support for _WIN32.
227  *
228  *    Revision 1.186  2008/09/04 08:13:58  fabiankeil
229  *    Prepare for critical sections on Windows by adding a
230  *    layer of indirection before the pthread mutex functions.
231  *
232  *    Revision 1.185  2008/08/30 12:03:07  fabiankeil
233  *    Remove FEATURE_COOKIE_JAR.
234  *
235  *    Revision 1.184  2008/08/22 15:34:45  fabiankeil
236  *    - Silence LLVM/Clang complaint.
237  *    - Make received_hup_signal static.
238  *    - Hide definitions for basedir, pidfile and received_hup_signal
239  *      from __EMX__ as they only seem to be used in case of #ifdef unix.
240  *
241  *    Revision 1.183  2008/08/21 07:09:35  fabiankeil
242  *    Accept Shoutcast responses again. Problem reported
243  *    and fix suggested by Stefan in #2062860.
244  *
245  *    Revision 1.182  2008/06/27 11:13:56  fabiankeil
246  *    Fix possible NULL-pointer dereference reported
247  *    by din_a4 in #2003937. Pointy hat to me.
248  *
249  *    Revision 1.181  2008/05/21 15:47:15  fabiankeil
250  *    Streamline sed()'s prototype and declare
251  *    the header parse and add structures static.
252  *
253  *    Revision 1.180  2008/05/21 15:26:32  fabiankeil
254  *    - Mark csp as immutable for send_crunch_response().
255  *    - Fix comment spelling.
256  *
257  *    Revision 1.179  2008/05/20 20:13:32  fabiankeil
258  *    Factor update_server_headers() out of sed(), ditch the
259  *    first_run hack and make server_patterns_light static.
260  *
261  *    Revision 1.178  2008/05/10 13:23:38  fabiankeil
262  *    Don't provide get_header() with the whole client state
263  *    structure when it only needs access to csp->iob.
264  *
265  *    Revision 1.177  2008/05/10 11:51:12  fabiankeil
266  *    Make the "read the rest of the headers" loop a bit more readable.
267  *
268  *    Revision 1.176  2008/05/10 11:37:57  fabiankeil
269  *    - Instead of logging when the IIS5 hack is enabled, log when it fails.
270  *    - Remove useless comment.
271  *
272  *    Revision 1.175  2008/05/09 18:53:59  fabiankeil
273  *    Fix comment grammar.
274  *
275  *    Revision 1.174  2008/05/07 18:05:53  fabiankeil
276  *    Remove the pointless buffer in client_protocol_is_unsupported().
277  *
278  *    Revision 1.173  2008/05/06 15:09:00  fabiankeil
279  *    Least-effort fix for bug #1821930 (reported by Lee):
280  *    If the response doesn't look like HTTP,
281  *    tell the client and log the problem.
282  *
283  *    Revision 1.172  2008/04/16 16:38:21  fabiankeil
284  *    Don't pass the whole csp structure to flush_socket()
285  *    when it only needs a file descriptor and a buffer.
286  *
287  *    Revision 1.171  2008/03/27 18:27:25  fabiankeil
288  *    Remove kill-popups action.
289  *
290  *    Revision 1.170  2008/03/06 16:33:46  fabiankeil
291  *    If limit-connect isn't used, don't limit CONNECT requests to port 443.
292  *
293  *    Revision 1.169  2008/03/04 18:30:39  fabiankeil
294  *    Remove the treat-forbidden-connects-like-blocks action. We now
295  *    use the "blocked" page for forbidden CONNECT requests by default.
296  *
297  *    Revision 1.168  2008/03/02 12:25:25  fabiankeil
298  *    Also use shiny new connect_port_is_forbidden() in jcc.c.
299  *
300  *    Revision 1.167  2008/02/23 16:57:12  fabiankeil
301  *    Rename url_actions() to get_url_actions() and let it
302  *    use the standard parameter ordering.
303  *
304  *    Revision 1.166  2008/02/23 16:33:43  fabiankeil
305  *    Let forward_url() use the standard parameter ordering
306  *    and mark its second parameter immutable.
307  *
308  *    Revision 1.165  2008/02/02 19:36:56  fabiankeil
309  *    Remove the "Listening ... for local connections only" log message.
310  *    Whether or not remote connections are able to reach Privoxy is up
311  *    to the operating system.
312  *
313  *    Revision 1.164  2007/12/16 18:32:46  fabiankeil
314  *    Prevent the log messages for CONNECT requests to unacceptable
315  *    ports from printing the limit-connect argument as [null] if
316  *    limit-connect hasn't been explicitly enabled.
317  *
318  *    Revision 1.163  2007/12/13 01:47:11  david__schmidt
319  *    Make sure all console-mode apps get a usage() instance
320  *
321  *    Revision 1.162  2007/12/06 17:54:57  fabiankeil
322  *    Reword NO_SERVER_DATA_RESPONSE to make it harder
323  *    to misunderstand what the message is all about.
324  *
325  *    Revision 1.161  2007/12/04 19:44:22  fabiankeil
326  *    Unbreak trustfile which previously didn't work without
327  *    FEATURE_TOGGLE. Fixes BR#1843585, reported by Lee.
328  *
329  *    Revision 1.160  2007/11/29 18:00:29  fabiankeil
330  *    Plug memory leak. Spotted by Valgrind, triggered by
331  *    Privoxy-Regression-Test feeding proxyfuzz.py.
332  *
333  *    Revision 1.159  2007/11/24 14:34:09  fabiankeil
334  *    In the HTTP snipplets, refer to the client as client.
335  *
336  *    Revision 1.158  2007/11/11 16:44:17  fabiankeil
337  *    Emit a log message when activating the MS IIS5 hack.
338  *
339  *    Revision 1.157  2007/11/03 17:34:49  fabiankeil
340  *    Log the "weak randomization factor" warning only
341  *    once for mingw32 and provide some more details.
342  *
343  *    Revision 1.156  2007/11/01 18:20:58  fabiankeil
344  *    Initialize log module after initializing mutexes, future
345  *    deadlocks in that code should now work cross-platform.
346  *
347  *    Revision 1.155  2007/10/23 20:12:45  fabiankeil
348  *    Fix first CSUCCEED line to end in \r\n as required by RFC1945.
349  *    Reported by Bert van Leeuwen in BR#1818808.
350  *
351  *    Revision 1.154  2007/10/19 17:00:08  fabiankeil
352  *    Downgrade "Flushing header and buffers" message to LOG_LEVEL_INFO.
353  *
354  *    Revision 1.153  2007/10/14 14:12:41  fabiankeil
355  *    When in daemon mode, close stderr after the configuration file has been
356  *    parsed the first time. If logfile isn't set, stop logging. Fixes BR#897436.
357  *
358  *    Revision 1.152  2007/10/04 18:03:34  fabiankeil
359  *    - Fix a crash when parsing invalid requests whose first header
360  *      is rejected by get_header(). Regression (re?)introduced
361  *      in r1.143 by yours truly.
362  *    - Move ACTION_VANILLA_WAFER handling into parsers.c's
363  *      client_cookie_adder() to make sure send-vanilla-wafer can be
364  *      controlled through tags (and thus regression-tested).
365  *
366  *    Revision 1.151  2007/09/29 10:21:16  fabiankeil
367  *    - Move get_filter_function() from jcc.c to filters.c
368  *      so the filter functions can be static.
369  *    - Don't bother filtering body-less responses.
370  *
371  *    Revision 1.150  2007/09/28 16:39:29  fabiankeil
372  *    Execute content filters through execute_content_filter().
373  *
374  *    Revision 1.149  2007/09/04 15:08:48  fabiankeil
375  *    Initialize req to NULL to make sure it's defined if the
376  *    first read_socket() call fails. Reported by icmp30.
377  *
378  *    Revision 1.148  2007/08/26 16:47:13  fabiankeil
379  *    Add Stephen Gildea's --pre-chroot-nslookup patch [#1276666],
380  *    extensive comments moved to user manual.
381  *
382  *    Revision 1.147  2007/08/25 14:42:40  fabiankeil
383  *    Don't crash if a broken header filter wiped out the request line.
384  *
385  *    Revision 1.146  2007/08/20 17:09:32  fabiankeil
386  *    Fix byte_count calculation in case of flushes
387  *    and don't parse the server headers a second time.
388  *
389  *    Revision 1.145  2007/08/19 13:13:31  fabiankeil
390  *    - If there's a connection problem after we already forwarded
391  *      parts of the original content, just hang up. Fixes BR#1776724.
392  *    - Fix warnings about unused code on mingw32.
393  *    - In case of flushes, calculate the byte count
394  *      less incorrectly (I think).
395  *
396  *    Revision 1.144  2007/08/11 14:43:22  fabiankeil
397  *    Add some more prototypes for static functions.
398  *
399  *    Revision 1.143  2007/08/05 13:58:19  fabiankeil
400  *    Comment out request_contains_null_bytes() until it's used again.
401  *
402  *    Revision 1.142  2007/08/05 13:50:26  fabiankeil
403  *    #1763173 from Stefan Huehner: s@const static@static const@
404  *    and declare some more functions static.
405  *
406  *    Revision 1.141  2007/08/04 09:56:23  fabiankeil
407  *    - Log rejected CONNECT requests with LOG_LEVEL_INFO
408  *      and explain why they were rejected in the first place.
409  *    - Fix the LOG_LEVEL_CLF message for crunches of unallowed
410  *      CONNECT requests. The request line was missing.
411  *    - Add two more XXX reminders as we don't have enough already.
412  *
413  *    Revision 1.140  2007/07/21 11:51:36  fabiankeil
414  *    As Hal noticed, checking dispatch_cgi() as the last cruncher
415  *    looks like a bug if CGI requests are blocked unintentionally,
416  *    so don't do it unless the user enabled the new config option
417  *    "allow-cgi-request-crunching".
418  *
419  *    Revision 1.139  2007/07/14 07:46:41  fabiankeil
420  *    - Allow to rewrite the request destination behind the client's back.
421  *    - Turn the weird-looking unconditional for loop that
422  *      reads the client request into a conditional while loop.
423  *      Move the stuff that only runs once out of the loop.
424  *    - Move parts of chat(), server_content_type() and the
425  *      necessary stuff to fix BR#1750917 into get_filter_function().
426  *
427  *    Revision 1.138  2007/06/03 18:45:18  fabiankeil
428  *    Temporary workaround for BR#1730105.
429  *
430  *    Revision 1.137  2007/06/01 18:16:36  fabiankeil
431  *    Use the same mutex for gethostbyname() and gethostbyaddr() to prevent
432  *    deadlocks and crashes on OpenBSD and possibly other OS with neither
433  *    gethostbyname_r() nor gethostaddr_r(). Closes BR#1729174.
434  *    Thanks to Ralf Horstmann for report and solution.
435  *
436  *    Revision 1.136  2007/06/01 16:41:11  fabiankeil
437  *    Add forward-override{} to change the forwarding settings through
438  *    action sections. This is mainly interesting to forward different
439  *    clients differently (for example based on User-Agent or request
440  *    origin).
441  *
442  *    Revision 1.135  2007/05/24 17:03:50  fabiankeil
443  *    - Let usage() mention the --chroot parameter.
444  *    - Use read_socket() consistently and always leave
445  *      the last buffer byte alone, even in cases where
446  *      null termination (currently) doesn't matter.
447  *
448  *    Revision 1.134  2007/05/16 14:59:46  fabiankeil
449  *    - Fix config file loading on Unix if no config file is specified.
450  *      Since r1.97 Privoxy would always interpret the last argument as
451  *      config file, even if it's a valid command line option.
452  *    - Abort in case of unrecognized command line options. Closes #1719696.
453  *    - Remove a bunch of unnecessary strcpy() calls (yay for c&p without thinking).
454  *    - Replace the remaining strcpy() and strcat() calls with strlcpy() and strcat().
455  *
456  *    Revision 1.133  2007/05/04 11:23:19  fabiankeil
457  *    - Don't rerun crunchers that only depend on the request URL.
458  *    - Don't count redirects and CGI requests as "blocked requests".
459  *
460  *    Revision 1.132  2007/04/25 15:15:17  fabiankeil
461  *    Support crunching based on tags created by server-header taggers.
462  *
463  *    Revision 1.131  2007/04/22 13:24:50  fabiankeil
464  *    Make HTTP snippets static (again). Add a Content-Type for those
465  *    with content so the browser doesn't guess it based on the URL.
466  *
467  *    Revision 1.130  2007/04/19 13:47:34  fabiankeil
468  *    Move crunching and request line rebuilding out of chat().
469  *
470  *    Revision 1.129  2007/04/15 16:39:20  fabiankeil
471  *    Introduce tags as alternative way to specify which
472  *    actions apply to a request. At the moment tags can be
473  *    created based on client and server headers.
474  *
475  *    Revision 1.128  2007/03/25 16:55:54  fabiankeil
476  *    Don't CLF-log CONNECT requests twice.
477  *
478  *    Revision 1.127  2007/03/20 13:53:17  fabiankeil
479  *    Log the source address for ACL-related connection drops.
480  *
481  *    Revision 1.126  2007/03/17 15:20:05  fabiankeil
482  *    New config option: enforce-blocks.
483  *
484  *    Revision 1.125  2007/03/09 14:12:00  fabiankeil
485  *    - Move null byte check into separate function.
486  *    - Don't confuse the client with error pages
487  *      if a CONNECT request was already confirmed.
488  *
489  *    Revision 1.124  2007/02/23 14:59:54  fabiankeil
490  *    Speed up NULL byte escaping and only log the complete
491  *    NULL byte requests with header debugging enabled.
492  *
493  *    Revision 1.123  2007/02/21 18:42:10  fabiankeil
494  *    Answer requests that contain NULL bytes with
495  *    a custom response instead of waiting for more
496  *    data until the client eventually hangs up.
497  *
498  *    Revision 1.122  2007/02/07 11:12:02  fabiankeil
499  *    - Move delivery and logging of crunched responses
500  *      from chat() into send_crunch_response().
501  *    - Display the reason for generating http_responses.
502  *    - Log the content length for LOG_LEVEL_CLF correctly
503  *      (still incorrect for some fixed responses).
504  *    - Reword an incorrect comment about
505  *      treat-forbidden-connects-like-blocks violating
506  *      the specs.
507  *    - Add some log messages.
508  *
509  *    Revision 1.121  2007/01/27 10:52:56  fabiankeil
510  *    Move mutex initialization into separate
511  *    function and exit in case of errors.
512  *
513  *    Revision 1.120  2007/01/26 14:18:42  fabiankeil
514  *    - Start to reduce chat()'s line count and move
515  *      parts of it into separate functions.
516  *    - Add "HTTP/1.1 100 Continue" hack for BR 756734.
517  *
518  *    Revision 1.119  2007/01/25 14:02:30  fabiankeil
519  *    - Add Proxy-Agent header to HTTP snippets that are
520  *      supposed to reach HTTP clients only.
521  *    - Made a few CONNECT log messages more descriptive.
522  *    - Catch completely empty server responses (as seen
523  *      with Tor's fake ".noconnect" top level domain).
524  *    - Use shiny new "forwarding-failed" template for socks errors.
525  *
526  *    Revision 1.118  2007/01/07 07:43:43  joergs
527  *    AmigaOS4 support added.
528  *
529  *    Revision 1.117  2006/12/31 17:56:37  fabiankeil
530  *    Added config option accept-intercepted-requests
531  *    and disabled it by default.
532  *
533  *    Revision 1.116  2006/12/29 19:08:22  fabiankeil
534  *    Reverted parts of my last commit
535  *    to keep error handling working.
536  *
537  *    Revision 1.115  2006/12/29 17:38:57  fabiankeil
538  *    Fixed gcc43 conversion warnings.
539  *
540  *    Revision 1.114  2006/12/27 18:52:02  fabiankeil
541  *    Fix -pedantic ISO C warning about converting
542  *    from function pointer to object pointer.
543  *
544  *    Revision 1.113  2006/12/26 17:38:50  fabiankeil
545  *    Silence compiler warning I introduced with my last commit.
546  *
547  *    Revision 1.112  2006/12/26 17:31:41  fabiankeil
548  *    Mutex protect rand() if POSIX threading
549  *    is used, warn the user if that's not possible
550  *    and stop using it on _WIN32 where it could
551  *    cause crashes.
552  *
553  *    Revision 1.111  2006/12/23 16:15:06  fabiankeil
554  *    Don't prevent core dumps by catching SIGABRT.
555  *    It's rude and makes debugging unreasonable painful.
556  *
557  *    Revision 1.110  2006/12/13 14:52:53  etresoft
558  *    Fix build failure on MacOS X. Global symbols can be either static or extern, but not both.
559  *
560  *    Revision 1.109  2006/12/06 19:41:40  fabiankeil
561  *    Privoxy is now able to run as intercepting
562  *    proxy in combination with any packet filter
563  *    that does the port redirection. The destination
564  *    is extracted from the "Host:" header which
565  *    should be available for nearly all requests.
566  *
567  *    Moved HTTP snipplets into jcc.c.
568  *    Added error message for gopher proxy requests.
569  *
570  *    Revision 1.108  2006/11/28 15:38:51  fabiankeil
571  *    Only unlink the pidfile if it's actually used.
572  *
573  *    Change order of interception checks to make
574  *    it possible to block or redirect requests for
575  *    the cgi pages.
576  *
577  *    Revision 1.107  2006/11/13 19:05:51  fabiankeil
578  *    Make pthread mutex locking more generic. Instead of
579  *    checking for OSX and OpenBSD, check for FEATURE_PTHREAD
580  *    and use mutex locking unless there is an _r function
581  *    available. Better safe than sorry.
582  *
583  *    Fixes "./configure --disable-pthread" and should result
584  *    in less threading-related problems on pthread-using platforms,
585  *    but it still doesn't fix BR#1122404.
586  *
587  *    Revision 1.106  2006/11/06 19:58:23  fabiankeil
588  *    Move pthread.h inclusion from jcc.c to jcc.h.
589  *    Fixes build on x86-freebsd1 (FreeBSD 5.4-RELEASE).
590  *
591  *    Revision 1.105  2006/11/06 14:26:02  fabiankeil
592  *    Don't exit after receiving the second SIGHUP on Solaris.
593  *
594  *    Fixes BR 1052235, but the same problem may exist on other
595  *    systems. Once 3.0.6 is out we should use sigset()
596  *    where available and see if it breaks anything.
597  *
598  *    Revision 1.104  2006/09/23 13:26:38  roro
599  *    Replace TABs by spaces in source code.
600  *
601  *    Revision 1.103  2006/09/21 12:54:43  fabiankeil
602  *    Fix +redirect{}. Didn't work with -fast-redirects.
603  *
604  *    Revision 1.102  2006/09/06 13:03:04  fabiankeil
605  *    Respond with 400 and a short text message
606  *    if the client tries to use Privoxy as FTP proxy.
607  *
608  *    Revision 1.101  2006/09/06 09:23:37  fabiankeil
609  *    Make number of retries in case of forwarded-connect problems
610  *    a config file option (forwarded-connect-retries) and use 0 as
611  *    default.
612  *
613  *    Revision 1.100  2006/09/03 19:42:59  fabiankeil
614  *    Set random(3) seed.
615  *
616  *    Revision 1.99  2006/09/02 15:36:42  fabiankeil
617  *    Follow the OpenBSD port's lead and protect the resolve
618  *    functions on OpenBSD as well.
619  *
620  *    Revision 1.98  2006/08/24 11:01:34  fabiankeil
621  *    --user fix. Only use the user as group if no group is specified.
622  *    Solves BR 1492612. Thanks to Spinor S. and David Laight.
623  *
624  *    Revision 1.97  2006/08/18 15:23:17  david__schmidt
625  *    Windows service (re-)integration
626  *
627  *    The new args are:
628  *
629  *    --install[:service_name]
630  *    --uninstall[:service_name]
631  *    --service
632  *
633  *    They work as follows:
634  *    --install will create a service for you and then terminate.
635  *    By default the service name will be "privoxy" (without the quotes).
636  *    However you can run multiple services if you wish, just by adding
637  *    a colon and then a name (no spaces).
638  *
639  *    --uninstall follows the exact same rules a --install.
640  *
641  *    --service is used when the program is executed by the service
642  *    control manager, and in normal circumstances would never be
643  *    used as a command line argument.
644  *
645  *    Revision 1.96  2006/08/15 20:12:36  david__schmidt
646  *    Windows service integration
647  *
648  *    Revision 1.95  2006/08/03 02:46:41  david__schmidt
649  *    Incorporate Fabian Keil's patch work:
650 http://www.fabiankeil.de/sourcecode/privoxy/
651  *
652  *    Revision 1.94  2006/07/18 14:48:46  david__schmidt
653  *    Reorganizing the repository: swapping out what was HEAD (the old 3.1 branch)
654  *    with what was really the latest development (the v_3_0_branch branch)
655  *
656  *    Revision 1.92.2.16  2005/04/03 20:10:50  david__schmidt
657  *    Thanks to Jindrich Makovicka for a race condition fix for the log
658  *    file.  The race condition remains for non-pthread implementations.
659  *    Reference patch #1175720.
660  *
661  *    Revision 1.92.2.15  2004/10/03 12:53:32  david__schmidt
662  *    Add the ability to check jpeg images for invalid
663  *    lengths of comment blocks.  Defensive strategy
664  *    against the exploit:
665  *       Microsoft Security Bulletin MS04-028
666  *       Buffer Overrun in JPEG Processing (GDI+) Could
667  *       Allow Code Execution (833987)
668  *    Enabled with +inspect-jpegs in actions files.
669  *
670  *    Revision 1.92.2.14  2003/12/12 12:52:53  oes
671  *    - Fixed usage info for non-unix platforms
672  *    - Fixed small cmdline parsing bug
673  *
674  *    Revision 1.92.2.13  2003/11/27 19:20:27  oes
675  *    Diagnostics: Now preserve the returncode of pthread_create
676  *    in errno. Closes BR #775721. Thanks to Geoffrey Hausheer.
677  *
678  *    Revision 1.92.2.12  2003/07/11 11:34:19  oes
679  *    No longer ignore SIGCHLD. Fixes bug #769381
680  *
681  *    Revision 1.92.2.11  2003/05/14 12:32:02  oes
682  *    Close jarfile on graceful exit, remove stray line
683  *
684  *    Revision 1.92.2.10  2003/05/08 15:13:46  oes
685  *    Cosmetics: Killed a warning, a typo and an allocation left at exit
686  *
687  *    Revision 1.92.2.9  2003/04/03 15:08:42  oes
688  *    No longer rely on non-POSIX.1 extensions of getcwd().
689  *    Fixes bug #711001
690  *
691  *    Revision 1.92.2.8  2003/03/31 13:12:32  oes
692  *    Replaced setenv() by posix-compliant putenv()
693  *    Thanks to Neil McCalden (nmcc AT users.sf.net).
694  *
695  *    Revision 1.92.2.7  2003/03/17 16:48:59  oes
696  *    Added chroot ability, thanks to patch by Sviatoslav Sviridov
697  *
698  *    Revision 1.92.2.6  2003/03/11 11:55:00  oes
699  *    Clean-up and extension of improvements for forked mode:
700  *     - Child's return code now consists of flags RC_FLAG_*
701  *     - Reporting toggle to parent now properly #ifdef'ed
702  *     - Children now report blocking to parent. This enables
703  *       statistics in forked mode
704  *
705  *    Revision 1.92.2.5  2003/03/10 23:45:32  oes
706  *    Fixed bug #700381: Non-Threaded version now capable of being toggled.
707  *    Children now report having been toggled through _exit(17), parents
708  *    watch for that code and toggle themselves if found.
709  *
710  *    Revision 1.92.2.4  2003/03/07 03:41:04  david__schmidt
711  *    Wrapping all *_r functions (the non-_r versions of them) with 
712  *    mutex semaphores for OSX.  Hopefully this will take care of all 
713  *    of those pesky crash reports.
714  *
715  *    Revision 1.92.2.3  2003/02/28 12:53:06  oes
716  *    Fixed two mostly harmless mem leaks
717  *
718  *    Revision 1.92.2.2  2002/11/20 14:37:47  oes
719  *    Fix: Head of global clients list now initialized to NULL
720  *
721  *    Revision 1.92.2.1  2002/09/25 14:52:24  oes
722  *    Added basic support for OPTIONS and TRACE HTTP methods:
723  *     - New interceptor direct_response() added in chat().
724  *     - sed() moved to earlier in the process, so that the
725  *       Host: header is evaluated before actions and forwarding
726  *       are decided on.
727  *
728  *    Revision 1.92  2002/05/08 16:00:46  oes
729  *    Chat's buffer handling:
730  *     - Fixed bug with unchecked out-of-mem conditions
731  *       while reading client request & server headers
732  *     - No longer predict if the buffer limit will be exceeded
733  *       in the next read -- check add_to_iob's new
734  *       return code. If buffer couldn't be extended
735  *       (policy or out-of-mem) while
736  *       - reading from client: abort
737  *       - reading server headers: send error page
738  *       - buffering server body for filter: flush,
739  *         and if that fails: send error page
740  *
741  *    Revision 1.91  2002/04/08 20:35:58  swa
742  *    fixed JB spelling
743  *
744  *    Revision 1.90  2002/04/02 14:57:28  oes
745  *    Made sending wafers independent of FEATURE_COOKIE_JAR
746  *
747  *    Revision 1.89  2002/03/31 17:18:59  jongfoster
748  *    Win32 only: Enabling STRICT to fix a VC++ compile warning.
749  *
750  *    Revision 1.88  2002/03/27 14:32:43  david__schmidt
751  *    More compiler warning message maintenance
752  *
753  *    Revision 1.87  2002/03/26 22:29:54  swa
754  *    we have a new homepage!
755  *
756  *    Revision 1.86  2002/03/25 17:04:55  david__schmidt
757  *    Workaround for closing the jarfile before load_config() comes around again
758  *
759  *    Revision 1.85  2002/03/24 15:23:33  jongfoster
760  *    Name changes
761  *
762  *    Revision 1.84  2002/03/24 13:25:43  swa
763  *    name change related issues
764  *
765  *    Revision 1.83  2002/03/16 23:54:06  jongfoster
766  *    Adding graceful termination feature, to help look for memory leaks.
767  *    If you enable this (which, by design, has to be done by hand
768  *    editing config.h) and then go to http://i.j.b/die, then the program
769  *    will exit cleanly after the *next* request.  It should free all the
770  *    memory that was used.
771  *
772  *    Revision 1.82  2002/03/13 00:27:05  jongfoster
773  *    Killing warnings
774  *
775  *    Revision 1.81  2002/03/12 01:42:50  oes
776  *    Introduced modular filters
777  *
778  *    Revision 1.80  2002/03/11 22:07:05  david__schmidt
779  *    OS/2 port maintenance:
780  *    - Fixed EMX build - it had decayed a little
781  *    - Fixed inexplicable crash during FD_ZERO - must be due to a bad macro.
782  *      substituted a memset for now.
783  *
784  *    Revision 1.79  2002/03/09 20:03:52  jongfoster
785  *    - Making various functions return int rather than size_t.
786  *      (Undoing a recent change).  Since size_t is unsigned on
787  *      Windows, functions like read_socket that return -1 on
788  *      error cannot return a size_t.
789  *
790  *      THIS WAS A MAJOR BUG - it caused frequent, unpredictable
791  *      crashes, and also frequently caused JB to jump to 100%
792  *      CPU and stay there.  (Because it thought it had just
793  *      read ((unsigned)-1) == 4Gb of data...)
794  *
795  *    - The signature of write_socket has changed, it now simply
796  *      returns success=0/failure=nonzero.
797  *
798  *    - Trying to get rid of a few warnings --with-debug on
799  *      Windows, I've introduced a new type "jb_socket".  This is
800  *      used for the socket file descriptors.  On Windows, this
801  *      is SOCKET (a typedef for unsigned).  Everywhere else, it's
802  *      an int.  The error value can't be -1 any more, so it's
803  *      now JB_INVALID_SOCKET (which is -1 on UNIX, and in
804  *      Windows it maps to the #define INVALID_SOCKET.)
805  *
806  *    - The signature of bind_port has changed.
807  *
808  *    Revision 1.78  2002/03/08 21:35:04  oes
809  *    Added optional group supplement to --user option. Will now use default group of user if no group given
810  *
811  *    Revision 1.77  2002/03/07 03:52:06  oes
812  *     - Fixed compiler warnings etc
813  *     - Improved handling of failed DNS lookups
814  *
815  *    Revision 1.76  2002/03/06 22:54:35  jongfoster
816  *    Automated function-comment nitpicking.
817  *
818  *    Revision 1.75  2002/03/06 10:02:19  oes
819  *    Fixed stupid bug when --user was not given
820  *
821  *    Revision 1.74  2002/03/06 00:49:31  jongfoster
822  *    Fixing warning on Windows
823  *    Making #ifdefs that refer to the same variable consistently
824  *    use #ifdef unix rather than mixing #ifdef unix & #ifndef OS2
825  *
826  *    Revision 1.73  2002/03/05 23:57:30  hal9
827  *    Stray character 's' on line 1618 was breaking build.
828  *
829  *    Revision 1.72  2002/03/05 21:33:45  david__schmidt
830  *    - Re-enable OS/2 building after new parms were added
831  *    - Fix false out of memory report when resolving CGI templates when no IP
832  *      address is available of failed attempt (a la no such domain)
833  *
834  *    Revision 1.71  2002/03/05 18:13:56  oes
835  *    Added --user option
836  *
837  *    Revision 1.70  2002/03/05 04:52:42  oes
838  *    Deleted non-errlog debugging code
839  *
840  *    Revision 1.69  2002/03/04 23:50:00  jongfoster
841  *    Splitting off bind_port() call into bind_port_helper(), with
842  *    improved logging.
843  *
844  *    Revision 1.68  2002/03/04 20:17:32  oes
845  *    Fixed usage info
846  *
847  *    Revision 1.67  2002/03/04 18:18:57  oes
848  *    - Removed _DEBUG mode
849  *    - Cleand up cmdline parsing
850  *    - Introduced --no-daemon, --pidfile options
851  *    - Cleaned up signal handling:
852  *      - Terminate cleanly on INT, TERM and ABRT
853  *      - Schedule logfile for re-opening on HUP
854  *      - Ignore CHLD and PIPE
855  *      - Leave the rest with their default handlers
856  *      - Uniform handler registration
857  *    - Added usage() function
858  *    - Played styleguide police
859  *
860  *    Revision 1.66  2002/03/03 15:06:55  oes
861  *    Re-enabled automatic config reloading
862  *
863  *    Revision 1.65  2002/03/03 14:49:11  oes
864  *    Fixed CLF logging: Now uses client's original HTTP request
865  *
866  *    Revision 1.64  2002/03/03 09:18:03  joergs
867  *    Made jumbjuster work on AmigaOS again.
868  *
869  *    Revision 1.63  2002/03/02 04:14:50  david__schmidt
870  *    Clean up a little CRLF unpleasantness that suddenly appeared
871  *
872  *    Revision 1.62  2002/02/20 23:17:23  jongfoster
873  *    Detecting some out-of memory conditions and exiting with a log message.
874  *
875  *    Revision 1.61  2002/01/17 21:01:52  jongfoster
876  *    Moving all our URL and URL pattern parsing code to urlmatch.c.
877  *
878  *    Revision 1.60  2001/12/30 14:07:32  steudten
879  *    - Add signal handling (unix)
880  *    - Add SIGHUP handler (unix)
881  *    - Add creation of pidfile (unix)
882  *    - Add action 'top' in rc file (RH)
883  *    - Add entry 'SIGNALS' to manpage
884  *    - Add exit message to logfile (unix)
885  *
886  *    Revision 1.59  2001/12/13 14:07:18  oes
887  *    Fixed Bug: 503 error page now sent OK
888  *
889  *    Revision 1.58  2001/11/30 23:37:24  jongfoster
890  *    Renaming the Win32 config file to config.txt - this is almost the
891  *    same as the corresponding UNIX name "config"
892  *
893  *    Revision 1.57  2001/11/16 00:47:43  jongfoster
894  *    Changing the tty-disconnection code to use setsid().
895  *
896  *    Revision 1.56  2001/11/13 20:20:54  jongfoster
897  *    Tabs->spaces, fixing a bug with missing {} around an if()
898  *
899  *    Revision 1.55  2001/11/13 20:14:53  jongfoster
900  *    Patch for FreeBSD setpgrp() as suggested by Alexander Lazic
901  *
902  *    Revision 1.54  2001/11/07 00:03:14  steudten
903  *    Give reliable return value if an error
904  *    occurs not just 0 with new daemon mode.
905  *
906  *    Revision 1.53  2001/11/05 21:41:43  steudten
907  *    Add changes to be a real daemon just for unix os.
908  *    (change cwd to /, detach from controlling tty, set
909  *    process group and session leader to the own process.
910  *    Add DBG() Macro.
911  *    Add some fatal-error log message for failed malloc().
912  *    Add '-d' if compiled with 'configure --with-debug' to
913  *    enable debug output.
914  *
915  *    Revision 1.52  2001/10/26 20:11:20  jongfoster
916  *    Fixing type mismatch
917  *
918  *    Revision 1.51  2001/10/26 17:38:28  oes
919  *    Cosmetics
920  *
921  *    Revision 1.50  2001/10/25 03:40:48  david__schmidt
922  *    Change in porting tactics: OS/2's EMX porting layer doesn't allow multiple
923  *    threads to call select() simultaneously.  So, it's time to do a real, live,
924  *    native OS/2 port.  See defines for __EMX__ (the porting layer) vs. __OS2__
925  *    (native). Both versions will work, but using __OS2__ offers multi-threading.
926  *
927  *    Revision 1.49  2001/10/23 21:41:35  jongfoster
928  *    Added call to initialize the (statically-allocated of course)
929  *    "out of memory" CGI response.
930  *
931  *    Revision 1.48  2001/10/10 19:56:46  jongfoster
932  *    Moving some code that wasn't cookie-related out of an #ifdef
933  *    FEATURE_COOKIE_JAR
934  *
935  *    Revision 1.47  2001/10/10 16:44:36  oes
936  *    Added CONNECT destination port limitation check
937  *
938  *    Revision 1.46  2001/10/08 15:17:41  oes
939  *    Re-enabled SSL forwarding
940  *
941  *    Revision 1.45  2001/10/07 15:42:11  oes
942  *    Replaced 6 boolean members of csp with one bitmap (csp->flags)
943  *
944  *    Moved downgrading of the HTTP version from parse_http_request to
945  *      chat(), since we can't decide if it is necessary before we have
946  *      determined the actions for the URL. The HTTP command is now
947  *      *always* re-built so the repairs need no longer be special-cased.
948  *
949  *    filter_popups now gets a csp pointer so it can raise the new
950  *      CSP_FLAG_MODIFIED flag.
951  *
952  *    Bugfix
953  *
954  *    Added configurable size limit for the IOB. If the IOB grows so
955  *      large that the next read would exceed the limit, the header
956  *      is generated, and the header & unfiltered buffer are flushed
957  *      to the client. Chat then continues in non-buffering,
958  *      non-filtering body mode.
959  *
960  *    Revision 1.44  2001/10/02 18:13:57  oes
961  *    Ooops
962  *
963  *    Revision 1.43  2001/10/02 15:32:13  oes
964  *    Moved generation of hdr
965  *
966  *    Revision 1.42  2001/09/21 23:02:02  david__schmidt
967  *    Cleaning up 2 compiler warnings on OS/2.
968  *
969  *    Revision 1.41  2001/09/16 17:05:14  jongfoster
970  *    Removing unused #include showarg.h
971  *
972  *    Revision 1.40  2001/09/16 15:41:45  jongfoster
973  *    Fixing signed/unsigned comparison warning.
974  *
975  *    Revision 1.39  2001/09/16 13:21:27  jongfoster
976  *    Changes to use new list functions.
977  *
978  *    Revision 1.38  2001/09/16 13:01:46  jongfoster
979  *    Removing redundant function call that zeroed zalloc()'d memory.
980  *
981  *    Revision 1.37  2001/09/10 11:12:24  oes
982  *    Deleted unused variable
983  *
984  *    Revision 1.36  2001/09/10 10:56:15  oes
985  *    Silenced compiler warnings
986  *
987  *    Revision 1.35  2001/07/31 14:44:22  oes
988  *    Deleted unused size parameter from filter_popups()
989  *
990  *    Revision 1.34  2001/07/30 22:08:36  jongfoster
991  *    Tidying up #defines:
992  *    - All feature #defines are now of the form FEATURE_xxx
993  *    - Permanently turned off WIN_GUI_EDIT
994  *    - Permanently turned on WEBDAV and SPLIT_PROXY_ARGS
995  *
996  *    Revision 1.33  2001/07/29 19:32:00  jongfoster
997  *    Renaming _main() [mingw32 only] to real_main(), for ANSI compliance.
998  *
999  *    Revision 1.32  2001/07/29 18:47:05  jongfoster
1000  *    Adding missing #include "loadcfg.h"
1001  *
1002  *    Revision 1.31  2001/07/29 12:17:48  oes
1003  *    Applied pthread fix by Paul Lieverse
1004  *
1005  *    Revision 1.30  2001/07/25 22:57:13  jongfoster
1006  *    __BEOS__ no longer overrides FEATURE_PTHREAD.
1007  *    This is because FEATURE_PTHREAD will soon be widely used, so I
1008  *    want to keep it simple.
1009  *
1010  *    Revision 1.29  2001/07/24 12:47:06  oes
1011  *    Applied BeOS support update by Eugenia
1012  *
1013  *    Revision 1.28  2001/07/23 13:26:12  oes
1014  *    Fixed bug in popup-killing for the first read that caused binary garbage to be sent between headers and body
1015  *
1016  *    Revision 1.27  2001/07/19 19:09:47  haroon
1017  *    - Added code to take care of the situation where while processing the first
1018  *      server response (which includes the server header), after finding the end
1019  *      of the headers we were not looking past the end of the headers for
1020  *      content modification. I enabled it for filter_popups.
1021  *      Someone else should look to see if other similar operations should be
1022  *      done to the discarded portion of the buffer.
1023  *
1024  *      Note 2001/07/20: No, the other content modification mechanisms will process
1025  *                       the whole iob later anyway. --oes
1026  *
1027  *    Revision 1.26  2001/07/18 12:31:36  oes
1028  *    cosmetics
1029  *
1030  *    Revision 1.25  2001/07/15 19:43:49  jongfoster
1031  *    Supports POSIX threads.
1032  *    Also removed some unused #includes.
1033  *
1034  *    Revision 1.24  2001/07/13 14:00:40  oes
1035  *     - Generic content modification scheme:
1036  *       Each feature has its own applicability flag that is set
1037  *       from csp->action->flags.
1038  *       Replaced the "filtering" int flag , by a function pointer
1039  *       "content_filter" to the function that will do the content
1040  *       modification. If it is != NULL, the document will be buffered
1041  *       and processed through *content_filter, which must set
1042  *       csp->content_length and return a modified copy of the body
1043  *       or return NULL (on failiure).
1044  *     - Changed csp->is_text to the more generic bitmap csp->content_type
1045  *       which can currently take the valued CT_TEXT or CT_GIF
1046  *     - Reformatting etc
1047  *     - Removed all #ifdef PCRS
1048  *
1049  *    Revision 1.23  2001/07/02 02:28:25  iwanttokeepanon
1050  *    Added "#ifdef ACL_FILES" conditional compilation to line 1291 to exclude
1051  *    the `block_acl' call.  This prevents a compilation error when the user
1052  *    does not wish to use the "ACL" feature.
1053  *
1054  *    Revision 1.22  2001/06/29 21:45:41  oes
1055  *    Indentation, CRLF->LF, Tab-> Space
1056  *
1057  *    Revision 1.21  2001/06/29 13:29:36  oes
1058  *    - Cleaned up, improved comments
1059  *    - Unified all possible interceptors (CGI,
1060  *      block, trust, fast_redirect) in one
1061  *      place, with one (CGI) answer generation
1062  *      mechansim. Much clearer now.
1063  *    - Removed the GIF image generation, which
1064  *      is now done in filters.c:block_url()
1065  *    - Made error conditions like domain lookup
1066  *      failiure or (various) problems while talking
1067  *      to the server use cgi.c:error_response()
1068  *      instead of generating HTML/HTTP in chat() (yuck!)
1069  *    - Removed logentry from cancelled commit
1070  *
1071  *    Revision 1.20  2001/06/09 10:55:28  jongfoster
1072  *    Changing BUFSIZ ==> BUFFER_SIZE
1073  *
1074  *    Revision 1.19  2001/06/07 23:12:52  jongfoster
1075  *    Replacing function pointer in struct gateway with a directly
1076  *    called function forwarded_connect().
1077  *    Replacing struct gateway with struct forward_spec
1078  *
1079  *    Revision 1.18  2001/06/03 19:12:16  oes
1080  *    introduced new cgi handling
1081  *
1082  *    Revision 1.17  2001/06/01 20:07:23  jongfoster
1083  *    Now uses action +image-blocker{} rather than config->tinygif
1084  *
1085  *    Revision 1.16  2001/06/01 18:49:17  jongfoster
1086  *    Replaced "list_share" with "list" - the tiny memory gain was not
1087  *    worth the extra complexity.
1088  *
1089  *    Revision 1.15  2001/05/31 21:24:47  jongfoster
1090  *    Changed "permission" to "action" throughout.
1091  *    Removed DEFAULT_USER_AGENT - it must now be specified manually.
1092  *    Moved vanilla wafer check into chat(), since we must now
1093  *    decide whether or not to add it based on the URL.
1094  *
1095  *    Revision 1.14  2001/05/29 20:14:01  joergs
1096  *    AmigaOS bugfix: PCRS needs a lot of stack, stacksize for child threads
1097  *    increased.
1098  *
1099  *    Revision 1.13  2001/05/29 09:50:24  jongfoster
1100  *    Unified blocklist/imagelist/permissionslist.
1101  *    File format is still under discussion, but the internal changes
1102  *    are (mostly) done.
1103  *
1104  *    Also modified interceptor behaviour:
1105  *    - We now intercept all URLs beginning with one of the following
1106  *      prefixes (and *only* these prefixes):
1107  *        * http://i.j.b/
1108  *        * http://ijbswa.sf.net/config/
1109  *        * http://ijbswa.sourceforge.net/config/
1110  *    - New interceptors "home page" - go to http://i.j.b/ to see it.
1111  *    - Internal changes so that intercepted and fast redirect pages
1112  *      are not replaced with an image.
1113  *    - Interceptors now have the option to send a binary page direct
1114  *      to the client. (i.e. ijb-send-banner uses this)
1115  *    - Implemented show-url-info interceptor.  (Which is why I needed
1116  *      the above interceptors changes - a typical URL is
1117  *      "http://i.j.b/show-url-info?url=www.somesite.com/banner.gif".
1118  *      The previous mechanism would not have intercepted that, and
1119  *      if it had been intercepted then it then it would have replaced
1120  *      it with an image.)
1121  *
1122  *    Revision 1.12  2001/05/27 22:17:04  oes
1123  *
1124  *    - re_process_buffer no longer writes the modified buffer
1125  *      to the client, which was very ugly. It now returns the
1126  *      buffer, which it is then written by chat.
1127  *
1128  *    - content_length now adjusts the Content-Length: header
1129  *      for modified documents rather than crunch()ing it.
1130  *      (Length info in csp->content_length, which is 0 for
1131  *      unmodified documents)
1132  *
1133  *    - For this to work, sed() is called twice when filtering.
1134  *
1135  *    Revision 1.11  2001/05/26 17:27:53  jongfoster
1136  *    Added support for CLF and fixed LOG_LEVEL_LOG.
1137  *    Also did CRLF->LF fix of my previous patch.
1138  *
1139  *    Revision 1.10  2001/05/26 15:26:15  jongfoster
1140  *    ACL feature now provides more security by immediately dropping
1141  *    connections from untrusted hosts.
1142  *
1143  *    Revision 1.9  2001/05/26 00:28:36  jongfoster
1144  *    Automatic reloading of config file.
1145  *    Removed obsolete SIGHUP support (Unix) and Reload menu option (Win32).
1146  *    Most of the global variables have been moved to a new
1147  *    struct configuration_spec, accessed through csp->config->globalname
1148  *    Most of the globals remaining are used by the Win32 GUI.
1149  *
1150  *    Revision 1.8  2001/05/25 22:43:18  jongfoster
1151  *    Fixing minor memory leak and buffer overflow.
1152  *
1153  *    Revision 1.7  2001/05/25 22:34:30  jongfoster
1154  *    Hard tabs->Spaces
1155  *
1156  *    Revision 1.6  2001/05/23 00:13:58  joergs
1157  *    AmigaOS support fixed.
1158  *
1159  *    Revision 1.5  2001/05/22 18:46:04  oes
1160  *
1161  *    - Enabled filtering banners by size rather than URL
1162  *      by adding patterns that replace all standard banner
1163  *      sizes with the "Junkbuster" gif to the re_filterfile
1164  *
1165  *    - Enabled filtering WebBugs by providing a pattern
1166  *      which kills all 1x1 images
1167  *
1168  *    - Added support for PCRE_UNGREEDY behaviour to pcrs,
1169  *      which is selected by the (nonstandard and therefore
1170  *      capital) letter 'U' in the option string.
1171  *      It causes the quantifiers to be ungreedy by default.
1172  *      Appending a ? turns back to greedy (!).
1173  *
1174  *    - Added a new interceptor ijb-send-banner, which
1175  *      sends back the "Junkbuster" gif. Without imagelist or
1176  *      MSIE detection support, or if tinygif = 1, or the
1177  *      URL isn't recognized as an imageurl, a lame HTML
1178  *      explanation is sent instead.
1179  *
1180  *    - Added new feature, which permits blocking remote
1181  *      script redirects and firing back a local redirect
1182  *      to the browser.
1183  *      The feature is conditionally compiled, i.e. it
1184  *      can be disabled with --disable-fast-redirects,
1185  *      plus it must be activated by a "fast-redirects"
1186  *      line in the config file, has its own log level
1187  *      and of course wants to be displayed by show-proxy-args
1188  *      Note: Boy, all the #ifdefs in 1001 locations and
1189  *      all the fumbling with configure.in and acconfig.h
1190  *      were *way* more work than the feature itself :-(
1191  *
1192  *    - Because a generic redirect template was needed for
1193  *      this, tinygif = 3 now uses the same.
1194  *
1195  *    - Moved GIFs, and other static HTTP response templates
1196  *      to project.h
1197  *
1198  *    - Some minor fixes
1199  *
1200  *    - Removed some >400 CRs again (Jon, you really worked
1201  *      a lot! ;-)
1202  *
1203  *    Revision 1.4  2001/05/21 19:34:01  jongfoster
1204  *    Made failure to bind() a fatal error.
1205  *
1206  *    Revision 1.3  2001/05/20 01:21:20  jongfoster
1207  *    Version 2.9.4 checkin.
1208  *    - Merged popupfile and cookiefile, and added control over PCRS
1209  *      filtering, in new "permissionsfile".
1210  *    - Implemented LOG_LEVEL_FATAL, so that if there is a configuration
1211  *      file error you now get a message box (in the Win32 GUI) rather
1212  *      than the program exiting with no explanation.
1213  *    - Made killpopup use the PCRS MIME-type checking and HTTP-header
1214  *      skipping.
1215  *    - Removed tabs from "config"
1216  *    - Moved duplicated url parsing code in "loaders.c" to a new funcition.
1217  *    - Bumped up version number.
1218  *
1219  *    Revision 1.2  2001/05/17 22:34:44  oes
1220  *     - Added hint on GIF char array generation to jcc.c
1221  *     - Cleaned CRLF's from the sources and related files
1222  *     - Repaired logging for REF and FRC
1223  *
1224  *    Revision 1.1.1.1  2001/05/15 13:58:56  oes
1225  *    Initial import of version 2.9.3 source tree
1226  *
1227  *
1228  *********************************************************************/
1229 \f
1230
1231 #include "config.h"
1232
1233 #include <stdio.h>
1234 #include <sys/types.h>
1235 #include <stdlib.h>
1236 #include <string.h>
1237 #include <signal.h>
1238 #include <fcntl.h>
1239 #include <errno.h>
1240 #include <assert.h>
1241
1242 #ifdef _WIN32
1243 # ifndef FEATURE_PTHREAD
1244 #  ifndef STRICT
1245 #   define STRICT
1246 #  endif
1247 #  include <windows.h>
1248 #  include <process.h>
1249 # endif /* ndef FEATURE_PTHREAD */
1250
1251 # include "win32.h"
1252 # ifndef _WIN_CONSOLE
1253 #  include "w32log.h"
1254 # endif /* ndef _WIN_CONSOLE */
1255 # include "w32svrapi.h"
1256
1257 #else /* ifndef _WIN32 */
1258
1259 # if !defined (__OS2__)
1260 # include <unistd.h>
1261 # include <sys/wait.h>
1262 # endif /* ndef __OS2__ */
1263 # include <sys/time.h>
1264 # include <sys/stat.h>
1265 # include <sys/ioctl.h>
1266
1267 #ifdef sun
1268 #include <sys/termios.h>
1269 #endif /* sun */
1270
1271 #ifdef unix
1272 #include <pwd.h>
1273 #include <grp.h>
1274 #endif
1275
1276 # include <signal.h>
1277
1278 # ifdef __BEOS__
1279 #  include <socket.h>  /* BeOS has select() for sockets only. */
1280 #  include <OS.h>      /* declarations for threads and stuff. */
1281 # endif
1282
1283 # if defined(__EMX__) || defined(__OS2__)
1284 #  include <sys/select.h>  /* OS/2/EMX needs a little help with select */
1285 # endif
1286 # ifdef __OS2__
1287 #define INCL_DOS
1288 # include <os2.h>
1289 #define bzero(B,N) memset(B,0x00,n)
1290 # endif
1291
1292 # ifndef FD_ZERO
1293 #  include <select.h>
1294 # endif
1295
1296 #endif
1297
1298 #include "project.h"
1299 #include "list.h"
1300 #include "jcc.h"
1301 #include "filters.h"
1302 #include "loaders.h"
1303 #include "parsers.h"
1304 #include "miscutil.h"
1305 #include "errlog.h"
1306 #include "jbsockets.h"
1307 #include "gateway.h"
1308 #include "actions.h"
1309 #include "cgi.h"
1310 #include "loadcfg.h"
1311 #include "urlmatch.h"
1312
1313 const char jcc_h_rcs[] = JCC_H_VERSION;
1314 const char project_h_rcs[] = PROJECT_H_VERSION;
1315
1316 int no_daemon = 0;
1317 struct client_state  clients[1];
1318 struct file_list     files[1];
1319
1320 #ifdef FEATURE_STATISTICS
1321 int urls_read     = 0;     /* total nr of urls read inc rejected */
1322 int urls_rejected = 0;     /* total nr of urls rejected */
1323 #endif /* def FEATURE_STATISTICS */
1324
1325 #ifdef FEATURE_GRACEFUL_TERMINATION
1326 int g_terminate = 0;
1327 #endif
1328
1329 #if !defined(_WIN32) && !defined(__OS2__) && !defined(AMIGA)
1330 static void sig_handler(int the_signal);
1331 #endif
1332 static int client_protocol_is_unsupported(const struct client_state *csp, char *req);
1333 static jb_err get_request_destination_elsewhere(struct client_state *csp, struct list *headers);
1334 static jb_err get_server_headers(struct client_state *csp);
1335 static const char *crunch_reason(const struct http_response *rsp);
1336 static void send_crunch_response(const struct client_state *csp, struct http_response *rsp);
1337 static char *get_request_line(struct client_state *csp);
1338 static jb_err receive_client_request(struct client_state *csp);
1339 static jb_err parse_client_request(struct client_state *csp);
1340 static void build_request_line(struct client_state *csp, const struct forward_spec *fwd, char **request_line);
1341 static jb_err change_request_destination(struct client_state *csp);
1342 static void chat(struct client_state *csp);
1343 static void serve(struct client_state *csp);
1344 #if !defined(_WIN32) || defined(_WIN_CONSOLE)
1345 static void usage(const char *myname);
1346 #endif
1347 static void initialize_mutexes(void);
1348 static jb_socket bind_port_helper(struct configuration_spec *config);
1349 static void listen_loop(void);
1350
1351 #ifdef AMIGA
1352 void serve(struct client_state *csp);
1353 #else /* ifndef AMIGA */
1354 static void serve(struct client_state *csp);
1355 #endif /* def AMIGA */
1356
1357 #ifdef __BEOS__
1358 static int32 server_thread(void *data);
1359 #endif /* def __BEOS__ */
1360
1361 #ifdef _WIN32
1362 #define sleep(N)  Sleep(((N) * 1000))
1363 #endif
1364
1365 #ifdef __OS2__
1366 #define sleep(N)  DosSleep(((N) * 100))
1367 #endif
1368
1369 #ifdef MUTEX_LOCKS_AVAILABLE
1370 /*
1371  * XXX: Does the locking stuff really belong in this file?
1372  */
1373 privoxy_mutex_t log_mutex;
1374 privoxy_mutex_t log_init_mutex;
1375 privoxy_mutex_t connection_reuse_mutex;
1376
1377 #if !defined(HAVE_GETHOSTBYADDR_R) || !defined(HAVE_GETHOSTBYNAME_R)
1378 privoxy_mutex_t resolver_mutex;
1379 #endif /* !defined(HAVE_GETHOSTBYADDR_R) || !defined(HAVE_GETHOSTBYNAME_R) */
1380
1381 #ifndef HAVE_GMTIME_R
1382 privoxy_mutex_t gmtime_mutex;
1383 #endif /* ndef HAVE_GMTIME_R */
1384
1385 #ifndef HAVE_LOCALTIME_R
1386 privoxy_mutex_t localtime_mutex;
1387 #endif /* ndef HAVE_GMTIME_R */
1388
1389 #ifndef HAVE_RANDOM
1390 privoxy_mutex_t rand_mutex;
1391 #endif /* ndef HAVE_RANDOM */
1392
1393 #endif /* def MUTEX_LOCKS_AVAILABLE */
1394
1395 #if defined(unix)
1396 const char *basedir = NULL;
1397 const char *pidfile = NULL;
1398 static int received_hup_signal = 0;
1399 #endif /* defined unix */
1400
1401 /* HTTP snipplets. */
1402 static const char CSUCCEED[] =
1403    "HTTP/1.0 200 Connection established\r\n"
1404    "Proxy-Agent: Privoxy/" VERSION "\r\n\r\n";
1405
1406 static const char CHEADER[] =
1407    "HTTP/1.0 400 Invalid header received from client\r\n"
1408    "Proxy-Agent: Privoxy " VERSION "\r\n"
1409    "Content-Type: text/plain\r\n"
1410    "Connection: close\r\n\r\n"
1411    "Invalid header received from client.\r\n";
1412
1413 static const char FTP_RESPONSE[] =
1414    "HTTP/1.0 400 Invalid request received from client\r\n"
1415    "Content-Type: text/plain\r\n"
1416    "Connection: close\r\n\r\n"
1417    "Invalid request. Privoxy doesn't support FTP.\r\n";
1418
1419 static const char GOPHER_RESPONSE[] =
1420    "HTTP/1.0 400 Invalid request received from client\r\n"
1421    "Content-Type: text/plain\r\n"
1422    "Connection: close\r\n\r\n"
1423    "Invalid request. Privoxy doesn't support gopher.\r\n";
1424
1425 /* XXX: should be a template */
1426 static const char MISSING_DESTINATION_RESPONSE[] =
1427    "HTTP/1.0 400 Bad request received from client\r\n"
1428    "Proxy-Agent: Privoxy " VERSION "\r\n"
1429    "Content-Type: text/plain\r\n"
1430    "Connection: close\r\n\r\n"
1431    "Bad request. Privoxy was unable to extract the destination.\r\n";
1432
1433 /* XXX: should be a template */
1434 static const char NO_SERVER_DATA_RESPONSE[] =
1435    "HTTP/1.0 502 Server or forwarder response empty\r\n"
1436    "Proxy-Agent: Privoxy " VERSION "\r\n"
1437    "Content-Type: text/plain\r\n"
1438    "Connection: close\r\n\r\n"
1439    "Empty server or forwarder response.\r\n"
1440    "The connection has been closed but Privoxy didn't receive any data.\r\n";
1441
1442 /* XXX: should be a template */
1443 static const char INVALID_SERVER_HEADERS_RESPONSE[] =
1444    "HTTP/1.0 502 Server or forwarder response invalid\r\n"
1445    "Proxy-Agent: Privoxy " VERSION "\r\n"
1446    "Content-Type: text/plain\r\n"
1447    "Connection: close\r\n\r\n"
1448    "Bad response. The server or forwarder response doesn't look like HTTP.\r\n";
1449
1450 #if 0
1451 /* XXX: should be a template */
1452 static const char NULL_BYTE_RESPONSE[] =
1453    "HTTP/1.0 400 Bad request received from client\r\n"
1454    "Proxy-Agent: Privoxy " VERSION "\r\n"
1455    "Content-Type: text/plain\r\n"
1456    "Connection: close\r\n\r\n"
1457    "Bad request. Null byte(s) before end of request.\r\n";
1458 #endif
1459
1460 /* XXX: should be a template */
1461 static const char MESSED_UP_REQUEST_RESPONSE[] =
1462    "HTTP/1.0 400 Malformed request after rewriting\r\n"
1463    "Proxy-Agent: Privoxy " VERSION "\r\n"
1464    "Content-Type: text/plain\r\n"
1465    "Connection: close\r\n\r\n"
1466    "Bad request. Messed up with header filters.\r\n";
1467
1468 /* XXX: should be a template */
1469 static const char CONNECTION_TIMEOUT_RESPONSE[] =
1470    "HTTP/1.0 502 Connection timeout\r\n"
1471    "Proxy-Agent: Privoxy " VERSION "\r\n"
1472    "Content-Type: text/plain\r\n"
1473    "Connection: close\r\n\r\n"
1474    "The connection timed out.\r\n";
1475
1476 /* A function to crunch a response */
1477 typedef struct http_response *(*crunch_func_ptr)(struct client_state *);
1478
1479 /* Crunch function flags */
1480 #define CF_NO_FLAGS        0
1481 /* Cruncher applies to forced requests as well */
1482 #define CF_IGNORE_FORCE    1
1483 /* Crunched requests are counted for the block statistics */
1484 #define CF_COUNT_AS_REJECT 2
1485
1486 /* A crunch function and its flags */
1487 struct cruncher
1488 {
1489    const crunch_func_ptr cruncher;
1490    const int flags;
1491 };
1492
1493 static int crunch_response_triggered(struct client_state *csp, const struct cruncher crunchers[]);
1494
1495 /* Complete list of cruncher functions */
1496 static const struct cruncher crunchers_all[] = {
1497    { direct_response, CF_COUNT_AS_REJECT|CF_IGNORE_FORCE},
1498    { block_url,       CF_COUNT_AS_REJECT },
1499 #ifdef FEATURE_TRUST
1500    { trust_url,       CF_COUNT_AS_REJECT },
1501 #endif /* def FEATURE_TRUST */
1502    { redirect_url,    CF_NO_FLAGS  },
1503    { dispatch_cgi,    CF_IGNORE_FORCE},
1504    { NULL,            0 }
1505 };
1506
1507 /* Light version, used after tags are applied */
1508 static const struct cruncher crunchers_light[] = {
1509    { block_url,       CF_COUNT_AS_REJECT },
1510    { redirect_url,    CF_NO_FLAGS },
1511    { NULL,            0 }
1512 };
1513
1514
1515 /*
1516  * XXX: Don't we really mean
1517  *
1518  * #if defined(unix)
1519  *
1520  * here?
1521  */
1522 #if !defined(_WIN32) && !defined(__OS2__) && !defined(AMIGA)
1523 /*********************************************************************
1524  *
1525  * Function    :  sig_handler 
1526  *
1527  * Description :  Signal handler for different signals.
1528  *                Exit gracefully on TERM and INT
1529  *                or set a flag that will cause the errlog
1530  *                to be reopened by the main thread on HUP.
1531  *
1532  * Parameters  :
1533  *          1  :  the_signal = the signal cause this function to call
1534  *
1535  * Returns     :  - 
1536  *
1537  *********************************************************************/
1538 static void sig_handler(int the_signal)
1539 {
1540    switch(the_signal)
1541    {
1542       case SIGTERM:
1543       case SIGINT:
1544          log_error(LOG_LEVEL_INFO, "exiting by signal %d .. bye", the_signal);
1545 #if defined(unix)
1546          if(pidfile)
1547          {
1548             unlink(pidfile);
1549          }
1550 #endif /* unix */
1551          exit(the_signal);
1552          break;
1553
1554       case SIGHUP:
1555 #if defined(unix)
1556          received_hup_signal = 1;
1557 #endif
1558          break;         
1559
1560       default:
1561          /* 
1562           * We shouldn't be here, unless we catch signals
1563           * in main() that we can't handle here!
1564           */
1565          log_error(LOG_LEVEL_FATAL, "sig_handler: exiting on unexpected signal %d", the_signal);
1566    }
1567    return;
1568
1569 }
1570 #endif
1571
1572
1573 /*********************************************************************
1574  *
1575  * Function    :  client_protocol_is_unsupported
1576  *
1577  * Description :  Checks if the client used a known unsupported
1578  *                protocol and deals with it by sending an error
1579  *                response.
1580  *
1581  * Parameters  :
1582  *          1  :  csp = Current client state (buffers, headers, etc...)
1583  *          2  :  req = the first request line send by the client
1584  *
1585  * Returns     :  TRUE if an error response has been generated, or
1586  *                FALSE if the request doesn't look invalid.
1587  *
1588  *********************************************************************/
1589 static int client_protocol_is_unsupported(const struct client_state *csp, char *req)
1590 {
1591    /*
1592     * If it's a FTP or gopher request, we don't support it.
1593     *
1594     * These checks are better than nothing, but they might
1595     * not work in all configurations and some clients might
1596     * have problems digesting the answer.
1597     *
1598     * They should, however, never cause more problems than
1599     * Privoxy's old behaviour (returning the misleading HTML
1600     * error message:
1601     *
1602     * "Could not resolve http://(ftp|gopher)://example.org").
1603     */
1604    if (!strncmpic(req, "GET ftp://", 10) || !strncmpic(req, "GET gopher://", 13))
1605    {
1606       const char *response = NULL;
1607       const char *protocol = NULL;
1608
1609       if (!strncmpic(req, "GET ftp://", 10))
1610       {
1611          response = FTP_RESPONSE;
1612          protocol = "FTP";
1613       }
1614       else
1615       {
1616          response = GOPHER_RESPONSE;
1617          protocol = "GOPHER";
1618       }
1619       log_error(LOG_LEVEL_ERROR,
1620          "%s tried to use Privoxy as %s proxy: %s",
1621          csp->ip_addr_str, protocol, req);
1622       log_error(LOG_LEVEL_CLF,
1623          "%s - - [%T] \"%s\" 400 0", csp->ip_addr_str, req);
1624       freez(req);
1625       write_socket(csp->cfd, response, strlen(response));
1626
1627       return TRUE;
1628    }
1629
1630    return FALSE;
1631 }
1632
1633
1634 /*********************************************************************
1635  *
1636  * Function    :  get_request_destination_elsewhere
1637  *
1638  * Description :  If the client's request was redirected into
1639  *                Privoxy without the client's knowledge,
1640  *                the request line lacks the destination host.
1641  *
1642  *                This function tries to get it elsewhere,
1643  *                provided accept-intercepted-requests is enabled.
1644  *
1645  *                "Elsewhere" currently only means "Host: header",
1646  *                but in the future we may ask the redirecting
1647  *                packet filter to look the destination up.
1648  *
1649  *                If the destination stays unknown, an error
1650  *                response is send to the client and headers
1651  *                are freed so that chat() can return directly.
1652  *
1653  * Parameters  :
1654  *          1  :  csp = Current client state (buffers, headers, etc...)
1655  *          2  :  headers = a header list
1656  *
1657  * Returns     :  JB_ERR_OK if the destination is now known, or
1658  *                JB_ERR_PARSE if it isn't.
1659  *
1660  *********************************************************************/
1661 static jb_err get_request_destination_elsewhere(struct client_state *csp, struct list *headers)
1662 {
1663    char *req;
1664
1665    if (!(csp->config->feature_flags & RUNTIME_FEATURE_ACCEPT_INTERCEPTED_REQUESTS))
1666    {
1667       log_error(LOG_LEVEL_ERROR, "%s's request: \'%s\' is invalid."
1668          " Privoxy isn't configured to accept intercepted requests.",
1669          csp->ip_addr_str, csp->http->cmd);
1670       /* XXX: Use correct size */
1671       log_error(LOG_LEVEL_CLF, "%s - - [%T] \"%s\" 400 0",
1672          csp->ip_addr_str, csp->http->cmd);
1673
1674       write_socket(csp->cfd, CHEADER, strlen(CHEADER));
1675       destroy_list(headers);
1676
1677       return JB_ERR_PARSE;
1678    }
1679    else if (JB_ERR_OK == get_destination_from_headers(headers, csp->http))
1680    {
1681       /* Split the domain we just got for pattern matching */
1682       init_domain_components(csp->http);
1683
1684       return JB_ERR_OK;
1685    }
1686    else
1687    {
1688       /* We can't work without destination. Go spread the news.*/
1689
1690       req = list_to_text(headers);
1691       chomp(req);
1692       /* XXX: Use correct size */
1693       log_error(LOG_LEVEL_CLF, "%s - - [%T] \"%s\" 400 0",
1694          csp->ip_addr_str, csp->http->cmd);
1695       log_error(LOG_LEVEL_ERROR,
1696          "Privoxy was unable to get the destination for %s's request:\n%s\n%s",
1697          csp->ip_addr_str, csp->http->cmd, req);
1698       freez(req);
1699
1700       write_socket(csp->cfd, MISSING_DESTINATION_RESPONSE, strlen(MISSING_DESTINATION_RESPONSE));
1701       destroy_list(headers);
1702
1703       return JB_ERR_PARSE;
1704    }
1705    /*
1706     * TODO: If available, use PF's ioctl DIOCNATLOOK as last resort
1707     * to get the destination IP address, use it as host directly
1708     * or do a reverse DNS lookup first.
1709     */
1710 }
1711
1712
1713 /*********************************************************************
1714  *
1715  * Function    :  get_server_headers
1716  *
1717  * Description :  Parses server headers in iob and fills them
1718  *                into csp->headers so that they can later be
1719  *                handled by sed().
1720  *
1721  * Parameters  :
1722  *          1  :  csp = Current client state (buffers, headers, etc...)
1723  *
1724  * Returns     :  JB_ERR_OK if everything went fine, or
1725  *                JB_ERR_PARSE if the headers were incomplete.
1726  *
1727  *********************************************************************/
1728 static jb_err get_server_headers(struct client_state *csp)
1729 {
1730    int continue_hack_in_da_house = 0;
1731    char * header;
1732
1733    while (((header = get_header(csp->iob)) != NULL) || continue_hack_in_da_house)
1734    {
1735       if (header == NULL)
1736       {
1737          /*
1738           * continue hack in da house. Ignore the ending of
1739           * this head and continue enlisting header lines.
1740           * The reason is described below.
1741           */
1742          enlist(csp->headers, "");
1743          continue_hack_in_da_house = 0;
1744          continue;
1745       }
1746       else if (0 == strncmpic(header, "HTTP/1.1 100", 12))
1747       {
1748          /*
1749           * It's a bodyless continue response, don't
1750           * stop header parsing after reaching its end.
1751           *
1752           * As a result Privoxy will concatenate the
1753           * next response's head and parse and deliver
1754           * the headers as if they belonged to one request.
1755           *
1756           * The client will separate them because of the
1757           * empty line between them.
1758           *
1759           * XXX: What we're doing here is clearly against
1760           * the intended purpose of the continue header,
1761           * and under some conditions (HTTP/1.0 client request)
1762           * it's a standard violation.
1763           *
1764           * Anyway, "sort of against the spec" is preferable
1765           * to "always getting confused by Continue responses"
1766           * (Privoxy's behaviour before this hack was added)
1767           */
1768          log_error(LOG_LEVEL_HEADER, "Continue hack in da house.");
1769          continue_hack_in_da_house = 1;
1770       }
1771       else if (*header == '\0') 
1772       {
1773          /*
1774           * If the header is empty, but the Continue hack
1775           * isn't active, we can assume that we reached the
1776           * end of the buffer before we hit the end of the
1777           * head.
1778           *
1779           * Inform the caller an let it decide how to handle it.
1780           */
1781          return JB_ERR_PARSE;
1782       }
1783
1784       if (JB_ERR_MEMORY == enlist(csp->headers, header))
1785       {
1786          /*
1787           * XXX: Should we quit the request and return a
1788           * out of memory error page instead?
1789           */
1790          log_error(LOG_LEVEL_ERROR,
1791             "Out of memory while enlisting server headers. %s lost.",
1792             header);
1793       }
1794       freez(header);
1795    }
1796
1797    return JB_ERR_OK;
1798 }
1799
1800
1801 /*********************************************************************
1802  *
1803  * Function    :  crunch_reason
1804  *
1805  * Description :  Translates the crunch reason code into a string.
1806  *
1807  * Parameters  :
1808  *          1  :  rsp = a http_response
1809  *
1810  * Returns     :  A string with the crunch reason or an error description.
1811  *
1812  *********************************************************************/
1813 static const char *crunch_reason(const struct http_response *rsp)
1814 {
1815    char * reason = NULL;
1816
1817    assert(rsp != NULL);
1818    if (rsp == NULL)
1819    {
1820       return "Internal error while searching for crunch reason";
1821    }
1822
1823    switch (rsp->reason)
1824    {
1825       case RSP_REASON_UNSUPPORTED:
1826          reason = "Unsupported HTTP feature";
1827          break;
1828       case RSP_REASON_BLOCKED:
1829          reason = "Blocked";
1830          break;
1831       case RSP_REASON_UNTRUSTED:
1832          reason = "Untrusted";
1833          break;
1834       case RSP_REASON_REDIRECTED:
1835          reason = "Redirected";
1836          break;
1837       case RSP_REASON_CGI_CALL:
1838          reason = "CGI Call";
1839          break;
1840       case RSP_REASON_NO_SUCH_DOMAIN:
1841          reason = "DNS failure";
1842          break;
1843       case RSP_REASON_FORWARDING_FAILED:
1844          reason = "Forwarding failed";
1845          break;
1846       case RSP_REASON_CONNECT_FAILED:
1847          reason = "Connection failure";
1848          break;
1849       case RSP_REASON_OUT_OF_MEMORY:
1850          reason = "Out of memory (may mask other reasons)";
1851          break;
1852       default:
1853          reason = "No reason recorded";
1854          break;
1855    }
1856
1857    return reason;
1858 }
1859
1860
1861 /*********************************************************************
1862  *
1863  * Function    :  send_crunch_response
1864  *
1865  * Description :  Delivers already prepared response for
1866  *                intercepted requests, logs the interception
1867  *                and frees the response.
1868  *
1869  * Parameters  :
1870  *          1  :  csp = Current client state (buffers, headers, etc...)
1871  *          1  :  rsp = Fully prepared response. Will be freed on exit.
1872  *
1873  * Returns     :  Nothing.
1874  *
1875  *********************************************************************/
1876 static void send_crunch_response(const struct client_state *csp, struct http_response *rsp)
1877 {
1878       const struct http_request *http = csp->http;
1879       char status_code[4];
1880
1881       assert(rsp != NULL);
1882       assert(rsp->head != NULL);
1883
1884       if (rsp == NULL)
1885       {
1886          /*
1887           * Not supposed to happen. If it does
1888           * anyway, treat it as an unknown error.
1889           */
1890          cgi_error_unknown(csp, rsp, RSP_REASON_INTERNAL_ERROR);
1891          /* return code doesn't matter */
1892       }
1893
1894       if (rsp == NULL)
1895       {
1896          /* If rsp is still NULL, we have serious internal problems. */
1897          log_error(LOG_LEVEL_FATAL,
1898             "NULL response in send_crunch_response and cgi_error_unknown failed as well.");
1899       }
1900
1901       /*
1902        * Extract the status code from the actual head
1903        * that was send to the client. It is the only
1904        * way to get it right for all requests, including
1905        * the fixed ones for out-of-memory problems.
1906        *
1907        * A head starts like this: 'HTTP/1.1 200...'
1908        *                           0123456789|11
1909        *                                     10
1910        */
1911       status_code[0] = rsp->head[9];
1912       status_code[1] = rsp->head[10];
1913       status_code[2] = rsp->head[11];
1914       status_code[3] = '\0';
1915
1916       /* Write the answer to the client */
1917       if (write_socket(csp->cfd, rsp->head, rsp->head_length)
1918        || write_socket(csp->cfd, rsp->body, rsp->content_length))
1919       {
1920          /* There is nothing we can do about it. */
1921          log_error(LOG_LEVEL_ERROR, "write to: %s failed: %E", csp->http->host);
1922       }
1923
1924       /* Log that the request was crunched and why. */
1925       log_error(LOG_LEVEL_CRUNCH, "%s: %s", crunch_reason(rsp), http->url);
1926       log_error(LOG_LEVEL_CLF, "%s - - [%T] \"%s\" %s %u",
1927          csp->ip_addr_str, http->ocmd, status_code, rsp->content_length);
1928
1929       /* Clean up and return */
1930       if (cgi_error_memory() != rsp)
1931       {
1932          free_http_response(rsp);
1933       } 
1934       return;
1935 }
1936
1937
1938 #if 0
1939 /*********************************************************************
1940  *
1941  * Function    :  request_contains_null_bytes
1942  *
1943  * Description :  Checks for NULL bytes in the request and sends
1944  *                an error message to the client if any were found.
1945  *
1946  *                XXX: currently not used, see comment in chat().
1947  *
1948  * Parameters  :
1949  *          1  :  csp = Current client state (buffers, headers, etc...)
1950  *          2  :  buf = Data from the client's request to check.
1951  *          3  :  len = The data length.
1952  *
1953  * Returns     :  TRUE if the request contained one or more NULL bytes, or
1954  *                FALSE otherwise.
1955  *
1956  *********************************************************************/
1957 static int request_contains_null_bytes(const struct client_state *csp, char *buf, int len)
1958 {
1959    size_t c_len; /* Request lenght when treated as C string */
1960
1961    c_len = strlen(buf);
1962
1963    if (c_len < len)
1964    {
1965       /*
1966        * Null byte(s) found. Log the request,
1967        * return an error response and hang up.
1968        */
1969       size_t tmp_len = c_len;
1970
1971       do
1972       {
1973         /*
1974          * Replace NULL byte(s) with '°' characters
1975          * so the request can be logged as string.
1976          * XXX: Is there a better replacement character?
1977          */
1978          buf[tmp_len]='°';
1979          tmp_len += strlen(buf+tmp_len);
1980       } while (tmp_len < len);
1981
1982       log_error(LOG_LEVEL_ERROR, "%s\'s request contains at least one NULL byte "
1983          "(length=%d, strlen=%u).", csp->ip_addr_str, len, c_len);
1984       log_error(LOG_LEVEL_HEADER, 
1985          "Offending request data with NULL bytes turned into \'°\' characters: %s", buf);
1986
1987       write_socket(csp->cfd, NULL_BYTE_RESPONSE, strlen(NULL_BYTE_RESPONSE));
1988
1989       /* XXX: Log correct size */
1990       log_error(LOG_LEVEL_CLF, "%s - - [%T] \"Invalid request\" 400 0", csp->ip_addr_str);
1991
1992       return TRUE;
1993    }
1994
1995    return FALSE;
1996 }
1997 #endif
1998
1999
2000 /*********************************************************************
2001  *
2002  * Function    :  crunch_response_triggered
2003  *
2004  * Description :  Checks if the request has to be crunched,
2005  *                and delivers the crunch response if necessary.
2006  *
2007  * Parameters  :
2008  *          1  :  csp = Current client state (buffers, headers, etc...)
2009  *          2  :  crunchers = list of cruncher functions to run
2010  *
2011  * Returns     :  TRUE if the request was answered with a crunch response
2012  *                FALSE otherwise.
2013  *
2014  *********************************************************************/
2015 static int crunch_response_triggered(struct client_state *csp, const struct cruncher crunchers[])
2016 {
2017    struct http_response *rsp = NULL;
2018    const struct cruncher *c;
2019
2020    /*
2021     * If CGI request crunching is disabled,
2022     * check the CGI dispatcher out of order to
2023     * prevent unintentional blocks or redirects. 
2024     */
2025    if (!(csp->config->feature_flags & RUNTIME_FEATURE_CGI_CRUNCHING)
2026        && (NULL != (rsp = dispatch_cgi(csp))))
2027    {
2028       /* Deliver, log and free the interception response. */
2029       send_crunch_response(csp, rsp);
2030       return TRUE;
2031    }
2032
2033    for (c = crunchers; c->cruncher != NULL; c++)
2034    {
2035       /*
2036        * Check the cruncher if either Privoxy is toggled
2037        * on and the request isn't forced, or if the cruncher
2038        * applies to forced requests as well.
2039        */
2040       if (((csp->flags & CSP_FLAG_TOGGLED_ON) &&
2041           !(csp->flags & CSP_FLAG_FORCED)) ||
2042           (c->flags & CF_IGNORE_FORCE))
2043       {
2044          rsp = c->cruncher(csp);
2045          if (NULL != rsp)
2046          {
2047             /* Deliver, log and free the interception response. */
2048             send_crunch_response(csp, rsp);
2049 #ifdef FEATURE_STATISTICS
2050             if (c->flags & CF_COUNT_AS_REJECT)
2051             {
2052                csp->flags |= CSP_FLAG_REJECTED;
2053             }
2054 #endif /* def FEATURE_STATISTICS */
2055
2056             return TRUE;
2057          }
2058       }
2059    }
2060
2061    return FALSE;
2062 }
2063
2064
2065 /*********************************************************************
2066  *
2067  * Function    :  build_request_line
2068  *
2069  * Description :  Builds the HTTP request line.
2070  *
2071  *                If a HTTP forwarder is used it expects the whole URL,
2072  *                web servers only get the path.
2073  *
2074  * Parameters  :
2075  *          1  :  csp = Current client state (buffers, headers, etc...)
2076  *          2  :  fwd = The forwarding spec used for the request
2077  *                XXX: Should use http->fwd instead.
2078  *          3  :  request_line = The old request line which will be replaced.
2079  *
2080  * Returns     :  Nothing. Terminates in case of memory problems.
2081  *
2082  *********************************************************************/
2083 static void build_request_line(struct client_state *csp, const struct forward_spec *fwd, char **request_line)
2084 {
2085    struct http_request *http = csp->http;
2086
2087    assert(http->ssl == 0);
2088
2089    /*
2090     * Downgrade http version from 1.1 to 1.0
2091     * if +downgrade action applies.
2092     */
2093    if ( (csp->action->flags & ACTION_DOWNGRADE)
2094      && (!strcmpic(http->ver, "HTTP/1.1")))
2095    {
2096       freez(http->ver);
2097       http->ver = strdup("HTTP/1.0");
2098
2099       if (http->ver == NULL)
2100       {
2101          log_error(LOG_LEVEL_FATAL, "Out of memory downgrading HTTP version");
2102       }
2103    }
2104
2105    /*
2106     * Rebuild the request line.
2107     */
2108    freez(*request_line);
2109    *request_line = strdup(http->gpc);
2110    string_append(request_line, " ");
2111
2112    if (fwd->forward_host)
2113    {
2114       string_append(request_line, http->url);
2115    }
2116    else
2117    {
2118       string_append(request_line, http->path);
2119    }
2120    string_append(request_line, " ");
2121    string_append(request_line, http->ver);
2122
2123    if (*request_line == NULL)
2124    {
2125       log_error(LOG_LEVEL_FATAL, "Out of memory writing HTTP command");
2126    }
2127    log_error(LOG_LEVEL_HEADER, "New HTTP Request-Line: %s", *request_line);
2128 }
2129
2130
2131 /*********************************************************************
2132  *
2133  * Function    :  change_request_destination
2134  *
2135  * Description :  Parse a (rewritten) request line and regenerate
2136  *                the http request data.
2137  *
2138  * Parameters  :
2139  *          1  :  csp = Current client state (buffers, headers, etc...)
2140  *
2141  * Returns     :  Forwards the parse_http_request() return code.
2142  *                Terminates in case of memory problems.
2143  *
2144  *********************************************************************/
2145 static jb_err change_request_destination(struct client_state *csp)
2146 {
2147    struct http_request *http = csp->http;
2148    jb_err err;
2149
2150    log_error(LOG_LEVEL_INFO, "Rewrite detected: %s", csp->headers->first->str);
2151    free_http_request(http);
2152    err = parse_http_request(csp->headers->first->str, http);
2153    if (JB_ERR_OK != err)
2154    {
2155       log_error(LOG_LEVEL_ERROR, "Couldn't parse rewritten request: %s.",
2156          jb_err_to_string(err));
2157    }
2158    else
2159    {
2160       /* XXX: ocmd is a misleading name */
2161       http->ocmd = strdup(http->cmd);
2162       if (http->ocmd == NULL)
2163       {
2164          log_error(LOG_LEVEL_FATAL,
2165             "Out of memory copying rewritten HTTP request line");
2166       }
2167    }
2168
2169    return err;
2170 }
2171
2172
2173 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
2174 /*********************************************************************
2175  *
2176  * Function    :  server_response_is_complete
2177  *
2178  * Description :  Determines whether we should stop reading
2179  *                from the server socket.
2180  *
2181  * Parameters  :
2182  *          1  :  csp = Current client state (buffers, headers, etc...)
2183  *          2  :  content_length = Length of content received so far.
2184  *
2185  * Returns     :  TRUE if the response is complete,
2186  *                FALSE otherwise.
2187  *
2188  *********************************************************************/
2189 static int server_response_is_complete(struct client_state *csp,
2190    unsigned long long content_length)
2191 {
2192    int content_length_known = !!(csp->flags & CSP_FLAG_CONTENT_LENGTH_SET);
2193
2194    if (!strcmpic(csp->http->gpc, "HEAD"))
2195    {
2196       /*
2197        * "HEAD" implies no body, we are thus expecting
2198        * no content. XXX: incomplete "list" of methods?
2199        */
2200       csp->expected_content_length = 0;
2201       content_length_known = TRUE;
2202    }
2203
2204    if (csp->http->status == 304)
2205    {
2206       /*
2207        * Expect no body. XXX: incomplete "list" of status codes?
2208        */
2209       csp->expected_content_length = 0;
2210       content_length_known = TRUE;
2211    }
2212
2213    return (content_length_known && ((0 == csp->expected_content_length)
2214             || (csp->expected_content_length <= content_length)));
2215 }
2216
2217
2218 /*********************************************************************
2219  *
2220  * Function    :  wait_for_alive_connections
2221  *
2222  * Description :  Waits for alive connections to timeout.
2223  *
2224  * Parameters  :  N/A
2225  *
2226  * Returns     :  N/A
2227  *
2228  *********************************************************************/
2229 static void wait_for_alive_connections()
2230 {
2231    int connections_alive = close_unusable_connections();
2232
2233    while (0 < connections_alive)
2234    {
2235       log_error(LOG_LEVEL_CONNECT,
2236          "Waiting for %d connections to timeout.",
2237          connections_alive);
2238       sleep(60);
2239       connections_alive = close_unusable_connections();
2240    }
2241
2242    log_error(LOG_LEVEL_CONNECT, "No connections to wait for left.");
2243
2244 }
2245 #endif /* FEATURE_CONNECTION_KEEP_ALIVE */
2246
2247
2248 /*********************************************************************
2249  *
2250  * Function    :  mark_server_socket_tainted
2251  *
2252  * Description :  Makes sure we don't reuse a server socket
2253  *                (if we didn't read everything the server sent
2254  *                us reusing the socket would lead to garbage).
2255  *
2256  * Parameters  :
2257  *          1  :  csp = Current client state (buffers, headers, etc...)
2258  *
2259  * Returns     :  void.
2260  *
2261  *********************************************************************/
2262 static void mark_server_socket_tainted(struct client_state *csp)
2263 {
2264    if ((csp->flags & CSP_FLAG_SERVER_CONNECTION_KEEP_ALIVE))
2265    {
2266       log_error(LOG_LEVEL_CONNECT, "Unsetting keep-alive flag.");
2267       csp->flags &= ~CSP_FLAG_SERVER_CONNECTION_KEEP_ALIVE;
2268    }
2269 }
2270
2271 /*********************************************************************
2272  *
2273  * Function    :  get_request_line
2274  *
2275  * Description : Read the client request line.
2276  *
2277  * Parameters  :
2278  *          1  :  csp = Current client state (buffers, headers, etc...)
2279  *
2280  * Returns     :  Pointer to request line or NULL in case of errors.
2281  *
2282  *********************************************************************/
2283 static char *get_request_line(struct client_state *csp)
2284 {
2285    char buf[BUFFER_SIZE];
2286    char *request_line = NULL;
2287    int len;
2288
2289    memset(buf, 0, sizeof(buf));
2290
2291    do
2292    {
2293       if (!data_is_available(csp->cfd, csp->config->socket_timeout))
2294       {
2295          log_error(LOG_LEVEL_ERROR,
2296             "Stopped waiting for the request line.");
2297          write_socket(csp->cfd, CONNECTION_TIMEOUT_RESPONSE,
2298             strlen(CONNECTION_TIMEOUT_RESPONSE));
2299          return NULL;
2300       }
2301
2302       len = read_socket(csp->cfd, buf, sizeof(buf) - 1);
2303
2304       if (len <= 0) return NULL;
2305
2306       /*
2307        * If there is no memory left for buffering the
2308        * request, there is nothing we can do but hang up
2309        */
2310       if (add_to_iob(csp, buf, len))
2311       {
2312          return NULL;
2313       }
2314
2315       request_line = get_header(csp->iob);
2316
2317    } while ((NULL != request_line) && ('\0' == *request_line));
2318
2319    return request_line;
2320
2321 }
2322
2323
2324 /*********************************************************************
2325  *
2326  * Function    :  receive_client_request
2327  *
2328  * Description : Read the client's request (more precisely the
2329  *               client headers) and answer it if necessary.
2330  *
2331  *               Note that since we're not using select() we could get
2332  *               blocked here if a client connected, then didn't say
2333  *               anything!
2334  *
2335  * Parameters  :
2336  *          1  :  csp = Current client state (buffers, headers, etc...)
2337  *
2338  * Returns     :  JB_ERR_OK, JB_ERR_PARSE or JB_ERR_MEMORY
2339  *
2340  *********************************************************************/
2341 static jb_err receive_client_request(struct client_state *csp)
2342 {
2343    char buf[BUFFER_SIZE];
2344    char *p;
2345    char *req = NULL;
2346    struct http_request *http;
2347    int len;
2348    jb_err err;
2349
2350    /* Temporary copy of the client's headers before they get enlisted in csp->headers */
2351    struct list header_list;
2352    struct list *headers = &header_list;
2353
2354    http = csp->http;
2355
2356    memset(buf, 0, sizeof(buf));
2357
2358    req = get_request_line(csp);
2359    if (req == NULL)
2360    {
2361       return JB_ERR_PARSE;
2362    }
2363    assert(*req != '\0');
2364
2365    if (client_protocol_is_unsupported(csp, req))
2366    {
2367       return JB_ERR_PARSE;
2368    }
2369
2370 #ifdef FEATURE_FORCE_LOAD
2371    /*
2372     * If this request contains the FORCE_PREFIX and blocks
2373     * aren't enforced, get rid of it and set the force flag.
2374     */
2375    if (strstr(req, FORCE_PREFIX))
2376    {
2377       if (csp->config->feature_flags & RUNTIME_FEATURE_ENFORCE_BLOCKS)
2378       {
2379          log_error(LOG_LEVEL_FORCE,
2380             "Ignored force prefix in request: \"%s\".", req);
2381       }
2382       else
2383       {
2384          strclean(req, FORCE_PREFIX);
2385          log_error(LOG_LEVEL_FORCE, "Enforcing request: \"%s\".", req);
2386          csp->flags |= CSP_FLAG_FORCED;
2387       }
2388    }
2389 #endif /* def FEATURE_FORCE_LOAD */
2390
2391    err = parse_http_request(req, http);
2392    freez(req);
2393    if (JB_ERR_OK != err)
2394    {
2395       write_socket(csp->cfd, CHEADER, strlen(CHEADER));
2396       /* XXX: Use correct size */
2397       log_error(LOG_LEVEL_CLF, "%s - - [%T] \"Invalid request\" 400 0", csp->ip_addr_str);
2398       log_error(LOG_LEVEL_ERROR,
2399          "Couldn't parse request line received from %s: %s",
2400          csp->ip_addr_str, jb_err_to_string(err));
2401
2402       free_http_request(http);
2403       return JB_ERR_PARSE;
2404    }
2405
2406    /* grab the rest of the client's headers */
2407    init_list(headers);
2408    for (;;)
2409    {
2410       p = get_header(csp->iob);
2411
2412       if (p == NULL)
2413       {
2414          /* There are no additional headers to read. */
2415          break;
2416       }
2417
2418       if (*p == '\0')
2419       {
2420          /*
2421           * We didn't receive a complete header
2422           * line yet, get the rest of it.
2423           */
2424          if (!data_is_available(csp->cfd, csp->config->socket_timeout))
2425          {
2426             log_error(LOG_LEVEL_ERROR,
2427                "Stopped grabbing the client headers.");
2428             return JB_ERR_PARSE;
2429          }
2430
2431          len = read_socket(csp->cfd, buf, sizeof(buf) - 1);
2432          if (len <= 0)
2433          {
2434             log_error(LOG_LEVEL_ERROR, "read from client failed: %E");
2435             destroy_list(headers);
2436             return JB_ERR_PARSE;
2437          }
2438          
2439          if (add_to_iob(csp, buf, len))
2440          {
2441             /*
2442              * If there is no memory left for buffering the
2443              * request, there is nothing we can do but hang up
2444              */
2445             destroy_list(headers);
2446             return JB_ERR_MEMORY;
2447          }
2448       }
2449       else
2450       {
2451          /*
2452           * We were able to read a complete
2453           * header and can finaly enlist it.
2454           */
2455          enlist(headers, p);
2456          freez(p);
2457       }
2458    }
2459
2460    if (http->host == NULL)
2461    {
2462       /*
2463        * If we still don't know the request destination,
2464        * the request is invalid or the client uses
2465        * Privoxy without its knowledge.
2466        */
2467       if (JB_ERR_OK != get_request_destination_elsewhere(csp, headers))
2468       {
2469          /*
2470           * Our attempts to get the request destination
2471           * elsewhere failed or Privoxy is configured
2472           * to only accept proxy requests.
2473           *
2474           * An error response has already been send
2475           * and we're done here.
2476           */
2477          return JB_ERR_PARSE;
2478       }
2479    }
2480
2481    /*
2482     * Determine the actions for this URL
2483     */
2484 #ifdef FEATURE_TOGGLE
2485    if (!(csp->flags & CSP_FLAG_TOGGLED_ON))
2486    {
2487       /* Most compatible set of actions (i.e. none) */
2488       init_current_action(csp->action);
2489    }
2490    else
2491 #endif /* ndef FEATURE_TOGGLE */
2492    {
2493       get_url_actions(csp, http);
2494    }
2495
2496    /* 
2497     * Save a copy of the original request for logging
2498     */
2499    http->ocmd = strdup(http->cmd);
2500    if (http->ocmd == NULL)
2501    {
2502       log_error(LOG_LEVEL_FATAL,
2503          "Out of memory copying HTTP request line");
2504    }
2505    enlist(csp->headers, http->cmd);
2506
2507    /* Append the previously read headers */
2508    list_append_list_unique(csp->headers, headers);
2509    destroy_list(headers);
2510
2511    return JB_ERR_OK;
2512
2513 }
2514
2515
2516 /*********************************************************************
2517  *
2518  * Function    : parse_client_request
2519  *
2520  * Description : Parses the client's request and decides what to do
2521  *               with it.
2522  *
2523  *               Note that since we're not using select() we could get
2524  *               blocked here if a client connected, then didn't say
2525  *               anything!
2526  *
2527  * Parameters  :
2528  *          1  :  csp = Current client state (buffers, headers, etc...)
2529  *
2530  * Returns     :  JB_ERR_OK or JB_ERR_PARSE
2531  *
2532  *********************************************************************/
2533 static jb_err parse_client_request(struct client_state *csp)
2534 {
2535    struct http_request *http = csp->http;
2536    jb_err err;
2537
2538    err = sed(csp, FILTER_CLIENT_HEADERS);
2539    if (JB_ERR_OK != err)
2540    {
2541       /* XXX: Should be handled in sed(). */
2542       assert(err == JB_ERR_PARSE);
2543       log_error(LOG_LEVEL_FATAL, "Failed to parse client headers.");
2544    }
2545    csp->flags |= CSP_FLAG_CLIENT_HEADER_PARSING_DONE;
2546
2547    /* Check request line for rewrites. */
2548    if ((NULL == csp->headers->first->str)
2549       || (strcmp(http->cmd, csp->headers->first->str) &&
2550          (JB_ERR_OK != change_request_destination(csp))))
2551    {
2552       /*
2553        * A header filter broke the request line - bail out.
2554        */
2555       write_socket(csp->cfd, MESSED_UP_REQUEST_RESPONSE, strlen(MESSED_UP_REQUEST_RESPONSE));
2556       /* XXX: Use correct size */
2557       log_error(LOG_LEVEL_CLF,
2558          "%s - - [%T] \"Invalid request generated\" 500 0", csp->ip_addr_str);
2559       log_error(LOG_LEVEL_ERROR,
2560          "Invalid request line after applying header filters.");
2561       free_http_request(http);
2562
2563       return JB_ERR_PARSE;
2564    }
2565
2566    return JB_ERR_OK;
2567
2568 }
2569
2570
2571 /*********************************************************************
2572  *
2573  * Function    :  chat
2574  *
2575  * Description :  Once a connection to the client has been accepted,
2576  *                this function is called (via serve()) to handle the
2577  *                main business of the communication.  When this
2578  *                function returns, the caller must close the client
2579  *                socket handle.
2580  *
2581  *                FIXME: chat is nearly thousand lines long.
2582  *                Ridiculous.
2583  *
2584  * Parameters  :
2585  *          1  :  csp = Current client state (buffers, headers, etc...)
2586  *
2587  * Returns     :  Nothing.
2588  *
2589  *********************************************************************/
2590 static void chat(struct client_state *csp)
2591 {
2592    char buf[BUFFER_SIZE];
2593    char *hdr;
2594    char *p;
2595    fd_set rfds;
2596    int n;
2597    jb_socket maxfd;
2598    int server_body;
2599    int ms_iis5_hack = 0;
2600    unsigned long long byte_count = 0;
2601    int forwarded_connect_retries = 0;
2602    int max_forwarded_connect_retries = csp->config->forwarded_connect_retries;
2603    const struct forward_spec *fwd;
2604    struct http_request *http;
2605    long len = 0; /* for buffer sizes (and negative error codes) */
2606
2607    /* Function that does the content filtering for the current request */
2608    filter_function_ptr content_filter = NULL;
2609
2610    /* Skeleton for HTTP response, if we should intercept the request */
2611    struct http_response *rsp;
2612    struct timeval timeout;
2613
2614    memset(buf, 0, sizeof(buf));
2615
2616    http = csp->http;
2617
2618    if (receive_client_request(csp) != JB_ERR_OK)
2619    {
2620       return;
2621    }
2622    if (parse_client_request(csp) != JB_ERR_OK)
2623    {
2624       return;
2625    }
2626
2627    /* decide how to route the HTTP request */
2628    fwd = forward_url(csp, http);
2629    if (NULL == fwd)
2630    {
2631       log_error(LOG_LEVEL_FATAL, "gateway spec is NULL!?!?  This can't happen!");
2632       /* Never get here - LOG_LEVEL_FATAL causes program exit */
2633       return;
2634    }
2635
2636    /*
2637     * build the http request to send to the server
2638     * we have to do one of the following:
2639     *
2640     * create = use the original HTTP request to create a new
2641     *          HTTP request that has either the path component
2642     *          without the http://domainspec (w/path) or the
2643     *          full orininal URL (w/url)
2644     *          Note that the path and/or the HTTP version may
2645     *          have been altered by now.
2646     *
2647     * connect = Open a socket to the host:port of the server
2648     *           and short-circuit server and client socket.
2649     *
2650     * pass =  Pass the request unchanged if forwarding a CONNECT
2651     *         request to a parent proxy. Note that we'll be sending
2652     *         the CFAIL message ourselves if connecting to the parent
2653     *         fails, but we won't send a CSUCCEED message if it works,
2654     *         since that would result in a double message (ours and the
2655     *         parent's). After sending the request to the parent, we simply
2656     *         tunnel.
2657     *
2658     * here's the matrix:
2659     *                        SSL
2660     *                    0        1
2661     *                +--------+--------+
2662     *                |        |        |
2663     *             0  | create | connect|
2664     *                | w/path |        |
2665     *  Forwarding    +--------+--------+
2666     *                |        |        |
2667     *             1  | create | pass   |
2668     *                | w/url  |        |
2669     *                +--------+--------+
2670     *
2671     */
2672
2673    if (http->ssl && connect_port_is_forbidden(csp))
2674    {
2675       const char *acceptable_connect_ports =
2676          csp->action->string[ACTION_STRING_LIMIT_CONNECT];
2677       assert(NULL != acceptable_connect_ports);
2678       log_error(LOG_LEVEL_INFO, "Request from %s marked for blocking. "
2679          "limit-connect{%s} doesn't allow CONNECT requests to port %d.",
2680          csp->ip_addr_str, acceptable_connect_ports, csp->http->port);
2681       csp->action->flags |= ACTION_BLOCK;
2682       http->ssl = 0;
2683    }
2684
2685    if (http->ssl == 0)
2686    {
2687       freez(csp->headers->first->str);
2688       build_request_line(csp, fwd, &csp->headers->first->str);
2689    }
2690
2691    /*
2692     * We have a request. Check if one of the crunchers wants it.
2693     */
2694    if (crunch_response_triggered(csp, crunchers_all))
2695    {
2696       /*
2697        * Yes. The client got the crunch response
2698        * and we are done here after cleaning up.
2699        */
2700       /* XXX: why list_remove_all()? */
2701       list_remove_all(csp->headers);
2702
2703       return;
2704    }
2705
2706    log_error(LOG_LEVEL_GPC, "%s%s", http->hostport, http->path);
2707
2708    if (fwd->forward_host)
2709    {
2710       log_error(LOG_LEVEL_CONNECT, "via %s:%d to: %s",
2711          fwd->forward_host, fwd->forward_port, http->hostport);
2712    }
2713    else
2714    {
2715       log_error(LOG_LEVEL_CONNECT, "to %s", http->hostport);
2716    }
2717
2718    /* here we connect to the server, gateway, or the forwarder */
2719
2720    while ((csp->sfd = forwarded_connect(fwd, http, csp))
2721       && (errno == EINVAL)
2722       && (forwarded_connect_retries++ < max_forwarded_connect_retries))
2723    {
2724       log_error(LOG_LEVEL_ERROR,
2725          "failed request #%u to connect to %s. Trying again.",
2726          forwarded_connect_retries, http->hostport);
2727    }
2728
2729    if (csp->sfd == JB_INVALID_SOCKET)
2730    {
2731       if (fwd->type != SOCKS_NONE)
2732       {
2733          /* Socks error. */
2734          rsp = error_response(csp, "forwarding-failed", errno);
2735       }
2736       else if (errno == EINVAL)
2737       {
2738          rsp = error_response(csp, "no-such-domain", errno);
2739       }
2740       else
2741       {
2742          rsp = error_response(csp, "connect-failed", errno);
2743          log_error(LOG_LEVEL_CONNECT, "connect to: %s failed: %E",
2744             http->hostport);
2745       }
2746
2747       /* Write the answer to the client */
2748       if (rsp != NULL)
2749       {
2750          send_crunch_response(csp, rsp);
2751       }
2752
2753       return;
2754    }
2755
2756    hdr = list_to_text(csp->headers);
2757    if (hdr == NULL)
2758    {
2759       /* FIXME Should handle error properly */
2760       log_error(LOG_LEVEL_FATAL, "Out of memory parsing client header");
2761    }
2762    list_remove_all(csp->headers);
2763
2764    if (fwd->forward_host || (http->ssl == 0))
2765    {
2766       /*
2767        * Write the client's (modified) header to the server
2768        * (along with anything else that may be in the buffer)
2769        */
2770       if (write_socket(csp->sfd, hdr, strlen(hdr))
2771        || (flush_socket(csp->sfd, csp->iob) <  0))
2772       {
2773          log_error(LOG_LEVEL_CONNECT,
2774             "write header to: %s failed: %E", http->hostport);
2775
2776          rsp = error_response(csp, "connect-failed", errno);
2777          if (rsp)
2778          {
2779             send_crunch_response(csp, rsp);
2780          }
2781
2782          freez(hdr);
2783          return;
2784       }
2785    }
2786    else
2787    {
2788       /*
2789        * We're running an SSL tunnel and we're not forwarding,
2790        * so just send the "connect succeeded" message to the
2791        * client, flush the rest, and get out of the way.
2792        */
2793       if (write_socket(csp->cfd, CSUCCEED, strlen(CSUCCEED)))
2794       {
2795          freez(hdr);
2796          return;
2797       }
2798       IOB_RESET(csp);
2799    }
2800
2801    log_error(LOG_LEVEL_CONNECT, "to %s successful", http->hostport);
2802
2803    /* we're finished with the client's header */
2804    freez(hdr);
2805
2806    maxfd = (csp->cfd > csp->sfd) ? csp->cfd : csp->sfd;
2807
2808    /* pass data between the client and server
2809     * until one or the other shuts down the connection.
2810     */
2811
2812    server_body = 0;
2813
2814    for (;;)
2815    {
2816 #ifdef __OS2__
2817       /*
2818        * FD_ZERO here seems to point to an errant macro which crashes.
2819        * So do this by hand for now...
2820        */
2821       memset(&rfds,0x00,sizeof(fd_set));
2822 #else
2823       FD_ZERO(&rfds);
2824 #endif
2825       FD_SET(csp->cfd, &rfds);
2826       FD_SET(csp->sfd, &rfds);
2827
2828 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
2829       if ((csp->flags & CSP_FLAG_CHUNKED)
2830          && !(csp->flags & CSP_FLAG_CONTENT_LENGTH_SET)
2831          && ((csp->iob->eod - csp->iob->cur) >= 5)
2832          && !memcmp(csp->iob->eod-5, "0\r\n\r\n", 5))
2833       {
2834          log_error(LOG_LEVEL_CONNECT,
2835             "Looks like we read the last chunk together with "
2836             "the server headers. We better stop reading.");
2837          byte_count = (unsigned long long)(csp->iob->eod - csp->iob->cur);
2838          csp->expected_content_length = byte_count;
2839          csp->flags |= CSP_FLAG_CONTENT_LENGTH_SET;
2840       }
2841       if (server_body && server_response_is_complete(csp, byte_count))
2842       {
2843          log_error(LOG_LEVEL_CONNECT,
2844             "Done reading from server. Expected content length: %llu. "
2845             "Actual content length: %llu. Most recently received: %d.",
2846             csp->expected_content_length, byte_count, len);
2847          len = 0;
2848          /*
2849           * XXX: should not jump around,
2850           * chat() is complicated enough already.
2851           */
2852          goto reading_done;
2853       }
2854 #endif  /* FEATURE_CONNECTION_KEEP_ALIVE */
2855
2856       timeout.tv_sec = csp->config->socket_timeout;
2857       timeout.tv_usec = 0;
2858       n = select((int)maxfd+1, &rfds, NULL, NULL, &timeout);
2859
2860       if (n == 0)
2861       {
2862          log_error(LOG_LEVEL_ERROR,
2863             "Didn't receive data in time: %s", http->url);
2864          if ((byte_count == 0) && (http->ssl == 0))
2865          {
2866             write_socket(csp->cfd, CONNECTION_TIMEOUT_RESPONSE,
2867                strlen(CONNECTION_TIMEOUT_RESPONSE));
2868          }
2869          mark_server_socket_tainted(csp);
2870          return;
2871       }
2872       else if (n < 0)
2873       {
2874          log_error(LOG_LEVEL_ERROR, "select() failed!: %E");
2875          mark_server_socket_tainted(csp);
2876          return;
2877       }
2878
2879       /*
2880        * This is the body of the browser's request,
2881        * just read and write it.
2882        */
2883       if (FD_ISSET(csp->cfd, &rfds))
2884       {
2885          len = read_socket(csp->cfd, buf, sizeof(buf) - 1);
2886
2887          if (len <= 0)
2888          {
2889             /* XXX: not sure if this is necessary. */
2890             mark_server_socket_tainted(csp);
2891             break; /* "game over, man" */
2892          }
2893
2894          if (write_socket(csp->sfd, buf, (size_t)len))
2895          {
2896             log_error(LOG_LEVEL_ERROR, "write to: %s failed: %E", http->host);
2897             mark_server_socket_tainted(csp);
2898             return;
2899          }
2900          continue;
2901       }
2902
2903       /*
2904        * The server wants to talk. It could be the header or the body.
2905        * If `hdr' is null, then it's the header otherwise it's the body.
2906        * FIXME: Does `hdr' really mean `host'? No.
2907        */
2908       if (FD_ISSET(csp->sfd, &rfds))
2909       {
2910          fflush(0);
2911          len = read_socket(csp->sfd, buf, sizeof(buf) - 1);
2912
2913          if (len < 0)
2914          {
2915             log_error(LOG_LEVEL_ERROR, "read from: %s failed: %E", http->host);
2916
2917             if (http->ssl && (fwd->forward_host == NULL))
2918             {
2919                /*
2920                 * Just hang up. We already confirmed the client's CONNECT
2921                 * request with status code 200 and unencrypted content is
2922                 * no longer welcome.
2923                 */
2924                log_error(LOG_LEVEL_ERROR,
2925                   "CONNECT already confirmed. Unable to tell the client about the problem.");
2926                return;
2927             }
2928             else if (byte_count)
2929             {
2930                /*
2931                 * Just hang up. We already transmitted the original headers
2932                 * and parts of the original content and therefore missed the
2933                 * chance to send an error message (without risking data corruption).
2934                 *
2935                 * XXX: we could retry with a fancy range request here.
2936                 */
2937                log_error(LOG_LEVEL_ERROR, "Already forwarded the original headers. "
2938                   "Unable to tell the client about the problem.");
2939                mark_server_socket_tainted(csp);
2940                return;
2941             }
2942
2943             rsp = error_response(csp, "connect-failed", errno);
2944             if (rsp)
2945             {
2946                send_crunch_response(csp, rsp);
2947             }
2948
2949             return;
2950          }
2951
2952 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
2953          if (csp->flags & CSP_FLAG_CHUNKED)
2954          {
2955             if ((len >= 5) && !memcmp(buf+len-5, "0\r\n\r\n", 5))
2956             {
2957                /* XXX: this is a temporary hack */
2958                log_error(LOG_LEVEL_CONNECT,
2959                   "Looks like we reached the end of the last chunk. "
2960                   "We better stop reading.");
2961                csp->expected_content_length = byte_count + (unsigned long long)len;
2962                csp->flags |= CSP_FLAG_CONTENT_LENGTH_SET;
2963             }
2964          }
2965          reading_done:
2966 #endif  /* FEATURE_CONNECTION_KEEP_ALIVE */
2967
2968          /*
2969           * Add a trailing zero to let be able to use string operations.
2970           * XXX: do we still need this with filter_popups gone?
2971           */
2972          buf[len] = '\0';
2973
2974          /*
2975           * Normally, this would indicate that we've read
2976           * as much as the server has sent us and we can
2977           * close the client connection.  However, Microsoft
2978           * in its wisdom has released IIS/5 with a bug that
2979           * prevents it from sending the trailing \r\n in
2980           * a 302 redirect header (and possibly other headers).
2981           * To work around this if we've haven't parsed
2982           * a full header we'll append a trailing \r\n
2983           * and see if this now generates a valid one.
2984           *
2985           * This hack shouldn't have any impacts.  If we've
2986           * already transmitted the header or if this is a
2987           * SSL connection, then we won't bother with this
2988           * hack.  So we only work on partially received
2989           * headers.  If we append a \r\n and this still
2990           * doesn't generate a valid header, then we won't
2991           * transmit anything to the client.
2992           */
2993          if (len == 0)
2994          {
2995
2996             if (server_body || http->ssl)
2997             {
2998                /*
2999                 * If we have been buffering up the document,
3000                 * now is the time to apply content modification
3001                 * and send the result to the client.
3002                 */
3003                if (content_filter)
3004                {
3005                   p = execute_content_filter(csp, content_filter);
3006                   /*
3007                    * If the content filter fails, use the original
3008                    * buffer and length.
3009                    * (see p != NULL ? p : csp->iob->cur below)
3010                    */
3011                   if (NULL == p)
3012                   {
3013                      csp->content_length = (size_t)(csp->iob->eod - csp->iob->cur);
3014                   }
3015
3016                   if (JB_ERR_OK != update_server_headers(csp))
3017                   {
3018                      log_error(LOG_LEVEL_FATAL,
3019                         "Failed to update server headers. after filtering.");
3020                   }
3021
3022                   hdr = list_to_text(csp->headers);
3023                   if (hdr == NULL)
3024                   {
3025                      /* FIXME Should handle error properly */
3026                      log_error(LOG_LEVEL_FATAL, "Out of memory parsing server header");
3027                   }
3028
3029                   if (write_socket(csp->cfd, hdr, strlen(hdr))
3030                    || write_socket(csp->cfd,
3031                          ((p != NULL) ? p : csp->iob->cur), (size_t)csp->content_length))
3032                   {
3033                      log_error(LOG_LEVEL_ERROR, "write modified content to client failed: %E");
3034                      freez(hdr);
3035                      freez(p);
3036                      mark_server_socket_tainted(csp);
3037                      return;
3038                   }
3039
3040                   freez(hdr);
3041                   freez(p);
3042                }
3043
3044                break; /* "game over, man" */
3045             }
3046
3047             /*
3048              * This is NOT the body, so
3049              * Let's pretend the server just sent us a blank line.
3050              */
3051             snprintf(buf, sizeof(buf), "\r\n");
3052             len = (int)strlen(buf);
3053
3054             /*
3055              * Now, let the normal header parsing algorithm below do its
3056              * job.  If it fails, we'll exit instead of continuing.
3057              */
3058
3059             ms_iis5_hack = 1;
3060          }
3061
3062          /*
3063           * If this is an SSL connection or we're in the body
3064           * of the server document, just write it to the client,
3065           * unless we need to buffer the body for later content-filtering
3066           */
3067          if (server_body || http->ssl)
3068          {
3069             if (content_filter)
3070             {
3071                /*
3072                 * If there is no memory left for buffering the content, or the buffer limit
3073                 * has been reached, switch to non-filtering mode, i.e. make & write the
3074                 * header, flush the iob and buf, and get out of the way.
3075                 */
3076                if (add_to_iob(csp, buf, len))
3077                {
3078                   size_t hdrlen;
3079                   long flushed;
3080
3081                   log_error(LOG_LEVEL_INFO,
3082                      "Flushing header and buffers. Stepping back from filtering.");
3083
3084                   hdr = list_to_text(csp->headers);
3085                   if (hdr == NULL)
3086                   {
3087                      /* 
3088                       * Memory is too tight to even generate the header.
3089                       * Send our static "Out-of-memory" page.
3090                       */
3091                      log_error(LOG_LEVEL_ERROR, "Out of memory while trying to flush.");
3092                      rsp = cgi_error_memory();
3093                      send_crunch_response(csp, rsp);
3094                      mark_server_socket_tainted(csp);
3095                      return;
3096                   }
3097                   hdrlen = strlen(hdr);
3098
3099                   if (write_socket(csp->cfd, hdr, hdrlen)
3100                    || ((flushed = flush_socket(csp->cfd, csp->iob)) < 0)
3101                    || (write_socket(csp->cfd, buf, (size_t)len)))
3102                   {
3103                      log_error(LOG_LEVEL_CONNECT,
3104                         "Flush header and buffers to client failed: %E");
3105                      freez(hdr);
3106                      mark_server_socket_tainted(csp);
3107                      return;
3108                   }
3109
3110                   /*
3111                    * Reset the byte_count to the amount of bytes
3112                    * we just flushed. len will be added a few lines below,
3113                    * hdrlen doesn't matter for LOG_LEVEL_CLF.
3114                    */
3115                   byte_count = (unsigned long long)flushed;
3116                   freez(hdr);
3117                   content_filter = NULL;
3118                   server_body = 1;
3119                }
3120             }
3121             else
3122             {
3123                if (write_socket(csp->cfd, buf, (size_t)len))
3124                {
3125                   log_error(LOG_LEVEL_ERROR, "write to client failed: %E");
3126                   mark_server_socket_tainted(csp);
3127                   return;
3128                }
3129             }
3130             byte_count += (unsigned long long)len;
3131             continue;
3132          }
3133          else
3134          {
3135             const char *header_start;
3136             /*
3137              * We're still looking for the end of the server's header.
3138              * Buffer up the data we just read.  If that fails, there's
3139              * little we can do but send our static out-of-memory page.
3140              */
3141             if (add_to_iob(csp, buf, len))
3142             {
3143                log_error(LOG_LEVEL_ERROR, "Out of memory while looking for end of server headers.");
3144                rsp = cgi_error_memory();
3145                send_crunch_response(csp, rsp);               
3146                mark_server_socket_tainted(csp);
3147                return;
3148             }
3149
3150             header_start = csp->iob->cur;
3151
3152             /* Convert iob into something sed() can digest */
3153             if (JB_ERR_PARSE == get_server_headers(csp))
3154             {
3155                if (ms_iis5_hack)
3156                {
3157                   /*
3158                    * Well, we tried our MS IIS/5 hack and it didn't work.
3159                    * The header is incomplete and there isn't anything
3160                    * we can do about it.
3161                    */
3162                   log_error(LOG_LEVEL_INFO,
3163                      "MS IIS5 hack didn't produce valid headers.");
3164                   break;
3165                }
3166                else
3167                {
3168                   /*
3169                    * Since we have to wait for more from the server before
3170                    * we can parse the headers we just continue here.
3171                    */
3172                   long header_offset = csp->iob->cur - header_start;
3173                   assert(csp->iob->cur >= header_start);
3174                   byte_count += (unsigned long long)(len - header_offset);
3175                   log_error(LOG_LEVEL_CONNECT, "Continuing buffering headers. "
3176                      "byte_count: %llu. header_offset: %d. len: %d.",
3177                      byte_count, header_offset, len);
3178                   continue;
3179                }
3180             }
3181
3182             /* Did we actually get anything? */
3183             if (NULL == csp->headers->first)
3184             {
3185                log_error(LOG_LEVEL_ERROR, "Empty server or forwarder response.");
3186                log_error(LOG_LEVEL_CLF, "%s - - [%T] \"%s\" 502 0", csp->ip_addr_str, http->cmd);
3187                write_socket(csp->cfd, NO_SERVER_DATA_RESPONSE, strlen(NO_SERVER_DATA_RESPONSE));
3188                free_http_request(http);
3189                mark_server_socket_tainted(csp);
3190                return;
3191             }
3192
3193             assert(csp->headers->first->str);
3194             assert(!http->ssl);
3195             if (strncmpic(csp->headers->first->str, "HTTP", 4) &&
3196                 strncmpic(csp->headers->first->str, "ICY", 3))
3197             {
3198                /*
3199                 * It doesn't look like a HTTP (or Shoutcast) response:
3200                 * tell the client and log the problem.
3201                 */
3202                if (strlen(csp->headers->first->str) > 30)
3203                {
3204                   csp->headers->first->str[30] = '\0';
3205                }
3206                log_error(LOG_LEVEL_ERROR,
3207                   "Invalid server or forwarder response. Starts with: %s",
3208                   csp->headers->first->str);
3209                log_error(LOG_LEVEL_CLF,
3210                   "%s - - [%T] \"%s\" 502 0", csp->ip_addr_str, http->cmd);
3211                write_socket(csp->cfd, INVALID_SERVER_HEADERS_RESPONSE,
3212                   strlen(INVALID_SERVER_HEADERS_RESPONSE));
3213                free_http_request(http);
3214                mark_server_socket_tainted(csp);
3215                return;
3216             }
3217
3218             /*
3219              * We have now received the entire server header,
3220              * filter it and send the result to the client
3221              */
3222             if (JB_ERR_OK != sed(csp, FILTER_SERVER_HEADERS))
3223             {
3224                log_error(LOG_LEVEL_FATAL, "Failed to parse server headers.");
3225             }
3226             hdr = list_to_text(csp->headers);
3227             if (hdr == NULL)
3228             {
3229                /* FIXME Should handle error properly */
3230                log_error(LOG_LEVEL_FATAL, "Out of memory parsing server header");
3231             }
3232
3233             if (crunch_response_triggered(csp, crunchers_light))
3234             {
3235                /*
3236                 * One of the tags created by a server-header
3237                 * tagger triggered a crunch. We already
3238                 * delivered the crunch response to the client
3239                 * and are done here after cleaning up.
3240                 */
3241                 freez(hdr);
3242                 mark_server_socket_tainted(csp);
3243                 return;
3244             }
3245             /* Buffer and pcrs filter this if appropriate. */
3246
3247             if (!http->ssl) /* We talk plaintext */
3248             {
3249                content_filter = get_filter_function(csp);
3250             }
3251             /*
3252              * Only write if we're not buffering for content modification
3253              */
3254             if (!content_filter)
3255             {
3256                /*
3257                 * Write the server's (modified) header to
3258                 * the client (along with anything else that
3259                 * may be in the buffer)
3260                 */
3261
3262                if (write_socket(csp->cfd, hdr, strlen(hdr))
3263                 || ((len = flush_socket(csp->cfd, csp->iob)) < 0))
3264                {
3265                   log_error(LOG_LEVEL_CONNECT, "write header to client failed: %E");
3266
3267                   /*
3268                    * The write failed, so don't bother mentioning it
3269                    * to the client... it probably can't hear us anyway.
3270                    */
3271                   freez(hdr);
3272                   mark_server_socket_tainted(csp);
3273                   return;
3274                }
3275
3276                byte_count += (unsigned long long)len;
3277             }
3278             else
3279             {
3280                /*
3281                 * XXX: the header lenght should probably
3282                 * be calculated by get_server_headers().
3283                 */
3284                long header_length = csp->iob->cur - header_start;
3285                assert(csp->iob->cur > header_start);
3286                byte_count += (unsigned long long)(len - header_length);
3287             }
3288
3289             /* we're finished with the server's header */
3290
3291             freez(hdr);
3292             server_body = 1;
3293
3294             /*
3295              * If this was a MS IIS/5 hack then it means the server
3296              * has already closed the connection. Nothing more to read.
3297              * Time to bail.
3298              */
3299             if (ms_iis5_hack)
3300             {
3301                log_error(LOG_LEVEL_INFO,
3302                   "Closed server connection detected with MS IIS5 hack enabled.");
3303                break;
3304             }
3305          }
3306          continue;
3307       }
3308       mark_server_socket_tainted(csp);
3309       return; /* huh? we should never get here */
3310    }
3311
3312    if (csp->content_length == 0)
3313    {
3314       /*
3315        * If Privoxy didn't recalculate the Content-Lenght,
3316        * byte_count is still correct.
3317        */
3318       csp->content_length = byte_count;
3319    }
3320
3321 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
3322    if ((csp->flags & CSP_FLAG_CONTENT_LENGTH_SET)
3323       && (csp->expected_content_length != byte_count))
3324    {
3325       log_error(LOG_LEVEL_CONNECT,
3326          "Received %llu bytes while expecting %llu.",
3327          byte_count, csp->expected_content_length);
3328       mark_server_socket_tainted(csp);
3329    }
3330 #endif
3331
3332    log_error(LOG_LEVEL_CLF, "%s - - [%T] \"%s\" 200 %llu",
3333       csp->ip_addr_str, http->ocmd, csp->content_length);
3334 }
3335
3336
3337 /*********************************************************************
3338  *
3339  * Function    :  serve
3340  *
3341  * Description :  This is little more than chat.  We only "serve" to
3342  *                to close any socket that chat may have opened.
3343  *
3344  * Parameters  :
3345  *          1  :  csp = Current client state (buffers, headers, etc...)
3346  *
3347  * Returns     :  N/A
3348  *
3349  *********************************************************************/
3350 #ifdef AMIGA
3351 void serve(struct client_state *csp)
3352 #else /* ifndef AMIGA */
3353 static void serve(struct client_state *csp)
3354 #endif /* def AMIGA */
3355 {
3356    chat(csp);
3357    close_socket(csp->cfd);
3358
3359    if (csp->sfd != JB_INVALID_SOCKET)
3360    {
3361 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
3362       static int monitor_thread_running = 0;
3363
3364       if ((csp->config->feature_flags & RUNTIME_FEATURE_CONNECTION_KEEP_ALIVE)
3365        && (csp->flags & CSP_FLAG_SERVER_CONNECTION_KEEP_ALIVE))
3366       {
3367          remember_connection(csp->sfd, csp->http, forward_url(csp, csp->http));
3368          privoxy_mutex_lock(&connection_reuse_mutex);
3369          if (!monitor_thread_running)
3370          {
3371             monitor_thread_running = 1;
3372             privoxy_mutex_unlock(&connection_reuse_mutex);
3373             wait_for_alive_connections();
3374             privoxy_mutex_lock(&connection_reuse_mutex);
3375             monitor_thread_running = 0;
3376          }
3377          privoxy_mutex_unlock(&connection_reuse_mutex);
3378       }
3379       else
3380       {
3381          forget_connection(csp->sfd);
3382          close_socket(csp->sfd);
3383       }
3384 #else
3385       close_socket(csp->sfd);
3386 #endif /* def FEATURE_CONNECTION_KEEP_ALIVE */
3387    }
3388
3389    csp->flags &= ~CSP_FLAG_ACTIVE;
3390
3391 }
3392
3393
3394 #ifdef __BEOS__
3395 /*********************************************************************
3396  *
3397  * Function    :  server_thread
3398  *
3399  * Description :  We only exist to call `serve' in a threaded environment.
3400  *
3401  * Parameters  :
3402  *          1  :  data = Current client state (buffers, headers, etc...)
3403  *
3404  * Returns     :  Always 0.
3405  *
3406  *********************************************************************/
3407 static int32 server_thread(void *data)
3408 {
3409    serve((struct client_state *) data);
3410    return 0;
3411
3412 }
3413 #endif
3414
3415
3416 #if !defined(_WIN32) || defined(_WIN_CONSOLE)
3417 /*********************************************************************
3418  *
3419  * Function    :  usage
3420  *
3421  * Description :  Print usage info & exit.
3422  *
3423  * Parameters  :  Pointer to argv[0] for identifying ourselves
3424  *
3425  * Returns     :  No. ,-)
3426  *
3427  *********************************************************************/
3428 static void usage(const char *myname)
3429 {
3430    printf("Privoxy version " VERSION " (" HOME_PAGE_URL ")\n"
3431           "Usage: %s "
3432 #if defined(unix)
3433           "[--chroot] "
3434 #endif /* defined(unix) */
3435           "[--help] "
3436 #if defined(unix)
3437           "[--no-daemon] [--pidfile pidfile] [--pre-chroot-nslookup hostname] [--user user[.group]] "
3438 #endif /* defined(unix) */
3439           "[--version] [configfile]\n"
3440           "Aborting\n", myname);
3441
3442    exit(2);
3443
3444 }
3445 #endif /* #if !defined(_WIN32) || defined(_WIN_CONSOLE) */
3446
3447
3448 #ifdef MUTEX_LOCKS_AVAILABLE
3449 /*********************************************************************
3450  *
3451  * Function    :  privoxy_mutex_lock
3452  *
3453  * Description :  Locks a mutex.
3454  *
3455  * Parameters  :
3456  *          1  :  mutex = The mutex to lock.
3457  *
3458  * Returns     :  Void. May exit in case of errors.
3459  *
3460  *********************************************************************/
3461 void privoxy_mutex_lock(privoxy_mutex_t *mutex)
3462 {
3463 #ifdef FEATURE_PTHREAD
3464    int err = pthread_mutex_lock(mutex);
3465    if (err)
3466    {
3467       if (mutex != &log_mutex)
3468       {
3469          log_error(LOG_LEVEL_FATAL,
3470             "Mutex locking failed: %s.\n", strerror(err));
3471       }
3472       exit(1);
3473    }
3474 #else
3475    EnterCriticalSection(mutex);
3476 #endif /* def FEATURE_PTHREAD */
3477 }
3478
3479
3480 /*********************************************************************
3481  *
3482  * Function    :  privoxy_mutex_unlock
3483  *
3484  * Description :  Unlocks a mutex.
3485  *
3486  * Parameters  :
3487  *          1  :  mutex = The mutex to unlock.
3488  *
3489  * Returns     :  Void. May exit in case of errors.
3490  *
3491  *********************************************************************/
3492 void privoxy_mutex_unlock(privoxy_mutex_t *mutex)
3493 {
3494 #ifdef FEATURE_PTHREAD
3495    int err = pthread_mutex_unlock(mutex);
3496    if (err)
3497    {
3498       if (mutex != &log_mutex)
3499       {
3500          log_error(LOG_LEVEL_FATAL,
3501             "Mutex unlocking failed: %s.\n", strerror(err));
3502       }
3503       exit(1);
3504    }
3505 #else
3506    LeaveCriticalSection(mutex);
3507 #endif /* def FEATURE_PTHREAD */
3508 }
3509
3510
3511 /*********************************************************************
3512  *
3513  * Function    :  privoxy_mutex_init
3514  *
3515  * Description :  Prepares a mutex.
3516  *
3517  * Parameters  :
3518  *          1  :  mutex = The mutex to initialize.
3519  *
3520  * Returns     :  Void. May exit in case of errors.
3521  *
3522  *********************************************************************/
3523 static void privoxy_mutex_init(privoxy_mutex_t *mutex)
3524 {
3525 #ifdef FEATURE_PTHREAD
3526    int err = pthread_mutex_init(mutex, 0);
3527    if (err)
3528    {
3529       printf("Fatal error. Mutex initialization failed: %s.\n",
3530          strerror(err));
3531       exit(1);
3532    }
3533 #else
3534    InitializeCriticalSection(mutex);
3535 #endif /* def FEATURE_PTHREAD */
3536 }
3537 #endif /* def MUTEX_LOCKS_AVAILABLE */
3538
3539 /*********************************************************************
3540  *
3541  * Function    :  initialize_mutexes
3542  *
3543  * Description :  Prepares mutexes if mutex support is available.
3544  *
3545  * Parameters  :  None
3546  *
3547  * Returns     :  Void, exits in case of errors.
3548  *
3549  *********************************************************************/
3550 static void initialize_mutexes(void)
3551 {
3552 #ifdef MUTEX_LOCKS_AVAILABLE
3553    /*
3554     * Prepare global mutex semaphores
3555     */
3556    privoxy_mutex_init(&log_mutex);
3557    privoxy_mutex_init(&log_init_mutex);
3558    privoxy_mutex_init(&connection_reuse_mutex);
3559
3560    /*
3561     * XXX: The assumptions below are a bit naive
3562     * and can cause locks that aren't necessary.
3563     *
3564     * For example older FreeBSD versions (< 6.x?)
3565     * have no gethostbyname_r, but gethostbyname is
3566     * thread safe.
3567     */
3568 #if !defined(HAVE_GETHOSTBYADDR_R) || !defined(HAVE_GETHOSTBYNAME_R)
3569    privoxy_mutex_init(&resolver_mutex);
3570 #endif /* !defined(HAVE_GETHOSTBYADDR_R) || !defined(HAVE_GETHOSTBYNAME_R) */
3571    /*
3572     * XXX: should we use a single mutex for
3573     * localtime() and gmtime() as well?
3574     */
3575 #ifndef HAVE_GMTIME_R
3576    privoxy_mutex_init(&gmtime_mutex);
3577 #endif /* ndef HAVE_GMTIME_R */
3578
3579 #ifndef HAVE_LOCALTIME_R
3580    privoxy_mutex_init(&localtime_mutex);
3581 #endif /* ndef HAVE_GMTIME_R */
3582
3583 #ifndef HAVE_RANDOM
3584    privoxy_mutex_init(&rand_mutex);
3585 #endif /* ndef HAVE_RANDOM */
3586 #endif /* def MUTEX_LOCKS_AVAILABLE */
3587 }
3588
3589
3590 /*********************************************************************
3591  *
3592  * Function    :  main
3593  *
3594  * Description :  Load the config file and start the listen loop.
3595  *                This function is a lot more *sane* with the `load_config'
3596  *                and `listen_loop' functions; although it stills does
3597  *                a *little* too much for my taste.
3598  *
3599  * Parameters  :
3600  *          1  :  argc = Number of parameters (including $0).
3601  *          2  :  argv = Array of (char *)'s to the parameters.
3602  *
3603  * Returns     :  1 if : can't open config file, unrecognized directive,
3604  *                stats requested in multi-thread mode, can't open the
3605  *                log file, can't open the jar file, listen port is invalid,
3606  *                any load fails, and can't bind port.
3607  *
3608  *                Else main never returns, the process must be signaled
3609  *                to terminate execution.  Or, on Windows, use the
3610  *                "File", "Exit" menu option.
3611  *
3612  *********************************************************************/
3613 #ifdef __MINGW32__
3614 int real_main(int argc, const char *argv[])
3615 #else
3616 int main(int argc, const char *argv[])
3617 #endif
3618 {
3619    int argc_pos = 0;
3620    unsigned int random_seed;
3621 #ifdef unix
3622    struct passwd *pw = NULL;
3623    struct group *grp = NULL;
3624    char *p;
3625    int do_chroot = 0;
3626    char *pre_chroot_nslookup_to_load_resolver = NULL;
3627 #endif
3628
3629    Argc = argc;
3630    Argv = argv;
3631
3632    configfile =
3633 #if !defined(_WIN32)
3634    "config"
3635 #else
3636    "config.txt"
3637 #endif
3638       ;
3639
3640    /* Prepare mutexes if supported and necessary. */
3641    initialize_mutexes();
3642
3643    /* Enable logging until further notice. */
3644    init_log_module();
3645
3646    /*
3647     * Parse the command line arguments
3648     *
3649     * XXX: simply printing usage information in case of
3650     * invalid arguments isn't particularly user friendly.
3651     */
3652    while (++argc_pos < argc)
3653    {
3654 #ifdef _WIN32
3655       /* Check to see if the service must be installed or uninstalled */
3656       if (strncmp(argv[argc_pos], "--install", 9) == 0)
3657       {
3658          const char *pName = argv[argc_pos] + 9;
3659          if (*pName == ':')
3660             pName++;
3661          exit( (install_service(pName)) ? 0 : 1 );
3662       }
3663       else if (strncmp(argv[argc_pos], "--uninstall", + 11) == 0)
3664       {
3665          const char *pName = argv[argc_pos] + 11;
3666          if (*pName == ':')
3667             pName++;
3668          exit((uninstall_service(pName)) ? 0 : 1);
3669       }
3670       else if (strcmp(argv[argc_pos], "--service" ) == 0)
3671       {
3672          bRunAsService = TRUE;
3673          w32_set_service_cwd();
3674          atexit(w32_service_exit_notify);
3675       }
3676       else
3677 #endif /* defined(_WIN32) */
3678
3679
3680 #if !defined(_WIN32) || defined(_WIN_CONSOLE)
3681
3682       if (strcmp(argv[argc_pos], "--help") == 0)
3683       {
3684          usage(argv[0]);
3685       }
3686
3687       else if(strcmp(argv[argc_pos], "--version") == 0)
3688       {
3689          printf("Privoxy version " VERSION " (" HOME_PAGE_URL ")\n");
3690          exit(0);
3691       }
3692
3693 #if defined(unix)
3694
3695       else if (strcmp(argv[argc_pos], "--no-daemon" ) == 0)
3696       {
3697          set_debug_level(LOG_LEVEL_FATAL | LOG_LEVEL_ERROR | LOG_LEVEL_INFO);
3698          no_daemon = 1;
3699       }
3700
3701       else if (strcmp(argv[argc_pos], "--pidfile" ) == 0)
3702       {
3703          if (++argc_pos == argc) usage(argv[0]);
3704          pidfile = strdup(argv[argc_pos]);
3705       }
3706
3707       else if (strcmp(argv[argc_pos], "--user" ) == 0)
3708       {
3709          if (++argc_pos == argc) usage(argv[argc_pos]);
3710
3711          if ((NULL != (p = strchr(argv[argc_pos], '.'))) && *(p + 1) != '0')
3712          {
3713             *p++ = '\0';
3714             if (NULL == (grp = getgrnam(p)))
3715             {
3716                log_error(LOG_LEVEL_FATAL, "Group %s not found.", p);
3717             }
3718          }
3719
3720          if (NULL == (pw = getpwnam(argv[argc_pos])))
3721          {
3722             log_error(LOG_LEVEL_FATAL, "User %s not found.", argv[argc_pos]);
3723          }
3724
3725          if (p != NULL) *--p = '\0';
3726       }
3727
3728       else if (strcmp(argv[argc_pos], "--pre-chroot-nslookup" ) == 0)
3729       {
3730          if (++argc_pos == argc) usage(argv[0]);
3731          pre_chroot_nslookup_to_load_resolver = strdup(argv[argc_pos]);
3732       }
3733
3734       else if (strcmp(argv[argc_pos], "--chroot" ) == 0)
3735       {
3736          do_chroot = 1;
3737       }
3738 #endif /* defined(unix) */
3739
3740       else if (argc_pos + 1 != argc)
3741       {
3742          /*
3743           * This is neither the last command line
3744           * option, nor was it recognized before,
3745           * therefore it must be invalid.
3746           */
3747          usage(argv[0]);
3748       }
3749       else
3750
3751 #endif /* defined(_WIN32) && !defined(_WIN_CONSOLE) */
3752       {
3753          configfile = argv[argc_pos];
3754       }
3755
3756    } /* -END- while (more arguments) */
3757
3758    show_version(Argv[0]);
3759
3760 #if defined(unix)
3761    if ( *configfile != '/' )
3762    {
3763       char cwd[BUFFER_SIZE];
3764       char *abs_file;
3765       size_t abs_file_size; 
3766
3767       /* make config-filename absolute here */
3768       if (NULL == getcwd(cwd, sizeof(cwd)))
3769       {
3770          perror("failed to get current working directory");
3771          exit( 1 );
3772       }
3773
3774       /* XXX: why + 5? */
3775       abs_file_size = strlen(cwd) + strlen(configfile) + 5;
3776       basedir = strdup(cwd);
3777
3778       if (NULL == basedir ||
3779           NULL == (abs_file = malloc(abs_file_size)))
3780       {
3781          perror("malloc failed");
3782          exit( 1 );
3783       }
3784       strlcpy(abs_file, basedir, abs_file_size);
3785       strlcat(abs_file, "/", abs_file_size );
3786       strlcat(abs_file, configfile, abs_file_size);
3787       configfile = abs_file;
3788    }
3789 #endif /* defined unix */
3790
3791
3792    files->next = NULL;
3793    clients->next = NULL;
3794
3795    /* XXX: factor out initialising after the next stable release. */
3796 #ifdef AMIGA
3797    InitAmiga();
3798 #elif defined(_WIN32)
3799    InitWin32();
3800 #endif
3801
3802    random_seed = (unsigned int)time(NULL);
3803 #ifdef HAVE_RANDOM
3804    srandom(random_seed);
3805 #else
3806    srand(random_seed);
3807 #endif /* ifdef HAVE_RANDOM */
3808
3809    /*
3810     * Unix signal handling
3811     *
3812     * Catch the abort, interrupt and terminate signals for a graceful exit
3813     * Catch the hangup signal so the errlog can be reopened.
3814     * Ignore the broken pipe signals (FIXME: Why?)
3815     */
3816 #if !defined(_WIN32) && !defined(__OS2__) && !defined(AMIGA)
3817 {
3818    int idx;
3819    const int catched_signals[] = { SIGTERM, SIGINT, SIGHUP, 0 };
3820    const int ignored_signals[] = { SIGPIPE, 0 };
3821
3822    for (idx = 0; catched_signals[idx] != 0; idx++)
3823    {
3824 #ifdef sun /* FIXME: Is it safe to check for HAVE_SIGSET instead? */ 
3825       if (sigset(catched_signals[idx], sig_handler) == SIG_ERR)
3826 #else
3827       if (signal(catched_signals[idx], sig_handler) == SIG_ERR)
3828 #endif /* ifdef sun */
3829       {
3830          log_error(LOG_LEVEL_FATAL, "Can't set signal-handler for signal %d: %E", catched_signals[idx]);
3831       }
3832    }
3833
3834    for (idx = 0; ignored_signals[idx] != 0; idx++)
3835    {
3836       if (signal(ignored_signals[idx], SIG_IGN) == SIG_ERR)
3837       {
3838          log_error(LOG_LEVEL_FATAL, "Can't set ignore-handler for signal %d: %E", ignored_signals[idx]);
3839       }
3840    }
3841
3842 }
3843 #else /* ifdef _WIN32 */
3844 # ifdef _WIN_CONSOLE
3845    /*
3846     * We *are* in a windows console app.
3847     * Print a verbose messages about FAQ's and such
3848     */
3849    printf("%s", win32_blurb);
3850 # endif /* def _WIN_CONSOLE */
3851 #endif /* def _WIN32 */
3852
3853
3854    /* Initialize the CGI subsystem */
3855    cgi_init_error_messages();
3856
3857    /*
3858     * If runnig on unix and without the --nodaemon
3859     * option, become a daemon. I.e. fork, detach
3860     * from tty and get process group leadership
3861     */
3862 #if defined(unix)
3863 {
3864    pid_t pid = 0;
3865 #if 0
3866    int   fd;
3867 #endif
3868
3869    if (!no_daemon)
3870    {
3871       pid  = fork();
3872
3873       if ( pid < 0 ) /* error */
3874       {
3875          perror("fork");
3876          exit( 3 );
3877       }
3878       else if ( pid != 0 ) /* parent */
3879       {
3880          int status;
3881          pid_t wpid;
3882          /*
3883           * must check for errors
3884           * child died due to missing files aso
3885           */
3886          sleep( 1 );
3887          wpid = waitpid( pid, &status, WNOHANG );
3888          if ( wpid != 0 )
3889          {
3890             exit( 1 );
3891          }
3892          exit( 0 );
3893       }
3894       /* child */
3895 #if 1
3896       /* Should be more portable, but not as well tested */
3897       setsid();
3898 #else /* !1 */
3899 #ifdef __FreeBSD__
3900       setpgrp(0,0);
3901 #else /* ndef __FreeBSD__ */
3902       setpgrp();
3903 #endif /* ndef __FreeBSD__ */
3904       fd = open("/dev/tty", O_RDONLY);
3905       if ( fd )
3906       {
3907          /* no error check here */
3908          ioctl( fd, TIOCNOTTY,0 );
3909          close ( fd );
3910       }
3911 #endif /* 1 */
3912       /*
3913        * stderr (fd 2) will be closed later on,
3914        * when the config file has been parsed.
3915        */
3916
3917       close( 0 );
3918       close( 1 );
3919       chdir("/");
3920
3921    } /* -END- if (!no_daemon) */
3922
3923    /*
3924     * As soon as we have written the PID file, we can switch
3925     * to the user and group ID indicated by the --user option
3926     */
3927    write_pid_file();
3928
3929    if (NULL != pw)
3930    {
3931       if (setgid((NULL != grp) ? grp->gr_gid : pw->pw_gid))
3932       {
3933          log_error(LOG_LEVEL_FATAL, "Cannot setgid(): Insufficient permissions.");
3934       }
3935       if (NULL != grp)
3936       {
3937          if (setgroups(1, &grp->gr_gid))
3938          {
3939             log_error(LOG_LEVEL_FATAL, "setgroups() failed: %E");
3940          }
3941       }
3942       else if (initgroups(pw->pw_name, pw->pw_gid))
3943       {
3944          log_error(LOG_LEVEL_FATAL, "initgroups() failed: %E");
3945       }
3946       if (do_chroot)
3947       {
3948          if (!pw->pw_dir)
3949          {
3950             log_error(LOG_LEVEL_FATAL, "Home directory for %s undefined", pw->pw_name);
3951          }
3952          /* Read the time zone file from /etc before doing chroot. */
3953          tzset();
3954          if (NULL != pre_chroot_nslookup_to_load_resolver
3955              && '\0' != pre_chroot_nslookup_to_load_resolver[0])
3956          {
3957             /* Initialize resolver library. */
3958             (void) resolve_hostname_to_ip(pre_chroot_nslookup_to_load_resolver);
3959          }
3960          if (chroot(pw->pw_dir) < 0)
3961          {
3962             log_error(LOG_LEVEL_FATAL, "Cannot chroot to %s", pw->pw_dir);
3963          }
3964          if (chdir ("/"))
3965          {
3966             log_error(LOG_LEVEL_FATAL, "Cannot chdir /");
3967          }
3968       }
3969       if (setuid(pw->pw_uid))
3970       {
3971          log_error(LOG_LEVEL_FATAL, "Cannot setuid(): Insufficient permissions.");
3972       }
3973       if (do_chroot)
3974       {
3975          char putenv_dummy[64];
3976
3977          strlcpy(putenv_dummy, "HOME=/", sizeof(putenv_dummy));
3978          if (putenv(putenv_dummy) != 0)
3979          {
3980             log_error(LOG_LEVEL_FATAL, "Cannot putenv(): HOME");
3981          }                
3982
3983          snprintf(putenv_dummy, sizeof(putenv_dummy), "USER=%s", pw->pw_name);
3984          if (putenv(putenv_dummy) != 0)
3985          {
3986             log_error(LOG_LEVEL_FATAL, "Cannot putenv(): USER");
3987          }
3988       }
3989    }
3990    else if (do_chroot)
3991    {
3992       log_error(LOG_LEVEL_FATAL, "Cannot chroot without --user argument.");
3993    }
3994 }
3995 #endif /* defined unix */
3996
3997 #ifdef _WIN32
3998    /* This will be FALSE unless the command line specified --service
3999     */
4000    if (bRunAsService)
4001    {
4002       /* Yup, so now we must attempt to establish a connection 
4003        * with the service dispatcher. This will only work if this
4004        * process was launched by the service control manager to
4005        * actually run as a service. If this isn't the case, i've
4006        * known it take around 30 seconds or so for the call to return.
4007        */
4008
4009       /* The StartServiceCtrlDispatcher won't return until the service is stopping */
4010       if (w32_start_service_ctrl_dispatcher(w32ServiceDispatchTable))
4011       {
4012          /* Service has run, and at this point is now being stopped, so just return */
4013          return 0;
4014       }
4015
4016 #ifdef _WIN_CONSOLE
4017       printf("Warning: Failed to connect to Service Control Dispatcher\nwhen starting as a service!\n");
4018 #endif
4019       /* An error occurred. Usually it's because --service was wrongly specified
4020        * and we were unable to connect to the Service Control Dispatcher because
4021        * it wasn't expecting us and is therefore not listening.
4022        *
4023        * For now, just continue below to call the listen_loop function.
4024        */
4025    }
4026 #endif /* def _WIN32 */
4027
4028    listen_loop();
4029
4030    /* NOTREACHED */
4031    return(-1);
4032
4033 }
4034
4035
4036 /*********************************************************************
4037  *
4038  * Function    :  bind_port_helper
4039  *
4040  * Description :  Bind the listen port.  Handles logging, and aborts
4041  *                on failure.
4042  *
4043  * Parameters  :
4044  *          1  :  config = Privoxy configuration.  Specifies port
4045  *                         to bind to.
4046  *
4047  * Returns     :  Port that was opened.
4048  *
4049  *********************************************************************/
4050 static jb_socket bind_port_helper(struct configuration_spec * config)
4051 {
4052    int result;
4053    jb_socket bfd;
4054
4055    if (config->haddr == NULL)
4056    {
4057       log_error(LOG_LEVEL_INFO, "Listening on port %d on all IP addresses",
4058                 config->hport);
4059    }
4060    else
4061    {
4062       log_error(LOG_LEVEL_INFO, "Listening on port %d on IP address %s",
4063                 config->hport, config->haddr);
4064    }
4065
4066    result = bind_port(config->haddr, config->hport, &bfd);
4067
4068    if (result < 0)
4069    {
4070       switch(result)
4071       {
4072          case -3 :
4073             log_error(LOG_LEVEL_FATAL, "can't bind to %s:%d: "
4074                "There may be another Privoxy or some other "
4075                "proxy running on port %d",
4076                (NULL != config->haddr) ? config->haddr : "INADDR_ANY",
4077                       config->hport, config->hport);
4078
4079          case -2 :
4080             log_error(LOG_LEVEL_FATAL, "can't bind to %s:%d: " 
4081                "The hostname is not resolvable",
4082                (NULL != config->haddr) ? config->haddr : "INADDR_ANY", config->hport);
4083
4084          default :
4085             log_error(LOG_LEVEL_FATAL, "can't bind to %s:%d: because %E",
4086                (NULL != config->haddr) ? config->haddr : "INADDR_ANY", config->hport);
4087       }
4088
4089       /* shouldn't get here */
4090       return JB_INVALID_SOCKET;
4091    }
4092
4093    config->need_bind = 0;
4094
4095    return bfd;
4096 }
4097
4098
4099 #ifdef _WIN32
4100 /* Without this simple workaround we get this compiler warning from _beginthread
4101  *     warning C4028: formal parameter 1 different from declaration
4102  */
4103 void w32_service_listen_loop(void *p)
4104 {
4105    listen_loop();
4106 }
4107 #endif /* def _WIN32 */
4108
4109
4110 /*********************************************************************
4111  *
4112  * Function    :  listen_loop
4113  *
4114  * Description :  bind the listen port and enter a "FOREVER" listening loop.
4115  *
4116  * Parameters  :  N/A
4117  *
4118  * Returns     :  Never.
4119  *
4120  *********************************************************************/
4121 static void listen_loop(void)
4122 {
4123    struct client_state *csp = NULL;
4124    jb_socket bfd;
4125    struct configuration_spec * config;
4126
4127    config = load_config();
4128
4129 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
4130    /*
4131     * XXX: Should be relocated once it no
4132     * longer needs to emit log messages.
4133     */
4134    initialize_reusable_connections();
4135 #endif /* def FEATURE_CONNECTION_KEEP_ALIVE */
4136
4137    bfd = bind_port_helper(config);
4138
4139 #ifdef FEATURE_GRACEFUL_TERMINATION
4140    while (!g_terminate)
4141 #else
4142    for (;;)
4143 #endif
4144    {
4145 #if !defined(FEATURE_PTHREAD) && !defined(_WIN32) && !defined(__BEOS__) && !defined(AMIGA) && !defined(__OS2__)
4146       while (waitpid(-1, NULL, WNOHANG) > 0)
4147       {
4148          /* zombie children */
4149       }
4150 #endif /* !defined(FEATURE_PTHREAD) && !defined(_WIN32) && !defined(__BEOS__) && !defined(AMIGA) */
4151
4152       /*
4153        * Free data that was used by died threads
4154        */
4155       sweep();
4156
4157 #if defined(unix)
4158       /*
4159        * Re-open the errlog after HUP signal
4160        */
4161       if (received_hup_signal)
4162       {
4163          if (NULL != config->logfile)
4164          {
4165             init_error_log(Argv[0], config->logfile);
4166          }
4167          received_hup_signal = 0;
4168       }
4169 #endif
4170
4171       if ( NULL == (csp = (struct client_state *) zalloc(sizeof(*csp))) )
4172       {
4173          log_error(LOG_LEVEL_FATAL, "malloc(%d) for csp failed: %E", sizeof(*csp));
4174          continue;
4175       }
4176
4177       csp->flags |= CSP_FLAG_ACTIVE;
4178       csp->sfd    = JB_INVALID_SOCKET;
4179
4180       csp->config = config = load_config();
4181
4182       if ( config->need_bind )
4183       {
4184          /*
4185           * Since we were listening to the "old port", we will not see
4186           * a "listen" param change until the next IJB request.  So, at
4187           * least 1 more request must be made for us to find the new
4188           * setting.  I am simply closing the old socket and binding the
4189           * new one.
4190           *
4191           * Which-ever is correct, we will serve 1 more page via the
4192           * old settings.  This should probably be a "show-proxy-args"
4193           * request.  This should not be a so common of an operation
4194           * that this will hurt people's feelings.
4195           */
4196
4197          close_socket(bfd);
4198
4199          bfd = bind_port_helper(config);
4200       }
4201
4202       log_error(LOG_LEVEL_CONNECT, "Listening for new connections ... ");
4203
4204       if (!accept_connection(csp, bfd))
4205       {
4206          log_error(LOG_LEVEL_CONNECT, "accept failed: %E");
4207
4208 #ifdef AMIGA
4209          if(!childs)
4210          {
4211             exit(1);
4212          }
4213 #endif
4214          freez(csp);
4215          continue;
4216       }
4217       else
4218       {
4219          log_error(LOG_LEVEL_CONNECT, "accepted connection from %s", csp->ip_addr_str);
4220       }
4221
4222 #ifdef FEATURE_TOGGLE
4223       if (global_toggle_state)
4224 #endif /* def FEATURE_TOGGLE */
4225       {
4226          csp->flags |= CSP_FLAG_TOGGLED_ON;
4227       }
4228
4229       if (run_loader(csp))
4230       {
4231          log_error(LOG_LEVEL_FATAL, "a loader failed - must exit");
4232          /* Never get here - LOG_LEVEL_FATAL causes program exit */
4233       }
4234
4235 #ifdef FEATURE_ACL
4236       if (block_acl(NULL,csp))
4237       {
4238          log_error(LOG_LEVEL_CONNECT, "Connection from %s dropped due to ACL", csp->ip_addr_str);
4239          close_socket(csp->cfd);
4240          freez(csp);
4241          continue;
4242       }
4243 #endif /* def FEATURE_ACL */
4244
4245       /* add it to the list of clients */
4246       csp->next = clients->next;
4247       clients->next = csp;
4248
4249       if (config->multi_threaded)
4250       {
4251          int child_id;
4252
4253 /* this is a switch () statment in the C preprocessor - ugh */
4254 #undef SELECTED_ONE_OPTION
4255
4256 /* Use Pthreads in preference to native code */
4257 #if defined(FEATURE_PTHREAD) && !defined(SELECTED_ONE_OPTION)
4258 #define SELECTED_ONE_OPTION
4259          {
4260             pthread_t the_thread;
4261             pthread_attr_t attrs;
4262
4263             pthread_attr_init(&attrs);
4264             pthread_attr_setdetachstate(&attrs, PTHREAD_CREATE_DETACHED);
4265             errno = pthread_create(&the_thread, &attrs,
4266                (void * (*)(void *))serve, csp);
4267             child_id = errno ? -1 : 0;
4268             pthread_attr_destroy(&attrs);
4269          }
4270 #endif
4271
4272 #if defined(_WIN32) && !defined(_CYGWIN) && !defined(SELECTED_ONE_OPTION)
4273 #define SELECTED_ONE_OPTION
4274          child_id = _beginthread(
4275             (void (*)(void *))serve,
4276             64 * 1024,
4277             csp);
4278 #endif
4279
4280 #if defined(__OS2__) && !defined(SELECTED_ONE_OPTION)
4281 #define SELECTED_ONE_OPTION
4282          child_id = _beginthread(
4283             (void(* _Optlink)(void*))serve,
4284             NULL,
4285             64 * 1024,
4286             csp);
4287 #endif
4288
4289 #if defined(__BEOS__) && !defined(SELECTED_ONE_OPTION)
4290 #define SELECTED_ONE_OPTION
4291          {
4292             thread_id tid = spawn_thread
4293                (server_thread, "server", B_NORMAL_PRIORITY, csp);
4294
4295             if ((tid >= 0) && (resume_thread(tid) == B_OK))
4296             {
4297                child_id = (int) tid;
4298             }
4299             else
4300             {
4301                child_id = -1;
4302             }
4303          }
4304 #endif
4305
4306 #if defined(AMIGA) && !defined(SELECTED_ONE_OPTION)
4307 #define SELECTED_ONE_OPTION
4308          csp->cfd = ReleaseSocket(csp->cfd, -1);
4309          
4310 #ifdef __amigaos4__
4311          child_id = (int)CreateNewProcTags(NP_Entry, (ULONG)server_thread,
4312                                            NP_Output, Output(),
4313                                            NP_CloseOutput, FALSE,
4314                                            NP_Name, (ULONG)"privoxy child",
4315                                            NP_Child, TRUE,
4316                                            TAG_DONE);
4317 #else
4318          child_id = (int)CreateNewProcTags(NP_Entry, (ULONG)server_thread,
4319                                            NP_Output, Output(),
4320                                            NP_CloseOutput, FALSE,
4321                                            NP_Name, (ULONG)"privoxy child",
4322                                            NP_StackSize, 200*1024,
4323                                            TAG_DONE);
4324 #endif
4325          if(0 != child_id)
4326          {
4327             childs++;
4328             ((struct Task *)child_id)->tc_UserData = csp;
4329             Signal((struct Task *)child_id, SIGF_SINGLE);
4330             Wait(SIGF_SINGLE);
4331          }
4332 #endif
4333
4334 #if !defined(SELECTED_ONE_OPTION)
4335          child_id = fork();
4336
4337          /* This block is only needed when using fork().
4338           * When using threads, the server thread was
4339           * created and run by the call to _beginthread().
4340           */
4341          if (child_id == 0)   /* child */
4342          {
4343             int rc = 0;
4344 #ifdef FEATURE_TOGGLE
4345             int inherited_toggle_state = global_toggle_state;
4346 #endif /* def FEATURE_TOGGLE */
4347
4348             serve(csp);
4349
4350             /* 
4351              * If we've been toggled or we've blocked the request, tell Mom
4352              */
4353
4354 #ifdef FEATURE_TOGGLE
4355             if (inherited_toggle_state != global_toggle_state)
4356             {
4357                rc |= RC_FLAG_TOGGLED;
4358             }
4359 #endif /* def FEATURE_TOGGLE */
4360
4361 #ifdef FEATURE_STATISTICS  
4362             if (csp->flags & CSP_FLAG_REJECTED)
4363             {
4364                rc |= RC_FLAG_BLOCKED;
4365             }
4366 #endif /* ndef FEATURE_STATISTICS */
4367
4368             _exit(rc);
4369          }
4370          else if (child_id > 0) /* parent */
4371          {
4372             /* in a fork()'d environment, the parent's
4373              * copy of the client socket and the CSP
4374              * are not used.
4375              */
4376             int child_status;
4377 #if !defined(_WIN32) && !defined(__CYGWIN__)
4378
4379             wait( &child_status );
4380
4381             /* 
4382              * Evaluate child's return code: If the child has
4383              *  - been toggled, toggle ourselves
4384              *  - blocked its request, bump up the stats counter
4385              */
4386
4387 #ifdef FEATURE_TOGGLE
4388             if (WIFEXITED(child_status) && (WEXITSTATUS(child_status) & RC_FLAG_TOGGLED))
4389             {
4390                global_toggle_state = !global_toggle_state;
4391             }
4392 #endif /* def FEATURE_TOGGLE */
4393
4394 #ifdef FEATURE_STATISTICS
4395             urls_read++;
4396             if (WIFEXITED(child_status) && (WEXITSTATUS(child_status) & RC_FLAG_BLOCKED))
4397             {
4398                urls_rejected++;
4399             }
4400 #endif /* def FEATURE_STATISTICS */ 
4401
4402 #endif /* !defined(_WIN32) && defined(__CYGWIN__) */
4403             close_socket(csp->cfd);
4404             csp->flags &= ~CSP_FLAG_ACTIVE;
4405          }
4406 #endif
4407
4408 #undef SELECTED_ONE_OPTION
4409 /* end of cpp switch () */
4410
4411          if (child_id < 0) /* failed */
4412          {
4413             char buf[BUFFER_SIZE];
4414
4415             log_error(LOG_LEVEL_ERROR, "can't fork: %E");
4416
4417             snprintf(buf , sizeof(buf), "Privoxy: can't fork: errno = %d", errno);
4418
4419             write_socket(csp->cfd, buf, strlen(buf));
4420             close_socket(csp->cfd);
4421             csp->flags &= ~CSP_FLAG_ACTIVE;
4422             sleep(5);
4423             continue;
4424          }
4425       }
4426       else
4427       {
4428          serve(csp);
4429       }
4430    }
4431
4432    /* NOTREACHED unless FEATURE_GRACEFUL_TERMINATION is defined */
4433
4434    /* Clean up.  Aim: free all memory (no leaks) */
4435 #ifdef FEATURE_GRACEFUL_TERMINATION
4436
4437    log_error(LOG_LEVEL_ERROR, "Graceful termination requested");
4438
4439    unload_current_config_file();
4440    unload_current_actions_file();
4441    unload_current_re_filterfile();
4442 #ifdef FEATURE_TRUST
4443    unload_current_trust_file();
4444 #endif
4445
4446    if (config->multi_threaded)
4447    {
4448       int i = 60;
4449       do
4450       {
4451          sleep(1);
4452          sweep();
4453       } while ((clients->next != NULL) && (--i > 0));
4454
4455       if (i <= 0)
4456       {
4457          log_error(LOG_LEVEL_ERROR, "Graceful termination failed - still some live clients after 1 minute wait.");
4458       }
4459    }
4460    sweep();
4461    sweep();
4462
4463 #if defined(unix)
4464    freez(basedir);
4465 #endif
4466    freez(configfile);
4467
4468 #if defined(_WIN32) && !defined(_WIN_CONSOLE)
4469    /* Cleanup - remove taskbar icon etc. */
4470    TermLogWindow();
4471 #endif
4472
4473    exit(0);
4474 #endif /* FEATURE_GRACEFUL_TERMINATION */
4475
4476 }
4477
4478
4479 /*
4480   Local Variables:
4481   tab-width: 3
4482   end:
4483 */