In server_last_modified(), rename negative to negative_delta.
[privoxy.git] / parsers.c
1 const char parsers_rcs[] = "$Id: parsers.c,v 1.167 2009/05/28 21:13:34 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 days, hours, minutes, seconds;
2234    
2235    /*
2236     * Are we messing with the Last-Modified header?
2237     */
2238    if ((csp->action->flags & ACTION_OVERWRITE_LAST_MODIFIED) == 0)
2239    {
2240       /*Nope*/
2241       return JB_ERR_OK;
2242    }
2243
2244    newval = csp->action->string[ACTION_STRING_LAST_MODIFIED];
2245
2246    if (0 == strcmpic(newval, "block") )
2247    {
2248       /*
2249        * Blocking Last-Modified header. Useless but why not.
2250        */
2251       log_error(LOG_LEVEL_HEADER, "Crunching %s!", *header);
2252       freez(*header);
2253       return JB_ERR_OK;
2254    }
2255    else if (0 == strcmpic(newval, "reset-to-request-time"))
2256    {  
2257       /*
2258        * Setting Last-Modified Header to now.
2259        */
2260       get_http_time(0, buf, sizeof(buf));
2261       freez(*header);
2262       *header = strdup("Last-Modified: ");
2263       string_append(header, buf);   
2264
2265       if (*header == NULL)
2266       {
2267          log_error(LOG_LEVEL_HEADER, "Insufficient memory. Last-Modified header got lost, boohoo.");  
2268       }
2269       else
2270       {
2271          log_error(LOG_LEVEL_HEADER, "Reset to present time: %s", *header);
2272       }
2273    }
2274    else if (0 == strcmpic(newval, "randomize"))
2275    {
2276       const char *header_time = *header + sizeof("Last-Modified:");
2277
2278       log_error(LOG_LEVEL_HEADER, "Randomizing: %s", *header);
2279       now = time(NULL);
2280 #ifdef HAVE_GMTIME_R
2281       gmtime_r(&now, &gmt);
2282 #elif defined(MUTEX_LOCKS_AVAILABLE)
2283       privoxy_mutex_lock(&gmtime_mutex);
2284       gmtime(&now);
2285       privoxy_mutex_unlock(&gmtime_mutex);
2286 #else
2287       gmtime(&now);
2288 #endif
2289       if (JB_ERR_OK != parse_header_time(header_time, &last_modified))
2290       {
2291          log_error(LOG_LEVEL_HEADER, "Couldn't parse: %s in %s (crunching!)", header_time, *header);
2292          freez(*header);
2293       }
2294       else
2295       {
2296          long int rtime = (long int)difftime(now, last_modified);
2297          if (rtime)
2298          {
2299             const int negative_delta = (rtime < 0);
2300
2301             if (negative_delta)
2302             {
2303                rtime *= -1; 
2304                log_error(LOG_LEVEL_HEADER, "Server time in the future.");
2305             }
2306             rtime = pick_from_range(rtime);
2307             if (negative_delta)
2308             {
2309                rtime *= -1;
2310             }
2311             last_modified += rtime;
2312 #ifdef HAVE_GMTIME_R
2313             timeptr = gmtime_r(&last_modified, &gmt);
2314 #elif defined(MUTEX_LOCKS_AVAILABLE)
2315             privoxy_mutex_lock(&gmtime_mutex);
2316             timeptr = gmtime(&last_modified);
2317             privoxy_mutex_unlock(&gmtime_mutex);
2318 #else
2319             timeptr = gmtime(&last_modified);
2320 #endif
2321             strftime(newheader, sizeof(newheader), "%a, %d %b %Y %H:%M:%S GMT", timeptr);
2322             freez(*header);
2323             *header = strdup("Last-Modified: ");
2324             string_append(header, newheader);
2325
2326             if (*header == NULL)
2327             {
2328                log_error(LOG_LEVEL_ERROR, "Insufficient memory, header crunched without replacement.");
2329                return JB_ERR_MEMORY;  
2330             }
2331
2332             days    = rtime / (3600 * 24);
2333             hours   = rtime / 3600 % 24;
2334             minutes = rtime / 60 % 60;
2335             seconds = rtime % 60;
2336
2337             log_error(LOG_LEVEL_HEADER,
2338                "Randomized:  %s (added %d da%s %d hou%s %d minut%s %d second%s",
2339                *header, days, (days == 1) ? "y" : "ys", hours, (hours == 1) ? "r" : "rs",
2340                minutes, (minutes == 1) ? "e" : "es", seconds, (seconds == 1) ? ")" : "s)");
2341          }
2342          else
2343          {
2344             log_error(LOG_LEVEL_HEADER, "Randomized ... or not. No time difference to work with.");
2345          }
2346       }
2347    }
2348
2349    return JB_ERR_OK;
2350 }
2351
2352
2353 /*********************************************************************
2354  *
2355  * Function    :  client_accept_encoding
2356  *
2357  * Description :  Rewrite the client's Accept-Encoding header so that
2358  *                if doesn't allow compression, if the action applies.
2359  *                Note: For HTTP/1.0 the absence of the header is enough.
2360  *
2361  * Parameters  :
2362  *          1  :  csp = Current client state (buffers, headers, etc...)
2363  *          2  :  header = On input, pointer to header to modify.
2364  *                On output, pointer to the modified header, or NULL
2365  *                to remove the header.  This function frees the
2366  *                original string if necessary.
2367  *
2368  * Returns     :  JB_ERR_OK on success, or
2369  *                JB_ERR_MEMORY on out-of-memory error.
2370  *
2371  *********************************************************************/
2372 static jb_err client_accept_encoding(struct client_state *csp, char **header)
2373 {
2374    if ((csp->action->flags & ACTION_NO_COMPRESSION) != 0)
2375    {
2376       log_error(LOG_LEVEL_HEADER, "Suppressed offer to compress content");
2377
2378       freez(*header);
2379
2380       /* Temporarily disable the correct behaviour to
2381        * work around a PHP bug. 
2382        *
2383        * if (!strcmpic(csp->http->ver, "HTTP/1.1"))
2384        * {
2385        *    *header = strdup("Accept-Encoding: identity;q=1.0, *;q=0");
2386        *    if (*header == NULL)
2387        *    {
2388        *       return JB_ERR_MEMORY;
2389        *    }
2390        * }
2391        * 
2392        */
2393    }
2394
2395    return JB_ERR_OK;
2396 }
2397
2398
2399 /*********************************************************************
2400  *
2401  * Function    :  client_te
2402  *
2403  * Description :  Rewrite the client's TE header so that
2404  *                if doesn't allow compression, if the action applies.
2405  *
2406  * Parameters  :
2407  *          1  :  csp = Current client state (buffers, headers, etc...)
2408  *          2  :  header = On input, pointer to header to modify.
2409  *                On output, pointer to the modified header, or NULL
2410  *                to remove the header.  This function frees the
2411  *                original string if necessary.
2412  *
2413  * Returns     :  JB_ERR_OK on success, or
2414  *                JB_ERR_MEMORY on out-of-memory error.
2415  *
2416  *********************************************************************/
2417 static jb_err client_te(struct client_state *csp, char **header)
2418 {
2419    if ((csp->action->flags & ACTION_NO_COMPRESSION) != 0)
2420    {
2421       freez(*header);
2422       log_error(LOG_LEVEL_HEADER, "Suppressed offer to compress transfer");
2423    }
2424
2425    return JB_ERR_OK;
2426 }
2427
2428
2429 /*********************************************************************
2430  *
2431  * Function    :  client_referrer
2432  *
2433  * Description :  Handle the "referer" config setting properly.
2434  *                Called from `sed'.
2435  *
2436  * Parameters  :
2437  *          1  :  csp = Current client state (buffers, headers, etc...)
2438  *          2  :  header = On input, pointer to header to modify.
2439  *                On output, pointer to the modified header, or NULL
2440  *                to remove the header.  This function frees the
2441  *                original string if necessary.
2442  *
2443  * Returns     :  JB_ERR_OK on success, or
2444  *                JB_ERR_MEMORY on out-of-memory error.
2445  *
2446  *********************************************************************/
2447 static jb_err client_referrer(struct client_state *csp, char **header)
2448 {
2449    const char *parameter;
2450    /* booleans for parameters we have to check multiple times */
2451    int parameter_conditional_block;
2452    int parameter_conditional_forge;
2453  
2454 #ifdef FEATURE_FORCE_LOAD
2455    /*
2456     * Since the referrer can include the prefix even
2457     * if the request itself is non-forced, we must
2458     * clean it unconditionally.
2459     *
2460     * XXX: strclean is too broad
2461     */
2462    strclean(*header, FORCE_PREFIX);
2463 #endif /* def FEATURE_FORCE_LOAD */
2464
2465    if ((csp->action->flags & ACTION_HIDE_REFERER) == 0)
2466    {
2467       /* Nothing left to do */
2468       return JB_ERR_OK;
2469    }
2470
2471    parameter = csp->action->string[ACTION_STRING_REFERER];
2472    assert(parameter != NULL);
2473    parameter_conditional_block = (0 == strcmpic(parameter, "conditional-block"));
2474    parameter_conditional_forge = (0 == strcmpic(parameter, "conditional-forge"));
2475
2476    if (!parameter_conditional_block && !parameter_conditional_forge)
2477    {
2478       /*
2479        * As conditional-block and conditional-forge are the only
2480        * parameters that rely on the original referrer, we can
2481        * remove it now for all the others.
2482        */
2483       freez(*header);
2484    }
2485
2486    if (0 == strcmpic(parameter, "block"))
2487    {
2488       log_error(LOG_LEVEL_HEADER, "Referer crunched!");
2489       return JB_ERR_OK;
2490    }
2491    else if (parameter_conditional_block || parameter_conditional_forge)
2492    {
2493       return handle_conditional_hide_referrer_parameter(header,
2494          csp->http->hostport, parameter_conditional_block);
2495    }
2496    else if (0 == strcmpic(parameter, "forge"))
2497    {
2498       return create_forged_referrer(header, csp->http->hostport);
2499    }
2500    else
2501    {
2502       /* interpret parameter as user-supplied referer to fake */
2503       return create_fake_referrer(header, parameter);
2504    }
2505 }
2506
2507
2508 /*********************************************************************
2509  *
2510  * Function    :  client_accept_language
2511  *
2512  * Description :  Handle the "Accept-Language" config setting properly.
2513  *                Called from `sed'.
2514  *
2515  * Parameters  :
2516  *          1  :  csp = Current client state (buffers, headers, etc...)
2517  *          2  :  header = On input, pointer to header to modify.
2518  *                On output, pointer to the modified header, or NULL
2519  *                to remove the header.  This function frees the
2520  *                original string if necessary.
2521  *
2522  * Returns     :  JB_ERR_OK on success, or
2523  *                JB_ERR_MEMORY on out-of-memory error.
2524  *
2525  *********************************************************************/
2526 static jb_err client_accept_language(struct client_state *csp, char **header)
2527 {
2528    const char *newval;
2529
2530    /*
2531     * Are we messing with the Accept-Language?
2532     */
2533    if ((csp->action->flags & ACTION_HIDE_ACCEPT_LANGUAGE) == 0)
2534    {
2535       /*I don't think so*/
2536       return JB_ERR_OK;
2537    }
2538
2539    newval = csp->action->string[ACTION_STRING_LANGUAGE];
2540
2541    if ((newval == NULL) || (0 == strcmpic(newval, "block")) )
2542    {
2543       /*
2544        * Blocking Accept-Language header
2545        */
2546       log_error(LOG_LEVEL_HEADER, "Crunching Accept-Language!");
2547       freez(*header);
2548       return JB_ERR_OK;
2549    }
2550    else
2551    {  
2552       /*
2553        * Replacing Accept-Language header
2554        */
2555       freez(*header);
2556       *header = strdup("Accept-Language: ");
2557       string_append(header, newval);   
2558
2559       if (*header == NULL)
2560       {
2561          log_error(LOG_LEVEL_ERROR,
2562             "Insufficient memory. Accept-Language header crunched without replacement.");  
2563       }
2564       else
2565       {
2566          log_error(LOG_LEVEL_HEADER,
2567             "Accept-Language header crunched and replaced with: %s", *header);
2568       }
2569    }
2570    return (*header == NULL) ? JB_ERR_MEMORY : JB_ERR_OK;
2571 }
2572
2573
2574 /*********************************************************************
2575  *
2576  * Function    :  crunch_client_header
2577  *
2578  * Description :  Crunch client header if it matches a string supplied by the
2579  *                user. Called from `sed'.
2580  *
2581  * Parameters  :
2582  *          1  :  csp = Current client state (buffers, headers, etc...)
2583  *          2  :  header = On input, pointer to header to modify.
2584  *                On output, pointer to the modified header, or NULL
2585  *                to remove the header.  This function frees the
2586  *                original string if necessary.
2587  *
2588  * Returns     :  JB_ERR_OK on success and always succeeds
2589  *
2590  *********************************************************************/
2591 static jb_err crunch_client_header(struct client_state *csp, char **header)
2592 {
2593    const char *crunch_pattern;
2594
2595    /* Do we feel like crunching? */
2596    if ((csp->action->flags & ACTION_CRUNCH_CLIENT_HEADER))
2597    {
2598       crunch_pattern = csp->action->string[ACTION_STRING_CLIENT_HEADER];
2599
2600       /* Is the current header the lucky one? */
2601       if (strstr(*header, crunch_pattern))
2602       {
2603          log_error(LOG_LEVEL_HEADER, "Crunching client header: %s (contains: %s)", *header, crunch_pattern);  
2604          freez(*header);
2605       }
2606    }
2607    return JB_ERR_OK;
2608 }
2609
2610
2611 /*********************************************************************
2612  *
2613  * Function    :  client_uagent
2614  *
2615  * Description :  Handle the "user-agent" config setting properly
2616  *                and remember its original value to enable browser
2617  *                bug workarounds. Called from `sed'.
2618  *
2619  * Parameters  :
2620  *          1  :  csp = Current client state (buffers, headers, etc...)
2621  *          2  :  header = On input, pointer to header to modify.
2622  *                On output, pointer to the modified header, or NULL
2623  *                to remove the header.  This function frees the
2624  *                original string if necessary.
2625  *
2626  * Returns     :  JB_ERR_OK on success, or
2627  *                JB_ERR_MEMORY on out-of-memory error.
2628  *
2629  *********************************************************************/
2630 static jb_err client_uagent(struct client_state *csp, char **header)
2631 {
2632    const char *newval;
2633
2634    if ((csp->action->flags & ACTION_HIDE_USER_AGENT) == 0)
2635    {
2636       return JB_ERR_OK;
2637    }
2638
2639    newval = csp->action->string[ACTION_STRING_USER_AGENT];
2640    if (newval == NULL)
2641    {
2642       return JB_ERR_OK;
2643    }
2644
2645    freez(*header);
2646    *header = strdup("User-Agent: ");
2647    string_append(header, newval);
2648
2649    log_error(LOG_LEVEL_HEADER, "Modified: %s", *header);
2650
2651    return (*header == NULL) ? JB_ERR_MEMORY : JB_ERR_OK;
2652 }
2653
2654
2655 /*********************************************************************
2656  *
2657  * Function    :  client_ua
2658  *
2659  * Description :  Handle "ua-" headers properly.  Called from `sed'.
2660  *
2661  * Parameters  :
2662  *          1  :  csp = Current client state (buffers, headers, etc...)
2663  *          2  :  header = On input, pointer to header to modify.
2664  *                On output, pointer to the modified header, or NULL
2665  *                to remove the header.  This function frees the
2666  *                original string if necessary.
2667  *
2668  * Returns     :  JB_ERR_OK on success, or
2669  *                JB_ERR_MEMORY on out-of-memory error.
2670  *
2671  *********************************************************************/
2672 static jb_err client_ua(struct client_state *csp, char **header)
2673 {
2674    if ((csp->action->flags & ACTION_HIDE_USER_AGENT) != 0)
2675    {
2676       log_error(LOG_LEVEL_HEADER, "crunched User-Agent!");
2677       freez(*header);
2678    }
2679
2680    return JB_ERR_OK;
2681 }
2682
2683
2684 /*********************************************************************
2685  *
2686  * Function    :  client_from
2687  *
2688  * Description :  Handle the "from" config setting properly.
2689  *                Called from `sed'.
2690  *
2691  * Parameters  :
2692  *          1  :  csp = Current client state (buffers, headers, etc...)
2693  *          2  :  header = On input, pointer to header to modify.
2694  *                On output, pointer to the modified header, or NULL
2695  *                to remove the header.  This function frees the
2696  *                original string if necessary.
2697  *
2698  * Returns     :  JB_ERR_OK on success, or
2699  *                JB_ERR_MEMORY on out-of-memory error.
2700  *
2701  *********************************************************************/
2702 static jb_err client_from(struct client_state *csp, char **header)
2703 {
2704    const char *newval;
2705
2706    if ((csp->action->flags & ACTION_HIDE_FROM) == 0)
2707    {
2708       return JB_ERR_OK;
2709    }
2710
2711    freez(*header);
2712
2713    newval = csp->action->string[ACTION_STRING_FROM];
2714
2715    /*
2716     * Are we blocking the e-mail address?
2717     */
2718    if ((newval == NULL) || (0 == strcmpic(newval, "block")) )
2719    {
2720       log_error(LOG_LEVEL_HEADER, "crunched From!");
2721       return JB_ERR_OK;
2722    }
2723
2724    log_error(LOG_LEVEL_HEADER, " modified");
2725
2726    *header = strdup("From: ");
2727    string_append(header, newval);
2728
2729    return (*header == NULL) ? JB_ERR_MEMORY : JB_ERR_OK;
2730 }
2731
2732
2733 /*********************************************************************
2734  *
2735  * Function    :  client_send_cookie
2736  *
2737  * Description :  Crunches the "cookie" header if necessary.
2738  *                Called from `sed'.
2739  *
2740  *                XXX: Stupid name, doesn't send squat.
2741  *
2742  * Parameters  :
2743  *          1  :  csp = Current client state (buffers, headers, etc...)
2744  *          2  :  header = On input, pointer to header to modify.
2745  *                On output, pointer to the modified header, or NULL
2746  *                to remove the header.  This function frees the
2747  *                original string if necessary.
2748  *
2749  * Returns     :  JB_ERR_OK on success, or
2750  *                JB_ERR_MEMORY on out-of-memory error.
2751  *
2752  *********************************************************************/
2753 static jb_err client_send_cookie(struct client_state *csp, char **header)
2754 {
2755    if (csp->action->flags & ACTION_NO_COOKIE_READ)
2756    {
2757       log_error(LOG_LEVEL_HEADER, "Crunched outgoing cookie: %s", *header);
2758       freez(*header);
2759    }
2760
2761    return JB_ERR_OK;
2762 }
2763
2764
2765 /*********************************************************************
2766  *
2767  * Function    :  client_x_forwarded
2768  *
2769  * Description :  Handle the "x-forwarded-for" config setting properly,
2770  *                also used in the add_client_headers list.  Called from `sed'.
2771  *
2772  * Parameters  :
2773  *          1  :  csp = Current client state (buffers, headers, etc...)
2774  *          2  :  header = On input, pointer to header to modify.
2775  *                On output, pointer to the modified header, or NULL
2776  *                to remove the header.  This function frees the
2777  *                original string if necessary.
2778  *
2779  * Returns     :  JB_ERR_OK on success, or
2780  *                JB_ERR_MEMORY on out-of-memory error.
2781  *
2782  *********************************************************************/
2783 jb_err client_x_forwarded(struct client_state *csp, char **header)
2784 {
2785    if (0 != (csp->action->flags & ACTION_CHANGE_X_FORWARDED_FOR))
2786    {
2787       const char *parameter = csp->action->string[ACTION_STRING_CHANGE_X_FORWARDED_FOR];
2788
2789       if (0 == strcmpic(parameter, "block"))
2790       {
2791          freez(*header);
2792          log_error(LOG_LEVEL_HEADER, "crunched x-forwarded-for!");
2793       }
2794       else if (0 == strcmpic(parameter, "add"))
2795       {
2796          string_append(header, ", ");
2797          string_append(header, csp->ip_addr_str);
2798
2799          if (*header == NULL)
2800          {
2801             return JB_ERR_MEMORY;
2802          }
2803          log_error(LOG_LEVEL_HEADER,
2804             "Appended client IP address to %s", *header);
2805          csp->flags |= CSP_FLAG_X_FORWARDED_FOR_APPENDED;
2806       }
2807       else
2808       {
2809          log_error(LOG_LEVEL_FATAL,
2810             "Invalid change-x-forwarded-for parameter: '%s'", parameter);
2811       }
2812    }
2813
2814    return JB_ERR_OK;
2815 }
2816
2817
2818 /*********************************************************************
2819  *
2820  * Function    :  client_max_forwards
2821  *
2822  * Description :  If the HTTP method is OPTIONS or TRACE, subtract one
2823  *                from the value of the Max-Forwards header field.
2824  *
2825  * Parameters  :
2826  *          1  :  csp = Current client state (buffers, headers, etc...)
2827  *          2  :  header = On input, pointer to header to modify.
2828  *                On output, pointer to the modified header, or NULL
2829  *                to remove the header.  This function frees the
2830  *                original string if necessary.
2831  *
2832  * Returns     :  JB_ERR_OK on success, or
2833  *                JB_ERR_MEMORY on out-of-memory error.
2834  *
2835  *********************************************************************/
2836 static jb_err client_max_forwards(struct client_state *csp, char **header)
2837 {
2838    int max_forwards;
2839
2840    if ((0 == strcmpic(csp->http->gpc, "trace")) ||
2841        (0 == strcmpic(csp->http->gpc, "options")))
2842    {
2843       assert(*(*header+12) == ':');
2844       if (1 == sscanf(*header+12, ": %d", &max_forwards))
2845       {
2846          if (max_forwards > 0)
2847          {
2848             snprintf(*header, strlen(*header)+1, "Max-Forwards: %d", --max_forwards);
2849             log_error(LOG_LEVEL_HEADER,
2850                "Max-Forwards value for %s request reduced to %d.",
2851                csp->http->gpc, max_forwards);
2852          }
2853          else if (max_forwards < 0)
2854          {
2855             log_error(LOG_LEVEL_ERROR, "Crunching invalid header: %s", *header);
2856             freez(*header);
2857          }
2858       }
2859       else
2860       {
2861          log_error(LOG_LEVEL_ERROR, "Crunching invalid header: %s", *header);
2862          freez(*header);
2863       }
2864    }
2865
2866    return JB_ERR_OK;
2867 }
2868
2869
2870 /*********************************************************************
2871  *
2872  * Function    :  client_host
2873  *
2874  * Description :  If the request URI did not contain host and
2875  *                port information, parse and evaluate the Host
2876  *                header field.
2877  *
2878  *                Also, kill ill-formed HOST: headers as sent by
2879  *                Apple's iTunes software when used with a proxy.
2880  *
2881  * Parameters  :
2882  *          1  :  csp = Current client state (buffers, headers, etc...)
2883  *          2  :  header = On input, pointer to header to modify.
2884  *                On output, pointer to the modified header, or NULL
2885  *                to remove the header.  This function frees the
2886  *                original string if necessary.
2887  *
2888  * Returns     :  JB_ERR_OK on success, or
2889  *                JB_ERR_MEMORY on out-of-memory error.
2890  *
2891  *********************************************************************/
2892 static jb_err client_host(struct client_state *csp, char **header)
2893 {
2894    char *p, *q;
2895
2896    /*
2897     * If the header field name is all upper-case, chances are that it's
2898     * an ill-formed one from iTunes. BTW, killing innocent headers here is
2899     * not a problem -- they are regenerated later.
2900     */
2901    if ((*header)[1] == 'O')
2902    {
2903       log_error(LOG_LEVEL_HEADER, "Killed all-caps Host header line: %s", *header);
2904       freez(*header);
2905       return JB_ERR_OK;
2906    }
2907
2908    if (!csp->http->hostport || (*csp->http->hostport == '*') ||  
2909        *csp->http->hostport == ' ' || *csp->http->hostport == '\0')
2910    {
2911       
2912       if (NULL == (p = strdup((*header)+6)))
2913       {
2914          return JB_ERR_MEMORY;
2915       }
2916       chomp(p);
2917       if (NULL == (q = strdup(p)))
2918       {
2919          freez(p);
2920          return JB_ERR_MEMORY;
2921       }
2922
2923       freez(csp->http->hostport);
2924       csp->http->hostport = p;
2925       freez(csp->http->host);
2926       csp->http->host = q;
2927       q = strchr(csp->http->host, ':');
2928       if (q != NULL)
2929       {
2930          /* Terminate hostname and evaluate port string */
2931          *q++ = '\0';
2932          csp->http->port = atoi(q);
2933       }
2934       else
2935       {
2936          csp->http->port = csp->http->ssl ? 443 : 80;
2937       }
2938
2939       log_error(LOG_LEVEL_HEADER, "New host and port from Host field: %s = %s:%d",
2940                 csp->http->hostport, csp->http->host, csp->http->port);
2941    }
2942
2943    /* Signal client_host_adder() to return right away */
2944    csp->flags |= CSP_FLAG_HOST_HEADER_IS_SET;
2945
2946    return JB_ERR_OK;
2947 }
2948
2949
2950 /*********************************************************************
2951  *
2952  * Function    :  client_if_modified_since
2953  *
2954  * Description :  Remove or modify the If-Modified-Since header.
2955  *
2956  * Parameters  :
2957  *          1  :  csp = Current client state (buffers, headers, etc...)
2958  *          2  :  header = On input, pointer to header to modify.
2959  *                On output, pointer to the modified header, or NULL
2960  *                to remove the header.  This function frees the
2961  *                original string if necessary.
2962  *
2963  * Returns     :  JB_ERR_OK on success, or
2964  *                JB_ERR_MEMORY on out-of-memory error.
2965  *
2966  *********************************************************************/
2967 static jb_err client_if_modified_since(struct client_state *csp, char **header)
2968 {
2969    char newheader[50];
2970 #ifdef HAVE_GMTIME_R
2971    struct tm gmt;
2972 #endif
2973    struct tm *timeptr = NULL;
2974    time_t tm = 0;                  
2975    const char *newval;
2976    long int rtime;
2977    long int hours, minutes, seconds;
2978    int negative = 0;
2979    char * endptr;
2980    
2981    if ( 0 == strcmpic(*header, "If-Modified-Since: Wed, 08 Jun 1955 12:00:00 GMT"))
2982    {
2983       /* 
2984        * The client got an error message because of a temporary problem,
2985        * the problem is gone and the client now tries to revalidate our
2986        * error message on the real server. The revalidation would always
2987        * end with the transmission of the whole document and there is
2988        * no need to expose the bogus If-Modified-Since header.
2989        */
2990       log_error(LOG_LEVEL_HEADER, "Crunching useless If-Modified-Since header.");
2991       freez(*header);
2992    }
2993    else if (csp->action->flags & ACTION_HIDE_IF_MODIFIED_SINCE)
2994    {
2995       newval = csp->action->string[ACTION_STRING_IF_MODIFIED_SINCE];
2996
2997       if ((0 == strcmpic(newval, "block")))
2998       {
2999          log_error(LOG_LEVEL_HEADER, "Crunching %s", *header);
3000          freez(*header);
3001       }
3002       else /* add random value */
3003       {
3004          const char *header_time = *header + sizeof("If-Modified-Since:");
3005
3006          if (JB_ERR_OK != parse_header_time(header_time, &tm))
3007          {
3008             log_error(LOG_LEVEL_HEADER, "Couldn't parse: %s in %s (crunching!)", header_time, *header);
3009             freez(*header);
3010          }
3011          else
3012          {
3013             rtime = strtol(newval, &endptr, 0);
3014             if (rtime)
3015             {
3016                log_error(LOG_LEVEL_HEADER, "Randomizing: %s (random range: %d minut%s)",
3017                   *header, rtime, (rtime == 1 || rtime == -1) ? "e": "es");
3018                if (rtime < 0)
3019                {
3020                   rtime *= -1; 
3021                   negative = 1;
3022                }
3023                rtime *= 60;
3024                rtime = pick_from_range(rtime);
3025             }
3026             else
3027             {
3028                log_error(LOG_LEVEL_ERROR, "Random range is 0. Assuming time transformation test.",
3029                   *header);
3030             }
3031             tm += rtime * (negative ? -1 : 1);
3032 #ifdef HAVE_GMTIME_R
3033             timeptr = gmtime_r(&tm, &gmt);
3034 #elif defined(MUTEX_LOCKS_AVAILABLE)
3035             privoxy_mutex_lock(&gmtime_mutex);
3036             timeptr = gmtime(&tm);
3037             privoxy_mutex_unlock(&gmtime_mutex);
3038 #else
3039             timeptr = gmtime(&tm);
3040 #endif
3041             strftime(newheader, sizeof(newheader), "%a, %d %b %Y %H:%M:%S GMT", timeptr);
3042
3043             freez(*header);
3044             *header = strdup("If-Modified-Since: ");
3045             string_append(header, newheader);
3046
3047             if (*header == NULL)
3048             {
3049                log_error(LOG_LEVEL_HEADER, "Insufficient memory, header crunched without replacement.");
3050                return JB_ERR_MEMORY;  
3051             }
3052
3053             hours   = rtime / 3600;
3054             minutes = rtime / 60 % 60;
3055             seconds = rtime % 60;
3056
3057             log_error(LOG_LEVEL_HEADER,
3058                "Randomized:  %s (%s %d hou%s %d minut%s %d second%s",
3059                *header, (negative) ? "subtracted" : "added", hours,
3060                (hours == 1) ? "r" : "rs", minutes, (minutes == 1) ? "e" : "es",
3061                seconds, (seconds == 1) ? ")" : "s)");
3062          }
3063       }
3064    }
3065
3066    return JB_ERR_OK;
3067 }
3068
3069
3070 /*********************************************************************
3071  *
3072  * Function    :  client_if_none_match
3073  *
3074  * Description :  Remove the If-None-Match header.
3075  *
3076  * Parameters  :
3077  *          1  :  csp = Current client state (buffers, headers, etc...)
3078  *          2  :  header = On input, pointer to header to modify.
3079  *                On output, pointer to the modified header, or NULL
3080  *                to remove the header.  This function frees the
3081  *                original string if necessary.
3082  *
3083  * Returns     :  JB_ERR_OK on success, or
3084  *                JB_ERR_MEMORY on out-of-memory error.
3085  *
3086  *********************************************************************/
3087 static jb_err client_if_none_match(struct client_state *csp, char **header)
3088 {
3089    if (csp->action->flags & ACTION_CRUNCH_IF_NONE_MATCH)
3090    {  
3091       log_error(LOG_LEVEL_HEADER, "Crunching %s", *header);
3092       freez(*header);
3093    }
3094
3095    return JB_ERR_OK;
3096 }
3097
3098
3099 /*********************************************************************
3100  *
3101  * Function    :  client_x_filter
3102  *
3103  * Description :  Disables filtering if the client set "X-Filter: No".
3104  *                Called from `sed'.
3105  *
3106  * Parameters  :
3107  *          1  :  csp = Current client state (buffers, headers, etc...)
3108  *          2  :  header = On input, pointer to header to modify.
3109  *                On output, pointer to the modified header, or NULL
3110  *                to remove the header.  This function frees the
3111  *                original string if necessary.
3112  *
3113  * Returns     :  JB_ERR_OK on success
3114  *
3115  *********************************************************************/
3116 jb_err client_x_filter(struct client_state *csp, char **header)
3117 {
3118    if ( 0 == strcmpic(*header, "X-Filter: No"))
3119    {
3120       if (!(csp->config->feature_flags & RUNTIME_FEATURE_HTTP_TOGGLE))
3121       {
3122          log_error(LOG_LEVEL_INFO, "Ignored the client's request to fetch without filtering.");
3123       }
3124       else
3125       {
3126          if (csp->action->flags & ACTION_FORCE_TEXT_MODE)
3127          {
3128             log_error(LOG_LEVEL_HEADER,
3129                "force-text-mode overruled the client's request to fetch without filtering!");
3130          }
3131          else
3132          {  
3133             csp->content_type = CT_TABOO; /* XXX: This hack shouldn't be necessary */
3134             csp->flags |= CSP_FLAG_NO_FILTERING;
3135             log_error(LOG_LEVEL_HEADER, "Accepted the client's request to fetch without filtering.");
3136          }
3137          log_error(LOG_LEVEL_HEADER, "Crunching %s", *header);
3138          freez(*header);
3139       }
3140    }
3141    return JB_ERR_OK; 
3142 }
3143
3144
3145 /*********************************************************************
3146  *
3147  * Function    :  client_range
3148  *
3149  * Description :  Removes Range, Request-Range and If-Range headers if
3150  *                content filtering is enabled. If the client's version
3151  *                of the document has been altered by Privoxy, the server
3152  *                could interpret the range differently than the client
3153  *                intended in which case the user could end up with
3154  *                corrupted content.
3155  *
3156  * Parameters  :
3157  *          1  :  csp = Current client state (buffers, headers, etc...)
3158  *          2  :  header = On input, pointer to header to modify.
3159  *                On output, pointer to the modified header, or NULL
3160  *                to remove the header.  This function frees the
3161  *                original string if necessary.
3162  *
3163  * Returns     :  JB_ERR_OK
3164  *
3165  *********************************************************************/
3166 static jb_err client_range(struct client_state *csp, char **header)
3167 {
3168    if (content_filters_enabled(csp->action))
3169    {
3170       log_error(LOG_LEVEL_HEADER, "Content filtering is enabled."
3171          " Crunching: \'%s\' to prevent range-mismatch problems.", *header);
3172       freez(*header);
3173    }
3174
3175    return JB_ERR_OK; 
3176 }
3177
3178 /* the following functions add headers directly to the header list */
3179
3180 /*********************************************************************
3181  *
3182  * Function    :  client_host_adder
3183  *
3184  * Description :  Adds the Host: header field if it is missing.
3185  *                Called from `sed'.
3186  *
3187  * Parameters  :
3188  *          1  :  csp = Current client state (buffers, headers, etc...)
3189  *
3190  * Returns     :  JB_ERR_OK on success, or
3191  *                JB_ERR_MEMORY on out-of-memory error.
3192  *
3193  *********************************************************************/
3194 static jb_err client_host_adder(struct client_state *csp)
3195 {
3196    char *p;
3197    jb_err err;
3198
3199    if (csp->flags & CSP_FLAG_HOST_HEADER_IS_SET)
3200    {
3201       /* Header already set by the client, nothing to do. */
3202       return JB_ERR_OK;
3203    }
3204
3205    if ( !csp->http->hostport || !*(csp->http->hostport))
3206    {
3207       /* XXX: When does this happen and why is it OK? */
3208       log_error(LOG_LEVEL_INFO, "Weirdness in client_host_adder detected and ignored.");
3209       return JB_ERR_OK;
3210    }
3211
3212    /*
3213     * remove 'user:pass@' from 'proto://user:pass@host'
3214     */
3215    if ( (p = strchr( csp->http->hostport, '@')) != NULL )
3216    {
3217       p++;
3218    }
3219    else
3220    {
3221       p = csp->http->hostport;
3222    }
3223
3224    /* XXX: Just add it, we already made sure that it will be unique */
3225    log_error(LOG_LEVEL_HEADER, "addh-unique: Host: %s", p);
3226    err = enlist_unique_header(csp->headers, "Host", p);
3227    return err;
3228
3229 }
3230
3231
3232 #if 0
3233 /*********************************************************************
3234  *
3235  * Function    :  client_accept_encoding_adder
3236  *
3237  * Description :  Add an Accept-Encoding header to the client's request
3238  *                that disables compression if the action applies, and
3239  *                the header is not already there. Called from `sed'.
3240  *                Note: For HTTP/1.0, the absence of the header is enough.
3241  *
3242  * Parameters  :
3243  *          1  :  csp = Current client state (buffers, headers, etc...)
3244  *
3245  * Returns     :  JB_ERR_OK on success, or
3246  *                JB_ERR_MEMORY on out-of-memory error.
3247  *
3248  *********************************************************************/
3249 static jb_err client_accept_encoding_adder(struct client_state *csp)
3250 {
3251    if (   ((csp->action->flags & ACTION_NO_COMPRESSION) != 0)
3252        && (!strcmpic(csp->http->ver, "HTTP/1.1")) )
3253    {
3254       return enlist_unique(csp->headers, "Accept-Encoding: identity;q=1.0, *;q=0", 16);
3255    }
3256
3257    return JB_ERR_OK;
3258 }
3259 #endif
3260
3261
3262 /*********************************************************************
3263  *
3264  * Function    :  client_xtra_adder
3265  *
3266  * Description :  Used in the add_client_headers list.  Called from `sed'.
3267  *
3268  * Parameters  :
3269  *          1  :  csp = Current client state (buffers, headers, etc...)
3270  *
3271  * Returns     :  JB_ERR_OK on success, or
3272  *                JB_ERR_MEMORY on out-of-memory error.
3273  *
3274  *********************************************************************/
3275 static jb_err client_xtra_adder(struct client_state *csp)
3276 {
3277    struct list_entry *lst;
3278    jb_err err;
3279
3280    for (lst = csp->action->multi[ACTION_MULTI_ADD_HEADER]->first;
3281         lst ; lst = lst->next)
3282    {
3283       log_error(LOG_LEVEL_HEADER, "addh: %s", lst->str);
3284       err = enlist(csp->headers, lst->str);
3285       if (err)
3286       {
3287          return err;
3288       }
3289
3290    }
3291
3292    return JB_ERR_OK;
3293 }
3294
3295
3296 /*********************************************************************
3297  *
3298  * Function    :  client_x_forwarded_for_adder
3299  *
3300  * Description :  Used in the add_client_headers list.  Called from `sed'.
3301  *
3302  * Parameters  :
3303  *          1  :  csp = Current client state (buffers, headers, etc...)
3304  *
3305  * Returns     :  JB_ERR_OK on success, or
3306  *                JB_ERR_MEMORY on out-of-memory error.
3307  *
3308  *********************************************************************/
3309 static jb_err client_x_forwarded_for_adder(struct client_state *csp)
3310 {
3311    char *header = NULL;
3312    jb_err err;
3313
3314    if (!((csp->action->flags & ACTION_CHANGE_X_FORWARDED_FOR)
3315          && (0 == strcmpic(csp->action->string[ACTION_STRING_CHANGE_X_FORWARDED_FOR], "add")))
3316       || (csp->flags & CSP_FLAG_X_FORWARDED_FOR_APPENDED))
3317    {
3318       /*
3319        * If we aren't adding X-Forwarded-For headers,
3320        * or we already appended an existing X-Forwarded-For
3321        * header, there's nothing left to do here.
3322        */
3323       return JB_ERR_OK;
3324    }
3325
3326    header = strdup("X-Forwarded-For: ");
3327    string_append(&header, csp->ip_addr_str);
3328
3329    if (header == NULL)
3330    {
3331       return JB_ERR_MEMORY;
3332    }
3333
3334    log_error(LOG_LEVEL_HEADER, "addh: %s", header);
3335    err = enlist(csp->headers, header);
3336    freez(header);
3337
3338    return err;
3339 }
3340
3341
3342 /*********************************************************************
3343  *
3344  * Function    :  server_connection_adder
3345  *
3346  * Description :  Adds an appropiate "Connection:" header to csp->headers
3347  *                unless the header was already present. Called from `sed'.
3348  *
3349  * Parameters  :
3350  *          1  :  csp = Current client state (buffers, headers, etc...)
3351  *
3352  * Returns     :  JB_ERR_OK on success, or
3353  *                JB_ERR_MEMORY on out-of-memory error.
3354  *
3355  *********************************************************************/
3356 static jb_err server_connection_adder(struct client_state *csp)
3357 {
3358    const unsigned int flags = csp->flags;
3359    const char *response_status_line = csp->headers->first->str;
3360    const char *wanted_header = get_appropiate_connection_header(csp);
3361
3362    if ((flags & CSP_FLAG_CLIENT_HEADER_PARSING_DONE)
3363     && (flags & CSP_FLAG_SERVER_CONNECTION_HEADER_SET))
3364    {
3365       return JB_ERR_OK;
3366    }
3367
3368    /*
3369     * XXX: if we downgraded the response, this check will fail.
3370     */
3371    if ((csp->config->feature_flags &
3372         RUNTIME_FEATURE_CONNECTION_KEEP_ALIVE)
3373     && (NULL != response_status_line)
3374     && !strncmpic(response_status_line, "HTTP/1.1", 8))
3375    {
3376       log_error(LOG_LEVEL_HEADER, "A HTTP/1.1 response "
3377          "without Connection header implies keep-alive.");
3378       csp->flags |= CSP_FLAG_SERVER_CONNECTION_KEEP_ALIVE;
3379    }
3380
3381    log_error(LOG_LEVEL_HEADER, "Adding: %s", wanted_header);
3382
3383    return enlist(csp->headers, wanted_header);
3384 }
3385
3386
3387 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
3388 /*********************************************************************
3389  *
3390  * Function    :  server_proxy_connection_adder
3391  *
3392  * Description :  Adds a "Proxy-Connection: keep-alive" header to
3393  *                csp->headers if the client asked for keep-alive.
3394  *                XXX: We should reuse existant ones.
3395  *
3396  * Parameters  :
3397  *          1  :  csp = Current client state (buffers, headers, etc...)
3398  *
3399  * Returns     :  JB_ERR_OK on success, or
3400  *                JB_ERR_MEMORY on out-of-memory error.
3401  *
3402  *********************************************************************/
3403 static jb_err server_proxy_connection_adder(struct client_state *csp)
3404 {
3405    static const char proxy_connection_header[] = "Proxy-Connection: keep-alive";
3406    jb_err err = JB_ERR_OK;
3407
3408    if ((csp->flags & CSP_FLAG_CLIENT_CONNECTION_KEEP_ALIVE))
3409    {
3410       log_error(LOG_LEVEL_HEADER, "Adding: %s", proxy_connection_header);
3411       err = enlist(csp->headers, proxy_connection_header);
3412    }
3413
3414    return err;
3415 }
3416 #endif /* FEATURE_CONNECTION_KEEP_ALIVE */
3417
3418
3419 /*********************************************************************
3420  *
3421  * Function    :  client_connection_header_adder
3422  *
3423  * Description :  Adds a proper "Connection:" header to csp->headers
3424  *                unless the header was already present. Called from `sed'.
3425  *
3426  * Parameters  :
3427  *          1  :  csp = Current client state (buffers, headers, etc...)
3428  *
3429  * Returns     :  JB_ERR_OK on success, or
3430  *                JB_ERR_MEMORY on out-of-memory error.
3431  *
3432  *********************************************************************/
3433 static jb_err client_connection_header_adder(struct client_state *csp)
3434 {
3435    const char *wanted_header = get_appropiate_connection_header(csp);
3436
3437    if (!(csp->flags & CSP_FLAG_CLIENT_HEADER_PARSING_DONE)
3438      && (csp->flags & CSP_FLAG_CLIENT_CONNECTION_HEADER_SET))
3439    {
3440       return JB_ERR_OK;
3441    }
3442
3443    if ((csp->config->feature_flags & RUNTIME_FEATURE_CONNECTION_KEEP_ALIVE)
3444       && (csp->http->ssl == 0))
3445    {
3446       csp->flags |= CSP_FLAG_CLIENT_CONNECTION_KEEP_ALIVE;
3447    }
3448
3449    log_error(LOG_LEVEL_HEADER, "Adding: %s", wanted_header);
3450
3451    return enlist(csp->headers, wanted_header);
3452 }
3453
3454
3455 /*********************************************************************
3456  *
3457  * Function    :  server_http
3458  *
3459  * Description :  - Save the HTTP Status into csp->http->status
3460  *                - Set CT_TABOO to prevent filtering if the answer
3461  *                  is a partial range (HTTP status 206)
3462  *                - Rewrite HTTP/1.1 answers to HTTP/1.0 if +downgrade
3463  *                  action applies.
3464  *
3465  * Parameters  :
3466  *          1  :  csp = Current client state (buffers, headers, etc...)
3467  *          2  :  header = On input, pointer to header to modify.
3468  *                On output, pointer to the modified header, or NULL
3469  *                to remove the header.  This function frees the
3470  *                original string if necessary.
3471  *
3472  * Returns     :  JB_ERR_OK on success, or
3473  *                JB_ERR_MEMORY on out-of-memory error.
3474  *
3475  *********************************************************************/
3476 static jb_err server_http(struct client_state *csp, char **header)
3477 {
3478    sscanf(*header, "HTTP/%*d.%*d %d", &(csp->http->status));
3479    if (csp->http->status == 206)
3480    {
3481       csp->content_type = CT_TABOO;
3482    }
3483
3484    if ((csp->action->flags & ACTION_DOWNGRADE) != 0)
3485    {
3486       /* XXX: Should we do a real validity check here? */
3487       if (strlen(*header) > 8)
3488       {
3489          (*header)[7] = '0';
3490          log_error(LOG_LEVEL_HEADER, "Downgraded answer to HTTP/1.0");
3491       }
3492       else
3493       {
3494          /*
3495           * XXX: Should we block the request or
3496           * enlist a valid status code line here?
3497           */
3498          log_error(LOG_LEVEL_INFO, "Malformed server response detected. "
3499             "Downgrading to HTTP/1.0 impossible.");
3500       }
3501    }
3502
3503    return JB_ERR_OK;
3504 }
3505
3506
3507 /*********************************************************************
3508  *
3509  * Function    :  server_set_cookie
3510  *
3511  * Description :  Handle the server "cookie" header properly.
3512  *                Log cookie to the jar file.  Then "crunch",
3513  *                accept or rewrite it to a session cookie.
3514  *                Called from `sed'.
3515  *
3516  *                TODO: Allow the user to specify a new expiration
3517  *                time to cause the cookie to expire even before the
3518  *                browser is closed.
3519  *
3520  * Parameters  :
3521  *          1  :  csp = Current client state (buffers, headers, etc...)
3522  *          2  :  header = On input, pointer to header to modify.
3523  *                On output, pointer to the modified header, or NULL
3524  *                to remove the header.  This function frees the
3525  *                original string if necessary.
3526  *
3527  * Returns     :  JB_ERR_OK on success, or
3528  *                JB_ERR_MEMORY on out-of-memory error.
3529  *
3530  *********************************************************************/
3531 static jb_err server_set_cookie(struct client_state *csp, char **header)
3532 {
3533    time_t now;
3534    time_t cookie_time; 
3535
3536    time(&now);
3537
3538    if ((csp->action->flags & ACTION_NO_COOKIE_SET) != 0)
3539    {
3540       log_error(LOG_LEVEL_HEADER, "Crunching incoming cookie: %s", *header);
3541       freez(*header);
3542    }
3543    else if ((csp->action->flags & ACTION_NO_COOKIE_KEEP) != 0)
3544    {
3545       /* Flag whether or not to log a message */
3546       int changed = 0;
3547
3548       /* A variable to store the tag we're working on */
3549       char *cur_tag;
3550
3551       /* Skip "Set-Cookie:" (11 characters) in header */
3552       cur_tag = *header + 11;
3553
3554       /* skip whitespace between "Set-Cookie:" and value */
3555       while (*cur_tag && ijb_isspace(*cur_tag))
3556       {
3557          cur_tag++;
3558       }
3559
3560       /* Loop through each tag in the cookie */
3561       while (*cur_tag)
3562       {
3563          /* Find next tag */
3564          char *next_tag = strchr(cur_tag, ';');
3565          if (next_tag != NULL)
3566          {
3567             /* Skip the ';' character itself */
3568             next_tag++;
3569
3570             /* skip whitespace ";" and start of tag */
3571             while (*next_tag && ijb_isspace(*next_tag))
3572             {
3573                next_tag++;
3574             }
3575          }
3576          else
3577          {
3578             /* "Next tag" is the end of the string */
3579             next_tag = cur_tag + strlen(cur_tag);
3580          }
3581
3582          /*
3583           * Check the expiration date to see
3584           * if the cookie is still valid, if yes,
3585           * rewrite it to a session cookie.
3586           */
3587          if ((strncmpic(cur_tag, "expires=", 8) == 0) && *(cur_tag + 8))
3588          {
3589             char *expiration_date = cur_tag + 8; /* Skip "[Ee]xpires=" */
3590
3591             /* Did we detect the date properly? */
3592             if (JB_ERR_OK != parse_header_time(expiration_date, &cookie_time))
3593             {
3594                /*
3595                 * Nope, treat it as if it was still valid.
3596                 *
3597                 * XXX: Should we remove the whole cookie instead?
3598                 */
3599                log_error(LOG_LEVEL_ERROR,
3600                   "Can't parse \'%s\', send by %s. Unsupported time format?", cur_tag, csp->http->url);
3601                string_move(cur_tag, next_tag);
3602                changed = 1;
3603             }
3604             else
3605             {
3606                /*
3607                 * Yes. Check if the cookie is still valid.
3608                 *
3609                 * If the cookie is already expired it's probably
3610                 * a delete cookie and even if it isn't, the browser
3611                 * will discard it anyway.
3612                 */
3613
3614                /*
3615                 * XXX: timegm() isn't available on some AmigaOS
3616                 * versions and our replacement doesn't work.
3617                 *
3618                 * Our options are to either:
3619                 *
3620                 * - disable session-cookies-only completely if timegm
3621                 *   is missing,
3622                 *
3623                 * - to simply remove all expired tags, like it has
3624                 *   been done until Privoxy 3.0.6 and to live with
3625                 *    the consequence that it can cause login/logout
3626                 *   problems on servers that don't validate their
3627                 *   input properly, or
3628                 *
3629                 * - to replace it with mktime in which
3630                 *   case there is a slight chance of valid cookies
3631                 *   passing as already expired.
3632                 *
3633                 *   This is the way it's currently done and it's not
3634                 *   as bad as it sounds. If the missing GMT offset is
3635                 *   enough to change the result of the expiration check
3636                 *   the cookie will be only valid for a few hours
3637                 *   anyway, which in many cases will be shorter
3638                 *   than a browser session.
3639                 */
3640                if (cookie_time - now < 0)
3641                {
3642                   log_error(LOG_LEVEL_HEADER,
3643                      "Cookie \'%s\' is already expired and can pass unmodified.", *header);
3644                   /* Just in case some clown sets more then one expiration date */
3645                   cur_tag = next_tag;
3646                }
3647                else
3648                {
3649                   /*
3650                    * Still valid, delete expiration date by copying
3651                    * the rest of the string over it.
3652                    */
3653                   string_move(cur_tag, next_tag);
3654
3655                   /* That changed the header, need to issue a log message */
3656                   changed = 1;
3657
3658                   /*
3659                    * Note that the next tag has now been moved to *cur_tag,
3660                    * so we do not need to update the cur_tag pointer.
3661                    */
3662                }
3663             }
3664
3665          }
3666          else
3667          {
3668             /* Move on to next cookie tag */
3669             cur_tag = next_tag;
3670          }
3671       }
3672
3673       if (changed)
3674       {
3675          assert(NULL != *header);
3676          log_error(LOG_LEVEL_HEADER, "Cookie rewritten to a temporary one: %s",
3677             *header);
3678       }
3679    }
3680
3681    return JB_ERR_OK;
3682 }
3683
3684
3685 #ifdef FEATURE_FORCE_LOAD
3686 /*********************************************************************
3687  *
3688  * Function    :  strclean
3689  *
3690  * Description :  In-Situ-Eliminate all occurances of substring in
3691  *                string
3692  *
3693  * Parameters  :
3694  *          1  :  string = string to clean
3695  *          2  :  substring = substring to eliminate
3696  *
3697  * Returns     :  Number of eliminations
3698  *
3699  *********************************************************************/
3700 int strclean(char *string, const char *substring)
3701 {
3702    int hits = 0;
3703    size_t len;
3704    char *pos, *p;
3705
3706    len = strlen(substring);
3707
3708    while((pos = strstr(string, substring)) != NULL)
3709    {
3710       p = pos + len;
3711       do
3712       {
3713          *(p - len) = *p;
3714       }
3715       while (*p++ != '\0');
3716
3717       hits++;
3718    }
3719
3720    return(hits);
3721 }
3722 #endif /* def FEATURE_FORCE_LOAD */
3723
3724
3725 /*********************************************************************
3726  *
3727  * Function    :  parse_header_time
3728  *
3729  * Description :  Parses time formats used in HTTP header strings
3730  *                to get the numerical respresentation.
3731  *
3732  * Parameters  :
3733  *          1  :  header_time = HTTP header time as string. 
3734  *          2  :  result = storage for header_time in seconds
3735  *
3736  * Returns     :  JB_ERR_OK if the time format was recognized, or
3737  *                JB_ERR_PARSE otherwise.
3738  *
3739  *********************************************************************/
3740 static jb_err parse_header_time(const char *header_time, time_t *result)
3741 {
3742    struct tm gmt;
3743
3744    /*
3745     * Zero out gmt to prevent time zone offsets.
3746     *
3747     * While this is only necessary on some platforms
3748     * (mingw32 for example), I don't know how to
3749     * detect these automatically and doing it everywhere
3750     * shouldn't hurt.
3751     */
3752    memset(&gmt, 0, sizeof(gmt));
3753
3754                             /* Tue, 02 Jun 2037 20:00:00 */
3755    if ((NULL == strptime(header_time, "%a, %d %b %Y %H:%M:%S", &gmt))
3756                             /* Tue, 02-Jun-2037 20:00:00 */
3757     && (NULL == strptime(header_time, "%a, %d-%b-%Y %H:%M:%S", &gmt))
3758                             /* Tue, 02-Jun-37 20:00:00 */
3759     && (NULL == strptime(header_time, "%a, %d-%b-%y %H:%M:%S", &gmt))
3760                         /* Tuesday, 02-Jun-2037 20:00:00 */
3761     && (NULL == strptime(header_time, "%A, %d-%b-%Y %H:%M:%S", &gmt))
3762                         /* Tuesday Jun 02 20:00:00 2037 */
3763     && (NULL == strptime(header_time, "%A %b %d %H:%M:%S %Y", &gmt)))
3764    {
3765       return JB_ERR_PARSE;
3766    }
3767
3768    *result = timegm(&gmt);
3769
3770    return JB_ERR_OK;
3771
3772 }
3773
3774
3775 /*********************************************************************
3776  *
3777  * Function    :  get_destination_from_headers
3778  *
3779  * Description :  Parse the "Host:" header to get the request's destination.
3780  *                Only needed if the client's request was forcefully
3781  *                redirected into Privoxy.
3782  *
3783  *                Code mainly copied from client_host() which is currently
3784  *                run too late for this purpose.
3785  *
3786  * Parameters  :
3787  *          1  :  headers = List of headers (one of them hopefully being
3788  *                the "Host:" header)
3789  *          2  :  http = storage for the result (host, port and hostport). 
3790  *
3791  * Returns     :  JB_ERR_MEMORY in case of memory problems,
3792  *                JB_ERR_PARSE if the host header couldn't be found,
3793  *                JB_ERR_OK otherwise.
3794  *
3795  *********************************************************************/
3796 jb_err get_destination_from_headers(const struct list *headers, struct http_request *http)
3797 {
3798    char *q;
3799    char *p;
3800    char *host;
3801
3802    host = get_header_value(headers, "Host:");
3803
3804    if (NULL == host)
3805    {
3806       log_error(LOG_LEVEL_ERROR, "No \"Host:\" header found.");
3807       return JB_ERR_PARSE;
3808    }
3809
3810    if (NULL == (p = strdup((host))))
3811    {
3812       log_error(LOG_LEVEL_ERROR, "Out of memory while parsing \"Host:\" header");
3813       return JB_ERR_MEMORY;
3814    }
3815    chomp(p);
3816    if (NULL == (q = strdup(p)))
3817    {
3818       freez(p);
3819       log_error(LOG_LEVEL_ERROR, "Out of memory while parsing \"Host:\" header");
3820       return JB_ERR_MEMORY;
3821    }
3822
3823    freez(http->hostport);
3824    http->hostport = p;
3825    freez(http->host);
3826    http->host = q;
3827    q = strchr(http->host, ':');
3828    if (q != NULL)
3829    {
3830       /* Terminate hostname and evaluate port string */
3831       *q++ = '\0';
3832       http->port = atoi(q);
3833    }
3834    else
3835    {
3836       http->port = http->ssl ? 443 : 80;
3837    }
3838
3839    /* Rebuild request URL */
3840    freez(http->url);
3841    http->url = strdup(http->ssl ? "https://" : "http://");
3842    string_append(&http->url, http->hostport);
3843    string_append(&http->url, http->path);
3844    if (http->url == NULL)
3845    {
3846       return JB_ERR_MEMORY;
3847    }
3848
3849    log_error(LOG_LEVEL_HEADER, "Destination extracted from \"Host:\" header. New request URL: %s",
3850       http->url);
3851
3852    return JB_ERR_OK;
3853
3854 }
3855
3856
3857 /*********************************************************************
3858  *
3859  * Function    :  create_forged_referrer
3860  *
3861  * Description :  Helper for client_referrer to forge a referer as
3862  *                'http://[hostname:port/' to fool stupid
3863  *                checks for in-site links 
3864  *
3865  * Parameters  :
3866  *          1  :  header   = Pointer to header pointer
3867  *          2  :  hostport = Host and optionally port as string
3868  *
3869  * Returns     :  JB_ERR_OK in case of success, or
3870  *                JB_ERR_MEMORY in case of memory problems.
3871  *
3872  *********************************************************************/
3873 static jb_err create_forged_referrer(char **header, const char *hostport)
3874 {
3875     assert(NULL == *header);
3876
3877     *header = strdup("Referer: http://");
3878     string_append(header, hostport);
3879     string_append(header, "/");
3880
3881     if (NULL == *header)
3882     {
3883        return JB_ERR_MEMORY;
3884     }
3885
3886     log_error(LOG_LEVEL_HEADER, "Referer forged to: %s", *header);
3887
3888     return JB_ERR_OK;
3889
3890 }
3891
3892
3893 /*********************************************************************
3894  *
3895  * Function    :  create_fake_referrer
3896  *
3897  * Description :  Helper for client_referrer to create a fake referrer
3898  *                based on a string supplied by the user.
3899  *
3900  * Parameters  :
3901  *          1  :  header   = Pointer to header pointer
3902  *          2  :  hosthost = Referrer to fake
3903  *
3904  * Returns     :  JB_ERR_OK in case of success, or
3905  *                JB_ERR_MEMORY in case of memory problems.
3906  *
3907  *********************************************************************/
3908 static jb_err create_fake_referrer(char **header, const char *fake_referrer)
3909 {
3910    assert(NULL == *header);
3911
3912    if ((0 != strncmpic(fake_referrer, "http://", 7)) && (0 != strncmpic(fake_referrer, "https://", 8)))
3913    {
3914       log_error(LOG_LEVEL_HEADER,
3915          "Parameter: +hide-referrer{%s} is a bad idea, but I don't care.", fake_referrer);
3916    }
3917    *header = strdup("Referer: ");
3918    string_append(header, fake_referrer);
3919
3920    if (NULL == *header)
3921    {
3922       return JB_ERR_MEMORY;
3923    }
3924
3925    log_error(LOG_LEVEL_HEADER, "Referer replaced with: %s", *header);
3926
3927    return JB_ERR_OK;
3928
3929 }
3930
3931
3932 /*********************************************************************
3933  *
3934  * Function    :  handle_conditional_hide_referrer_parameter
3935  *
3936  * Description :  Helper for client_referrer to crunch or forge
3937  *                the referrer header if the host has changed.
3938  *
3939  * Parameters  :
3940  *          1  :  header = Pointer to header pointer
3941  *          2  :  host   = The target host (may include the port)
3942  *          3  :  parameter_conditional_block = Boolean to signal
3943  *                if we're in conditional-block mode. If not set,
3944  *                we're in conditional-forge mode.
3945  *
3946  * Returns     :  JB_ERR_OK in case of success, or
3947  *                JB_ERR_MEMORY in case of memory problems.
3948  *
3949  *********************************************************************/
3950 static jb_err handle_conditional_hide_referrer_parameter(char **header,
3951    const char *host, const int parameter_conditional_block)
3952 {
3953    char *referer = strdup(*header);
3954    const size_t hostlenght = strlen(host);
3955    const char *referer_url = NULL;
3956
3957    if (NULL == referer)
3958    {
3959       freez(*header);
3960       return JB_ERR_MEMORY;
3961    }
3962
3963    /* referer begins with 'Referer: http[s]://' */
3964    if ((hostlenght+17) < strlen(referer))
3965    {
3966       /*
3967        * Shorten referer to make sure the referer is blocked
3968        * if www.example.org/www.example.com-shall-see-the-referer/
3969        * links to www.example.com/
3970        */
3971       referer[hostlenght+17] = '\0';
3972    }
3973    referer_url = strstr(referer, "http://");
3974    if ((NULL == referer_url) || (NULL == strstr(referer_url, host)))
3975    {
3976       /* Host has changed, Referer is invalid or a https URL. */
3977       if (parameter_conditional_block)
3978       {
3979          log_error(LOG_LEVEL_HEADER, "New host is: %s. Crunching %s!", host, *header);
3980          freez(*header);
3981       }
3982       else
3983       {
3984          freez(*header);
3985          freez(referer);
3986          return create_forged_referrer(header, host);
3987       }
3988    }
3989    freez(referer);
3990
3991    return JB_ERR_OK;
3992
3993 }
3994
3995
3996 /*********************************************************************
3997  *
3998  * Function    :  get_appropiate_connection_header
3999  *
4000  * Description :  Returns an appropiate Connection header
4001  *                depending on whether or not we try to keep
4002  *                the connection to the server alive.
4003  *
4004  * Parameters  :
4005  *          1  :  csp = Current client state (buffers, headers, etc...)
4006  *
4007  * Returns     :  Pointer to statically allocated header buffer.
4008  *
4009  *********************************************************************/
4010 static const char *get_appropiate_connection_header(const struct client_state *csp)
4011 {
4012    static const char connection_keep_alive[] = "Connection: keep-alive";
4013    static const char connection_close[] = "Connection: close";
4014
4015    if ((csp->config->feature_flags & RUNTIME_FEATURE_CONNECTION_KEEP_ALIVE)
4016     && (csp->http->ssl == 0))
4017    {
4018       return connection_keep_alive;
4019    }
4020    return connection_close;
4021 }
4022 /*
4023   Local Variables:
4024   tab-width: 3
4025   end:
4026 */