forked from h4ck3rm1k3/privoxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
loadcfg.c
1825 lines (1613 loc) · 62.5 KB
/
loadcfg.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
const char loadcfg_rcs[] = "$Id: loadcfg.c,v 1.130 2012/07/27 17:36:06 fabiankeil Exp $";
/*********************************************************************
*
* File : $Source: /cvsroot/ijbswa/current/loadcfg.c,v $
*
* Purpose : Loads settings from the configuration file into
* global variables. This file contains both the
* routine to load the configuration and the global
* variables it writes to.
*
* Copyright : Written by and Copyright (C) 2001-2009 the
* Privoxy team. http://www.privoxy.org/
*
* Based on the Internet Junkbuster originally written
* by and Copyright (C) 1997 Anonymous Coders and
* Junkbusters Corporation. http://www.junkbusters.com
*
* This program is free software; you can redistribute it
* and/or modify it under the terms of the GNU General
* Public License as published by the Free Software
* Foundation; either version 2 of the License, or (at
* your option) any later version.
*
* This program is distributed in the hope that it will
* be useful, but WITHOUT ANY WARRANTY; without even the
* implied warranty of MERCHANTABILITY or FITNESS FOR A
* PARTICULAR PURPOSE. See the GNU General Public
* License for more details.
*
* The GNU General Public License should be included with
* this file. If not, you can view it at
* http://www.gnu.org/copyleft/gpl.html
* or write to the Free Software Foundation, Inc., 59
* Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
*********************************************************************/
#include "config.h"
#include <stdio.h>
#include <sys/types.h>
#include <stdlib.h>
#include <string.h>
#include <signal.h>
#include <fcntl.h>
#include <errno.h>
#include <ctype.h>
#include <assert.h>
#ifdef _WIN32
# ifndef STRICT
# define STRICT
# endif
# include <windows.h>
# include "win32.h"
# ifndef _WIN_CONSOLE
# include "w32log.h"
# endif /* ndef _WIN_CONSOLE */
#else /* ifndef _WIN32 */
#ifndef __OS2__
# include <unistd.h>
# include <sys/wait.h>
#endif
# include <sys/time.h>
# include <sys/stat.h>
# include <signal.h>
#endif
#include "project.h"
#include "loadcfg.h"
#include "list.h"
#include "jcc.h"
#include "filters.h"
#include "loaders.h"
#include "miscutil.h"
#include "errlog.h"
#include "ssplit.h"
#include "encode.h"
#include "urlmatch.h"
#include "cgi.h"
#include "gateway.h"
const char loadcfg_h_rcs[] = LOADCFG_H_VERSION;
#ifdef FEATURE_TOGGLE
/* Privoxy is enabled by default. */
int global_toggle_state = 1;
#endif /* def FEATURE_TOGGLE */
/* The filename of the configfile */
const char *configfile = NULL;
/*
* CGI functions will later need access to the invocation args,
* so we will make argc and argv global.
*/
int Argc = 0;
char * const * Argv = NULL;
static struct file_list *current_configfile = NULL;
/*
* This takes the "cryptic" hash of each keyword and aliases them to
* something a little more readable. This also makes changing the
* hash values easier if they should change or the hash algorthm changes.
* Use the included "hash" program to find out what the hash will be
* for any string supplied on the command line. (Or just put it in the
* config file and read the number from the error message in the log).
*
* Please keep this list sorted alphabetically (but with the Windows
* console and GUI specific options last).
*/
#define hash_actions_file 1196306641U /* "actionsfile" */
#define hash_accept_intercepted_requests 1513024973U /* "accept-intercepted-requests" */
#define hash_admin_address 4112573064U /* "admin-address" */
#define hash_allow_cgi_request_crunching 258915987U /* "allow-cgi-request-crunching" */
#define hash_buffer_limit 1881726070U /* "buffer-limit */
#define hash_client_header_order 2701453514U /* "client-header-order" */
#define hash_compression_level 2464423563U /* "compression-level" */
#define hash_confdir 1978389U /* "confdir" */
#define hash_connection_sharing 1348841265U /* "connection-sharing" */
#define hash_debug 78263U /* "debug" */
#define hash_default_server_timeout 2530089913U /* "default-server-timeout" */
#define hash_deny_access 1227333715U /* "deny-access" */
#define hash_enable_edit_actions 2517097536U /* "enable-edit-actions" */
#define hash_enable_compression 3943696946U /* "enable-compression" */
#define hash_enable_remote_toggle 2979744683U /* "enable-remote-toggle" */
#define hash_enable_remote_http_toggle 110543988U /* "enable-remote-http-toggle" */
#define hash_enforce_blocks 1862427469U /* "enforce-blocks" */
#define hash_filterfile 250887266U /* "filterfile" */
#define hash_forward 2029845U /* "forward" */
#define hash_forward_socks4 3963965521U /* "forward-socks4" */
#define hash_forward_socks4a 2639958518U /* "forward-socks4a" */
#define hash_forward_socks5 3963965522U /* "forward-socks5" */
#define hash_forwarded_connect_retries 101465292U /* "forwarded-connect-retries" */
#define hash_handle_as_empty_returns_ok 1444873247U /* "handle-as-empty-doc-returns-ok" */
#define hash_hostname 10308071U /* "hostname" */
#define hash_keep_alive_timeout 3878599515U /* "keep-alive-timeout" */
#define hash_listen_address 1255650842U /* "listen-address" */
#define hash_logdir 422889U /* "logdir" */
#define hash_logfile 2114766U /* "logfile" */
#define hash_max_client_connections 3595884446U /* "max-client-connections" */
#define hash_permit_access 3587953268U /* "permit-access" */
#define hash_proxy_info_url 3903079059U /* "proxy-info-url" */
#define hash_single_threaded 4250084780U /* "single-threaded" */
#define hash_socket_timeout 1809001761U /* "socket-timeout" */
#define hash_split_large_cgi_forms 671658948U /* "split-large-cgi-forms" */
#define hash_suppress_blocklists 1948693308U /* "suppress-blocklists" */
#define hash_templdir 11067889U /* "templdir" */
#define hash_toggle 447966U /* "toggle" */
#define hash_trust_info_url 430331967U /* "trust-info-url" */
#define hash_trustfile 56494766U /* "trustfile" */
#define hash_usermanual 1416668518U /* "user-manual" */
#define hash_activity_animation 1817904738U /* "activity-animation" */
#define hash_close_button_minimizes 3651284693U /* "close-button-minimizes" */
#define hash_hide_console 2048809870U /* "hide-console" */
#define hash_log_buffer_size 2918070425U /* "log-buffer-size" */
#define hash_log_font_name 2866730124U /* "log-font-name" */
#define hash_log_font_size 2866731014U /* "log-font-size" */
#define hash_log_highlight_messages 4032101240U /* "log-highlight-messages" */
#define hash_log_max_lines 2868344173U /* "log-max-lines" */
#define hash_log_messages 2291744899U /* "log-messages" */
#define hash_show_on_task_bar 215410365U /* "show-on-task-bar" */
static void savearg(char *command, char *argument, struct configuration_spec * config);
/*********************************************************************
*
* Function : unload_configfile
*
* Description : Free the config structure and all components.
*
* Parameters :
* 1 : data: struct configuration_spec to unload
*
* Returns : N/A
*
*********************************************************************/
static void unload_configfile (void * data)
{
struct configuration_spec * config = (struct configuration_spec *)data;
struct forward_spec *cur_fwd = config->forward;
int i;
#ifdef FEATURE_ACL
struct access_control_list *cur_acl = config->acl;
while (cur_acl != NULL)
{
struct access_control_list * next_acl = cur_acl->next;
free(cur_acl);
cur_acl = next_acl;
}
config->acl = NULL;
#endif /* def FEATURE_ACL */
while (cur_fwd != NULL)
{
struct forward_spec * next_fwd = cur_fwd->next;
free_url_spec(cur_fwd->url);
freez(cur_fwd->gateway_host);
freez(cur_fwd->forward_host);
free(cur_fwd);
cur_fwd = next_fwd;
}
config->forward = NULL;
freez(config->confdir);
freez(config->logdir);
freez(config->templdir);
freez(config->hostname);
for (i = 0; i < MAX_LISTENING_SOCKETS; i++)
{
freez(config->haddr[i]);
}
freez(config->logfile);
for (i = 0; i < MAX_AF_FILES; i++)
{
freez(config->actions_file_short[i]);
freez(config->actions_file[i]);
freez(config->re_filterfile_short[i]);
freez(config->re_filterfile[i]);
}
list_remove_all(config->ordered_client_headers);
freez(config->admin_address);
freez(config->proxy_info_url);
freez(config->proxy_args);
freez(config->usermanual);
#ifdef FEATURE_TRUST
freez(config->trustfile);
list_remove_all(config->trust_info);
#endif /* def FEATURE_TRUST */
freez(config);
}
#ifdef FEATURE_GRACEFUL_TERMINATION
/*********************************************************************
*
* Function : unload_current_config_file
*
* Description : Unloads current config file - reset to state at
* beginning of program.
*
* Parameters : None
*
* Returns : N/A
*
*********************************************************************/
void unload_current_config_file(void)
{
if (current_configfile)
{
current_configfile->unloader = unload_configfile;
current_configfile = NULL;
}
}
#endif
/*********************************************************************
*
* Function : parse_toggle_value
*
* Description : Parse the value of a directive that can only be
* enabled or disabled. Terminates with a fatal error
* if the value is NULL or something other than 0 or 1.
*
* Parameters :
* 1 : name: The name of the directive. Used for log messages.
* 2 : value: The value to parse
*
*
* Returns : The numerical toggle state
*
*********************************************************************/
static int parse_toggle_state(const char *name, const char *value)
{
int toggle_state;
assert(name != NULL);
assert(value != NULL);
if ((value == NULL) || (*value == '\0'))
{
log_error(LOG_LEVEL_FATAL, "Directive %s used without argument", name);
}
toggle_state = atoi(value);
/*
* Also check the length as atoi() doesn't mind
* garbage after a valid integer, but we do.
*/
if (((toggle_state != 0) && (toggle_state != 1)) || (strlen(value) != 1))
{
log_error(LOG_LEVEL_FATAL,
"Directive %s used with invalid argument '%s'. Use either '0' or '1'.",
name, value);
}
return toggle_state;
}
/*********************************************************************
*
* Function : parse_client_header_order
*
* Description : Parse the value of the header-order directive
*
* Parameters :
* 1 : ordered_header_list: List to insert the ordered
* headers into.
* 2 : ordered_headers: The ordered header names separated
* by spaces or tabs.
*
*
* Returns : N/A
*
*********************************************************************/
static void parse_client_header_order(struct list *ordered_header_list, const char *ordered_headers)
{
char *original_headers_copy;
char **vector;
int number_of_headers;
int i;
assert(ordered_header_list != NULL);
assert(ordered_headers != NULL);
if (ordered_headers == NULL)
{
log_error(LOG_LEVEL_FATAL, "header-order used without argument");
}
/*
* XXX: This estimate is guaranteed to be high enough as we
* let ssplit() ignore empty fields, but also a bit wasteful.
* The same hack is used in get_last_url() so it looks like
* a real solution is needed.
*/
size_t max_segments = strlen(ordered_headers) / 2;
if (max_segments == 0)
{
max_segments = 1;
}
vector = malloc_or_die(max_segments * sizeof(char *));
original_headers_copy = strdup_or_die(ordered_headers);
number_of_headers = ssplit(original_headers_copy, "\t ", vector, max_segments);
if (number_of_headers == -1)
{
log_error(LOG_LEVEL_FATAL, "Failed to split ordered headers");
}
for (i = 0; i < number_of_headers; i++)
{
if (JB_ERR_OK != enlist(ordered_header_list, vector[i]))
{
log_error(LOG_LEVEL_FATAL,
"Failed to enlist ordered header: %s", vector[i]);
}
}
freez(vector);
freez(original_headers_copy);
return;
}
/*********************************************************************
*
* Function : load_config
*
* Description : Load the config file and all parameters.
*
* XXX: more than thousand lines long
* and thus in serious need of refactoring.
*
* Parameters : None
*
* Returns : The configuration_spec, or NULL on error.
*
*********************************************************************/
struct configuration_spec * load_config(void)
{
char *buf = NULL;
char *p, *q;
FILE *configfp = NULL;
struct configuration_spec * config = NULL;
struct client_state * fake_csp;
struct file_list *fs;
unsigned long linenum = 0;
int i;
char *logfile = NULL;
if (!check_file_changed(current_configfile, configfile, &fs))
{
/* No need to load */
return ((struct configuration_spec *)current_configfile->f);
}
if (NULL == fs)
{
log_error(LOG_LEVEL_FATAL,
"can't check configuration file '%s': %E", configfile);
return NULL;
}
if (NULL != current_configfile)
{
log_error(LOG_LEVEL_INFO, "Reloading configuration file '%s'", configfile);
}
#ifdef FEATURE_TOGGLE
global_toggle_state = 1;
#endif /* def FEATURE_TOGGLE */
fs->f = config = (struct configuration_spec *)zalloc(sizeof(*config));
if (NULL == config)
{
freez(fs->filename);
freez(fs);
log_error(LOG_LEVEL_FATAL, "can't allocate memory for configuration");
return NULL;
}
/*
* This is backwards from how it's usually done.
* Following the usual pattern, "fs" would be stored in a member
* variable in "csp", and then we'd access "config" from "fs->f",
* using a cast. However, "config" is used so often that a
* cast each time would be very ugly, and the extra indirection
* would waste CPU cycles. Therefore we store "config" in
* "csp->config", and "fs" in "csp->config->config_file_list".
*/
config->config_file_list = fs;
/*
* Set to defaults
*/
config->multi_threaded = 1;
config->buffer_limit = 4096 * 1024;
config->usermanual = strdup(USER_MANUAL_URL);
config->proxy_args = strdup("");
config->forwarded_connect_retries = 0;
config->max_client_connections = 0;
config->socket_timeout = 300; /* XXX: Should be a macro. */
#ifdef FEATURE_CONNECTION_KEEP_ALIVE
config->default_server_timeout = 0;
config->keep_alive_timeout = DEFAULT_KEEP_ALIVE_TIMEOUT;
config->feature_flags &= ~RUNTIME_FEATURE_CONNECTION_KEEP_ALIVE;
config->feature_flags &= ~RUNTIME_FEATURE_CONNECTION_SHARING;
#endif
config->feature_flags &= ~RUNTIME_FEATURE_CGI_TOGGLE;
config->feature_flags &= ~RUNTIME_FEATURE_SPLIT_LARGE_FORMS;
config->feature_flags &= ~RUNTIME_FEATURE_ACCEPT_INTERCEPTED_REQUESTS;
config->feature_flags &= ~RUNTIME_FEATURE_EMPTY_DOC_RETURNS_OK;
#ifdef FEATURE_COMPRESSION
config->feature_flags &= ~RUNTIME_FEATURE_COMPRESSION;
/*
* XXX: Run some benchmarks to see if there are better default values.
*/
config->compression_level = 1;
#endif
configfp = fopen(configfile, "r");
if (NULL == configfp)
{
log_error(LOG_LEVEL_FATAL,
"can't open configuration file '%s': %E", configfile);
/* Never get here - LOG_LEVEL_FATAL causes program exit */
}
while (read_config_line(configfp, &linenum, &buf) != NULL)
{
char cmd[BUFFER_SIZE];
char arg[BUFFER_SIZE];
char tmp[BUFFER_SIZE];
#ifdef FEATURE_ACL
struct access_control_list *cur_acl;
#endif /* def FEATURE_ACL */
struct forward_spec *cur_fwd;
int vec_count;
char *vec[3];
unsigned int directive_hash;
strlcpy(tmp, buf, sizeof(tmp));
/* Copy command (i.e. up to space or tab) into cmd */
p = buf;
q = cmd;
while (*p && (*p != ' ') && (*p != '\t'))
{
*q++ = *p++;
}
*q = '\0';
/* Skip over the whitespace in buf */
while (*p && ((*p == ' ') || (*p == '\t')))
{
p++;
}
/* Copy the argument into arg */
if (strlcpy(arg, p, sizeof(arg)) >= sizeof(arg))
{
log_error(LOG_LEVEL_FATAL, "Config line too long: %s", buf);
}
/* Should never happen, but check this anyway */
if (*cmd == '\0')
{
freez(buf);
continue;
}
/* Make sure the command field is lower case */
for (p = cmd; *p; p++)
{
if (privoxy_isupper(*p))
{
*p = (char)privoxy_tolower(*p);
}
}
directive_hash = hash_string(cmd);
switch (directive_hash)
{
/* *************************************************************************
* actionsfile actions-file-name
* In confdir by default
* *************************************************************************/
case hash_actions_file :
i = 0;
while ((i < MAX_AF_FILES) && (NULL != config->actions_file[i]))
{
i++;
}
if (i >= MAX_AF_FILES)
{
log_error(LOG_LEVEL_FATAL, "Too many 'actionsfile' directives in config file - limit is %d.\n"
"(You can increase this limit by changing MAX_AF_FILES in project.h and recompiling).",
MAX_AF_FILES);
}
config->actions_file_short[i] = strdup(arg);
config->actions_file[i] = make_path(config->confdir, arg);
break;
/* *************************************************************************
* accept-intercepted-requests
* *************************************************************************/
case hash_accept_intercepted_requests:
if (parse_toggle_state(cmd, arg) == 1)
{
config->feature_flags |= RUNTIME_FEATURE_ACCEPT_INTERCEPTED_REQUESTS;
}
else
{
config->feature_flags &= ~RUNTIME_FEATURE_ACCEPT_INTERCEPTED_REQUESTS;
}
break;
/* *************************************************************************
* admin-address email-address
* *************************************************************************/
case hash_admin_address :
freez(config->admin_address);
config->admin_address = strdup(arg);
break;
/* *************************************************************************
* allow-cgi-request-crunching
* *************************************************************************/
case hash_allow_cgi_request_crunching:
if (parse_toggle_state(cmd, arg) == 1)
{
config->feature_flags |= RUNTIME_FEATURE_CGI_CRUNCHING;
}
else
{
config->feature_flags &= ~RUNTIME_FEATURE_CGI_CRUNCHING;
}
break;
/* *************************************************************************
* buffer-limit n
* *************************************************************************/
case hash_buffer_limit :
config->buffer_limit = (size_t)(1024 * atoi(arg));
break;
/* *************************************************************************
* client-header-order header-1 header-2 ... header-n
* *************************************************************************/
case hash_client_header_order:
list_remove_all(config->ordered_client_headers);
parse_client_header_order(config->ordered_client_headers, arg);
break;
/* *************************************************************************
* confdir directory-name
* *************************************************************************/
case hash_confdir :
freez(config->confdir);
config->confdir = make_path(NULL, arg);
break;
/* *************************************************************************
* compression-level 0-9
* *************************************************************************/
#ifdef FEATURE_COMPRESSION
case hash_compression_level :
if (*arg != '\0')
{
int compression_level = atoi(arg);
if (-1 <= compression_level && compression_level <= 9)
{
config->compression_level = compression_level;;
}
else
{
log_error(LOG_LEVEL_FATAL,
"Invalid compression-level value: %s", arg);
}
}
else
{
log_error(LOG_LEVEL_FATAL,
"Invalid compression-level directive. Compression value missing");
}
break;
#endif
/* *************************************************************************
* connection-sharing (0|1)
* *************************************************************************/
#ifdef FEATURE_CONNECTION_SHARING
case hash_connection_sharing :
if (parse_toggle_state(cmd, arg) == 1)
{
config->feature_flags |= RUNTIME_FEATURE_CONNECTION_SHARING;
}
else
{
config->feature_flags &= ~RUNTIME_FEATURE_CONNECTION_SHARING;
}
break;
#endif
/* *************************************************************************
* debug n
* Specifies debug level, multiple values are ORed together.
* *************************************************************************/
case hash_debug :
config->debug |= atoi(arg);
break;
/* *************************************************************************
* default-server-timeout timeout
* *************************************************************************/
#ifdef FEATURE_CONNECTION_KEEP_ALIVE
case hash_default_server_timeout :
if (*arg != '\0')
{
int timeout = atoi(arg);
if (0 <= timeout)
{
config->default_server_timeout = (unsigned int)timeout;
}
else
{
log_error(LOG_LEVEL_FATAL,
"Invalid default-server-timeout value: %s", arg);
}
}
break;
#endif
/* *************************************************************************
* deny-access source-ip[/significant-bits] [dest-ip[/significant-bits]]
* *************************************************************************/
#ifdef FEATURE_ACL
case hash_deny_access:
strlcpy(tmp, arg, sizeof(tmp));
vec_count = ssplit(tmp, " \t", vec, SZ(vec));
if ((vec_count != 1) && (vec_count != 2))
{
log_error(LOG_LEVEL_ERROR, "Wrong number of parameters for "
"deny-access directive in configuration file.");
string_append(&config->proxy_args,
"<br>\nWARNING: Wrong number of parameters for "
"deny-access directive in configuration file.<br><br>\n");
break;
}
/* allocate a new node */
cur_acl = (struct access_control_list *) zalloc(sizeof(*cur_acl));
if (cur_acl == NULL)
{
log_error(LOG_LEVEL_FATAL, "can't allocate memory for configuration");
/* Never get here - LOG_LEVEL_FATAL causes program exit */
break;
}
cur_acl->action = ACL_DENY;
if (acl_addr(vec[0], cur_acl->src) < 0)
{
log_error(LOG_LEVEL_ERROR, "Invalid source address, port or netmask "
"for deny-access directive in configuration file: \"%s\"", vec[0]);
string_append(&config->proxy_args,
"<br>\nWARNING: Invalid source address, port or netmask "
"for deny-access directive in configuration file: \"");
string_append(&config->proxy_args,
vec[0]);
string_append(&config->proxy_args,
"\"<br><br>\n");
freez(cur_acl);
break;
}
if (vec_count == 2)
{
if (acl_addr(vec[1], cur_acl->dst) < 0)
{
log_error(LOG_LEVEL_ERROR, "Invalid destination address, port or netmask "
"for deny-access directive in configuration file: \"%s\"", vec[1]);
string_append(&config->proxy_args,
"<br>\nWARNING: Invalid destination address, port or netmask "
"for deny-access directive in configuration file: \"");
string_append(&config->proxy_args,
vec[1]);
string_append(&config->proxy_args,
"\"<br><br>\n");
freez(cur_acl);
break;
}
}
#ifdef HAVE_RFC2553
else
{
cur_acl->wildcard_dst = 1;
}
#endif /* def HAVE_RFC2553 */
/*
* Add it to the list. Note we reverse the list to get the
* behaviour the user expects. With both the ACL and
* actions file, the last match wins. However, the internal
* implementations are different: The actions file is stored
* in the same order as the file, and scanned completely.
* With the ACL, we reverse the order as we load it, then
* when we scan it we stop as soon as we get a match.
*/
cur_acl->next = config->acl;
config->acl = cur_acl;
break;
#endif /* def FEATURE_ACL */
/* *************************************************************************
* enable-edit-actions 0|1
* *************************************************************************/
#ifdef FEATURE_CGI_EDIT_ACTIONS
case hash_enable_edit_actions:
if (parse_toggle_state(cmd, arg) == 1)
{
config->feature_flags |= RUNTIME_FEATURE_CGI_EDIT_ACTIONS;
}
else
{
config->feature_flags &= ~RUNTIME_FEATURE_CGI_EDIT_ACTIONS;
}
break;
#endif /* def FEATURE_CGI_EDIT_ACTIONS */
/* *************************************************************************
* enable-compression 0|1
* *************************************************************************/
#ifdef FEATURE_COMPRESSION
case hash_enable_compression:
if (parse_toggle_state(cmd, arg) == 1)
{
config->feature_flags |= RUNTIME_FEATURE_COMPRESSION;
}
else
{
config->feature_flags &= ~RUNTIME_FEATURE_COMPRESSION;
}
break;
#endif /* def FEATURE_COMPRESSION */
/* *************************************************************************
* enable-remote-toggle 0|1
* *************************************************************************/
#ifdef FEATURE_TOGGLE
case hash_enable_remote_toggle:
if (parse_toggle_state(cmd, arg) == 1)
{
config->feature_flags |= RUNTIME_FEATURE_CGI_TOGGLE;
}
else
{
config->feature_flags &= ~RUNTIME_FEATURE_CGI_TOGGLE;
}
break;
#endif /* def FEATURE_TOGGLE */
/* *************************************************************************
* enable-remote-http-toggle 0|1
* *************************************************************************/
case hash_enable_remote_http_toggle:
if (parse_toggle_state(cmd, arg) == 1)
{
config->feature_flags |= RUNTIME_FEATURE_HTTP_TOGGLE;
}
else
{
config->feature_flags &= ~RUNTIME_FEATURE_HTTP_TOGGLE;
}
break;
/* *************************************************************************
* enforce-blocks 0|1
* *************************************************************************/
case hash_enforce_blocks:
#ifdef FEATURE_FORCE_LOAD
if (parse_toggle_state(cmd, arg) == 1)
{
config->feature_flags |= RUNTIME_FEATURE_ENFORCE_BLOCKS;
}
else
{
config->feature_flags &= ~RUNTIME_FEATURE_ENFORCE_BLOCKS;
}
#else
log_error(LOG_LEVEL_ERROR, "Ignoring directive 'enforce-blocks'. "
"FEATURE_FORCE_LOAD is disabled, blocks will always be enforced.");
#endif /* def FEATURE_FORCE_LOAD */
break;
/* *************************************************************************
* filterfile file-name
* In confdir by default.
* *************************************************************************/
case hash_filterfile :
i = 0;
while ((i < MAX_AF_FILES) && (NULL != config->re_filterfile[i]))
{
i++;
}
if (i >= MAX_AF_FILES)
{
log_error(LOG_LEVEL_FATAL, "Too many 'filterfile' directives in config file - limit is %d.\n"
"(You can increase this limit by changing MAX_AF_FILES in project.h and recompiling).",
MAX_AF_FILES);
}
config->re_filterfile_short[i] = strdup(arg);
config->re_filterfile[i] = make_path(config->confdir, arg);
break;
/* *************************************************************************
* forward url-pattern (.|http-proxy-host[:port])
* *************************************************************************/
case hash_forward:
strlcpy(tmp, arg, sizeof(tmp));
vec_count = ssplit(tmp, " \t", vec, SZ(vec));
if (vec_count != 2)
{
log_error(LOG_LEVEL_ERROR, "Wrong number of parameters for forward "
"directive in configuration file.");
string_append(&config->proxy_args,
"<br>\nWARNING: Wrong number of parameters for "
"forward directive in configuration file.");
break;
}
/* allocate a new node */
cur_fwd = zalloc(sizeof(*cur_fwd));
if (cur_fwd == NULL)
{
log_error(LOG_LEVEL_FATAL, "can't allocate memory for configuration");
/* Never get here - LOG_LEVEL_FATAL causes program exit */
break;
}
cur_fwd->type = SOCKS_NONE;
/* Save the URL pattern */
if (create_url_spec(cur_fwd->url, vec[0]))
{
log_error(LOG_LEVEL_ERROR, "Bad URL specifier for forward "
"directive in configuration file.");
string_append(&config->proxy_args,
"<br>\nWARNING: Bad URL specifier for "
"forward directive in configuration file.");
break;
}
/* Parse the parent HTTP proxy host:port */
p = vec[1];
if (strcmp(p, ".") != 0)
{
cur_fwd->forward_port = 8000;
parse_forwarder_address(p, &cur_fwd->forward_host,
&cur_fwd->forward_port);
}
/* Add to list. */
cur_fwd->next = config->forward;
config->forward = cur_fwd;
break;
/* *************************************************************************
* forward-socks4 url-pattern socks-proxy[:port] (.|http-proxy[:port])
* *************************************************************************/
case hash_forward_socks4:
strlcpy(tmp, arg, sizeof(tmp));
vec_count = ssplit(tmp, " \t", vec, SZ(vec));
if (vec_count != 3)
{
log_error(LOG_LEVEL_ERROR, "Wrong number of parameters for "
"forward-socks4 directive in configuration file.");
string_append(&config->proxy_args,
"<br>\nWARNING: Wrong number of parameters for "
"forward-socks4 directive in configuration file.");
break;
}
/* allocate a new node */
cur_fwd = zalloc(sizeof(*cur_fwd));
if (cur_fwd == NULL)
{
log_error(LOG_LEVEL_FATAL, "can't allocate memory for configuration");
/* Never get here - LOG_LEVEL_FATAL causes program exit */
break;
}
cur_fwd->type = SOCKS_4;
/* Save the URL pattern */
if (create_url_spec(cur_fwd->url, vec[0]))
{
log_error(LOG_LEVEL_ERROR, "Bad URL specifier for forward-socks4 "
"directive in configuration file.");
string_append(&config->proxy_args,
"<br>\nWARNING: Bad URL specifier for "
"forward-socks4 directive in configuration file.");
break;
}
/* Parse the SOCKS proxy host[:port] */
p = vec[1];
/* XXX: This check looks like a bug. */
if (strcmp(p, ".") != 0)
{
cur_fwd->gateway_port = 1080;
parse_forwarder_address(p, &cur_fwd->gateway_host,
&cur_fwd->gateway_port);
}
/* Parse the parent HTTP proxy host[:port] */
p = vec[2];
if (strcmp(p, ".") != 0)
{
cur_fwd->forward_port = 8000;
parse_forwarder_address(p, &cur_fwd->forward_host,
&cur_fwd->forward_port);
}