Reject requests with unsupported Expect header values
[privoxy.git] / project.h
1 #ifndef PROJECT_H_INCLUDED
2 #define PROJECT_H_INCLUDED
3 /** Version string. */
4 #define PROJECT_H_VERSION "$Id: project.h,v 1.206 2014/06/02 06:22:21 fabiankeil Exp $"
5 /*********************************************************************
6  *
7  * File        :  $Source: /cvsroot/ijbswa/current/project.h,v $
8  *
9  * Purpose     :  Defines data structures which are widely used in the
10  *                project.  Does not define any variables or functions
11  *                (though it does declare some macros).
12  *
13  * Copyright   :  Written by and Copyright (C) 2001-2014 the
14  *                Privoxy team. http://www.privoxy.org/
15  *
16  *                Based on the Internet Junkbuster originally written
17  *                by and Copyright (C) 1997 Anonymous Coders and
18  *                Junkbusters Corporation.  http://www.junkbusters.com
19  *
20  *                This program is free software; you can redistribute it
21  *                and/or modify it under the terms of the GNU General
22  *                Public License as published by the Free Software
23  *                Foundation; either version 2 of the License, or (at
24  *                your option) any later version.
25  *
26  *                This program is distributed in the hope that it will
27  *                be useful, but WITHOUT ANY WARRANTY; without even the
28  *                implied warranty of MERCHANTABILITY or FITNESS FOR A
29  *                PARTICULAR PURPOSE.  See the GNU General Public
30  *                License for more details.
31  *
32  *                The GNU General Public License should be included with
33  *                this file.  If not, you can view it at
34  *                http://www.gnu.org/copyleft/gpl.html
35  *                or write to the Free Software Foundation, Inc., 59
36  *                Temple Place - Suite 330, Boston, MA  02111-1307, USA.
37  *
38  *********************************************************************/
39
40
41 /* Declare struct FILE for vars and funcs. */
42 #include <stdio.h>
43
44 /* Need time_t for file_list */
45 #include <time.h>
46 /* Needed for pcre choice */
47 #include "config.h"
48
49 /* Need for struct sockaddr_storage */
50 #ifdef HAVE_RFC2553
51 #  ifndef _WIN32
52 #    include <netdb.h>
53 #    include <sys/socket.h>
54 #  else
55 #    include <stdint.h>
56 #    include <winsock2.h>
57 #    include <ws2tcpip.h>
58      typedef unsigned short in_port_t;
59 #  endif
60 #endif
61
62
63 /*
64  * Include appropriate regular expression libraries.
65  * Note that pcrs and pcre (native) are needed for cgi
66  * and are included anyway.
67  */
68
69 #ifdef STATIC_PCRE
70 #  include "pcre.h"
71 #else
72 #  ifdef PCRE_H_IN_SUBDIR
73 #    include <pcre/pcre.h>
74 #  else
75 #    include <pcre.h>
76 #  endif
77 #endif
78
79 #ifdef STATIC_PCRS
80 #  include "pcrs.h"
81 #else
82 #  include <pcrs.h>
83 #endif
84
85 #ifdef STATIC_PCRE
86 #  include "pcreposix.h"
87 #else
88 #  ifdef PCRE_H_IN_SUBDIR
89 #    include <pcre/pcreposix.h>
90 #  else
91 #    include <pcreposix.h>
92 #  endif
93 #endif
94
95 #ifdef AMIGA
96 #include "amiga.h"
97 #endif /* def AMIGA */
98
99 #ifdef _WIN32
100 /*
101  * I don't want to have to #include all this just for the declaration
102  * of SOCKET.  However, it looks like we have to...
103  */
104 #ifndef STRICT
105 #define STRICT
106 #endif
107 #include <windows.h>
108 #endif
109
110
111 #ifdef _WIN32
112
113 typedef SOCKET jb_socket;
114
115 #define JB_INVALID_SOCKET INVALID_SOCKET
116
117 #else /* ndef _WIN32 */
118
119 /**
120  * The type used by sockets.  On UNIX it's an int.  Microsoft decided to
121  * make it an unsigned.
122  */
123 typedef int jb_socket;
124
125 /**
126  * The error value used for variables of type jb_socket.  On UNIX this
127  * is -1, however Microsoft decided to make socket handles unsigned, so
128  * they use a different value.
129  */
130
131 #define JB_INVALID_SOCKET (-1)
132
133 #endif /* ndef _WIN32 */
134
135
136 /**
137  * A standard error code.  This should be JB_ERR_OK or one of the JB_ERR_xxx
138  * series of errors.
139  */
140 enum privoxy_err
141 {
142    JB_ERR_OK         = 0, /**< Success, no error                        */
143    JB_ERR_MEMORY     = 1, /**< Out of memory                            */
144    JB_ERR_CGI_PARAMS = 2, /**< Missing or corrupt CGI parameters        */
145    JB_ERR_FILE       = 3, /**< Error opening, reading or writing a file */
146    JB_ERR_PARSE      = 4, /**< Error parsing file                       */
147    JB_ERR_MODIFIED   = 5, /**< File has been modified outside of the
148                                CGI actions editor.                      */
149    JB_ERR_COMPRESS   = 6  /**< Error on decompression                   */
150 };
151
152 typedef enum privoxy_err jb_err;
153
154 /**
155  * This macro is used to free a pointer that may be NULL.
156  * It also sets the variable to NULL after it's been freed.
157  * The paramater should be a simple variable without side effects.
158  */
159 #define freez(X)  { if(X) { free((void*)X); X = NULL ; } }
160
161
162 /**
163  * Macro definitions for platforms where isspace() and friends
164  * are macros that use their argument directly as an array index
165  * and thus better be positive. Supposedly that's the case on
166  * some unspecified Solaris versions.
167  * Note: Remember to #include <ctype.h> if you use these macros.
168  */
169 #define privoxy_isdigit(__X) isdigit((int)(unsigned char)(__X))
170 #define privoxy_isupper(__X) isupper((int)(unsigned char)(__X))
171 #define privoxy_toupper(__X) toupper((int)(unsigned char)(__X))
172 #define privoxy_tolower(__X) tolower((int)(unsigned char)(__X))
173 #define privoxy_isspace(__X) isspace((int)(unsigned char)(__X))
174
175 /**
176  * Use for statically allocated buffers if you have no other choice.
177  * Remember to check the length of what you write into the buffer
178  * - we don't want any buffer overflows!
179  */
180 #define BUFFER_SIZE 5000
181
182 /**
183  * Max length of CGI parameters (arbitrary limit).
184  */
185 #define CGI_PARAM_LEN_MAX 500U
186
187 /**
188  * Buffer size for capturing struct hostent data in the
189  * gethostby(name|addr)_r library calls. Since we don't
190  * loop over gethostbyname_r, the buffer must be sufficient
191  * to accommodate multiple IN A RRs, as used in DNS round robin
192  * load balancing. W3C's wwwlib uses 1K, so that should be
193  * good enough for us, too.
194  */
195 /**
196  * XXX: Temporary doubled, for some configurations
197  * 1K is still too small and we didn't get the
198  * real fix ready for inclusion.
199  */
200 #define HOSTENT_BUFFER_SIZE 2048
201
202 /**
203  * Default TCP/IP address to listen on, as a string.
204  * Set to "127.0.0.1:8118".
205  */
206 #define HADDR_DEFAULT   "127.0.0.1:8118"
207
208
209 /* Forward def for struct client_state */
210 struct configuration_spec;
211
212
213 /**
214  * Entry in a linked list of strings.
215  */
216 struct list_entry
217 {
218    /**
219     * The string pointer. It must point to a dynamically malloc()ed
220     * string or be NULL for the list functions to work. In the latter
221     * case, just be careful next time you iterate through the list in
222     * your own code.
223     */
224    char *str;
225
226    /** Next entry in the linked list, or NULL if no more. */
227    struct list_entry *next;
228 };
229
230 /**
231  * A header for a linked list of strings.
232  */
233 struct list
234 {
235    /** First entry in the list, or NULL if the list is empty. */
236    struct list_entry *first;
237
238    /** Last entry in the list, or NULL if the list is empty. */
239    struct list_entry *last;
240 };
241
242
243 /**
244  * An entry in a map.  This is a name=value pair.
245  */
246 struct map_entry
247 {
248    /** The key for the map. */
249    const char *name;
250    /** The value associated with that key. */
251    const char *value;
252    /** The next map entry, or NULL if none. */
253    struct map_entry *next;
254 };
255
256 /**
257  * A map from a string to another string.
258  * This is used for the paramaters passed in a HTTP GET request, and
259  * to store the exports when the CGI interface is filling in a template.
260  */
261 struct map
262 {
263    /** The first map entry, or NULL if the map is empty. */
264    struct map_entry *first;
265    /** The last map entry, or NULL if the map is empty. */
266    struct map_entry *last;
267 };
268
269
270 /**
271  * A HTTP request.  This includes the method (GET, POST) and
272  * the parsed URL.
273  *
274  * This is also used whenever we want to match a URL against a
275  * URL pattern.  This always contains the URL to match, and never
276  * a URL pattern.  (See struct url_spec).
277  */
278 struct http_request
279 {
280    char *cmd;      /**< Whole command line: method, URL, Version */
281    char *ocmd;     /**< Backup of original cmd for CLF logging */
282    char *gpc;      /**< HTTP method: GET, POST, ... */
283    char *url;      /**< The URL */
284    char *ver;      /**< Protocol version */
285    int status;     /**< HTTP Status */
286
287    char *host;     /**< Host part of URL */
288    int   port;     /**< Port of URL or 80 (default) */
289    char *path;     /**< Path of URL */
290    char *hostport; /**< host[:port] */
291    int   ssl;      /**< Flag if protocol is https */
292
293    char *host_ip_addr_str; /**< String with dotted decimal representation
294                                 of host's IP. NULL before connect_to() */
295
296 #ifndef FEATURE_EXTENDED_HOST_PATTERNS
297    char  *dbuffer; /**< Buffer with '\0'-delimited domain name.           */
298    char **dvec;    /**< List of pointers to the strings in dbuffer.       */
299    int    dcount;  /**< How many parts to this domain? (length of dvec)   */
300 #endif /* ndef FEATURE_EXTENDED_HOST_PATTERNS */
301 };
302
303 /**
304  * Reasons for generating a http_response instead of delivering
305  * the requested resource. Mostly ordered the way they are checked
306  * for in chat().
307  */
308 enum crunch_reason
309 {
310    UNSUPPORTED,
311    BLOCKED,
312    UNTRUSTED,
313    REDIRECTED,
314    CGI_CALL,
315    NO_SUCH_DOMAIN,
316    FORWARDING_FAILED,
317    CONNECT_FAILED,
318    OUT_OF_MEMORY,
319    INTERNAL_ERROR,
320    CONNECTION_TIMEOUT,
321    NO_SERVER_DATA
322 };
323
324 /**
325  * Response generated by CGI, blocker, or error handler
326  */
327 struct http_response
328 {
329   char  *status;                    /**< HTTP status (string). */
330   struct list headers[1];           /**< List of header lines. */
331   char  *head;                      /**< Formatted http response head. */
332   size_t head_length;               /**< Length of http response head. */
333   char  *body;                      /**< HTTP document body. */
334   size_t content_length;            /**< Length of body, REQUIRED if binary body. */
335   int    is_static;                 /**< Nonzero if the content will never change and
336                                          should be cached by the browser (e.g. images). */
337   enum crunch_reason crunch_reason; /**< Why the response was generated in the first place. */
338 };
339
340 struct url_spec
341 {
342 #ifdef FEATURE_EXTENDED_HOST_PATTERNS
343    regex_t *host_regex;/**< Regex for host matching                          */
344 #else
345    char  *dbuffer;     /**< Buffer with '\0'-delimited domain name, or NULL to match all hosts. */
346    char **dvec;        /**< List of pointers to the strings in dbuffer.       */
347    int    dcount;      /**< How many parts to this domain? (length of dvec)   */
348    int    unanchored;  /**< Bitmap - flags are ANCHOR_LEFT and ANCHOR_RIGHT.  */
349 #endif /* defined FEATURE_EXTENDED_HOST_PATTERNS */
350
351    char  *port_list;   /**< List of acceptable ports, or NULL to match all ports */
352
353    regex_t *preg;      /**< Regex for matching path part                      */
354 };
355
356 /**
357  * A URL or a tag pattern.
358  */
359 struct pattern_spec
360 {
361    /** The string which was parsed to produce this pattern_spec.
362        Used for debugging or display only.  */
363    char  *spec;
364
365    union
366    {
367       struct url_spec url_spec;
368       regex_t *tag_regex;
369    } pattern;
370
371    unsigned int flags; /**< Bitmap with various pattern properties. */
372 };
373
374 /**
375  * Constant for host part matching in URLs.  If set, indicates that the start of
376  * the pattern must match the start of the URL.  E.g. this is not set for the
377  * pattern ".example.com", so that it will match both "example.com" and
378  * "www.example.com".  It is set for the pattern "example.com", which makes it
379  * match "example.com" only, not "www.example.com".
380  */
381 #define ANCHOR_LEFT  1
382
383 /**
384  * Constant for host part matching in URLs.  If set, indicates that the end of
385  * the pattern must match the end of the URL.  E.g. this is not set for the
386  * pattern "ad.", so that it will match any host called "ad", irrespective
387  * of how many subdomains are in the fully-qualified domain name.
388  */
389 #define ANCHOR_RIGHT 2
390
391 /** Pattern spec bitmap: It's an URL pattern. */
392 #define PATTERN_SPEC_URL_PATTERN          0x00000001UL
393
394 /** Pattern spec bitmap: It's a TAG pattern. */
395 #define PATTERN_SPEC_TAG_PATTERN          0x00000002UL
396
397 /** Pattern spec bitmap: It's a NO-REQUEST-TAG pattern. */
398 #define PATTERN_SPEC_NO_REQUEST_TAG_PATTERN 0x00000004UL
399
400 /** Pattern spec bitmap: It's a NO-RESPONSE-TAG pattern. */
401 #define PATTERN_SPEC_NO_RESPONSE_TAG_PATTERN 0x00000008UL
402
403 /**
404  * An I/O buffer.  Holds a string which can be appended to, and can have data
405  * removed from the beginning.
406  */
407 struct iob
408 {
409    char *buf;    /**< Start of buffer        */
410    char *cur;    /**< Start of relevant data */
411    char *eod;    /**< End of relevant data   */
412    size_t size;  /**< Size as malloc()ed     */
413 };
414
415
416 /**
417  * Return the number of bytes in the I/O buffer associated with the passed
418  * I/O buffer. May be zero.
419  */
420 #define IOB_PEEK(IOB) ((IOB->cur > IOB->eod) ? (IOB->eod - IOB->cur) : 0)
421
422
423 /* Bits for csp->content_type bitmask: */
424 #define CT_TEXT    0x0001U /**< Suitable for pcrs filtering. */
425 #define CT_GIF     0x0002U /**< Suitable for GIF filtering.  */
426 #define CT_TABOO   0x0004U /**< DO NOT filter, irrespective of other flags. */
427
428 /* Although these are not, strictly speaking, content types
429  * (they are content encodings), it is simple to handle them
430  * as such.
431  */
432 #define CT_GZIP    0x0010U /**< gzip-compressed data. */
433 #define CT_DEFLATE 0x0020U /**< zlib-compressed data. */
434
435 /**
436  * Flag to signal that the server declared the content type,
437  * so we can differentiate between unknown and undeclared
438  * content types.
439  */
440 #define CT_DECLARED 0x0040U
441
442 /**
443  * The mask which includes all actions.
444  */
445 #define ACTION_MASK_ALL        (~0UL)
446
447 /**
448  * The most compatible set of actions - i.e. none.
449  */
450 #define ACTION_MOST_COMPATIBLE                       0x00000000UL
451
452 /** Action bitmap: Block the request. */
453 #define ACTION_BLOCK                                 0x00000001UL
454 /** Action bitmap: Deanimate if it's a GIF. */
455 #define ACTION_DEANIMATE                             0x00000002UL
456 /** Action bitmap: Downgrade HTTP/1.1 to 1.0. */
457 #define ACTION_DOWNGRADE                             0x00000004UL
458 /** Action bitmap: Fast redirects. */
459 #define ACTION_FAST_REDIRECTS                        0x00000008UL
460 /** Action bitmap: Remove or add "X-Forwarded-For" header. */
461 #define ACTION_CHANGE_X_FORWARDED_FOR                0x00000010UL
462 /** Action bitmap: Hide "From" header. */
463 #define ACTION_HIDE_FROM                             0x00000020UL
464 /** Action bitmap: Hide "Referer" header.  (sic - follow HTTP, not English). */
465 #define ACTION_HIDE_REFERER                          0x00000040UL
466 /** Action bitmap: Hide "User-Agent" and similar headers. */
467 #define ACTION_HIDE_USER_AGENT                       0x00000080UL
468 /** Action bitmap: This is an image. */
469 #define ACTION_IMAGE                                 0x00000100UL
470 /** Action bitmap: Sets the image blocker. */
471 #define ACTION_IMAGE_BLOCKER                         0x00000200UL
472 /** Action bitmap: Prevent compression. */
473 #define ACTION_NO_COMPRESSION                        0x00000400UL
474 /** Action bitmap: Change cookies to session only cookies. */
475 #define ACTION_SESSION_COOKIES_ONLY                  0x00000800UL
476 /** Action bitmap: Block cookies coming from the client. */
477 #define ACTION_CRUNCH_OUTGOING_COOKIES               0x00001000UL
478 /** Action bitmap: Block cookies coming from the server. */
479 #define ACTION_CRUNCH_INCOMING_COOKIES               0x00002000UL
480 /** Action bitmap: Override the forward settings in the config file */
481 #define ACTION_FORWARD_OVERRIDE                      0x00004000UL
482 /** Action bitmap: Block as empty document */
483 #define  ACTION_HANDLE_AS_EMPTY_DOCUMENT             0x00008000UL
484 /** Action bitmap: Limit CONNECT requests to safe ports. */
485 #define ACTION_LIMIT_CONNECT                         0x00010000UL
486 /** Action bitmap: Redirect request. */
487 #define  ACTION_REDIRECT                             0x00020000UL
488 /** Action bitmap: Crunch or modify "if-modified-since" header. */
489 #define ACTION_HIDE_IF_MODIFIED_SINCE                0x00040000UL
490 /** Action bitmap: Overwrite Content-Type header. */
491 #define ACTION_CONTENT_TYPE_OVERWRITE                0x00080000UL
492 /** Action bitmap: Crunch specified server header. */
493 #define ACTION_CRUNCH_SERVER_HEADER                  0x00100000UL
494 /** Action bitmap: Crunch specified client header */
495 #define ACTION_CRUNCH_CLIENT_HEADER                  0x00200000UL
496 /** Action bitmap: Enable text mode by force */
497 #define ACTION_FORCE_TEXT_MODE                       0x00400000UL
498 /** Action bitmap: Enable text mode by force */
499 #define ACTION_CRUNCH_IF_NONE_MATCH                  0x00800000UL
500 /** Action bitmap: Enable content-disposition crunching */
501 #define ACTION_HIDE_CONTENT_DISPOSITION              0x01000000UL
502 /** Action bitmap: Replace or block Last-Modified header */
503 #define ACTION_OVERWRITE_LAST_MODIFIED               0x02000000UL
504 /** Action bitmap: Replace or block Accept-Language header */
505 #define ACTION_HIDE_ACCEPT_LANGUAGE                  0x04000000UL
506 /** Action bitmap: Limit the cookie lifetime */
507 #define ACTION_LIMIT_COOKIE_LIFETIME                 0x08000000UL
508
509
510 /** Action string index: How to deanimate GIFs */
511 #define ACTION_STRING_DEANIMATE             0
512 /** Action string index: Replacement for "From:" header */
513 #define ACTION_STRING_FROM                  1
514 /** Action string index: How to block images */
515 #define ACTION_STRING_IMAGE_BLOCKER         2
516 /** Action string index: Replacement for "Referer:" header */
517 #define ACTION_STRING_REFERER               3
518 /** Action string index: Replacement for "User-Agent:" header */
519 #define ACTION_STRING_USER_AGENT            4
520 /** Action string index: Legal CONNECT ports. */
521 #define ACTION_STRING_LIMIT_CONNECT         5
522 /** Action string index: Server headers containing this pattern are crunched*/
523 #define ACTION_STRING_SERVER_HEADER         6
524 /** Action string index: Client headers containing this pattern are crunched*/
525 #define ACTION_STRING_CLIENT_HEADER         7
526 /** Action string index: Replacement for the "Accept-Language:" header*/
527 #define ACTION_STRING_LANGUAGE              8
528 /** Action string index: Replacement for the "Content-Type:" header*/
529 #define ACTION_STRING_CONTENT_TYPE          9
530 /** Action string index: Replacement for the "content-disposition:" header*/
531 #define ACTION_STRING_CONTENT_DISPOSITION  10
532 /** Action string index: Replacement for the "If-Modified-Since:" header*/
533 #define ACTION_STRING_IF_MODIFIED_SINCE    11
534 /** Action string index: Replacement for the "Last-Modified:" header. */
535 #define ACTION_STRING_LAST_MODIFIED        12
536 /** Action string index: Redirect URL */
537 #define ACTION_STRING_REDIRECT             13
538 /** Action string index: Decode before redirect? */
539 #define ACTION_STRING_FAST_REDIRECTS       14
540 /** Action string index: Overriding forward rule. */
541 #define ACTION_STRING_FORWARD_OVERRIDE     15
542 /** Action string index: Reason for the block. */
543 #define ACTION_STRING_BLOCK                16
544 /** Action string index: what to do with the "X-Forwarded-For" header. */
545 #define ACTION_STRING_CHANGE_X_FORWARDED_FOR 17
546 /** Action string index: how many minutes cookies should be valid. */
547 #define ACTION_STRING_LIMIT_COOKIE_LIFETIME 18
548 /** Number of string actions. */
549 #define ACTION_STRING_COUNT                19
550
551
552 /* To make the ugly hack in sed easier to understand */
553 #define CHECK_EVERY_HEADER_REMAINING 0
554
555
556 /** Index into current_action_spec::multi[] for headers to add. */
557 #define ACTION_MULTI_ADD_HEADER              0
558 /** Index into current_action_spec::multi[] for content filters to apply. */
559 #define ACTION_MULTI_FILTER                  1
560 /** Index into current_action_spec::multi[] for server-header filters to apply. */
561 #define ACTION_MULTI_SERVER_HEADER_FILTER    2
562 /** Index into current_action_spec::multi[] for client-header filters to apply. */
563 #define ACTION_MULTI_CLIENT_HEADER_FILTER    3
564 /** Index into current_action_spec::multi[] for client-header tags to apply. */
565 #define ACTION_MULTI_CLIENT_HEADER_TAGGER    4
566 /** Index into current_action_spec::multi[] for server-header tags to apply. */
567 #define ACTION_MULTI_SERVER_HEADER_TAGGER    5
568 /** Number of multi-string actions. */
569 #define ACTION_MULTI_EXTERNAL_FILTER         6
570 /** Number of multi-string actions. */
571 #define ACTION_MULTI_COUNT                   7
572
573
574 /**
575  * This structure contains a list of actions to apply to a URL.
576  * It only contains positive instructions - no "-" options.
577  * It is not used to store the actions list itself, only for
578  * url_actions() to return the current values.
579  */
580 struct current_action_spec
581 {
582    /** Actions to apply.  A bit set to "1" means perform the action. */
583    unsigned long flags;
584
585    /**
586     * Paramaters for those actions that require them.
587     * Each entry is valid if & only if the corresponding entry in "flags" is
588     * set.
589     */
590    char * string[ACTION_STRING_COUNT];
591
592    /** Lists of strings for multi-string actions. */
593    struct list multi[ACTION_MULTI_COUNT][1];
594 };
595
596
597 /**
598  * This structure contains a set of changes to actions.
599  * It can contain both positive and negative instructions.
600  * It is used to store an entry in the actions list.
601  */
602 struct action_spec
603 {
604    unsigned long mask; /**< Actions to keep. A bit set to "0" means remove action. */
605    unsigned long add;  /**< Actions to add.  A bit set to "1" means add action.    */
606
607    /**
608     * Parameters for those actions that require them.
609     * Each entry is valid if & only if the corresponding entry in "flags" is
610     * set.
611     */
612    char * string[ACTION_STRING_COUNT];
613
614    /** Lists of strings to remove, for multi-string actions. */
615    struct list multi_remove[ACTION_MULTI_COUNT][1];
616
617    /** If nonzero, remove *all* strings from the multi-string action. */
618    int         multi_remove_all[ACTION_MULTI_COUNT];
619
620    /** Lists of strings to add, for multi-string actions. */
621    struct list multi_add[ACTION_MULTI_COUNT][1];
622 };
623
624
625 /**
626  * This structure is used to store action files.
627  *
628  * It contains an URL or tag pattern, and the changes to
629  * the actions. It's a linked list and should only be
630  * free'd through unload_actions_file() unless there's
631  * only a single entry.
632  */
633 struct url_actions
634 {
635    struct pattern_spec url[1]; /**< The URL or tag pattern. */
636
637    struct action_spec *action; /**< Action settings that might be shared with
638                                     the list entry before or after the current
639                                     one and can't be free'd willy nilly. */
640
641    struct url_actions *next;   /**< Next action section in file, or NULL. */
642 };
643
644 enum forwarder_type {
645    /**< Don't use a SOCKS server               */
646    SOCKS_NONE =  0,
647    /**< original SOCKS 4 protocol              */
648    SOCKS_4    = 40,
649    /**< SOCKS 4A, DNS resolution is done by the SOCKS server */
650    SOCKS_4A   = 41,
651    /**< SOCKS 5 with hostnames, DNS resolution is done by the SOCKS server */
652    SOCKS_5    = 50,
653    /**< Like SOCKS5, but uses non-standard Tor extensions (currently only optimistic data) */
654    SOCKS_5T,
655 };
656
657 /*
658  * Structure to hold the server socket and the information
659  * required to make sure we only reuse the connection if
660  * the host and forwarding settings are the same.
661  */
662 struct reusable_connection
663 {
664    jb_socket sfd;
665    int       in_use;
666    time_t    timestamp; /* XXX: rename? */
667
668    time_t    request_sent;
669    time_t    response_received;
670
671    /*
672     * Number of seconds after which this
673     * connection will no longer be reused.
674     */
675    unsigned int keep_alive_timeout;
676    /*
677     * Number of requests that were sent to this connection.
678     * This is currently only for debugging purposes.
679     */
680    unsigned int requests_sent_total;
681
682    char *host;
683    int  port;
684    enum forwarder_type forwarder_type;
685    char *gateway_host;
686    int  gateway_port;
687    char *forward_host;
688    int  forward_port;
689 };
690
691
692 /*
693  * Flags for use in csp->flags
694  */
695
696 /**
697  * Flag for csp->flags: Set if this client is processing data.
698  * Cleared when the thread associated with this structure dies.
699  */
700 #define CSP_FLAG_ACTIVE     0x01U
701
702 /**
703  * Flag for csp->flags: Set if the server's reply is in "chunked"
704  * transfer encoding
705  */
706 #define CSP_FLAG_CHUNKED    0x02U
707
708 /**
709  * Flag for csp->flags: Set if this request was enforced, although it would
710  * normally have been blocked.
711  */
712 #define CSP_FLAG_FORCED     0x04U
713
714 /**
715  * Flag for csp->flags: Set if any modification to the body was done.
716  */
717 #define CSP_FLAG_MODIFIED   0x08U
718
719 /**
720  * Flag for csp->flags: Set if request was blocked.
721  */
722 #define CSP_FLAG_REJECTED   0x10U
723
724 /**
725  * Flag for csp->flags: Set if we are toggled on (FEATURE_TOGGLE).
726  */
727 #define CSP_FLAG_TOGGLED_ON 0x20U
728
729 /**
730  * Flag for csp->flags: Set if we answered the request ourselve.
731  */
732 #define CSP_FLAG_CRUNCHED   0x40U
733
734 /**
735  * Flag for csp->flags: Set if an acceptable Connection header
736  * has already been set by the client.
737  */
738 #define CSP_FLAG_CLIENT_CONNECTION_HEADER_SET  0x00000040U
739
740 /**
741  * Flag for csp->flags: Set if an acceptable Connection header
742  * has already been set by the server.
743  */
744 #define CSP_FLAG_SERVER_CONNECTION_HEADER_SET  0x00000080U
745
746 /**
747  * Flag for csp->flags: Signals header parsers whether they
748  * are parsing server or client headers.
749  */
750 #define CSP_FLAG_CLIENT_HEADER_PARSING_DONE    0x00000100U
751
752 /**
753  * Flag for csp->flags: Set if adding the Host: header
754  * isn't necessary.
755  */
756 #define CSP_FLAG_HOST_HEADER_IS_SET            0x00000200U
757
758 /**
759  * Flag for csp->flags: Set if filtering is disabled by X-Filter: No
760  * XXX: As we now have tags we might as well ditch this.
761  */
762 #define CSP_FLAG_NO_FILTERING                  0x00000400U
763
764 /**
765  * Flag for csp->flags: Set the client IP has appended to
766  * an already existing X-Forwarded-For header in which case
767  * no new header has to be generated.
768  */
769 #define CSP_FLAG_X_FORWARDED_FOR_APPENDED      0x00000800U
770
771 /**
772  * Flag for csp->flags: Set if the server wants to keep
773  * the connection alive.
774  */
775 #define CSP_FLAG_SERVER_CONNECTION_KEEP_ALIVE  0x00001000U
776
777 /**
778  * Flag for csp->flags: Set if the server specified the
779  * content length.
780  */
781 #define CSP_FLAG_SERVER_CONTENT_LENGTH_SET     0x00002000U
782
783 /**
784  * Flag for csp->flags: Set if we know the content length,
785  * either because the server set it, or we figured it out
786  * on our own.
787  */
788 #define CSP_FLAG_CONTENT_LENGTH_SET            0x00004000U
789
790 /**
791  * Flag for csp->flags: Set if the client wants to keep
792  * the connection alive.
793  */
794 #define CSP_FLAG_CLIENT_CONNECTION_KEEP_ALIVE  0x00008000U
795
796 /**
797  * Flag for csp->flags: Set if we think we got the whole
798  * client request and shouldn't read any additional data
799  * coming from the client until the current request has
800  * been dealt with.
801  */
802 #define CSP_FLAG_CLIENT_REQUEST_COMPLETELY_READ 0x00010000U
803
804 /**
805  * Flag for csp->flags: Set if the server promised us to
806  * keep the connection open for a known number of seconds.
807  */
808 #define CSP_FLAG_SERVER_KEEP_ALIVE_TIMEOUT_SET  0x00020000U
809
810 /**
811  * Flag for csp->flags: Set if we think we can't reuse
812  * the server socket. XXX: It's also set after sabotaging
813  * pipelining attempts which is somewhat inconsistent with
814  * the name.
815  */
816 #define CSP_FLAG_SERVER_SOCKET_TAINTED          0x00040000U
817
818 /**
819  * Flag for csp->flags: Set if the Proxy-Connection header
820  * is among the server headers.
821  */
822 #define CSP_FLAG_SERVER_PROXY_CONNECTION_HEADER_SET 0x00080000U
823
824 /**
825  * Flag for csp->flags: Set if the client reused its connection.
826  */
827 #define CSP_FLAG_REUSED_CLIENT_CONNECTION           0x00100000U
828
829 /**
830  * Flag for csp->flags: Set if the supports deflate compression.
831  */
832 #define CSP_FLAG_CLIENT_SUPPORTS_DEFLATE            0x00200000U
833
834 /**
835  * Flag for csp->flags: Set if the content has been deflated by Privoxy
836  */
837 #define CSP_FLAG_BUFFERED_CONTENT_DEFLATED          0x00400000U
838
839 /**
840  * Flag for csp->flags: Set if we already read (parts of)
841  * a pipelined request in which case the client obviously
842  * isn't done talking.
843  */
844 #define CSP_FLAG_PIPELINED_REQUEST_WAITING          0x00800000U
845
846 /**
847  * Flag for csp->flags: Set if the client body is chunk-encoded
848  */
849 #define CSP_FLAG_CHUNKED_CLIENT_BODY                0x01000000U
850
851 /**
852  * Flag for csp->flags: Set if the client set the Expect header
853  */
854 #define CSP_FLAG_UNSUPPORTED_CLIENT_EXPECTATION     0x02000000U
855
856 /*
857  * Flags for use in return codes of child processes
858  */
859
860 /**
861  * Flag for process return code: Set if exiting porcess has been toggled
862  * during its lifetime.
863  */
864 #define RC_FLAG_TOGGLED   0x10
865
866 /**
867  * Flag for process return code: Set if exiting porcess has blocked its
868  * request.
869  */
870 #define RC_FLAG_BLOCKED   0x20
871
872 /**
873  * Maximum number of actions/filter files.  This limit is arbitrary - it's just used
874  * to size an array.
875  */
876 #define MAX_AF_FILES 30
877
878 /**
879  * Maximum number of sockets to listen to.  This limit is arbitrary - it's just used
880  * to size an array.
881  */
882 #define MAX_LISTENING_SOCKETS 10
883
884 /**
885  * The state of a Privoxy processing thread.
886  */
887 struct client_state
888 {
889    /** The proxy's configuration */
890    struct configuration_spec * config;
891
892    /** The actions to perform on the current request */
893    struct current_action_spec  action[1];
894
895    /** socket to talk to client (web browser) */
896    jb_socket cfd;
897
898    /** Number of requests received on the client socket. */
899    unsigned int requests_received_total;
900
901    /** current connection to the server (may go through a proxy) */
902    struct reusable_connection server_connection;
903
904    /** Multi-purpose flag container, see CSP_FLAG_* above */
905    unsigned int flags;
906
907    /** Client PC's IP address, as reported by the accept() function.
908        As a string. */
909    char *ip_addr_str;
910 #ifdef HAVE_RFC2553
911    /** Client PC's TCP address, as reported by the accept() function.
912        As a sockaddr. */
913    struct sockaddr_storage tcp_addr;
914 #else
915    /** Client PC's IP address, as reported by the accept() function.
916        As a number. */
917    unsigned long ip_addr_long;
918 #endif /* def HAVE_RFC2553 */
919
920    /** The URL that was requested */
921    struct http_request http[1];
922
923    /*
924     * The final forwarding settings.
925     * XXX: Currently this is only used for forward-override,
926     * so we can free the space in sweep.
927     */
928    struct forward_spec * fwd;
929
930    /** An I/O buffer used for buffering data read from the server */
931    /* XXX: should be renamed to server_iob */
932    struct iob iob[1];
933
934    /** An I/O buffer used for buffering data read from the client */
935    struct iob client_iob[1];
936
937    /** List of all headers for this request */
938    struct list headers[1];
939
940    /** List of all tags that apply to this request */
941    struct list tags[1];
942
943    /** MIME-Type key, see CT_* above */
944    unsigned int content_type;
945
946    /** Actions files associated with this client */
947    struct file_list *actions_list[MAX_AF_FILES];
948
949    /** pcrs job files. */
950    struct file_list *rlist[MAX_AF_FILES];
951
952    /** Length after content modification. */
953    unsigned long long content_length;
954
955    /* XXX: is this the right location? */
956
957    /** Expected length of content after which we
958     * should stop reading from the server socket.
959     */
960    unsigned long long expected_content_length;
961
962    /** Expected length of content after which we
963     *  should stop reading from the client socket.
964     */
965    unsigned long long expected_client_content_length;
966
967 #ifdef FEATURE_TRUST
968
969    /** Trust file. */
970    struct file_list *tlist;
971
972 #endif /* def FEATURE_TRUST */
973
974    /**
975     * Failure reason to embedded in the CGI error page,
976     * or NULL. Currently only used for socks errors.
977     */
978    char *error_message;
979 };
980
981 /**
982  * List of client states so the main thread can keep
983  * track of them and garbage collect their resources.
984  */
985 struct client_states
986 {
987    struct client_states *next;
988    struct client_state csp;
989 };
990
991 /**
992  * A function to add a header
993  */
994 typedef jb_err (*add_header_func_ptr)(struct client_state *);
995
996 /**
997  * A function to process a header
998  */
999 typedef jb_err (*parser_func_ptr    )(struct client_state *, char **);
1000
1001
1002 /**
1003  * List of available CGI functions.
1004  */
1005 struct cgi_dispatcher
1006 {
1007    /** The URL of the CGI, relative to the CGI root. */
1008    const char * const name;
1009
1010    /** The handler function for the CGI */
1011    jb_err    (* const handler)(struct client_state *csp, struct http_response *rsp, const struct map *parameters);
1012
1013    /** The description of the CGI, to appear on the main menu, or NULL to hide it. */
1014    const char * const description;
1015
1016    /** A flag that indicates whether unintentional calls to this CGI can cause damage */
1017    int harmless;
1018 };
1019
1020
1021 /**
1022  * A data file used by Privoxy.  Kept in a linked list.
1023  */
1024 struct file_list
1025 {
1026    /**
1027     * This is a pointer to the data structures associated with the file.
1028     * Read-only once the structure has been created.
1029     */
1030    void *f;
1031
1032    /**
1033     * The unloader function.
1034     * Normally NULL.  When we are finished with file (i.e. when we have
1035     * loaded a new one), set to a pointer to an unloader function.
1036     * Unloader will be called by sweep() (called from main loop) when
1037     * all clients using this file are done.  This prevents threading
1038     * problems.
1039     */
1040    void (*unloader)(void *);
1041
1042    /**
1043     * Used internally by sweep().  Do not access from elsewhere.
1044     */
1045    int active;
1046
1047    /**
1048     * File last-modified time, so we can check if file has been changed.
1049     * Read-only once the structure has been created.
1050     */
1051    time_t lastmodified;
1052
1053    /**
1054     * The full filename.
1055     */
1056    char * filename;
1057
1058    /**
1059     * Pointer to next entry in the linked list of all "file_list"s.
1060     * This linked list is so that sweep() can navigate it.
1061     * Since sweep() can remove items from the list, we must be careful
1062     * to only access this value from main thread (when we know sweep
1063     * won't be running).
1064     */
1065    struct file_list *next;
1066 };
1067
1068
1069 #ifdef FEATURE_TRUST
1070
1071 /**
1072  * The format of a trust file when loaded into memory.
1073  */
1074 struct block_spec
1075 {
1076    struct pattern_spec url[1]; /**< The URL pattern              */
1077    int    reject;              /**< FIXME: Please document this! */
1078    struct block_spec *next;    /**< Next entry in linked list    */
1079 };
1080
1081 /**
1082  * Arbitrary limit for the number of trusted referrers.
1083  */
1084 #define MAX_TRUSTED_REFERRERS 512
1085
1086 #endif /* def FEATURE_TRUST */
1087
1088 /**
1089  * How to forward a connection to a parent proxy.
1090  */
1091 struct forward_spec
1092 {
1093    /** URL pattern that this forward_spec is for. */
1094    struct pattern_spec url[1];
1095
1096    /** Connection type.  Must be SOCKS_NONE, SOCKS_4, SOCKS_4A or SOCKS_5. */
1097    enum forwarder_type type;
1098
1099    /** SOCKS server hostname.  Only valid if "type" is SOCKS_4 or SOCKS_4A. */
1100    char *gateway_host;
1101
1102    /** SOCKS server port. */
1103    int   gateway_port;
1104
1105    /** Parent HTTP proxy hostname, or NULL for none. */
1106    char *forward_host;
1107
1108    /** Parent HTTP proxy port. */
1109    int   forward_port;
1110
1111    /** Next entry in the linked list. */
1112    struct forward_spec *next;
1113 };
1114
1115
1116 /* Supported filter types */
1117 enum filter_type
1118 {
1119    FT_CONTENT_FILTER       = 0,
1120    FT_CLIENT_HEADER_FILTER = 1,
1121    FT_SERVER_HEADER_FILTER = 2,
1122    FT_CLIENT_HEADER_TAGGER = 3,
1123    FT_SERVER_HEADER_TAGGER = 4,
1124 #ifdef FEATURE_EXTERNAL_FILTERS
1125    FT_EXTERNAL_CONTENT_FILTER = 5,
1126 #endif
1127    FT_INVALID_FILTER       = 42,
1128 };
1129
1130 #ifdef FEATURE_EXTERNAL_FILTERS
1131 #define MAX_FILTER_TYPES        6
1132 #else
1133 #define MAX_FILTER_TYPES        5
1134 #endif
1135
1136 /**
1137  * This struct represents one filter (one block) from
1138  * the re_filterfile. If there is more than one filter
1139  * in the file, the file will be represented by a
1140  * chained list of re_filterfile specs.
1141  */
1142 struct re_filterfile_spec
1143 {
1144    char *name;                      /**< Name from FILTER: statement in re_filterfile. */
1145    char *description;               /**< Description from FILTER: statement in re_filterfile. */
1146    struct list patterns[1];         /**< The patterns from the re_filterfile. */
1147    pcrs_job *joblist;               /**< The resulting compiled pcrs_jobs. */
1148    enum filter_type type;           /**< Filter type (content, client-header, server-header). */
1149    int dynamic;                     /**< Set to one if the pattern might contain variables
1150                                          and has to be recompiled for every request. */
1151    struct re_filterfile_spec *next; /**< The pointer for chaining. */
1152 };
1153
1154
1155 #ifdef FEATURE_ACL
1156
1157 #define ACL_PERMIT   1  /**< Accept connection request */
1158 #define ACL_DENY     2  /**< Reject connection request */
1159
1160 /**
1161  * An IP address pattern.  Used to specify networks in the ACL.
1162  */
1163 struct access_control_addr
1164 {
1165 #ifdef HAVE_RFC2553
1166    struct sockaddr_storage addr; /* <The TCP address in network order. */
1167    struct sockaddr_storage mask; /* <The TCP mask in network order. */
1168 #else
1169    unsigned long addr;  /**< The IP address as an integer. */
1170    unsigned long mask;  /**< The network mask as an integer. */
1171    unsigned long port;  /**< The port number. */
1172 #endif /* HAVE_RFC2553 */
1173 };
1174
1175 /**
1176  * An access control list (ACL) entry.
1177  *
1178  * This is a linked list.
1179  */
1180 struct access_control_list
1181 {
1182    struct access_control_addr src[1];  /**< Client IP address */
1183    struct access_control_addr dst[1];  /**< Website or parent proxy IP address */
1184 #ifdef HAVE_RFC2553
1185    int wildcard_dst;                   /** < dst address is wildcard */
1186 #endif
1187
1188    short action;                       /**< ACL_PERMIT or ACL_DENY */
1189    struct access_control_list *next;   /**< The next entry in the ACL. */
1190 };
1191
1192 #endif /* def FEATURE_ACL */
1193
1194
1195 /** Maximum number of loaders (actions, re_filter, ...) */
1196 #define NLOADERS 8
1197
1198
1199 /** configuration_spec::feature_flags: CGI actions editor. */
1200 #define RUNTIME_FEATURE_CGI_EDIT_ACTIONS             1U
1201
1202 /** configuration_spec::feature_flags: Web-based toggle. */
1203 #define RUNTIME_FEATURE_CGI_TOGGLE                   2U
1204
1205 /** configuration_spec::feature_flags: HTTP-header-based toggle. */
1206 #define RUNTIME_FEATURE_HTTP_TOGGLE                  4U
1207
1208 /** configuration_spec::feature_flags: Split large forms to limit the number of GET arguments. */
1209 #define RUNTIME_FEATURE_SPLIT_LARGE_FORMS            8U
1210
1211 /** configuration_spec::feature_flags: Check the host header for requests with host-less request lines. */
1212 #define RUNTIME_FEATURE_ACCEPT_INTERCEPTED_REQUESTS 16U
1213
1214 /** configuration_spec::feature_flags: Don't allow to circumvent blocks with the force prefix. */
1215 #define RUNTIME_FEATURE_ENFORCE_BLOCKS              32U
1216
1217 /** configuration_spec::feature_flags: Allow to block or redirect CGI requests. */
1218 #define RUNTIME_FEATURE_CGI_CRUNCHING               64U
1219
1220 /** configuration_spec::feature_flags: Try to keep the connection to the server alive. */
1221 #define RUNTIME_FEATURE_CONNECTION_KEEP_ALIVE      128U
1222
1223 /** configuration_spec::feature_flags: Share outgoing connections between different client connections. */
1224 #define RUNTIME_FEATURE_CONNECTION_SHARING         256U
1225
1226 /** configuration_spec::feature_flags: Pages blocked with +handle-as-empty-doc get a return status of 200 OK. */
1227 #define RUNTIME_FEATURE_EMPTY_DOC_RETURNS_OK       512U
1228
1229 /** configuration_spec::feature_flags: Buffered content is sent compressed if the client supports it. */
1230 #define RUNTIME_FEATURE_COMPRESSION               1024U
1231
1232 /** configuration_spec::feature_flags: Pipelined requests are served instead of being discarded. */
1233 #define RUNTIME_FEATURE_TOLERATE_PIPELINING       2048U
1234
1235 /** configuration_spec::feature_flags: Proxy authentication headers are forwarded instead of removed. */
1236 #define RUNTIME_FEATURE_FORWARD_PROXY_AUTHENTICATION_HEADERS      4096U
1237
1238 /**
1239  * Data loaded from the configuration file.
1240  *
1241  * (Anomaly: toggle is still handled through a global, not this structure)
1242  */
1243 struct configuration_spec
1244 {
1245    /** What to log */
1246    int debug;
1247
1248    /** Nonzero to enable multithreading. */
1249    int multi_threaded;
1250
1251    /** Bitmask of features that can be controlled through the config file. */
1252    unsigned feature_flags;
1253
1254    /** The log file name. */
1255    const char *logfile;
1256
1257    /** The config file directory. */
1258    const char *confdir;
1259
1260    /** The directory for customized CGI templates. */
1261    const char *templdir;
1262
1263 #ifdef FEATURE_EXTERNAL_FILTERS
1264    /** The template used to create temporary files. */
1265    const char *temporary_directory;
1266 #endif
1267
1268    /** The log file directory. */
1269    const char *logdir;
1270
1271    /** The full paths to the actions files. */
1272    const char *actions_file[MAX_AF_FILES];
1273
1274    /** The short names of the actions files. */
1275    const char *actions_file_short[MAX_AF_FILES];
1276
1277    /** The administrator's email address */
1278    char *admin_address;
1279
1280    /** A URL with info on this proxy */
1281    char *proxy_info_url;
1282
1283    /** URL to the user manual (on our website or local copy) */
1284    char *usermanual;
1285
1286    /** The file names of the pcre filter files. */
1287    const char *re_filterfile[MAX_AF_FILES];
1288
1289    /** The short names of the pcre filter files. */
1290    const char *re_filterfile_short[MAX_AF_FILES];
1291
1292    /**< List of ordered client header names. */
1293    struct list ordered_client_headers[1];
1294
1295    /** The hostname to show on CGI pages, or NULL to use the real one. */
1296    const char *hostname;
1297
1298    /** IP addresses to bind to.  Defaults to HADDR_DEFAULT == 127.0.0.1. */
1299    const char *haddr[MAX_LISTENING_SOCKETS];
1300
1301    /** Ports to bind to.  Defaults to HADDR_PORT == 8118. */
1302    int         hport[MAX_LISTENING_SOCKETS];
1303
1304    /** Size limit for IOB */
1305    size_t buffer_limit;
1306
1307 #ifdef FEATURE_TRUST
1308
1309    /** The file name of the trust file. */
1310    const char * trustfile;
1311
1312    /** FIXME: DOCME: Document this. */
1313    struct list trust_info[1];
1314
1315    /** FIXME: DOCME: Document this. */
1316    struct pattern_spec *trust_list[MAX_TRUSTED_REFERRERS];
1317
1318 #endif /* def FEATURE_TRUST */
1319
1320 #ifdef FEATURE_ACL
1321
1322    /** The access control list (ACL). */
1323    struct access_control_list *acl;
1324
1325 #endif /* def FEATURE_ACL */
1326
1327    /** Information about parent proxies (forwarding). */
1328    struct forward_spec *forward;
1329
1330    /** Number of retries in case a forwarded connection attempt fails */
1331    int forwarded_connect_retries;
1332
1333    /** Maximum number of client connections. */
1334    int max_client_connections;
1335
1336    /* Timeout when waiting on sockets for data to become available. */
1337    int socket_timeout;
1338
1339 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
1340    /* Maximum number of seconds after which an open connection will no longer be reused. */
1341    unsigned int keep_alive_timeout;
1342
1343    /* Assumed server-side keep alive timeout if none is specified. */
1344    unsigned int default_server_timeout;
1345 #endif
1346
1347 #ifdef FEATURE_COMPRESSION
1348    int compression_level;
1349 #endif
1350
1351    /** All options from the config file, HTML-formatted. */
1352    char *proxy_args;
1353
1354    /** The configuration file object. */
1355    struct file_list *config_file_list;
1356
1357    /** List of loaders */
1358    int (*loaders[NLOADERS])(struct client_state *);
1359
1360    /** Nonzero if we need to bind() to the new port. */
1361    int need_bind;
1362 };
1363
1364 /** Calculates the number of elements in an array, using sizeof. */
1365 #define SZ(X)  (sizeof(X) / sizeof(*X))
1366
1367 #ifdef FEATURE_FORCE_LOAD
1368 /** The force load URL prefix. */
1369 #define FORCE_PREFIX "/PRIVOXY-FORCE"
1370 #endif /* def FEATURE_FORCE_LOAD */
1371
1372 #ifdef FEATURE_NO_GIFS
1373 /** The MIME type for images ("image/png" or "image/gif"). */
1374 #define BUILTIN_IMAGE_MIMETYPE "image/png"
1375 #else
1376 #define BUILTIN_IMAGE_MIMETYPE "image/gif"
1377 #endif /* def FEATURE_NO_GIFS */
1378
1379
1380 /*
1381  * Hardwired URLs
1382  */
1383
1384 /** URL for the Privoxy home page. */
1385 #define HOME_PAGE_URL     "http://www.privoxy.org/"
1386
1387 /** URL for the Privoxy user manual. */
1388 #define USER_MANUAL_URL   HOME_PAGE_URL VERSION "/user-manual/"
1389
1390 /** Prefix for actions help links  (append to USER_MANUAL_URL). */
1391 #define ACTIONS_HELP_PREFIX "actions-file.html#"
1392
1393 /** Prefix for config option help links (append to USER_MANUAL_URL). */
1394 #define CONFIG_HELP_PREFIX  "config.html#"
1395
1396 /*
1397  * The "hosts" to intercept and display CGI pages.
1398  * First one is a hostname only, second one can specify host and path.
1399  *
1400  * Notes:
1401  * 1) Do not specify the http: prefix
1402  * 2) CGI_SITE_2_PATH must not end with /, one will be added automatically.
1403  * 3) CGI_SITE_2_PATH must start with /, unless it is the empty string.
1404  */
1405 #define CGI_SITE_1_HOST "p.p"
1406 #define CGI_SITE_2_HOST "config.privoxy.org"
1407 #define CGI_SITE_2_PATH ""
1408
1409 /**
1410  * The prefix for CGI pages.  Written out in generated HTML.
1411  * INCLUDES the trailing slash.
1412  */
1413 #define CGI_PREFIX  "http://" CGI_SITE_2_HOST CGI_SITE_2_PATH "/"
1414
1415 #endif /* ndef PROJECT_H_INCLUDED */
1416
1417 /*
1418   Local Variables:
1419   tab-width: 3
1420   end:
1421 */