name change
[privoxy.git] / loaders.h
1 #ifndef LOADERS_H_INCLUDED
2 #define LOADERS_H_INCLUDED
3 #define LOADERS_H_VERSION "$Id: loaders.h,v 1.16 2002/03/07 03:46:17 oes Exp $"
4 /*********************************************************************
5  *
6  * File        :  $Source: /cvsroot/ijbswa/current/loaders.h,v $
7  *
8  * Purpose     :  Functions to load and unload the various
9  *                configuration files.  Also contains code to manage
10  *                the list of active loaders, and to automatically 
11  *                unload files that are no longer in use.
12  *
13  * Copyright   :  Written by and Copyright (C) 2001 the SourceForge
14  *                IJBSWA team.  http://ijbswa.sourceforge.net
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  * Revisions   :
39  *    $Log: loaders.h,v $
40  *    Revision 1.16  2002/03/07 03:46:17  oes
41  *    Fixed compiler warnings
42  *
43  *    Revision 1.15  2002/01/22 23:46:18  jongfoster
44  *    Moving edit_read_line() and simple_read_line() to loaders.c, and
45  *    extending them to support reading MS-DOS, Mac and UNIX style files
46  *    on all platforms.
47  *
48  *    Modifying read_config_line() (without changing it's prototype) to
49  *    be a trivial wrapper for edit_read_line().  This means that we have
50  *    one function to read a line and handle comments, which is common
51  *    between the initialization code and the edit interface.
52  *
53  *    Revision 1.14  2002/01/17 21:03:08  jongfoster
54  *    Moving all our URL and URL pattern parsing code to urlmatch.c.
55  *
56  *    Renaming free_url to free_url_spec, since it frees a struct url_spec.
57  *
58  *    Revision 1.13  2001/12/30 14:07:32  steudten
59  *    - Add signal handling (unix)
60  *    - Add SIGHUP handler (unix)
61  *    - Add creation of pidfile (unix)
62  *    - Add action 'top' in rc file (RH)
63  *    - Add entry 'SIGNALS' to manpage
64  *    - Add exit message to logfile (unix)
65  *
66  *    Revision 1.12  2001/11/07 00:02:13  steudten
67  *    Add line number in error output for lineparsing for
68  *    actionsfile and configfile.
69  *    Special handling for CLF added.
70  *
71  *    Revision 1.11  2001/10/23 21:38:53  jongfoster
72  *    Adding error-checking to create_url_spec()
73  *
74  *    Revision 1.10  2001/09/22 16:36:59  jongfoster
75  *    Removing unused parameter fs from read_config_line()
76  *
77  *    Revision 1.9  2001/07/30 22:08:36  jongfoster
78  *    Tidying up #defines:
79  *    - All feature #defines are now of the form FEATURE_xxx
80  *    - Permanently turned off WIN_GUI_EDIT
81  *    - Permanently turned on WEBDAV and SPLIT_PROXY_ARGS
82  *
83  *    Revision 1.8  2001/07/29 18:58:15  jongfoster
84  *    Removing nested #includes, adding forward declarations for needed
85  *    structures, and changing the #define _FILENAME_H to FILENAME_H_INCLUDED.
86  *
87  *    Revision 1.7  2001/07/13 14:01:54  oes
88  *    Removed all #ifdef PCRS
89  *
90  *    Revision 1.6  2001/06/07 23:14:38  jongfoster
91  *    Removing ACL and forward file loaders - these files have
92  *    been merged into the config file.
93  *
94  *    Revision 1.5  2001/05/31 21:28:49  jongfoster
95  *    Removed all permissionsfile code - it's now called the actions
96  *    file, and (almost) all the code is in actions.c
97  *
98  *    Revision 1.4  2001/05/29 09:50:24  jongfoster
99  *    Unified blocklist/imagelist/permissionslist.
100  *    File format is still under discussion, but the internal changes
101  *    are (mostly) done.
102  *
103  *    Also modified interceptor behaviour:
104  *    - We now intercept all URLs beginning with one of the following
105  *      prefixes (and *only* these prefixes):
106  *        * http://i.j.b/
107  *        * http://ijbswa.sf.net/config/
108  *        * http://ijbswa.sourceforge.net/config/
109  *    - New interceptors "home page" - go to http://i.j.b/ to see it.
110  *    - Internal changes so that intercepted and fast redirect pages
111  *      are not replaced with an image.
112  *    - Interceptors now have the option to send a binary page direct
113  *      to the client. (i.e. ijb-send-banner uses this)
114  *    - Implemented show-url-info interceptor.  (Which is why I needed
115  *      the above interceptors changes - a typical URL is
116  *      "http://i.j.b/show-url-info?url=www.somesite.com/banner.gif".
117  *      The previous mechanism would not have intercepted that, and
118  *      if it had been intercepted then it then it would have replaced
119  *      it with an image.)
120  *
121  *    Revision 1.3  2001/05/26 00:28:36  jongfoster
122  *    Automatic reloading of config file.
123  *    Removed obsolete SIGHUP support (Unix) and Reload menu option (Win32).
124  *    Most of the global variables have been moved to a new
125  *    struct configuration_spec, accessed through csp->config->globalname
126  *    Most of the globals remaining are used by the Win32 GUI.
127  *
128  *    Revision 1.2  2001/05/20 01:21:20  jongfoster
129  *    Version 2.9.4 checkin.
130  *    - Merged popupfile and cookiefile, and added control over PCRS
131  *      filtering, in new "permissionsfile".
132  *    - Implemented LOG_LEVEL_FATAL, so that if there is a configuration
133  *      file error you now get a message box (in the Win32 GUI) rather
134  *      than the program exiting with no explanation.
135  *    - Made killpopup use the PCRS MIME-type checking and HTTP-header
136  *      skipping.
137  *    - Removed tabs from "config"
138  *    - Moved duplicated url parsing code in "loaders.c" to a new funcition.
139  *    - Bumped up version number.
140  *
141  *    Revision 1.1.1.1  2001/05/15 13:59:00  oes
142  *    Initial import of version 2.9.3 source tree
143  *
144  *
145  *********************************************************************/
146 \f
147
148 #ifdef __cplusplus
149 extern "C" {
150 #endif
151
152 /* Structures taken from project.h */
153 struct client_state;
154 struct file_list;
155 struct configuration_spec;
156 struct url_spec;
157
158 extern void sweep(void);
159 extern char *read_config_line(char *buf, size_t buflen, FILE *fp, unsigned long *linenum);
160 extern int check_file_changed(const struct file_list * current,
161                               const char * filename,
162                               struct file_list ** newfl);
163
164 extern jb_err edit_read_line(FILE *fp,
165                              char **raw_out,
166                              char **prefix_out,
167                              char **data_out,
168                              int *newline,
169                              unsigned long *line_number);
170
171 extern jb_err simple_read_line(FILE *fp, char **dest, int *newline);
172
173 /*
174  * Various types of newlines that a file may contain.
175  */
176 #define NEWLINE_UNKNOWN 0  /* Newline convention in file is unknown */
177 #define NEWLINE_UNIX    1  /* Newline convention in file is '\n'   (ASCII 10) */
178 #define NEWLINE_DOS     2  /* Newline convention in file is '\r\n' (ASCII 13,10) */
179 #define NEWLINE_MAC     3  /* Newline convention in file is '\r'   (ASCII 13) */
180
181 /*
182  * Types of newlines that a file may contain, as strings.  If you have an
183  * extremely wierd compiler that does not have '\r' == CR == ASCII 13 and
184  * '\n' == LF == ASCII 10), then fix CHAR_CR and CHAR_LF in loaders.c as
185  * well as these definitions.
186  */
187 #define NEWLINE(style) ((style)==NEWLINE_DOS ? "\r\n" : \
188                         ((style)==NEWLINE_MAC ? "\r" : "\n"))
189
190
191 extern short int MustReload;
192 extern int load_actions_file(struct client_state *csp);
193 extern int load_re_filterfile(struct client_state *csp);
194
195 #ifdef FEATURE_TRUST
196 extern int load_trustfile(struct client_state *csp);
197 #endif /* def FEATURE_TRUST */
198
199 #ifdef FEATURE_GRACEFUL_TERMINATION
200 #ifdef FEATURE_TRUST
201 void unload_current_trust_file(void);
202 #endif
203 void unload_current_re_filterfile(void);
204 #endif /* FEATURE_GRACEFUL_TERMINATION */
205
206
207 extern void add_loader(int (*loader)(struct client_state *), 
208                        struct configuration_spec * config);
209 extern int run_loader(struct client_state *csp);
210
211 /* Revision control strings from this header and associated .c file */
212 extern const char loaders_rcs[];
213 extern const char loaders_h_rcs[];
214
215 #ifdef __cplusplus
216 } /* extern "C" */
217 #endif
218
219 #endif /* ndef LOADERS_H_INCLUDED */
220
221 /*
222   Local Variables:
223   tab-width: 3
224   end:
225 */