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