Typo: inspect_jpegs, not inspect-jpegs in form
[privoxy.git] / src / loadcfg.c
1 const char loadcfg_rcs[] = "$Id: loadcfg.c,v 2.5 2003/09/22 00:33:01 david__schmidt Exp $";
2 /*********************************************************************
3  *
4  * File        :  $Source: /cvsroot/ijbswa/current/src/loadcfg.c,v $
5  *
6  * Purpose     :  Loads settings from the configuration file into
7  *                global variables.  This file contains both the
8  *                routine to load the configuration and the global
9  *                variables it writes to.
10  *
11  * Copyright   :  Written by and Copyright (C) 2001 the SourceForge
12  *                Privoxy team. http://www.privoxy.org/
13  *
14  *                Based on the Internet Junkbuster originally written
15  *                by and Copyright (C) 1997 Anonymous Coders and
16  *                Junkbusters Corporation.  http://www.junkbusters.com
17  *
18  *                This program is free software; you can redistribute it
19  *                and/or modify it under the terms of the GNU General
20  *                Public License as published by the Free Software
21  *                Foundation; either version 2 of the License, or (at
22  *                your option) any later version.
23  *
24  *                This program is distributed in the hope that it will
25  *                be useful, but WITHOUT ANY WARRANTY; without even the
26  *                implied warranty of MERCHANTABILITY or FITNESS FOR A
27  *                PARTICULAR PURPOSE.  See the GNU General Public
28  *                License for more details.
29  *
30  *                The GNU General Public License should be included with
31  *                this file.  If not, you can view it at
32  *                http://www.gnu.org/copyleft/gpl.html
33  *                or write to the Free Software Foundation, Inc., 59
34  *                Temple Place - Suite 330, Boston, MA  02111-1307, USA.
35  *
36  * Revisions   :
37  *    $Log: loadcfg.c,v $
38  *    Revision 2.5  2003/09/22 00:33:01  david__schmidt
39  *    Enable sending a custom 'blocked' image.  Shows up as
40  *    "image-blocker-custom-file" parameter in config, and
41  *    "+set-image-blocker{custom}" in action files.
42  *
43  *    Revision 2.4  2002/12/28 03:58:19  david__schmidt
44  *    Initial drop of dashboard instrumentation - enabled with
45  *    --enable-activity-console
46  *
47  *    Revision 2.3  2002/09/19 03:48:29  iwanttokeepanon
48  *    Just moved "int i" up 3 lines in function unload_configfile, out of the "ifdef FEATURE_ACL" clause.  I disable ACL and it was not compiling because "int i" was ifdef(d) out.  I noticed this in the past, but am just now in a spot where I can change/commit stuff ... long live broadband!
49  *
50  *    Revision 2.2  2002/09/04 15:48:33  oes
51  *    Synced with the stable branch:
52  *        Revision 1.48.2.1  2002/08/21 17:58:05  oes
53  *        Temp kludge to let user and default action file be edited through win32 GUI (FR 592080)
54  *
55  *    Revision 2.1  2002/06/04 17:22:36  jongfoster
56  *    Adding comments
57  *
58  *    Revision 2.0  2002/06/04 14:34:21  jongfoster
59  *    Moving source files to src/
60  *
61  *    Revision 1.48  2002/05/14 21:30:38  oes
62  *    savearg now uses own linking code instead of (now special-cased) add_help_link
63  *
64  *    Revision 1.47  2002/05/12 21:36:29  jongfoster
65  *    Correcting function comments
66  *
67  *    Revision 1.46  2002/04/26 12:55:14  oes
68  *     - New option "user-manual", defaults to our site
69  *       via project.h #define
70  *     - savearg now embeds option names in help links
71  *
72  *    Revision 1.45  2002/04/24 02:11:54  oes
73  *    Jon's multiple AF patch: Allow up to MAX_ACTION_FILES actionsfile options
74  *
75  *    Revision 1.44  2002/04/08 20:37:13  swa
76  *    fixed JB spelling
77  *
78  *    Revision 1.43  2002/04/08 20:36:50  swa
79  *    fixed JB spelling
80  *
81  *    Revision 1.42  2002/04/05 15:50:15  oes
82  *    fix for invalid HTML proxy_args
83  *
84  *    Revision 1.41  2002/03/31 17:19:00  jongfoster
85  *    Win32 only: Enabling STRICT to fix a VC++ compile warning.
86  *
87  *    Revision 1.40  2002/03/26 22:29:55  swa
88  *    we have a new homepage!
89  *
90  *    Revision 1.39  2002/03/24 13:25:43  swa
91  *    name change related issues
92  *
93  *    Revision 1.38  2002/03/24 13:05:48  jongfoster
94  *    Renaming re_filterfile to filterfile
95  *
96  *    Revision 1.37  2002/03/16 23:54:06  jongfoster
97  *    Adding graceful termination feature, to help look for memory leaks.
98  *    If you enable this (which, by design, has to be done by hand
99  *    editing config.h) and then go to http://i.j.b/die, then the program
100  *    will exit cleanly after the *next* request.  It should free all the
101  *    memory that was used.
102  *
103  *    Revision 1.36  2002/03/13 00:27:05  jongfoster
104  *    Killing warnings
105  *
106  *    Revision 1.35  2002/03/07 03:52:44  oes
107  *    Set logging to tty for --no-daemon mode
108  *
109  *    Revision 1.34  2002/03/06 23:14:35  jongfoster
110  *    Trivial cosmetic changes to make function comments easier to find.
111  *
112  *    Revision 1.33  2002/03/05 04:52:42  oes
113  *    Deleted non-errlog debugging code
114  *
115  *    Revision 1.32  2002/03/04 18:24:53  oes
116  *    Re-enabled output of unknown config directive hash
117  *
118  *    Revision 1.31  2002/03/03 15:07:20  oes
119  *    Re-enabled automatic config reloading
120  *
121  *    Revision 1.30  2002/01/22 23:31:43  jongfoster
122  *    Replacing strsav() with string_append()
123  *
124  *    Revision 1.29  2002/01/17 21:02:30  jongfoster
125  *    Moving all our URL and URL pattern parsing code to urlmatch.c.
126  *
127  *    Renaming free_url to free_url_spec, since it frees a struct url_spec.
128  *
129  *    Revision 1.28  2001/12/30 14:07:32  steudten
130  *    - Add signal handling (unix)
131  *    - Add SIGHUP handler (unix)
132  *    - Add creation of pidfile (unix)
133  *    - Add action 'top' in rc file (RH)
134  *    - Add entry 'SIGNALS' to manpage
135  *    - Add exit message to logfile (unix)
136  *
137  *    Revision 1.27  2001/11/07 00:02:13  steudten
138  *    Add line number in error output for lineparsing for
139  *    actionsfile and configfile.
140  *    Special handling for CLF added.
141  *
142  *    Revision 1.26  2001/11/05 21:41:43  steudten
143  *    Add changes to be a real daemon just for unix os.
144  *    (change cwd to /, detach from controlling tty, set
145  *    process group and session leader to the own process.
146  *    Add DBG() Macro.
147  *    Add some fatal-error log message for failed malloc().
148  *    Add '-d' if compiled with 'configure --with-debug' to
149  *    enable debug output.
150  *
151  *    Revision 1.25  2001/10/25 03:40:48  david__schmidt
152  *    Change in porting tactics: OS/2's EMX porting layer doesn't allow multiple
153  *    threads to call select() simultaneously.  So, it's time to do a real, live,
154  *    native OS/2 port.  See defines for __EMX__ (the porting layer) vs. __OS2__
155  *    (native). Both versions will work, but using __OS2__ offers multi-threading.
156  *
157  *    Revision 1.24  2001/10/23 21:40:30  jongfoster
158  *    Added support for enable-edit-actions and enable-remote-toggle config
159  *    file options.
160  *
161  *    Revision 1.23  2001/10/07 15:36:00  oes
162  *    Introduced new config option "buffer-limit"
163  *
164  *    Revision 1.22  2001/09/22 16:36:59  jongfoster
165  *    Removing unused parameter fs from read_config_line()
166  *
167  *    Revision 1.21  2001/09/16 17:10:43  jongfoster
168  *    Moving function savearg() here, since it was the only thing left in
169  *    showargs.c.
170  *
171  *    Revision 1.20  2001/07/30 22:08:36  jongfoster
172  *    Tidying up #defines:
173  *    - All feature #defines are now of the form FEATURE_xxx
174  *    - Permanently turned off WIN_GUI_EDIT
175  *    - Permanently turned on WEBDAV and SPLIT_PROXY_ARGS
176  *
177  *    Revision 1.19  2001/07/15 17:45:16  jongfoster
178  *    Removing some unused #includes
179  *
180  *    Revision 1.18  2001/07/13 14:01:14  oes
181  *     - Removed all #ifdef PCRS
182  *     - Removed vim-settings
183  *
184  *    Revision 1.17  2001/06/29 13:31:03  oes
185  *    - Improved comments
186  *    - Fixed (actionsfile) and sorted hashes
187  *    - Introduced admin_address and proxy-info-url
188  *      as config parameters
189  *    - Renamed config->proxy_args_invocation (which didn't have
190  *      the invocation but the options!) to config->proxy_args
191  *    - Various adaptions
192  *    - Removed logentry from cancelled commit
193  *
194  *    Revision 1.16  2001/06/09 10:55:28  jongfoster
195  *    Changing BUFSIZ ==> BUFFER_SIZE
196  *
197  *    Revision 1.15  2001/06/07 23:13:40  jongfoster
198  *    Merging ACL and forward files into config file.
199  *    Cosmetic: Sorting config file options alphabetically.
200  *    Cosmetic: Adding brief syntax comments to config file options.
201  *
202  *    Revision 1.14  2001/06/07 14:46:25  joergs
203  *    Missing make_path() added for re_filterfile.
204  *
205  *    Revision 1.13  2001/06/05 22:33:54  jongfoster
206  *
207  *    Fixed minor memory leak.
208  *    Also now uses make_path to prepend the pathnames.
209  *
210  *    Revision 1.12  2001/06/05 20:04:09  jongfoster
211  *    Now uses _snprintf() in place of snprintf() under Win32.
212  *
213  *    Revision 1.11  2001/06/04 18:31:58  swa
214  *    files are now prefixed with either `confdir' or `logdir'.
215  *    `make redhat-dist' replaces both entries confdir and logdir
216  *    with redhat values
217  *
218  *    Revision 1.10  2001/06/03 19:11:54  oes
219  *    introduced confdir option
220  *
221  *    Revision 1.9  2001/06/01 20:06:24  jongfoster
222  *    Removed support for "tinygif" option - moved to actions file.
223  *
224  *    Revision 1.8  2001/05/31 21:27:13  jongfoster
225  *    Removed many options from the config file and into the
226  *    "actions" file: add_forwarded, suppress_vanilla_wafer,
227  *    wafer, add_header, user_agent, referer, from
228  *    Also globally replaced "permission" with "action".
229  *
230  *    Revision 1.7  2001/05/29 09:50:24  jongfoster
231  *    Unified blocklist/imagelist/permissionslist.
232  *    File format is still under discussion, but the internal changes
233  *    are (mostly) done.
234  *
235  *    Also modified interceptor behaviour:
236  *    - We now intercept all URLs beginning with one of the following
237  *      prefixes (and *only* these prefixes):
238  *        * http://i.j.b/
239  *        * http://ijbswa.sf.net/config/
240  *        * http://ijbswa.sourceforge.net/config/
241  *    - New interceptors "home page" - go to http://i.j.b/ to see it.
242  *    - Internal changes so that intercepted and fast redirect pages
243  *      are not replaced with an image.
244  *    - Interceptors now have the option to send a binary page direct
245  *      to the client. (i.e. ijb-send-banner uses this)
246  *    - Implemented show-url-info interceptor.  (Which is why I needed
247  *      the above interceptors changes - a typical URL is
248  *      "http://i.j.b/show-url-info?url=www.somesite.com/banner.gif".
249  *      The previous mechanism would not have intercepted that, and
250  *      if it had been intercepted then it then it would have replaced
251  *      it with an image.)
252  *
253  *    Revision 1.6  2001/05/26 00:28:36  jongfoster
254  *    Automatic reloading of config file.
255  *    Removed obsolete SIGHUP support (Unix) and Reload menu option (Win32).
256  *    Most of the global variables have been moved to a new
257  *    struct configuration_spec, accessed through csp->config->globalname
258  *    Most of the globals remaining are used by the Win32 GUI.
259  *
260  *    Revision 1.5  2001/05/25 22:34:30  jongfoster
261  *    Hard tabs->Spaces
262  *
263  *    Revision 1.4  2001/05/22 18:46:04  oes
264  *
265  *    - Enabled filtering banners by size rather than URL
266  *      by adding patterns that replace all standard banner
267  *      sizes with the "Junkbuster" gif to the re_filterfile
268  *
269  *    - Enabled filtering WebBugs by providing a pattern
270  *      which kills all 1x1 images
271  *
272  *    - Added support for PCRE_UNGREEDY behaviour to pcrs,
273  *      which is selected by the (nonstandard and therefore
274  *      capital) letter 'U' in the option string.
275  *      It causes the quantifiers to be ungreedy by default.
276  *      Appending a ? turns back to greedy (!).
277  *
278  *    - Added a new interceptor ijb-send-banner, which
279  *      sends back the "Junkbuster" gif. Without imagelist or
280  *      MSIE detection support, or if tinygif = 1, or the
281  *      URL isn't recognized as an imageurl, a lame HTML
282  *      explanation is sent instead.
283  *
284  *    - Added new feature, which permits blocking remote
285  *      script redirects and firing back a local redirect
286  *      to the browser.
287  *      The feature is conditionally compiled, i.e. it
288  *      can be disabled with --disable-fast-redirects,
289  *      plus it must be activated by a "fast-redirects"
290  *      line in the config file, has its own log level
291  *      and of course wants to be displayed by show-proxy-args
292  *      Note: Boy, all the #ifdefs in 1001 locations and
293  *      all the fumbling with configure.in and acconfig.h
294  *      were *way* more work than the feature itself :-(
295  *
296  *    - Because a generic redirect template was needed for
297  *      this, tinygif = 3 now uses the same.
298  *
299  *    - Moved GIFs, and other static HTTP response templates
300  *      to project.h
301  *
302  *    - Some minor fixes
303  *
304  *    - Removed some >400 CRs again (Jon, you really worked
305  *      a lot! ;-)
306  *
307  *    Revision 1.3  2001/05/20 01:21:20  jongfoster
308  *    Version 2.9.4 checkin.
309  *    - Merged popupfile and cookiefile, and added control over PCRS
310  *      filtering, in new "permissionsfile".
311  *    - Implemented LOG_LEVEL_FATAL, so that if there is a configuration
312  *      file error you now get a message box (in the Win32 GUI) rather
313  *      than the program exiting with no explanation.
314  *    - Made killpopup use the PCRS MIME-type checking and HTTP-header
315  *      skipping.
316  *    - Removed tabs from "config"
317  *    - Moved duplicated url parsing code in "loaders.c" to a new funcition.
318  *    - Bumped up version number.
319  *
320  *    Revision 1.2  2001/05/17 23:01:01  oes
321  *     - Cleaned CRLF's from the sources and related files
322  *
323  *    Revision 1.1.1.1  2001/05/15 13:58:58  oes
324  *    Initial import of version 2.9.3 source tree
325  *
326  *
327  *********************************************************************/
328 \f
329
330 #include "config.h"
331
332 #include <stdio.h>
333 #include <sys/types.h>
334 #include <sys/stat.h>
335 #include <stdlib.h>
336 #include <string.h>
337 #include <signal.h>
338 #include <fcntl.h>
339 #include <errno.h>
340 #include <ctype.h>
341 #include <assert.h>
342
343 #ifdef _WIN32
344
345 # ifndef STRICT
346 #  define STRICT
347 # endif
348 # include <windows.h>
349
350 # include "win32.h"
351 # ifndef _WIN_CONSOLE
352 #  include "w32log.h"
353 # endif /* ndef _WIN_CONSOLE */
354
355 /* VC++ has "_snprintf", not "snprintf" */
356 #define snprintf _snprintf
357
358 #else /* every platform but _WIN32 */
359
360 #ifndef __OS2__
361 # include <unistd.h>
362 # include <sys/wait.h>
363 #endif /* ndef __OS2__ */
364 # include <sys/time.h>
365 # include <signal.h>
366
367 #endif /* ndef _WIN32 */
368
369 #include "loadcfg.h"
370 #include "list.h"
371 #include "jcc.h"
372 #include "filters.h"
373 #include "loaders.h"
374 #include "miscutil.h"
375 #include "errlog.h"
376 #include "ssplit.h"
377 #include "encode.h"
378 #include "urlmatch.h"
379 #include "cgi.h"
380
381 const char loadcfg_h_rcs[] = LOADCFG_H_VERSION;
382
383 /*
384  * Fix a problem with Solaris.  There should be no effect on other
385  * platforms.
386  * Solaris's isspace() is a macro which uses it's argument directly
387  * as an array index.  Therefore we need to make sure that high-bit
388  * characters generate +ve values, and ideally we also want to make
389  * the argument match the declared parameter type of "int".
390  */
391 #define ijb_isupper(__X) isupper((int)(unsigned char)(__X))
392 #define ijb_tolower(__X) tolower((int)(unsigned char)(__X))
393
394 #ifdef FEATURE_TOGGLE
395 /**
396  * Indicates if Privoxy is currently enabled.
397  */
398 int g_bToggleIJB        = 1;   /* Privoxy is enabled by default. */
399 #endif /* def FEATURE_TOGGLE */
400
401 /**
402  * The filename of the config file
403  */
404 const char *configfile  = NULL;
405
406 /**
407  * Global argument count, so that CGI functions can access the
408  * command line.
409  */
410 int Argc = 0;
411
412 /**
413  * Global argument list, so that CGI functions can access the
414  * command line.
415  */
416 const char **Argv = NULL;
417
418 /**
419  * The configuration file which is currently loaded.
420  */
421 static struct file_list *current_configfile = NULL;
422
423
424 /*
425  * This takes the "cryptic" hash of each keyword and aliases them to
426  * something a little more readable.  This also makes changing the
427  * hash values easier if they should change or the hash algorthm changes.
428  * Use the included "hash" program to find out what the hash will be
429  * for any string supplied on the command line.  (Or just put it in the
430  * config file and read the number from the error message in the log).
431  *
432  * Please keep this list sorted alphabetically (but with the Windows
433  * console and GUI specific options last).
434  */
435
436 #define hash_actions_file                  1196306641ul /**< "actionsfile" */
437 #define hash_activity_console_address        18904208ul /**< "activity-console-address" */
438 #define hash_activity_console_update_freq  3442780376ul /**< "activity-console-update-freq" */
439 #define hash_admin_address                 4112573064ul /**< "admin-address" */
440 #define hash_buffer_limit                  1881726070ul /**< "buffer-limit */
441 #define hash_confdir                          1978389ul /**< "confdir" */
442 #define hash_debug                              78263ul /**< "debug" */
443 #define hash_deny_access                   1227333715ul /**< "deny-access" */
444 #define hash_enable_edit_actions           2517097536ul /**< "enable-edit-actions" */
445 #define hash_enable_remote_toggle          2979744683ul /**< "enable-remote-toggle" */
446 #define hash_filterfile                     250887266ul /**< "filterfile" */
447 #define hash_forward                          2029845ul /**< "forward" */
448 #define hash_forward_socks4                3963965521ul /**< "forward-socks4" */
449 #define hash_forward_socks4a               2639958518ul /**< "forward-socks4a" */
450 #define hash_image_blocker_custom_file     2863352327ul /**< "image-blocker-custom-file" */
451 #define hash_jarfile                          2046641ul /**< "jarfile" */
452 #define hash_listen_address                1255650842ul /**< "listen-address" */
453 #define hash_logdir                            422889ul /**< "logdir" */
454 #define hash_logfile                          2114766ul /**< "logfile" */
455 #define hash_permit_access                 3587953268ul /**< "permit-access" */
456 #define hash_proxy_info_url                3903079059ul /**< "proxy-info-url" */
457 #define hash_single_threaded               4250084780ul /**< "single-threaded" */
458 #define hash_suppress_blocklists           1948693308ul /**< "suppress-blocklists" */
459 #define hash_toggle                            447966ul /**< "toggle" */
460 #define hash_trust_info_url                 430331967ul /**< "trust-info-url" */
461 #define hash_trustfile                       56494766ul /**< "trustfile" */
462 #define hash_usermanual                    1416668518ul /**< "user-manual" */
463
464 #define hash_activity_animation            1817904738ul /**< "activity-animation" */
465 #define hash_close_button_minimizes        3651284693ul /**< "close-button-minimizes" */
466 #define hash_hide_console                  2048809870ul /**< "hide-console" */
467 #define hash_log_buffer_size               2918070425ul /**< "log-buffer-size" */
468 #define hash_log_font_name                 2866730124ul /**< "log-font-name" */
469 #define hash_log_font_size                 2866731014ul /**< "log-font-size" */
470 #define hash_log_highlight_messages        4032101240ul /**< "log-highlight-messages" */
471 #define hash_log_max_lines                 2868344173ul /**< "log-max-lines" */
472 #define hash_log_messages                  2291744899ul /**< "log-messages" */
473 #define hash_show_on_task_bar               215410365ul /**< "show-on-task-bar" */
474
475 static void savearg(char *command, char *argument, struct configuration_spec * config);
476
477 /*********************************************************************
478  *
479  * Function    :  unload_configfile
480  *
481  * Description :  Free the config structure and all components.
482  *
483  * Parameters  :
484  *          1  :  data: struct configuration_spec to unload
485  *
486  * Returns     :  N/A
487  *
488  *********************************************************************/
489 void unload_configfile (void * data)
490 {
491    struct configuration_spec * config = (struct configuration_spec *)data;
492    struct forward_spec *cur_fwd = config->forward;
493    int i;
494 #ifdef FEATURE_ACL
495    struct access_control_list *cur_acl = config->acl;
496
497    while (cur_acl != NULL)
498    {
499       struct access_control_list * next_acl = cur_acl->next;
500       free(cur_acl);
501       cur_acl = next_acl;
502    }
503    config->acl = NULL;
504 #endif /* def FEATURE_ACL */
505
506    while (cur_fwd != NULL)
507    {
508       struct forward_spec * next_fwd = cur_fwd->next;
509       free_url_spec(cur_fwd->url);
510
511       freez(cur_fwd->gateway_host);
512       freez(cur_fwd->forward_host);
513       free(cur_fwd);
514       cur_fwd = next_fwd;
515    }
516    config->forward = NULL;
517
518 #ifdef FEATURE_COOKIE_JAR
519    if ( NULL != config->jar )
520    {
521       fclose( config->jar );
522       config->jar = NULL;
523    }
524 #endif /* def FEATURE_COOKIE_JAR */
525
526    freez(config->confdir);
527    freez(config->logdir);
528
529    freez(config->haddr);
530    freez(config->logfile);
531
532    for (i = 0; i < MAX_ACTION_FILES; i++)
533    {
534       freez(config->actions_file_short[i]);
535       freez(config->actions_file[i]);
536    }
537
538    freez(config->admin_address);
539    freez(config->proxy_info_url);
540    freez(config->proxy_args);
541    freez(config->usermanual);
542
543 #ifdef FEATURE_COOKIE_JAR
544    freez(config->jarfile);
545 #endif /* def FEATURE_COOKIE_JAR */
546
547    freez(config->re_filterfile);
548
549    freez(config->image_blocker_data);
550    freez(config->image_blocker_format);
551 }
552
553
554 #ifdef FEATURE_GRACEFUL_TERMINATION
555 /*********************************************************************
556  *
557  * Function    :  unload_current_config_file
558  *
559  * Description :  Unloads current config file - reset to state at
560  *                beginning of program.
561  *
562  * Parameters  :  None
563  *
564  * Returns     :  N/A
565  *
566  *********************************************************************/
567 void unload_current_config_file(void)
568 {
569    if (current_configfile)
570    {
571       current_configfile->unloader = unload_configfile;
572       current_configfile = NULL;
573    }
574 }
575 #endif
576
577
578 /*********************************************************************
579  *
580  * Function    :  load_config
581  *
582  * Description :  Load the config file and all parameters.
583  *
584  * Parameters  :  None
585  *
586  * Returns     :  The configuration_spec, or NULL on error.
587  *
588  *********************************************************************/
589 struct configuration_spec * load_config(void)
590 {
591    char buf[BUFFER_SIZE];
592    char *p, *q, *image_buf, *image_path;
593    FILE *configfp = NULL,
594         *imagefp = NULL;
595    struct configuration_spec * config = NULL;
596    struct client_state * fake_csp;
597    struct file_list *fs;
598    struct stat statbuf[1];
599    unsigned long linenum = 0;
600    int i, file_size, bytes_read;
601
602    if ( !check_file_changed(current_configfile, configfile, &fs))
603    {
604       /* No need to load */
605       return ((struct configuration_spec *)current_configfile->f);
606    }
607    if (!fs)
608    {
609       log_error(LOG_LEVEL_FATAL, "can't check configuration file '%s':  %E",
610                 configfile);
611    }
612
613    log_error(LOG_LEVEL_INFO, "loading configuration file '%s':", configfile);
614
615 #ifdef FEATURE_TOGGLE
616    g_bToggleIJB      = 1;
617 #endif /* def FEATURE_TOGGLE */
618
619    fs->f = config = (struct configuration_spec *)zalloc(sizeof(*config));
620
621    if (config==NULL)
622    {
623       freez(fs->filename);
624       freez(fs);
625       log_error(LOG_LEVEL_FATAL, "can't allocate memory for configuration");
626       /* Never get here - LOG_LEVEL_FATAL causes program exit */
627    }
628
629    /*
630     * This is backwards from how it's usually done.
631     * Following the usual pattern, "fs" would be stored in a member
632     * variable in "csp", and then we'd access "config" from "fs->f",
633     * using a cast.  However, "config" is used so often that a
634     * cast each time would be very ugly, and the extra indirection
635     * would waste CPU cycles.  Therefore we store "config" in
636     * "csp->config", and "fs" in "csp->config->config_file_list".
637     */
638    config->config_file_list = fs;
639
640    /*
641     * Set to defaults
642     */
643    config->multi_threaded    = 1;
644    config->hport             = HADDR_PORT;
645    config->buffer_limit      = 4096 * 1024;
646    config->usermanual        = strdup(USER_MANUAL_URL);
647    config->proxy_args        = strdup("");
648 #ifdef FEATURE_ACTIVITY_CONSOLE
649    config->activity_port     = ACTIVTY_ADDR_PORT;
650    config->activity_freq     = 5;
651 #endif /* def FEATURE_ACTIVITY_CONSOLE */
652
653    if ((configfp = fopen(configfile, "r")) == NULL)
654    {
655       log_error(LOG_LEVEL_FATAL, "can't open configuration file '%s':  %E",
656               configfile);
657       /* Never get here - LOG_LEVEL_FATAL causes program exit */
658    }
659
660    while (read_config_line(buf, sizeof(buf), configfp, &linenum) != NULL)
661    {
662       char cmd[BUFFER_SIZE];
663       char arg[BUFFER_SIZE];
664       char tmp[BUFFER_SIZE];
665 #ifdef FEATURE_ACL
666       struct access_control_list *cur_acl;
667 #endif /* def FEATURE_ACL */
668       struct forward_spec *cur_fwd;
669       int vec_count;
670       char *vec[3];
671
672       strcpy(tmp, buf);
673
674       /* Copy command (i.e. up to space or tab) into cmd */
675       p = buf;
676       q = cmd;
677       while (*p && (*p != ' ') && (*p != '\t'))
678       {
679          *q++ = *p++;
680       }
681       *q = '\0';
682
683       /* Skip over the whitespace in buf */
684       while (*p && ((*p == ' ') || (*p == '\t')))
685       {
686          p++;
687       }
688
689       /* Copy the argument into arg */
690       strcpy(arg, p);
691
692       /* Should never happen, but check this anyway */
693       if (*cmd == '\0')
694       {
695          continue;
696       }
697
698       /* Make sure the command field is lower case */
699       for (p=cmd; *p; p++)
700       {
701          if (ijb_isupper(*p))
702          {
703             *p = ijb_tolower(*p);
704          }
705       }
706
707       /* Save the argument for show-proxy-args */
708       savearg(cmd, arg, config);
709
710
711       switch( hash_string( cmd ) )
712       {
713 /* *************************************************************************
714  * actionsfile actions-file-name
715  * In confdir by default
716  * *************************************************************************/
717          case hash_actions_file :
718             i = 0;
719             while ((i < MAX_ACTION_FILES) && (NULL != config->actions_file[i]))
720             {
721                i++;
722             }
723
724             if (i >= MAX_ACTION_FILES)
725             {
726                log_error(LOG_LEVEL_FATAL, "Too many 'actionsfile' directives in config file - limit is %d.\n"
727                   "(You can increase this limit by changing MAX_ACTION_FILES in project.h and recompiling).",
728                   MAX_ACTION_FILES);
729             }
730             config->actions_file_short[i] = strdup(arg);
731             p = malloc(strlen(arg) + sizeof(".action"));
732             if (p == NULL)
733             {
734                log_error(LOG_LEVEL_FATAL, "Out of memory");
735             }
736             strcpy(p, arg);
737             strcat(p, ".action");
738             config->actions_file[i] = make_path(config->confdir, p);
739             free(p);
740             continue;
741
742 /* *************************************************************************
743  * activity-console-address [ip][:port]
744  * *************************************************************************/
745 #ifdef FEATURE_ACTIVITY_CONSOLE
746          case hash_activity_console_address :
747             freez(config->activity_address);
748             config->activity_address = strdup(arg);
749             continue;
750 #endif /* def FEATURE_ACTIVITY_CONSOLE */
751
752 /* *************************************************************************
753  * activity-console-update-freq
754  * *************************************************************************/
755 #ifdef FEATURE_ACTIVITY_CONSOLE
756          case hash_activity_console_update_freq :
757             config->activity_freq = atoi(arg);
758             if (config->activity_freq < 1)
759               config->activity_freq = 5;
760             continue;
761 #endif /* def FEATURE_ACTIVITY_CONSOLE */
762
763 /* *************************************************************************
764  * admin-address email-address
765  * *************************************************************************/
766          case hash_admin_address :
767             freez(config->admin_address);
768             config->admin_address = strdup(arg);
769             continue;
770
771 /* *************************************************************************
772  * buffer-limit n
773  * *************************************************************************/
774          case hash_buffer_limit :
775             config->buffer_limit = (size_t) 1024 * atoi(arg);
776             continue;
777
778 /* *************************************************************************
779  * confdir directory-name
780  * *************************************************************************/
781          case hash_confdir :
782             freez(config->confdir);
783             config->confdir = make_path( NULL, arg);
784             continue;
785
786 /* *************************************************************************
787  * debug n
788  * Specifies debug level, multiple values are ORed together.
789  * *************************************************************************/
790          case hash_debug :
791             config->debug |= atoi(arg);
792             continue;
793
794 /* *************************************************************************
795  * deny-access source-ip[/significant-bits] [dest-ip[/significant-bits]]
796  * *************************************************************************/
797 #ifdef FEATURE_ACL
798          case hash_deny_access:
799             vec_count = ssplit(arg, " \t", vec, SZ(vec), 1, 1);
800
801             if ((vec_count != 1) && (vec_count != 2))
802             {
803                log_error(LOG_LEVEL_ERROR, "Wrong number of parameters for "
804                      "deny-access directive in configuration file.");
805                string_append(&config->proxy_args,
806                   "<br>\nWARNING: Wrong number of parameters for "
807                   "deny-access directive in configuration file.<br><br>\n");
808                continue;
809             }
810
811             /* allocate a new node */
812             cur_acl = (struct access_control_list *) zalloc(sizeof(*cur_acl));
813
814             if (cur_acl == NULL)
815             {
816                log_error(LOG_LEVEL_FATAL, "can't allocate memory for configuration");
817                /* Never get here - LOG_LEVEL_FATAL causes program exit */
818                continue;
819             }
820             cur_acl->action = ACL_DENY;
821
822             if (acl_addr(vec[0], cur_acl->src) < 0)
823             {
824                log_error(LOG_LEVEL_ERROR, "Invalid source IP for deny-access "
825                      "directive in configuration file: \"%s\"", vec[0]);
826                string_append(&config->proxy_args,
827                   "<br>\nWARNING: Invalid source IP for deny-access directive"
828                   " in configuration file: \"");
829                string_append(&config->proxy_args,
830                   vec[0]);
831                string_append(&config->proxy_args,
832                   "\"<br><br>\n");
833                freez(cur_acl);
834                continue;
835             }
836             if (vec_count == 2)
837             {
838                if (acl_addr(vec[1], cur_acl->dst) < 0)
839                {
840                   log_error(LOG_LEVEL_ERROR, "Invalid destination IP for deny-access "
841                         "directive in configuration file: \"%s\"", vec[0]);
842                   string_append(&config->proxy_args,
843                      "<br>\nWARNING: Invalid destination IP for deny-access directive"
844                      " in configuration file: \"");
845                   string_append(&config->proxy_args,
846                      vec[0]);
847                   string_append(&config->proxy_args,
848                      "\"<br><br>\n");
849                   freez(cur_acl);
850                   continue;
851                }
852             }
853
854             /*
855              * Add it to the list.  Note we reverse the list to get the
856              * behaviour the user expects.  With both the ACL and
857              * actions file, the last match wins.  However, the internal
858              * implementations are different:  The actions file is stored
859              * in the same order as the file, and scanned completely.
860              * With the ACL, we reverse the order as we load it, then
861              * when we scan it we stop as soon as we get a match.
862              */
863             cur_acl->next  = config->acl;
864             config->acl = cur_acl;
865
866             continue;
867 #endif /* def FEATURE_ACL */
868
869 /* *************************************************************************
870  * enable-edit-actions 0|1
871  * *************************************************************************/
872 #ifdef FEATURE_CGI_EDIT_ACTIONS
873          case hash_enable_edit_actions:
874             if ((*arg != '\0') && (0 != atoi(arg)))
875             {
876                config->feature_flags |= RUNTIME_FEATURE_CGI_EDIT_ACTIONS;
877             }
878             else
879             {
880                config->feature_flags &= ~RUNTIME_FEATURE_CGI_EDIT_ACTIONS;
881             }
882             continue;
883 #endif /* def FEATURE_CGI_EDIT_ACTIONS */
884
885 /* *************************************************************************
886  * enable-remote-toggle 0|1
887  * *************************************************************************/
888 #ifdef FEATURE_CGI_EDIT_ACTIONS
889          case hash_enable_remote_toggle:
890             if ((*arg != '\0') && (0 != atoi(arg)))
891             {
892                config->feature_flags |= RUNTIME_FEATURE_CGI_TOGGLE;
893             }
894             else
895             {
896                config->feature_flags &= ~RUNTIME_FEATURE_CGI_TOGGLE;
897             }
898             continue;
899 #endif /* def FEATURE_CGI_EDIT_ACTIONS */
900
901 /* *************************************************************************
902  * forward url-pattern (.|http-proxy-host[:port])
903  * *************************************************************************/
904          case hash_forward:
905             vec_count = ssplit(arg, " \t", vec, SZ(vec), 1, 1);
906
907             if (vec_count != 2)
908             {
909                log_error(LOG_LEVEL_ERROR, "Wrong number of parameters for forward "
910                      "directive in configuration file.");
911                string_append(&config->proxy_args,
912                   "<br>\nWARNING: Wrong number of parameters for "
913                   "forward directive in configuration file.");
914                continue;
915             }
916
917             /* allocate a new node */
918             cur_fwd = zalloc(sizeof(*cur_fwd));
919             if (cur_fwd == NULL)
920             {
921                log_error(LOG_LEVEL_FATAL, "can't allocate memory for configuration");
922                /* Never get here - LOG_LEVEL_FATAL causes program exit */
923                continue;
924             }
925
926             cur_fwd->type = SOCKS_NONE;
927
928             /* Save the URL pattern */
929             if (create_url_spec(cur_fwd->url, vec[0]))
930             {
931                log_error(LOG_LEVEL_ERROR, "Bad URL specifier for forward "
932                      "directive in configuration file.");
933                string_append(&config->proxy_args,
934                   "<br>\nWARNING: Bad URL specifier for "
935                   "forward directive in configuration file.");
936                continue;
937             }
938
939             /* Parse the parent HTTP proxy host:port */
940             p = vec[1];
941
942             if (strcmp(p, ".") != 0)
943             {
944                cur_fwd->forward_host = strdup(p);
945
946                if (NULL != (p = strchr(cur_fwd->forward_host, ':')))
947                {
948                   *p++ = '\0';
949                   cur_fwd->forward_port = atoi(p);
950                }
951
952                if (cur_fwd->forward_port <= 0)
953                {
954                   cur_fwd->forward_port = 8000;
955                }
956             }
957
958             /* Add to list. */
959             cur_fwd->next = config->forward;
960             config->forward = cur_fwd;
961
962             continue;
963
964 /* *************************************************************************
965  * forward-socks4 url-pattern socks-proxy[:port] (.|http-proxy[:port])
966  * *************************************************************************/
967          case hash_forward_socks4:
968             vec_count = ssplit(arg, " \t", vec, SZ(vec), 1, 1);
969
970             if (vec_count != 3)
971             {
972                log_error(LOG_LEVEL_ERROR, "Wrong number of parameters for "
973                      "forward-socks4 directive in configuration file.");
974                string_append(&config->proxy_args,
975                   "<br>\nWARNING: Wrong number of parameters for "
976                   "forward-socks4 directive in configuration file.");
977                continue;
978             }
979
980             /* allocate a new node */
981             cur_fwd = zalloc(sizeof(*cur_fwd));
982             if (cur_fwd == NULL)
983             {
984                log_error(LOG_LEVEL_FATAL, "can't allocate memory for configuration");
985                /* Never get here - LOG_LEVEL_FATAL causes program exit */
986                continue;
987             }
988
989             cur_fwd->type = SOCKS_4;
990
991             /* Save the URL pattern */
992             if (create_url_spec(cur_fwd->url, vec[0]))
993             {
994                log_error(LOG_LEVEL_ERROR, "Bad URL specifier for forward-socks4 "
995                      "directive in configuration file.");
996                string_append(&config->proxy_args,
997                   "<br>\nWARNING: Bad URL specifier for "
998                   "forward-socks4 directive in configuration file.");
999                continue;
1000             }
1001
1002             /* Parse the SOCKS proxy host[:port] */
1003             p = vec[1];
1004
1005             if (strcmp(p, ".") != 0)
1006             {
1007                cur_fwd->gateway_host = strdup(p);
1008
1009                if (NULL != (p = strchr(cur_fwd->gateway_host, ':')))
1010                {
1011                   *p++ = '\0';
1012                   cur_fwd->gateway_port = atoi(p);
1013                }
1014                if (cur_fwd->gateway_port <= 0)
1015                {
1016                   cur_fwd->gateway_port = 1080;
1017                }
1018             }
1019
1020             /* Parse the parent HTTP proxy host[:port] */
1021             p = vec[2];
1022
1023             if (strcmp(p, ".") != 0)
1024             {
1025                cur_fwd->forward_host = strdup(p);
1026
1027                if (NULL != (p = strchr(cur_fwd->forward_host, ':')))
1028                {
1029                   *p++ = '\0';
1030                   cur_fwd->forward_port = atoi(p);
1031                }
1032
1033                if (cur_fwd->forward_port <= 0)
1034                {
1035                   cur_fwd->forward_port = 8000;
1036                }
1037             }
1038
1039             /* Add to list. */
1040             cur_fwd->next = config->forward;
1041             config->forward = cur_fwd;
1042
1043             continue;
1044
1045 /* *************************************************************************
1046  * forward-socks4a url-pattern socks-proxy[:port] (.|http-proxy[:port])
1047  * *************************************************************************/
1048          case hash_forward_socks4a:
1049             vec_count = ssplit(arg, " \t", vec, SZ(vec), 1, 1);
1050
1051             if (vec_count != 3)
1052             {
1053                log_error(LOG_LEVEL_ERROR, "Wrong number of parameters for "
1054                      "forward-socks4a directive in configuration file.");
1055                string_append(&config->proxy_args,
1056                   "<br>\nWARNING: Wrong number of parameters for "
1057                   "forward-socks4a directive in configuration file.");
1058                continue;
1059             }
1060
1061             /* allocate a new node */
1062             cur_fwd = zalloc(sizeof(*cur_fwd));
1063             if (cur_fwd == NULL)
1064             {
1065                log_error(LOG_LEVEL_FATAL, "can't allocate memory for configuration");
1066                /* Never get here - LOG_LEVEL_FATAL causes program exit */
1067                continue;
1068             }
1069
1070             cur_fwd->type = SOCKS_4A;
1071
1072             /* Save the URL pattern */
1073             if (create_url_spec(cur_fwd->url, vec[0]))
1074             {
1075                log_error(LOG_LEVEL_ERROR, "Bad URL specifier for forward-socks4a "
1076                      "directive in configuration file.");
1077                string_append(&config->proxy_args,
1078                   "<br>\nWARNING: Bad URL specifier for "
1079                   "forward-socks4a directive in configuration file.");
1080                continue;
1081             }
1082
1083             /* Parse the SOCKS proxy host[:port] */
1084             p = vec[1];
1085
1086             cur_fwd->gateway_host = strdup(p);
1087
1088             if (NULL != (p = strchr(cur_fwd->gateway_host, ':')))
1089             {
1090                *p++ = '\0';
1091                cur_fwd->gateway_port = atoi(p);
1092             }
1093             if (cur_fwd->gateway_port <= 0)
1094             {
1095                cur_fwd->gateway_port = 1080;
1096             }
1097
1098             /* Parse the parent HTTP proxy host[:port] */
1099             p = vec[2];
1100
1101             if (strcmp(p, ".") != 0)
1102             {
1103                cur_fwd->forward_host = strdup(p);
1104
1105                if (NULL != (p = strchr(cur_fwd->forward_host, ':')))
1106                {
1107                   *p++ = '\0';
1108                   cur_fwd->forward_port = atoi(p);
1109                }
1110
1111                if (cur_fwd->forward_port <= 0)
1112                {
1113                   cur_fwd->forward_port = 8000;
1114                }
1115             }
1116
1117             /* Add to list. */
1118             cur_fwd->next = config->forward;
1119             config->forward = cur_fwd;
1120
1121             continue;
1122
1123 /* *************************************************************************
1124  * jarfile jar-file-name
1125  * In logdir by default
1126  * *************************************************************************/
1127 #ifdef FEATURE_COOKIE_JAR
1128          case hash_jarfile :
1129             freez(config->jarfile);
1130             config->jarfile = make_path(config->logdir, arg);
1131             continue;
1132 #endif /* def FEATURE_COOKIE_JAR */
1133
1134 /* *************************************************************************
1135  * listen-address [ip][:port]
1136  * *************************************************************************/
1137          case hash_listen_address :
1138             freez(config->haddr);
1139             config->haddr = strdup(arg);
1140             continue;
1141
1142 /* *************************************************************************
1143  * logdir directory-name
1144  * *************************************************************************/
1145          case hash_logdir :
1146             freez(config->logdir);
1147             config->logdir = make_path(NULL, arg);
1148             continue;
1149
1150 /* *************************************************************************
1151  * logfile log-file-name
1152  * In logdir by default
1153  * *************************************************************************/
1154          case hash_logfile :
1155             freez(config->logfile);
1156             config->logfile = no_daemon ? NULL : make_path(config->logdir, arg);
1157             continue;
1158
1159 /* *************************************************************************
1160  * permit-access source-ip[/significant-bits] [dest-ip[/significant-bits]]
1161  * *************************************************************************/
1162 #ifdef FEATURE_ACL
1163          case hash_permit_access:
1164             vec_count = ssplit(arg, " \t", vec, SZ(vec), 1, 1);
1165
1166             if ((vec_count != 1) && (vec_count != 2))
1167             {
1168                log_error(LOG_LEVEL_ERROR, "Wrong number of parameters for "
1169                      "permit-access directive in configuration file.");
1170                string_append(&config->proxy_args,
1171                   "<br>\nWARNING: Wrong number of parameters for "
1172                   "permit-access directive in configuration file.<br><br>\n");
1173
1174                continue;
1175             }
1176
1177             /* allocate a new node */
1178             cur_acl = (struct access_control_list *) zalloc(sizeof(*cur_acl));
1179
1180             if (cur_acl == NULL)
1181             {
1182                log_error(LOG_LEVEL_FATAL, "can't allocate memory for configuration");
1183                /* Never get here - LOG_LEVEL_FATAL causes program exit */
1184                continue;
1185             }
1186             cur_acl->action = ACL_PERMIT;
1187
1188             if (acl_addr(vec[0], cur_acl->src) < 0)
1189             {
1190                log_error(LOG_LEVEL_ERROR, "Invalid source IP for permit-access "
1191                      "directive in configuration file: \"%s\"", vec[0]);
1192                string_append(&config->proxy_args,
1193                   "<br>\nWARNING: Invalid source IP for permit-access directive"
1194                   " in configuration file: \"");
1195                string_append(&config->proxy_args,
1196                   vec[0]);
1197                string_append(&config->proxy_args,
1198                   "\"<br><br>\n");
1199                freez(cur_acl);
1200                continue;
1201             }
1202             if (vec_count == 2)
1203             {
1204                if (acl_addr(vec[1], cur_acl->dst) < 0)
1205                {
1206                   log_error(LOG_LEVEL_ERROR, "Invalid destination IP for "
1207                         "permit-access directive in configuration file: \"%s\"",
1208                         vec[0]);
1209                   string_append(&config->proxy_args,
1210                      "<br>\nWARNING: Invalid destination IP for permit-access directive"
1211                      " in configuration file: \"");
1212                   string_append(&config->proxy_args,
1213                      vec[0]);
1214                   string_append(&config->proxy_args,
1215                      "\"<br><br>\n");
1216                   freez(cur_acl);
1217                   continue;
1218                }
1219             }
1220
1221             /*
1222              * Add it to the list.  Note we reverse the list to get the
1223              * behaviour the user expects.  With both the ACL and
1224              * actions file, the last match wins.  However, the internal
1225              * implementations are different:  The actions file is stored
1226              * in the same order as the file, and scanned completely.
1227              * With the ACL, we reverse the order as we load it, then
1228              * when we scan it we stop as soon as we get a match.
1229              */
1230             cur_acl->next  = config->acl;
1231             config->acl = cur_acl;
1232
1233             continue;
1234 #endif /* def FEATURE_ACL */
1235
1236 /* *************************************************************************
1237  * proxy-info-url url
1238  * *************************************************************************/
1239          case hash_proxy_info_url :
1240             freez(config->proxy_info_url);
1241             config->proxy_info_url = strdup(arg);
1242             continue;
1243
1244 /* *************************************************************************
1245  * re_filterfile file-name
1246  * In confdir by default.
1247  * *************************************************************************/
1248          case hash_filterfile :
1249             freez(config->re_filterfile);
1250             config->re_filterfile = make_path(config->confdir, arg);
1251             continue;
1252
1253 /* *************************************************************************
1254  * single-threaded
1255  * *************************************************************************/
1256          case hash_single_threaded :
1257             config->multi_threaded = 0;
1258             continue;
1259
1260 /* *************************************************************************
1261  * toggle (0|1)
1262  * *************************************************************************/
1263 #ifdef FEATURE_TOGGLE
1264          case hash_toggle :
1265             g_bToggleIJB = atoi(arg);
1266             continue;
1267 #endif /* def FEATURE_TOGGLE */
1268
1269 /* *************************************************************************
1270  * trust-info-url url
1271  * *************************************************************************/
1272 #ifdef FEATURE_TRUST
1273          case hash_trust_info_url :
1274             enlist(config->trust_info, arg);
1275             continue;
1276 #endif /* def FEATURE_TRUST */
1277
1278 /* *************************************************************************
1279  * trustfile filename
1280  * (In confdir by default.)
1281  * *************************************************************************/
1282 #ifdef FEATURE_TRUST
1283          case hash_trustfile :
1284             freez(config->trustfile);
1285             config->trustfile = make_path(config->confdir, arg);
1286             continue;
1287 #endif /* def FEATURE_TRUST */
1288
1289 /* *************************************************************************
1290  * usermanual url
1291  * *************************************************************************/
1292          case hash_usermanual :
1293             freez(config->usermanual);
1294             config->usermanual = strdup(arg);
1295             continue;
1296
1297 /* *************************************************************************
1298  * Win32 Console options:
1299  * *************************************************************************/
1300
1301 /* *************************************************************************
1302  * hide-console
1303  * *************************************************************************/
1304 #ifdef _WIN_CONSOLE
1305          case hash_hide_console :
1306             hideConsole = 1;
1307             continue;
1308 #endif /*def _WIN_CONSOLE*/
1309
1310
1311 /* *************************************************************************
1312  * Win32 GUI options:
1313  * *************************************************************************/
1314
1315 #if defined(_WIN32) && ! defined(_WIN_CONSOLE)
1316 /* *************************************************************************
1317  * activity-animation (0|1)
1318  * *************************************************************************/
1319          case hash_activity_animation :
1320             g_bShowActivityAnimation = atoi(arg);
1321             continue;
1322
1323 /* *************************************************************************
1324  *  close-button-minimizes (0|1)
1325  * *************************************************************************/
1326          case hash_close_button_minimizes :
1327             g_bCloseHidesWindow = atoi(arg);
1328             continue;
1329
1330 /* *************************************************************************
1331  * log-buffer-size (0|1)
1332  * *************************************************************************/
1333          case hash_log_buffer_size :
1334             g_bLimitBufferSize = atoi(arg);
1335             continue;
1336
1337 /* *************************************************************************
1338  * log-font-name fontnane
1339  * *************************************************************************/
1340          case hash_log_font_name :
1341             strcpy( g_szFontFaceName, arg );
1342             continue;
1343
1344 /* *************************************************************************
1345  * log-font-size n
1346  * *************************************************************************/
1347          case hash_log_font_size :
1348             g_nFontSize = atoi(arg);
1349             continue;
1350
1351 /* *************************************************************************
1352  * log-highlight-messages (0|1)
1353  * *************************************************************************/
1354          case hash_log_highlight_messages :
1355             g_bHighlightMessages = atoi(arg);
1356             continue;
1357
1358 /* *************************************************************************
1359  * log-max-lines n
1360  * *************************************************************************/
1361          case hash_log_max_lines :
1362             g_nMaxBufferLines = atoi(arg);
1363             continue;
1364
1365 /* *************************************************************************
1366  * log-messages (0|1)
1367  * *************************************************************************/
1368          case hash_log_messages :
1369             g_bLogMessages = atoi(arg);
1370             continue;
1371
1372 /* *************************************************************************
1373  * show-on-task-bar (0|1)
1374  * *************************************************************************/
1375          case hash_show_on_task_bar :
1376             g_bShowOnTaskBar = atoi(arg);
1377             continue;
1378
1379 #endif /* defined(_WIN32) && ! defined(_WIN_CONSOLE) */
1380
1381 /* *************************************************************************
1382  * image-blocker-custom-file
1383  * *************************************************************************/
1384          case hash_image_blocker_custom_file :
1385             freez(config->image_blocker_data);
1386             freez(config->image_blocker_format);
1387             config->image_blocker_length = 0; 
1388             image_path = make_path(config->confdir, arg);
1389
1390             /*
1391              * Load up the custom image bitmap file
1392              */
1393             if (NULL == (imagefp = fopen(image_path, "rb")))
1394             {
1395               /*
1396                * If we can't open the user's requested image, complain
1397                */
1398               log_error(LOG_LEVEL_ERROR, "Unable to load custom blocker image: %s.", image_path);
1399             }
1400             else
1401             {
1402               if (stat(image_path, statbuf) == 0)
1403               {
1404                 file_size = statbuf->st_size;
1405                 image_buf = zalloc(file_size);
1406                 if (image_buf != NULL)
1407                 {
1408                   bytes_read = fread(image_buf,1,file_size,imagefp);
1409                   if (bytes_read > 0)
1410                   {
1411                     config->image_blocker_data = image_buf;
1412                     config->image_blocker_length = file_size;
1413                     /*
1414                      * Ensure we can look into files for file signatures
1415                      */
1416                     if (file_size > 10)
1417                     {
1418                       /*
1419                        * Snoop into the binary data for a filetype signature
1420                        */
1421                       if (memcmp(image_buf,"GIF",3) == 0)
1422                         config->image_blocker_format = IMAGE_MIMETYPE_GIF;
1423                       else if (memcmp(&image_buf[6],"JFIF",4) == 0)
1424                         config->image_blocker_format = IMAGE_MIMETYPE_JPG;
1425                       else if (memcmp(&image_buf[1],"PNG",3) == 0)
1426                         config->image_blocker_format = IMAGE_MIMETYPE_PNG;
1427                       else
1428                       {
1429                         log_error(LOG_LEVEL_ERROR, "Unsupported custom image file type.");
1430                         freez(config->image_blocker_data);
1431                       }
1432                     }
1433                     else
1434                       freez(config->image_blocker_data);
1435                   }
1436                   else
1437                   {
1438                     log_error(LOG_LEVEL_ERROR, "Unable to read custom blocker image: %s", image_path, bytes_read, file_size);
1439                     freez(image_buf);
1440                     config->image_blocker_length = 0;
1441                   }
1442                 }
1443                 else
1444                   log_error(LOG_LEVEL_ERROR, "Unable to allocate memory for custom blocker image: %s.", image_path);
1445               }
1446               else
1447                 log_error(LOG_LEVEL_ERROR, "Unable to get statistics on custom blocker image file: %s", image_path);
1448             }
1449             freez(image_path);
1450             /*
1451              * If our load failed for some reason, just give the default
1452              * checkerboard pattern 
1453              */
1454             if (config->image_blocker_data == NULL)
1455             {
1456               log_error(LOG_LEVEL_ERROR, "Custom blocker image processing failed; defaulting to \"pattern\".");
1457               config->image_blocker_data = (char*)image_pattern_data;
1458               config->image_blocker_length = image_pattern_length;
1459               config->image_blocker_format = BUILTIN_IMAGE_MIMETYPE;
1460             }
1461             continue;
1462
1463 /* *************************************************************************
1464  * Warnings about unsupported features
1465  * *************************************************************************/
1466 #ifndef FEATURE_ACL
1467          case hash_deny_access:
1468 #endif /* ndef FEATURE_ACL */
1469 #ifndef FEATURE_CGI_EDIT_ACTIONS
1470          case hash_enable_edit_actions:
1471          case hash_enable_remote_toggle:
1472 #endif /* def FEATURE_CGI_EDIT_ACTIONS */
1473 #ifndef FEATURE_COOKIE_JAR
1474          case hash_jarfile :
1475 #endif /* ndef FEATURE_COOKIE_JAR */
1476 #ifndef FEATURE_ACL
1477          case hash_permit_access:
1478 #endif /* ndef FEATURE_ACL */
1479 #ifndef FEATURE_TOGGLE
1480          case hash_toggle :
1481 #endif /* ndef FEATURE_TOGGLE */
1482 #ifndef FEATURE_TRUST
1483          case hash_trustfile :
1484          case hash_trust_info_url :
1485 #endif /* ndef FEATURE_TRUST */
1486
1487 #ifndef _WIN_CONSOLE
1488          case hash_hide_console :
1489 #endif /* ndef _WIN_CONSOLE */
1490
1491 #if defined(_WIN_CONSOLE) || ! defined(_WIN32)
1492          case hash_activity_animation :
1493          case hash_close_button_minimizes :
1494          case hash_log_buffer_size :
1495          case hash_log_font_name :
1496          case hash_log_font_size :
1497          case hash_log_highlight_messages :
1498          case hash_log_max_lines :
1499          case hash_log_messages :
1500          case hash_show_on_task_bar :
1501 #endif /* defined(_WIN_CONSOLE) || ! defined(_WIN32) */
1502             /* These warnings are annoying - so hide them. -- Jon */
1503             /* log_error(LOG_LEVEL_INFO, "Unsupported directive \"%s\" ignored.", cmd); */
1504             continue;
1505
1506 /* *************************************************************************/
1507          default :
1508 /* *************************************************************************/
1509             /*
1510              * I decided that I liked this better as a warning than an
1511              * error.  To change back to an error, just change log level
1512              * to LOG_LEVEL_FATAL.
1513              */
1514             log_error(LOG_LEVEL_ERROR, "Unrecognized directive '%s' (%luul) in line %lu in "
1515                   "configuration file (%s).",  buf, hash_string(cmd), linenum, configfile);
1516             string_append(&config->proxy_args, "<br>\nWARNING: unrecognized directive : ");
1517             string_append(&config->proxy_args, buf);
1518             string_append(&config->proxy_args, "<br><br>\n");
1519             continue;
1520
1521 /* *************************************************************************/
1522       } /* end switch( hash_string(cmd) ) */
1523    } /* end while ( read_config_line(...) ) */
1524
1525    fclose(configfp);
1526
1527    if (NULL == config->proxy_args)
1528    {
1529       log_error(LOG_LEVEL_FATAL, "Out of memory loading config - insufficient memory for config->proxy_args");
1530    }
1531
1532    init_error_log(Argv[0], config->logfile, config->debug);
1533
1534    if (config->actions_file[0])
1535    {
1536       add_loader(load_actions_file, config);
1537    }
1538
1539    if (config->re_filterfile)
1540    {
1541       add_loader(load_re_filterfile, config);
1542    }
1543
1544 #ifdef FEATURE_TRUST
1545    if (config->trustfile)
1546    {
1547       add_loader(load_trustfile, config);
1548    }
1549 #endif /* def FEATURE_TRUST */
1550
1551 #ifdef FEATURE_COOKIE_JAR
1552    if ( NULL != config->jarfile )
1553    {
1554       if ( NULL == (config->jar = fopen(config->jarfile, "a")) )
1555       {
1556          log_error(LOG_LEVEL_FATAL, "can't open jarfile '%s': %E", config->jarfile);
1557          /* Never get here - LOG_LEVEL_FATAL causes program exit */
1558       }
1559       setbuf(config->jar, NULL);
1560    }
1561 #endif /* def FEATURE_COOKIE_JAR */
1562
1563 #ifdef FEATURE_ACTIVITY_CONSOLE
1564    if ( NULL == config->activity_address )
1565    {
1566       config->activity_address = strdup( ACTIVTY_ADDR_DEFAULT );
1567    }
1568
1569    if ( NULL != config->activity_address )
1570    {
1571       if (NULL != (p = strchr(config->activity_address, ':')))
1572       {
1573          *p++ = '\0';
1574          if (*p)
1575          {
1576             config->activity_port = atoi(p);
1577          }
1578       }
1579
1580       if (config->activity_port <= 0)
1581       {
1582          *--p = ':';
1583          log_error(LOG_LEVEL_ERROR, "invalid activity port spec %s", config->activity_address);
1584       }
1585       if (*config->activity_address == '\0')
1586       {
1587          config->activity_address = NULL;
1588       }
1589    }
1590    log_error(LOG_LEVEL_INFO, "Sending statistics updates to %s, port %d.", config->activity_address, config->activity_port);
1591 #endif /* def FEATURE_ACTIVITY_CONSOLE */
1592
1593    if ( NULL == config->haddr )
1594    {
1595       config->haddr = strdup( HADDR_DEFAULT );
1596    }
1597
1598    if ( NULL != config->haddr )
1599    {
1600       if (NULL != (p = strchr(config->haddr, ':')))
1601       {
1602          *p++ = '\0';
1603          if (*p)
1604          {
1605             config->hport = atoi(p);
1606          }
1607       }
1608
1609       if (config->hport <= 0)
1610       {
1611          *--p = ':';
1612          log_error(LOG_LEVEL_FATAL, "invalid bind port spec %s", config->haddr);
1613          /* Never get here - LOG_LEVEL_FATAL causes program exit */
1614       }
1615       if (*config->haddr == '\0')
1616       {
1617          config->haddr = NULL;
1618       }
1619    }
1620
1621    /*
1622     * Want to run all the loaders once now.
1623     *
1624     * Need to set up a fake csp, so they can get to the config.
1625     */
1626    fake_csp = (struct client_state *) zalloc (sizeof(*fake_csp));
1627    fake_csp->config = config;
1628
1629    if (run_loader(fake_csp))
1630    {
1631       freez(fake_csp);
1632       log_error(LOG_LEVEL_FATAL, "A loader failed while loading config file. Exiting.");
1633       /* Never get here - LOG_LEVEL_FATAL causes program exit */
1634    }
1635    freez(fake_csp);
1636
1637 /* FIXME: this is a kludge for win32 */
1638 #if defined(_WIN32) && !defined (_WIN_CONSOLE)
1639
1640    g_default_actions_file  = config->actions_file[1]; /* FIXME Hope this is default.action */
1641    g_user_actions_file = config->actions_file[2]; /* FIXME Hope this is user.action */
1642    g_re_filterfile    = config->re_filterfile;
1643
1644 #ifdef FEATURE_TRUST
1645    g_trustfile        = config->trustfile;
1646 #endif /* def FEATURE_TRUST */
1647
1648
1649 #endif /* defined(_WIN32) && !defined (_WIN_CONSOLE) */
1650 /* FIXME: end kludge */
1651
1652
1653    config->need_bind = 1;
1654
1655    if (current_configfile)
1656    {
1657       struct configuration_spec * oldcfg = (struct configuration_spec *)
1658                                            current_configfile->f;
1659       /*
1660        * Check if config->haddr,hport == oldcfg->haddr,hport
1661        *
1662        * The following could be written more compactly as a single,
1663        * (unreadably long) if statement.
1664        */
1665       config->need_bind = 0;
1666       if (config->hport != oldcfg->hport)
1667       {
1668          config->need_bind = 1;
1669       }
1670       else if (config->haddr == NULL)
1671       {
1672          if (oldcfg->haddr != NULL)
1673          {
1674             config->need_bind = 1;
1675          }
1676       }
1677       else if (oldcfg->haddr == NULL)
1678       {
1679          config->need_bind = 1;
1680       }
1681       else if (0 != strcmp(config->haddr, oldcfg->haddr))
1682       {
1683          config->need_bind = 1;
1684       }
1685
1686       current_configfile->unloader = unload_configfile;
1687    }
1688
1689    fs->next = files->next;
1690    files->next = fs;
1691
1692    current_configfile = fs;
1693
1694    return (config);
1695 }
1696
1697
1698 /*********************************************************************
1699  *
1700  * Function    :  savearg
1701  *
1702  * Description :  Called from `load_config'.  It saves each non-empty
1703  *                and non-comment line from config into
1704  *                config->proxy_args.  This is used to create the
1705  *                show-proxy-args page.  On error, frees
1706  *                config->proxy_args and sets it to NULL
1707  *
1708  * Parameters  :
1709  *          1  :  command = config setting that was found
1710  *          2  :  argument = the setting's argument (if any)
1711  *          3  :  config = Configuration to save into.
1712  *
1713  * Returns     :  N/A
1714  *
1715  *********************************************************************/
1716 static void savearg(char *command, char *argument, struct configuration_spec * config)
1717 {
1718    char * buf;
1719    char * s;
1720
1721    assert(command);
1722    assert(*command);
1723    assert(argument);
1724
1725    /*
1726     * Add config option name embedded in
1727     * link to it's section in the user-manual
1728     */
1729    buf = strdup("<a href=\"");
1730    string_append(&buf, config->usermanual);
1731    string_append(&buf, CONFIG_HELP_PREFIX);
1732    string_join  (&buf, string_toupper(command));
1733    string_append(&buf, "\">");
1734    string_append(&buf, command);
1735    string_append(&buf, "</a> ");
1736
1737    if (NULL == buf)
1738    {
1739       freez(config->proxy_args);
1740       return;
1741    }
1742
1743    if ( (NULL != argument) && ('\0' != *argument) )
1744    {
1745       s = html_encode(argument);
1746       if (NULL == s)
1747       {
1748          freez(buf);
1749          freez(config->proxy_args);
1750          return;
1751       }
1752
1753       if (strncmpic(argument, "http://", 7) == 0)
1754       {
1755          string_append(&buf, "<a href=\"");
1756          string_append(&buf, s);
1757          string_append(&buf, "\">");
1758          string_join  (&buf, s);
1759          string_append(&buf, "</a>");
1760       }
1761       else
1762       {
1763          string_join  (&buf, s);
1764       }
1765    }
1766
1767    string_append(&buf, "<br>\n");
1768
1769    string_join(&config->proxy_args, buf);
1770 }
1771
1772
1773 /*
1774   Local Variables:
1775   tab-width: 3
1776   end:
1777 */