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