Factor filters_available() out of filter_header(), header_tagger() and pcrs_filter_re...
[privoxy.git] / parsers.c
1 const char parsers_rcs[] = "$Id: parsers.c,v 1.210 2009/12/25 11:39:26 fabiankeil Exp $";
2 /*********************************************************************
3  *
4  * File        :  $Source: /cvsroot/ijbswa/current/parsers.c,v $
5  *
6  * Purpose     :  Declares functions to parse/crunch headers and pages.
7  *                Functions declared include:
8  *                   `add_to_iob', `client_cookie_adder', `client_from',
9  *                   `client_referrer', `client_send_cookie', `client_ua',
10  *                   `client_uagent', `client_x_forwarded',
11  *                   `client_x_forwarded_adder', `client_xtra_adder',
12  *                   `content_type', `crumble', `destroy_list', `enlist',
13  *                   `flush_socket', ``get_header', `sed', `filter_header'
14  *                   `server_content_encoding', `server_content_disposition',
15  *                   `server_last_modified', `client_accept_language',
16  *                   `crunch_client_header', `client_if_modified_since',
17  *                   `client_if_none_match', `get_destination_from_headers',
18  *                   `parse_header_time', `decompress_iob' and `server_set_cookie'.
19  *
20  * Copyright   :  Written by and Copyright (C) 2001-2009 the
21  *                Privoxy team. http://www.privoxy.org/
22  *
23  *                Based on the Internet Junkbuster originally written
24  *                by and Copyright (C) 1997 Anonymous Coders and
25  *                Junkbusters Corporation.  http://www.junkbusters.com
26  *
27  *                This program is free software; you can redistribute it
28  *                and/or modify it under the terms of the GNU General
29  *                Public License as published by the Free Software
30  *                Foundation; either version 2 of the License, or (at
31  *                your option) any later version.
32  *
33  *                This program is distributed in the hope that it will
34  *                be useful, but WITHOUT ANY WARRANTY; without even the
35  *                implied warranty of MERCHANTABILITY or FITNESS FOR A
36  *                PARTICULAR PURPOSE.  See the GNU General Public
37  *                License for more details.
38  *
39  *                The GNU General Public License should be included with
40  *                this file.  If not, you can view it at
41  *                http://www.gnu.org/copyleft/gpl.html
42  *                or write to the Free Software Foundation, Inc., 59
43  *                Temple Place - Suite 330, Boston, MA  02111-1307, USA.
44  *
45  *********************************************************************/
46
47
48 #include "config.h"
49
50 #ifndef _WIN32
51 #include <stdio.h>
52 #include <sys/types.h>
53 #endif
54
55 #include <stdlib.h>
56 #include <ctype.h>
57 #include <assert.h>
58 #include <string.h>
59
60 #ifdef __GLIBC__
61 /*
62  * Convince GNU's libc to provide a strptime prototype.
63  */
64 #define __USE_XOPEN
65 #endif /*__GLIBC__ */
66 #include <time.h>
67
68 #ifdef FEATURE_ZLIB
69 #include <zlib.h>
70
71 #define GZIP_IDENTIFIER_1       0x1f
72 #define GZIP_IDENTIFIER_2       0x8b
73
74 #define GZIP_FLAG_CHECKSUM      0x02
75 #define GZIP_FLAG_EXTRA_FIELDS  0x04
76 #define GZIP_FLAG_FILE_NAME     0x08
77 #define GZIP_FLAG_COMMENT       0x10
78 #define GZIP_FLAG_RESERVED_BITS 0xe0
79 #endif
80
81 #if !defined(_WIN32) && !defined(__OS2__)
82 #include <unistd.h>
83 #endif
84
85 #include "project.h"
86
87 #ifdef FEATURE_PTHREAD
88 #include "jcc.h"
89 /* jcc.h is for mutex semapores only */
90 #endif /* def FEATURE_PTHREAD */
91 #include "list.h"
92 #include "parsers.h"
93 #include "ssplit.h"
94 #include "errlog.h"
95 #include "jbsockets.h"
96 #include "miscutil.h"
97 #include "list.h"
98 #include "actions.h"
99 #include "filters.h"
100
101 #ifndef HAVE_STRPTIME
102 #include "strptime.h"
103 #endif
104
105 const char parsers_h_rcs[] = PARSERS_H_VERSION;
106
107 /* Fix a problem with Solaris.  There should be no effect on other
108  * platforms.
109  * Solaris's isspace() is a macro which uses its argument directly
110  * as an array index.  Therefore we need to make sure that high-bit
111  * characters generate +ve values, and ideally we also want to make
112  * the argument match the declared parameter type of "int".
113  *
114  * Why did they write a character function that can't take a simple
115  * "char" argument?  Doh!
116  */
117 #define ijb_isupper(__X) isupper((int)(unsigned char)(__X))
118 #define ijb_tolower(__X) tolower((int)(unsigned char)(__X))
119
120 static char *get_header_line(struct iob *iob);
121 static jb_err scan_headers(struct client_state *csp);
122 static jb_err header_tagger(struct client_state *csp, char *header);
123 static jb_err parse_header_time(const char *header_time, time_t *result);
124
125 static jb_err crumble                   (struct client_state *csp, char **header);
126 static jb_err filter_header             (struct client_state *csp, char **header);
127 static jb_err client_connection         (struct client_state *csp, char **header);
128 static jb_err client_referrer           (struct client_state *csp, char **header);
129 static jb_err client_uagent             (struct client_state *csp, char **header);
130 static jb_err client_ua                 (struct client_state *csp, char **header);
131 static jb_err client_from               (struct client_state *csp, char **header);
132 static jb_err client_send_cookie        (struct client_state *csp, char **header);
133 static jb_err client_x_forwarded        (struct client_state *csp, char **header);
134 static jb_err client_accept_encoding    (struct client_state *csp, char **header);
135 static jb_err client_te                 (struct client_state *csp, char **header);
136 static jb_err client_max_forwards       (struct client_state *csp, char **header);
137 static jb_err client_host               (struct client_state *csp, char **header);
138 static jb_err client_if_modified_since  (struct client_state *csp, char **header);
139 static jb_err client_accept_language    (struct client_state *csp, char **header);
140 static jb_err client_if_none_match      (struct client_state *csp, char **header);
141 static jb_err crunch_client_header      (struct client_state *csp, char **header);
142 static jb_err client_x_filter           (struct client_state *csp, char **header);
143 static jb_err client_range              (struct client_state *csp, char **header);
144 static jb_err server_set_cookie         (struct client_state *csp, char **header);
145 static jb_err server_connection         (struct client_state *csp, char **header);
146 static jb_err server_content_type       (struct client_state *csp, char **header);
147 static jb_err server_adjust_content_length(struct client_state *csp, char **header);
148 static jb_err server_content_md5        (struct client_state *csp, char **header);
149 static jb_err server_content_encoding   (struct client_state *csp, char **header);
150 static jb_err server_transfer_coding    (struct client_state *csp, char **header);
151 static jb_err server_http               (struct client_state *csp, char **header);
152 static jb_err crunch_server_header      (struct client_state *csp, char **header);
153 static jb_err server_last_modified      (struct client_state *csp, char **header);
154 static jb_err server_content_disposition(struct client_state *csp, char **header);
155
156 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
157 static jb_err server_save_content_length(struct client_state *csp, char **header);
158 static jb_err server_keep_alive(struct client_state *csp, char **header);
159 static jb_err server_proxy_connection(struct client_state *csp, char **header);
160 static jb_err client_keep_alive(struct client_state *csp, char **header);
161 static jb_err client_save_content_length(struct client_state *csp, char **header);
162 #endif /* def FEATURE_CONNECTION_KEEP_ALIVE */
163
164 static jb_err client_host_adder       (struct client_state *csp);
165 static jb_err client_xtra_adder       (struct client_state *csp);
166 static jb_err client_x_forwarded_for_adder(struct client_state *csp);
167 static jb_err client_connection_header_adder(struct client_state *csp);
168 static jb_err server_connection_adder(struct client_state *csp);
169 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
170 static jb_err server_proxy_connection_adder(struct client_state *csp);
171 #endif /* def FEATURE_CONNECTION_KEEP_ALIVE */
172
173 static jb_err create_forged_referrer(char **header, const char *hostport);
174 static jb_err create_fake_referrer(char **header, const char *fake_referrer);
175 static jb_err handle_conditional_hide_referrer_parameter(char **header,
176    const char *host, const int parameter_conditional_block);
177 static void create_content_length_header(unsigned long long content_length,
178                                          char *header, size_t buffer_length);
179
180 /*
181  * List of functions to run on a list of headers.
182  */
183 struct parsers
184 {
185    /** The header prefix to match */
186    const char *str;
187    
188    /** The length of the prefix to match */
189    const size_t len;
190    
191    /** The function to apply to this line */
192    const parser_func_ptr parser;
193 };
194
195 static const struct parsers client_patterns[] = {
196    { "referer:",                  8,   client_referrer },
197    { "user-agent:",              11,   client_uagent },
198    { "ua-",                       3,   client_ua },
199    { "from:",                     5,   client_from },
200    { "cookie:",                   7,   client_send_cookie },
201    { "x-forwarded-for:",         16,   client_x_forwarded },
202    { "Accept-Encoding:",         16,   client_accept_encoding },
203    { "TE:",                       3,   client_te },
204    { "Host:",                     5,   client_host },
205    { "if-modified-since:",       18,   client_if_modified_since },
206 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
207    { "Keep-Alive:",              11,   client_keep_alive },
208    { "Content-Length:",          15,   client_save_content_length },
209 #else
210    { "Keep-Alive:",              11,   crumble },
211 #endif
212    { "connection:",              11,   client_connection },
213    { "proxy-connection:",        17,   crumble },
214    { "max-forwards:",            13,   client_max_forwards },
215    { "Accept-Language:",         16,   client_accept_language },
216    { "if-none-match:",           14,   client_if_none_match },
217    { "Range:",                    6,   client_range },
218    { "Request-Range:",           14,   client_range },
219    { "If-Range:",                 9,   client_range },
220    { "X-Filter:",                 9,   client_x_filter },
221    { "*",                         0,   crunch_client_header },
222    { "*",                         0,   filter_header },
223    { NULL,                        0,   NULL }
224 };
225
226 static const struct parsers server_patterns[] = {
227    { "HTTP/",                     5, server_http },
228    { "set-cookie:",              11, server_set_cookie },
229    { "connection:",              11, server_connection },
230    { "Content-Type:",            13, server_content_type },
231    { "Content-MD5:",             12, server_content_md5 },
232    { "Content-Encoding:",        17, server_content_encoding },
233 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
234    { "Content-Length:",          15, server_save_content_length },
235    { "Keep-Alive:",              11, server_keep_alive },
236    { "Proxy-Connection:",        17, server_proxy_connection },
237 #else
238    { "Keep-Alive:",              11, crumble },
239 #endif /* def FEATURE_CONNECTION_KEEP_ALIVE */
240    { "Transfer-Encoding:",       18, server_transfer_coding },
241    { "content-disposition:",     20, server_content_disposition },
242    { "Last-Modified:",           14, server_last_modified },
243    { "*",                         0, crunch_server_header },
244    { "*",                         0, filter_header },
245    { NULL,                        0, NULL }
246 };
247
248 static const add_header_func_ptr add_client_headers[] = {
249    client_host_adder,
250    client_x_forwarded_for_adder,
251    client_xtra_adder,
252    /* Temporarily disabled:    client_accept_encoding_adder, */
253    client_connection_header_adder,
254    NULL
255 };
256
257 static const add_header_func_ptr add_server_headers[] = {
258    server_connection_adder,
259 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
260    server_proxy_connection_adder,
261 #endif /* def FEATURE_CONNECTION_KEEP_ALIVE */
262    NULL
263 };
264
265 /*********************************************************************
266  *
267  * Function    :  flush_socket
268  *
269  * Description :  Write any pending "buffered" content.
270  *
271  * Parameters  :
272  *          1  :  fd = file descriptor of the socket to read
273  *          2  :  iob = The I/O buffer to flush, usually csp->iob.
274  *
275  * Returns     :  On success, the number of bytes written are returned (zero
276  *                indicates nothing was written).  On error, -1 is returned,
277  *                and errno is set appropriately.  If count is zero and the
278  *                file descriptor refers to a regular file, 0 will be
279  *                returned without causing any other effect.  For a special
280  *                file, the results are not portable.
281  *
282  *********************************************************************/
283 long flush_socket(jb_socket fd, struct iob *iob)
284 {
285    long len = iob->eod - iob->cur;
286
287    if (len <= 0)
288    {
289       return(0);
290    }
291
292    if (write_socket(fd, iob->cur, (size_t)len))
293    {
294       return(-1);
295    }
296    iob->eod = iob->cur = iob->buf;
297    return(len);
298
299 }
300
301
302 /*********************************************************************
303  *
304  * Function    :  add_to_iob
305  *
306  * Description :  Add content to the buffered page, expanding the
307  *                buffer if necessary.
308  *
309  * Parameters  :
310  *          1  :  csp = Current client state (buffers, headers, etc...)
311  *          2  :  buf = holds the content to be added to the page
312  *          3  :  n = number of bytes to be added
313  *
314  * Returns     :  JB_ERR_OK on success, JB_ERR_MEMORY if out-of-memory
315  *                or buffer limit reached.
316  *
317  *********************************************************************/
318 jb_err add_to_iob(struct client_state *csp, char *buf, long n)
319 {
320    struct iob *iob = csp->iob;
321    size_t used, offset, need, want;
322    char *p;
323
324    if (n <= 0) return JB_ERR_OK;
325
326    used   = (size_t)(iob->eod - iob->buf);
327    offset = (size_t)(iob->cur - iob->buf);
328    need   = used + (size_t)n + 1;
329
330    /*
331     * If the buffer can't hold the new data, extend it first.
332     * Use the next power of two if possible, else use the actual need.
333     */
334    if (need > csp->config->buffer_limit)
335    {
336       log_error(LOG_LEVEL_INFO,
337          "Buffer limit reached while extending the buffer (iob). Needed: %d. Limit: %d",
338          need, csp->config->buffer_limit);
339       return JB_ERR_MEMORY;
340    }
341
342    if (need > iob->size)
343    {
344       for (want = csp->iob->size ? csp->iob->size : 512; want <= need;) want *= 2;
345       
346       if (want <= csp->config->buffer_limit && NULL != (p = (char *)realloc(iob->buf, want)))
347       {
348          iob->size = want;
349       }
350       else if (NULL != (p = (char *)realloc(iob->buf, need)))
351       {
352          iob->size = need;
353       }
354       else
355       {
356          log_error(LOG_LEVEL_ERROR, "Extending the buffer (iob) failed: %E");
357          return JB_ERR_MEMORY;
358       }
359
360       /* Update the iob pointers */
361       iob->cur = p + offset;
362       iob->eod = p + used;
363       iob->buf = p;
364    }
365
366    /* copy the new data into the iob buffer */
367    memcpy(iob->eod, buf, (size_t)n);
368
369    /* point to the end of the data */
370    iob->eod += n;
371
372    /* null terminate == cheap insurance */
373    *iob->eod = '\0';
374
375    return JB_ERR_OK;
376
377 }
378
379
380 #ifdef FEATURE_ZLIB
381 /*********************************************************************
382  *
383  * Function    :  decompress_iob
384  *
385  * Description :  Decompress buffered page, expanding the
386  *                buffer as necessary.  csp->iob->cur
387  *                should point to the the beginning of the
388  *                compressed data block.
389  *
390  * Parameters  :
391  *          1  :  csp = Current client state (buffers, headers, etc...)
392  *
393  * Returns     :  JB_ERR_OK on success,
394  *                JB_ERR_MEMORY if out-of-memory limit reached, and
395  *                JB_ERR_COMPRESS if error decompressing buffer.
396  *
397  *********************************************************************/
398 jb_err decompress_iob(struct client_state *csp)
399 {
400    char  *buf;       /* new, uncompressed buffer */
401    char  *cur;       /* Current iob position (to keep the original 
402                       * iob->cur unmodified if we return early) */
403    size_t bufsize;   /* allocated size of the new buffer */
404    size_t old_size;  /* Content size before decompression */
405    size_t skip_size; /* Number of bytes at the beginning of the iob
406                         that we should NOT decompress. */
407    int status;       /* return status of the inflate() call */
408    z_stream zstr;    /* used by calls to zlib */
409
410    assert(csp->iob->cur - csp->iob->buf > 0);
411    assert(csp->iob->eod - csp->iob->cur > 0);
412
413    bufsize = csp->iob->size;
414    skip_size = (size_t)(csp->iob->cur - csp->iob->buf);
415    old_size = (size_t)(csp->iob->eod - csp->iob->cur);
416
417    cur = csp->iob->cur;
418
419    if (bufsize < (size_t)10)
420    {
421       /*
422        * This is to protect the parsing of gzipped data,
423        * but it should(?) be valid for deflated data also.
424        */
425       log_error(LOG_LEVEL_ERROR, "Buffer too small decompressing iob");
426       return JB_ERR_COMPRESS;
427    }
428
429    if (csp->content_type & CT_GZIP)
430    {
431       /*
432        * Our task is slightly complicated by the facts that data
433        * compressed by gzip does not include a zlib header, and
434        * that there is no easily accessible interface in zlib to
435        * handle a gzip header. We strip off the gzip header by
436        * hand, and later inform zlib not to expect a header.
437        */
438
439       /*
440        * Strip off the gzip header. Please see RFC 1952 for more
441        * explanation of the appropriate fields.
442        */
443       if (((*cur++ & 0xff) != GZIP_IDENTIFIER_1)
444        || ((*cur++ & 0xff) != GZIP_IDENTIFIER_2)
445        || (*cur++ != Z_DEFLATED))
446       {
447          log_error(LOG_LEVEL_ERROR, "Invalid gzip header when decompressing");
448          return JB_ERR_COMPRESS;
449       }
450       else
451       {
452          int flags = *cur++;
453          if (flags & GZIP_FLAG_RESERVED_BITS)
454          {
455             /* The gzip header has reserved bits set; bail out. */
456             log_error(LOG_LEVEL_ERROR, "Invalid gzip header flags when decompressing");
457             return JB_ERR_COMPRESS;
458          }
459
460          /*
461           * Skip mtime (4 bytes), extra flags (1 byte)
462           * and OS type (1 byte).
463           */
464          cur += 6;
465
466          /* Skip extra fields if necessary. */
467          if (flags & GZIP_FLAG_EXTRA_FIELDS)
468          {
469             /*
470              * Skip a given number of bytes, specified
471              * as a 16-bit little-endian value.
472              *
473              * XXX: this code is untested and should probably be removed.
474              */
475             int skip_bytes;
476             skip_bytes = *cur++;
477             skip_bytes += *cur++ << 8;
478
479             /*
480              * The number of bytes to skip should be positive
481              * and we'd like to stay in the buffer.
482              */
483             if ((skip_bytes < 0) || (skip_bytes >= (csp->iob->eod - cur)))
484             {
485                log_error(LOG_LEVEL_ERROR,
486                   "Unreasonable amount of bytes to skip (%d). Stopping decompression",
487                   skip_bytes);
488                return JB_ERR_COMPRESS;
489             }
490             log_error(LOG_LEVEL_INFO,
491                "Skipping %d bytes for gzip compression. Does this sound right?",
492                skip_bytes);
493             cur += skip_bytes;
494          }
495
496          /* Skip the filename if necessary. */
497          if (flags & GZIP_FLAG_FILE_NAME)
498          {
499             /* A null-terminated string is supposed to follow. */
500             while (*cur++ && (cur < csp->iob->eod));
501          }
502
503          /* Skip the comment if necessary. */
504          if (flags & GZIP_FLAG_COMMENT)
505          {
506             /* A null-terminated string is supposed to follow. */
507             while (*cur++ && (cur < csp->iob->eod));
508          }
509
510          /* Skip the CRC if necessary. */
511          if (flags & GZIP_FLAG_CHECKSUM)
512          {
513             cur += 2;
514          }
515
516          if (cur >= csp->iob->eod)
517          {
518             /*
519              * If the current position pointer reached or passed
520              * the buffer end, we were obviously tricked to skip
521              * too much.
522              */
523             log_error(LOG_LEVEL_ERROR,
524                "Malformed gzip header detected. Aborting decompression.");
525             return JB_ERR_COMPRESS;
526          }
527       }
528    }
529    else if (csp->content_type & CT_DEFLATE)
530    {
531       /*
532        * XXX: The debug level should be lowered
533        * before the next stable release.
534        */
535       log_error(LOG_LEVEL_INFO, "Decompressing deflated iob: %d", *cur);
536       /*
537        * In theory (that is, according to RFC 1950), deflate-compressed
538        * data should begin with a two-byte zlib header and have an
539        * adler32 checksum at the end. It seems that in practice only
540        * the raw compressed data is sent. Note that this means that
541        * we are not RFC 1950-compliant here, but the advantage is that
542        * this actually works. :)
543        *
544        * We add a dummy null byte to tell zlib where the data ends,
545        * and later inform it not to expect a header.
546        *
547        * Fortunately, add_to_iob() has thoughtfully null-terminated
548        * the buffer; we can just increment the end pointer to include
549        * the dummy byte.  
550        */
551       csp->iob->eod++;
552    }
553    else
554    {
555       log_error(LOG_LEVEL_ERROR,
556          "Unable to determine compression format for decompression");
557       return JB_ERR_COMPRESS;
558    }
559
560    /* Set up the fields required by zlib. */
561    zstr.next_in  = (Bytef *)cur;
562    zstr.avail_in = (unsigned int)(csp->iob->eod - cur);
563    zstr.zalloc   = Z_NULL;
564    zstr.zfree    = Z_NULL;
565    zstr.opaque   = Z_NULL;
566
567    /*
568     * Passing -MAX_WBITS to inflateInit2 tells the library
569     * that there is no zlib header.
570     */
571    if (inflateInit2(&zstr, -MAX_WBITS) != Z_OK)
572    {
573       log_error(LOG_LEVEL_ERROR, "Error initializing decompression");
574       return JB_ERR_COMPRESS;
575    }
576
577    /*
578     * Next, we allocate new storage for the inflated data.
579     * We don't modify the existing iob yet, so in case there
580     * is error in decompression we can recover gracefully.
581     */
582    buf = zalloc(bufsize);
583    if (NULL == buf)
584    {
585       log_error(LOG_LEVEL_ERROR, "Out of memory decompressing iob");
586       return JB_ERR_MEMORY;
587    }
588
589    assert(bufsize >= skip_size);
590    memcpy(buf, csp->iob->buf, skip_size);
591    zstr.avail_out = (uInt)(bufsize - skip_size);
592    zstr.next_out  = (Bytef *)buf + skip_size;
593
594    /* Try to decompress the whole stream in one shot. */
595    while (Z_BUF_ERROR == (status = inflate(&zstr, Z_FINISH)))
596    {
597       /* We need to allocate more memory for the output buffer. */
598
599       char *tmpbuf;                /* used for realloc'ing the buffer */
600       size_t oldbufsize = bufsize; /* keep track of the old bufsize */
601
602       if (0 == zstr.avail_in)
603       {
604          /*
605           * If zlib wants more data then there's a problem, because
606           * the complete compressed file should have been buffered.
607           */
608          log_error(LOG_LEVEL_ERROR,
609             "Unexpected end of compressed iob. Using what we got so far.");
610          break;
611       }
612
613       /*
614        * If we tried the limit and still didn't have enough
615        * memory, just give up.
616        */
617       if (bufsize == csp->config->buffer_limit)
618       {
619          log_error(LOG_LEVEL_ERROR, "Buffer limit reached while decompressing iob");
620          return JB_ERR_MEMORY;
621       }
622
623       /* Try doubling the buffer size each time. */
624       bufsize *= 2;
625
626       /* Don't exceed the buffer limit. */
627       if (bufsize > csp->config->buffer_limit)
628       {
629          bufsize = csp->config->buffer_limit;
630       }
631     
632       /* Try to allocate the new buffer. */
633       tmpbuf = realloc(buf, bufsize);
634       if (NULL == tmpbuf)
635       {
636          log_error(LOG_LEVEL_ERROR, "Out of memory decompressing iob");
637          freez(buf);
638          return JB_ERR_MEMORY;
639       }
640       else
641       {
642          char *oldnext_out = (char *)zstr.next_out;
643
644          /*
645           * Update the fields for inflate() to use the new
646           * buffer, which may be in a location different from
647           * the old one.
648           */
649          zstr.avail_out += (uInt)(bufsize - oldbufsize);
650          zstr.next_out   = (Bytef *)tmpbuf + bufsize - zstr.avail_out;
651
652          /*
653           * Compare with an uglier method of calculating these values
654           * that doesn't require the extra oldbufsize variable.
655           */
656          assert(zstr.avail_out == tmpbuf + bufsize - (char *)zstr.next_out);
657          assert((char *)zstr.next_out == tmpbuf + ((char *)oldnext_out - buf));
658
659          buf = tmpbuf;
660       }
661    }
662
663    if (Z_STREAM_ERROR == inflateEnd(&zstr))
664    {
665       log_error(LOG_LEVEL_ERROR,
666          "Inconsistent stream state after decompression: %s", zstr.msg);
667       /*
668        * XXX: Intentionally no return.
669        *
670        * According to zlib.h, Z_STREAM_ERROR is returned
671        * "if the stream state was inconsistent".
672        *
673        * I assume in this case inflate()'s status
674        * would also be something different than Z_STREAM_END
675        * so this check should be redundant, but lets see.
676        */
677    }
678
679    if ((status != Z_STREAM_END) && (0 != zstr.avail_in))
680    {
681       /*
682        * We failed to decompress the stream and it's
683        * not simply because of missing data.
684        */
685       log_error(LOG_LEVEL_ERROR,
686          "Unexpected error while decompressing to the buffer (iob): %s",
687          zstr.msg);
688       return JB_ERR_COMPRESS;
689    }
690
691    /*
692     * Finally, we can actually update the iob, since the
693     * decompression was successful. First, free the old
694     * buffer.
695     */
696    freez(csp->iob->buf);
697
698    /* Now, update the iob to use the new buffer. */
699    csp->iob->buf  = buf;
700    csp->iob->cur  = csp->iob->buf + skip_size;
701    csp->iob->eod  = (char *)zstr.next_out;
702    csp->iob->size = bufsize;
703   
704    /*
705     * Make sure the new uncompressed iob obeys some minimal
706     * consistency conditions.
707     */
708    if ((csp->iob->buf <  csp->iob->cur)
709     && (csp->iob->cur <= csp->iob->eod)
710     && (csp->iob->eod <= csp->iob->buf + csp->iob->size))
711    {
712       const size_t new_size = (size_t)(csp->iob->eod - csp->iob->cur);
713       if (new_size > (size_t)0)
714       {
715          log_error(LOG_LEVEL_RE_FILTER,
716             "Decompression successful. Old size: %d, new size: %d.",
717             old_size, new_size);
718       }
719       else
720       {
721          /* zlib thinks this is OK, so lets do the same. */
722          log_error(LOG_LEVEL_INFO, "Decompression didn't result in any content.");
723       }
724    }
725    else
726    {
727       /* It seems that zlib did something weird. */
728       log_error(LOG_LEVEL_ERROR,
729          "Unexpected error decompressing the buffer (iob): %d==%d, %d>%d, %d<%d",
730          csp->iob->cur, csp->iob->buf + skip_size, csp->iob->eod, csp->iob->buf,
731          csp->iob->eod, csp->iob->buf + csp->iob->size);
732       return JB_ERR_COMPRESS;
733    }
734
735    return JB_ERR_OK;
736
737 }
738 #endif /* defined(FEATURE_ZLIB) */
739
740
741 /*********************************************************************
742  *
743  * Function    :  string_move
744  *
745  * Description :  memmove wrapper to move the last part of a string
746  *                towards the beginning, overwriting the part in
747  *                the middle. strlcpy() can't be used here as the
748  *                strings overlap.
749  *
750  * Parameters  :
751  *          1  :  dst = Destination to overwrite
752  *          2  :  src = Source to move.
753  *
754  * Returns     :  N/A
755  *
756  *********************************************************************/
757 static void string_move(char *dst, char *src)
758 {
759    assert(dst < src);
760
761    /* +1 to copy the terminating nul as well. */
762    memmove(dst, src, strlen(src)+1);
763 }
764
765
766 /*********************************************************************
767  *
768  * Function    :  normalize_lws
769  *
770  * Description :  Reduces unquoted linear white space in headers
771  *                to a single space in accordance with RFC 2616 2.2.
772  *                This simplifies parsing and filtering later on.
773  *
774  *                XXX: Remove log messages before
775  *                     the next stable release?
776  *
777  * Parameters  :
778  *          1  :  header = A header with linear white space to reduce.
779  *
780  * Returns     :  N/A
781  *
782  *********************************************************************/
783 static void normalize_lws(char *header)
784 {
785    char *p = header;
786
787    while (*p != '\0')
788    {
789       if (ijb_isspace(*p) && ijb_isspace(*(p+1)))
790       {
791          char *q = p+1;
792
793          while (ijb_isspace(*q))
794          {
795             q++;
796          }
797          log_error(LOG_LEVEL_HEADER, "Reducing white space in '%s'", header);
798          string_move(p+1, q);
799       }
800
801       if (*p == '\t')
802       {
803          log_error(LOG_LEVEL_HEADER,
804             "Converting tab to space in '%s'", header);
805          *p = ' ';
806       }
807       else if (*p == '"')
808       {
809          char *end_of_token = strstr(p+1, "\"");
810
811          if (NULL != end_of_token)
812          {
813             /* Don't mess with quoted text. */
814             p = end_of_token;
815          }
816          else
817          {
818             log_error(LOG_LEVEL_HEADER,
819                "Ignoring single quote in '%s'", header);
820          }
821       }
822       p++;
823    }
824
825    p = strchr(header, ':');
826    if ((p != NULL) && (p != header) && ijb_isspace(*(p-1)))
827    {
828       /*
829        * There's still space before the colon.
830        * We don't want it.
831        */
832       string_move(p-1, p);
833    }
834 }
835
836
837 /*********************************************************************
838  *
839  * Function    :  get_header
840  *
841  * Description :  This (odd) routine will parse the csp->iob
842  *                to get the next complete header.
843  *
844  * Parameters  :
845  *          1  :  iob = The I/O buffer to parse, usually csp->iob.
846  *
847  * Returns     :  Any one of the following:
848  *
849  * 1) a pointer to a dynamically allocated string that contains a header line
850  * 2) NULL  indicating that the end of the header was reached
851  * 3) ""    indicating that the end of the iob was reached before finding
852  *          a complete header line.
853  *
854  *********************************************************************/
855 char *get_header(struct iob *iob)
856 {
857    char *header;
858
859    header = get_header_line(iob);
860
861    if ((header == NULL) || (*header == '\0'))
862    {
863       /*
864        * No complete header read yet, tell the client.
865        */
866       return header;
867    }
868
869    while ((iob->cur[0] == ' ') || (iob->cur[0] == '\t'))
870    {
871       /*
872        * Header spans multiple lines, append the next one.
873        */
874       char *continued_header;
875       
876       continued_header = get_header_line(iob);
877       if ((continued_header == NULL) || (*continued_header == '\0'))
878       {
879          /*
880           * No complete header read yet, return what we got.
881           * XXX: Should "unread" header instead.
882           */
883          log_error(LOG_LEVEL_INFO,
884             "Failed to read a multi-line header properly: '%s'",
885             header);
886          break;
887       }
888
889       if (JB_ERR_OK != string_join(&header, continued_header))
890       {
891          log_error(LOG_LEVEL_FATAL,
892             "Out of memory while appending multiple headers.");
893       }
894       else
895       {
896          /* XXX: remove before next stable release. */
897          log_error(LOG_LEVEL_HEADER,
898             "Merged multiple header lines to: '%s'",
899             header);
900       }
901    }
902
903    normalize_lws(header);
904
905    return header;
906
907 }
908
909
910 /*********************************************************************
911  *
912  * Function    :  get_header_line
913  *
914  * Description :  This (odd) routine will parse the csp->iob
915  *                to get the next header line.
916  *
917  * Parameters  :
918  *          1  :  iob = The I/O buffer to parse, usually csp->iob.
919  *
920  * Returns     :  Any one of the following:
921  *
922  * 1) a pointer to a dynamically allocated string that contains a header line
923  * 2) NULL  indicating that the end of the header was reached
924  * 3) ""    indicating that the end of the iob was reached before finding
925  *          a complete header line.
926  *
927  *********************************************************************/
928 static char *get_header_line(struct iob *iob)
929 {
930    char *p, *q, *ret;
931
932    if ((iob->cur == NULL)
933       || ((p = strchr(iob->cur, '\n')) == NULL))
934    {
935       return(""); /* couldn't find a complete header */
936    }
937
938    *p = '\0';
939
940    ret = strdup(iob->cur);
941    if (ret == NULL)
942    {
943       /* FIXME No way to handle error properly */
944       log_error(LOG_LEVEL_FATAL, "Out of memory in get_header_line()");
945    }
946    assert(ret != NULL);
947
948    iob->cur = p+1;
949
950    if ((q = strchr(ret, '\r')) != NULL) *q = '\0';
951
952    /* is this a blank line (i.e. the end of the header) ? */
953    if (*ret == '\0')
954    {
955       freez(ret);
956       return NULL;
957    }
958
959    return ret;
960
961 }
962
963
964 /*********************************************************************
965  *
966  * Function    :  get_header_value
967  *
968  * Description :  Get the value of a given header from a chained list
969  *                of header lines or return NULL if no such header is
970  *                present in the list.
971  *
972  * Parameters  :
973  *          1  :  header_list = pointer to list
974  *          2  :  header_name = string with name of header to look for.
975  *                              Trailing colon required, capitalization
976  *                              doesn't matter.
977  *
978  * Returns     :  NULL if not found, else value of header
979  *
980  *********************************************************************/
981 char *get_header_value(const struct list *header_list, const char *header_name)
982 {
983    struct list_entry *cur_entry;
984    char *ret = NULL;
985    size_t length = 0;
986
987    assert(header_list);
988    assert(header_name);
989    length = strlen(header_name);
990
991    for (cur_entry = header_list->first; cur_entry ; cur_entry = cur_entry->next)
992    {
993       if (cur_entry->str)
994       {
995          if (!strncmpic(cur_entry->str, header_name, length))
996          {
997             /*
998              * Found: return pointer to start of value
999              */
1000             ret = cur_entry->str + length;
1001             while (*ret && ijb_isspace(*ret)) ret++;
1002             return ret;
1003          }
1004       }
1005    }
1006
1007    /* 
1008     * Not found
1009     */
1010    return NULL;
1011
1012 }
1013
1014
1015 /*********************************************************************
1016  *
1017  * Function    :  scan_headers
1018  *
1019  * Description :  Scans headers, applies tags and updates action bits. 
1020  *
1021  * Parameters  :
1022  *          1  :  csp = Current client state (buffers, headers, etc...)
1023  *
1024  * Returns     :  JB_ERR_OK
1025  *
1026  *********************************************************************/
1027 static jb_err scan_headers(struct client_state *csp)
1028 {
1029    struct list_entry *h; /* Header */
1030    jb_err err = JB_ERR_OK;
1031
1032    for (h = csp->headers->first; (err == JB_ERR_OK) && (h != NULL) ; h = h->next)
1033    {
1034       /* Header crunch()ed in previous run? -> ignore */
1035       if (h->str == NULL) continue;
1036       log_error(LOG_LEVEL_HEADER, "scan: %s", h->str);
1037       err = header_tagger(csp, h->str);
1038    }
1039
1040    return err;
1041 }
1042
1043
1044 /*********************************************************************
1045  *
1046  * Function    :  sed
1047  *
1048  * Description :  add, delete or modify lines in the HTTP header streams.
1049  *                On entry, it receives a linked list of headers space
1050  *                that was allocated dynamically (both the list nodes
1051  *                and the header contents).
1052  *
1053  *                As a side effect it frees the space used by the original
1054  *                header lines.
1055  *
1056  * Parameters  :
1057  *          1  :  csp = Current client state (buffers, headers, etc...)
1058  *          2  :  filter_server_headers = Boolean to switch between
1059  *                                        server and header filtering.
1060  *
1061  * Returns     :  JB_ERR_OK in case off success, or
1062  *                JB_ERR_MEMORY on out-of-memory error.
1063  *
1064  *********************************************************************/
1065 jb_err sed(struct client_state *csp, int filter_server_headers)
1066 {
1067    /* XXX: use more descriptive names. */
1068    struct list_entry *p;
1069    const struct parsers *v;
1070    const add_header_func_ptr *f;
1071    jb_err err = JB_ERR_OK;
1072
1073    if (filter_server_headers)
1074    {
1075       v = server_patterns;
1076       f = add_server_headers;
1077    }
1078    else
1079    {
1080       v = client_patterns;
1081       f = add_client_headers;
1082    }
1083
1084    scan_headers(csp);
1085
1086    while ((err == JB_ERR_OK) && (v->str != NULL))
1087    {
1088       for (p = csp->headers->first; (err == JB_ERR_OK) && (p != NULL); p = p->next)
1089       {
1090          /* Header crunch()ed in previous run? -> ignore */
1091          if (p->str == NULL) continue;
1092
1093          /* Does the current parser handle this header? */
1094          if ((strncmpic(p->str, v->str, v->len) == 0) ||
1095              (v->len == CHECK_EVERY_HEADER_REMAINING))
1096          {
1097             err = v->parser(csp, &(p->str));
1098          }
1099       }
1100       v++;
1101    }
1102
1103    /* place additional headers on the csp->headers list */
1104    while ((err == JB_ERR_OK) && (*f))
1105    {
1106       err = (*f)(csp);
1107       f++;
1108    }
1109
1110    return err;
1111 }
1112
1113
1114 /*********************************************************************
1115  *
1116  * Function    :  update_server_headers
1117  *
1118  * Description :  Updates server headers after the body has been modified.
1119  *
1120  * Parameters  :
1121  *          1  :  csp = Current client state (buffers, headers, etc...)
1122  *
1123  * Returns     :  JB_ERR_OK in case off success, or
1124  *                JB_ERR_MEMORY on out-of-memory error.
1125  *
1126  *********************************************************************/
1127 jb_err update_server_headers(struct client_state *csp)
1128 {
1129    jb_err err = JB_ERR_OK;
1130
1131    static const struct parsers server_patterns_light[] = {
1132       { "Content-Length:",    15, server_adjust_content_length },
1133       { "Transfer-Encoding:", 18, server_transfer_coding },
1134 #ifdef FEATURE_ZLIB
1135       { "Content-Encoding:",  17, server_content_encoding },
1136 #endif /* def FEATURE_ZLIB */
1137       { NULL,                  0, NULL }
1138    };
1139
1140    if (strncmpic(csp->http->cmd, "HEAD", 4))
1141    {
1142       const struct parsers *v;
1143       struct list_entry *p;
1144
1145       for (v = server_patterns_light; (err == JB_ERR_OK) && (v->str != NULL); v++)
1146       {
1147          for (p = csp->headers->first; (err == JB_ERR_OK) && (p != NULL); p = p->next)
1148          {
1149             /* Header crunch()ed in previous run? -> ignore */
1150             if (p->str == NULL) continue;
1151
1152             /* Does the current parser handle this header? */
1153             if (strncmpic(p->str, v->str, v->len) == 0)
1154             {
1155                err = v->parser(csp, (char **)&(p->str));
1156             }
1157          }
1158       }
1159    }
1160
1161 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
1162    if ((JB_ERR_OK == err)
1163     && (csp->flags & CSP_FLAG_MODIFIED)
1164     && (csp->flags & CSP_FLAG_CLIENT_CONNECTION_KEEP_ALIVE)
1165     && !(csp->flags & CSP_FLAG_SERVER_CONTENT_LENGTH_SET))
1166    {
1167       char header[50];
1168
1169       create_content_length_header(csp->content_length, header, sizeof(header));
1170       err = enlist(csp->headers, header);
1171       if (JB_ERR_OK == err)
1172       {
1173          log_error(LOG_LEVEL_HEADER,
1174             "Content modified with no Content-Length header set. "
1175             "Created: %s.", header);
1176       }
1177    }
1178 #endif /* def FEATURE_CONNECTION_KEEP_ALIVE */
1179
1180    return err;
1181 }
1182
1183
1184 /*********************************************************************
1185  *
1186  * Function    :  header_tagger
1187  *
1188  * Description :  Executes all text substitutions from applying
1189  *                tag actions and saves the result as tag.
1190  *
1191  *                XXX: Shares enough code with filter_header() and
1192  *                pcrs_filter_response() to warrant some helper functions.
1193  *
1194  * Parameters  :
1195  *          1  :  csp = Current client state (buffers, headers, etc...)
1196  *          2  :  header = Header that is used as tagger input
1197  *
1198  * Returns     :  JB_ERR_OK on success and always succeeds
1199  *
1200  *********************************************************************/
1201 static jb_err header_tagger(struct client_state *csp, char *header)
1202 {
1203    int wanted_filter_type;
1204    int multi_action_index;
1205    int i;
1206    pcrs_job *job;
1207
1208    struct file_list *fl;
1209    struct re_filterfile_spec *b;
1210    struct list_entry *tag_name;
1211
1212    const size_t header_length = strlen(header);
1213
1214    if (csp->flags & CSP_FLAG_CLIENT_HEADER_PARSING_DONE)
1215    {
1216       wanted_filter_type = FT_SERVER_HEADER_TAGGER;
1217       multi_action_index = ACTION_MULTI_SERVER_HEADER_TAGGER;
1218    }
1219    else
1220    {
1221       wanted_filter_type = FT_CLIENT_HEADER_TAGGER;
1222       multi_action_index = ACTION_MULTI_CLIENT_HEADER_TAGGER;
1223    }
1224
1225    if (filters_available(csp) == FALSE)
1226    {
1227       log_error(LOG_LEVEL_ERROR, "Inconsistent configuration: "
1228          "tagging enabled, but no taggers available.");
1229       return JB_ERR_OK;
1230    }
1231
1232    for (i = 0; i < MAX_AF_FILES; i++)
1233    {
1234       fl = csp->rlist[i];
1235       if ((NULL == fl) || (NULL == fl->f))
1236       {
1237          /*
1238           * Either there are no filter files
1239           * left, or this filter file just
1240           * contains no valid filters.
1241           *
1242           * Continue to be sure we don't miss
1243           * valid filter files that are chained
1244           * after empty or invalid ones.
1245           */
1246          continue;
1247       }
1248
1249       /* For all filters, */
1250       for (b = fl->f; b; b = b->next)
1251       {
1252          if (b->type != wanted_filter_type)
1253          {
1254             /* skip the ones we don't care about, */
1255             continue;
1256          }
1257          /* leaving only taggers that could apply, of which we use the ones, */
1258          for (tag_name = csp->action->multi[multi_action_index]->first;
1259               NULL != tag_name; tag_name = tag_name->next)
1260          {
1261             /* that do apply, and */
1262             if (strcmp(b->name, tag_name->str) == 0)
1263             {
1264                char *modified_tag = NULL;
1265                char *tag = header;
1266                size_t size = header_length;
1267                pcrs_job *joblist = b->joblist;
1268
1269                if (b->dynamic) joblist = compile_dynamic_pcrs_job_list(csp, b);
1270
1271                if (NULL == joblist)
1272                {
1273                   log_error(LOG_LEVEL_RE_FILTER,
1274                      "Tagger %s has empty joblist. Nothing to do.", b->name);
1275                   continue;
1276                }
1277
1278                /* execute their pcrs_joblist on the header. */
1279                for (job = joblist; NULL != job; job = job->next)
1280                {
1281                   const int hits = pcrs_execute(job, tag, size, &modified_tag, &size);
1282
1283                   if (0 < hits)
1284                   {
1285                      /* Success, continue with the modified version. */
1286                      if (tag != header)
1287                      {
1288                         freez(tag);
1289                      }
1290                      tag = modified_tag;
1291                   }
1292                   else
1293                   {
1294                      /* Tagger doesn't match */
1295                      if (0 > hits)
1296                      {
1297                         /* Regex failure, log it but continue anyway. */
1298                         assert(NULL != header);
1299                         log_error(LOG_LEVEL_ERROR,
1300                            "Problems with tagger \'%s\' and header \'%s\': %s",
1301                            b->name, *header, pcrs_strerror(hits));
1302                      }
1303                      freez(modified_tag);
1304                   }
1305                }
1306
1307                if (b->dynamic) pcrs_free_joblist(joblist);
1308
1309                /* If this tagger matched */
1310                if (tag != header)
1311                {
1312                   if (0 == size)
1313                   {
1314                      /*
1315                       * There is to technical limitation which makes
1316                       * it impossible to use empty tags, but I assume
1317                       * no one would do it intentionally.
1318                       */
1319                      freez(tag);
1320                      log_error(LOG_LEVEL_INFO,
1321                         "Tagger \'%s\' created an empty tag. Ignored.",
1322                         b->name);
1323                      continue;
1324                   }
1325  
1326                   if (!list_contains_item(csp->tags, tag))
1327                   {
1328                      if (JB_ERR_OK != enlist(csp->tags, tag))
1329                      {
1330                         log_error(LOG_LEVEL_ERROR,
1331                            "Insufficient memory to add tag \'%s\', "
1332                            "based on tagger \'%s\' and header \'%s\'",
1333                            tag, b->name, *header);
1334                      }
1335                      else
1336                      {
1337                         char *action_message;
1338                         /*
1339                          * update the action bits right away, to make
1340                          * tagging based on tags set by earlier taggers
1341                          * of the same kind possible.
1342                          */
1343                         if (update_action_bits_for_tag(csp, tag))
1344                         {
1345                            action_message = "Action bits updated accordingly.";
1346                         }
1347                         else
1348                         {
1349                            action_message = "No action bits update necessary.";
1350                         }
1351
1352                         log_error(LOG_LEVEL_HEADER,
1353                            "Tagger \'%s\' added tag \'%s\'. %s",
1354                            b->name, tag, action_message);
1355                      }
1356                   }
1357                   else
1358                   {
1359                      /* XXX: Is this log-worthy? */
1360                      log_error(LOG_LEVEL_HEADER,
1361                         "Tagger \'%s\' didn't add tag \'%s\'. "
1362                         "Tag already present", b->name, tag);
1363                   }
1364                   freez(tag);
1365                } /* if the tagger matched */
1366             } /* if the tagger applies */
1367          } /* for every tagger that could apply */
1368       } /* for all filters */
1369    } /* for all filter files */
1370
1371    return JB_ERR_OK;
1372 }
1373
1374 /* here begins the family of parser functions that reformat header lines */
1375
1376 /*********************************************************************
1377  *
1378  * Function    :  filter_header
1379  *
1380  * Description :  Executes all text substitutions from all applying
1381  *                +(server|client)-header-filter actions on the header.
1382  *                Most of the code was copied from pcrs_filter_response,
1383  *                including the rather short variable names
1384  *
1385  * Parameters  :
1386  *          1  :  csp = Current client state (buffers, headers, etc...)
1387  *          2  :  header = On input, pointer to header to modify.
1388  *                On output, pointer to the modified header, or NULL
1389  *                to remove the header.  This function frees the
1390  *                original string if necessary.
1391  *
1392  * Returns     :  JB_ERR_OK on success and always succeeds
1393  *
1394  *********************************************************************/
1395 static jb_err filter_header(struct client_state *csp, char **header)
1396 {
1397    int hits=0;
1398    int matches;
1399    size_t size = strlen(*header);
1400
1401    char *newheader = NULL;
1402    pcrs_job *job;
1403
1404    struct file_list *fl;
1405    struct re_filterfile_spec *b;
1406    struct list_entry *filtername;
1407
1408    int i;
1409    int wanted_filter_type;
1410    int multi_action_index;
1411
1412    if (csp->flags & CSP_FLAG_NO_FILTERING)
1413    {
1414       return JB_ERR_OK;
1415    }
1416
1417    if (csp->flags & CSP_FLAG_CLIENT_HEADER_PARSING_DONE)
1418    {
1419       wanted_filter_type = FT_SERVER_HEADER_FILTER;
1420       multi_action_index = ACTION_MULTI_SERVER_HEADER_FILTER;
1421    }
1422    else
1423    {
1424       wanted_filter_type = FT_CLIENT_HEADER_FILTER;
1425       multi_action_index = ACTION_MULTI_CLIENT_HEADER_FILTER;
1426    }
1427
1428    if (filters_available(csp) == FALSE)
1429    {
1430       log_error(LOG_LEVEL_ERROR, "Inconsistent configuration: "
1431          "header filtering enabled, but no matching filters available.");
1432       return JB_ERR_OK;
1433    }
1434
1435    for (i = 0; i < MAX_AF_FILES; i++)
1436    {
1437       fl = csp->rlist[i];
1438       if ((NULL == fl) || (NULL == fl->f))
1439       {
1440          /*
1441           * Either there are no filter files
1442           * left, or this filter file just
1443           * contains no valid filters.
1444           *
1445           * Continue to be sure we don't miss
1446           * valid filter files that are chained
1447           * after empty or invalid ones.
1448           */
1449          continue;
1450       }
1451       /*
1452        * For all applying +filter actions, look if a filter by that
1453        * name exists and if yes, execute its pcrs_joblist on the
1454        * buffer.
1455        */
1456       for (b = fl->f; b; b = b->next)
1457       {
1458          if (b->type != wanted_filter_type)
1459          {
1460             /* Skip other filter types */
1461             continue;
1462          }
1463
1464          for (filtername = csp->action->multi[multi_action_index]->first;
1465               filtername ; filtername = filtername->next)
1466          {
1467             if (strcmp(b->name, filtername->str) == 0)
1468             {
1469                int current_hits = 0;
1470                pcrs_job *joblist = b->joblist;
1471
1472                if (b->dynamic) joblist = compile_dynamic_pcrs_job_list(csp, b);
1473
1474                if (NULL == joblist)
1475                {
1476                   log_error(LOG_LEVEL_RE_FILTER, "Filter %s has empty joblist. Nothing to do.", b->name);
1477                   continue;
1478                }
1479
1480                log_error(LOG_LEVEL_RE_FILTER, "filtering \'%s\' (size %d) with \'%s\' ...",
1481                          *header, size, b->name);
1482
1483                /* Apply all jobs from the joblist */
1484                for (job = joblist; NULL != job; job = job->next)
1485                {
1486                   matches = pcrs_execute(job, *header, size, &newheader, &size);
1487                   if ( 0 < matches )
1488                   {
1489                      current_hits += matches; 
1490                      log_error(LOG_LEVEL_HEADER, "Transforming \"%s\" to \"%s\"", *header, newheader);
1491                      freez(*header);
1492                      *header = newheader;
1493                   }
1494                   else if ( 0 == matches )
1495                   {
1496                      /* Filter doesn't change header */
1497                      freez(newheader);
1498                   }
1499                   else
1500                   {
1501                      /* RegEx failure */
1502                      log_error(LOG_LEVEL_ERROR, "Filtering \'%s\' with \'%s\' didn't work out: %s",
1503                         *header, b->name, pcrs_strerror(matches));
1504                      if (newheader != NULL)
1505                      {
1506                         log_error(LOG_LEVEL_ERROR, "Freeing what's left: %s", newheader);
1507                         freez(newheader);
1508                      }
1509                   }
1510                }
1511
1512                if (b->dynamic) pcrs_free_joblist(joblist);
1513
1514                log_error(LOG_LEVEL_RE_FILTER, "... produced %d hits (new size %d).", current_hits, size);
1515                hits += current_hits;
1516             }
1517          }
1518       }
1519    }
1520
1521    /*
1522     * Additionally checking for hits is important because if
1523     * the continue hack is triggered, server headers can
1524     * arrive empty to separate multiple heads from each other.
1525     */
1526    if ((0 == size) && hits)
1527    {
1528       log_error(LOG_LEVEL_HEADER, "Removing empty header %s", *header);
1529       freez(*header);
1530    }
1531
1532    return JB_ERR_OK;
1533 }
1534
1535
1536 /*********************************************************************
1537  *
1538  * Function    :  server_connection
1539  *
1540  * Description :  Makes sure a proper "Connection:" header is
1541  *                set and signals connection_header_adder to
1542  *                do nothing.
1543  *
1544  * Parameters  :
1545  *          1  :  csp = Current client state (buffers, headers, etc...)
1546  *          2  :  header = On input, pointer to header to modify.
1547  *                On output, pointer to the modified header, or NULL
1548  *                to remove the header.  This function frees the
1549  *                original string if necessary.
1550  *
1551  * Returns     :  JB_ERR_OK on success, or
1552  *                JB_ERR_MEMORY on out-of-memory error.
1553  *
1554  *********************************************************************/
1555 static jb_err server_connection(struct client_state *csp, char **header)
1556 {
1557    if (!strcmpic(*header, "Connection: keep-alive")
1558 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
1559     && !(csp->flags & CSP_FLAG_SERVER_SOCKET_TAINTED)
1560 #endif
1561       )
1562    {
1563 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
1564       if ((csp->config->feature_flags & RUNTIME_FEATURE_CONNECTION_KEEP_ALIVE))
1565       {
1566          csp->flags |= CSP_FLAG_SERVER_CONNECTION_KEEP_ALIVE;
1567       }
1568
1569       if ((csp->flags & CSP_FLAG_CLIENT_CONNECTION_KEEP_ALIVE))
1570       {
1571          log_error(LOG_LEVEL_HEADER,
1572             "Keeping the server header '%s' around.", *header);
1573       }
1574       else
1575 #endif /* FEATURE_CONNECTION_KEEP_ALIVE */
1576       {
1577          char *old_header = *header;
1578
1579          *header = strdup("Connection: close");
1580          if (header == NULL)
1581          {
1582             return JB_ERR_MEMORY;
1583          }
1584          log_error(LOG_LEVEL_HEADER, "Replaced: \'%s\' with \'%s\'", old_header, *header);
1585          freez(old_header);
1586       }
1587    }
1588
1589    /* Signal server_connection_adder() to return early. */
1590    csp->flags |= CSP_FLAG_SERVER_CONNECTION_HEADER_SET;
1591
1592    return JB_ERR_OK;
1593 }
1594
1595
1596 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
1597 /*********************************************************************
1598  *
1599  * Function    :  server_keep_alive
1600  *
1601  * Description :  Stores the server's keep alive timeout.
1602  *
1603  * Parameters  :
1604  *          1  :  csp = Current client state (buffers, headers, etc...)
1605  *          2  :  header = On input, pointer to header to modify.
1606  *                On output, pointer to the modified header, or NULL
1607  *                to remove the header.  This function frees the
1608  *                original string if necessary.
1609  *
1610  * Returns     :  JB_ERR_OK.
1611  *
1612  *********************************************************************/
1613 static jb_err server_keep_alive(struct client_state *csp, char **header)
1614 {
1615    unsigned int keep_alive_timeout;
1616    const char *timeout_position = strstr(*header, "timeout=");
1617
1618    if ((NULL == timeout_position)
1619     || (1 != sscanf(timeout_position, "timeout=%u", &keep_alive_timeout)))
1620    {
1621       log_error(LOG_LEVEL_ERROR, "Couldn't parse: %s", *header);
1622    }
1623    else
1624    {
1625       if (keep_alive_timeout < csp->server_connection.keep_alive_timeout)
1626       {
1627          log_error(LOG_LEVEL_HEADER,
1628             "Reducing keep-alive timeout from %u to %u.",
1629             csp->server_connection.keep_alive_timeout, keep_alive_timeout);
1630          csp->server_connection.keep_alive_timeout = keep_alive_timeout;
1631       }
1632       else
1633       {
1634          /* XXX: Is this log worthy? */
1635          log_error(LOG_LEVEL_HEADER,
1636             "Server keep-alive timeout is %u. Sticking with %u.",
1637             keep_alive_timeout, csp->server_connection.keep_alive_timeout);
1638       }
1639       csp->flags |= CSP_FLAG_SERVER_KEEP_ALIVE_TIMEOUT_SET;
1640    }
1641
1642    return JB_ERR_OK;
1643 }
1644
1645
1646 /*********************************************************************
1647  *
1648  * Function    :  server_proxy_connection
1649  *
1650  * Description :  Figures out whether or not we should add a
1651  *                Proxy-Connection header.
1652  *
1653  * Parameters  :
1654  *          1  :  csp = Current client state (buffers, headers, etc...)
1655  *          2  :  header = On input, pointer to header to modify.
1656  *                On output, pointer to the modified header, or NULL
1657  *                to remove the header.  This function frees the
1658  *                original string if necessary.
1659  *
1660  * Returns     :  JB_ERR_OK.
1661  *
1662  *********************************************************************/
1663 static jb_err server_proxy_connection(struct client_state *csp, char **header)
1664 {
1665    csp->flags |= CSP_FLAG_SERVER_PROXY_CONNECTION_HEADER_SET;
1666    return JB_ERR_OK;
1667 }
1668
1669
1670 /*********************************************************************
1671  *
1672  * Function    :  client_keep_alive
1673  *
1674  * Description :  Stores the client's keep alive timeout.
1675  *
1676  * Parameters  :
1677  *          1  :  csp = Current client state (buffers, headers, etc...)
1678  *          2  :  header = On input, pointer to header to modify.
1679  *                On output, pointer to the modified header, or NULL
1680  *                to remove the header.  This function frees the
1681  *                original string if necessary.
1682  *
1683  * Returns     :  JB_ERR_OK.
1684  *
1685  *********************************************************************/
1686 static jb_err client_keep_alive(struct client_state *csp, char **header)
1687 {
1688    unsigned int keep_alive_timeout;
1689    const char *timeout_position = strstr(*header, ": ");
1690
1691    if (!(csp->config->feature_flags & RUNTIME_FEATURE_CONNECTION_KEEP_ALIVE))
1692    {
1693       log_error(LOG_LEVEL_HEADER,
1694          "keep-alive support is disabled. Crunching: %s.", *header);
1695       freez(*header);
1696       return JB_ERR_OK;
1697    }
1698
1699    if ((NULL == timeout_position)
1700     || (1 != sscanf(timeout_position, ": %u", &keep_alive_timeout)))
1701    {
1702       log_error(LOG_LEVEL_ERROR, "Couldn't parse: %s", *header);
1703    }
1704    else
1705    {
1706       if (keep_alive_timeout < csp->config->keep_alive_timeout)
1707       {
1708          log_error(LOG_LEVEL_HEADER,
1709             "Reducing keep-alive timeout from %u to %u.",
1710             csp->config->keep_alive_timeout, keep_alive_timeout);
1711          csp->server_connection.keep_alive_timeout = keep_alive_timeout;
1712       }
1713       else
1714       {
1715          /* XXX: Is this log worthy? */
1716          log_error(LOG_LEVEL_HEADER,
1717             "Client keep-alive timeout is %u. Sticking with %u.",
1718             keep_alive_timeout, csp->config->keep_alive_timeout);
1719       }
1720    }
1721
1722    return JB_ERR_OK;
1723 }
1724
1725
1726 /*********************************************************************
1727  *
1728  * Function    :  get_content_length
1729  *
1730  * Description :  Gets the content length specified in a
1731  *                Content-Length header.
1732  *
1733  * Parameters  :
1734  *          1  :  header = The Content-Length header.
1735  *          2  :  length = Storage to return the value.
1736  *
1737  * Returns     :  JB_ERR_OK on success, or
1738  *                JB_ERR_PARSE if no value is recognized.
1739  *
1740  *********************************************************************/
1741 static jb_err get_content_length(const char *header, unsigned long long *length)
1742 {
1743    assert(header[14] == ':');
1744
1745 #ifdef _WIN32
1746    assert(sizeof(unsigned long long) > 4);
1747    if (1 != sscanf(header+14, ": %I64u", length))
1748 #else
1749    if (1 != sscanf(header+14, ": %llu", length))
1750 #endif
1751    {
1752       return JB_ERR_PARSE;
1753    }
1754
1755    return JB_ERR_OK;
1756 }
1757
1758
1759 /*********************************************************************
1760  *
1761  * Function    :  client_save_content_length
1762  *
1763  * Description :  Save the Content-Length sent by the client.
1764  *
1765  * Parameters  :
1766  *          1  :  csp = Current client state (buffers, headers, etc...)
1767  *          2  :  header = On input, pointer to header to modify.
1768  *                On output, pointer to the modified header, or NULL
1769  *                to remove the header.  This function frees the
1770  *                original string if necessary.
1771  *
1772  * Returns     :  JB_ERR_OK on success, or
1773  *                JB_ERR_MEMORY on out-of-memory error.
1774  *
1775  *********************************************************************/
1776 static jb_err client_save_content_length(struct client_state *csp, char **header)
1777 {
1778    unsigned long long content_length = 0;
1779
1780    assert(*(*header+14) == ':');
1781
1782    if (JB_ERR_OK != get_content_length(*header, &content_length))
1783    {
1784       log_error(LOG_LEVEL_ERROR, "Crunching invalid header: %s", *header);
1785       freez(*header);
1786    }
1787    else
1788    {
1789       csp->expected_client_content_length = content_length;
1790    }
1791
1792    return JB_ERR_OK;
1793 }
1794 #endif /* def FEATURE_CONNECTION_KEEP_ALIVE */
1795
1796
1797
1798 /*********************************************************************
1799  *
1800  * Function    :  client_connection
1801  *
1802  * Description :  Makes sure a proper "Connection:" header is
1803  *                set and signals connection_header_adder 
1804  *                to do nothing.
1805  *
1806  * Parameters  :
1807  *          1  :  csp = Current client state (buffers, headers, etc...)
1808  *          2  :  header = On input, pointer to header to modify.
1809  *                On output, pointer to the modified header, or NULL
1810  *                to remove the header.  This function frees the
1811  *                original string if necessary.
1812  *
1813  * Returns     :  JB_ERR_OK on success, or
1814  *                JB_ERR_MEMORY on out-of-memory error.
1815  *
1816  *********************************************************************/
1817 static jb_err client_connection(struct client_state *csp, char **header)
1818 {
1819    static const char connection_close[] = "Connection: close";
1820
1821    if (!strcmpic(*header, connection_close))
1822    {
1823 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
1824       if ((csp->config->feature_flags & RUNTIME_FEATURE_CONNECTION_SHARING))
1825       {
1826           if (!strcmpic(csp->http->ver, "HTTP/1.1"))
1827           {
1828              log_error(LOG_LEVEL_HEADER,
1829                 "Removing \'%s\' to imply keep-alive.", *header);
1830              freez(*header);
1831           }
1832           else
1833           {
1834              char *old_header = *header;
1835
1836              *header = strdup("Connection: keep-alive");
1837              if (header == NULL)
1838              {
1839                 return JB_ERR_MEMORY;
1840              }
1841              log_error(LOG_LEVEL_HEADER,
1842                 "Replaced: \'%s\' with \'%s\'", old_header, *header);
1843              freez(old_header);
1844           }
1845       }
1846       else
1847       {
1848          log_error(LOG_LEVEL_HEADER,
1849             "Keeping the client header '%s' around. "
1850             "The connection will not be kept alive.",
1851             *header);
1852          csp->flags &= ~CSP_FLAG_CLIENT_CONNECTION_KEEP_ALIVE;
1853       }
1854    }
1855    else if ((csp->config->feature_flags & RUNTIME_FEATURE_CONNECTION_KEEP_ALIVE))
1856    {
1857       log_error(LOG_LEVEL_HEADER,
1858          "Keeping the client header '%s' around. "
1859          "The server connection will be kept alive if possible.",
1860          *header);
1861       csp->flags |= CSP_FLAG_CLIENT_CONNECTION_KEEP_ALIVE;
1862 #endif  /* def FEATURE_CONNECTION_KEEP_ALIVE */
1863    }
1864    else
1865    {
1866       char *old_header = *header;
1867
1868       *header = strdup(connection_close);
1869       if (header == NULL)
1870       {
1871          return JB_ERR_MEMORY;
1872       }
1873       log_error(LOG_LEVEL_HEADER,
1874          "Replaced: \'%s\' with \'%s\'", old_header, *header);
1875       freez(old_header);
1876    }
1877
1878    /* Signal client_connection_adder() to return early. */
1879    csp->flags |= CSP_FLAG_CLIENT_CONNECTION_HEADER_SET;
1880
1881    return JB_ERR_OK;
1882 }
1883
1884
1885 /*********************************************************************
1886  *
1887  * Function    :  crumble
1888  *
1889  * Description :  This is called if a header matches a pattern to "crunch"
1890  *
1891  * Parameters  :
1892  *          1  :  csp = Current client state (buffers, headers, etc...)
1893  *          2  :  header = On input, pointer to header to modify.
1894  *                On output, pointer to the modified header, or NULL
1895  *                to remove the header.  This function frees the
1896  *                original string if necessary.
1897  *
1898  * Returns     :  JB_ERR_OK on success, or
1899  *                JB_ERR_MEMORY on out-of-memory error.
1900  *
1901  *********************************************************************/
1902 static jb_err crumble(struct client_state *csp, char **header)
1903 {
1904    (void)csp;
1905    log_error(LOG_LEVEL_HEADER, "crumble crunched: %s!", *header);
1906    freez(*header);
1907    return JB_ERR_OK;
1908 }
1909
1910
1911 /*********************************************************************
1912  *
1913  * Function    :  crunch_server_header
1914  *
1915  * Description :  Crunch server header if it matches a string supplied by the
1916  *                user. Called from `sed'.
1917  *
1918  * Parameters  :
1919  *          1  :  csp = Current client state (buffers, headers, etc...)
1920  *          2  :  header = On input, pointer to header to modify.
1921  *                On output, pointer to the modified header, or NULL
1922  *                to remove the header.  This function frees the
1923  *                original string if necessary.
1924  *
1925  * Returns     :  JB_ERR_OK on success and always succeeds
1926  *
1927  *********************************************************************/
1928 static jb_err crunch_server_header(struct client_state *csp, char **header)
1929 {
1930    const char *crunch_pattern;
1931
1932    /* Do we feel like crunching? */
1933    if ((csp->action->flags & ACTION_CRUNCH_SERVER_HEADER))
1934    {
1935       crunch_pattern = csp->action->string[ACTION_STRING_SERVER_HEADER];
1936
1937       /* Is the current header the lucky one? */
1938       if (strstr(*header, crunch_pattern))
1939       {
1940          log_error(LOG_LEVEL_HEADER, "Crunching server header: %s (contains: %s)", *header, crunch_pattern);  
1941          freez(*header);
1942       }
1943    }
1944
1945    return JB_ERR_OK;
1946 }
1947
1948
1949 /*********************************************************************
1950  *
1951  * Function    :  server_content_type
1952  *
1953  * Description :  Set the content-type for filterable types (text/.*,
1954  *                .*xml.*, javascript and image/gif) unless filtering has been
1955  *                forbidden (CT_TABOO) while parsing earlier headers.
1956  *                NOTE: Since text/plain is commonly used by web servers
1957  *                      for files whose correct type is unknown, we don't
1958  *                      set CT_TEXT for it.
1959  *
1960  * Parameters  :
1961  *          1  :  csp = Current client state (buffers, headers, etc...)
1962  *          2  :  header = On input, pointer to header to modify.
1963  *                On output, pointer to the modified header, or NULL
1964  *                to remove the header.  This function frees the
1965  *                original string if necessary.
1966  *
1967  * Returns     :  JB_ERR_OK on success, or
1968  *                JB_ERR_MEMORY on out-of-memory error.
1969  *
1970  *********************************************************************/
1971 static jb_err server_content_type(struct client_state *csp, char **header)
1972 {
1973    /* Remove header if it isn't the first Content-Type header */
1974    if ((csp->content_type & CT_DECLARED))
1975    {
1976      /*
1977       * Another, slightly slower, way to see if
1978       * we already parsed another Content-Type header.
1979       */
1980       assert(NULL != get_header_value(csp->headers, "Content-Type:"));
1981
1982       log_error(LOG_LEVEL_ERROR,
1983          "Multiple Content-Type headers. Removing and ignoring: \'%s\'",
1984          *header);
1985       freez(*header);
1986
1987       return JB_ERR_OK;
1988    }
1989
1990    /*
1991     * Signal that the Content-Type has been set.
1992     */
1993    csp->content_type |= CT_DECLARED;
1994
1995    if (!(csp->content_type & CT_TABOO))
1996    {
1997       /*
1998        * XXX: The assumption that text/plain is a sign of
1999        * binary data seems to be somewhat unreasonable nowadays
2000        * and should be dropped after 3.0.8 is out.
2001        */
2002       if ((strstr(*header, "text/") && !strstr(*header, "plain"))
2003         || strstr(*header, "xml")
2004         || strstr(*header, "application/x-javascript"))
2005       {
2006          csp->content_type |= CT_TEXT;
2007       }
2008       else if (strstr(*header, "image/gif"))
2009       {
2010          csp->content_type |= CT_GIF;
2011       }
2012    }
2013
2014    /*
2015     * Are we messing with the content type?
2016     */
2017    if (csp->action->flags & ACTION_CONTENT_TYPE_OVERWRITE)
2018    {
2019       /*
2020        * Make sure the user doesn't accidently
2021        * change the content type of binary documents. 
2022        */
2023       if ((csp->content_type & CT_TEXT) || (csp->action->flags & ACTION_FORCE_TEXT_MODE))
2024       {
2025          freez(*header);
2026          *header = strdup("Content-Type: ");
2027          string_append(header, csp->action->string[ACTION_STRING_CONTENT_TYPE]);
2028
2029          if (header == NULL)
2030          {
2031             log_error(LOG_LEVEL_HEADER, "Insufficient memory to replace Content-Type!");
2032             return JB_ERR_MEMORY;
2033          }
2034          log_error(LOG_LEVEL_HEADER, "Modified: %s!", *header);
2035       }
2036       else
2037       {
2038          log_error(LOG_LEVEL_HEADER, "%s not replaced. "
2039             "It doesn't look like a content type that should be filtered. "
2040             "Enable force-text-mode if you know what you're doing.", *header);
2041       }
2042    }
2043
2044    return JB_ERR_OK;
2045 }
2046
2047
2048 /*********************************************************************
2049  *
2050  * Function    :  server_transfer_coding
2051  *
2052  * Description :  - Prohibit filtering (CT_TABOO) if transfer coding compresses
2053  *                - Raise the CSP_FLAG_CHUNKED flag if coding is "chunked"
2054  *                - Remove header if body was chunked but has been
2055  *                  de-chunked for filtering.
2056  *
2057  * Parameters  :
2058  *          1  :  csp = Current client state (buffers, headers, etc...)
2059  *          2  :  header = On input, pointer to header to modify.
2060  *                On output, pointer to the modified header, or NULL
2061  *                to remove the header.  This function frees the
2062  *                original string if necessary.
2063  *
2064  * Returns     :  JB_ERR_OK on success, or
2065  *                JB_ERR_MEMORY on out-of-memory error.
2066  *
2067  *********************************************************************/
2068 static jb_err server_transfer_coding(struct client_state *csp, char **header)
2069 {
2070    /*
2071     * Turn off pcrs and gif filtering if body compressed
2072     */
2073    if (strstr(*header, "gzip") || strstr(*header, "compress") || strstr(*header, "deflate"))
2074    {
2075 #ifdef FEATURE_ZLIB
2076       /*
2077        * XXX: Added to test if we could use CT_GZIP and CT_DEFLATE here.
2078        */
2079       log_error(LOG_LEVEL_INFO, "Marking content type for %s as CT_TABOO because of %s.",
2080          csp->http->cmd, *header);
2081 #endif /* def FEATURE_ZLIB */
2082       csp->content_type = CT_TABOO;
2083    }
2084
2085    /*
2086     * Raise flag if body chunked
2087     */
2088    if (strstr(*header, "chunked"))
2089    {
2090       csp->flags |= CSP_FLAG_CHUNKED;
2091
2092       /*
2093        * If the body was modified, it has been de-chunked first
2094        * and the header must be removed.
2095        *
2096        * FIXME: If there is more than one transfer encoding,
2097        * only the "chunked" part should be removed here.
2098        */
2099       if (csp->flags & CSP_FLAG_MODIFIED)
2100       {
2101          log_error(LOG_LEVEL_HEADER, "Removing: %s", *header);
2102          freez(*header);
2103       }
2104    }
2105
2106    return JB_ERR_OK;
2107 }
2108
2109
2110 /*********************************************************************
2111  *
2112  * Function    :  server_content_encoding
2113  *
2114  * Description :  This function is run twice for each request,
2115  *                unless FEATURE_ZLIB and filtering are disabled.
2116  *
2117  *                The first run is used to check if the content
2118  *                is compressed, if FEATURE_ZLIB is disabled
2119  *                filtering is then disabled as well, if FEATURE_ZLIB
2120  *                is enabled the content is marked for decompression.
2121  *                
2122  *                The second run is used to remove the Content-Encoding
2123  *                header if the decompression was successful.
2124  *
2125  * Parameters  :
2126  *          1  :  csp = Current client state (buffers, headers, etc...)
2127  *          2  :  header = On input, pointer to header to modify.
2128  *                On output, pointer to the modified header, or NULL
2129  *                to remove the header.  This function frees the
2130  *                original string if necessary.
2131  *
2132  * Returns     :  JB_ERR_OK on success, or
2133  *                JB_ERR_MEMORY on out-of-memory error.
2134  *
2135  *********************************************************************/
2136 static jb_err server_content_encoding(struct client_state *csp, char **header)
2137 {
2138 #ifdef FEATURE_ZLIB
2139    if ((csp->flags & CSP_FLAG_MODIFIED)
2140     && (csp->content_type & (CT_GZIP | CT_DEFLATE)))
2141    {
2142       /*
2143        * We successfully decompressed the content,
2144        * and have to clean the header now, so the
2145        * client no longer expects compressed data..
2146        *
2147        * XXX: There is a difference between cleaning
2148        * and removing it completely.
2149        */
2150       log_error(LOG_LEVEL_HEADER, "Crunching: %s", *header);
2151       freez(*header);
2152    }
2153    else if (strstr(*header, "gzip"))
2154    {
2155       /* Mark for gzip decompression */
2156       csp->content_type |= CT_GZIP;
2157    }
2158    else if (strstr(*header, "deflate"))
2159    {
2160       /* Mark for zlib decompression */
2161       csp->content_type |= CT_DEFLATE;
2162    }
2163    else if (strstr(*header, "compress"))
2164    {
2165       /*
2166        * We can't decompress this; therefore we can't filter
2167        * it either.
2168        */
2169       csp->content_type |= CT_TABOO;
2170    }
2171 #else /* !defined(FEATURE_ZLIB) */
2172    if (strstr(*header, "gzip") || strstr(*header, "compress") || strstr(*header, "deflate"))
2173    {
2174       /*
2175        * Body is compressed, turn off pcrs and gif filtering.
2176        */
2177       csp->content_type |= CT_TABOO;
2178
2179       /*
2180        * Log a warning if the user expects the content to be filtered.
2181        */
2182       if ((csp->rlist != NULL) &&
2183          (!list_is_empty(csp->action->multi[ACTION_MULTI_FILTER])))
2184       {
2185          log_error(LOG_LEVEL_INFO,
2186             "Compressed content detected, content filtering disabled. "
2187             "Consider recompiling Privoxy with zlib support or "
2188             "enable the prevent-compression action.");
2189       }
2190    }
2191 #endif /* defined(FEATURE_ZLIB) */
2192
2193    return JB_ERR_OK;
2194
2195 }
2196
2197
2198 /*********************************************************************
2199  *
2200  * Function    :  server_adjust_content_length
2201  *
2202  * Description :  Adjust Content-Length header if we modified
2203  *                the body.
2204  *
2205  * Parameters  :
2206  *          1  :  csp = Current client state (buffers, headers, etc...)
2207  *          2  :  header = On input, pointer to header to modify.
2208  *                On output, pointer to the modified header, or NULL
2209  *                to remove the header.  This function frees the
2210  *                original string if necessary.
2211  *
2212  * Returns     :  JB_ERR_OK on success, or
2213  *                JB_ERR_MEMORY on out-of-memory error.
2214  *
2215  *********************************************************************/
2216 static jb_err server_adjust_content_length(struct client_state *csp, char **header)
2217 {
2218    /* Regenerate header if the content was modified. */
2219    if (csp->flags & CSP_FLAG_MODIFIED)
2220    {
2221       const size_t header_length = 50;
2222       freez(*header);
2223       *header = malloc(header_length);
2224       if (*header == NULL)
2225       {
2226          return JB_ERR_MEMORY;
2227       }
2228       create_content_length_header(csp->content_length, *header, header_length);
2229       log_error(LOG_LEVEL_HEADER,
2230          "Adjusted Content-Length to %llu", csp->content_length);
2231    }
2232
2233    return JB_ERR_OK;
2234 }
2235
2236
2237 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
2238 /*********************************************************************
2239  *
2240  * Function    :  server_save_content_length
2241  *
2242  * Description :  Save the Content-Length sent by the server.
2243  *
2244  * Parameters  :
2245  *          1  :  csp = Current client state (buffers, headers, etc...)
2246  *          2  :  header = On input, pointer to header to modify.
2247  *                On output, pointer to the modified header, or NULL
2248  *                to remove the header.  This function frees the
2249  *                original string if necessary.
2250  *
2251  * Returns     :  JB_ERR_OK on success, or
2252  *                JB_ERR_MEMORY on out-of-memory error.
2253  *
2254  *********************************************************************/
2255 static jb_err server_save_content_length(struct client_state *csp, char **header)
2256 {
2257    unsigned long long content_length = 0;
2258
2259    assert(*(*header+14) == ':');
2260
2261    if (JB_ERR_OK != get_content_length(*header, &content_length))
2262    {
2263       log_error(LOG_LEVEL_ERROR, "Crunching invalid header: %s", *header);
2264       freez(*header);
2265    }
2266    else
2267    {
2268       csp->expected_content_length = content_length;
2269       csp->flags |= CSP_FLAG_SERVER_CONTENT_LENGTH_SET;
2270       csp->flags |= CSP_FLAG_CONTENT_LENGTH_SET;
2271    }
2272
2273    return JB_ERR_OK;
2274 }
2275 #endif /* def FEATURE_CONNECTION_KEEP_ALIVE */
2276
2277
2278 /*********************************************************************
2279  *
2280  * Function    :  server_content_md5
2281  *
2282  * Description :  Crumble any Content-MD5 headers if the document was
2283  *                modified. FIXME: Should we re-compute instead?
2284  *
2285  * Parameters  :
2286  *          1  :  csp = Current client state (buffers, headers, etc...)
2287  *          2  :  header = On input, pointer to header to modify.
2288  *                On output, pointer to the modified header, or NULL
2289  *                to remove the header.  This function frees the
2290  *                original string if necessary.
2291  *
2292  * Returns     :  JB_ERR_OK on success, or
2293  *                JB_ERR_MEMORY on out-of-memory error.
2294  *
2295  *********************************************************************/
2296 static jb_err server_content_md5(struct client_state *csp, char **header)
2297 {
2298    if (csp->flags & CSP_FLAG_MODIFIED)
2299    {
2300       log_error(LOG_LEVEL_HEADER, "Crunching Content-MD5");
2301       freez(*header);
2302    }
2303
2304    return JB_ERR_OK;
2305 }
2306
2307
2308 /*********************************************************************
2309  *
2310  * Function    :  server_content_disposition
2311  *
2312  * Description :  If enabled, blocks or modifies the "Content-Disposition" header.
2313  *                Called from `sed'.
2314  *
2315  * Parameters  :
2316  *          1  :  csp = Current client state (buffers, headers, etc...)
2317  *          2  :  header = On input, pointer to header to modify.
2318  *                On output, pointer to the modified header, or NULL
2319  *                to remove the header.  This function frees the
2320  *                original string if necessary.
2321  *
2322  * Returns     :  JB_ERR_OK on success, or
2323  *                JB_ERR_MEMORY on out-of-memory error.
2324  *
2325  *********************************************************************/
2326 static jb_err server_content_disposition(struct client_state *csp, char **header)
2327 {
2328    const char *newval;
2329
2330    /*
2331     * Are we messing with the Content-Disposition header?
2332     */
2333    if ((csp->action->flags & ACTION_HIDE_CONTENT_DISPOSITION) == 0)
2334    {
2335       /* Me tinks not */
2336       return JB_ERR_OK;
2337    }
2338
2339    newval = csp->action->string[ACTION_STRING_CONTENT_DISPOSITION];
2340
2341    if ((newval == NULL) || (0 == strcmpic(newval, "block")))
2342    {
2343       /*
2344        * Blocking content-disposition header
2345        */
2346       log_error(LOG_LEVEL_HEADER, "Crunching %s!", *header);
2347       freez(*header);
2348       return JB_ERR_OK;
2349    }
2350    else
2351    {  
2352       /*
2353        * Replacing Content-Disposition header
2354        */
2355       freez(*header);
2356       *header = strdup("Content-Disposition: ");
2357       string_append(header, newval);
2358
2359       if (*header != NULL)
2360       {
2361          log_error(LOG_LEVEL_HEADER,
2362             "Content-Disposition header crunched and replaced with: %s", *header);
2363       }
2364    }
2365    return (*header == NULL) ? JB_ERR_MEMORY : JB_ERR_OK;
2366 }
2367
2368
2369 /*********************************************************************
2370  *
2371  * Function    :  server_last_modified
2372  *
2373  * Description :  Changes Last-Modified header to the actual date
2374  *                to help hide-if-modified-since.
2375  *                Called from `sed'.
2376  *
2377  * Parameters  :
2378  *          1  :  csp = Current client state (buffers, headers, etc...)
2379  *          2  :  header = On input, pointer to header to modify.
2380  *                On output, pointer to the modified header, or NULL
2381  *                to remove the header.  This function frees the
2382  *                original string if necessary.
2383  *
2384  * Returns     :  JB_ERR_OK on success, or
2385  *                JB_ERR_MEMORY on out-of-memory error.
2386  *
2387  *********************************************************************/
2388 static jb_err server_last_modified(struct client_state *csp, char **header)
2389 {
2390    const char *newval;
2391    char buf[BUFFER_SIZE];
2392
2393    char newheader[50];
2394 #ifdef HAVE_GMTIME_R
2395    struct tm gmt;
2396 #endif
2397    struct tm *timeptr = NULL;
2398    time_t now, last_modified;                  
2399    long int days, hours, minutes, seconds;
2400    
2401    /*
2402     * Are we messing with the Last-Modified header?
2403     */
2404    if ((csp->action->flags & ACTION_OVERWRITE_LAST_MODIFIED) == 0)
2405    {
2406       /*Nope*/
2407       return JB_ERR_OK;
2408    }
2409
2410    newval = csp->action->string[ACTION_STRING_LAST_MODIFIED];
2411
2412    if (0 == strcmpic(newval, "block") )
2413    {
2414       /*
2415        * Blocking Last-Modified header. Useless but why not.
2416        */
2417       log_error(LOG_LEVEL_HEADER, "Crunching %s!", *header);
2418       freez(*header);
2419       return JB_ERR_OK;
2420    }
2421    else if (0 == strcmpic(newval, "reset-to-request-time"))
2422    {  
2423       /*
2424        * Setting Last-Modified Header to now.
2425        */
2426       get_http_time(0, buf, sizeof(buf));
2427       freez(*header);
2428       *header = strdup("Last-Modified: ");
2429       string_append(header, buf);   
2430
2431       if (*header == NULL)
2432       {
2433          log_error(LOG_LEVEL_HEADER, "Insufficient memory. Last-Modified header got lost, boohoo.");  
2434       }
2435       else
2436       {
2437          log_error(LOG_LEVEL_HEADER, "Reset to present time: %s", *header);
2438       }
2439    }
2440    else if (0 == strcmpic(newval, "randomize"))
2441    {
2442       const char *header_time = *header + sizeof("Last-Modified:");
2443
2444       log_error(LOG_LEVEL_HEADER, "Randomizing: %s", *header);
2445       now = time(NULL);
2446 #ifdef HAVE_GMTIME_R
2447       gmtime_r(&now, &gmt);
2448 #elif defined(MUTEX_LOCKS_AVAILABLE)
2449       privoxy_mutex_lock(&gmtime_mutex);
2450       gmtime(&now);
2451       privoxy_mutex_unlock(&gmtime_mutex);
2452 #else
2453       gmtime(&now);
2454 #endif
2455       if (JB_ERR_OK != parse_header_time(header_time, &last_modified))
2456       {
2457          log_error(LOG_LEVEL_HEADER, "Couldn't parse: %s in %s (crunching!)", header_time, *header);
2458          freez(*header);
2459       }
2460       else
2461       {
2462          long int rtime = (long int)difftime(now, last_modified);
2463          if (rtime)
2464          {
2465             const int negative_delta = (rtime < 0);
2466
2467             if (negative_delta)
2468             {
2469                rtime *= -1; 
2470                log_error(LOG_LEVEL_HEADER, "Server time in the future.");
2471             }
2472             rtime = pick_from_range(rtime);
2473             if (negative_delta)
2474             {
2475                rtime *= -1;
2476             }
2477             last_modified += rtime;
2478 #ifdef HAVE_GMTIME_R
2479             timeptr = gmtime_r(&last_modified, &gmt);
2480 #elif defined(MUTEX_LOCKS_AVAILABLE)
2481             privoxy_mutex_lock(&gmtime_mutex);
2482             timeptr = gmtime(&last_modified);
2483             privoxy_mutex_unlock(&gmtime_mutex);
2484 #else
2485             timeptr = gmtime(&last_modified);
2486 #endif
2487             if ((NULL == timeptr) || !strftime(newheader,
2488                   sizeof(newheader), "%a, %d %b %Y %H:%M:%S GMT", timeptr))
2489             {
2490                log_error(LOG_LEVEL_ERROR,
2491                   "Randomizing '%s' failed. Crunching the header without replacement.",
2492                   *header);
2493                freez(*header);
2494                return JB_ERR_OK;
2495             }
2496
2497             freez(*header);
2498             *header = strdup("Last-Modified: ");
2499             string_append(header, newheader);
2500
2501             if (*header == NULL)
2502             {
2503                log_error(LOG_LEVEL_ERROR, "Insufficient memory, header crunched without replacement.");
2504                return JB_ERR_MEMORY;  
2505             }
2506
2507             days    = rtime / (3600 * 24);
2508             hours   = rtime / 3600 % 24;
2509             minutes = rtime / 60 % 60;
2510             seconds = rtime % 60;
2511
2512             log_error(LOG_LEVEL_HEADER,
2513                "Randomized:  %s (added %d da%s %d hou%s %d minut%s %d second%s",
2514                *header, days, (days == 1) ? "y" : "ys", hours, (hours == 1) ? "r" : "rs",
2515                minutes, (minutes == 1) ? "e" : "es", seconds, (seconds == 1) ? ")" : "s)");
2516          }
2517          else
2518          {
2519             log_error(LOG_LEVEL_HEADER, "Randomized ... or not. No time difference to work with.");
2520          }
2521       }
2522    }
2523
2524    return JB_ERR_OK;
2525 }
2526
2527
2528 /*********************************************************************
2529  *
2530  * Function    :  client_accept_encoding
2531  *
2532  * Description :  Rewrite the client's Accept-Encoding header so that
2533  *                if doesn't allow compression, if the action applies.
2534  *                Note: For HTTP/1.0 the absence of the header is enough.
2535  *
2536  * Parameters  :
2537  *          1  :  csp = Current client state (buffers, headers, etc...)
2538  *          2  :  header = On input, pointer to header to modify.
2539  *                On output, pointer to the modified header, or NULL
2540  *                to remove the header.  This function frees the
2541  *                original string if necessary.
2542  *
2543  * Returns     :  JB_ERR_OK on success, or
2544  *                JB_ERR_MEMORY on out-of-memory error.
2545  *
2546  *********************************************************************/
2547 static jb_err client_accept_encoding(struct client_state *csp, char **header)
2548 {
2549    if ((csp->action->flags & ACTION_NO_COMPRESSION) != 0)
2550    {
2551       log_error(LOG_LEVEL_HEADER, "Suppressed offer to compress content");
2552
2553       freez(*header);
2554
2555       /* Temporarily disable the correct behaviour to
2556        * work around a PHP bug. 
2557        *
2558        * if (!strcmpic(csp->http->ver, "HTTP/1.1"))
2559        * {
2560        *    *header = strdup("Accept-Encoding: identity;q=1.0, *;q=0");
2561        *    if (*header == NULL)
2562        *    {
2563        *       return JB_ERR_MEMORY;
2564        *    }
2565        * }
2566        * 
2567        */
2568    }
2569
2570    return JB_ERR_OK;
2571 }
2572
2573
2574 /*********************************************************************
2575  *
2576  * Function    :  client_te
2577  *
2578  * Description :  Rewrite the client's TE header so that
2579  *                if doesn't allow compression, if the action applies.
2580  *
2581  * Parameters  :
2582  *          1  :  csp = Current client state (buffers, headers, etc...)
2583  *          2  :  header = On input, pointer to header to modify.
2584  *                On output, pointer to the modified header, or NULL
2585  *                to remove the header.  This function frees the
2586  *                original string if necessary.
2587  *
2588  * Returns     :  JB_ERR_OK on success, or
2589  *                JB_ERR_MEMORY on out-of-memory error.
2590  *
2591  *********************************************************************/
2592 static jb_err client_te(struct client_state *csp, char **header)
2593 {
2594    if ((csp->action->flags & ACTION_NO_COMPRESSION) != 0)
2595    {
2596       freez(*header);
2597       log_error(LOG_LEVEL_HEADER, "Suppressed offer to compress transfer");
2598    }
2599
2600    return JB_ERR_OK;
2601 }
2602
2603
2604 /*********************************************************************
2605  *
2606  * Function    :  client_referrer
2607  *
2608  * Description :  Handle the "referer" config setting properly.
2609  *                Called from `sed'.
2610  *
2611  * Parameters  :
2612  *          1  :  csp = Current client state (buffers, headers, etc...)
2613  *          2  :  header = On input, pointer to header to modify.
2614  *                On output, pointer to the modified header, or NULL
2615  *                to remove the header.  This function frees the
2616  *                original string if necessary.
2617  *
2618  * Returns     :  JB_ERR_OK on success, or
2619  *                JB_ERR_MEMORY on out-of-memory error.
2620  *
2621  *********************************************************************/
2622 static jb_err client_referrer(struct client_state *csp, char **header)
2623 {
2624    const char *parameter;
2625    /* booleans for parameters we have to check multiple times */
2626    int parameter_conditional_block;
2627    int parameter_conditional_forge;
2628  
2629 #ifdef FEATURE_FORCE_LOAD
2630    /*
2631     * Since the referrer can include the prefix even
2632     * if the request itself is non-forced, we must
2633     * clean it unconditionally.
2634     *
2635     * XXX: strclean is too broad
2636     */
2637    strclean(*header, FORCE_PREFIX);
2638 #endif /* def FEATURE_FORCE_LOAD */
2639
2640    if ((csp->action->flags & ACTION_HIDE_REFERER) == 0)
2641    {
2642       /* Nothing left to do */
2643       return JB_ERR_OK;
2644    }
2645
2646    parameter = csp->action->string[ACTION_STRING_REFERER];
2647    assert(parameter != NULL);
2648    parameter_conditional_block = (0 == strcmpic(parameter, "conditional-block"));
2649    parameter_conditional_forge = (0 == strcmpic(parameter, "conditional-forge"));
2650
2651    if (!parameter_conditional_block && !parameter_conditional_forge)
2652    {
2653       /*
2654        * As conditional-block and conditional-forge are the only
2655        * parameters that rely on the original referrer, we can
2656        * remove it now for all the others.
2657        */
2658       freez(*header);
2659    }
2660
2661    if (0 == strcmpic(parameter, "block"))
2662    {
2663       log_error(LOG_LEVEL_HEADER, "Referer crunched!");
2664       return JB_ERR_OK;
2665    }
2666    else if (parameter_conditional_block || parameter_conditional_forge)
2667    {
2668       return handle_conditional_hide_referrer_parameter(header,
2669          csp->http->hostport, parameter_conditional_block);
2670    }
2671    else if (0 == strcmpic(parameter, "forge"))
2672    {
2673       return create_forged_referrer(header, csp->http->hostport);
2674    }
2675    else
2676    {
2677       /* interpret parameter as user-supplied referer to fake */
2678       return create_fake_referrer(header, parameter);
2679    }
2680 }
2681
2682
2683 /*********************************************************************
2684  *
2685  * Function    :  client_accept_language
2686  *
2687  * Description :  Handle the "Accept-Language" config setting properly.
2688  *                Called from `sed'.
2689  *
2690  * Parameters  :
2691  *          1  :  csp = Current client state (buffers, headers, etc...)
2692  *          2  :  header = On input, pointer to header to modify.
2693  *                On output, pointer to the modified header, or NULL
2694  *                to remove the header.  This function frees the
2695  *                original string if necessary.
2696  *
2697  * Returns     :  JB_ERR_OK on success, or
2698  *                JB_ERR_MEMORY on out-of-memory error.
2699  *
2700  *********************************************************************/
2701 static jb_err client_accept_language(struct client_state *csp, char **header)
2702 {
2703    const char *newval;
2704
2705    /*
2706     * Are we messing with the Accept-Language?
2707     */
2708    if ((csp->action->flags & ACTION_HIDE_ACCEPT_LANGUAGE) == 0)
2709    {
2710       /*I don't think so*/
2711       return JB_ERR_OK;
2712    }
2713
2714    newval = csp->action->string[ACTION_STRING_LANGUAGE];
2715
2716    if ((newval == NULL) || (0 == strcmpic(newval, "block")) )
2717    {
2718       /*
2719        * Blocking Accept-Language header
2720        */
2721       log_error(LOG_LEVEL_HEADER, "Crunching Accept-Language!");
2722       freez(*header);
2723       return JB_ERR_OK;
2724    }
2725    else
2726    {  
2727       /*
2728        * Replacing Accept-Language header
2729        */
2730       freez(*header);
2731       *header = strdup("Accept-Language: ");
2732       string_append(header, newval);   
2733
2734       if (*header == NULL)
2735       {
2736          log_error(LOG_LEVEL_ERROR,
2737             "Insufficient memory. Accept-Language header crunched without replacement.");  
2738       }
2739       else
2740       {
2741          log_error(LOG_LEVEL_HEADER,
2742             "Accept-Language header crunched and replaced with: %s", *header);
2743       }
2744    }
2745    return (*header == NULL) ? JB_ERR_MEMORY : JB_ERR_OK;
2746 }
2747
2748
2749 /*********************************************************************
2750  *
2751  * Function    :  crunch_client_header
2752  *
2753  * Description :  Crunch client header if it matches a string supplied by the
2754  *                user. Called from `sed'.
2755  *
2756  * Parameters  :
2757  *          1  :  csp = Current client state (buffers, headers, etc...)
2758  *          2  :  header = On input, pointer to header to modify.
2759  *                On output, pointer to the modified header, or NULL
2760  *                to remove the header.  This function frees the
2761  *                original string if necessary.
2762  *
2763  * Returns     :  JB_ERR_OK on success and always succeeds
2764  *
2765  *********************************************************************/
2766 static jb_err crunch_client_header(struct client_state *csp, char **header)
2767 {
2768    const char *crunch_pattern;
2769
2770    /* Do we feel like crunching? */
2771    if ((csp->action->flags & ACTION_CRUNCH_CLIENT_HEADER))
2772    {
2773       crunch_pattern = csp->action->string[ACTION_STRING_CLIENT_HEADER];
2774
2775       /* Is the current header the lucky one? */
2776       if (strstr(*header, crunch_pattern))
2777       {
2778          log_error(LOG_LEVEL_HEADER, "Crunching client header: %s (contains: %s)", *header, crunch_pattern);  
2779          freez(*header);
2780       }
2781    }
2782    return JB_ERR_OK;
2783 }
2784
2785
2786 /*********************************************************************
2787  *
2788  * Function    :  client_uagent
2789  *
2790  * Description :  Handle the "user-agent" config setting properly
2791  *                and remember its original value to enable browser
2792  *                bug workarounds. Called from `sed'.
2793  *
2794  * Parameters  :
2795  *          1  :  csp = Current client state (buffers, headers, etc...)
2796  *          2  :  header = On input, pointer to header to modify.
2797  *                On output, pointer to the modified header, or NULL
2798  *                to remove the header.  This function frees the
2799  *                original string if necessary.
2800  *
2801  * Returns     :  JB_ERR_OK on success, or
2802  *                JB_ERR_MEMORY on out-of-memory error.
2803  *
2804  *********************************************************************/
2805 static jb_err client_uagent(struct client_state *csp, char **header)
2806 {
2807    const char *newval;
2808
2809    if ((csp->action->flags & ACTION_HIDE_USER_AGENT) == 0)
2810    {
2811       return JB_ERR_OK;
2812    }
2813
2814    newval = csp->action->string[ACTION_STRING_USER_AGENT];
2815    if (newval == NULL)
2816    {
2817       return JB_ERR_OK;
2818    }
2819
2820    freez(*header);
2821    *header = strdup("User-Agent: ");
2822    string_append(header, newval);
2823
2824    log_error(LOG_LEVEL_HEADER, "Modified: %s", *header);
2825
2826    return (*header == NULL) ? JB_ERR_MEMORY : JB_ERR_OK;
2827 }
2828
2829
2830 /*********************************************************************
2831  *
2832  * Function    :  client_ua
2833  *
2834  * Description :  Handle "ua-" headers properly.  Called from `sed'.
2835  *
2836  * Parameters  :
2837  *          1  :  csp = Current client state (buffers, headers, etc...)
2838  *          2  :  header = On input, pointer to header to modify.
2839  *                On output, pointer to the modified header, or NULL
2840  *                to remove the header.  This function frees the
2841  *                original string if necessary.
2842  *
2843  * Returns     :  JB_ERR_OK on success, or
2844  *                JB_ERR_MEMORY on out-of-memory error.
2845  *
2846  *********************************************************************/
2847 static jb_err client_ua(struct client_state *csp, char **header)
2848 {
2849    if ((csp->action->flags & ACTION_HIDE_USER_AGENT) != 0)
2850    {
2851       log_error(LOG_LEVEL_HEADER, "crunched User-Agent!");
2852       freez(*header);
2853    }
2854
2855    return JB_ERR_OK;
2856 }
2857
2858
2859 /*********************************************************************
2860  *
2861  * Function    :  client_from
2862  *
2863  * Description :  Handle the "from" config setting properly.
2864  *                Called from `sed'.
2865  *
2866  * Parameters  :
2867  *          1  :  csp = Current client state (buffers, headers, etc...)
2868  *          2  :  header = On input, pointer to header to modify.
2869  *                On output, pointer to the modified header, or NULL
2870  *                to remove the header.  This function frees the
2871  *                original string if necessary.
2872  *
2873  * Returns     :  JB_ERR_OK on success, or
2874  *                JB_ERR_MEMORY on out-of-memory error.
2875  *
2876  *********************************************************************/
2877 static jb_err client_from(struct client_state *csp, char **header)
2878 {
2879    const char *newval;
2880
2881    if ((csp->action->flags & ACTION_HIDE_FROM) == 0)
2882    {
2883       return JB_ERR_OK;
2884    }
2885
2886    freez(*header);
2887
2888    newval = csp->action->string[ACTION_STRING_FROM];
2889
2890    /*
2891     * Are we blocking the e-mail address?
2892     */
2893    if ((newval == NULL) || (0 == strcmpic(newval, "block")) )
2894    {
2895       log_error(LOG_LEVEL_HEADER, "crunched From!");
2896       return JB_ERR_OK;
2897    }
2898
2899    log_error(LOG_LEVEL_HEADER, " modified");
2900
2901    *header = strdup("From: ");
2902    string_append(header, newval);
2903
2904    return (*header == NULL) ? JB_ERR_MEMORY : JB_ERR_OK;
2905 }
2906
2907
2908 /*********************************************************************
2909  *
2910  * Function    :  client_send_cookie
2911  *
2912  * Description :  Crunches the "cookie" header if necessary.
2913  *                Called from `sed'.
2914  *
2915  *                XXX: Stupid name, doesn't send squat.
2916  *
2917  * Parameters  :
2918  *          1  :  csp = Current client state (buffers, headers, etc...)
2919  *          2  :  header = On input, pointer to header to modify.
2920  *                On output, pointer to the modified header, or NULL
2921  *                to remove the header.  This function frees the
2922  *                original string if necessary.
2923  *
2924  * Returns     :  JB_ERR_OK on success, or
2925  *                JB_ERR_MEMORY on out-of-memory error.
2926  *
2927  *********************************************************************/
2928 static jb_err client_send_cookie(struct client_state *csp, char **header)
2929 {
2930    if (csp->action->flags & ACTION_NO_COOKIE_READ)
2931    {
2932       log_error(LOG_LEVEL_HEADER, "Crunched outgoing cookie: %s", *header);
2933       freez(*header);
2934    }
2935
2936    return JB_ERR_OK;
2937 }
2938
2939
2940 /*********************************************************************
2941  *
2942  * Function    :  client_x_forwarded
2943  *
2944  * Description :  Handle the "x-forwarded-for" config setting properly,
2945  *                also used in the add_client_headers list.  Called from `sed'.
2946  *
2947  * Parameters  :
2948  *          1  :  csp = Current client state (buffers, headers, etc...)
2949  *          2  :  header = On input, pointer to header to modify.
2950  *                On output, pointer to the modified header, or NULL
2951  *                to remove the header.  This function frees the
2952  *                original string if necessary.
2953  *
2954  * Returns     :  JB_ERR_OK on success, or
2955  *                JB_ERR_MEMORY on out-of-memory error.
2956  *
2957  *********************************************************************/
2958 jb_err client_x_forwarded(struct client_state *csp, char **header)
2959 {
2960    if (0 != (csp->action->flags & ACTION_CHANGE_X_FORWARDED_FOR))
2961    {
2962       const char *parameter = csp->action->string[ACTION_STRING_CHANGE_X_FORWARDED_FOR];
2963
2964       if (0 == strcmpic(parameter, "block"))
2965       {
2966          freez(*header);
2967          log_error(LOG_LEVEL_HEADER, "crunched x-forwarded-for!");
2968       }
2969       else if (0 == strcmpic(parameter, "add"))
2970       {
2971          string_append(header, ", ");
2972          string_append(header, csp->ip_addr_str);
2973
2974          if (*header == NULL)
2975          {
2976             return JB_ERR_MEMORY;
2977          }
2978          log_error(LOG_LEVEL_HEADER,
2979             "Appended client IP address to %s", *header);
2980          csp->flags |= CSP_FLAG_X_FORWARDED_FOR_APPENDED;
2981       }
2982       else
2983       {
2984          log_error(LOG_LEVEL_FATAL,
2985             "Invalid change-x-forwarded-for parameter: '%s'", parameter);
2986       }
2987    }
2988
2989    return JB_ERR_OK;
2990 }
2991
2992
2993 /*********************************************************************
2994  *
2995  * Function    :  client_max_forwards
2996  *
2997  * Description :  If the HTTP method is OPTIONS or TRACE, subtract one
2998  *                from the value of the Max-Forwards header field.
2999  *
3000  * Parameters  :
3001  *          1  :  csp = Current client state (buffers, headers, etc...)
3002  *          2  :  header = On input, pointer to header to modify.
3003  *                On output, pointer to the modified header, or NULL
3004  *                to remove the header.  This function frees the
3005  *                original string if necessary.
3006  *
3007  * Returns     :  JB_ERR_OK on success, or
3008  *                JB_ERR_MEMORY on out-of-memory error.
3009  *
3010  *********************************************************************/
3011 static jb_err client_max_forwards(struct client_state *csp, char **header)
3012 {
3013    int max_forwards;
3014
3015    if ((0 == strcmpic(csp->http->gpc, "trace")) ||
3016        (0 == strcmpic(csp->http->gpc, "options")))
3017    {
3018       assert(*(*header+12) == ':');
3019       if (1 == sscanf(*header+12, ": %d", &max_forwards))
3020       {
3021          if (max_forwards > 0)
3022          {
3023             snprintf(*header, strlen(*header)+1, "Max-Forwards: %d", --max_forwards);
3024             log_error(LOG_LEVEL_HEADER,
3025                "Max-Forwards value for %s request reduced to %d.",
3026                csp->http->gpc, max_forwards);
3027          }
3028          else if (max_forwards < 0)
3029          {
3030             log_error(LOG_LEVEL_ERROR, "Crunching invalid header: %s", *header);
3031             freez(*header);
3032          }
3033       }
3034       else
3035       {
3036          log_error(LOG_LEVEL_ERROR, "Crunching invalid header: %s", *header);
3037          freez(*header);
3038       }
3039    }
3040
3041    return JB_ERR_OK;
3042 }
3043
3044
3045 /*********************************************************************
3046  *
3047  * Function    :  client_host
3048  *
3049  * Description :  If the request URI did not contain host and
3050  *                port information, parse and evaluate the Host
3051  *                header field.
3052  *
3053  *                Also, kill ill-formed HOST: headers as sent by
3054  *                Apple's iTunes software when used with a proxy.
3055  *
3056  * Parameters  :
3057  *          1  :  csp = Current client state (buffers, headers, etc...)
3058  *          2  :  header = On input, pointer to header to modify.
3059  *                On output, pointer to the modified header, or NULL
3060  *                to remove the header.  This function frees the
3061  *                original string if necessary.
3062  *
3063  * Returns     :  JB_ERR_OK on success, or
3064  *                JB_ERR_MEMORY on out-of-memory error.
3065  *
3066  *********************************************************************/
3067 static jb_err client_host(struct client_state *csp, char **header)
3068 {
3069    char *p, *q;
3070
3071    /*
3072     * If the header field name is all upper-case, chances are that it's
3073     * an ill-formed one from iTunes. BTW, killing innocent headers here is
3074     * not a problem -- they are regenerated later.
3075     */
3076    if ((*header)[1] == 'O')
3077    {
3078       log_error(LOG_LEVEL_HEADER, "Killed all-caps Host header line: %s", *header);
3079       freez(*header);
3080       return JB_ERR_OK;
3081    }
3082
3083    if (!csp->http->hostport || (*csp->http->hostport == '*') ||  
3084        *csp->http->hostport == ' ' || *csp->http->hostport == '\0')
3085    {
3086       
3087       if (NULL == (p = strdup((*header)+6)))
3088       {
3089          return JB_ERR_MEMORY;
3090       }
3091       chomp(p);
3092       if (NULL == (q = strdup(p)))
3093       {
3094          freez(p);
3095          return JB_ERR_MEMORY;
3096       }
3097
3098       freez(csp->http->hostport);
3099       csp->http->hostport = p;
3100       freez(csp->http->host);
3101       csp->http->host = q;
3102       q = strchr(csp->http->host, ':');
3103       if (q != NULL)
3104       {
3105          /* Terminate hostname and evaluate port string */
3106          *q++ = '\0';
3107          csp->http->port = atoi(q);
3108       }
3109       else
3110       {
3111          csp->http->port = csp->http->ssl ? 443 : 80;
3112       }
3113
3114       log_error(LOG_LEVEL_HEADER, "New host and port from Host field: %s = %s:%d",
3115                 csp->http->hostport, csp->http->host, csp->http->port);
3116    }
3117
3118    /* Signal client_host_adder() to return right away */
3119    csp->flags |= CSP_FLAG_HOST_HEADER_IS_SET;
3120
3121    return JB_ERR_OK;
3122 }
3123
3124
3125 /*********************************************************************
3126  *
3127  * Function    :  client_if_modified_since
3128  *
3129  * Description :  Remove or modify the If-Modified-Since header.
3130  *
3131  * Parameters  :
3132  *          1  :  csp = Current client state (buffers, headers, etc...)
3133  *          2  :  header = On input, pointer to header to modify.
3134  *                On output, pointer to the modified header, or NULL
3135  *                to remove the header.  This function frees the
3136  *                original string if necessary.
3137  *
3138  * Returns     :  JB_ERR_OK on success, or
3139  *                JB_ERR_MEMORY on out-of-memory error.
3140  *
3141  *********************************************************************/
3142 static jb_err client_if_modified_since(struct client_state *csp, char **header)
3143 {
3144    char newheader[50];
3145 #ifdef HAVE_GMTIME_R
3146    struct tm gmt;
3147 #endif
3148    struct tm *timeptr = NULL;
3149    time_t tm = 0;                  
3150    const char *newval;
3151    long int hours, minutes, seconds;
3152    char * endptr;
3153    
3154    if ( 0 == strcmpic(*header, "If-Modified-Since: Wed, 08 Jun 1955 12:00:00 GMT"))
3155    {
3156       /* 
3157        * The client got an error message because of a temporary problem,
3158        * the problem is gone and the client now tries to revalidate our
3159        * error message on the real server. The revalidation would always
3160        * end with the transmission of the whole document and there is
3161        * no need to expose the bogus If-Modified-Since header.
3162        */
3163       log_error(LOG_LEVEL_HEADER, "Crunching useless If-Modified-Since header.");
3164       freez(*header);
3165    }
3166    else if (csp->action->flags & ACTION_HIDE_IF_MODIFIED_SINCE)
3167    {
3168       newval = csp->action->string[ACTION_STRING_IF_MODIFIED_SINCE];
3169
3170       if ((0 == strcmpic(newval, "block")))
3171       {
3172          log_error(LOG_LEVEL_HEADER, "Crunching %s", *header);
3173          freez(*header);
3174       }
3175       else /* add random value */
3176       {
3177          const char *header_time = *header + sizeof("If-Modified-Since:");
3178
3179          if (JB_ERR_OK != parse_header_time(header_time, &tm))
3180          {
3181             log_error(LOG_LEVEL_HEADER, "Couldn't parse: %s in %s (crunching!)", header_time, *header);
3182             freez(*header);
3183          }
3184          else
3185          {
3186             long int rtime = strtol(newval, &endptr, 0);
3187             const int negative_range = (rtime < 0);
3188
3189             if (rtime)
3190             {
3191                log_error(LOG_LEVEL_HEADER, "Randomizing: %s (random range: %d minut%s)",
3192                   *header, rtime, (rtime == 1 || rtime == -1) ? "e": "es");
3193                if (negative_range)
3194                {
3195                   rtime *= -1; 
3196                }
3197                rtime *= 60;
3198                rtime = pick_from_range(rtime);
3199             }
3200             else
3201             {
3202                log_error(LOG_LEVEL_ERROR, "Random range is 0. Assuming time transformation test.",
3203                   *header);
3204             }
3205             tm += rtime * (negative_range ? -1 : 1);
3206 #ifdef HAVE_GMTIME_R
3207             timeptr = gmtime_r(&tm, &gmt);
3208 #elif defined(MUTEX_LOCKS_AVAILABLE)
3209             privoxy_mutex_lock(&gmtime_mutex);
3210             timeptr = gmtime(&tm);
3211             privoxy_mutex_unlock(&gmtime_mutex);
3212 #else
3213             timeptr = gmtime(&tm);
3214 #endif
3215             if ((NULL == timeptr) || !strftime(newheader,
3216                   sizeof(newheader), "%a, %d %b %Y %H:%M:%S GMT", timeptr))
3217             {
3218                log_error(LOG_LEVEL_ERROR,
3219                   "Randomizing '%s' failed. Crunching the header without replacement.",
3220                   *header);
3221                freez(*header);
3222                return JB_ERR_OK;
3223             }
3224
3225             freez(*header);
3226             *header = strdup("If-Modified-Since: ");
3227             string_append(header, newheader);
3228
3229             if (*header == NULL)
3230             {
3231                log_error(LOG_LEVEL_HEADER, "Insufficient memory, header crunched without replacement.");
3232                return JB_ERR_MEMORY;  
3233             }
3234
3235             hours   = rtime / 3600;
3236             minutes = rtime / 60 % 60;
3237             seconds = rtime % 60;
3238
3239             log_error(LOG_LEVEL_HEADER,
3240                "Randomized:  %s (%s %d hou%s %d minut%s %d second%s",
3241                *header, (negative_range) ? "subtracted" : "added", hours,
3242                (hours == 1) ? "r" : "rs", minutes, (minutes == 1) ? "e" : "es",
3243                seconds, (seconds == 1) ? ")" : "s)");
3244          }
3245       }
3246    }
3247
3248    return JB_ERR_OK;
3249 }
3250
3251
3252 /*********************************************************************
3253  *
3254  * Function    :  client_if_none_match
3255  *
3256  * Description :  Remove the If-None-Match header.
3257  *
3258  * Parameters  :
3259  *          1  :  csp = Current client state (buffers, headers, etc...)
3260  *          2  :  header = On input, pointer to header to modify.
3261  *                On output, pointer to the modified header, or NULL
3262  *                to remove the header.  This function frees the
3263  *                original string if necessary.
3264  *
3265  * Returns     :  JB_ERR_OK on success, or
3266  *                JB_ERR_MEMORY on out-of-memory error.
3267  *
3268  *********************************************************************/
3269 static jb_err client_if_none_match(struct client_state *csp, char **header)
3270 {
3271    if (csp->action->flags & ACTION_CRUNCH_IF_NONE_MATCH)
3272    {  
3273       log_error(LOG_LEVEL_HEADER, "Crunching %s", *header);
3274       freez(*header);
3275    }
3276
3277    return JB_ERR_OK;
3278 }
3279
3280
3281 /*********************************************************************
3282  *
3283  * Function    :  client_x_filter
3284  *
3285  * Description :  Disables filtering if the client set "X-Filter: No".
3286  *                Called from `sed'.
3287  *
3288  * Parameters  :
3289  *          1  :  csp = Current client state (buffers, headers, etc...)
3290  *          2  :  header = On input, pointer to header to modify.
3291  *                On output, pointer to the modified header, or NULL
3292  *                to remove the header.  This function frees the
3293  *                original string if necessary.
3294  *
3295  * Returns     :  JB_ERR_OK on success
3296  *
3297  *********************************************************************/
3298 jb_err client_x_filter(struct client_state *csp, char **header)
3299 {
3300    if ( 0 == strcmpic(*header, "X-Filter: No"))
3301    {
3302       if (!(csp->config->feature_flags & RUNTIME_FEATURE_HTTP_TOGGLE))
3303       {
3304          log_error(LOG_LEVEL_INFO, "Ignored the client's request to fetch without filtering.");
3305       }
3306       else
3307       {
3308          if (csp->action->flags & ACTION_FORCE_TEXT_MODE)
3309          {
3310             log_error(LOG_LEVEL_HEADER,
3311                "force-text-mode overruled the client's request to fetch without filtering!");
3312          }
3313          else
3314          {  
3315             csp->content_type = CT_TABOO; /* XXX: This hack shouldn't be necessary */
3316             csp->flags |= CSP_FLAG_NO_FILTERING;
3317             log_error(LOG_LEVEL_HEADER, "Accepted the client's request to fetch without filtering.");
3318          }
3319          log_error(LOG_LEVEL_HEADER, "Crunching %s", *header);
3320          freez(*header);
3321       }
3322    }
3323    return JB_ERR_OK; 
3324 }
3325
3326
3327 /*********************************************************************
3328  *
3329  * Function    :  client_range
3330  *
3331  * Description :  Removes Range, Request-Range and If-Range headers if
3332  *                content filtering is enabled. If the client's version
3333  *                of the document has been altered by Privoxy, the server
3334  *                could interpret the range differently than the client
3335  *                intended in which case the user could end up with
3336  *                corrupted content.
3337  *
3338  * Parameters  :
3339  *          1  :  csp = Current client state (buffers, headers, etc...)
3340  *          2  :  header = On input, pointer to header to modify.
3341  *                On output, pointer to the modified header, or NULL
3342  *                to remove the header.  This function frees the
3343  *                original string if necessary.
3344  *
3345  * Returns     :  JB_ERR_OK
3346  *
3347  *********************************************************************/
3348 static jb_err client_range(struct client_state *csp, char **header)
3349 {
3350    if (content_filters_enabled(csp->action))
3351    {
3352       log_error(LOG_LEVEL_HEADER, "Content filtering is enabled."
3353          " Crunching: \'%s\' to prevent range-mismatch problems.", *header);
3354       freez(*header);
3355    }
3356
3357    return JB_ERR_OK; 
3358 }
3359
3360 /* the following functions add headers directly to the header list */
3361
3362 /*********************************************************************
3363  *
3364  * Function    :  client_host_adder
3365  *
3366  * Description :  Adds the Host: header field if it is missing.
3367  *                Called from `sed'.
3368  *
3369  * Parameters  :
3370  *          1  :  csp = Current client state (buffers, headers, etc...)
3371  *
3372  * Returns     :  JB_ERR_OK on success, or
3373  *                JB_ERR_MEMORY on out-of-memory error.
3374  *
3375  *********************************************************************/
3376 static jb_err client_host_adder(struct client_state *csp)
3377 {
3378    char *p;
3379    jb_err err;
3380
3381    if (csp->flags & CSP_FLAG_HOST_HEADER_IS_SET)
3382    {
3383       /* Header already set by the client, nothing to do. */
3384       return JB_ERR_OK;
3385    }
3386
3387    if ( !csp->http->hostport || !*(csp->http->hostport))
3388    {
3389       /* XXX: When does this happen and why is it OK? */
3390       log_error(LOG_LEVEL_INFO, "Weirdness in client_host_adder detected and ignored.");
3391       return JB_ERR_OK;
3392    }
3393
3394    /*
3395     * remove 'user:pass@' from 'proto://user:pass@host'
3396     */
3397    if ( (p = strchr( csp->http->hostport, '@')) != NULL )
3398    {
3399       p++;
3400    }
3401    else
3402    {
3403       p = csp->http->hostport;
3404    }
3405
3406    /* XXX: Just add it, we already made sure that it will be unique */
3407    log_error(LOG_LEVEL_HEADER, "addh-unique: Host: %s", p);
3408    err = enlist_unique_header(csp->headers, "Host", p);
3409    return err;
3410
3411 }
3412
3413
3414 #if 0
3415 /*********************************************************************
3416  *
3417  * Function    :  client_accept_encoding_adder
3418  *
3419  * Description :  Add an Accept-Encoding header to the client's request
3420  *                that disables compression if the action applies, and
3421  *                the header is not already there. Called from `sed'.
3422  *                Note: For HTTP/1.0, the absence of the header is enough.
3423  *
3424  * Parameters  :
3425  *          1  :  csp = Current client state (buffers, headers, etc...)
3426  *
3427  * Returns     :  JB_ERR_OK on success, or
3428  *                JB_ERR_MEMORY on out-of-memory error.
3429  *
3430  *********************************************************************/
3431 static jb_err client_accept_encoding_adder(struct client_state *csp)
3432 {
3433    if (   ((csp->action->flags & ACTION_NO_COMPRESSION) != 0)
3434        && (!strcmpic(csp->http->ver, "HTTP/1.1")) )
3435    {
3436       return enlist_unique(csp->headers, "Accept-Encoding: identity;q=1.0, *;q=0", 16);
3437    }
3438
3439    return JB_ERR_OK;
3440 }
3441 #endif
3442
3443
3444 /*********************************************************************
3445  *
3446  * Function    :  client_xtra_adder
3447  *
3448  * Description :  Used in the add_client_headers list.  Called from `sed'.
3449  *
3450  * Parameters  :
3451  *          1  :  csp = Current client state (buffers, headers, etc...)
3452  *
3453  * Returns     :  JB_ERR_OK on success, or
3454  *                JB_ERR_MEMORY on out-of-memory error.
3455  *
3456  *********************************************************************/
3457 static jb_err client_xtra_adder(struct client_state *csp)
3458 {
3459    struct list_entry *lst;
3460    jb_err err;
3461
3462    for (lst = csp->action->multi[ACTION_MULTI_ADD_HEADER]->first;
3463         lst ; lst = lst->next)
3464    {
3465       log_error(LOG_LEVEL_HEADER, "addh: %s", lst->str);
3466       err = enlist(csp->headers, lst->str);
3467       if (err)
3468       {
3469          return err;
3470       }
3471
3472    }
3473
3474    return JB_ERR_OK;
3475 }
3476
3477
3478 /*********************************************************************
3479  *
3480  * Function    :  client_x_forwarded_for_adder
3481  *
3482  * Description :  Used in the add_client_headers list.  Called from `sed'.
3483  *
3484  * Parameters  :
3485  *          1  :  csp = Current client state (buffers, headers, etc...)
3486  *
3487  * Returns     :  JB_ERR_OK on success, or
3488  *                JB_ERR_MEMORY on out-of-memory error.
3489  *
3490  *********************************************************************/
3491 static jb_err client_x_forwarded_for_adder(struct client_state *csp)
3492 {
3493    char *header = NULL;
3494    jb_err err;
3495
3496    if (!((csp->action->flags & ACTION_CHANGE_X_FORWARDED_FOR)
3497          && (0 == strcmpic(csp->action->string[ACTION_STRING_CHANGE_X_FORWARDED_FOR], "add")))
3498       || (csp->flags & CSP_FLAG_X_FORWARDED_FOR_APPENDED))
3499    {
3500       /*
3501        * If we aren't adding X-Forwarded-For headers,
3502        * or we already appended an existing X-Forwarded-For
3503        * header, there's nothing left to do here.
3504        */
3505       return JB_ERR_OK;
3506    }
3507
3508    header = strdup("X-Forwarded-For: ");
3509    string_append(&header, csp->ip_addr_str);
3510
3511    if (header == NULL)
3512    {
3513       return JB_ERR_MEMORY;
3514    }
3515
3516    log_error(LOG_LEVEL_HEADER, "addh: %s", header);
3517    err = enlist(csp->headers, header);
3518    freez(header);
3519
3520    return err;
3521 }
3522
3523
3524 /*********************************************************************
3525  *
3526  * Function    :  server_connection_adder
3527  *
3528  * Description :  Adds an appropiate "Connection:" header to csp->headers
3529  *                unless the header was already present. Called from `sed'.
3530  *
3531  * Parameters  :
3532  *          1  :  csp = Current client state (buffers, headers, etc...)
3533  *
3534  * Returns     :  JB_ERR_OK on success, or
3535  *                JB_ERR_MEMORY on out-of-memory error.
3536  *
3537  *********************************************************************/
3538 static jb_err server_connection_adder(struct client_state *csp)
3539 {
3540    const unsigned int flags = csp->flags;
3541    const char *response_status_line = csp->headers->first->str;
3542    static const char connection_close[] = "Connection: close";
3543
3544    if ((flags & CSP_FLAG_CLIENT_HEADER_PARSING_DONE)
3545     && (flags & CSP_FLAG_SERVER_CONNECTION_HEADER_SET))
3546    {
3547       return JB_ERR_OK;
3548    }
3549
3550    /*
3551     * XXX: if we downgraded the response, this check will fail.
3552     */
3553    if ((csp->config->feature_flags &
3554         RUNTIME_FEATURE_CONNECTION_KEEP_ALIVE)
3555     && (NULL != response_status_line)
3556     && !strncmpic(response_status_line, "HTTP/1.1", 8)
3557 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
3558     && !(csp->flags & CSP_FLAG_SERVER_SOCKET_TAINTED)
3559 #endif
3560        )
3561    {
3562       log_error(LOG_LEVEL_HEADER, "A HTTP/1.1 response "
3563          "without Connection header implies keep-alive.");
3564       csp->flags |= CSP_FLAG_SERVER_CONNECTION_KEEP_ALIVE;
3565       return JB_ERR_OK;
3566    }
3567
3568    log_error(LOG_LEVEL_HEADER, "Adding: %s", connection_close);
3569
3570    return enlist(csp->headers, connection_close);
3571 }
3572
3573
3574 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
3575 /*********************************************************************
3576  *
3577  * Function    :  server_proxy_connection_adder
3578  *
3579  * Description :  Adds a "Proxy-Connection: keep-alive" header to
3580  *                csp->headers if the client asked for keep-alive.
3581  *                XXX: We should reuse existant ones.
3582  *
3583  * Parameters  :
3584  *          1  :  csp = Current client state (buffers, headers, etc...)
3585  *
3586  * Returns     :  JB_ERR_OK on success, or
3587  *                JB_ERR_MEMORY on out-of-memory error.
3588  *
3589  *********************************************************************/
3590 static jb_err server_proxy_connection_adder(struct client_state *csp)
3591 {
3592    static const char proxy_connection_header[] = "Proxy-Connection: keep-alive";
3593    jb_err err = JB_ERR_OK;
3594
3595    if ((csp->flags & CSP_FLAG_CLIENT_CONNECTION_KEEP_ALIVE)
3596     && !(csp->flags & CSP_FLAG_SERVER_SOCKET_TAINTED)
3597     && !(csp->flags & CSP_FLAG_SERVER_PROXY_CONNECTION_HEADER_SET))
3598    {
3599       log_error(LOG_LEVEL_HEADER, "Adding: %s", proxy_connection_header);
3600       err = enlist(csp->headers, proxy_connection_header);
3601    }
3602
3603    return err;
3604 }
3605 #endif /* FEATURE_CONNECTION_KEEP_ALIVE */
3606
3607
3608 /*********************************************************************
3609  *
3610  * Function    :  client_connection_header_adder
3611  *
3612  * Description :  Adds a proper "Connection:" header to csp->headers
3613  *                unless the header was already present. Called from `sed'.
3614  *
3615  * Parameters  :
3616  *          1  :  csp = Current client state (buffers, headers, etc...)
3617  *
3618  * Returns     :  JB_ERR_OK on success, or
3619  *                JB_ERR_MEMORY on out-of-memory error.
3620  *
3621  *********************************************************************/
3622 static jb_err client_connection_header_adder(struct client_state *csp)
3623 {
3624    static const char connection_close[] = "Connection: close";
3625
3626    if (!(csp->flags & CSP_FLAG_CLIENT_HEADER_PARSING_DONE)
3627      && (csp->flags & CSP_FLAG_CLIENT_CONNECTION_HEADER_SET))
3628    {
3629       return JB_ERR_OK;
3630    }
3631
3632 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
3633    if ((csp->config->feature_flags & RUNTIME_FEATURE_CONNECTION_KEEP_ALIVE)
3634       && (csp->http->ssl == 0)
3635       && !strcmpic(csp->http->ver, "HTTP/1.1"))
3636    {
3637       csp->flags |= CSP_FLAG_CLIENT_CONNECTION_KEEP_ALIVE;
3638       return JB_ERR_OK;
3639    }
3640 #endif /* FEATURE_CONNECTION_KEEP_ALIVE */
3641
3642    log_error(LOG_LEVEL_HEADER, "Adding: %s", connection_close);
3643
3644    return enlist(csp->headers, connection_close);
3645 }
3646
3647
3648 /*********************************************************************
3649  *
3650  * Function    :  server_http
3651  *
3652  * Description :  - Save the HTTP Status into csp->http->status
3653  *                - Set CT_TABOO to prevent filtering if the answer
3654  *                  is a partial range (HTTP status 206)
3655  *                - Rewrite HTTP/1.1 answers to HTTP/1.0 if +downgrade
3656  *                  action applies.
3657  *
3658  * Parameters  :
3659  *          1  :  csp = Current client state (buffers, headers, etc...)
3660  *          2  :  header = On input, pointer to header to modify.
3661  *                On output, pointer to the modified header, or NULL
3662  *                to remove the header.  This function frees the
3663  *                original string if necessary.
3664  *
3665  * Returns     :  JB_ERR_OK on success, or
3666  *                JB_ERR_MEMORY on out-of-memory error.
3667  *
3668  *********************************************************************/
3669 static jb_err server_http(struct client_state *csp, char **header)
3670 {
3671    sscanf(*header, "HTTP/%*d.%*d %d", &(csp->http->status));
3672    if (csp->http->status == 206)
3673    {
3674       csp->content_type = CT_TABOO;
3675    }
3676
3677    if ((csp->action->flags & ACTION_DOWNGRADE) != 0)
3678    {
3679       /* XXX: Should we do a real validity check here? */
3680       if (strlen(*header) > 8)
3681       {
3682          (*header)[7] = '0';
3683          log_error(LOG_LEVEL_HEADER, "Downgraded answer to HTTP/1.0");
3684       }
3685       else
3686       {
3687          /*
3688           * XXX: Should we block the request or
3689           * enlist a valid status code line here?
3690           */
3691          log_error(LOG_LEVEL_INFO, "Malformed server response detected. "
3692             "Downgrading to HTTP/1.0 impossible.");
3693       }
3694    }
3695
3696    return JB_ERR_OK;
3697 }
3698
3699
3700 /*********************************************************************
3701  *
3702  * Function    :  server_set_cookie
3703  *
3704  * Description :  Handle the server "cookie" header properly.
3705  *                Crunch, accept or rewrite it to a session cookie.
3706  *                Called from `sed'.
3707  *
3708  *                TODO: Allow the user to specify a new expiration
3709  *                time to cause the cookie to expire even before the
3710  *                browser is closed.
3711  *
3712  * Parameters  :
3713  *          1  :  csp = Current client state (buffers, headers, etc...)
3714  *          2  :  header = On input, pointer to header to modify.
3715  *                On output, pointer to the modified header, or NULL
3716  *                to remove the header.  This function frees the
3717  *                original string if necessary.
3718  *
3719  * Returns     :  JB_ERR_OK on success, or
3720  *                JB_ERR_MEMORY on out-of-memory error.
3721  *
3722  *********************************************************************/
3723 static jb_err server_set_cookie(struct client_state *csp, char **header)
3724 {
3725    time_t now;
3726    time_t cookie_time; 
3727
3728    time(&now);
3729
3730    if ((csp->action->flags & ACTION_NO_COOKIE_SET) != 0)
3731    {
3732       log_error(LOG_LEVEL_HEADER, "Crunching incoming cookie: %s", *header);
3733       freez(*header);
3734    }
3735    else if ((csp->action->flags & ACTION_NO_COOKIE_KEEP) != 0)
3736    {
3737       /* Flag whether or not to log a message */
3738       int changed = 0;
3739
3740       /* A variable to store the tag we're working on */
3741       char *cur_tag;
3742
3743       /* Skip "Set-Cookie:" (11 characters) in header */
3744       cur_tag = *header + 11;
3745
3746       /* skip whitespace between "Set-Cookie:" and value */
3747       while (*cur_tag && ijb_isspace(*cur_tag))
3748       {
3749          cur_tag++;
3750       }
3751
3752       /* Loop through each tag in the cookie */
3753       while (*cur_tag)
3754       {
3755          /* Find next tag */
3756          char *next_tag = strchr(cur_tag, ';');
3757          if (next_tag != NULL)
3758          {
3759             /* Skip the ';' character itself */
3760             next_tag++;
3761
3762             /* skip whitespace ";" and start of tag */
3763             while (*next_tag && ijb_isspace(*next_tag))
3764             {
3765                next_tag++;
3766             }
3767          }
3768          else
3769          {
3770             /* "Next tag" is the end of the string */
3771             next_tag = cur_tag + strlen(cur_tag);
3772          }
3773
3774          /*
3775           * Check the expiration date to see
3776           * if the cookie is still valid, if yes,
3777           * rewrite it to a session cookie.
3778           */
3779          if ((strncmpic(cur_tag, "expires=", 8) == 0) && *(cur_tag + 8))
3780          {
3781             char *expiration_date = cur_tag + 8; /* Skip "[Ee]xpires=" */
3782
3783             if ((expiration_date[0] == '"')
3784              && (expiration_date[1] != '\0'))
3785             {
3786                /*
3787                 * Skip quotation mark. RFC 2109 10.1.2 seems to hint
3788                 * that the expiration date isn't supposed to be quoted,
3789                 * but some servers do it anyway.
3790                 */
3791                expiration_date++;
3792             }
3793
3794             /* Did we detect the date properly? */
3795             if (JB_ERR_OK != parse_header_time(expiration_date, &cookie_time))
3796             {
3797                /*
3798                 * Nope, treat it as if it was still valid.
3799                 *
3800                 * XXX: Should we remove the whole cookie instead?
3801                 */
3802                log_error(LOG_LEVEL_ERROR,
3803                   "Can't parse \'%s\', send by %s. Unsupported time format?", cur_tag, csp->http->url);
3804                string_move(cur_tag, next_tag);
3805                changed = 1;
3806             }
3807             else
3808             {
3809                /*
3810                 * Yes. Check if the cookie is still valid.
3811                 *
3812                 * If the cookie is already expired it's probably
3813                 * a delete cookie and even if it isn't, the browser
3814                 * will discard it anyway.
3815                 */
3816
3817                /*
3818                 * XXX: timegm() isn't available on some AmigaOS
3819                 * versions and our replacement doesn't work.
3820                 *
3821                 * Our options are to either:
3822                 *
3823                 * - disable session-cookies-only completely if timegm
3824                 *   is missing,
3825                 *
3826                 * - to simply remove all expired tags, like it has
3827                 *   been done until Privoxy 3.0.6 and to live with
3828                 *    the consequence that it can cause login/logout
3829                 *   problems on servers that don't validate their
3830                 *   input properly, or
3831                 *
3832                 * - to replace it with mktime in which
3833                 *   case there is a slight chance of valid cookies
3834                 *   passing as already expired.
3835                 *
3836                 *   This is the way it's currently done and it's not
3837                 *   as bad as it sounds. If the missing GMT offset is
3838                 *   enough to change the result of the expiration check
3839                 *   the cookie will be only valid for a few hours
3840                 *   anyway, which in many cases will be shorter
3841                 *   than a browser session.
3842                 */
3843                if (cookie_time - now < 0)
3844                {
3845                   log_error(LOG_LEVEL_HEADER,
3846                      "Cookie \'%s\' is already expired and can pass unmodified.", *header);
3847                   /* Just in case some clown sets more then one expiration date */
3848                   cur_tag = next_tag;
3849                }
3850                else
3851                {
3852                   /*
3853                    * Still valid, delete expiration date by copying
3854                    * the rest of the string over it.
3855                    */
3856                   string_move(cur_tag, next_tag);
3857
3858                   /* That changed the header, need to issue a log message */
3859                   changed = 1;
3860
3861                   /*
3862                    * Note that the next tag has now been moved to *cur_tag,
3863                    * so we do not need to update the cur_tag pointer.
3864                    */
3865                }
3866             }
3867
3868          }
3869          else
3870          {
3871             /* Move on to next cookie tag */
3872             cur_tag = next_tag;
3873          }
3874       }
3875
3876       if (changed)
3877       {
3878          assert(NULL != *header);
3879          log_error(LOG_LEVEL_HEADER, "Cookie rewritten to a temporary one: %s",
3880             *header);
3881       }
3882    }
3883
3884    return JB_ERR_OK;
3885 }
3886
3887
3888 #ifdef FEATURE_FORCE_LOAD
3889 /*********************************************************************
3890  *
3891  * Function    :  strclean
3892  *
3893  * Description :  In-Situ-Eliminate all occurances of substring in
3894  *                string
3895  *
3896  * Parameters  :
3897  *          1  :  string = string to clean
3898  *          2  :  substring = substring to eliminate
3899  *
3900  * Returns     :  Number of eliminations
3901  *
3902  *********************************************************************/
3903 int strclean(char *string, const char *substring)
3904 {
3905    int hits = 0;
3906    size_t len;
3907    char *pos, *p;
3908
3909    len = strlen(substring);
3910
3911    while((pos = strstr(string, substring)) != NULL)
3912    {
3913       p = pos + len;
3914       do
3915       {
3916          *(p - len) = *p;
3917       }
3918       while (*p++ != '\0');
3919
3920       hits++;
3921    }
3922
3923    return(hits);
3924 }
3925 #endif /* def FEATURE_FORCE_LOAD */
3926
3927
3928 /*********************************************************************
3929  *
3930  * Function    :  parse_header_time
3931  *
3932  * Description :  Parses time formats used in HTTP header strings
3933  *                to get the numerical respresentation.
3934  *
3935  * Parameters  :
3936  *          1  :  header_time = HTTP header time as string. 
3937  *          2  :  result = storage for header_time in seconds
3938  *
3939  * Returns     :  JB_ERR_OK if the time format was recognized, or
3940  *                JB_ERR_PARSE otherwise.
3941  *
3942  *********************************************************************/
3943 static jb_err parse_header_time(const char *header_time, time_t *result)
3944 {
3945    struct tm gmt;
3946
3947    /*
3948     * Zero out gmt to prevent time zone offsets.
3949     *
3950     * While this is only necessary on some platforms
3951     * (mingw32 for example), I don't know how to
3952     * detect these automatically and doing it everywhere
3953     * shouldn't hurt.
3954     */
3955    memset(&gmt, 0, sizeof(gmt));
3956
3957                             /* Tue, 02 Jun 2037 20:00:00 */
3958    if ((NULL == strptime(header_time, "%a, %d %b %Y %H:%M:%S", &gmt))
3959                             /* Tue, 02-Jun-2037 20:00:00 */
3960     && (NULL == strptime(header_time, "%a, %d-%b-%Y %H:%M:%S", &gmt))
3961                             /* Tue, 02-Jun-37 20:00:00 */
3962     && (NULL == strptime(header_time, "%a, %d-%b-%y %H:%M:%S", &gmt))
3963                         /* Tuesday, 02-Jun-2037 20:00:00 */
3964     && (NULL == strptime(header_time, "%A, %d-%b-%Y %H:%M:%S", &gmt))
3965                         /* Tuesday Jun 02 20:00:00 2037 */
3966     && (NULL == strptime(header_time, "%A %b %d %H:%M:%S %Y", &gmt)))
3967    {
3968       return JB_ERR_PARSE;
3969    }
3970
3971    *result = timegm(&gmt);
3972
3973    return JB_ERR_OK;
3974
3975 }
3976
3977
3978 /*********************************************************************
3979  *
3980  * Function    :  get_destination_from_headers
3981  *
3982  * Description :  Parse the "Host:" header to get the request's destination.
3983  *                Only needed if the client's request was forcefully
3984  *                redirected into Privoxy.
3985  *
3986  *                Code mainly copied from client_host() which is currently
3987  *                run too late for this purpose.
3988  *
3989  * Parameters  :
3990  *          1  :  headers = List of headers (one of them hopefully being
3991  *                the "Host:" header)
3992  *          2  :  http = storage for the result (host, port and hostport). 
3993  *
3994  * Returns     :  JB_ERR_MEMORY in case of memory problems,
3995  *                JB_ERR_PARSE if the host header couldn't be found,
3996  *                JB_ERR_OK otherwise.
3997  *
3998  *********************************************************************/
3999 jb_err get_destination_from_headers(const struct list *headers, struct http_request *http)
4000 {
4001    char *q;
4002    char *p;
4003    char *host;
4004
4005    host = get_header_value(headers, "Host:");
4006
4007    if (NULL == host)
4008    {
4009       log_error(LOG_LEVEL_ERROR, "No \"Host:\" header found.");
4010       return JB_ERR_PARSE;
4011    }
4012
4013    if (NULL == (p = strdup((host))))
4014    {
4015       log_error(LOG_LEVEL_ERROR, "Out of memory while parsing \"Host:\" header");
4016       return JB_ERR_MEMORY;
4017    }
4018    chomp(p);
4019    if (NULL == (q = strdup(p)))
4020    {
4021       freez(p);
4022       log_error(LOG_LEVEL_ERROR, "Out of memory while parsing \"Host:\" header");
4023       return JB_ERR_MEMORY;
4024    }
4025
4026    freez(http->hostport);
4027    http->hostport = p;
4028    freez(http->host);
4029    http->host = q;
4030    q = strchr(http->host, ':');
4031    if (q != NULL)
4032    {
4033       /* Terminate hostname and evaluate port string */
4034       *q++ = '\0';
4035       http->port = atoi(q);
4036    }
4037    else
4038    {
4039       http->port = http->ssl ? 443 : 80;
4040    }
4041
4042    /* Rebuild request URL */
4043    freez(http->url);
4044    http->url = strdup(http->ssl ? "https://" : "http://");
4045    string_append(&http->url, http->hostport);
4046    string_append(&http->url, http->path);
4047    if (http->url == NULL)
4048    {
4049       return JB_ERR_MEMORY;
4050    }
4051
4052    log_error(LOG_LEVEL_HEADER, "Destination extracted from \"Host:\" header. New request URL: %s",
4053       http->url);
4054
4055    return JB_ERR_OK;
4056
4057 }
4058
4059
4060 /*********************************************************************
4061  *
4062  * Function    :  create_forged_referrer
4063  *
4064  * Description :  Helper for client_referrer to forge a referer as
4065  *                'http://[hostname:port/' to fool stupid
4066  *                checks for in-site links 
4067  *
4068  * Parameters  :
4069  *          1  :  header   = Pointer to header pointer
4070  *          2  :  hostport = Host and optionally port as string
4071  *
4072  * Returns     :  JB_ERR_OK in case of success, or
4073  *                JB_ERR_MEMORY in case of memory problems.
4074  *
4075  *********************************************************************/
4076 static jb_err create_forged_referrer(char **header, const char *hostport)
4077 {
4078     assert(NULL == *header);
4079
4080     *header = strdup("Referer: http://");
4081     string_append(header, hostport);
4082     string_append(header, "/");
4083
4084     if (NULL == *header)
4085     {
4086        return JB_ERR_MEMORY;
4087     }
4088
4089     log_error(LOG_LEVEL_HEADER, "Referer forged to: %s", *header);
4090
4091     return JB_ERR_OK;
4092
4093 }
4094
4095
4096 /*********************************************************************
4097  *
4098  * Function    :  create_fake_referrer
4099  *
4100  * Description :  Helper for client_referrer to create a fake referrer
4101  *                based on a string supplied by the user.
4102  *
4103  * Parameters  :
4104  *          1  :  header   = Pointer to header pointer
4105  *          2  :  hosthost = Referrer to fake
4106  *
4107  * Returns     :  JB_ERR_OK in case of success, or
4108  *                JB_ERR_MEMORY in case of memory problems.
4109  *
4110  *********************************************************************/
4111 static jb_err create_fake_referrer(char **header, const char *fake_referrer)
4112 {
4113    assert(NULL == *header);
4114
4115    if ((0 != strncmpic(fake_referrer, "http://", 7)) && (0 != strncmpic(fake_referrer, "https://", 8)))
4116    {
4117       log_error(LOG_LEVEL_HEADER,
4118          "Parameter: +hide-referrer{%s} is a bad idea, but I don't care.", fake_referrer);
4119    }
4120    *header = strdup("Referer: ");
4121    string_append(header, fake_referrer);
4122
4123    if (NULL == *header)
4124    {
4125       return JB_ERR_MEMORY;
4126    }
4127
4128    log_error(LOG_LEVEL_HEADER, "Referer replaced with: %s", *header);
4129
4130    return JB_ERR_OK;
4131
4132 }
4133
4134
4135 /*********************************************************************
4136  *
4137  * Function    :  handle_conditional_hide_referrer_parameter
4138  *
4139  * Description :  Helper for client_referrer to crunch or forge
4140  *                the referrer header if the host has changed.
4141  *
4142  * Parameters  :
4143  *          1  :  header = Pointer to header pointer
4144  *          2  :  host   = The target host (may include the port)
4145  *          3  :  parameter_conditional_block = Boolean to signal
4146  *                if we're in conditional-block mode. If not set,
4147  *                we're in conditional-forge mode.
4148  *
4149  * Returns     :  JB_ERR_OK in case of success, or
4150  *                JB_ERR_MEMORY in case of memory problems.
4151  *
4152  *********************************************************************/
4153 static jb_err handle_conditional_hide_referrer_parameter(char **header,
4154    const char *host, const int parameter_conditional_block)
4155 {
4156    char *referer = strdup(*header);
4157    const size_t hostlenght = strlen(host);
4158    const char *referer_url = NULL;
4159
4160    if (NULL == referer)
4161    {
4162       freez(*header);
4163       return JB_ERR_MEMORY;
4164    }
4165
4166    /* referer begins with 'Referer: http[s]://' */
4167    if ((hostlenght+17) < strlen(referer))
4168    {
4169       /*
4170        * Shorten referer to make sure the referer is blocked
4171        * if www.example.org/www.example.com-shall-see-the-referer/
4172        * links to www.example.com/
4173        */
4174       referer[hostlenght+17] = '\0';
4175    }
4176    referer_url = strstr(referer, "http://");
4177    if ((NULL == referer_url) || (NULL == strstr(referer_url, host)))
4178    {
4179       /* Host has changed, Referer is invalid or a https URL. */
4180       if (parameter_conditional_block)
4181       {
4182          log_error(LOG_LEVEL_HEADER, "New host is: %s. Crunching %s!", host, *header);
4183          freez(*header);
4184       }
4185       else
4186       {
4187          freez(*header);
4188          freez(referer);
4189          return create_forged_referrer(header, host);
4190       }
4191    }
4192    freez(referer);
4193
4194    return JB_ERR_OK;
4195
4196 }
4197
4198
4199 /*********************************************************************
4200  *
4201  * Function    :  create_content_length_header
4202  *
4203  * Description :  Creates a Content-Length header.
4204  *
4205  * Parameters  :
4206  *          1  :  content_length = The content length to be used in the header.
4207  *          2  :  header = Allocated space to safe the header.
4208  *          3  :  buffer_length = The length of the allocated space.
4209  *
4210  * Returns     :  void
4211  *
4212  *********************************************************************/
4213 static void create_content_length_header(unsigned long long content_length,
4214                                          char *header, size_t buffer_length)
4215 {
4216    snprintf(header, buffer_length, "Content-Length: %llu", content_length);
4217 }
4218
4219
4220 /*
4221   Local Variables:
4222   tab-width: 3
4223   end:
4224 */