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