]> git.ipfire.org Git - thirdparty/squid.git/blob - src/cache_cf.cc
Merged from trunk
[thirdparty/squid.git] / src / cache_cf.cc
1 /*
2 * $Id$
3 *
4 * DEBUG: section 3 Configuration File Parsing
5 * AUTHOR: Harvest Derived
6 *
7 * SQUID Web Proxy Cache http://www.squid-cache.org/
8 * ----------------------------------------------------------
9 *
10 * Squid is the result of efforts by numerous individuals from
11 * the Internet community; see the CONTRIBUTORS file for full
12 * details. Many organizations have provided support for Squid's
13 * development; see the SPONSORS file for full details. Squid is
14 * Copyrighted (C) 2001 by the Regents of the University of
15 * California; see the COPYRIGHT file for full details. Squid
16 * incorporates software developed and/or copyrighted by other
17 * sources; see the CREDITS file for full details.
18 *
19 * This program is free software; you can redistribute it and/or modify
20 * it under the terms of the GNU General Public License as published by
21 * the Free Software Foundation; either version 2 of the License, or
22 * (at your option) any later version.
23 *
24 * This program is distributed in the hope that it will be useful,
25 * but WITHOUT ANY WARRANTY; without even the implied warranty of
26 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
27 * GNU General Public License for more details.
28 *
29 * You should have received a copy of the GNU General Public License
30 * along with this program; if not, write to the Free Software
31 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
32 *
33 */
34
35 #include "squid.h"
36 #include "authenticate.h"
37 #include "ProtoPort.h"
38 #include "HttpRequestMethod.h"
39 #include "AuthConfig.h"
40 #include "AuthScheme.h"
41 #include "CacheManager.h"
42 #include "Store.h"
43 #include "SwapDir.h"
44 #include "ConfigParser.h"
45 #include "ACL.h"
46 #include "StoreFileSystem.h"
47 #include "Parsing.h"
48 #include "MemBuf.h"
49 #include "wordlist.h"
50 #include "ip/IpIntercept.h"
51
52 #if HAVE_GLOB_H
53 #include <glob.h>
54 #endif
55
56 #if SQUID_SNMP
57 #include "snmp.h"
58 #endif
59 #if USE_SQUID_ESI
60 #include "ESIParser.h"
61 #endif
62
63 #if USE_ADAPTATION
64 #include "adaptation/Config.h"
65
66 static void parse_adaptation_service_set_type();
67 static void parse_adaptation_access_type();
68
69 #endif
70
71 #if ICAP_CLIENT
72 #include "ICAP/ICAPConfig.h"
73
74 static void parse_icap_service_type(ICAPConfig *);
75 static void dump_icap_service_type(StoreEntry *, const char *, const ICAPConfig &);
76 static void free_icap_service_type(ICAPConfig *);
77 static void parse_icap_class_type();
78 static void parse_icap_access_type();
79
80 #endif
81
82 #if USE_ECAP
83 #include "eCAP/Config.h"
84 static void parse_ecap_service_type(Ecap::Config *);
85 static void dump_ecap_service_type(StoreEntry *, const char *, const Ecap::Config &);
86 static void free_ecap_service_type(Ecap::Config *);
87 #endif
88
89 CBDATA_TYPE(peer);
90
91 static const char *const T_SECOND_STR = "second";
92 static const char *const T_MINUTE_STR = "minute";
93 static const char *const T_HOUR_STR = "hour";
94 static const char *const T_DAY_STR = "day";
95 static const char *const T_WEEK_STR = "week";
96 static const char *const T_FORTNIGHT_STR = "fortnight";
97 static const char *const T_MONTH_STR = "month";
98 static const char *const T_YEAR_STR = "year";
99 static const char *const T_DECADE_STR = "decade";
100
101 static const char *const B_BYTES_STR = "bytes";
102 static const char *const B_KBYTES_STR = "KB";
103 static const char *const B_MBYTES_STR = "MB";
104 static const char *const B_GBYTES_STR = "GB";
105
106 static const char *const list_sep = ", \t\n\r";
107
108 static void parse_logformat(logformat ** logformat_definitions);
109 static void parse_access_log(customlog ** customlog_definitions);
110 static int check_null_access_log(customlog *customlog_definitions);
111
112 static void dump_logformat(StoreEntry * entry, const char *name, logformat * definitions);
113 static void dump_access_log(StoreEntry * entry, const char *name, customlog * definitions);
114 static void free_logformat(logformat ** definitions);
115 static void free_access_log(customlog ** definitions);
116
117 static void update_maxobjsize(void);
118 static void configDoConfigure(void);
119 static void parse_refreshpattern(refresh_t **);
120 static int parseTimeUnits(const char *unit);
121 static void parseTimeLine(time_t * tptr, const char *units);
122 static void parse_ushort(u_short * var);
123 static void parse_string(char **);
124 static void default_all(void);
125 static void defaults_if_none(void);
126 static int parse_line(char *);
127 static void parseBytesLine(size_t * bptr, const char *units);
128 static size_t parseBytesUnits(const char *unit);
129 static void free_all(void);
130 void requirePathnameExists(const char *name, const char *path);
131 static OBJH dump_config;
132 #if HTTP_VIOLATIONS
133 static void dump_http_header_access(StoreEntry * entry, const char *name, header_mangler header[]);
134 static void parse_http_header_access(header_mangler header[]);
135 static void free_http_header_access(header_mangler header[]);
136 static void dump_http_header_replace(StoreEntry * entry, const char *name, header_mangler header[]);
137 static void parse_http_header_replace(header_mangler * header);
138 static void free_http_header_replace(header_mangler * header);
139 #endif
140 static void parse_denyinfo(acl_deny_info_list ** var);
141 static void dump_denyinfo(StoreEntry * entry, const char *name, acl_deny_info_list * var);
142 static void free_denyinfo(acl_deny_info_list ** var);
143
144 #if USE_WCCPv2
145 static void parse_IpAddress_list(IpAddress_list **);
146 static void dump_IpAddress_list(StoreEntry *, const char *, const IpAddress_list *);
147 static void free_IpAddress_list(IpAddress_list **);
148 #if CURRENTLY_UNUSED
149 static int check_null_IpAddress_list(const IpAddress_list *);
150 #endif /* CURRENTLY_UNUSED */
151 #endif /* USE_WCCPv2 */
152
153 static void parse_http_port_list(http_port_list **);
154 static void dump_http_port_list(StoreEntry *, const char *, const http_port_list *);
155 static void free_http_port_list(http_port_list **);
156
157 #if USE_SSL
158 static void parse_https_port_list(https_port_list **);
159 static void dump_https_port_list(StoreEntry *, const char *, const https_port_list *);
160 static void free_https_port_list(https_port_list **);
161 #if 0
162 static int check_null_https_port_list(const https_port_list *);
163 #endif
164 #endif /* USE_SSL */
165
166 static void parse_b_size_t(size_t * var);
167 static void parse_b_int64_t(int64_t * var);
168
169 static int parseOneConfigFile(const char *file_name, unsigned int depth);
170
171 /*
172 * LegacyParser is a parser for legacy code that uses the global
173 * approach. This is static so that it is only exposed to cache_cf.
174 * Other modules needing access to a ConfigParser should have it
175 * provided to them in their parserFOO methods.
176 */
177 static ConfigParser LegacyParser = ConfigParser();
178
179 void
180 self_destruct(void)
181 {
182 LegacyParser.destruct();
183 }
184
185 static void
186 update_maxobjsize(void)
187 {
188 int i;
189 int64_t ms = -1;
190
191 for (i = 0; i < Config.cacheSwap.n_configured; i++) {
192 assert (Config.cacheSwap.swapDirs[i].getRaw());
193
194 if (dynamic_cast<SwapDir *>(Config.cacheSwap.swapDirs[i].getRaw())->
195 max_objsize > ms)
196 ms = dynamic_cast<SwapDir *>(Config.cacheSwap.swapDirs[i].getRaw())->max_objsize;
197 }
198 store_maxobjsize = ms;
199 }
200
201 static void
202 SetConfigFilename(char const *file_name, bool is_pipe)
203 {
204 cfg_filename = file_name;
205
206 char const *token;
207
208 if (is_pipe)
209 cfg_filename = file_name + 1;
210 else if ((token = strrchr(cfg_filename, '/')))
211 cfg_filename = token + 1;
212 }
213
214 static const char*
215 skip_ws(const char* s)
216 {
217 while (xisspace(*s))
218 ++s;
219
220 return s;
221 }
222
223 static int
224 parseManyConfigFiles(char* files, int depth)
225 {
226 int error_count = 0;
227 char* saveptr = NULL;
228 #if HAVE_GLOB
229 char *path;
230 glob_t globbuf;
231 int i;
232 memset(&globbuf, 0, sizeof(globbuf));
233 for (path = strwordtok(files, &saveptr); path; path = strwordtok(NULL, &saveptr)) {
234 if (glob(path, globbuf.gl_pathc ? GLOB_APPEND : 0, NULL, &globbuf) != 0) {
235 fatalf("Unable to find configuration file: %s: %s",
236 path, xstrerror());
237 }
238 }
239 for (i = 0; i < (int)globbuf.gl_pathc; i++) {
240 error_count += parseOneConfigFile(globbuf.gl_pathv[i], depth);
241 }
242 globfree(&globbuf);
243 #else
244 char* file = strwordtok(files, &saveptr);
245 while (file != NULL) {
246 error_count += parseOneConfigFile(file, depth);
247 file = strwordtok(NULL, &saveptr);
248 }
249 #endif /* HAVE_GLOB */
250 return error_count;
251 }
252
253 static int
254 parseOneConfigFile(const char *file_name, unsigned int depth)
255 {
256 FILE *fp = NULL;
257 const char *orig_cfg_filename = cfg_filename;
258 const int orig_config_lineno = config_lineno;
259 char *token = NULL;
260 char *tmp_line = NULL;
261 int tmp_line_len = 0;
262 int err_count = 0;
263 int is_pipe = 0;
264
265 debugs(3, 1, "Processing Configuration File: " << file_name << " (depth " << depth << ")");
266 if (depth > 16) {
267 fatalf("WARNING: can't include %s: includes are nested too deeply (>16)!\n", file_name);
268 return 1;
269 }
270
271 if (file_name[0] == '!' || file_name[0] == '|') {
272 fp = popen(file_name + 1, "r");
273 is_pipe = 1;
274 } else {
275 fp = fopen(file_name, "r");
276 }
277
278 if (fp == NULL)
279 fatalf("Unable to open configuration file: %s: %s", file_name, xstrerror());
280
281 #ifdef _SQUID_WIN32_
282
283 setmode(fileno(fp), O_TEXT);
284
285 #endif
286
287 SetConfigFilename(file_name, bool(is_pipe));
288
289 memset(config_input_line, '\0', BUFSIZ);
290
291 config_lineno = 0;
292
293 while (fgets(config_input_line, BUFSIZ, fp)) {
294 config_lineno++;
295
296 if ((token = strchr(config_input_line, '\n')))
297 *token = '\0';
298
299 if ((token = strchr(config_input_line, '\r')))
300 *token = '\0';
301
302 if (strncmp(config_input_line, "#line ", 6) == 0) {
303 static char new_file_name[1024];
304 static char *file;
305 static char new_lineno;
306 token = config_input_line + 6;
307 new_lineno = strtol(token, &file, 0) - 1;
308
309 if (file == token)
310 continue; /* Not a valid #line directive, may be a comment */
311
312 while (*file && xisspace((unsigned char) *file))
313 file++;
314
315 if (*file) {
316 if (*file != '"')
317 continue; /* Not a valid #line directive, may be a comment */
318
319 xstrncpy(new_file_name, file + 1, sizeof(new_file_name));
320
321 if ((token = strchr(new_file_name, '"')))
322 *token = '\0';
323
324 cfg_filename = new_file_name;
325 }
326
327 config_lineno = new_lineno;
328 }
329
330 if (config_input_line[0] == '#')
331 continue;
332
333 if (config_input_line[0] == '\0')
334 continue;
335
336 const char* append = tmp_line_len ? skip_ws(config_input_line) : config_input_line;
337
338 size_t append_len = strlen(append);
339
340 tmp_line = (char*)xrealloc(tmp_line, tmp_line_len + append_len + 1);
341
342 strcpy(tmp_line + tmp_line_len, append);
343
344 tmp_line_len += append_len;
345
346 if (tmp_line[tmp_line_len-1] == '\\') {
347 debugs(3, 5, "parseConfigFile: tmp_line='" << tmp_line << "'");
348 tmp_line[--tmp_line_len] = '\0';
349 continue;
350 }
351
352 debugs(3, 5, "Processing: '" << tmp_line << "'");
353
354 /* Handle includes here */
355 if (tmp_line_len >= 9 && strncmp(tmp_line, "include", 7) == 0 && xisspace(tmp_line[7])) {
356 err_count += parseManyConfigFiles(tmp_line + 8, depth + 1);
357 } else if (!parse_line(tmp_line)) {
358 debugs(3, 0, HERE << cfg_filename << ":" << config_lineno << " unrecognized: '" << tmp_line << "'");
359 err_count++;
360 }
361
362 safe_free(tmp_line);
363 tmp_line_len = 0;
364
365 }
366
367 if (is_pipe) {
368 int ret = pclose(fp);
369
370 if (ret != 0)
371 fatalf("parseConfigFile: '%s' failed with exit code %d\n", file_name, ret);
372 } else {
373 fclose(fp);
374 }
375
376 cfg_filename = orig_cfg_filename;
377 config_lineno = orig_config_lineno;
378
379 return err_count;
380 }
381
382 int
383 parseConfigFile(const char *file_name)
384 {
385 int err_count = 0;
386 CacheManager *manager=CacheManager::GetInstance();
387
388 configFreeMemory();
389
390 default_all();
391
392 err_count = parseOneConfigFile(file_name, 0);
393
394 defaults_if_none();
395
396 /*
397 * We must call configDoConfigure() before leave_suid() because
398 * configDoConfigure() is where we turn username strings into
399 * uid values.
400 */
401 configDoConfigure();
402
403 if (!Config.chroot_dir) {
404 leave_suid();
405 setUmask(Config.umask);
406 _db_init(Config.Log.log, Config.debugOptions);
407 enter_suid();
408 }
409
410 if (opt_send_signal == -1) {
411 manager->registerAction("config",
412 "Current Squid Configuration",
413 dump_config,
414 1, 1);
415 }
416
417 return err_count;
418 }
419
420
421 static void
422 configDoConfigure(void)
423 {
424 memset(&Config2, '\0', sizeof(SquidConfig2));
425 /* init memory as early as possible */
426 memConfigure();
427 /* Sanity checks */
428
429 #if SIZEOF_OFF_T <= 4
430 if (Config.Store.maxObjectSize > 0x7FFF0000) {
431 debugs(3, 0, "WARNING: This Squid binary can not handle files larger than 2GB. Limiting maximum_object_size to just below 2GB");
432 Config.Store.maxObjectSize = 0x7FFF0000;
433 }
434 #endif
435 if (0 == Store::Root().maxSize())
436 /* people might want a zero-sized cache on purpose */
437 (void) 0;
438 else if (Store::Root().maxSize() < (Config.memMaxSize >> 10))
439 /* This is bogus. folk with NULL caches will want this */
440 debugs(3, 0, "WARNING cache_mem is larger than total disk cache space!");
441
442 if (Config.Announce.period > 0) {
443 Config.onoff.announce = 1;
444 } else if (Config.Announce.period < 1) {
445 Config.Announce.period = 86400 * 365; /* one year */
446 Config.onoff.announce = 0;
447 }
448
449 if (Config.onoff.httpd_suppress_version_string)
450 visible_appname_string = (char *)appname_string;
451 else
452 visible_appname_string = (char const *)APP_FULLNAME;
453
454 #if USE_DNSSERVERS
455
456 if (Config.dnsChildren < 1)
457 fatal("No dnsservers allocated");
458
459 #endif
460
461 if (Config.Program.redirect) {
462 if (Config.redirectChildren < 1) {
463 Config.redirectChildren = 0;
464 wordlistDestroy(&Config.Program.redirect);
465 }
466 }
467
468 if (Config.appendDomain)
469 if (*Config.appendDomain != '.')
470 fatal("append_domain must begin with a '.'");
471
472 if (Config.errHtmlText == NULL)
473 Config.errHtmlText = xstrdup(null_string);
474
475 storeConfigure();
476
477 snprintf(ThisCache, sizeof(ThisCache), "%s (%s)",
478 uniqueHostname(),
479 visible_appname_string);
480
481 /*
482 * the extra space is for loop detection in client_side.c -- we search
483 * for substrings in the Via header.
484 */
485 snprintf(ThisCache2, sizeof(ThisCache), " %s (%s)",
486 uniqueHostname(),
487 visible_appname_string);
488
489 if (!Config.udpMaxHitObjsz || Config.udpMaxHitObjsz > SQUID_UDP_SO_SNDBUF)
490 Config.udpMaxHitObjsz = SQUID_UDP_SO_SNDBUF;
491
492 if (Config.appendDomain)
493 Config.appendDomainLen = strlen(Config.appendDomain);
494 else
495 Config.appendDomainLen = 0;
496
497 safe_free(debug_options)
498 debug_options = xstrdup(Config.debugOptions);
499
500 if (Config.retry.maxtries > 10)
501 fatal("maximum_single_addr_tries cannot be larger than 10");
502
503 if (Config.retry.maxtries < 1) {
504 debugs(3, 0, "WARNING: resetting 'maximum_single_addr_tries to 1");
505 Config.retry.maxtries = 1;
506 }
507
508 requirePathnameExists("MIME Config Table", Config.mimeTablePathname);
509 #if USE_DNSSERVERS
510
511 requirePathnameExists("cache_dns_program", Config.Program.dnsserver);
512 #endif
513 #if USE_UNLINKD
514
515 requirePathnameExists("unlinkd_program", Config.Program.unlinkd);
516 #endif
517
518 if (Config.Program.redirect)
519 requirePathnameExists("redirect_program", Config.Program.redirect->key);
520
521 requirePathnameExists("Icon Directory", Config.icons.directory);
522
523 if (Config.errorDirectory)
524 requirePathnameExists("Error Directory", Config.errorDirectory);
525
526 #if HTTP_VIOLATIONS
527
528 {
529 const refresh_t *R;
530
531 for (R = Config.Refresh; R; R = R->next) {
532 if (!R->flags.override_expire)
533 continue;
534
535 debugs(22, 1, "WARNING: use of 'override-expire' in 'refresh_pattern' violates HTTP");
536
537 break;
538 }
539
540 for (R = Config.Refresh; R; R = R->next) {
541 if (!R->flags.override_lastmod)
542 continue;
543
544 debugs(22, 1, "WARNING: use of 'override-lastmod' in 'refresh_pattern' violates HTTP");
545
546 break;
547 }
548
549 for (R = Config.Refresh; R; R = R->next) {
550 if (!R->flags.reload_into_ims)
551 continue;
552
553 debugs(22, 1, "WARNING: use of 'reload-into-ims' in 'refresh_pattern' violates HTTP");
554
555 break;
556 }
557
558 for (R = Config.Refresh; R; R = R->next) {
559 if (!R->flags.ignore_reload)
560 continue;
561
562 debugs(22, 1, "WARNING: use of 'ignore-reload' in 'refresh_pattern' violates HTTP");
563
564 break;
565 }
566
567 for (R = Config.Refresh; R; R = R->next) {
568 if (!R->flags.ignore_no_cache)
569 continue;
570
571 debugs(22, 1, "WARNING: use of 'ignore-no-cache' in 'refresh_pattern' violates HTTP");
572
573 break;
574 }
575
576 for (R = Config.Refresh; R; R = R->next) {
577 if (!R->flags.ignore_no_store)
578 continue;
579
580 debugs(22, 1, "WARNING: use of 'ignore-no-store' in 'refresh_pattern' violates HTTP");
581
582 break;
583 }
584
585 for (R = Config.Refresh; R; R = R->next) {
586 if (!R->flags.ignore_private)
587 continue;
588
589 debugs(22, 1, "WARNING: use of 'ignore-private' in 'refresh_pattern' violates HTTP");
590
591 break;
592 }
593
594 for (R = Config.Refresh; R; R = R->next) {
595 if (!R->flags.ignore_auth)
596 continue;
597
598 debugs(22, 1, "WARNING: use of 'ignore-auth' in 'refresh_pattern' violates HTTP");
599
600 break;
601 }
602
603 }
604 #endif
605 #if !HTTP_VIOLATIONS
606 Config.onoff.via = 1;
607 #else
608
609 if (!Config.onoff.via)
610 debugs(22, 1, "WARNING: HTTP requires the use of Via");
611
612 #endif
613
614 if (aclPurgeMethodInUse(Config.accessList.http))
615 Config2.onoff.enable_purge = 1;
616
617 Config2.onoff.mangle_request_headers = httpReqHdrManglersConfigured();
618
619 if (geteuid() == 0) {
620 if (NULL != Config.effectiveUser) {
621
622 struct passwd *pwd = getpwnam(Config.effectiveUser);
623
624 if (NULL == pwd) {
625 /*
626 * Andres Kroonmaa <andre@online.ee>:
627 * Some getpwnam() implementations (Solaris?) require
628 * an available FD < 256 for opening a FILE* to the
629 * passwd file.
630 * DW:
631 * This should be safe at startup, but might still fail
632 * during reconfigure.
633 */
634 fatalf("getpwnam failed to find userid for effective user '%s'",
635 Config.effectiveUser);
636 return;
637 }
638
639 Config2.effectiveUserID = pwd->pw_uid;
640
641 Config2.effectiveGroupID = pwd->pw_gid;
642
643 #if HAVE_PUTENV
644
645 if (pwd->pw_dir && *pwd->pw_dir) {
646 int len;
647 char *env_str = (char *)xcalloc((len = strlen(pwd->pw_dir) + 6), 1);
648 snprintf(env_str, len, "HOME=%s", pwd->pw_dir);
649 putenv(env_str);
650 }
651
652 #endif
653
654 }
655 } else {
656 Config2.effectiveUserID = geteuid();
657 Config2.effectiveGroupID = getegid();
658 }
659
660 if (NULL != Config.effectiveGroup) {
661
662 struct group *grp = getgrnam(Config.effectiveGroup);
663
664 if (NULL == grp) {
665 fatalf("getgrnam failed to find groupid for effective group '%s'",
666 Config.effectiveGroup);
667 return;
668 }
669
670 Config2.effectiveGroupID = grp->gr_gid;
671 }
672
673 HttpRequestMethod::Configure(Config);
674 #if USE_SSL
675
676 debugs(3, 1, "Initializing https proxy context");
677
678 Config.ssl_client.sslContext = sslCreateClientContext(Config.ssl_client.cert, Config.ssl_client.key, Config.ssl_client.version, Config.ssl_client.cipher, Config.ssl_client.options, Config.ssl_client.flags, Config.ssl_client.cafile, Config.ssl_client.capath, Config.ssl_client.crlfile);
679
680 {
681
682 peer *p;
683
684 for (p = Config.peers; p != NULL; p = p->next) {
685 if (p->use_ssl) {
686 debugs(3, 1, "Initializing cache_peer " << p->name << " SSL context");
687 p->sslContext = sslCreateClientContext(p->sslcert, p->sslkey, p->sslversion, p->sslcipher, p->ssloptions, p->sslflags, p->sslcafile, p->sslcapath, p->sslcrlfile);
688 }
689 }
690 }
691
692 {
693
694 http_port_list *s;
695
696 for (s = Config.Sockaddr.http; s != NULL; s = (http_port_list *) s->next) {
697 if (!s->cert && !s->key)
698 continue;
699
700 debugs(3, 1, "Initializing http_port " << s->http.s << " SSL context");
701
702 s->sslContext = sslCreateServerContext(s->cert, s->key, s->version, s->cipher, s->options, s->sslflags, s->clientca, s->cafile, s->capath, s->crlfile, s->dhfile, s->sslcontext);
703 }
704 }
705
706 {
707
708 https_port_list *s;
709
710 for (s = Config.Sockaddr.https; s != NULL; s = (https_port_list *) s->http.next) {
711 debugs(3, 1, "Initializing https_port " << s->http.s << " SSL context");
712
713 s->sslContext = sslCreateServerContext(s->cert, s->key, s->version, s->cipher, s->options, s->sslflags, s->clientca, s->cafile, s->capath, s->crlfile, s->dhfile, s->sslcontext);
714 }
715 }
716
717 #endif
718 }
719
720 /* Parse a time specification from the config file. Store the
721 * result in 'tptr', after converting it to 'units' */
722 static void
723 parseTimeLine(time_t * tptr, const char *units)
724 {
725 char *token;
726 double d;
727 time_t m;
728 time_t u;
729
730 if ((u = parseTimeUnits(units)) == 0)
731 self_destruct();
732
733 if ((token = strtok(NULL, w_space)) == NULL)
734 self_destruct();
735
736 d = xatof(token);
737
738 m = u; /* default to 'units' if none specified */
739
740 if (0 == d)
741 (void) 0;
742 else if ((token = strtok(NULL, w_space)) == NULL)
743 debugs(3, 0, "WARNING: No units on '" <<
744 config_input_line << "', assuming " <<
745 d << " " << units );
746 else if ((m = parseTimeUnits(token)) == 0)
747 self_destruct();
748
749 *tptr = static_cast<time_t> (m * d / u);
750 }
751
752 static int
753 parseTimeUnits(const char *unit)
754 {
755 if (!strncasecmp(unit, T_SECOND_STR, strlen(T_SECOND_STR)))
756 return 1;
757
758 if (!strncasecmp(unit, T_MINUTE_STR, strlen(T_MINUTE_STR)))
759 return 60;
760
761 if (!strncasecmp(unit, T_HOUR_STR, strlen(T_HOUR_STR)))
762 return 3600;
763
764 if (!strncasecmp(unit, T_DAY_STR, strlen(T_DAY_STR)))
765 return 86400;
766
767 if (!strncasecmp(unit, T_WEEK_STR, strlen(T_WEEK_STR)))
768 return 86400 * 7;
769
770 if (!strncasecmp(unit, T_FORTNIGHT_STR, strlen(T_FORTNIGHT_STR)))
771 return 86400 * 14;
772
773 if (!strncasecmp(unit, T_MONTH_STR, strlen(T_MONTH_STR)))
774 return 86400 * 30;
775
776 if (!strncasecmp(unit, T_YEAR_STR, strlen(T_YEAR_STR)))
777 return static_cast<int>(86400 * 365.2522);
778
779 if (!strncasecmp(unit, T_DECADE_STR, strlen(T_DECADE_STR)))
780 return static_cast<int>(86400 * 365.2522 * 10);
781
782 debugs(3, 1, "parseTimeUnits: unknown time unit '" << unit << "'");
783
784 return 0;
785 }
786
787 static void
788 parseBytesLine64(int64_t * bptr, const char *units)
789 {
790 char *token;
791 double d;
792 int64_t m;
793 int64_t u;
794
795 if ((u = parseBytesUnits(units)) == 0) {
796 self_destruct();
797 return;
798 }
799
800 if ((token = strtok(NULL, w_space)) == NULL) {
801 self_destruct();
802 return;
803 }
804
805 if (strcmp(token, "none") == 0 || strcmp(token, "-1") == 0) {
806 *bptr = -1;
807 return;
808 }
809
810 d = xatof(token);
811
812 m = u; /* default to 'units' if none specified */
813
814 if (0.0 == d)
815 (void) 0;
816 else if ((token = strtok(NULL, w_space)) == NULL)
817 debugs(3, 0, "WARNING: No units on '" <<
818 config_input_line << "', assuming " <<
819 d << " " << units );
820 else if ((m = parseBytesUnits(token)) == 0) {
821 self_destruct();
822 return;
823 }
824
825 *bptr = static_cast<int64_t>(m * d / u);
826
827 if (static_cast<double>(*bptr) * 2 != m * d / u * 2)
828 self_destruct();
829 }
830
831
832 static void
833 parseBytesLine(size_t * bptr, const char *units)
834 {
835 char *token;
836 double d;
837 int m;
838 int u;
839
840 if ((u = parseBytesUnits(units)) == 0) {
841 self_destruct();
842 return;
843 }
844
845 if ((token = strtok(NULL, w_space)) == NULL) {
846 self_destruct();
847 return;
848 }
849
850 if (strcmp(token, "none") == 0 || strcmp(token, "-1") == 0) {
851 *bptr = static_cast<size_t>(-1);
852 return;
853 }
854
855 d = xatof(token);
856
857 m = u; /* default to 'units' if none specified */
858
859 if (0.0 == d)
860 (void) 0;
861 else if ((token = strtok(NULL, w_space)) == NULL)
862 debugs(3, 0, "WARNING: No units on '" <<
863 config_input_line << "', assuming " <<
864 d << " " << units );
865 else if ((m = parseBytesUnits(token)) == 0) {
866 self_destruct();
867 return;
868 }
869
870 *bptr = static_cast<size_t>(m * d / u);
871
872 if (static_cast<double>(*bptr) * 2 != m * d / u * 2)
873 self_destruct();
874 }
875
876 static size_t
877 parseBytesUnits(const char *unit)
878 {
879 if (!strncasecmp(unit, B_BYTES_STR, strlen(B_BYTES_STR)))
880 return 1;
881
882 if (!strncasecmp(unit, B_KBYTES_STR, strlen(B_KBYTES_STR)))
883 return 1 << 10;
884
885 if (!strncasecmp(unit, B_MBYTES_STR, strlen(B_MBYTES_STR)))
886 return 1 << 20;
887
888 if (!strncasecmp(unit, B_GBYTES_STR, strlen(B_GBYTES_STR)))
889 return 1 << 30;
890
891 debugs(3, 1, "parseBytesUnits: unknown bytes unit '" << unit << "'");
892
893 return 0;
894 }
895
896 /*****************************************************************************
897 * Max
898 *****************************************************************************/
899
900 static void
901 dump_acl(StoreEntry * entry, const char *name, ACL * ae)
902 {
903 wordlist *w;
904 wordlist *v;
905
906 while (ae != NULL) {
907 debugs(3, 3, "dump_acl: " << name << " " << ae->name);
908 storeAppendPrintf(entry, "%s %s %s ",
909 name,
910 ae->name,
911 ae->typeString());
912 v = w = ae->dump();
913
914 while (v != NULL) {
915 debugs(3, 3, "dump_acl: " << name << " " << ae->name << " " << v->key);
916 storeAppendPrintf(entry, "%s ", v->key);
917 v = v->next;
918 }
919
920 storeAppendPrintf(entry, "\n");
921 wordlistDestroy(&w);
922 ae = ae->next;
923 }
924 }
925
926 static void
927 parse_acl(ACL ** ae)
928 {
929 ACL::ParseAclLine(LegacyParser, ae);
930 }
931
932 static void
933 free_acl(ACL ** ae)
934 {
935 aclDestroyAcls(ae);
936 }
937
938 static void
939 dump_acl_list(StoreEntry * entry, ACLList * head)
940 {
941 ACLList *l;
942
943 for (l = head; l; l = l->next) {
944 storeAppendPrintf(entry, " %s%s",
945 l->op ? null_string : "!",
946 l->_acl->name);
947 }
948 }
949
950 void
951 dump_acl_access(StoreEntry * entry, const char *name, acl_access * head)
952 {
953 acl_access *l;
954
955 for (l = head; l; l = l->next) {
956 storeAppendPrintf(entry, "%s %s",
957 name,
958 l->allow ? "Allow" : "Deny");
959 dump_acl_list(entry, l->aclList);
960 storeAppendPrintf(entry, "\n");
961 }
962 }
963
964 static void
965 parse_acl_access(acl_access ** head)
966 {
967 aclParseAccessLine(LegacyParser, head);
968 }
969
970 static void
971 free_acl_access(acl_access ** head)
972 {
973 aclDestroyAccessList(head);
974 }
975
976 static void
977 dump_address(StoreEntry * entry, const char *name, IpAddress &addr)
978 {
979 char buf[MAX_IPSTRLEN];
980 storeAppendPrintf(entry, "%s %s\n", name, addr.NtoA(buf,MAX_IPSTRLEN) );
981 }
982
983 static void
984 parse_address(IpAddress *addr)
985 {
986 char *token = strtok(NULL, w_space);
987
988 if (!token) {
989 self_destruct();
990 return;
991 }
992
993 if (!strcmp(token,"any_addr")) {
994 addr->SetAnyAddr();
995 (void) 0;
996 } else if ( (!strcmp(token,"no_addr")) || (!strcmp(token,"full_mask")) ) {
997 addr->SetNoAddr();
998 (void) 0;
999 } else
1000 *addr = token;
1001 }
1002
1003 static void
1004 free_address(IpAddress *addr)
1005 {
1006 addr->SetEmpty();
1007 }
1008
1009 CBDATA_TYPE(acl_address);
1010
1011 static void
1012 dump_acl_address(StoreEntry * entry, const char *name, acl_address * head)
1013 {
1014 char buf[MAX_IPSTRLEN];
1015 acl_address *l;
1016
1017 for (l = head; l; l = l->next) {
1018 if (!l->addr.IsAnyAddr())
1019 storeAppendPrintf(entry, "%s %s", name, l->addr.NtoA(buf,MAX_IPSTRLEN));
1020 else
1021 storeAppendPrintf(entry, "%s autoselect", name);
1022
1023 dump_acl_list(entry, l->aclList);
1024
1025 storeAppendPrintf(entry, "\n");
1026 }
1027 }
1028
1029 static void
1030 freed_acl_address(void *data)
1031 {
1032 acl_address *l = static_cast<acl_address *>(data);
1033 aclDestroyAclList(&l->aclList);
1034 }
1035
1036 static void
1037 parse_acl_address(acl_address ** head)
1038 {
1039 acl_address *l;
1040 acl_address **tail = head; /* sane name below */
1041 CBDATA_INIT_TYPE_FREECB(acl_address, freed_acl_address);
1042 l = cbdataAlloc(acl_address);
1043 parse_address(&l->addr);
1044 aclParseAclList(LegacyParser, &l->aclList);
1045
1046 while (*tail)
1047 tail = &(*tail)->next;
1048
1049 *tail = l;
1050 }
1051
1052 static void
1053 free_acl_address(acl_address ** head)
1054 {
1055 while (*head) {
1056 acl_address *l = *head;
1057 *head = l->next;
1058 cbdataFree(l);
1059 }
1060 }
1061
1062 CBDATA_TYPE(acl_tos);
1063
1064 static void
1065 dump_acl_tos(StoreEntry * entry, const char *name, acl_tos * head)
1066 {
1067 acl_tos *l;
1068
1069 for (l = head; l; l = l->next) {
1070 if (l->tos > 0)
1071 storeAppendPrintf(entry, "%s 0x%02X", name, l->tos);
1072 else
1073 storeAppendPrintf(entry, "%s none", name);
1074
1075 dump_acl_list(entry, l->aclList);
1076
1077 storeAppendPrintf(entry, "\n");
1078 }
1079 }
1080
1081 static void
1082 freed_acl_tos(void *data)
1083 {
1084 acl_tos *l = static_cast<acl_tos *>(data);
1085 aclDestroyAclList(&l->aclList);
1086 }
1087
1088 static void
1089 parse_acl_tos(acl_tos ** head)
1090 {
1091 acl_tos *l;
1092 acl_tos **tail = head; /* sane name below */
1093 int tos;
1094 char junk;
1095 char *token = strtok(NULL, w_space);
1096
1097 if (!token) {
1098 self_destruct();
1099 return;
1100 }
1101
1102 if (sscanf(token, "0x%x%c", &tos, &junk) != 1) {
1103 self_destruct();
1104 return;
1105 }
1106
1107 if (tos < 0 || tos > 255) {
1108 self_destruct();
1109 return;
1110 }
1111
1112 CBDATA_INIT_TYPE_FREECB(acl_tos, freed_acl_tos);
1113
1114 l = cbdataAlloc(acl_tos);
1115
1116 l->tos = tos;
1117
1118 aclParseAclList(LegacyParser, &l->aclList);
1119
1120 while (*tail)
1121 tail = &(*tail)->next;
1122
1123 *tail = l;
1124 }
1125
1126 static void
1127 free_acl_tos(acl_tos ** head)
1128 {
1129 while (*head) {
1130 acl_tos *l = *head;
1131 *head = l->next;
1132 l->next = NULL;
1133 cbdataFree(l);
1134 }
1135 }
1136
1137 CBDATA_TYPE(acl_size_t);
1138
1139 static void
1140 dump_acl_b_size_t(StoreEntry * entry, const char *name, acl_size_t * head)
1141 {
1142 acl_size_t *l;
1143
1144 for (l = head; l; l = l->next) {
1145 if (l->size != -1)
1146 storeAppendPrintf(entry, "%s %d %s\n", name, (int) l->size, B_BYTES_STR);
1147 else
1148 storeAppendPrintf(entry, "%s none", name);
1149
1150 dump_acl_list(entry, l->aclList);
1151
1152 storeAppendPrintf(entry, "\n");
1153 }
1154 }
1155
1156 static void
1157 freed_acl_b_size_t(void *data)
1158 {
1159 acl_size_t *l = static_cast<acl_size_t *>(data);
1160 aclDestroyAclList(&l->aclList);
1161 }
1162
1163 static void
1164 parse_acl_b_size_t(acl_size_t ** head)
1165 {
1166 acl_size_t *l;
1167 acl_size_t **tail = head; /* sane name below */
1168
1169 CBDATA_INIT_TYPE_FREECB(acl_size_t, freed_acl_b_size_t);
1170
1171 l = cbdataAlloc(acl_size_t);
1172
1173 parse_b_int64_t(&l->size);
1174
1175 aclParseAclList(LegacyParser, &l->aclList);
1176
1177 while (*tail)
1178 tail = &(*tail)->next;
1179
1180 *tail = l;
1181 }
1182
1183 static void
1184 free_acl_b_size_t(acl_size_t ** head)
1185 {
1186 while (*head) {
1187 acl_size_t *l = *head;
1188 *head = l->next;
1189 l->next = NULL;
1190 cbdataFree(l);
1191 }
1192 }
1193
1194 #if DELAY_POOLS
1195
1196 #include "DelayPools.h"
1197 #include "DelayConfig.h"
1198 /* do nothing - free_delay_pool_count is the magic free function.
1199 * this is why delay_pool_count isn't just marked TYPE: ushort
1200 */
1201 #define free_delay_pool_class(X)
1202 #define free_delay_pool_access(X)
1203 #define free_delay_pool_rates(X)
1204 #define dump_delay_pool_class(X, Y, Z)
1205 #define dump_delay_pool_access(X, Y, Z)
1206 #define dump_delay_pool_rates(X, Y, Z)
1207
1208 static void
1209 free_delay_pool_count(DelayConfig * cfg)
1210 {
1211 cfg->freePoolCount();
1212 }
1213
1214 static void
1215 dump_delay_pool_count(StoreEntry * entry, const char *name, DelayConfig &cfg)
1216 {
1217 cfg.dumpPoolCount (entry, name);
1218 }
1219
1220 static void
1221 parse_delay_pool_count(DelayConfig * cfg)
1222 {
1223 cfg->parsePoolCount();
1224 }
1225
1226 static void
1227 parse_delay_pool_class(DelayConfig * cfg)
1228 {
1229 cfg->parsePoolClass();
1230 }
1231
1232 static void
1233 parse_delay_pool_rates(DelayConfig * cfg)
1234 {
1235 cfg->parsePoolRates();
1236 }
1237
1238 static void
1239 parse_delay_pool_access(DelayConfig * cfg)
1240 {
1241 cfg->parsePoolAccess(LegacyParser);
1242 }
1243
1244 #endif
1245
1246 #if HTTP_VIOLATIONS
1247 static void
1248 dump_http_header_access(StoreEntry * entry, const char *name, header_mangler header[])
1249 {
1250 int i;
1251
1252 for (i = 0; i < HDR_ENUM_END; i++) {
1253 if (header[i].access_list != NULL) {
1254 storeAppendPrintf(entry, "%s ", name);
1255 dump_acl_access(entry, httpHeaderNameById(i),
1256 header[i].access_list);
1257 }
1258 }
1259 }
1260
1261 static void
1262 parse_http_header_access(header_mangler header[])
1263 {
1264 int id, i;
1265 char *t = NULL;
1266
1267 if ((t = strtok(NULL, w_space)) == NULL) {
1268 debugs(3, 0, "" << cfg_filename << " line " << config_lineno << ": " << config_input_line);
1269 debugs(3, 0, "parse_http_header_access: missing header name.");
1270 return;
1271 }
1272
1273 /* Now lookup index of header. */
1274 id = httpHeaderIdByNameDef(t, strlen(t));
1275
1276 if (strcmp(t, "All") == 0)
1277 id = HDR_ENUM_END;
1278 else if (strcmp(t, "Other") == 0)
1279 id = HDR_OTHER;
1280 else if (id == -1) {
1281 debugs(3, 0, "" << cfg_filename << " line " << config_lineno << ": " << config_input_line);
1282 debugs(3, 0, "parse_http_header_access: unknown header name '" << t << "'");
1283 return;
1284 }
1285
1286 if (id != HDR_ENUM_END) {
1287 parse_acl_access(&header[id].access_list);
1288 } else {
1289 char *next_string = t + strlen(t) - 1;
1290 *next_string = 'A';
1291 *(next_string + 1) = ' ';
1292
1293 for (i = 0; i < HDR_ENUM_END; i++) {
1294 char *new_string = xstrdup(next_string);
1295 strtok(new_string, w_space);
1296 parse_acl_access(&header[i].access_list);
1297 safe_free(new_string);
1298 }
1299 }
1300 }
1301
1302 static void
1303 free_http_header_access(header_mangler header[])
1304 {
1305 int i;
1306
1307 for (i = 0; i < HDR_ENUM_END; i++) {
1308 free_acl_access(&header[i].access_list);
1309 }
1310 }
1311
1312 static void
1313 dump_http_header_replace(StoreEntry * entry, const char *name, header_mangler
1314 header[])
1315 {
1316 int i;
1317
1318 for (i = 0; i < HDR_ENUM_END; i++) {
1319 if (NULL == header[i].replacement)
1320 continue;
1321
1322 storeAppendPrintf(entry, "%s %s %s\n", name, httpHeaderNameById(i),
1323 header[i].replacement);
1324 }
1325 }
1326
1327 static void
1328 parse_http_header_replace(header_mangler header[])
1329 {
1330 int id, i;
1331 char *t = NULL;
1332
1333 if ((t = strtok(NULL, w_space)) == NULL) {
1334 debugs(3, 0, "" << cfg_filename << " line " << config_lineno << ": " << config_input_line);
1335 debugs(3, 0, "parse_http_header_replace: missing header name.");
1336 return;
1337 }
1338
1339 /* Now lookup index of header. */
1340 id = httpHeaderIdByNameDef(t, strlen(t));
1341
1342 if (strcmp(t, "All") == 0)
1343 id = HDR_ENUM_END;
1344 else if (strcmp(t, "Other") == 0)
1345 id = HDR_OTHER;
1346 else if (id == -1) {
1347 debugs(3, 0, "" << cfg_filename << " line " << config_lineno << ": " << config_input_line);
1348 debugs(3, 0, "parse_http_header_replace: unknown header name " << t << ".");
1349
1350 return;
1351 }
1352
1353 if (id != HDR_ENUM_END) {
1354 if (header[id].replacement != NULL)
1355 safe_free(header[id].replacement);
1356
1357 header[id].replacement = xstrdup(t + strlen(t) + 1);
1358 } else {
1359 for (i = 0; i < HDR_ENUM_END; i++) {
1360 if (header[i].replacement != NULL)
1361 safe_free(header[i].replacement);
1362
1363 header[i].replacement = xstrdup(t + strlen(t) + 1);
1364 }
1365 }
1366 }
1367
1368 static void
1369 free_http_header_replace(header_mangler header[])
1370 {
1371 int i;
1372
1373 for (i = 0; i < HDR_ENUM_END; i++) {
1374 if (header[i].replacement != NULL)
1375 safe_free(header[i].replacement);
1376 }
1377 }
1378
1379 #endif
1380
1381 static void
1382 dump_cachedir(StoreEntry * entry, const char *name, SquidConfig::_cacheSwap swap)
1383 {
1384 SwapDir *s;
1385 int i;
1386 assert (entry);
1387
1388 for (i = 0; i < swap.n_configured; i++) {
1389 s = dynamic_cast<SwapDir *>(swap.swapDirs[i].getRaw());
1390 if (!s) continue;
1391 storeAppendPrintf(entry, "%s %s %s", name, s->type(), s->path);
1392 s->dump(*entry);
1393 storeAppendPrintf(entry, "\n");
1394 }
1395 }
1396
1397 static int
1398 check_null_string(char *s)
1399 {
1400 return s == NULL;
1401 }
1402
1403 static void
1404 parse_authparam(authConfig * config)
1405 {
1406 char *type_str;
1407 char *param_str;
1408
1409 if ((type_str = strtok(NULL, w_space)) == NULL)
1410 self_destruct();
1411
1412 if ((param_str = strtok(NULL, w_space)) == NULL)
1413 self_destruct();
1414
1415 /* find a configuration for the scheme */
1416 AuthConfig *scheme = AuthConfig::Find (type_str);
1417
1418 if (scheme == NULL) {
1419 /* Create a configuration */
1420 AuthScheme *theScheme;
1421
1422 if ((theScheme = AuthScheme::Find(type_str)) == NULL) {
1423 debugs(3, 0, "Parsing Config File: Unknown authentication scheme '" << type_str << "'.");
1424 return;
1425 }
1426
1427 config->push_back(theScheme->createConfig());
1428 scheme = config->back();
1429 assert (scheme);
1430 }
1431
1432 scheme->parse(scheme, config->size(), param_str);
1433 }
1434
1435 static void
1436 free_authparam(authConfig * cfg)
1437 {
1438 AuthConfig *scheme;
1439 /* DON'T FREE THESE FOR RECONFIGURE */
1440
1441 if (reconfiguring)
1442 return;
1443
1444 while (cfg->size()) {
1445 scheme = cfg->pop_back();
1446 scheme->done();
1447 }
1448 }
1449
1450 static void
1451 dump_authparam(StoreEntry * entry, const char *name, authConfig cfg)
1452 {
1453 for (authConfig::iterator i = cfg.begin(); i != cfg.end(); ++i)
1454 (*i)->dump(entry, name, (*i));
1455 }
1456
1457 /* TODO: just return the object, the # is irrelevant */
1458 static int
1459 find_fstype(char *type)
1460 {
1461 for (size_t i = 0; i < StoreFileSystem::FileSystems().size(); ++i)
1462 if (strcasecmp(type, StoreFileSystem::FileSystems().items[i]->type()) == 0)
1463 return (int)i;
1464
1465 return (-1);
1466 }
1467
1468 static void
1469 parse_cachedir(SquidConfig::_cacheSwap * swap)
1470 {
1471 char *type_str;
1472 char *path_str;
1473 RefCount<SwapDir> sd;
1474 int i;
1475 int fs;
1476
1477 if ((type_str = strtok(NULL, w_space)) == NULL)
1478 self_destruct();
1479
1480 if ((path_str = strtok(NULL, w_space)) == NULL)
1481 self_destruct();
1482
1483 fs = find_fstype(type_str);
1484
1485 if (fs < 0)
1486 self_destruct();
1487
1488 /* reconfigure existing dir */
1489
1490 for (i = 0; i < swap->n_configured; i++) {
1491 assert (swap->swapDirs[i].getRaw());
1492
1493 if ((strcasecmp(path_str, dynamic_cast<SwapDir *>(swap->swapDirs[i].getRaw())->path)
1494 ) == 0) {
1495 /* this is specific to on-fs Stores. The right
1496 * way to handle this is probably to have a mapping
1497 * from paths to stores, and have on-fs stores
1498 * register with that, and lookip in that in their
1499 * own setup logic. RBC 20041225. TODO.
1500 */
1501
1502 sd = dynamic_cast<SwapDir *>(swap->swapDirs[i].getRaw());
1503
1504 if (sd->type() != StoreFileSystem::FileSystems().items[fs]->type()) {
1505 debugs(3, 0, "ERROR: Can't change type of existing cache_dir " <<
1506 sd->type() << " " << sd->path << " to " << type_str << ". Restart required");
1507 return;
1508 }
1509
1510 sd->reconfigure (i, path_str);
1511
1512 update_maxobjsize();
1513
1514 return;
1515 }
1516 }
1517
1518 /* new cache_dir */
1519 assert(swap->n_configured < 63); /* 7 bits, signed */
1520
1521 allocate_new_swapdir(swap);
1522
1523 swap->swapDirs[swap->n_configured] = StoreFileSystem::FileSystems().items[fs]->createSwapDir();
1524
1525 sd = dynamic_cast<SwapDir *>(swap->swapDirs[swap->n_configured].getRaw());
1526
1527 /* parse the FS parameters and options */
1528 sd->parse(swap->n_configured, path_str);
1529
1530 ++swap->n_configured;
1531
1532 /* Update the max object size */
1533 update_maxobjsize();
1534 }
1535
1536 static const char *
1537 peer_type_str(const peer_t type)
1538 {
1539 const char * result;
1540
1541 switch (type) {
1542
1543 case PEER_PARENT:
1544 result = "parent";
1545 break;
1546
1547 case PEER_SIBLING:
1548 result = "sibling";
1549 break;
1550
1551 case PEER_MULTICAST:
1552 result = "multicast";
1553 break;
1554
1555 default:
1556 result = "unknown";
1557 break;
1558 }
1559
1560 return result;
1561 }
1562
1563 static void
1564 dump_peer(StoreEntry * entry, const char *name, peer * p)
1565 {
1566 domain_ping *d;
1567 domain_type *t;
1568 LOCAL_ARRAY(char, xname, 128);
1569
1570 while (p != NULL) {
1571 storeAppendPrintf(entry, "%s %s %s %d %d",
1572 name,
1573 p->host,
1574 neighborTypeStr(p),
1575 p->http_port,
1576 p->icp.port);
1577 dump_peer_options(entry, p);
1578
1579 for (d = p->peer_domain; d; d = d->next) {
1580 storeAppendPrintf(entry, "cache_peer_domain %s %s%s\n",
1581 p->host,
1582 d->do_ping ? null_string : "!",
1583 d->domain);
1584 }
1585
1586 if (p->access) {
1587 snprintf(xname, 128, "cache_peer_access %s", p->name);
1588 dump_acl_access(entry, xname, p->access);
1589 }
1590
1591 for (t = p->typelist; t; t = t->next) {
1592 storeAppendPrintf(entry, "neighbor_type_domain %s %s %s\n",
1593 p->host,
1594 peer_type_str(t->type),
1595 t->domain);
1596 }
1597
1598 p = p->next;
1599 }
1600 }
1601
1602 /**
1603 \param proto 'tcp' or 'udp' for protocol
1604 \returns Port the named service is supposed to be listening on.
1605 */
1606 static u_short
1607 GetService(const char *proto)
1608 {
1609 struct servent *port = NULL;
1610 /** Parses a port number or service name from the squid.conf */
1611 char *token = strtok(NULL, w_space);
1612 if (token == NULL) {
1613 self_destruct();
1614 return 0; /* NEVER REACHED */
1615 }
1616 /** Returns either the service port number from /etc/services */
1617 port = getservbyname(token, proto);
1618 if (port != NULL) {
1619 return ntohs((u_short)port->s_port);
1620 }
1621 /** Or a numeric translation of the config text. */
1622 return xatos(token);
1623 }
1624
1625 /**
1626 \returns Port the named TCP service is supposed to be listening on.
1627 \copydoc GetService(const char *proto)
1628 */
1629 inline u_short
1630 GetTcpService(void)
1631 {
1632 return GetService("tcp");
1633 }
1634
1635 /**
1636 \returns Port the named UDP service is supposed to be listening on.
1637 \copydoc GetService(const char *proto)
1638 */
1639 inline u_short
1640 GetUdpService(void)
1641 {
1642 return GetService("udp");
1643 }
1644
1645 static void
1646 parse_peer(peer ** head)
1647 {
1648 char *token = NULL;
1649 peer *p;
1650 CBDATA_INIT_TYPE_FREECB(peer, peerDestroy);
1651 p = cbdataAlloc(peer);
1652 p->http_port = CACHE_HTTP_PORT;
1653 p->icp.port = CACHE_ICP_PORT;
1654 p->weight = 1;
1655 p->basetime = 0;
1656 p->stats.logged_state = PEER_ALIVE;
1657
1658 if ((token = strtok(NULL, w_space)) == NULL)
1659 self_destruct();
1660
1661 p->host = xstrdup(token);
1662
1663 p->name = xstrdup(token);
1664
1665 if ((token = strtok(NULL, w_space)) == NULL)
1666 self_destruct();
1667
1668 p->type = parseNeighborType(token);
1669
1670 if (p->type == PEER_MULTICAST) {
1671 p->options.no_digest = 1;
1672 p->options.no_netdb_exchange = 1;
1673 }
1674
1675 p->http_port = GetTcpService();
1676
1677 if (!p->http_port)
1678 self_destruct();
1679
1680 p->icp.port = GetUdpService();
1681 p->connection_auth = 2; /* auto */
1682
1683 while ((token = strtok(NULL, w_space))) {
1684 if (!strcasecmp(token, "proxy-only")) {
1685 p->options.proxy_only = 1;
1686 } else if (!strcasecmp(token, "no-query")) {
1687 p->options.no_query = 1;
1688 } else if (!strcasecmp(token, "background-ping")) {
1689 p->options.background_ping = 1;
1690 } else if (!strcasecmp(token, "no-digest")) {
1691 p->options.no_digest = 1;
1692 } else if (!strcasecmp(token, "multicast-responder")) {
1693 p->options.mcast_responder = 1;
1694 } else if (!strncasecmp(token, "weight=", 7)) {
1695 p->weight = xatoi(token + 7);
1696 } else if (!strncasecmp(token, "basetime=", 9)) {
1697 p->basetime = xatoi(token + 9);
1698 } else if (!strcasecmp(token, "closest-only")) {
1699 p->options.closest_only = 1;
1700 } else if (!strncasecmp(token, "ttl=", 4)) {
1701 p->mcast.ttl = xatoi(token + 4);
1702
1703 if (p->mcast.ttl < 0)
1704 p->mcast.ttl = 0;
1705
1706 if (p->mcast.ttl > 128)
1707 p->mcast.ttl = 128;
1708 } else if (!strcasecmp(token, "default")) {
1709 p->options.default_parent = 1;
1710 } else if (!strcasecmp(token, "round-robin")) {
1711 p->options.roundrobin = 1;
1712 } else if (!strcasecmp(token, "weighted-round-robin")) {
1713 p->options.weighted_roundrobin = 1;
1714 #if USE_HTCP
1715
1716 } else if (!strcasecmp(token, "htcp")) {
1717 p->options.htcp = 1;
1718 } else if (!strcasecmp(token, "htcp-oldsquid")) {
1719 p->options.htcp = 1;
1720 p->options.htcp_oldsquid = 1;
1721 } else if (!strcasecmp(token, "htcp-no-clr")) {
1722 if (p->options.htcp_only_clr)
1723 fatalf("parse_peer: can't set htcp-no-clr and htcp-only-clr simultaneously");
1724 p->options.htcp = 1;
1725 p->options.htcp_no_clr = 1;
1726 } else if (!strcasecmp(token, "htcp-no-purge-clr")) {
1727 p->options.htcp = 1;
1728 p->options.htcp_no_purge_clr = 1;
1729 } else if (!strcasecmp(token, "htcp-only-clr")) {
1730 if (p->options.htcp_no_clr)
1731 fatalf("parse_peer: can't set htcp-no-clr and htcp-only-clr simultaneously");
1732 p->options.htcp = 1;
1733 p->options.htcp_only_clr = 1;
1734 } else if (!strcasecmp(token, "htcp-forward-clr")) {
1735 p->options.htcp = 1;
1736 p->options.htcp_forward_clr = 1;
1737 #endif
1738
1739 } else if (!strcasecmp(token, "no-netdb-exchange")) {
1740 p->options.no_netdb_exchange = 1;
1741
1742 } else if (!strcasecmp(token, "carp")) {
1743 if (p->type != PEER_PARENT)
1744 fatalf("parse_peer: non-parent carp peer %s/%d\n", p->host, p->http_port);
1745
1746 p->options.carp = 1;
1747
1748 } else if (!strcasecmp(token, "userhash")) {
1749 if (p->type != PEER_PARENT)
1750 fatalf("parse_peer: non-parent userhash peer %s/%d\n", p->host, p->http_port);
1751
1752 p->options.userhash = 1;
1753
1754 } else if (!strcasecmp(token, "sourcehash")) {
1755 if (p->type != PEER_PARENT)
1756 fatalf("parse_peer: non-parent sourcehash peer %s/%d\n", p->host, p->http_port);
1757
1758 p->options.sourcehash = 1;
1759
1760 #if DELAY_POOLS
1761
1762 } else if (!strcasecmp(token, "no-delay")) {
1763 p->options.no_delay = 1;
1764 #endif
1765
1766 } else if (!strncasecmp(token, "login=", 6)) {
1767 p->login = xstrdup(token + 6);
1768 rfc1738_unescape(p->login);
1769 } else if (!strncasecmp(token, "connect-timeout=", 16)) {
1770 p->connect_timeout = xatoi(token + 16);
1771 #if USE_CACHE_DIGESTS
1772
1773 } else if (!strncasecmp(token, "digest-url=", 11)) {
1774 p->digest_url = xstrdup(token + 11);
1775 #endif
1776
1777 } else if (!strcasecmp(token, "allow-miss")) {
1778 p->options.allow_miss = 1;
1779 } else if (!strncasecmp(token, "max-conn=", 9)) {
1780 p->max_conn = xatoi(token + 9);
1781 } else if (!strcasecmp(token, "originserver")) {
1782 p->options.originserver = 1;
1783 } else if (!strncasecmp(token, "name=", 5)) {
1784 safe_free(p->name);
1785
1786 if (token[5])
1787 p->name = xstrdup(token + 5);
1788 } else if (!strncasecmp(token, "forceddomain=", 13)) {
1789 safe_free(p->domain);
1790
1791 if (token[13])
1792 p->domain = xstrdup(token + 13);
1793
1794 #if USE_SSL
1795
1796 } else if (strcmp(token, "ssl") == 0) {
1797 p->use_ssl = 1;
1798 } else if (strncmp(token, "sslcert=", 8) == 0) {
1799 safe_free(p->sslcert);
1800 p->sslcert = xstrdup(token + 8);
1801 } else if (strncmp(token, "sslkey=", 7) == 0) {
1802 safe_free(p->sslkey);
1803 p->sslkey = xstrdup(token + 7);
1804 } else if (strncmp(token, "sslversion=", 11) == 0) {
1805 p->sslversion = atoi(token + 11);
1806 } else if (strncmp(token, "ssloptions=", 11) == 0) {
1807 safe_free(p->ssloptions);
1808 p->ssloptions = xstrdup(token + 11);
1809 } else if (strncmp(token, "sslcipher=", 10) == 0) {
1810 safe_free(p->sslcipher);
1811 p->sslcipher = xstrdup(token + 10);
1812 } else if (strncmp(token, "sslcafile=", 10) == 0) {
1813 safe_free(p->sslcafile);
1814 p->sslcafile = xstrdup(token + 10);
1815 } else if (strncmp(token, "sslcapath=", 10) == 0) {
1816 safe_free(p->sslcapath);
1817 p->sslcapath = xstrdup(token + 10);
1818 } else if (strncmp(token, "sslcrlfile=", 11) == 0) {
1819 safe_free(p->sslcrlfile);
1820 p->sslcapath = xstrdup(token + 10);
1821 } else if (strncmp(token, "sslflags=", 9) == 0) {
1822 safe_free(p->sslflags);
1823 p->sslflags = xstrdup(token + 9);
1824 } else if (strncmp(token, "ssldomain=", 10) == 0) {
1825 safe_free(p->ssldomain);
1826 p->ssldomain = xstrdup(token + 10);
1827 #endif
1828
1829 } else if (strcmp(token, "front-end-https") == 0) {
1830 p->front_end_https = 1;
1831 } else if (strcmp(token, "front-end-https=on") == 0) {
1832 p->front_end_https = 1;
1833 } else if (strcmp(token, "front-end-https=auto") == 0) {
1834 p->front_end_https = 2;
1835 } else if (strcmp(token, "connection-auth=off") == 0) {
1836 p->connection_auth = 0;
1837 } else if (strcmp(token, "connection-auth") == 0) {
1838 p->connection_auth = 1;
1839 } else if (strcmp(token, "connection-auth=on") == 0) {
1840 p->connection_auth = 1;
1841 } else if (strcmp(token, "connection-auth=auto") == 0) {
1842 p->connection_auth = 2;
1843 } else {
1844 debugs(3, 0, "parse_peer: token='" << token << "'");
1845 self_destruct();
1846 }
1847 }
1848
1849 if (peerFindByName(p->name))
1850 fatalf("ERROR: cache_peer %s specified twice\n", p->name);
1851
1852 if (p->weight < 1)
1853 p->weight = 1;
1854
1855 p->icp.version = ICP_VERSION_CURRENT;
1856
1857 p->test_fd = -1;
1858
1859 #if USE_CACHE_DIGESTS
1860
1861 if (!p->options.no_digest) {
1862 /* XXX This looks odd.. who has the original pointer
1863 * then?
1864 */
1865 PeerDigest *pd = peerDigestCreate(p);
1866 p->digest = cbdataReference(pd);
1867 }
1868
1869 #endif
1870
1871 p->index = ++Config.npeers;
1872
1873 while (*head != NULL)
1874 head = &(*head)->next;
1875
1876 *head = p;
1877
1878 peerClearRRStart();
1879 }
1880
1881 static void
1882 free_peer(peer ** P)
1883 {
1884 peer *p;
1885
1886 while ((p = *P) != NULL) {
1887 *P = p->next;
1888
1889 safe_free(p->host);
1890 safe_free(p->name);
1891 safe_free(p->login);
1892 #if USE_CACHE_DIGESTS
1893 safe_free(p->digest_url);
1894 #endif
1895 safe_free(p->domain);
1896 #if USE_SSL
1897 safe_free(p->sslcert);
1898 safe_free(p->sslkey);
1899 safe_free(p->ssloptions);
1900 safe_free(p->sslcipher);
1901 safe_free(p->sslcapath);
1902 safe_free(p->sslcafile);
1903 safe_free(p->sslflags);
1904 safe_free(p->ssldomain);
1905 if (p->sslContext)
1906 SSL_CTX_free(p->sslContext);
1907 #endif
1908
1909 #if USE_CACHE_DIGESTS
1910
1911 cbdataReferenceDone(p->digest);
1912 #endif
1913
1914 cbdataFree(p);
1915 }
1916
1917 Config.npeers = 0;
1918 }
1919
1920 static void
1921 dump_cachemgrpasswd(StoreEntry * entry, const char *name, cachemgr_passwd * list)
1922 {
1923 wordlist *w;
1924
1925 while (list != NULL) {
1926 if (strcmp(list->passwd, "none") && strcmp(list->passwd, "disable"))
1927 storeAppendPrintf(entry, "%s XXXXXXXXXX", name);
1928 else
1929 storeAppendPrintf(entry, "%s %s", name, list->passwd);
1930
1931 for (w = list->actions; w != NULL; w = w->next) {
1932 storeAppendPrintf(entry, " %s", w->key);
1933 }
1934
1935 storeAppendPrintf(entry, "\n");
1936 list = list->next;
1937 }
1938 }
1939
1940 static void
1941 parse_cachemgrpasswd(cachemgr_passwd ** head)
1942 {
1943 char *passwd = NULL;
1944 wordlist *actions = NULL;
1945 cachemgr_passwd *p;
1946 cachemgr_passwd **P;
1947 parse_string(&passwd);
1948 parse_wordlist(&actions);
1949 p = static_cast<cachemgr_passwd *>(xcalloc(1, sizeof(cachemgr_passwd)));
1950 p->passwd = passwd;
1951 p->actions = actions;
1952
1953 for (P = head; *P; P = &(*P)->next) {
1954 /*
1955 * See if any of the actions from this line already have a
1956 * password from previous lines. The password checking
1957 * routines in cache_manager.c take the the password from
1958 * the first cachemgr_passwd struct that contains the
1959 * requested action. Thus, we should warn users who might
1960 * think they can have two passwords for the same action.
1961 */
1962 wordlist *w;
1963 wordlist *u;
1964
1965 for (w = (*P)->actions; w; w = w->next) {
1966 for (u = actions; u; u = u->next) {
1967 if (strcmp(w->key, u->key))
1968 continue;
1969
1970 debugs(0, 0, "WARNING: action '" << u->key << "' (line " << config_lineno << ") already has a password");
1971 }
1972 }
1973 }
1974
1975 *P = p;
1976 }
1977
1978 static void
1979 free_cachemgrpasswd(cachemgr_passwd ** head)
1980 {
1981 cachemgr_passwd *p;
1982
1983 while ((p = *head) != NULL) {
1984 *head = p->next;
1985 xfree(p->passwd);
1986 wordlistDestroy(&p->actions);
1987 xfree(p);
1988 }
1989 }
1990
1991 static void
1992 dump_denyinfo(StoreEntry * entry, const char *name, acl_deny_info_list * var)
1993 {
1994 acl_name_list *a;
1995
1996 while (var != NULL) {
1997 storeAppendPrintf(entry, "%s %s", name, var->err_page_name);
1998
1999 for (a = var->acl_list; a != NULL; a = a->next)
2000 storeAppendPrintf(entry, " %s", a->name);
2001
2002 storeAppendPrintf(entry, "\n");
2003
2004 var = var->next;
2005 }
2006 }
2007
2008 static void
2009 parse_denyinfo(acl_deny_info_list ** var)
2010 {
2011 aclParseDenyInfoLine(var);
2012 }
2013
2014 void
2015 free_denyinfo(acl_deny_info_list ** list)
2016 {
2017 acl_deny_info_list *a = NULL;
2018 acl_deny_info_list *a_next = NULL;
2019 acl_name_list *l = NULL;
2020 acl_name_list *l_next = NULL;
2021
2022 for (a = *list; a; a = a_next) {
2023 for (l = a->acl_list; l; l = l_next) {
2024 l_next = l->next;
2025 memFree(l, MEM_ACL_NAME_LIST);
2026 l = NULL;
2027 }
2028
2029 a_next = a->next;
2030 memFree(a, MEM_ACL_DENY_INFO_LIST);
2031 a = NULL;
2032 }
2033
2034 *list = NULL;
2035 }
2036
2037 static void
2038 parse_peer_access(void)
2039 {
2040 char *host = NULL;
2041 peer *p;
2042
2043 if (!(host = strtok(NULL, w_space)))
2044 self_destruct();
2045
2046 if ((p = peerFindByName(host)) == NULL) {
2047 debugs(15, 0, "" << cfg_filename << ", line " << config_lineno << ": No cache_peer '" << host << "'");
2048 return;
2049 }
2050
2051 aclParseAccessLine(LegacyParser, &p->access);
2052 }
2053
2054 static void
2055 parse_hostdomain(void)
2056 {
2057 char *host = NULL;
2058 char *domain = NULL;
2059
2060 if (!(host = strtok(NULL, w_space)))
2061 self_destruct();
2062
2063 while ((domain = strtok(NULL, list_sep))) {
2064 domain_ping *l = NULL;
2065 domain_ping **L = NULL;
2066 peer *p;
2067
2068 if ((p = peerFindByName(host)) == NULL) {
2069 debugs(15, 0, "" << cfg_filename << ", line " << config_lineno << ": No cache_peer '" << host << "'");
2070 continue;
2071 }
2072
2073 l = static_cast<domain_ping *>(xcalloc(1, sizeof(domain_ping)));
2074 l->do_ping = 1;
2075
2076 if (*domain == '!') { /* check for !.edu */
2077 l->do_ping = 0;
2078 domain++;
2079 }
2080
2081 l->domain = xstrdup(domain);
2082
2083 for (L = &(p->peer_domain); *L; L = &((*L)->next));
2084 *L = l;
2085 }
2086 }
2087
2088 static void
2089 parse_hostdomaintype(void)
2090 {
2091 char *host = NULL;
2092 char *type = NULL;
2093 char *domain = NULL;
2094
2095 if (!(host = strtok(NULL, w_space)))
2096 self_destruct();
2097
2098 if (!(type = strtok(NULL, w_space)))
2099 self_destruct();
2100
2101 while ((domain = strtok(NULL, list_sep))) {
2102 domain_type *l = NULL;
2103 domain_type **L = NULL;
2104 peer *p;
2105
2106 if ((p = peerFindByName(host)) == NULL) {
2107 debugs(15, 0, "" << cfg_filename << ", line " << config_lineno << ": No cache_peer '" << host << "'");
2108 return;
2109 }
2110
2111 l = static_cast<domain_type *>(xcalloc(1, sizeof(domain_type)));
2112 l->type = parseNeighborType(type);
2113 l->domain = xstrdup(domain);
2114
2115 for (L = &(p->typelist); *L; L = &((*L)->next));
2116 *L = l;
2117 }
2118 }
2119
2120 static void
2121 dump_int(StoreEntry * entry, const char *name, int var)
2122 {
2123 storeAppendPrintf(entry, "%s %d\n", name, var);
2124 }
2125
2126 void
2127 parse_int(int *var)
2128 {
2129 int i;
2130 i = GetInteger();
2131 *var = i;
2132 }
2133
2134 static void
2135 free_int(int *var)
2136 {
2137 *var = 0;
2138 }
2139
2140 static void
2141 dump_onoff(StoreEntry * entry, const char *name, int var)
2142 {
2143 storeAppendPrintf(entry, "%s %s\n", name, var ? "on" : "off");
2144 }
2145
2146 void
2147 parse_onoff(int *var)
2148 {
2149 char *token = strtok(NULL, w_space);
2150
2151 if (token == NULL)
2152 self_destruct();
2153
2154 if (!strcasecmp(token, "on") || !strcasecmp(token, "enable"))
2155 *var = 1;
2156 else
2157 *var = 0;
2158 }
2159
2160 #define free_onoff free_int
2161
2162 static void
2163 dump_tristate(StoreEntry * entry, const char *name, int var)
2164 {
2165 const char *state;
2166
2167 if (var > 0)
2168 state = "on";
2169 else if (var < 0)
2170 state = "warn";
2171 else
2172 state = "off";
2173
2174 storeAppendPrintf(entry, "%s %s\n", name, state);
2175 }
2176
2177 static void
2178 parse_tristate(int *var)
2179 {
2180 char *token = strtok(NULL, w_space);
2181
2182 if (token == NULL)
2183 self_destruct();
2184
2185 if (!strcasecmp(token, "on") || !strcasecmp(token, "enable"))
2186 *var = 1;
2187 else if (!strcasecmp(token, "warn"))
2188 *var = -1;
2189 else
2190 *var = 0;
2191 }
2192
2193 #define free_tristate free_int
2194
2195 static void
2196 dump_refreshpattern(StoreEntry * entry, const char *name, refresh_t * head)
2197 {
2198 while (head != NULL) {
2199 storeAppendPrintf(entry, "%s%s %s %d %d%% %d\n",
2200 name,
2201 head->flags.icase ? " -i" : null_string,
2202 head->pattern,
2203 (int) head->min / 60,
2204 (int) (100.0 * head->pct + 0.5),
2205 (int) head->max / 60);
2206
2207 if (head->flags.refresh_ims)
2208 storeAppendPrintf(entry, " refresh-ims");
2209
2210 #if HTTP_VIOLATIONS
2211
2212 if (head->flags.override_expire)
2213 storeAppendPrintf(entry, " override-expire");
2214
2215 if (head->flags.override_lastmod)
2216 storeAppendPrintf(entry, " override-lastmod");
2217
2218 if (head->flags.reload_into_ims)
2219 storeAppendPrintf(entry, " reload-into-ims");
2220
2221 if (head->flags.ignore_reload)
2222 storeAppendPrintf(entry, " ignore-reload");
2223
2224 if (head->flags.ignore_no_cache)
2225 storeAppendPrintf(entry, " ignore-no-cache");
2226
2227 if (head->flags.ignore_no_store)
2228 storeAppendPrintf(entry, " ignore-no-store");
2229
2230 if (head->flags.ignore_private)
2231 storeAppendPrintf(entry, " ignore-private");
2232
2233 if (head->flags.ignore_auth)
2234 storeAppendPrintf(entry, " ignore-auth");
2235
2236 #endif
2237
2238 storeAppendPrintf(entry, "\n");
2239
2240 head = head->next;
2241 }
2242 }
2243
2244 static void
2245 parse_refreshpattern(refresh_t ** head)
2246 {
2247 char *token;
2248 char *pattern;
2249 time_t min = 0;
2250 double pct = 0.0;
2251 time_t max = 0;
2252 int refresh_ims = 0;
2253 #if HTTP_VIOLATIONS
2254
2255 int override_expire = 0;
2256 int override_lastmod = 0;
2257 int reload_into_ims = 0;
2258 int ignore_reload = 0;
2259 int ignore_no_cache = 0;
2260 int ignore_no_store = 0;
2261 int ignore_private = 0;
2262 int ignore_auth = 0;
2263 #endif
2264
2265 int i;
2266 refresh_t *t;
2267 regex_t comp;
2268 int errcode;
2269 int flags = REG_EXTENDED | REG_NOSUB;
2270
2271 if ((token = strtok(NULL, w_space)) == NULL) {
2272 self_destruct();
2273 return;
2274 }
2275
2276 if (strcmp(token, "-i") == 0) {
2277 flags |= REG_ICASE;
2278 token = strtok(NULL, w_space);
2279 } else if (strcmp(token, "+i") == 0) {
2280 flags &= ~REG_ICASE;
2281 token = strtok(NULL, w_space);
2282 }
2283
2284 if (token == NULL) {
2285 self_destruct();
2286 return;
2287 }
2288
2289 pattern = xstrdup(token);
2290
2291 i = GetInteger(); /* token: min */
2292
2293 min = (time_t) (i * 60); /* convert minutes to seconds */
2294
2295 i = GetInteger(); /* token: pct */
2296
2297 pct = (double) i / 100.0;
2298
2299 i = GetInteger(); /* token: max */
2300
2301 max = (time_t) (i * 60); /* convert minutes to seconds */
2302
2303 /* Options */
2304 while ((token = strtok(NULL, w_space)) != NULL) {
2305 if (!strcmp(token, "refresh-ims")) {
2306 refresh_ims = 1;
2307 #if HTTP_VIOLATIONS
2308
2309 } else if (!strcmp(token, "override-expire"))
2310 override_expire = 1;
2311 else if (!strcmp(token, "override-lastmod"))
2312 override_lastmod = 1;
2313 else if (!strcmp(token, "ignore-no-cache"))
2314 ignore_no_cache = 1;
2315 else if (!strcmp(token, "ignore-no-store"))
2316 ignore_no_store = 1;
2317 else if (!strcmp(token, "ignore-private"))
2318 ignore_private = 1;
2319 else if (!strcmp(token, "ignore-auth"))
2320 ignore_auth = 1;
2321 else if (!strcmp(token, "reload-into-ims")) {
2322 reload_into_ims = 1;
2323 refresh_nocache_hack = 1;
2324 /* tell client_side.c that this is used */
2325 } else if (!strcmp(token, "ignore-reload")) {
2326 ignore_reload = 1;
2327 refresh_nocache_hack = 1;
2328 /* tell client_side.c that this is used */
2329 #endif
2330
2331 } else
2332 debugs(22, 0, "redreshAddToList: Unknown option '" << pattern << "': " << token);
2333 }
2334
2335 if ((errcode = regcomp(&comp, pattern, flags)) != 0) {
2336 char errbuf[256];
2337 regerror(errcode, &comp, errbuf, sizeof errbuf);
2338 debugs(22, 0, "" << cfg_filename << " line " << config_lineno << ": " << config_input_line);
2339 debugs(22, 0, "refreshAddToList: Invalid regular expression '" << pattern << "': " << errbuf);
2340 return;
2341 }
2342
2343 pct = pct < 0.0 ? 0.0 : pct;
2344 max = max < 0 ? 0 : max;
2345 t = static_cast<refresh_t *>(xcalloc(1, sizeof(refresh_t)));
2346 t->pattern = (char *) xstrdup(pattern);
2347 t->compiled_pattern = comp;
2348 t->min = min;
2349 t->pct = pct;
2350 t->max = max;
2351
2352 if (flags & REG_ICASE)
2353 t->flags.icase = 1;
2354
2355 if (refresh_ims)
2356 t->flags.refresh_ims = 1;
2357
2358 #if HTTP_VIOLATIONS
2359
2360 if (override_expire)
2361 t->flags.override_expire = 1;
2362
2363 if (override_lastmod)
2364 t->flags.override_lastmod = 1;
2365
2366 if (reload_into_ims)
2367 t->flags.reload_into_ims = 1;
2368
2369 if (ignore_reload)
2370 t->flags.ignore_reload = 1;
2371
2372 if (ignore_no_cache)
2373 t->flags.ignore_no_cache = 1;
2374
2375 if (ignore_no_store)
2376 t->flags.ignore_no_store = 1;
2377
2378 if (ignore_private)
2379 t->flags.ignore_private = 1;
2380
2381 if (ignore_auth)
2382 t->flags.ignore_auth = 1;
2383
2384 #endif
2385
2386 t->next = NULL;
2387
2388 while (*head)
2389 head = &(*head)->next;
2390
2391 *head = t;
2392
2393 safe_free(pattern);
2394 }
2395
2396 static void
2397 free_refreshpattern(refresh_t ** head)
2398 {
2399 refresh_t *t;
2400
2401 while ((t = *head) != NULL) {
2402 *head = t->next;
2403 safe_free(t->pattern);
2404 regfree(&t->compiled_pattern);
2405 safe_free(t);
2406 }
2407
2408 #if HTTP_VIOLATIONS
2409 refresh_nocache_hack = 0;
2410
2411 #endif
2412 }
2413
2414 static void
2415 dump_string(StoreEntry * entry, const char *name, char *var)
2416 {
2417 if (var != NULL)
2418 storeAppendPrintf(entry, "%s %s\n", name, var);
2419 }
2420
2421 static void
2422 parse_string(char **var)
2423 {
2424 char *token = strtok(NULL, w_space);
2425 safe_free(*var);
2426
2427 if (token == NULL)
2428 self_destruct();
2429
2430 *var = xstrdup(token);
2431 }
2432
2433 void
2434 ConfigParser::ParseString(char **var)
2435 {
2436 parse_string(var);
2437 }
2438
2439 void
2440 ConfigParser::ParseString(String *var)
2441 {
2442 char *token = strtok(NULL, w_space);
2443
2444 if (token == NULL)
2445 self_destruct();
2446
2447 var->reset(token);
2448 }
2449
2450 static void
2451 free_string(char **var)
2452 {
2453 safe_free(*var);
2454 }
2455
2456 void
2457 parse_eol(char *volatile *var)
2458 {
2459 unsigned char *token = (unsigned char *) strtok(NULL, null_string);
2460 safe_free(*var);
2461
2462 if (!token) {
2463 self_destruct();
2464 return;
2465 }
2466
2467 while (*token && xisspace(*token))
2468 token++;
2469
2470 if (!*token) {
2471 self_destruct();
2472 return;
2473 }
2474
2475 *var = xstrdup((char *) token);
2476 }
2477
2478 #define dump_eol dump_string
2479 #define free_eol free_string
2480
2481 static void
2482 dump_time_t(StoreEntry * entry, const char *name, time_t var)
2483 {
2484 storeAppendPrintf(entry, "%s %d seconds\n", name, (int) var);
2485 }
2486
2487 void
2488 parse_time_t(time_t * var)
2489 {
2490 parseTimeLine(var, T_SECOND_STR);
2491 }
2492
2493 static void
2494 free_time_t(time_t * var)
2495 {
2496 *var = 0;
2497 }
2498
2499 static void
2500 dump_size_t(StoreEntry * entry, const char *name, size_t var)
2501 {
2502 storeAppendPrintf(entry, "%s %d\n", name, (int) var);
2503 }
2504
2505 static void
2506 dump_b_size_t(StoreEntry * entry, const char *name, size_t var)
2507 {
2508 storeAppendPrintf(entry, "%s %d %s\n", name, (int) var, B_BYTES_STR);
2509 }
2510
2511 #if UNUSED_CODE
2512 static void
2513 dump_kb_size_t(StoreEntry * entry, const char *name, size_t var)
2514 {
2515 storeAppendPrintf(entry, "%s %d %s\n", name, (int) var, B_KBYTES_STR);
2516 }
2517 #endif
2518
2519 static void
2520 dump_b_int64_t(StoreEntry * entry, const char *name, int64_t var)
2521 {
2522 storeAppendPrintf(entry, "%s %"PRId64" %s\n", name, var, B_BYTES_STR);
2523 }
2524
2525 static void
2526 dump_kb_int64_t(StoreEntry * entry, const char *name, int64_t var)
2527 {
2528 storeAppendPrintf(entry, "%s %"PRId64" %s\n", name, var, B_KBYTES_STR);
2529 }
2530
2531 static void
2532 parse_size_t(size_t * var)
2533 {
2534 int i;
2535 i = GetInteger();
2536 *var = (size_t) i;
2537 }
2538
2539 static void
2540 parse_b_size_t(size_t * var)
2541 {
2542 parseBytesLine(var, B_BYTES_STR);
2543 }
2544
2545 #if UNUSED_CODE
2546 static void
2547 parse_kb_size_t(size_t * var)
2548 {
2549 parseBytesLine(var, B_KBYTES_STR);
2550 }
2551 #endif
2552
2553 static void
2554 parse_b_int64_t(int64_t * var)
2555 {
2556 parseBytesLine64(var, B_BYTES_STR);
2557 }
2558
2559 static void
2560 parse_kb_int64_t(int64_t * var)
2561 {
2562 parseBytesLine64(var, B_KBYTES_STR);
2563 }
2564
2565 static void
2566 free_size_t(size_t * var)
2567 {
2568 *var = 0;
2569 }
2570
2571 static void
2572 free_b_int64_t(int64_t * var)
2573 {
2574 *var = 0;
2575 }
2576
2577 #define free_b_size_t free_size_t
2578 #define free_kb_size_t free_size_t
2579 #define free_mb_size_t free_size_t
2580 #define free_gb_size_t free_size_t
2581 #define free_kb_int64_t free_b_int64_t
2582
2583 static void
2584 dump_ushort(StoreEntry * entry, const char *name, u_short var)
2585 {
2586 storeAppendPrintf(entry, "%s %d\n", name, var);
2587 }
2588
2589 static void
2590 free_ushort(u_short * u)
2591 {
2592 *u = 0;
2593 }
2594
2595 static void
2596 parse_ushort(u_short * var)
2597 {
2598 ConfigParser::ParseUShort(var);
2599 }
2600
2601 void
2602 ConfigParser::ParseUShort(u_short *var)
2603 {
2604 *var = GetShort();
2605 }
2606
2607 void
2608 ConfigParser::ParseBool(bool *var)
2609 {
2610 int i = GetInteger();
2611
2612 if (0 == i)
2613 *var = false;
2614 else if (1 == i)
2615 *var = true;
2616 else
2617 self_destruct();
2618 }
2619
2620 static void
2621 dump_wordlist(StoreEntry * entry, const char *name, wordlist * list)
2622 {
2623 while (list != NULL) {
2624 storeAppendPrintf(entry, "%s %s\n", name, list->key);
2625 list = list->next;
2626 }
2627 }
2628
2629 void
2630 ConfigParser::ParseWordList(wordlist ** list)
2631 {
2632 parse_wordlist(list);
2633 }
2634
2635 void
2636 parse_wordlist(wordlist ** list)
2637 {
2638 char *token;
2639 char *t = strtok(NULL, "");
2640
2641 while ((token = strwordtok(NULL, &t)))
2642 wordlistAdd(list, token);
2643 }
2644
2645 #if 0 /* now unused */
2646 static int
2647 check_null_wordlist(wordlist * w)
2648 {
2649 return w == NULL;
2650 }
2651 #endif
2652
2653 static int
2654 check_null_acl_access(acl_access * a)
2655 {
2656 return a == NULL;
2657 }
2658
2659 #define free_wordlist wordlistDestroy
2660
2661 #define free_uri_whitespace free_int
2662
2663 static void
2664 parse_uri_whitespace(int *var)
2665 {
2666 char *token = strtok(NULL, w_space);
2667
2668 if (token == NULL)
2669 self_destruct();
2670
2671 if (!strcasecmp(token, "strip"))
2672 *var = URI_WHITESPACE_STRIP;
2673 else if (!strcasecmp(token, "deny"))
2674 *var = URI_WHITESPACE_DENY;
2675 else if (!strcasecmp(token, "allow"))
2676 *var = URI_WHITESPACE_ALLOW;
2677 else if (!strcasecmp(token, "encode"))
2678 *var = URI_WHITESPACE_ENCODE;
2679 else if (!strcasecmp(token, "chop"))
2680 *var = URI_WHITESPACE_CHOP;
2681 else
2682 self_destruct();
2683 }
2684
2685 static void
2686 dump_uri_whitespace(StoreEntry * entry, const char *name, int var)
2687 {
2688 const char *s;
2689
2690 if (var == URI_WHITESPACE_ALLOW)
2691 s = "allow";
2692 else if (var == URI_WHITESPACE_ENCODE)
2693 s = "encode";
2694 else if (var == URI_WHITESPACE_CHOP)
2695 s = "chop";
2696 else if (var == URI_WHITESPACE_DENY)
2697 s = "deny";
2698 else
2699 s = "strip";
2700
2701 storeAppendPrintf(entry, "%s %s\n", name, s);
2702 }
2703
2704 static void
2705 free_removalpolicy(RemovalPolicySettings ** settings)
2706 {
2707 if (!*settings)
2708 return;
2709
2710 free_string(&(*settings)->type);
2711
2712 free_wordlist(&(*settings)->args);
2713
2714 delete *settings;
2715
2716 *settings = NULL;
2717 }
2718
2719 static void
2720 parse_removalpolicy(RemovalPolicySettings ** settings)
2721 {
2722 if (*settings)
2723 free_removalpolicy(settings);
2724
2725 *settings = new RemovalPolicySettings;
2726
2727 parse_string(&(*settings)->type);
2728
2729 parse_wordlist(&(*settings)->args);
2730 }
2731
2732 static void
2733 dump_removalpolicy(StoreEntry * entry, const char *name, RemovalPolicySettings * settings)
2734 {
2735 wordlist *args;
2736 storeAppendPrintf(entry, "%s %s", name, settings->type);
2737 args = settings->args;
2738
2739 while (args) {
2740 storeAppendPrintf(entry, " %s", args->key);
2741 args = args->next;
2742 }
2743
2744 storeAppendPrintf(entry, "\n");
2745 }
2746
2747 #include "cf_parser.h"
2748
2749 peer_t
2750 parseNeighborType(const char *s)
2751 {
2752 if (!strcasecmp(s, "parent"))
2753 return PEER_PARENT;
2754
2755 if (!strcasecmp(s, "neighbor"))
2756 return PEER_SIBLING;
2757
2758 if (!strcasecmp(s, "neighbour"))
2759 return PEER_SIBLING;
2760
2761 if (!strcasecmp(s, "sibling"))
2762 return PEER_SIBLING;
2763
2764 if (!strcasecmp(s, "multicast"))
2765 return PEER_MULTICAST;
2766
2767 debugs(15, 0, "WARNING: Unknown neighbor type: " << s);
2768
2769 return PEER_SIBLING;
2770 }
2771
2772 #if USE_WCCPv2
2773 void
2774 parse_IpAddress_list_token(IpAddress_list ** head, char *token)
2775 {
2776 char *t;
2777 char *host;
2778 char *tmp;
2779
2780 IpAddress ipa;
2781 unsigned short port;
2782 IpAddress_list *s;
2783
2784 host = NULL;
2785 port = 0;
2786
2787 #if USE_IPV6
2788 if (*token == '[') {
2789 /* [host]:port */
2790 host = token + 1;
2791 t = strchr(host, ']');
2792 if (!t)
2793 self_destruct();
2794 *t++ = '\0';
2795 if (*t != ':')
2796 self_destruct();
2797 port = xatos(t + 1);
2798 } else
2799 #endif
2800 if ((t = strchr(token, ':'))) {
2801 /* host:port */
2802 host = token;
2803 *t = '\0';
2804 port = xatos(t + 1);
2805
2806 if (0 == port)
2807 self_destruct();
2808 } else if ((port = strtol(token, &tmp, 10)), !*tmp) {
2809 /* port */
2810 } else {
2811 host = token;
2812 port = 0;
2813 }
2814
2815 if (NULL == host)
2816 ipa.SetAnyAddr();
2817 else if ( ipa.GetHostByName(host) ) /* dont use ipcache. Accept either FQDN or IPA. */
2818 (void) 0;
2819 else
2820 self_destruct();
2821
2822 /* port MUST be set after the IPA lookup/conversion is perofrmed. */
2823 ipa.SetPort(port);
2824
2825 while (*head)
2826 head = &(*head)->next;
2827
2828 s = static_cast<IpAddress_list *>(xcalloc(1, sizeof(*s)));
2829 s->s = ipa;
2830
2831 *head = s;
2832 }
2833
2834 static void
2835 parse_IpAddress_list(IpAddress_list ** head)
2836 {
2837 char *token;
2838
2839 while ((token = strtok(NULL, w_space))) {
2840 parse_IpAddress_list_token(head, token);
2841 }
2842 }
2843
2844 static void
2845 dump_IpAddress_list(StoreEntry * e, const char *n, const IpAddress_list * s)
2846 {
2847 char ntoabuf[MAX_IPSTRLEN];
2848
2849 while (s) {
2850 storeAppendPrintf(e, "%s %s\n",
2851 n,
2852 s->s.NtoA(ntoabuf,MAX_IPSTRLEN));
2853 s = s->next;
2854 }
2855 }
2856
2857 static void
2858 free_IpAddress_list(IpAddress_list ** head)
2859 {
2860 if (*head) delete *head;
2861 *head = NULL;
2862 }
2863
2864 #if CURRENTLY_UNUSED
2865 /* This code was previously used by http_port. Left as it really should
2866 * be used by icp_port and htcp_port
2867 */
2868 static int
2869 check_null_IpAddress_list(const IpAddress_list * s)
2870 {
2871 return NULL == s;
2872 }
2873
2874 #endif /* CURRENTLY_UNUSED */
2875 #endif /* USE_WCCPv2 */
2876
2877 CBDATA_CLASS_INIT(http_port_list);
2878
2879 static void
2880 parse_http_port_specification(http_port_list * s, char *token)
2881 {
2882 char *host = NULL;
2883 unsigned short port = 0;
2884 char *t = NULL;
2885 char *junk = NULL;
2886
2887 s->disable_pmtu_discovery = DISABLE_PMTU_OFF;
2888 s->name = xstrdup(token);
2889 s->connection_auth_disabled = false;
2890
2891 #if USE_IPV6
2892 if (*token == '[') {
2893 /* [ipv6]:port */
2894 host = token + 1;
2895 t = strchr(host, ']');
2896 if (!t) {
2897 debugs(3, 0, "http(s)_port: missing ']' on IPv6 address: " << token);
2898 self_destruct();
2899 }
2900 *t++ = '\0';
2901 if (*t != ':') {
2902 debugs(3, 0, "http(s)_port: missing Port in: " << token);
2903 self_destruct();
2904 }
2905 port = xatos(t + 1);
2906 } else
2907 #endif
2908 if ((t = strchr(token, ':'))) {
2909 /* host:port */
2910 /* ipv4:port */
2911 host = token;
2912 *t = '\0';
2913 port = xatos(t + 1);
2914
2915 } else if ((port = strtol(token, &junk, 10)), !*junk) {
2916 /* port */
2917 debugs(3, 3, "http(s)_port: found Listen on Port: " << port);
2918 } else {
2919 debugs(3, 0, "http(s)_port: missing Port: " << token);
2920 self_destruct();
2921 }
2922
2923 if (port == 0) {
2924 debugs(3, 0, "http(s)_port: Port cannot be 0: " << token);
2925 self_destruct();
2926 }
2927
2928 if (NULL == host) {
2929 s->s.SetAnyAddr();
2930 s->s.SetPort(port);
2931 debugs(3, 3, "http(s)_port: found Listen on wildcard address: " << s->s);
2932 } else if ( s->s = host ) { /* check/parse numeric IPA */
2933 s->s.SetPort(port);
2934 debugs(3, 3, "http(s)_port: Listen on Host/IP: " << host << " --> " << s->s);
2935 } else if ( s->s.GetHostByName(host) ) { /* check/parse for FQDN */
2936 /* dont use ipcache */
2937 s->defaultsite = xstrdup(host);
2938 s->s.SetPort(port);
2939 debugs(3, 3, "http(s)_port: found Listen as Host " << s->defaultsite << " on IP: " << s->s);
2940 } else {
2941 debugs(3, 0, "http(s)_port: failed to resolve Host/IP: " << host);
2942 self_destruct();
2943 }
2944 }
2945
2946 static void
2947 parse_http_port_option(http_port_list * s, char *token)
2948 {
2949 if (strncmp(token, "defaultsite=", 12) == 0) {
2950 safe_free(s->defaultsite);
2951 s->defaultsite = xstrdup(token + 12);
2952 s->accel = 1;
2953 } else if (strncmp(token, "name=", 5) == 0) {
2954 safe_free(s->name);
2955 s->name = xstrdup(token + 5);
2956 } else if (strcmp(token, "vhost") == 0) {
2957 s->vhost = 1;
2958 s->accel = 1;
2959 } else if (strcmp(token, "vport") == 0) {
2960 s->vport = -1;
2961 s->accel = 1;
2962 } else if (strncmp(token, "vport=", 6) == 0) {
2963 s->vport = xatos(token + 6);
2964 s->accel = 1;
2965 } else if (strncmp(token, "protocol=", 9) == 0) {
2966 s->protocol = xstrdup(token + 9);
2967 s->accel = 1;
2968 } else if (strcmp(token, "accel") == 0) {
2969 s->accel = 1;
2970 } else if (strcmp(token, "no-connection-auth") == 0) {
2971 s->connection_auth_disabled = true;
2972 } else if (strcmp(token, "connection-auth=off") == 0) {
2973 s->connection_auth_disabled = true;
2974 } else if (strcmp(token, "connection-auth") == 0) {
2975 s->connection_auth_disabled = false;
2976 } else if (strcmp(token, "connection-auth=on") == 0) {
2977 s->connection_auth_disabled = false;
2978 } else if (strncmp(token, "disable-pmtu-discovery=", 23) == 0) {
2979 if (!strcasecmp(token + 23, "off"))
2980 s->disable_pmtu_discovery = DISABLE_PMTU_OFF;
2981 else if (!strcasecmp(token + 23, "transparent"))
2982 s->disable_pmtu_discovery = DISABLE_PMTU_TRANSPARENT;
2983 else if (!strcasecmp(token + 23, "always"))
2984 s->disable_pmtu_discovery = DISABLE_PMTU_ALWAYS;
2985 else
2986 self_destruct();
2987
2988 } else if (strcmp(token, "transparent") == 0 || strcmp(token, "intercept") == 0) {
2989 s->intercepted = 1;
2990 IpInterceptor.StartInterception();
2991 /* Log information regarding the port modes under interception. */
2992 debugs(3, DBG_IMPORTANT, "Starting Authentication on port " << s->s);
2993 debugs(3, DBG_IMPORTANT, "Disabling Authentication on port " << s->s << " (interception enabled)");
2994
2995 #if USE_IPV6
2996 /* INET6: until transparent REDIRECT works on IPv6 SOCKET, force wildcard to IPv4 */
2997 debugs(3, DBG_IMPORTANT, "Disabling IPv6 on port " << s->s << " (interception enabled)");
2998 if ( !s->s.SetIPv4() ) {
2999 debugs(3, DBG_CRITICAL, "http(s)_port: IPv6 addresses cannot be transparent (protocol does not provide NAT)" << s->s );
3000 self_destruct();
3001 }
3002 #endif
3003 } else if (strcmp(token, "tproxy") == 0) {
3004 if (s->intercepted || s->accel) {
3005 debugs(3,DBG_CRITICAL, "http(s)_port: TPROXY option requires its own interception port. It cannot be shared.");
3006 self_destruct();
3007 }
3008 s->spoof_client_ip = 1;
3009 IpInterceptor.StartTransparency();
3010 /* Log information regarding the port modes under transparency. */
3011 debugs(3, DBG_IMPORTANT, "Starting IP Spoofing on port " << s->s);
3012 debugs(3, DBG_IMPORTANT, "Disabling Authentication on port " << s->s << " (Ip spoofing enabled)");
3013
3014 #if USE_IPV6
3015 /* INET6: until target TPROXY is known to work on IPv6 SOCKET, force wildcard to IPv4 */
3016 debugs(3, DBG_IMPORTANT, "Disabling IPv6 on port " << s->s << " (interception enabled)");
3017 if ( s->s.IsIPv6() && !s->s.SetIPv4() ) {
3018 debugs(3, DBG_CRITICAL, "http(s)_port: IPv6 addresses cannot be transparent (protocol does not provide NAT)" << s->s );
3019 self_destruct();
3020 }
3021 #endif
3022
3023 } else if (strcmp(token, "ipv4") == 0) {
3024 #if USE_IPV6
3025 if ( !s->s.SetIPv4() ) {
3026 debugs(3, 0, "http(s)_port: IPv6 addresses cannot be used a IPv4-Only." << s->s );
3027 self_destruct();
3028 }
3029 #endif
3030 } else if (strcmp(token, "tcpkeepalive") == 0) {
3031 s->tcp_keepalive.enabled = 1;
3032 } else if (strncmp(token, "tcpkeepalive=", 13) == 0) {
3033 char *t = token + 13;
3034 s->tcp_keepalive.enabled = 1;
3035 s->tcp_keepalive.idle = atoi(t);
3036 t = strchr(t, ',');
3037 if (t) {
3038 t++;
3039 s->tcp_keepalive.interval = atoi(t);
3040 t = strchr(t, ',');
3041 }
3042 if (t) {
3043 t++;
3044 s->tcp_keepalive.timeout = atoi(t);
3045 t = strchr(t, ',');
3046 }
3047 #if USE_SSL
3048 } else if (strncmp(token, "cert=", 5) == 0) {
3049 safe_free(s->cert);
3050 s->cert = xstrdup(token + 5);
3051 } else if (strncmp(token, "key=", 4) == 0) {
3052 safe_free(s->key);
3053 s->key = xstrdup(token + 4);
3054 } else if (strncmp(token, "version=", 8) == 0) {
3055 s->version = xatoi(token + 8);
3056
3057 if (s->version < 1 || s->version > 4)
3058 self_destruct();
3059 } else if (strncmp(token, "options=", 8) == 0) {
3060 safe_free(s->options);
3061 s->options = xstrdup(token + 8);
3062 } else if (strncmp(token, "cipher=", 7) == 0) {
3063 safe_free(s->cipher);
3064 s->cipher = xstrdup(token + 7);
3065 } else if (strncmp(token, "clientca=", 9) == 0) {
3066 safe_free(s->clientca);
3067 s->clientca = xstrdup(token + 9);
3068 } else if (strncmp(token, "cafile=", 7) == 0) {
3069 safe_free(s->cafile);
3070 s->cafile = xstrdup(token + 7);
3071 } else if (strncmp(token, "capath=", 7) == 0) {
3072 safe_free(s->capath);
3073 s->capath = xstrdup(token + 7);
3074 } else if (strncmp(token, "crlfile=", 8) == 0) {
3075 safe_free(s->crlfile);
3076 s->crlfile = xstrdup(token + 8);
3077 } else if (strncmp(token, "dhparams=", 9) == 0) {
3078 safe_free(s->dhfile);
3079 s->dhfile = xstrdup(token + 9);
3080 } else if (strncmp(token, "sslflags=", 9) == 0) {
3081 safe_free(s->sslflags);
3082 s->sslflags = xstrdup(token + 9);
3083 } else if (strncmp(token, "sslcontext=", 11) == 0) {
3084 safe_free(s->sslcontext);
3085 s->sslcontext = xstrdup(token + 11);
3086 } else if (strcmp(token, "sslBump") == 0) {
3087 s->sslBump = 1; // accelerated when bumped, otherwise not
3088 #endif
3089 } else {
3090 self_destruct();
3091 }
3092
3093 if ( s->spoof_client_ip && (s->intercepted || s->accel) ) {
3094 debugs(3,DBG_CRITICAL, "http(s)_port: TPROXY option requires its own interception port. It cannot be shared.");
3095 self_destruct();
3096 }
3097 }
3098
3099 static http_port_list *
3100 create_http_port(char *portspec)
3101 {
3102 http_port_list *s = new http_port_list("http");
3103 parse_http_port_specification(s, portspec);
3104 return s;
3105 }
3106
3107 void
3108 add_http_port(char *portspec)
3109 {
3110 http_port_list *s = create_http_port(portspec);
3111 s->next = Config.Sockaddr.http;
3112 Config.Sockaddr.http = s;
3113 }
3114
3115 static void
3116 parse_http_port_list(http_port_list ** head)
3117 {
3118 char *token = strtok(NULL, w_space);
3119
3120 if (!token) {
3121 self_destruct();
3122 return;
3123 }
3124
3125 http_port_list *s = create_http_port(token);
3126
3127 /* parse options ... */
3128 while ((token = strtok(NULL, w_space))) {
3129 parse_http_port_option(s, token);
3130 }
3131
3132 while (*head)
3133 head = &(*head)->next;
3134
3135 *head = s;
3136 }
3137
3138 static void
3139 dump_generic_http_port(StoreEntry * e, const char *n, const http_port_list * s)
3140 {
3141 char buf[MAX_IPSTRLEN];
3142
3143 storeAppendPrintf(e, "%s %s",
3144 n,
3145 s->s.ToURL(buf,MAX_IPSTRLEN));
3146
3147 if (s->defaultsite)
3148 storeAppendPrintf(e, " defaultsite=%s", s->defaultsite);
3149
3150 if (s->intercepted)
3151 storeAppendPrintf(e, " intercept");
3152
3153 if (s->vhost)
3154 storeAppendPrintf(e, " vhost");
3155
3156 if (s->vport)
3157 storeAppendPrintf(e, " vport");
3158
3159 if (s->connection_auth_disabled)
3160 storeAppendPrintf(e, " connection-auth=off");
3161 else
3162 storeAppendPrintf(e, " connection-auth=on");
3163
3164 if (s->disable_pmtu_discovery != DISABLE_PMTU_OFF) {
3165 const char *pmtu;
3166
3167 if (s->disable_pmtu_discovery == DISABLE_PMTU_ALWAYS)
3168 pmtu = "always";
3169 else
3170 pmtu = "transparent";
3171
3172 storeAppendPrintf(e, " disable-pmtu-discovery=%s", pmtu);
3173 }
3174
3175 if (s->tcp_keepalive.enabled) {
3176 if (s->tcp_keepalive.idle || s->tcp_keepalive.interval || s->tcp_keepalive.timeout) {
3177 storeAppendPrintf(e, " tcp_keepalive=%d,%d,%d", s->tcp_keepalive.idle, s->tcp_keepalive.interval, s->tcp_keepalive.timeout);
3178 } else {
3179 storeAppendPrintf(e, " tcp_keepalive");
3180 }
3181 }
3182
3183 #if USE_SSL
3184 if (s->cert)
3185 storeAppendPrintf(e, " cert=%s", s->cert);
3186
3187 if (s->key)
3188 storeAppendPrintf(e, " key=%s", s->key);
3189
3190 if (s->version)
3191 storeAppendPrintf(e, " version=%d", s->version);
3192
3193 if (s->options)
3194 storeAppendPrintf(e, " options=%s", s->options);
3195
3196 if (s->cipher)
3197 storeAppendPrintf(e, " cipher=%s", s->cipher);
3198
3199 if (s->cafile)
3200 storeAppendPrintf(e, " cafile=%s", s->cafile);
3201
3202 if (s->capath)
3203 storeAppendPrintf(e, " capath=%s", s->capath);
3204
3205 if (s->crlfile)
3206 storeAppendPrintf(e, " crlfile=%s", s->crlfile);
3207
3208 if (s->dhfile)
3209 storeAppendPrintf(e, " dhparams=%s", s->dhfile);
3210
3211 if (s->sslflags)
3212 storeAppendPrintf(e, " sslflags=%s", s->sslflags);
3213
3214 if (s->sslcontext)
3215 storeAppendPrintf(e, " sslcontext=%s", s->sslcontext);
3216
3217 if (s->sslBump)
3218 storeAppendPrintf(e, " sslBump");
3219 #endif
3220 }
3221
3222 static void
3223 dump_http_port_list(StoreEntry * e, const char *n, const http_port_list * s)
3224 {
3225 while (s) {
3226 dump_generic_http_port(e, n, s);
3227 storeAppendPrintf(e, "\n");
3228 s = s->next;
3229 }
3230 }
3231
3232 static void
3233 free_http_port_list(http_port_list ** head)
3234 {
3235 http_port_list *s;
3236
3237 while ((s = *head) != NULL) {
3238 *head = s->next;
3239 delete s;
3240 }
3241 }
3242
3243 #if USE_SSL
3244
3245 // TODO: merge better with parse_http_port_list
3246 static void
3247 parse_https_port_list(https_port_list ** head)
3248 {
3249 char *token;
3250 https_port_list *s;
3251
3252 token = strtok(NULL, w_space);
3253
3254 if (!token)
3255 self_destruct();
3256
3257 s = new https_port_list;
3258 parse_http_port_specification(&s->http, token);
3259
3260 /* parse options ... */
3261 while ((token = strtok(NULL, w_space))) {
3262 parse_http_port_option(s, token);
3263 }
3264
3265 while (*head) {
3266 http_port_list ** headTmp = &(*head)->http.next;
3267 head = (https_port_list **)headTmp;
3268 }
3269
3270 *head = s;
3271 }
3272
3273 static void
3274 dump_https_port_list(StoreEntry * e, const char *n, const https_port_list * s)
3275 {
3276 dump_http_port_list(e, n, s);
3277 }
3278
3279 static void
3280 free_https_port_list(https_port_list ** head)
3281 {
3282 free_http_port_list((http_port_list**)head);
3283 }
3284
3285 #if 0
3286 static int
3287 check_null_https_port_list(const https_port_list * s)
3288 {
3289 return NULL == s;
3290 }
3291
3292 #endif
3293
3294 #endif /* USE_SSL */
3295
3296 void
3297 configFreeMemory(void)
3298 {
3299 free_all();
3300 #if USE_SSL
3301 SSL_CTX_free(Config.ssl_client.sslContext);
3302 #endif
3303 }
3304
3305 void
3306 requirePathnameExists(const char *name, const char *path)
3307 {
3308
3309 struct stat sb;
3310 char pathbuf[BUFSIZ];
3311 assert(path != NULL);
3312
3313 if (Config.chroot_dir && (geteuid() == 0)) {
3314 snprintf(pathbuf, BUFSIZ, "%s/%s", Config.chroot_dir, path);
3315 path = pathbuf;
3316 }
3317
3318 if (stat(path, &sb) < 0) {
3319 if (opt_send_signal == -1 || opt_send_signal == SIGHUP)
3320 fatalf("%s %s: %s", name, path, xstrerror());
3321 else
3322 fprintf(stderr, "WARNING: %s %s: %s\n", name, path, xstrerror());
3323 }
3324 }
3325
3326 char *
3327 strtokFile(void)
3328 {
3329 return ConfigParser::strtokFile();
3330 }
3331
3332 #include "AccessLogEntry.h"
3333 /* TODO: split out parsing somehow ...*/
3334 static void
3335 parse_logformat(logformat ** logformat_definitions)
3336 {
3337 logformat *nlf;
3338 char *name, *def;
3339
3340 if ((name = strtok(NULL, w_space)) == NULL)
3341 self_destruct();
3342
3343 if ((def = strtok(NULL, "\r\n")) == NULL) {
3344 self_destruct();
3345 return;
3346 }
3347
3348 debugs(3, 2, "Logformat for '" << name << "' is '" << def << "'");
3349
3350 nlf = (logformat *)xcalloc(1, sizeof(logformat));
3351
3352 nlf->name = xstrdup(name);
3353
3354 if (!accessLogParseLogFormat(&nlf->format, def)) {
3355 self_destruct();
3356 return;
3357 }
3358
3359 nlf->next = *logformat_definitions;
3360
3361 *logformat_definitions = nlf;
3362 }
3363
3364 static void
3365 parse_access_log(customlog ** logs)
3366 {
3367 const char *filename, *logdef_name;
3368 customlog *cl;
3369 logformat *lf;
3370
3371 cl = (customlog *)xcalloc(1, sizeof(*cl));
3372
3373 if ((filename = strtok(NULL, w_space)) == NULL) {
3374 self_destruct();
3375 return;
3376 }
3377
3378 if (strcmp(filename, "none") == 0) {
3379 cl->type = CLF_NONE;
3380 goto done;
3381 }
3382
3383 if ((logdef_name = strtok(NULL, w_space)) == NULL)
3384 logdef_name = "auto";
3385
3386 debugs(3, 9, "Log definition name '" << logdef_name << "' file '" << filename << "'");
3387
3388 cl->filename = xstrdup(filename);
3389
3390 /* look for the definition pointer corresponding to this name */
3391 lf = Config.Log.logformats;
3392
3393 while (lf != NULL) {
3394 debugs(3, 9, "Comparing against '" << lf->name << "'");
3395
3396 if (strcmp(lf->name, logdef_name) == 0)
3397 break;
3398
3399 lf = lf->next;
3400 }
3401
3402 if (lf != NULL) {
3403 cl->type = CLF_CUSTOM;
3404 cl->logFormat = lf;
3405 } else if (strcmp(logdef_name, "auto") == 0) {
3406 cl->type = CLF_AUTO;
3407 } else if (strcmp(logdef_name, "squid") == 0) {
3408 cl->type = CLF_SQUID;
3409 } else if (strcmp(logdef_name, "common") == 0) {
3410 cl->type = CLF_COMMON;
3411 } else {
3412 debugs(3, 0, "Log format '" << logdef_name << "' is not defined");
3413 self_destruct();
3414 return;
3415 }
3416
3417 done:
3418 aclParseAclList(LegacyParser, &cl->aclList);
3419
3420 while (*logs)
3421 logs = &(*logs)->next;
3422
3423 *logs = cl;
3424 }
3425
3426 static int
3427 check_null_access_log(customlog *customlog_definitions)
3428 {
3429 return customlog_definitions == NULL;
3430 }
3431
3432 static void
3433 dump_logformat(StoreEntry * entry, const char *name, logformat * definitions)
3434 {
3435 accessLogDumpLogFormat(entry, name, definitions);
3436 }
3437
3438 static void
3439 dump_access_log(StoreEntry * entry, const char *name, customlog * logs)
3440 {
3441 customlog *log;
3442
3443 for (log = logs; log; log = log->next) {
3444 storeAppendPrintf(entry, "%s ", name);
3445
3446 switch (log->type) {
3447
3448 case CLF_CUSTOM:
3449 storeAppendPrintf(entry, "%s %s", log->filename, log->logFormat->name);
3450 break;
3451
3452 case CLF_NONE:
3453 storeAppendPrintf(entry, "none");
3454 break;
3455
3456 case CLF_SQUID:
3457 storeAppendPrintf(entry, "%s squid", log->filename);
3458 break;
3459
3460 case CLF_COMMON:
3461 storeAppendPrintf(entry, "%s squid", log->filename);
3462 break;
3463
3464 case CLF_AUTO:
3465
3466 if (log->aclList)
3467 storeAppendPrintf(entry, "%s auto", log->filename);
3468 else
3469 storeAppendPrintf(entry, "%s", log->filename);
3470
3471 break;
3472
3473 case CLF_UNKNOWN:
3474 break;
3475 }
3476
3477 if (log->aclList)
3478 dump_acl_list(entry, log->aclList);
3479
3480 storeAppendPrintf(entry, "\n");
3481 }
3482 }
3483
3484 static void
3485 free_logformat(logformat ** definitions)
3486 {
3487 while (*definitions) {
3488 logformat *format = *definitions;
3489 *definitions = format->next;
3490 safe_free(format->name);
3491 accessLogFreeLogFormat(&format->format);
3492 xfree(format);
3493 }
3494 }
3495
3496 static void
3497 free_access_log(customlog ** definitions)
3498 {
3499 while (*definitions) {
3500 customlog *log = *definitions;
3501 *definitions = log->next;
3502
3503 log->logFormat = NULL;
3504 log->type = CLF_UNKNOWN;
3505
3506 if (log->aclList)
3507 aclDestroyAclList(&log->aclList);
3508
3509 safe_free(log->filename);
3510
3511 xfree(log);
3512 }
3513 }
3514
3515 #if USE_ADAPTATION
3516
3517 static void
3518 parse_adaptation_service_set_type()
3519 {
3520 Adaptation::Config::ParseServiceSet();
3521 }
3522
3523 static void
3524 parse_adaptation_access_type()
3525 {
3526 Adaptation::Config::ParseAccess(LegacyParser);
3527 }
3528
3529 #endif /* USE_ADAPTATION */
3530
3531
3532 #if ICAP_CLIENT
3533
3534 static void
3535 parse_icap_service_type(ICAPConfig * cfg)
3536 {
3537 cfg->parseService();
3538 }
3539
3540 static void
3541 free_icap_service_type(ICAPConfig * cfg)
3542 {
3543 cfg->freeService();
3544 }
3545
3546 static void
3547 dump_icap_service_type(StoreEntry * entry, const char *name, const ICAPConfig &cfg)
3548 {
3549 cfg.dumpService(entry, name);
3550 }
3551
3552 static void
3553 parse_icap_class_type()
3554 {
3555 debugs(93, 0, "WARNING: 'icap_class' is depricated. " <<
3556 "Use 'adaptation_service_set' instead");
3557 Adaptation::Config::ParseServiceSet();
3558 }
3559
3560 static void
3561 parse_icap_access_type()
3562 {
3563 debugs(93, 0, "WARNING: 'icap_access' is depricated. " <<
3564 "Use 'adaptation_access' instead");
3565 Adaptation::Config::ParseAccess(LegacyParser);
3566 }
3567
3568 #endif
3569
3570
3571 #if USE_ECAP
3572
3573 static void
3574 parse_ecap_service_type(Ecap::Config * cfg)
3575 {
3576 cfg->parseService();
3577 }
3578
3579 static void
3580 free_ecap_service_type(Ecap::Config * cfg)
3581 {
3582 cfg->freeService();
3583 }
3584
3585 static void
3586 dump_ecap_service_type(StoreEntry * entry, const char *name, const Ecap::Config &cfg)
3587 {
3588 cfg.dumpService(entry, name);
3589 }
3590
3591 #endif /* USE_ECAP */