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