]> 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 03 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 "acl/Acl.h"
37 #include "acl/Gadgets.h"
38 #include "acl/MethodData.h"
39 #include "anyp/PortCfg.h"
40 #include "base/RunnersRegistry.h"
41 #include "cache_cf.h"
42 #include "ConfigParser.h"
43 #include "CpuAffinityMap.h"
44 #include "DiskIO/DiskIOModule.h"
45 #include "eui/Config.h"
46 #include "ExternalACL.h"
47 #include "format/Format.h"
48 #include "globals.h"
49 #include "HttpHeaderTools.h"
50 #include "HttpRequestMethod.h"
51 #include "ident/Config.h"
52 #include "ip/Intercept.h"
53 #include "ip/QosConfig.h"
54 #include "ip/tools.h"
55 #include "ipc/Kids.h"
56 #include "log/Config.h"
57 #include "Mem.h"
58 #include "MemBuf.h"
59 #include "mgr/Registration.h"
60 #include "Parsing.h"
61 #include "PeerDigest.h"
62 #include "protos.h"
63 #include "rfc1738.h"
64 #include "Store.h"
65 #include "StoreFileSystem.h"
66 #include "structs.h"
67 #include "SwapDir.h"
68 #include "wordlist.h"
69 #include "neighbors.h"
70 #include "tools.h"
71 /* wccp2 has its own conditional definitions */
72 #include "wccp2.h"
73 #if USE_ADAPTATION
74 #include "adaptation/Config.h"
75 #endif
76 #if ICAP_CLIENT
77 #include "adaptation/icap/Config.h"
78 #endif
79 #if USE_ECAP
80 #include "adaptation/ecap/Config.h"
81 #endif
82 #if USE_SSL
83 #include "ssl/support.h"
84 #include "ssl/Config.h"
85 #endif
86 #if USE_AUTH
87 #include "auth/Config.h"
88 #include "auth/Scheme.h"
89 #endif
90 #if USE_SQUID_ESI
91 #include "esi/Parser.h"
92 #endif
93 #if SQUID_SNMP
94 #include "snmp.h"
95 #endif
96
97 #if HAVE_GLOB_H
98 #include <glob.h>
99 #endif
100 #if HAVE_LIMITS_H
101 #include <limits>
102 #endif
103 #if HAVE_LIST
104 #include <list>
105 #endif
106 #if HAVE_SYS_TYPES_H
107 #include <sys/types.h>
108 #endif
109 #if HAVE_PWD_H
110 #include <pwd.h>
111 #endif
112 #if HAVE_GRP_H
113 #include <grp.h>
114 #endif
115 #if HAVE_SYS_STAT_H
116 #include <sys/stat.h>
117 #endif
118
119 #if USE_SSL
120 #include "ssl/gadgets.h"
121 #endif
122
123 #if USE_ADAPTATION
124 static void parse_adaptation_service_set_type();
125 static void parse_adaptation_service_chain_type();
126 static void parse_adaptation_access_type();
127 static void parse_adaptation_meta_type(Adaptation::Config::MetaHeaders *);
128 static void dump_adaptation_meta_type(StoreEntry *, const char *, Adaptation::Config::MetaHeaders &);
129 static void free_adaptation_meta_type(Adaptation::Config::MetaHeaders *);
130 #endif
131
132 #if ICAP_CLIENT
133 static void parse_icap_service_type(Adaptation::Icap::Config *);
134 static void dump_icap_service_type(StoreEntry *, const char *, const Adaptation::Icap::Config &);
135 static void free_icap_service_type(Adaptation::Icap::Config *);
136 static void parse_icap_class_type();
137 static void parse_icap_access_type();
138
139 static void parse_icap_service_failure_limit(Adaptation::Icap::Config *);
140 static void dump_icap_service_failure_limit(StoreEntry *, const char *, const Adaptation::Icap::Config &);
141 static void free_icap_service_failure_limit(Adaptation::Icap::Config *);
142 #endif
143
144 #if USE_ECAP
145 static void parse_ecap_service_type(Adaptation::Ecap::Config *);
146 static void dump_ecap_service_type(StoreEntry *, const char *, const Adaptation::Ecap::Config &);
147 static void free_ecap_service_type(Adaptation::Ecap::Config *);
148 #endif
149
150 CBDATA_TYPE(peer);
151
152 static const char *const T_MILLISECOND_STR = "millisecond";
153 static const char *const T_SECOND_STR = "second";
154 static const char *const T_MINUTE_STR = "minute";
155 static const char *const T_HOUR_STR = "hour";
156 static const char *const T_DAY_STR = "day";
157 static const char *const T_WEEK_STR = "week";
158 static const char *const T_FORTNIGHT_STR = "fortnight";
159 static const char *const T_MONTH_STR = "month";
160 static const char *const T_YEAR_STR = "year";
161 static const char *const T_DECADE_STR = "decade";
162
163 static const char *const B_BYTES_STR = "bytes";
164 static const char *const B_KBYTES_STR = "KB";
165 static const char *const B_MBYTES_STR = "MB";
166 static const char *const B_GBYTES_STR = "GB";
167
168 static const char *const list_sep = ", \t\n\r";
169
170 static void parse_access_log(customlog ** customlog_definitions);
171 static int check_null_access_log(customlog *customlog_definitions);
172 static void dump_access_log(StoreEntry * entry, const char *name, customlog * definitions);
173 static void free_access_log(customlog ** definitions);
174
175 static void update_maxobjsize(void);
176 static void configDoConfigure(void);
177 static void parse_refreshpattern(refresh_t **);
178 static uint64_t parseTimeUnits(const char *unit, bool allowMsec);
179 static void parseTimeLine(time_msec_t * tptr, const char *units, bool allowMsec);
180 static void parse_u_short(unsigned short * var);
181 static void parse_string(char **);
182 static void default_all(void);
183 static void defaults_if_none(void);
184 static void defaults_postscriptum(void);
185 static int parse_line(char *);
186 static void parse_obsolete(const char *);
187 static void parseBytesLine(size_t * bptr, const char *units);
188 #if USE_SSL
189 static void parseBytesOptionValue(size_t * bptr, const char *units, char const * value);
190 #endif
191 #if !USE_DNSHELPER
192 static void parseBytesLineSigned(ssize_t * bptr, const char *units);
193 #endif
194 static size_t parseBytesUnits(const char *unit);
195 static void free_all(void);
196 void requirePathnameExists(const char *name, const char *path);
197 static OBJH dump_config;
198 #if USE_HTTP_VIOLATIONS
199 static void free_HeaderManglers(HeaderManglers **pm);
200 static void dump_http_header_access(StoreEntry * entry, const char *name, const HeaderManglers *manglers);
201 static void parse_http_header_access(HeaderManglers **manglers);
202 #define free_http_header_access free_HeaderManglers
203 static void dump_http_header_replace(StoreEntry * entry, const char *name, const HeaderManglers *manglers);
204 static void parse_http_header_replace(HeaderManglers **manglers);
205 #define free_http_header_replace free_HeaderManglers
206 #endif
207 static void dump_HeaderWithAclList(StoreEntry * entry, const char *name, HeaderWithAclList *headers);
208 static void parse_HeaderWithAclList(HeaderWithAclList **header);
209 static void free_HeaderWithAclList(HeaderWithAclList **header);
210 static void parse_denyinfo(acl_deny_info_list ** var);
211 static void dump_denyinfo(StoreEntry * entry, const char *name, acl_deny_info_list * var);
212 static void free_denyinfo(acl_deny_info_list ** var);
213
214 #if USE_WCCPv2
215 static void parse_IpAddress_list(Ip::Address_list **);
216 static void dump_IpAddress_list(StoreEntry *, const char *, const Ip::Address_list *);
217 static void free_IpAddress_list(Ip::Address_list **);
218 #if CURRENTLY_UNUSED
219 static int check_null_IpAddress_list(const Ip::Address_list *);
220 #endif /* CURRENTLY_UNUSED */
221 #endif /* USE_WCCPv2 */
222
223 static void parsePortCfg(AnyP::PortCfg **, const char *protocol);
224 #define parse_PortCfg(l) parsePortCfg((l), token)
225 static void dump_PortCfg(StoreEntry *, const char *, const AnyP::PortCfg *);
226 static void free_PortCfg(AnyP::PortCfg **);
227
228 #if USE_SSL
229 static void parse_sslproxy_cert_sign(sslproxy_cert_sign **cert_sign);
230 static void dump_sslproxy_cert_sign(StoreEntry *entry, const char *name, sslproxy_cert_sign *cert_sign);
231 static void free_sslproxy_cert_sign(sslproxy_cert_sign **cert_sign);
232 static void parse_sslproxy_cert_adapt(sslproxy_cert_adapt **cert_adapt);
233 static void dump_sslproxy_cert_adapt(StoreEntry *entry, const char *name, sslproxy_cert_adapt *cert_adapt);
234 static void free_sslproxy_cert_adapt(sslproxy_cert_adapt **cert_adapt);
235 static void parse_sslproxy_ssl_bump(acl_access **ssl_bump);
236 static void dump_sslproxy_ssl_bump(StoreEntry *entry, const char *name, acl_access *ssl_bump);
237 static void free_sslproxy_ssl_bump(acl_access **ssl_bump);
238 #endif /* USE_SSL */
239
240 static void parse_b_size_t(size_t * var);
241 static void parse_b_int64_t(int64_t * var);
242
243 static bool parseNamedIntList(const char *data, const String &name, Vector<int> &list);
244
245 static void parse_CpuAffinityMap(CpuAffinityMap **const cpuAffinityMap);
246 static void dump_CpuAffinityMap(StoreEntry *const entry, const char *const name, const CpuAffinityMap *const cpuAffinityMap);
247 static void free_CpuAffinityMap(CpuAffinityMap **const cpuAffinityMap);
248
249 static int parseOneConfigFile(const char *file_name, unsigned int depth);
250
251 /*
252 * LegacyParser is a parser for legacy code that uses the global
253 * approach. This is static so that it is only exposed to cache_cf.
254 * Other modules needing access to a ConfigParser should have it
255 * provided to them in their parserFOO methods.
256 */
257 static ConfigParser LegacyParser = ConfigParser();
258
259 void
260 self_destruct(void)
261 {
262 LegacyParser.destruct();
263 }
264
265 static void
266 update_maxobjsize(void)
267 {
268 int i;
269 int64_t ms = -1;
270
271 for (i = 0; i < Config.cacheSwap.n_configured; ++i) {
272 assert (Config.cacheSwap.swapDirs[i].getRaw());
273
274 if (dynamic_cast<SwapDir *>(Config.cacheSwap.swapDirs[i].getRaw())->
275 max_objsize > ms)
276 ms = dynamic_cast<SwapDir *>(Config.cacheSwap.swapDirs[i].getRaw())->max_objsize;
277 }
278 store_maxobjsize = ms;
279 }
280
281 static void
282 SetConfigFilename(char const *file_name, bool is_pipe)
283 {
284 cfg_filename = file_name;
285
286 char const *token;
287
288 if (is_pipe)
289 cfg_filename = file_name + 1;
290 else if ((token = strrchr(cfg_filename, '/')))
291 cfg_filename = token + 1;
292 }
293
294 static const char*
295 skip_ws(const char* s)
296 {
297 while (xisspace(*s))
298 ++s;
299
300 return s;
301 }
302
303 static int
304 parseManyConfigFiles(char* files, int depth)
305 {
306 int error_count = 0;
307 char* saveptr = NULL;
308 #if HAVE_GLOB
309 char *path;
310 glob_t globbuf;
311 int i;
312 memset(&globbuf, 0, sizeof(globbuf));
313 for (path = strwordtok(files, &saveptr); path; path = strwordtok(NULL, &saveptr)) {
314 if (glob(path, globbuf.gl_pathc ? GLOB_APPEND : 0, NULL, &globbuf) != 0) {
315 fatalf("Unable to find configuration file: %s: %s",
316 path, xstrerror());
317 }
318 }
319 for (i = 0; i < (int)globbuf.gl_pathc; ++i) {
320 error_count += parseOneConfigFile(globbuf.gl_pathv[i], depth);
321 }
322 globfree(&globbuf);
323 #else
324 char* file = strwordtok(files, &saveptr);
325 while (file != NULL) {
326 error_count += parseOneConfigFile(file, depth);
327 file = strwordtok(NULL, &saveptr);
328 }
329 #endif /* HAVE_GLOB */
330 return error_count;
331 }
332
333 static void
334 ReplaceSubstr(char*& str, int& len, unsigned substrIdx, unsigned substrLen, const char* newSubstr)
335 {
336 assert(str != NULL);
337 assert(newSubstr != NULL);
338
339 unsigned newSubstrLen = strlen(newSubstr);
340 if (newSubstrLen > substrLen)
341 str = (char*)realloc(str, len - substrLen + newSubstrLen + 1);
342
343 // move tail part including zero
344 memmove(str + substrIdx + newSubstrLen, str + substrIdx + substrLen, len - substrIdx - substrLen + 1);
345 // copy new substring in place
346 memcpy(str + substrIdx, newSubstr, newSubstrLen);
347
348 len = strlen(str);
349 }
350
351 static void
352 SubstituteMacro(char*& line, int& len, const char* macroName, const char* substStr)
353 {
354 assert(line != NULL);
355 assert(macroName != NULL);
356 assert(substStr != NULL);
357 unsigned macroNameLen = strlen(macroName);
358 while (const char* macroPos = strstr(line, macroName)) // we would replace all occurrences
359 ReplaceSubstr(line, len, macroPos - line, macroNameLen, substStr);
360 }
361
362 static void
363 ProcessMacros(char*& line, int& len)
364 {
365 SubstituteMacro(line, len, "${process_name}", TheKidName);
366 SubstituteMacro(line, len, "${process_number}", xitoa(KidIdentifier));
367 }
368
369 static void
370 trim_trailing_ws(char* str)
371 {
372 assert(str != NULL);
373 unsigned i = strlen(str);
374 while ((i > 0) && xisspace(str[i - 1]))
375 --i;
376 str[i] = '\0';
377 }
378
379 static const char*
380 FindStatement(const char* line, const char* statement)
381 {
382 assert(line != NULL);
383 assert(statement != NULL);
384
385 const char* str = skip_ws(line);
386 unsigned len = strlen(statement);
387 if (strncmp(str, statement, len) == 0) {
388 str += len;
389 if (*str == '\0')
390 return str;
391 else if (xisspace(*str))
392 return skip_ws(str);
393 }
394
395 return NULL;
396 }
397
398 static bool
399 StrToInt(const char* str, long& number)
400 {
401 assert(str != NULL);
402
403 char* end;
404 number = strtol(str, &end, 0);
405
406 return (end != str) && (*end == '\0'); // returns true if string contains nothing except number
407 }
408
409 static bool
410 EvalBoolExpr(const char* expr)
411 {
412 assert(expr != NULL);
413 if (strcmp(expr, "true") == 0) {
414 return true;
415 } else if (strcmp(expr, "false") == 0) {
416 return false;
417 } else if (const char* equation = strchr(expr, '=')) {
418 const char* rvalue = skip_ws(equation + 1);
419 char* lvalue = (char*)xmalloc(equation - expr + 1);
420 xstrncpy(lvalue, expr, equation - expr + 1);
421 trim_trailing_ws(lvalue);
422
423 long number1;
424 if (!StrToInt(lvalue, number1))
425 fatalf("String is not a integer number: '%s'\n", lvalue);
426 long number2;
427 if (!StrToInt(rvalue, number2))
428 fatalf("String is not a integer number: '%s'\n", rvalue);
429
430 xfree(lvalue);
431 return number1 == number2;
432 }
433 fatalf("Unable to evaluate expression '%s'\n", expr);
434 return false; // this place cannot be reached
435 }
436
437 static int
438 parseOneConfigFile(const char *file_name, unsigned int depth)
439 {
440 FILE *fp = NULL;
441 const char *orig_cfg_filename = cfg_filename;
442 const int orig_config_lineno = config_lineno;
443 char *token = NULL;
444 char *tmp_line = NULL;
445 int tmp_line_len = 0;
446 int err_count = 0;
447 int is_pipe = 0;
448
449 debugs(3, DBG_IMPORTANT, "Processing Configuration File: " << file_name << " (depth " << depth << ")");
450 if (depth > 16) {
451 fatalf("WARNING: can't include %s: includes are nested too deeply (>16)!\n", file_name);
452 return 1;
453 }
454
455 if (file_name[0] == '!' || file_name[0] == '|') {
456 fp = popen(file_name + 1, "r");
457 is_pipe = 1;
458 } else {
459 fp = fopen(file_name, "r");
460 }
461
462 if (fp == NULL)
463 fatalf("Unable to open configuration file: %s: %s", file_name, xstrerror());
464
465 #if _SQUID_WINDOWS_
466 setmode(fileno(fp), O_TEXT);
467 #endif
468
469 SetConfigFilename(file_name, bool(is_pipe));
470
471 memset(config_input_line, '\0', BUFSIZ);
472
473 config_lineno = 0;
474
475 Vector<bool> if_states;
476 while (fgets(config_input_line, BUFSIZ, fp)) {
477 ++config_lineno;
478
479 if ((token = strchr(config_input_line, '\n')))
480 *token = '\0';
481
482 if ((token = strchr(config_input_line, '\r')))
483 *token = '\0';
484
485 // strip any prefix whitespace off the line.
486 const char *p = skip_ws(config_input_line);
487 if (config_input_line != p)
488 memmove(config_input_line, p, strlen(p)+1);
489
490 if (strncmp(config_input_line, "#line ", 6) == 0) {
491 static char new_file_name[1024];
492 static char *file;
493 static char new_lineno;
494 token = config_input_line + 6;
495 new_lineno = strtol(token, &file, 0) - 1;
496
497 if (file == token)
498 continue; /* Not a valid #line directive, may be a comment */
499
500 while (*file && xisspace((unsigned char) *file))
501 ++file;
502
503 if (*file) {
504 if (*file != '"')
505 continue; /* Not a valid #line directive, may be a comment */
506
507 xstrncpy(new_file_name, file + 1, sizeof(new_file_name));
508
509 if ((token = strchr(new_file_name, '"')))
510 *token = '\0';
511
512 cfg_filename = new_file_name;
513 }
514
515 config_lineno = new_lineno;
516 }
517
518 if (config_input_line[0] == '#')
519 continue;
520
521 if (config_input_line[0] == '\0')
522 continue;
523
524 const char* append = tmp_line_len ? skip_ws(config_input_line) : config_input_line;
525
526 size_t append_len = strlen(append);
527
528 tmp_line = (char*)xrealloc(tmp_line, tmp_line_len + append_len + 1);
529
530 strcpy(tmp_line + tmp_line_len, append);
531
532 tmp_line_len += append_len;
533
534 if (tmp_line[tmp_line_len-1] == '\\') {
535 debugs(3, 5, "parseConfigFile: tmp_line='" << tmp_line << "'");
536 tmp_line[--tmp_line_len] = '\0';
537 continue;
538 }
539
540 trim_trailing_ws(tmp_line);
541 ProcessMacros(tmp_line, tmp_line_len);
542 debugs(3, (opt_parse_cfg_only?1:5), "Processing: " << tmp_line);
543
544 if (const char* expr = FindStatement(tmp_line, "if")) {
545 if_states.push_back(EvalBoolExpr(expr)); // store last if-statement meaning
546 } else if (FindStatement(tmp_line, "endif")) {
547 if (!if_states.empty())
548 if_states.pop_back(); // remove last if-statement meaning
549 else
550 fatalf("'endif' without 'if'\n");
551 } else if (FindStatement(tmp_line, "else")) {
552 if (!if_states.empty())
553 if_states.back() = !if_states.back();
554 else
555 fatalf("'else' without 'if'\n");
556 } else if (if_states.empty() || if_states.back()) { // test last if-statement meaning if present
557 /* Handle includes here */
558 if (tmp_line_len >= 9 && strncmp(tmp_line, "include", 7) == 0 && xisspace(tmp_line[7])) {
559 err_count += parseManyConfigFiles(tmp_line + 8, depth + 1);
560 } else if (!parse_line(tmp_line)) {
561 debugs(3, DBG_CRITICAL, HERE << cfg_filename << ":" << config_lineno << " unrecognized: '" << tmp_line << "'");
562 ++err_count;
563 }
564 }
565
566 safe_free(tmp_line);
567 tmp_line_len = 0;
568
569 }
570 if (!if_states.empty())
571 fatalf("if-statement without 'endif'\n");
572
573 if (is_pipe) {
574 int ret = pclose(fp);
575
576 if (ret != 0)
577 fatalf("parseConfigFile: '%s' failed with exit code %d\n", file_name, ret);
578 } else {
579 fclose(fp);
580 }
581
582 cfg_filename = orig_cfg_filename;
583 config_lineno = orig_config_lineno;
584
585 return err_count;
586 }
587
588 int
589 parseConfigFile(const char *file_name)
590 {
591 int err_count = 0;
592
593 debugs(5, 4, HERE);
594
595 configFreeMemory();
596
597 ACLMethodData::ThePurgeCount = 0;
598 default_all();
599
600 err_count = parseOneConfigFile(file_name, 0);
601
602 defaults_if_none();
603
604 defaults_postscriptum();
605
606 /*
607 * We must call configDoConfigure() before leave_suid() because
608 * configDoConfigure() is where we turn username strings into
609 * uid values.
610 */
611 configDoConfigure();
612
613 if (!Config.chroot_dir) {
614 leave_suid();
615 setUmask(Config.umask);
616 _db_init(Debug::cache_log, Debug::debugOptions);
617 enter_suid();
618 }
619
620 if (opt_send_signal == -1) {
621 Mgr::RegisterAction("config",
622 "Current Squid Configuration",
623 dump_config,
624 1, 1);
625 }
626
627 return err_count;
628 }
629
630 static void
631 configDoConfigure(void)
632 {
633 memset(&Config2, '\0', sizeof(SquidConfig2));
634 /* init memory as early as possible */
635 memConfigure();
636 /* Sanity checks */
637
638 if (Config.cacheSwap.swapDirs == NULL) {
639 /* Memory-only cache probably in effect. */
640 /* turn off the cache rebuild delays... */
641 StoreController::store_dirs_rebuilding = 0;
642 } else if (InDaemonMode()) { // no diskers in non-daemon mode
643 for (int i = 0; i < Config.cacheSwap.n_configured; ++i) {
644 const RefCount<SwapDir> sd = Config.cacheSwap.swapDirs[i];
645 if (sd->needsDiskStrand())
646 sd->disker = Config.workers + (++Config.cacheSwap.n_strands);
647 }
648 }
649
650 if (Debug::rotateNumber < 0) {
651 Debug::rotateNumber = Config.Log.rotateNumber;
652 }
653
654 #if SIZEOF_OFF_T <= 4
655 if (Config.Store.maxObjectSize > 0x7FFF0000) {
656 debugs(3, DBG_CRITICAL, "WARNING: This Squid binary can not handle files larger than 2GB. Limiting maximum_object_size to just below 2GB");
657 Config.Store.maxObjectSize = 0x7FFF0000;
658 }
659 #endif
660 if (0 == Store::Root().maxSize())
661 /* people might want a zero-sized cache on purpose */
662 (void) 0;
663 else if (Store::Root().maxSize() < Config.memMaxSize)
664 /* This is bogus. folk with NULL caches will want this */
665 debugs(3, DBG_CRITICAL, "WARNING cache_mem is larger than total disk cache space!");
666
667 if (Config.Announce.period > 0) {
668 Config.onoff.announce = 1;
669 } else if (Config.Announce.period < 1) {
670 Config.Announce.period = 86400 * 365; /* one year */
671 Config.onoff.announce = 0;
672 }
673
674 if (Config.onoff.httpd_suppress_version_string)
675 visible_appname_string = (char *)appname_string;
676 else
677 visible_appname_string = (char const *)APP_FULLNAME;
678
679 #if USE_DNSHELPER
680 if (Config.dnsChildren.n_max < 1)
681 fatal("No DNS helpers allocated");
682 #endif
683
684 if (Config.Program.redirect) {
685 if (Config.redirectChildren.n_max < 1) {
686 Config.redirectChildren.n_max = 0;
687 wordlistDestroy(&Config.Program.redirect);
688 }
689 }
690
691 if (Config.appendDomain)
692 if (*Config.appendDomain != '.')
693 fatal("append_domain must begin with a '.'");
694
695 if (Config.errHtmlText == NULL)
696 Config.errHtmlText = xstrdup(null_string);
697
698 #if !HAVE_SETRLIMIT || !defined(RLIMIT_NOFILE)
699 if (Config.max_filedescriptors > 0) {
700 debugs(0, DBG_IMPORTANT, "WARNING: max_filedescriptors disabled. Operating System setrlimit(RLIMIT_NOFILE) is missing.");
701 }
702 #elif USE_SELECT || USE_SELECT_WIN32
703 if (Config.max_filedescriptors > FD_SETSIZE) {
704 debugs(0, DBG_IMPORTANT, "WARNING: max_filedescriptors limited to " << FD_SETSIZE << " by select() algorithm.");
705 }
706 #endif
707
708 storeConfigure();
709
710 snprintf(ThisCache, sizeof(ThisCache), "%s (%s)",
711 uniqueHostname(),
712 visible_appname_string);
713
714 /*
715 * the extra space is for loop detection in client_side.c -- we search
716 * for substrings in the Via header.
717 */
718 snprintf(ThisCache2, sizeof(ThisCache), " %s (%s)",
719 uniqueHostname(),
720 visible_appname_string);
721
722 /* Use visible_hostname as default surrogate_id */
723 if (!Config.Accel.surrogate_id) {
724 const char *t = getMyHostname();
725 Config.Accel.surrogate_id = xstrdup( (t?t:"unset-id") );
726 }
727
728 if (!Config.udpMaxHitObjsz || Config.udpMaxHitObjsz > SQUID_UDP_SO_SNDBUF)
729 Config.udpMaxHitObjsz = SQUID_UDP_SO_SNDBUF;
730
731 if (Config.appendDomain)
732 Config.appendDomainLen = strlen(Config.appendDomain);
733 else
734 Config.appendDomainLen = 0;
735
736 if (Config.connect_retries > 10) {
737 debugs(0,DBG_CRITICAL, "WARNING: connect_retries cannot be larger than 10. Resetting to 10.");
738 Config.connect_retries = 10;
739 }
740
741 requirePathnameExists("MIME Config Table", Config.mimeTablePathname);
742 #if USE_DNSHELPER
743 requirePathnameExists("cache_dns_program", Config.Program.dnsserver);
744 #endif
745 #if USE_UNLINKD
746
747 requirePathnameExists("unlinkd_program", Config.Program.unlinkd);
748 #endif
749 requirePathnameExists("logfile_daemon", Log::TheConfig.logfile_daemon);
750 if (Config.Program.redirect)
751 requirePathnameExists("redirect_program", Config.Program.redirect->key);
752
753 requirePathnameExists("Icon Directory", Config.icons.directory);
754
755 if (Config.errorDirectory)
756 requirePathnameExists("Error Directory", Config.errorDirectory);
757
758 #if USE_HTTP_VIOLATIONS
759
760 {
761 const refresh_t *R;
762
763 for (R = Config.Refresh; R; R = R->next) {
764 if (!R->flags.override_expire)
765 continue;
766
767 debugs(22, DBG_IMPORTANT, "WARNING: use of 'override-expire' in 'refresh_pattern' violates HTTP");
768
769 break;
770 }
771
772 for (R = Config.Refresh; R; R = R->next) {
773 if (!R->flags.override_lastmod)
774 continue;
775
776 debugs(22, DBG_IMPORTANT, "WARNING: use of 'override-lastmod' in 'refresh_pattern' violates HTTP");
777
778 break;
779 }
780
781 for (R = Config.Refresh; R; R = R->next) {
782 if (!R->flags.reload_into_ims)
783 continue;
784
785 debugs(22, DBG_IMPORTANT, "WARNING: use of 'reload-into-ims' in 'refresh_pattern' violates HTTP");
786
787 break;
788 }
789
790 for (R = Config.Refresh; R; R = R->next) {
791 if (!R->flags.ignore_reload)
792 continue;
793
794 debugs(22, DBG_IMPORTANT, "WARNING: use of 'ignore-reload' in 'refresh_pattern' violates HTTP");
795
796 break;
797 }
798
799 for (R = Config.Refresh; R; R = R->next) {
800 if (!R->flags.ignore_no_cache)
801 continue;
802
803 debugs(22, DBG_IMPORTANT, "WARNING: use of 'ignore-no-cache' in 'refresh_pattern' violates HTTP");
804
805 break;
806 }
807
808 for (R = Config.Refresh; R; R = R->next) {
809 if (!R->flags.ignore_no_store)
810 continue;
811
812 debugs(22, DBG_IMPORTANT, "WARNING: use of 'ignore-no-store' in 'refresh_pattern' violates HTTP");
813
814 break;
815 }
816
817 for (R = Config.Refresh; R; R = R->next) {
818 if (!R->flags.ignore_must_revalidate)
819 continue;
820 debugs(22, DBG_IMPORTANT, "WARNING: use of 'ignore-must-revalidate' in 'refresh_pattern' violates HTTP");
821 break;
822 }
823
824 for (R = Config.Refresh; R; R = R->next) {
825 if (!R->flags.ignore_private)
826 continue;
827
828 debugs(22, DBG_IMPORTANT, "WARNING: use of 'ignore-private' in 'refresh_pattern' violates HTTP");
829
830 break;
831 }
832
833 for (R = Config.Refresh; R; R = R->next) {
834 if (!R->flags.ignore_auth)
835 continue;
836
837 debugs(22, DBG_IMPORTANT, "WARNING: use of 'ignore-auth' in 'refresh_pattern' violates HTTP");
838
839 break;
840 }
841
842 }
843 #endif
844 #if !USE_HTTP_VIOLATIONS
845 Config.onoff.via = 1;
846 #else
847
848 if (!Config.onoff.via)
849 debugs(22, DBG_IMPORTANT, "WARNING: HTTP requires the use of Via");
850
851 #endif
852
853 // we enable runtime PURGE checks if there is at least one PURGE method ACL
854 // TODO: replace with a dedicated "purge" ACL option?
855 Config2.onoff.enable_purge = (ACLMethodData::ThePurgeCount > 0);
856
857 Config2.onoff.mangle_request_headers = (Config.request_header_access != NULL);
858
859 if (geteuid() == 0) {
860 if (NULL != Config.effectiveUser) {
861
862 struct passwd *pwd = getpwnam(Config.effectiveUser);
863
864 if (NULL == pwd) {
865 /*
866 * Andres Kroonmaa <andre@online.ee>:
867 * Some getpwnam() implementations (Solaris?) require
868 * an available FD < 256 for opening a FILE* to the
869 * passwd file.
870 * DW:
871 * This should be safe at startup, but might still fail
872 * during reconfigure.
873 */
874 fatalf("getpwnam failed to find userid for effective user '%s'",
875 Config.effectiveUser);
876 return;
877 }
878
879 Config2.effectiveUserID = pwd->pw_uid;
880
881 Config2.effectiveGroupID = pwd->pw_gid;
882
883 #if HAVE_PUTENV
884
885 if (pwd->pw_dir && *pwd->pw_dir) {
886 int len;
887 char *env_str = (char *)xcalloc((len = strlen(pwd->pw_dir) + 6), 1);
888 snprintf(env_str, len, "HOME=%s", pwd->pw_dir);
889 putenv(env_str);
890 }
891
892 #endif
893
894 }
895 } else {
896 Config2.effectiveUserID = geteuid();
897 Config2.effectiveGroupID = getegid();
898 }
899
900 if (NULL != Config.effectiveGroup) {
901
902 struct group *grp = getgrnam(Config.effectiveGroup);
903
904 if (NULL == grp) {
905 fatalf("getgrnam failed to find groupid for effective group '%s'",
906 Config.effectiveGroup);
907 return;
908 }
909
910 Config2.effectiveGroupID = grp->gr_gid;
911 }
912
913 HttpRequestMethod::Configure(Config);
914 #if USE_SSL
915
916 debugs(3, DBG_IMPORTANT, "Initializing https proxy context");
917
918 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);
919
920 for (peer *p = Config.peers; p != NULL; p = p->next) {
921 if (p->use_ssl) {
922 debugs(3, DBG_IMPORTANT, "Initializing cache_peer " << p->name << " SSL context");
923 p->sslContext = sslCreateClientContext(p->sslcert, p->sslkey, p->sslversion, p->sslcipher, p->ssloptions, p->sslflags, p->sslcafile, p->sslcapath, p->sslcrlfile);
924 }
925 }
926
927 for (AnyP::PortCfg *s = Config.Sockaddr.http; s != NULL; s = s->next) {
928 if (!s->sslBump)
929 continue;
930
931 debugs(3, DBG_IMPORTANT, "Initializing http_port " << s->s << " SSL context");
932 s->configureSslServerContext();
933 }
934
935 for (AnyP::PortCfg *s = Config.Sockaddr.https; s != NULL; s = s->next) {
936 debugs(3, DBG_IMPORTANT, "Initializing https_port " << s->s << " SSL context");
937 s->configureSslServerContext();
938 }
939
940 #endif
941
942 // prevent infinite fetch loops in the request parser
943 // due to buffer full but not enough data recived to finish parse
944 if (Config.maxRequestBufferSize <= Config.maxRequestHeaderSize) {
945 fatalf("Client request buffer of %u bytes cannot hold a request with %u bytes of headers." \
946 " Change client_request_buffer_max or request_header_max_size limits.",
947 (uint32_t)Config.maxRequestBufferSize, (uint32_t)Config.maxRequestHeaderSize);
948 }
949
950 #if USE_AUTH
951 /*
952 * disable client side request pipelining. There is a race with
953 * Negotiate and NTLM when the client sends a second request on an
954 * connection before the authenticate challenge is sent. With
955 * pipelining OFF, the client may fail to authenticate, but squid's
956 * state will be preserved.
957 */
958 if (Config.onoff.pipeline_prefetch) {
959 Auth::Config *nego = Auth::Config::Find("Negotiate");
960 Auth::Config *ntlm = Auth::Config::Find("NTLM");
961 if ((nego && nego->active()) || (ntlm && ntlm->active())) {
962 debugs(3, DBG_IMPORTANT, "WARNING: pipeline_prefetch breaks NTLM and Negotiate authentication. Forced OFF.");
963 Config.onoff.pipeline_prefetch = 0;
964 }
965 }
966 #endif
967 }
968
969 /** Parse a line containing an obsolete directive.
970 * To upgrade it where possible instead of just "Bungled config" for
971 * directives which cannot be marked as simply aliases of the some name.
972 * For example if the parameter order and content has changed.
973 * Or if the directive has been completely removed.
974 */
975 void
976 parse_obsolete(const char *name)
977 {
978 // Directives which have been radically changed rather than removed
979 if (!strcmp(name, "url_rewrite_concurrency")) {
980 int cval;
981 parse_int(&cval);
982 debugs(3, DBG_CRITICAL, "WARNING: url_rewrite_concurrency upgrade overriding url_rewrite_children settings.");
983 Config.redirectChildren.concurrency = cval;
984 }
985 }
986
987 /* Parse a time specification from the config file. Store the
988 * result in 'tptr', after converting it to 'units' */
989 static void
990 parseTimeLine(time_msec_t * tptr, const char *units, bool allowMsec)
991 {
992 char *token;
993 double d;
994 time_msec_t m;
995 time_msec_t u;
996
997 if ((u = parseTimeUnits(units, allowMsec)) == 0)
998 self_destruct();
999
1000 if ((token = strtok(NULL, w_space)) == NULL)
1001 self_destruct();
1002
1003 d = xatof(token);
1004
1005 m = u; /* default to 'units' if none specified */
1006
1007 if (0 == d)
1008 (void) 0;
1009 else if ((token = strtok(NULL, w_space)) == NULL)
1010 debugs(3, DBG_CRITICAL, "WARNING: No units on '" <<
1011 config_input_line << "', assuming " <<
1012 d << " " << units );
1013 else if ((m = parseTimeUnits(token, allowMsec)) == 0)
1014 self_destruct();
1015
1016 *tptr = static_cast<time_msec_t>(m * d);
1017 }
1018
1019 static uint64_t
1020 parseTimeUnits(const char *unit, bool allowMsec)
1021 {
1022 if (allowMsec && !strncasecmp(unit, T_MILLISECOND_STR, strlen(T_MILLISECOND_STR)))
1023 return 1;
1024
1025 if (!strncasecmp(unit, T_SECOND_STR, strlen(T_SECOND_STR)))
1026 return 1000;
1027
1028 if (!strncasecmp(unit, T_MINUTE_STR, strlen(T_MINUTE_STR)))
1029 return 60 * 1000;
1030
1031 if (!strncasecmp(unit, T_HOUR_STR, strlen(T_HOUR_STR)))
1032 return 3600 * 1000;
1033
1034 if (!strncasecmp(unit, T_DAY_STR, strlen(T_DAY_STR)))
1035 return 86400 * 1000;
1036
1037 if (!strncasecmp(unit, T_WEEK_STR, strlen(T_WEEK_STR)))
1038 return 86400 * 7 * 1000;
1039
1040 if (!strncasecmp(unit, T_FORTNIGHT_STR, strlen(T_FORTNIGHT_STR)))
1041 return 86400 * 14 * 1000;
1042
1043 if (!strncasecmp(unit, T_MONTH_STR, strlen(T_MONTH_STR)))
1044 return static_cast<uint64_t>(86400) * 30 * 1000;
1045
1046 if (!strncasecmp(unit, T_YEAR_STR, strlen(T_YEAR_STR)))
1047 return static_cast<uint64_t>(86400 * 1000 * 365.2522);
1048
1049 if (!strncasecmp(unit, T_DECADE_STR, strlen(T_DECADE_STR)))
1050 return static_cast<uint64_t>(86400 * 1000 * 365.2522 * 10);
1051
1052 debugs(3, DBG_IMPORTANT, "parseTimeUnits: unknown time unit '" << unit << "'");
1053
1054 return 0;
1055 }
1056
1057 static void
1058 parseBytesLine64(int64_t * bptr, const char *units)
1059 {
1060 char *token;
1061 double d;
1062 int64_t m;
1063 int64_t u;
1064
1065 if ((u = parseBytesUnits(units)) == 0) {
1066 self_destruct();
1067 return;
1068 }
1069
1070 if ((token = strtok(NULL, w_space)) == NULL) {
1071 self_destruct();
1072 return;
1073 }
1074
1075 if (strcmp(token, "none") == 0 || strcmp(token, "-1") == 0) {
1076 *bptr = -1;
1077 return;
1078 }
1079
1080 d = xatof(token);
1081
1082 m = u; /* default to 'units' if none specified */
1083
1084 if (0.0 == d)
1085 (void) 0;
1086 else if ((token = strtok(NULL, w_space)) == NULL)
1087 debugs(3, DBG_CRITICAL, "WARNING: No units on '" <<
1088 config_input_line << "', assuming " <<
1089 d << " " << units );
1090 else if ((m = parseBytesUnits(token)) == 0) {
1091 self_destruct();
1092 return;
1093 }
1094
1095 *bptr = static_cast<int64_t>(m * d / u);
1096
1097 if (static_cast<double>(*bptr) * 2 != m * d / u * 2)
1098 self_destruct();
1099 }
1100
1101 static void
1102 parseBytesLine(size_t * bptr, const char *units)
1103 {
1104 char *token;
1105 double d;
1106 int m;
1107 int u;
1108
1109 if ((u = parseBytesUnits(units)) == 0) {
1110 self_destruct();
1111 return;
1112 }
1113
1114 if ((token = strtok(NULL, w_space)) == NULL) {
1115 self_destruct();
1116 return;
1117 }
1118
1119 if (strcmp(token, "none") == 0 || strcmp(token, "-1") == 0) {
1120 *bptr = static_cast<size_t>(-1);
1121 return;
1122 }
1123
1124 d = xatof(token);
1125
1126 m = u; /* default to 'units' if none specified */
1127
1128 if (0.0 == d)
1129 (void) 0;
1130 else if ((token = strtok(NULL, w_space)) == NULL)
1131 debugs(3, DBG_CRITICAL, "WARNING: No units on '" <<
1132 config_input_line << "', assuming " <<
1133 d << " " << units );
1134 else if ((m = parseBytesUnits(token)) == 0) {
1135 self_destruct();
1136 return;
1137 }
1138
1139 *bptr = static_cast<size_t>(m * d / u);
1140
1141 if (static_cast<double>(*bptr) * 2 != m * d / u * 2)
1142 self_destruct();
1143 }
1144
1145 #if !USE_DNSHELPER
1146 static void
1147 parseBytesLineSigned(ssize_t * bptr, const char *units)
1148 {
1149 char *token;
1150 double d;
1151 int m;
1152 int u;
1153
1154 if ((u = parseBytesUnits(units)) == 0) {
1155 self_destruct();
1156 return;
1157 }
1158
1159 if ((token = strtok(NULL, w_space)) == NULL) {
1160 self_destruct();
1161 return;
1162 }
1163
1164 if (strcmp(token, "none") == 0 || token[0] == '-' /* -N */) {
1165 *bptr = -1;
1166 return;
1167 }
1168
1169 d = xatof(token);
1170
1171 m = u; /* default to 'units' if none specified */
1172
1173 if (0.0 == d)
1174 (void) 0;
1175 else if ((token = strtok(NULL, w_space)) == NULL)
1176 debugs(3, DBG_CRITICAL, "WARNING: No units on '" <<
1177 config_input_line << "', assuming " <<
1178 d << " " << units );
1179 else if ((m = parseBytesUnits(token)) == 0) {
1180 self_destruct();
1181 return;
1182 }
1183
1184 *bptr = static_cast<size_t>(m * d / u);
1185
1186 if (static_cast<double>(*bptr) * 2 != m * d / u * 2)
1187 self_destruct();
1188 }
1189 #endif
1190
1191 #if USE_SSL
1192 /**
1193 * Parse bytes from a string.
1194 * Similar to the parseBytesLine function but parses the string value instead of
1195 * the current token value.
1196 */
1197 static void parseBytesOptionValue(size_t * bptr, const char *units, char const * value)
1198 {
1199 int u;
1200 if ((u = parseBytesUnits(units)) == 0) {
1201 self_destruct();
1202 return;
1203 }
1204
1205 // Find number from string beginning.
1206 char const * number_begin = value;
1207 char const * number_end = value;
1208
1209 while ((*number_end >= '0' && *number_end <= '9')) {
1210 ++number_end;
1211 }
1212
1213 String number;
1214 number.limitInit(number_begin, number_end - number_begin);
1215
1216 int d = xatoi(number.termedBuf());
1217 int m;
1218 if ((m = parseBytesUnits(number_end)) == 0) {
1219 self_destruct();
1220 return;
1221 }
1222
1223 *bptr = static_cast<size_t>(m * d / u);
1224 if (static_cast<double>(*bptr) * 2 != m * d / u * 2)
1225 self_destruct();
1226 }
1227 #endif
1228
1229 static size_t
1230 parseBytesUnits(const char *unit)
1231 {
1232 if (!strncasecmp(unit, B_BYTES_STR, strlen(B_BYTES_STR)))
1233 return 1;
1234
1235 if (!strncasecmp(unit, B_KBYTES_STR, strlen(B_KBYTES_STR)))
1236 return 1 << 10;
1237
1238 if (!strncasecmp(unit, B_MBYTES_STR, strlen(B_MBYTES_STR)))
1239 return 1 << 20;
1240
1241 if (!strncasecmp(unit, B_GBYTES_STR, strlen(B_GBYTES_STR)))
1242 return 1 << 30;
1243
1244 debugs(3, DBG_CRITICAL, "WARNING: Unknown bytes unit '" << unit << "'");
1245
1246 return 0;
1247 }
1248
1249 /*****************************************************************************
1250 * Max
1251 *****************************************************************************/
1252
1253 static void
1254 dump_acl(StoreEntry * entry, const char *name, ACL * ae)
1255 {
1256 wordlist *w;
1257 wordlist *v;
1258
1259 while (ae != NULL) {
1260 debugs(3, 3, "dump_acl: " << name << " " << ae->name);
1261 storeAppendPrintf(entry, "%s %s %s ",
1262 name,
1263 ae->name,
1264 ae->typeString());
1265 v = w = ae->dump();
1266
1267 while (v != NULL) {
1268 debugs(3, 3, "dump_acl: " << name << " " << ae->name << " " << v->key);
1269 storeAppendPrintf(entry, "%s ", v->key);
1270 v = v->next;
1271 }
1272
1273 storeAppendPrintf(entry, "\n");
1274 wordlistDestroy(&w);
1275 ae = ae->next;
1276 }
1277 }
1278
1279 static void
1280 parse_acl(ACL ** ae)
1281 {
1282 ACL::ParseAclLine(LegacyParser, ae);
1283 }
1284
1285 static void
1286 free_acl(ACL ** ae)
1287 {
1288 aclDestroyAcls(ae);
1289 }
1290
1291 void
1292 dump_acl_list(StoreEntry * entry, ACLList * head)
1293 {
1294 ACLList *l;
1295
1296 for (l = head; l; l = l->next) {
1297 storeAppendPrintf(entry, " %s%s",
1298 l->op ? null_string : "!",
1299 l->_acl->name);
1300 }
1301 }
1302
1303 void
1304 dump_acl_access(StoreEntry * entry, const char *name, acl_access * head)
1305 {
1306 acl_access *l;
1307
1308 for (l = head; l; l = l->next) {
1309 storeAppendPrintf(entry, "%s %s",
1310 name,
1311 l->allow ? "Allow" : "Deny");
1312 dump_acl_list(entry, l->aclList);
1313 storeAppendPrintf(entry, "\n");
1314 }
1315 }
1316
1317 static void
1318 parse_acl_access(acl_access ** head)
1319 {
1320 aclParseAccessLine(LegacyParser, head);
1321 }
1322
1323 static void
1324 free_acl_access(acl_access ** head)
1325 {
1326 aclDestroyAccessList(head);
1327 }
1328
1329 static void
1330 dump_address(StoreEntry * entry, const char *name, Ip::Address &addr)
1331 {
1332 char buf[MAX_IPSTRLEN];
1333 storeAppendPrintf(entry, "%s %s\n", name, addr.NtoA(buf,MAX_IPSTRLEN) );
1334 }
1335
1336 static void
1337 parse_address(Ip::Address *addr)
1338 {
1339 char *token = strtok(NULL, w_space);
1340
1341 if (!token) {
1342 self_destruct();
1343 return;
1344 }
1345
1346 if (!strcmp(token,"any_addr"))
1347 addr->SetAnyAddr();
1348 else if ( (!strcmp(token,"no_addr")) || (!strcmp(token,"full_mask")) )
1349 addr->SetNoAddr();
1350 else if ( (*addr = token) ) // try parse numeric/IPA
1351 (void) 0;
1352 else
1353 addr->GetHostByName(token); // dont use ipcache
1354 }
1355
1356 static void
1357 free_address(Ip::Address *addr)
1358 {
1359 addr->SetEmpty();
1360 }
1361
1362 CBDATA_TYPE(acl_address);
1363
1364 static void
1365 dump_acl_address(StoreEntry * entry, const char *name, acl_address * head)
1366 {
1367 char buf[MAX_IPSTRLEN];
1368 acl_address *l;
1369
1370 for (l = head; l; l = l->next) {
1371 if (!l->addr.IsAnyAddr())
1372 storeAppendPrintf(entry, "%s %s", name, l->addr.NtoA(buf,MAX_IPSTRLEN));
1373 else
1374 storeAppendPrintf(entry, "%s autoselect", name);
1375
1376 dump_acl_list(entry, l->aclList);
1377
1378 storeAppendPrintf(entry, "\n");
1379 }
1380 }
1381
1382 static void
1383 freed_acl_address(void *data)
1384 {
1385 acl_address *l = static_cast<acl_address *>(data);
1386 aclDestroyAclList(&l->aclList);
1387 }
1388
1389 static void
1390 parse_acl_address(acl_address ** head)
1391 {
1392 acl_address *l;
1393 acl_address **tail = head; /* sane name below */
1394 CBDATA_INIT_TYPE_FREECB(acl_address, freed_acl_address);
1395 l = cbdataAlloc(acl_address);
1396 parse_address(&l->addr);
1397 aclParseAclList(LegacyParser, &l->aclList);
1398
1399 while (*tail)
1400 tail = &(*tail)->next;
1401
1402 *tail = l;
1403 }
1404
1405 static void
1406 free_acl_address(acl_address ** head)
1407 {
1408 while (*head) {
1409 acl_address *l = *head;
1410 *head = l->next;
1411 cbdataFree(l);
1412 }
1413 }
1414
1415 CBDATA_TYPE(acl_tos);
1416
1417 static void
1418 dump_acl_tos(StoreEntry * entry, const char *name, acl_tos * head)
1419 {
1420 acl_tos *l;
1421
1422 for (l = head; l; l = l->next) {
1423 if (l->tos > 0)
1424 storeAppendPrintf(entry, "%s 0x%02X", name, l->tos);
1425 else
1426 storeAppendPrintf(entry, "%s none", name);
1427
1428 dump_acl_list(entry, l->aclList);
1429
1430 storeAppendPrintf(entry, "\n");
1431 }
1432 }
1433
1434 static void
1435 freed_acl_tos(void *data)
1436 {
1437 acl_tos *l = static_cast<acl_tos *>(data);
1438 aclDestroyAclList(&l->aclList);
1439 }
1440
1441 static void
1442 parse_acl_tos(acl_tos ** head)
1443 {
1444 acl_tos *l;
1445 acl_tos **tail = head; /* sane name below */
1446 unsigned int tos; /* Initially uint for strtoui. Casted to tos_t before return */
1447 char *token = strtok(NULL, w_space);
1448
1449 if (!token) {
1450 self_destruct();
1451 return;
1452 }
1453
1454 if (!xstrtoui(token, NULL, &tos, 0, std::numeric_limits<tos_t>::max())) {
1455 self_destruct();
1456 return;
1457 }
1458
1459 CBDATA_INIT_TYPE_FREECB(acl_tos, freed_acl_tos);
1460
1461 l = cbdataAlloc(acl_tos);
1462
1463 l->tos = (tos_t)tos;
1464
1465 aclParseAclList(LegacyParser, &l->aclList);
1466
1467 while (*tail)
1468 tail = &(*tail)->next;
1469
1470 *tail = l;
1471 }
1472
1473 static void
1474 free_acl_tos(acl_tos ** head)
1475 {
1476 while (*head) {
1477 acl_tos *l = *head;
1478 *head = l->next;
1479 l->next = NULL;
1480 cbdataFree(l);
1481 }
1482 }
1483
1484 #if SO_MARK && USE_LIBCAP
1485
1486 CBDATA_TYPE(acl_nfmark);
1487
1488 static void
1489 dump_acl_nfmark(StoreEntry * entry, const char *name, acl_nfmark * head)
1490 {
1491 acl_nfmark *l;
1492
1493 for (l = head; l; l = l->next) {
1494 if (l->nfmark > 0)
1495 storeAppendPrintf(entry, "%s 0x%02X", name, l->nfmark);
1496 else
1497 storeAppendPrintf(entry, "%s none", name);
1498
1499 dump_acl_list(entry, l->aclList);
1500
1501 storeAppendPrintf(entry, "\n");
1502 }
1503 }
1504
1505 static void
1506 freed_acl_nfmark(void *data)
1507 {
1508 acl_nfmark *l = static_cast<acl_nfmark *>(data);
1509 aclDestroyAclList(&l->aclList);
1510 }
1511
1512 static void
1513 parse_acl_nfmark(acl_nfmark ** head)
1514 {
1515 acl_nfmark *l;
1516 acl_nfmark **tail = head; /* sane name below */
1517 nfmark_t mark;
1518 char *token = strtok(NULL, w_space);
1519
1520 if (!token) {
1521 self_destruct();
1522 return;
1523 }
1524
1525 if (!xstrtoui(token, NULL, &mark, 0, std::numeric_limits<nfmark_t>::max())) {
1526 self_destruct();
1527 return;
1528 }
1529
1530 CBDATA_INIT_TYPE_FREECB(acl_nfmark, freed_acl_nfmark);
1531
1532 l = cbdataAlloc(acl_nfmark);
1533
1534 l->nfmark = mark;
1535
1536 aclParseAclList(LegacyParser, &l->aclList);
1537
1538 while (*tail)
1539 tail = &(*tail)->next;
1540
1541 *tail = l;
1542 }
1543
1544 static void
1545 free_acl_nfmark(acl_nfmark ** head)
1546 {
1547 while (*head) {
1548 acl_nfmark *l = *head;
1549 *head = l->next;
1550 l->next = NULL;
1551 cbdataFree(l);
1552 }
1553 }
1554 #endif /* SO_MARK */
1555
1556 CBDATA_TYPE(acl_size_t);
1557
1558 static void
1559 dump_acl_b_size_t(StoreEntry * entry, const char *name, acl_size_t * head)
1560 {
1561 acl_size_t *l;
1562
1563 for (l = head; l; l = l->next) {
1564 if (l->size != -1)
1565 storeAppendPrintf(entry, "%s %d %s\n", name, (int) l->size, B_BYTES_STR);
1566 else
1567 storeAppendPrintf(entry, "%s none", name);
1568
1569 dump_acl_list(entry, l->aclList);
1570
1571 storeAppendPrintf(entry, "\n");
1572 }
1573 }
1574
1575 static void
1576 freed_acl_b_size_t(void *data)
1577 {
1578 acl_size_t *l = static_cast<acl_size_t *>(data);
1579 aclDestroyAclList(&l->aclList);
1580 }
1581
1582 static void
1583 parse_acl_b_size_t(acl_size_t ** head)
1584 {
1585 acl_size_t *l;
1586 acl_size_t **tail = head; /* sane name below */
1587
1588 CBDATA_INIT_TYPE_FREECB(acl_size_t, freed_acl_b_size_t);
1589
1590 l = cbdataAlloc(acl_size_t);
1591
1592 parse_b_int64_t(&l->size);
1593
1594 aclParseAclList(LegacyParser, &l->aclList);
1595
1596 while (*tail)
1597 tail = &(*tail)->next;
1598
1599 *tail = l;
1600 }
1601
1602 static void
1603 free_acl_b_size_t(acl_size_t ** head)
1604 {
1605 while (*head) {
1606 acl_size_t *l = *head;
1607 *head = l->next;
1608 l->next = NULL;
1609 cbdataFree(l);
1610 }
1611 }
1612
1613 #if USE_DELAY_POOLS
1614
1615 #include "DelayPools.h"
1616 #include "DelayConfig.h"
1617 /* do nothing - free_delay_pool_count is the magic free function.
1618 * this is why delay_pool_count isn't just marked TYPE: u_short
1619 */
1620 #define free_delay_pool_class(X)
1621 #define free_delay_pool_access(X)
1622 #define free_delay_pool_rates(X)
1623 #define dump_delay_pool_class(X, Y, Z)
1624 #define dump_delay_pool_access(X, Y, Z)
1625 #define dump_delay_pool_rates(X, Y, Z)
1626
1627 static void
1628 free_delay_pool_count(DelayConfig * cfg)
1629 {
1630 cfg->freePoolCount();
1631 }
1632
1633 static void
1634 dump_delay_pool_count(StoreEntry * entry, const char *name, DelayConfig &cfg)
1635 {
1636 cfg.dumpPoolCount (entry, name);
1637 }
1638
1639 static void
1640 parse_delay_pool_count(DelayConfig * cfg)
1641 {
1642 cfg->parsePoolCount();
1643 }
1644
1645 static void
1646 parse_delay_pool_class(DelayConfig * cfg)
1647 {
1648 cfg->parsePoolClass();
1649 }
1650
1651 static void
1652 parse_delay_pool_rates(DelayConfig * cfg)
1653 {
1654 cfg->parsePoolRates();
1655 }
1656
1657 static void
1658 parse_delay_pool_access(DelayConfig * cfg)
1659 {
1660 cfg->parsePoolAccess(LegacyParser);
1661 }
1662
1663 #endif
1664
1665 #if USE_DELAY_POOLS
1666 #include "ClientDelayConfig.h"
1667 /* do nothing - free_client_delay_pool_count is the magic free function.
1668 * this is why client_delay_pool_count isn't just marked TYPE: u_short
1669 */
1670
1671 #define free_client_delay_pool_access(X)
1672 #define free_client_delay_pool_rates(X)
1673 #define dump_client_delay_pool_access(X, Y, Z)
1674 #define dump_client_delay_pool_rates(X, Y, Z)
1675
1676 static void
1677 free_client_delay_pool_count(ClientDelayConfig * cfg)
1678 {
1679 cfg->freePoolCount();
1680 }
1681
1682 static void
1683 dump_client_delay_pool_count(StoreEntry * entry, const char *name, ClientDelayConfig &cfg)
1684 {
1685 cfg.dumpPoolCount (entry, name);
1686 }
1687
1688 static void
1689 parse_client_delay_pool_count(ClientDelayConfig * cfg)
1690 {
1691 cfg->parsePoolCount();
1692 }
1693
1694 static void
1695 parse_client_delay_pool_rates(ClientDelayConfig * cfg)
1696 {
1697 cfg->parsePoolRates();
1698 }
1699
1700 static void
1701 parse_client_delay_pool_access(ClientDelayConfig * cfg)
1702 {
1703 cfg->parsePoolAccess(LegacyParser);
1704 }
1705 #endif
1706
1707 #if USE_HTTP_VIOLATIONS
1708 static void
1709 dump_http_header_access(StoreEntry * entry, const char *name, const HeaderManglers *manglers)
1710 {
1711 if (manglers)
1712 manglers->dumpAccess(entry, name);
1713 }
1714
1715 static void
1716 parse_http_header_access(HeaderManglers **pm)
1717 {
1718 char *t = NULL;
1719
1720 if ((t = strtok(NULL, w_space)) == NULL) {
1721 debugs(3, DBG_CRITICAL, "" << cfg_filename << " line " << config_lineno << ": " << config_input_line);
1722 debugs(3, DBG_CRITICAL, "parse_http_header_access: missing header name.");
1723 return;
1724 }
1725
1726 if (!*pm)
1727 *pm = new HeaderManglers;
1728 HeaderManglers *manglers = *pm;
1729 header_mangler *mangler = manglers->track(t);
1730 assert(mangler);
1731 parse_acl_access(&mangler->access_list);
1732 }
1733
1734 static void
1735 free_HeaderManglers(HeaderManglers **pm)
1736 {
1737 // we delete the entire http_header_* mangler configuration at once
1738 if (const HeaderManglers *manglers = *pm) {
1739 delete manglers;
1740 *pm = NULL;
1741 }
1742 }
1743
1744 static void
1745 dump_http_header_replace(StoreEntry * entry, const char *name, const HeaderManglers *manglers)
1746 {
1747 if (manglers)
1748 manglers->dumpReplacement(entry, name);
1749 }
1750
1751 static void
1752 parse_http_header_replace(HeaderManglers **pm)
1753 {
1754 char *t = NULL;
1755
1756 if ((t = strtok(NULL, w_space)) == NULL) {
1757 debugs(3, DBG_CRITICAL, "" << cfg_filename << " line " << config_lineno << ": " << config_input_line);
1758 debugs(3, DBG_CRITICAL, "parse_http_header_replace: missing header name.");
1759 return;
1760 }
1761
1762 const char *value = t + strlen(t) + 1;
1763
1764 if (!*pm)
1765 *pm = new HeaderManglers;
1766 HeaderManglers *manglers = *pm;
1767 manglers->setReplacement(t, value);
1768 }
1769
1770 #endif
1771
1772 static void
1773 dump_cachedir(StoreEntry * entry, const char *name, SquidConfig::_cacheSwap swap)
1774 {
1775 SwapDir *s;
1776 int i;
1777 assert (entry);
1778
1779 for (i = 0; i < swap.n_configured; ++i) {
1780 s = dynamic_cast<SwapDir *>(swap.swapDirs[i].getRaw());
1781 if (!s) continue;
1782 storeAppendPrintf(entry, "%s %s %s", name, s->type(), s->path);
1783 s->dump(*entry);
1784 storeAppendPrintf(entry, "\n");
1785 }
1786 }
1787
1788 static int
1789 check_null_string(char *s)
1790 {
1791 return s == NULL;
1792 }
1793
1794 #if USE_AUTH
1795 static void
1796 parse_authparam(Auth::ConfigVector * config)
1797 {
1798 char *type_str;
1799 char *param_str;
1800
1801 if ((type_str = strtok(NULL, w_space)) == NULL)
1802 self_destruct();
1803
1804 if ((param_str = strtok(NULL, w_space)) == NULL)
1805 self_destruct();
1806
1807 /* find a configuration for the scheme in the currently parsed configs... */
1808 Auth::Config *schemeCfg = Auth::Config::Find(type_str);
1809
1810 if (schemeCfg == NULL) {
1811 /* Create a configuration based on the scheme info */
1812 Auth::Scheme::Pointer theScheme = Auth::Scheme::Find(type_str);
1813
1814 if (theScheme == NULL) {
1815 debugs(3, DBG_CRITICAL, "Parsing Config File: Unknown authentication scheme '" << type_str << "'.");
1816 self_destruct();
1817 }
1818
1819 config->push_back(theScheme->createConfig());
1820 schemeCfg = Auth::Config::Find(type_str);
1821 if (schemeCfg == NULL) {
1822 debugs(3, DBG_CRITICAL, "Parsing Config File: Corruption configuring authentication scheme '" << type_str << "'.");
1823 self_destruct();
1824 }
1825 }
1826
1827 schemeCfg->parse(schemeCfg, config->size(), param_str);
1828 }
1829
1830 static void
1831 free_authparam(Auth::ConfigVector * cfg)
1832 {
1833 /* Wipe the Auth globals and Detach/Destruct component config + state. */
1834 cfg->clean();
1835
1836 /* remove our pointers to the probably-dead sub-configs */
1837 while (cfg->size()) {
1838 cfg->pop_back();
1839 }
1840
1841 /* on reconfigure initialize new auth schemes for the new config. */
1842 if (reconfiguring) {
1843 Auth::Init();
1844 }
1845 }
1846
1847 static void
1848 dump_authparam(StoreEntry * entry, const char *name, Auth::ConfigVector cfg)
1849 {
1850 for (Auth::ConfigVector::iterator i = cfg.begin(); i != cfg.end(); ++i)
1851 (*i)->dump(entry, name, (*i));
1852 }
1853 #endif /* USE_AUTH */
1854
1855 /* TODO: just return the object, the # is irrelevant */
1856 static int
1857 find_fstype(char *type)
1858 {
1859 for (size_t i = 0; i < StoreFileSystem::FileSystems().size(); ++i)
1860 if (strcasecmp(type, StoreFileSystem::FileSystems().items[i]->type()) == 0)
1861 return (int)i;
1862
1863 return (-1);
1864 }
1865
1866 static void
1867 parse_cachedir(SquidConfig::_cacheSwap * swap)
1868 {
1869 char *type_str;
1870 char *path_str;
1871 RefCount<SwapDir> sd;
1872 int i;
1873 int fs;
1874
1875 if ((type_str = strtok(NULL, w_space)) == NULL)
1876 self_destruct();
1877
1878 if ((path_str = strtok(NULL, w_space)) == NULL)
1879 self_destruct();
1880
1881 fs = find_fstype(type_str);
1882
1883 if (fs < 0)
1884 self_destruct();
1885
1886 /* reconfigure existing dir */
1887
1888 for (i = 0; i < swap->n_configured; ++i) {
1889 assert (swap->swapDirs[i].getRaw());
1890
1891 if ((strcasecmp(path_str, dynamic_cast<SwapDir *>(swap->swapDirs[i].getRaw())->path)) == 0) {
1892 /* this is specific to on-fs Stores. The right
1893 * way to handle this is probably to have a mapping
1894 * from paths to stores, and have on-fs stores
1895 * register with that, and lookip in that in their
1896 * own setup logic. RBC 20041225. TODO.
1897 */
1898
1899 sd = dynamic_cast<SwapDir *>(swap->swapDirs[i].getRaw());
1900
1901 if (strcmp(sd->type(), StoreFileSystem::FileSystems().items[fs]->type()) != 0) {
1902 debugs(3, DBG_CRITICAL, "ERROR: Can't change type of existing cache_dir " <<
1903 sd->type() << " " << sd->path << " to " << type_str << ". Restart required");
1904 return;
1905 }
1906
1907 sd->reconfigure();
1908
1909 update_maxobjsize();
1910
1911 return;
1912 }
1913 }
1914
1915 /* new cache_dir */
1916 if (swap->n_configured > 63) {
1917 /* 7 bits, signed */
1918 debugs(3, DBG_CRITICAL, "WARNING: There is a fixed maximum of 63 cache_dir entries Squid can handle.");
1919 debugs(3, DBG_CRITICAL, "WARNING: '" << path_str << "' is one to many.");
1920 self_destruct();
1921 return;
1922 }
1923
1924 allocate_new_swapdir(swap);
1925
1926 swap->swapDirs[swap->n_configured] = StoreFileSystem::FileSystems().items[fs]->createSwapDir();
1927
1928 sd = dynamic_cast<SwapDir *>(swap->swapDirs[swap->n_configured].getRaw());
1929
1930 /* parse the FS parameters and options */
1931 sd->parse(swap->n_configured, path_str);
1932
1933 ++swap->n_configured;
1934
1935 /* Update the max object size */
1936 update_maxobjsize();
1937 }
1938
1939 static const char *
1940 peer_type_str(const peer_t type)
1941 {
1942 const char * result;
1943
1944 switch (type) {
1945
1946 case PEER_PARENT:
1947 result = "parent";
1948 break;
1949
1950 case PEER_SIBLING:
1951 result = "sibling";
1952 break;
1953
1954 case PEER_MULTICAST:
1955 result = "multicast";
1956 break;
1957
1958 default:
1959 result = "unknown";
1960 break;
1961 }
1962
1963 return result;
1964 }
1965
1966 static void
1967 dump_peer(StoreEntry * entry, const char *name, peer * p)
1968 {
1969 domain_ping *d;
1970 domain_type *t;
1971 LOCAL_ARRAY(char, xname, 128);
1972
1973 while (p != NULL) {
1974 storeAppendPrintf(entry, "%s %s %s %d %d name=%s",
1975 name,
1976 p->host,
1977 neighborTypeStr(p),
1978 p->http_port,
1979 p->icp.port,
1980 p->name);
1981 dump_peer_options(entry, p);
1982
1983 for (d = p->peer_domain; d; d = d->next) {
1984 storeAppendPrintf(entry, "cache_peer_domain %s %s%s\n",
1985 p->host,
1986 d->do_ping ? null_string : "!",
1987 d->domain);
1988 }
1989
1990 if (p->access) {
1991 snprintf(xname, 128, "cache_peer_access %s", p->name);
1992 dump_acl_access(entry, xname, p->access);
1993 }
1994
1995 for (t = p->typelist; t; t = t->next) {
1996 storeAppendPrintf(entry, "neighbor_type_domain %s %s %s\n",
1997 p->host,
1998 peer_type_str(t->type),
1999 t->domain);
2000 }
2001
2002 p = p->next;
2003 }
2004 }
2005
2006 /**
2007 * utility function to prevent getservbyname() being called with a numeric value
2008 * on Windows at least it returns garage results.
2009 */
2010 static bool
2011 isUnsignedNumeric(const char *str, size_t len)
2012 {
2013 if (len < 1) return false;
2014
2015 for (; len >0 && *str; ++str, --len) {
2016 if (! isdigit(*str))
2017 return false;
2018 }
2019 return true;
2020 }
2021
2022 /**
2023 \param proto 'tcp' or 'udp' for protocol
2024 \returns Port the named service is supposed to be listening on.
2025 */
2026 static unsigned short
2027 GetService(const char *proto)
2028 {
2029 struct servent *port = NULL;
2030 /** Parses a port number or service name from the squid.conf */
2031 char *token = strtok(NULL, w_space);
2032 if (token == NULL) {
2033 self_destruct();
2034 return 0; /* NEVER REACHED */
2035 }
2036 /** Returns either the service port number from /etc/services */
2037 if ( !isUnsignedNumeric(token, strlen(token)) )
2038 port = getservbyname(token, proto);
2039 if (port != NULL) {
2040 return ntohs((unsigned short)port->s_port);
2041 }
2042 /** Or a numeric translation of the config text. */
2043 return xatos(token);
2044 }
2045
2046 /**
2047 \returns Port the named TCP service is supposed to be listening on.
2048 \copydoc GetService(const char *proto)
2049 */
2050 inline unsigned short
2051 GetTcpService(void)
2052 {
2053 return GetService("tcp");
2054 }
2055
2056 /**
2057 \returns Port the named UDP service is supposed to be listening on.
2058 \copydoc GetService(const char *proto)
2059 */
2060 inline unsigned short
2061 GetUdpService(void)
2062 {
2063 return GetService("udp");
2064 }
2065
2066 static void
2067 parse_peer(peer ** head)
2068 {
2069 char *token = NULL;
2070 peer *p;
2071 CBDATA_INIT_TYPE_FREECB(peer, peerDestroy);
2072 p = cbdataAlloc(peer);
2073 p->http_port = CACHE_HTTP_PORT;
2074 p->icp.port = CACHE_ICP_PORT;
2075 p->weight = 1;
2076 p->basetime = 0;
2077 p->stats.logged_state = PEER_ALIVE;
2078
2079 if ((token = strtok(NULL, w_space)) == NULL)
2080 self_destruct();
2081
2082 p->host = xstrdup(token);
2083
2084 p->name = xstrdup(token);
2085
2086 if ((token = strtok(NULL, w_space)) == NULL)
2087 self_destruct();
2088
2089 p->type = parseNeighborType(token);
2090
2091 if (p->type == PEER_MULTICAST) {
2092 p->options.no_digest = 1;
2093 p->options.no_netdb_exchange = 1;
2094 }
2095
2096 p->http_port = GetTcpService();
2097
2098 if (!p->http_port)
2099 self_destruct();
2100
2101 p->icp.port = GetUdpService();
2102 p->connection_auth = 2; /* auto */
2103
2104 while ((token = strtok(NULL, w_space))) {
2105 if (!strcasecmp(token, "proxy-only")) {
2106 p->options.proxy_only = 1;
2107 } else if (!strcasecmp(token, "no-query")) {
2108 p->options.no_query = 1;
2109 } else if (!strcasecmp(token, "background-ping")) {
2110 p->options.background_ping = 1;
2111 } else if (!strcasecmp(token, "no-digest")) {
2112 p->options.no_digest = 1;
2113 } else if (!strcasecmp(token, "no-tproxy")) {
2114 p->options.no_tproxy = 1;
2115 } else if (!strcasecmp(token, "multicast-responder")) {
2116 p->options.mcast_responder = 1;
2117 #if PEER_MULTICAST_SIBLINGS
2118 } else if (!strcasecmp(token, "multicast-siblings")) {
2119 p->options.mcast_siblings = 1;
2120 #endif
2121 } else if (!strncasecmp(token, "weight=", 7)) {
2122 p->weight = xatoi(token + 7);
2123 } else if (!strncasecmp(token, "basetime=", 9)) {
2124 p->basetime = xatoi(token + 9);
2125 } else if (!strcasecmp(token, "closest-only")) {
2126 p->options.closest_only = 1;
2127 } else if (!strncasecmp(token, "ttl=", 4)) {
2128 p->mcast.ttl = xatoi(token + 4);
2129
2130 if (p->mcast.ttl < 0)
2131 p->mcast.ttl = 0;
2132
2133 if (p->mcast.ttl > 128)
2134 p->mcast.ttl = 128;
2135 } else if (!strcasecmp(token, "default")) {
2136 p->options.default_parent = 1;
2137 } else if (!strcasecmp(token, "round-robin")) {
2138 p->options.roundrobin = 1;
2139 } else if (!strcasecmp(token, "weighted-round-robin")) {
2140 p->options.weighted_roundrobin = 1;
2141 #if USE_HTCP
2142 } else if (!strcasecmp(token, "htcp")) {
2143 p->options.htcp = 1;
2144 } else if (!strncasecmp(token, "htcp=", 5) || !strncasecmp(token, "htcp-", 5)) {
2145 /* Note: The htcp- form is deprecated, replaced by htcp= */
2146 p->options.htcp = 1;
2147 char *tmp = xstrdup(token+5);
2148 char *mode, *nextmode;
2149 for (mode = nextmode = tmp; mode; mode = nextmode) {
2150 nextmode = strchr(mode, ',');
2151 if (nextmode) {
2152 *nextmode = '\0';
2153 ++nextmode;
2154 }
2155 if (!strcasecmp(mode, "no-clr")) {
2156 if (p->options.htcp_only_clr)
2157 fatalf("parse_peer: can't set htcp-no-clr and htcp-only-clr simultaneously");
2158 p->options.htcp_no_clr = 1;
2159 } else if (!strcasecmp(mode, "no-purge-clr")) {
2160 p->options.htcp_no_purge_clr = 1;
2161 } else if (!strcasecmp(mode, "only-clr")) {
2162 if (p->options.htcp_no_clr)
2163 fatalf("parse_peer: can't set htcp no-clr and only-clr simultaneously");
2164 p->options.htcp_only_clr = 1;
2165 } else if (!strcasecmp(mode, "forward-clr")) {
2166 p->options.htcp_forward_clr = 1;
2167 } else if (!strcasecmp(mode, "oldsquid")) {
2168 p->options.htcp_oldsquid = 1;
2169 } else {
2170 fatalf("invalid HTCP mode '%s'", mode);
2171 }
2172 }
2173 safe_free(tmp);
2174 #endif
2175 } else if (!strcasecmp(token, "no-netdb-exchange")) {
2176 p->options.no_netdb_exchange = 1;
2177
2178 } else if (!strcasecmp(token, "carp")) {
2179 if (p->type != PEER_PARENT)
2180 fatalf("parse_peer: non-parent carp peer %s/%d\n", p->host, p->http_port);
2181
2182 p->options.carp = 1;
2183 } else if (!strncasecmp(token, "carp-key=", 9)) {
2184 if (p->options.carp != 1)
2185 fatalf("parse_peer: carp-key specified on non-carp peer %s/%d\n", p->host, p->http_port);
2186 p->options.carp_key.set=1;
2187 char *nextkey=token+strlen("carp-key="), *key=nextkey;
2188 for (; key; key = nextkey) {
2189 nextkey=strchr(key,',');
2190 if (nextkey) ++nextkey; // skip the comma, any
2191 if (0==strncasecmp(key,"scheme",6)) {
2192 p->options.carp_key.scheme=1;
2193 } else if (0==strncasecmp(key,"host",4)) {
2194 p->options.carp_key.host=1;
2195 } else if (0==strncasecmp(key,"port",4)) {
2196 p->options.carp_key.port=1;
2197 } else if (0==strncasecmp(key,"path",4)) {
2198 p->options.carp_key.path=1;
2199 } else if (0==strncasecmp(key,"params",6)) {
2200 p->options.carp_key.params=1;
2201 } else {
2202 fatalf("invalid carp-key '%s'",key);
2203 }
2204 }
2205 } else if (!strcasecmp(token, "userhash")) {
2206 #if USE_AUTH
2207 if (p->type != PEER_PARENT)
2208 fatalf("parse_peer: non-parent userhash peer %s/%d\n", p->host, p->http_port);
2209
2210 p->options.userhash = 1;
2211 #else
2212 fatalf("parse_peer: userhash requires authentication. peer %s/%d\n", p->host, p->http_port);
2213 #endif
2214 } else if (!strcasecmp(token, "sourcehash")) {
2215 if (p->type != PEER_PARENT)
2216 fatalf("parse_peer: non-parent sourcehash peer %s/%d\n", p->host, p->http_port);
2217
2218 p->options.sourcehash = 1;
2219
2220 } else if (!strcasecmp(token, "no-delay")) {
2221 #if USE_DELAY_POOLS
2222 p->options.no_delay = 1;
2223 #else
2224 debugs(0, DBG_CRITICAL, "WARNING: cache_peer option 'no-delay' requires --enable-delay-pools");
2225 #endif
2226 } else if (!strncasecmp(token, "login=", 6)) {
2227 p->login = xstrdup(token + 6);
2228 rfc1738_unescape(p->login);
2229 } else if (!strncasecmp(token, "connect-timeout=", 16)) {
2230 p->connect_timeout = xatoi(token + 16);
2231 } else if (!strncasecmp(token, "connect-fail-limit=", 19)) {
2232 p->connect_fail_limit = xatoi(token + 19);
2233 #if USE_CACHE_DIGESTS
2234 } else if (!strncasecmp(token, "digest-url=", 11)) {
2235 p->digest_url = xstrdup(token + 11);
2236 #endif
2237
2238 } else if (!strcasecmp(token, "allow-miss")) {
2239 p->options.allow_miss = 1;
2240 } else if (!strncasecmp(token, "max-conn=", 9)) {
2241 p->max_conn = xatoi(token + 9);
2242 } else if (!strcasecmp(token, "originserver")) {
2243 p->options.originserver = 1;
2244 } else if (!strncasecmp(token, "name=", 5)) {
2245 safe_free(p->name);
2246
2247 if (token[5])
2248 p->name = xstrdup(token + 5);
2249 } else if (!strncasecmp(token, "forceddomain=", 13)) {
2250 safe_free(p->domain);
2251
2252 if (token[13])
2253 p->domain = xstrdup(token + 13);
2254
2255 #if USE_SSL
2256
2257 } else if (strcmp(token, "ssl") == 0) {
2258 p->use_ssl = 1;
2259 } else if (strncmp(token, "sslcert=", 8) == 0) {
2260 safe_free(p->sslcert);
2261 p->sslcert = xstrdup(token + 8);
2262 } else if (strncmp(token, "sslkey=", 7) == 0) {
2263 safe_free(p->sslkey);
2264 p->sslkey = xstrdup(token + 7);
2265 } else if (strncmp(token, "sslversion=", 11) == 0) {
2266 p->sslversion = atoi(token + 11);
2267 } else if (strncmp(token, "ssloptions=", 11) == 0) {
2268 safe_free(p->ssloptions);
2269 p->ssloptions = xstrdup(token + 11);
2270 } else if (strncmp(token, "sslcipher=", 10) == 0) {
2271 safe_free(p->sslcipher);
2272 p->sslcipher = xstrdup(token + 10);
2273 } else if (strncmp(token, "sslcafile=", 10) == 0) {
2274 safe_free(p->sslcafile);
2275 p->sslcafile = xstrdup(token + 10);
2276 } else if (strncmp(token, "sslcapath=", 10) == 0) {
2277 safe_free(p->sslcapath);
2278 p->sslcapath = xstrdup(token + 10);
2279 } else if (strncmp(token, "sslcrlfile=", 11) == 0) {
2280 safe_free(p->sslcrlfile);
2281 p->sslcapath = xstrdup(token + 10);
2282 } else if (strncmp(token, "sslflags=", 9) == 0) {
2283 safe_free(p->sslflags);
2284 p->sslflags = xstrdup(token + 9);
2285 } else if (strncmp(token, "ssldomain=", 10) == 0) {
2286 safe_free(p->ssldomain);
2287 p->ssldomain = xstrdup(token + 10);
2288 #endif
2289
2290 } else if (strcmp(token, "front-end-https") == 0) {
2291 p->front_end_https = 1;
2292 } else if (strcmp(token, "front-end-https=on") == 0) {
2293 p->front_end_https = 1;
2294 } else if (strcmp(token, "front-end-https=auto") == 0) {
2295 p->front_end_https = 2;
2296 } else if (strcmp(token, "connection-auth=off") == 0) {
2297 p->connection_auth = 0;
2298 } else if (strcmp(token, "connection-auth") == 0) {
2299 p->connection_auth = 1;
2300 } else if (strcmp(token, "connection-auth=on") == 0) {
2301 p->connection_auth = 1;
2302 } else if (strcmp(token, "connection-auth=auto") == 0) {
2303 p->connection_auth = 2;
2304 } else {
2305 debugs(3, DBG_CRITICAL, "parse_peer: token='" << token << "'");
2306 self_destruct();
2307 }
2308 }
2309
2310 if (peerFindByName(p->name))
2311 fatalf("ERROR: cache_peer %s specified twice\n", p->name);
2312
2313 if (p->weight < 1)
2314 p->weight = 1;
2315
2316 if (p->connect_fail_limit < 1)
2317 p->connect_fail_limit = 10;
2318
2319 p->icp.version = ICP_VERSION_CURRENT;
2320
2321 p->testing_now = false;
2322
2323 #if USE_CACHE_DIGESTS
2324
2325 if (!p->options.no_digest) {
2326 /* XXX This looks odd.. who has the original pointer
2327 * then?
2328 */
2329 PeerDigest *pd = peerDigestCreate(p);
2330 p->digest = cbdataReference(pd);
2331 }
2332
2333 #endif
2334
2335 p->index = ++Config.npeers;
2336
2337 while (*head != NULL)
2338 head = &(*head)->next;
2339
2340 *head = p;
2341
2342 peerClearRRStart();
2343 }
2344
2345 static void
2346 free_peer(peer ** P)
2347 {
2348 peer *p;
2349
2350 while ((p = *P) != NULL) {
2351 *P = p->next;
2352 #if USE_CACHE_DIGESTS
2353
2354 cbdataReferenceDone(p->digest);
2355 #endif
2356
2357 cbdataFree(p);
2358 }
2359
2360 Config.npeers = 0;
2361 }
2362
2363 static void
2364 dump_cachemgrpasswd(StoreEntry * entry, const char *name, cachemgr_passwd * list)
2365 {
2366 wordlist *w;
2367
2368 while (list != NULL) {
2369 if (strcmp(list->passwd, "none") && strcmp(list->passwd, "disable"))
2370 storeAppendPrintf(entry, "%s XXXXXXXXXX", name);
2371 else
2372 storeAppendPrintf(entry, "%s %s", name, list->passwd);
2373
2374 for (w = list->actions; w != NULL; w = w->next) {
2375 storeAppendPrintf(entry, " %s", w->key);
2376 }
2377
2378 storeAppendPrintf(entry, "\n");
2379 list = list->next;
2380 }
2381 }
2382
2383 static void
2384 parse_cachemgrpasswd(cachemgr_passwd ** head)
2385 {
2386 char *passwd = NULL;
2387 wordlist *actions = NULL;
2388 cachemgr_passwd *p;
2389 cachemgr_passwd **P;
2390 parse_string(&passwd);
2391 parse_wordlist(&actions);
2392 p = static_cast<cachemgr_passwd *>(xcalloc(1, sizeof(cachemgr_passwd)));
2393 p->passwd = passwd;
2394 p->actions = actions;
2395
2396 for (P = head; *P; P = &(*P)->next) {
2397 /*
2398 * See if any of the actions from this line already have a
2399 * password from previous lines. The password checking
2400 * routines in cache_manager.c take the the password from
2401 * the first cachemgr_passwd struct that contains the
2402 * requested action. Thus, we should warn users who might
2403 * think they can have two passwords for the same action.
2404 */
2405 wordlist *w;
2406 wordlist *u;
2407
2408 for (w = (*P)->actions; w; w = w->next) {
2409 for (u = actions; u; u = u->next) {
2410 if (strcmp(w->key, u->key))
2411 continue;
2412
2413 debugs(0, DBG_CRITICAL, "WARNING: action '" << u->key << "' (line " << config_lineno << ") already has a password");
2414 }
2415 }
2416 }
2417
2418 *P = p;
2419 }
2420
2421 static void
2422 free_cachemgrpasswd(cachemgr_passwd ** head)
2423 {
2424 cachemgr_passwd *p;
2425
2426 while ((p = *head) != NULL) {
2427 *head = p->next;
2428 xfree(p->passwd);
2429 wordlistDestroy(&p->actions);
2430 xfree(p);
2431 }
2432 }
2433
2434 static void
2435 dump_denyinfo(StoreEntry * entry, const char *name, acl_deny_info_list * var)
2436 {
2437 acl_name_list *a;
2438
2439 while (var != NULL) {
2440 storeAppendPrintf(entry, "%s %s", name, var->err_page_name);
2441
2442 for (a = var->acl_list; a != NULL; a = a->next)
2443 storeAppendPrintf(entry, " %s", a->name);
2444
2445 storeAppendPrintf(entry, "\n");
2446
2447 var = var->next;
2448 }
2449 }
2450
2451 static void
2452 parse_denyinfo(acl_deny_info_list ** var)
2453 {
2454 aclParseDenyInfoLine(var);
2455 }
2456
2457 void
2458 free_denyinfo(acl_deny_info_list ** list)
2459 {
2460 acl_deny_info_list *a = NULL;
2461 acl_deny_info_list *a_next = NULL;
2462 acl_name_list *l = NULL;
2463 acl_name_list *l_next = NULL;
2464
2465 for (a = *list; a; a = a_next) {
2466 for (l = a->acl_list; l; l = l_next) {
2467 l_next = l->next;
2468 memFree(l, MEM_ACL_NAME_LIST);
2469 l = NULL;
2470 }
2471
2472 a_next = a->next;
2473 memFree(a, MEM_ACL_DENY_INFO_LIST);
2474 a = NULL;
2475 }
2476
2477 *list = NULL;
2478 }
2479
2480 static void
2481 parse_peer_access(void)
2482 {
2483 char *host = NULL;
2484 peer *p;
2485
2486 if (!(host = strtok(NULL, w_space)))
2487 self_destruct();
2488
2489 if ((p = peerFindByName(host)) == NULL) {
2490 debugs(15, DBG_CRITICAL, "" << cfg_filename << ", line " << config_lineno << ": No cache_peer '" << host << "'");
2491 return;
2492 }
2493
2494 aclParseAccessLine(LegacyParser, &p->access);
2495 }
2496
2497 static void
2498 parse_hostdomain(void)
2499 {
2500 char *host = NULL;
2501 char *domain = NULL;
2502
2503 if (!(host = strtok(NULL, w_space)))
2504 self_destruct();
2505
2506 while ((domain = strtok(NULL, list_sep))) {
2507 domain_ping *l = NULL;
2508 domain_ping **L = NULL;
2509 peer *p;
2510
2511 if ((p = peerFindByName(host)) == NULL) {
2512 debugs(15, DBG_CRITICAL, "" << cfg_filename << ", line " << config_lineno << ": No cache_peer '" << host << "'");
2513 continue;
2514 }
2515
2516 l = static_cast<domain_ping *>(xcalloc(1, sizeof(domain_ping)));
2517 l->do_ping = 1;
2518
2519 if (*domain == '!') { /* check for !.edu */
2520 l->do_ping = 0;
2521 ++domain;
2522 }
2523
2524 l->domain = xstrdup(domain);
2525
2526 for (L = &(p->peer_domain); *L; L = &((*L)->next));
2527 *L = l;
2528 }
2529 }
2530
2531 static void
2532 parse_hostdomaintype(void)
2533 {
2534 char *host = NULL;
2535 char *type = NULL;
2536 char *domain = NULL;
2537
2538 if (!(host = strtok(NULL, w_space)))
2539 self_destruct();
2540
2541 if (!(type = strtok(NULL, w_space)))
2542 self_destruct();
2543
2544 while ((domain = strtok(NULL, list_sep))) {
2545 domain_type *l = NULL;
2546 domain_type **L = NULL;
2547 peer *p;
2548
2549 if ((p = peerFindByName(host)) == NULL) {
2550 debugs(15, DBG_CRITICAL, "" << cfg_filename << ", line " << config_lineno << ": No cache_peer '" << host << "'");
2551 return;
2552 }
2553
2554 l = static_cast<domain_type *>(xcalloc(1, sizeof(domain_type)));
2555 l->type = parseNeighborType(type);
2556 l->domain = xstrdup(domain);
2557
2558 for (L = &(p->typelist); *L; L = &((*L)->next));
2559 *L = l;
2560 }
2561 }
2562
2563 static void
2564 dump_int(StoreEntry * entry, const char *name, int var)
2565 {
2566 storeAppendPrintf(entry, "%s %d\n", name, var);
2567 }
2568
2569 void
2570 parse_int(int *var)
2571 {
2572 int i;
2573 i = GetInteger();
2574 *var = i;
2575 }
2576
2577 static void
2578 free_int(int *var)
2579 {
2580 *var = 0;
2581 }
2582
2583 static void
2584 dump_onoff(StoreEntry * entry, const char *name, int var)
2585 {
2586 storeAppendPrintf(entry, "%s %s\n", name, var ? "on" : "off");
2587 }
2588
2589 void
2590 parse_onoff(int *var)
2591 {
2592 char *token = strtok(NULL, w_space);
2593
2594 if (token == NULL)
2595 self_destruct();
2596
2597 if (!strcasecmp(token, "on") || !strcasecmp(token, "enable"))
2598 *var = 1;
2599 else
2600 *var = 0;
2601 }
2602
2603 #define free_onoff free_int
2604
2605 static void
2606 dump_tristate(StoreEntry * entry, const char *name, int var)
2607 {
2608 const char *state;
2609
2610 if (var > 0)
2611 state = "on";
2612 else if (var < 0)
2613 state = "warn";
2614 else
2615 state = "off";
2616
2617 storeAppendPrintf(entry, "%s %s\n", name, state);
2618 }
2619
2620 static void
2621 parse_tristate(int *var)
2622 {
2623 char *token = strtok(NULL, w_space);
2624
2625 if (token == NULL)
2626 self_destruct();
2627
2628 if (!strcasecmp(token, "on") || !strcasecmp(token, "enable"))
2629 *var = 1;
2630 else if (!strcasecmp(token, "warn"))
2631 *var = -1;
2632 else
2633 *var = 0;
2634 }
2635
2636 #define free_tristate free_int
2637
2638 static void
2639 dump_refreshpattern(StoreEntry * entry, const char *name, refresh_t * head)
2640 {
2641 while (head != NULL) {
2642 storeAppendPrintf(entry, "%s%s %s %d %d%% %d",
2643 name,
2644 head->flags.icase ? " -i" : null_string,
2645 head->pattern,
2646 (int) head->min / 60,
2647 (int) (100.0 * head->pct + 0.5),
2648 (int) head->max / 60);
2649
2650 if (head->max_stale >= 0)
2651 storeAppendPrintf(entry, " max-stale=%d", head->max_stale);
2652
2653 if (head->flags.refresh_ims)
2654 storeAppendPrintf(entry, " refresh-ims");
2655
2656 if (head->flags.store_stale)
2657 storeAppendPrintf(entry, " store-stale");
2658
2659 #if USE_HTTP_VIOLATIONS
2660
2661 if (head->flags.override_expire)
2662 storeAppendPrintf(entry, " override-expire");
2663
2664 if (head->flags.override_lastmod)
2665 storeAppendPrintf(entry, " override-lastmod");
2666
2667 if (head->flags.reload_into_ims)
2668 storeAppendPrintf(entry, " reload-into-ims");
2669
2670 if (head->flags.ignore_reload)
2671 storeAppendPrintf(entry, " ignore-reload");
2672
2673 if (head->flags.ignore_no_cache)
2674 storeAppendPrintf(entry, " ignore-no-cache");
2675
2676 if (head->flags.ignore_no_store)
2677 storeAppendPrintf(entry, " ignore-no-store");
2678
2679 if (head->flags.ignore_must_revalidate)
2680 storeAppendPrintf(entry, " ignore-must-revalidate");
2681
2682 if (head->flags.ignore_private)
2683 storeAppendPrintf(entry, " ignore-private");
2684
2685 if (head->flags.ignore_auth)
2686 storeAppendPrintf(entry, " ignore-auth");
2687
2688 #endif
2689
2690 storeAppendPrintf(entry, "\n");
2691
2692 head = head->next;
2693 }
2694 }
2695
2696 static void
2697 parse_refreshpattern(refresh_t ** head)
2698 {
2699 char *token;
2700 char *pattern;
2701 time_t min = 0;
2702 double pct = 0.0;
2703 time_t max = 0;
2704 int refresh_ims = 0;
2705 int store_stale = 0;
2706 int max_stale = -1;
2707
2708 #if USE_HTTP_VIOLATIONS
2709
2710 int override_expire = 0;
2711 int override_lastmod = 0;
2712 int reload_into_ims = 0;
2713 int ignore_reload = 0;
2714 int ignore_no_cache = 0;
2715 int ignore_no_store = 0;
2716 int ignore_must_revalidate = 0;
2717 int ignore_private = 0;
2718 int ignore_auth = 0;
2719 #endif
2720
2721 int i;
2722 refresh_t *t;
2723 regex_t comp;
2724 int errcode;
2725 int flags = REG_EXTENDED | REG_NOSUB;
2726
2727 if ((token = strtok(NULL, w_space)) == NULL) {
2728 self_destruct();
2729 return;
2730 }
2731
2732 if (strcmp(token, "-i") == 0) {
2733 flags |= REG_ICASE;
2734 token = strtok(NULL, w_space);
2735 } else if (strcmp(token, "+i") == 0) {
2736 flags &= ~REG_ICASE;
2737 token = strtok(NULL, w_space);
2738 }
2739
2740 if (token == NULL) {
2741 self_destruct();
2742 return;
2743 }
2744
2745 pattern = xstrdup(token);
2746
2747 i = GetInteger(); /* token: min */
2748
2749 /* catch negative and insanely huge values close to 32-bit wrap */
2750 if (i < 0) {
2751 debugs(3, DBG_IMPORTANT, "WARNING: refresh_pattern minimum age negative. Cropped back to zero.");
2752 i = 0;
2753 }
2754 if (i > 60*24*365) {
2755 debugs(3, DBG_IMPORTANT, "WARNING: refresh_pattern minimum age too high. Cropped back to 1 year.");
2756 i = 60*24*365;
2757 }
2758
2759 min = (time_t) (i * 60); /* convert minutes to seconds */
2760
2761 i = GetInteger(); /* token: pct */
2762
2763 pct = (double) i / 100.0;
2764
2765 i = GetInteger(); /* token: max */
2766
2767 /* catch negative and insanely huge values close to 32-bit wrap */
2768 if (i < 0) {
2769 debugs(3, DBG_IMPORTANT, "WARNING: refresh_pattern maximum age negative. Cropped back to zero.");
2770 i = 0;
2771 }
2772 if (i > 60*24*365) {
2773 debugs(3, DBG_IMPORTANT, "WARNING: refresh_pattern maximum age too high. Cropped back to 1 year.");
2774 i = 60*24*365;
2775 }
2776
2777 max = (time_t) (i * 60); /* convert minutes to seconds */
2778
2779 /* Options */
2780 while ((token = strtok(NULL, w_space)) != NULL) {
2781 if (!strcmp(token, "refresh-ims")) {
2782 refresh_ims = 1;
2783 } else if (!strcmp(token, "store-stale")) {
2784 store_stale = 1;
2785 } else if (!strncmp(token, "max-stale=", 10)) {
2786 max_stale = atoi(token + 10);
2787 #if USE_HTTP_VIOLATIONS
2788
2789 } else if (!strcmp(token, "override-expire"))
2790 override_expire = 1;
2791 else if (!strcmp(token, "override-lastmod"))
2792 override_lastmod = 1;
2793 else if (!strcmp(token, "ignore-no-cache"))
2794 ignore_no_cache = 1;
2795 else if (!strcmp(token, "ignore-no-store"))
2796 ignore_no_store = 1;
2797 else if (!strcmp(token, "ignore-must-revalidate"))
2798 ignore_must_revalidate = 1;
2799 else if (!strcmp(token, "ignore-private"))
2800 ignore_private = 1;
2801 else if (!strcmp(token, "ignore-auth"))
2802 ignore_auth = 1;
2803 else if (!strcmp(token, "reload-into-ims")) {
2804 reload_into_ims = 1;
2805 refresh_nocache_hack = 1;
2806 /* tell client_side.c that this is used */
2807 } else if (!strcmp(token, "ignore-reload")) {
2808 ignore_reload = 1;
2809 refresh_nocache_hack = 1;
2810 /* tell client_side.c that this is used */
2811 #endif
2812
2813 } else
2814 debugs(22, DBG_CRITICAL, "refreshAddToList: Unknown option '" << pattern << "': " << token);
2815 }
2816
2817 if ((errcode = regcomp(&comp, pattern, flags)) != 0) {
2818 char errbuf[256];
2819 regerror(errcode, &comp, errbuf, sizeof errbuf);
2820 debugs(22, DBG_CRITICAL, "" << cfg_filename << " line " << config_lineno << ": " << config_input_line);
2821 debugs(22, DBG_CRITICAL, "refreshAddToList: Invalid regular expression '" << pattern << "': " << errbuf);
2822 return;
2823 }
2824
2825 pct = pct < 0.0 ? 0.0 : pct;
2826 max = max < 0 ? 0 : max;
2827 t = static_cast<refresh_t *>(xcalloc(1, sizeof(refresh_t)));
2828 t->pattern = (char *) xstrdup(pattern);
2829 t->compiled_pattern = comp;
2830 t->min = min;
2831 t->pct = pct;
2832 t->max = max;
2833
2834 if (flags & REG_ICASE)
2835 t->flags.icase = 1;
2836
2837 if (refresh_ims)
2838 t->flags.refresh_ims = 1;
2839
2840 if (store_stale)
2841 t->flags.store_stale = 1;
2842
2843 t->max_stale = max_stale;
2844
2845 #if USE_HTTP_VIOLATIONS
2846
2847 if (override_expire)
2848 t->flags.override_expire = 1;
2849
2850 if (override_lastmod)
2851 t->flags.override_lastmod = 1;
2852
2853 if (reload_into_ims)
2854 t->flags.reload_into_ims = 1;
2855
2856 if (ignore_reload)
2857 t->flags.ignore_reload = 1;
2858
2859 if (ignore_no_cache)
2860 t->flags.ignore_no_cache = 1;
2861
2862 if (ignore_no_store)
2863 t->flags.ignore_no_store = 1;
2864
2865 if (ignore_must_revalidate)
2866 t->flags.ignore_must_revalidate = 1;
2867
2868 if (ignore_private)
2869 t->flags.ignore_private = 1;
2870
2871 if (ignore_auth)
2872 t->flags.ignore_auth = 1;
2873
2874 #endif
2875
2876 t->next = NULL;
2877
2878 while (*head)
2879 head = &(*head)->next;
2880
2881 *head = t;
2882
2883 safe_free(pattern);
2884 }
2885
2886 static void
2887 free_refreshpattern(refresh_t ** head)
2888 {
2889 refresh_t *t;
2890
2891 while ((t = *head) != NULL) {
2892 *head = t->next;
2893 safe_free(t->pattern);
2894 regfree(&t->compiled_pattern);
2895 safe_free(t);
2896 }
2897
2898 #if USE_HTTP_VIOLATIONS
2899 refresh_nocache_hack = 0;
2900
2901 #endif
2902 }
2903
2904 static void
2905 dump_string(StoreEntry * entry, const char *name, char *var)
2906 {
2907 if (var != NULL)
2908 storeAppendPrintf(entry, "%s %s\n", name, var);
2909 }
2910
2911 static void
2912 parse_string(char **var)
2913 {
2914 char *token = strtok(NULL, w_space);
2915 safe_free(*var);
2916
2917 if (token == NULL)
2918 self_destruct();
2919
2920 *var = xstrdup(token);
2921 }
2922
2923 void
2924 ConfigParser::ParseString(char **var)
2925 {
2926 parse_string(var);
2927 }
2928
2929 void
2930 ConfigParser::ParseString(String *var)
2931 {
2932 char *token = strtok(NULL, w_space);
2933
2934 if (token == NULL)
2935 self_destruct();
2936
2937 var->reset(token);
2938 }
2939
2940 static void
2941 free_string(char **var)
2942 {
2943 safe_free(*var);
2944 }
2945
2946 void
2947 parse_eol(char *volatile *var)
2948 {
2949 if (!var) {
2950 self_destruct();
2951 return;
2952 }
2953
2954 unsigned char *token = (unsigned char *) strtok(NULL, null_string);
2955 safe_free(*var);
2956
2957 if (!token) {
2958 self_destruct();
2959 return;
2960 }
2961
2962 while (*token && xisspace(*token))
2963 ++token;
2964
2965 if (!*token) {
2966 self_destruct();
2967 return;
2968 }
2969
2970 *var = xstrdup((char *) token);
2971 }
2972
2973 #define dump_eol dump_string
2974 #define free_eol free_string
2975
2976 static void
2977 dump_time_t(StoreEntry * entry, const char *name, time_t var)
2978 {
2979 storeAppendPrintf(entry, "%s %d seconds\n", name, (int) var);
2980 }
2981
2982 void
2983 parse_time_t(time_t * var)
2984 {
2985 time_msec_t tval;
2986 parseTimeLine(&tval, T_SECOND_STR, false);
2987 *var = static_cast<time_t>(tval/1000);
2988 }
2989
2990 static void
2991 free_time_t(time_t * var)
2992 {
2993 *var = 0;
2994 }
2995
2996 #if !USE_DNSHELPER
2997 static void
2998 dump_time_msec(StoreEntry * entry, const char *name, time_msec_t var)
2999 {
3000 if (var % 1000)
3001 storeAppendPrintf(entry, "%s %" PRId64 " milliseconds\n", name, var);
3002 else
3003 storeAppendPrintf(entry, "%s %d seconds\n", name, (int)(var/1000) );
3004 }
3005
3006 void
3007 parse_time_msec(time_msec_t * var)
3008 {
3009 parseTimeLine(var, T_SECOND_STR, true);
3010 }
3011
3012 static void
3013 free_time_msec(time_msec_t * var)
3014 {
3015 *var = 0;
3016 }
3017 #endif
3018
3019 #if UNUSED_CODE
3020 static void
3021 dump_size_t(StoreEntry * entry, const char *name, size_t var)
3022 {
3023 storeAppendPrintf(entry, "%s %d\n", name, (int) var);
3024 }
3025 #endif
3026
3027 static void
3028 dump_b_size_t(StoreEntry * entry, const char *name, size_t var)
3029 {
3030 storeAppendPrintf(entry, "%s %d %s\n", name, (int) var, B_BYTES_STR);
3031 }
3032
3033 #if !USE_DNSHELPER
3034 static void
3035 dump_b_ssize_t(StoreEntry * entry, const char *name, ssize_t var)
3036 {
3037 storeAppendPrintf(entry, "%s %d %s\n", name, (int) var, B_BYTES_STR);
3038 }
3039 #endif
3040
3041 #if UNUSED_CODE
3042 static void
3043 dump_kb_size_t(StoreEntry * entry, const char *name, size_t var)
3044 {
3045 storeAppendPrintf(entry, "%s %d %s\n", name, (int) var, B_KBYTES_STR);
3046 }
3047 #endif
3048
3049 static void
3050 dump_b_int64_t(StoreEntry * entry, const char *name, int64_t var)
3051 {
3052 storeAppendPrintf(entry, "%s %" PRId64 " %s\n", name, var, B_BYTES_STR);
3053 }
3054
3055 static void
3056 dump_kb_int64_t(StoreEntry * entry, const char *name, int64_t var)
3057 {
3058 storeAppendPrintf(entry, "%s %" PRId64 " %s\n", name, var, B_KBYTES_STR);
3059 }
3060
3061 #if UNUSED_CODE
3062 static void
3063 parse_size_t(size_t * var)
3064 {
3065 int i;
3066 i = GetInteger();
3067 *var = (size_t) i;
3068 }
3069 #endif
3070
3071 static void
3072 parse_b_size_t(size_t * var)
3073 {
3074 parseBytesLine(var, B_BYTES_STR);
3075 }
3076
3077 #if !USE_DNSHELPER
3078 static void
3079 parse_b_ssize_t(ssize_t * var)
3080 {
3081 parseBytesLineSigned(var, B_BYTES_STR);
3082 }
3083 #endif
3084
3085 #if UNUSED_CODE
3086 static void
3087 parse_kb_size_t(size_t * var)
3088 {
3089 parseBytesLine(var, B_KBYTES_STR);
3090 }
3091 #endif
3092
3093 static void
3094 parse_b_int64_t(int64_t * var)
3095 {
3096 parseBytesLine64(var, B_BYTES_STR);
3097 }
3098
3099 static void
3100 parse_kb_int64_t(int64_t * var)
3101 {
3102 parseBytesLine64(var, B_KBYTES_STR);
3103 }
3104
3105 static void
3106 free_size_t(size_t * var)
3107 {
3108 *var = 0;
3109 }
3110
3111 #if !USE_DNSHELPER
3112 static void
3113 free_ssize_t(ssize_t * var)
3114 {
3115 *var = 0;
3116 }
3117 #endif
3118
3119 static void
3120 free_b_int64_t(int64_t * var)
3121 {
3122 *var = 0;
3123 }
3124
3125 #define free_b_size_t free_size_t
3126 #define free_b_ssize_t free_ssize_t
3127 #define free_kb_size_t free_size_t
3128 #define free_mb_size_t free_size_t
3129 #define free_gb_size_t free_size_t
3130 #define free_kb_int64_t free_b_int64_t
3131
3132 static void
3133 dump_u_short(StoreEntry * entry, const char *name, unsigned short var)
3134 {
3135 storeAppendPrintf(entry, "%s %d\n", name, var);
3136 }
3137
3138 static void
3139 free_u_short(unsigned short * u)
3140 {
3141 *u = 0;
3142 }
3143
3144 static void
3145 parse_u_short(unsigned short * var)
3146 {
3147 ConfigParser::ParseUShort(var);
3148 }
3149
3150 void
3151 ConfigParser::ParseUShort(unsigned short *var)
3152 {
3153 *var = GetShort();
3154 }
3155
3156 void
3157 ConfigParser::ParseBool(bool *var)
3158 {
3159 int i = GetInteger();
3160
3161 if (0 == i)
3162 *var = false;
3163 else if (1 == i)
3164 *var = true;
3165 else
3166 self_destruct();
3167 }
3168
3169 static void
3170 dump_wordlist(StoreEntry * entry, const char *name, wordlist * list)
3171 {
3172 while (list != NULL) {
3173 storeAppendPrintf(entry, "%s %s\n", name, list->key);
3174 list = list->next;
3175 }
3176 }
3177
3178 void
3179 ConfigParser::ParseWordList(wordlist ** list)
3180 {
3181 parse_wordlist(list);
3182 }
3183
3184 void
3185 parse_wordlist(wordlist ** list)
3186 {
3187 char *token;
3188 char *t = strtok(NULL, "");
3189
3190 while ((token = strwordtok(NULL, &t)))
3191 wordlistAdd(list, token);
3192 }
3193
3194 #if 0 /* now unused */
3195 static int
3196 check_null_wordlist(wordlist * w)
3197 {
3198 return w == NULL;
3199 }
3200 #endif
3201
3202 static int
3203 check_null_acl_access(acl_access * a)
3204 {
3205 return a == NULL;
3206 }
3207
3208 #define free_wordlist wordlistDestroy
3209
3210 #define free_uri_whitespace free_int
3211
3212 static void
3213 parse_uri_whitespace(int *var)
3214 {
3215 char *token = strtok(NULL, w_space);
3216
3217 if (token == NULL)
3218 self_destruct();
3219
3220 if (!strcasecmp(token, "strip"))
3221 *var = URI_WHITESPACE_STRIP;
3222 else if (!strcasecmp(token, "deny"))
3223 *var = URI_WHITESPACE_DENY;
3224 else if (!strcasecmp(token, "allow"))
3225 *var = URI_WHITESPACE_ALLOW;
3226 else if (!strcasecmp(token, "encode"))
3227 *var = URI_WHITESPACE_ENCODE;
3228 else if (!strcasecmp(token, "chop"))
3229 *var = URI_WHITESPACE_CHOP;
3230 else
3231 self_destruct();
3232 }
3233
3234 static void
3235 dump_uri_whitespace(StoreEntry * entry, const char *name, int var)
3236 {
3237 const char *s;
3238
3239 if (var == URI_WHITESPACE_ALLOW)
3240 s = "allow";
3241 else if (var == URI_WHITESPACE_ENCODE)
3242 s = "encode";
3243 else if (var == URI_WHITESPACE_CHOP)
3244 s = "chop";
3245 else if (var == URI_WHITESPACE_DENY)
3246 s = "deny";
3247 else
3248 s = "strip";
3249
3250 storeAppendPrintf(entry, "%s %s\n", name, s);
3251 }
3252
3253 static void
3254 free_removalpolicy(RemovalPolicySettings ** settings)
3255 {
3256 if (!*settings)
3257 return;
3258
3259 free_string(&(*settings)->type);
3260
3261 free_wordlist(&(*settings)->args);
3262
3263 delete *settings;
3264
3265 *settings = NULL;
3266 }
3267
3268 static void
3269 parse_removalpolicy(RemovalPolicySettings ** settings)
3270 {
3271 if (*settings)
3272 free_removalpolicy(settings);
3273
3274 *settings = new RemovalPolicySettings;
3275
3276 parse_string(&(*settings)->type);
3277
3278 parse_wordlist(&(*settings)->args);
3279 }
3280
3281 static void
3282 dump_removalpolicy(StoreEntry * entry, const char *name, RemovalPolicySettings * settings)
3283 {
3284 wordlist *args;
3285 storeAppendPrintf(entry, "%s %s", name, settings->type);
3286 args = settings->args;
3287
3288 while (args) {
3289 storeAppendPrintf(entry, " %s", args->key);
3290 args = args->next;
3291 }
3292
3293 storeAppendPrintf(entry, "\n");
3294 }
3295
3296 void
3297 YesNoNone::configure(bool beSet)
3298 {
3299 option = beSet ? +1 : -1;
3300 }
3301
3302 YesNoNone::operator void*() const
3303 {
3304 assert(option != 0); // must call configure() first
3305 return option > 0 ? (void*)this : NULL;
3306 }
3307
3308 inline void
3309 free_YesNoNone(YesNoNone *)
3310 {
3311 // do nothing: no explicit cleanup is required
3312 }
3313
3314 static void
3315 parse_YesNoNone(YesNoNone *option)
3316 {
3317 int value = 0;
3318 parse_onoff(&value);
3319 option->configure(value > 0);
3320 }
3321
3322 static void
3323 dump_YesNoNone(StoreEntry * entry, const char *name, YesNoNone &option)
3324 {
3325 if (option.configured())
3326 dump_onoff(entry, name, option ? 1 : 0);
3327 }
3328
3329 static void
3330 free_memcachemode(SquidConfig * config)
3331 {
3332 return;
3333 }
3334
3335 static void
3336 parse_memcachemode(SquidConfig * config)
3337 {
3338 char *token = strtok(NULL, w_space);
3339 if (!token)
3340 self_destruct();
3341
3342 if (strcmp(token, "always") == 0) {
3343 Config.onoff.memory_cache_first = 1;
3344 Config.onoff.memory_cache_disk = 1;
3345 } else if (strcmp(token, "disk") == 0) {
3346 Config.onoff.memory_cache_first = 0;
3347 Config.onoff.memory_cache_disk = 1;
3348 } else if (strncmp(token, "net", 3) == 0) {
3349 Config.onoff.memory_cache_first = 1;
3350 Config.onoff.memory_cache_disk = 0;
3351 } else if (strcmp(token, "never") == 0) {
3352 Config.onoff.memory_cache_first = 0;
3353 Config.onoff.memory_cache_disk = 0;
3354 } else
3355 self_destruct();
3356 }
3357
3358 static void
3359 dump_memcachemode(StoreEntry * entry, const char *name, SquidConfig &config)
3360 {
3361 storeAppendPrintf(entry, "%s ", name);
3362 if (Config.onoff.memory_cache_first && Config.onoff.memory_cache_disk)
3363 storeAppendPrintf(entry, "always");
3364 else if (!Config.onoff.memory_cache_first && Config.onoff.memory_cache_disk)
3365 storeAppendPrintf(entry, "disk");
3366 else if (Config.onoff.memory_cache_first && !Config.onoff.memory_cache_disk)
3367 storeAppendPrintf(entry, "network");
3368 else if (!Config.onoff.memory_cache_first && !Config.onoff.memory_cache_disk)
3369 storeAppendPrintf(entry, "none");
3370 storeAppendPrintf(entry, "\n");
3371 }
3372
3373 #include "cf_parser.cci"
3374
3375 peer_t
3376 parseNeighborType(const char *s)
3377 {
3378 if (!strcasecmp(s, "parent"))
3379 return PEER_PARENT;
3380
3381 if (!strcasecmp(s, "neighbor"))
3382 return PEER_SIBLING;
3383
3384 if (!strcasecmp(s, "neighbour"))
3385 return PEER_SIBLING;
3386
3387 if (!strcasecmp(s, "sibling"))
3388 return PEER_SIBLING;
3389
3390 if (!strcasecmp(s, "multicast"))
3391 return PEER_MULTICAST;
3392
3393 debugs(15, DBG_CRITICAL, "WARNING: Unknown neighbor type: " << s);
3394
3395 return PEER_SIBLING;
3396 }
3397
3398 #if USE_WCCPv2
3399 static void
3400 parse_IpAddress_list(Ip::Address_list ** head)
3401 {
3402 char *token;
3403 Ip::Address_list *s;
3404 Ip::Address ipa;
3405
3406 while ((token = strtok(NULL, w_space))) {
3407 if (GetHostWithPort(token, &ipa)) {
3408
3409 while (*head)
3410 head = &(*head)->next;
3411
3412 s = static_cast<Ip::Address_list *>(xcalloc(1, sizeof(*s)));
3413 s->s = ipa;
3414
3415 *head = s;
3416 } else
3417 self_destruct();
3418 }
3419 }
3420
3421 static void
3422 dump_IpAddress_list(StoreEntry * e, const char *n, const Ip::Address_list * s)
3423 {
3424 char ntoabuf[MAX_IPSTRLEN];
3425
3426 while (s) {
3427 storeAppendPrintf(e, "%s %s\n",
3428 n,
3429 s->s.NtoA(ntoabuf,MAX_IPSTRLEN));
3430 s = s->next;
3431 }
3432 }
3433
3434 static void
3435 free_IpAddress_list(Ip::Address_list ** head)
3436 {
3437 if (*head) delete *head;
3438 *head = NULL;
3439 }
3440
3441 #if CURRENTLY_UNUSED
3442 /* This code was previously used by http_port. Left as it really should
3443 * be used by icp_port and htcp_port
3444 */
3445 static int
3446 check_null_IpAddress_list(const Ip::Address_list * s)
3447 {
3448 return NULL == s;
3449 }
3450
3451 #endif /* CURRENTLY_UNUSED */
3452 #endif /* USE_WCCPv2 */
3453
3454 static void
3455 parsePortSpecification(AnyP::PortCfg * s, char *token)
3456 {
3457 char *host = NULL;
3458 unsigned short port = 0;
3459 char *t = NULL;
3460 char *junk = NULL;
3461
3462 s->disable_pmtu_discovery = DISABLE_PMTU_OFF;
3463 s->name = xstrdup(token);
3464 s->connection_auth_disabled = false;
3465
3466 if (*token == '[') {
3467 /* [ipv6]:port */
3468 host = token + 1;
3469 t = strchr(host, ']');
3470 if (!t) {
3471 debugs(3, DBG_CRITICAL, s->protocol << "_port: missing ']' on IPv6 address: " << token);
3472 self_destruct();
3473 }
3474 *t = '\0';
3475 ++t;
3476 if (*t != ':') {
3477 debugs(3, DBG_CRITICAL, s->protocol << "_port: missing Port in: " << token);
3478 self_destruct();
3479 }
3480 if (!Ip::EnableIpv6) {
3481 debugs(3, DBG_CRITICAL, "FATAL: " << s->protocol << "_port: IPv6 is not available.");
3482 self_destruct();
3483 }
3484 port = xatos(t + 1);
3485 } else if ((t = strchr(token, ':'))) {
3486 /* host:port */
3487 /* ipv4:port */
3488 host = token;
3489 *t = '\0';
3490 port = xatos(t + 1);
3491
3492 } else if ((port = strtol(token, &junk, 10)), !*junk) {
3493 /* port */
3494 debugs(3, 3, s->protocol << "_port: found Listen on Port: " << port);
3495 } else {
3496 debugs(3, DBG_CRITICAL, s->protocol << "_port: missing Port: " << token);
3497 self_destruct();
3498 }
3499
3500 if (port == 0 && host != NULL) {
3501 debugs(3, DBG_CRITICAL, s->protocol << "_port: Port cannot be 0: " << token);
3502 self_destruct();
3503 }
3504
3505 if (NULL == host) {
3506 s->s.SetAnyAddr();
3507 s->s.SetPort(port);
3508 if (!Ip::EnableIpv6)
3509 s->s.SetIPv4();
3510 debugs(3, 3, s->protocol << "_port: found Listen on wildcard address: *:" << s->s.GetPort() );
3511 } else if ( (s->s = host) ) { /* check/parse numeric IPA */
3512 s->s.SetPort(port);
3513 if (!Ip::EnableIpv6)
3514 s->s.SetIPv4();
3515 debugs(3, 3, s->protocol << "_port: Listen on Host/IP: " << host << " --> " << s->s);
3516 } else if ( s->s.GetHostByName(host) ) { /* check/parse for FQDN */
3517 /* dont use ipcache */
3518 s->defaultsite = xstrdup(host);
3519 s->s.SetPort(port);
3520 if (!Ip::EnableIpv6)
3521 s->s.SetIPv4();
3522 debugs(3, 3, s->protocol << "_port: found Listen as Host " << s->defaultsite << " on IP: " << s->s);
3523 } else {
3524 debugs(3, DBG_CRITICAL, s->protocol << "_port: failed to resolve Host/IP: " << host);
3525 self_destruct();
3526 }
3527 }
3528
3529 static void
3530 parse_port_option(AnyP::PortCfg * s, char *token)
3531 {
3532 /* modes first */
3533
3534 if (strcmp(token, "accel") == 0) {
3535 if (s->intercepted || s->spoof_client_ip) {
3536 debugs(3, DBG_CRITICAL, "FATAL: http(s)_port: Accelerator mode requires its own port. It cannot be shared with other modes.");
3537 self_destruct();
3538 }
3539 s->accel = s->vhost = 1;
3540 } else if (strcmp(token, "transparent") == 0 || strcmp(token, "intercept") == 0) {
3541 if (s->accel || s->spoof_client_ip) {
3542 debugs(3, DBG_CRITICAL, "FATAL: http(s)_port: Intercept mode requires its own interception port. It cannot be shared with other modes.");
3543 self_destruct();
3544 }
3545 s->intercepted = 1;
3546 Ip::Interceptor.StartInterception();
3547 /* Log information regarding the port modes under interception. */
3548 debugs(3, DBG_IMPORTANT, "Starting Authentication on port " << s->s);
3549 debugs(3, DBG_IMPORTANT, "Disabling Authentication on port " << s->s << " (interception enabled)");
3550
3551 /* INET6: until transparent REDIRECT works on IPv6 SOCKET, force wildcard to IPv4 */
3552 if (Ip::EnableIpv6)
3553 debugs(3, DBG_IMPORTANT, "Disabling IPv6 on port " << s->s << " (interception enabled)");
3554 if ( !s->s.SetIPv4() ) {
3555 debugs(3, DBG_CRITICAL, "FATAL: http(s)_port: IPv6 addresses cannot NAT intercept (protocol does not provide NAT)" << s->s );
3556 self_destruct();
3557 }
3558 } else if (strcmp(token, "tproxy") == 0) {
3559 if (s->intercepted || s->accel) {
3560 debugs(3,DBG_CRITICAL, "FATAL: http(s)_port: TPROXY option requires its own interception port. It cannot be shared with other modes.");
3561 self_destruct();
3562 }
3563 s->spoof_client_ip = 1;
3564 Ip::Interceptor.StartTransparency();
3565 /* Log information regarding the port modes under transparency. */
3566 debugs(3, DBG_IMPORTANT, "Starting IP Spoofing on port " << s->s);
3567 debugs(3, DBG_IMPORTANT, "Disabling Authentication on port " << s->s << " (IP spoofing enabled)");
3568
3569 if (!Ip::Interceptor.ProbeForTproxy(s->s)) {
3570 debugs(3, DBG_CRITICAL, "FATAL: http(s)_port: TPROXY support in the system does not work.");
3571 self_destruct();
3572 }
3573
3574 } else if (strncmp(token, "defaultsite=", 12) == 0) {
3575 if (!s->accel) {
3576 debugs(3, DBG_CRITICAL, "FATAL: http(s)_port: defaultsite option requires Acceleration mode flag.");
3577 self_destruct();
3578 }
3579 safe_free(s->defaultsite);
3580 s->defaultsite = xstrdup(token + 12);
3581 } else if (strcmp(token, "vhost") == 0) {
3582 if (!s->accel) {
3583 debugs(3, DBG_CRITICAL, "WARNING: http(s)_port: vhost option is deprecated. Use 'accel' mode flag instead.");
3584 }
3585 s->accel = s->vhost = 1;
3586 } else if (strcmp(token, "no-vhost") == 0) {
3587 if (!s->accel) {
3588 debugs(3, DBG_IMPORTANT, "ERROR: http(s)_port: no-vhost option requires Acceleration mode flag.");
3589 }
3590 s->vhost = 0;
3591 } else if (strcmp(token, "vport") == 0) {
3592 if (!s->accel) {
3593 debugs(3, DBG_CRITICAL, "FATAL: http(s)_port: vport option requires Acceleration mode flag.");
3594 self_destruct();
3595 }
3596 s->vport = -1;
3597 } else if (strncmp(token, "vport=", 6) == 0) {
3598 if (!s->accel) {
3599 debugs(3, DBG_CRITICAL, "FATAL: http(s)_port: vport option requires Acceleration mode flag.");
3600 self_destruct();
3601 }
3602 s->vport = xatos(token + 6);
3603 } else if (strncmp(token, "protocol=", 9) == 0) {
3604 if (!s->accel) {
3605 debugs(3, DBG_CRITICAL, "FATAL: http(s)_port: protocol option requires Acceleration mode flag.");
3606 self_destruct();
3607 }
3608 s->protocol = xstrdup(token + 9);
3609 } else if (strcmp(token, "allow-direct") == 0) {
3610 if (!s->accel) {
3611 debugs(3, DBG_CRITICAL, "FATAL: http(s)_port: allow-direct option requires Acceleration mode flag.");
3612 self_destruct();
3613 }
3614 s->allow_direct = 1;
3615 } else if (strcmp(token, "act-as-origin") == 0) {
3616 if (!s->accel) {
3617 debugs(3, DBG_IMPORTANT, "ERROR: http(s)_port: act-as-origin option requires Acceleration mode flag.");
3618 } else
3619 s->actAsOrigin = 1;
3620 } else if (strcmp(token, "ignore-cc") == 0) {
3621 #if !USE_HTTP_VIOLATIONS
3622 if (!s->accel) {
3623 debugs(3, DBG_CRITICAL, "FATAL: http(s)_port: ignore-cc option requires Scceleration mode flag.");
3624 self_destruct();
3625 }
3626 #endif
3627 s->ignore_cc = 1;
3628 } else if (strncmp(token, "name=", 5) == 0) {
3629 safe_free(s->name);
3630 s->name = xstrdup(token + 5);
3631 } else if (strcmp(token, "no-connection-auth") == 0) {
3632 s->connection_auth_disabled = true;
3633 } else if (strcmp(token, "connection-auth=off") == 0) {
3634 s->connection_auth_disabled = true;
3635 } else if (strcmp(token, "connection-auth") == 0) {
3636 s->connection_auth_disabled = false;
3637 } else if (strcmp(token, "connection-auth=on") == 0) {
3638 s->connection_auth_disabled = false;
3639 } else if (strncmp(token, "disable-pmtu-discovery=", 23) == 0) {
3640 if (!strcasecmp(token + 23, "off"))
3641 s->disable_pmtu_discovery = DISABLE_PMTU_OFF;
3642 else if (!strcasecmp(token + 23, "transparent"))
3643 s->disable_pmtu_discovery = DISABLE_PMTU_TRANSPARENT;
3644 else if (!strcasecmp(token + 23, "always"))
3645 s->disable_pmtu_discovery = DISABLE_PMTU_ALWAYS;
3646 else
3647 self_destruct();
3648 } else if (strcmp(token, "ipv4") == 0) {
3649 if ( !s->s.SetIPv4() ) {
3650 debugs(3, DBG_CRITICAL, "FATAL: http(s)_port: IPv6 addresses cannot be used as IPv4-Only. " << s->s );
3651 self_destruct();
3652 }
3653 } else if (strcmp(token, "tcpkeepalive") == 0) {
3654 s->tcp_keepalive.enabled = 1;
3655 } else if (strncmp(token, "tcpkeepalive=", 13) == 0) {
3656 char *t = token + 13;
3657 s->tcp_keepalive.enabled = 1;
3658 s->tcp_keepalive.idle = atoi(t);
3659 t = strchr(t, ',');
3660 if (t) {
3661 ++t;
3662 s->tcp_keepalive.interval = atoi(t);
3663 t = strchr(t, ',');
3664 }
3665 if (t) {
3666 ++t;
3667 s->tcp_keepalive.timeout = atoi(t);
3668 t = strchr(t, ',');
3669 }
3670 #if USE_SSL
3671 } else if (strcasecmp(token, "sslBump") == 0) {
3672 debugs(3, DBG_CRITICAL, "WARNING: '" << token << "' is deprecated " <<
3673 "in http_port. Use 'ssl-bump' instead.");
3674 s->sslBump = 1; // accelerated when bumped, otherwise not
3675 } else if (strcmp(token, "ssl-bump") == 0) {
3676 s->sslBump = 1; // accelerated when bumped, otherwise not
3677 } else if (strncmp(token, "cert=", 5) == 0) {
3678 safe_free(s->cert);
3679 s->cert = xstrdup(token + 5);
3680 } else if (strncmp(token, "key=", 4) == 0) {
3681 safe_free(s->key);
3682 s->key = xstrdup(token + 4);
3683 } else if (strncmp(token, "version=", 8) == 0) {
3684 s->version = xatoi(token + 8);
3685 if (s->version < 1 || s->version > 4)
3686 self_destruct();
3687 } else if (strncmp(token, "options=", 8) == 0) {
3688 safe_free(s->options);
3689 s->options = xstrdup(token + 8);
3690 } else if (strncmp(token, "cipher=", 7) == 0) {
3691 safe_free(s->cipher);
3692 s->cipher = xstrdup(token + 7);
3693 } else if (strncmp(token, "clientca=", 9) == 0) {
3694 safe_free(s->clientca);
3695 s->clientca = xstrdup(token + 9);
3696 } else if (strncmp(token, "cafile=", 7) == 0) {
3697 safe_free(s->cafile);
3698 s->cafile = xstrdup(token + 7);
3699 } else if (strncmp(token, "capath=", 7) == 0) {
3700 safe_free(s->capath);
3701 s->capath = xstrdup(token + 7);
3702 } else if (strncmp(token, "crlfile=", 8) == 0) {
3703 safe_free(s->crlfile);
3704 s->crlfile = xstrdup(token + 8);
3705 } else if (strncmp(token, "dhparams=", 9) == 0) {
3706 safe_free(s->dhfile);
3707 s->dhfile = xstrdup(token + 9);
3708 } else if (strncmp(token, "sslflags=", 9) == 0) {
3709 safe_free(s->sslflags);
3710 s->sslflags = xstrdup(token + 9);
3711 } else if (strncmp(token, "sslcontext=", 11) == 0) {
3712 safe_free(s->sslContextSessionId);
3713 s->sslContextSessionId = xstrdup(token + 11);
3714 } else if (strcmp(token, "generate-host-certificates") == 0) {
3715 s->generateHostCertificates = true;
3716 } else if (strcmp(token, "generate-host-certificates=on") == 0) {
3717 s->generateHostCertificates = true;
3718 } else if (strcmp(token, "generate-host-certificates=off") == 0) {
3719 s->generateHostCertificates = false;
3720 } else if (strncmp(token, "dynamic_cert_mem_cache_size=", 28) == 0) {
3721 parseBytesOptionValue(&s->dynamicCertMemCacheSize, B_BYTES_STR, token + 28);
3722 #endif
3723 } else {
3724 self_destruct();
3725 }
3726 }
3727
3728 void
3729 add_http_port(char *portspec)
3730 {
3731 AnyP::PortCfg *s = new AnyP::PortCfg("http_port");
3732 parsePortSpecification(s, portspec);
3733 // we may need to merge better if the above returns a list with clones
3734 assert(s->next == NULL);
3735 s->next = cbdataReference(Config.Sockaddr.http);
3736 cbdataReferenceDone(Config.Sockaddr.http);
3737 Config.Sockaddr.http = cbdataReference(s);
3738 }
3739
3740 static void
3741 parsePortCfg(AnyP::PortCfg ** head, const char *optionName)
3742 {
3743 const char *protocol = NULL;
3744 if (strcmp(optionName, "http_port") == 0 ||
3745 strcmp(optionName, "ascii_port") == 0)
3746 protocol = "http";
3747 else if (strcmp(optionName, "https_port") == 0)
3748 protocol = "https";
3749 if (!protocol) {
3750 self_destruct();
3751 return;
3752 }
3753
3754 char *token = strtok(NULL, w_space);
3755
3756 if (!token) {
3757 self_destruct();
3758 return;
3759 }
3760
3761 AnyP::PortCfg *s = new AnyP::PortCfg(protocol);
3762 parsePortSpecification(s, token);
3763
3764 /* parse options ... */
3765 while ((token = strtok(NULL, w_space))) {
3766 parse_port_option(s, token);
3767 }
3768
3769 #if USE_SSL
3770 if (strcasecmp(protocol, "https") == 0) {
3771 /* ssl-bump on https_port configuration requires either tproxy or intercept, and vice versa */
3772 const bool hijacked = s->spoof_client_ip || s->intercepted;
3773 if (s->sslBump && !hijacked) {
3774 debugs(3, DBG_CRITICAL, "FATAL: ssl-bump on https_port requires tproxy/intercept which is missing.");
3775 self_destruct();
3776 }
3777 if (hijacked && !s->sslBump) {
3778 debugs(3, DBG_CRITICAL, "FATAL: tproxy/intercept on https_port requires ssl-bump which is missing.");
3779 self_destruct();
3780 }
3781 }
3782 #endif
3783
3784 if (Ip::EnableIpv6&IPV6_SPECIAL_SPLITSTACK && s->s.IsAnyAddr()) {
3785 // clone the port options from *s to *(s->next)
3786 s->next = cbdataReference(s->clone());
3787 s->next->s.SetIPv4();
3788 debugs(3, 3, protocol << "_port: clone wildcard address for split-stack: " << s->s << " and " << s->next->s);
3789 }
3790
3791 while (*head)
3792 head = &(*head)->next;
3793
3794 *head = cbdataReference(s);
3795 }
3796
3797 static void
3798 dump_generic_port(StoreEntry * e, const char *n, const AnyP::PortCfg * s)
3799 {
3800 char buf[MAX_IPSTRLEN];
3801
3802 storeAppendPrintf(e, "%s %s",
3803 n,
3804 s->s.ToURL(buf,MAX_IPSTRLEN));
3805
3806 // MODES and specific sub-options.
3807 if (s->intercepted)
3808 storeAppendPrintf(e, " intercept");
3809
3810 else if (s->spoof_client_ip)
3811 storeAppendPrintf(e, " tproxy");
3812
3813 else if (s->accel) {
3814 storeAppendPrintf(e, " accel");
3815
3816 if (s->vhost)
3817 storeAppendPrintf(e, " vhost");
3818
3819 if (s->vport < 0)
3820 storeAppendPrintf(e, " vport");
3821 else if (s->vport > 0)
3822 storeAppendPrintf(e, " vport=%d", s->vport);
3823
3824 if (s->defaultsite)
3825 storeAppendPrintf(e, " defaultsite=%s", s->defaultsite);
3826
3827 if (s->protocol && strcmp(s->protocol,"http") != 0)
3828 storeAppendPrintf(e, " protocol=%s", s->protocol);
3829
3830 if (s->allow_direct)
3831 storeAppendPrintf(e, " allow-direct");
3832
3833 if (s->ignore_cc)
3834 storeAppendPrintf(e, " ignore-cc");
3835
3836 }
3837
3838 // Generic independent options
3839
3840 if (s->name)
3841 storeAppendPrintf(e, " name=%s", s->name);
3842
3843 #if USE_HTTP_VIOLATIONS
3844 if (!s->accel && s->ignore_cc)
3845 storeAppendPrintf(e, " ignore-cc");
3846 #endif
3847
3848 if (s->connection_auth_disabled)
3849 storeAppendPrintf(e, " connection-auth=off");
3850 else
3851 storeAppendPrintf(e, " connection-auth=on");
3852
3853 if (s->disable_pmtu_discovery != DISABLE_PMTU_OFF) {
3854 const char *pmtu;
3855
3856 if (s->disable_pmtu_discovery == DISABLE_PMTU_ALWAYS)
3857 pmtu = "always";
3858 else
3859 pmtu = "transparent";
3860
3861 storeAppendPrintf(e, " disable-pmtu-discovery=%s", pmtu);
3862 }
3863
3864 if (s->s.IsAnyAddr() && !s->s.IsIPv6())
3865 storeAppendPrintf(e, " ipv4");
3866
3867 if (s->tcp_keepalive.enabled) {
3868 if (s->tcp_keepalive.idle || s->tcp_keepalive.interval || s->tcp_keepalive.timeout) {
3869 storeAppendPrintf(e, " tcpkeepalive=%d,%d,%d", s->tcp_keepalive.idle, s->tcp_keepalive.interval, s->tcp_keepalive.timeout);
3870 } else {
3871 storeAppendPrintf(e, " tcpkeepalive");
3872 }
3873 }
3874
3875 #if USE_SSL
3876 if (s->sslBump)
3877 storeAppendPrintf(e, " ssl-bump");
3878
3879 if (s->cert)
3880 storeAppendPrintf(e, " cert=%s", s->cert);
3881
3882 if (s->key)
3883 storeAppendPrintf(e, " key=%s", s->key);
3884
3885 if (s->version)
3886 storeAppendPrintf(e, " version=%d", s->version);
3887
3888 if (s->options)
3889 storeAppendPrintf(e, " options=%s", s->options);
3890
3891 if (s->cipher)
3892 storeAppendPrintf(e, " cipher=%s", s->cipher);
3893
3894 if (s->cafile)
3895 storeAppendPrintf(e, " cafile=%s", s->cafile);
3896
3897 if (s->capath)
3898 storeAppendPrintf(e, " capath=%s", s->capath);
3899
3900 if (s->crlfile)
3901 storeAppendPrintf(e, " crlfile=%s", s->crlfile);
3902
3903 if (s->dhfile)
3904 storeAppendPrintf(e, " dhparams=%s", s->dhfile);
3905
3906 if (s->sslflags)
3907 storeAppendPrintf(e, " sslflags=%s", s->sslflags);
3908
3909 if (s->sslContextSessionId)
3910 storeAppendPrintf(e, " sslcontext=%s", s->sslContextSessionId);
3911
3912 if (s->generateHostCertificates)
3913 storeAppendPrintf(e, " generate-host-certificates");
3914
3915 if (s->dynamicCertMemCacheSize != std::numeric_limits<size_t>::max())
3916 storeAppendPrintf(e, "dynamic_cert_mem_cache_size=%lu%s\n", (unsigned long)s->dynamicCertMemCacheSize, B_BYTES_STR);
3917 #endif
3918 }
3919
3920 static void
3921 dump_PortCfg(StoreEntry * e, const char *n, const AnyP::PortCfg * s)
3922 {
3923 while (s) {
3924 dump_generic_port(e, n, s);
3925 storeAppendPrintf(e, "\n");
3926 s = s->next;
3927 }
3928 }
3929
3930 static void
3931 free_PortCfg(AnyP::PortCfg ** head)
3932 {
3933 AnyP::PortCfg *s;
3934
3935 while ((s = *head) != NULL) {
3936 *head = s->next;
3937 cbdataReferenceDone(s);
3938 }
3939 }
3940
3941 void
3942 configFreeMemory(void)
3943 {
3944 free_all();
3945 #if USE_SSL
3946 SSL_CTX_free(Config.ssl_client.sslContext);
3947 #endif
3948 }
3949
3950 void
3951 requirePathnameExists(const char *name, const char *path)
3952 {
3953
3954 struct stat sb;
3955 char pathbuf[BUFSIZ];
3956 assert(path != NULL);
3957
3958 if (Config.chroot_dir && (geteuid() == 0)) {
3959 snprintf(pathbuf, BUFSIZ, "%s/%s", Config.chroot_dir, path);
3960 path = pathbuf;
3961 }
3962
3963 if (stat(path, &sb) < 0) {
3964 debugs(0, DBG_CRITICAL, (opt_parse_cfg_only?"FATAL ":"") << "ERROR: " << name << " " << path << ": " << xstrerror());
3965 // keep going to find more issues if we are only checking the config file with "-k parse"
3966 if (opt_parse_cfg_only)
3967 return;
3968 // this is fatal if it is found during startup or reconfigure
3969 if (opt_send_signal == -1 || opt_send_signal == SIGHUP)
3970 fatalf("%s %s: %s", name, path, xstrerror());
3971 }
3972 }
3973
3974 char *
3975 strtokFile(void)
3976 {
3977 return ConfigParser::strtokFile();
3978 }
3979
3980 #include "AccessLogEntry.h"
3981
3982 static void
3983 parse_access_log(customlog ** logs)
3984 {
3985 const char *filename, *logdef_name;
3986
3987 customlog *cl = (customlog *)xcalloc(1, sizeof(*cl));
3988
3989 if ((filename = strtok(NULL, w_space)) == NULL) {
3990 self_destruct();
3991 return;
3992 }
3993
3994 if (strcmp(filename, "none") == 0) {
3995 cl->type = Log::Format::CLF_NONE;
3996 aclParseAclList(LegacyParser, &cl->aclList);
3997 while (*logs)
3998 logs = &(*logs)->next;
3999 *logs = cl;
4000 return;
4001 }
4002
4003 if ((logdef_name = strtok(NULL, w_space)) == NULL)
4004 logdef_name = "squid";
4005
4006 debugs(3, 9, "Log definition name '" << logdef_name << "' file '" << filename << "'");
4007
4008 cl->filename = xstrdup(filename);
4009
4010 /* look for the definition pointer corresponding to this name */
4011 Format::Format *lf = Log::TheConfig.logformats;
4012
4013 while (lf != NULL) {
4014 debugs(3, 9, "Comparing against '" << lf->name << "'");
4015
4016 if (strcmp(lf->name, logdef_name) == 0)
4017 break;
4018
4019 lf = lf->next;
4020 }
4021
4022 if (lf != NULL) {
4023 cl->type = Log::Format::CLF_CUSTOM;
4024 cl->logFormat = lf;
4025 } else if (strcmp(logdef_name, "auto") == 0) {
4026 debugs(0, DBG_CRITICAL, "WARNING: Log format 'auto' no longer exists. Using 'squid' instead.");
4027 cl->type = Log::Format::CLF_SQUID;
4028 } else if (strcmp(logdef_name, "squid") == 0) {
4029 cl->type = Log::Format::CLF_SQUID;
4030 } else if (strcmp(logdef_name, "common") == 0) {
4031 cl->type = Log::Format::CLF_COMMON;
4032 } else if (strcmp(logdef_name, "combined") == 0) {
4033 cl->type = Log::Format::CLF_COMBINED;
4034 #if ICAP_CLIENT
4035 } else if (strcmp(logdef_name, "icap_squid") == 0) {
4036 cl->type = Log::Format::CLF_ICAP_SQUID;
4037 #endif
4038 } else if (strcmp(logdef_name, "useragent") == 0) {
4039 cl->type = Log::Format::CLF_USERAGENT;
4040 } else if (strcmp(logdef_name, "referrer") == 0) {
4041 cl->type = Log::Format::CLF_REFERER;
4042 } else {
4043 debugs(3, DBG_CRITICAL, "Log format '" << logdef_name << "' is not defined");
4044 self_destruct();
4045 return;
4046 }
4047
4048 aclParseAclList(LegacyParser, &cl->aclList);
4049
4050 while (*logs)
4051 logs = &(*logs)->next;
4052
4053 *logs = cl;
4054 }
4055
4056 static int
4057 check_null_access_log(customlog *customlog_definitions)
4058 {
4059 return customlog_definitions == NULL;
4060 }
4061
4062 static void
4063 dump_access_log(StoreEntry * entry, const char *name, customlog * logs)
4064 {
4065 customlog *log;
4066
4067 for (log = logs; log; log = log->next) {
4068 storeAppendPrintf(entry, "%s ", name);
4069
4070 switch (log->type) {
4071
4072 case Log::Format::CLF_CUSTOM:
4073 storeAppendPrintf(entry, "%s %s", log->filename, log->logFormat->name);
4074 break;
4075
4076 case Log::Format::CLF_NONE:
4077 storeAppendPrintf(entry, "none");
4078 break;
4079
4080 case Log::Format::CLF_SQUID:
4081 storeAppendPrintf(entry, "%s squid", log->filename);
4082 break;
4083
4084 case Log::Format::CLF_COMBINED:
4085 storeAppendPrintf(entry, "%s combined", log->filename);
4086 break;
4087
4088 case Log::Format::CLF_COMMON:
4089 storeAppendPrintf(entry, "%s common", log->filename);
4090 break;
4091
4092 #if ICAP_CLIENT
4093 case Log::Format::CLF_ICAP_SQUID:
4094 storeAppendPrintf(entry, "%s icap_squid", log->filename);
4095 break;
4096 #endif
4097 case Log::Format::CLF_USERAGENT:
4098 storeAppendPrintf(entry, "%s useragent", log->filename);
4099 break;
4100
4101 case Log::Format::CLF_REFERER:
4102 storeAppendPrintf(entry, "%s referrer", log->filename);
4103 break;
4104
4105 case Log::Format::CLF_UNKNOWN:
4106 break;
4107 }
4108
4109 if (log->aclList)
4110 dump_acl_list(entry, log->aclList);
4111
4112 storeAppendPrintf(entry, "\n");
4113 }
4114 }
4115
4116 static void
4117 free_access_log(customlog ** definitions)
4118 {
4119 while (*definitions) {
4120 customlog *log = *definitions;
4121 *definitions = log->next;
4122
4123 log->logFormat = NULL;
4124 log->type = Log::Format::CLF_UNKNOWN;
4125
4126 if (log->aclList)
4127 aclDestroyAclList(&log->aclList);
4128
4129 safe_free(log->filename);
4130
4131 xfree(log);
4132 }
4133 }
4134
4135 /// parses list of integers form name=N1,N2,N3,...
4136 static bool
4137 parseNamedIntList(const char *data, const String &name, Vector<int> &list)
4138 {
4139 if (data && (strncmp(data, name.rawBuf(), name.size()) == 0)) {
4140 data += name.size();
4141 if (*data == '=') {
4142 while (true) {
4143 ++data;
4144 int value = 0;
4145 if (!StringToInt(data, value, &data, 10))
4146 break;
4147 list.push_back(value);
4148 if (*data == '\0' || *data != ',')
4149 break;
4150 }
4151 }
4152 }
4153 return data && *data == '\0';
4154 }
4155
4156 static void
4157 parse_CpuAffinityMap(CpuAffinityMap **const cpuAffinityMap)
4158 {
4159 #if !HAVE_CPU_AFFINITY
4160 debugs(3, DBG_CRITICAL, "FATAL: Squid built with no CPU affinity " <<
4161 "support, do not set 'cpu_affinity_map'");
4162 self_destruct();
4163 #endif /* HAVE_CPU_AFFINITY */
4164
4165 if (!*cpuAffinityMap)
4166 *cpuAffinityMap = new CpuAffinityMap;
4167
4168 const char *const pToken = strtok(NULL, w_space);
4169 const char *const cToken = strtok(NULL, w_space);
4170 Vector<int> processes, cores;
4171 if (!parseNamedIntList(pToken, "process_numbers", processes)) {
4172 debugs(3, DBG_CRITICAL, "FATAL: bad 'process_numbers' parameter " <<
4173 "in 'cpu_affinity_map'");
4174 self_destruct();
4175 } else if (!parseNamedIntList(cToken, "cores", cores)) {
4176 debugs(3, DBG_CRITICAL, "FATAL: bad 'cores' parameter in " <<
4177 "'cpu_affinity_map'");
4178 self_destruct();
4179 } else if (!(*cpuAffinityMap)->add(processes, cores)) {
4180 debugs(3, DBG_CRITICAL, "FATAL: bad 'cpu_affinity_map'; " <<
4181 "process_numbers and cores lists differ in length or " <<
4182 "contain numbers <= 0");
4183 self_destruct();
4184 }
4185 }
4186
4187 static void
4188 dump_CpuAffinityMap(StoreEntry *const entry, const char *const name, const CpuAffinityMap *const cpuAffinityMap)
4189 {
4190 if (cpuAffinityMap) {
4191 storeAppendPrintf(entry, "%s process_numbers=", name);
4192 for (size_t i = 0; i < cpuAffinityMap->processes().size(); ++i) {
4193 storeAppendPrintf(entry, "%s%i", (i ? "," : ""),
4194 cpuAffinityMap->processes()[i]);
4195 }
4196 storeAppendPrintf(entry, " cores=");
4197 for (size_t i = 0; i < cpuAffinityMap->processes().size(); ++i) {
4198 storeAppendPrintf(entry, "%s%i", (i ? "," : ""),
4199 cpuAffinityMap->cores()[i]);
4200 }
4201 storeAppendPrintf(entry, "\n");
4202 }
4203 }
4204
4205 static void
4206 free_CpuAffinityMap(CpuAffinityMap **const cpuAffinityMap)
4207 {
4208 delete *cpuAffinityMap;
4209 *cpuAffinityMap = NULL;
4210 }
4211
4212 #if USE_ADAPTATION
4213
4214 static void
4215 parse_adaptation_service_set_type()
4216 {
4217 Adaptation::Config::ParseServiceSet();
4218 }
4219
4220 static void
4221 parse_adaptation_service_chain_type()
4222 {
4223 Adaptation::Config::ParseServiceChain();
4224 }
4225
4226 static void
4227 parse_adaptation_access_type()
4228 {
4229 Adaptation::Config::ParseAccess(LegacyParser);
4230 }
4231
4232 static void
4233 parse_adaptation_meta_type(Adaptation::Config::MetaHeaders *)
4234 {
4235 Adaptation::Config::ParseMetaHeader(LegacyParser);
4236 }
4237
4238 static void
4239 dump_adaptation_meta_type(StoreEntry *entry, const char *name, Adaptation::Config::MetaHeaders &)
4240 {
4241 Adaptation::Config::DumpMetaHeader(entry, name);
4242 }
4243
4244 static void
4245 free_adaptation_meta_type(Adaptation::Config::MetaHeaders *)
4246 {
4247 // Nothing to do, it is released inside Adaptation::Config::freeService()
4248 }
4249 #endif /* USE_ADAPTATION */
4250
4251 #if ICAP_CLIENT
4252
4253 static void
4254 parse_icap_service_type(Adaptation::Icap::Config * cfg)
4255 {
4256 cfg->parseService();
4257 }
4258
4259 static void
4260 free_icap_service_type(Adaptation::Icap::Config * cfg)
4261 {
4262 cfg->freeService();
4263 }
4264
4265 static void
4266 dump_icap_service_type(StoreEntry * entry, const char *name, const Adaptation::Icap::Config &cfg)
4267 {
4268 cfg.dumpService(entry, name);
4269 }
4270
4271 static void
4272 parse_icap_class_type()
4273 {
4274 debugs(93, DBG_CRITICAL, "WARNING: 'icap_class' is depricated. " <<
4275 "Use 'adaptation_service_set' instead");
4276 Adaptation::Config::ParseServiceSet();
4277 }
4278
4279 static void
4280 parse_icap_access_type()
4281 {
4282 debugs(93, DBG_CRITICAL, "WARNING: 'icap_access' is depricated. " <<
4283 "Use 'adaptation_access' instead");
4284 Adaptation::Config::ParseAccess(LegacyParser);
4285 }
4286
4287 #endif
4288
4289 #if USE_ECAP
4290
4291 static void
4292 parse_ecap_service_type(Adaptation::Ecap::Config * cfg)
4293 {
4294 cfg->parseService();
4295 }
4296
4297 static void
4298 free_ecap_service_type(Adaptation::Ecap::Config * cfg)
4299 {
4300 cfg->freeService();
4301 }
4302
4303 static void
4304 dump_ecap_service_type(StoreEntry * entry, const char *name, const Adaptation::Ecap::Config &cfg)
4305 {
4306 cfg.dumpService(entry, name);
4307 }
4308
4309 #endif /* USE_ECAP */
4310
4311 #if ICAP_CLIENT
4312 static void parse_icap_service_failure_limit(Adaptation::Icap::Config *cfg)
4313 {
4314 char *token;
4315 time_t d;
4316 time_t m;
4317 cfg->service_failure_limit = GetInteger();
4318
4319 if ((token = strtok(NULL, w_space)) == NULL)
4320 return;
4321
4322 if (strcmp(token,"in") != 0) {
4323 debugs(3, DBG_CRITICAL, "expecting 'in' on'" << config_input_line << "'");
4324 self_destruct();
4325 }
4326
4327 if ((token = strtok(NULL, w_space)) == NULL) {
4328 self_destruct();
4329 }
4330
4331 d = static_cast<time_t> (xatoi(token));
4332
4333 m = static_cast<time_t> (1);
4334
4335 if (0 == d)
4336 (void) 0;
4337 else if ((token = strtok(NULL, w_space)) == NULL) {
4338 debugs(3, DBG_CRITICAL, "No time-units on '" << config_input_line << "'");
4339 self_destruct();
4340 } else if ((m = parseTimeUnits(token, false)) == 0)
4341 self_destruct();
4342
4343 cfg->oldest_service_failure = (m * d);
4344 }
4345
4346 static void dump_icap_service_failure_limit(StoreEntry *entry, const char *name, const Adaptation::Icap::Config &cfg)
4347 {
4348 storeAppendPrintf(entry, "%s %d", name, cfg.service_failure_limit);
4349 if (cfg.oldest_service_failure > 0) {
4350 storeAppendPrintf(entry, " in %d seconds", (int)cfg.oldest_service_failure);
4351 }
4352 storeAppendPrintf(entry, "\n");
4353 }
4354
4355 static void free_icap_service_failure_limit(Adaptation::Icap::Config *cfg)
4356 {
4357 cfg->oldest_service_failure = 0;
4358 cfg->service_failure_limit = 0;
4359 }
4360 #endif
4361
4362 #if USE_SSL
4363 static void parse_sslproxy_cert_adapt(sslproxy_cert_adapt **cert_adapt)
4364 {
4365 char *al;
4366 sslproxy_cert_adapt *ca = (sslproxy_cert_adapt *) xcalloc(1, sizeof(sslproxy_cert_adapt));
4367 if ((al = strtok(NULL, w_space)) == NULL) {
4368 self_destruct();
4369 return;
4370 }
4371
4372 const char *param;
4373 if ( char *s = strchr(al, '{')) {
4374 *s = '\0'; // terminate the al string
4375 ++s;
4376 param = s;
4377 s = strchr(s, '}');
4378 if (!s) {
4379 self_destruct();
4380 return;
4381 }
4382 *s = '\0';
4383 } else
4384 param = NULL;
4385
4386 if (strcmp(al, Ssl::CertAdaptAlgorithmStr[Ssl::algSetValidAfter]) == 0) {
4387 ca->alg = Ssl::algSetValidAfter;
4388 ca->param = strdup("on");
4389 } else if (strcmp(al, Ssl::CertAdaptAlgorithmStr[Ssl::algSetValidBefore]) == 0) {
4390 ca->alg = Ssl::algSetValidBefore;
4391 ca->param = strdup("on");
4392 } else if (strcmp(al, Ssl::CertAdaptAlgorithmStr[Ssl::algSetCommonName]) == 0) {
4393 ca->alg = Ssl::algSetCommonName;
4394 if (param) {
4395 if (strlen(param) > 64) {
4396 debugs(3, DBG_CRITICAL, "FATAL: sslproxy_cert_adapt: setCommonName{" <<param << "} : using common name longer than 64 bytes is not supported");
4397 self_destruct();
4398 return;
4399 }
4400 ca->param = strdup(param);
4401 }
4402 } else {
4403 debugs(3, DBG_CRITICAL, "FATAL: sslproxy_cert_adapt: unknown cert adaptation algorithm: " << al);
4404 self_destruct();
4405 return;
4406 }
4407
4408 aclParseAclList(LegacyParser, &ca->aclList);
4409
4410 while (*cert_adapt)
4411 cert_adapt = &(*cert_adapt)->next;
4412
4413 *cert_adapt = ca;
4414 }
4415
4416 static void dump_sslproxy_cert_adapt(StoreEntry *entry, const char *name, sslproxy_cert_adapt *cert_adapt)
4417 {
4418 for (sslproxy_cert_adapt *ca = cert_adapt; ca != NULL; ca = ca->next) {
4419 storeAppendPrintf(entry, "%s ", name);
4420 storeAppendPrintf(entry, "%s{%s} ", Ssl::sslCertAdaptAlgoritm(ca->alg), ca->param);
4421 if (ca->aclList)
4422 dump_acl_list(entry, ca->aclList);
4423 storeAppendPrintf(entry, "\n");
4424 }
4425 }
4426
4427 static void free_sslproxy_cert_adapt(sslproxy_cert_adapt **cert_adapt)
4428 {
4429 while (*cert_adapt) {
4430 sslproxy_cert_adapt *ca = *cert_adapt;
4431 *cert_adapt = ca->next;
4432 safe_free(ca->param);
4433
4434 if (ca->aclList)
4435 aclDestroyAclList(&ca->aclList);
4436
4437 safe_free(ca);
4438 }
4439 }
4440
4441 static void parse_sslproxy_cert_sign(sslproxy_cert_sign **cert_sign)
4442 {
4443 char *al;
4444 sslproxy_cert_sign *cs = (sslproxy_cert_sign *) xcalloc(1, sizeof(sslproxy_cert_sign));
4445 if ((al = strtok(NULL, w_space)) == NULL) {
4446 self_destruct();
4447 return;
4448 }
4449
4450 if (strcmp(al, Ssl::CertSignAlgorithmStr[Ssl::algSignTrusted]) == 0)
4451 cs->alg = Ssl::algSignTrusted;
4452 else if (strcmp(al, Ssl::CertSignAlgorithmStr[Ssl::algSignUntrusted]) == 0)
4453 cs->alg = Ssl::algSignUntrusted;
4454 else if (strcmp(al, Ssl::CertSignAlgorithmStr[Ssl::algSignSelf]) == 0)
4455 cs->alg = Ssl::algSignSelf;
4456 else {
4457 debugs(3, DBG_CRITICAL, "FATAL: sslproxy_cert_sign: unknown cert signing algorithm: " << al);
4458 self_destruct();
4459 return;
4460 }
4461
4462 aclParseAclList(LegacyParser, &cs->aclList);
4463
4464 while (*cert_sign)
4465 cert_sign = &(*cert_sign)->next;
4466
4467 *cert_sign = cs;
4468 }
4469
4470 static void dump_sslproxy_cert_sign(StoreEntry *entry, const char *name, sslproxy_cert_sign *cert_sign)
4471 {
4472 sslproxy_cert_sign *cs;
4473 for (cs = cert_sign; cs != NULL; cs = cs->next) {
4474 storeAppendPrintf(entry, "%s ", name);
4475 storeAppendPrintf(entry, "%s ", Ssl::certSignAlgorithm(cs->alg));
4476 if (cs->aclList)
4477 dump_acl_list(entry, cs->aclList);
4478 storeAppendPrintf(entry, "\n");
4479 }
4480 }
4481
4482 static void free_sslproxy_cert_sign(sslproxy_cert_sign **cert_sign)
4483 {
4484 while (*cert_sign) {
4485 sslproxy_cert_sign *cs = *cert_sign;
4486 *cert_sign = cs->next;
4487
4488 if (cs->aclList)
4489 aclDestroyAclList(&cs->aclList);
4490
4491 safe_free(cs);
4492 }
4493 }
4494
4495 class sslBumpCfgRr: public ::RegisteredRunner
4496 {
4497 public:
4498 static Ssl::BumpMode lastDeprecatedRule;
4499 /* RegisteredRunner API */
4500 virtual void run(const RunnerRegistry &);
4501 };
4502
4503 Ssl::BumpMode sslBumpCfgRr::lastDeprecatedRule = Ssl::bumpEnd;
4504
4505 RunnerRegistrationEntry(rrFinalizeConfig, sslBumpCfgRr);
4506
4507 void sslBumpCfgRr::run(const RunnerRegistry &r)
4508 {
4509 if (lastDeprecatedRule != Ssl::bumpEnd) {
4510 assert( lastDeprecatedRule == Ssl::bumpClientFirst || lastDeprecatedRule == Ssl::bumpNone);
4511 static char buf[1024];
4512 if (lastDeprecatedRule == Ssl::bumpClientFirst) {
4513 strcpy(buf, "ssl_bump deny all");
4514 debugs(3, DBG_CRITICAL, "WARNING: auto-converting deprecated implicit "
4515 "\"ssl_bump deny all\" to \"ssl_bump none all\". New ssl_bump configurations "
4516 "must not use implicit rules. Update your ssl_bump rules.");
4517 } else {
4518 strcpy(buf, "ssl_bump allow all");
4519 debugs(3, DBG_CRITICAL, "SECURITY NOTICE: auto-converting deprecated implicit "
4520 "\"ssl_bump allow all\" to \"ssl_bump client-first all\" which is usually "
4521 "inferior to the newer server-first bumping mode. New ssl_bump"
4522 " configurations must not use implicit rules. Update your ssl_bump rules.");
4523 }
4524 parse_line(buf);
4525 }
4526 }
4527
4528 static void parse_sslproxy_ssl_bump(acl_access **ssl_bump)
4529 {
4530 typedef const char *BumpCfgStyle;
4531 BumpCfgStyle bcsNone = NULL;
4532 BumpCfgStyle bcsNew = "new client/server-first/none";
4533 BumpCfgStyle bcsOld = "deprecated allow/deny";
4534 static BumpCfgStyle bumpCfgStyleLast = bcsNone;
4535 BumpCfgStyle bumpCfgStyleNow = bcsNone;
4536 char *bm;
4537 if ((bm = strtok(NULL, w_space)) == NULL) {
4538 self_destruct();
4539 return;
4540 }
4541
4542 // if this is the first rule proccessed
4543 if (*ssl_bump == NULL) {
4544 bumpCfgStyleLast = bcsNone;
4545 sslBumpCfgRr::lastDeprecatedRule = Ssl::bumpEnd;
4546 }
4547
4548 acl_access *A = new acl_access;
4549 A->allow = allow_t(ACCESS_ALLOWED);
4550
4551 if (strcmp(bm, Ssl::BumpModeStr[Ssl::bumpClientFirst]) == 0) {
4552 A->allow.kind = Ssl::bumpClientFirst;
4553 bumpCfgStyleNow = bcsNew;
4554 } else if (strcmp(bm, Ssl::BumpModeStr[Ssl::bumpServerFirst]) == 0) {
4555 A->allow.kind = Ssl::bumpServerFirst;
4556 bumpCfgStyleNow = bcsNew;
4557 } else if (strcmp(bm, Ssl::BumpModeStr[Ssl::bumpNone]) == 0) {
4558 A->allow.kind = Ssl::bumpNone;
4559 bumpCfgStyleNow = bcsNew;
4560 } else if (strcmp(bm, "allow") == 0) {
4561 debugs(3, DBG_CRITICAL, "SECURITY NOTICE: auto-converting deprecated "
4562 "\"ssl_bump allow <acl>\" to \"ssl_bump client-first <acl>\" which "
4563 "is usually inferior to the newer server-first "
4564 "bumping mode. Update your ssl_bump rules.");
4565 A->allow.kind = Ssl::bumpClientFirst;
4566 bumpCfgStyleNow = bcsOld;
4567 sslBumpCfgRr::lastDeprecatedRule = Ssl::bumpClientFirst;
4568 } else if (strcmp(bm, "deny") == 0) {
4569 debugs(3, DBG_CRITICAL, "WARNING: auto-converting deprecated "
4570 "\"ssl_bump deny <acl>\" to \"ssl_bump none <acl>\". Update "
4571 "your ssl_bump rules.");
4572 A->allow.kind = Ssl::bumpNone;
4573 bumpCfgStyleNow = bcsOld;
4574 sslBumpCfgRr::lastDeprecatedRule = Ssl::bumpNone;
4575 } else {
4576 debugs(3, DBG_CRITICAL, "FATAL: unknown ssl_bump mode: " << bm);
4577 self_destruct();
4578 return;
4579 }
4580
4581 if (bumpCfgStyleLast != bcsNone && bumpCfgStyleNow != bumpCfgStyleLast) {
4582 debugs(3, DBG_CRITICAL, "FATAL: do not mix " << bumpCfgStyleNow << " actions with " <<
4583 bumpCfgStyleLast << " actions. Update your ssl_bump rules.");
4584 self_destruct();
4585 return;
4586 }
4587
4588 bumpCfgStyleLast = bumpCfgStyleNow;
4589
4590 aclParseAclList(LegacyParser, &A->aclList);
4591
4592 acl_access *B, **T;
4593 for (B = *ssl_bump, T = ssl_bump; B; T = &B->next, B = B->next);
4594 *T = A;
4595 }
4596
4597 static void dump_sslproxy_ssl_bump(StoreEntry *entry, const char *name, acl_access *ssl_bump)
4598 {
4599 acl_access *sb;
4600 for (sb = ssl_bump; sb != NULL; sb = sb->next) {
4601 storeAppendPrintf(entry, "%s ", name);
4602 storeAppendPrintf(entry, "%s ", Ssl::bumpMode(sb->allow.kind));
4603 if (sb->aclList)
4604 dump_acl_list(entry, sb->aclList);
4605 storeAppendPrintf(entry, "\n");
4606 }
4607 }
4608
4609 static void free_sslproxy_ssl_bump(acl_access **ssl_bump)
4610 {
4611 free_acl_access(ssl_bump);
4612 }
4613
4614 #endif
4615
4616 static void dump_HeaderWithAclList(StoreEntry * entry, const char *name, HeaderWithAclList *headers)
4617 {
4618 if (!headers)
4619 return;
4620
4621 for (HeaderWithAclList::iterator hwa = headers->begin(); hwa != headers->end(); ++hwa) {
4622 storeAppendPrintf(entry, "%s ", hwa->fieldName.c_str());
4623 storeAppendPrintf(entry, "%s ", hwa->fieldValue.c_str());
4624 if (hwa->aclList)
4625 dump_acl_list(entry, hwa->aclList);
4626 storeAppendPrintf(entry, "\n");
4627 }
4628 }
4629
4630 static void parse_HeaderWithAclList(HeaderWithAclList **headers)
4631 {
4632 char *fn;
4633 if (!*headers) {
4634 *headers = new HeaderWithAclList;
4635 }
4636 if ((fn = strtok(NULL, w_space)) == NULL) {
4637 self_destruct();
4638 return;
4639 }
4640 HeaderWithAcl hwa;
4641 hwa.fieldName = fn;
4642 hwa.fieldId = httpHeaderIdByNameDef(fn, strlen(fn));
4643 if (hwa.fieldId == HDR_BAD_HDR)
4644 hwa.fieldId = HDR_OTHER;
4645
4646 String buf;
4647 bool wasQuoted;
4648 ConfigParser::ParseQuotedString(&buf, &wasQuoted);
4649 hwa.fieldValue = buf.termedBuf();
4650 hwa.quoted = wasQuoted;
4651 if (hwa.quoted) {
4652 Format::Format *nlf = new ::Format::Format("hdrWithAcl");
4653 if (!nlf->parse(hwa.fieldValue.c_str())) {
4654 self_destruct();
4655 return;
4656 }
4657 hwa.valueFormat = nlf;
4658 }
4659 aclParseAclList(LegacyParser, &hwa.aclList);
4660 (*headers)->push_back(hwa);
4661 }
4662
4663 static void free_HeaderWithAclList(HeaderWithAclList **header)
4664 {
4665 if (!(*header))
4666 return;
4667
4668 for (HeaderWithAclList::iterator hwa = (*header)->begin(); hwa != (*header)->end(); ++hwa) {
4669 if (hwa->aclList)
4670 aclDestroyAclList(&hwa->aclList);
4671
4672 if (hwa->valueFormat) {
4673 delete hwa->valueFormat;
4674 hwa->valueFormat = NULL;
4675 }
4676 }
4677 delete *header;
4678 *header = NULL;
4679 }