----------------------------------------------------------------------
[privoxy.git] / filters.c
1 const char filters_rcs[] = "$Id: filters.c,v 1.57 2002/04/08 20:38:34 swa 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', and `trust_url'
13  *
14  * Copyright   :  Written by and Copyright (C) 2001 the SourceForge
15  *                Privoxy team. http://www.privoxy.org/
16  *
17  *                Based on the Internet Junkbuster originally written
18  *                by and Copyright (C) 1997 Anonymous Coders and
19  *                Junkbusters Corporation.  http://www.junkbusters.com
20  *
21  *                This program is free software; you can redistribute it
22  *                and/or modify it under the terms of the GNU General
23  *                Public License as published by the Free Software
24  *                Foundation; either version 2 of the License, or (at
25  *                your option) any later version.
26  *
27  *                This program is distributed in the hope that it will
28  *                be useful, but WITHOUT ANY WARRANTY; without even the
29  *                implied warranty of MERCHANTABILITY or FITNESS FOR A
30  *                PARTICULAR PURPOSE.  See the GNU General Public
31  *                License for more details.
32  *
33  *                The GNU General Public License should be included with
34  *                this file.  If not, you can view it at
35  *                http://www.gnu.org/copyleft/gpl.html
36  *                or write to the Free Software Foundation, Inc., 59
37  *                Temple Place - Suite 330, Boston, MA  02111-1307, USA.
38  *
39  * Revisions   :
40  *    $Log: filters.c,v $
41  *    Revision 1.57  2002/04/08 20:38:34  swa
42  *    fixed JB spelling
43  *
44  *    Revision 1.56  2002/04/05 15:51:24  oes
45  *     - bugfix: error-pages now get correct request protocol
46  *     - fix for invalid HTML in trust info
47  *
48  *    Revision 1.55  2002/04/02 16:13:51  oes
49  *    Fix: No "Go there anyway" for SSL
50  *
51  *    Revision 1.54  2002/04/02 14:55:56  oes
52  *    Bugfix: is_untrusted_url() now depends on FEATURE_TRUST, not FEATURE_COOKIE_JAR
53  *
54  *    Revision 1.53  2002/03/26 22:29:54  swa
55  *    we have a new homepage!
56  *
57  *    Revision 1.52  2002/03/24 16:35:57  jongfoster
58  *    Removing logo
59  *
60  *    Revision 1.51  2002/03/24 15:23:33  jongfoster
61  *    Name changes
62  *
63  *    Revision 1.50  2002/03/24 13:25:43  swa
64  *    name change related issues
65  *
66  *    Revision 1.49  2002/03/16 20:29:14  oes
67  *    Cosmetics
68  *
69  *    Revision 1.48  2002/03/13 20:25:34  oes
70  *    Better logging for content filters
71  *
72  *    Revision 1.47  2002/03/13 00:30:52  jongfoster
73  *    Killing warnings
74  *    Added option of always sending redirect for imageblock,
75  *    currently disabled with #if 0.
76  *
77  *    Revision 1.46  2002/03/12 01:42:49  oes
78  *    Introduced modular filters
79  *
80  *    Revision 1.45  2002/03/08 16:47:50  oes
81  *    Added choice beween GIF and PNG built-in images
82  *
83  *    Revision 1.44  2002/03/07 03:49:31  oes
84  *     - Fixed compiler warnings etc
85  *     - Changed built-in images from GIF to PNG
86  *       (with regard to Unisys patent issue)
87  *     - Added a 4x4 pattern PNG which is less intrusive
88  *       than the logo but also clearly marks the deleted banners
89  *
90  *    Revision 1.43  2002/01/22 23:51:59  jongfoster
91  *    Replacing strsav() with the safer string_append().
92  *
93  *    Adding missing html_encode() to error message generators.  Where encoded
94  *    and unencoded versions of a string were provided, removing the unencoded
95  *    one.
96  *
97  *    Revision 1.42  2002/01/17 21:00:32  jongfoster
98  *    Moving all our URL and URL pattern parsing code to urlmatch.c.
99  *
100  *    Using a single, simple url_match(pattern,url) function - rather than
101  *    the 3-line match routine which was repeated all over the place.
102  *
103  *    Renaming free_url to free_url_spec, since it frees a struct url_spec.
104  *
105  *    Using parse_http_url() to parse URLs without faking a HTTP
106  *    request line for parse_http_request().
107  *
108  *    Revision 1.41  2001/11/13 00:14:07  jongfoster
109  *    Fixing stupid bug now I've figured out what || means.
110  *    (It always returns 0 or 1, not one of it's paramaters.)
111  *
112  *    Revision 1.40  2001/10/26 17:37:55  oes
113  *    - Re-enabled Netscape 200/404 bug workaround in block_url():
114  *      - Removed OS/2 special case
115  *      - Made block_url() independant from sed() having been run
116  *    - Made trust_url independant from sed() having been run
117  *    - Made is_imageurl independant from sed() having been run.
118  *      It now checks User-Agent: and Accept: by itself.
119  *
120  *
121  *    Revision 1.39  2001/10/25 03:40:48  david__schmidt
122  *    Change in porting tactics: OS/2's EMX porting layer doesn't allow multiple
123  *    threads to call select() simultaneously.  So, it's time to do a real, live,
124  *    native OS/2 port.  See defines for __EMX__ (the porting layer) vs. __OS2__
125  *    (native). Both versions will work, but using __OS2__ offers multi-threading.
126  *
127  *    Revision 1.38  2001/10/23 21:32:33  jongfoster
128  *    Adding error-checking to selected functions
129  *
130  *    Revision 1.37  2001/10/22 15:33:56  david__schmidt
131  *    Special-cased OS/2 out of the Netscape-abort-on-404-in-js problem in
132  *    filters.c.  Added a FIXME in front of the offending code.  I'll gladly
133  *    put in a better/more robust fix for all parties if one is presented...
134  *    It seems that just returning 200 instead of 404 would pretty much fix
135  *    it for everyone, but I don't know all the history of the problem.
136  *
137  *    Revision 1.36  2001/10/10 16:44:16  oes
138  *    Added match_portlist function
139  *
140  *    Revision 1.35  2001/10/07 15:41:23  oes
141  *    Replaced 6 boolean members of csp with one bitmap (csp->flags)
142  *
143  *    New function remove_chunked_transfer_coding that strips chunked
144  *      transfer coding to plain and is called by pcrs_filter_response
145  *      and gif_deanimate_response if neccessary
146  *
147  *    Improved handling of zero-change re_filter runs
148  *
149  *    pcrs_filter_response and gif_deanimate_response now remove
150  *      chunked transfer codeing before processing the body.
151  *
152  *    Revision 1.34  2001/09/20 15:49:36  steudten
153  *
154  *    Fix BUG: Change int size to size_t size in pcrs_filter_response().
155  *    See cgi.c fill_template().
156  *
157  *    Revision 1.33  2001/09/16 17:05:14  jongfoster
158  *    Removing unused #include showarg.h
159  *
160  *    Revision 1.32  2001/09/16 13:21:27  jongfoster
161  *    Changes to use new list functions.
162  *
163  *    Revision 1.31  2001/09/16 11:38:02  jongfoster
164  *    Splitting fill_template() into 2 functions:
165  *    template_load() loads the file
166  *    template_fill() performs the PCRS regexps.
167  *    This is because the CGI edit interface has a "table row"
168  *    template which is used many times in the page - this
169  *    change means it's only loaded from disk once.
170  *
171  *    Revision 1.30  2001/09/16 11:00:10  jongfoster
172  *    New function alloc_http_response, for symmetry with free_http_response
173  *
174  *    Revision 1.29  2001/09/13 23:32:40  jongfoster
175  *    Moving image data to cgi.c rather than cgi.h
176  *    Fixing a GPF under Win32 (and any other OS that protects global
177  *    constants from being written to).
178  *
179  *    Revision 1.28  2001/09/10 10:18:51  oes
180  *    Silenced compiler warnings
181  *
182  *    Revision 1.27  2001/08/05 16:06:20  jongfoster
183  *    Modifiying "struct map" so that there are now separate header and
184  *    "map_entry" structures.  This means that functions which modify a
185  *    map no longer need to return a pointer to the modified map.
186  *    Also, it no longer reverses the order of the entries (which may be
187  *    important with some advanced template substitutions).
188  *
189  *    Revision 1.26  2001/07/30 22:08:36  jongfoster
190  *    Tidying up #defines:
191  *    - All feature #defines are now of the form FEATURE_xxx
192  *    - Permanently turned off WIN_GUI_EDIT
193  *    - Permanently turned on WEBDAV and SPLIT_PROXY_ARGS
194  *
195  *    Revision 1.25  2001/07/26 10:09:46  oes
196  *    Made browser detection a little less naive
197  *
198  *    Revision 1.24  2001/07/25 17:22:51  oes
199  *    Added workaround for Netscape bug that prevents display of page when loading a component fails.
200  *
201  *    Revision 1.23  2001/07/23 13:40:12  oes
202  *    Fixed bug that caused document body to be dropped when pcrs joblist was empty.
203  *
204  *    Revision 1.22  2001/07/18 12:29:34  oes
205  *    - Made gif_deanimate_response respect
206  *      csp->action->string[ACTION_STRING_DEANIMATE]
207  *    - Logging cosmetics
208  *
209  *    Revision 1.21  2001/07/13 13:59:53  oes
210  *     - Introduced gif_deanimate_response which shares the
211  *       generic content modification interface of pcrs_filter_response
212  *       and acts as a wrapper to deanimate.c:gif_deanimate()
213  *     - Renamed re_process_buffer to pcrs_filter_response
214  *     - pcrs_filter_response now returns NULL on failiure
215  *     - Removed all #ifdef PCRS
216  *
217  *    Revision 1.20  2001/07/01 17:01:04  oes
218  *    Added comments and missing return statement in is_untrusted_url()
219  *
220  *    Revision 1.19  2001/06/29 21:45:41  oes
221  *    Indentation, CRLF->LF, Tab-> Space
222  *
223  *    Revision 1.18  2001/06/29 13:27:38  oes
224  *    - Cleaned up, renamed and reorderd functions
225  *      and improved comments
226  *
227  *    - block_url:
228  *      - Ported to CGI platform. Now delivers
229  *        http_response or NULL
230  *      - Unified HTML and GIF generation (moved image detection
231  *        and GIF generation here from jcc.c:chat())
232  *      - Fixed HTTP status to:
233  *       -  403 (Forbidden) for the "blocked" HTML message
234  *       -  200 (OK) for GIF answers
235  *       -  302 (Redirect) for redirect to GIF
236  *
237  *    - trust_url:
238  *      - Ported to CGI platform. Now delivers
239  *        http_response or NULL
240  *      - Separated detection of untrusted URL into
241  *        (bool)is_untrusted_url
242  *      - Added enforcement of untrusted requests
243  *
244  *    - Moved redirect_url() from cgi.c to here
245  *      and ported it to the CGI platform
246  *
247  *    - Removed logentry from cancelled commit
248  *
249  *    Revision 1.17  2001/06/09 10:55:28  jongfoster
250  *    Changing BUFSIZ ==> BUFFER_SIZE
251  *
252  *    Revision 1.16  2001/06/07 23:10:26  jongfoster
253  *    Allowing unanchored domain patterns to back off and retry
254  *    if they partially match.  Optimized right-anchored patterns.
255  *    Moving ACL and forward files into config file.
256  *    Replacing struct gateway with struct forward_spec
257  *
258  *    Revision 1.15  2001/06/03 19:12:00  oes
259  *    extracted-CGI relevant stuff
260  *
261  *    Revision 1.14  2001/06/01 10:30:55  oes
262  *    Added optional left-anchoring to domaincmp
263  *
264  *    Revision 1.13  2001/05/31 21:21:30  jongfoster
265  *    Permissionsfile / actions file changes:
266  *    - Changed "permission" to "action" throughout
267  *    - changes to file format to allow string parameters
268  *    - Moved helper functions to actions.c
269  *
270  *    Revision 1.12  2001/05/31 17:35:20  oes
271  *
272  *     - Enhanced domain part globbing with infix and prefix asterisk
273  *       matching and optional unanchored operation
274  *
275  *    Revision 1.11  2001/05/29 11:53:23  oes
276  *    "See why" link added to "blocked" page
277  *
278  *    Revision 1.10  2001/05/29 09:50:24  jongfoster
279  *    Unified blocklist/imagelist/permissionslist.
280  *    File format is still under discussion, but the internal changes
281  *    are (mostly) done.
282  *
283  *    Also modified interceptor behaviour:
284  *    - We now intercept all URLs beginning with one of the following
285  *      prefixes (and *only* these prefixes):
286  *        * http://i.j.b/
287  *        * http://ijbswa.sf.net/config/
288  *        * http://ijbswa.sourceforge.net/config/
289  *    - New interceptors "home page" - go to http://i.j.b/ to see it.
290  *    - Internal changes so that intercepted and fast redirect pages
291  *      are not replaced with an image.
292  *    - Interceptors now have the option to send a binary page direct
293  *      to the client. (i.e. ijb-send-banner uses this)
294  *    - Implemented show-url-info interceptor.  (Which is why I needed
295  *      the above interceptors changes - a typical URL is
296  *      "http://i.j.b/show-url-info?url=www.somesite.com/banner.gif".
297  *      The previous mechanism would not have intercepted that, and
298  *      if it had been intercepted then it then it would have replaced
299  *      it with an image.)
300  *
301  *    Revision 1.9  2001/05/27 22:17:04  oes
302  *
303  *    - re_process_buffer no longer writes the modified buffer
304  *      to the client, which was very ugly. It now returns the
305  *      buffer, which it is then written by chat.
306  *
307  *    - content_length now adjusts the Content-Length: header
308  *      for modified documents rather than crunch()ing it.
309  *      (Length info in csp->content_length, which is 0 for
310  *      unmodified documents)
311  *
312  *    - For this to work, sed() is called twice when filtering.
313  *
314  *    Revision 1.8  2001/05/26 17:13:28  jongfoster
315  *    Filled in a function comment.
316  *
317  *    Revision 1.7  2001/05/26 15:26:15  jongfoster
318  *    ACL feature now provides more security by immediately dropping
319  *    connections from untrusted hosts.
320  *
321  *    Revision 1.6  2001/05/26 00:28:36  jongfoster
322  *    Automatic reloading of config file.
323  *    Removed obsolete SIGHUP support (Unix) and Reload menu option (Win32).
324  *    Most of the global variables have been moved to a new
325  *    struct configuration_spec, accessed through csp->config->globalname
326  *    Most of the globals remaining are used by the Win32 GUI.
327  *
328  *    Revision 1.5  2001/05/25 22:34:30  jongfoster
329  *    Hard tabs->Spaces
330  *
331  *    Revision 1.4  2001/05/22 18:46:04  oes
332  *
333  *    - Enabled filtering banners by size rather than URL
334  *      by adding patterns that replace all standard banner
335  *      sizes with the "Junkbuster" gif to the re_filterfile
336  *
337  *    - Enabled filtering WebBugs by providing a pattern
338  *      which kills all 1x1 images
339  *
340  *    - Added support for PCRE_UNGREEDY behaviour to pcrs,
341  *      which is selected by the (nonstandard and therefore
342  *      capital) letter 'U' in the option string.
343  *      It causes the quantifiers to be ungreedy by default.
344  *      Appending a ? turns back to greedy (!).
345  *
346  *    - Added a new interceptor ijb-send-banner, which
347  *      sends back the "Junkbuster" gif. Without imagelist or
348  *      MSIE detection support, or if tinygif = 1, or the
349  *      URL isn't recognized as an imageurl, a lame HTML
350  *      explanation is sent instead.
351  *
352  *    - Added new feature, which permits blocking remote
353  *      script redirects and firing back a local redirect
354  *      to the browser.
355  *      The feature is conditionally compiled, i.e. it
356  *      can be disabled with --disable-fast-redirects,
357  *      plus it must be activated by a "fast-redirects"
358  *      line in the config file, has its own log level
359  *      and of course wants to be displayed by show-proxy-args
360  *      Note: Boy, all the #ifdefs in 1001 locations and
361  *      all the fumbling with configure.in and acconfig.h
362  *      were *way* more work than the feature itself :-(
363  *
364  *    - Because a generic redirect template was needed for
365  *      this, tinygif = 3 now uses the same.
366  *
367  *    - Moved GIFs, and other static HTTP response templates
368  *      to project.h
369  *
370  *    - Some minor fixes
371  *
372  *    - Removed some >400 CRs again (Jon, you really worked
373  *      a lot! ;-)
374  *
375  *    Revision 1.3  2001/05/20 16:44:47  jongfoster
376  *    Removing last hardcoded Junkbusters.com URLs.
377  *
378  *    Revision 1.2  2001/05/20 01:21:20  jongfoster
379  *    Version 2.9.4 checkin.
380  *    - Merged popupfile and cookiefile, and added control over PCRS
381  *      filtering, in new "permissionsfile".
382  *    - Implemented LOG_LEVEL_FATAL, so that if there is a configuration
383  *      file error you now get a message box (in the Win32 GUI) rather
384  *      than the program exiting with no explanation.
385  *    - Made killpopup use the PCRS MIME-type checking and HTTP-header
386  *      skipping.
387  *    - Removed tabs from "config"
388  *    - Moved duplicated url parsing code in "loaders.c" to a new funcition.
389  *    - Bumped up version number.
390  *
391  *    Revision 1.1.1.1  2001/05/15 13:58:52  oes
392  *    Initial import of version 2.9.3 source tree
393  *
394  *
395  *********************************************************************/
396 \f
397
398 #include "config.h"
399
400 #include <stdio.h>
401 #include <sys/types.h>
402 #include <stdlib.h>
403 #include <ctype.h>
404 #include <string.h>
405 #include <assert.h>
406
407 #ifndef _WIN32
408 #ifndef __OS2__
409 #include <unistd.h>
410 #endif /* ndef __OS2__ */
411 #include <netinet/in.h>
412 #else
413 #include <winsock2.h>
414 #endif /* ndef _WIN32 */
415
416 #ifdef __OS2__
417 #include <utils.h>
418 #endif /* def __OS2__ */
419
420 #include "project.h"
421 #include "filters.h"
422 #include "encode.h"
423 #include "parsers.h"
424 #include "ssplit.h"
425 #include "errlog.h"
426 #include "jbsockets.h"
427 #include "miscutil.h"
428 #include "actions.h"
429 #include "cgi.h"
430 #include "list.h"
431 #include "deanimate.h"
432 #include "urlmatch.h"
433
434 #ifdef _WIN32
435 #include "win32.h"
436 #endif
437
438 const char filters_h_rcs[] = FILTERS_H_VERSION;
439
440 /* Fix a problem with Solaris.  There should be no effect on other
441  * platforms.
442  * Solaris's isspace() is a macro which uses it's argument directly
443  * as an array index.  Therefore we need to make sure that high-bit
444  * characters generate +ve values, and ideally we also want to make
445  * the argument match the declared parameter type of "int".
446  */
447 #define ijb_isdigit(__X) isdigit((int)(unsigned char)(__X))
448
449
450 #ifdef FEATURE_ACL
451 /*********************************************************************
452  *
453  * Function    :  block_acl
454  *
455  * Description :  Block this request?
456  *                Decide yes or no based on ACL file.
457  *
458  * Parameters  :
459  *          1  :  dst = The proxy or gateway address this is going to.
460  *                      Or NULL to check all possible targets.
461  *          2  :  csp = Current client state (buffers, headers, etc...)
462  *                      Also includes the client IP address.
463  *
464  * Returns     : 0 = FALSE (don't block) and 1 = TRUE (do block)
465  *
466  *********************************************************************/
467 int block_acl(struct access_control_addr *dst, struct client_state *csp)
468 {
469    struct access_control_list *acl = csp->config->acl;
470
471    /* if not using an access control list, then permit the connection */
472    if (acl == NULL)
473    {
474       return(0);
475    }
476
477    /* search the list */
478    while (acl != NULL)
479    {
480       if ((csp->ip_addr_long & acl->src->mask) == acl->src->addr)
481       {
482          if (dst == NULL)
483          {
484             /* Just want to check if they have any access */
485             if (acl->action == ACL_PERMIT)
486             {
487                return(0);
488             }
489          }
490          else if ( ((dst->addr & acl->dst->mask) == acl->dst->addr)
491            && ((dst->port == acl->dst->port) || (acl->dst->port == 0)))
492          {
493             if (acl->action == ACL_PERMIT)
494             {
495                return(0);
496             }
497             else
498             {
499                return(1);
500             }
501          }
502       }
503       acl = acl->next;
504    }
505
506    return(1);
507
508 }
509
510
511 /*********************************************************************
512  *
513  * Function    :  acl_addr
514  *
515  * Description :  Called from `load_config' to parse an ACL address.
516  *
517  * Parameters  :
518  *          1  :  aspec = String specifying ACL address.
519  *          2  :  aca = struct access_control_addr to fill in.
520  *
521  * Returns     :  0 => Ok, everything else is an error.
522  *
523  *********************************************************************/
524 int acl_addr(char *aspec, struct access_control_addr *aca)
525 {
526    int i, masklength, port;
527    char *p;
528
529    masklength = 32;
530    port       =  0;
531
532    if ((p = strchr(aspec, '/')) != NULL)
533    {
534       *p++ = '\0';
535
536       if (ijb_isdigit(*p) == 0)
537       {
538          return(-1);
539       }
540       masklength = atoi(p);
541    }
542
543    if ((masklength < 0) || (masklength > 32))
544    {
545       return(-1);
546    }
547
548    if ((p = strchr(aspec, ':')) != NULL)
549    {
550       *p++ = '\0';
551
552       if (ijb_isdigit(*p) == 0)
553       {
554          return(-1);
555       }
556       port = atoi(p);
557    }
558
559    aca->port = port;
560
561    aca->addr = ntohl(resolve_hostname_to_ip(aspec));
562
563    if (aca->addr == INADDR_NONE)
564    {
565       return(-1);
566    }
567
568    /* build the netmask */
569    aca->mask = 0;
570    for (i=1; i <= masklength ; i++)
571    {
572       aca->mask |= (1 << (32 - i));
573    }
574
575    /* now mask off the host portion of the ip address
576     * (i.e. save on the network portion of the address).
577     */
578    aca->addr = aca->addr & aca->mask;
579
580    return(0);
581
582 }
583 #endif /* def FEATURE_ACL */
584
585
586 /*********************************************************************
587  *
588  * Function    :  match_portlist
589  *
590  * Description :  Check if a given number is covered by a comma
591  *                separated list of numbers and ranges (a,b-c,d,..)
592  *
593  * Parameters  :
594  *          1  :  portlist = String with list
595  *          2  :  port = port to check
596  *
597  * Returns     :  0 => no match
598  *                1 => match
599  *
600  *********************************************************************/
601 int match_portlist(const char *portlist, int port)
602 {
603    char *min, *max, *next, *portlist_copy;
604
605    min = next = portlist_copy = strdup(portlist);
606
607    /*
608     * Zero-terminate first item and remember offset for next
609     */
610    if (NULL != (next = strchr(portlist_copy, (int) ',')))
611    {
612       *next++ = '\0';
613    }
614
615    /*
616     * Loop through all items, checking for match
617     */
618    while(min)
619    {
620       if (NULL == (max = strchr(min, (int) '-')))
621       {
622          /*
623           * No dash, check for equality
624           */
625          if (port == atoi(min))
626          {
627             free(portlist_copy);
628             return(1);
629          }
630       }
631       else
632       {
633          /*
634           * This is a range, so check if between min and max,
635           * or, if max was omitted, between min and 65K
636           */
637          *max++ = '\0';
638          if(port >= atoi(min) && port <= (atoi(max) ? atoi(max) : 65535))
639          {
640             free(portlist_copy);
641             return(1);
642          }
643
644       }
645
646       /*
647        * Jump to next item
648        */
649       min = next;
650
651       /*
652        * Zero-terminate next item and remember offset for n+1
653        */
654       if ((NULL != next) && (NULL != (next = strchr(next, (int) ','))))
655       {
656          *next++ = '\0';
657       }
658    }
659
660    free(portlist_copy);
661    return 0;
662
663 }
664
665
666 /*********************************************************************
667  *
668  * Function    :  block_url
669  *
670  * Description :  Called from `chat'.  Check to see if we need to block this.
671  *
672  * Parameters  :
673  *          1  :  csp = Current client state (buffers, headers, etc...)
674  *
675  * Returns     :  NULL => unblocked, else HTTP block response
676  *
677  *********************************************************************/
678 struct http_response *block_url(struct client_state *csp)
679 {
680 #ifdef FEATURE_IMAGE_BLOCKING
681    char *p;
682 #endif /* def FEATURE_IMAGE_BLOCKING */
683    struct http_response *rsp;
684
685    /*
686     * If it's not blocked, don't block it ;-)
687     */
688    if ((csp->action->flags & ACTION_BLOCK) == 0)
689    {
690       return NULL;
691    }
692
693    /*
694     * Else, prepare a response
695     */
696    if (NULL == (rsp = alloc_http_response()))
697    {
698       return cgi_error_memory();
699    }
700
701    /*
702     * If it's an image-url, send back an image or redirect
703     * as specified by the relevant +image action
704     */
705 #ifdef FEATURE_IMAGE_BLOCKING
706    if (((csp->action->flags & ACTION_IMAGE_BLOCKER) != 0)
707         && is_imageurl(csp))
708    {
709       /* determine HOW images should be blocked */
710       p = csp->action->string[ACTION_STRING_IMAGE_BLOCKER];
711
712 #if 1 /* Two alternative strategies, use this one for now: */
713
714       /* and handle accordingly: */
715       if ((p == NULL) || (0 == strcmpic(p, "pattern")))
716       {
717          rsp->body = bindup(image_pattern_data, image_pattern_length);
718          if (rsp->body == NULL)
719          {
720             free_http_response(rsp);
721             return cgi_error_memory();
722          }
723          rsp->content_length = image_pattern_length;
724
725          if (enlist_unique_header(rsp->headers, "Content-Type", BUILTIN_IMAGE_MIMETYPE))
726          {
727             free_http_response(rsp);
728             return cgi_error_memory();
729          }
730       }
731
732       else if (0 == strcmpic(p, "blank"))
733       {
734          rsp->body = bindup(image_blank_data, image_blank_length);
735          if (rsp->body == NULL)
736          {
737             free_http_response(rsp);
738             return cgi_error_memory();
739          }
740          rsp->content_length = image_blank_length;
741
742          if (enlist_unique_header(rsp->headers, "Content-Type", BUILTIN_IMAGE_MIMETYPE))
743          {
744             free_http_response(rsp);
745             return cgi_error_memory();
746          }
747       }
748
749       else
750       {
751          rsp->status = strdup("302 Local Redirect from Privoxy");
752          if (rsp->status == NULL)
753          {
754             free_http_response(rsp);
755             return cgi_error_memory();
756          }
757
758          if (enlist_unique_header(rsp->headers, "Location", p))
759          {
760             free_http_response(rsp);
761             return cgi_error_memory();
762          }
763       }
764
765 #else /* Following code is disabled for now */
766
767       /* and handle accordingly: */
768       if ((p == NULL) || (0 == strcmpic(p, "pattern")))
769       {
770          p = CGI_PREFIX "send-banner?type=pattern";
771       }
772       else if (0 == strcmpic(p, "blank"))
773       {
774          p = CGI_PREFIX "send-banner?type=blank";
775       }
776       rsp->status = strdup("302 Local Redirect from Privoxy");
777       if (rsp->status == NULL)
778       {
779          free_http_response(rsp);
780          return cgi_error_memory();
781       }
782
783       if (enlist_unique_header(rsp->headers, "Location", p))
784       {
785          free_http_response(rsp);
786          return cgi_error_memory();
787       }
788 #endif /* Preceeding code is disabled for now */
789    }
790    else
791 #endif /* def FEATURE_IMAGE_BLOCKING */
792
793    /*
794     * Else, generate an HTML "blocked" message:
795     */
796    {
797       jb_err err;
798       struct map * exports;
799
800       /*
801        * Workaround for stupid Netscape bug which prevents
802        * pages from being displayed if loading a referenced
803        * JavaScript or style sheet fails. So make it appear
804        * as if it succeeded.
805        */
806       if ( NULL != (p = get_header_value(csp->headers, "User-Agent:"))
807            && !strncmpic(p, "mozilla", 7) /* Catch Netscape but */
808            && !strstr(p, "Gecko")         /* save Mozilla, */
809            && !strstr(p, "compatible")    /* MSIE */
810            && !strstr(p, "Opera"))        /* and Opera. */
811       {
812          rsp->status = strdup("200 Request for blocked URL");
813       }
814       else
815       {
816          rsp->status = strdup("404 Request for blocked URL");
817       }
818
819       if (rsp->status == NULL)
820       {
821          free_http_response(rsp);
822          return cgi_error_memory();
823       }
824
825       exports = default_exports(csp, NULL);
826       if (exports == NULL)
827       {
828          free_http_response(rsp);
829          return cgi_error_memory();
830       }
831
832 #ifdef FEATURE_FORCE_LOAD
833       err = map(exports, "force-prefix", 1, FORCE_PREFIX, 1);
834       if (csp->http->ssl != 0)
835 #endif /* ndef FEATURE_FORCE_LOAD */
836       {
837          err = map_block_killer(exports, "force-support");
838       }
839
840       if (!err) err = map(exports, "protocol", 1, csp->http->ssl ? "https://" : "http://", 1);
841       if (!err) err = map(exports, "hostport", 1, html_encode(csp->http->hostport), 0);
842       if (!err) err = map(exports, "path", 1, html_encode(csp->http->path), 0);
843
844       if (err)
845       {
846          free_map(exports);
847          free_http_response(rsp);
848          return cgi_error_memory();
849       }
850
851       err = template_fill_for_cgi(csp, "blocked", exports, rsp);
852       if (err)
853       {
854          free_http_response(rsp);
855          return cgi_error_memory();
856       }
857    }
858
859    return finish_http_response(rsp);
860
861 }
862
863
864 #ifdef FEATURE_TRUST
865 /*********************************************************************
866  *
867  * Function    :  trust_url FIXME: I should be called distrust_url
868  *
869  * Description :  Calls is_untrusted_url to determine if the URL is trusted
870  *                and if not, returns a HTTP 304 response with a reject message.
871  *
872  * Parameters  :
873  *          1  :  csp = Current client state (buffers, headers, etc...)
874  *
875  * Returns     :  NULL => trusted, else http_response.
876  *
877  *********************************************************************/
878 struct http_response *trust_url(struct client_state *csp)
879 {
880    struct http_response *rsp;
881    struct map * exports;
882    char buf[BUFFER_SIZE];
883    char *p;
884    struct url_spec **tl;
885    struct url_spec *t;
886    jb_err err;
887
888    /*
889     * Don't bother to work on trusted URLs
890     */
891    if (!is_untrusted_url(csp))
892    {
893       return NULL;
894    }
895
896    /*
897     * Else, prepare a response:
898     */
899    if (NULL == (rsp = alloc_http_response()))
900    {
901       return cgi_error_memory();
902    }
903
904    exports = default_exports(csp, NULL);
905    if (exports == NULL)
906    {
907       free_http_response(rsp);
908       return cgi_error_memory();
909    }
910
911    /*
912     * Export the protocol, host, port, and referrer information
913     */
914    err = map(exports, "hostport", 1, csp->http->hostport, 1);
915    if (!err) err = map(exports, "protocol", 1, csp->http->ssl ? "https://" : "http://", 1); 
916    if (!err) err = map(exports, "path", 1, csp->http->path, 1);
917
918    if (NULL != (p = get_header_value(csp->headers, "Referer:")))
919    {
920       if (!err) err = map(exports, "referrer", 1, html_encode(p), 0);
921    }
922    else
923    {
924       if (!err) err = map(exports, "referrer", 1, "unknown", 1);
925    }
926
927    if (err)
928    {
929       free_map(exports);
930       free_http_response(rsp);
931       return cgi_error_memory();
932    }
933
934    /*
935     * Export the trust list
936     */
937    p = strdup("");
938    for (tl = csp->config->trust_list; (t = *tl) != NULL ; tl++)
939    {
940       sprintf(buf, "<li>%s</li>\n", t->spec);
941       string_append(&p, buf);
942    }
943    err = map(exports, "trusted-referrers", 1, p, 0);
944
945    if (err)
946    {
947       free_map(exports);
948       free_http_response(rsp);
949       return cgi_error_memory();
950    }
951
952    /*
953     * Export the trust info, if available
954     */
955    if (csp->config->trust_info->first)
956    {
957       struct list_entry *l;
958
959       p = strdup("");
960       for (l = csp->config->trust_info->first; l ; l = l->next)
961       {
962          sprintf(buf, "<li> <a href=\"%s\">%s</a><br>\n",l->str, l->str);
963          string_append(&p, buf);
964       }
965       err = map(exports, "trust-info", 1, p, 0);
966    }
967    else
968    {
969       err = map_block_killer(exports, "have-trust-info");
970    }
971
972    if (err)
973    {
974       free_map(exports);
975       free_http_response(rsp);
976       return cgi_error_memory();
977    }
978
979    /*
980     * Export the force prefix or the force conditional block killer
981     */
982 #ifdef FEATURE_FORCE_LOAD
983    err = map(exports, "force-prefix", 1, FORCE_PREFIX, 1);
984 #else /* ifndef FEATURE_FORCE_LOAD */
985    err = map_block_killer(exports, "force-support");
986 #endif /* ndef FEATURE_FORCE_LOAD */
987
988    if (err)
989    {
990       free_map(exports);
991       free_http_response(rsp);
992       return cgi_error_memory();
993    }
994
995    /*
996     * Build the response
997     */
998    err = template_fill_for_cgi(csp, "untrusted", exports, rsp);
999    if (err)
1000    {
1001       free_http_response(rsp);
1002       return cgi_error_memory();
1003    }
1004
1005    return finish_http_response(rsp);
1006 }
1007 #endif /* def FEATURE_TRUST */
1008
1009
1010 #ifdef FEATURE_FAST_REDIRECTS
1011 /*********************************************************************
1012  *
1013  * Function    :  redirect_url
1014  *
1015  * Description :  Checks for redirection URLs and returns a HTTP redirect
1016  *                to the destination URL, if necessary
1017  *
1018  * Parameters  :
1019  *          1  :  csp = Current client state (buffers, headers, etc...)
1020  *
1021  * Returns     :  NULL if URL was clean, HTTP redirect otherwise.
1022  *
1023  *********************************************************************/
1024 struct http_response *redirect_url(struct client_state *csp)
1025 {
1026    char *p, *q;
1027    struct http_response *rsp;
1028
1029    p = q = csp->http->path;
1030    log_error(LOG_LEVEL_REDIRECTS, "checking path for redirects: %s", p);
1031
1032    /*
1033     * find the last URL encoded in the request
1034     */
1035    while ((p = strstr(p, "http://")) != NULL)
1036    {
1037       q = p++;
1038    }
1039
1040    /*
1041     * if there was any, generate and return a HTTP redirect
1042     */
1043    if (q != csp->http->path)
1044    {
1045       log_error(LOG_LEVEL_REDIRECTS, "redirecting to: %s", q);
1046
1047       if (NULL == (rsp = alloc_http_response()))
1048       {
1049          return cgi_error_memory();
1050       }
1051
1052       if ( enlist_unique_header(rsp->headers, "Location", q)
1053         || (NULL == (rsp->status = strdup("302 Local Redirect from Privoxy"))) )
1054       {
1055          free_http_response(rsp);
1056          return cgi_error_memory();
1057       }
1058
1059       return finish_http_response(rsp);
1060    }
1061    else
1062    {
1063       return NULL;
1064    }
1065
1066 }
1067 #endif /* def FEATURE_FAST_REDIRECTS */
1068
1069
1070 #ifdef FEATURE_IMAGE_BLOCKING
1071 /*********************************************************************
1072  *
1073  * Function    :  is_imageurl
1074  *
1075  * Description :  Given a URL, decide whether it is an image or not,
1076  *                using either the info from a previous +image action
1077  *                or, #ifdef FEATURE_IMAGE_DETECT_MSIE, the info from
1078  *                the browser's accept header.
1079  *
1080  * Parameters  :
1081  *          1  :  csp = Current client state (buffers, headers, etc...)
1082  *
1083  * Returns     :  True (nonzero) if URL is an image, false (0)
1084  *                otherwise
1085  *
1086  *********************************************************************/
1087 int is_imageurl(struct client_state *csp)
1088 {
1089 #ifdef FEATURE_IMAGE_DETECT_MSIE
1090    char *tmp;
1091
1092    tmp = get_header_value(csp->headers, "User-Agent:");
1093    if (tmp && strstr(tmp, "MSIE"))
1094    {
1095       tmp = get_header_value(csp->headers, "Accept:");
1096       if (tmp && strstr(tmp, "image/gif"))
1097       {
1098          /* Client will accept HTML.  If this seems counterintuitive,
1099           * blame Microsoft.
1100           */
1101          return(0);
1102       }
1103       else
1104       {
1105          return(1);
1106       }
1107    }
1108 #endif /* def FEATURE_IMAGE_DETECT_MSIE */
1109
1110    return ((csp->action->flags & ACTION_IMAGE) != 0);
1111
1112 }
1113 #endif /* def FEATURE_IMAGE_BLOCKING */
1114
1115
1116 #ifdef FEATURE_TRUST
1117 /*********************************************************************
1118  *
1119  * Function    :  is_untrusted_url
1120  *
1121  * Description :  Should we "distrust" this URL (and block it)?
1122  *
1123  *                Yes if it matches a line in the trustfile, or if the
1124  *                    referrer matches a line starting with "+" in the
1125  *                    trustfile.
1126  *                No  otherwise.
1127  *
1128  * Parameters  :
1129  *          1  :  csp = Current client state (buffers, headers, etc...)
1130  *
1131  * Returns     :  0 => trusted, 1 => untrusted
1132  *
1133  *********************************************************************/
1134 int is_untrusted_url(struct client_state *csp)
1135 {
1136    struct file_list *fl;
1137    struct block_spec *b;
1138    struct url_spec **trusted_url;
1139    struct http_request rhttp[1];
1140    const char * referer;
1141    jb_err err;
1142
1143    /*
1144     * If we don't have a trustlist, we trust everybody
1145     */
1146    if (((fl = csp->tlist) == NULL) || ((b  = fl->f) == NULL))
1147    {
1148       return 0;
1149    }
1150
1151    memset(rhttp, '\0', sizeof(*rhttp));
1152
1153    /*
1154     * Do we trust the request URL itself?
1155     */
1156    for (b = b->next; b ; b = b->next)
1157    {
1158       if (url_match(b->url, csp->http))
1159       {
1160          return b->reject;
1161       }
1162    }
1163
1164    if (NULL == (referer = get_header_value(csp->headers, "Referer:")))
1165    {
1166       /* no referrer was supplied */
1167       return 1;
1168    }
1169
1170
1171    /*
1172     * If not, do we maybe trust its referrer?
1173     */
1174    err = parse_http_url(referer, rhttp, csp);
1175    if (err)
1176    {
1177       return 1;
1178    }
1179
1180    for (trusted_url = csp->config->trust_list; *trusted_url != NULL; trusted_url++)
1181    {
1182       if (url_match(*trusted_url, rhttp))
1183       {
1184          /* if the URL's referrer is from a trusted referrer, then
1185           * add the target spec to the trustfile as an unblocked
1186           * domain and return NULL (which means it's OK).
1187           */
1188
1189          FILE *fp;
1190
1191          if (NULL != (fp = fopen(csp->config->trustfile, "a")))
1192          {
1193             char * path;
1194             char * path_end;
1195             char * new_entry = strdup("~");
1196
1197             string_append(&new_entry, csp->http->hostport);
1198
1199             path = csp->http->path;
1200             if ( (path[0] == '/')
1201               && (path[1] == '~')
1202               && ((path_end = strchr(path + 2, '/')) != NULL))
1203             {
1204                /* since this path points into a user's home space
1205                 * be sure to include this spec in the trustfile.
1206                 */
1207                int path_len = path_end - path; /* save offset */
1208                path = strdup(path); /* Copy string */
1209                if (path != NULL)
1210                {
1211                   path_end = path + path_len; /* regenerate ptr to new buffer */
1212                   *(path_end + 1) = '\0'; /* Truncate path after '/' */
1213                }
1214                string_join(&new_entry, path);
1215             }
1216
1217             if (new_entry != NULL)
1218             {
1219                fprintf(fp, "%s\n", new_entry);
1220                free(new_entry);
1221             }
1222             else
1223             {
1224                /* FIXME: No way to handle out-of memory, so mostly ignoring it */
1225                log_error(LOG_LEVEL_ERROR, "Out of memory adding pattern to trust file");
1226             }
1227
1228             fclose(fp);
1229          }
1230          return 0;
1231       }
1232    }
1233    return 1;
1234 }
1235 #endif /* def FEATURE_TRUST */
1236
1237
1238 /*********************************************************************
1239  *
1240  * Function    :  pcrs_filter_response
1241  *
1242  * Description :  Ecexute all text substitutions from all applying
1243  *                +filter actions on the text buffer that's been accumulated
1244  *                in csp->iob->buf. If this changes the contents, set
1245  *                csp->content_length to the modified size and raise the
1246  *                CSP_FLAG_MODIFIED flag.
1247  *
1248  * Parameters  :
1249  *          1  :  csp = Current client state (buffers, headers, etc...)
1250  *
1251  * Returns     :  a pointer to the (newly allocated) modified buffer.
1252  *                or NULL if there were no hits or something went wrong
1253  *
1254  *********************************************************************/
1255 char *pcrs_filter_response(struct client_state *csp)
1256 {
1257    int hits=0;
1258    size_t size;
1259
1260    char *old = csp->iob->cur, *new = NULL;
1261    pcrs_job *job;
1262
1263    struct file_list *fl;
1264    struct re_filterfile_spec *b;
1265    struct list_entry *filtername;
1266
1267    /* 
1268     * Sanity first
1269     */
1270    if (csp->iob->cur >= csp->iob->eod)
1271    {
1272       return(NULL);
1273    }
1274    size = csp->iob->eod - csp->iob->cur;
1275
1276    if ( ( NULL == (fl = csp->rlist) ) || ( NULL == fl->f) )
1277    {
1278       log_error(LOG_LEVEL_ERROR, "Unable to get current state of regexp filtering.");
1279       return(NULL);
1280    }
1281
1282    /*
1283     * If the body has a "chunked" transfer-encoding,
1284     * get rid of it first, adjusting size and iob->eod
1285     */
1286    if (csp->flags & CSP_FLAG_CHUNKED)
1287    {
1288       log_error(LOG_LEVEL_RE_FILTER, "Need to de-chunk first");
1289       if (0 == (size = remove_chunked_transfer_coding(csp->iob->cur, size)))
1290       {
1291          return(NULL);
1292       }
1293       csp->iob->eod = csp->iob->cur + size;
1294       csp->flags |= CSP_FLAG_MODIFIED;
1295    }
1296
1297    /*
1298     * For all applying +filter actions, look if a filter by that
1299     * name exists and if yes, execute it's pcrs_joblist on the
1300     * buffer.
1301     */
1302    for (b = fl->f; b; b = b->next)
1303    {
1304       for (filtername = csp->action->multi[ACTION_MULTI_FILTER]->first;
1305            filtername ; filtername = filtername->next)
1306       {
1307          if (strcmp(b->name, filtername->str) == 0)
1308          {
1309             int current_hits = 0;
1310
1311             if ( NULL == b->joblist )
1312             {
1313                log_error(LOG_LEVEL_RE_FILTER, "Filter %s has empty joblist. Nothing to do.", b->name);
1314                return(NULL);
1315             }
1316
1317             log_error(LOG_LEVEL_RE_FILTER, "re_filtering %s%s (size %d) with filter %s...",
1318                       csp->http->hostport, csp->http->path, size, b->name);
1319
1320             /* Apply all jobs from the joblist */
1321             for (job = b->joblist; NULL != job; job = job->next)
1322             {
1323                current_hits += pcrs_execute(job, old, size, &new, &size);
1324                if (old != csp->iob->cur) free(old);
1325                old=new;
1326             }
1327
1328             log_error(LOG_LEVEL_RE_FILTER, " ...produced %d hits (new size %d).", current_hits, size);
1329             hits += current_hits;
1330          }
1331       }
1332    }
1333
1334    /*
1335     * If there were no hits, destroy our copy and let
1336     * chat() use the original in csp->iob
1337     */
1338    if (!hits)
1339    {
1340       free(new);
1341       return(NULL);
1342    }
1343
1344    csp->flags |= CSP_FLAG_MODIFIED;
1345    csp->content_length = size;
1346    IOB_RESET(csp);
1347
1348    return(new);
1349
1350 }
1351
1352
1353 /*********************************************************************
1354  *
1355  * Function    :  gif_deanimate_response
1356  *
1357  * Description :  Deanimate the GIF image that has been accumulated in
1358  *                csp->iob->buf, set csp->content_length to the modified
1359  *                size and raise the CSP_FLAG_MODIFIED flag.
1360  *
1361  * Parameters  :
1362  *          1  :  csp = Current client state (buffers, headers, etc...)
1363  *
1364  * Returns     :  a pointer to the (newly allocated) modified buffer.
1365  *                or NULL in case something went wrong.
1366  *
1367  *********************************************************************/
1368 char *gif_deanimate_response(struct client_state *csp)
1369 {
1370    struct binbuffer *in, *out;
1371    char *p;
1372    size_t size = csp->iob->eod - csp->iob->cur;
1373
1374    /*
1375     * If the body has a "chunked" transfer-encoding,
1376     * get rid of it first, adjusting size and iob->eod
1377     */
1378    if (csp->flags & CSP_FLAG_CHUNKED)
1379    {
1380       log_error(LOG_LEVEL_DEANIMATE, "Need to de-chunk first");
1381       if (0 == (size = remove_chunked_transfer_coding(csp->iob->cur, size)))
1382       {
1383          return(NULL);
1384       }
1385       csp->iob->eod = csp->iob->cur + size;
1386       csp->flags |= CSP_FLAG_MODIFIED;
1387    }
1388
1389    if (  (NULL == (in =  (struct binbuffer *)zalloc(sizeof *in )))
1390       || (NULL == (out = (struct binbuffer *)zalloc(sizeof *out))) )
1391    {
1392       log_error(LOG_LEVEL_DEANIMATE, "failed! (no mem)");
1393       return NULL;
1394    }
1395
1396    in->buffer = csp->iob->cur;
1397    in->size = size;
1398
1399    if (gif_deanimate(in, out, strncmp("last", csp->action->string[ACTION_STRING_DEANIMATE], 4)))
1400    {
1401       log_error(LOG_LEVEL_DEANIMATE, "failed! (gif parsing)");
1402       free(in);
1403       buf_free(out);
1404       return(NULL);
1405    }
1406    else
1407    {
1408       if ((int)size == out->offset)
1409       {
1410          log_error(LOG_LEVEL_DEANIMATE, "GIF not changed.");
1411       }
1412       else
1413       {
1414          log_error(LOG_LEVEL_DEANIMATE, "Success! GIF shrunk from %d bytes to %d.", size, out->offset);
1415       }
1416       csp->content_length = out->offset;
1417       csp->flags |= CSP_FLAG_MODIFIED;
1418       p = out->buffer;
1419       free(in);
1420       free(out);
1421       return(p);
1422    }
1423
1424 }
1425
1426
1427 /*********************************************************************
1428  *
1429  * Function    :  remove_chunked_transfer_coding
1430  *
1431  * Description :  In-situ remove the "chunked" transfer coding as defined
1432  *                in rfc2616 from a buffer.
1433  *
1434  * Parameters  :
1435  *          1  :  buffer = Pointer to the text buffer
1436  *          2  :  size = Number of bytes to be processed
1437  *
1438  * Returns     :  The new size, i.e. the number of bytes from buffer which
1439  *                are occupied by the stripped body, or 0 in case something
1440  *                went wrong
1441  *
1442  *********************************************************************/
1443 int remove_chunked_transfer_coding(char *buffer, const size_t size)
1444 {
1445    size_t newsize = 0;
1446    unsigned int chunksize = 0;
1447    char *from_p, *to_p;
1448
1449    assert(buffer);
1450    from_p = to_p = buffer;
1451
1452    if (sscanf(buffer, "%x", &chunksize) != 1)
1453    {
1454       log_error(LOG_LEVEL_ERROR, "Invalid first chunksize while stripping \"chunked\" transfer coding");
1455       return(0);
1456    }
1457
1458    while (chunksize > 0)
1459    {
1460       if (NULL == (from_p = strstr(from_p, "\r\n")))
1461       {
1462          log_error(LOG_LEVEL_ERROR, "Parse error while stripping \"chunked\" transfer coding");
1463          return(0);
1464       }
1465       newsize += chunksize;
1466       from_p += 2;
1467
1468       memmove(to_p, from_p, (size_t) chunksize);
1469       to_p = buffer + newsize;
1470       from_p += chunksize + 2;
1471
1472       if (sscanf(from_p, "%x", &chunksize) != 1)
1473       {
1474          log_error(LOG_LEVEL_ERROR, "Parse error while stripping \"chunked\" transfer coding");
1475          return(0);
1476       }
1477    }
1478
1479    /* FIXME: Should this get its own loglevel? */
1480    log_error(LOG_LEVEL_RE_FILTER, "De-chunking successful. Shrunk from %d to %d\n", size, newsize);
1481    return(newsize);
1482
1483 }
1484
1485
1486 /*********************************************************************
1487  *
1488  * Function    :  url_actions
1489  *
1490  * Description :  Gets the actions for this URL.
1491  *
1492  * Parameters  :
1493  *          1  :  http = http_request request for blocked URLs
1494  *          2  :  csp = Current client state (buffers, headers, etc...)
1495  *
1496  * Returns     :  N/A
1497  *
1498  *********************************************************************/
1499 void url_actions(struct http_request *http,
1500                  struct client_state *csp)
1501 {
1502    struct file_list *fl;
1503    struct url_actions *b;
1504    int i;
1505
1506    init_current_action(csp->action);
1507
1508    for (i = 0; i < MAX_ACTION_FILES; i++)
1509    {
1510       if (((fl = csp->actions_list[i]) == NULL) || ((b = fl->f) == NULL))
1511       {
1512          return;
1513       }
1514
1515       apply_url_actions(csp->action, http, b);
1516    }
1517
1518    return;
1519 }
1520
1521
1522 /*********************************************************************
1523  *
1524  * Function    :  apply_url_actions
1525  *
1526  * Description :  Applies a list of URL actions.
1527  *
1528  * Parameters  :
1529  *          1  :  action = Destination.
1530  *          2  :  http = Current URL
1531  *          3  :  b = list of URL actions to apply
1532  *
1533  * Returns     :  N/A
1534  *
1535  *********************************************************************/
1536 void apply_url_actions(struct current_action_spec *action,
1537                        struct http_request *http,
1538                        struct url_actions *b)
1539 {
1540    if (b == NULL)
1541    {
1542       /* Should never happen */
1543       return;
1544    }
1545
1546    for (b = b->next; NULL != b; b = b->next)
1547    {
1548       if (url_match(b->url, http))
1549       {
1550          merge_current_action(action, b->action);
1551       }
1552    }
1553 }
1554
1555
1556 /*********************************************************************
1557  *
1558  * Function    :  forward_url
1559  *
1560  * Description :  Should we forward this to another proxy?
1561  *
1562  * Parameters  :
1563  *          1  :  http = http_request request for current URL
1564  *          2  :  csp = Current client state (buffers, headers, etc...)
1565  *
1566  * Returns     :  Pointer to forwarding information.
1567  *
1568  *********************************************************************/
1569 const struct forward_spec * forward_url(struct http_request *http,
1570                                         struct client_state *csp)
1571 {
1572    static const struct forward_spec fwd_default[1] = { FORWARD_SPEC_INITIALIZER };
1573    struct forward_spec *fwd = csp->config->forward;
1574
1575    if (fwd == NULL)
1576    {
1577       return fwd_default;
1578    }
1579
1580    while (fwd != NULL)
1581    {
1582       if (url_match(fwd->url, http))
1583       {
1584          return fwd;
1585       }
1586       fwd = fwd->next;
1587    }
1588
1589    return fwd_default;
1590 }
1591
1592
1593 /*
1594   Local Variables:
1595   tab-width: 3
1596   end:
1597 */