always use pcre for matching
[privoxy.git] / project.h
1 #ifndef PROJECT_H_INCLUDED
2 #define PROJECT_H_INCLUDED
3 #define PROJECT_H_VERSION "$Id: project.h,v 1.64 2002/04/03 22:28:03 gliptak Exp $"
4 /*********************************************************************
5  *
6  * File        :  $Source: /cvsroot/ijbswa/current/project.h,v $
7  *
8  * Purpose     :  Defines data structures which are widely used in the
9  *                project.  Does not define any variables or functions
10  *                (though it does declare some macros).
11  *
12  * Copyright   :  Written by and Copyright (C) 2001 the SourceForge
13  *                Privoxy team. http://www.privoxy.org/
14  *
15  *                Based on the Internet Junkbuster originally written
16  *                by and Copyright (C) 1997 Anonymous Coders and
17  *                Junkbusters Corporation.  http://www.junkbusters.com
18  *
19  *                This program is free software; you can redistribute it
20  *                and/or modify it under the terms of the GNU General
21  *                Public License as published by the Free Software
22  *                Foundation; either version 2 of the License, or (at
23  *                your option) any later version.
24  *
25  *                This program is distributed in the hope that it will
26  *                be useful, but WITHOUT ANY WARRANTY; without even the
27  *                implied warranty of MERCHANTABILITY or FITNESS FOR A
28  *                PARTICULAR PURPOSE.  See the GNU General Public
29  *                License for more details.
30  *
31  *                The GNU General Public License should be included with
32  *                this file.  If not, you can view it at
33  *                http://www.gnu.org/copyleft/gpl.html
34  *                or write to the Free Software Foundation, Inc., 59
35  *                Temple Place - Suite 330, Boston, MA  02111-1307, USA.
36  *
37  * Revisions   :
38  *    $Log: project.h,v $
39  *    Revision 1.64  2002/04/03 22:28:03  gliptak
40  *    Removed references to gnu_regex
41  *
42  *    Revision 1.63  2002/03/31 17:19:00  jongfoster
43  *    Win32 only: Enabling STRICT to fix a VC++ compile warning.
44  *
45  *    Revision 1.62  2002/03/26 22:48:49  swa
46  *    new homepage url
47  *
48  *    Revision 1.61  2002/03/26 22:29:55  swa
49  *    we have a new homepage!
50  *
51  *    Revision 1.60  2002/03/24 15:52:17  jongfoster
52  *    Changing CGI URL prefixes for new name
53  *
54  *    Revision 1.59  2002/03/24 15:23:33  jongfoster
55  *    Name changes
56  *
57  *    Revision 1.58  2002/03/24 13:25:43  swa
58  *    name change related issues
59  *
60  *    Revision 1.57  2002/03/16 20:28:34  oes
61  *    Added descriptions to the filters so users will know what they select in the cgi editor
62  *
63  *    Revision 1.56  2002/03/13 20:27:30  oes
64  *    Fixing bug with CT_TABOO
65  *
66  *    Revision 1.55  2002/03/12 01:42:50  oes
67  *    Introduced modular filters
68  *
69  *    Revision 1.54  2002/03/09 20:03:52  jongfoster
70  *    - Making various functions return int rather than size_t.
71  *      (Undoing a recent change).  Since size_t is unsigned on
72  *      Windows, functions like read_socket that return -1 on
73  *      error cannot return a size_t.
74  *
75  *      THIS WAS A MAJOR BUG - it caused frequent, unpredictable
76  *      crashes, and also frequently caused JB to jump to 100%
77  *      CPU and stay there.  (Because it thought it had just
78  *      read ((unsigned)-1) == 4Gb of data...)
79  *
80  *    - The signature of write_socket has changed, it now simply
81  *      returns success=0/failure=nonzero.
82  *
83  *    - Trying to get rid of a few warnings --with-debug on
84  *      Windows, I've introduced a new type "jb_socket".  This is
85  *      used for the socket file descriptors.  On Windows, this
86  *      is SOCKET (a typedef for unsigned).  Everywhere else, it's
87  *      an int.  The error value can't be -1 any more, so it's
88  *      now JB_INVALID_SOCKET (which is -1 on UNIX, and in
89  *      Windows it maps to the #define INVALID_SOCKET.)
90  *
91  *    - The signature of bind_port has changed.
92  *
93  *    Revision 1.53  2002/03/08 16:48:55  oes
94  *    Added FEATURE_NO_GIFS and BUILTIN_IMAGE_MIMETYPE
95  *
96  *    Revision 1.52  2002/03/07 03:46:17  oes
97  *    Fixed compiler warnings
98  *
99  *    Revision 1.51  2002/03/05 04:52:42  oes
100  *    Deleted non-errlog debugging code
101  *
102  *    Revision 1.50  2002/03/04 19:32:07  oes
103  *    Changed default port to 8118
104  *
105  *    Revision 1.49  2002/03/04 18:28:55  oes
106  *    Deleted PID_FILE_NAME
107  *
108  *    Revision 1.48  2002/03/03 14:50:40  oes
109  *    Fixed CLF logging: Added ocmd member for client's request to struct http_request
110  *
111  *    Revision 1.47  2002/02/20 23:15:13  jongfoster
112  *    Parsing functions now handle out-of-memory gracefully by returning
113  *    an error code.
114  *
115  *    Revision 1.46  2002/01/17 21:06:09  jongfoster
116  *    Now #defining the URLs of the config interface
117  *
118  *    Minor changes to struct http_request and struct url_spec due to
119  *    standardizing that struct http_request is used to represent a URL, and
120  *    struct url_spec is used to represent a URL pattern.  (Before, URLs were
121  *    represented as seperate variables and a partially-filled-in url_spec).
122  *
123  *    Revision 1.45  2002/01/09 14:33:27  oes
124  *    Added HOSTENT_BUFFER_SIZE
125  *
126  *    Revision 1.44  2001/12/30 14:07:32  steudten
127  *    - Add signal handling (unix)
128  *    - Add SIGHUP handler (unix)
129  *    - Add creation of pidfile (unix)
130  *    - Add action 'top' in rc file (RH)
131  *    - Add entry 'SIGNALS' to manpage
132  *    - Add exit message to logfile (unix)
133  *
134  *    Revision 1.43  2001/11/22 21:57:51  jongfoster
135  *    Making action_spec->flags into an unsigned long rather than just an
136  *    unsigned int.
137  *    Adding ACTION_NO_COOKIE_KEEP
138  *
139  *    Revision 1.42  2001/11/05 21:42:41  steudten
140  *    Include DBG() macro.
141  *
142  *    Revision 1.41  2001/10/28 19:12:06  jongfoster
143  *    Adding ijb_toupper()
144  *
145  *    Revision 1.40  2001/10/26 17:40:47  oes
146  *    Moved ijb_isspace and ijb_tolower to project.h
147  *    Removed http->user_agent, csp->referrer and csp->accept_types
148  *
149  *    Revision 1.39  2001/10/25 03:45:02  david__schmidt
150  *    Adding a (void*) cast to freez() because Visual Age C++ won't expand the
151  *    macro when called with a cast; so moving the cast to the macro def'n
152  *    seems to both eliminate compiler warnings (on darwin and OS/2, anyway) and
153  *    doesn't make macro expansion complain.  Hope this works for everyone else
154  *    too...
155  *
156  *    Revision 1.38  2001/10/23 21:19:04  jongfoster
157  *    New error-handling support: jb_err type and JB_ERR_xxx constants
158  *    CGI functions now return a jb_err, and their parameters map is const.
159  *    Support for RUNTIME_FEATUREs to enable/disable config editor
160  *    Adding a few comments
161  *
162  *    Revision 1.37  2001/10/14 22:14:01  jongfoster
163  *    Removing name_length field from struct cgi_dispatcher, as this is
164  *    now calculated at runtime from the "name" field.
165  *
166  *    Revision 1.36  2001/10/10 16:45:15  oes
167  *    Added LIMIT_CONNECT action and string
168  *    Fixed HTTP message line termination
169  *    Added CFORBIDDEN HTTP message
170  *
171  *    Revision 1.35  2001/10/07 18:06:43  oes
172  *    Added status member to struct http_request
173  *
174  *    Revision 1.34  2001/10/07 15:45:25  oes
175  *    Added url member to struct http_request and commented all
176  *      members
177  *
178  *    Added CT_TABOO
179  *
180  *    Added ACTION_DOWNGRADE and ACTION_NO_COMPRESSION
181  *
182  *    Replaced struct client_state members rejected,
183  *      force, active and toggled_on with "flags" bitmap.
184  *
185  *    Added CSP_FLAG_MODIFIED and CSP_FLAG_CHUNKED
186  *
187  *    Added buffer_limit to struct configuration_spec
188  *
189  *    Revision 1.33  2001/09/20 13:30:08  steudten
190  *
191  *    Make freez() more secure in case of: if (exp) { free(z) ; a=*z }
192  *    Last case will set z to NULL in free(z) and thats bad..
193  *
194  *    Revision 1.32  2001/09/16 23:02:51  jongfoster
195  *    Fixing warning
196  *
197  *    Revision 1.31  2001/09/16 13:20:29  jongfoster
198  *    Rewrite of list library.  Now has seperate header and list_entry
199  *    structures.  Also added a large sprinking of assert()s to the list
200  *    code.
201  *
202  *    Revision 1.30  2001/09/13 23:52:00  jongfoster
203  *    Support for both static and dynamically generated CGI pages
204  *
205  *    Revision 1.29  2001/09/13 23:29:43  jongfoster
206  *    Defining FORWARD_SPEC_INITIALIZER
207  *
208  *    Revision 1.28  2001/09/13 23:05:50  jongfoster
209  *    Changing the string paramater to the header parsers a "const".
210  *
211  *    Revision 1.27  2001/08/05 16:06:20  jongfoster
212  *    Modifiying "struct map" so that there are now separate header and
213  *    "map_entry" structures.  This means that functions which modify a
214  *    map no longer need to return a pointer to the modified map.
215  *    Also, it no longer reverses the order of the entries (which may be
216  *    important with some advanced template substitutions).
217  *
218  *    Revision 1.26  2001/07/30 22:08:36  jongfoster
219  *    Tidying up #defines:
220  *    - All feature #defines are now of the form FEATURE_xxx
221  *    - Permanently turned off WIN_GUI_EDIT
222  *    - Permanently turned on WEBDAV and SPLIT_PROXY_ARGS
223  *
224  *    Revision 1.25  2001/07/29 18:43:08  jongfoster
225  *    Changing #ifdef _FILENAME_H to FILENAME_H_INCLUDED, to conform to
226  *    ANSI C rules.
227  *
228  *    Revision 1.24  2001/07/25 17:20:27  oes
229  *    Introduced http->user_agent
230  *
231  *    Revision 1.23  2001/07/18 12:32:23  oes
232  *    - Added ACTION_STRING_DEANIMATE
233  *    - moved #define freez from jcc.h to project.h
234  *
235  *    Revision 1.22  2001/07/15 17:51:41  jongfoster
236  *    Renaming #define STATIC to STATIC_PCRE
237  *
238  *    Revision 1.21  2001/07/13 14:03:19  oes
239  *     - Reorganized regex header inclusion and #defines to
240  *       comply to the scheme in configure.in
241  *     - Added csp->content_type and its CT_* keys
242  *     - Added ACTION_DEANIMATE
243  *     - Removed all #ifdef PCRS
244  *
245  *    Revision 1.20  2001/06/29 21:45:41  oes
246  *    Indentation, CRLF->LF, Tab-> Space
247  *
248  *    Revision 1.19  2001/06/29 13:33:36  oes
249  *    - Improved comments
250  *    - Introduced http_request.host_ip_addr_str
251  *    - Introduced http_response.head_length
252  *    - Introduced config.my_ip_addr_str, config.my_hostname,
253  *      config.admin_address and config.proxy_info_url
254  *    - Removed config.proxy_args_header and config.proxy_args_trailer,
255  *      renamed config.proxy_args_invocation to config.proxy_args
256  *    - Removed HTML snipplets and GIFs
257  *    - Removed logentry from cancelled commit
258  *
259  *    Revision 1.18  2001/06/09 10:57:39  jongfoster
260  *    Adding definition of BUFFER_SIZE.
261  *    Changing struct cgi_dispatcher to use "const" strings.
262  *
263  *    Revision 1.17  2001/06/07 23:15:09  jongfoster
264  *    Merging ACL and forward files into config file.
265  *    Moving struct gateway members into struct forward_spec
266  *    Removing config->proxy_args_gateways
267  *    Cosmetic: Adding a few comments
268  *
269  *    Revision 1.16  2001/06/04 18:31:58  swa
270  *    files are now prefixed with either `confdir' or `logdir'.
271  *    `make redhat-dist' replaces both entries confdir and logdir
272  *    with redhat values
273  *
274  *    Revision 1.15  2001/06/04 11:28:53  swa
275  *    redirect did not work due to missing /
276  *
277  *    Revision 1.14  2001/06/03 11:03:48  oes
278  *    Added struct map,
279  *    added struct http_response,
280  *    changed struct interceptors to struct cgi_dispatcher,
281  *    moved HTML stuff to cgi.h
282  *
283  *    Revision 1.13  2001/06/01 20:05:36  jongfoster
284  *    Support for +image-blocker{}: added ACTION_IMAGE_BLOCKER
285  *    constant, and removed csp->tinygif.
286  *
287  *    Revision 1.12  2001/06/01 18:49:17  jongfoster
288  *    Replaced "list_share" with "list" - the tiny memory gain was not
289  *    worth the extra complexity.
290  *
291  *    Revision 1.11  2001/06/01 10:32:47  oes
292  *    Added constants for anchoring selection bitmap
293  *
294  *    Revision 1.10  2001/05/31 21:33:53  jongfoster
295  *    Changes for new actions file, replacing permissionsfile
296  *    and parts of the config file.  Also added support for
297  *    list_shared.
298  *
299  *    Revision 1.9  2001/05/31 17:32:31  oes
300  *
301  *     - Enhanced domain part globbing with infix and prefix asterisk
302  *       matching and optional unanchored operation
303  *
304  *    Revision 1.8  2001/05/29 20:09:15  joergs
305  *    HTTP_REDIRECT_TEMPLATE fixed.
306  *
307  *    Revision 1.7  2001/05/29 09:50:24  jongfoster
308  *    Unified blocklist/imagelist/actionslist.
309  *    File format is still under discussion, but the internal changes
310  *    are (mostly) done.
311  *
312  *    Also modified interceptor behaviour:
313  *    - We now intercept all URLs beginning with one of the following
314  *      prefixes (and *only* these prefixes):
315  *        * http://i.j.b/
316  *        * http://ijbswa.sf.net/config/
317  *        * http://ijbswa.sourceforge.net/config/
318  *    - New interceptors "home page" - go to http://i.j.b/ to see it.
319  *    - Internal changes so that intercepted and fast redirect pages
320  *      are not replaced with an image.
321  *    - Interceptors now have the option to send a binary page direct
322  *      to the client. (i.e. ijb-send-banner uses this)
323  *    - Implemented show-url-info interceptor.  (Which is why I needed
324  *      the above interceptors changes - a typical URL is
325  *      "http://i.j.b/show-url-info?url=www.somesite.com/banner.gif".
326  *      The previous mechanism would not have intercepted that, and
327  *      if it had been intercepted then it then it would have replaced
328  *      it with an image.)
329  *
330  *    Revision 1.6  2001/05/27 22:17:04  oes
331  *
332  *    - re_process_buffer no longer writes the modified buffer
333  *      to the client, which was very ugly. It now returns the
334  *      buffer, which it is then written by chat.
335  *
336  *    - content_length now adjusts the Content-Length: header
337  *      for modified documents rather than crunch()ing it.
338  *      (Length info in csp->content_length, which is 0 for
339  *      unmodified documents)
340  *
341  *    - For this to work, sed() is called twice when filtering.
342  *
343  *    Revision 1.5  2001/05/26 00:28:36  jongfoster
344  *    Automatic reloading of config file.
345  *    Removed obsolete SIGHUP support (Unix) and Reload menu option (Win32).
346  *    Most of the global variables have been moved to a new
347  *    struct configuration_spec, accessed through csp->config->globalname
348  *    Most of the globals remaining are used by the Win32 GUI.
349  *
350  *    Revision 1.4  2001/05/22 18:46:04  oes
351  *
352  *    - Enabled filtering banners by size rather than URL
353  *      by adding patterns that replace all standard banner
354  *      sizes with the "Junkbuster" gif to the re_filterfile
355  *
356  *    - Enabled filtering WebBugs by providing a pattern
357  *      which kills all 1x1 images
358  *
359  *    - Added support for PCRE_UNGREEDY behaviour to pcrs,
360  *      which is selected by the (nonstandard and therefore
361  *      capital) letter 'U' in the option string.
362  *      It causes the quantifiers to be ungreedy by default.
363  *      Appending a ? turns back to greedy (!).
364  *
365  *    - Added a new interceptor ijb-send-banner, which
366  *      sends back the "Junkbuster" gif. Without imagelist or
367  *      MSIE detection support, or if tinygif = 1, or the
368  *      URL isn't recognized as an imageurl, a lame HTML
369  *      explanation is sent instead.
370  *
371  *    - Added new feature, which permits blocking remote
372  *      script redirects and firing back a local redirect
373  *      to the browser.
374  *      The feature is conditionally compiled, i.e. it
375  *      can be disabled with --disable-fast-redirects,
376  *      plus it must be activated by a "fast-redirects"
377  *      line in the config file, has its own log level
378  *      and of course wants to be displayed by show-proxy-args
379  *      Note: Boy, all the #ifdefs in 1001 locations and
380  *      all the fumbling with configure.in and acconfig.h
381  *      were *way* more work than the feature itself :-(
382  *
383  *    - Because a generic redirect template was needed for
384  *      this, tinygif = 3 now uses the same.
385  *
386  *    - Moved GIFs, and other static HTTP response templates
387  *      to project.h
388  *
389  *    - Some minor fixes
390  *
391  *    - Removed some >400 CRs again (Jon, you really worked
392  *      a lot! ;-)
393  *
394  *    Revision 1.3  2001/05/20 01:21:20  jongfoster
395  *    Version 2.9.4 checkin.
396  *    - Merged popupfile and cookiefile, and added control over PCRS
397  *      filtering, in new "actionsfile".
398  *    - Implemented LOG_LEVEL_FATAL, so that if there is a configuration
399  *      file error you now get a message box (in the Win32 GUI) rather
400  *      than the program exiting with no explanation.
401  *    - Made killpopup use the PCRS MIME-type checking and HTTP-header
402  *      skipping.
403  *    - Removed tabs from "config"
404  *    - Moved duplicated url parsing code in "loaders.c" to a new funcition.
405  *    - Bumped up version number.
406  *
407  *    Revision 1.2  2001/05/17 23:01:01  oes
408  *     - Cleaned CRLF's from the sources and related files
409  *
410  *    Revision 1.1.1.1  2001/05/15 13:59:03  oes
411  *    Initial import of version 2.9.3 source tree
412  *
413  *
414  *********************************************************************/
415 \f
416
417 /* Declare struct FILE for vars and funcs. */
418 #include <stdio.h>
419
420 /* Need time_t for file_list */
421 #include <time.h>
422
423 /*
424  * Include appropriate regular expression libraries.
425  * Note that pcrs and pcre (native) are needed for cgi
426  * and are included anyway.
427  */
428
429 #ifdef STATIC_PCRE
430 #  include "pcre.h"
431 #else
432 #  include <pcre.h>
433 #endif
434
435 #ifdef STATIC_PCRS
436 #  include "pcrs.h"
437 #else
438 #  include <pcrs.h>
439 #endif
440
441 #ifdef STATIC_PCRE
442 #  include "pcreposix.h"
443 #else
444 #  include <pcreposix.h>
445 #endif
446
447 #ifdef AMIGA
448 #include "amiga.h"
449 #endif /* def AMIGA */
450
451 #ifdef _WIN32
452 /*
453  * I don't want to have to #include all this just for the declaration
454  * of SOCKET.  However, it looks like we have to...
455  */
456 #ifndef STRICT
457 #define STRICT
458 #endif
459 #include <windows.h>
460 #endif
461
462
463 #ifdef __cplusplus
464 extern "C" {
465 #endif
466
467 /*
468  * The type used by sockets.  On UNIX it's an int.  Microsoft decided to
469  * make it an unsigned.
470  */
471 #ifdef _WIN32
472 typedef SOCKET jb_socket;
473 #define JB_INVALID_SOCKET INVALID_SOCKET
474 #else /* ndef _WIN32 */
475 typedef int jb_socket;
476 #define JB_INVALID_SOCKET (-1)
477 #endif /* ndef _WIN32 */
478
479
480 /*
481  * Error codes.  Functions returning these should return a jb_err
482  */
483 #define JB_ERR_OK         0 /* Success, no error                        */
484 #define JB_ERR_MEMORY     1 /* Out of memory                            */
485 #define JB_ERR_CGI_PARAMS 2 /* Missing or corrupt CGI parameters        */
486 #define JB_ERR_FILE       3 /* Error opening, reading or writing a file */
487 #define JB_ERR_PARSE      4 /* Error parsing file                       */
488 #define JB_ERR_MODIFIED   5 /* File has been modified outside of the    */
489                             /* CGI actions editor.                      */
490 typedef int jb_err;
491
492
493 /*
494  * This macro is used to free a pointer that may be NULL
495  */
496 #define freez(X)  { if(X) { free((void*)X); X = NULL ; } }
497
498
499 /* Fix a problem with Solaris.  There should be no effect on other
500  * platforms.
501  * Solaris's isspace() is a macro which uses it's argument directly
502  * as an array index.  Therefore we need to make sure that high-bit
503  * characters generate +ve values, and ideally we also want to make
504  * the argument match the declared parameter type of "int".
505  *
506  * Note: Remember to #include <ctype.h> if you use these macros.
507  */
508 #define ijb_toupper(__X) toupper((int)(unsigned char)(__X))
509 #define ijb_tolower(__X) tolower((int)(unsigned char)(__X))
510 #define ijb_isspace(__X) isspace((int)(unsigned char)(__X))  
511
512 /*
513  * Use for statically allocated buffers if you have no other choice.
514  * Remember to check the length of what you write into the buffer
515  * - we don't want any buffer overflows!
516  */
517 #define BUFFER_SIZE 5000
518
519 /*
520  * Buffer size for capturing struct hostent data in the
521  * gethostby(name|addr)_r library calls. Since we don't
522  * loop over gethostbyname_r, the buffer must be sufficient
523  * to accomodate multiple IN A RRs, as used in DNS round robin
524  * load balancing. W3C's wwwlib uses 1K, so that should be
525  * good enough for us, too.
526  */
527 #define HOSTENT_BUFFER_SIZE 1024
528
529 /*
530  * So you can say "while (FOREVER) { ...do something... }"
531  */
532 #define FOREVER 1
533
534 /* Default IP and port to listen on */
535 #define HADDR_DEFAULT   "127.0.0.1"
536 #define HADDR_PORT      8118
537
538 /* Forward defs for various structures */
539
540 /* Need this for struct client_state */
541 struct configuration_spec;
542
543
544 /* Generic linked list of strings */
545
546 struct list_entry
547 {
548    const char *str;
549    struct list_entry *next;
550 };
551
552 struct list
553 {
554    struct list_entry *first;
555    struct list_entry *last;
556 };
557
558
559 /* A map from a string to another string */
560
561 struct map_entry
562 {
563    const char *name;
564    const char *value;
565    struct map_entry *next;
566 };
567
568 struct map
569 {
570    struct map_entry *first;
571    struct map_entry *last;
572 };
573
574
575 struct http_request
576 {
577    char *cmd;      /* Whole command line: method, URL, Version */
578    char *ocmd;     /* Backup of original cmd for CLF logging */
579    char *gpc;      /* HTTP method: GET, POST, .. */
580    char *url;      /* The URL */
581    char *ver;      /* Protocol version */
582    int status;     /* HTTP Status */
583
584    char *host;     /* Host part of URL */
585    int   port;     /* Port of URL or 80 (default) */
586    char *path;     /* Path of URL */
587    char *hostport; /* host[:port] */
588    int   ssl;      /* Flag if protocol is https */
589
590    char *host_ip_addr_str; /* String with dotted decimal representation
591                             * of host's IP. NULL before connect_to() */
592
593    char  *dbuffer;     /* Buffer with '\0'-delimited domain name.           */
594    char **dvec;        /* List of pointers to the strings in dbuffer.       */
595    int    dcount;      /* How many parts to this domain? (length of dvec)   */
596 };
597
598 /* 
599  * Response generated by CGI, blocker, or error handler
600  */
601 struct http_response
602 {
603   char  *status;          /* HTTP status (string) */
604   struct list headers[1]; /* List of header lines */
605   char  *head;            /* Formatted http response head */
606   size_t head_length;     /* Length of http response head */
607   char  *body;            /* HTTP document body */
608   size_t content_length;  /* Length of body, REQUIRED if binary body */
609   int    is_static;       /* Nonzero if the content will never change and
610                            * should be cached by the brwoser (e.g. images) */
611 };
612
613 /* A URL pattern */
614 struct url_spec
615 {
616    char  *spec;        /* The string which was parsed to produce this       */
617                        /* url_spec.  Used for debugging or display only.    */
618
619    /* Hostname matching, or dbuffer == NULL to match all hosts */
620    char  *dbuffer;     /* Buffer with '\0'-delimited domain name.           */
621    char **dvec;        /* List of pointers to the strings in dbuffer.       */
622    int    dcount;      /* How many parts to this domain? (length of dvec)   */
623    int    unanchored;  /* Bitmap - flags are ANCHOR_LEFT and ANCHOR_RIGHT.  */
624
625    /* Port matching: */
626    int   port;         /* The port number, or 0 to match all ports.         */
627
628    /* Path matching: */
629    char *path;         /* The path prefix (if not using regex), or source   */
630                        /* for the regex.                                    */
631    int   pathlen;      /* ==strlen(path).  Needed for prefix matching.      */
632    regex_t *preg;      /* Regex for matching path part                      */
633 };
634 #define URL_SPEC_INITIALIZER { NULL, NULL, NULL, 0, 0, 0, NULL, 0, NULL }
635
636 /* Constants for host part matching in URLs */
637 #define ANCHOR_LEFT  1
638 #define ANCHOR_RIGHT 2
639
640
641 /* An I/O buffer */
642 struct iob
643 {
644    char *buf;
645    char *cur;
646    char *eod;
647 };
648
649
650 #define IOB_PEEK(CSP) ((CSP->iob->cur > CSP->iob->eod) ? (CSP->iob->eod - CSP->iob->cur) : 0)
651 #define IOB_RESET(CSP) if(CSP->iob->buf) free(CSP->iob->buf); memset(CSP->iob, '\0', sizeof(CSP->iob));
652
653 /* Bits for csp->content_type */
654 #define CT_TEXT   1 /* Suitable for pcrs filtering */
655 #define CT_GIF    2 /* Suitable for GIF filtering */
656 #define CT_TABOO  4 /* DONT filter */
657
658 #define ACTION_MASK_ALL        (~0U)
659
660 #define ACTION_MOST_COMPATIBLE 0x00000000UL
661
662 #define ACTION_BLOCK           0x00000001UL
663 #define ACTION_DEANIMATE       0x00000002UL
664 #define ACTION_DOWNGRADE       0x00000004UL
665 #define ACTION_FAST_REDIRECTS  0x00000008UL
666 #define ACTION_HIDE_FORWARDED  0x00000010UL
667 #define ACTION_HIDE_FROM       0x00000020UL
668 #define ACTION_HIDE_REFERER    0x00000040UL /* sic - follow HTTP, not English */
669 #define ACTION_HIDE_USER_AGENT 0x00000080UL
670 #define ACTION_IMAGE           0x00000100UL
671 #define ACTION_IMAGE_BLOCKER   0x00000200UL
672 #define ACTION_NO_COMPRESSION  0x00000400UL
673 #define ACTION_NO_COOKIE_KEEP  0x00000800UL
674 #define ACTION_NO_COOKIE_READ  0x00001000UL
675 #define ACTION_NO_COOKIE_SET   0x00002000UL
676 #define ACTION_NO_POPUPS       0x00004000UL
677 #define ACTION_VANILLA_WAFER   0x00008000UL
678 #define ACTION_LIMIT_CONNECT   0x00010000UL
679
680 #define ACTION_STRING_DEANIMATE     0
681 #define ACTION_STRING_FROM          1
682 #define ACTION_STRING_IMAGE_BLOCKER 2
683 #define ACTION_STRING_REFERER       3
684 #define ACTION_STRING_USER_AGENT    4
685 #define ACTION_STRING_LIMIT_CONNECT 5
686 #define ACTION_STRING_COUNT         6
687
688 #define ACTION_MULTI_ADD_HEADER     0
689 #define ACTION_MULTI_WAFER          1
690 #define ACTION_MULTI_FILTER         2
691 #define ACTION_MULTI_COUNT          3
692
693
694 /*
695  * This structure contains a list of actions to apply to a URL.
696  * It only contains positive instructions - no "-" options.
697  * It is not used to store the actions list itself, only for
698  * url_actions() to return the current values.
699  */
700 struct current_action_spec
701 {
702    unsigned long flags;    /* a bit set to "1" = add action    */
703
704    /* For those actions that require parameters: */
705
706    /* each entry is valid if & only if corresponding entry in "add" set. */
707    char * string[ACTION_STRING_COUNT];
708
709    /* Strings to add */
710    struct list multi[ACTION_MULTI_COUNT][1];
711 };
712
713
714 /*
715  * This structure contains a set of changes to actions.
716  * It can contain both positive and negative instructions.
717  * It is used to store an entry in the actions list.
718  */
719 struct action_spec
720 {
721    unsigned long mask;   /* a bit set to "0" = remove action */
722    unsigned long add;    /* a bit set to "1" = add action    */
723
724    /* For those actions that require parameters: */
725
726    /* each entry is valid if & only if corresponding entry in "add" set. */
727    char * string[ACTION_STRING_COUNT];
728
729    /* Strings to remove. */
730    struct list multi_remove[ACTION_MULTI_COUNT][1];
731
732    /* If nonzero, remove *all* strings. */
733    int         multi_remove_all[ACTION_MULTI_COUNT];
734
735    /* Strings to add */
736    struct list multi_add[ACTION_MULTI_COUNT][1];
737 };
738
739 /*
740  * This structure is used to store the actions list.
741  *
742  * It contains a URL pattern, and the chages to the actions.
743  * It is a linked list.
744  */
745 struct url_actions
746 {
747    struct url_spec url[1];
748
749    struct action_spec action[1];
750
751    struct url_actions * next;
752 };
753
754
755 /*
756  * Flags for use in csp->flags
757  */
758 #define CSP_FLAG_ACTIVE     0x01 /* Set if this client is processing data.
759                                   * Cleared when the thread associated with
760                                   * this structure dies. */
761 #define CSP_FLAG_CHUNKED    0x02 /* Set if the server's reply is in "chunked"
762                                   * transfer encoding */
763 #define CSP_FLAG_FORCED     0x04 /* Set if this request was enforced, although
764                                   * it would normally have been blocked. */
765 #define CSP_FLAG_MODIFIED   0x08 /* Set if any modification to the body was done */
766 #define CSP_FLAG_REJECTED   0x10 /* Set if request was blocked.  */
767 #define CSP_FLAG_TOGGLED_ON 0x20 /* Set if we are toggled on (FEATURE_TOGGLE) */
768
769 /*
770  * The state of a Privoxy processing thread.
771  */
772 struct client_state
773 {
774    /* The proxy's configuration */
775    struct configuration_spec * config;
776
777    /* The actions to perform on the current request */
778    struct current_action_spec  action[1];
779
780    /* socket to talk to client (web browser) */
781    jb_socket cfd;
782
783    /* socket to talk to server (web server or proxy) */
784    jb_socket sfd;
785
786    /* Multi-purpose flag container, see CSP_FLAG_* above */
787    unsigned short int flags;
788
789    /*
790     * Client PC's IP address, as reported by the accept()_ function.
791     * Both as string and number
792     */
793    char *ip_addr_str;
794    long  ip_addr_long;
795
796
797    /* Our IP address and hostname, i.e. the IP address that
798       the client used to reach us, and the associated hostname,
799       both as strings
800     */
801    char *my_ip_addr_str;
802    char *my_hostname;
803
804    /* The URL that was requested */
805    struct http_request http[1];
806
807    /* An I/O buffer used for buffering data read from the client */
808    struct iob iob[1];
809
810    /* List of all headers for this request */
811    struct list headers[1];
812
813    /* List of all cookies for this request */
814    struct list cookie_list[1];
815
816    /* MIME-Type key, see CT_* above */
817    unsigned short int content_type;
818
819    /* The "X-Forwarded-For:" header sent by the client */
820    char   *x_forwarded;
821
822    /* files associated with this client */
823    struct file_list *actions_list;
824
825    struct file_list *rlist;   /* pcrs job file */
826    size_t content_length;     /* Length after content modification */
827
828 #ifdef FEATURE_TRUST
829    struct file_list *tlist;   /* trustfile */
830 #endif /* def FEATURE_TRUST */
831
832    struct client_state *next;
833 };
834
835
836 /*
837  * A function to add a header
838  */
839 typedef jb_err (*add_header_func_ptr)(struct client_state *);
840
841 /*
842  * A function to process a header
843  */
844 typedef jb_err (*parser_func_ptr    )(struct client_state *, char **);
845
846 /*
847  * List of functions to run on a list of headers
848  */
849 struct parsers
850 {
851    char   *str;
852    size_t len;
853    parser_func_ptr parser;
854 };
855
856
857 /*
858  * List of available CGI functions.
859  */
860 struct cgi_dispatcher
861 {
862    const char * const name;
863    jb_err    (* const handler)(struct client_state *csp, struct http_response *rsp, const struct map *parameters);
864    const char * const description;
865 };
866
867
868 /*
869  * A data file used by Privoxy.  Kept in a linked list.
870  */
871 struct file_list
872 {
873    /*
874     * this is a pointer to the data structures associated with the file.
875     * Read-only once the structure has been created.
876     */
877    void *f;
878
879    /* Normally NULL.  When we are finished with file (i.e. when we have
880     * loaded a new one), set to a pointer to an unloader function.
881     * Unloader will be called by sweep() (called from main loop) when
882     * all clients using this file are done.  This prevents threading
883     * problems.
884     */
885    void (*unloader)(void *);
886
887    /* Used internally by sweep().  Do not access from elsewhere. */
888    int active;
889
890    /* Following variables allow us to check if file has been changed.
891     * Read-only once the structure has been created.
892     */
893    time_t lastmodified;
894    char * filename;
895
896    /* Pointer to next entry in the linked list of all "file_list"s.
897     * This linked list is so that sweep() can navigate it.
898     * Since sweep() can remove items from the list, we must be careful
899     * to only access this value from main thread (when we know sweep
900     * won't be running).
901     */
902    struct file_list *next;
903 };
904
905
906 #ifdef FEATURE_TRUST
907 struct block_spec
908 {
909    struct url_spec url[1];
910    int    reject;
911    struct block_spec *next;
912 };
913 #endif /* def FEATURE_TRUST */
914
915
916 #define SOCKS_NONE    0    /* Don't use a SOCKS server */
917 #define SOCKS_4      40    /* original SOCKS 4 protocol */
918 #define SOCKS_4A     41    /* as modified for hosts w/o external DNS */
919
920 struct forward_spec
921 {
922    struct url_spec url[1];
923
924    /* Connection type - must be a SOCKS_xxx constant */
925    int   type;
926
927    /* SOCKS server */
928    char *gateway_host;
929    int   gateway_port;
930
931    /* Parent HTTP proxy */
932    char *forward_host;
933    int   forward_port;
934
935    /* For the linked list */
936    struct forward_spec *next;
937 };
938 #define FORWARD_SPEC_INITIALIZER { { URL_SPEC_INITIALIZER }, 0, NULL, 0, NULL, 0, NULL }
939
940
941 /*
942  * This struct represents one filter (one block) from
943  * the re_filterfile. If there is more than one filter
944  * in the file, the file will be represented by a
945  * chained list of re_filterfile specs.
946  */
947 struct re_filterfile_spec
948 {
949    char *name;                      /* Name from FILTER: statement in re_filterfile */
950    char *description;               /* Description from FILTER: statement in re_filterfile */
951    struct list patterns[1];         /* The patterns from the re_filterfile */
952    pcrs_job *joblist;               /* The resulting compiled pcrs_jobs */
953    struct re_filterfile_spec *next; /* The pointer for chaining */
954 };
955
956 #ifdef FEATURE_ACL
957 #define ACL_PERMIT   1  /* accept connection request */
958 #define ACL_DENY     2  /* reject connection request */
959
960 struct access_control_addr
961 {
962    unsigned long addr;
963    unsigned long mask;
964    unsigned long port;
965 };
966
967 struct access_control_list
968 {
969    struct access_control_addr src[1];
970    struct access_control_addr dst[1];
971
972    short action;
973    struct access_control_list *next;
974 };
975 #endif /* def FEATURE_ACL */
976
977
978 /* Maximum number of loaders (actions, re_filter, ...) */
979 #define NLOADERS 8
980
981
982 #define RUNTIME_FEATURE_CGI_EDIT_ACTIONS  1
983 #define RUNTIME_FEATURE_CGI_TOGGLE        2
984
985
986 /*
987  * Data loaded from the configuration file.
988  *
989  * (Anomaly: toggle is still handled through a global, not this structure)
990  */
991 struct configuration_spec
992 {
993    int debug;
994    int multi_threaded;
995
996    /* Features that can be enabled/disabled throuigh the config file */
997    unsigned feature_flags;
998
999    const char *logfile;
1000
1001    const char *confdir;
1002    const char *logdir;
1003    const char *actions_file;
1004
1005    /* The administrator's email address */
1006    char *admin_address;
1007
1008    /* A URL with info on this proxy */
1009    char *proxy_info_url;
1010
1011    const char *re_filterfile;
1012
1013 #ifdef FEATURE_COOKIE_JAR
1014    const char * jarfile;
1015    FILE * jar;
1016 #endif /* def FEATURE_COOKIE_JAR */
1017
1018    /*
1019     * Port and IP to bind to.
1020     * Defaults to HADDR_DEFAULT:HADDR_PORT == 127.0.0.1:8118
1021     */
1022    const char *haddr;
1023    int         hport;
1024
1025    /* Size limit for IOB */
1026    size_t buffer_limit;
1027
1028 #ifdef FEATURE_TRUST
1029    const char * trustfile;
1030
1031    struct list trust_info[1];
1032    struct url_spec *trust_list[64];
1033 #endif /* def FEATURE_TRUST */
1034
1035 #ifdef FEATURE_ACL
1036    struct access_control_list *acl;
1037 #endif /* def FEATURE_ACL */
1038
1039    struct forward_spec *forward;
1040
1041    /* All options from the config file, HTML-formatted */
1042    char *proxy_args;
1043
1044    /* the configuration file object. */
1045    struct file_list *config_file_list;
1046
1047    /* List of loaders */
1048    int (*loaders[NLOADERS])(struct client_state *);
1049
1050    /* bool, nonzero if we need to bind() to the new port */
1051    int need_bind;
1052 };
1053
1054
1055 #define SZ(X)  (sizeof(X) / sizeof(*X))
1056
1057 #ifdef FEATURE_FORCE_LOAD
1058 #define FORCE_PREFIX "/PRIVOXY-FORCE"
1059 #endif /* def FEATURE_FORCE_LOAD */
1060
1061 #ifdef FEATURE_NO_GIFS
1062 #define BUILTIN_IMAGE_MIMETYPE "image/png"
1063 #else
1064 #define BUILTIN_IMAGE_MIMETYPE "image/gif"
1065 #endif /* def FEATURE_NO_GIFS */
1066
1067
1068 /* Hardwired URLs */
1069 #define HOME_PAGE_URL       "http://www.privoxy.org"
1070 #define REDIRECT_URL        HOME_PAGE_URL "/redirect.php?v=" VERSION "&to="
1071
1072 /*
1073  * The "hosts" to intercept and display CGI pages.
1074  * First one is a hostname only, second one can specify host and path.
1075  *
1076  * Notes:
1077  * 1) Do not specify the http: prefix
1078  * 2) CGI_SITE_2_PATH must not end with /, one will be added automatically.
1079  * 3) CGI_SITE_2_PATH must start with /, unless it is the empty string.
1080  */
1081 #define CGI_SITE_1_HOST "p.p"
1082 #define CGI_SITE_2_HOST "config.privoxy.org"
1083 #define CGI_SITE_2_PATH ""
1084
1085 /*
1086  * The prefix for CGI pages.  Written out in generated HTML.
1087  * INCLUDES the trailing slash.
1088  */
1089 #define CGI_PREFIX  "http://" CGI_SITE_2_HOST CGI_SITE_2_PATH "/"
1090
1091
1092 /* HTTP snipplets */
1093 static const char CSUCCEED[] =
1094    "HTTP/1.0 200 Connection established\n"
1095    "Proxy-Agent: Privoxy/" VERSION "\r\n\r\n";
1096
1097 static const char CHEADER[] =
1098    "HTTP/1.0 400 Invalid header received from browser\r\n\r\n";
1099
1100 static const char CFORBIDDEN[] =
1101    "HTTP/1.0 403 Connection not allowable\r\nX-Hint: If you read this message interactively, then you know why this happens ,-)\r\n\r\n";
1102
1103 #ifdef __cplusplus
1104 } /* extern "C" */
1105 #endif
1106
1107 #endif /* ndef PROJECT_H_INCLUDED */
1108
1109 /*
1110   Local Variables:
1111   tab-width: 3
1112   end:
1113 */