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