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