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