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