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