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