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