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