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