Petr Pisar's privoxy-3.0.12-ipv6-3.diff.
[privoxy.git] / filters.c
1 const char filters_rcs[] = "$Id: filters.c,v 1.113 2009/03/08 14:19:23 fabiankeil Exp $";
2 /*********************************************************************
3  *
4  * File        :  $Source: /cvsroot/ijbswa/current/filters.c,v $
5  *
6  * Purpose     :  Declares functions to parse/crunch headers and pages.
7  *                Functions declared include:
8  *                   `acl_addr', `add_stats', `block_acl', `block_imageurl',
9  *                   `block_url', `url_actions', `domain_split',
10  *                   `filter_popups', `forward_url', 'redirect_url',
11  *                   `ij_untrusted_url', `intercept_url', `pcrs_filter_respose',
12  *                   `ijb_send_banner', `trust_url', `gif_deanimate_response',
13  *                   `execute_single_pcrs_command', `rewrite_url',
14  *                   `get_last_url'
15  *
16  * Copyright   :  Written by and Copyright (C) 2001, 2004-2008 the SourceForge
17  *                Privoxy team. http://www.privoxy.org/
18  *
19  *                Based on the Internet Junkbuster originally written
20  *                by and Copyright (C) 1997 Anonymous Coders and
21  *                Junkbusters Corporation.  http://www.junkbusters.com
22  *
23  *                This program is free software; you can redistribute it
24  *                and/or modify it under the terms of the GNU General
25  *                Public License as published by the Free Software
26  *                Foundation; either version 2 of the License, or (at
27  *                your option) any later version.
28  *
29  *                This program is distributed in the hope that it will
30  *                be useful, but WITHOUT ANY WARRANTY; without even the
31  *                implied warranty of MERCHANTABILITY or FITNESS FOR A
32  *                PARTICULAR PURPOSE.  See the GNU General Public
33  *                License for more details.
34  *
35  *                The GNU General Public License should be included with
36  *                this file.  If not, you can view it at
37  *                http://www.gnu.org/copyleft/gpl.html
38  *                or write to the Free Software Foundation, Inc., 59
39  *                Temple Place - Suite 330, Boston, MA  02111-1307, USA.
40  *
41  * Revisions   :
42  *    $Log: filters.c,v $
43  *    Revision 1.113  2009/03/08 14:19:23  fabiankeil
44  *    Fix justified (but harmless) compiler warnings
45  *    on platforms where sizeof(int) < sizeof(long).
46  *
47  *    Revision 1.112  2009/03/01 18:28:23  fabiankeil
48  *    Help clang understand that we aren't dereferencing
49  *    NULL pointers here.
50  *
51  *    Revision 1.111  2008/12/04 18:13:46  fabiankeil
52  *    Fix a cparser warning.
53  *
54  *    Revision 1.110  2008/11/10 16:40:25  fabiankeil
55  *    Fix a gcc44 warning.
56  *
57  *    Revision 1.109  2008/11/08 15:48:41  fabiankeil
58  *    Mention actual values when complaining about
59  *    the chunk size exceeding the buffer size.
60  *
61  *    Revision 1.108  2008/05/21 15:35:08  fabiankeil
62  *    - Mark csp as immutable for block_acl().
63  *    - Remove an obsolete complaint about filter_popups().
64  *
65  *    Revision 1.107  2008/05/04 17:52:56  fabiankeil
66  *    Adjust parse_http_url() call to new prototype.
67  *
68  *    Revision 1.106  2008/05/03 16:40:44  fabiankeil
69  *    Change content_filters_enabled()'s parameter from
70  *    csp->action to action so it can be also used in the
71  *    CGI code. Don't bother checking if there are filters
72  *    loaded, as that's somewhat besides the point.
73  *
74  *    Revision 1.105  2008/03/28 15:13:39  fabiankeil
75  *    Remove inspect-jpegs action.
76  *
77  *    Revision 1.104  2008/03/27 18:27:24  fabiankeil
78  *    Remove kill-popups action.
79  *
80  *    Revision 1.103  2008/03/06 16:33:45  fabiankeil
81  *    If limit-connect isn't used, don't limit CONNECT requests to port 443.
82  *
83  *    Revision 1.102  2008/03/01 14:00:44  fabiankeil
84  *    Let the block action take the reason for the block
85  *    as argument and show it on the "blocked" page.
86  *
87  *    Revision 1.101  2008/02/23 16:57:12  fabiankeil
88  *    Rename url_actions() to get_url_actions() and let it
89  *    use the standard parameter ordering.
90  *
91  *    Revision 1.100  2008/02/23 16:33:43  fabiankeil
92  *    Let forward_url() use the standard parameter ordering
93  *    and mark its second parameter immutable.
94  *
95  *    Revision 1.99  2008/02/03 13:57:58  fabiankeil
96  *    Add SOCKS5 support for forward-override{}.
97  *
98  *    Revision 1.98  2008/01/04 17:43:45  fabiankeil
99  *    Improve the warning messages that get logged if the action files
100  *    "enable" filters but no filters of that type have been loaded.
101  *
102  *    Revision 1.97  2007/11/30 15:37:03  fabiankeil
103  *    Use freez instead of free.
104  *
105  *    Revision 1.96  2007/10/19 16:53:28  fabiankeil
106  *    Add helper function to check if any content filters are enabled.
107  *
108  *    Revision 1.95  2007/10/17 19:31:20  fabiankeil
109  *    Omitting the zero chunk that ends the chunk transfer encoding seems
110  *    to be the new black. Log the problem and continue filtering anyway.
111  *
112  *    Revision 1.94  2007/09/29 13:20:20  fabiankeil
113  *    Remove two redundant and one useless log messages.
114  *
115  *    Revision 1.93  2007/09/29 10:21:16  fabiankeil
116  *    - Move get_filter_function() from jcc.c to filters.c
117  *      so the filter functions can be static.
118  *    - Don't bother filtering body-less responses.
119  *
120  *    Revision 1.92  2007/09/28 16:38:55  fabiankeil
121  *    - Execute content filters through execute_content_filter().
122  *    - Add prepare_for_filtering() so filter functions don't have to
123  *      care about de-chunking and decompression. As a side effect this enables
124  *      decompression for gif_deanimate_response() and jpeg_inspect_response().
125  *    - Change remove_chunked_transfer_coding()'s return type to jb_err.
126  *      Some clowns feel like chunking empty responses in which case
127  *      (size == 0) is valid but previously would be interpreted as error.
128  *
129  *    Revision 1.91  2007/09/02 15:31:20  fabiankeil
130  *    Move match_portlist() from filter.c to urlmatch.c.
131  *    It's used for url matching, not for filtering.
132  *
133  *    Revision 1.90  2007/09/02 12:44:17  fabiankeil
134  *    Remove newline at the end of a log_error() message.
135  *
136  *    Revision 1.89  2007/08/05 13:42:23  fabiankeil
137  *    #1763173 from Stefan Huehner: declare some more functions static.
138  *
139  *    Revision 1.88  2007/06/01 16:41:11  fabiankeil
140  *    Add forward-override{} to change the forwarding settings through
141  *    action sections. This is mainly interesting to forward different
142  *    clients differently (for example based on User-Agent or request
143  *    origin).
144  *
145  *    Revision 1.87  2007/04/30 15:53:10  fabiankeil
146  *    Make sure filters with dynamic jobs actually use them.
147  *
148  *    Revision 1.86  2007/04/30 15:03:28  fabiankeil
149  *    - Introduce dynamic pcrs jobs that can resolve variables.
150  *    - Don't run redirect functions more than once,
151  *      unless they are activated more than once.
152  *
153  *    Revision 1.85  2007/03/21 12:24:47  fabiankeil
154  *    - Log the content size after decompression in decompress_iob()
155  *      instead of pcrs_filter_response().
156  *
157  *    Revision 1.84  2007/03/20 15:16:34  fabiankeil
158  *    Use dedicated header filter actions instead of abusing "filter".
159  *    Replace "filter-client-headers" and "filter-client-headers"
160  *    with "server-header-filter" and "client-header-filter".
161  *
162  *    Revision 1.83  2007/03/17 15:20:05  fabiankeil
163  *    New config option: enforce-blocks.
164  *
165  *    Revision 1.82  2007/03/13 11:28:43  fabiankeil
166  *    - Fix port handling in acl_addr() and use a temporary acl spec
167  *      copy so error messages don't contain a truncated version.
168  *    - Log size of iob before and after decompression.
169  *
170  *    Revision 1.81  2007/03/05 14:40:53  fabiankeil
171  *    - Cosmetical changes for LOG_LEVEL_RE_FILTER messages.
172  *    - Hide the "Go there anyway" link for blocked CONNECT
173  *      requests where going there anyway doesn't work anyway.
174  *
175  *    Revision 1.80  2007/02/07 10:55:20  fabiankeil
176  *    - Save the reason for generating http_responses.
177  *    - Block (+block) with status code 403 instead of 404.
178  *    - Use a different kludge to remember a failed decompression.
179  *
180  *    Revision 1.79  2007/01/31 16:21:38  fabiankeil
181  *    Search for Max-Forwards headers case-insensitive,
182  *    don't generate the "501 unsupported" message for invalid
183  *    Max-Forwards values and don't increase negative ones.
184  *
185  *    Revision 1.78  2007/01/28 13:41:18  fabiankeil
186  *    - Add HEAD support to finish_http_response.
187  *    - Add error favicon to internal HTML error messages.
188  *
189  *    Revision 1.77  2007/01/12 15:36:44  fabiankeil
190  *    Mark *csp as immutable for is_untrusted_url()
191  *    and is_imageurl(). Closes FR 1237736.
192  *
193  *    Revision 1.76  2007/01/01 19:36:37  fabiankeil
194  *    Integrate a modified version of Wil Mahan's
195  *    zlib patch (PR #895531).
196  *
197  *    Revision 1.75  2006/12/29 18:30:46  fabiankeil
198  *    Fixed gcc43 conversion warnings,
199  *    changed sprintf calls to snprintf.
200  *
201  *    Revision 1.74  2006/12/24 17:37:38  fabiankeil
202  *    Adjust comment in pcrs_filter_response()
203  *    to recent pcrs changes. Hohoho.
204  *
205  *    Revision 1.73  2006/12/23 16:01:02  fabiankeil
206  *    Don't crash if pcre returns an error code
207  *    that pcrs didn't expect. Fixes BR 1621173.
208  *
209  *    Revision 1.72  2006/12/22 18:52:53  fabiankeil
210  *    Modified is_untrusted_url to complain in case of
211  *    write errors and to give a reason when adding new
212  *    entries to the trustfile. Closes FR 1097611.
213  *
214  *    Revision 1.71  2006/12/22 14:24:52  fabiankeil
215  *    Skip empty filter files in pcrs_filter_response,
216  *    but don't ignore the ones that come afterwards.
217  *    Fixes parts of BR 1619208.
218  *
219  *    Revision 1.70  2006/12/09 13:33:15  fabiankeil
220  *    Added some sanity checks for get_last_url().
221  *    Fixed possible segfault caused by my last commit.
222  *
223  *    Revision 1.69  2006/12/08 12:39:13  fabiankeil
224  *    Let get_last_url() catch https URLs as well.
225  *
226  *    Revision 1.68  2006/12/05 14:45:48  fabiankeil
227  *    Make sure get_last_url() behaves like advertised
228  *    and fast-redirects{} can be combined with redirect{}.
229  *
230  *    Revision 1.67  2006/11/28 15:19:43  fabiankeil
231  *    Implemented +redirect{s@foo@bar@} to generate
232  *    a redirect based on a rewritten version of the
233  *    original URL.
234  *
235  *    Revision 1.66  2006/09/23 13:26:38  roro
236  *    Replace TABs by spaces in source code.
237  *
238  *    Revision 1.65  2006/09/21 12:54:43  fabiankeil
239  *    Fix +redirect{}. Didn't work with -fast-redirects.
240  *
241  *    Revision 1.64  2006/08/31 10:55:49  fabiankeil
242  *    Block requests for untrusted URLs with status
243  *    code 403 instead of 200.
244  *
245  *    Revision 1.63  2006/08/31 10:11:28  fabiankeil
246  *    Don't free p which is still in use and will be later
247  *    freed by free_map(). Don't claim the referrer is unknown
248  *    when the client didn't set one.
249  *
250  *    Revision 1.62  2006/08/14 00:27:47  david__schmidt
251  *    Feature request 595948: Re-Filter logging in single line
252  *
253  *    Revision 1.61  2006/08/03 02:46:41  david__schmidt
254  *    Incorporate Fabian Keil's patch work:\rhttp://www.fabiankeil.de/sourcecode/privoxy/
255  *
256  *    Revision 1.60  2006/07/18 14:48:46  david__schmidt
257  *    Reorganizing the repository: swapping out what was HEAD (the old 3.1 branch)
258  *    with what was really the latest development (the v_3_0_branch branch)
259  *
260  *    Revision 1.58.2.9  2006/01/29 23:10:56  david__schmidt
261  *    Multiple filter file support
262  *
263  *    Revision 1.58.2.8  2005/05/07 21:50:55  david__schmidt
264  *    A few memory leaks plugged (mostly on error paths)
265  *
266  *    Revision 1.58.2.7  2004/10/03 12:53:32  david__schmidt
267  *    Add the ability to check jpeg images for invalid
268  *    lengths of comment blocks.  Defensive strategy
269  *    against the exploit:
270  *       Microsoft Security Bulletin MS04-028
271  *       Buffer Overrun in JPEG Processing (GDI+) Could
272  *       Allow Code Execution (833987)
273  *    Enabled with +inspect-jpegs in actions files.
274  *
275  *    Revision 1.58.2.6  2003/12/06 22:18:27  gliptak
276  *    Correcting compile problem with FEATURE_IMAGE_BLOCKING
277  *
278  *    Revision 1.58.2.5  2003/11/11 13:10:31  oes
279  *    Fixed bug #839859: "See why" link URL now gets url-encoded.
280  *
281  *    Revision 1.58.2.4  2003/02/28 12:52:45  oes
282  *    Fixed a typo
283  *
284  *    Revision 1.58.2.3  2002/09/25 14:51:51  oes
285  *    Added basic support for OPTIONS and TRACE HTTP methods:
286  *    New function direct_response which handles OPTIONS and
287  *    TRACE requests whose Max-Forwards header field is zero.
288  *
289  *    Revision 1.58.2.2  2002/08/01 17:18:28  oes
290  *    Fixed BR 537651 / SR 579724 (MSIE image detect improper for IE/Mac)
291  *
292  *    Revision 1.58.2.1  2002/07/26 15:18:53  oes
293  *    - Bugfix: Executing a filters without jobs no longer results in
294  *      turing off *all* filters.
295  *    - Security fix: Malicious web servers can't cause a seg fault
296  *      through bogus chunk sizes anymore
297  *
298  *    Revision 1.58  2002/04/24 02:11:17  oes
299  *    Jon's multiple AF patch: url_actions now evaluates rules
300  *    from all AFs.
301  *
302  *    Revision 1.57  2002/04/08 20:38:34  swa
303  *    fixed JB spelling
304  *
305  *    Revision 1.56  2002/04/05 15:51:24  oes
306  *     - bugfix: error-pages now get correct request protocol
307  *     - fix for invalid HTML in trust info
308  *
309  *    Revision 1.55  2002/04/02 16:13:51  oes
310  *    Fix: No "Go there anyway" for SSL
311  *
312  *    Revision 1.54  2002/04/02 14:55:56  oes
313  *    Bugfix: is_untrusted_url() now depends on FEATURE_TRUST, not FEATURE_COOKIE_JAR
314  *
315  *    Revision 1.53  2002/03/26 22:29:54  swa
316  *    we have a new homepage!
317  *
318  *    Revision 1.52  2002/03/24 16:35:57  jongfoster
319  *    Removing logo
320  *
321  *    Revision 1.51  2002/03/24 15:23:33  jongfoster
322  *    Name changes
323  *
324  *    Revision 1.50  2002/03/24 13:25:43  swa
325  *    name change related issues
326  *
327  *    Revision 1.49  2002/03/16 20:29:14  oes
328  *    Cosmetics
329  *
330  *    Revision 1.48  2002/03/13 20:25:34  oes
331  *    Better logging for content filters
332  *
333  *    Revision 1.47  2002/03/13 00:30:52  jongfoster
334  *    Killing warnings
335  *    Added option of always sending redirect for imageblock,
336  *    currently disabled with #if 0.
337  *
338  *    Revision 1.46  2002/03/12 01:42:49  oes
339  *    Introduced modular filters
340  *
341  *    Revision 1.45  2002/03/08 16:47:50  oes
342  *    Added choice beween GIF and PNG built-in images
343  *
344  *    Revision 1.44  2002/03/07 03:49:31  oes
345  *     - Fixed compiler warnings etc
346  *     - Changed built-in images from GIF to PNG
347  *       (with regard to Unisys patent issue)
348  *     - Added a 4x4 pattern PNG which is less intrusive
349  *       than the logo but also clearly marks the deleted banners
350  *
351  *    Revision 1.43  2002/01/22 23:51:59  jongfoster
352  *    Replacing strsav() with the safer string_append().
353  *
354  *    Adding missing html_encode() to error message generators.  Where encoded
355  *    and unencoded versions of a string were provided, removing the unencoded
356  *    one.
357  *
358  *    Revision 1.42  2002/01/17 21:00:32  jongfoster
359  *    Moving all our URL and URL pattern parsing code to urlmatch.c.
360  *
361  *    Using a single, simple url_match(pattern,url) function - rather than
362  *    the 3-line match routine which was repeated all over the place.
363  *
364  *    Renaming free_url to free_url_spec, since it frees a struct url_spec.
365  *
366  *    Using parse_http_url() to parse URLs without faking a HTTP
367  *    request line for parse_http_request().
368  *
369  *    Revision 1.41  2001/11/13 00:14:07  jongfoster
370  *    Fixing stupid bug now I've figured out what || means.
371  *    (It always returns 0 or 1, not one of it's paramaters.)
372  *
373  *    Revision 1.40  2001/10/26 17:37:55  oes
374  *    - Re-enabled Netscape 200/404 bug workaround in block_url():
375  *      - Removed OS/2 special case
376  *      - Made block_url() independant from sed() having been run
377  *    - Made trust_url independant from sed() having been run
378  *    - Made is_imageurl independant from sed() having been run.
379  *      It now checks User-Agent: and Accept: by itself.
380  *
381  *
382  *    Revision 1.39  2001/10/25 03:40:48  david__schmidt
383  *    Change in porting tactics: OS/2's EMX porting layer doesn't allow multiple
384  *    threads to call select() simultaneously.  So, it's time to do a real, live,
385  *    native OS/2 port.  See defines for __EMX__ (the porting layer) vs. __OS2__
386  *    (native). Both versions will work, but using __OS2__ offers multi-threading.
387  *
388  *    Revision 1.38  2001/10/23 21:32:33  jongfoster
389  *    Adding error-checking to selected functions
390  *
391  *    Revision 1.37  2001/10/22 15:33:56  david__schmidt
392  *    Special-cased OS/2 out of the Netscape-abort-on-404-in-js problem in
393  *    filters.c.  Added a FIXME in front of the offending code.  I'll gladly
394  *    put in a better/more robust fix for all parties if one is presented...
395  *    It seems that just returning 200 instead of 404 would pretty much fix
396  *    it for everyone, but I don't know all the history of the problem.
397  *
398  *    Revision 1.36  2001/10/10 16:44:16  oes
399  *    Added match_portlist function
400  *
401  *    Revision 1.35  2001/10/07 15:41:23  oes
402  *    Replaced 6 boolean members of csp with one bitmap (csp->flags)
403  *
404  *    New function remove_chunked_transfer_coding that strips chunked
405  *      transfer coding to plain and is called by pcrs_filter_response
406  *      and gif_deanimate_response if neccessary
407  *
408  *    Improved handling of zero-change re_filter runs
409  *
410  *    pcrs_filter_response and gif_deanimate_response now remove
411  *      chunked transfer codeing before processing the body.
412  *
413  *    Revision 1.34  2001/09/20 15:49:36  steudten
414  *
415  *    Fix BUG: Change int size to size_t size in pcrs_filter_response().
416  *    See cgi.c fill_template().
417  *
418  *    Revision 1.33  2001/09/16 17:05:14  jongfoster
419  *    Removing unused #include showarg.h
420  *
421  *    Revision 1.32  2001/09/16 13:21:27  jongfoster
422  *    Changes to use new list functions.
423  *
424  *    Revision 1.31  2001/09/16 11:38:02  jongfoster
425  *    Splitting fill_template() into 2 functions:
426  *    template_load() loads the file
427  *    template_fill() performs the PCRS regexps.
428  *    This is because the CGI edit interface has a "table row"
429  *    template which is used many times in the page - this
430  *    change means it's only loaded from disk once.
431  *
432  *    Revision 1.30  2001/09/16 11:00:10  jongfoster
433  *    New function alloc_http_response, for symmetry with free_http_response
434  *
435  *    Revision 1.29  2001/09/13 23:32:40  jongfoster
436  *    Moving image data to cgi.c rather than cgi.h
437  *    Fixing a GPF under Win32 (and any other OS that protects global
438  *    constants from being written to).
439  *
440  *    Revision 1.28  2001/09/10 10:18:51  oes
441  *    Silenced compiler warnings
442  *
443  *    Revision 1.27  2001/08/05 16:06:20  jongfoster
444  *    Modifiying "struct map" so that there are now separate header and
445  *    "map_entry" structures.  This means that functions which modify a
446  *    map no longer need to return a pointer to the modified map.
447  *    Also, it no longer reverses the order of the entries (which may be
448  *    important with some advanced template substitutions).
449  *
450  *    Revision 1.26  2001/07/30 22:08:36  jongfoster
451  *    Tidying up #defines:
452  *    - All feature #defines are now of the form FEATURE_xxx
453  *    - Permanently turned off WIN_GUI_EDIT
454  *    - Permanently turned on WEBDAV and SPLIT_PROXY_ARGS
455  *
456  *    Revision 1.25  2001/07/26 10:09:46  oes
457  *    Made browser detection a little less naive
458  *
459  *    Revision 1.24  2001/07/25 17:22:51  oes
460  *    Added workaround for Netscape bug that prevents display of page when loading a component fails.
461  *
462  *    Revision 1.23  2001/07/23 13:40:12  oes
463  *    Fixed bug that caused document body to be dropped when pcrs joblist was empty.
464  *
465  *    Revision 1.22  2001/07/18 12:29:34  oes
466  *    - Made gif_deanimate_response respect
467  *      csp->action->string[ACTION_STRING_DEANIMATE]
468  *    - Logging cosmetics
469  *
470  *    Revision 1.21  2001/07/13 13:59:53  oes
471  *     - Introduced gif_deanimate_response which shares the
472  *       generic content modification interface of pcrs_filter_response
473  *       and acts as a wrapper to deanimate.c:gif_deanimate()
474  *     - Renamed re_process_buffer to pcrs_filter_response
475  *     - pcrs_filter_response now returns NULL on failiure
476  *     - Removed all #ifdef PCRS
477  *
478  *    Revision 1.20  2001/07/01 17:01:04  oes
479  *    Added comments and missing return statement in is_untrusted_url()
480  *
481  *    Revision 1.19  2001/06/29 21:45:41  oes
482  *    Indentation, CRLF->LF, Tab-> Space
483  *
484  *    Revision 1.18  2001/06/29 13:27:38  oes
485  *    - Cleaned up, renamed and reorderd functions
486  *      and improved comments
487  *
488  *    - block_url:
489  *      - Ported to CGI platform. Now delivers
490  *        http_response or NULL
491  *      - Unified HTML and GIF generation (moved image detection
492  *        and GIF generation here from jcc.c:chat())
493  *      - Fixed HTTP status to:
494  *       -  403 (Forbidden) for the "blocked" HTML message
495  *       -  200 (OK) for GIF answers
496  *       -  302 (Redirect) for redirect to GIF
497  *
498  *    - trust_url:
499  *      - Ported to CGI platform. Now delivers
500  *        http_response or NULL
501  *      - Separated detection of untrusted URL into
502  *        (bool)is_untrusted_url
503  *      - Added enforcement of untrusted requests
504  *
505  *    - Moved redirect_url() from cgi.c to here
506  *      and ported it to the CGI platform
507  *
508  *    - Removed logentry from cancelled commit
509  *
510  *    Revision 1.17  2001/06/09 10:55:28  jongfoster
511  *    Changing BUFSIZ ==> BUFFER_SIZE
512  *
513  *    Revision 1.16  2001/06/07 23:10:26  jongfoster
514  *    Allowing unanchored domain patterns to back off and retry
515  *    if they partially match.  Optimized right-anchored patterns.
516  *    Moving ACL and forward files into config file.
517  *    Replacing struct gateway with struct forward_spec
518  *
519  *    Revision 1.15  2001/06/03 19:12:00  oes
520  *    extracted-CGI relevant stuff
521  *
522  *    Revision 1.14  2001/06/01 10:30:55  oes
523  *    Added optional left-anchoring to domaincmp
524  *
525  *    Revision 1.13  2001/05/31 21:21:30  jongfoster
526  *    Permissionsfile / actions file changes:
527  *    - Changed "permission" to "action" throughout
528  *    - changes to file format to allow string parameters
529  *    - Moved helper functions to actions.c
530  *
531  *    Revision 1.12  2001/05/31 17:35:20  oes
532  *
533  *     - Enhanced domain part globbing with infix and prefix asterisk
534  *       matching and optional unanchored operation
535  *
536  *    Revision 1.11  2001/05/29 11:53:23  oes
537  *    "See why" link added to "blocked" page
538  *
539  *    Revision 1.10  2001/05/29 09:50:24  jongfoster
540  *    Unified blocklist/imagelist/permissionslist.
541  *    File format is still under discussion, but the internal changes
542  *    are (mostly) done.
543  *
544  *    Also modified interceptor behaviour:
545  *    - We now intercept all URLs beginning with one of the following
546  *      prefixes (and *only* these prefixes):
547  *        * http://i.j.b/
548  *        * http://ijbswa.sf.net/config/
549  *        * http://ijbswa.sourceforge.net/config/
550  *    - New interceptors "home page" - go to http://i.j.b/ to see it.
551  *    - Internal changes so that intercepted and fast redirect pages
552  *      are not replaced with an image.
553  *    - Interceptors now have the option to send a binary page direct
554  *      to the client. (i.e. ijb-send-banner uses this)
555  *    - Implemented show-url-info interceptor.  (Which is why I needed
556  *      the above interceptors changes - a typical URL is
557  *      "http://i.j.b/show-url-info?url=www.somesite.com/banner.gif".
558  *      The previous mechanism would not have intercepted that, and
559  *      if it had been intercepted then it then it would have replaced
560  *      it with an image.)
561  *
562  *    Revision 1.9  2001/05/27 22:17:04  oes
563  *
564  *    - re_process_buffer no longer writes the modified buffer
565  *      to the client, which was very ugly. It now returns the
566  *      buffer, which it is then written by chat.
567  *
568  *    - content_length now adjusts the Content-Length: header
569  *      for modified documents rather than crunch()ing it.
570  *      (Length info in csp->content_length, which is 0 for
571  *      unmodified documents)
572  *
573  *    - For this to work, sed() is called twice when filtering.
574  *
575  *    Revision 1.8  2001/05/26 17:13:28  jongfoster
576  *    Filled in a function comment.
577  *
578  *    Revision 1.7  2001/05/26 15:26:15  jongfoster
579  *    ACL feature now provides more security by immediately dropping
580  *    connections from untrusted hosts.
581  *
582  *    Revision 1.6  2001/05/26 00:28:36  jongfoster
583  *    Automatic reloading of config file.
584  *    Removed obsolete SIGHUP support (Unix) and Reload menu option (Win32).
585  *    Most of the global variables have been moved to a new
586  *    struct configuration_spec, accessed through csp->config->globalname
587  *    Most of the globals remaining are used by the Win32 GUI.
588  *
589  *    Revision 1.5  2001/05/25 22:34:30  jongfoster
590  *    Hard tabs->Spaces
591  *
592  *    Revision 1.4  2001/05/22 18:46:04  oes
593  *
594  *    - Enabled filtering banners by size rather than URL
595  *      by adding patterns that replace all standard banner
596  *      sizes with the "Junkbuster" gif to the re_filterfile
597  *
598  *    - Enabled filtering WebBugs by providing a pattern
599  *      which kills all 1x1 images
600  *
601  *    - Added support for PCRE_UNGREEDY behaviour to pcrs,
602  *      which is selected by the (nonstandard and therefore
603  *      capital) letter 'U' in the option string.
604  *      It causes the quantifiers to be ungreedy by default.
605  *      Appending a ? turns back to greedy (!).
606  *
607  *    - Added a new interceptor ijb-send-banner, which
608  *      sends back the "Junkbuster" gif. Without imagelist or
609  *      MSIE detection support, or if tinygif = 1, or the
610  *      URL isn't recognized as an imageurl, a lame HTML
611  *      explanation is sent instead.
612  *
613  *    - Added new feature, which permits blocking remote
614  *      script redirects and firing back a local redirect
615  *      to the browser.
616  *      The feature is conditionally compiled, i.e. it
617  *      can be disabled with --disable-fast-redirects,
618  *      plus it must be activated by a "fast-redirects"
619  *      line in the config file, has its own log level
620  *      and of course wants to be displayed by show-proxy-args
621  *      Note: Boy, all the #ifdefs in 1001 locations and
622  *      all the fumbling with configure.in and acconfig.h
623  *      were *way* more work than the feature itself :-(
624  *
625  *    - Because a generic redirect template was needed for
626  *      this, tinygif = 3 now uses the same.
627  *
628  *    - Moved GIFs, and other static HTTP response templates
629  *      to project.h
630  *
631  *    - Some minor fixes
632  *
633  *    - Removed some >400 CRs again (Jon, you really worked
634  *      a lot! ;-)
635  *
636  *    Revision 1.3  2001/05/20 16:44:47  jongfoster
637  *    Removing last hardcoded Junkbusters.com URLs.
638  *
639  *    Revision 1.2  2001/05/20 01:21:20  jongfoster
640  *    Version 2.9.4 checkin.
641  *    - Merged popupfile and cookiefile, and added control over PCRS
642  *      filtering, in new "permissionsfile".
643  *    - Implemented LOG_LEVEL_FATAL, so that if there is a configuration
644  *      file error you now get a message box (in the Win32 GUI) rather
645  *      than the program exiting with no explanation.
646  *    - Made killpopup use the PCRS MIME-type checking and HTTP-header
647  *      skipping.
648  *    - Removed tabs from "config"
649  *    - Moved duplicated url parsing code in "loaders.c" to a new funcition.
650  *    - Bumped up version number.
651  *
652  *    Revision 1.1.1.1  2001/05/15 13:58:52  oes
653  *    Initial import of version 2.9.3 source tree
654  *
655  *
656  *********************************************************************/
657 \f
658
659 #include "config.h"
660
661 #include <stdio.h>
662 #include <sys/types.h>
663 #include <stdlib.h>
664 #include <ctype.h>
665 #include <string.h>
666 #include <assert.h>
667
668 #ifdef HAVE_GETADDRINFO
669 #include <netdb.h>
670 #include <sys/socket.h>
671 #endif /* def HAVE_GETADDRINFO */
672
673 #ifndef _WIN32
674 #ifndef __OS2__
675 #include <unistd.h>
676 #endif /* ndef __OS2__ */
677 #include <netinet/in.h>
678 #else
679 #include <winsock2.h>
680 #endif /* ndef _WIN32 */
681
682 #ifdef __OS2__
683 #include <utils.h>
684 #endif /* def __OS2__ */
685
686 #include "project.h"
687 #include "filters.h"
688 #include "encode.h"
689 #include "parsers.h"
690 #include "ssplit.h"
691 #include "errlog.h"
692 #include "jbsockets.h"
693 #include "miscutil.h"
694 #include "actions.h"
695 #include "cgi.h"
696 #include "list.h"
697 #include "deanimate.h"
698 #include "urlmatch.h"
699 #include "loaders.h"
700
701 #ifdef _WIN32
702 #include "win32.h"
703 #endif
704
705 const char filters_h_rcs[] = FILTERS_H_VERSION;
706
707 /* Fix a problem with Solaris.  There should be no effect on other
708  * platforms.
709  * Solaris's isspace() is a macro which uses it's argument directly
710  * as an array index.  Therefore we need to make sure that high-bit
711  * characters generate +ve values, and ideally we also want to make
712  * the argument match the declared parameter type of "int".
713  */
714 #define ijb_isdigit(__X) isdigit((int)(unsigned char)(__X))
715
716 static jb_err remove_chunked_transfer_coding(char *buffer, size_t *size);
717 static jb_err prepare_for_filtering(struct client_state *csp);
718
719 #ifdef FEATURE_ACL
720 #ifdef HAVE_GETADDRINFO
721 /*********************************************************************
722  *
723  * Function    :  sockaddr_storage_to_ip
724  *
725  * Description :  Access internal structure of sockaddr_storage
726  *
727  * Parameters  :
728  *          1  :  addr = socket address
729  *          2  :  ip   = IP address as array of octets in network order
730  *                       (it points into addr)
731  *          3  :  len  = length of IP address in octets
732  *          4  :  port = port number in network order;
733  *
734  * Returns     :  0 = no errror; otherwise 
735  *
736  *********************************************************************/
737 int sockaddr_storage_to_ip(const struct sockaddr_storage *addr, uint8_t **ip,
738       unsigned int *len, in_port_t **port)
739 {
740    if (!addr)
741    {
742       return(-1);
743    }
744
745    switch (addr->ss_family)
746    {
747       case AF_INET:
748          if (len)
749          {
750             *len = 4;
751          }
752          if (ip)
753          {
754             *ip = (uint8_t *)
755                &(( (struct sockaddr_in *) addr)->sin_addr.s_addr);
756          }
757          if (port)
758          {
759             *port = &((struct sockaddr_in *) addr)->sin_port;
760          }
761          break;
762
763       case AF_INET6:
764          if (len)
765          {
766             *len = 16;
767          }
768          if (ip)
769          {
770             *ip = ( (struct sockaddr_in6 *) addr)->sin6_addr.s6_addr;
771          }
772          if (port)
773          {
774             *port = &((struct sockaddr_in6 *) addr)->sin6_port;
775          }
776          break;
777
778       default:
779          /* Unsupported address family */
780          return(-1);
781    }
782
783    return(0);
784 }
785
786
787 /*********************************************************************
788  *
789  * Function    :  match_sockaddr
790  *
791  * Description :  Check whether address matches network (IP address and port)
792  *
793  * Parameters  :
794  *          1  :  network = socket address of subnework
795  *          3  :  netmask = network mask as socket address 
796  *          2  :  address = checked socket address against given network
797  *
798  * Returns     :  0 = doesn't match; 1 = does match
799  *
800  *********************************************************************/
801 int match_sockaddr(const struct sockaddr_storage *network,
802       const struct sockaddr_storage *netmask,
803       const struct sockaddr_storage *address)
804 {
805    uint8_t *network_addr, *netmask_addr, *address_addr;
806    unsigned int addr_len;
807    in_port_t *network_port, *netmask_port, *address_port;
808    int i;
809
810    if (network->ss_family != netmask->ss_family) 
811    {
812       /* This should never happen */
813       log_error(LOG_LEVEL_ERROR,
814             "Internal error at %s:%llu: network and netmask differ in family",
815             __FILE__, __LINE__);
816       return 0;
817    }
818
819    sockaddr_storage_to_ip(network, &network_addr, &addr_len, &network_port);
820    sockaddr_storage_to_ip(netmask, &netmask_addr, NULL, &netmask_port);
821    sockaddr_storage_to_ip(address, &address_addr, NULL, &address_port);
822
823    /* Check for family */
824    if (network->ss_family == AF_INET && address->ss_family == AF_INET6 &&
825          IN6_IS_ADDR_V4MAPPED(address_addr))
826    {
827       /* Map AF_INET6 V4MAPPED address into AF_INET */
828       address_addr += 12;
829       addr_len = 4;
830    }
831    else if (network->ss_family == AF_INET6 && address->ss_family == AF_INET &&
832          IN6_IS_ADDR_V4MAPPED(network_addr))
833    {
834       /* Map AF_INET6 V4MAPPED network into AF_INET */
835       network_addr += 12;
836       netmask_addr += 12;
837       addr_len = 4;
838    }
839    else if (network->ss_family != address->ss_family)
840    {
841       return 0;
842    }
843
844    /* XXX: Port check is signaled in netmask */
845    if (*netmask_port && *network_port != *address_port)
846    {
847       return 0;
848    }
849
850    /* TODO: Optimize by checking by words insted of octets */
851    for (i=0; i < addr_len && netmask_addr[i]; i++)
852    {
853       if ( (network_addr[i] & netmask_addr[i]) !=
854            (address_addr[i] & netmask_addr[i]) )
855       {
856          return 0;
857       }
858    }
859    
860    return 1;
861 }
862 #endif /* def HAVE_GETADDRINFO */
863
864
865 /*********************************************************************
866  *
867  * Function    :  block_acl
868  *
869  * Description :  Block this request?
870  *                Decide yes or no based on ACL file.
871  *
872  * Parameters  :
873  *          1  :  dst = The proxy or gateway address this is going to.
874  *                      Or NULL to check all possible targets.
875  *          2  :  csp = Current client state (buffers, headers, etc...)
876  *                      Also includes the client IP address.
877  *
878  * Returns     : 0 = FALSE (don't block) and 1 = TRUE (do block)
879  *
880  *********************************************************************/
881 int block_acl(const struct access_control_addr *dst, const struct client_state *csp)
882 {
883    struct access_control_list *acl = csp->config->acl;
884
885    /* if not using an access control list, then permit the connection */
886    if (acl == NULL)
887    {
888       return(0);
889    }
890
891    /* search the list */
892    while (acl != NULL)
893    {
894       if (
895 #ifdef HAVE_GETADDRINFO
896             match_sockaddr(&acl->src->addr, &acl->src->mask, &csp->tcp_addr) 
897 #else
898             (csp->ip_addr_long & acl->src->mask) == acl->src->addr
899 #endif
900             )
901       {
902          if (dst == NULL)
903          {
904             /* Just want to check if they have any access */
905             if (acl->action == ACL_PERMIT)
906             {
907                return(0);
908             }
909          }
910          else if (
911 #ifdef HAVE_GETADDRINFO
912                /* XXX: Undefined acl->dst is full of zeros and should be
913                 * considered as wildcard address.
914                 * sockaddr_storage_to_ip() failes on such dst because of
915                 * uknown sa_familly on glibc. However this test is not
916                 * portable.
917                 *
918                 * So, we signal the acl->dst is wildcard in wildcard_dst.
919                 */
920                acl->wildcard_dst ||
921                   match_sockaddr(&acl->dst->addr, &acl->dst->mask, &dst->addr)
922 #else
923                ((dst->addr & acl->dst->mask) == acl->dst->addr)
924            && ((dst->port == acl->dst->port) || (acl->dst->port == 0))
925 #endif
926            )
927          {
928             if (acl->action == ACL_PERMIT)
929             {
930                return(0);
931             }
932             else
933             {
934                return(1);
935             }
936          }
937       }
938       acl = acl->next;
939    }
940
941    return(1);
942
943 }
944
945
946 /*********************************************************************
947  *
948  * Function    :  acl_addr
949  *
950  * Description :  Called from `load_config' to parse an ACL address.
951  *
952  * Parameters  :
953  *          1  :  aspec = String specifying ACL address.
954  *          2  :  aca = struct access_control_addr to fill in.
955  *
956  * Returns     :  0 => Ok, everything else is an error.
957  *
958  *********************************************************************/
959 int acl_addr(const char *aspec, struct access_control_addr *aca)
960 {
961    int i, masklength;
962 #ifdef HAVE_GETADDRINFO
963    struct addrinfo hints, *result;
964    uint8_t *mask_data;
965    in_port_t *mask_port;
966    unsigned int addr_len;
967 #else
968    long port;
969 #endif /* def HAVE_GETADDRINFO */
970    char *p;
971    char *acl_spec = NULL;
972
973 #ifdef HAVE_GETADDRINFO
974    /* FIXME: Depend on ai_family */
975    masklength = 128;
976 #else
977    masklength = 32;
978    port       =  0;
979 #endif
980
981    /*
982     * Use a temporary acl spec copy so we can log
983     * the unmodified original in case of parse errors.
984     */
985    acl_spec = strdup(aspec);
986    if (acl_spec == NULL)
987    {
988       /* XXX: This will be logged as parse error. */
989       return(-1);
990    }
991
992    if ((p = strchr(acl_spec, '/')) != NULL)
993    {
994       *p++ = '\0';
995       if (ijb_isdigit(*p) == 0)
996       {
997          freez(acl_spec);
998          return(-1);
999       }
1000       masklength = atoi(p);
1001    }
1002
1003    if ((masklength < 0) ||
1004 #ifdef HAVE_GETADDRINFO
1005          (masklength > 128)
1006 #else
1007          (masklength > 32)
1008 #endif
1009          )
1010    {
1011       freez(acl_spec);
1012       return(-1);
1013    }
1014
1015    if (*acl_spec == '[' && NULL != (p = strchr(acl_spec, ']')))
1016    {
1017       *p = '\0';
1018       memmove(acl_spec, acl_spec + 1, (size_t) (p - acl_spec));
1019
1020       if (*++p != ':')
1021       {
1022          p = NULL;
1023       }
1024    }
1025    else
1026    {
1027       p = strchr(acl_spec, ':');
1028    }
1029
1030 #ifdef HAVE_GETADDRINFO
1031    memset(&hints, 0, sizeof(struct addrinfo));
1032    hints.ai_family = AF_UNSPEC;
1033    hints.ai_socktype = SOCK_STREAM;
1034
1035    i = getaddrinfo(acl_spec, (p) ? ++p : NULL, &hints, &result);
1036    freez(acl_spec);
1037
1038    if (i != 0)
1039    {
1040       log_error(LOG_LEVEL_ERROR, "Can not resolve [%s]:%s: %s", acl_spec, p,
1041             gai_strerror(i));
1042       return(-1);
1043    }
1044
1045    /* TODO: Allow multihomed hostnames */
1046    memcpy(&(aca->addr), result->ai_addr, result->ai_addrlen);
1047    freeaddrinfo(result);
1048 #else
1049    if (p != NULL)
1050    {
1051       char *endptr;
1052
1053       *p++ = '\0';
1054       port = strtol(p, &endptr, 10);
1055
1056       if (port <= 0 || port > 65535 || *endptr != '\0')
1057       {
1058          freez(acl_spec);
1059          return(-1);
1060       }
1061    }
1062
1063    aca->port = (unsigned long)port;
1064
1065    aca->addr = ntohl(resolve_hostname_to_ip(acl_spec));
1066    freez(acl_spec);
1067
1068    if (aca->addr == INADDR_NONE)
1069    {
1070       /* XXX: This will be logged as parse error. */
1071       return(-1);
1072    }
1073 #endif /* def HAVE_GETADDRINFO */
1074
1075    /* build the netmask */
1076 #ifdef HAVE_GETADDRINFO
1077    /* Clip masklength according current family */
1078    if (aca->addr.ss_family == AF_INET && masklength > 32)
1079    {
1080       masklength = 32;
1081    }
1082
1083    aca->mask.ss_family = aca->addr.ss_family;
1084    if (sockaddr_storage_to_ip(&aca->mask, &mask_data, &addr_len, &mask_port))
1085    {
1086       return(-1);
1087    }
1088
1089    if (p)
1090    {
1091       /* Port number in ACL has been specified, check ports in future */
1092       *mask_port = 1;
1093    }
1094
1095    /* XXX: This could be optimized to operate on whole words instead of octets
1096     * (128-bit CPU could do it in one iteration). */
1097    /* Octets after prefix can be ommitted because of previous initialization
1098     * to zeros. */
1099    for (i=0; i < addr_len && masklength; i++)
1100    {
1101       if (masklength >= 8)
1102       {
1103          mask_data[i] = 0xFF;
1104          masklength -= 8;
1105       }
1106       else
1107       {
1108          /* XXX: This assumes MSB of octet is on the left site. This should be
1109           * true for all architectures or solved on link layer of OSI model. */
1110          mask_data[i] = ~((1 << (8 - masklength)) - 1);
1111          masklength = 0;
1112       }
1113    }
1114
1115 #else
1116    aca->mask = 0;
1117    for (i=1; i <= masklength ; i++)
1118    {
1119       aca->mask |= (1U << (32 - i));
1120    }
1121
1122    /* now mask off the host portion of the ip address
1123     * (i.e. save on the network portion of the address).
1124     */
1125    aca->addr = aca->addr & aca->mask;
1126 #endif /* def HAVE_GETADDRINFO */
1127
1128    return(0);
1129
1130 }
1131 #endif /* def FEATURE_ACL */
1132
1133
1134 /*********************************************************************
1135  *
1136  * Function    :  connect_port_is_forbidden
1137  *
1138  * Description :  Check to see if CONNECT requests to the destination
1139  *                port of this request are forbidden. The check is
1140  *                independend of the actual request method.
1141  *
1142  * Parameters  :
1143  *          1  :  csp = Current client state (buffers, headers, etc...)
1144  *
1145  * Returns     :  True if yes, false otherwise.
1146  *
1147  *********************************************************************/
1148 int connect_port_is_forbidden(const struct client_state *csp)
1149 {
1150    return ((csp->action->flags & ACTION_LIMIT_CONNECT) &&
1151      !match_portlist(csp->action->string[ACTION_STRING_LIMIT_CONNECT],
1152         csp->http->port));
1153 }
1154
1155
1156 /*********************************************************************
1157  *
1158  * Function    :  block_url
1159  *
1160  * Description :  Called from `chat'.  Check to see if we need to block this.
1161  *
1162  * Parameters  :
1163  *          1  :  csp = Current client state (buffers, headers, etc...)
1164  *
1165  * Returns     :  NULL => unblocked, else HTTP block response
1166  *
1167  *********************************************************************/
1168 struct http_response *block_url(struct client_state *csp)
1169 {
1170    struct http_response *rsp;
1171    const char *new_content_type = NULL;
1172
1173    /*
1174     * If it's not blocked, don't block it ;-)
1175     */
1176    if ((csp->action->flags & ACTION_BLOCK) == 0)
1177    {
1178       return NULL;
1179    }
1180    if (csp->action->flags & ACTION_REDIRECT)
1181    {
1182       log_error(LOG_LEVEL_ERROR, "redirect{} overruled by block.");     
1183    }
1184    /*
1185     * Else, prepare a response
1186     */
1187    if (NULL == (rsp = alloc_http_response()))
1188    {
1189       return cgi_error_memory();
1190    }
1191
1192    /*
1193     * If it's an image-url, send back an image or redirect
1194     * as specified by the relevant +image action
1195     */
1196 #ifdef FEATURE_IMAGE_BLOCKING
1197    if (((csp->action->flags & ACTION_IMAGE_BLOCKER) != 0)
1198         && is_imageurl(csp))
1199    {
1200       char *p;
1201       /* determine HOW images should be blocked */
1202       p = csp->action->string[ACTION_STRING_IMAGE_BLOCKER];
1203
1204       if(csp->action->flags & ACTION_HANDLE_AS_EMPTY_DOCUMENT)
1205       {
1206          log_error(LOG_LEVEL_ERROR, "handle-as-empty-document overruled by handle-as-image.");
1207       }
1208 #if 1 /* Two alternative strategies, use this one for now: */
1209
1210       /* and handle accordingly: */
1211       if ((p == NULL) || (0 == strcmpic(p, "pattern")))
1212       {
1213          rsp->status = strdup("403 Request blocked by Privoxy");
1214          if (rsp->status == NULL)
1215          {
1216             free_http_response(rsp);
1217             return cgi_error_memory();
1218          }
1219          rsp->body = bindup(image_pattern_data, image_pattern_length);
1220          if (rsp->body == NULL)
1221          {
1222             free_http_response(rsp);
1223             return cgi_error_memory();
1224          }
1225          rsp->content_length = image_pattern_length;
1226
1227          if (enlist_unique_header(rsp->headers, "Content-Type", BUILTIN_IMAGE_MIMETYPE))
1228          {
1229             free_http_response(rsp);
1230             return cgi_error_memory();
1231          }
1232       }
1233
1234       else if (0 == strcmpic(p, "blank"))
1235       {
1236          rsp->status = strdup("403 Request blocked by Privoxy");
1237          if (rsp->status == NULL)
1238          {
1239             free_http_response(rsp);
1240             return cgi_error_memory();
1241          }
1242          rsp->body = bindup(image_blank_data, image_blank_length);
1243          if (rsp->body == NULL)
1244          {
1245             free_http_response(rsp);
1246             return cgi_error_memory();
1247          }
1248          rsp->content_length = image_blank_length;
1249
1250          if (enlist_unique_header(rsp->headers, "Content-Type", BUILTIN_IMAGE_MIMETYPE))
1251          {
1252             free_http_response(rsp);
1253             return cgi_error_memory();
1254          }
1255       }
1256
1257       else
1258       {
1259          rsp->status = strdup("302 Local Redirect from Privoxy");
1260          if (rsp->status == NULL)
1261          {
1262             free_http_response(rsp);
1263             return cgi_error_memory();
1264          }
1265
1266          if (enlist_unique_header(rsp->headers, "Location", p))
1267          {
1268             free_http_response(rsp);
1269             return cgi_error_memory();
1270          }
1271       }
1272
1273 #else /* Following code is disabled for now */
1274
1275       /* and handle accordingly: */
1276       if ((p == NULL) || (0 == strcmpic(p, "pattern")))
1277       {
1278          p = CGI_PREFIX "send-banner?type=pattern";
1279       }
1280       else if (0 == strcmpic(p, "blank"))
1281       {
1282          p = CGI_PREFIX "send-banner?type=blank";
1283       }
1284       rsp->status = strdup("302 Local Redirect from Privoxy");
1285       if (rsp->status == NULL)
1286       {
1287          free_http_response(rsp);
1288          return cgi_error_memory();
1289       }
1290
1291       if (enlist_unique_header(rsp->headers, "Location", p))
1292       {
1293          free_http_response(rsp);
1294          return cgi_error_memory();
1295       }
1296 #endif /* Preceeding code is disabled for now */
1297    }
1298    else if(csp->action->flags & ACTION_HANDLE_AS_EMPTY_DOCUMENT)
1299    {
1300      /*
1301       *  Send empty document.               
1302       */
1303       new_content_type = csp->action->string[ACTION_STRING_CONTENT_TYPE];
1304
1305       freez(rsp->body);
1306       rsp->body = strdup(" ");
1307       rsp->content_length = 1;
1308
1309       rsp->status = strdup("403 Request blocked by Privoxy");
1310       if (rsp->status == NULL)
1311       {
1312          free_http_response(rsp);
1313          return cgi_error_memory();
1314       }
1315       if (new_content_type != 0)
1316       {
1317          log_error(LOG_LEVEL_HEADER, "Overwriting Content-Type with %s", new_content_type);
1318          if (enlist_unique_header(rsp->headers, "Content-Type", new_content_type))
1319          {
1320             free_http_response(rsp);
1321             return cgi_error_memory();
1322          }
1323       }
1324    }
1325    else
1326 #endif /* def FEATURE_IMAGE_BLOCKING */
1327
1328    /*
1329     * Else, generate an HTML "blocked" message:
1330     */
1331    {
1332       jb_err err;
1333       struct map * exports;
1334       char *p;
1335
1336       /*
1337        * Workaround for stupid Netscape bug which prevents
1338        * pages from being displayed if loading a referenced
1339        * JavaScript or style sheet fails. So make it appear
1340        * as if it succeeded.
1341        */
1342       if ( NULL != (p = get_header_value(csp->headers, "User-Agent:"))
1343            && !strncmpic(p, "mozilla", 7) /* Catch Netscape but */
1344            && !strstr(p, "Gecko")         /* save Mozilla, */
1345            && !strstr(p, "compatible")    /* MSIE */
1346            && !strstr(p, "Opera"))        /* and Opera. */
1347       {
1348          rsp->status = strdup("200 Request for blocked URL");
1349       }
1350       else
1351       {
1352          rsp->status = strdup("403 Request for blocked URL");
1353       }
1354
1355       if (rsp->status == NULL)
1356       {
1357          free_http_response(rsp);
1358          return cgi_error_memory();
1359       }
1360
1361       exports = default_exports(csp, NULL);
1362       if (exports == NULL)
1363       {
1364          free_http_response(rsp);
1365          return cgi_error_memory();
1366       }
1367
1368 #ifdef FEATURE_FORCE_LOAD
1369       err = map(exports, "force-prefix", 1, FORCE_PREFIX, 1);
1370       /*
1371        * Export the force conditional block killer if
1372        *
1373        * - Privoxy was compiled without FEATURE_FORCE_LOAD, or
1374        * - Privoxy is configured to enforce blocks, or
1375        * - it's a CONNECT request and enforcing wouldn't work anyway.
1376        */
1377       if ((csp->config->feature_flags & RUNTIME_FEATURE_ENFORCE_BLOCKS)
1378        || (0 == strcmpic(csp->http->gpc, "connect")))
1379 #endif /* ndef FEATURE_FORCE_LOAD */
1380       {
1381          err = map_block_killer(exports, "force-support");
1382       }
1383
1384       if (!err) err = map(exports, "protocol", 1, csp->http->ssl ? "https://" : "http://", 1);
1385       if (!err) err = map(exports, "hostport", 1, html_encode(csp->http->hostport), 0);
1386       if (!err) err = map(exports, "path", 1, html_encode(csp->http->path), 0);
1387       if (!err) err = map(exports, "path-ue", 1, url_encode(csp->http->path), 0);
1388       if (!err)
1389       {
1390          const char *block_reason;
1391          if (csp->action->string[ACTION_STRING_BLOCK] != NULL)
1392          {
1393             block_reason = csp->action->string[ACTION_STRING_BLOCK];
1394          }
1395          else
1396          {
1397             assert(connect_port_is_forbidden(csp));
1398             block_reason = "Forbidden CONNECT port.";
1399          }
1400          err = map(exports, "block-reason", 1, html_encode(block_reason), 0);
1401       }
1402       if (err)
1403       {
1404          free_map(exports);
1405          free_http_response(rsp);
1406          return cgi_error_memory();
1407       }
1408
1409       err = template_fill_for_cgi(csp, "blocked", exports, rsp);
1410       if (err)
1411       {
1412          free_http_response(rsp);
1413          return cgi_error_memory();
1414       }
1415    }
1416    rsp->reason = RSP_REASON_BLOCKED;
1417
1418    return finish_http_response(csp, rsp);
1419
1420 }
1421
1422
1423 #ifdef FEATURE_TRUST
1424 /*********************************************************************
1425  *
1426  * Function    :  trust_url FIXME: I should be called distrust_url
1427  *
1428  * Description :  Calls is_untrusted_url to determine if the URL is trusted
1429  *                and if not, returns a HTTP 403 response with a reject message.
1430  *
1431  * Parameters  :
1432  *          1  :  csp = Current client state (buffers, headers, etc...)
1433  *
1434  * Returns     :  NULL => trusted, else http_response.
1435  *
1436  *********************************************************************/
1437 struct http_response *trust_url(struct client_state *csp)
1438 {
1439    struct http_response *rsp;
1440    struct map * exports;
1441    char buf[BUFFER_SIZE];
1442    char *p;
1443    struct url_spec **tl;
1444    struct url_spec *t;
1445    jb_err err;
1446
1447    /*
1448     * Don't bother to work on trusted URLs
1449     */
1450    if (!is_untrusted_url(csp))
1451    {
1452       return NULL;
1453    }
1454
1455    /*
1456     * Else, prepare a response:
1457     */
1458    if (NULL == (rsp = alloc_http_response()))
1459    {
1460       return cgi_error_memory();
1461    }
1462
1463    rsp->status = strdup("403 Request blocked by Privoxy");
1464    exports = default_exports(csp, NULL);
1465    if (exports == NULL || rsp->status == NULL)
1466    {
1467       free_http_response(rsp);
1468       return cgi_error_memory();
1469    }
1470
1471    /*
1472     * Export the protocol, host, port, and referrer information
1473     */
1474    err = map(exports, "hostport", 1, csp->http->hostport, 1);
1475    if (!err) err = map(exports, "protocol", 1, csp->http->ssl ? "https://" : "http://", 1); 
1476    if (!err) err = map(exports, "path", 1, csp->http->path, 1);
1477
1478    if (NULL != (p = get_header_value(csp->headers, "Referer:")))
1479    {
1480       if (!err) err = map(exports, "referrer", 1, html_encode(p), 0);
1481    }
1482    else
1483    {
1484       if (!err) err = map(exports, "referrer", 1, "none set", 1);
1485    }
1486
1487    if (err)
1488    {
1489       free_map(exports);
1490       free_http_response(rsp);
1491       return cgi_error_memory();
1492    }
1493
1494    /*
1495     * Export the trust list
1496     */
1497    p = strdup("");
1498    for (tl = csp->config->trust_list; (t = *tl) != NULL ; tl++)
1499    {
1500       snprintf(buf, sizeof(buf), "<li>%s</li>\n", t->spec);
1501       string_append(&p, buf);
1502    }
1503    err = map(exports, "trusted-referrers", 1, p, 0);
1504
1505    if (err)
1506    {
1507       free_map(exports);
1508       free_http_response(rsp);
1509       return cgi_error_memory();
1510    }
1511
1512    /*
1513     * Export the trust info, if available
1514     */
1515    if (csp->config->trust_info->first)
1516    {
1517       struct list_entry *l;
1518
1519       p = strdup("");
1520       for (l = csp->config->trust_info->first; l ; l = l->next)
1521       {
1522          snprintf(buf, sizeof(buf), "<li> <a href=\"%s\">%s</a><br>\n", l->str, l->str);
1523          string_append(&p, buf);
1524       }
1525       err = map(exports, "trust-info", 1, p, 0);
1526    }
1527    else
1528    {
1529       err = map_block_killer(exports, "have-trust-info");
1530    }
1531
1532    if (err)
1533    {
1534       free_map(exports);
1535       free_http_response(rsp);
1536       return cgi_error_memory();
1537    }
1538
1539    /*
1540     * Export the force conditional block killer if
1541     *
1542     * - Privoxy was compiled without FEATURE_FORCE_LOAD, or
1543     * - Privoxy is configured to enforce blocks, or
1544     * - it's a CONNECT request and enforcing wouldn't work anyway.
1545     */
1546 #ifdef FEATURE_FORCE_LOAD
1547    if ((csp->config->feature_flags & RUNTIME_FEATURE_ENFORCE_BLOCKS)
1548     || (0 == strcmpic(csp->http->gpc, "connect")))
1549    {
1550       err = map_block_killer(exports, "force-support");
1551    }
1552    else
1553    {
1554       err = map(exports, "force-prefix", 1, FORCE_PREFIX, 1);
1555    }
1556 #else /* ifndef FEATURE_FORCE_LOAD */
1557    err = map_block_killer(exports, "force-support");
1558 #endif /* ndef FEATURE_FORCE_LOAD */
1559
1560    if (err)
1561    {
1562       free_map(exports);
1563       free_http_response(rsp);
1564       return cgi_error_memory();
1565    }
1566
1567    /*
1568     * Build the response
1569     */
1570    err = template_fill_for_cgi(csp, "untrusted", exports, rsp);
1571    if (err)
1572    {
1573       free_http_response(rsp);
1574       return cgi_error_memory();
1575    }
1576    rsp->reason = RSP_REASON_UNTRUSTED;
1577
1578    return finish_http_response(csp, rsp);
1579 }
1580 #endif /* def FEATURE_TRUST */
1581
1582
1583 /*********************************************************************
1584  *
1585  * Function    :  compile_dynamic_pcrs_job_list
1586  *
1587  * Description :  Compiles a dynamic pcrs job list (one with variables
1588  *                resolved at request time)
1589  *
1590  * Parameters  :
1591  *          1  :  csp = Current client state (buffers, headers, etc...)
1592  *          2  :  b = The filter list to compile
1593  *
1594  * Returns     :  NULL in case of errors, otherwise the
1595  *                pcrs job list.  
1596  *
1597  *********************************************************************/
1598 pcrs_job *compile_dynamic_pcrs_job_list(const struct client_state *csp, const struct re_filterfile_spec *b)
1599 {
1600    struct list_entry *pattern;
1601    pcrs_job *job_list = NULL;
1602    pcrs_job *dummy = NULL;
1603    pcrs_job *lastjob = NULL;
1604    int error = 0;
1605
1606    const struct pcrs_variable variables[] =
1607    {
1608       {"url",    csp->http->url,   1},
1609       {"path",   csp->http->path,  1},
1610       {"host",   csp->http->host,  1},
1611       {"origin", csp->ip_addr_str, 1},
1612       {NULL,     NULL,             1}
1613    };
1614
1615    for (pattern = b->patterns->first; pattern != NULL; pattern = pattern->next)
1616    {
1617       assert(pattern->str != NULL);
1618
1619       dummy = pcrs_compile_dynamic_command(pattern->str, variables, &error);
1620       if (NULL == dummy)
1621       {
1622          assert(error < 0);
1623          log_error(LOG_LEVEL_ERROR,
1624             "Adding filter job \'%s\' to dynamic filter %s failed: %s",
1625             pattern->str, b->name, pcrs_strerror(error));
1626          continue;
1627       }
1628       else
1629       {
1630          if (error == PCRS_WARN_TRUNCATION)
1631          {
1632             log_error(LOG_LEVEL_ERROR,
1633                "At least one of the variables in \'%s\' had to "
1634                "be truncated before compilation", pattern->str);
1635          }
1636          if (job_list == NULL)
1637          {
1638             job_list = dummy;
1639          }
1640          else
1641          {
1642             lastjob->next = dummy;
1643          }
1644          lastjob = dummy;
1645       }
1646    }
1647
1648    return job_list;
1649 }
1650
1651
1652 /*********************************************************************
1653  *
1654  * Function    :  rewrite_url
1655  *
1656  * Description :  Rewrites a URL with a single pcrs command
1657  *                and returns the result if it differs from the
1658  *                original and isn't obviously invalid.
1659  *
1660  * Parameters  :
1661  *          1  :  old_url = URL to rewrite.
1662  *          2  :  pcrs_command = pcrs command formatted as string (s@foo@bar@)
1663  *
1664  *
1665  * Returns     :  NULL if the pcrs_command didn't change the url, or 
1666  *                the result of the modification.
1667  *
1668  *********************************************************************/
1669 char *rewrite_url(char *old_url, const char *pcrs_command)
1670 {
1671    char *new_url = NULL;
1672    int hits;
1673
1674    assert(old_url);
1675    assert(pcrs_command);
1676
1677    new_url = pcrs_execute_single_command(old_url, pcrs_command, &hits);
1678
1679    if (hits == 0)
1680    {
1681       log_error(LOG_LEVEL_REDIRECTS,
1682          "pcrs command \"%s\" didn't change \"%s\".",
1683          pcrs_command, old_url);
1684       freez(new_url);
1685    }
1686    else if (hits < 0)
1687    {
1688       log_error(LOG_LEVEL_REDIRECTS,
1689          "executing pcrs command \"%s\" to rewrite %s failed: %s",
1690          pcrs_command, old_url, pcrs_strerror(hits));
1691       freez(new_url);
1692    }
1693    else if (strncmpic(new_url, "http://", 7) && strncmpic(new_url, "https://", 8))
1694    {
1695       log_error(LOG_LEVEL_ERROR,
1696          "pcrs command \"%s\" changed \"%s\" to \"%s\" (%u hi%s), "
1697          "but the result doesn't look like a valid URL and will be ignored.",
1698          pcrs_command, old_url, new_url, hits, (hits == 1) ? "t" : "ts");
1699       freez(new_url);
1700    }
1701    else
1702    {
1703       log_error(LOG_LEVEL_REDIRECTS,
1704          "pcrs command \"%s\" changed \"%s\" to \"%s\" (%u hi%s).",
1705          pcrs_command, old_url, new_url, hits, (hits == 1) ? "t" : "ts");
1706    }
1707
1708    return new_url;
1709
1710 }
1711
1712
1713 #ifdef FEATURE_FAST_REDIRECTS
1714 /*********************************************************************
1715  *
1716  * Function    :  get_last_url
1717  *
1718  * Description :  Search for the last URL inside a string.
1719  *                If the string already is a URL, it will
1720  *                be the first URL found.
1721  *
1722  * Parameters  :
1723  *          1  :  subject = the string to check
1724  *          2  :  redirect_mode = +fast-redirect{} mode 
1725  *
1726  * Returns     :  NULL if no URL was found, or
1727  *                the last URL found.
1728  *
1729  *********************************************************************/
1730 char *get_last_url(char *subject, const char *redirect_mode)
1731 {
1732    char *new_url = NULL;
1733    char *tmp;
1734
1735    assert(subject);
1736    assert(redirect_mode);
1737
1738    subject = strdup(subject);
1739    if (subject == NULL)
1740    {
1741       log_error(LOG_LEVEL_ERROR, "Out of memory while searching for redirects.");
1742       return NULL;
1743    }
1744
1745    if (0 == strcmpic(redirect_mode, "check-decoded-url"))
1746    {  
1747       log_error(LOG_LEVEL_REDIRECTS, "Decoding \"%s\" if necessary.", subject);
1748       new_url = url_decode(subject);
1749       if (new_url != NULL)
1750       {
1751          freez(subject);
1752          subject = new_url;
1753       }
1754       else
1755       {
1756          log_error(LOG_LEVEL_ERROR, "Unable to decode \"%s\".", subject);
1757       }
1758    }
1759
1760    log_error(LOG_LEVEL_REDIRECTS, "Checking \"%s\" for redirects.", subject);
1761
1762    /*
1763     * Find the last URL encoded in the request
1764     */
1765    tmp = subject;
1766    while ((tmp = strstr(tmp, "http://")) != NULL)
1767    {
1768       new_url = tmp++;
1769    }
1770    tmp = (new_url != NULL) ? new_url : subject;
1771    while ((tmp = strstr(tmp, "https://")) != NULL)
1772    {
1773       new_url = tmp++;
1774    }
1775
1776    if ((new_url != NULL)
1777       && (  (new_url != subject)
1778          || (0 == strncmpic(subject, "http://", 7))
1779          || (0 == strncmpic(subject, "https://", 8))
1780          ))
1781    {
1782       /*
1783        * Return new URL if we found a redirect 
1784        * or if the subject already was a URL.
1785        *
1786        * The second case makes sure that we can
1787        * chain get_last_url after another redirection check
1788        * (like rewrite_url) without losing earlier redirects.
1789        */
1790       new_url = strdup(new_url);
1791       freez(subject);
1792       return new_url;
1793    }
1794
1795    freez(subject);
1796    return NULL;
1797
1798 }
1799 #endif /* def FEATURE_FAST_REDIRECTS */
1800
1801
1802 /*********************************************************************
1803  *
1804  * Function    :  redirect_url
1805  *
1806  * Description :  Checks if Privoxy should answer the request with
1807  *                a HTTP redirect and generates the redirect if
1808  *                necessary.
1809  *
1810  * Parameters  :
1811  *          1  :  csp = Current client state (buffers, headers, etc...)
1812  *
1813  * Returns     :  NULL if the request can pass, HTTP redirect otherwise.
1814  *
1815  *********************************************************************/
1816 struct http_response *redirect_url(struct client_state *csp)
1817 {
1818    struct http_response *rsp;
1819 #ifdef FEATURE_FAST_REDIRECTS
1820    /*
1821     * XXX: Do we still need FEATURE_FAST_REDIRECTS
1822     * as compile-time option? The user can easily disable
1823     * it in his action file.
1824     */
1825    char * redirect_mode;
1826 #endif /* def FEATURE_FAST_REDIRECTS */
1827    char *old_url = NULL;
1828    char *new_url = NULL;
1829    char *redirection_string;
1830
1831    if ((csp->action->flags & ACTION_REDIRECT))
1832    {
1833       redirection_string = csp->action->string[ACTION_STRING_REDIRECT];
1834
1835       /*
1836        * If the redirection string begins with 's',
1837        * assume it's a pcrs command, otherwise treat it as
1838        * properly formatted URL and use it for the redirection
1839        * directly.
1840        *
1841        * According to RFC 2616 section 14.30 the URL
1842        * has to be absolute and if the user tries:
1843        * +redirect{shit/this/will/be/parsed/as/pcrs_command.html}
1844        * she would get undefined results anyway.
1845        *
1846        */
1847
1848       if (*redirection_string == 's')
1849       {
1850          old_url = csp->http->url;
1851          new_url = rewrite_url(old_url, redirection_string);
1852       }
1853       else
1854       {
1855          log_error(LOG_LEVEL_REDIRECTS,
1856             "No pcrs command recognized, assuming that \"%s\" is already properly formatted.",
1857             redirection_string);
1858          new_url = strdup(redirection_string);
1859       }
1860    }
1861
1862 #ifdef FEATURE_FAST_REDIRECTS
1863    if ((csp->action->flags & ACTION_FAST_REDIRECTS))
1864    {
1865       redirect_mode = csp->action->string[ACTION_STRING_FAST_REDIRECTS];
1866
1867       /*
1868        * If it exists, use the previously rewritten URL as input
1869        * otherwise just use the old path.
1870        */
1871       old_url = (new_url != NULL) ? new_url : strdup(csp->http->path);
1872       new_url = get_last_url(old_url, redirect_mode);
1873       freez(old_url);
1874    }
1875
1876    /*
1877     * Disable redirect checkers, so that they
1878     * will be only run more than once if the user
1879     * also enables them through tags.
1880     *
1881     * From a performance point of view
1882     * it doesn't matter, but the duplicated
1883     * log messages are annoying.
1884     */
1885    csp->action->flags &= ~ACTION_FAST_REDIRECTS;
1886 #endif /* def FEATURE_FAST_REDIRECTS */
1887    csp->action->flags &= ~ACTION_REDIRECT;
1888
1889    /* Did any redirect action trigger? */   
1890    if (new_url)
1891    {
1892       if (0 == strcmpic(new_url, csp->http->url))
1893       {
1894          log_error(LOG_LEVEL_ERROR,
1895             "New URL \"%s\" and old URL \"%s\" are the same. Redirection loop prevented.",
1896             csp->http->url, new_url);
1897             freez(new_url);
1898       }
1899       else
1900       {
1901          log_error(LOG_LEVEL_REDIRECTS, "New URL is: %s", new_url);
1902
1903          if (NULL == (rsp = alloc_http_response()))
1904          {
1905             freez(new_url);
1906             return cgi_error_memory();
1907          }
1908
1909          if ( enlist_unique_header(rsp->headers, "Location", new_url)
1910            || (NULL == (rsp->status = strdup("302 Local Redirect from Privoxy"))) )
1911          {
1912             freez(new_url);
1913             free_http_response(rsp);
1914             return cgi_error_memory();
1915          }
1916          rsp->reason = RSP_REASON_REDIRECTED;
1917          freez(new_url);
1918
1919          return finish_http_response(csp, rsp);
1920       }
1921    }
1922
1923    /* Only reached if no redirect is required */
1924    return NULL;
1925
1926 }
1927
1928
1929 #ifdef FEATURE_IMAGE_BLOCKING
1930 /*********************************************************************
1931  *
1932  * Function    :  is_imageurl
1933  *
1934  * Description :  Given a URL, decide whether it is an image or not,
1935  *                using either the info from a previous +image action
1936  *                or, #ifdef FEATURE_IMAGE_DETECT_MSIE, and the browser
1937  *                is MSIE and not on a Mac, tell from the browser's accept
1938  *                header.
1939  *
1940  * Parameters  :
1941  *          1  :  csp = Current client state (buffers, headers, etc...)
1942  *
1943  * Returns     :  True (nonzero) if URL is an image, false (0)
1944  *                otherwise
1945  *
1946  *********************************************************************/
1947 int is_imageurl(const struct client_state *csp)
1948 {
1949 #ifdef FEATURE_IMAGE_DETECT_MSIE
1950    char *tmp;
1951
1952    tmp = get_header_value(csp->headers, "User-Agent:");
1953    if (tmp && strstr(tmp, "MSIE") && !strstr(tmp, "Mac_"))
1954    {
1955       tmp = get_header_value(csp->headers, "Accept:");
1956       if (tmp && strstr(tmp, "image/gif"))
1957       {
1958          /* Client will accept HTML.  If this seems counterintuitive,
1959           * blame Microsoft.
1960           */
1961          return(0);
1962       }
1963       else
1964       {
1965          return(1);
1966       }
1967    }
1968 #endif /* def FEATURE_IMAGE_DETECT_MSIE */
1969
1970    return ((csp->action->flags & ACTION_IMAGE) != 0);
1971
1972 }
1973 #endif /* def FEATURE_IMAGE_BLOCKING */
1974
1975
1976 #ifdef FEATURE_TRUST
1977 /*********************************************************************
1978  *
1979  * Function    :  is_untrusted_url
1980  *
1981  * Description :  Should we "distrust" this URL (and block it)?
1982  *
1983  *                Yes if it matches a line in the trustfile, or if the
1984  *                    referrer matches a line starting with "+" in the
1985  *                    trustfile.
1986  *                No  otherwise.
1987  *
1988  * Parameters  :
1989  *          1  :  csp = Current client state (buffers, headers, etc...)
1990  *
1991  * Returns     :  0 => trusted, 1 => untrusted
1992  *
1993  *********************************************************************/
1994 int is_untrusted_url(const struct client_state *csp)
1995 {
1996    struct file_list *fl;
1997    struct block_spec *b;
1998    struct url_spec **trusted_url;
1999    struct http_request rhttp[1];
2000    const char * referer;
2001    jb_err err;
2002
2003    /*
2004     * If we don't have a trustlist, we trust everybody
2005     */
2006    if (((fl = csp->tlist) == NULL) || ((b  = fl->f) == NULL))
2007    {
2008       return 0;
2009    }
2010
2011    memset(rhttp, '\0', sizeof(*rhttp));
2012
2013    /*
2014     * Do we trust the request URL itself?
2015     */
2016    for (b = b->next; b ; b = b->next)
2017    {
2018       if (url_match(b->url, csp->http))
2019       {
2020          return b->reject;
2021       }
2022    }
2023
2024    if (NULL == (referer = get_header_value(csp->headers, "Referer:")))
2025    {
2026       /* no referrer was supplied */
2027       return 1;
2028    }
2029
2030
2031    /*
2032     * If not, do we maybe trust its referrer?
2033     */
2034    err = parse_http_url(referer, rhttp, REQUIRE_PROTOCOL);
2035    if (err)
2036    {
2037       return 1;
2038    }
2039
2040    for (trusted_url = csp->config->trust_list; *trusted_url != NULL; trusted_url++)
2041    {
2042       if (url_match(*trusted_url, rhttp))
2043       {
2044          /* if the URL's referrer is from a trusted referrer, then
2045           * add the target spec to the trustfile as an unblocked
2046           * domain and return 0 (which means it's OK).
2047           */
2048
2049          FILE *fp;
2050
2051          if (NULL != (fp = fopen(csp->config->trustfile, "a")))
2052          {
2053             char * path;
2054             char * path_end;
2055             char * new_entry = strdup("~");
2056
2057             string_append(&new_entry, csp->http->hostport);
2058
2059             path = csp->http->path;
2060             if ( (path[0] == '/')
2061               && (path[1] == '~')
2062               && ((path_end = strchr(path + 2, '/')) != NULL))
2063             {
2064                /* since this path points into a user's home space
2065                 * be sure to include this spec in the trustfile.
2066                 */
2067                long path_len = path_end - path; /* save offset */
2068                path = strdup(path); /* Copy string */
2069                if (path != NULL)
2070                {
2071                   path_end = path + path_len; /* regenerate ptr to new buffer */
2072                   *(path_end + 1) = '\0'; /* Truncate path after '/' */
2073                }
2074                string_join(&new_entry, path);
2075             }
2076
2077             /*
2078              * Give a reason for generating this entry.
2079              */
2080             string_append(&new_entry, " # Trusted referrer was: ");
2081             string_append(&new_entry, referer);
2082
2083             if (new_entry != NULL)
2084             {
2085                if (-1 == fprintf(fp, "%s\n", new_entry))
2086                {
2087                   log_error(LOG_LEVEL_ERROR, "Failed to append \'%s\' to trustfile \'%s\': %E",
2088                      new_entry, csp->config->trustfile);
2089                }
2090                freez(new_entry);
2091             }
2092             else
2093             {
2094                /* FIXME: No way to handle out-of memory, so mostly ignoring it */
2095                log_error(LOG_LEVEL_ERROR, "Out of memory adding pattern to trust file");
2096             }
2097
2098             fclose(fp);
2099          }
2100          else
2101          {
2102             log_error(LOG_LEVEL_ERROR, "Failed to append new entry for \'%s\' to trustfile \'%s\': %E",
2103                csp->http->hostport, csp->config->trustfile);
2104          }
2105          return 0;
2106       }
2107    }
2108
2109    return 1;
2110 }
2111 #endif /* def FEATURE_TRUST */
2112
2113
2114 /*********************************************************************
2115  *
2116  * Function    :  pcrs_filter_response
2117  *
2118  * Description :  Execute all text substitutions from all applying
2119  *                +filter actions on the text buffer that's been
2120  *                accumulated in csp->iob->buf.
2121  *
2122  * Parameters  :
2123  *          1  :  csp = Current client state (buffers, headers, etc...)
2124  *
2125  * Returns     :  a pointer to the (newly allocated) modified buffer.
2126  *                or NULL if there were no hits or something went wrong
2127  *
2128  *********************************************************************/
2129 static char *pcrs_filter_response(struct client_state *csp)
2130 {
2131    int hits=0;
2132    size_t size, prev_size;
2133
2134    char *old = NULL;
2135    char *new = NULL;
2136    pcrs_job *job;
2137
2138    struct file_list *fl;
2139    struct re_filterfile_spec *b;
2140    struct list_entry *filtername;
2141
2142    int i, found_filters = 0;
2143
2144    /* 
2145     * Sanity first
2146     */
2147    if (csp->iob->cur >= csp->iob->eod)
2148    {
2149       return(NULL);
2150    }
2151
2152    /*
2153     * Need to check the set of re_filterfiles...
2154     */
2155    for (i = 0; i < MAX_AF_FILES; i++)
2156    {
2157       fl = csp->rlist[i];
2158       if (NULL != fl)
2159       {
2160          if (NULL != fl->f)
2161          {
2162            found_filters = 1;
2163            break;
2164          }
2165       }
2166    }
2167
2168    if (0 == found_filters)
2169    {
2170       log_error(LOG_LEVEL_ERROR, "Inconsistent configuration: "
2171          "content filtering enabled, but no content filters available.");
2172       return(NULL);
2173    }
2174
2175    size = (size_t)(csp->iob->eod - csp->iob->cur);
2176    old = csp->iob->cur;
2177
2178    for (i = 0; i < MAX_AF_FILES; i++)
2179    {
2180      fl = csp->rlist[i];
2181      if ((NULL == fl) || (NULL == fl->f))
2182      {
2183         /*
2184          * Either there are no filter files
2185          * left, or this filter file just
2186          * contains no valid filters.
2187          *
2188          * Continue to be sure we don't miss
2189          * valid filter files that are chained
2190          * after empty or invalid ones.
2191          */
2192         continue;
2193      }
2194    /*
2195     * For all applying +filter actions, look if a filter by that
2196     * name exists and if yes, execute it's pcrs_joblist on the
2197     * buffer.
2198     */
2199    for (b = fl->f; b; b = b->next)
2200    {
2201       if (b->type != FT_CONTENT_FILTER)
2202       {
2203          /* Skip header filters */
2204          continue;
2205       }
2206
2207       for (filtername = csp->action->multi[ACTION_MULTI_FILTER]->first;
2208            filtername ; filtername = filtername->next)
2209       {
2210          if (strcmp(b->name, filtername->str) == 0)
2211          {
2212             int current_hits = 0; /* Number of hits caused by this filter */
2213             int job_number   = 0; /* Which job we're currently executing  */
2214             int job_hits     = 0; /* How many hits the current job caused */
2215             pcrs_job *joblist = b->joblist;
2216
2217             if (b->dynamic) joblist = compile_dynamic_pcrs_job_list(csp, b);
2218
2219             if (NULL == joblist)
2220             {
2221                log_error(LOG_LEVEL_RE_FILTER, "Filter %s has empty joblist. Nothing to do.", b->name);
2222                continue;
2223             }
2224
2225             prev_size = size;
2226             /* Apply all jobs from the joblist */
2227             for (job = joblist; NULL != job; job = job->next)
2228             {
2229                job_number++;
2230                job_hits = pcrs_execute(job, old, size, &new, &size);
2231
2232                if (job_hits >= 0)
2233                {
2234                   /*
2235                    * That went well. Continue filtering
2236                    * and use the result of this job as
2237                    * input for the next one.
2238                    */
2239                   current_hits += job_hits;
2240                   if (old != csp->iob->cur)
2241                   {
2242                      freez(old);
2243                   }
2244                   old = new;
2245                }
2246                else
2247                {
2248                   /*
2249                    * This job caused an unexpected error. Inform the user
2250                    * and skip the rest of the jobs in this filter. We could
2251                    * continue with the next job, but usually the jobs
2252                    * depend on each other or are similar enough to
2253                    * fail for the same reason.
2254                    *
2255                    * At the moment our pcrs expects the error codes of pcre 3.4,
2256                    * but newer pcre versions can return additional error codes.
2257                    * As a result pcrs_strerror()'s error message might be
2258                    * "Unknown error ...", therefore we print the numerical value
2259                    * as well.
2260                    *
2261                    * XXX: Is this important enough for LOG_LEVEL_ERROR or
2262                    * should we use LOG_LEVEL_RE_FILTER instead?
2263                    */
2264                   log_error(LOG_LEVEL_ERROR, "Skipped filter \'%s\' after job number %u: %s (%d)",
2265                      b->name, job_number, pcrs_strerror(job_hits), job_hits);
2266                   break;
2267                }
2268             }
2269
2270             if (b->dynamic) pcrs_free_joblist(joblist);
2271
2272             log_error(LOG_LEVEL_RE_FILTER,
2273                "filtering %s%s (size %d) with \'%s\' produced %d hits (new size %d).",
2274                csp->http->hostport, csp->http->path, prev_size, b->name, current_hits, size);
2275
2276             hits += current_hits;
2277          }
2278       }
2279    }
2280    }
2281
2282    /*
2283     * If there were no hits, destroy our copy and let
2284     * chat() use the original in csp->iob
2285     */
2286    if (!hits)
2287    {
2288       freez(new);
2289       return(NULL);
2290    }
2291
2292    csp->flags |= CSP_FLAG_MODIFIED;
2293    csp->content_length = size;
2294    IOB_RESET(csp);
2295
2296    return(new);
2297
2298 }
2299
2300
2301 /*********************************************************************
2302  *
2303  * Function    :  gif_deanimate_response
2304  *
2305  * Description :  Deanimate the GIF image that has been accumulated in
2306  *                csp->iob->buf, set csp->content_length to the modified
2307  *                size and raise the CSP_FLAG_MODIFIED flag.
2308  *
2309  * Parameters  :
2310  *          1  :  csp = Current client state (buffers, headers, etc...)
2311  *
2312  * Returns     :  a pointer to the (newly allocated) modified buffer.
2313  *                or NULL in case something went wrong.
2314  *
2315  *********************************************************************/
2316 static char *gif_deanimate_response(struct client_state *csp)
2317 {
2318    struct binbuffer *in, *out;
2319    char *p;
2320    size_t size;
2321
2322    size = (size_t)(csp->iob->eod - csp->iob->cur);
2323
2324    if (  (NULL == (in =  (struct binbuffer *)zalloc(sizeof *in )))
2325       || (NULL == (out = (struct binbuffer *)zalloc(sizeof *out))) )
2326    {
2327       log_error(LOG_LEVEL_DEANIMATE, "failed! (no mem)");
2328       return NULL;
2329    }
2330
2331    in->buffer = csp->iob->cur;
2332    in->size = size;
2333
2334    if (gif_deanimate(in, out, strncmp("last", csp->action->string[ACTION_STRING_DEANIMATE], 4)))
2335    {
2336       log_error(LOG_LEVEL_DEANIMATE, "failed! (gif parsing)");
2337       freez(in);
2338       buf_free(out);
2339       return(NULL);
2340    }
2341    else
2342    {
2343       if ((int)size == out->offset)
2344       {
2345          log_error(LOG_LEVEL_DEANIMATE, "GIF not changed.");
2346       }
2347       else
2348       {
2349          log_error(LOG_LEVEL_DEANIMATE, "Success! GIF shrunk from %d bytes to %d.", size, out->offset);
2350       }
2351       csp->content_length = out->offset;
2352       csp->flags |= CSP_FLAG_MODIFIED;
2353       p = out->buffer;
2354       freez(in);
2355       freez(out);
2356       return(p);
2357    }
2358
2359 }
2360
2361
2362 /*********************************************************************
2363  *
2364  * Function    :  get_filter_function
2365  *
2366  * Description :  Decides which content filter function has
2367  *                to be applied (if any).
2368  *
2369  * Parameters  :
2370  *          1  :  csp = Current client state (buffers, headers, etc...)
2371  *
2372  * Returns     :  The content filter function to run, or
2373  *                NULL if no content filter is active
2374  *
2375  *********************************************************************/
2376 filter_function_ptr get_filter_function(struct client_state *csp)
2377 {
2378    filter_function_ptr filter_function = NULL;
2379
2380    /*
2381     * Are we enabling text mode by force?
2382     */
2383    if (csp->action->flags & ACTION_FORCE_TEXT_MODE)
2384    {
2385       /*
2386        * Do we really have to?
2387        */
2388       if (csp->content_type & CT_TEXT)
2389       {
2390          log_error(LOG_LEVEL_HEADER, "Text mode is already enabled.");   
2391       }
2392       else
2393       {
2394          csp->content_type |= CT_TEXT;
2395          log_error(LOG_LEVEL_HEADER, "Text mode enabled by force. Take cover!");   
2396       }
2397    }
2398
2399    if (!(csp->content_type & CT_DECLARED))
2400    {
2401       /*
2402        * The server didn't bother to declare a MIME-Type.
2403        * Assume it's text that can be filtered.
2404        *
2405        * This also regulary happens with 304 responses,
2406        * therefore logging anything here would cause
2407        * too much noise.
2408        */
2409       csp->content_type |= CT_TEXT;
2410    }
2411
2412    /*
2413     * Choose the applying filter function based on
2414     * the content type and action settings.
2415     */
2416    if ((csp->content_type & CT_TEXT) &&
2417        (csp->rlist != NULL) &&
2418        (!list_is_empty(csp->action->multi[ACTION_MULTI_FILTER])))
2419    {
2420       filter_function = pcrs_filter_response;
2421    }
2422    else if ((csp->content_type & CT_GIF)  &&
2423             (csp->action->flags & ACTION_DEANIMATE))
2424    {
2425       filter_function = gif_deanimate_response;
2426    }
2427
2428    return filter_function;
2429 }
2430
2431
2432 /*********************************************************************
2433  *
2434  * Function    :  remove_chunked_transfer_coding
2435  *
2436  * Description :  In-situ remove the "chunked" transfer coding as defined
2437  *                in rfc2616 from a buffer.
2438  *
2439  * Parameters  :
2440  *          1  :  buffer = Pointer to the text buffer
2441  *          2  :  size =  In: Number of bytes to be processed,
2442  *                       Out: Number of bytes after de-chunking.
2443  *                       (undefined in case of errors)
2444  *
2445  * Returns     :  JB_ERR_OK for success,
2446  *                JB_ERR_PARSE otherwise
2447  *
2448  *********************************************************************/
2449 static jb_err remove_chunked_transfer_coding(char *buffer, size_t *size)
2450 {
2451    size_t newsize = 0;
2452    unsigned int chunksize = 0;
2453    char *from_p, *to_p;
2454
2455    assert(buffer);
2456    from_p = to_p = buffer;
2457
2458    if (sscanf(buffer, "%x", &chunksize) != 1)
2459    {
2460       log_error(LOG_LEVEL_ERROR, "Invalid first chunksize while stripping \"chunked\" transfer coding");
2461       return JB_ERR_PARSE;
2462    }
2463
2464    while (chunksize > 0U)
2465    {
2466       if (NULL == (from_p = strstr(from_p, "\r\n")))
2467       {
2468          log_error(LOG_LEVEL_ERROR, "Parse error while stripping \"chunked\" transfer coding");
2469          return JB_ERR_PARSE;
2470       }
2471
2472       if ((newsize += chunksize) >= *size)
2473       {
2474          log_error(LOG_LEVEL_ERROR,
2475             "Chunk size %d exceeds buffer size %d in  \"chunked\" transfer coding",
2476             chunksize, *size);
2477          return JB_ERR_PARSE;
2478       }
2479       from_p += 2;
2480
2481       memmove(to_p, from_p, (size_t) chunksize);
2482       to_p = buffer + newsize;
2483       from_p += chunksize + 2;
2484
2485       if (sscanf(from_p, "%x", &chunksize) != 1)
2486       {
2487          log_error(LOG_LEVEL_INFO, "Invalid \"chunked\" transfer encoding detected and ignored.");
2488          break;
2489       }
2490    }
2491    
2492    /* XXX: Should get its own loglevel. */
2493    log_error(LOG_LEVEL_RE_FILTER, "De-chunking successful. Shrunk from %d to %d", *size, newsize);
2494
2495    *size = newsize;
2496
2497    return JB_ERR_OK;
2498
2499 }
2500
2501
2502 /*********************************************************************
2503  *
2504  * Function    :  prepare_for_filtering
2505  *
2506  * Description :  If necessary, de-chunks and decompresses
2507  *                the content so it can get filterd.
2508  *
2509  * Parameters  :
2510  *          1  :  csp = Current client state (buffers, headers, etc...)
2511  *
2512  * Returns     :  JB_ERR_OK for success,
2513  *                JB_ERR_PARSE otherwise
2514  *
2515  *********************************************************************/
2516 static jb_err prepare_for_filtering(struct client_state *csp)
2517 {
2518    jb_err err = JB_ERR_OK;
2519
2520    /*
2521     * If the body has a "chunked" transfer-encoding,
2522     * get rid of it, adjusting size and iob->eod
2523     */
2524    if (csp->flags & CSP_FLAG_CHUNKED)
2525    {
2526       size_t size = (size_t)(csp->iob->eod - csp->iob->cur);
2527
2528       log_error(LOG_LEVEL_RE_FILTER, "Need to de-chunk first");
2529       err = remove_chunked_transfer_coding(csp->iob->cur, &size);
2530       if (JB_ERR_OK == err)
2531       {
2532          csp->iob->eod = csp->iob->cur + size;
2533          csp->flags |= CSP_FLAG_MODIFIED;
2534       }
2535       else
2536       {
2537          return JB_ERR_PARSE;
2538       }
2539    }
2540
2541 #ifdef FEATURE_ZLIB
2542    /*
2543     * If the body has a supported transfer-encoding,
2544     * decompress it, adjusting size and iob->eod.
2545     */
2546    if (csp->content_type & (CT_GZIP|CT_DEFLATE))
2547    {
2548       if (0 == csp->iob->eod - csp->iob->cur)
2549       {
2550          /* Nothing left after de-chunking. */
2551          return JB_ERR_OK;
2552       }
2553
2554       err = decompress_iob(csp);
2555
2556       if (JB_ERR_OK == err)
2557       {
2558          csp->flags |= CSP_FLAG_MODIFIED;
2559          csp->content_type &= ~CT_TABOO;
2560       }
2561       else
2562       {
2563          /*
2564           * Unset CT_GZIP and CT_DEFLATE to remember not
2565           * to modify the Content-Encoding header later.
2566           */
2567          csp->content_type &= ~CT_GZIP;
2568          csp->content_type &= ~CT_DEFLATE;
2569       }
2570    }
2571 #endif
2572
2573    return err;
2574 }
2575
2576
2577 /*********************************************************************
2578  *
2579  * Function    :  execute_content_filter
2580  *
2581  * Description :  Executes a given content filter.
2582  *
2583  * Parameters  :
2584  *          1  :  csp = Current client state (buffers, headers, etc...)
2585  *          2  :  content_filter = The filter function to execute
2586  *
2587  * Returns     :  Pointer to the modified buffer, or
2588  *                NULL if filtering failed or wasn't necessary.
2589  *
2590  *********************************************************************/
2591 char *execute_content_filter(struct client_state *csp, filter_function_ptr content_filter)
2592 {
2593    if (0 == csp->iob->eod - csp->iob->cur)
2594    {
2595       /*
2596        * No content (probably status code 301, 302 ...),
2597        * no filtering necessary.
2598        */
2599       return NULL;
2600    }
2601
2602    if (JB_ERR_OK != prepare_for_filtering(csp))
2603    {
2604       /*
2605        * failed to de-chunk or decompress.
2606        */
2607       return NULL;
2608    }
2609
2610    if (0 == csp->iob->eod - csp->iob->cur)
2611    {
2612       /*
2613        * Clown alarm: chunked and/or compressed nothing delivered.
2614        */
2615       return NULL;
2616    }
2617
2618    return ((*content_filter)(csp));
2619 }
2620
2621
2622 /*********************************************************************
2623  *
2624  * Function    :  get_url_actions
2625  *
2626  * Description :  Gets the actions for this URL.
2627  *
2628  * Parameters  :
2629  *          1  :  csp = Current client state (buffers, headers, etc...)
2630  *          2  :  http = http_request request for blocked URLs
2631  *
2632  * Returns     :  N/A
2633  *
2634  *********************************************************************/
2635 void get_url_actions(struct client_state *csp, struct http_request *http)
2636 {
2637    struct file_list *fl;
2638    struct url_actions *b;
2639    int i;
2640
2641    init_current_action(csp->action);
2642
2643    for (i = 0; i < MAX_AF_FILES; i++)
2644    {
2645       if (((fl = csp->actions_list[i]) == NULL) || ((b = fl->f) == NULL))
2646       {
2647          return;
2648       }
2649
2650       apply_url_actions(csp->action, http, b);
2651    }
2652
2653    return;
2654 }
2655
2656
2657 /*********************************************************************
2658  *
2659  * Function    :  apply_url_actions
2660  *
2661  * Description :  Applies a list of URL actions.
2662  *
2663  * Parameters  :
2664  *          1  :  action = Destination.
2665  *          2  :  http = Current URL
2666  *          3  :  b = list of URL actions to apply
2667  *
2668  * Returns     :  N/A
2669  *
2670  *********************************************************************/
2671 void apply_url_actions(struct current_action_spec *action,
2672                        struct http_request *http,
2673                        struct url_actions *b)
2674 {
2675    if (b == NULL)
2676    {
2677       /* Should never happen */
2678       return;
2679    }
2680
2681    for (b = b->next; NULL != b; b = b->next)
2682    {
2683       if (url_match(b->url, http))
2684       {
2685          merge_current_action(action, b->action);
2686       }
2687    }
2688 }
2689
2690
2691 /*********************************************************************
2692  *
2693  * Function    :  get_forward_override_settings
2694  *
2695  * Description :  Returns forward settings as specified with the
2696  *                forward-override{} action. forward-override accepts
2697  *                forward lines similar to the one used in the
2698  *                configuration file, but without the URL pattern.
2699  *
2700  *                For example:
2701  *
2702  *                   forward / .
2703  *
2704  *                in the configuration file can be replaced with
2705  *                the action section:
2706  *
2707  *                 {+forward-override{forward .}}
2708  *                 /
2709  *
2710  * Parameters  :
2711  *          1  :  csp = Current client state (buffers, headers, etc...)
2712  *
2713  * Returns     :  Pointer to forwarding structure in case of success.
2714  *                Invalid syntax is fatal.
2715  *
2716  *********************************************************************/
2717 const static struct forward_spec *get_forward_override_settings(struct client_state *csp)
2718 {
2719    const char *forward_override_line = csp->action->string[ACTION_STRING_FORWARD_OVERRIDE];
2720    char forward_settings[BUFFER_SIZE];
2721    char *http_parent = NULL;
2722    /* variable names were chosen for consistency reasons. */
2723    struct forward_spec *fwd = NULL;
2724    int vec_count;
2725    char *vec[3];
2726
2727    assert(csp->action->flags & ACTION_FORWARD_OVERRIDE);
2728    /* Should be enforced by load_one_actions_file() */
2729    assert(strlen(forward_override_line) < sizeof(forward_settings) - 1);
2730
2731    /* Create a copy ssplit can modify */
2732    strlcpy(forward_settings, forward_override_line, sizeof(forward_settings));
2733
2734    if (NULL != csp->fwd)
2735    {
2736       /*
2737        * XXX: Currently necessary to prevent memory
2738        * leaks when the show-url-info cgi page is visited.
2739        */
2740       unload_forward_spec(csp->fwd);
2741    }
2742
2743    /*
2744     * allocate a new forward node, valid only for
2745     * the lifetime of this request. Save its location
2746     * in csp as well, so sweep() can free it later on.
2747     */
2748    fwd = csp->fwd = zalloc(sizeof(*fwd));
2749    if (NULL == fwd)
2750    {
2751       log_error(LOG_LEVEL_FATAL,
2752          "can't allocate memory for forward-override{%s}", forward_override_line);
2753       /* Never get here - LOG_LEVEL_FATAL causes program exit */
2754       return NULL;
2755    }
2756
2757    vec_count = ssplit(forward_settings, " \t", vec, SZ(vec), 1, 1);
2758    if ((vec_count == 2) && !strcasecmp(vec[0], "forward"))
2759    {
2760       fwd->type = SOCKS_NONE;
2761
2762       /* Parse the parent HTTP proxy host:port */
2763       http_parent = vec[1];
2764
2765    }
2766    else if (vec_count == 3)
2767    {
2768       char *socks_proxy = NULL;
2769
2770       if  (!strcasecmp(vec[0], "forward-socks4"))
2771       {
2772          fwd->type = SOCKS_4;
2773          socks_proxy = vec[1];
2774       }
2775       else if (!strcasecmp(vec[0], "forward-socks4a"))
2776       {
2777          fwd->type = SOCKS_4A;
2778          socks_proxy = vec[1];
2779       }
2780       else if (!strcasecmp(vec[0], "forward-socks5"))
2781       {
2782          fwd->type = SOCKS_5;
2783          socks_proxy = vec[1];
2784       }
2785
2786       if (NULL != socks_proxy)
2787       {
2788          /* Parse the SOCKS proxy host[:port] */
2789          fwd->gateway_host = strdup(socks_proxy);
2790
2791          if (NULL != (socks_proxy = strchr(fwd->gateway_host, ':')))
2792          {
2793             *socks_proxy++ = '\0';
2794             fwd->gateway_port = (int)strtol(socks_proxy, NULL, 0);
2795          }
2796
2797          if (fwd->gateway_port <= 0)
2798          {
2799             fwd->gateway_port = 1080;
2800          }
2801
2802          http_parent = vec[2];
2803       }
2804    }
2805
2806    if (NULL == http_parent)
2807    {
2808       log_error(LOG_LEVEL_FATAL,
2809          "Invalid forward-override syntax in: %s", forward_override_line);
2810       /* Never get here - LOG_LEVEL_FATAL causes program exit */
2811    }
2812
2813    /* Parse http forwarding settings */
2814    if (strcmp(http_parent, ".") != 0)
2815    {
2816       fwd->forward_host = strdup(http_parent);
2817
2818       if (NULL != (http_parent = strchr(fwd->forward_host, ':')))
2819       {
2820          *http_parent++ = '\0';
2821          fwd->forward_port = (int)strtol(http_parent, NULL, 0);
2822       }
2823
2824       if (fwd->forward_port <= 0)
2825       {
2826          fwd->forward_port = 8000;
2827       }
2828    }
2829
2830    assert (NULL != fwd);
2831
2832    log_error(LOG_LEVEL_CONNECT,
2833       "Overriding forwarding settings based on \'%s\'", forward_override_line);
2834
2835    return fwd;
2836 }
2837
2838
2839 /*********************************************************************
2840  *
2841  * Function    :  forward_url
2842  *
2843  * Description :  Should we forward this to another proxy?
2844  *
2845  * Parameters  :
2846  *          1  :  csp = Current client state (buffers, headers, etc...)
2847  *          2  :  http = http_request request for current URL
2848  *
2849  * Returns     :  Pointer to forwarding information.
2850  *
2851  *********************************************************************/
2852 const struct forward_spec *forward_url(struct client_state *csp,
2853                                        const struct http_request *http)
2854 {
2855    static const struct forward_spec fwd_default[1] = { FORWARD_SPEC_INITIALIZER };
2856    struct forward_spec *fwd = csp->config->forward;
2857
2858    if (csp->action->flags & ACTION_FORWARD_OVERRIDE)
2859    {
2860       return get_forward_override_settings(csp);
2861    }
2862
2863    if (fwd == NULL)
2864    {
2865       return fwd_default;
2866    }
2867
2868    while (fwd != NULL)
2869    {
2870       if (url_match(fwd->url, http))
2871       {
2872          return fwd;
2873       }
2874       fwd = fwd->next;
2875    }
2876
2877    return fwd_default;
2878 }
2879
2880
2881 /*********************************************************************
2882  *
2883  * Function    :  direct_response 
2884  *
2885  * Description :  Check if Max-Forwards == 0 for an OPTIONS or TRACE
2886  *                request and if so, return a HTTP 501 to the client.
2887  *
2888  *                FIXME: I have a stupid name and I should handle the
2889  *                requests properly. Still, what we do here is rfc-
2890  *                compliant, whereas ignoring or forwarding are not.
2891  *
2892  * Parameters  :  
2893  *          1  :  csp = Current client state (buffers, headers, etc...)
2894  *
2895  * Returns     :  http_response if , NULL if nonmatch or handler fail
2896  *
2897  *********************************************************************/
2898 struct http_response *direct_response(struct client_state *csp)
2899 {
2900    struct http_response *rsp;
2901    struct list_entry *p;
2902
2903    if ((0 == strcmpic(csp->http->gpc, "trace"))
2904       || (0 == strcmpic(csp->http->gpc, "options")))
2905    {
2906       for (p = csp->headers->first; (p != NULL) ; p = p->next)
2907       {
2908          if (!strncmpic("Max-Forwards:", p->str, 13))
2909          {
2910             unsigned int max_forwards;
2911
2912             /*
2913              * If it's a Max-Forwards value of zero,
2914              * we have to intercept the request.
2915              */
2916             if (1 == sscanf(p->str+12, ": %u", &max_forwards) && max_forwards == 0)
2917             {
2918                /*
2919                 * FIXME: We could handle at least TRACE here,
2920                 * but that would require a verbatim copy of
2921                 * the request which we don't have anymore
2922                 */
2923                 log_error(LOG_LEVEL_HEADER,
2924                   "Detected header \'%s\' in OPTIONS or TRACE request. Returning 501.",
2925                   p->str);
2926
2927                /* Get mem for response or fail*/
2928                if (NULL == (rsp = alloc_http_response()))
2929                {
2930                   return cgi_error_memory();
2931                }
2932             
2933                if (NULL == (rsp->status = strdup("501 Not Implemented")))
2934                {
2935                   free_http_response(rsp);
2936                   return cgi_error_memory();
2937                }
2938
2939                rsp->is_static = 1;
2940                rsp->reason = RSP_REASON_UNSUPPORTED;
2941
2942                return(finish_http_response(csp, rsp));
2943             }
2944          }
2945       }
2946    }
2947    return NULL;
2948 }
2949
2950
2951 /*********************************************************************
2952  *
2953  * Function    :  content_filters_enabled
2954  *
2955  * Description :  Checks whether there are any content filters
2956  *                enabled for the current request.
2957  *
2958  * Parameters  :  
2959  *          1  :  action = Action spec to check.
2960  *
2961  * Returns     :  TRUE for yes, FALSE otherwise
2962  *
2963  *********************************************************************/
2964 int content_filters_enabled(const struct current_action_spec *action)
2965 {
2966    return ((action->flags & ACTION_DEANIMATE) ||
2967       !list_is_empty(action->multi[ACTION_MULTI_FILTER]));
2968 }
2969
2970 /*
2971   Local Variables:
2972   tab-width: 3
2973   end:
2974
2975   vim:softtabstop=3 shiftwidth=3
2976 */