In the HTTP snipplets, refer to the client as client.
[privoxy.git] / jcc.c
1 const char jcc_rcs[] = "$Id: jcc.c,v 1.158 2007/11/11 16:44:17 fabiankeil Exp $";
2 /*********************************************************************
3  *
4  * File        :  $Source: /cvsroot/ijbswa/current/jcc.c,v $
5  *
6  * Purpose     :  Main file.  Contains main() method, main loop, and
7  *                the main connection-handling function.
8  *
9  * Copyright   :  Written by and Copyright (C) 2001-2007 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.158  2007/11/11 16:44:17  fabiankeil
37  *    Emit a log message when activating the MS IIS5 hack.
38  *
39  *    Revision 1.157  2007/11/03 17:34:49  fabiankeil
40  *    Log the "weak randomization factor" warning only
41  *    once for mingw32 and provide some more details.
42  *
43  *    Revision 1.156  2007/11/01 18:20:58  fabiankeil
44  *    Initialize log module after initializing mutexes, future
45  *    deadlocks in that code should now work cross-platform.
46  *
47  *    Revision 1.155  2007/10/23 20:12:45  fabiankeil
48  *    Fix first CSUCCEED line to end in \r\n as required by RFC1945.
49  *    Reported by Bert van Leeuwen in BR#1818808.
50  *
51  *    Revision 1.154  2007/10/19 17:00:08  fabiankeil
52  *    Downgrade "Flushing header and buffers" message to LOG_LEVEL_INFO.
53  *
54  *    Revision 1.153  2007/10/14 14:12:41  fabiankeil
55  *    When in daemon mode, close stderr after the configuration file has been
56  *    parsed the first time. If logfile isn't set, stop logging. Fixes BR#897436.
57  *
58  *    Revision 1.152  2007/10/04 18:03:34  fabiankeil
59  *    - Fix a crash when parsing invalid requests whose first header
60  *      is rejected by get_header(). Regression (re?)introduced
61  *      in r1.143 by yours truly.
62  *    - Move ACTION_VANILLA_WAFER handling into parsers.c's
63  *      client_cookie_adder() to make sure send-vanilla-wafer can be
64  *      controlled through tags (and thus regression-tested).
65  *
66  *    Revision 1.151  2007/09/29 10:21:16  fabiankeil
67  *    - Move get_filter_function() from jcc.c to filters.c
68  *      so the filter functions can be static.
69  *    - Don't bother filtering body-less responses.
70  *
71  *    Revision 1.150  2007/09/28 16:39:29  fabiankeil
72  *    Execute content filters through execute_content_filter().
73  *
74  *    Revision 1.149  2007/09/04 15:08:48  fabiankeil
75  *    Initialize req to NULL to make sure it's defined if the
76  *    first read_socket() call fails. Reported by icmp30.
77  *
78  *    Revision 1.148  2007/08/26 16:47:13  fabiankeil
79  *    Add Stephen Gildea's --pre-chroot-nslookup patch [#1276666],
80  *    extensive comments moved to user manual.
81  *
82  *    Revision 1.147  2007/08/25 14:42:40  fabiankeil
83  *    Don't crash if a broken header filter wiped out the request line.
84  *
85  *    Revision 1.146  2007/08/20 17:09:32  fabiankeil
86  *    Fix byte_count calculation in case of flushes
87  *    and don't parse the server headers a second time.
88  *
89  *    Revision 1.145  2007/08/19 13:13:31  fabiankeil
90  *    - If there's a connection problem after we already forwarded
91  *      parts of the original content, just hang up. Fixes BR#1776724.
92  *    - Fix warnings about unused code on mingw32.
93  *    - In case of flushes, calculate the byte count
94  *      less incorrectly (I think).
95  *
96  *    Revision 1.144  2007/08/11 14:43:22  fabiankeil
97  *    Add some more prototypes for static functions.
98  *
99  *    Revision 1.143  2007/08/05 13:58:19  fabiankeil
100  *    Comment out request_contains_null_bytes() until it's used again.
101  *
102  *    Revision 1.142  2007/08/05 13:50:26  fabiankeil
103  *    #1763173 from Stefan Huehner: s@const static@static const@
104  *    and declare some more functions static.
105  *
106  *    Revision 1.141  2007/08/04 09:56:23  fabiankeil
107  *    - Log rejected CONNECT requests with LOG_LEVEL_INFO
108  *      and explain why they were rejected in the first place.
109  *    - Fix the LOG_LEVEL_CLF message for crunches of unallowed
110  *      CONNECT requests. The request line was missing.
111  *    - Add two more XXX reminders as we don't have enough already.
112  *
113  *    Revision 1.140  2007/07/21 11:51:36  fabiankeil
114  *    As Hal noticed, checking dispatch_cgi() as the last cruncher
115  *    looks like a bug if CGI requests are blocked unintentionally,
116  *    so don't do it unless the user enabled the new config option
117  *    "allow-cgi-request-crunching".
118  *
119  *    Revision 1.139  2007/07/14 07:46:41  fabiankeil
120  *    - Allow to rewrite the request destination behind the client's back.
121  *    - Turn the weird-looking unconditional for loop that
122  *      reads the client request into a conditional while loop.
123  *      Move the stuff that only runs once out of the loop.
124  *    - Move parts of chat(), server_content_type() and the
125  *      necessary stuff to fix BR#1750917 into get_filter_function().
126  *
127  *    Revision 1.138  2007/06/03 18:45:18  fabiankeil
128  *    Temporary workaround for BR#1730105.
129  *
130  *    Revision 1.137  2007/06/01 18:16:36  fabiankeil
131  *    Use the same mutex for gethostbyname() and gethostbyaddr() to prevent
132  *    deadlocks and crashes on OpenBSD and possibly other OS with neither
133  *    gethostbyname_r() nor gethostaddr_r(). Closes BR#1729174.
134  *    Thanks to Ralf Horstmann for report and solution.
135  *
136  *    Revision 1.136  2007/06/01 16:41:11  fabiankeil
137  *    Add forward-override{} to change the forwarding settings through
138  *    action sections. This is mainly interesting to forward different
139  *    clients differently (for example based on User-Agent or request
140  *    origin).
141  *
142  *    Revision 1.135  2007/05/24 17:03:50  fabiankeil
143  *    - Let usage() mention the --chroot parameter.
144  *    - Use read_socket() consistently and always leave
145  *      the last buffer byte alone, even in cases where
146  *      null termination (currently) doesn't matter.
147  *
148  *    Revision 1.134  2007/05/16 14:59:46  fabiankeil
149  *    - Fix config file loading on Unix if no config file is specified.
150  *      Since r1.97 Privoxy would always interpret the last argument as
151  *      config file, even if it's a valid command line option.
152  *    - Abort in case of unrecognized command line options. Closes #1719696.
153  *    - Remove a bunch of unnecessary strcpy() calls (yay for c&p without thinking).
154  *    - Replace the remaining strcpy() and strcat() calls with strlcpy() and strcat().
155  *
156  *    Revision 1.133  2007/05/04 11:23:19  fabiankeil
157  *    - Don't rerun crunchers that only depend on the request URL.
158  *    - Don't count redirects and CGI requests as "blocked requests".
159  *
160  *    Revision 1.132  2007/04/25 15:15:17  fabiankeil
161  *    Support crunching based on tags created by server-header taggers.
162  *
163  *    Revision 1.131  2007/04/22 13:24:50  fabiankeil
164  *    Make HTTP snippets static (again). Add a Content-Type for those
165  *    with content so the browser doesn't guess it based on the URL.
166  *
167  *    Revision 1.130  2007/04/19 13:47:34  fabiankeil
168  *    Move crunching and request line rebuilding out of chat().
169  *
170  *    Revision 1.129  2007/04/15 16:39:20  fabiankeil
171  *    Introduce tags as alternative way to specify which
172  *    actions apply to a request. At the moment tags can be
173  *    created based on client and server headers.
174  *
175  *    Revision 1.128  2007/03/25 16:55:54  fabiankeil
176  *    Don't CLF-log CONNECT requests twice.
177  *
178  *    Revision 1.127  2007/03/20 13:53:17  fabiankeil
179  *    Log the source address for ACL-related connection drops.
180  *
181  *    Revision 1.126  2007/03/17 15:20:05  fabiankeil
182  *    New config option: enforce-blocks.
183  *
184  *    Revision 1.125  2007/03/09 14:12:00  fabiankeil
185  *    - Move null byte check into separate function.
186  *    - Don't confuse the client with error pages
187  *      if a CONNECT request was already confirmed.
188  *
189  *    Revision 1.124  2007/02/23 14:59:54  fabiankeil
190  *    Speed up NULL byte escaping and only log the complete
191  *    NULL byte requests with header debugging enabled.
192  *
193  *    Revision 1.123  2007/02/21 18:42:10  fabiankeil
194  *    Answer requests that contain NULL bytes with
195  *    a custom response instead of waiting for more
196  *    data until the client eventually hangs up.
197  *
198  *    Revision 1.122  2007/02/07 11:12:02  fabiankeil
199  *    - Move delivery and logging of crunched responses
200  *      from chat() into send_crunch_response().
201  *    - Display the reason for generating http_responses.
202  *    - Log the content length for LOG_LEVEL_CLF correctly
203  *      (still incorrect for some fixed responses).
204  *    - Reword an incorrect comment about
205  *      treat-forbidden-connects-like-blocks violating
206  *      the specs.
207  *    - Add some log messages.
208  *
209  *    Revision 1.121  2007/01/27 10:52:56  fabiankeil
210  *    Move mutex initialization into separate
211  *    function and exit in case of errors.
212  *
213  *    Revision 1.120  2007/01/26 14:18:42  fabiankeil
214  *    - Start to reduce chat()'s line count and move
215  *      parts of it into separate functions.
216  *    - Add "HTTP/1.1 100 Continue" hack for BR 756734.
217  *
218  *    Revision 1.119  2007/01/25 14:02:30  fabiankeil
219  *    - Add Proxy-Agent header to HTTP snippets that are
220  *      supposed to reach HTTP clients only.
221  *    - Made a few CONNECT log messages more descriptive.
222  *    - Catch completely empty server responses (as seen
223  *      with Tor's fake ".noconnect" top level domain).
224  *    - Use shiny new "forwarding-failed" template for socks errors.
225  *
226  *    Revision 1.118  2007/01/07 07:43:43  joergs
227  *    AmigaOS4 support added.
228  *
229  *    Revision 1.117  2006/12/31 17:56:37  fabiankeil
230  *    Added config option accept-intercepted-requests
231  *    and disabled it by default.
232  *
233  *    Revision 1.116  2006/12/29 19:08:22  fabiankeil
234  *    Reverted parts of my last commit
235  *    to keep error handling working.
236  *
237  *    Revision 1.115  2006/12/29 17:38:57  fabiankeil
238  *    Fixed gcc43 conversion warnings.
239  *
240  *    Revision 1.114  2006/12/27 18:52:02  fabiankeil
241  *    Fix -pedantic ISO C warning about converting
242  *    from function pointer to object pointer.
243  *
244  *    Revision 1.113  2006/12/26 17:38:50  fabiankeil
245  *    Silence compiler warning I introduced with my last commit.
246  *
247  *    Revision 1.112  2006/12/26 17:31:41  fabiankeil
248  *    Mutex protect rand() if POSIX threading
249  *    is used, warn the user if that's not possible
250  *    and stop using it on _WIN32 where it could
251  *    cause crashes.
252  *
253  *    Revision 1.111  2006/12/23 16:15:06  fabiankeil
254  *    Don't prevent core dumps by catching SIGABRT.
255  *    It's rude and makes debugging unreasonable painful.
256  *
257  *    Revision 1.110  2006/12/13 14:52:53  etresoft
258  *    Fix build failure on MacOS X. Global symbols can be either static or extern, but not both.
259  *
260  *    Revision 1.109  2006/12/06 19:41:40  fabiankeil
261  *    Privoxy is now able to run as intercepting
262  *    proxy in combination with any packet filter
263  *    that does the port redirection. The destination
264  *    is extracted from the "Host:" header which
265  *    should be available for nearly all requests.
266  *
267  *    Moved HTTP snipplets into jcc.c.
268  *    Added error message for gopher proxy requests.
269  *
270  *    Revision 1.108  2006/11/28 15:38:51  fabiankeil
271  *    Only unlink the pidfile if it's actually used.
272  *
273  *    Change order of interception checks to make
274  *    it possible to block or redirect requests for
275  *    the cgi pages.
276  *
277  *    Revision 1.107  2006/11/13 19:05:51  fabiankeil
278  *    Make pthread mutex locking more generic. Instead of
279  *    checking for OSX and OpenBSD, check for FEATURE_PTHREAD
280  *    and use mutex locking unless there is an _r function
281  *    available. Better safe than sorry.
282  *
283  *    Fixes "./configure --disable-pthread" and should result
284  *    in less threading-related problems on pthread-using platforms,
285  *    but it still doesn't fix BR#1122404.
286  *
287  *    Revision 1.106  2006/11/06 19:58:23  fabiankeil
288  *    Move pthread.h inclusion from jcc.c to jcc.h.
289  *    Fixes build on x86-freebsd1 (FreeBSD 5.4-RELEASE).
290  *
291  *    Revision 1.105  2006/11/06 14:26:02  fabiankeil
292  *    Don't exit after receiving the second SIGHUP on Solaris.
293  *
294  *    Fixes BR 1052235, but the same problem may exist on other
295  *    systems. Once 3.0.6 is out we should use sigset()
296  *    where available and see if it breaks anything.
297  *
298  *    Revision 1.104  2006/09/23 13:26:38  roro
299  *    Replace TABs by spaces in source code.
300  *
301  *    Revision 1.103  2006/09/21 12:54:43  fabiankeil
302  *    Fix +redirect{}. Didn't work with -fast-redirects.
303  *
304  *    Revision 1.102  2006/09/06 13:03:04  fabiankeil
305  *    Respond with 400 and a short text message
306  *    if the client tries to use Privoxy as FTP proxy.
307  *
308  *    Revision 1.101  2006/09/06 09:23:37  fabiankeil
309  *    Make number of retries in case of forwarded-connect problems
310  *    a config file option (forwarded-connect-retries) and use 0 as
311  *    default.
312  *
313  *    Revision 1.100  2006/09/03 19:42:59  fabiankeil
314  *    Set random(3) seed.
315  *
316  *    Revision 1.99  2006/09/02 15:36:42  fabiankeil
317  *    Follow the OpenBSD port's lead and protect the resolve
318  *    functions on OpenBSD as well.
319  *
320  *    Revision 1.98  2006/08/24 11:01:34  fabiankeil
321  *    --user fix. Only use the user as group if no group is specified.
322  *    Solves BR 1492612. Thanks to Spinor S. and David Laight.
323  *
324  *    Revision 1.97  2006/08/18 15:23:17  david__schmidt
325  *    Windows service (re-)integration
326  *
327  *    The new args are:
328  *
329  *    --install[:service_name]
330  *    --uninstall[:service_name]
331  *    --service
332  *
333  *    They work as follows:
334  *    --install will create a service for you and then terminate.
335  *    By default the service name will be "privoxy" (without the quotes).
336  *    However you can run multiple services if you wish, just by adding
337  *    a colon and then a name (no spaces).
338  *
339  *    --uninstall follows the exact same rules a --install.
340  *
341  *    --service is used when the program is executed by the service
342  *    control manager, and in normal circumstances would never be
343  *    used as a command line argument.
344  *
345  *    Revision 1.96  2006/08/15 20:12:36  david__schmidt
346  *    Windows service integration
347  *
348  *    Revision 1.95  2006/08/03 02:46:41  david__schmidt
349  *    Incorporate Fabian Keil's patch work:
350 http://www.fabiankeil.de/sourcecode/privoxy/
351  *
352  *    Revision 1.94  2006/07/18 14:48:46  david__schmidt
353  *    Reorganizing the repository: swapping out what was HEAD (the old 3.1 branch)
354  *    with what was really the latest development (the v_3_0_branch branch)
355  *
356  *    Revision 1.92.2.16  2005/04/03 20:10:50  david__schmidt
357  *    Thanks to Jindrich Makovicka for a race condition fix for the log
358  *    file.  The race condition remains for non-pthread implementations.
359  *    Reference patch #1175720.
360  *
361  *    Revision 1.92.2.15  2004/10/03 12:53:32  david__schmidt
362  *    Add the ability to check jpeg images for invalid
363  *    lengths of comment blocks.  Defensive strategy
364  *    against the exploit:
365  *       Microsoft Security Bulletin MS04-028
366  *       Buffer Overrun in JPEG Processing (GDI+) Could
367  *       Allow Code Execution (833987)
368  *    Enabled with +inspect-jpegs in actions files.
369  *
370  *    Revision 1.92.2.14  2003/12/12 12:52:53  oes
371  *    - Fixed usage info for non-unix platforms
372  *    - Fixed small cmdline parsing bug
373  *
374  *    Revision 1.92.2.13  2003/11/27 19:20:27  oes
375  *    Diagnostics: Now preserve the returncode of pthread_create
376  *    in errno. Closes BR #775721. Thanks to Geoffrey Hausheer.
377  *
378  *    Revision 1.92.2.12  2003/07/11 11:34:19  oes
379  *    No longer ignore SIGCHLD. Fixes bug #769381
380  *
381  *    Revision 1.92.2.11  2003/05/14 12:32:02  oes
382  *    Close jarfile on graceful exit, remove stray line
383  *
384  *    Revision 1.92.2.10  2003/05/08 15:13:46  oes
385  *    Cosmetics: Killed a warning, a typo and an allocation left at exit
386  *
387  *    Revision 1.92.2.9  2003/04/03 15:08:42  oes
388  *    No longer rely on non-POSIX.1 extensions of getcwd().
389  *    Fixes bug #711001
390  *
391  *    Revision 1.92.2.8  2003/03/31 13:12:32  oes
392  *    Replaced setenv() by posix-compliant putenv()
393  *    Thanks to Neil McCalden (nmcc AT users.sf.net).
394  *
395  *    Revision 1.92.2.7  2003/03/17 16:48:59  oes
396  *    Added chroot ability, thanks to patch by Sviatoslav Sviridov
397  *
398  *    Revision 1.92.2.6  2003/03/11 11:55:00  oes
399  *    Clean-up and extension of improvements for forked mode:
400  *     - Child's return code now consists of flags RC_FLAG_*
401  *     - Reporting toggle to parent now properly #ifdef'ed
402  *     - Children now report blocking to parent. This enables
403  *       statistics in forked mode
404  *
405  *    Revision 1.92.2.5  2003/03/10 23:45:32  oes
406  *    Fixed bug #700381: Non-Threaded version now capable of being toggled.
407  *    Children now report having been toggled through _exit(17), parents
408  *    watch for that code and toggle themselves if found.
409  *
410  *    Revision 1.92.2.4  2003/03/07 03:41:04  david__schmidt
411  *    Wrapping all *_r functions (the non-_r versions of them) with 
412  *    mutex semaphores for OSX.  Hopefully this will take care of all 
413  *    of those pesky crash reports.
414  *
415  *    Revision 1.92.2.3  2003/02/28 12:53:06  oes
416  *    Fixed two mostly harmless mem leaks
417  *
418  *    Revision 1.92.2.2  2002/11/20 14:37:47  oes
419  *    Fix: Head of global clients list now initialized to NULL
420  *
421  *    Revision 1.92.2.1  2002/09/25 14:52:24  oes
422  *    Added basic support for OPTIONS and TRACE HTTP methods:
423  *     - New interceptor direct_response() added in chat().
424  *     - sed() moved to earlier in the process, so that the
425  *       Host: header is evaluated before actions and forwarding
426  *       are decided on.
427  *
428  *    Revision 1.92  2002/05/08 16:00:46  oes
429  *    Chat's buffer handling:
430  *     - Fixed bug with unchecked out-of-mem conditions
431  *       while reading client request & server headers
432  *     - No longer predict if the buffer limit will be exceeded
433  *       in the next read -- check add_to_iob's new
434  *       return code. If buffer couldn't be extended
435  *       (policy or out-of-mem) while
436  *       - reading from client: abort
437  *       - reading server headers: send error page
438  *       - buffering server body for filter: flush,
439  *         and if that fails: send error page
440  *
441  *    Revision 1.91  2002/04/08 20:35:58  swa
442  *    fixed JB spelling
443  *
444  *    Revision 1.90  2002/04/02 14:57:28  oes
445  *    Made sending wafers independent of FEATURE_COOKIE_JAR
446  *
447  *    Revision 1.89  2002/03/31 17:18:59  jongfoster
448  *    Win32 only: Enabling STRICT to fix a VC++ compile warning.
449  *
450  *    Revision 1.88  2002/03/27 14:32:43  david__schmidt
451  *    More compiler warning message maintenance
452  *
453  *    Revision 1.87  2002/03/26 22:29:54  swa
454  *    we have a new homepage!
455  *
456  *    Revision 1.86  2002/03/25 17:04:55  david__schmidt
457  *    Workaround for closing the jarfile before load_config() comes around again
458  *
459  *    Revision 1.85  2002/03/24 15:23:33  jongfoster
460  *    Name changes
461  *
462  *    Revision 1.84  2002/03/24 13:25:43  swa
463  *    name change related issues
464  *
465  *    Revision 1.83  2002/03/16 23:54:06  jongfoster
466  *    Adding graceful termination feature, to help look for memory leaks.
467  *    If you enable this (which, by design, has to be done by hand
468  *    editing config.h) and then go to http://i.j.b/die, then the program
469  *    will exit cleanly after the *next* request.  It should free all the
470  *    memory that was used.
471  *
472  *    Revision 1.82  2002/03/13 00:27:05  jongfoster
473  *    Killing warnings
474  *
475  *    Revision 1.81  2002/03/12 01:42:50  oes
476  *    Introduced modular filters
477  *
478  *    Revision 1.80  2002/03/11 22:07:05  david__schmidt
479  *    OS/2 port maintenance:
480  *    - Fixed EMX build - it had decayed a little
481  *    - Fixed inexplicable crash during FD_ZERO - must be due to a bad macro.
482  *      substituted a memset for now.
483  *
484  *    Revision 1.79  2002/03/09 20:03:52  jongfoster
485  *    - Making various functions return int rather than size_t.
486  *      (Undoing a recent change).  Since size_t is unsigned on
487  *      Windows, functions like read_socket that return -1 on
488  *      error cannot return a size_t.
489  *
490  *      THIS WAS A MAJOR BUG - it caused frequent, unpredictable
491  *      crashes, and also frequently caused JB to jump to 100%
492  *      CPU and stay there.  (Because it thought it had just
493  *      read ((unsigned)-1) == 4Gb of data...)
494  *
495  *    - The signature of write_socket has changed, it now simply
496  *      returns success=0/failure=nonzero.
497  *
498  *    - Trying to get rid of a few warnings --with-debug on
499  *      Windows, I've introduced a new type "jb_socket".  This is
500  *      used for the socket file descriptors.  On Windows, this
501  *      is SOCKET (a typedef for unsigned).  Everywhere else, it's
502  *      an int.  The error value can't be -1 any more, so it's
503  *      now JB_INVALID_SOCKET (which is -1 on UNIX, and in
504  *      Windows it maps to the #define INVALID_SOCKET.)
505  *
506  *    - The signature of bind_port has changed.
507  *
508  *    Revision 1.78  2002/03/08 21:35:04  oes
509  *    Added optional group supplement to --user option. Will now use default group of user if no group given
510  *
511  *    Revision 1.77  2002/03/07 03:52:06  oes
512  *     - Fixed compiler warnings etc
513  *     - Improved handling of failed DNS lookups
514  *
515  *    Revision 1.76  2002/03/06 22:54:35  jongfoster
516  *    Automated function-comment nitpicking.
517  *
518  *    Revision 1.75  2002/03/06 10:02:19  oes
519  *    Fixed stupid bug when --user was not given
520  *
521  *    Revision 1.74  2002/03/06 00:49:31  jongfoster
522  *    Fixing warning on Windows
523  *    Making #ifdefs that refer to the same variable consistently
524  *    use #ifdef unix rather than mixing #ifdef unix & #ifndef OS2
525  *
526  *    Revision 1.73  2002/03/05 23:57:30  hal9
527  *    Stray character 's' on line 1618 was breaking build.
528  *
529  *    Revision 1.72  2002/03/05 21:33:45  david__schmidt
530  *    - Re-enable OS/2 building after new parms were added
531  *    - Fix false out of memory report when resolving CGI templates when no IP
532  *      address is available of failed attempt (a la no such domain)
533  *
534  *    Revision 1.71  2002/03/05 18:13:56  oes
535  *    Added --user option
536  *
537  *    Revision 1.70  2002/03/05 04:52:42  oes
538  *    Deleted non-errlog debugging code
539  *
540  *    Revision 1.69  2002/03/04 23:50:00  jongfoster
541  *    Splitting off bind_port() call into bind_port_helper(), with
542  *    improved logging.
543  *
544  *    Revision 1.68  2002/03/04 20:17:32  oes
545  *    Fixed usage info
546  *
547  *    Revision 1.67  2002/03/04 18:18:57  oes
548  *    - Removed _DEBUG mode
549  *    - Cleand up cmdline parsing
550  *    - Introduced --no-daemon, --pidfile options
551  *    - Cleaned up signal handling:
552  *      - Terminate cleanly on INT, TERM and ABRT
553  *      - Schedule logfile for re-opening on HUP
554  *      - Ignore CHLD and PIPE
555  *      - Leave the rest with their default handlers
556  *      - Uniform handler registration
557  *    - Added usage() function
558  *    - Played styleguide police
559  *
560  *    Revision 1.66  2002/03/03 15:06:55  oes
561  *    Re-enabled automatic config reloading
562  *
563  *    Revision 1.65  2002/03/03 14:49:11  oes
564  *    Fixed CLF logging: Now uses client's original HTTP request
565  *
566  *    Revision 1.64  2002/03/03 09:18:03  joergs
567  *    Made jumbjuster work on AmigaOS again.
568  *
569  *    Revision 1.63  2002/03/02 04:14:50  david__schmidt
570  *    Clean up a little CRLF unpleasantness that suddenly appeared
571  *
572  *    Revision 1.62  2002/02/20 23:17:23  jongfoster
573  *    Detecting some out-of memory conditions and exiting with a log message.
574  *
575  *    Revision 1.61  2002/01/17 21:01:52  jongfoster
576  *    Moving all our URL and URL pattern parsing code to urlmatch.c.
577  *
578  *    Revision 1.60  2001/12/30 14:07:32  steudten
579  *    - Add signal handling (unix)
580  *    - Add SIGHUP handler (unix)
581  *    - Add creation of pidfile (unix)
582  *    - Add action 'top' in rc file (RH)
583  *    - Add entry 'SIGNALS' to manpage
584  *    - Add exit message to logfile (unix)
585  *
586  *    Revision 1.59  2001/12/13 14:07:18  oes
587  *    Fixed Bug: 503 error page now sent OK
588  *
589  *    Revision 1.58  2001/11/30 23:37:24  jongfoster
590  *    Renaming the Win32 config file to config.txt - this is almost the
591  *    same as the corresponding UNIX name "config"
592  *
593  *    Revision 1.57  2001/11/16 00:47:43  jongfoster
594  *    Changing the tty-disconnection code to use setsid().
595  *
596  *    Revision 1.56  2001/11/13 20:20:54  jongfoster
597  *    Tabs->spaces, fixing a bug with missing {} around an if()
598  *
599  *    Revision 1.55  2001/11/13 20:14:53  jongfoster
600  *    Patch for FreeBSD setpgrp() as suggested by Alexander Lazic
601  *
602  *    Revision 1.54  2001/11/07 00:03:14  steudten
603  *    Give reliable return value if an error
604  *    occurs not just 0 with new daemon mode.
605  *
606  *    Revision 1.53  2001/11/05 21:41:43  steudten
607  *    Add changes to be a real daemon just for unix os.
608  *    (change cwd to /, detach from controlling tty, set
609  *    process group and session leader to the own process.
610  *    Add DBG() Macro.
611  *    Add some fatal-error log message for failed malloc().
612  *    Add '-d' if compiled with 'configure --with-debug' to
613  *    enable debug output.
614  *
615  *    Revision 1.52  2001/10/26 20:11:20  jongfoster
616  *    Fixing type mismatch
617  *
618  *    Revision 1.51  2001/10/26 17:38:28  oes
619  *    Cosmetics
620  *
621  *    Revision 1.50  2001/10/25 03:40:48  david__schmidt
622  *    Change in porting tactics: OS/2's EMX porting layer doesn't allow multiple
623  *    threads to call select() simultaneously.  So, it's time to do a real, live,
624  *    native OS/2 port.  See defines for __EMX__ (the porting layer) vs. __OS2__
625  *    (native). Both versions will work, but using __OS2__ offers multi-threading.
626  *
627  *    Revision 1.49  2001/10/23 21:41:35  jongfoster
628  *    Added call to initialize the (statically-allocated of course)
629  *    "out of memory" CGI response.
630  *
631  *    Revision 1.48  2001/10/10 19:56:46  jongfoster
632  *    Moving some code that wasn't cookie-related out of an #ifdef
633  *    FEATURE_COOKIE_JAR
634  *
635  *    Revision 1.47  2001/10/10 16:44:36  oes
636  *    Added CONNECT destination port limitation check
637  *
638  *    Revision 1.46  2001/10/08 15:17:41  oes
639  *    Re-enabled SSL forwarding
640  *
641  *    Revision 1.45  2001/10/07 15:42:11  oes
642  *    Replaced 6 boolean members of csp with one bitmap (csp->flags)
643  *
644  *    Moved downgrading of the HTTP version from parse_http_request to
645  *      chat(), since we can't decide if it is necessary before we have
646  *      determined the actions for the URL. The HTTP command is now
647  *      *always* re-built so the repairs need no longer be special-cased.
648  *
649  *    filter_popups now gets a csp pointer so it can raise the new
650  *      CSP_FLAG_MODIFIED flag.
651  *
652  *    Bugfix
653  *
654  *    Added configurable size limit for the IOB. If the IOB grows so
655  *      large that the next read would exceed the limit, the header
656  *      is generated, and the header & unfiltered buffer are flushed
657  *      to the client. Chat then continues in non-buffering,
658  *      non-filtering body mode.
659  *
660  *    Revision 1.44  2001/10/02 18:13:57  oes
661  *    Ooops
662  *
663  *    Revision 1.43  2001/10/02 15:32:13  oes
664  *    Moved generation of hdr
665  *
666  *    Revision 1.42  2001/09/21 23:02:02  david__schmidt
667  *    Cleaning up 2 compiler warnings on OS/2.
668  *
669  *    Revision 1.41  2001/09/16 17:05:14  jongfoster
670  *    Removing unused #include showarg.h
671  *
672  *    Revision 1.40  2001/09/16 15:41:45  jongfoster
673  *    Fixing signed/unsigned comparison warning.
674  *
675  *    Revision 1.39  2001/09/16 13:21:27  jongfoster
676  *    Changes to use new list functions.
677  *
678  *    Revision 1.38  2001/09/16 13:01:46  jongfoster
679  *    Removing redundant function call that zeroed zalloc()'d memory.
680  *
681  *    Revision 1.37  2001/09/10 11:12:24  oes
682  *    Deleted unused variable
683  *
684  *    Revision 1.36  2001/09/10 10:56:15  oes
685  *    Silenced compiler warnings
686  *
687  *    Revision 1.35  2001/07/31 14:44:22  oes
688  *    Deleted unused size parameter from filter_popups()
689  *
690  *    Revision 1.34  2001/07/30 22:08:36  jongfoster
691  *    Tidying up #defines:
692  *    - All feature #defines are now of the form FEATURE_xxx
693  *    - Permanently turned off WIN_GUI_EDIT
694  *    - Permanently turned on WEBDAV and SPLIT_PROXY_ARGS
695  *
696  *    Revision 1.33  2001/07/29 19:32:00  jongfoster
697  *    Renaming _main() [mingw32 only] to real_main(), for ANSI compliance.
698  *
699  *    Revision 1.32  2001/07/29 18:47:05  jongfoster
700  *    Adding missing #include "loadcfg.h"
701  *
702  *    Revision 1.31  2001/07/29 12:17:48  oes
703  *    Applied pthread fix by Paul Lieverse
704  *
705  *    Revision 1.30  2001/07/25 22:57:13  jongfoster
706  *    __BEOS__ no longer overrides FEATURE_PTHREAD.
707  *    This is because FEATURE_PTHREAD will soon be widely used, so I
708  *    want to keep it simple.
709  *
710  *    Revision 1.29  2001/07/24 12:47:06  oes
711  *    Applied BeOS support update by Eugenia
712  *
713  *    Revision 1.28  2001/07/23 13:26:12  oes
714  *    Fixed bug in popup-killing for the first read that caused binary garbage to be sent between headers and body
715  *
716  *    Revision 1.27  2001/07/19 19:09:47  haroon
717  *    - Added code to take care of the situation where while processing the first
718  *      server response (which includes the server header), after finding the end
719  *      of the headers we were not looking past the end of the headers for
720  *      content modification. I enabled it for filter_popups.
721  *      Someone else should look to see if other similar operations should be
722  *      done to the discarded portion of the buffer.
723  *
724  *      Note 2001/07/20: No, the other content modification mechanisms will process
725  *                       the whole iob later anyway. --oes
726  *
727  *    Revision 1.26  2001/07/18 12:31:36  oes
728  *    cosmetics
729  *
730  *    Revision 1.25  2001/07/15 19:43:49  jongfoster
731  *    Supports POSIX threads.
732  *    Also removed some unused #includes.
733  *
734  *    Revision 1.24  2001/07/13 14:00:40  oes
735  *     - Generic content modification scheme:
736  *       Each feature has its own applicability flag that is set
737  *       from csp->action->flags.
738  *       Replaced the "filtering" int flag , by a function pointer
739  *       "content_filter" to the function that will do the content
740  *       modification. If it is != NULL, the document will be buffered
741  *       and processed through *content_filter, which must set
742  *       csp->content_length and return a modified copy of the body
743  *       or return NULL (on failiure).
744  *     - Changed csp->is_text to the more generic bitmap csp->content_type
745  *       which can currently take the valued CT_TEXT or CT_GIF
746  *     - Reformatting etc
747  *     - Removed all #ifdef PCRS
748  *
749  *    Revision 1.23  2001/07/02 02:28:25  iwanttokeepanon
750  *    Added "#ifdef ACL_FILES" conditional compilation to line 1291 to exclude
751  *    the `block_acl' call.  This prevents a compilation error when the user
752  *    does not wish to use the "ACL" feature.
753  *
754  *    Revision 1.22  2001/06/29 21:45:41  oes
755  *    Indentation, CRLF->LF, Tab-> Space
756  *
757  *    Revision 1.21  2001/06/29 13:29:36  oes
758  *    - Cleaned up, improved comments
759  *    - Unified all possible interceptors (CGI,
760  *      block, trust, fast_redirect) in one
761  *      place, with one (CGI) answer generation
762  *      mechansim. Much clearer now.
763  *    - Removed the GIF image generation, which
764  *      is now done in filters.c:block_url()
765  *    - Made error conditions like domain lookup
766  *      failiure or (various) problems while talking
767  *      to the server use cgi.c:error_response()
768  *      instead of generating HTML/HTTP in chat() (yuck!)
769  *    - Removed logentry from cancelled commit
770  *
771  *    Revision 1.20  2001/06/09 10:55:28  jongfoster
772  *    Changing BUFSIZ ==> BUFFER_SIZE
773  *
774  *    Revision 1.19  2001/06/07 23:12:52  jongfoster
775  *    Replacing function pointer in struct gateway with a directly
776  *    called function forwarded_connect().
777  *    Replacing struct gateway with struct forward_spec
778  *
779  *    Revision 1.18  2001/06/03 19:12:16  oes
780  *    introduced new cgi handling
781  *
782  *    Revision 1.17  2001/06/01 20:07:23  jongfoster
783  *    Now uses action +image-blocker{} rather than config->tinygif
784  *
785  *    Revision 1.16  2001/06/01 18:49:17  jongfoster
786  *    Replaced "list_share" with "list" - the tiny memory gain was not
787  *    worth the extra complexity.
788  *
789  *    Revision 1.15  2001/05/31 21:24:47  jongfoster
790  *    Changed "permission" to "action" throughout.
791  *    Removed DEFAULT_USER_AGENT - it must now be specified manually.
792  *    Moved vanilla wafer check into chat(), since we must now
793  *    decide whether or not to add it based on the URL.
794  *
795  *    Revision 1.14  2001/05/29 20:14:01  joergs
796  *    AmigaOS bugfix: PCRS needs a lot of stack, stacksize for child threads
797  *    increased.
798  *
799  *    Revision 1.13  2001/05/29 09:50:24  jongfoster
800  *    Unified blocklist/imagelist/permissionslist.
801  *    File format is still under discussion, but the internal changes
802  *    are (mostly) done.
803  *
804  *    Also modified interceptor behaviour:
805  *    - We now intercept all URLs beginning with one of the following
806  *      prefixes (and *only* these prefixes):
807  *        * http://i.j.b/
808  *        * http://ijbswa.sf.net/config/
809  *        * http://ijbswa.sourceforge.net/config/
810  *    - New interceptors "home page" - go to http://i.j.b/ to see it.
811  *    - Internal changes so that intercepted and fast redirect pages
812  *      are not replaced with an image.
813  *    - Interceptors now have the option to send a binary page direct
814  *      to the client. (i.e. ijb-send-banner uses this)
815  *    - Implemented show-url-info interceptor.  (Which is why I needed
816  *      the above interceptors changes - a typical URL is
817  *      "http://i.j.b/show-url-info?url=www.somesite.com/banner.gif".
818  *      The previous mechanism would not have intercepted that, and
819  *      if it had been intercepted then it then it would have replaced
820  *      it with an image.)
821  *
822  *    Revision 1.12  2001/05/27 22:17:04  oes
823  *
824  *    - re_process_buffer no longer writes the modified buffer
825  *      to the client, which was very ugly. It now returns the
826  *      buffer, which it is then written by chat.
827  *
828  *    - content_length now adjusts the Content-Length: header
829  *      for modified documents rather than crunch()ing it.
830  *      (Length info in csp->content_length, which is 0 for
831  *      unmodified documents)
832  *
833  *    - For this to work, sed() is called twice when filtering.
834  *
835  *    Revision 1.11  2001/05/26 17:27:53  jongfoster
836  *    Added support for CLF and fixed LOG_LEVEL_LOG.
837  *    Also did CRLF->LF fix of my previous patch.
838  *
839  *    Revision 1.10  2001/05/26 15:26:15  jongfoster
840  *    ACL feature now provides more security by immediately dropping
841  *    connections from untrusted hosts.
842  *
843  *    Revision 1.9  2001/05/26 00:28:36  jongfoster
844  *    Automatic reloading of config file.
845  *    Removed obsolete SIGHUP support (Unix) and Reload menu option (Win32).
846  *    Most of the global variables have been moved to a new
847  *    struct configuration_spec, accessed through csp->config->globalname
848  *    Most of the globals remaining are used by the Win32 GUI.
849  *
850  *    Revision 1.8  2001/05/25 22:43:18  jongfoster
851  *    Fixing minor memory leak and buffer overflow.
852  *
853  *    Revision 1.7  2001/05/25 22:34:30  jongfoster
854  *    Hard tabs->Spaces
855  *
856  *    Revision 1.6  2001/05/23 00:13:58  joergs
857  *    AmigaOS support fixed.
858  *
859  *    Revision 1.5  2001/05/22 18:46:04  oes
860  *
861  *    - Enabled filtering banners by size rather than URL
862  *      by adding patterns that replace all standard banner
863  *      sizes with the "Junkbuster" gif to the re_filterfile
864  *
865  *    - Enabled filtering WebBugs by providing a pattern
866  *      which kills all 1x1 images
867  *
868  *    - Added support for PCRE_UNGREEDY behaviour to pcrs,
869  *      which is selected by the (nonstandard and therefore
870  *      capital) letter 'U' in the option string.
871  *      It causes the quantifiers to be ungreedy by default.
872  *      Appending a ? turns back to greedy (!).
873  *
874  *    - Added a new interceptor ijb-send-banner, which
875  *      sends back the "Junkbuster" gif. Without imagelist or
876  *      MSIE detection support, or if tinygif = 1, or the
877  *      URL isn't recognized as an imageurl, a lame HTML
878  *      explanation is sent instead.
879  *
880  *    - Added new feature, which permits blocking remote
881  *      script redirects and firing back a local redirect
882  *      to the browser.
883  *      The feature is conditionally compiled, i.e. it
884  *      can be disabled with --disable-fast-redirects,
885  *      plus it must be activated by a "fast-redirects"
886  *      line in the config file, has its own log level
887  *      and of course wants to be displayed by show-proxy-args
888  *      Note: Boy, all the #ifdefs in 1001 locations and
889  *      all the fumbling with configure.in and acconfig.h
890  *      were *way* more work than the feature itself :-(
891  *
892  *    - Because a generic redirect template was needed for
893  *      this, tinygif = 3 now uses the same.
894  *
895  *    - Moved GIFs, and other static HTTP response templates
896  *      to project.h
897  *
898  *    - Some minor fixes
899  *
900  *    - Removed some >400 CRs again (Jon, you really worked
901  *      a lot! ;-)
902  *
903  *    Revision 1.4  2001/05/21 19:34:01  jongfoster
904  *    Made failure to bind() a fatal error.
905  *
906  *    Revision 1.3  2001/05/20 01:21:20  jongfoster
907  *    Version 2.9.4 checkin.
908  *    - Merged popupfile and cookiefile, and added control over PCRS
909  *      filtering, in new "permissionsfile".
910  *    - Implemented LOG_LEVEL_FATAL, so that if there is a configuration
911  *      file error you now get a message box (in the Win32 GUI) rather
912  *      than the program exiting with no explanation.
913  *    - Made killpopup use the PCRS MIME-type checking and HTTP-header
914  *      skipping.
915  *    - Removed tabs from "config"
916  *    - Moved duplicated url parsing code in "loaders.c" to a new funcition.
917  *    - Bumped up version number.
918  *
919  *    Revision 1.2  2001/05/17 22:34:44  oes
920  *     - Added hint on GIF char array generation to jcc.c
921  *     - Cleaned CRLF's from the sources and related files
922  *     - Repaired logging for REF and FRC
923  *
924  *    Revision 1.1.1.1  2001/05/15 13:58:56  oes
925  *    Initial import of version 2.9.3 source tree
926  *
927  *
928  *********************************************************************/
929 \f
930
931 #include "config.h"
932
933 #include <stdio.h>
934 #include <sys/types.h>
935 #include <stdlib.h>
936 #include <string.h>
937 #include <signal.h>
938 #include <fcntl.h>
939 #include <errno.h>
940 #include <assert.h>
941
942 #ifdef _WIN32
943 # ifndef FEATURE_PTHREAD
944 #  ifndef STRICT
945 #   define STRICT
946 #  endif
947 #  include <windows.h>
948 #  include <process.h>
949 # endif /* ndef FEATURE_PTHREAD */
950
951 # include "win32.h"
952 # ifndef _WIN_CONSOLE
953 #  include "w32log.h"
954 # endif /* ndef _WIN_CONSOLE */
955 # include "w32svrapi.h"
956
957 #else /* ifndef _WIN32 */
958
959 # if !defined (__OS2__)
960 # include <unistd.h>
961 # include <sys/wait.h>
962 # endif /* ndef __OS2__ */
963 # include <sys/time.h>
964 # include <sys/stat.h>
965 # include <sys/ioctl.h>
966
967 #ifdef sun
968 #include <sys/termios.h>
969 #endif /* sun */
970
971 #ifdef unix
972 #include <pwd.h>
973 #include <grp.h>
974 #endif
975
976 # include <signal.h>
977
978 # ifdef __BEOS__
979 #  include <socket.h>  /* BeOS has select() for sockets only. */
980 #  include <OS.h>      /* declarations for threads and stuff. */
981 # endif
982
983 # if defined(__EMX__) || defined(__OS2__)
984 #  include <sys/select.h>  /* OS/2/EMX needs a little help with select */
985 # endif
986 # ifdef __OS2__
987 #define INCL_DOS
988 # include <os2.h>
989 #define bzero(B,N) memset(B,0x00,n)
990 # endif
991
992 # ifndef FD_ZERO
993 #  include <select.h>
994 # endif
995
996 #endif
997
998 #include "project.h"
999 #include "list.h"
1000 #include "jcc.h"
1001 #include "filters.h"
1002 #include "loaders.h"
1003 #include "parsers.h"
1004 #include "killpopup.h"
1005 #include "miscutil.h"
1006 #include "errlog.h"
1007 #include "jbsockets.h"
1008 #include "gateway.h"
1009 #include "actions.h"
1010 #include "cgi.h"
1011 #include "loadcfg.h"
1012 #include "urlmatch.h"
1013
1014 const char jcc_h_rcs[] = JCC_H_VERSION;
1015 const char project_h_rcs[] = PROJECT_H_VERSION;
1016
1017 int no_daemon = 0;
1018 struct client_state  clients[1];
1019 struct file_list     files[1];
1020
1021 #ifdef FEATURE_STATISTICS
1022 int urls_read     = 0;     /* total nr of urls read inc rejected */
1023 int urls_rejected = 0;     /* total nr of urls rejected */
1024 #endif /* def FEATURE_STATISTICS */
1025
1026 #ifdef FEATURE_GRACEFUL_TERMINATION
1027 int g_terminate = 0;
1028 #endif
1029
1030 #if !defined(_WIN32) && !defined(__OS2__) && !defined(AMIGA)
1031 static void sig_handler(int the_signal);
1032 #endif
1033 static int client_protocol_is_unsupported(const struct client_state *csp, char *req);
1034 static jb_err get_request_destination_elsewhere(struct client_state *csp, struct list *headers);
1035 static jb_err get_server_headers(struct client_state *csp);
1036 static const char *crunch_reason(const struct http_response *rsp);
1037 static void send_crunch_response(struct client_state *csp, struct http_response *rsp);
1038 /*
1039  * static int request_contains_null_bytes(const struct client_state *csp, char *buf, int len);
1040  */
1041 static void build_request_line(struct client_state *csp, const struct forward_spec *fwd, char **request_line);
1042 static jb_err change_request_destination(struct client_state *csp);
1043 static void chat(struct client_state *csp);
1044 static void serve(struct client_state *csp);
1045 #if defined(unix)
1046 static void usage(const char *myname);
1047 #endif
1048 static void initialize_mutexes(void);
1049 static jb_socket bind_port_helper(struct configuration_spec *config);
1050 static void listen_loop(void);
1051
1052 #ifdef AMIGA
1053 void serve(struct client_state *csp);
1054 #else /* ifndef AMIGA */
1055 static void serve(struct client_state *csp);
1056 #endif /* def AMIGA */
1057
1058 #ifdef __BEOS__
1059 static int32 server_thread(void *data);
1060 #endif /* def __BEOS__ */
1061
1062 #ifdef _WIN32
1063 #define sleep(N)  Sleep(((N) * 1000))
1064 #endif
1065
1066 #ifdef __OS2__
1067 #define sleep(N)  DosSleep(((N) * 100))
1068 #endif
1069
1070 #ifdef FEATURE_PTHREAD
1071 pthread_mutex_t log_mutex;
1072 pthread_mutex_t log_init_mutex;
1073
1074 #if !defined(HAVE_GETHOSTBYADDR_R) || !defined(HAVE_GETHOSTBYNAME_R)
1075 pthread_mutex_t resolver_mutex;
1076 #endif /* !defined(HAVE_GETHOSTBYADDR_R) || !defined(HAVE_GETHOSTBYNAME_R) */
1077
1078 #ifndef HAVE_GMTIME_R
1079 pthread_mutex_t gmtime_mutex;
1080 #endif /* ndef HAVE_GMTIME_R */
1081
1082 #ifndef HAVE_LOCALTIME_R
1083 pthread_mutex_t localtime_mutex;
1084 #endif /* ndef HAVE_GMTIME_R */
1085
1086 #ifndef HAVE_RANDOM
1087 pthread_mutex_t rand_mutex;
1088 #endif /* ndef HAVE_RANDOM */
1089
1090 #endif /* FEATURE_PTHREAD */
1091
1092 #if defined(unix) || defined(__EMX__)
1093 const char *basedir = NULL;
1094 const char *pidfile = NULL;
1095 int received_hup_signal = 0;
1096 #endif /* defined unix */
1097
1098 /* HTTP snipplets. */
1099 static const char CSUCCEED[] =
1100    "HTTP/1.0 200 Connection established\r\n"
1101    "Proxy-Agent: Privoxy/" VERSION "\r\n\r\n";
1102
1103 static const char CHEADER[] =
1104    "HTTP/1.0 400 Invalid header received from client\r\n"
1105    "Proxy-Agent: Privoxy " VERSION "\r\n"
1106    "Content-Type: text/plain\r\n"
1107    "Connection: close\r\n\r\n"
1108    "Invalid header received from client.\r\n";
1109
1110 static const char CFORBIDDEN[] =
1111    "HTTP/1.0 403 Connection not allowable\r\n"
1112    "Proxy-Agent: Privoxy " VERSION "\r\n"
1113    "X-Hint: If you read this message interactively, then you know why this happens ,-)\r\n"
1114    "Connection: close\r\n\r\n";
1115
1116 static const char FTP_RESPONSE[] =
1117    "HTTP/1.0 400 Invalid request received from client\r\n"
1118    "Content-Type: text/plain\r\n"
1119    "Connection: close\r\n\r\n"
1120    "Invalid request. Privoxy doesn't support FTP.\r\n";
1121
1122 static const char GOPHER_RESPONSE[] =
1123    "HTTP/1.0 400 Invalid request received from client\r\n"
1124    "Content-Type: text/plain\r\n"
1125    "Connection: close\r\n\r\n"
1126    "Invalid request. Privoxy doesn't support gopher.\r\n";
1127
1128 /* XXX: should be a template */
1129 static const char MISSING_DESTINATION_RESPONSE[] =
1130    "HTTP/1.0 400 Bad request received from client\r\n"
1131    "Proxy-Agent: Privoxy " VERSION "\r\n"
1132    "Content-Type: text/plain\r\n"
1133    "Connection: close\r\n\r\n"
1134    "Bad request. Privoxy was unable to extract the destination.\r\n";
1135
1136 /* XXX: should be a template */
1137 static const char NO_SERVER_DATA_RESPONSE[] =
1138    "HTTP/1.0 502 Server or forwarder response empty\r\n"
1139    "Proxy-Agent: Privoxy " VERSION "\r\n"
1140    "Content-Type: text/plain\r\n"
1141    "Connection: close\r\n\r\n"
1142    "Empty server or forwarder response.\r\n"
1143    "The connection was closed without sending any data.\r\n";
1144
1145 #if 0
1146 /* XXX: should be a template */
1147 static const char NULL_BYTE_RESPONSE[] =
1148    "HTTP/1.0 400 Bad request received from client\r\n"
1149    "Proxy-Agent: Privoxy " VERSION "\r\n"
1150    "Content-Type: text/plain\r\n"
1151    "Connection: close\r\n\r\n"
1152    "Bad request. Null byte(s) before end of request.\r\n";
1153 #endif
1154
1155 /* XXX: should be a template */
1156 static const char MESSED_UP_REQUEST_RESPONSE[] =
1157    "HTTP/1.0 400 Malformed request after rewriting\r\n"
1158    "Proxy-Agent: Privoxy " VERSION "\r\n"
1159    "Content-Type: text/plain\r\n"
1160    "Connection: close\r\n\r\n"
1161    "Bad request. Messed up with header filters.\r\n";
1162
1163 /* A function to crunch a response */
1164 typedef struct http_response *(*crunch_func_ptr)(struct client_state *);
1165
1166 /* Crunch function flags */
1167 #define CF_NO_FLAGS        0
1168 /* Cruncher applies to forced requests as well */
1169 #define CF_IGNORE_FORCE    1
1170 /* Crunched requests are counted for the block statistics */
1171 #define CF_COUNT_AS_REJECT 2
1172
1173 /* A crunch function and its flags */
1174 struct cruncher
1175 {
1176    const crunch_func_ptr cruncher;
1177    const int flags;
1178 };
1179
1180 static int crunch_response_triggered(struct client_state *csp, const struct cruncher crunchers[]);
1181
1182 /* Complete list of cruncher functions */
1183 static const struct cruncher crunchers_all[] = {
1184    { direct_response, CF_COUNT_AS_REJECT|CF_IGNORE_FORCE},
1185    { block_url,       CF_COUNT_AS_REJECT },
1186 #ifdef FEATURE_TRUST
1187    { trust_url,       CF_COUNT_AS_REJECT },
1188 #endif /* def FEATURE_TRUST */
1189    { redirect_url,    CF_NO_FLAGS  },
1190    { dispatch_cgi,    CF_IGNORE_FORCE},
1191    { NULL,            0 }
1192 };
1193
1194 /* Light version, used after tags are applied */
1195 static const struct cruncher crunchers_light[] = {
1196    { block_url,       CF_COUNT_AS_REJECT },
1197    { redirect_url,    CF_NO_FLAGS },
1198    { NULL,            0 }
1199 };
1200
1201
1202 #if !defined(_WIN32) && !defined(__OS2__) && !defined(AMIGA)
1203 /*********************************************************************
1204  *
1205  * Function    :  sig_handler 
1206  *
1207  * Description :  Signal handler for different signals.
1208  *                Exit gracefully on TERM and INT
1209  *                or set a flag that will cause the errlog
1210  *                to be reopened by the main thread on HUP.
1211  *
1212  * Parameters  :
1213  *          1  :  the_signal = the signal cause this function to call
1214  *
1215  * Returns     :  - 
1216  *
1217  *********************************************************************/
1218 static void sig_handler(int the_signal)
1219 {
1220    switch(the_signal)
1221    {
1222       case SIGTERM:
1223       case SIGINT:
1224          log_error(LOG_LEVEL_INFO, "exiting by signal %d .. bye", the_signal);
1225 #if defined(unix)
1226          if(pidfile)
1227          {
1228             unlink(pidfile);
1229          }
1230 #endif /* unix */
1231          exit(the_signal);
1232          break;
1233
1234       case SIGHUP:
1235          received_hup_signal = 1;
1236          break;         
1237
1238       default:
1239          /* 
1240           * We shouldn't be here, unless we catch signals
1241           * in main() that we can't handle here!
1242           */
1243          log_error(LOG_LEVEL_FATAL, "sig_handler: exiting on unexpected signal %d", the_signal);
1244    }
1245    return;
1246
1247 }
1248 #endif
1249
1250
1251 /*********************************************************************
1252  *
1253  * Function    :  client_protocol_is_unsupported
1254  *
1255  * Description :  Checks if the client used a known unsupported
1256  *                protocol and deals with it by sending an error
1257  *                response.
1258  *
1259  * Parameters  :
1260  *          1  :  csp = Current client state (buffers, headers, etc...)
1261  *          2  :  req = the first request line send by the client
1262  *
1263  * Returns     :  TRUE if an error response has been generated, or
1264  *                FALSE if the request doesn't look invalid.
1265  *
1266  *********************************************************************/
1267 static int client_protocol_is_unsupported(const struct client_state *csp, char *req)
1268 {
1269    char buf[BUFFER_SIZE];
1270
1271    /*
1272     * If it's a FTP or gopher request, we don't support it.
1273     *
1274     * These checks are better than nothing, but they might
1275     * not work in all configurations and some clients might
1276     * have problems digesting the answer.
1277     *
1278     * They should, however, never cause more problems than
1279     * Privoxy's old behaviour (returning the misleading HTML
1280     * error message:
1281     *
1282     * "Could not resolve http://(ftp|gopher)://example.org").
1283     */
1284    if (!strncmpic(req, "GET ftp://", 10) || !strncmpic(req, "GET gopher://", 13))
1285    {
1286       if (!strncmpic(req, "GET ftp://", 10))
1287       {
1288          strlcpy(buf, FTP_RESPONSE, sizeof(buf));
1289          log_error(LOG_LEVEL_ERROR, "%s tried to use Privoxy as FTP proxy: %s",
1290             csp->ip_addr_str, req);
1291       }
1292       else
1293       {
1294          strlcpy(buf, GOPHER_RESPONSE, sizeof(buf));
1295          log_error(LOG_LEVEL_ERROR, "%s tried to use Privoxy as gopher proxy: %s",
1296             csp->ip_addr_str, req);
1297       }
1298       log_error(LOG_LEVEL_CLF, "%s - - [%T] \"%s\" 400 0", csp->ip_addr_str, req);
1299       freez(req);
1300       write_socket(csp->cfd, buf, strlen(buf));
1301
1302       return TRUE;
1303    }
1304
1305    return FALSE;
1306 }
1307
1308
1309 /*********************************************************************
1310  *
1311  * Function    :  get_request_destination_elsewhere
1312  *
1313  * Description :  If the client's request was redirected into
1314  *                Privoxy without the client's knowledge,
1315  *                the request line lacks the destination host.
1316  *
1317  *                This function tries to get it elsewhere,
1318  *                provided accept-intercepted-requests is enabled.
1319  *
1320  *                "Elsewhere" currently only means "Host: header",
1321  *                but in the future we may ask the redirecting
1322  *                packet filter to look the destination up.
1323  *
1324  *                If the destination stays unknown, an error
1325  *                response is send to the client and headers
1326  *                are freed so that chat() can return directly.
1327  *
1328  * Parameters  :
1329  *          1  :  csp = Current client state (buffers, headers, etc...)
1330  *          2  :  headers = a header list
1331  *
1332  * Returns     :  JB_ERR_OK if the destination is now known, or
1333  *                JB_ERR_PARSE if it isn't.
1334  *
1335  *********************************************************************/
1336 static jb_err get_request_destination_elsewhere(struct client_state *csp, struct list *headers)
1337 {
1338    char *req;
1339
1340    if (!(csp->config->feature_flags & RUNTIME_FEATURE_ACCEPT_INTERCEPTED_REQUESTS))
1341    {
1342       log_error(LOG_LEVEL_ERROR, "%s's request: \'%s\' is invalid."
1343          " Privoxy isn't configured to accept intercepted requests.",
1344          csp->ip_addr_str, csp->http->cmd);
1345       /* XXX: Use correct size */
1346       log_error(LOG_LEVEL_CLF, "%s - - [%T] \"%s\" 400 0",
1347          csp->ip_addr_str, csp->http->cmd);
1348
1349       write_socket(csp->cfd, CHEADER, strlen(CHEADER));
1350       destroy_list(headers);
1351
1352       return JB_ERR_PARSE;
1353    }
1354    else if (JB_ERR_OK == get_destination_from_headers(headers, csp->http))
1355    {
1356       /* Split the domain we just got for pattern matching */
1357       init_domain_components(csp->http);
1358
1359       return JB_ERR_OK;
1360    }
1361    else
1362    {
1363       /* We can't work without destination. Go spread the news.*/
1364
1365       req = list_to_text(headers);
1366       chomp(req);
1367       /* XXX: Use correct size */
1368       log_error(LOG_LEVEL_CLF, "%s - - [%T] \"%s\" 400 0",
1369          csp->ip_addr_str, csp->http->cmd);
1370       log_error(LOG_LEVEL_ERROR,
1371          "Privoxy was unable to get the destination for %s's request:\n%s\n%s",
1372          csp->ip_addr_str, csp->http->cmd, req);
1373       freez(req);
1374
1375       write_socket(csp->cfd, MISSING_DESTINATION_RESPONSE, strlen(MISSING_DESTINATION_RESPONSE));
1376       destroy_list(headers);
1377
1378       return JB_ERR_PARSE;
1379    }
1380    /*
1381     * TODO: If available, use PF's ioctl DIOCNATLOOK as last resort
1382     * to get the destination IP address, use it as host directly
1383     * or do a reverse DNS lookup first.
1384     */
1385 }
1386
1387
1388 /*********************************************************************
1389  *
1390  * Function    :  get_server_headers
1391  *
1392  * Description :  Parses server headers in iob and fills them
1393  *                into csp->headers so that they can later be
1394  *                handled by sed().
1395  *
1396  * Parameters  :
1397  *          1  :  csp = Current client state (buffers, headers, etc...)
1398  *
1399  * Returns     :  JB_ERR_OK if everything went fine, or
1400  *                JB_ERR_PARSE if the headers were incomplete.
1401  *
1402  *********************************************************************/
1403 static jb_err get_server_headers(struct client_state *csp)
1404 {
1405    int continue_hack_in_da_house = 0;
1406    char * header;
1407
1408    while (((header = get_header(csp)) != NULL) || continue_hack_in_da_house)
1409    {
1410       if (header == NULL)
1411       {
1412          /*
1413           * continue hack in da house. Ignore the ending of
1414           * this head and continue enlisting header lines.
1415           * The reason is described below.
1416           */
1417          enlist(csp->headers, "");
1418          continue_hack_in_da_house = 0;
1419          continue;
1420       }
1421       else if (0 == strncmpic(header, "HTTP/1.1 100", 12))
1422       {
1423          /*
1424           * It's a bodyless continue response, don't
1425           * stop header parsing after reaching it's end.
1426           *
1427           * As a result Privoxy will concatenate the
1428           * next response's head and parse and deliver
1429           * the headers as if they belonged to one request.
1430           *
1431           * The client will separate them because of the
1432           * empty line between them.
1433           *
1434           * XXX: What we're doing here is clearly against
1435           * the intended purpose of the continue header,
1436           * and under some conditions (HTTP/1.0 client request)
1437           * it's a standard violation.
1438           *
1439           * Anyway, "sort of against the spec" is preferable
1440           * to "always getting confused by Continue responses"
1441           * (Privoxy's behaviour before this hack was added)
1442           */
1443          log_error(LOG_LEVEL_HEADER, "Continue hack in da house.");
1444          continue_hack_in_da_house = 1;
1445       }
1446       else if (*header == '\0') 
1447       {
1448          /*
1449           * If the header is empty, but the Continue hack
1450           * isn't active, we can assume that we reached the
1451           * end of the buffer before we hit the end of the
1452           * head.
1453           *
1454           * Inform the caller an let it decide how to handle it.
1455           */
1456          return JB_ERR_PARSE;
1457       }
1458
1459       /* Enlist header */
1460       if (JB_ERR_MEMORY == enlist(csp->headers, header))
1461       {
1462          /*
1463           * XXX: Should we quit the request and return a
1464           * out of memory error page instead?
1465           */
1466          log_error(LOG_LEVEL_ERROR,
1467             "Out of memory while enlisting server headers. %s lost.",
1468             header);
1469       }
1470       freez(header);
1471    }
1472
1473    return JB_ERR_OK;
1474 }
1475
1476
1477 /*********************************************************************
1478  *
1479  * Function    :  crunch_reason
1480  *
1481  * Description :  Translates the crunch reason code into a string.
1482  *
1483  * Parameters  :
1484  *          1  :  rsp = a http_response
1485  *
1486  * Returns     :  A string with the crunch reason or an error description.
1487  *
1488  *********************************************************************/
1489 static const char *crunch_reason(const struct http_response *rsp)
1490 {
1491    char * reason = NULL;
1492
1493    assert(rsp != NULL);
1494    if (rsp == NULL)
1495    {
1496       return "Internal error while searching for crunch reason";
1497    }
1498
1499    switch (rsp->reason)
1500    {
1501       case RSP_REASON_UNSUPPORTED:
1502          reason = "Unsupported HTTP feature";
1503          break;
1504       case RSP_REASON_BLOCKED:
1505          reason = "Blocked";
1506          break;
1507       case RSP_REASON_UNTRUSTED:
1508          reason = "Untrusted";
1509          break;
1510       case RSP_REASON_REDIRECTED:
1511          reason = "Redirected";
1512          break;
1513       case RSP_REASON_CGI_CALL:
1514          reason = "CGI Call";
1515          break;
1516       case RSP_REASON_NO_SUCH_DOMAIN:
1517          reason = "DNS failure";
1518          break;
1519       case RSP_REASON_FORWARDING_FAILED:
1520          reason = "Forwarding failed";
1521          break;
1522       case RSP_REASON_CONNECT_FAILED:
1523          reason = "Connection failure";
1524          break;
1525       case RSP_REASON_OUT_OF_MEMORY:
1526          reason = "Out of memory (may mask other reasons)";
1527          break;
1528       default:
1529          reason = "No reason recorded";
1530          break;
1531    }
1532
1533    return reason;
1534 }
1535
1536
1537 /*********************************************************************
1538  *
1539  * Function    :  send_crunch_response
1540  *
1541  * Description :  Delivers already prepared response for
1542  *                intercepted requests, logs the interception
1543  *                and frees the response.
1544  *
1545  * Parameters  :
1546  *          1  :  csp = Current client state (buffers, headers, etc...)
1547  *          1  :  rsp = Fully prepared response. Will be freed on exit.
1548  *
1549  * Returns     :  Nothing.
1550  *
1551  *********************************************************************/
1552 static void send_crunch_response(struct client_state *csp, struct http_response *rsp)
1553 {
1554       const struct http_request *http = csp->http;
1555       char status_code[4];
1556
1557       assert(rsp != NULL);
1558       assert(rsp->head != NULL);
1559
1560       if (rsp == NULL)
1561       {
1562          /*
1563           * Not supposed to happen. If it does
1564           * anyway, treat it as an unknown error.
1565           */
1566          cgi_error_unknown(csp, rsp, RSP_REASON_INTERNAL_ERROR);
1567          /* return code doesn't matter */
1568       }
1569
1570       if (rsp == NULL)
1571       {
1572          /* If rsp is still NULL, we have serious internal problems. */
1573          log_error(LOG_LEVEL_FATAL,
1574             "NULL response in send_crunch_response and cgi_error_unknown failed as well.");
1575       }
1576
1577       /*
1578        * Extract the status code from the actual head
1579        * that was send to the client. It is the only
1580        * way to get it right for all requests, including
1581        * the fixed ones for out-of-memory problems.
1582        *
1583        * A head starts like this: 'HTTP/1.1 200...'
1584        *                           0123456789|11
1585        *                                     10
1586        */
1587       status_code[0] = rsp->head[9];
1588       status_code[1] = rsp->head[10];
1589       status_code[2] = rsp->head[11];
1590       status_code[3] = '\0';
1591
1592       /* Write the answer to the client */
1593       if (write_socket(csp->cfd, rsp->head, rsp->head_length)
1594        || write_socket(csp->cfd, rsp->body, rsp->content_length))
1595       {
1596          /* There is nothing we can do about it. */
1597          log_error(LOG_LEVEL_ERROR, "write to: %s failed: %E", csp->http->host);
1598       }
1599
1600       /* Log that the request was crunched and why. */
1601       log_error(LOG_LEVEL_GPC, "%s%s crunch! (%s)",
1602          http->hostport, http->path, crunch_reason(rsp));
1603       log_error(LOG_LEVEL_CLF, "%s - - [%T] \"%s\" %s %d",
1604          csp->ip_addr_str, http->ocmd, status_code, rsp->content_length);
1605
1606       /* Clean up and return */
1607       if (cgi_error_memory() != rsp)
1608       {
1609          free_http_response(rsp);
1610       } 
1611       return;
1612 }
1613
1614
1615 #if 0
1616 /*********************************************************************
1617  *
1618  * Function    :  request_contains_null_bytes
1619  *
1620  * Description :  Checks for NULL bytes in the request and sends
1621  *                an error message to the client if any were found.
1622  *
1623  *                XXX: currently not used, see comment in chat().
1624  *
1625  * Parameters  :
1626  *          1  :  csp = Current client state (buffers, headers, etc...)
1627  *          2  :  buf = Data from the client's request to check.
1628  *          3  :  len = The data length.
1629  *
1630  * Returns     :  TRUE if the request contained one or more NULL bytes, or
1631  *                FALSE otherwise.
1632  *
1633  *********************************************************************/
1634 static int request_contains_null_bytes(const struct client_state *csp, char *buf, int len)
1635 {
1636    size_t c_len; /* Request lenght when treated as C string */
1637
1638    c_len = strlen(buf);
1639
1640    if (c_len < len)
1641    {
1642       /*
1643        * Null byte(s) found. Log the request,
1644        * return an error response and hang up.
1645        */
1646       size_t tmp_len = c_len;
1647
1648       do
1649       {
1650         /*
1651          * Replace NULL byte(s) with '°' characters
1652          * so the request can be logged as string.
1653          * XXX: Is there a better replacement character?
1654          */
1655          buf[tmp_len]='°';
1656          tmp_len += strlen(buf+tmp_len);
1657       } while (tmp_len < len);
1658
1659       log_error(LOG_LEVEL_ERROR, "%s\'s request contains at least one NULL byte "
1660          "(length=%d, strlen=%d).", csp->ip_addr_str, len, c_len);
1661       log_error(LOG_LEVEL_HEADER, 
1662          "Offending request data with NULL bytes turned into \'°\' characters: %s", buf);
1663
1664       write_socket(csp->cfd, NULL_BYTE_RESPONSE, strlen(NULL_BYTE_RESPONSE));
1665
1666       /* XXX: Log correct size */
1667       log_error(LOG_LEVEL_CLF, "%s - - [%T] \"Invalid request\" 400 0", csp->ip_addr_str);
1668
1669       return TRUE;
1670    }
1671
1672    return FALSE;
1673 }
1674 #endif
1675
1676
1677 /*********************************************************************
1678  *
1679  * Function    :  crunch_response_triggered
1680  *
1681  * Description :  Checks if the request has to be crunched,
1682  *                and delivers the crunch response if necessary.
1683  *
1684  * Parameters  :
1685  *          1  :  csp = Current client state (buffers, headers, etc...)
1686  *          2  :  crunchers = list of cruncher functions to run
1687  *
1688  * Returns     :  TRUE if the request was answered with a crunch response
1689  *                FALSE otherwise.
1690  *
1691  *********************************************************************/
1692 static int crunch_response_triggered(struct client_state *csp, const struct cruncher crunchers[])
1693 {
1694    struct http_response *rsp = NULL;
1695    const struct cruncher *c;
1696
1697    /*
1698     * If CGI request crunching is disabled,
1699     * check the CGI dispatcher out of order to
1700     * prevent unintentional blocks or redirects. 
1701     */
1702    if (!(csp->config->feature_flags & RUNTIME_FEATURE_CGI_CRUNCHING)
1703        && (NULL != (rsp = dispatch_cgi(csp))))
1704    {
1705       /* Deliver, log and free the interception response. */
1706       send_crunch_response(csp, rsp);
1707       return TRUE;
1708    }
1709
1710    for (c = crunchers; c->cruncher != NULL; c++)
1711    {
1712       /*
1713        * Check the cruncher if either Privoxy is toggled
1714        * on and the request isn't forced, or if the cruncher
1715        * applies to forced requests as well.
1716        */
1717       if (((csp->flags & CSP_FLAG_TOGGLED_ON) &&
1718           !(csp->flags & CSP_FLAG_FORCED)) ||
1719           (c->flags & CF_IGNORE_FORCE))
1720       {
1721          rsp = c->cruncher(csp);
1722          if (NULL != rsp)
1723          {
1724             /* Deliver, log and free the interception response. */
1725             send_crunch_response(csp, rsp);
1726 #ifdef FEATURE_STATISTICS
1727             if (c->flags & CF_COUNT_AS_REJECT)
1728             {
1729                csp->flags |= CSP_FLAG_REJECTED;
1730             }
1731 #endif /* def FEATURE_STATISTICS */
1732
1733             return TRUE;
1734          }
1735       }
1736    }
1737
1738    return FALSE;
1739 }
1740
1741
1742 /*********************************************************************
1743  *
1744  * Function    :  build_request_line
1745  *
1746  * Description :  Builds the HTTP request line.
1747  *
1748  *                If a HTTP forwarder is used it expects the whole URL,
1749  *                web servers only get the path.
1750  *
1751  * Parameters  :
1752  *          1  :  csp = Current client state (buffers, headers, etc...)
1753  *          2  :  fwd = The forwarding spec used for the request
1754  *                XXX: Should use http->fwd instead.
1755  *          3  :  request_line = The old request line which will be replaced.
1756  *
1757  * Returns     :  Nothing. Terminates in case of memory problems.
1758  *
1759  *********************************************************************/
1760 static void build_request_line(struct client_state *csp, const struct forward_spec *fwd, char **request_line)
1761 {
1762    struct http_request *http = csp->http;
1763
1764    assert(http->ssl == 0);
1765
1766    /*
1767     * Downgrade http version from 1.1 to 1.0
1768     * if +downgrade action applies.
1769     */
1770    if ( (csp->action->flags & ACTION_DOWNGRADE)
1771      && (!strcmpic(http->ver, "HTTP/1.1")))
1772    {
1773       freez(http->ver);
1774       http->ver = strdup("HTTP/1.0");
1775
1776       if (http->ver == NULL)
1777       {
1778          log_error(LOG_LEVEL_FATAL, "Out of memory downgrading HTTP version");
1779       }
1780    }
1781
1782    /*
1783     * Rebuild the request line.
1784     */
1785    freez(*request_line);
1786    *request_line = strdup(http->gpc);
1787    string_append(request_line, " ");
1788
1789    if (fwd->forward_host)
1790    {
1791       string_append(request_line, http->url);
1792    }
1793    else
1794    {
1795       string_append(request_line, http->path);
1796    }
1797    string_append(request_line, " ");
1798    string_append(request_line, http->ver);
1799
1800    if (*request_line == NULL)
1801    {
1802       log_error(LOG_LEVEL_FATAL, "Out of memory writing HTTP command");
1803    }
1804    log_error(LOG_LEVEL_HEADER, "New HTTP Request-Line: %s", *request_line);
1805 }
1806
1807
1808 /*********************************************************************
1809  *
1810  * Function    :  change_request_destination
1811  *
1812  * Description :  Parse a (rewritten) request line and regenerate
1813  *                the http request data.
1814  *
1815  * Parameters  :
1816  *          1  :  csp = Current client state (buffers, headers, etc...)
1817  *
1818  * Returns     :  Forwards the parse_http_request() return code.
1819  *                Terminates in case of memory problems.
1820  *
1821  *********************************************************************/
1822 static jb_err change_request_destination(struct client_state *csp)
1823 {
1824    struct http_request *http = csp->http;
1825    jb_err err;
1826
1827    log_error(LOG_LEVEL_INFO, "Rewrite detected: %s", csp->headers->first->str);
1828    free_http_request(http);
1829    err = parse_http_request(csp->headers->first->str, http, csp);
1830    if (JB_ERR_OK != err)
1831    {
1832       log_error(LOG_LEVEL_ERROR, "Couldn't parse rewritten request: %s.",
1833          jb_err_to_string(err));
1834    }
1835    http->ocmd = strdup(http->cmd); /* XXX: ocmd is a misleading name */
1836    if (http->ocmd == NULL)
1837    {
1838       log_error(LOG_LEVEL_FATAL, "Out of memory copying rewritten HTTP request line");
1839    }
1840
1841    return err;
1842 }
1843
1844
1845 /*********************************************************************
1846  *
1847  * Function    :  chat
1848  *
1849  * Description :  Once a connection to the client has been accepted,
1850  *                this function is called (via serve()) to handle the
1851  *                main business of the communication.  When this
1852  *                function returns, the caller must close the client
1853  *                socket handle.
1854  *
1855  *                FIXME: chat is nearly thousand lines long.
1856  *                Ridiculous.
1857  *
1858  * Parameters  :
1859  *          1  :  csp = Current client state (buffers, headers, etc...)
1860  *
1861  * Returns     :  Nothing.
1862  *
1863  *********************************************************************/
1864 static void chat(struct client_state *csp)
1865 {
1866    char buf[BUFFER_SIZE];
1867    char *hdr;
1868    char *p;
1869    char *req = NULL;
1870    fd_set rfds;
1871    int n;
1872    jb_socket maxfd;
1873    int server_body;
1874    int ms_iis5_hack = 0;
1875    size_t byte_count = 0;
1876    int forwarded_connect_retries = 0;
1877    int max_forwarded_connect_retries = csp->config->forwarded_connect_retries;
1878    const struct forward_spec * fwd;
1879    struct http_request *http;
1880    int len; /* for buffer sizes (and negative error codes) */
1881    jb_err err;
1882 #ifdef FEATURE_KILL_POPUPS
1883    int block_popups_now = 0; /* bool, 1==currently blocking popups */
1884 #endif /* def FEATURE_KILL_POPUPS */
1885
1886    /* Function that does the content filtering for the current request */
1887    filter_function_ptr content_filter = NULL;
1888
1889    /* Skeleton for HTTP response, if we should intercept the request */
1890    struct http_response *rsp;
1891
1892    /* Temporary copy of the client's headers before they get enlisted in csp->headers */
1893    struct list header_list;
1894    struct list *headers = &header_list;
1895
1896    http = csp->http;
1897
1898    memset(buf, 0, sizeof(buf));
1899
1900    /*
1901     * Read the client's request.  Note that since we're not using select() we
1902     * could get blocked here if a client connected, then didn't say anything!
1903     */
1904
1905    do
1906    {
1907       len = read_socket(csp->cfd, buf, sizeof(buf) - 1);
1908
1909       if (len <= 0) break;      /* error! */
1910
1911       /*
1912        * If there is no memory left for buffering the
1913        * request, there is nothing we can do but hang up
1914        */
1915       if (add_to_iob(csp, buf, len))
1916       {
1917          return;
1918       }
1919
1920       req = get_header(csp);
1921
1922    } while ((NULL != req) && ('\0' == *req));
1923
1924    if ((NULL != req) && ('\0' != *req))
1925    {
1926       /* Request received. Validate and parse it. */
1927
1928 #if 0
1929       /*
1930        * XXX: Temporary disabled to prevent problems
1931        * with POST requests whose bodies are allowed to
1932        * contain NULL bytes. BR#1730105.
1933        *
1934        * The main purpose of this check is to properly
1935        * log stuff like BitTorrent traffic and other junk
1936        * that hits public proxies. It's not required for
1937        * Privoxy to functions as those requests are discarded
1938        * later on anyway.
1939        *
1940        * It probably should be rewritten to only check
1941        * the head of the request. Another option would
1942        * be to let all POST requests pass, although that
1943        * may not be good enough.
1944        */
1945       if (request_contains_null_bytes(csp, buf, len))
1946       {
1947          /* NULL bytes found and dealt with, just hang up. */
1948          return;
1949       }
1950 #endif
1951
1952       /* Does the request line look invalid? */
1953       if (client_protocol_is_unsupported(csp, req))
1954       {
1955          /* 
1956           * Yes. The request has already been
1957           * answered with a error response, the buffers
1958           * were freed and we're done with chatting.
1959           */
1960          return;
1961       }
1962
1963 #ifdef FEATURE_FORCE_LOAD
1964       /*
1965        * If this request contains the FORCE_PREFIX and blocks
1966        * aren't enforced, get rid of it and set the force flag.
1967        */
1968       if (strstr(req, FORCE_PREFIX))
1969       {
1970          if (csp->config->feature_flags & RUNTIME_FEATURE_ENFORCE_BLOCKS)
1971          {
1972             log_error(LOG_LEVEL_FORCE,
1973                "Ignored force prefix in request: \"%s\".", req);
1974          }
1975          else
1976          {
1977             strclean(req, FORCE_PREFIX);
1978             log_error(LOG_LEVEL_FORCE, "Enforcing request: \"%s\".", req);
1979             csp->flags |= CSP_FLAG_FORCED;
1980          }
1981       }
1982
1983 #endif /* def FEATURE_FORCE_LOAD */
1984       err = parse_http_request(req, http, csp);
1985       if (JB_ERR_OK != err)
1986       {
1987          log_error(LOG_LEVEL_ERROR, "Couldn't parse request: %s.", jb_err_to_string(err));
1988       }
1989
1990       freez(req);
1991    }
1992
1993    if (http->cmd == NULL)
1994    {
1995       write_socket(csp->cfd, CHEADER, strlen(CHEADER));
1996       /* XXX: Use correct size */
1997       log_error(LOG_LEVEL_CLF, "%s - - [%T] \"Invalid request\" 400 0", csp->ip_addr_str);
1998       log_error(LOG_LEVEL_ERROR, "Invalid header received from %s.", csp->ip_addr_str);
1999
2000       free_http_request(http);
2001       return;
2002    }
2003
2004    /* grab the rest of the client's headers */
2005    init_list(headers);
2006    for (;;)
2007    {
2008       if ( ( ( p = get_header(csp) ) != NULL) && ( *p == '\0' ) )
2009       {
2010          len = read_socket(csp->cfd, buf, sizeof(buf) - 1);
2011          if (len <= 0)
2012          {
2013             log_error(LOG_LEVEL_ERROR, "read from client failed: %E");
2014             return;
2015          }
2016          
2017          /*
2018           * If there is no memory left for buffering the
2019           * request, there is nothing we can do but hang up
2020           */
2021          if (add_to_iob(csp, buf, len))
2022          {
2023             return;
2024          }
2025          continue;
2026       }
2027
2028       if (p == NULL) break;
2029
2030       enlist(headers, p);
2031       freez(p);
2032
2033    }
2034
2035    if (http->host == NULL)
2036    {
2037       /*
2038        * If we still don't know the request destination,
2039        * the request is invalid or the client uses
2040        * Privoxy without its knowledge.
2041        */
2042       if (JB_ERR_OK != get_request_destination_elsewhere(csp, headers))
2043       {
2044          /*
2045           * Our attempts to get the request destination
2046           * elsewhere failed or Privoxy is configured
2047           * to only accept proxy requests.
2048           *
2049           * An error response has already been send
2050           * and we're done here.
2051           */
2052           return;
2053       }
2054    }
2055
2056    /*
2057     * Determine the actions for this URL
2058     */
2059 #ifdef FEATURE_TOGGLE
2060    if (!(csp->flags & CSP_FLAG_TOGGLED_ON))
2061    {
2062       /* Most compatible set of actions (i.e. none) */
2063       init_current_action(csp->action);
2064    }
2065    else
2066 #endif /* ndef FEATURE_TOGGLE */
2067    {
2068       url_actions(http, csp);
2069    }
2070
2071    /* 
2072     * Save a copy of the original request for logging
2073     */
2074    http->ocmd = strdup(http->cmd);
2075
2076    if (http->ocmd == NULL)
2077    {
2078       log_error(LOG_LEVEL_FATAL, "Out of memory copying HTTP request line");
2079    }
2080
2081    enlist(csp->headers, http->cmd);
2082
2083    /* Append the previously read headers */
2084    list_append_list_unique(csp->headers, headers);
2085    destroy_list(headers);
2086
2087    err = sed(client_patterns, add_client_headers, csp);
2088    if (JB_ERR_OK != err)
2089    {
2090       assert(err == JB_ERR_PARSE);
2091       log_error(LOG_LEVEL_FATAL, "Failed to parse client headers");
2092    }
2093    csp->flags |= CSP_FLAG_CLIENT_HEADER_PARSING_DONE;
2094
2095    /* Check request line for rewrites. */
2096    if ((NULL == csp->headers->first->str)
2097       || (strcmp(http->cmd, csp->headers->first->str) &&
2098          (JB_ERR_OK != change_request_destination(csp))))
2099    {
2100       /*
2101        * A header filter broke the request line - bail out.
2102        */
2103       write_socket(csp->cfd, MESSED_UP_REQUEST_RESPONSE, strlen(MESSED_UP_REQUEST_RESPONSE));
2104       /* XXX: Use correct size */
2105       log_error(LOG_LEVEL_CLF, "%s - - [%T] \"Invalid request generated\" 500 0", csp->ip_addr_str);
2106       log_error(LOG_LEVEL_ERROR, "Invalid request line after applying header filters.");
2107
2108       free_http_request(http);
2109       return;
2110    }
2111
2112    /* decide how to route the HTTP request */
2113    if (NULL == (fwd = forward_url(http, csp)))
2114    {
2115       log_error(LOG_LEVEL_FATAL, "gateway spec is NULL!?!?  This can't happen!");
2116       /* Never get here - LOG_LEVEL_FATAL causes program exit */
2117    }
2118
2119    /*
2120     * build the http request to send to the server
2121     * we have to do one of the following:
2122     *
2123     * create = use the original HTTP request to create a new
2124     *          HTTP request that has either the path component
2125     *          without the http://domainspec (w/path) or the
2126     *          full orininal URL (w/url)
2127     *          Note that the path and/or the HTTP version may
2128     *          have been altered by now.
2129     *
2130     * connect = Open a socket to the host:port of the server
2131     *           and short-circuit server and client socket.
2132     *
2133     * pass =  Pass the request unchanged if forwarding a CONNECT
2134     *         request to a parent proxy. Note that we'll be sending
2135     *         the CFAIL message ourselves if connecting to the parent
2136     *         fails, but we won't send a CSUCCEED message if it works,
2137     *         since that would result in a double message (ours and the
2138     *         parent's). After sending the request to the parent, we simply
2139     *         tunnel.
2140     *
2141     * here's the matrix:
2142     *                        SSL
2143     *                    0        1
2144     *                +--------+--------+
2145     *                |        |        |
2146     *             0  | create | connect|
2147     *                | w/path |        |
2148     *  Forwarding    +--------+--------+
2149     *                |        |        |
2150     *             1  | create | pass   |
2151     *                | w/url  |        |
2152     *                +--------+--------+
2153     *
2154     */
2155
2156    /*
2157     * Check if a CONNECT request is allowable:
2158     * In the absence of a +limit-connect action, allow only port 443.
2159     * If there is an action, allow whatever matches the specificaton.
2160     */
2161    if(http->ssl)
2162    {
2163       if(  ( !(csp->action->flags & ACTION_LIMIT_CONNECT) && csp->http->port != 443)
2164            || (csp->action->flags & ACTION_LIMIT_CONNECT
2165               && !match_portlist(csp->action->string[ACTION_STRING_LIMIT_CONNECT], csp->http->port)) )
2166       {
2167          if (csp->action->flags & ACTION_TREAT_FORBIDDEN_CONNECTS_LIKE_BLOCKS)
2168          {
2169             /*
2170              * The response may confuse some clients,
2171              * but makes unblocking easier.
2172              *
2173              * XXX: It seems to work with all major browsers,
2174              * so we should consider returning a body by default someday ... 
2175              */
2176             log_error(LOG_LEVEL_INFO, "Request from %s marked for blocking. "
2177                "limit-connect{%s} doesn't allow CONNECT requests to port %d.",
2178                csp->ip_addr_str, csp->action->string[ACTION_STRING_LIMIT_CONNECT],
2179                csp->http->port);
2180             csp->action->flags |= ACTION_BLOCK;
2181             http->ssl = 0;
2182          }
2183          else
2184          {
2185             write_socket(csp->cfd, CFORBIDDEN, strlen(CFORBIDDEN));
2186             log_error(LOG_LEVEL_INFO, "Request from %s denied. "
2187                "limit-connect{%s} doesn't allow CONNECT requests to port %d.",
2188                csp->ip_addr_str, csp->action->string[ACTION_STRING_LIMIT_CONNECT],
2189                csp->http->port);
2190             assert(NULL != csp->http->ocmd);
2191             log_error(LOG_LEVEL_CLF, "%s - - [%T] \"%s\" 403 0", csp->ip_addr_str, csp->http->ocmd);
2192
2193             list_remove_all(csp->headers);
2194             /*
2195              * XXX: For consistency we might want to log a crunch message here.
2196              */
2197             return;
2198          }
2199       }
2200    }
2201
2202    if (http->ssl == 0)
2203    {
2204       freez(csp->headers->first->str);
2205       build_request_line(csp, fwd, &csp->headers->first->str);
2206    }
2207
2208    hdr = list_to_text(csp->headers);
2209    if (hdr == NULL)
2210    {
2211       /* FIXME Should handle error properly */
2212       log_error(LOG_LEVEL_FATAL, "Out of memory parsing client header");
2213    }
2214
2215    /*
2216     * We have a request. Check if one of the crunchers wants it.
2217     */
2218    if (crunch_response_triggered(csp, crunchers_all))
2219    {
2220       /*
2221        * Yes. The client got the crunch response
2222        * and we are done here after cleaning up.
2223        */
2224       freez(hdr);
2225       list_remove_all(csp->headers);
2226
2227       return;
2228    }
2229
2230    /*
2231     * The headers can't be removed earlier because
2232     * they were still needed for the referrer check
2233     * in case of CGI crunches.
2234     *
2235     * XXX: Would it be worth to move the referrer check
2236     * into client_referrer() and set a flag if it's trusted?
2237     */
2238    list_remove_all(csp->headers);
2239
2240    log_error(LOG_LEVEL_GPC, "%s%s", http->hostport, http->path);
2241
2242    if (fwd->forward_host)
2243    {
2244       log_error(LOG_LEVEL_CONNECT, "via %s:%d to: %s",
2245                fwd->forward_host, fwd->forward_port, http->hostport);
2246    }
2247    else
2248    {
2249       log_error(LOG_LEVEL_CONNECT, "to %s", http->hostport);
2250    }
2251
2252    /* here we connect to the server, gateway, or the forwarder */
2253
2254    while ( (csp->sfd = forwarded_connect(fwd, http, csp))
2255          && (errno == EINVAL) && (forwarded_connect_retries++ < max_forwarded_connect_retries))
2256    {
2257       log_error(LOG_LEVEL_ERROR, "failed request #%u to connect to %s. Trying again.",
2258                 forwarded_connect_retries, http->hostport);
2259    }
2260
2261    if (csp->sfd == JB_INVALID_SOCKET)
2262    {
2263       if (fwd->type != SOCKS_NONE)
2264       {
2265          /* Socks error. */
2266          rsp = error_response(csp, "forwarding-failed", errno);
2267       }
2268       else if (errno == EINVAL)
2269       {
2270          rsp = error_response(csp, "no-such-domain", errno);
2271       }
2272       else
2273       {
2274          rsp = error_response(csp, "connect-failed", errno);
2275          log_error(LOG_LEVEL_CONNECT, "connect to: %s failed: %E",
2276                 http->hostport);
2277       }
2278
2279
2280       /* Write the answer to the client */
2281       if (rsp != NULL)
2282       {
2283          send_crunch_response(csp, rsp);
2284       }
2285
2286       freez(hdr);
2287       return;
2288    }
2289
2290    if (fwd->forward_host || (http->ssl == 0))
2291    {
2292       /* write the client's (modified) header to the server
2293        * (along with anything else that may be in the buffer)
2294        */
2295
2296       if (write_socket(csp->sfd, hdr, strlen(hdr))
2297        || (flush_socket(csp->sfd, csp) <  0))
2298       {
2299          log_error(LOG_LEVEL_CONNECT, "write header to: %s failed: %E",
2300                     http->hostport);
2301
2302          rsp = error_response(csp, "connect-failed", errno);
2303
2304          if(rsp)
2305          {
2306             send_crunch_response(csp, rsp);
2307          }
2308
2309          freez(hdr);
2310          return;
2311       }
2312    }
2313    else
2314    {
2315       /*
2316        * We're running an SSL tunnel and we're not forwarding,
2317        * so just send the "connect succeeded" message to the
2318        * client, flush the rest, and get out of the way.
2319        */
2320       if (write_socket(csp->cfd, CSUCCEED, strlen(CSUCCEED)))
2321       {
2322          freez(hdr);
2323          return;
2324       }
2325       IOB_RESET(csp);
2326    }
2327
2328    log_error(LOG_LEVEL_CONNECT, "to %s successful", http->hostport);
2329
2330    /* we're finished with the client's header */
2331    freez(hdr);
2332
2333    maxfd = ( csp->cfd > csp->sfd ) ? csp->cfd : csp->sfd;
2334
2335    /* pass data between the client and server
2336     * until one or the other shuts down the connection.
2337     */
2338
2339    server_body = 0;
2340
2341    for (;;)
2342    {
2343 #ifdef __OS2__
2344       /*
2345        * FD_ZERO here seems to point to an errant macro which crashes.
2346        * So do this by hand for now...
2347        */
2348       memset(&rfds,0x00,sizeof(fd_set));
2349 #else
2350       FD_ZERO(&rfds);
2351 #endif
2352       FD_SET(csp->cfd, &rfds);
2353       FD_SET(csp->sfd, &rfds);
2354
2355       n = select((int)maxfd+1, &rfds, NULL, NULL, NULL);
2356
2357       if (n < 0)
2358       {
2359          log_error(LOG_LEVEL_ERROR, "select() failed!: %E");
2360          return;
2361       }
2362
2363       /* this is the body of the browser's request
2364        * just read it and write it.
2365        */
2366
2367       if (FD_ISSET(csp->cfd, &rfds))
2368       {
2369          len = read_socket(csp->cfd, buf, sizeof(buf) - 1);
2370
2371          if (len <= 0)
2372          {
2373             break; /* "game over, man" */
2374          }
2375
2376          if (write_socket(csp->sfd, buf, (size_t)len))
2377          {
2378             log_error(LOG_LEVEL_ERROR, "write to: %s failed: %E", http->host);
2379             return;
2380          }
2381          continue;
2382       }
2383
2384       /*
2385        * The server wants to talk.  It could be the header or the body.
2386        * If `hdr' is null, then it's the header otherwise it's the body.
2387        * FIXME: Does `hdr' really mean `host'? No.
2388        */
2389
2390
2391       if (FD_ISSET(csp->sfd, &rfds))
2392       {
2393          fflush( 0 );
2394          len = read_socket(csp->sfd, buf, sizeof(buf) - 1);
2395
2396          if (len < 0)
2397          {
2398             log_error(LOG_LEVEL_ERROR, "read from: %s failed: %E", http->host);
2399
2400             if (http->ssl && (fwd->forward_host == NULL))
2401             {
2402                /*
2403                 * Just hang up. We already confirmed the client's CONNECT
2404                 * request with status code 200 and unencrypted content is
2405                 * no longer welcome.
2406                 */
2407                log_error(LOG_LEVEL_ERROR,
2408                   "CONNECT already confirmed. Unable to tell the client about the problem.");
2409                return;
2410             }
2411             else if (byte_count)
2412             {
2413                /*
2414                 * Just hang up. We already transmitted the original headers
2415                 * and parts of the original content and therefore missed the
2416                 * chance to send an error message (without risking data corruption).
2417                 *
2418                 * XXX: we could retry with a fancy range request here.
2419                 */
2420                log_error(LOG_LEVEL_ERROR, "Already forwarded the original headers. "
2421                   "Unable to tell the client about the problem.");
2422                return;
2423             }
2424
2425             rsp = error_response(csp, "connect-failed", errno);
2426
2427             if (rsp)
2428             {
2429                send_crunch_response(csp, rsp);
2430             }
2431
2432             return;
2433          }
2434
2435          /* Add a trailing zero.  This lets filter_popups
2436           * use string operations.
2437           */
2438          buf[len] = '\0';
2439
2440 #ifdef FEATURE_KILL_POPUPS
2441          /* Filter the popups on this read. */
2442          if (block_popups_now)
2443          {
2444             filter_popups(buf, csp);
2445          }
2446 #endif /* def FEATURE_KILL_POPUPS */
2447
2448          /* Normally, this would indicate that we've read
2449           * as much as the server has sent us and we can
2450           * close the client connection.  However, Microsoft
2451           * in its wisdom has released IIS/5 with a bug that
2452           * prevents it from sending the trailing \r\n in
2453           * a 302 redirect header (and possibly other headers).
2454           * To work around this if we've haven't parsed
2455           * a full header we'll append a trailing \r\n
2456           * and see if this now generates a valid one.
2457           *
2458           * This hack shouldn't have any impacts.  If we've
2459           * already transmitted the header or if this is a
2460           * SSL connection, then we won't bother with this
2461           * hack.  So we only work on partially received
2462           * headers.  If we append a \r\n and this still
2463           * doesn't generate a valid header, then we won't
2464           * transmit anything to the client.
2465           */
2466          if (len == 0)
2467          {
2468
2469             if (server_body || http->ssl)
2470             {
2471                /*
2472                 * If we have been buffering up the document,
2473                 * now is the time to apply content modification
2474                 * and send the result to the client.
2475                 */
2476                if (content_filter)
2477                {
2478                   p = execute_content_filter(csp, content_filter);
2479                   /*
2480                    * If the content filter fails, use the original
2481                    * buffer and length.
2482                    * (see p != NULL ? p : csp->iob->cur below)
2483                    */
2484                   if (NULL == p)
2485                   {
2486                      csp->content_length = (size_t)(csp->iob->eod - csp->iob->cur);
2487                   }
2488
2489                   if (JB_ERR_OK != sed(server_patterns_light, NULL, csp))
2490                   {
2491                      log_error(LOG_LEVEL_FATAL, "Failed to parse server headers.");
2492                   }
2493
2494                   hdr = list_to_text(csp->headers);
2495                   if (hdr == NULL)
2496                   {
2497                      /* FIXME Should handle error properly */
2498                      log_error(LOG_LEVEL_FATAL, "Out of memory parsing server header");
2499                   }
2500
2501                   /*
2502                    * Shouldn't happen because this was the second sed run
2503                    * and tags are only created for the first one.
2504                    */
2505                   assert(!crunch_response_triggered(csp, crunchers_all));
2506
2507                   if (write_socket(csp->cfd, hdr, strlen(hdr))
2508                    || write_socket(csp->cfd, p != NULL ? p : csp->iob->cur, csp->content_length))
2509                   {
2510                      log_error(LOG_LEVEL_ERROR, "write modified content to client failed: %E");
2511                      freez(hdr);
2512                      freez(p);
2513                      return;
2514                   }
2515
2516                   freez(hdr);
2517                   freez(p);
2518                }
2519
2520                break; /* "game over, man" */
2521             }
2522
2523             /*
2524              * This is NOT the body, so
2525              * Let's pretend the server just sent us a blank line.
2526              */
2527             log_error(LOG_LEVEL_INFO,
2528                "Malformerd HTTP headers detected and MS IIS5 hack enabled. "
2529                "Expect an invalid response or even no response at all.");
2530             snprintf(buf, sizeof(buf), "\r\n");
2531             len = (int)strlen(buf);
2532
2533             /*
2534              * Now, let the normal header parsing algorithm below do its
2535              * job.  If it fails, we'll exit instead of continuing.
2536              */
2537
2538             ms_iis5_hack = 1;
2539          }
2540
2541          /*
2542           * If this is an SSL connection or we're in the body
2543           * of the server document, just write it to the client,
2544           * unless we need to buffer the body for later content-filtering
2545           */
2546
2547          if (server_body || http->ssl)
2548          {
2549             if (content_filter)
2550             {
2551                /*
2552                 * If there is no memory left for buffering the content, or the buffer limit
2553                 * has been reached, switch to non-filtering mode, i.e. make & write the
2554                 * header, flush the iob and buf, and get out of the way.
2555                 */
2556                if (add_to_iob(csp, buf, len))
2557                {
2558                   size_t hdrlen;
2559                   int flushed;
2560
2561                   log_error(LOG_LEVEL_INFO, "Flushing header and buffers. Stepping back from filtering.");
2562
2563                   hdr = list_to_text(csp->headers);
2564                   if (hdr == NULL)
2565                   {
2566                      /* 
2567                       * Memory is too tight to even generate the header.
2568                       * Send our static "Out-of-memory" page.
2569                       */
2570                      log_error(LOG_LEVEL_ERROR, "Out of memory while trying to flush.");
2571                      rsp = cgi_error_memory();
2572                      send_crunch_response(csp, rsp);
2573
2574                      return;
2575                   }
2576                   hdrlen = strlen(hdr);
2577
2578                   if (write_socket(csp->cfd, hdr, hdrlen)
2579                    || ((flushed = flush_socket(csp->cfd, csp)) < 0)
2580                    || (write_socket(csp->cfd, buf, (size_t)len)))
2581                   {
2582                      log_error(LOG_LEVEL_CONNECT, "Flush header and buffers to client failed: %E");
2583
2584                      freez(hdr);
2585                      return;
2586                   }
2587
2588                   /*
2589                    * Reset the byte_count to the amount of bytes
2590                    * we just flushed. len will be added a few lines below,
2591                    * hdrlen doesn't matter for LOG_LEVEL_CLF.
2592                    */
2593                   byte_count = (size_t)flushed;
2594                   freez(hdr);
2595                   content_filter = NULL;
2596                   server_body = 1;
2597                }
2598             }
2599             else
2600             {
2601                if (write_socket(csp->cfd, buf, (size_t)len))
2602                {
2603                   log_error(LOG_LEVEL_ERROR, "write to client failed: %E");
2604                   return;
2605                }
2606             }
2607             byte_count += (size_t)len;
2608             continue;
2609          }
2610          else
2611          {
2612             /* we're still looking for the end of the
2613              * server's header ... (does that make header
2614              * parsing an "out of body experience" ?
2615              */
2616
2617             /* 
2618              * buffer up the data we just read.  If that fails, 
2619              * there's little we can do but send our static
2620              * out-of-memory page.
2621              */
2622             if (add_to_iob(csp, buf, len))
2623             {
2624                log_error(LOG_LEVEL_ERROR, "Out of memory while looking for end of server headers.");
2625                rsp = cgi_error_memory();
2626                send_crunch_response(csp, rsp);               
2627
2628                return;
2629             }
2630
2631             /* Convert iob into something sed() can digest */
2632             if (JB_ERR_PARSE == get_server_headers(csp))
2633             {
2634                if (ms_iis5_hack)
2635                {
2636                   /* Well, we tried our MS IIS/5
2637                    * hack and it didn't work.
2638                    * The header is incomplete
2639                    * and there isn't anything
2640                    * we can do about it.
2641                    */
2642                   break;
2643                }
2644                else
2645                {
2646                   /* Since we have to wait for
2647                    * more from the server before
2648                    * we can parse the headers
2649                    * we just continue here.
2650                    */
2651                   continue;
2652                }
2653             }
2654
2655             /* Did we actually get anything? */
2656             if (NULL == csp->headers->first)
2657             {
2658                log_error(LOG_LEVEL_ERROR, "Empty server or forwarder response.");
2659                log_error(LOG_LEVEL_CLF, "%s - - [%T] \"%s\" 502 0", csp->ip_addr_str, http->cmd);
2660                write_socket(csp->cfd, NO_SERVER_DATA_RESPONSE, strlen(NO_SERVER_DATA_RESPONSE));
2661                free_http_request(http);
2662                return;
2663             }
2664
2665             /* we have now received the entire header.
2666              * filter it and send the result to the client
2667              */
2668             if (JB_ERR_OK != sed(server_patterns, add_server_headers, csp))
2669             {
2670                log_error(LOG_LEVEL_FATAL, "Failed to parse server headers.");
2671             }
2672             hdr = list_to_text(csp->headers);
2673             if (hdr == NULL)
2674             {
2675                /* FIXME Should handle error properly */
2676                log_error(LOG_LEVEL_FATAL, "Out of memory parsing server header");
2677             }
2678
2679             if (crunch_response_triggered(csp, crunchers_light))
2680             {
2681                /*
2682                 * One of the tags created by a server-header
2683                 * tagger triggered a crunch. We already
2684                 * delivered the crunch response to the client
2685                 * and are done here after cleaning up.
2686                 */
2687                 freez(hdr);
2688                 return;
2689             }
2690             /* Buffer and pcrs filter this if appropriate. */
2691
2692             if (!http->ssl) /* We talk plaintext */
2693             {
2694
2695 #ifdef FEATURE_KILL_POPUPS
2696                /* Start blocking popups if appropriate. */
2697                if ((csp->content_type & CT_TEXT) &&               /* It's a text / * MIME-Type */
2698                    (csp->action->flags & ACTION_NO_POPUPS) != 0)  /* Policy allows */
2699                {
2700                   block_popups_now = 1;
2701                   /*
2702                    * Filter the part of the body that came in the same read
2703                    * as the last headers:
2704                    */
2705                   filter_popups(csp->iob->cur, csp);
2706                }
2707 #endif /* def FEATURE_KILL_POPUPS */
2708                content_filter = get_filter_function(csp);
2709             }
2710             /*
2711              * Only write if we're not buffering for content modification
2712              */
2713             if (!content_filter)
2714             {
2715                /* write the server's (modified) header to
2716                 * the client (along with anything else that
2717                 * may be in the buffer)
2718                 */
2719
2720                if (write_socket(csp->cfd, hdr, strlen(hdr))
2721                 || ((len = flush_socket(csp->cfd, csp)) < 0))
2722                {
2723                   log_error(LOG_LEVEL_CONNECT, "write header to client failed: %E");
2724
2725                   /* the write failed, so don't bother
2726                    * mentioning it to the client...
2727                    * it probably can't hear us anyway.
2728                    */
2729                   freez(hdr);
2730                   return;
2731                }
2732
2733                byte_count += (size_t)len;
2734             }
2735
2736             /* we're finished with the server's header */
2737
2738             freez(hdr);
2739             server_body = 1;
2740
2741             /* If this was a MS IIS/5 hack then it means
2742              * the server has already closed the
2743              * connection.  Nothing more to read.  Time
2744              * to bail.
2745              */
2746             if (ms_iis5_hack)
2747             {
2748                break;
2749             }
2750          }
2751          continue;
2752       }
2753
2754       return; /* huh? we should never get here */
2755    }
2756
2757    if (csp->content_length == 0)
2758    {
2759       /*
2760        * If Privoxy didn't recalculate the
2761        * Content-Lenght, byte_count is still
2762        * correct.
2763        */
2764       csp->content_length = byte_count;
2765    }
2766
2767    log_error(LOG_LEVEL_CLF, "%s - - [%T] \"%s\" 200 %d",
2768       csp->ip_addr_str, http->ocmd, csp->content_length);
2769 }
2770
2771
2772 /*********************************************************************
2773  *
2774  * Function    :  serve
2775  *
2776  * Description :  This is little more than chat.  We only "serve" to
2777  *                to close any socket that chat may have opened.
2778  *
2779  * Parameters  :
2780  *          1  :  csp = Current client state (buffers, headers, etc...)
2781  *
2782  * Returns     :  N/A
2783  *
2784  *********************************************************************/
2785 #ifdef AMIGA
2786 void serve(struct client_state *csp)
2787 #else /* ifndef AMIGA */
2788 static void serve(struct client_state *csp)
2789 #endif /* def AMIGA */
2790 {
2791    chat(csp);
2792    close_socket(csp->cfd);
2793
2794    if (csp->sfd != JB_INVALID_SOCKET)
2795    {
2796       close_socket(csp->sfd);
2797    }
2798
2799    csp->flags &= ~CSP_FLAG_ACTIVE;
2800
2801 }
2802
2803
2804 #ifdef __BEOS__
2805 /*********************************************************************
2806  *
2807  * Function    :  server_thread
2808  *
2809  * Description :  We only exist to call `serve' in a threaded environment.
2810  *
2811  * Parameters  :
2812  *          1  :  data = Current client state (buffers, headers, etc...)
2813  *
2814  * Returns     :  Always 0.
2815  *
2816  *********************************************************************/
2817 static int32 server_thread(void *data)
2818 {
2819    serve((struct client_state *) data);
2820    return 0;
2821
2822 }
2823 #endif
2824
2825
2826 #if defined(unix)
2827 /*********************************************************************
2828  *
2829  * Function    :  usage
2830  *
2831  * Description :  Print usage info & exit.
2832  *
2833  * Parameters  :  Pointer to argv[0] for identifying ourselves
2834  *
2835  * Returns     :  No. ,-)
2836  *
2837  *********************************************************************/
2838 static void usage(const char *myname)
2839 {
2840    printf("Privoxy version " VERSION " (" HOME_PAGE_URL ")\n"
2841           "Usage: %s "
2842 #if defined(unix)
2843           "[--chroot] "
2844 #endif /* defined(unix) */
2845           "[--help] "
2846 #if defined(unix)
2847           "[--no-daemon] [--pidfile pidfile] [--pre-chroot-nslookup hostname] [--user user[.group]] "
2848 #endif /* defined(unix) */
2849           "[--version] [configfile]\n"
2850           "Aborting\n", myname);
2851
2852    exit(2);
2853
2854 }
2855 #endif /* defined(unix) */
2856
2857
2858 /*********************************************************************
2859  *
2860  * Function    :  initialize_mutexes
2861  *
2862  * Description :  Prepares mutexes if mutex support is available.
2863  *
2864  * Parameters  :  None
2865  *
2866  * Returns     :  Void, exits in case of errors.
2867  *
2868  *********************************************************************/
2869 static void initialize_mutexes(void)
2870 {
2871    int err = 0;
2872
2873 #ifdef FEATURE_PTHREAD
2874    /*
2875     * Prepare global mutex semaphores
2876     */
2877    err = pthread_mutex_init(&log_mutex, 0);
2878
2879    if (!err) err = pthread_mutex_init(&log_init_mutex, 0);
2880
2881    /*
2882     * XXX: The assumptions below are a bit naive
2883     * and can cause locks that aren't necessary.
2884     *
2885     * For example older FreeBSD versions (< 6.x?)
2886     * have no gethostbyname_r, but gethostbyname is
2887     * thread safe.
2888     */
2889 #if !defined(HAVE_GETHOSTBYADDR_R) || !defined(HAVE_GETHOSTBYNAME_R)
2890    if (!err) err = pthread_mutex_init(&resolver_mutex, 0);
2891 #endif /* !defined(HAVE_GETHOSTBYADDR_R) || !defined(HAVE_GETHOSTBYNAME_R) */
2892    /*
2893     * XXX: should we use a single mutex for
2894     * localtime() and gmtime() as well?
2895     */
2896 #ifndef HAVE_GMTIME_R
2897    if (!err) err = pthread_mutex_init(&gmtime_mutex, 0);
2898 #endif /* ndef HAVE_GMTIME_R */
2899
2900 #ifndef HAVE_LOCALTIME_R
2901    if (!err) err = pthread_mutex_init(&localtime_mutex, 0);
2902 #endif /* ndef HAVE_GMTIME_R */
2903
2904 #ifndef HAVE_RANDOM
2905    if (!err) err = pthread_mutex_init(&rand_mutex, 0);
2906 #endif /* ndef HAVE_RANDOM */
2907 #endif /* FEATURE_PTHREAD */
2908
2909    /*
2910     * TODO: mutex support for mingw32 would be swell.
2911     */
2912
2913    if (err)
2914    {
2915       printf("Fatal error. Mutex initialization failed: %s.\n",
2916          strerror(err));
2917       exit(1);
2918    }
2919
2920    return;
2921 }
2922
2923
2924 /*********************************************************************
2925  *
2926  * Function    :  main
2927  *
2928  * Description :  Load the config file and start the listen loop.
2929  *                This function is a lot more *sane* with the `load_config'
2930  *                and `listen_loop' functions; although it stills does
2931  *                a *little* too much for my taste.
2932  *
2933  * Parameters  :
2934  *          1  :  argc = Number of parameters (including $0).
2935  *          2  :  argv = Array of (char *)'s to the parameters.
2936  *
2937  * Returns     :  1 if : can't open config file, unrecognized directive,
2938  *                stats requested in multi-thread mode, can't open the
2939  *                log file, can't open the jar file, listen port is invalid,
2940  *                any load fails, and can't bind port.
2941  *
2942  *                Else main never returns, the process must be signaled
2943  *                to terminate execution.  Or, on Windows, use the
2944  *                "File", "Exit" menu option.
2945  *
2946  *********************************************************************/
2947 #ifdef __MINGW32__
2948 int real_main(int argc, const char *argv[])
2949 #else
2950 int main(int argc, const char *argv[])
2951 #endif
2952 {
2953    int argc_pos = 0;
2954    unsigned int random_seed;
2955 #ifdef unix
2956    struct passwd *pw = NULL;
2957    struct group *grp = NULL;
2958    char *p;
2959    int do_chroot = 0;
2960    char *pre_chroot_nslookup_to_load_resolver = NULL;
2961 #endif
2962
2963    Argc = argc;
2964    Argv = argv;
2965
2966    configfile =
2967 #if !defined(_WIN32)
2968    "config"
2969 #else
2970    "config.txt"
2971 #endif
2972       ;
2973
2974    /*
2975     * Parse the command line arguments
2976     *
2977     * XXX: simply printing usage information in case of
2978     * invalid arguments isn't particular user friendly.
2979     */
2980    while (++argc_pos < argc)
2981    {
2982 #ifdef _WIN32
2983       /* Check to see if the service must be installed or uninstalled */
2984       if (strncmp(argv[argc_pos], "--install", 9) == 0)
2985       {
2986          const char *pName = argv[argc_pos] + 9;
2987          if (*pName == ':')
2988             pName++;
2989          exit( (install_service(pName)) ? 0 : 1 );
2990       }
2991       else if (strncmp(argv[argc_pos], "--uninstall", + 11) == 0)
2992       {
2993          const char *pName = argv[argc_pos] + 11;
2994          if (*pName == ':')
2995             pName++;
2996          exit((uninstall_service(pName)) ? 0 : 1);
2997       }
2998       else if (strcmp(argv[argc_pos], "--service" ) == 0)
2999       {
3000          bRunAsService = TRUE;
3001          w32_set_service_cwd();
3002          atexit(w32_service_exit_notify);
3003       }
3004       else
3005 #endif /* defined(_WIN32) */
3006
3007
3008 #if !defined(_WIN32) || defined(_WIN_CONSOLE)
3009
3010       if (strcmp(argv[argc_pos], "--help") == 0)
3011       {
3012          usage(argv[0]);
3013       }
3014
3015       else if(strcmp(argv[argc_pos], "--version") == 0)
3016       {
3017          printf("Privoxy version " VERSION " (" HOME_PAGE_URL ")\n");
3018          exit(0);
3019       }
3020
3021 #if defined(unix)
3022
3023       else if (strcmp(argv[argc_pos], "--no-daemon" ) == 0)
3024       {
3025          no_daemon = 1;
3026       }
3027
3028       else if (strcmp(argv[argc_pos], "--pidfile" ) == 0)
3029       {
3030          if (++argc_pos == argc) usage(argv[0]);
3031          pidfile = strdup(argv[argc_pos]);
3032       }
3033
3034       else if (strcmp(argv[argc_pos], "--user" ) == 0)
3035       {
3036          if (++argc_pos == argc) usage(argv[argc_pos]);
3037
3038          if ((NULL != (p = strchr(argv[argc_pos], '.'))) && *(p + 1) != '0')
3039          {
3040             *p++ = '\0';
3041             if (NULL == (grp = getgrnam(p)))
3042             {
3043                log_error(LOG_LEVEL_FATAL, "Group %s not found.", p);
3044             }
3045          }
3046
3047          if (NULL == (pw = getpwnam(argv[argc_pos])))
3048          {
3049             log_error(LOG_LEVEL_FATAL, "User %s not found.", argv[argc_pos]);
3050          }
3051
3052          if (p != NULL) *--p = '\0';
3053       }
3054
3055       else if (strcmp(argv[argc_pos], "--pre-chroot-nslookup" ) == 0)
3056       {
3057          if (++argc_pos == argc) usage(argv[0]);
3058          pre_chroot_nslookup_to_load_resolver = strdup(argv[argc_pos]);
3059       }
3060
3061       else if (strcmp(argv[argc_pos], "--chroot" ) == 0)
3062       {
3063          do_chroot = 1;
3064       }
3065 #endif /* defined(unix) */
3066
3067       else if (argc_pos + 1 != argc)
3068       {
3069          /*
3070           * This is neither the last command line
3071           * option, nor was it recognized before,
3072           * therefore it must be invalid.
3073           */
3074          usage(argv[0]);
3075       }
3076       else
3077
3078 #endif /* defined(_WIN32) && !defined(_WIN_CONSOLE) */
3079       {
3080          configfile = argv[argc_pos];
3081       }
3082
3083    } /* -END- while (more arguments) */
3084
3085 #if defined(unix)
3086    if ( *configfile != '/' )
3087    {
3088       char cwd[BUFFER_SIZE];
3089       char *abs_file;
3090       size_t abs_file_size; 
3091
3092       /* make config-filename absolute here */
3093       if (NULL == getcwd(cwd, sizeof(cwd)))
3094       {
3095          perror("failed to get current working directory");
3096          exit( 1 );
3097       }
3098
3099       /* XXX: why + 5? */
3100       abs_file_size = strlen(cwd) + strlen(configfile) + 5;
3101       basedir = strdup(cwd);
3102
3103       if (NULL == basedir ||
3104           NULL == (abs_file = malloc(abs_file_size)))
3105       {
3106          perror("malloc failed");
3107          exit( 1 );
3108       }
3109       strlcpy(abs_file, basedir, abs_file_size);
3110       strlcat(abs_file, "/", abs_file_size );
3111       strlcat(abs_file, configfile, abs_file_size);
3112       configfile = abs_file;
3113    }
3114 #endif /* defined unix */
3115
3116
3117    files->next = NULL;
3118    clients->next = NULL;
3119
3120    /* XXX: factor out initialising after the next stable release. */
3121 #ifdef AMIGA
3122    InitAmiga();
3123 #elif defined(_WIN32)
3124    InitWin32();
3125 #endif
3126
3127    /* Prepare mutexes if supported and necessary. */
3128    initialize_mutexes();
3129
3130    /* Enable logging until further notice. */
3131    init_log_module(Argv[0]);
3132
3133    random_seed = (unsigned int)time(NULL);
3134 #ifdef HAVE_RANDOM
3135    srandom(random_seed);
3136 #elif defined (_WIN32)
3137    /*
3138     * See pick_from_range() in miscutil.c for details.
3139     */
3140    log_error(LOG_LEVEL_INFO,
3141       "No thread-safe PRNG implemented for your platform. "
3142       "Using weak \'randomization\' factor which will "
3143       "limit the already questionable usefulness of "
3144       "header-time-randomizing actions (disabled by default).");
3145 #else
3146    srand(random_seed);
3147 #endif /* ifdef HAVE_RANDOM */
3148
3149    /*
3150     * Unix signal handling
3151     *
3152     * Catch the abort, interrupt and terminate signals for a graceful exit
3153     * Catch the hangup signal so the errlog can be reopened.
3154     * Ignore the broken pipe signals (FIXME: Why?)
3155     */
3156 #if !defined(_WIN32) && !defined(__OS2__) && !defined(AMIGA)
3157 {
3158    int idx;
3159    const int catched_signals[] = { SIGTERM, SIGINT, SIGHUP, 0 };
3160    const int ignored_signals[] = { SIGPIPE, 0 };
3161
3162    for (idx = 0; catched_signals[idx] != 0; idx++)
3163    {
3164 #ifdef sun /* FIXME: Is it safe to check for HAVE_SIGSET instead? */ 
3165       if (sigset(catched_signals[idx], sig_handler) == SIG_ERR)
3166 #else
3167       if (signal(catched_signals[idx], sig_handler) == SIG_ERR)
3168 #endif /* ifdef sun */
3169       {
3170          log_error(LOG_LEVEL_FATAL, "Can't set signal-handler for signal %d: %E", catched_signals[idx]);
3171       }
3172    }
3173
3174    for (idx = 0; ignored_signals[idx] != 0; idx++)
3175    {
3176       if (signal(ignored_signals[idx], SIG_IGN) == SIG_ERR)
3177       {
3178          log_error(LOG_LEVEL_FATAL, "Can't set ignore-handler for signal %d: %E", ignored_signals[idx]);
3179       }
3180    }
3181
3182 }
3183 #else /* ifdef _WIN32 */
3184 # ifdef _WIN_CONSOLE
3185    /*
3186     * We *are* in a windows console app.
3187     * Print a verbose messages about FAQ's and such
3188     */
3189    printf("%s", win32_blurb);
3190 # endif /* def _WIN_CONSOLE */
3191 #endif /* def _WIN32 */
3192
3193
3194    /* Initialize the CGI subsystem */
3195    cgi_init_error_messages();
3196
3197    /*
3198     * If runnig on unix and without the --nodaemon
3199     * option, become a daemon. I.e. fork, detach
3200     * from tty and get process group leadership
3201     */
3202 #if defined(unix)
3203 {
3204    pid_t pid = 0;
3205 #if 0
3206    int   fd;
3207 #endif
3208
3209    if (!no_daemon)
3210    {
3211       pid  = fork();
3212
3213       if ( pid < 0 ) /* error */
3214       {
3215          perror("fork");
3216          exit( 3 );
3217       }
3218       else if ( pid != 0 ) /* parent */
3219       {
3220          int status;
3221          pid_t wpid;
3222          /*
3223           * must check for errors
3224           * child died due to missing files aso
3225           */
3226          sleep( 1 );
3227          wpid = waitpid( pid, &status, WNOHANG );
3228          if ( wpid != 0 )
3229          {
3230             exit( 1 );
3231          }
3232          exit( 0 );
3233       }
3234       /* child */
3235 #if 1
3236       /* Should be more portable, but not as well tested */
3237       setsid();
3238 #else /* !1 */
3239 #ifdef __FreeBSD__
3240       setpgrp(0,0);
3241 #else /* ndef __FreeBSD__ */
3242       setpgrp();
3243 #endif /* ndef __FreeBSD__ */
3244       fd = open("/dev/tty", O_RDONLY);
3245       if ( fd )
3246       {
3247          /* no error check here */
3248          ioctl( fd, TIOCNOTTY,0 );
3249          close ( fd );
3250       }
3251 #endif /* 1 */
3252       /*
3253        * stderr (fd 2) will be closed later on, when the
3254        * log file has been parsed.
3255        */
3256
3257       close( 0 );
3258       close( 1 );
3259       chdir("/");
3260
3261    } /* -END- if (!no_daemon) */
3262
3263    /*
3264     * As soon as we have written the PID file, we can switch
3265     * to the user and group ID indicated by the --user option
3266     */
3267    write_pid_file();
3268
3269    if (NULL != pw)
3270    {
3271       if (setgid((NULL != grp) ? grp->gr_gid : pw->pw_gid))
3272       {
3273          log_error(LOG_LEVEL_FATAL, "Cannot setgid(): Insufficient permissions.");
3274       }
3275       if (do_chroot)
3276       {
3277          if (!pw->pw_dir)
3278          {
3279             log_error(LOG_LEVEL_FATAL, "Home directory for %s undefined", pw->pw_name);
3280          }
3281          /* Read the time zone file from /etc before doing chroot. */
3282          tzset();
3283          if (NULL != pre_chroot_nslookup_to_load_resolver
3284              && '\0' != pre_chroot_nslookup_to_load_resolver[0])
3285          {
3286             /* Initialize resolver library. */
3287             (void) resolve_hostname_to_ip(pre_chroot_nslookup_to_load_resolver);
3288          }
3289          if (chroot(pw->pw_dir) < 0)
3290          {
3291             log_error(LOG_LEVEL_FATAL, "Cannot chroot to %s", pw->pw_dir);
3292          }
3293          if (chdir ("/"))
3294          {
3295             log_error(LOG_LEVEL_FATAL, "Cannot chdir /");
3296          }
3297       }
3298       if (setuid(pw->pw_uid))
3299       {
3300          log_error(LOG_LEVEL_FATAL, "Cannot setuid(): Insufficient permissions.");
3301       }
3302       if (do_chroot)
3303       {
3304          char putenv_dummy[64];
3305
3306          strlcpy(putenv_dummy, "HOME=/", sizeof(putenv_dummy));
3307          if (putenv(putenv_dummy) != 0)
3308          {
3309             log_error(LOG_LEVEL_FATAL, "Cannot putenv(): HOME");
3310          }                
3311
3312          snprintf(putenv_dummy, sizeof(putenv_dummy), "USER=%s", pw->pw_name);
3313          if (putenv(putenv_dummy) != 0)
3314          {
3315             log_error(LOG_LEVEL_FATAL, "Cannot putenv(): USER");
3316          }
3317       }
3318    }
3319    else if (do_chroot)
3320    {
3321       log_error(LOG_LEVEL_FATAL, "Cannot chroot without --user argument.");
3322    }
3323 }
3324 #endif /* defined unix */
3325
3326 #ifdef _WIN32
3327    /* This will be FALSE unless the command line specified --service
3328     */
3329    if (bRunAsService)
3330    {
3331       /* Yup, so now we must attempt to establish a connection 
3332        * with the service dispatcher. This will only work if this
3333        * process was launched by the service control manager to
3334        * actually run as a service. If this isn't the case, i've
3335        * known it take around 30 seconds or so for the call to return.
3336        */
3337
3338       /* The StartServiceCtrlDispatcher won't return until the service is stopping */
3339       if (w32_start_service_ctrl_dispatcher(w32ServiceDispatchTable))
3340       {
3341          /* Service has run, and at this point is now being stopped, so just return */
3342          return 0;
3343       }
3344
3345 #ifdef _WIN_CONSOLE
3346       printf("Warning: Failed to connect to Service Control Dispatcher\nwhen starting as a service!\n");
3347 #endif
3348       /* An error occurred. Usually it's because --service was wrongly specified
3349        * and we were unable to connect to the Service Control Dispatcher because
3350        * it wasn't expecting us and is therefore not listening.
3351        *
3352        * For now, just continue below to call the listen_loop function.
3353        */
3354    }
3355 #endif /* def _WIN32 */
3356
3357    listen_loop();
3358
3359    /* NOTREACHED */
3360    return(-1);
3361
3362 }
3363
3364
3365 /*********************************************************************
3366  *
3367  * Function    :  bind_port_helper
3368  *
3369  * Description :  Bind the listen port.  Handles logging, and aborts
3370  *                on failure.
3371  *
3372  * Parameters  :
3373  *          1  :  config = Privoxy configuration.  Specifies port
3374  *                         to bind to.
3375  *
3376  * Returns     :  Port that was opened.
3377  *
3378  *********************************************************************/
3379 static jb_socket bind_port_helper(struct configuration_spec * config)
3380 {
3381    int result;
3382    jb_socket bfd;
3383
3384    if ( (config->haddr != NULL)
3385      && (config->haddr[0] == '1')
3386      && (config->haddr[1] == '2')
3387      && (config->haddr[2] == '7')
3388      && (config->haddr[3] == '.') )
3389    {
3390       log_error(LOG_LEVEL_INFO, "Listening on port %d for local connections only",
3391                 config->hport);
3392    }
3393    else if (config->haddr == NULL)
3394    {
3395       log_error(LOG_LEVEL_INFO, "Listening on port %d on all IP addresses",
3396                 config->hport);
3397    }
3398    else
3399    {
3400       log_error(LOG_LEVEL_INFO, "Listening on port %d on IP address %s",
3401                 config->hport, config->haddr);
3402    }
3403
3404    result = bind_port(config->haddr, config->hport, &bfd);
3405
3406    if (result < 0)
3407    {
3408       switch(result)
3409       {
3410          case -3 :
3411             log_error(LOG_LEVEL_FATAL, "can't bind to %s:%d: "
3412                "There may be another Privoxy or some other "
3413                "proxy running on port %d",
3414                (NULL != config->haddr) ? config->haddr : "INADDR_ANY",
3415                       config->hport, config->hport);
3416
3417          case -2 :
3418             log_error(LOG_LEVEL_FATAL, "can't bind to %s:%d: " 
3419                "The hostname is not resolvable",
3420                (NULL != config->haddr) ? config->haddr : "INADDR_ANY", config->hport);
3421
3422          default :
3423             log_error(LOG_LEVEL_FATAL, "can't bind to %s:%d: because %E",
3424                (NULL != config->haddr) ? config->haddr : "INADDR_ANY", config->hport);
3425       }
3426
3427       /* shouldn't get here */
3428       return JB_INVALID_SOCKET;
3429    }
3430
3431    config->need_bind = 0;
3432
3433    return bfd;
3434 }
3435
3436
3437 #ifdef _WIN32
3438 /* Without this simple workaround we get this compiler warning from _beginthread
3439  *     warning C4028: formal parameter 1 different from declaration
3440  */
3441 void w32_service_listen_loop(void *p)
3442 {
3443    listen_loop();
3444 }
3445 #endif /* def _WIN32 */
3446
3447
3448 /*********************************************************************
3449  *
3450  * Function    :  listen_loop
3451  *
3452  * Description :  bind the listen port and enter a "FOREVER" listening loop.
3453  *
3454  * Parameters  :  N/A
3455  *
3456  * Returns     :  Never.
3457  *
3458  *********************************************************************/
3459 static void listen_loop(void)
3460 {
3461    struct client_state *csp = NULL;
3462    jb_socket bfd;
3463    struct configuration_spec * config;
3464
3465    config = load_config();
3466
3467    bfd = bind_port_helper(config);
3468
3469 #ifdef FEATURE_GRACEFUL_TERMINATION
3470    while (!g_terminate)
3471 #else
3472    for (;;)
3473 #endif
3474    {
3475 #if !defined(FEATURE_PTHREAD) && !defined(_WIN32) && !defined(__BEOS__) && !defined(AMIGA) && !defined(__OS2__)
3476       while (waitpid(-1, NULL, WNOHANG) > 0)
3477       {
3478          /* zombie children */
3479       }
3480 #endif /* !defined(FEATURE_PTHREAD) && !defined(_WIN32) && !defined(__BEOS__) && !defined(AMIGA) */
3481
3482       /*
3483        * Free data that was used by died threads
3484        */
3485       sweep();
3486
3487 #if defined(unix)
3488       /*
3489        * Re-open the errlog after HUP signal
3490        */
3491       if (received_hup_signal)
3492       {
3493          init_error_log(Argv[0], config->logfile);
3494          received_hup_signal = 0;
3495       }
3496 #endif
3497
3498 #ifdef __OS2__
3499 #ifdef FEATURE_COOKIE_JAR
3500       /*
3501        * Need a workaround here: we have to fclose() the jarfile, or we die because it's
3502        * already open.  I think unload_configfile() is not being run, which should do
3503        * this work.  Until that can get resolved, we'll use this workaround.
3504        */
3505        if (csp)
3506          if(csp->config)
3507            if (csp->config->jar)
3508            {
3509              fclose(csp->config->jar);
3510              csp->config->jar = NULL;
3511            }
3512 #endif /* FEATURE_COOKIE_JAR */
3513 #endif /* __OS2__ */
3514
3515       if ( NULL == (csp = (struct client_state *) zalloc(sizeof(*csp))) )
3516       {
3517          log_error(LOG_LEVEL_FATAL, "malloc(%d) for csp failed: %E", sizeof(*csp));
3518          continue;
3519       }
3520
3521       csp->flags |= CSP_FLAG_ACTIVE;
3522       csp->sfd    = JB_INVALID_SOCKET;
3523
3524       csp->config = config = load_config();
3525
3526       if ( config->need_bind )
3527       {
3528          /*
3529           * Since we were listening to the "old port", we will not see
3530           * a "listen" param change until the next IJB request.  So, at
3531           * least 1 more request must be made for us to find the new
3532           * setting.  I am simply closing the old socket and binding the
3533           * new one.
3534           *
3535           * Which-ever is correct, we will serve 1 more page via the
3536           * old settings.  This should probably be a "show-proxy-args"
3537           * request.  This should not be a so common of an operation
3538           * that this will hurt people's feelings.
3539           */
3540
3541          close_socket(bfd);
3542
3543          bfd = bind_port_helper(config);
3544       }
3545
3546       log_error(LOG_LEVEL_CONNECT, "Listening for new connections ... ");
3547
3548       if (!accept_connection(csp, bfd))
3549       {
3550          log_error(LOG_LEVEL_CONNECT, "accept failed: %E");
3551
3552 #ifdef AMIGA
3553          if(!childs)
3554          {
3555             exit(1);
3556          }
3557 #endif
3558          freez(csp);
3559          continue;
3560       }
3561       else
3562       {
3563          log_error(LOG_LEVEL_CONNECT, "accepted connection from %s", csp->ip_addr_str);
3564       }
3565
3566 #ifdef FEATURE_TOGGLE
3567       if (global_toggle_state)
3568       {
3569          csp->flags |= CSP_FLAG_TOGGLED_ON;
3570       }
3571 #endif /* def FEATURE_TOGGLE */
3572
3573       if (run_loader(csp))
3574       {
3575          log_error(LOG_LEVEL_FATAL, "a loader failed - must exit");
3576          /* Never get here - LOG_LEVEL_FATAL causes program exit */
3577       }
3578
3579 #ifdef FEATURE_ACL
3580       if (block_acl(NULL,csp))
3581       {
3582          log_error(LOG_LEVEL_CONNECT, "Connection from %s dropped due to ACL", csp->ip_addr_str);
3583          close_socket(csp->cfd);
3584          freez(csp);
3585          continue;
3586       }
3587 #endif /* def FEATURE_ACL */
3588
3589       /* add it to the list of clients */
3590       csp->next = clients->next;
3591       clients->next = csp;
3592
3593       if (config->multi_threaded)
3594       {
3595          int child_id;
3596
3597 /* this is a switch () statment in the C preprocessor - ugh */
3598 #undef SELECTED_ONE_OPTION
3599
3600 /* Use Pthreads in preference to native code */
3601 #if defined(FEATURE_PTHREAD) && !defined(SELECTED_ONE_OPTION)
3602 #define SELECTED_ONE_OPTION
3603          {
3604             pthread_t the_thread;
3605             pthread_attr_t attrs;
3606
3607             pthread_attr_init(&attrs);
3608             pthread_attr_setdetachstate(&attrs, PTHREAD_CREATE_DETACHED);
3609             errno = pthread_create(&the_thread, &attrs,
3610                (void * (*)(void *))serve, csp);
3611             child_id = errno ? -1 : 0;
3612             pthread_attr_destroy(&attrs);
3613          }
3614 #endif
3615
3616 #if defined(_WIN32) && !defined(_CYGWIN) && !defined(SELECTED_ONE_OPTION)
3617 #define SELECTED_ONE_OPTION
3618          child_id = _beginthread(
3619             (void (*)(void *))serve,
3620             64 * 1024,
3621             csp);
3622 #endif
3623
3624 #if defined(__OS2__) && !defined(SELECTED_ONE_OPTION)
3625 #define SELECTED_ONE_OPTION
3626          child_id = _beginthread(
3627             (void(* _Optlink)(void*))serve,
3628             NULL,
3629             64 * 1024,
3630             csp);
3631 #endif
3632
3633 #if defined(__BEOS__) && !defined(SELECTED_ONE_OPTION)
3634 #define SELECTED_ONE_OPTION
3635          {
3636             thread_id tid = spawn_thread
3637                (server_thread, "server", B_NORMAL_PRIORITY, csp);
3638
3639             if ((tid >= 0) && (resume_thread(tid) == B_OK))
3640             {
3641                child_id = (int) tid;
3642             }
3643             else
3644             {
3645                child_id = -1;
3646             }
3647          }
3648 #endif
3649
3650 #if defined(AMIGA) && !defined(SELECTED_ONE_OPTION)
3651 #define SELECTED_ONE_OPTION
3652          csp->cfd = ReleaseSocket(csp->cfd, -1);
3653          
3654 #ifdef __amigaos4__
3655          child_id = (int)CreateNewProcTags(NP_Entry, (ULONG)server_thread,
3656                                            NP_Output, Output(),
3657                                            NP_CloseOutput, FALSE,
3658                                            NP_Name, (ULONG)"privoxy child",
3659                                            NP_Child, TRUE,
3660                                            TAG_DONE);
3661 #else
3662          child_id = (int)CreateNewProcTags(NP_Entry, (ULONG)server_thread,
3663                                            NP_Output, Output(),
3664                                            NP_CloseOutput, FALSE,
3665                                            NP_Name, (ULONG)"privoxy child",
3666                                            NP_StackSize, 200*1024,
3667                                            TAG_DONE);
3668 #endif
3669          if(0 != child_id)
3670          {
3671             childs++;
3672             ((struct Task *)child_id)->tc_UserData = csp;
3673             Signal((struct Task *)child_id, SIGF_SINGLE);
3674             Wait(SIGF_SINGLE);
3675          }
3676 #endif
3677
3678 #if !defined(SELECTED_ONE_OPTION)
3679          child_id = fork();
3680
3681          /* This block is only needed when using fork().
3682           * When using threads, the server thread was
3683           * created and run by the call to _beginthread().
3684           */
3685          if (child_id == 0)   /* child */
3686          {
3687             int rc = 0;
3688 #ifdef FEATURE_TOGGLE
3689             int inherited_toggle_state = global_toggle_state;
3690 #endif /* def FEATURE_TOGGLE */
3691
3692             serve(csp);
3693
3694             /* 
3695              * If we've been toggled or we've blocked the request, tell Mom
3696              */
3697
3698 #ifdef FEATURE_TOGGLE
3699             if (inherited_toggle_state != global_toggle_state)
3700             {
3701                rc |= RC_FLAG_TOGGLED;
3702             }
3703 #endif /* def FEATURE_TOGGLE */
3704
3705 #ifdef FEATURE_STATISTICS  
3706             if (csp->flags & CSP_FLAG_REJECTED)
3707             {
3708                rc |= RC_FLAG_BLOCKED;
3709             }
3710 #endif /* ndef FEATURE_STATISTICS */
3711
3712             _exit(rc);
3713          }
3714          else if (child_id > 0) /* parent */
3715          {
3716             /* in a fork()'d environment, the parent's
3717              * copy of the client socket and the CSP
3718              * are not used.
3719              */
3720             int child_status;
3721 #if !defined(_WIN32) && !defined(__CYGWIN__)
3722
3723             wait( &child_status );
3724
3725             /* 
3726              * Evaluate child's return code: If the child has
3727              *  - been toggled, toggle ourselves
3728              *  - blocked its request, bump up the stats counter
3729              */
3730
3731 #ifdef FEATURE_TOGGLE
3732             if (WIFEXITED(child_status) && (WEXITSTATUS(child_status) & RC_FLAG_TOGGLED))
3733             {
3734                global_toggle_state = !global_toggle_state;
3735             }
3736 #endif /* def FEATURE_TOGGLE */
3737
3738 #ifdef FEATURE_STATISTICS
3739             urls_read++;
3740             if (WIFEXITED(child_status) && (WEXITSTATUS(child_status) & RC_FLAG_BLOCKED))
3741             {
3742                urls_rejected++;
3743             }
3744 #endif /* def FEATURE_STATISTICS */ 
3745
3746 #endif /* !defined(_WIN32) && defined(__CYGWIN__) */
3747             close_socket(csp->cfd);
3748             csp->flags &= ~CSP_FLAG_ACTIVE;
3749          }
3750 #endif
3751
3752 #undef SELECTED_ONE_OPTION
3753 /* end of cpp switch () */
3754
3755          if (child_id < 0) /* failed */
3756          {
3757             char buf[BUFFER_SIZE];
3758
3759             log_error(LOG_LEVEL_ERROR, "can't fork: %E");
3760
3761             snprintf(buf , sizeof(buf), "Privoxy: can't fork: errno = %d", errno);
3762
3763             write_socket(csp->cfd, buf, strlen(buf));
3764             close_socket(csp->cfd);
3765             csp->flags &= ~CSP_FLAG_ACTIVE;
3766             sleep(5);
3767             continue;
3768          }
3769       }
3770       else
3771       {
3772          serve(csp);
3773       }
3774    }
3775
3776    /* NOTREACHED unless FEATURE_GRACEFUL_TERMINATION is defined */
3777
3778    /* Clean up.  Aim: free all memory (no leaks) */
3779 #ifdef FEATURE_GRACEFUL_TERMINATION
3780
3781    log_error(LOG_LEVEL_ERROR, "Graceful termination requested");
3782
3783    unload_current_config_file();
3784    unload_current_actions_file();
3785    unload_current_re_filterfile();
3786 #ifdef FEATURE_TRUST
3787    unload_current_trust_file();
3788 #endif
3789
3790    if (config->multi_threaded)
3791    {
3792       int i = 60;
3793       do
3794       {
3795          sleep(1);
3796          sweep();
3797       } while ((clients->next != NULL) && (--i > 0));
3798
3799       if (i <= 0)
3800       {
3801          log_error(LOG_LEVEL_ERROR, "Graceful termination failed - still some live clients after 1 minute wait.");
3802       }
3803    }
3804    sweep();
3805    sweep();
3806
3807 #if defined(unix)
3808    freez(basedir);
3809 #endif
3810    freez(configfile);
3811
3812 #ifdef FEATURE_COOKIE_JAR
3813    if (NULL != config->jar)
3814    {
3815       fclose(config->jar);
3816    }
3817 #endif
3818
3819 #if defined(_WIN32) && !defined(_WIN_CONSOLE)
3820    /* Cleanup - remove taskbar icon etc. */
3821    TermLogWindow();
3822 #endif
3823
3824    exit(0);
3825 #endif /* FEATURE_GRACEFUL_TERMINATION */
3826
3827 }
3828
3829
3830 /*
3831   Local Variables:
3832   tab-width: 3
3833   end:
3834 */