5dd10e03cb627f5b7e85a3c9d0b6ca0fb52e5b89
[privoxy.git] / src / 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/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
985       string_append(&http->cmd, " ");
986       string_append(&http->cmd, http->ver);
987
988       if (http->cmd == NULL)
989       {
990          log_error(LOG_LEVEL_FATAL, "Out of memory rewiting SSL command");
991       }
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     * We have a request. Now, check to see if we need to
1047     * intercept it, i.e. If ..
1048     */
1049
1050    if (
1051        /* a CGI call was detected and answered */
1052        (NULL != (rsp = dispatch_cgi(csp)))
1053
1054        /* or we are enabled and... */
1055        || (IS_ENABLED_AND (
1056
1057             /* ..the request was blocked */
1058           ( NULL != (rsp = block_url(csp)))
1059
1060           /* ..or untrusted */
1061 #ifdef FEATURE_TRUST
1062           || ( NULL != (rsp = trust_url(csp)))
1063 #endif /* def FEATURE_TRUST */
1064
1065           /* ..or a fast redirect kicked in */
1066 #ifdef FEATURE_FAST_REDIRECTS
1067           || (((csp->action->flags & ACTION_FAST_REDIRECTS) != 0) &&
1068                 (NULL != (rsp = redirect_url(csp))))
1069 #endif /* def FEATURE_FAST_REDIRECTS */
1070           ))
1071       )
1072    {
1073       /* Write the answer to the client */
1074       if (write_socket(csp->cfd, rsp->head, rsp->head_length)
1075        || write_socket(csp->cfd, rsp->body, rsp->content_length))
1076       {
1077          log_error(LOG_LEVEL_ERROR, "write to: %s failed: %E", http->host);
1078       }
1079
1080 #ifdef FEATURE_STATISTICS
1081       /* Count as a rejected request */
1082       csp->flags |= CSP_FLAG_REJECTED;
1083 #endif /* def FEATURE_STATISTICS */
1084
1085       /* Log (FIXME: All intercept reasons apprear as "crunch" with Status 200) */
1086       log_error(LOG_LEVEL_GPC, "%s%s crunch!", http->hostport, http->path);
1087       log_error(LOG_LEVEL_CLF, "%s - - [%T] \"%s\" 200 3", csp->ip_addr_str, http->ocmd);
1088
1089       /* Clean up and return */
1090       free_http_response(rsp);
1091       return;
1092    }
1093
1094    log_error(LOG_LEVEL_GPC, "%s%s", http->hostport, http->path);
1095
1096    if (fwd->forward_host)
1097    {
1098       log_error(LOG_LEVEL_CONNECT, "via %s:%d to: %s",
1099                fwd->forward_host, fwd->forward_port, http->hostport);
1100    }
1101    else
1102    {
1103       log_error(LOG_LEVEL_CONNECT, "to %s", http->hostport);
1104    }
1105
1106    /* here we connect to the server, gateway, or the forwarder */
1107
1108    csp->sfd = forwarded_connect(fwd, http, csp);
1109
1110    if (csp->sfd == JB_INVALID_SOCKET)
1111    {
1112       log_error(LOG_LEVEL_CONNECT, "connect to: %s failed: %E",
1113                 http->hostport);
1114
1115       if (errno == EINVAL)
1116       {
1117          rsp = error_response(csp, "no-such-domain", errno);
1118
1119          log_error(LOG_LEVEL_CLF, "%s - - [%T] \"%s\" 404 0",
1120                    csp->ip_addr_str, http->ocmd);
1121       }
1122       else
1123       {
1124          rsp = error_response(csp, "connect-failed", errno);
1125
1126          log_error(LOG_LEVEL_CLF, "%s - - [%T] \"%s\" 503 0",
1127                    csp->ip_addr_str, http->ocmd);
1128       }
1129
1130
1131       /* Write the answer to the client */
1132       if(rsp)
1133       {
1134          if (write_socket(csp->cfd, rsp->head, rsp->head_length)
1135           || write_socket(csp->cfd, rsp->body, rsp->content_length))
1136          {
1137             log_error(LOG_LEVEL_ERROR, "write to: %s failed: %E", http->host);
1138          }
1139       }
1140
1141       free_http_response(rsp);
1142       return;
1143    }
1144
1145    log_error(LOG_LEVEL_CONNECT, "OK");
1146
1147    hdr = sed(client_patterns, add_client_headers, csp);
1148    if (hdr == NULL)
1149    {
1150       /* FIXME Should handle error properly */
1151       log_error(LOG_LEVEL_FATAL, "Out of memory parsing client header");
1152    }
1153
1154    list_remove_all(csp->headers);
1155
1156    if (fwd->forward_host || (http->ssl == 0))
1157    {
1158       /* write the client's (modified) header to the server
1159        * (along with anything else that may be in the buffer)
1160        */
1161
1162       if (write_socket(csp->sfd, hdr, strlen(hdr))
1163        || (flush_socket(csp->sfd, csp) <  0))
1164       {
1165          log_error(LOG_LEVEL_CONNECT, "write header to: %s failed: %E",
1166                     http->hostport);
1167
1168          log_error(LOG_LEVEL_CLF, "%s - - [%T] \"%s\" 503 0",
1169                    csp->ip_addr_str, http->ocmd);
1170
1171          rsp = error_response(csp, "connect-failed", errno);
1172
1173          if(rsp)
1174          {
1175             if (write_socket(csp->cfd, rsp->head, rsp->head_length)
1176              || write_socket(csp->cfd, rsp->body, rsp->content_length))
1177             {
1178                log_error(LOG_LEVEL_ERROR, "write to: %s failed: %E", http->host);
1179             }
1180          }
1181
1182          free_http_response(rsp);
1183          freez(hdr);
1184          return;
1185       }
1186    }
1187    else
1188    {
1189       /*
1190        * We're running an SSL tunnel and we're not forwarding,
1191        * so just send the "connect succeeded" message to the
1192        * client, flush the rest, and get out of the way.
1193        */
1194       log_error(LOG_LEVEL_CLF, "%s - - [%T] \"%s\" 200 2\n",
1195                 csp->ip_addr_str, http->ocmd);
1196
1197       if (write_socket(csp->cfd, CSUCCEED, sizeof(CSUCCEED)-1))
1198       {
1199          freez(hdr);
1200          return;
1201       }
1202       IOB_RESET(csp);
1203    }
1204
1205    /* we're finished with the client's header */
1206    freez(hdr);
1207
1208    maxfd = ( csp->cfd > csp->sfd ) ? csp->cfd : csp->sfd;
1209
1210    /* pass data between the client and server
1211     * until one or the other shuts down the connection.
1212     */
1213
1214    server_body = 0;
1215
1216    for (;;)
1217    {
1218 #ifdef __OS2__
1219       /*
1220        * FD_ZERO here seems to point to an errant macro which crashes.
1221        * So do this by hand for now...
1222        */
1223       memset(&rfds,0x00,sizeof(fd_set));
1224 #else
1225       FD_ZERO(&rfds);
1226 #endif
1227       FD_SET(csp->cfd, &rfds);
1228       FD_SET(csp->sfd, &rfds);
1229
1230       n = select((int)maxfd+1, &rfds, NULL, NULL, NULL);
1231
1232       if (n < 0)
1233       {
1234          log_error(LOG_LEVEL_ERROR, "select() failed!: %E");
1235          return;
1236       }
1237
1238       /* this is the body of the browser's request
1239        * just read it and write it.
1240        */
1241
1242       if (FD_ISSET(csp->cfd, &rfds))
1243       {
1244          len = read_socket(csp->cfd, buf, sizeof(buf));
1245
1246          if (len <= 0)
1247          {
1248             break; /* "game over, man" */
1249          }
1250
1251          if (write_socket(csp->sfd, buf, (size_t)len))
1252          {
1253             log_error(LOG_LEVEL_ERROR, "write to: %s failed: %E", http->host);
1254             return;
1255          }
1256          continue;
1257       }
1258
1259       /*
1260        * The server wants to talk.  It could be the header or the body.
1261        * If `hdr' is null, then it's the header otherwise it's the body.
1262        * FIXME: Does `hdr' really mean `host'? No.
1263        */
1264
1265
1266       if (FD_ISSET(csp->sfd, &rfds))
1267       {
1268          fflush( 0 );
1269          len = read_socket(csp->sfd, buf, sizeof(buf) - 1);
1270
1271          if (len < 0)
1272          {
1273             log_error(LOG_LEVEL_ERROR, "read from: %s failed: %E", http->host);
1274
1275             log_error(LOG_LEVEL_CLF, "%s - - [%T] \"%s\" 503 0",
1276                       csp->ip_addr_str, http->ocmd);
1277
1278             rsp = error_response(csp, "connect-failed", errno);
1279
1280             if(rsp)
1281             {
1282                if (write_socket(csp->cfd, rsp->head, rsp->head_length)
1283                 || write_socket(csp->cfd, rsp->body, rsp->content_length))
1284                {
1285                   log_error(LOG_LEVEL_ERROR, "write to: %s failed: %E", http->host);
1286                }
1287             }
1288
1289             free_http_response(rsp);
1290             return;
1291          }
1292
1293          /* Add a trailing zero.  This lets filter_popups
1294           * use string operations.
1295           */
1296          buf[len] = '\0';
1297
1298 #ifdef FEATURE_KILL_POPUPS
1299          /* Filter the popups on this read. */
1300          if (block_popups_now)
1301          {
1302             filter_popups(buf, csp);
1303          }
1304 #endif /* def FEATURE_KILL_POPUPS */
1305
1306          /* Normally, this would indicate that we've read
1307           * as much as the server has sent us and we can
1308           * close the client connection.  However, Microsoft
1309           * in its wisdom has released IIS/5 with a bug that
1310           * prevents it from sending the trailing \r\n in
1311           * a 302 redirect header (and possibly other headers).
1312           * To work around this if we've haven't parsed
1313           * a full header we'll append a trailing \r\n
1314           * and see if this now generates a valid one.
1315           *
1316           * This hack shouldn't have any impacts.  If we've
1317           * already transmitted the header or if this is a
1318           * SSL connection, then we won't bother with this
1319           * hack.  So we only work on partially received
1320           * headers.  If we append a \r\n and this still
1321           * doesn't generate a valid header, then we won't
1322           * transmit anything to the client.
1323           */
1324          if (len == 0)
1325          {
1326
1327             if (server_body || http->ssl)
1328             {
1329                /*
1330                 * If we have been buffering up the document,
1331                 * now is the time to apply content modification
1332                 * and send the result to the client.
1333                 */
1334                if (content_filter)
1335                {
1336                   /*
1337                    * If the content filter fails, use the original
1338                    * buffer and length.
1339                    * (see p != NULL ? p : csp->iob->cur below)
1340                    */
1341                   if (NULL == (p = (*content_filter)(csp)))
1342                   {
1343                      csp->content_length = csp->iob->eod - csp->iob->cur;
1344                   }
1345
1346                   hdr = sed(server_patterns, add_server_headers, csp);
1347                   if (hdr == NULL)
1348                   {
1349                      /* FIXME Should handle error properly */
1350                      log_error(LOG_LEVEL_FATAL, "Out of memory parsing server header");
1351                   }
1352
1353                   if (write_socket(csp->cfd, hdr, strlen(hdr))
1354                    || write_socket(csp->cfd, p != NULL ? p : csp->iob->cur, csp->content_length))
1355                   {
1356                      log_error(LOG_LEVEL_ERROR, "write modified content to client failed: %E");
1357                      return;
1358                   }
1359
1360                   freez(hdr);
1361                   if (NULL != p) {
1362                      freez(p);
1363                   }
1364                }
1365
1366                break; /* "game over, man" */
1367             }
1368
1369             /*
1370              * This is NOT the body, so
1371              * Let's pretend the server just sent us a blank line.
1372              */
1373             len = sprintf(buf, "\r\n");
1374
1375             /*
1376              * Now, let the normal header parsing algorithm below do its
1377              * job.  If it fails, we'll exit instead of continuing.
1378              */
1379
1380             ms_iis5_hack = 1;
1381          }
1382
1383          /*
1384           * If this is an SSL connection or we're in the body
1385           * of the server document, just write it to the client,
1386           * unless we need to buffer the body for later content-filtering
1387           */
1388
1389          if (server_body || http->ssl)
1390          {
1391             if (content_filter)
1392             {
1393                /*
1394                 * If there is no memory left for buffering the content, or the buffer limit
1395                 * has been reached, switch to non-filtering mode, i.e. make & write the
1396                 * header, flush the iob and buf, and get out of the way.
1397                 */
1398                if (add_to_iob(csp, buf, len))
1399                {
1400                   size_t hdrlen;
1401                   int flushed;
1402
1403                   log_error(LOG_LEVEL_ERROR, "Flushing header and buffers. Stepping back from filtering.");
1404
1405                   hdr = sed(server_patterns, add_server_headers, csp);
1406                   if (hdr == NULL)
1407                   {
1408                      /* 
1409                       * Memory is too tight to even generate the header.
1410                       * Send our static "Out-of-memory" page.
1411                       */
1412                      log_error(LOG_LEVEL_ERROR, "Out of memory while trying to flush.");
1413                      rsp = cgi_error_memory();
1414
1415                      if (write_socket(csp->cfd, rsp->head, rsp->head_length)
1416                          || write_socket(csp->cfd, rsp->body, rsp->content_length))
1417                      {
1418                         log_error(LOG_LEVEL_ERROR, "write to: %s failed: %E", http->host);
1419                      }
1420                      return;
1421                   }
1422
1423                   hdrlen = strlen(hdr);
1424
1425                   if (write_socket(csp->cfd, hdr, hdrlen)
1426                    || ((flushed = flush_socket(csp->cfd, csp)) < 0)
1427                    || (write_socket(csp->cfd, buf, len)))
1428                   {
1429                      log_error(LOG_LEVEL_CONNECT, "Flush header and buffers to client failed: %E");
1430
1431                      freez(hdr);
1432                      return;
1433                   }
1434
1435                   byte_count += hdrlen + flushed + len;
1436                   freez(hdr);
1437                   content_filter = NULL;
1438                   server_body = 1;
1439
1440                }
1441             }
1442             else
1443             {
1444                if (write_socket(csp->cfd, buf, (size_t)len))
1445                {
1446                   log_error(LOG_LEVEL_ERROR, "write to client failed: %E");
1447                   return;
1448                }
1449             }
1450             byte_count += len;
1451             continue;
1452          }
1453          else
1454          {
1455             /* we're still looking for the end of the
1456              * server's header ... (does that make header
1457              * parsing an "out of body experience" ?
1458              */
1459
1460             /* 
1461              * buffer up the data we just read.  If that fails, 
1462              * there's little we can do but send our static
1463              * out-of-memory page.
1464              */
1465             if (add_to_iob(csp, buf, len))
1466             {
1467                log_error(LOG_LEVEL_ERROR, "Out of memory while looking for end of server headers.");
1468                rsp = cgi_error_memory();
1469                
1470                if (write_socket(csp->cfd, rsp->head, rsp->head_length)
1471                    || write_socket(csp->cfd, rsp->body, rsp->content_length))
1472                {
1473                   log_error(LOG_LEVEL_ERROR, "write to: %s failed: %E", http->host);
1474                }
1475                return;
1476             }
1477
1478             /* get header lines from the iob */
1479
1480             while ((p = get_header(csp)) != NULL)
1481             {
1482                if (*p == '\0')
1483                {
1484                   /* see following note */
1485                   break;
1486                }
1487                enlist(csp->headers, p);
1488                freez(p);
1489             }
1490
1491             /* NOTE: there are no "empty" headers so
1492              * if the pointer `p' is not NULL we must
1493              * assume that we reached the end of the
1494              * buffer before we hit the end of the header.
1495              */
1496
1497             if (p)
1498             {
1499                if (ms_iis5_hack)
1500                {
1501                   /* Well, we tried our MS IIS/5
1502                    * hack and it didn't work.
1503                    * The header is incomplete
1504                    * and there isn't anything
1505                    * we can do about it.
1506                    */
1507                   break;
1508                }
1509                else
1510                {
1511                   /* Since we have to wait for
1512                    * more from the server before
1513                    * we can parse the headers
1514                    * we just continue here.
1515                    */
1516                   continue;
1517                }
1518             }
1519
1520             /* we have now received the entire header.
1521              * filter it and send the result to the client
1522              */
1523
1524             hdr = sed(server_patterns, add_server_headers, csp);
1525             if (hdr == NULL)
1526             {
1527                /* FIXME Should handle error properly */
1528                log_error(LOG_LEVEL_FATAL, "Out of memory parsing server header");
1529             }
1530
1531 #ifdef FEATURE_KILL_POPUPS
1532             /* Start blocking popups if appropriate. */
1533
1534             if ((csp->content_type & CT_TEXT) &&  /* It's a text / * MIME-Type */
1535                 !http->ssl    &&                  /* We talk plaintext */
1536                 block_popups)                     /* Policy allows */
1537             {
1538                block_popups_now = 1;
1539                /*
1540                 * Filter the part of the body that came in the same read
1541                 * as the last headers:
1542                 */
1543                filter_popups(csp->iob->cur, csp);
1544             }
1545
1546 #endif /* def FEATURE_KILL_POPUPS */
1547
1548             /* Buffer and pcrs filter this if appropriate. */
1549
1550             if ((csp->content_type & CT_TEXT) &&  /* It's a text / * MIME-Type */
1551                 !http->ssl    &&                  /* We talk plaintext */
1552                 pcrs_filter)                      /* Policy allows */
1553             {
1554                content_filter = pcrs_filter_response;
1555             }
1556
1557             /* Buffer and gif_deanimate this if appropriate. */
1558
1559             if ((csp->content_type & CT_GIF)  &&  /* It's a image/gif MIME-Type */
1560                 !http->ssl    &&                  /* We talk plaintext */
1561                 gif_deanimate)                    /* Policy allows */
1562             {
1563                content_filter = gif_deanimate_response;
1564             }
1565
1566             /*
1567              * Only write if we're not buffering for content modification
1568              */
1569             if (!content_filter)
1570             {
1571                /* write the server's (modified) header to
1572                 * the client (along with anything else that
1573                 * may be in the buffer)
1574                 */
1575
1576                if (write_socket(csp->cfd, hdr, strlen(hdr))
1577                 || ((len = flush_socket(csp->cfd, csp)) < 0))
1578                {
1579                   log_error(LOG_LEVEL_CONNECT, "write header to client failed: %E");
1580
1581                   /* the write failed, so don't bother
1582                    * mentioning it to the client...
1583                    * it probably can't hear us anyway.
1584                    */
1585                   freez(hdr);
1586                   return;
1587                }
1588
1589                byte_count += len;
1590             }
1591
1592             /* we're finished with the server's header */
1593
1594             freez(hdr);
1595             server_body = 1;
1596
1597             /* If this was a MS IIS/5 hack then it means
1598              * the server has already closed the
1599              * connection.  Nothing more to read.  Time
1600              * to bail.
1601              */
1602             if (ms_iis5_hack)
1603             {
1604                break;
1605             }
1606          }
1607          continue;
1608       }
1609
1610       return; /* huh? we should never get here */
1611    }
1612
1613    log_error(LOG_LEVEL_CLF, "%s - - [%T] \"%s\" 200 %d",
1614              csp->ip_addr_str, http->ocmd, byte_count);
1615 }
1616
1617
1618 /*********************************************************************
1619  *
1620  * Function    :  serve
1621  *
1622  * Description :  This is little more than chat.  We only "serve" to
1623  *                to close any socket that chat may have opened.
1624  *
1625  * Parameters  :
1626  *          1  :  csp = Current client state (buffers, headers, etc...)
1627  *
1628  * Returns     :  N/A
1629  *
1630  *********************************************************************/
1631 #ifdef AMIGA
1632 void serve(struct client_state *csp)
1633 #else /* ifndef AMIGA */
1634 static void serve(struct client_state *csp)
1635 #endif /* def AMIGA */
1636 {
1637    chat(csp);
1638    close_socket(csp->cfd);
1639
1640    if (csp->sfd != JB_INVALID_SOCKET)
1641    {
1642       close_socket(csp->sfd);
1643    }
1644
1645    csp->flags &= ~CSP_FLAG_ACTIVE;
1646
1647 }
1648
1649
1650 #ifdef __BEOS__
1651 /*********************************************************************
1652  *
1653  * Function    :  server_thread
1654  *
1655  * Description :  We only exist to call `serve' in a threaded environment.
1656  *
1657  * Parameters  :
1658  *          1  :  data = Current client state (buffers, headers, etc...)
1659  *
1660  * Returns     :  Always 0.
1661  *
1662  *********************************************************************/
1663 static int32 server_thread(void *data)
1664 {
1665    serve((struct client_state *) data);
1666    return 0;
1667
1668 }
1669 #endif
1670
1671
1672 /*********************************************************************
1673  *
1674  * Function    :  usage
1675  *
1676  * Description :  Print usage info & exit.
1677  *
1678  * Parameters  :  Pointer to argv[0] for identifying ourselves
1679  *
1680  * Returns     :  No. ,-)
1681  *
1682  *********************************************************************/
1683 void usage(const char *myname)
1684 {
1685    printf("Privoxy version " VERSION " (" HOME_PAGE_URL ")\n"
1686            "Usage: %s [--help] [--version] [--no-daemon] [--pidfile pidfile] [--user user[.group]] [configfile]\n"
1687            "Aborting.\n", myname);
1688  
1689    exit(2);
1690
1691 }
1692
1693
1694 /*********************************************************************
1695  *
1696  * Function    :  main
1697  *
1698  * Description :  Load the config file and start the listen loop.
1699  *                This function is a lot more *sane* with the `load_config'
1700  *                and `listen_loop' functions; although it stills does
1701  *                a *little* too much for my taste.
1702  *
1703  * Parameters  :
1704  *          1  :  argc = Number of parameters (including $0).
1705  *          2  :  argv = Array of (char *)'s to the parameters.
1706  *
1707  * Returns     :  1 if : can't open config file, unrecognized directive,
1708  *                stats requested in multi-thread mode, can't open the
1709  *                log file, can't open the jar file, listen port is invalid,
1710  *                any load fails, and can't bind port.
1711  *
1712  *                Else main never returns, the process must be signaled
1713  *                to terminate execution.  Or, on Windows, use the
1714  *                "File", "Exit" menu option.
1715  *
1716  *********************************************************************/
1717 #ifdef __MINGW32__
1718 int real_main(int argc, const char *argv[])
1719 #else
1720 int main(int argc, const char *argv[])
1721 #endif
1722 {
1723    int argc_pos = 0;
1724 #ifdef unix
1725    struct passwd *pw = NULL;
1726    struct group *grp = NULL;
1727    char *p;
1728 #endif
1729
1730    Argc = argc;
1731    Argv = argv;
1732
1733    configfile =
1734 #if !defined(_WIN32)
1735    "config"
1736 #else
1737    "config.txt"
1738 #endif
1739       ;
1740
1741    /*
1742     * Parse the command line arguments
1743     */
1744    while (++argc_pos < argc)
1745    {
1746 #if !defined(_WIN32) || defined(_WIN_CONSOLE)
1747
1748       if (strcmp(argv[argc_pos], "--help") == 0)
1749       {
1750          usage(argv[0]);
1751       }
1752
1753       else if(strcmp(argv[argc_pos], "--version") == 0)
1754       {
1755          printf("Privoxy version " VERSION " (" HOME_PAGE_URL ")\n");
1756          exit(0);
1757       }
1758
1759       else if (strcmp(argv[argc_pos], "--no-daemon" ) == 0)
1760       {
1761          no_daemon = 1;
1762       }
1763 #if defined(unix)
1764       else if (strcmp(argv[argc_pos], "--pidfile" ) == 0)
1765       {
1766          if (++argc_pos == argc) usage(argv[0]);
1767          pidfile = strdup(argv[argc_pos]);
1768       }
1769
1770       else if (strcmp(argv[argc_pos], "--user" ) == 0)
1771       {
1772          if (++argc_pos == argc) usage(argv[argc_pos]);
1773
1774          if ((NULL != (p = strchr(argv[argc_pos], '.'))) && *(p + 1) != '0')
1775          {
1776             *p++ = '\0';
1777             if (NULL == (grp = getgrnam(p)))
1778             {
1779                log_error(LOG_LEVEL_FATAL, "Group %s not found.", p);
1780             }
1781          }
1782
1783          if (NULL == (pw = getpwnam(argv[argc_pos])))
1784          {
1785             log_error(LOG_LEVEL_FATAL, "User %s not found.", argv[argc_pos]);
1786          }
1787
1788          if (p != NULL) *--p = '\0';
1789       }
1790 #endif /* defined(unix) */
1791       else
1792 #endif /* defined(_WIN32) && !defined(_WIN_CONSOLE) */
1793       {
1794          configfile = argv[argc_pos];
1795       }
1796
1797    } /* -END- while (more arguments) */
1798
1799 #if defined(unix)
1800    if ( *configfile != '/' )
1801    {
1802       char *abs_file;
1803
1804       /* make config-filename absolute here */
1805       if ( !(basedir = getcwd( NULL, 1024 )))
1806       {
1807          perror("get working dir failed");
1808          exit( 1 );
1809       }
1810
1811       if ( !(abs_file = malloc( strlen( basedir ) + strlen( configfile ) + 5 )))
1812       {
1813          perror("malloc failed");
1814          exit( 1 );
1815       }
1816       strcpy( abs_file, basedir );
1817       strcat( abs_file, "/" );
1818       strcat( abs_file, configfile );
1819       configfile = abs_file;
1820    }
1821 #endif /* defined unix */
1822
1823
1824    files->next = NULL;
1825
1826 #ifdef AMIGA
1827    InitAmiga();
1828 #elif defined(_WIN32)
1829    InitWin32();
1830 #endif
1831
1832    /*
1833     * Unix signal handling
1834     *
1835     * Catch the abort, interrupt and terminate signals for a graceful exit
1836     * Catch the hangup signal so the errlog can be reopened.
1837     * Ignore the broken pipe and child signals
1838     *  FIXME: Isn't ignoring the default for SIGCHLD anyway and why ignore SIGPIPE? 
1839     */
1840 #if !defined(_WIN32) && !defined(__OS2__) && !defined(AMIGA)
1841 {
1842    int idx;
1843    const int catched_signals[] = { SIGABRT, SIGTERM, SIGINT, SIGHUP, 0 };
1844    const int ignored_signals[] = { SIGPIPE, SIGCHLD, 0 };
1845
1846    for (idx = 0; catched_signals[idx] != 0; idx++)
1847    {
1848       if (signal(catched_signals[idx], sig_handler) == SIG_ERR)
1849       {
1850          log_error(LOG_LEVEL_FATAL, "Can't set signal-handler for signal %d: %E", catched_signals[idx]);
1851       }
1852    }
1853
1854    for (idx = 0; ignored_signals[idx] != 0; idx++)
1855    {
1856       if (signal(ignored_signals[idx], SIG_IGN) == SIG_ERR)
1857       {
1858          log_error(LOG_LEVEL_FATAL, "Can't set ignore-handler for signal %d: %E", ignored_signals[idx]);
1859       }
1860    }
1861
1862 }
1863 #else /* ifdef _WIN32 */
1864 # ifdef _WIN_CONSOLE
1865    /*
1866     * We *are* in a windows console app.
1867     * Print a verbose messages about FAQ's and such
1868     */
1869    printf(win32_blurb);
1870 # endif /* def _WIN_CONSOLE */
1871 #endif /* def _WIN32 */
1872
1873
1874    /* Initialize the CGI subsystem */
1875    cgi_init_error_messages();
1876
1877    /*
1878     * If runnig on unix and without the --nodaemon
1879     * option, become a daemon. I.e. fork, detach
1880     * from tty and get process group leadership
1881     */
1882 #if defined(unix)
1883 {
1884    pid_t pid = 0;
1885 #if 0
1886    int   fd;
1887 #endif
1888
1889    if (!no_daemon)
1890    {
1891       pid  = fork();
1892
1893       if ( pid < 0 ) /* error */
1894       {
1895          perror("fork");
1896          exit( 3 );
1897       }
1898       else if ( pid != 0 ) /* parent */
1899       {
1900          int status;
1901          pid_t wpid;
1902          /*
1903           * must check for errors
1904           * child died due to missing files aso
1905           */
1906          sleep( 1 );
1907          wpid = waitpid( pid, &status, WNOHANG );
1908          if ( wpid != 0 )
1909          {
1910             exit( 1 );
1911          }
1912          exit( 0 );
1913       }
1914       /* child */
1915 #if 1
1916       /* Should be more portable, but not as well tested */
1917       setsid();
1918 #else /* !1 */
1919 #ifdef __FreeBSD__
1920       setpgrp(0,0);
1921 #else /* ndef __FreeBSD__ */
1922       setpgrp();
1923 #endif /* ndef __FreeBSD__ */
1924       fd = open("/dev/tty", O_RDONLY);
1925       if ( fd )
1926       {
1927          /* no error check here */
1928          ioctl( fd, TIOCNOTTY,0 );
1929          close ( fd );
1930       }
1931 #endif /* 1 */
1932       /* FIXME: should close stderr (fd 2) here too, but the test
1933        * for existence
1934        * and load config file is done in listen_loop() and puts
1935        * some messages on stderr there.
1936        */
1937
1938       close( 0 );
1939       close( 1 );
1940       chdir("/");
1941
1942    } /* -END- if (!no_daemon) */
1943
1944    /*
1945     * As soon as we have written the PID file, we can switch
1946     * to the user and group ID indicated by the --user option
1947     */
1948    write_pid_file();
1949    
1950    if (NULL != pw)
1951    {
1952       if (((NULL != grp) && setgid(grp->gr_gid)) || (setgid(pw->pw_gid)))
1953       {
1954          log_error(LOG_LEVEL_FATAL, "Cannot setgid(): Insufficient permissions.");
1955       }
1956       if (setuid(pw->pw_uid))
1957       {
1958          log_error(LOG_LEVEL_FATAL, "Cannot setuid(): Insufficient permissions.");
1959       }
1960    }
1961 }
1962 #endif /* defined unix */
1963
1964    listen_loop();
1965
1966    /* NOTREACHED */
1967    return(-1);
1968
1969 }
1970
1971
1972 /*********************************************************************
1973  *
1974  * Function    :  bind_port_helper
1975  *
1976  * Description :  Bind the listen port.  Handles logging, and aborts
1977  *                on failure.
1978  *
1979  * Parameters  :
1980  *          1  :  config = Privoxy configuration.  Specifies port
1981  *                         to bind to.
1982  *
1983  * Returns     :  Port that was opened.
1984  *
1985  *********************************************************************/
1986 static jb_socket bind_port_helper(struct configuration_spec * config)
1987 {
1988    int result;
1989    jb_socket bfd;
1990
1991    if ( (config->haddr != NULL)
1992      && (config->haddr[0] == '1')
1993      && (config->haddr[1] == '2')
1994      && (config->haddr[2] == '7')
1995      && (config->haddr[3] == '.') )
1996    {
1997       log_error(LOG_LEVEL_INFO, "Listening on port %d for local connections only",
1998                 config->hport);
1999    }
2000    else if (config->haddr == NULL)
2001    {
2002       log_error(LOG_LEVEL_INFO, "Listening on port %d on all IP addresses",
2003                 config->hport);
2004    }
2005    else
2006    {
2007       log_error(LOG_LEVEL_INFO, "Listening on port %d on IP address %s",
2008                 config->hport, config->haddr);
2009    }
2010
2011    result = bind_port(config->haddr, config->hport, &bfd);
2012
2013    if (result < 0)
2014    {
2015       switch(result)
2016       {
2017          case -3 :
2018             log_error(LOG_LEVEL_FATAL, "can't bind to %s:%d: "
2019                "There may be another Privoxy or some other "
2020                "proxy running on port %d",
2021                (NULL != config->haddr) ? config->haddr : "INADDR_ANY",
2022                       config->hport, config->hport);
2023
2024          case -2 :
2025             log_error(LOG_LEVEL_FATAL, "can't bind to %s:%d: " 
2026                "The hostname is not resolvable",
2027                (NULL != config->haddr) ? config->haddr : "INADDR_ANY", config->hport);
2028
2029          default :
2030             log_error(LOG_LEVEL_FATAL, "can't bind to %s:%d: because %E",
2031                (NULL != config->haddr) ? config->haddr : "INADDR_ANY", config->hport);
2032       }
2033
2034       /* shouldn't get here */
2035       return JB_INVALID_SOCKET;
2036    }
2037
2038    config->need_bind = 0;
2039
2040    return bfd;
2041 }
2042
2043
2044 /*********************************************************************
2045  *
2046  * Function    :  listen_loop
2047  *
2048  * Description :  bind the listen port and enter a "FOREVER" listening loop.
2049  *
2050  * Parameters  :  N/A
2051  *
2052  * Returns     :  Never.
2053  *
2054  *********************************************************************/
2055 static void listen_loop(void)
2056 {
2057    struct client_state *csp = NULL;
2058    jb_socket bfd;
2059    struct configuration_spec * config;
2060
2061    config = load_config();
2062
2063    bfd = bind_port_helper(config);
2064
2065 #ifdef FEATURE_GRACEFUL_TERMINATION
2066    while (!g_terminate)
2067 #else
2068    for (;;)
2069 #endif
2070    {
2071 #if !defined(FEATURE_PTHREAD) && !defined(_WIN32) && !defined(__BEOS__) && !defined(AMIGA) && !defined(__OS2__)
2072       while (waitpid(-1, NULL, WNOHANG) > 0)
2073       {
2074          /* zombie children */
2075       }
2076 #endif /* !defined(FEATURE_PTHREAD) && !defined(_WIN32) && !defined(__BEOS__) && !defined(AMIGA) */
2077
2078       /*
2079        * Free data that was used by died threads
2080        */
2081       sweep();
2082
2083 #if defined(unix)
2084       /*
2085        * Re-open the errlog after HUP signal
2086        */
2087       if (received_hup_signal)
2088       {
2089          init_error_log(Argv[0], config->logfile, config->debug);
2090          received_hup_signal = 0;
2091       }
2092 #endif
2093
2094 #ifdef __OS2__
2095 #ifdef FEATURE_COOKIE_JAR
2096       /*
2097        * Need a workaround here: we have to fclose() the jarfile, or we die because it's
2098        * already open.  I think unload_configfile() is not being run, which should do
2099        * this work.  Until that can get resolved, we'll use this workaround.
2100        */
2101        if (csp)
2102          if(csp->config)
2103            if (csp->config->jar)
2104            {
2105              fclose(csp->config->jar);
2106              csp->config->jar = NULL;
2107            }
2108 #endif /* FEATURE_COOKIE_JAR */
2109 #endif /* __OS2__ */
2110
2111       if ( NULL == (csp = (struct client_state *) zalloc(sizeof(*csp))) )
2112       {
2113          log_error(LOG_LEVEL_FATAL, "malloc(%d) for csp failed: %E", sizeof(*csp));
2114          continue;
2115       }
2116
2117       csp->flags |= CSP_FLAG_ACTIVE;
2118       csp->sfd    = JB_INVALID_SOCKET;
2119
2120       csp->config = config = load_config();
2121
2122       if ( config->need_bind )
2123       {
2124          /*
2125           * Since we were listening to the "old port", we will not see
2126           * a "listen" param change until the next IJB request.  So, at
2127           * least 1 more request must be made for us to find the new
2128           * setting.  I am simply closing the old socket and binding the
2129           * new one.
2130           *
2131           * Which-ever is correct, we will serve 1 more page via the
2132           * old settings.  This should probably be a "show-proxy-args"
2133           * request.  This should not be a so common of an operation
2134           * that this will hurt people's feelings.
2135           */
2136
2137          close_socket(bfd);
2138
2139          bfd = bind_port_helper(config);
2140       }
2141
2142       log_error(LOG_LEVEL_CONNECT, "accept connection ... ");
2143
2144       if (!accept_connection(csp, bfd))
2145       {
2146          log_error(LOG_LEVEL_CONNECT, "accept failed: %E");
2147
2148 #ifdef AMIGA
2149          if(!childs)
2150          {
2151             exit(1);
2152          }
2153 #endif
2154          freez(csp);
2155          continue;
2156       }
2157       else
2158       {
2159          log_error(LOG_LEVEL_CONNECT, "OK");
2160       }
2161
2162 #ifdef FEATURE_TOGGLE
2163       if (g_bToggleIJB)
2164       {
2165          csp->flags |= CSP_FLAG_TOGGLED_ON;
2166       }
2167 #endif /* def FEATURE_TOGGLE */
2168
2169       if (run_loader(csp))
2170       {
2171          log_error(LOG_LEVEL_FATAL, "a loader failed - must exit");
2172          /* Never get here - LOG_LEVEL_FATAL causes program exit */
2173       }
2174
2175 #ifdef FEATURE_ACL
2176       if (block_acl(NULL,csp))
2177       {
2178          log_error(LOG_LEVEL_CONNECT, "Connection dropped due to ACL");
2179          close_socket(csp->cfd);
2180          freez(csp);
2181          continue;
2182       }
2183 #endif /* def FEATURE_ACL */
2184
2185       /* add it to the list of clients */
2186       csp->next = clients->next;
2187       clients->next = csp;
2188
2189       if (config->multi_threaded)
2190       {
2191          int child_id;
2192
2193 /* this is a switch () statment in the C preprocessor - ugh */
2194 #undef SELECTED_ONE_OPTION
2195
2196 /* Use Pthreads in preference to native code */
2197 #if defined(FEATURE_PTHREAD) && !defined(SELECTED_ONE_OPTION)
2198 #define SELECTED_ONE_OPTION
2199          {
2200             pthread_t the_thread;
2201             pthread_attr_t attrs;
2202
2203             pthread_attr_init(&attrs);
2204             pthread_attr_setdetachstate(&attrs, PTHREAD_CREATE_DETACHED);
2205             child_id = (pthread_create(&the_thread, &attrs,
2206                (void*)serve, csp) ? -1 : 0);
2207             pthread_attr_destroy(&attrs);
2208          }
2209 #endif
2210
2211 #if defined(_WIN32) && !defined(_CYGWIN) && !defined(SELECTED_ONE_OPTION)
2212 #define SELECTED_ONE_OPTION
2213          child_id = _beginthread(
2214             (void (*)(void *))serve,
2215             64 * 1024,
2216             csp);
2217 #endif
2218
2219 #if defined(__OS2__) && !defined(SELECTED_ONE_OPTION)
2220 #define SELECTED_ONE_OPTION
2221          child_id = _beginthread(
2222             (void(* _Optlink)(void*))serve,
2223             NULL,
2224             64 * 1024,
2225             csp);
2226 #endif
2227
2228 #if defined(__BEOS__) && !defined(SELECTED_ONE_OPTION)
2229 #define SELECTED_ONE_OPTION
2230          {
2231             thread_id tid = spawn_thread
2232                (server_thread, "server", B_NORMAL_PRIORITY, csp);
2233
2234             if ((tid >= 0) && (resume_thread(tid) == B_OK))
2235             {
2236                child_id = (int) tid;
2237             }
2238             else
2239             {
2240                child_id = -1;
2241             }
2242          }
2243 #endif
2244
2245 #if defined(AMIGA) && !defined(SELECTED_ONE_OPTION)
2246 #define SELECTED_ONE_OPTION
2247          csp->cfd = ReleaseSocket(csp->cfd, -1);
2248          if((child_id = (int)CreateNewProcTags(
2249             NP_Entry, (ULONG)server_thread,
2250             NP_Output, Output(),
2251             NP_CloseOutput, FALSE,
2252             NP_Name, (ULONG)"privoxy child",
2253             NP_StackSize, 200*1024,
2254             TAG_DONE)))
2255          {
2256             childs++;
2257             ((struct Task *)child_id)->tc_UserData = csp;
2258             Signal((struct Task *)child_id, SIGF_SINGLE);
2259             Wait(SIGF_SINGLE);
2260          }
2261 #endif
2262
2263 #if !defined(SELECTED_ONE_OPTION)
2264          child_id = fork();
2265
2266          /* This block is only needed when using fork().
2267           * When using threads, the server thread was
2268           * created and run by the call to _beginthread().
2269           */
2270          if (child_id == 0)   /* child */
2271          {
2272             serve(csp);
2273             _exit(0);
2274
2275          }
2276          else if (child_id > 0) /* parent */
2277          {
2278             /* in a fork()'d environment, the parent's
2279              * copy of the client socket and the CSP
2280              * are not used.
2281              */
2282
2283 #if !defined(_WIN32) && defined(__CYGWIN__)
2284             wait( NULL );
2285 #endif /* !defined(_WIN32) && defined(__CYGWIN__) */
2286             close_socket(csp->cfd);
2287             csp->flags &= ~CSP_FLAG_ACTIVE;
2288          }
2289 #endif
2290
2291 #undef SELECTED_ONE_OPTION
2292 /* end of cpp switch () */
2293
2294          if (child_id < 0) /* failed */
2295          {
2296             char buf[BUFFER_SIZE];
2297
2298             log_error(LOG_LEVEL_ERROR, "can't fork: %E");
2299
2300             sprintf(buf , "Privoxy: can't fork: errno = %d", errno);
2301
2302             write_socket(csp->cfd, buf, strlen(buf));
2303             close_socket(csp->cfd);
2304             csp->flags &= ~CSP_FLAG_ACTIVE;
2305             sleep(5);
2306             continue;
2307          }
2308       }
2309       else
2310       {
2311          serve(csp);
2312       }
2313    }
2314
2315    /* NOTREACHED unless FEATURE_GRACEFUL_TERMINATION is defined */
2316
2317    /* Clean up.  Aim: free all memory (no leaks) */
2318 #ifdef FEATURE_GRACEFUL_TERMINATION
2319
2320    log_error(LOG_LEVEL_ERROR, "Graceful termination requested");
2321
2322    unload_current_config_file();
2323    unload_current_actions_file();
2324    unload_current_re_filterfile();
2325 #ifdef FEATURE_TRUST
2326    unload_current_trust_file();
2327 #endif
2328
2329    if (config->multi_threaded)
2330    {
2331       int i = 60;
2332       do
2333       {
2334          sleep(1);
2335          sweep();
2336       } while ((clients->next != NULL) && (--i > 0));
2337
2338       if (i <= 0)
2339       {
2340          log_error(LOG_LEVEL_ERROR, "Graceful termination failed - still some live clients after 1 minute wait.");
2341       }
2342    }
2343    sweep();
2344    sweep();
2345
2346 #if defined(unix)
2347    free(basedir);
2348 #endif
2349 #if defined(_WIN32) && !defined(_WIN_CONSOLE)
2350    /* Cleanup - remove taskbar icon etc. */
2351    TermLogWindow();
2352 #endif
2353
2354    exit(0);
2355 #endif /* FEATURE_GRACEFUL_TERMINATION */
2356
2357 }
2358
2359
2360 /*
2361   Local Variables:
2362   tab-width: 3
2363   end:
2364 */