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