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