unbound/util/configparser.c

7015 lines
241 KiB
C
Raw Normal View History

2020-06-24 08:18:47 -04:00
/* A Bison parser, made by GNU Bison 3.5.1. */
/* Bison implementation for Yacc-like parsers in C
2020-06-24 08:18:47 -04:00
Copyright (C) 1984, 1989-1990, 2000-2015, 2018-2020 Free Software Foundation,
Inc.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>. */
/* As a special exception, you may create a larger work that contains
part or all of the Bison parser skeleton and distribute that work
under terms of your choice, so long as that work isn't itself a
parser generator using the skeleton or a modified version thereof
as a parser skeleton. Alternatively, if you modify or redistribute
the parser skeleton itself, you may (at your option) remove this
special exception, which will cause the skeleton and the resulting
Bison output files to be licensed under the GNU General Public
License without this special exception.
This special exception was added by the Free Software Foundation in
version 2.2 of Bison. */
/* C LALR(1) parser skeleton written by Richard Stallman, by
simplifying the original so-called "semantic" parser. */
/* All symbols defined below should begin with yy or YY, to avoid
infringing on user name space. This should be done even for local
variables, as they might otherwise be expanded by user macros.
There are some unavoidable exceptions within include files to
define necessary library symbols; they are noted "INFRINGES ON
USER NAME SPACE" below. */
/* Undocumented macros, especially those whose name start with YY_,
are private implementation details. Do not rely on them. */
/* Identify Bison output. */
#define YYBISON 1
/* Bison version. */
2020-06-24 08:18:47 -04:00
#define YYBISON_VERSION "3.5.1"
/* Skeleton name. */
#define YYSKELETON_NAME "yacc.c"
/* Pure parsers. */
#define YYPURE 0
/* Push parsers. */
#define YYPUSH 0
/* Pull parsers. */
#define YYPULL 1
/* First part of user prologue. */
#line 38 "./util/configparser.y"
#include "config.h"
#include <stdarg.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <assert.h>
#include "util/configyyrename.h"
#include "util/config_file.h"
#include "util/net_help.h"
int ub_c_lex(void);
void ub_c_error(const char *message);
static void validate_respip_action(const char* action);
/* these need to be global, otherwise they cannot be used inside yacc */
extern struct config_parser_state* cfg_parser;
#if 0
#define OUTYY(s) printf s /* used ONLY when debugging */
#else
#define OUTYY(s)
#endif
#line 99 "util/configparser.c"
2020-06-24 08:18:47 -04:00
# ifndef YY_CAST
# ifdef __cplusplus
# define YY_CAST(Type, Val) static_cast<Type> (Val)
# define YY_REINTERPRET_CAST(Type, Val) reinterpret_cast<Type> (Val)
# else
# define YY_CAST(Type, Val) ((Type) (Val))
# define YY_REINTERPRET_CAST(Type, Val) ((Type) (Val))
# endif
# endif
# ifndef YY_NULLPTR
# if defined __cplusplus
# if 201103L <= __cplusplus
# define YY_NULLPTR nullptr
# else
# define YY_NULLPTR 0
# endif
# else
# define YY_NULLPTR ((void*)0)
# endif
# endif
/* Enabling verbose error messages. */
#ifdef YYERROR_VERBOSE
# undef YYERROR_VERBOSE
# define YYERROR_VERBOSE 1
#else
# define YYERROR_VERBOSE 0
#endif
/* Use api.header.include to #include this header
instead of duplicating it here. */
#ifndef YY_YY_UTIL_CONFIGPARSER_H_INCLUDED
# define YY_YY_UTIL_CONFIGPARSER_H_INCLUDED
/* Debug traces. */
#ifndef YYDEBUG
# define YYDEBUG 0
#endif
#if YYDEBUG
extern int yydebug;
#endif
/* Token type. */
#ifndef YYTOKENTYPE
# define YYTOKENTYPE
enum yytokentype
{
SPACE = 258,
LETTER = 259,
NEWLINE = 260,
COMMENT = 261,
COLON = 262,
ANY = 263,
ZONESTR = 264,
STRING_ARG = 265,
VAR_FORCE_TOPLEVEL = 266,
VAR_SERVER = 267,
VAR_VERBOSITY = 268,
VAR_NUM_THREADS = 269,
VAR_PORT = 270,
VAR_OUTGOING_RANGE = 271,
VAR_INTERFACE = 272,
VAR_PREFER_IP4 = 273,
VAR_DO_IP4 = 274,
VAR_DO_IP6 = 275,
VAR_PREFER_IP6 = 276,
VAR_DO_UDP = 277,
VAR_DO_TCP = 278,
VAR_TCP_MSS = 279,
VAR_OUTGOING_TCP_MSS = 280,
VAR_TCP_IDLE_TIMEOUT = 281,
VAR_EDNS_TCP_KEEPALIVE = 282,
VAR_EDNS_TCP_KEEPALIVE_TIMEOUT = 283,
VAR_CHROOT = 284,
VAR_USERNAME = 285,
VAR_DIRECTORY = 286,
VAR_LOGFILE = 287,
VAR_PIDFILE = 288,
VAR_MSG_CACHE_SIZE = 289,
VAR_MSG_CACHE_SLABS = 290,
VAR_NUM_QUERIES_PER_THREAD = 291,
VAR_RRSET_CACHE_SIZE = 292,
VAR_RRSET_CACHE_SLABS = 293,
VAR_OUTGOING_NUM_TCP = 294,
VAR_INFRA_HOST_TTL = 295,
VAR_INFRA_LAME_TTL = 296,
VAR_INFRA_CACHE_SLABS = 297,
VAR_INFRA_CACHE_NUMHOSTS = 298,
VAR_INFRA_CACHE_LAME_SIZE = 299,
VAR_NAME = 300,
VAR_STUB_ZONE = 301,
VAR_STUB_HOST = 302,
VAR_STUB_ADDR = 303,
VAR_TARGET_FETCH_POLICY = 304,
VAR_HARDEN_SHORT_BUFSIZE = 305,
VAR_HARDEN_LARGE_QUERIES = 306,
VAR_FORWARD_ZONE = 307,
VAR_FORWARD_HOST = 308,
VAR_FORWARD_ADDR = 309,
VAR_DO_NOT_QUERY_ADDRESS = 310,
VAR_HIDE_IDENTITY = 311,
VAR_HIDE_VERSION = 312,
VAR_IDENTITY = 313,
VAR_VERSION = 314,
VAR_HARDEN_GLUE = 315,
VAR_MODULE_CONF = 316,
VAR_TRUST_ANCHOR_FILE = 317,
VAR_TRUST_ANCHOR = 318,
VAR_VAL_OVERRIDE_DATE = 319,
VAR_BOGUS_TTL = 320,
VAR_VAL_CLEAN_ADDITIONAL = 321,
VAR_VAL_PERMISSIVE_MODE = 322,
VAR_INCOMING_NUM_TCP = 323,
VAR_MSG_BUFFER_SIZE = 324,
VAR_KEY_CACHE_SIZE = 325,
VAR_KEY_CACHE_SLABS = 326,
VAR_TRUSTED_KEYS_FILE = 327,
VAR_VAL_NSEC3_KEYSIZE_ITERATIONS = 328,
VAR_USE_SYSLOG = 329,
VAR_OUTGOING_INTERFACE = 330,
VAR_ROOT_HINTS = 331,
VAR_DO_NOT_QUERY_LOCALHOST = 332,
VAR_CACHE_MAX_TTL = 333,
VAR_HARDEN_DNSSEC_STRIPPED = 334,
VAR_ACCESS_CONTROL = 335,
VAR_LOCAL_ZONE = 336,
VAR_LOCAL_DATA = 337,
VAR_INTERFACE_AUTOMATIC = 338,
VAR_STATISTICS_INTERVAL = 339,
VAR_DO_DAEMONIZE = 340,
VAR_USE_CAPS_FOR_ID = 341,
VAR_STATISTICS_CUMULATIVE = 342,
VAR_OUTGOING_PORT_PERMIT = 343,
VAR_OUTGOING_PORT_AVOID = 344,
VAR_DLV_ANCHOR_FILE = 345,
VAR_DLV_ANCHOR = 346,
VAR_NEG_CACHE_SIZE = 347,
VAR_HARDEN_REFERRAL_PATH = 348,
VAR_PRIVATE_ADDRESS = 349,
VAR_PRIVATE_DOMAIN = 350,
VAR_REMOTE_CONTROL = 351,
VAR_CONTROL_ENABLE = 352,
VAR_CONTROL_INTERFACE = 353,
VAR_CONTROL_PORT = 354,
VAR_SERVER_KEY_FILE = 355,
VAR_SERVER_CERT_FILE = 356,
VAR_CONTROL_KEY_FILE = 357,
VAR_CONTROL_CERT_FILE = 358,
VAR_CONTROL_USE_CERT = 359,
VAR_EXTENDED_STATISTICS = 360,
VAR_LOCAL_DATA_PTR = 361,
VAR_JOSTLE_TIMEOUT = 362,
VAR_STUB_PRIME = 363,
VAR_UNWANTED_REPLY_THRESHOLD = 364,
VAR_LOG_TIME_ASCII = 365,
VAR_DOMAIN_INSECURE = 366,
VAR_PYTHON = 367,
VAR_PYTHON_SCRIPT = 368,
VAR_VAL_SIG_SKEW_MIN = 369,
VAR_VAL_SIG_SKEW_MAX = 370,
VAR_CACHE_MIN_TTL = 371,
VAR_VAL_LOG_LEVEL = 372,
VAR_AUTO_TRUST_ANCHOR_FILE = 373,
VAR_KEEP_MISSING = 374,
VAR_ADD_HOLDDOWN = 375,
VAR_DEL_HOLDDOWN = 376,
VAR_SO_RCVBUF = 377,
VAR_EDNS_BUFFER_SIZE = 378,
VAR_PREFETCH = 379,
VAR_PREFETCH_KEY = 380,
VAR_SO_SNDBUF = 381,
VAR_SO_REUSEPORT = 382,
VAR_HARDEN_BELOW_NXDOMAIN = 383,
VAR_IGNORE_CD_FLAG = 384,
VAR_LOG_QUERIES = 385,
VAR_LOG_REPLIES = 386,
VAR_LOG_LOCAL_ACTIONS = 387,
VAR_TCP_UPSTREAM = 388,
VAR_SSL_UPSTREAM = 389,
VAR_SSL_SERVICE_KEY = 390,
VAR_SSL_SERVICE_PEM = 391,
VAR_SSL_PORT = 392,
VAR_FORWARD_FIRST = 393,
VAR_STUB_SSL_UPSTREAM = 394,
VAR_FORWARD_SSL_UPSTREAM = 395,
VAR_TLS_CERT_BUNDLE = 396,
2020-09-16 12:38:51 -04:00
VAR_HTTPS_PORT = 397,
VAR_HTTP_ENDPOINT = 398,
VAR_HTTP_MAX_STREAMS = 399,
VAR_HTTP_QUERY_BUFFER_SIZE = 400,
VAR_HTTP_RESPONSE_BUFFER_SIZE = 401,
VAR_HTTP_NODELAY = 402,
VAR_HTTP_NOTLS_DOWNSTREAM = 403,
VAR_STUB_FIRST = 404,
VAR_MINIMAL_RESPONSES = 405,
VAR_RRSET_ROUNDROBIN = 406,
VAR_MAX_UDP_SIZE = 407,
VAR_DELAY_CLOSE = 408,
VAR_UNBLOCK_LAN_ZONES = 409,
VAR_INSECURE_LAN_ZONES = 410,
VAR_INFRA_CACHE_MIN_RTT = 411,
VAR_INFRA_KEEP_PROBING = 412,
VAR_DNS64_PREFIX = 413,
VAR_DNS64_SYNTHALL = 414,
VAR_DNS64_IGNORE_AAAA = 415,
VAR_DNSTAP = 416,
VAR_DNSTAP_ENABLE = 417,
VAR_DNSTAP_SOCKET_PATH = 418,
VAR_DNSTAP_IP = 419,
VAR_DNSTAP_TLS = 420,
VAR_DNSTAP_TLS_SERVER_NAME = 421,
VAR_DNSTAP_TLS_CERT_BUNDLE = 422,
VAR_DNSTAP_TLS_CLIENT_KEY_FILE = 423,
VAR_DNSTAP_TLS_CLIENT_CERT_FILE = 424,
VAR_DNSTAP_SEND_IDENTITY = 425,
VAR_DNSTAP_SEND_VERSION = 426,
VAR_DNSTAP_BIDIRECTIONAL = 427,
VAR_DNSTAP_IDENTITY = 428,
VAR_DNSTAP_VERSION = 429,
VAR_DNSTAP_LOG_RESOLVER_QUERY_MESSAGES = 430,
VAR_DNSTAP_LOG_RESOLVER_RESPONSE_MESSAGES = 431,
VAR_DNSTAP_LOG_CLIENT_QUERY_MESSAGES = 432,
VAR_DNSTAP_LOG_CLIENT_RESPONSE_MESSAGES = 433,
VAR_DNSTAP_LOG_FORWARDER_QUERY_MESSAGES = 434,
VAR_DNSTAP_LOG_FORWARDER_RESPONSE_MESSAGES = 435,
VAR_RESPONSE_IP_TAG = 436,
VAR_RESPONSE_IP = 437,
VAR_RESPONSE_IP_DATA = 438,
VAR_HARDEN_ALGO_DOWNGRADE = 439,
VAR_IP_TRANSPARENT = 440,
VAR_IP_DSCP = 441,
VAR_DISABLE_DNSSEC_LAME_CHECK = 442,
VAR_IP_RATELIMIT = 443,
VAR_IP_RATELIMIT_SLABS = 444,
VAR_IP_RATELIMIT_SIZE = 445,
VAR_RATELIMIT = 446,
VAR_RATELIMIT_SLABS = 447,
VAR_RATELIMIT_SIZE = 448,
VAR_RATELIMIT_FOR_DOMAIN = 449,
VAR_RATELIMIT_BELOW_DOMAIN = 450,
VAR_IP_RATELIMIT_FACTOR = 451,
VAR_RATELIMIT_FACTOR = 452,
VAR_SEND_CLIENT_SUBNET = 453,
VAR_CLIENT_SUBNET_ZONE = 454,
VAR_CLIENT_SUBNET_ALWAYS_FORWARD = 455,
VAR_CLIENT_SUBNET_OPCODE = 456,
VAR_MAX_CLIENT_SUBNET_IPV4 = 457,
VAR_MAX_CLIENT_SUBNET_IPV6 = 458,
VAR_MIN_CLIENT_SUBNET_IPV4 = 459,
VAR_MIN_CLIENT_SUBNET_IPV6 = 460,
VAR_MAX_ECS_TREE_SIZE_IPV4 = 461,
VAR_MAX_ECS_TREE_SIZE_IPV6 = 462,
VAR_CAPS_WHITELIST = 463,
VAR_CACHE_MAX_NEGATIVE_TTL = 464,
VAR_PERMIT_SMALL_HOLDDOWN = 465,
VAR_QNAME_MINIMISATION = 466,
VAR_QNAME_MINIMISATION_STRICT = 467,
VAR_IP_FREEBIND = 468,
VAR_DEFINE_TAG = 469,
VAR_LOCAL_ZONE_TAG = 470,
VAR_ACCESS_CONTROL_TAG = 471,
VAR_LOCAL_ZONE_OVERRIDE = 472,
VAR_ACCESS_CONTROL_TAG_ACTION = 473,
VAR_ACCESS_CONTROL_TAG_DATA = 474,
VAR_VIEW = 475,
VAR_ACCESS_CONTROL_VIEW = 476,
VAR_VIEW_FIRST = 477,
VAR_SERVE_EXPIRED = 478,
VAR_SERVE_EXPIRED_TTL = 479,
VAR_SERVE_EXPIRED_TTL_RESET = 480,
VAR_SERVE_EXPIRED_REPLY_TTL = 481,
VAR_SERVE_EXPIRED_CLIENT_TIMEOUT = 482,
VAR_FAKE_DSA = 483,
VAR_FAKE_SHA1 = 484,
VAR_LOG_IDENTITY = 485,
VAR_HIDE_TRUSTANCHOR = 486,
VAR_TRUST_ANCHOR_SIGNALING = 487,
VAR_AGGRESSIVE_NSEC = 488,
VAR_USE_SYSTEMD = 489,
VAR_SHM_ENABLE = 490,
VAR_SHM_KEY = 491,
VAR_ROOT_KEY_SENTINEL = 492,
VAR_DNSCRYPT = 493,
VAR_DNSCRYPT_ENABLE = 494,
VAR_DNSCRYPT_PORT = 495,
VAR_DNSCRYPT_PROVIDER = 496,
VAR_DNSCRYPT_SECRET_KEY = 497,
VAR_DNSCRYPT_PROVIDER_CERT = 498,
VAR_DNSCRYPT_PROVIDER_CERT_ROTATED = 499,
VAR_DNSCRYPT_SHARED_SECRET_CACHE_SIZE = 500,
VAR_DNSCRYPT_SHARED_SECRET_CACHE_SLABS = 501,
VAR_DNSCRYPT_NONCE_CACHE_SIZE = 502,
VAR_DNSCRYPT_NONCE_CACHE_SLABS = 503,
VAR_IPSECMOD_ENABLED = 504,
VAR_IPSECMOD_HOOK = 505,
VAR_IPSECMOD_IGNORE_BOGUS = 506,
VAR_IPSECMOD_MAX_TTL = 507,
VAR_IPSECMOD_WHITELIST = 508,
VAR_IPSECMOD_STRICT = 509,
VAR_CACHEDB = 510,
VAR_CACHEDB_BACKEND = 511,
VAR_CACHEDB_SECRETSEED = 512,
VAR_CACHEDB_REDISHOST = 513,
VAR_CACHEDB_REDISPORT = 514,
VAR_CACHEDB_REDISTIMEOUT = 515,
VAR_CACHEDB_REDISEXPIRERECORDS = 516,
VAR_UDP_UPSTREAM_WITHOUT_DOWNSTREAM = 517,
VAR_FOR_UPSTREAM = 518,
VAR_AUTH_ZONE = 519,
VAR_ZONEFILE = 520,
VAR_MASTER = 521,
VAR_URL = 522,
VAR_FOR_DOWNSTREAM = 523,
VAR_FALLBACK_ENABLED = 524,
VAR_TLS_ADDITIONAL_PORT = 525,
VAR_LOW_RTT = 526,
VAR_LOW_RTT_PERMIL = 527,
VAR_FAST_SERVER_PERMIL = 528,
VAR_FAST_SERVER_NUM = 529,
VAR_ALLOW_NOTIFY = 530,
VAR_TLS_WIN_CERT = 531,
VAR_TCP_CONNECTION_LIMIT = 532,
VAR_FORWARD_NO_CACHE = 533,
VAR_STUB_NO_CACHE = 534,
VAR_LOG_SERVFAIL = 535,
VAR_DENY_ANY = 536,
VAR_UNKNOWN_SERVER_TIME_LIMIT = 537,
VAR_LOG_TAG_QUERYREPLY = 538,
VAR_STREAM_WAIT_SIZE = 539,
VAR_TLS_CIPHERS = 540,
VAR_TLS_CIPHERSUITES = 541,
VAR_TLS_USE_SNI = 542,
VAR_IPSET = 543,
VAR_IPSET_NAME_V4 = 544,
VAR_IPSET_NAME_V6 = 545,
VAR_TLS_SESSION_TICKET_KEYS = 546,
VAR_RPZ = 547,
VAR_TAGS = 548,
VAR_RPZ_ACTION_OVERRIDE = 549,
VAR_RPZ_CNAME_OVERRIDE = 550,
VAR_RPZ_LOG = 551,
VAR_RPZ_LOG_NAME = 552,
VAR_DYNLIB = 553,
VAR_DYNLIB_FILE = 554,
2020-11-11 05:37:32 -05:00
VAR_EDNS_CLIENT_STRING = 555,
VAR_EDNS_CLIENT_STRING_OPCODE = 556
};
#endif
/* Tokens. */
#define SPACE 258
#define LETTER 259
#define NEWLINE 260
#define COMMENT 261
#define COLON 262
#define ANY 263
#define ZONESTR 264
#define STRING_ARG 265
#define VAR_FORCE_TOPLEVEL 266
#define VAR_SERVER 267
#define VAR_VERBOSITY 268
#define VAR_NUM_THREADS 269
#define VAR_PORT 270
#define VAR_OUTGOING_RANGE 271
#define VAR_INTERFACE 272
#define VAR_PREFER_IP4 273
#define VAR_DO_IP4 274
#define VAR_DO_IP6 275
#define VAR_PREFER_IP6 276
#define VAR_DO_UDP 277
#define VAR_DO_TCP 278
#define VAR_TCP_MSS 279
#define VAR_OUTGOING_TCP_MSS 280
#define VAR_TCP_IDLE_TIMEOUT 281
#define VAR_EDNS_TCP_KEEPALIVE 282
#define VAR_EDNS_TCP_KEEPALIVE_TIMEOUT 283
#define VAR_CHROOT 284
#define VAR_USERNAME 285
#define VAR_DIRECTORY 286
#define VAR_LOGFILE 287
#define VAR_PIDFILE 288
#define VAR_MSG_CACHE_SIZE 289
#define VAR_MSG_CACHE_SLABS 290
#define VAR_NUM_QUERIES_PER_THREAD 291
#define VAR_RRSET_CACHE_SIZE 292
#define VAR_RRSET_CACHE_SLABS 293
#define VAR_OUTGOING_NUM_TCP 294
#define VAR_INFRA_HOST_TTL 295
#define VAR_INFRA_LAME_TTL 296
#define VAR_INFRA_CACHE_SLABS 297
#define VAR_INFRA_CACHE_NUMHOSTS 298
#define VAR_INFRA_CACHE_LAME_SIZE 299
#define VAR_NAME 300
#define VAR_STUB_ZONE 301
#define VAR_STUB_HOST 302
#define VAR_STUB_ADDR 303
#define VAR_TARGET_FETCH_POLICY 304
#define VAR_HARDEN_SHORT_BUFSIZE 305
#define VAR_HARDEN_LARGE_QUERIES 306
#define VAR_FORWARD_ZONE 307
#define VAR_FORWARD_HOST 308
#define VAR_FORWARD_ADDR 309
#define VAR_DO_NOT_QUERY_ADDRESS 310
#define VAR_HIDE_IDENTITY 311
#define VAR_HIDE_VERSION 312
#define VAR_IDENTITY 313
#define VAR_VERSION 314
#define VAR_HARDEN_GLUE 315
#define VAR_MODULE_CONF 316
#define VAR_TRUST_ANCHOR_FILE 317
#define VAR_TRUST_ANCHOR 318
#define VAR_VAL_OVERRIDE_DATE 319
#define VAR_BOGUS_TTL 320
#define VAR_VAL_CLEAN_ADDITIONAL 321
#define VAR_VAL_PERMISSIVE_MODE 322
#define VAR_INCOMING_NUM_TCP 323
#define VAR_MSG_BUFFER_SIZE 324
#define VAR_KEY_CACHE_SIZE 325
#define VAR_KEY_CACHE_SLABS 326
#define VAR_TRUSTED_KEYS_FILE 327
#define VAR_VAL_NSEC3_KEYSIZE_ITERATIONS 328
#define VAR_USE_SYSLOG 329
#define VAR_OUTGOING_INTERFACE 330
#define VAR_ROOT_HINTS 331
#define VAR_DO_NOT_QUERY_LOCALHOST 332
#define VAR_CACHE_MAX_TTL 333
#define VAR_HARDEN_DNSSEC_STRIPPED 334
#define VAR_ACCESS_CONTROL 335
#define VAR_LOCAL_ZONE 336
#define VAR_LOCAL_DATA 337
#define VAR_INTERFACE_AUTOMATIC 338
#define VAR_STATISTICS_INTERVAL 339
#define VAR_DO_DAEMONIZE 340
#define VAR_USE_CAPS_FOR_ID 341
#define VAR_STATISTICS_CUMULATIVE 342
#define VAR_OUTGOING_PORT_PERMIT 343
#define VAR_OUTGOING_PORT_AVOID 344
#define VAR_DLV_ANCHOR_FILE 345
#define VAR_DLV_ANCHOR 346
#define VAR_NEG_CACHE_SIZE 347
#define VAR_HARDEN_REFERRAL_PATH 348
#define VAR_PRIVATE_ADDRESS 349
#define VAR_PRIVATE_DOMAIN 350
#define VAR_REMOTE_CONTROL 351
#define VAR_CONTROL_ENABLE 352
#define VAR_CONTROL_INTERFACE 353
#define VAR_CONTROL_PORT 354
#define VAR_SERVER_KEY_FILE 355
#define VAR_SERVER_CERT_FILE 356
#define VAR_CONTROL_KEY_FILE 357
#define VAR_CONTROL_CERT_FILE 358
#define VAR_CONTROL_USE_CERT 359
#define VAR_EXTENDED_STATISTICS 360
#define VAR_LOCAL_DATA_PTR 361
#define VAR_JOSTLE_TIMEOUT 362
#define VAR_STUB_PRIME 363
#define VAR_UNWANTED_REPLY_THRESHOLD 364
#define VAR_LOG_TIME_ASCII 365
#define VAR_DOMAIN_INSECURE 366
#define VAR_PYTHON 367
#define VAR_PYTHON_SCRIPT 368
#define VAR_VAL_SIG_SKEW_MIN 369
#define VAR_VAL_SIG_SKEW_MAX 370
#define VAR_CACHE_MIN_TTL 371
#define VAR_VAL_LOG_LEVEL 372
#define VAR_AUTO_TRUST_ANCHOR_FILE 373
#define VAR_KEEP_MISSING 374
#define VAR_ADD_HOLDDOWN 375
#define VAR_DEL_HOLDDOWN 376
#define VAR_SO_RCVBUF 377
#define VAR_EDNS_BUFFER_SIZE 378
#define VAR_PREFETCH 379
#define VAR_PREFETCH_KEY 380
#define VAR_SO_SNDBUF 381
#define VAR_SO_REUSEPORT 382
#define VAR_HARDEN_BELOW_NXDOMAIN 383
#define VAR_IGNORE_CD_FLAG 384
#define VAR_LOG_QUERIES 385
#define VAR_LOG_REPLIES 386
#define VAR_LOG_LOCAL_ACTIONS 387
#define VAR_TCP_UPSTREAM 388
#define VAR_SSL_UPSTREAM 389
#define VAR_SSL_SERVICE_KEY 390
#define VAR_SSL_SERVICE_PEM 391
#define VAR_SSL_PORT 392
#define VAR_FORWARD_FIRST 393
#define VAR_STUB_SSL_UPSTREAM 394
#define VAR_FORWARD_SSL_UPSTREAM 395
#define VAR_TLS_CERT_BUNDLE 396
2020-09-16 12:38:51 -04:00
#define VAR_HTTPS_PORT 397
#define VAR_HTTP_ENDPOINT 398
#define VAR_HTTP_MAX_STREAMS 399
#define VAR_HTTP_QUERY_BUFFER_SIZE 400
#define VAR_HTTP_RESPONSE_BUFFER_SIZE 401
#define VAR_HTTP_NODELAY 402
#define VAR_HTTP_NOTLS_DOWNSTREAM 403
#define VAR_STUB_FIRST 404
#define VAR_MINIMAL_RESPONSES 405
#define VAR_RRSET_ROUNDROBIN 406
#define VAR_MAX_UDP_SIZE 407
#define VAR_DELAY_CLOSE 408
#define VAR_UNBLOCK_LAN_ZONES 409
#define VAR_INSECURE_LAN_ZONES 410
#define VAR_INFRA_CACHE_MIN_RTT 411
#define VAR_INFRA_KEEP_PROBING 412
#define VAR_DNS64_PREFIX 413
#define VAR_DNS64_SYNTHALL 414
#define VAR_DNS64_IGNORE_AAAA 415
#define VAR_DNSTAP 416
#define VAR_DNSTAP_ENABLE 417
#define VAR_DNSTAP_SOCKET_PATH 418
#define VAR_DNSTAP_IP 419
#define VAR_DNSTAP_TLS 420
#define VAR_DNSTAP_TLS_SERVER_NAME 421
#define VAR_DNSTAP_TLS_CERT_BUNDLE 422
#define VAR_DNSTAP_TLS_CLIENT_KEY_FILE 423
#define VAR_DNSTAP_TLS_CLIENT_CERT_FILE 424
#define VAR_DNSTAP_SEND_IDENTITY 425
#define VAR_DNSTAP_SEND_VERSION 426
#define VAR_DNSTAP_BIDIRECTIONAL 427
#define VAR_DNSTAP_IDENTITY 428
#define VAR_DNSTAP_VERSION 429
#define VAR_DNSTAP_LOG_RESOLVER_QUERY_MESSAGES 430
#define VAR_DNSTAP_LOG_RESOLVER_RESPONSE_MESSAGES 431
#define VAR_DNSTAP_LOG_CLIENT_QUERY_MESSAGES 432
#define VAR_DNSTAP_LOG_CLIENT_RESPONSE_MESSAGES 433
#define VAR_DNSTAP_LOG_FORWARDER_QUERY_MESSAGES 434
#define VAR_DNSTAP_LOG_FORWARDER_RESPONSE_MESSAGES 435
#define VAR_RESPONSE_IP_TAG 436
#define VAR_RESPONSE_IP 437
#define VAR_RESPONSE_IP_DATA 438
#define VAR_HARDEN_ALGO_DOWNGRADE 439
#define VAR_IP_TRANSPARENT 440
#define VAR_IP_DSCP 441
#define VAR_DISABLE_DNSSEC_LAME_CHECK 442
#define VAR_IP_RATELIMIT 443
#define VAR_IP_RATELIMIT_SLABS 444
#define VAR_IP_RATELIMIT_SIZE 445
#define VAR_RATELIMIT 446
#define VAR_RATELIMIT_SLABS 447
#define VAR_RATELIMIT_SIZE 448
#define VAR_RATELIMIT_FOR_DOMAIN 449
#define VAR_RATELIMIT_BELOW_DOMAIN 450
#define VAR_IP_RATELIMIT_FACTOR 451
#define VAR_RATELIMIT_FACTOR 452
#define VAR_SEND_CLIENT_SUBNET 453
#define VAR_CLIENT_SUBNET_ZONE 454
#define VAR_CLIENT_SUBNET_ALWAYS_FORWARD 455
#define VAR_CLIENT_SUBNET_OPCODE 456
#define VAR_MAX_CLIENT_SUBNET_IPV4 457
#define VAR_MAX_CLIENT_SUBNET_IPV6 458
#define VAR_MIN_CLIENT_SUBNET_IPV4 459
#define VAR_MIN_CLIENT_SUBNET_IPV6 460
#define VAR_MAX_ECS_TREE_SIZE_IPV4 461
#define VAR_MAX_ECS_TREE_SIZE_IPV6 462
#define VAR_CAPS_WHITELIST 463
#define VAR_CACHE_MAX_NEGATIVE_TTL 464
#define VAR_PERMIT_SMALL_HOLDDOWN 465
#define VAR_QNAME_MINIMISATION 466
#define VAR_QNAME_MINIMISATION_STRICT 467
#define VAR_IP_FREEBIND 468
#define VAR_DEFINE_TAG 469
#define VAR_LOCAL_ZONE_TAG 470
#define VAR_ACCESS_CONTROL_TAG 471
#define VAR_LOCAL_ZONE_OVERRIDE 472
#define VAR_ACCESS_CONTROL_TAG_ACTION 473
#define VAR_ACCESS_CONTROL_TAG_DATA 474
#define VAR_VIEW 475
#define VAR_ACCESS_CONTROL_VIEW 476
#define VAR_VIEW_FIRST 477
#define VAR_SERVE_EXPIRED 478
#define VAR_SERVE_EXPIRED_TTL 479
#define VAR_SERVE_EXPIRED_TTL_RESET 480
#define VAR_SERVE_EXPIRED_REPLY_TTL 481
#define VAR_SERVE_EXPIRED_CLIENT_TIMEOUT 482
#define VAR_FAKE_DSA 483
#define VAR_FAKE_SHA1 484
#define VAR_LOG_IDENTITY 485
#define VAR_HIDE_TRUSTANCHOR 486
#define VAR_TRUST_ANCHOR_SIGNALING 487
#define VAR_AGGRESSIVE_NSEC 488
#define VAR_USE_SYSTEMD 489
#define VAR_SHM_ENABLE 490
#define VAR_SHM_KEY 491
#define VAR_ROOT_KEY_SENTINEL 492
#define VAR_DNSCRYPT 493
#define VAR_DNSCRYPT_ENABLE 494
#define VAR_DNSCRYPT_PORT 495
#define VAR_DNSCRYPT_PROVIDER 496
#define VAR_DNSCRYPT_SECRET_KEY 497
#define VAR_DNSCRYPT_PROVIDER_CERT 498
#define VAR_DNSCRYPT_PROVIDER_CERT_ROTATED 499
#define VAR_DNSCRYPT_SHARED_SECRET_CACHE_SIZE 500
#define VAR_DNSCRYPT_SHARED_SECRET_CACHE_SLABS 501
#define VAR_DNSCRYPT_NONCE_CACHE_SIZE 502
#define VAR_DNSCRYPT_NONCE_CACHE_SLABS 503
#define VAR_IPSECMOD_ENABLED 504
#define VAR_IPSECMOD_HOOK 505
#define VAR_IPSECMOD_IGNORE_BOGUS 506
#define VAR_IPSECMOD_MAX_TTL 507
#define VAR_IPSECMOD_WHITELIST 508
#define VAR_IPSECMOD_STRICT 509
#define VAR_CACHEDB 510
#define VAR_CACHEDB_BACKEND 511
#define VAR_CACHEDB_SECRETSEED 512
#define VAR_CACHEDB_REDISHOST 513
#define VAR_CACHEDB_REDISPORT 514
#define VAR_CACHEDB_REDISTIMEOUT 515
#define VAR_CACHEDB_REDISEXPIRERECORDS 516
#define VAR_UDP_UPSTREAM_WITHOUT_DOWNSTREAM 517
#define VAR_FOR_UPSTREAM 518
#define VAR_AUTH_ZONE 519
#define VAR_ZONEFILE 520
#define VAR_MASTER 521
#define VAR_URL 522
#define VAR_FOR_DOWNSTREAM 523
#define VAR_FALLBACK_ENABLED 524
#define VAR_TLS_ADDITIONAL_PORT 525
#define VAR_LOW_RTT 526
#define VAR_LOW_RTT_PERMIL 527
#define VAR_FAST_SERVER_PERMIL 528
#define VAR_FAST_SERVER_NUM 529
#define VAR_ALLOW_NOTIFY 530
#define VAR_TLS_WIN_CERT 531
#define VAR_TCP_CONNECTION_LIMIT 532
#define VAR_FORWARD_NO_CACHE 533
#define VAR_STUB_NO_CACHE 534
#define VAR_LOG_SERVFAIL 535
#define VAR_DENY_ANY 536
#define VAR_UNKNOWN_SERVER_TIME_LIMIT 537
#define VAR_LOG_TAG_QUERYREPLY 538
#define VAR_STREAM_WAIT_SIZE 539
#define VAR_TLS_CIPHERS 540
#define VAR_TLS_CIPHERSUITES 541
#define VAR_TLS_USE_SNI 542
#define VAR_IPSET 543
#define VAR_IPSET_NAME_V4 544
#define VAR_IPSET_NAME_V6 545
#define VAR_TLS_SESSION_TICKET_KEYS 546
#define VAR_RPZ 547
#define VAR_TAGS 548
#define VAR_RPZ_ACTION_OVERRIDE 549
#define VAR_RPZ_CNAME_OVERRIDE 550
#define VAR_RPZ_LOG 551
#define VAR_RPZ_LOG_NAME 552
#define VAR_DYNLIB 553
#define VAR_DYNLIB_FILE 554
2020-11-11 05:37:32 -05:00
#define VAR_EDNS_CLIENT_STRING 555
#define VAR_EDNS_CLIENT_STRING_OPCODE 556
/* Value type. */
#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
union YYSTYPE
{
#line 66 "./util/configparser.y"
char* str;
2020-11-11 05:37:32 -05:00
#line 757 "util/configparser.c"
2020-05-07 10:36:26 -04:00
};
typedef union YYSTYPE YYSTYPE;
# define YYSTYPE_IS_TRIVIAL 1
# define YYSTYPE_IS_DECLARED 1
#endif
extern YYSTYPE yylval;
int yyparse (void);
#endif /* !YY_YY_UTIL_CONFIGPARSER_H_INCLUDED */
#ifdef short
# undef short
#endif
2020-06-24 08:18:47 -04:00
/* On compilers that do not define __PTRDIFF_MAX__ etc., make sure
<limits.h> and (if available) <stdint.h> are included
so that the code can choose integer types of a good width. */
#ifndef __PTRDIFF_MAX__
# include <limits.h> /* INFRINGES ON USER NAME SPACE */
# if defined __STDC_VERSION__ && 199901 <= __STDC_VERSION__
# include <stdint.h> /* INFRINGES ON USER NAME SPACE */
# define YY_STDINT_H
# endif
#endif
2020-06-24 08:18:47 -04:00
/* Narrow types that promote to a signed type and that can represent a
signed or unsigned integer of at least N bits. In tables they can
save space and decrease cache pressure. Promoting to a signed type
helps avoid bugs in integer arithmetic. */
#ifdef __INT_LEAST8_MAX__
typedef __INT_LEAST8_TYPE__ yytype_int8;
#elif defined YY_STDINT_H
typedef int_least8_t yytype_int8;
#else
typedef signed char yytype_int8;
#endif
2020-06-24 08:18:47 -04:00
#ifdef __INT_LEAST16_MAX__
typedef __INT_LEAST16_TYPE__ yytype_int16;
#elif defined YY_STDINT_H
typedef int_least16_t yytype_int16;
#else
2020-06-24 08:18:47 -04:00
typedef short yytype_int16;
#endif
2020-06-24 08:18:47 -04:00
#if defined __UINT_LEAST8_MAX__ && __UINT_LEAST8_MAX__ <= __INT_MAX__
typedef __UINT_LEAST8_TYPE__ yytype_uint8;
#elif (!defined __UINT_LEAST8_MAX__ && defined YY_STDINT_H \
&& UINT_LEAST8_MAX <= INT_MAX)
typedef uint_least8_t yytype_uint8;
#elif !defined __UINT_LEAST8_MAX__ && UCHAR_MAX <= INT_MAX
typedef unsigned char yytype_uint8;
#else
2020-06-24 08:18:47 -04:00
typedef short yytype_uint8;
#endif
2020-06-24 08:18:47 -04:00
#if defined __UINT_LEAST16_MAX__ && __UINT_LEAST16_MAX__ <= __INT_MAX__
typedef __UINT_LEAST16_TYPE__ yytype_uint16;
#elif (!defined __UINT_LEAST16_MAX__ && defined YY_STDINT_H \
&& UINT_LEAST16_MAX <= INT_MAX)
typedef uint_least16_t yytype_uint16;
#elif !defined __UINT_LEAST16_MAX__ && USHRT_MAX <= INT_MAX
typedef unsigned short yytype_uint16;
#else
2020-06-24 08:18:47 -04:00
typedef int yytype_uint16;
#endif
#ifndef YYPTRDIFF_T
# if defined __PTRDIFF_TYPE__ && defined __PTRDIFF_MAX__
# define YYPTRDIFF_T __PTRDIFF_TYPE__
# define YYPTRDIFF_MAXIMUM __PTRDIFF_MAX__
# elif defined PTRDIFF_MAX
# ifndef ptrdiff_t
# include <stddef.h> /* INFRINGES ON USER NAME SPACE */
# endif
# define YYPTRDIFF_T ptrdiff_t
# define YYPTRDIFF_MAXIMUM PTRDIFF_MAX
# else
# define YYPTRDIFF_T long
# define YYPTRDIFF_MAXIMUM LONG_MAX
# endif
#endif
#ifndef YYSIZE_T
# ifdef __SIZE_TYPE__
# define YYSIZE_T __SIZE_TYPE__
# elif defined size_t
# define YYSIZE_T size_t
2020-06-24 08:18:47 -04:00
# elif defined __STDC_VERSION__ && 199901 <= __STDC_VERSION__
# include <stddef.h> /* INFRINGES ON USER NAME SPACE */
# define YYSIZE_T size_t
# else
# define YYSIZE_T unsigned
# endif
#endif
2020-06-24 08:18:47 -04:00
#define YYSIZE_MAXIMUM \
YY_CAST (YYPTRDIFF_T, \
(YYPTRDIFF_MAXIMUM < YY_CAST (YYSIZE_T, -1) \
? YYPTRDIFF_MAXIMUM \
: YY_CAST (YYSIZE_T, -1)))
#define YYSIZEOF(X) YY_CAST (YYPTRDIFF_T, sizeof (X))
/* Stored state numbers (used for stacks). */
typedef yytype_int16 yy_state_t;
/* State numbers in computations. */
typedef int yy_state_fast_t;
#ifndef YY_
# if defined YYENABLE_NLS && YYENABLE_NLS
# if ENABLE_NLS
# include <libintl.h> /* INFRINGES ON USER NAME SPACE */
# define YY_(Msgid) dgettext ("bison-runtime", Msgid)
# endif
# endif
# ifndef YY_
# define YY_(Msgid) Msgid
# endif
#endif
2020-06-24 08:18:47 -04:00
#ifndef YY_ATTRIBUTE_PURE
# if defined __GNUC__ && 2 < __GNUC__ + (96 <= __GNUC_MINOR__)
# define YY_ATTRIBUTE_PURE __attribute__ ((__pure__))
# else
2020-06-24 08:18:47 -04:00
# define YY_ATTRIBUTE_PURE
# endif
#endif
#ifndef YY_ATTRIBUTE_UNUSED
2020-06-24 08:18:47 -04:00
# if defined __GNUC__ && 2 < __GNUC__ + (7 <= __GNUC_MINOR__)
# define YY_ATTRIBUTE_UNUSED __attribute__ ((__unused__))
2020-05-07 10:36:26 -04:00
# else
2020-06-24 08:18:47 -04:00
# define YY_ATTRIBUTE_UNUSED
2020-05-07 10:36:26 -04:00
# endif
#endif
/* Suppress unused-variable warnings by "using" E. */
#if ! defined lint || defined __GNUC__
# define YYUSE(E) ((void) (E))
#else
# define YYUSE(E) /* empty */
#endif
#if defined __GNUC__ && ! defined __ICC && 407 <= __GNUC__ * 100 + __GNUC_MINOR__
/* Suppress an incorrect diagnostic about yylval being uninitialized. */
2020-06-24 08:18:47 -04:00
# define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN \
_Pragma ("GCC diagnostic push") \
_Pragma ("GCC diagnostic ignored \"-Wuninitialized\"") \
_Pragma ("GCC diagnostic ignored \"-Wmaybe-uninitialized\"")
2020-06-24 08:18:47 -04:00
# define YY_IGNORE_MAYBE_UNINITIALIZED_END \
_Pragma ("GCC diagnostic pop")
#else
# define YY_INITIAL_VALUE(Value) Value
#endif
#ifndef YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
# define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
# define YY_IGNORE_MAYBE_UNINITIALIZED_END
#endif
#ifndef YY_INITIAL_VALUE
# define YY_INITIAL_VALUE(Value) /* Nothing. */
#endif
2020-06-24 08:18:47 -04:00
#if defined __cplusplus && defined __GNUC__ && ! defined __ICC && 6 <= __GNUC__
# define YY_IGNORE_USELESS_CAST_BEGIN \
_Pragma ("GCC diagnostic push") \
_Pragma ("GCC diagnostic ignored \"-Wuseless-cast\"")
# define YY_IGNORE_USELESS_CAST_END \
_Pragma ("GCC diagnostic pop")
#endif
#ifndef YY_IGNORE_USELESS_CAST_BEGIN
# define YY_IGNORE_USELESS_CAST_BEGIN
# define YY_IGNORE_USELESS_CAST_END
#endif
#define YY_ASSERT(E) ((void) (0 && (E)))
#if ! defined yyoverflow || YYERROR_VERBOSE
/* The parser invokes alloca or malloc; define the necessary symbols. */
# ifdef YYSTACK_USE_ALLOCA
# if YYSTACK_USE_ALLOCA
# ifdef __GNUC__
# define YYSTACK_ALLOC __builtin_alloca
# elif defined __BUILTIN_VA_ARG_INCR
# include <alloca.h> /* INFRINGES ON USER NAME SPACE */
# elif defined _AIX
# define YYSTACK_ALLOC __alloca
# elif defined _MSC_VER
# include <malloc.h> /* INFRINGES ON USER NAME SPACE */
# define alloca _alloca
# else
# define YYSTACK_ALLOC alloca
# if ! defined _ALLOCA_H && ! defined EXIT_SUCCESS
# include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
/* Use EXIT_SUCCESS as a witness for stdlib.h. */
# ifndef EXIT_SUCCESS
# define EXIT_SUCCESS 0
# endif
# endif
# endif
# endif
# endif
# ifdef YYSTACK_ALLOC
/* Pacify GCC's 'empty if-body' warning. */
# define YYSTACK_FREE(Ptr) do { /* empty */; } while (0)
# ifndef YYSTACK_ALLOC_MAXIMUM
/* The OS might guarantee only one guard page at the bottom of the stack,
and a page size can be as small as 4096 bytes. So we cannot safely
invoke alloca (N) if N exceeds 4096. Use a slightly smaller number
to allow for a few compiler-allocated temporary stack slots. */
# define YYSTACK_ALLOC_MAXIMUM 4032 /* reasonable circa 2006 */
# endif
# else
# define YYSTACK_ALLOC YYMALLOC
# define YYSTACK_FREE YYFREE
# ifndef YYSTACK_ALLOC_MAXIMUM
# define YYSTACK_ALLOC_MAXIMUM YYSIZE_MAXIMUM
# endif
# if (defined __cplusplus && ! defined EXIT_SUCCESS \
&& ! ((defined YYMALLOC || defined malloc) \
&& (defined YYFREE || defined free)))
# include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
# ifndef EXIT_SUCCESS
# define EXIT_SUCCESS 0
# endif
# endif
# ifndef YYMALLOC
# define YYMALLOC malloc
# if ! defined malloc && ! defined EXIT_SUCCESS
void *malloc (YYSIZE_T); /* INFRINGES ON USER NAME SPACE */
# endif
# endif
# ifndef YYFREE
# define YYFREE free
# if ! defined free && ! defined EXIT_SUCCESS
void free (void *); /* INFRINGES ON USER NAME SPACE */
# endif
# endif
# endif
#endif /* ! defined yyoverflow || YYERROR_VERBOSE */
#if (! defined yyoverflow \
&& (! defined __cplusplus \
|| (defined YYSTYPE_IS_TRIVIAL && YYSTYPE_IS_TRIVIAL)))
/* A type that is properly aligned for any stack member. */
union yyalloc
{
2020-06-24 08:18:47 -04:00
yy_state_t yyss_alloc;
YYSTYPE yyvs_alloc;
};
/* The size of the maximum gap between one aligned stack and the next. */
2020-06-24 08:18:47 -04:00
# define YYSTACK_GAP_MAXIMUM (YYSIZEOF (union yyalloc) - 1)
/* The size of an array large to enough to hold all stacks, each with
N elements. */
# define YYSTACK_BYTES(N) \
2020-06-24 08:18:47 -04:00
((N) * (YYSIZEOF (yy_state_t) + YYSIZEOF (YYSTYPE)) \
+ YYSTACK_GAP_MAXIMUM)
# define YYCOPY_NEEDED 1
/* Relocate STACK from its old location to the new one. The
local variables YYSIZE and YYSTACKSIZE give the old and new number of
elements in the stack, and YYPTR gives the new location of the
stack. Advance YYPTR to a properly aligned location for the next
stack. */
# define YYSTACK_RELOCATE(Stack_alloc, Stack) \
do \
{ \
2020-06-24 08:18:47 -04:00
YYPTRDIFF_T yynewbytes; \
YYCOPY (&yyptr->Stack_alloc, Stack, yysize); \
Stack = &yyptr->Stack_alloc; \
2020-06-24 08:18:47 -04:00
yynewbytes = yystacksize * YYSIZEOF (*Stack) + YYSTACK_GAP_MAXIMUM; \
yyptr += yynewbytes / YYSIZEOF (*yyptr); \
} \
while (0)
#endif
#if defined YYCOPY_NEEDED && YYCOPY_NEEDED
/* Copy COUNT objects from SRC to DST. The source and destination do
not overlap. */
# ifndef YYCOPY
# if defined __GNUC__ && 1 < __GNUC__
# define YYCOPY(Dst, Src, Count) \
2020-06-24 08:18:47 -04:00
__builtin_memcpy (Dst, Src, YY_CAST (YYSIZE_T, (Count)) * sizeof (*(Src)))
# else
# define YYCOPY(Dst, Src, Count) \
do \
{ \
2020-06-24 08:18:47 -04:00
YYPTRDIFF_T yyi; \
for (yyi = 0; yyi < (Count); yyi++) \
(Dst)[yyi] = (Src)[yyi]; \
} \
while (0)
# endif
# endif
#endif /* !YYCOPY_NEEDED */
/* YYFINAL -- State number of the termination state. */
#define YYFINAL 2
/* YYLAST -- Last index in YYTABLE. */
#define YYLAST 639
/* YYNTOKENS -- Number of terminals. */
#define YYNTOKENS 302
/* YYNNTS -- Number of nonterminals. */
#define YYNNTS 327
/* YYNRULES -- Number of rules. */
#define YYNRULES 630
/* YYNSTATES -- Number of states. */
#define YYNSTATES 936
#define YYUNDEFTOK 2
#define YYMAXUTOK 556
2020-06-24 08:18:47 -04:00
/* YYTRANSLATE(TOKEN-NUM) -- Symbol number corresponding to TOKEN-NUM
as returned by yylex, with out-of-bounds checking. */
#define YYTRANSLATE(YYX) \
2020-06-24 08:18:47 -04:00
(0 <= (YYX) && (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK)
/* YYTRANSLATE[TOKEN-NUM] -- Symbol number corresponding to TOKEN-NUM
as returned by yylex. */
2020-06-24 08:18:47 -04:00
static const yytype_int16 yytranslate[] =
{
0, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 1, 2, 3, 4,
5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
15, 16, 17, 18, 19, 20, 21, 22, 23, 24,
25, 26, 27, 28, 29, 30, 31, 32, 33, 34,
35, 36, 37, 38, 39, 40, 41, 42, 43, 44,
45, 46, 47, 48, 49, 50, 51, 52, 53, 54,
55, 56, 57, 58, 59, 60, 61, 62, 63, 64,
65, 66, 67, 68, 69, 70, 71, 72, 73, 74,
75, 76, 77, 78, 79, 80, 81, 82, 83, 84,
85, 86, 87, 88, 89, 90, 91, 92, 93, 94,
95, 96, 97, 98, 99, 100, 101, 102, 103, 104,
105, 106, 107, 108, 109, 110, 111, 112, 113, 114,
115, 116, 117, 118, 119, 120, 121, 122, 123, 124,
125, 126, 127, 128, 129, 130, 131, 132, 133, 134,
135, 136, 137, 138, 139, 140, 141, 142, 143, 144,
145, 146, 147, 148, 149, 150, 151, 152, 153, 154,
155, 156, 157, 158, 159, 160, 161, 162, 163, 164,
165, 166, 167, 168, 169, 170, 171, 172, 173, 174,
175, 176, 177, 178, 179, 180, 181, 182, 183, 184,
185, 186, 187, 188, 189, 190, 191, 192, 193, 194,
195, 196, 197, 198, 199, 200, 201, 202, 203, 204,
205, 206, 207, 208, 209, 210, 211, 212, 213, 214,
215, 216, 217, 218, 219, 220, 221, 222, 223, 224,
225, 226, 227, 228, 229, 230, 231, 232, 233, 234,
235, 236, 237, 238, 239, 240, 241, 242, 243, 244,
245, 246, 247, 248, 249, 250, 251, 252, 253, 254,
255, 256, 257, 258, 259, 260, 261, 262, 263, 264,
265, 266, 267, 268, 269, 270, 271, 272, 273, 274,
2020-05-07 10:36:26 -04:00
275, 276, 277, 278, 279, 280, 281, 282, 283, 284,
2020-06-24 08:18:47 -04:00
285, 286, 287, 288, 289, 290, 291, 292, 293, 294,
295, 296, 297, 298, 299, 300, 301
};
#if YYDEBUG
/* YYRLINE[YYN] -- Source line where rule number YYN was defined. */
2020-06-24 08:18:47 -04:00
static const yytype_int16 yyrline[] =
{
0, 185, 185, 185, 186, 186, 187, 187, 188, 188,
188, 189, 189, 190, 190, 191, 191, 192, 194, 200,
205, 206, 207, 207, 207, 208, 208, 209, 209, 209,
210, 210, 211, 211, 211, 212, 212, 213, 213, 213,
214, 214, 214, 215, 215, 216, 216, 217, 217, 218,
218, 219, 219, 220, 220, 221, 221, 222, 222, 223,
223, 223, 224, 224, 224, 225, 225, 225, 226, 226,
227, 227, 228, 228, 229, 229, 230, 230, 230, 231,
231, 232, 232, 233, 233, 233, 234, 234, 235, 235,
236, 236, 237, 237, 237, 238, 238, 239, 239, 240,
240, 241, 241, 242, 242, 243, 243, 243, 244, 244,
245, 245, 245, 246, 246, 246, 247, 247, 247, 248,
248, 248, 248, 249, 250, 250, 250, 251, 251, 251,
2020-11-11 05:37:32 -05:00
252, 252, 253, 253, 254, 254, 254, 255, 255, 256,
256, 257, 257, 257, 258, 258, 259, 259, 259, 260,
260, 261, 261, 262, 262, 263, 264, 264, 265, 265,
266, 266, 267, 268, 268, 269, 269, 270, 270, 271,
271, 272, 272, 273, 273, 273, 274, 274, 275, 275,
276, 276, 277, 277, 278, 278, 279, 279, 280, 280,
280, 281, 281, 281, 282, 282, 282, 283, 283, 284,
285, 285, 286, 286, 287, 287, 288, 288, 289, 289,
289, 290, 290, 290, 291, 291, 291, 292, 292, 293,
293, 294, 294, 295, 295, 296, 298, 310, 311, 312,
312, 312, 312, 312, 313, 313, 315, 327, 328, 329,
329, 329, 329, 330, 330, 332, 346, 347, 348, 348,
348, 348, 349, 349, 349, 351, 368, 369, 370, 370,
370, 370, 371, 371, 371, 372, 375, 394, 411, 419,
429, 437, 454, 455, 456, 456, 456, 456, 456, 457,
457, 457, 458, 458, 460, 469, 478, 489, 498, 507,
516, 527, 536, 548, 562, 577, 588, 605, 622, 639,
656, 671, 686, 699, 714, 723, 732, 741, 750, 759,
768, 777, 786, 795, 804, 813, 822, 831, 840, 853,
862, 875, 884, 893, 902, 909, 916, 925, 932, 941,
949, 956, 963, 971, 980, 988, 1004, 1012, 1020, 1028,
1036, 1044, 1053, 1062, 1076, 1085, 1094, 1103, 1112, 1121,
1130, 1137, 1144, 1170, 1178, 1185, 1192, 1199, 1206, 1214,
1222, 1230, 1237, 1248, 1259, 1266, 1275, 1284, 1293, 1300,
1307, 1315, 1323, 1333, 1343, 1353, 1367, 1375, 1388, 1399,
1407, 1420, 1429, 1438, 1447, 1457, 1467, 1475, 1488, 1497,
1505, 1514, 1522, 1535, 1544, 1554, 1561, 1571, 1581, 1591,
1601, 1611, 1621, 1631, 1641, 1648, 1655, 1662, 1671, 1680,
1689, 1698, 1705, 1715, 1735, 1742, 1760, 1773, 1786, 1795,
1804, 1813, 1822, 1832, 1842, 1853, 1862, 1871, 1880, 1889,
1898, 1907, 1920, 1933, 1942, 1949, 1958, 1967, 1976, 1985,
1993, 2006, 2014, 2055, 2062, 2077, 2087, 2097, 2104, 2111,
2118, 2127, 2135, 2149, 2170, 2191, 2203, 2215, 2227, 2236,
2257, 2267, 2276, 2284, 2292, 2305, 2318, 2333, 2348, 2357,
2366, 2372, 2381, 2390, 2400, 2410, 2423, 2436, 2448, 2462,
2474, 2488, 2497, 2508, 2518, 2525, 2532, 2541, 2550, 2560,
2570, 2580, 2587, 2594, 2603, 2612, 2622, 2632, 2639, 2646,
2653, 2661, 2671, 2681, 2691, 2701, 2740, 2750, 2758, 2766,
2781, 2790, 2795, 2796, 2797, 2797, 2797, 2798, 2798, 2798,
2799, 2799, 2801, 2811, 2820, 2827, 2834, 2841, 2848, 2855,
2862, 2867, 2868, 2869, 2869, 2869, 2870, 2870, 2870, 2871,
2872, 2872, 2873, 2873, 2874, 2874, 2875, 2876, 2877, 2878,
2879, 2880, 2882, 2891, 2901, 2908, 2915, 2924, 2931, 2938,
2945, 2952, 2961, 2970, 2977, 2984, 2994, 3004, 3014, 3024,
3034, 3044, 3049, 3050, 3051, 3053, 3059, 3064, 3065, 3066,
3068, 3074, 3084, 3091, 3100, 3108, 3113, 3114, 3116, 3116,
3116, 3117, 3117, 3118, 3119, 3120, 3121, 3122, 3124, 3134,
3143, 3150, 3159, 3166, 3175, 3183, 3196, 3204, 3217, 3222,
3223, 3224, 3224, 3225, 3225, 3225, 3226, 3228, 3240, 3252,
3264, 3279, 3292, 3305, 3316, 3321, 3322, 3323, 3323, 3325,
3340
};
#endif
#if YYDEBUG || YYERROR_VERBOSE || 0
/* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM.
First, the terminals, then, starting at YYNTOKENS, nonterminals. */
static const char *const yytname[] =
{
"$end", "error", "$undefined", "SPACE", "LETTER", "NEWLINE", "COMMENT",
"COLON", "ANY", "ZONESTR", "STRING_ARG", "VAR_FORCE_TOPLEVEL",
"VAR_SERVER", "VAR_VERBOSITY", "VAR_NUM_THREADS", "VAR_PORT",
"VAR_OUTGOING_RANGE", "VAR_INTERFACE", "VAR_PREFER_IP4", "VAR_DO_IP4",
"VAR_DO_IP6", "VAR_PREFER_IP6", "VAR_DO_UDP", "VAR_DO_TCP",
"VAR_TCP_MSS", "VAR_OUTGOING_TCP_MSS", "VAR_TCP_IDLE_TIMEOUT",
"VAR_EDNS_TCP_KEEPALIVE", "VAR_EDNS_TCP_KEEPALIVE_TIMEOUT", "VAR_CHROOT",
"VAR_USERNAME", "VAR_DIRECTORY", "VAR_LOGFILE", "VAR_PIDFILE",
"VAR_MSG_CACHE_SIZE", "VAR_MSG_CACHE_SLABS",
"VAR_NUM_QUERIES_PER_THREAD", "VAR_RRSET_CACHE_SIZE",
"VAR_RRSET_CACHE_SLABS", "VAR_OUTGOING_NUM_TCP", "VAR_INFRA_HOST_TTL",
"VAR_INFRA_LAME_TTL", "VAR_INFRA_CACHE_SLABS",
"VAR_INFRA_CACHE_NUMHOSTS", "VAR_INFRA_CACHE_LAME_SIZE", "VAR_NAME",
"VAR_STUB_ZONE", "VAR_STUB_HOST", "VAR_STUB_ADDR",
"VAR_TARGET_FETCH_POLICY", "VAR_HARDEN_SHORT_BUFSIZE",
"VAR_HARDEN_LARGE_QUERIES", "VAR_FORWARD_ZONE", "VAR_FORWARD_HOST",
"VAR_FORWARD_ADDR", "VAR_DO_NOT_QUERY_ADDRESS", "VAR_HIDE_IDENTITY",
"VAR_HIDE_VERSION", "VAR_IDENTITY", "VAR_VERSION", "VAR_HARDEN_GLUE",
"VAR_MODULE_CONF", "VAR_TRUST_ANCHOR_FILE", "VAR_TRUST_ANCHOR",
"VAR_VAL_OVERRIDE_DATE", "VAR_BOGUS_TTL", "VAR_VAL_CLEAN_ADDITIONAL",
"VAR_VAL_PERMISSIVE_MODE", "VAR_INCOMING_NUM_TCP", "VAR_MSG_BUFFER_SIZE",
"VAR_KEY_CACHE_SIZE", "VAR_KEY_CACHE_SLABS", "VAR_TRUSTED_KEYS_FILE",
"VAR_VAL_NSEC3_KEYSIZE_ITERATIONS", "VAR_USE_SYSLOG",
"VAR_OUTGOING_INTERFACE", "VAR_ROOT_HINTS", "VAR_DO_NOT_QUERY_LOCALHOST",
"VAR_CACHE_MAX_TTL", "VAR_HARDEN_DNSSEC_STRIPPED", "VAR_ACCESS_CONTROL",
"VAR_LOCAL_ZONE", "VAR_LOCAL_DATA", "VAR_INTERFACE_AUTOMATIC",
"VAR_STATISTICS_INTERVAL", "VAR_DO_DAEMONIZE", "VAR_USE_CAPS_FOR_ID",
"VAR_STATISTICS_CUMULATIVE", "VAR_OUTGOING_PORT_PERMIT",
"VAR_OUTGOING_PORT_AVOID", "VAR_DLV_ANCHOR_FILE", "VAR_DLV_ANCHOR",
"VAR_NEG_CACHE_SIZE", "VAR_HARDEN_REFERRAL_PATH", "VAR_PRIVATE_ADDRESS",
"VAR_PRIVATE_DOMAIN", "VAR_REMOTE_CONTROL", "VAR_CONTROL_ENABLE",
"VAR_CONTROL_INTERFACE", "VAR_CONTROL_PORT", "VAR_SERVER_KEY_FILE",
"VAR_SERVER_CERT_FILE", "VAR_CONTROL_KEY_FILE", "VAR_CONTROL_CERT_FILE",
"VAR_CONTROL_USE_CERT", "VAR_EXTENDED_STATISTICS", "VAR_LOCAL_DATA_PTR",
"VAR_JOSTLE_TIMEOUT", "VAR_STUB_PRIME", "VAR_UNWANTED_REPLY_THRESHOLD",
"VAR_LOG_TIME_ASCII", "VAR_DOMAIN_INSECURE", "VAR_PYTHON",
"VAR_PYTHON_SCRIPT", "VAR_VAL_SIG_SKEW_MIN", "VAR_VAL_SIG_SKEW_MAX",
"VAR_CACHE_MIN_TTL", "VAR_VAL_LOG_LEVEL", "VAR_AUTO_TRUST_ANCHOR_FILE",
"VAR_KEEP_MISSING", "VAR_ADD_HOLDDOWN", "VAR_DEL_HOLDDOWN",
"VAR_SO_RCVBUF", "VAR_EDNS_BUFFER_SIZE", "VAR_PREFETCH",
"VAR_PREFETCH_KEY", "VAR_SO_SNDBUF", "VAR_SO_REUSEPORT",
"VAR_HARDEN_BELOW_NXDOMAIN", "VAR_IGNORE_CD_FLAG", "VAR_LOG_QUERIES",
"VAR_LOG_REPLIES", "VAR_LOG_LOCAL_ACTIONS", "VAR_TCP_UPSTREAM",
"VAR_SSL_UPSTREAM", "VAR_SSL_SERVICE_KEY", "VAR_SSL_SERVICE_PEM",
"VAR_SSL_PORT", "VAR_FORWARD_FIRST", "VAR_STUB_SSL_UPSTREAM",
2020-05-07 10:36:26 -04:00
"VAR_FORWARD_SSL_UPSTREAM", "VAR_TLS_CERT_BUNDLE", "VAR_HTTPS_PORT",
"VAR_HTTP_ENDPOINT", "VAR_HTTP_MAX_STREAMS",
"VAR_HTTP_QUERY_BUFFER_SIZE", "VAR_HTTP_RESPONSE_BUFFER_SIZE",
"VAR_HTTP_NODELAY", "VAR_HTTP_NOTLS_DOWNSTREAM", "VAR_STUB_FIRST",
"VAR_MINIMAL_RESPONSES", "VAR_RRSET_ROUNDROBIN", "VAR_MAX_UDP_SIZE",
"VAR_DELAY_CLOSE", "VAR_UNBLOCK_LAN_ZONES", "VAR_INSECURE_LAN_ZONES",
"VAR_INFRA_CACHE_MIN_RTT", "VAR_INFRA_KEEP_PROBING", "VAR_DNS64_PREFIX",
"VAR_DNS64_SYNTHALL", "VAR_DNS64_IGNORE_AAAA", "VAR_DNSTAP",
"VAR_DNSTAP_ENABLE", "VAR_DNSTAP_SOCKET_PATH", "VAR_DNSTAP_IP",
"VAR_DNSTAP_TLS", "VAR_DNSTAP_TLS_SERVER_NAME",
"VAR_DNSTAP_TLS_CERT_BUNDLE", "VAR_DNSTAP_TLS_CLIENT_KEY_FILE",
"VAR_DNSTAP_TLS_CLIENT_CERT_FILE", "VAR_DNSTAP_SEND_IDENTITY",
"VAR_DNSTAP_SEND_VERSION", "VAR_DNSTAP_BIDIRECTIONAL",
"VAR_DNSTAP_IDENTITY", "VAR_DNSTAP_VERSION",
"VAR_DNSTAP_LOG_RESOLVER_QUERY_MESSAGES",
"VAR_DNSTAP_LOG_RESOLVER_RESPONSE_MESSAGES",
"VAR_DNSTAP_LOG_CLIENT_QUERY_MESSAGES",
"VAR_DNSTAP_LOG_CLIENT_RESPONSE_MESSAGES",
"VAR_DNSTAP_LOG_FORWARDER_QUERY_MESSAGES",
"VAR_DNSTAP_LOG_FORWARDER_RESPONSE_MESSAGES", "VAR_RESPONSE_IP_TAG",
"VAR_RESPONSE_IP", "VAR_RESPONSE_IP_DATA", "VAR_HARDEN_ALGO_DOWNGRADE",
"VAR_IP_TRANSPARENT", "VAR_IP_DSCP", "VAR_DISABLE_DNSSEC_LAME_CHECK",
"VAR_IP_RATELIMIT", "VAR_IP_RATELIMIT_SLABS", "VAR_IP_RATELIMIT_SIZE",
"VAR_RATELIMIT", "VAR_RATELIMIT_SLABS", "VAR_RATELIMIT_SIZE",
"VAR_RATELIMIT_FOR_DOMAIN", "VAR_RATELIMIT_BELOW_DOMAIN",
"VAR_IP_RATELIMIT_FACTOR", "VAR_RATELIMIT_FACTOR",
"VAR_SEND_CLIENT_SUBNET", "VAR_CLIENT_SUBNET_ZONE",
"VAR_CLIENT_SUBNET_ALWAYS_FORWARD", "VAR_CLIENT_SUBNET_OPCODE",
"VAR_MAX_CLIENT_SUBNET_IPV4", "VAR_MAX_CLIENT_SUBNET_IPV6",
"VAR_MIN_CLIENT_SUBNET_IPV4", "VAR_MIN_CLIENT_SUBNET_IPV6",
"VAR_MAX_ECS_TREE_SIZE_IPV4", "VAR_MAX_ECS_TREE_SIZE_IPV6",
"VAR_CAPS_WHITELIST", "VAR_CACHE_MAX_NEGATIVE_TTL",
"VAR_PERMIT_SMALL_HOLDDOWN", "VAR_QNAME_MINIMISATION",
"VAR_QNAME_MINIMISATION_STRICT", "VAR_IP_FREEBIND", "VAR_DEFINE_TAG",
"VAR_LOCAL_ZONE_TAG", "VAR_ACCESS_CONTROL_TAG",
"VAR_LOCAL_ZONE_OVERRIDE", "VAR_ACCESS_CONTROL_TAG_ACTION",
"VAR_ACCESS_CONTROL_TAG_DATA", "VAR_VIEW", "VAR_ACCESS_CONTROL_VIEW",
"VAR_VIEW_FIRST", "VAR_SERVE_EXPIRED", "VAR_SERVE_EXPIRED_TTL",
"VAR_SERVE_EXPIRED_TTL_RESET", "VAR_SERVE_EXPIRED_REPLY_TTL",
"VAR_SERVE_EXPIRED_CLIENT_TIMEOUT", "VAR_FAKE_DSA", "VAR_FAKE_SHA1",
"VAR_LOG_IDENTITY", "VAR_HIDE_TRUSTANCHOR", "VAR_TRUST_ANCHOR_SIGNALING",
"VAR_AGGRESSIVE_NSEC", "VAR_USE_SYSTEMD", "VAR_SHM_ENABLE",
"VAR_SHM_KEY", "VAR_ROOT_KEY_SENTINEL", "VAR_DNSCRYPT",
"VAR_DNSCRYPT_ENABLE", "VAR_DNSCRYPT_PORT", "VAR_DNSCRYPT_PROVIDER",
"VAR_DNSCRYPT_SECRET_KEY", "VAR_DNSCRYPT_PROVIDER_CERT",
"VAR_DNSCRYPT_PROVIDER_CERT_ROTATED",
"VAR_DNSCRYPT_SHARED_SECRET_CACHE_SIZE",
"VAR_DNSCRYPT_SHARED_SECRET_CACHE_SLABS",
"VAR_DNSCRYPT_NONCE_CACHE_SIZE", "VAR_DNSCRYPT_NONCE_CACHE_SLABS",
"VAR_IPSECMOD_ENABLED", "VAR_IPSECMOD_HOOK", "VAR_IPSECMOD_IGNORE_BOGUS",
"VAR_IPSECMOD_MAX_TTL", "VAR_IPSECMOD_WHITELIST", "VAR_IPSECMOD_STRICT",
"VAR_CACHEDB", "VAR_CACHEDB_BACKEND", "VAR_CACHEDB_SECRETSEED",
"VAR_CACHEDB_REDISHOST", "VAR_CACHEDB_REDISPORT",
"VAR_CACHEDB_REDISTIMEOUT", "VAR_CACHEDB_REDISEXPIRERECORDS",
"VAR_UDP_UPSTREAM_WITHOUT_DOWNSTREAM", "VAR_FOR_UPSTREAM",
"VAR_AUTH_ZONE", "VAR_ZONEFILE", "VAR_MASTER", "VAR_URL",
"VAR_FOR_DOWNSTREAM", "VAR_FALLBACK_ENABLED", "VAR_TLS_ADDITIONAL_PORT",
"VAR_LOW_RTT", "VAR_LOW_RTT_PERMIL", "VAR_FAST_SERVER_PERMIL",
"VAR_FAST_SERVER_NUM", "VAR_ALLOW_NOTIFY", "VAR_TLS_WIN_CERT",
"VAR_TCP_CONNECTION_LIMIT", "VAR_FORWARD_NO_CACHE", "VAR_STUB_NO_CACHE",
"VAR_LOG_SERVFAIL", "VAR_DENY_ANY", "VAR_UNKNOWN_SERVER_TIME_LIMIT",
"VAR_LOG_TAG_QUERYREPLY", "VAR_STREAM_WAIT_SIZE", "VAR_TLS_CIPHERS",
"VAR_TLS_CIPHERSUITES", "VAR_TLS_USE_SNI", "VAR_IPSET",
"VAR_IPSET_NAME_V4", "VAR_IPSET_NAME_V6", "VAR_TLS_SESSION_TICKET_KEYS",
"VAR_RPZ", "VAR_TAGS", "VAR_RPZ_ACTION_OVERRIDE",
"VAR_RPZ_CNAME_OVERRIDE", "VAR_RPZ_LOG", "VAR_RPZ_LOG_NAME",
"VAR_DYNLIB", "VAR_DYNLIB_FILE", "VAR_EDNS_CLIENT_STRING",
"VAR_EDNS_CLIENT_STRING_OPCODE", "$accept", "toplevelvars",
"toplevelvar", "force_toplevel", "serverstart", "contents_server",
"content_server", "stubstart", "contents_stub", "content_stub",
"forwardstart", "contents_forward", "content_forward", "viewstart",
"contents_view", "content_view", "authstart", "contents_auth",
"content_auth", "rpz_tag", "rpz_action_override", "rpz_cname_override",
"rpz_log", "rpz_log_name", "rpzstart", "contents_rpz", "content_rpz",
"server_num_threads", "server_verbosity", "server_statistics_interval",
2020-09-23 06:09:48 -04:00
"server_statistics_cumulative", "server_extended_statistics",
"server_shm_enable", "server_shm_key", "server_port",
"server_send_client_subnet", "server_client_subnet_zone",
"server_client_subnet_always_forward", "server_client_subnet_opcode",
"server_max_client_subnet_ipv4", "server_max_client_subnet_ipv6",
"server_min_client_subnet_ipv4", "server_min_client_subnet_ipv6",
"server_max_ecs_tree_size_ipv4", "server_max_ecs_tree_size_ipv6",
"server_interface", "server_outgoing_interface", "server_outgoing_range",
"server_outgoing_port_permit", "server_outgoing_port_avoid",
"server_outgoing_num_tcp", "server_incoming_num_tcp",
"server_interface_automatic", "server_do_ip4", "server_do_ip6",
"server_do_udp", "server_do_tcp", "server_prefer_ip4",
"server_prefer_ip6", "server_tcp_mss", "server_outgoing_tcp_mss",
"server_tcp_idle_timeout", "server_tcp_keepalive",
"server_tcp_keepalive_timeout", "server_tcp_upstream",
"server_udp_upstream_without_downstream", "server_ssl_upstream",
"server_ssl_service_key", "server_ssl_service_pem", "server_ssl_port",
"server_tls_cert_bundle", "server_tls_win_cert",
"server_tls_additional_port", "server_tls_ciphers",
"server_tls_ciphersuites", "server_tls_session_ticket_keys",
"server_tls_use_sni", "server_https_port", "server_http_endpoint",
"server_http_max_streams", "server_http_query_buffer_size",
"server_http_response_buffer_size", "server_http_nodelay",
"server_http_notls_downstream", "server_use_systemd",
"server_do_daemonize", "server_use_syslog", "server_log_time_ascii",
"server_log_queries", "server_log_replies", "server_log_tag_queryreply",
"server_log_servfail", "server_log_local_actions", "server_chroot",
"server_username", "server_directory", "server_logfile",
"server_pidfile", "server_root_hints", "server_dlv_anchor_file",
"server_dlv_anchor", "server_auto_trust_anchor_file",
"server_trust_anchor_file", "server_trusted_keys_file",
"server_trust_anchor", "server_trust_anchor_signaling",
"server_root_key_sentinel", "server_domain_insecure",
"server_hide_identity", "server_hide_version", "server_hide_trustanchor",
"server_identity", "server_version", "server_so_rcvbuf",
"server_so_sndbuf", "server_so_reuseport", "server_ip_transparent",
"server_ip_freebind", "server_ip_dscp", "server_stream_wait_size",
"server_edns_buffer_size", "server_msg_buffer_size",
"server_msg_cache_size", "server_msg_cache_slabs",
"server_num_queries_per_thread", "server_jostle_timeout",
"server_delay_close", "server_unblock_lan_zones",
"server_insecure_lan_zones", "server_rrset_cache_size",
"server_rrset_cache_slabs", "server_infra_host_ttl",
"server_infra_lame_ttl", "server_infra_cache_numhosts",
"server_infra_cache_lame_size", "server_infra_cache_slabs",
"server_infra_cache_min_rtt", "server_infra_keep_probing",
"server_target_fetch_policy", "server_harden_short_bufsize",
"server_harden_large_queries", "server_harden_glue",
"server_harden_dnssec_stripped", "server_harden_below_nxdomain",
"server_harden_referral_path", "server_harden_algo_downgrade",
"server_use_caps_for_id", "server_caps_whitelist",
"server_private_address", "server_private_domain", "server_prefetch",
"server_prefetch_key", "server_deny_any",
"server_unwanted_reply_threshold", "server_do_not_query_address",
"server_do_not_query_localhost", "server_access_control",
"server_module_conf", "server_val_override_date",
"server_val_sig_skew_min", "server_val_sig_skew_max",
"server_cache_max_ttl", "server_cache_max_negative_ttl",
"server_cache_min_ttl", "server_bogus_ttl",
"server_val_clean_additional", "server_val_permissive_mode",
"server_aggressive_nsec", "server_ignore_cd_flag",
"server_serve_expired", "server_serve_expired_ttl",
"server_serve_expired_ttl_reset", "server_serve_expired_reply_ttl",
"server_serve_expired_client_timeout", "server_fake_dsa",
"server_fake_sha1", "server_val_log_level",
"server_val_nsec3_keysize_iterations", "server_add_holddown",
"server_del_holddown", "server_keep_missing",
"server_permit_small_holddown", "server_key_cache_size",
"server_key_cache_slabs", "server_neg_cache_size", "server_local_zone",
"server_local_data", "server_local_data_ptr", "server_minimal_responses",
"server_rrset_roundrobin", "server_unknown_server_time_limit",
"server_max_udp_size", "server_dns64_prefix", "server_dns64_synthall",
"server_dns64_ignore_aaaa", "server_define_tag", "server_local_zone_tag",
"server_access_control_tag", "server_access_control_tag_action",
"server_access_control_tag_data", "server_local_zone_override",
"server_access_control_view", "server_response_ip_tag",
"server_ip_ratelimit", "server_ratelimit", "server_ip_ratelimit_size",
"server_ratelimit_size", "server_ip_ratelimit_slabs",
"server_ratelimit_slabs", "server_ratelimit_for_domain",
"server_ratelimit_below_domain", "server_ip_ratelimit_factor",
"server_ratelimit_factor", "server_low_rtt", "server_fast_server_num",
"server_fast_server_permil", "server_qname_minimisation",
"server_qname_minimisation_strict", "server_ipsecmod_enabled",
"server_ipsecmod_ignore_bogus", "server_ipsecmod_hook",
"server_ipsecmod_max_ttl", "server_ipsecmod_whitelist",
"server_ipsecmod_strict", "server_edns_client_string",
"server_edns_client_string_opcode", "stub_name", "stub_host",
"stub_addr", "stub_first", "stub_no_cache", "stub_ssl_upstream",
"stub_prime", "forward_name", "forward_host", "forward_addr",
"forward_first", "forward_no_cache", "forward_ssl_upstream", "auth_name",
"auth_zonefile", "auth_master", "auth_url", "auth_allow_notify",
"auth_for_downstream", "auth_for_upstream", "auth_fallback_enabled",
"view_name", "view_local_zone", "view_response_ip",
"view_response_ip_data", "view_local_data", "view_local_data_ptr",
"view_first", "rcstart", "contents_rc", "content_rc",
"rc_control_enable", "rc_control_port", "rc_control_interface",
"rc_control_use_cert", "rc_server_key_file", "rc_server_cert_file",
"rc_control_key_file", "rc_control_cert_file", "dtstart", "contents_dt",
"content_dt", "dt_dnstap_enable", "dt_dnstap_bidirectional",
"dt_dnstap_socket_path", "dt_dnstap_ip", "dt_dnstap_tls",
"dt_dnstap_tls_server_name", "dt_dnstap_tls_cert_bundle",
"dt_dnstap_tls_client_key_file", "dt_dnstap_tls_client_cert_file",
"dt_dnstap_send_identity", "dt_dnstap_send_version",
"dt_dnstap_identity", "dt_dnstap_version",
"dt_dnstap_log_resolver_query_messages",
"dt_dnstap_log_resolver_response_messages",
"dt_dnstap_log_client_query_messages",
"dt_dnstap_log_client_response_messages",
"dt_dnstap_log_forwarder_query_messages",
"dt_dnstap_log_forwarder_response_messages", "pythonstart",
"contents_py", "content_py", "py_script", "dynlibstart", "contents_dl",
"content_dl", "dl_file", "server_disable_dnssec_lame_check",
"server_log_identity", "server_response_ip", "server_response_ip_data",
"dnscstart", "contents_dnsc", "content_dnsc", "dnsc_dnscrypt_enable",
"dnsc_dnscrypt_port", "dnsc_dnscrypt_provider",
"dnsc_dnscrypt_provider_cert", "dnsc_dnscrypt_provider_cert_rotated",
"dnsc_dnscrypt_secret_key", "dnsc_dnscrypt_shared_secret_cache_size",
"dnsc_dnscrypt_shared_secret_cache_slabs",
"dnsc_dnscrypt_nonce_cache_size", "dnsc_dnscrypt_nonce_cache_slabs",
"cachedbstart", "contents_cachedb", "content_cachedb",
"cachedb_backend_name", "cachedb_secret_seed", "redis_server_host",
"redis_server_port", "redis_timeout", "redis_expire_records",
"server_tcp_connection_limit", "ipsetstart", "contents_ipset",
"content_ipset", "ipset_name_v4", "ipset_name_v6", YY_NULLPTR
};
#endif
# ifdef YYPRINT
/* YYTOKNUM[NUM] -- (External) token number corresponding to the
(internal) symbol number NUM (which must be that of a token). */
2020-06-24 08:18:47 -04:00
static const yytype_int16 yytoknum[] =
{
0, 256, 257, 258, 259, 260, 261, 262, 263, 264,
265, 266, 267, 268, 269, 270, 271, 272, 273, 274,
275, 276, 277, 278, 279, 280, 281, 282, 283, 284,
285, 286, 287, 288, 289, 290, 291, 292, 293, 294,
295, 296, 297, 298, 299, 300, 301, 302, 303, 304,
305, 306, 307, 308, 309, 310, 311, 312, 313, 314,
315, 316, 317, 318, 319, 320, 321, 322, 323, 324,
325, 326, 327, 328, 329, 330, 331, 332, 333, 334,
335, 336, 337, 338, 339, 340, 341, 342, 343, 344,
345, 346, 347, 348, 349, 350, 351, 352, 353, 354,
355, 356, 357, 358, 359, 360, 361, 362, 363, 364,
365, 366, 367, 368, 369, 370, 371, 372, 373, 374,
375, 376, 377, 378, 379, 380, 381, 382, 383, 384,
385, 386, 387, 388, 389, 390, 391, 392, 393, 394,
395, 396, 397, 398, 399, 400, 401, 402, 403, 404,
405, 406, 407, 408, 409, 410, 411, 412, 413, 414,
415, 416, 417, 418, 419, 420, 421, 422, 423, 424,
425, 426, 427, 428, 429, 430, 431, 432, 433, 434,
435, 436, 437, 438, 439, 440, 441, 442, 443, 444,
445, 446, 447, 448, 449, 450, 451, 452, 453, 454,
455, 456, 457, 458, 459, 460, 461, 462, 463, 464,
465, 466, 467, 468, 469, 470, 471, 472, 473, 474,
475, 476, 477, 478, 479, 480, 481, 482, 483, 484,
485, 486, 487, 488, 489, 490, 491, 492, 493, 494,
495, 496, 497, 498, 499, 500, 501, 502, 503, 504,
505, 506, 507, 508, 509, 510, 511, 512, 513, 514,
515, 516, 517, 518, 519, 520, 521, 522, 523, 524,
525, 526, 527, 528, 529, 530, 531, 532, 533, 534,
535, 536, 537, 538, 539, 540, 541, 542, 543, 544,
545, 546, 547, 548, 549, 550, 551, 552, 553, 554,
555, 556
};
# endif
2020-11-11 05:37:32 -05:00
#define YYPACT_NINF (-290)
2020-06-24 08:18:47 -04:00
#define yypact_value_is_default(Yyn) \
((Yyn) == YYPACT_NINF)
2020-06-24 08:18:47 -04:00
#define YYTABLE_NINF (-1)
2020-06-24 08:18:47 -04:00
#define yytable_value_is_error(Yyn) \
0
/* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing
STATE-NUM. */
static const yytype_int16 yypact[] =
{
-290, 0, -290, -290, -290, -290, -290, -290, -290, -290,
-290, -290, -290, -290, -290, -290, -290, -290, -290, -290,
-290, -290, -290, -290, -290, -290, -290, -290, -290, -290,
-290, -290, 286, -42, -38, -43, -21, -44, -11, -95,
-109, -289, -214, -239, -281, 3, 4, 13, 25, 26,
27, 30, 31, 32, 33, 34, 35, 37, 38, 39,
40, 41, 43, 44, 45, 46, 47, 48, 49, 50,
2020-09-16 12:38:51 -04:00
51, 52, 54, 55, 84, 85, 88, 89, 91, 93,
94, 95, 96, 98, 99, 100, 101, 103, 104, 105,
106, 107, 108, 109, 110, 111, 112, 113, 114, 115,
2020-06-24 08:18:47 -04:00
116, 117, 118, 119, 120, 121, 122, 123, 124, 125,
126, 127, 128, 131, 132, 133, 134, 135, 136, 137,
2020-06-24 08:18:47 -04:00
138, 139, 140, 141, 142, 143, 144, 145, 146, 147,
148, 149, 150, 152, 153, 154, 155, 156, 157, 158,
159, 160, 161, 162, 163, 164, 165, 166, 167, 168,
170, 171, 172, 173, 174, 175, 176, 177, 178, 179,
180, 181, 182, 183, 184, 185, 186, 187, 188, 189,
190, 191, 192, 193, 194, 195, 196, 197, 198, 199,
200, 201, 202, 203, 204, 205, 206, 207, 208, 209,
214, 215, 216, 217, 218, 219, 220, 222, 223, 224,
225, 226, 229, 231, 233, 246, 247, 248, 249, 250,
251, 252, 253, 255, 256, 257, 258, 259, 260, 261,
2020-06-24 08:18:47 -04:00
262, 263, 264, 265, 266, 267, 268, 269, 270, 271,
272, 273, 274, 275, 276, 277, 279, 280, 281, 283,
284, 285, 287, 321, 322, 323, 324, 328, 329, -290,
-290, -290, -290, -290, -290, -290, -290, -290, -290, -290,
-290, -290, -290, -290, -290, -290, -290, -290, -290, -290,
-290, -290, -290, -290, -290, -290, -290, -290, -290, -290,
-290, -290, -290, -290, -290, -290, -290, -290, -290, -290,
-290, -290, -290, -290, -290, -290, -290, -290, -290, -290,
-290, -290, -290, -290, -290, -290, -290, -290, -290, -290,
-290, -290, -290, -290, -290, -290, -290, -290, -290, -290,
-290, -290, -290, -290, -290, -290, -290, -290, -290, -290,
-290, -290, -290, -290, -290, -290, -290, -290, -290, -290,
-290, -290, -290, -290, -290, -290, -290, -290, -290, -290,
-290, -290, -290, -290, -290, -290, -290, -290, -290, -290,
-290, -290, -290, -290, -290, -290, -290, -290, -290, -290,
-290, -290, -290, -290, -290, -290, -290, -290, -290, -290,
-290, -290, -290, -290, -290, -290, -290, -290, -290, -290,
-290, -290, -290, -290, -290, -290, -290, -290, -290, -290,
-290, -290, -290, -290, -290, -290, -290, -290, -290, -290,
-290, -290, -290, -290, -290, -290, -290, -290, -290, -290,
-290, -290, -290, -290, -290, -290, -290, -290, -290, -290,
-290, -290, -290, -290, -290, -290, -290, -290, -290, -290,
-290, -290, -290, -290, -290, -290, -290, -290, -290, -290,
-290, -290, -290, -290, 330, 372, 373, 374, 375, 376,
377, -290, -290, -290, -290, -290, -290, -290, -290, 378,
379, 380, 384, 388, 389, -290, -290, -290, -290, -290,
-290, -290, 414, 415, 416, 425, 437, 438, 439, -290,
-290, -290, -290, -290, -290, -290, -290, 440, 441, 442,
443, 444, 445, 446, 447, -290, -290, -290, -290, -290,
-290, -290, -290, -290, 448, 449, 450, 451, 452, -290,
-290, -290, -290, -290, -290, -290, -290, -290, -290, -290,
453, 454, 455, 456, 496, 498, 514, 515, -290, -290,
-290, -290, -290, -290, -290, -290, -290, 516, 517, 518,
519, 520, 521, 522, 523, 524, 531, 532, 533, 534,
535, 536, 537, 539, 540, 541, -290, -290, -290, -290,
-290, -290, -290, -290, -290, -290, -290, -290, -290, -290,
-290, -290, -290, -290, -290, -290, 542, -290, -290, 543,
-290, -290, 544, 545, 548, 551, 554, 555, 564, 565,
566, 568, -290, -290, -290, -290, -290, -290, -290, -290,
-290, -290, -290, 569, 570, 571, 572, 573, 574, -290,
-290, -290, -290, -290, -290, -290, 575, 578, -290, -290,
-290, -290, -290, -290, -290, -290, -290, -290, -290, -290,
-290, -290, -290, -290, -290, -290, -290, -290, -290, -290,
-290, -290, -290, -290, -290, -290, -290, -290, -290, -290,
-290, -290, -290, -290, -290, -290, -290, -290, -290, -290,
-290, -290, -290, -290, -290, -290, -290, -290, -290, -290,
-290, -290, -290, -290, -290, -290, -290, -290, -290, -290,
-290, 579, 580, -290, -290, -290, -290, -290, -290, -290,
-290, -290, -290, -290, -290, -290, -290, -290, -290, -290,
-290, -290, -290, -290, -290, -290, -290, -290, -290, -290,
-290, -290, -290, -290, -290, -290, -290, -290, -290, -290,
-290, -290, -290, -290, -290, -290, -290, -290, -290, -290,
-290, -290, -290, -290, -290, -290, -290, -290, -290, -290,
-290, -290, -290, -290, -290, -290, 581, 582, 583, -290,
-290, -290, -290, -290, -290, -290, -290, -290, -290, 584,
585, -290, -290, -290, -290, -290, -290, -290, -290, -290,
-290, -290, -290, -290, -290, -290, -290, -290, -290, -290,
586, 587, 588, 589, 590, 591, -290, -290, -290, -290,
-290, -290, -290, -290, -290, -290, -290, -290, -290, -290,
-290, -290, -290, -290, -290, -290, -290, -290, -290, -290,
-290, -290, -290, 592, -290, -290, -290, -290, -290, -290,
-290, -290, -290, 593, -290, -290, -290, -290, -290, -290,
-290, -290, -290, -290, -290, -290, -290, -290, -290, 594,
-290, -290, 595, 596, -290, -290, -290, -290, -290, -290,
-290, -290, -290, -290, -290, -290, -290, -290, -290, -290,
-290, -290, -290, -290, -290, -290, -290, -290, -290, -290,
-290, -290, -290, -290, -290, -290, -290, -290, -290, -290,
-290, -290, -290, -290, -290, -290, -290, -290, -290, -290,
-290, -290, -290, -290, -290, -290, -290, -290, -290, -290,
-290, -290, -290, -290, -290, -290, -290, -290, -290, -290,
-290, -290, -290, -290, 597, 598, 599, -290, -290, -290,
-290, -290, -290, -290, -290, -290
};
/* YYDEFACT[STATE-NUM] -- Default reduction number in state STATE-NUM.
Performed when YYTABLE does not specify something else to do. Zero
means the default is an error. */
2020-06-24 08:18:47 -04:00
static const yytype_int16 yydefact[] =
{
2, 0, 1, 18, 19, 226, 236, 511, 571, 530,
245, 585, 608, 255, 624, 271, 576, 3, 17, 21,
228, 238, 247, 257, 273, 513, 532, 573, 578, 587,
610, 626, 4, 5, 6, 10, 14, 15, 8, 9,
7, 16, 11, 12, 13, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
2019-06-03 09:46:39 -04:00
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 20,
22, 23, 86, 89, 98, 194, 195, 24, 159, 160,
161, 162, 163, 164, 165, 166, 167, 168, 37, 77,
25, 90, 91, 48, 70, 85, 26, 27, 30, 31,
28, 29, 32, 33, 34, 35, 36, 121, 206, 122,
124, 125, 126, 208, 213, 209, 220, 221, 222, 223,
127, 128, 129, 130, 131, 132, 133, 190, 87, 76,
102, 119, 120, 218, 215, 123, 38, 39, 40, 41,
42, 78, 92, 93, 108, 64, 74, 65, 198, 199,
103, 58, 59, 197, 60, 61, 112, 116, 137, 146,
173, 149, 219, 113, 71, 43, 44, 45, 100, 138,
139, 140, 46, 47, 49, 50, 52, 53, 51, 144,
150, 54, 55, 56, 62, 81, 117, 95, 145, 88,
169, 96, 97, 114, 115, 216, 101, 57, 79, 82,
63, 66, 104, 105, 80, 170, 106, 67, 68, 69,
207, 118, 183, 184, 185, 186, 187, 188, 196, 107,
75, 109, 110, 111, 171, 72, 73, 94, 83, 84,
99, 134, 135, 217, 136, 141, 142, 143, 174, 175,
177, 179, 180, 178, 181, 191, 147, 148, 153, 154,
151, 152, 155, 156, 158, 157, 210, 212, 211, 172,
182, 200, 202, 201, 203, 204, 205, 224, 225, 176,
189, 192, 193, 214, 0, 0, 0, 0, 0, 0,
0, 227, 229, 230, 231, 233, 234, 235, 232, 0,
0, 0, 0, 0, 0, 237, 239, 240, 241, 242,
243, 244, 0, 0, 0, 0, 0, 0, 0, 246,
248, 249, 252, 253, 250, 254, 251, 0, 0, 0,
0, 0, 0, 0, 0, 256, 258, 259, 260, 261,
265, 262, 263, 264, 0, 0, 0, 0, 0, 276,
280, 281, 282, 283, 272, 274, 275, 277, 278, 279,
0, 0, 0, 0, 0, 0, 0, 0, 512, 514,
516, 515, 521, 517, 518, 519, 520, 0, 0, 0,
2020-05-07 10:36:26 -04:00
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 531, 533, 535, 534,
2020-09-16 12:38:51 -04:00
536, 537, 538, 539, 540, 541, 542, 543, 544, 545,
546, 547, 548, 549, 550, 551, 0, 572, 574, 0,
577, 579, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 586, 588, 589, 590, 592, 593, 591, 594,
595, 596, 597, 0, 0, 0, 0, 0, 0, 609,
611, 612, 613, 614, 615, 616, 0, 0, 625, 627,
628, 285, 284, 291, 304, 302, 314, 310, 311, 315,
312, 313, 316, 317, 318, 319, 320, 350, 351, 352,
353, 354, 379, 380, 381, 386, 387, 307, 388, 389,
392, 390, 391, 395, 396, 397, 411, 365, 366, 368,
369, 398, 414, 359, 361, 415, 421, 422, 423, 308,
378, 439, 440, 360, 434, 343, 303, 355, 412, 418,
399, 0, 0, 443, 309, 286, 342, 403, 287, 305,
306, 356, 357, 441, 401, 405, 406, 288, 444, 382,
410, 344, 364, 416, 417, 420, 433, 358, 437, 435,
436, 370, 377, 407, 408, 371, 372, 400, 425, 345,
346, 349, 321, 323, 324, 325, 326, 327, 334, 335,
336, 337, 338, 339, 340, 445, 446, 448, 383, 384,
385, 393, 394, 449, 450, 451, 0, 0, 0, 402,
373, 375, 581, 460, 464, 462, 461, 465, 463, 0,
0, 468, 469, 292, 293, 294, 295, 296, 297, 298,
299, 300, 301, 404, 419, 438, 473, 474, 374, 452,
0, 0, 0, 0, 0, 0, 426, 427, 428, 429,
430, 431, 432, 582, 367, 362, 424, 341, 289, 290,
363, 475, 477, 476, 478, 479, 480, 322, 329, 470,
472, 471, 328, 0, 348, 409, 447, 347, 376, 330,
331, 333, 332, 0, 482, 483, 484, 485, 489, 488,
486, 487, 490, 491, 492, 493, 495, 494, 504, 0,
508, 509, 0, 0, 510, 496, 502, 497, 498, 499,
501, 503, 500, 266, 267, 268, 269, 270, 522, 524,
523, 526, 527, 528, 529, 525, 552, 554, 555, 556,
557, 558, 559, 560, 561, 562, 553, 563, 564, 565,
566, 567, 568, 569, 570, 575, 580, 598, 599, 600,
603, 601, 602, 604, 605, 606, 607, 617, 618, 619,
620, 621, 622, 629, 630, 413, 442, 459, 583, 584,
466, 467, 453, 454, 0, 0, 0, 458, 623, 481,
505, 506, 507, 457, 455, 456
};
/* YYPGOTO[NTERM-NUM]. */
static const yytype_int16 yypgoto[] =
{
-290, -290, -290, -290, -290, -290, -290, -290, -290, -290,
-290, -290, -290, -290, -290, -290, -290, -290, -290, -290,
-290, -290, -290, -290, -290, -290, -290, -290, -290, -290,
-290, -290, -290, -290, -290, -290, -290, -290, -290, -290,
-290, -290, -290, -290, -290, -290, -290, -290, -290, -290,
-290, -290, -290, -290, -290, -290, -290, -290, -290, -290,
-290, -290, -290, -290, -290, -290, -290, -290, -290, -290,
-290, -290, -290, -290, -290, -290, -290, -290, -290, -290,
-290, -290, -290, -290, -290, -290, -290, -290, -290, -290,
-290, -290, -290, -290, -290, -290, -290, -290, -290, -290,
-290, -290, -290, -290, -290, -290, -290, -290, -290, -290,
-290, -290, -290, -290, -290, -290, -290, -290, -290, -290,
-290, -290, -290, -290, -290, -290, -290, -290, -290, -290,
-290, -290, -290, -290, -290, -290, -290, -290, -290, -290,
-290, -290, -290, -290, -290, -290, -290, -290, -290, -290,
-290, -290, -290, -290, -290, -290, -290, -290, -290, -290,
-290, -290, -290, -290, -290, -290, -290, -290, -290, -290,
-290, -290, -290, -290, -290, -290, -290, -290, -290, -290,
-290, -290, -290, -290, -290, -290, -290, -290, -290, -290,
-290, -290, -290, -290, -290, -290, -290, -290, -290, -290,
-290, -290, -290, -290, -290, -290, -290, -290, -290, -290,
-290, -290, -290, -290, -290, -290, -290, -290, -290, -290,
-290, -290, -290, -290, -290, -290, -290, -290, -290, -290,
-290, -290, -290, -290, -290, -290, -290, -290, -290, 576,
577, 600, 601, 602, -290, -290, -290, -290, -290, -290,
-290, -290, -290, -290, -290, -290, -290, -290, -290, -290,
-290, -290, -290, -290, -290, -290, -290, -290, -290, -290,
-290, -290, -290, -290, -290, -290, -290, -290, -290, -290,
-290, -290, -290, -290, -290, -290, -290, -290, -290, -290,
-290, -290, -290, -290, -290, -290, -290, -290, -290, -290,
-290, -290, -290, -290, -290, -290, -290, -290, -290, -290,
-290, -290, -290, -290, -290, -290, -290, -290, -290, -290,
-290, -290, -290, -290, -290, -290, -290
};
/* YYDEFGOTO[NTERM-NUM]. */
static const yytype_int16 yydefgoto[] =
{
-1, 1, 17, 18, 19, 32, 249, 20, 33, 461,
21, 34, 475, 22, 35, 489, 23, 36, 505, 519,
520, 521, 522, 523, 24, 37, 524, 250, 251, 252,
253, 254, 255, 256, 257, 258, 259, 260, 261, 262,
263, 264, 265, 266, 267, 268, 269, 270, 271, 272,
273, 274, 275, 276, 277, 278, 279, 280, 281, 282,
283, 284, 285, 286, 287, 288, 289, 290, 291, 292,
293, 294, 295, 296, 297, 298, 299, 300, 301, 302,
303, 304, 305, 306, 307, 308, 309, 310, 311, 312,
313, 314, 315, 316, 317, 318, 319, 320, 321, 322,
323, 324, 325, 326, 327, 328, 329, 330, 331, 332,
333, 334, 335, 336, 337, 338, 339, 340, 341, 342,
343, 344, 345, 346, 347, 348, 349, 350, 351, 352,
353, 354, 355, 356, 357, 358, 359, 360, 361, 362,
363, 364, 365, 366, 367, 368, 369, 370, 371, 372,
373, 374, 375, 376, 377, 378, 379, 380, 381, 382,
383, 384, 385, 386, 387, 388, 389, 390, 391, 392,
393, 394, 395, 396, 397, 398, 399, 400, 401, 402,
403, 404, 405, 406, 407, 408, 409, 410, 411, 412,
413, 414, 415, 416, 417, 418, 419, 420, 421, 422,
423, 424, 425, 426, 427, 428, 429, 430, 431, 432,
433, 434, 435, 436, 437, 438, 439, 440, 441, 442,
443, 444, 445, 446, 447, 448, 462, 463, 464, 465,
466, 467, 468, 476, 477, 478, 479, 480, 481, 506,
507, 508, 509, 510, 511, 512, 513, 490, 491, 492,
493, 494, 495, 496, 25, 38, 538, 539, 540, 541,
542, 543, 544, 545, 546, 26, 39, 566, 567, 568,
569, 570, 571, 572, 573, 574, 575, 576, 577, 578,
579, 580, 581, 582, 583, 584, 585, 27, 40, 587,
588, 28, 41, 590, 591, 449, 450, 451, 452, 29,
42, 602, 603, 604, 605, 606, 607, 608, 609, 610,
611, 612, 30, 43, 619, 620, 621, 622, 623, 624,
625, 453, 31, 44, 628, 629, 630
};
/* YYTABLE[YYPACT[STATE-NUM]] -- What to do in state STATE-NUM. If
positive, shift that token. If negative, reduce the rule whose
number is the opposite. If YYTABLE_NINF, syntax error. */
2020-06-24 08:18:47 -04:00
static const yytype_int16 yytable[] =
{
2, 497, 482, 454, 586, 455, 456, 469, 626, 627,
589, 3, 4, 631, 632, 470, 471, 613, 614, 615,
616, 617, 618, 633, 497, 592, 593, 594, 595, 596,
597, 598, 599, 600, 601, 634, 635, 636, 483, 484,
637, 638, 639, 640, 641, 642, 5, 643, 644, 645,
646, 647, 6, 648, 649, 650, 651, 652, 653, 654,
655, 656, 657, 485, 658, 659, 457, 547, 548, 549,
550, 551, 552, 553, 554, 555, 556, 557, 558, 559,
560, 561, 562, 563, 564, 565, 530, 531, 532, 533,
534, 535, 536, 537, 660, 661, 7, 458, 662, 663,
472, 664, 473, 665, 666, 667, 668, 459, 669, 670,
671, 672, 8, 673, 674, 675, 676, 677, 678, 679,
680, 681, 682, 683, 684, 685, 686, 687, 688, 689,
690, 691, 692, 693, 694, 695, 696, 697, 698, 486,
487, 699, 700, 701, 702, 703, 704, 705, 706, 707,
708, 709, 710, 711, 712, 713, 714, 715, 716, 717,
718, 9, 719, 720, 721, 722, 723, 724, 725, 726,
727, 728, 729, 730, 731, 732, 733, 734, 735, 488,
736, 737, 738, 739, 740, 741, 742, 743, 744, 745,
746, 747, 748, 749, 750, 751, 752, 753, 754, 755,
756, 757, 758, 759, 760, 761, 762, 763, 764, 765,
766, 767, 768, 769, 770, 771, 772, 773, 774, 775,
10, 499, 500, 501, 776, 777, 778, 779, 780, 781,
782, 504, 783, 784, 785, 786, 787, 460, 11, 788,
474, 789, 498, 790, 499, 500, 501, 502, 503, 514,
515, 516, 517, 518, 504, 12, 791, 792, 793, 794,
795, 796, 797, 798, 13, 799, 800, 801, 802, 803,
804, 805, 806, 807, 808, 809, 810, 811, 812, 813,
814, 815, 816, 817, 818, 819, 820, 821, 14, 822,
823, 824, 15, 825, 826, 827, 0, 828, 16, 45,
46, 47, 48, 49, 50, 51, 52, 53, 54, 55,
56, 57, 58, 59, 60, 61, 62, 63, 64, 65,
66, 67, 68, 69, 70, 71, 72, 73, 74, 75,
76, 829, 830, 831, 832, 77, 78, 79, 833, 834,
835, 80, 81, 82, 83, 84, 85, 86, 87, 88,
89, 90, 91, 92, 93, 94, 95, 96, 97, 98,
99, 100, 101, 102, 103, 104, 105, 106, 107, 108,
109, 110, 111, 112, 113, 114, 115, 116, 117, 118,
119, 120, 836, 837, 838, 839, 840, 841, 842, 843,
844, 121, 122, 123, 845, 124, 125, 126, 846, 847,
127, 128, 129, 130, 131, 132, 133, 134, 135, 136,
137, 138, 139, 140, 141, 142, 143, 144, 145, 146,
147, 148, 149, 150, 848, 849, 850, 151, 152, 153,
154, 155, 156, 157, 158, 851, 159, 160, 161, 162,
163, 164, 165, 166, 167, 168, 169, 852, 853, 854,
855, 856, 857, 858, 859, 860, 861, 862, 863, 864,
865, 866, 867, 868, 869, 870, 871, 170, 171, 172,
173, 174, 175, 176, 177, 178, 179, 180, 181, 182,
183, 184, 185, 186, 187, 188, 189, 190, 191, 192,
193, 194, 195, 196, 197, 198, 199, 200, 201, 202,
203, 204, 205, 206, 207, 208, 872, 209, 873, 210,
211, 212, 213, 214, 215, 216, 217, 218, 219, 220,
221, 222, 223, 224, 874, 875, 876, 877, 878, 879,
880, 881, 882, 883, 884, 225, 226, 227, 228, 229,
230, 885, 886, 887, 888, 889, 890, 891, 231, 892,
893, 894, 895, 896, 897, 898, 232, 233, 899, 234,
235, 900, 236, 237, 901, 902, 238, 239, 240, 241,
242, 243, 244, 245, 903, 904, 905, 246, 906, 907,
908, 909, 910, 911, 912, 913, 247, 248, 914, 915,
916, 917, 918, 919, 920, 921, 922, 923, 924, 925,
926, 927, 928, 929, 930, 931, 932, 933, 934, 935,
0, 0, 0, 525, 526, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 527, 528, 529
};
2019-05-02 07:43:30 -04:00
static const yytype_int16 yycheck[] =
{
0, 45, 45, 45, 113, 47, 48, 45, 289, 290,
299, 11, 12, 10, 10, 53, 54, 256, 257, 258,
259, 260, 261, 10, 45, 239, 240, 241, 242, 243,
244, 245, 246, 247, 248, 10, 10, 10, 81, 82,
10, 10, 10, 10, 10, 10, 46, 10, 10, 10,
10, 10, 52, 10, 10, 10, 10, 10, 10, 10,
10, 10, 10, 106, 10, 10, 108, 162, 163, 164,
165, 166, 167, 168, 169, 170, 171, 172, 173, 174,
175, 176, 177, 178, 179, 180, 97, 98, 99, 100,
101, 102, 103, 104, 10, 10, 96, 139, 10, 10,
138, 10, 140, 10, 10, 10, 10, 149, 10, 10,
10, 10, 112, 10, 10, 10, 10, 10, 10, 10,
10, 10, 10, 10, 10, 10, 10, 10, 10, 10,
10, 10, 10, 10, 10, 10, 10, 10, 10, 182,
183, 10, 10, 10, 10, 10, 10, 10, 10, 10,
10, 10, 10, 10, 10, 10, 10, 10, 10, 10,
10, 161, 10, 10, 10, 10, 10, 10, 10, 10,
10, 10, 10, 10, 10, 10, 10, 10, 10, 222,
10, 10, 10, 10, 10, 10, 10, 10, 10, 10,
10, 10, 10, 10, 10, 10, 10, 10, 10, 10,
10, 10, 10, 10, 10, 10, 10, 10, 10, 10,
10, 10, 10, 10, 10, 10, 10, 10, 10, 10,
220, 265, 266, 267, 10, 10, 10, 10, 10, 10,
10, 275, 10, 10, 10, 10, 10, 279, 238, 10,
278, 10, 263, 10, 265, 266, 267, 268, 269, 293,
294, 295, 296, 297, 275, 255, 10, 10, 10, 10,
10, 10, 10, 10, 264, 10, 10, 10, 10, 10,
10, 10, 10, 10, 10, 10, 10, 10, 10, 10,
10, 10, 10, 10, 10, 10, 10, 10, 288, 10,
10, 10, 292, 10, 10, 10, -1, 10, 298, 13,
14, 15, 16, 17, 18, 19, 20, 21, 22, 23,
24, 25, 26, 27, 28, 29, 30, 31, 32, 33,
34, 35, 36, 37, 38, 39, 40, 41, 42, 43,
44, 10, 10, 10, 10, 49, 50, 51, 10, 10,
10, 55, 56, 57, 58, 59, 60, 61, 62, 63,
64, 65, 66, 67, 68, 69, 70, 71, 72, 73,
74, 75, 76, 77, 78, 79, 80, 81, 82, 83,
84, 85, 86, 87, 88, 89, 90, 91, 92, 93,
94, 95, 10, 10, 10, 10, 10, 10, 10, 10,
10, 105, 106, 107, 10, 109, 110, 111, 10, 10,
114, 115, 116, 117, 118, 119, 120, 121, 122, 123,
124, 125, 126, 127, 128, 129, 130, 131, 132, 133,
134, 135, 136, 137, 10, 10, 10, 141, 142, 143,
144, 145, 146, 147, 148, 10, 150, 151, 152, 153,
154, 155, 156, 157, 158, 159, 160, 10, 10, 10,
2020-05-07 10:36:26 -04:00
10, 10, 10, 10, 10, 10, 10, 10, 10, 10,
10, 10, 10, 10, 10, 10, 10, 181, 182, 183,
184, 185, 186, 187, 188, 189, 190, 191, 192, 193,
194, 195, 196, 197, 198, 199, 200, 201, 202, 203,
204, 205, 206, 207, 208, 209, 210, 211, 212, 213,
214, 215, 216, 217, 218, 219, 10, 221, 10, 223,
224, 225, 226, 227, 228, 229, 230, 231, 232, 233,
234, 235, 236, 237, 10, 10, 10, 10, 10, 10,
10, 10, 10, 10, 10, 249, 250, 251, 252, 253,
254, 10, 10, 10, 10, 10, 10, 10, 262, 10,
10, 10, 10, 10, 10, 10, 270, 271, 10, 273,
274, 10, 276, 277, 10, 10, 280, 281, 282, 283,
284, 285, 286, 287, 10, 10, 10, 291, 10, 10,
10, 10, 10, 10, 10, 10, 300, 301, 10, 10,
10, 10, 10, 10, 10, 10, 10, 10, 10, 10,
10, 10, 10, 10, 10, 10, 10, 10, 10, 10,
-1, -1, -1, 37, 37, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, 37, 37, 37
};
/* YYSTOS[STATE-NUM] -- The (internal number of the) accessing
symbol of state STATE-NUM. */
2020-06-24 08:18:47 -04:00
static const yytype_int16 yystos[] =
{
0, 303, 0, 11, 12, 46, 52, 96, 112, 161,
220, 238, 255, 264, 288, 292, 298, 304, 305, 306,
309, 312, 315, 318, 326, 556, 567, 589, 593, 601,
614, 624, 307, 310, 313, 316, 319, 327, 557, 568,
590, 594, 602, 615, 625, 13, 14, 15, 16, 17,
18, 19, 20, 21, 22, 23, 24, 25, 26, 27,
28, 29, 30, 31, 32, 33, 34, 35, 36, 37,
38, 39, 40, 41, 42, 43, 44, 49, 50, 51,
55, 56, 57, 58, 59, 60, 61, 62, 63, 64,
65, 66, 67, 68, 69, 70, 71, 72, 73, 74,
75, 76, 77, 78, 79, 80, 81, 82, 83, 84,
85, 86, 87, 88, 89, 90, 91, 92, 93, 94,
95, 105, 106, 107, 109, 110, 111, 114, 115, 116,
117, 118, 119, 120, 121, 122, 123, 124, 125, 126,
127, 128, 129, 130, 131, 132, 133, 134, 135, 136,
137, 141, 142, 143, 144, 145, 146, 147, 148, 150,
151, 152, 153, 154, 155, 156, 157, 158, 159, 160,
181, 182, 183, 184, 185, 186, 187, 188, 189, 190,
191, 192, 193, 194, 195, 196, 197, 198, 199, 200,
2020-06-24 08:18:47 -04:00
201, 202, 203, 204, 205, 206, 207, 208, 209, 210,
211, 212, 213, 214, 215, 216, 217, 218, 219, 221,
2020-06-24 08:18:47 -04:00
223, 224, 225, 226, 227, 228, 229, 230, 231, 232,
233, 234, 235, 236, 237, 249, 250, 251, 252, 253,
254, 262, 270, 271, 273, 274, 276, 277, 280, 281,
282, 283, 284, 285, 286, 287, 291, 300, 301, 308,
329, 330, 331, 332, 333, 334, 335, 336, 337, 338,
339, 340, 341, 342, 343, 344, 345, 346, 347, 348,
349, 350, 351, 352, 353, 354, 355, 356, 357, 358,
359, 360, 361, 362, 363, 364, 365, 366, 367, 368,
369, 370, 371, 372, 373, 374, 375, 376, 377, 378,
379, 380, 381, 382, 383, 384, 385, 386, 387, 388,
389, 390, 391, 392, 393, 394, 395, 396, 397, 398,
399, 400, 401, 402, 403, 404, 405, 406, 407, 408,
409, 410, 411, 412, 413, 414, 415, 416, 417, 418,
419, 420, 421, 422, 423, 424, 425, 426, 427, 428,
429, 430, 431, 432, 433, 434, 435, 436, 437, 438,
439, 440, 441, 442, 443, 444, 445, 446, 447, 448,
449, 450, 451, 452, 453, 454, 455, 456, 457, 458,
459, 460, 461, 462, 463, 464, 465, 466, 467, 468,
469, 470, 471, 472, 473, 474, 475, 476, 477, 478,
479, 480, 481, 482, 483, 484, 485, 486, 487, 488,
489, 490, 491, 492, 493, 494, 495, 496, 497, 498,
499, 500, 501, 502, 503, 504, 505, 506, 507, 508,
2020-09-16 12:38:51 -04:00
509, 510, 511, 512, 513, 514, 515, 516, 517, 518,
519, 520, 521, 522, 523, 524, 525, 526, 527, 597,
598, 599, 600, 623, 45, 47, 48, 108, 139, 149,
279, 311, 528, 529, 530, 531, 532, 533, 534, 45,
53, 54, 138, 140, 278, 314, 535, 536, 537, 538,
539, 540, 45, 81, 82, 106, 182, 183, 222, 317,
549, 550, 551, 552, 553, 554, 555, 45, 263, 265,
266, 267, 268, 269, 275, 320, 541, 542, 543, 544,
545, 546, 547, 548, 293, 294, 295, 296, 297, 321,
322, 323, 324, 325, 328, 541, 542, 543, 544, 545,
97, 98, 99, 100, 101, 102, 103, 104, 558, 559,
560, 561, 562, 563, 564, 565, 566, 162, 163, 164,
165, 166, 167, 168, 169, 170, 171, 172, 173, 174,
175, 176, 177, 178, 179, 180, 569, 570, 571, 572,
2020-09-16 12:38:51 -04:00
573, 574, 575, 576, 577, 578, 579, 580, 581, 582,
583, 584, 585, 586, 587, 588, 113, 591, 592, 299,
595, 596, 239, 240, 241, 242, 243, 244, 245, 246,
247, 248, 603, 604, 605, 606, 607, 608, 609, 610,
611, 612, 613, 256, 257, 258, 259, 260, 261, 616,
617, 618, 619, 620, 621, 622, 289, 290, 626, 627,
628, 10, 10, 10, 10, 10, 10, 10, 10, 10,
10, 10, 10, 10, 10, 10, 10, 10, 10, 10,
10, 10, 10, 10, 10, 10, 10, 10, 10, 10,
10, 10, 10, 10, 10, 10, 10, 10, 10, 10,
10, 10, 10, 10, 10, 10, 10, 10, 10, 10,
10, 10, 10, 10, 10, 10, 10, 10, 10, 10,
10, 10, 10, 10, 10, 10, 10, 10, 10, 10,
10, 10, 10, 10, 10, 10, 10, 10, 10, 10,
10, 10, 10, 10, 10, 10, 10, 10, 10, 10,
10, 10, 10, 10, 10, 10, 10, 10, 10, 10,
10, 10, 10, 10, 10, 10, 10, 10, 10, 10,
10, 10, 10, 10, 10, 10, 10, 10, 10, 10,
10, 10, 10, 10, 10, 10, 10, 10, 10, 10,
10, 10, 10, 10, 10, 10, 10, 10, 10, 10,
10, 10, 10, 10, 10, 10, 10, 10, 10, 10,
10, 10, 10, 10, 10, 10, 10, 10, 10, 10,
10, 10, 10, 10, 10, 10, 10, 10, 10, 10,
10, 10, 10, 10, 10, 10, 10, 10, 10, 10,
10, 10, 10, 10, 10, 10, 10, 10, 10, 10,
10, 10, 10, 10, 10, 10, 10, 10, 10, 10,
10, 10, 10, 10, 10, 10, 10, 10, 10, 10,
10, 10, 10, 10, 10, 10, 10, 10, 10, 10,
10, 10, 10, 10, 10, 10, 10, 10, 10, 10,
10, 10, 10, 10, 10, 10, 10, 10, 10, 10,
10, 10, 10, 10, 10, 10, 10, 10, 10, 10,
10, 10, 10, 10, 10, 10, 10, 10, 10, 10,
10, 10, 10, 10, 10, 10, 10, 10, 10, 10,
10, 10, 10, 10, 10, 10, 10, 10, 10, 10,
10, 10, 10, 10, 10, 10, 10, 10, 10, 10,
10, 10, 10, 10, 10, 10, 10, 10, 10, 10,
10, 10, 10, 10, 10, 10
};
/* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */
2020-06-24 08:18:47 -04:00
static const yytype_int16 yyr1[] =
{
0, 302, 303, 303, 304, 304, 304, 304, 304, 304,
304, 304, 304, 304, 304, 304, 304, 304, 305, 306,
307, 307, 308, 308, 308, 308, 308, 308, 308, 308,
308, 308, 308, 308, 308, 308, 308, 308, 308, 308,
308, 308, 308, 308, 308, 308, 308, 308, 308, 308,
308, 308, 308, 308, 308, 308, 308, 308, 308, 308,
308, 308, 308, 308, 308, 308, 308, 308, 308, 308,
308, 308, 308, 308, 308, 308, 308, 308, 308, 308,
308, 308, 308, 308, 308, 308, 308, 308, 308, 308,
308, 308, 308, 308, 308, 308, 308, 308, 308, 308,
308, 308, 308, 308, 308, 308, 308, 308, 308, 308,
308, 308, 308, 308, 308, 308, 308, 308, 308, 308,
308, 308, 308, 308, 308, 308, 308, 308, 308, 308,
308, 308, 308, 308, 308, 308, 308, 308, 308, 308,
308, 308, 308, 308, 308, 308, 308, 308, 308, 308,
308, 308, 308, 308, 308, 308, 308, 308, 308, 308,
308, 308, 308, 308, 308, 308, 308, 308, 308, 308,
308, 308, 308, 308, 308, 308, 308, 308, 308, 308,
308, 308, 308, 308, 308, 308, 308, 308, 308, 308,
308, 308, 308, 308, 308, 308, 308, 308, 308, 308,
308, 308, 308, 308, 308, 308, 308, 308, 308, 308,
308, 308, 308, 308, 308, 308, 308, 308, 308, 308,
308, 308, 308, 308, 308, 308, 309, 310, 310, 311,
311, 311, 311, 311, 311, 311, 312, 313, 313, 314,
314, 314, 314, 314, 314, 315, 316, 316, 317, 317,
317, 317, 317, 317, 317, 318, 319, 319, 320, 320,
320, 320, 320, 320, 320, 320, 321, 322, 323, 324,
325, 326, 327, 327, 328, 328, 328, 328, 328, 328,
328, 328, 328, 328, 329, 330, 331, 332, 333, 334,
335, 336, 337, 338, 339, 340, 341, 342, 343, 344,
345, 346, 347, 348, 349, 350, 351, 352, 353, 354,
355, 356, 357, 358, 359, 360, 361, 362, 363, 364,
365, 366, 367, 368, 369, 370, 371, 372, 373, 374,
375, 376, 377, 378, 379, 380, 381, 382, 383, 384,
385, 386, 387, 388, 389, 390, 391, 392, 393, 394,
395, 396, 397, 398, 399, 400, 401, 402, 403, 404,
405, 406, 407, 408, 409, 410, 411, 412, 413, 414,
415, 416, 417, 418, 419, 420, 421, 422, 423, 424,
425, 426, 427, 428, 429, 430, 431, 432, 433, 434,
435, 436, 437, 438, 439, 440, 441, 442, 443, 444,
445, 446, 447, 448, 449, 450, 451, 452, 453, 454,
455, 456, 457, 458, 459, 460, 461, 462, 463, 464,
465, 466, 467, 468, 469, 470, 471, 472, 473, 474,
475, 476, 477, 478, 479, 480, 481, 482, 483, 484,
485, 486, 487, 488, 489, 490, 491, 492, 493, 494,
495, 496, 497, 498, 499, 500, 501, 502, 503, 504,
505, 506, 507, 508, 509, 510, 511, 512, 513, 514,
515, 516, 517, 518, 519, 520, 521, 522, 523, 524,
525, 526, 527, 528, 529, 530, 531, 532, 533, 534,
2020-09-16 12:38:51 -04:00
535, 536, 537, 538, 539, 540, 541, 542, 543, 544,
545, 546, 547, 548, 549, 550, 551, 552, 553, 554,
555, 556, 557, 557, 558, 558, 558, 558, 558, 558,
558, 558, 559, 560, 561, 562, 563, 564, 565, 566,
567, 568, 568, 569, 569, 569, 569, 569, 569, 569,
569, 569, 569, 569, 569, 569, 569, 569, 569, 569,
569, 569, 570, 571, 572, 573, 574, 575, 576, 577,
578, 579, 580, 581, 582, 583, 584, 585, 586, 587,
588, 589, 590, 590, 591, 592, 593, 594, 594, 595,
596, 597, 598, 599, 600, 601, 602, 602, 603, 603,
603, 603, 603, 603, 603, 603, 603, 603, 604, 605,
606, 607, 608, 609, 610, 611, 612, 613, 614, 615,
615, 616, 616, 616, 616, 616, 616, 617, 618, 619,
620, 621, 622, 623, 624, 625, 625, 626, 626, 627,
628
};
/* YYR2[YYN] -- Number of symbols on the right hand side of rule YYN. */
2020-06-24 08:18:47 -04:00
static const yytype_int8 yyr2[] =
{
0, 2, 0, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 1, 1, 1,
2, 0, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 2, 0, 1,
1, 1, 1, 1, 1, 1, 1, 2, 0, 1,
1, 1, 1, 1, 1, 1, 2, 0, 1, 1,
1, 1, 1, 1, 1, 1, 2, 0, 1, 1,
1, 1, 1, 1, 1, 1, 2, 2, 2, 2,
2, 1, 2, 0, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 3, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2020-05-07 10:36:26 -04:00
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 3, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 3, 3, 4, 4, 4, 3, 3,
2, 2, 2, 2, 2, 2, 3, 3, 2, 2,
2020-09-23 06:09:48 -04:00
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 3, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 3, 3, 3, 2, 2,
2, 1, 2, 0, 1, 1, 1, 1, 1, 1,
1, 1, 2, 2, 2, 2, 2, 2, 2, 2,
1, 2, 0, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 1, 2, 0, 1, 2, 1, 2, 0, 1,
2, 2, 2, 3, 3, 1, 2, 0, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 1, 2,
0, 1, 1, 1, 1, 1, 1, 2, 2, 2,
2, 2, 2, 3, 1, 2, 0, 1, 1, 2,
2
};
#define yyerrok (yyerrstatus = 0)
#define yyclearin (yychar = YYEMPTY)
#define YYEMPTY (-2)
#define YYEOF 0
#define YYACCEPT goto yyacceptlab
#define YYABORT goto yyabortlab
#define YYERROR goto yyerrorlab
#define YYRECOVERING() (!!yyerrstatus)
#define YYBACKUP(Token, Value) \
do \
if (yychar == YYEMPTY) \
{ \
yychar = (Token); \
yylval = (Value); \
YYPOPSTACK (yylen); \
yystate = *yyssp; \
goto yybackup; \
} \
else \
{ \
yyerror (YY_("syntax error: cannot back up")); \
YYERROR; \
} \
while (0)
/* Error token number */
#define YYTERROR 1
#define YYERRCODE 256
/* Enable debugging if requested. */
#if YYDEBUG
# ifndef YYFPRINTF
# include <stdio.h> /* INFRINGES ON USER NAME SPACE */
# define YYFPRINTF fprintf
# endif
# define YYDPRINTF(Args) \
do { \
if (yydebug) \
YYFPRINTF Args; \
} while (0)
/* This macro is provided for backward compatibility. */
#ifndef YY_LOCATION_PRINT
# define YY_LOCATION_PRINT(File, Loc) ((void) 0)
#endif
# define YY_SYMBOL_PRINT(Title, Type, Value, Location) \
do { \
if (yydebug) \
{ \
YYFPRINTF (stderr, "%s ", Title); \
yy_symbol_print (stderr, \
Type, Value); \
YYFPRINTF (stderr, "\n"); \
} \
} while (0)
/*-----------------------------------.
| Print this symbol's value on YYO. |
`-----------------------------------*/
static void
yy_symbol_value_print (FILE *yyo, int yytype, YYSTYPE const * const yyvaluep)
{
FILE *yyoutput = yyo;
YYUSE (yyoutput);
if (!yyvaluep)
return;
# ifdef YYPRINT
if (yytype < YYNTOKENS)
YYPRINT (yyo, yytoknum[yytype], *yyvaluep);
# endif
2020-06-24 08:18:47 -04:00
YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
YYUSE (yytype);
2020-06-24 08:18:47 -04:00
YY_IGNORE_MAYBE_UNINITIALIZED_END
}
/*---------------------------.
| Print this symbol on YYO. |
`---------------------------*/
static void
yy_symbol_print (FILE *yyo, int yytype, YYSTYPE const * const yyvaluep)
{
YYFPRINTF (yyo, "%s %s (",
yytype < YYNTOKENS ? "token" : "nterm", yytname[yytype]);
yy_symbol_value_print (yyo, yytype, yyvaluep);
YYFPRINTF (yyo, ")");
}
/*------------------------------------------------------------------.
| yy_stack_print -- Print the state stack from its BOTTOM up to its |
| TOP (included). |
`------------------------------------------------------------------*/
static void
2020-06-24 08:18:47 -04:00
yy_stack_print (yy_state_t *yybottom, yy_state_t *yytop)
{
YYFPRINTF (stderr, "Stack now");
for (; yybottom <= yytop; yybottom++)
{
int yybot = *yybottom;
YYFPRINTF (stderr, " %d", yybot);
}
YYFPRINTF (stderr, "\n");
}
# define YY_STACK_PRINT(Bottom, Top) \
do { \
if (yydebug) \
yy_stack_print ((Bottom), (Top)); \
} while (0)
/*------------------------------------------------.
| Report that the YYRULE is going to be reduced. |
`------------------------------------------------*/
static void
2020-06-24 08:18:47 -04:00
yy_reduce_print (yy_state_t *yyssp, YYSTYPE *yyvsp, int yyrule)
{
2020-06-24 08:18:47 -04:00
int yylno = yyrline[yyrule];
int yynrhs = yyr2[yyrule];
int yyi;
2020-06-24 08:18:47 -04:00
YYFPRINTF (stderr, "Reducing stack by rule %d (line %d):\n",
yyrule - 1, yylno);
/* The symbols being reduced. */
for (yyi = 0; yyi < yynrhs; yyi++)
{
YYFPRINTF (stderr, " $%d = ", yyi + 1);
yy_symbol_print (stderr,
2020-06-24 08:18:47 -04:00
yystos[+yyssp[yyi + 1 - yynrhs]],
&yyvsp[(yyi + 1) - (yynrhs)]
);
YYFPRINTF (stderr, "\n");
}
}
# define YY_REDUCE_PRINT(Rule) \
do { \
if (yydebug) \
yy_reduce_print (yyssp, yyvsp, Rule); \
} while (0)
/* Nonzero means print parse trace. It is left uninitialized so that
multiple parsers can coexist. */
int yydebug;
#else /* !YYDEBUG */
# define YYDPRINTF(Args)
# define YY_SYMBOL_PRINT(Title, Type, Value, Location)
# define YY_STACK_PRINT(Bottom, Top)
# define YY_REDUCE_PRINT(Rule)
#endif /* !YYDEBUG */
/* YYINITDEPTH -- initial size of the parser's stacks. */
#ifndef YYINITDEPTH
# define YYINITDEPTH 200
#endif
/* YYMAXDEPTH -- maximum size the stacks can grow to (effective only
if the built-in stack extension method is used).
Do not make this value too large; the results are undefined if
YYSTACK_ALLOC_MAXIMUM < YYSTACK_BYTES (YYMAXDEPTH)
evaluated with infinite-precision integer arithmetic. */
#ifndef YYMAXDEPTH
# define YYMAXDEPTH 10000
#endif
#if YYERROR_VERBOSE
# ifndef yystrlen
# if defined __GLIBC__ && defined _STRING_H
2020-06-24 08:18:47 -04:00
# define yystrlen(S) (YY_CAST (YYPTRDIFF_T, strlen (S)))
# else
/* Return the length of YYSTR. */
2020-06-24 08:18:47 -04:00
static YYPTRDIFF_T
yystrlen (const char *yystr)
{
2020-06-24 08:18:47 -04:00
YYPTRDIFF_T yylen;
for (yylen = 0; yystr[yylen]; yylen++)
continue;
return yylen;
}
# endif
# endif
# ifndef yystpcpy
# if defined __GLIBC__ && defined _STRING_H && defined _GNU_SOURCE
# define yystpcpy stpcpy
# else
/* Copy YYSRC to YYDEST, returning the address of the terminating '\0' in
YYDEST. */
static char *
yystpcpy (char *yydest, const char *yysrc)
{
char *yyd = yydest;
const char *yys = yysrc;
while ((*yyd++ = *yys++) != '\0')
continue;
return yyd - 1;
}
# endif
# endif
# ifndef yytnamerr
/* Copy to YYRES the contents of YYSTR after stripping away unnecessary
quotes and backslashes, so that it's suitable for yyerror. The
heuristic is that double-quoting is unnecessary unless the string
contains an apostrophe, a comma, or backslash (other than
backslash-backslash). YYSTR is taken from yytname. If YYRES is
null, do not copy; instead, return the length of what the result
would have been. */
2020-06-24 08:18:47 -04:00
static YYPTRDIFF_T
yytnamerr (char *yyres, const char *yystr)
{
if (*yystr == '"')
{
2020-06-24 08:18:47 -04:00
YYPTRDIFF_T yyn = 0;
char const *yyp = yystr;
for (;;)
switch (*++yyp)
{
case '\'':
case ',':
goto do_not_strip_quotes;
case '\\':
if (*++yyp != '\\')
goto do_not_strip_quotes;
else
goto append;
append:
default:
if (yyres)
yyres[yyn] = *yyp;
yyn++;
break;
case '"':
if (yyres)
yyres[yyn] = '\0';
return yyn;
}
do_not_strip_quotes: ;
}
2020-06-24 08:18:47 -04:00
if (yyres)
return yystpcpy (yyres, yystr) - yyres;
else
return yystrlen (yystr);
}
# endif
/* Copy into *YYMSG, which is of size *YYMSG_ALLOC, an error message
about the unexpected token YYTOKEN for the state stack whose top is
YYSSP.
Return 0 if *YYMSG was successfully written. Return 1 if *YYMSG is
not large enough to hold the message. In that case, also set
*YYMSG_ALLOC to the required number of bytes. Return 2 if the
required number of bytes is too large to store. */
static int
2020-06-24 08:18:47 -04:00
yysyntax_error (YYPTRDIFF_T *yymsg_alloc, char **yymsg,
yy_state_t *yyssp, int yytoken)
{
enum { YYERROR_VERBOSE_ARGS_MAXIMUM = 5 };
/* Internationalized format string. */
const char *yyformat = YY_NULLPTR;
2020-06-24 08:18:47 -04:00
/* Arguments of yyformat: reported tokens (one for the "unexpected",
one per "expected"). */
char const *yyarg[YYERROR_VERBOSE_ARGS_MAXIMUM];
2020-06-24 08:18:47 -04:00
/* Actual size of YYARG. */
int yycount = 0;
2020-06-24 08:18:47 -04:00
/* Cumulated lengths of YYARG. */
YYPTRDIFF_T yysize = 0;
/* There are many possibilities here to consider:
- If this state is a consistent state with a default action, then
the only way this function was invoked is if the default action
is an error action. In that case, don't check for expected
tokens because there are none.
- The only way there can be no lookahead present (in yychar) is if
this state is a consistent state with a default action. Thus,
detecting the absence of a lookahead is sufficient to determine
that there is no unexpected or expected token to report. In that
case, just report a simple "syntax error".
- Don't assume there isn't a lookahead just because this state is a
consistent state with a default action. There might have been a
previous inconsistent state, consistent state with a non-default
action, or user semantic action that manipulated yychar.
- Of course, the expected token list depends on states to have
correct lookahead information, and it depends on the parser not
to perform extra reductions after fetching a lookahead from the
scanner and before detecting a syntax error. Thus, state merging
(from LALR or IELR) and default reductions corrupt the expected
token list. However, the list is correct for canonical LR with
one exception: it will still contain any token that will not be
accepted due to an error action in a later state.
*/
if (yytoken != YYEMPTY)
{
2020-06-24 08:18:47 -04:00
int yyn = yypact[+*yyssp];
YYPTRDIFF_T yysize0 = yytnamerr (YY_NULLPTR, yytname[yytoken]);
yysize = yysize0;
yyarg[yycount++] = yytname[yytoken];
if (!yypact_value_is_default (yyn))
{
/* Start YYX at -YYN if negative to avoid negative indexes in
YYCHECK. In other words, skip the first -YYN actions for
this state because they are default actions. */
int yyxbegin = yyn < 0 ? -yyn : 0;
/* Stay within bounds of both yycheck and yytname. */
int yychecklim = YYLAST - yyn + 1;
int yyxend = yychecklim < YYNTOKENS ? yychecklim : YYNTOKENS;
int yyx;
for (yyx = yyxbegin; yyx < yyxend; ++yyx)
if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR
&& !yytable_value_is_error (yytable[yyx + yyn]))
{
if (yycount == YYERROR_VERBOSE_ARGS_MAXIMUM)
{
yycount = 1;
yysize = yysize0;
break;
}
yyarg[yycount++] = yytname[yyx];
{
2020-06-24 08:18:47 -04:00
YYPTRDIFF_T yysize1
= yysize + yytnamerr (YY_NULLPTR, yytname[yyx]);
if (yysize <= yysize1 && yysize1 <= YYSTACK_ALLOC_MAXIMUM)
yysize = yysize1;
else
return 2;
}
}
}
}
switch (yycount)
{
# define YYCASE_(N, S) \
case N: \
yyformat = S; \
break
default: /* Avoid compiler warnings. */
YYCASE_(0, YY_("syntax error"));
YYCASE_(1, YY_("syntax error, unexpected %s"));
YYCASE_(2, YY_("syntax error, unexpected %s, expecting %s"));
YYCASE_(3, YY_("syntax error, unexpected %s, expecting %s or %s"));
YYCASE_(4, YY_("syntax error, unexpected %s, expecting %s or %s or %s"));
YYCASE_(5, YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s"));
# undef YYCASE_
}
{
2020-06-24 08:18:47 -04:00
/* Don't count the "%s"s in the final size, but reserve room for
the terminator. */
YYPTRDIFF_T yysize1 = yysize + (yystrlen (yyformat) - 2 * yycount) + 1;
if (yysize <= yysize1 && yysize1 <= YYSTACK_ALLOC_MAXIMUM)
yysize = yysize1;
else
return 2;
}
if (*yymsg_alloc < yysize)
{
*yymsg_alloc = 2 * yysize;
if (! (yysize <= *yymsg_alloc
&& *yymsg_alloc <= YYSTACK_ALLOC_MAXIMUM))
*yymsg_alloc = YYSTACK_ALLOC_MAXIMUM;
return 1;
}
/* Avoid sprintf, as that infringes on the user's name space.
Don't have undefined behavior even if the translation
produced a string with the wrong number of "%s"s. */
{
char *yyp = *yymsg;
int yyi = 0;
while ((*yyp = *yyformat) != '\0')
if (*yyp == '%' && yyformat[1] == 's' && yyi < yycount)
{
yyp += yytnamerr (yyp, yyarg[yyi++]);
yyformat += 2;
}
else
{
2020-06-24 08:18:47 -04:00
++yyp;
++yyformat;
}
}
return 0;
}
#endif /* YYERROR_VERBOSE */
/*-----------------------------------------------.
| Release the memory associated to this symbol. |
`-----------------------------------------------*/
static void
yydestruct (const char *yymsg, int yytype, YYSTYPE *yyvaluep)
{
YYUSE (yyvaluep);
if (!yymsg)
yymsg = "Deleting";
YY_SYMBOL_PRINT (yymsg, yytype, yyvaluep, yylocationp);
YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
YYUSE (yytype);
YY_IGNORE_MAYBE_UNINITIALIZED_END
}
/* The lookahead symbol. */
int yychar;
/* The semantic value of the lookahead symbol. */
YYSTYPE yylval;
/* Number of syntax errors so far. */
int yynerrs;
/*----------.
| yyparse. |
`----------*/
int
yyparse (void)
{
2020-06-24 08:18:47 -04:00
yy_state_fast_t yystate;
/* Number of tokens to shift before error messages enabled. */
int yyerrstatus;
/* The stacks and their tools:
'yyss': related to states.
'yyvs': related to semantic values.
Refer to the stacks through separate pointers, to allow yyoverflow
to reallocate them elsewhere. */
/* The state stack. */
2020-06-24 08:18:47 -04:00
yy_state_t yyssa[YYINITDEPTH];
yy_state_t *yyss;
yy_state_t *yyssp;
/* The semantic value stack. */
YYSTYPE yyvsa[YYINITDEPTH];
YYSTYPE *yyvs;
YYSTYPE *yyvsp;
2020-06-24 08:18:47 -04:00
YYPTRDIFF_T yystacksize;
int yyn;
int yyresult;
/* Lookahead token as an internal (translated) token number. */
int yytoken = 0;
/* The variables used to return semantic value and location from the
action routines. */
YYSTYPE yyval;
#if YYERROR_VERBOSE
/* Buffer for error messages, and its allocated size. */
char yymsgbuf[128];
char *yymsg = yymsgbuf;
2020-06-24 08:18:47 -04:00
YYPTRDIFF_T yymsg_alloc = sizeof yymsgbuf;
#endif
#define YYPOPSTACK(N) (yyvsp -= (N), yyssp -= (N))
/* The number of symbols on the RHS of the reduced rule.
Keep to zero when no symbol should be popped. */
int yylen = 0;
yyssp = yyss = yyssa;
yyvsp = yyvs = yyvsa;
yystacksize = YYINITDEPTH;
YYDPRINTF ((stderr, "Starting parse\n"));
yystate = 0;
yyerrstatus = 0;
yynerrs = 0;
yychar = YYEMPTY; /* Cause a token to be read. */
goto yysetstate;
/*------------------------------------------------------------.
| yynewstate -- push a new state, which is found in yystate. |
`------------------------------------------------------------*/
yynewstate:
/* In all cases, when you get here, the value and location stacks
have just been pushed. So pushing a state here evens the stacks. */
yyssp++;
/*--------------------------------------------------------------------.
2020-06-24 08:18:47 -04:00
| yysetstate -- set current state (the top of the stack) to yystate. |
`--------------------------------------------------------------------*/
yysetstate:
YYDPRINTF ((stderr, "Entering state %d\n", yystate));
YY_ASSERT (0 <= yystate && yystate < YYNSTATES);
2020-06-24 08:18:47 -04:00
YY_IGNORE_USELESS_CAST_BEGIN
*yyssp = YY_CAST (yy_state_t, yystate);
YY_IGNORE_USELESS_CAST_END
if (yyss + yystacksize - 1 <= yyssp)
#if !defined yyoverflow && !defined YYSTACK_RELOCATE
goto yyexhaustedlab;
#else
{
/* Get the current used size of the three stacks, in elements. */
2020-06-24 08:18:47 -04:00
YYPTRDIFF_T yysize = yyssp - yyss + 1;
# if defined yyoverflow
{
/* Give user a chance to reallocate the stack. Use copies of
these so that the &'s don't force the real ones into
memory. */
2020-06-24 08:18:47 -04:00
yy_state_t *yyss1 = yyss;
YYSTYPE *yyvs1 = yyvs;
/* Each stack pointer address is followed by the size of the
data in use in that stack, in bytes. This used to be a
conditional around just the two extra args, but that might
be undefined if yyoverflow is a macro. */
yyoverflow (YY_("memory exhausted"),
2020-06-24 08:18:47 -04:00
&yyss1, yysize * YYSIZEOF (*yyssp),
&yyvs1, yysize * YYSIZEOF (*yyvsp),
&yystacksize);
yyss = yyss1;
yyvs = yyvs1;
}
# else /* defined YYSTACK_RELOCATE */
/* Extend the stack our own way. */
if (YYMAXDEPTH <= yystacksize)
goto yyexhaustedlab;
yystacksize *= 2;
if (YYMAXDEPTH < yystacksize)
yystacksize = YYMAXDEPTH;
{
2020-06-24 08:18:47 -04:00
yy_state_t *yyss1 = yyss;
union yyalloc *yyptr =
2020-06-24 08:18:47 -04:00
YY_CAST (union yyalloc *,
YYSTACK_ALLOC (YY_CAST (YYSIZE_T, YYSTACK_BYTES (yystacksize))));
if (! yyptr)
goto yyexhaustedlab;
YYSTACK_RELOCATE (yyss_alloc, yyss);
YYSTACK_RELOCATE (yyvs_alloc, yyvs);
# undef YYSTACK_RELOCATE
if (yyss1 != yyssa)
YYSTACK_FREE (yyss1);
}
# endif
yyssp = yyss + yysize - 1;
yyvsp = yyvs + yysize - 1;
2020-06-24 08:18:47 -04:00
YY_IGNORE_USELESS_CAST_BEGIN
YYDPRINTF ((stderr, "Stack size increased to %ld\n",
YY_CAST (long, yystacksize)));
YY_IGNORE_USELESS_CAST_END
if (yyss + yystacksize - 1 <= yyssp)
YYABORT;
}
#endif /* !defined yyoverflow && !defined YYSTACK_RELOCATE */
if (yystate == YYFINAL)
YYACCEPT;
goto yybackup;
/*-----------.
| yybackup. |
`-----------*/
yybackup:
/* Do appropriate processing given the current state. Read a
lookahead token if we need one and don't already have one. */
/* First try to decide what to do without reference to lookahead token. */
yyn = yypact[yystate];
if (yypact_value_is_default (yyn))
goto yydefault;
/* Not known => get a lookahead token if don't already have one. */
/* YYCHAR is either YYEMPTY or YYEOF or a valid lookahead symbol. */
if (yychar == YYEMPTY)
{
YYDPRINTF ((stderr, "Reading a token: "));
yychar = yylex ();
}
if (yychar <= YYEOF)
{
yychar = yytoken = YYEOF;
YYDPRINTF ((stderr, "Now at end of input.\n"));
}
else
{
yytoken = YYTRANSLATE (yychar);
YY_SYMBOL_PRINT ("Next token is", yytoken, &yylval, &yylloc);
}
/* If the proper action on seeing token YYTOKEN is to reduce or to
detect an error, take that action. */
yyn += yytoken;
if (yyn < 0 || YYLAST < yyn || yycheck[yyn] != yytoken)
goto yydefault;
yyn = yytable[yyn];
if (yyn <= 0)
{
if (yytable_value_is_error (yyn))
goto yyerrlab;
yyn = -yyn;
goto yyreduce;
}
/* Count tokens shifted since error; after three, turn off error
status. */
if (yyerrstatus)
yyerrstatus--;
/* Shift the lookahead token. */
YY_SYMBOL_PRINT ("Shifting", yytoken, &yylval, &yylloc);
yystate = yyn;
YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
*++yyvsp = yylval;
YY_IGNORE_MAYBE_UNINITIALIZED_END
2020-05-07 10:36:26 -04:00
2020-06-24 08:18:47 -04:00
/* Discard the shifted token. */
yychar = YYEMPTY;
goto yynewstate;
/*-----------------------------------------------------------.
| yydefault -- do the default action for the current state. |
`-----------------------------------------------------------*/
yydefault:
yyn = yydefact[yystate];
if (yyn == 0)
goto yyerrlab;
goto yyreduce;
/*-----------------------------.
| yyreduce -- do a reduction. |
`-----------------------------*/
yyreduce:
/* yyn is the number of a rule to reduce with. */
yylen = yyr2[yyn];
/* If YYLEN is nonzero, implement the default value of the action:
'$$ = $1'.
Otherwise, the following line sets YYVAL to garbage.
This behavior is undocumented and Bison
users should not rely upon it. Assigning to YYVAL
unconditionally makes the parser a bit smaller, and it avoids a
GCC warning that YYVAL may be used uninitialized. */
yyval = yyvsp[1-yylen];
YY_REDUCE_PRINT (yyn);
switch (yyn)
{
case 18:
#line 195 "./util/configparser.y"
2020-09-16 12:38:51 -04:00
{
OUTYY(("\nP(force-toplevel)\n"));
}
2020-11-11 05:37:32 -05:00
#line 2881 "util/configparser.c"
break;
case 19:
#line 201 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("\nP(server:)\n"));
}
2020-11-11 05:37:32 -05:00
#line 2889 "util/configparser.c"
break;
case 226:
#line 299 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
struct config_stub* s;
OUTYY(("\nP(stub_zone:)\n"));
s = (struct config_stub*)calloc(1, sizeof(struct config_stub));
if(s) {
s->next = cfg_parser->cfg->stubs;
cfg_parser->cfg->stubs = s;
} else
yyerror("out of memory");
}
2020-11-11 05:37:32 -05:00
#line 2904 "util/configparser.c"
break;
case 236:
#line 316 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
struct config_stub* s;
OUTYY(("\nP(forward_zone:)\n"));
s = (struct config_stub*)calloc(1, sizeof(struct config_stub));
if(s) {
s->next = cfg_parser->cfg->forwards;
cfg_parser->cfg->forwards = s;
} else
yyerror("out of memory");
}
2020-11-11 05:37:32 -05:00
#line 2919 "util/configparser.c"
break;
case 245:
#line 333 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
struct config_view* s;
OUTYY(("\nP(view:)\n"));
s = (struct config_view*)calloc(1, sizeof(struct config_view));
if(s) {
s->next = cfg_parser->cfg->views;
if(s->next && !s->next->name)
yyerror("view without name");
cfg_parser->cfg->views = s;
} else
yyerror("out of memory");
}
2020-11-11 05:37:32 -05:00
#line 2936 "util/configparser.c"
break;
case 255:
#line 352 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
struct config_auth* s;
OUTYY(("\nP(auth_zone:)\n"));
s = (struct config_auth*)calloc(1, sizeof(struct config_auth));
if(s) {
s->next = cfg_parser->cfg->auths;
cfg_parser->cfg->auths = s;
/* defaults for auth zone */
s->for_downstream = 1;
s->for_upstream = 1;
s->fallback_enabled = 0;
s->isrpz = 0;
} else
yyerror("out of memory");
}
2020-11-11 05:37:32 -05:00
#line 2956 "util/configparser.c"
break;
case 266:
#line 376 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
uint8_t* bitlist;
2019-12-23 10:02:43 -05:00
size_t len = 0;
OUTYY(("P(server_local_zone_tag:%s)\n", (yyvsp[0].str)));
bitlist = config_parse_taglist(cfg_parser->cfg, (yyvsp[0].str),
&len);
free((yyvsp[0].str));
if(!bitlist) {
yyerror("could not parse tags, (define-tag them first)");
}
if(bitlist) {
cfg_parser->cfg->auths->rpz_taglist = bitlist;
cfg_parser->cfg->auths->rpz_taglistlen = len;
}
}
2020-11-11 05:37:32 -05:00
#line 2977 "util/configparser.c"
break;
case 267:
#line 395 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(rpz_action_override:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "nxdomain")!=0 && strcmp((yyvsp[0].str), "nodata")!=0 &&
strcmp((yyvsp[0].str), "passthru")!=0 && strcmp((yyvsp[0].str), "drop")!=0 &&
strcmp((yyvsp[0].str), "cname")!=0 && strcmp((yyvsp[0].str), "disabled")!=0) {
yyerror("rpz-action-override action: expected nxdomain, "
2019-12-23 10:02:43 -05:00
"nodata, passthru, drop, cname or disabled");
free((yyvsp[0].str));
cfg_parser->cfg->auths->rpz_action_override = NULL;
}
else {
cfg_parser->cfg->auths->rpz_action_override = (yyvsp[0].str);
}
}
2020-11-11 05:37:32 -05:00
#line 2996 "util/configparser.c"
break;
case 268:
#line 412 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(rpz_cname_override:%s)\n", (yyvsp[0].str)));
free(cfg_parser->cfg->auths->rpz_cname);
cfg_parser->cfg->auths->rpz_cname = (yyvsp[0].str);
}
2020-11-11 05:37:32 -05:00
#line 3006 "util/configparser.c"
break;
case 269:
#line 420 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(rpz_log:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->auths->rpz_log = (strcmp((yyvsp[0].str), "yes")==0);
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 3018 "util/configparser.c"
break;
case 270:
#line 430 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
2019-06-03 09:46:39 -04:00
OUTYY(("P(rpz_log_name:%s)\n", (yyvsp[0].str)));
free(cfg_parser->cfg->auths->rpz_log_name);
cfg_parser->cfg->auths->rpz_log_name = (yyvsp[0].str);
}
2020-11-11 05:37:32 -05:00
#line 3028 "util/configparser.c"
2019-06-03 09:46:39 -04:00
break;
case 271:
#line 438 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
struct config_auth* s;
OUTYY(("\nP(rpz:)\n"));
s = (struct config_auth*)calloc(1, sizeof(struct config_auth));
if(s) {
s->next = cfg_parser->cfg->auths;
cfg_parser->cfg->auths = s;
/* defaults for RPZ auth zone */
s->for_downstream = 0;
s->for_upstream = 0;
s->fallback_enabled = 0;
s->isrpz = 1;
} else
yyerror("out of memory");
}
2020-11-11 05:37:32 -05:00
#line 3048 "util/configparser.c"
break;
case 284:
#line 461 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_num_threads:%s)\n", (yyvsp[0].str)));
if(atoi((yyvsp[0].str)) == 0 && strcmp((yyvsp[0].str), "0") != 0)
yyerror("number expected");
else cfg_parser->cfg->num_threads = atoi((yyvsp[0].str));
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 3060 "util/configparser.c"
break;
case 285:
#line 470 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_verbosity:%s)\n", (yyvsp[0].str)));
if(atoi((yyvsp[0].str)) == 0 && strcmp((yyvsp[0].str), "0") != 0)
yyerror("number expected");
else cfg_parser->cfg->verbosity = atoi((yyvsp[0].str));
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 3072 "util/configparser.c"
break;
case 286:
#line 479 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_statistics_interval:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "") == 0 || strcmp((yyvsp[0].str), "0") == 0)
cfg_parser->cfg->stat_interval = 0;
else if(atoi((yyvsp[0].str)) == 0)
yyerror("number expected");
else cfg_parser->cfg->stat_interval = atoi((yyvsp[0].str));
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 3086 "util/configparser.c"
break;
case 287:
#line 490 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_statistics_cumulative:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->stat_cumulative = (strcmp((yyvsp[0].str), "yes")==0);
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 3098 "util/configparser.c"
break;
case 288:
#line 499 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_extended_statistics:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->stat_extended = (strcmp((yyvsp[0].str), "yes")==0);
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 3110 "util/configparser.c"
break;
case 289:
#line 508 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_shm_enable:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->shm_enable = (strcmp((yyvsp[0].str), "yes")==0);
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 3122 "util/configparser.c"
break;
case 290:
#line 517 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_shm_key:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "") == 0 || strcmp((yyvsp[0].str), "0") == 0)
cfg_parser->cfg->shm_key = 0;
else if(atoi((yyvsp[0].str)) == 0)
yyerror("number expected");
else cfg_parser->cfg->shm_key = atoi((yyvsp[0].str));
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 3136 "util/configparser.c"
break;
case 291:
#line 528 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_port:%s)\n", (yyvsp[0].str)));
if(atoi((yyvsp[0].str)) == 0)
yyerror("port number expected");
else cfg_parser->cfg->port = atoi((yyvsp[0].str));
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 3148 "util/configparser.c"
break;
case 292:
#line 537 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
#ifdef CLIENT_SUBNET
OUTYY(("P(server_send_client_subnet:%s)\n", (yyvsp[0].str)));
if(!cfg_strlist_insert(&cfg_parser->cfg->client_subnet, (yyvsp[0].str)))
fatal_exit("out of memory adding client-subnet");
#else
OUTYY(("P(Compiled without edns subnet option, ignoring)\n"));
free((yyvsp[0].str));
#endif
}
2020-11-11 05:37:32 -05:00
#line 3163 "util/configparser.c"
break;
case 293:
#line 549 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
#ifdef CLIENT_SUBNET
OUTYY(("P(server_client_subnet_zone:%s)\n", (yyvsp[0].str)));
if(!cfg_strlist_insert(&cfg_parser->cfg->client_subnet_zone,
(yyvsp[0].str)))
fatal_exit("out of memory adding client-subnet-zone");
#else
OUTYY(("P(Compiled without edns subnet option, ignoring)\n"));
free((yyvsp[0].str));
#endif
}
2020-11-11 05:37:32 -05:00
#line 3179 "util/configparser.c"
break;
case 294:
#line 563 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
#ifdef CLIENT_SUBNET
OUTYY(("P(server_client_subnet_always_forward:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else
cfg_parser->cfg->client_subnet_always_forward =
(strcmp((yyvsp[0].str), "yes")==0);
#else
OUTYY(("P(Compiled without edns subnet option, ignoring)\n"));
#endif
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 3197 "util/configparser.c"
break;
case 295:
#line 578 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
#ifdef CLIENT_SUBNET
OUTYY(("P(client_subnet_opcode:%s)\n", (yyvsp[0].str)));
OUTYY(("P(Deprecated option, ignoring)\n"));
#else
OUTYY(("P(Compiled without edns subnet option, ignoring)\n"));
#endif
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 3211 "util/configparser.c"
break;
case 296:
#line 589 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
#ifdef CLIENT_SUBNET
OUTYY(("P(max_client_subnet_ipv4:%s)\n", (yyvsp[0].str)));
if(atoi((yyvsp[0].str)) == 0 && strcmp((yyvsp[0].str), "0") != 0)
yyerror("IPv4 subnet length expected");
else if (atoi((yyvsp[0].str)) > 32)
cfg_parser->cfg->max_client_subnet_ipv4 = 32;
else if (atoi((yyvsp[0].str)) < 0)
cfg_parser->cfg->max_client_subnet_ipv4 = 0;
else cfg_parser->cfg->max_client_subnet_ipv4 = (uint8_t)atoi((yyvsp[0].str));
#else
OUTYY(("P(Compiled without edns subnet option, ignoring)\n"));
#endif
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 3231 "util/configparser.c"
break;
case 297:
#line 606 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
#ifdef CLIENT_SUBNET
OUTYY(("P(max_client_subnet_ipv6:%s)\n", (yyvsp[0].str)));
if(atoi((yyvsp[0].str)) == 0 && strcmp((yyvsp[0].str), "0") != 0)
yyerror("Ipv6 subnet length expected");
else if (atoi((yyvsp[0].str)) > 128)
cfg_parser->cfg->max_client_subnet_ipv6 = 128;
else if (atoi((yyvsp[0].str)) < 0)
cfg_parser->cfg->max_client_subnet_ipv6 = 0;
else cfg_parser->cfg->max_client_subnet_ipv6 = (uint8_t)atoi((yyvsp[0].str));
#else
OUTYY(("P(Compiled without edns subnet option, ignoring)\n"));
#endif
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 3251 "util/configparser.c"
break;
case 298:
#line 623 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
#ifdef CLIENT_SUBNET
OUTYY(("P(min_client_subnet_ipv4:%s)\n", (yyvsp[0].str)));
if(atoi((yyvsp[0].str)) == 0 && strcmp((yyvsp[0].str), "0") != 0)
yyerror("IPv4 subnet length expected");
else if (atoi((yyvsp[0].str)) > 32)
cfg_parser->cfg->min_client_subnet_ipv4 = 32;
else if (atoi((yyvsp[0].str)) < 0)
cfg_parser->cfg->min_client_subnet_ipv4 = 0;
else cfg_parser->cfg->min_client_subnet_ipv4 = (uint8_t)atoi((yyvsp[0].str));
#else
OUTYY(("P(Compiled without edns subnet option, ignoring)\n"));
#endif
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 3271 "util/configparser.c"
break;
case 299:
#line 640 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
#ifdef CLIENT_SUBNET
OUTYY(("P(min_client_subnet_ipv6:%s)\n", (yyvsp[0].str)));
if(atoi((yyvsp[0].str)) == 0 && strcmp((yyvsp[0].str), "0") != 0)
yyerror("Ipv6 subnet length expected");
else if (atoi((yyvsp[0].str)) > 128)
cfg_parser->cfg->min_client_subnet_ipv6 = 128;
else if (atoi((yyvsp[0].str)) < 0)
cfg_parser->cfg->min_client_subnet_ipv6 = 0;
else cfg_parser->cfg->min_client_subnet_ipv6 = (uint8_t)atoi((yyvsp[0].str));
#else
OUTYY(("P(Compiled without edns subnet option, ignoring)\n"));
#endif
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 3291 "util/configparser.c"
break;
case 300:
#line 657 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
#ifdef CLIENT_SUBNET
OUTYY(("P(max_ecs_tree_size_ipv4:%s)\n", (yyvsp[0].str)));
if(atoi((yyvsp[0].str)) == 0 && strcmp((yyvsp[0].str), "0") != 0)
yyerror("IPv4 ECS tree size expected");
else if (atoi((yyvsp[0].str)) < 0)
cfg_parser->cfg->max_ecs_tree_size_ipv4 = 0;
else cfg_parser->cfg->max_ecs_tree_size_ipv4 = (uint32_t)atoi((yyvsp[0].str));
#else
OUTYY(("P(Compiled without edns subnet option, ignoring)\n"));
#endif
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 3309 "util/configparser.c"
break;
case 301:
#line 672 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
#ifdef CLIENT_SUBNET
OUTYY(("P(max_ecs_tree_size_ipv6:%s)\n", (yyvsp[0].str)));
if(atoi((yyvsp[0].str)) == 0 && strcmp((yyvsp[0].str), "0") != 0)
yyerror("IPv6 ECS tree size expected");
else if (atoi((yyvsp[0].str)) < 0)
cfg_parser->cfg->max_ecs_tree_size_ipv6 = 0;
else cfg_parser->cfg->max_ecs_tree_size_ipv6 = (uint32_t)atoi((yyvsp[0].str));
#else
OUTYY(("P(Compiled without edns subnet option, ignoring)\n"));
#endif
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 3327 "util/configparser.c"
break;
case 302:
#line 687 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_interface:%s)\n", (yyvsp[0].str)));
if(cfg_parser->cfg->num_ifs == 0)
cfg_parser->cfg->ifs = calloc(1, sizeof(char*));
else cfg_parser->cfg->ifs = realloc(cfg_parser->cfg->ifs,
(cfg_parser->cfg->num_ifs+1)*sizeof(char*));
if(!cfg_parser->cfg->ifs)
yyerror("out of memory");
else
cfg_parser->cfg->ifs[cfg_parser->cfg->num_ifs++] = (yyvsp[0].str);
}
2020-11-11 05:37:32 -05:00
#line 3343 "util/configparser.c"
break;
case 303:
#line 700 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_outgoing_interface:%s)\n", (yyvsp[0].str)));
if(cfg_parser->cfg->num_out_ifs == 0)
cfg_parser->cfg->out_ifs = calloc(1, sizeof(char*));
else cfg_parser->cfg->out_ifs = realloc(
cfg_parser->cfg->out_ifs,
(cfg_parser->cfg->num_out_ifs+1)*sizeof(char*));
if(!cfg_parser->cfg->out_ifs)
yyerror("out of memory");
else
cfg_parser->cfg->out_ifs[
cfg_parser->cfg->num_out_ifs++] = (yyvsp[0].str);
}
2020-11-11 05:37:32 -05:00
#line 3361 "util/configparser.c"
break;
case 304:
#line 715 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_outgoing_range:%s)\n", (yyvsp[0].str)));
if(atoi((yyvsp[0].str)) == 0)
yyerror("number expected");
else cfg_parser->cfg->outgoing_num_ports = atoi((yyvsp[0].str));
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 3373 "util/configparser.c"
break;
case 305:
#line 724 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_outgoing_port_permit:%s)\n", (yyvsp[0].str)));
if(!cfg_mark_ports((yyvsp[0].str), 1,
cfg_parser->cfg->outgoing_avail_ports, 65536))
yyerror("port number or range (\"low-high\") expected");
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 3385 "util/configparser.c"
break;
case 306:
#line 733 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_outgoing_port_avoid:%s)\n", (yyvsp[0].str)));
if(!cfg_mark_ports((yyvsp[0].str), 0,
cfg_parser->cfg->outgoing_avail_ports, 65536))
yyerror("port number or range (\"low-high\") expected");
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 3397 "util/configparser.c"
break;
case 307:
#line 742 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_outgoing_num_tcp:%s)\n", (yyvsp[0].str)));
if(atoi((yyvsp[0].str)) == 0 && strcmp((yyvsp[0].str), "0") != 0)
yyerror("number expected");
else cfg_parser->cfg->outgoing_num_tcp = atoi((yyvsp[0].str));
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 3409 "util/configparser.c"
break;
case 308:
#line 751 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_incoming_num_tcp:%s)\n", (yyvsp[0].str)));
if(atoi((yyvsp[0].str)) == 0 && strcmp((yyvsp[0].str), "0") != 0)
yyerror("number expected");
else cfg_parser->cfg->incoming_num_tcp = atoi((yyvsp[0].str));
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 3421 "util/configparser.c"
break;
case 309:
#line 760 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_interface_automatic:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->if_automatic = (strcmp((yyvsp[0].str), "yes")==0);
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 3433 "util/configparser.c"
break;
case 310:
#line 769 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_do_ip4:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->do_ip4 = (strcmp((yyvsp[0].str), "yes")==0);
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 3445 "util/configparser.c"
break;
case 311:
#line 778 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_do_ip6:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->do_ip6 = (strcmp((yyvsp[0].str), "yes")==0);
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 3457 "util/configparser.c"
break;
case 312:
#line 787 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_do_udp:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->do_udp = (strcmp((yyvsp[0].str), "yes")==0);
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 3469 "util/configparser.c"
break;
case 313:
#line 796 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_do_tcp:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->do_tcp = (strcmp((yyvsp[0].str), "yes")==0);
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 3481 "util/configparser.c"
break;
case 314:
#line 805 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_prefer_ip4:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->prefer_ip4 = (strcmp((yyvsp[0].str), "yes")==0);
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 3493 "util/configparser.c"
break;
case 315:
#line 814 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_prefer_ip6:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->prefer_ip6 = (strcmp((yyvsp[0].str), "yes")==0);
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 3505 "util/configparser.c"
break;
case 316:
#line 823 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_tcp_mss:%s)\n", (yyvsp[0].str)));
if(atoi((yyvsp[0].str)) == 0 && strcmp((yyvsp[0].str), "0") != 0)
yyerror("number expected");
else cfg_parser->cfg->tcp_mss = atoi((yyvsp[0].str));
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 3517 "util/configparser.c"
break;
case 317:
#line 832 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_outgoing_tcp_mss:%s)\n", (yyvsp[0].str)));
if(atoi((yyvsp[0].str)) == 0 && strcmp((yyvsp[0].str), "0") != 0)
yyerror("number expected");
else cfg_parser->cfg->outgoing_tcp_mss = atoi((yyvsp[0].str));
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 3529 "util/configparser.c"
break;
case 318:
#line 841 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_tcp_idle_timeout:%s)\n", (yyvsp[0].str)));
if(atoi((yyvsp[0].str)) == 0 && strcmp((yyvsp[0].str), "0") != 0)
yyerror("number expected");
else if (atoi((yyvsp[0].str)) > 120000)
cfg_parser->cfg->tcp_idle_timeout = 120000;
else if (atoi((yyvsp[0].str)) < 1)
cfg_parser->cfg->tcp_idle_timeout = 1;
else cfg_parser->cfg->tcp_idle_timeout = atoi((yyvsp[0].str));
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 3545 "util/configparser.c"
break;
case 319:
#line 854 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_tcp_keepalive:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->do_tcp_keepalive = (strcmp((yyvsp[0].str), "yes")==0);
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 3557 "util/configparser.c"
break;
case 320:
#line 863 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_tcp_keepalive_timeout:%s)\n", (yyvsp[0].str)));
if(atoi((yyvsp[0].str)) == 0 && strcmp((yyvsp[0].str), "0") != 0)
yyerror("number expected");
else if (atoi((yyvsp[0].str)) > 6553500)
cfg_parser->cfg->tcp_keepalive_timeout = 6553500;
else if (atoi((yyvsp[0].str)) < 1)
cfg_parser->cfg->tcp_keepalive_timeout = 0;
else cfg_parser->cfg->tcp_keepalive_timeout = atoi((yyvsp[0].str));
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 3573 "util/configparser.c"
break;
case 321:
#line 876 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_tcp_upstream:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->tcp_upstream = (strcmp((yyvsp[0].str), "yes")==0);
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 3585 "util/configparser.c"
break;
case 322:
#line 885 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_udp_upstream_without_downstream:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->udp_upstream_without_downstream = (strcmp((yyvsp[0].str), "yes")==0);
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 3597 "util/configparser.c"
break;
case 323:
#line 894 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_ssl_upstream:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->ssl_upstream = (strcmp((yyvsp[0].str), "yes")==0);
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 3609 "util/configparser.c"
break;
case 324:
#line 903 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_ssl_service_key:%s)\n", (yyvsp[0].str)));
free(cfg_parser->cfg->ssl_service_key);
cfg_parser->cfg->ssl_service_key = (yyvsp[0].str);
}
2020-11-11 05:37:32 -05:00
#line 3619 "util/configparser.c"
break;
case 325:
#line 910 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_ssl_service_pem:%s)\n", (yyvsp[0].str)));
free(cfg_parser->cfg->ssl_service_pem);
cfg_parser->cfg->ssl_service_pem = (yyvsp[0].str);
}
2020-11-11 05:37:32 -05:00
#line 3629 "util/configparser.c"
break;
case 326:
#line 917 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_ssl_port:%s)\n", (yyvsp[0].str)));
if(atoi((yyvsp[0].str)) == 0)
yyerror("port number expected");
else cfg_parser->cfg->ssl_port = atoi((yyvsp[0].str));
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 3641 "util/configparser.c"
break;
case 327:
#line 926 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_tls_cert_bundle:%s)\n", (yyvsp[0].str)));
free(cfg_parser->cfg->tls_cert_bundle);
cfg_parser->cfg->tls_cert_bundle = (yyvsp[0].str);
}
2020-11-11 05:37:32 -05:00
#line 3651 "util/configparser.c"
break;
case 328:
#line 933 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_tls_win_cert:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->tls_win_cert = (strcmp((yyvsp[0].str), "yes")==0);
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 3663 "util/configparser.c"
break;
case 329:
#line 942 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_tls_additional_port:%s)\n", (yyvsp[0].str)));
if(!cfg_strlist_insert(&cfg_parser->cfg->tls_additional_port,
(yyvsp[0].str)))
yyerror("out of memory");
}
2020-11-11 05:37:32 -05:00
#line 3674 "util/configparser.c"
break;
case 330:
#line 950 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_tls_ciphers:%s)\n", (yyvsp[0].str)));
free(cfg_parser->cfg->tls_ciphers);
cfg_parser->cfg->tls_ciphers = (yyvsp[0].str);
}
2020-11-11 05:37:32 -05:00
#line 3684 "util/configparser.c"
break;
case 331:
#line 957 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_tls_ciphersuites:%s)\n", (yyvsp[0].str)));
free(cfg_parser->cfg->tls_ciphersuites);
cfg_parser->cfg->tls_ciphersuites = (yyvsp[0].str);
}
2020-11-11 05:37:32 -05:00
#line 3694 "util/configparser.c"
break;
case 332:
#line 964 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_tls_session_ticket_keys:%s)\n", (yyvsp[0].str)));
if(!cfg_strlist_append(&cfg_parser->cfg->tls_session_ticket_keys,
(yyvsp[0].str)))
yyerror("out of memory");
}
2020-11-11 05:37:32 -05:00
#line 3705 "util/configparser.c"
break;
case 333:
#line 972 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_tls_use_sni:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->tls_use_sni = (strcmp((yyvsp[0].str), "yes")==0);
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 3717 "util/configparser.c"
break;
case 334:
#line 981 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
2020-05-07 10:36:26 -04:00
OUTYY(("P(server_https_port:%s)\n", (yyvsp[0].str)));
if(atoi((yyvsp[0].str)) == 0)
yyerror("port number expected");
else cfg_parser->cfg->https_port = atoi((yyvsp[0].str));
free((yyvsp[0].str));
2020-05-07 11:12:26 -04:00
}
2020-11-11 05:37:32 -05:00
#line 3729 "util/configparser.c"
2020-05-07 11:12:26 -04:00
break;
case 335:
2020-11-11 05:37:32 -05:00
#line 989 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_http_endpoint:%s)\n", (yyvsp[0].str)));
free(cfg_parser->cfg->http_endpoint);
if((yyvsp[0].str) && (yyvsp[0].str)[0] != '/') {
cfg_parser->cfg->http_endpoint = malloc(strlen((yyvsp[0].str))+2);
2020-09-16 12:38:51 -04:00
if(!cfg_parser->cfg->http_endpoint)
yyerror("out of memory");
cfg_parser->cfg->http_endpoint[0] = '/';
2020-09-16 12:38:51 -04:00
memmove(cfg_parser->cfg->http_endpoint+1, (yyvsp[0].str),
strlen((yyvsp[0].str))+1);
free((yyvsp[0].str));
} else {
cfg_parser->cfg->http_endpoint = (yyvsp[0].str);
}
}
2020-11-11 05:37:32 -05:00
#line 3749 "util/configparser.c"
break;
case 336:
2020-11-11 05:37:32 -05:00
#line 1005 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_http_max_streams:%s)\n", (yyvsp[0].str)));
if(atoi((yyvsp[0].str)) == 0 && strcmp((yyvsp[0].str), "0") != 0)
yyerror("number expected");
else cfg_parser->cfg->http_max_streams = atoi((yyvsp[0].str));
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 3761 "util/configparser.c"
break;
case 337:
2020-11-11 05:37:32 -05:00
#line 1013 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_http_query_buffer_size:%s)\n", (yyvsp[0].str)));
if(!cfg_parse_memsize((yyvsp[0].str),
&cfg_parser->cfg->http_query_buffer_size))
yyerror("memory size expected");
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 3773 "util/configparser.c"
break;
case 338:
2020-11-11 05:37:32 -05:00
#line 1021 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_http_response_buffer_size:%s)\n", (yyvsp[0].str)));
if(!cfg_parse_memsize((yyvsp[0].str),
&cfg_parser->cfg->http_response_buffer_size))
yyerror("memory size expected");
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 3785 "util/configparser.c"
break;
case 339:
2020-11-11 05:37:32 -05:00
#line 1029 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_http_nodelay:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->http_nodelay = (strcmp((yyvsp[0].str), "yes")==0);
2020-05-07 10:36:26 -04:00
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 3797 "util/configparser.c"
2020-05-07 10:36:26 -04:00
break;
case 340:
2020-11-11 05:37:32 -05:00
#line 1037 "./util/configparser.y"
{
OUTYY(("P(server_http_notls_downstream:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->http_notls_downstream = (strcmp((yyvsp[0].str), "yes")==0);
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 3809 "util/configparser.c"
break;
case 341:
2020-11-11 05:37:32 -05:00
#line 1045 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_use_systemd:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->use_systemd = (strcmp((yyvsp[0].str), "yes")==0);
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 3821 "util/configparser.c"
break;
case 342:
2020-11-11 05:37:32 -05:00
#line 1054 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_do_daemonize:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->do_daemonize = (strcmp((yyvsp[0].str), "yes")==0);
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 3833 "util/configparser.c"
break;
case 343:
2020-11-11 05:37:32 -05:00
#line 1063 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_use_syslog:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->use_syslog = (strcmp((yyvsp[0].str), "yes")==0);
#if !defined(HAVE_SYSLOG_H) && !defined(UB_ON_WINDOWS)
if(strcmp((yyvsp[0].str), "yes") == 0)
yyerror("no syslog services are available. "
"(reconfigure and compile to add)");
#endif
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 3850 "util/configparser.c"
break;
case 344:
2020-11-11 05:37:32 -05:00
#line 1077 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_log_time_ascii:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->log_time_ascii = (strcmp((yyvsp[0].str), "yes")==0);
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 3862 "util/configparser.c"
break;
case 345:
2020-11-11 05:37:32 -05:00
#line 1086 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_log_queries:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->log_queries = (strcmp((yyvsp[0].str), "yes")==0);
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 3874 "util/configparser.c"
break;
case 346:
2020-11-11 05:37:32 -05:00
#line 1095 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_log_replies:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->log_replies = (strcmp((yyvsp[0].str), "yes")==0);
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 3886 "util/configparser.c"
break;
case 347:
2020-11-11 05:37:32 -05:00
#line 1104 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_log_tag_queryreply:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->log_tag_queryreply = (strcmp((yyvsp[0].str), "yes")==0);
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 3898 "util/configparser.c"
break;
case 348:
2020-11-11 05:37:32 -05:00
#line 1113 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_log_servfail:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->log_servfail = (strcmp((yyvsp[0].str), "yes")==0);
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 3910 "util/configparser.c"
break;
case 349:
2020-11-11 05:37:32 -05:00
#line 1122 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_log_local_actions:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->log_local_actions = (strcmp((yyvsp[0].str), "yes")==0);
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 3922 "util/configparser.c"
break;
case 350:
2020-11-11 05:37:32 -05:00
#line 1131 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_chroot:%s)\n", (yyvsp[0].str)));
free(cfg_parser->cfg->chrootdir);
cfg_parser->cfg->chrootdir = (yyvsp[0].str);
}
2020-11-11 05:37:32 -05:00
#line 3932 "util/configparser.c"
break;
case 351:
2020-11-11 05:37:32 -05:00
#line 1138 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_username:%s)\n", (yyvsp[0].str)));
free(cfg_parser->cfg->username);
cfg_parser->cfg->username = (yyvsp[0].str);
}
2020-11-11 05:37:32 -05:00
#line 3942 "util/configparser.c"
break;
case 352:
2020-11-11 05:37:32 -05:00
#line 1145 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_directory:%s)\n", (yyvsp[0].str)));
free(cfg_parser->cfg->directory);
cfg_parser->cfg->directory = (yyvsp[0].str);
/* change there right away for includes relative to this */
if((yyvsp[0].str)[0]) {
char* d;
#ifdef UB_ON_WINDOWS
w_config_adjust_directory(cfg_parser->cfg);
#endif
d = cfg_parser->cfg->directory;
/* adjust directory if we have already chroot,
* like, we reread after sighup */
if(cfg_parser->chroot && cfg_parser->chroot[0] &&
strncmp(d, cfg_parser->chroot, strlen(
cfg_parser->chroot)) == 0)
d += strlen(cfg_parser->chroot);
if(d[0]) {
if(chdir(d))
log_err("cannot chdir to directory: %s (%s)",
d, strerror(errno));
}
}
}
2020-11-11 05:37:32 -05:00
#line 3971 "util/configparser.c"
break;
case 353:
2020-11-11 05:37:32 -05:00
#line 1171 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_logfile:%s)\n", (yyvsp[0].str)));
free(cfg_parser->cfg->logfile);
cfg_parser->cfg->logfile = (yyvsp[0].str);
cfg_parser->cfg->use_syslog = 0;
}
2020-11-11 05:37:32 -05:00
#line 3982 "util/configparser.c"
break;
case 354:
2020-11-11 05:37:32 -05:00
#line 1179 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_pidfile:%s)\n", (yyvsp[0].str)));
free(cfg_parser->cfg->pidfile);
cfg_parser->cfg->pidfile = (yyvsp[0].str);
}
2020-11-11 05:37:32 -05:00
#line 3992 "util/configparser.c"
break;
case 355:
2020-11-11 05:37:32 -05:00
#line 1186 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_root_hints:%s)\n", (yyvsp[0].str)));
if(!cfg_strlist_insert(&cfg_parser->cfg->root_hints, (yyvsp[0].str)))
yyerror("out of memory");
}
2020-11-11 05:37:32 -05:00
#line 4002 "util/configparser.c"
break;
case 356:
2020-11-11 05:37:32 -05:00
#line 1193 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_dlv_anchor_file:%s)\n", (yyvsp[0].str)));
2020-08-04 03:05:09 -04:00
log_warn("option dlv-anchor-file ignored: DLV is decommissioned");
2020-08-06 02:14:14 -04:00
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 4012 "util/configparser.c"
break;
case 357:
2020-11-11 05:37:32 -05:00
#line 1200 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_dlv_anchor:%s)\n", (yyvsp[0].str)));
2020-08-04 03:05:09 -04:00
log_warn("option dlv-anchor ignored: DLV is decommissioned");
2020-08-06 02:14:14 -04:00
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 4022 "util/configparser.c"
break;
case 358:
2020-11-11 05:37:32 -05:00
#line 1207 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_auto_trust_anchor_file:%s)\n", (yyvsp[0].str)));
if(!cfg_strlist_insert(&cfg_parser->cfg->
auto_trust_anchor_file_list, (yyvsp[0].str)))
yyerror("out of memory");
}
2020-11-11 05:37:32 -05:00
#line 4033 "util/configparser.c"
break;
case 359:
2020-11-11 05:37:32 -05:00
#line 1215 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_trust_anchor_file:%s)\n", (yyvsp[0].str)));
if(!cfg_strlist_insert(&cfg_parser->cfg->
trust_anchor_file_list, (yyvsp[0].str)))
yyerror("out of memory");
}
2020-11-11 05:37:32 -05:00
#line 4044 "util/configparser.c"
break;
case 360:
2020-11-11 05:37:32 -05:00
#line 1223 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_trusted_keys_file:%s)\n", (yyvsp[0].str)));
if(!cfg_strlist_insert(&cfg_parser->cfg->
trusted_keys_file_list, (yyvsp[0].str)))
yyerror("out of memory");
}
2020-11-11 05:37:32 -05:00
#line 4055 "util/configparser.c"
break;
case 361:
2020-11-11 05:37:32 -05:00
#line 1231 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_trust_anchor:%s)\n", (yyvsp[0].str)));
if(!cfg_strlist_insert(&cfg_parser->cfg->trust_anchor_list, (yyvsp[0].str)))
yyerror("out of memory");
}
2020-11-11 05:37:32 -05:00
#line 4065 "util/configparser.c"
break;
case 362:
2020-11-11 05:37:32 -05:00
#line 1238 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_trust_anchor_signaling:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else
cfg_parser->cfg->trust_anchor_signaling =
(strcmp((yyvsp[0].str), "yes")==0);
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 4079 "util/configparser.c"
break;
case 363:
2020-11-11 05:37:32 -05:00
#line 1249 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_root_key_sentinel:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else
cfg_parser->cfg->root_key_sentinel =
(strcmp((yyvsp[0].str), "yes")==0);
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 4093 "util/configparser.c"
break;
case 364:
2020-11-11 05:37:32 -05:00
#line 1260 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_domain_insecure:%s)\n", (yyvsp[0].str)));
if(!cfg_strlist_insert(&cfg_parser->cfg->domain_insecure, (yyvsp[0].str)))
yyerror("out of memory");
}
2020-11-11 05:37:32 -05:00
#line 4103 "util/configparser.c"
break;
case 365:
2020-11-11 05:37:32 -05:00
#line 1267 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_hide_identity:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->hide_identity = (strcmp((yyvsp[0].str), "yes")==0);
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 4115 "util/configparser.c"
break;
case 366:
2020-11-11 05:37:32 -05:00
#line 1276 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_hide_version:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->hide_version = (strcmp((yyvsp[0].str), "yes")==0);
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 4127 "util/configparser.c"
break;
case 367:
2020-11-11 05:37:32 -05:00
#line 1285 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_hide_trustanchor:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->hide_trustanchor = (strcmp((yyvsp[0].str), "yes")==0);
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 4139 "util/configparser.c"
break;
case 368:
2020-11-11 05:37:32 -05:00
#line 1294 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_identity:%s)\n", (yyvsp[0].str)));
free(cfg_parser->cfg->identity);
cfg_parser->cfg->identity = (yyvsp[0].str);
}
2020-11-11 05:37:32 -05:00
#line 4149 "util/configparser.c"
break;
case 369:
2020-11-11 05:37:32 -05:00
#line 1301 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_version:%s)\n", (yyvsp[0].str)));
free(cfg_parser->cfg->version);
cfg_parser->cfg->version = (yyvsp[0].str);
}
2020-11-11 05:37:32 -05:00
#line 4159 "util/configparser.c"
break;
case 370:
2020-11-11 05:37:32 -05:00
#line 1308 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_so_rcvbuf:%s)\n", (yyvsp[0].str)));
if(!cfg_parse_memsize((yyvsp[0].str), &cfg_parser->cfg->so_rcvbuf))
yyerror("buffer size expected");
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 4170 "util/configparser.c"
break;
case 371:
2020-11-11 05:37:32 -05:00
#line 1316 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_so_sndbuf:%s)\n", (yyvsp[0].str)));
if(!cfg_parse_memsize((yyvsp[0].str), &cfg_parser->cfg->so_sndbuf))
yyerror("buffer size expected");
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 4181 "util/configparser.c"
break;
case 372:
2020-11-11 05:37:32 -05:00
#line 1324 "./util/configparser.y"
{
OUTYY(("P(server_so_reuseport:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->so_reuseport =
(strcmp((yyvsp[0].str), "yes")==0);
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 4194 "util/configparser.c"
break;
case 373:
2020-11-11 05:37:32 -05:00
#line 1334 "./util/configparser.y"
{
OUTYY(("P(server_ip_transparent:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->ip_transparent =
(strcmp((yyvsp[0].str), "yes")==0);
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 4207 "util/configparser.c"
break;
case 374:
2020-11-11 05:37:32 -05:00
#line 1344 "./util/configparser.y"
{
OUTYY(("P(server_ip_freebind:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->ip_freebind =
(strcmp((yyvsp[0].str), "yes")==0);
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 4220 "util/configparser.c"
break;
case 375:
2020-11-11 05:37:32 -05:00
#line 1354 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_ip_dscp:%s)\n", (yyvsp[0].str)));
if(atoi((yyvsp[0].str)) == 0 && strcmp((yyvsp[0].str), "0") != 0)
yyerror("number expected");
else if (atoi((yyvsp[0].str)) > 63)
yyerror("value too large (max 63)");
else if (atoi((yyvsp[0].str)) < 0)
yyerror("value too small (min 0)");
else
cfg_parser->cfg->ip_dscp = atoi((yyvsp[0].str));
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 4237 "util/configparser.c"
break;
case 376:
2020-11-11 05:37:32 -05:00
#line 1368 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_stream_wait_size:%s)\n", (yyvsp[0].str)));
if(!cfg_parse_memsize((yyvsp[0].str), &cfg_parser->cfg->stream_wait_size))
yyerror("memory size expected");
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 4248 "util/configparser.c"
break;
case 377:
2020-11-11 05:37:32 -05:00
#line 1376 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_edns_buffer_size:%s)\n", (yyvsp[0].str)));
if(atoi((yyvsp[0].str)) == 0)
yyerror("number expected");
else if (atoi((yyvsp[0].str)) < 12)
yyerror("edns buffer size too small");
else if (atoi((yyvsp[0].str)) > 65535)
cfg_parser->cfg->edns_buffer_size = 65535;
else cfg_parser->cfg->edns_buffer_size = atoi((yyvsp[0].str));
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 4264 "util/configparser.c"
break;
case 378:
2020-11-11 05:37:32 -05:00
#line 1389 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_msg_buffer_size:%s)\n", (yyvsp[0].str)));
if(atoi((yyvsp[0].str)) == 0)
yyerror("number expected");
else if (atoi((yyvsp[0].str)) < 4096)
yyerror("message buffer size too small (use 4096)");
else cfg_parser->cfg->msg_buffer_size = atoi((yyvsp[0].str));
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 4278 "util/configparser.c"
break;
case 379:
2020-11-11 05:37:32 -05:00
#line 1400 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_msg_cache_size:%s)\n", (yyvsp[0].str)));
if(!cfg_parse_memsize((yyvsp[0].str), &cfg_parser->cfg->msg_cache_size))
yyerror("memory size expected");
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 4289 "util/configparser.c"
break;
case 380:
2020-11-11 05:37:32 -05:00
#line 1408 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_msg_cache_slabs:%s)\n", (yyvsp[0].str)));
if(atoi((yyvsp[0].str)) == 0)
yyerror("number expected");
else {
cfg_parser->cfg->msg_cache_slabs = atoi((yyvsp[0].str));
if(!is_pow2(cfg_parser->cfg->msg_cache_slabs))
yyerror("must be a power of 2");
}
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 4305 "util/configparser.c"
break;
case 381:
2020-11-11 05:37:32 -05:00
#line 1421 "./util/configparser.y"
{
OUTYY(("P(server_num_queries_per_thread:%s)\n", (yyvsp[0].str)));
if(atoi((yyvsp[0].str)) == 0)
yyerror("number expected");
else cfg_parser->cfg->num_queries_per_thread = atoi((yyvsp[0].str));
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 4317 "util/configparser.c"
break;
case 382:
2020-11-11 05:37:32 -05:00
#line 1430 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_jostle_timeout:%s)\n", (yyvsp[0].str)));
if(atoi((yyvsp[0].str)) == 0 && strcmp((yyvsp[0].str), "0") != 0)
yyerror("number expected");
else cfg_parser->cfg->jostle_time = atoi((yyvsp[0].str));
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 4329 "util/configparser.c"
break;
case 383:
2020-11-11 05:37:32 -05:00
#line 1439 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_delay_close:%s)\n", (yyvsp[0].str)));
if(atoi((yyvsp[0].str)) == 0 && strcmp((yyvsp[0].str), "0") != 0)
yyerror("number expected");
else cfg_parser->cfg->delay_close = atoi((yyvsp[0].str));
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 4341 "util/configparser.c"
break;
case 384:
2020-11-11 05:37:32 -05:00
#line 1448 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_unblock_lan_zones:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->unblock_lan_zones =
(strcmp((yyvsp[0].str), "yes")==0);
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 4354 "util/configparser.c"
break;
case 385:
2020-11-11 05:37:32 -05:00
#line 1458 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_insecure_lan_zones:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->insecure_lan_zones =
(strcmp((yyvsp[0].str), "yes")==0);
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 4367 "util/configparser.c"
break;
case 386:
2020-11-11 05:37:32 -05:00
#line 1468 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_rrset_cache_size:%s)\n", (yyvsp[0].str)));
if(!cfg_parse_memsize((yyvsp[0].str), &cfg_parser->cfg->rrset_cache_size))
yyerror("memory size expected");
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 4378 "util/configparser.c"
break;
case 387:
2020-11-11 05:37:32 -05:00
#line 1476 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_rrset_cache_slabs:%s)\n", (yyvsp[0].str)));
if(atoi((yyvsp[0].str)) == 0)
yyerror("number expected");
else {
cfg_parser->cfg->rrset_cache_slabs = atoi((yyvsp[0].str));
if(!is_pow2(cfg_parser->cfg->rrset_cache_slabs))
yyerror("must be a power of 2");
}
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 4394 "util/configparser.c"
break;
case 388:
2020-11-11 05:37:32 -05:00
#line 1489 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_infra_host_ttl:%s)\n", (yyvsp[0].str)));
if(atoi((yyvsp[0].str)) == 0 && strcmp((yyvsp[0].str), "0") != 0)
yyerror("number expected");
else cfg_parser->cfg->host_ttl = atoi((yyvsp[0].str));
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 4406 "util/configparser.c"
break;
case 389:
2020-11-11 05:37:32 -05:00
#line 1498 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_infra_lame_ttl:%s)\n", (yyvsp[0].str)));
verbose(VERB_DETAIL, "ignored infra-lame-ttl: %s (option "
"removed, use infra-host-ttl)", (yyvsp[0].str));
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 4417 "util/configparser.c"
break;
case 390:
2020-11-11 05:37:32 -05:00
#line 1506 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_infra_cache_numhosts:%s)\n", (yyvsp[0].str)));
if(atoi((yyvsp[0].str)) == 0)
yyerror("number expected");
else cfg_parser->cfg->infra_cache_numhosts = atoi((yyvsp[0].str));
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 4429 "util/configparser.c"
break;
case 391:
2020-11-11 05:37:32 -05:00
#line 1515 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_infra_cache_lame_size:%s)\n", (yyvsp[0].str)));
verbose(VERB_DETAIL, "ignored infra-cache-lame-size: %s "
"(option removed, use infra-cache-numhosts)", (yyvsp[0].str));
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 4440 "util/configparser.c"
break;
case 392:
2020-11-11 05:37:32 -05:00
#line 1523 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_infra_cache_slabs:%s)\n", (yyvsp[0].str)));
if(atoi((yyvsp[0].str)) == 0)
yyerror("number expected");
else {
cfg_parser->cfg->infra_cache_slabs = atoi((yyvsp[0].str));
if(!is_pow2(cfg_parser->cfg->infra_cache_slabs))
yyerror("must be a power of 2");
}
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 4456 "util/configparser.c"
break;
case 393:
2020-11-11 05:37:32 -05:00
#line 1536 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_infra_cache_min_rtt:%s)\n", (yyvsp[0].str)));
if(atoi((yyvsp[0].str)) == 0 && strcmp((yyvsp[0].str), "0") != 0)
yyerror("number expected");
else cfg_parser->cfg->infra_cache_min_rtt = atoi((yyvsp[0].str));
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 4468 "util/configparser.c"
break;
case 394:
2020-11-11 05:37:32 -05:00
#line 1545 "./util/configparser.y"
{
OUTYY(("P(server_infra_keep_probing:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->infra_keep_probing =
(strcmp((yyvsp[0].str), "yes")==0);
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 4481 "util/configparser.c"
break;
case 395:
2020-11-11 05:37:32 -05:00
#line 1555 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_target_fetch_policy:%s)\n", (yyvsp[0].str)));
free(cfg_parser->cfg->target_fetch_policy);
cfg_parser->cfg->target_fetch_policy = (yyvsp[0].str);
}
2020-11-11 05:37:32 -05:00
#line 4491 "util/configparser.c"
break;
case 396:
2020-11-11 05:37:32 -05:00
#line 1562 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_harden_short_bufsize:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->harden_short_bufsize =
(strcmp((yyvsp[0].str), "yes")==0);
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 4504 "util/configparser.c"
break;
case 397:
2020-11-11 05:37:32 -05:00
#line 1572 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_harden_large_queries:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->harden_large_queries =
(strcmp((yyvsp[0].str), "yes")==0);
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 4517 "util/configparser.c"
break;
case 398:
2020-11-11 05:37:32 -05:00
#line 1582 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_harden_glue:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->harden_glue =
(strcmp((yyvsp[0].str), "yes")==0);
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 4530 "util/configparser.c"
break;
case 399:
2020-11-11 05:37:32 -05:00
#line 1592 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_harden_dnssec_stripped:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->harden_dnssec_stripped =
(strcmp((yyvsp[0].str), "yes")==0);
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 4543 "util/configparser.c"
break;
case 400:
2020-11-11 05:37:32 -05:00
#line 1602 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_harden_below_nxdomain:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->harden_below_nxdomain =
(strcmp((yyvsp[0].str), "yes")==0);
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 4556 "util/configparser.c"
break;
case 401:
2020-11-11 05:37:32 -05:00
#line 1612 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_harden_referral_path:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->harden_referral_path =
(strcmp((yyvsp[0].str), "yes")==0);
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 4569 "util/configparser.c"
break;
case 402:
2020-11-11 05:37:32 -05:00
#line 1622 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_harden_algo_downgrade:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->harden_algo_downgrade =
(strcmp((yyvsp[0].str), "yes")==0);
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 4582 "util/configparser.c"
break;
case 403:
2020-11-11 05:37:32 -05:00
#line 1632 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_use_caps_for_id:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->use_caps_bits_for_id =
(strcmp((yyvsp[0].str), "yes")==0);
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 4595 "util/configparser.c"
break;
case 404:
2020-11-11 05:37:32 -05:00
#line 1642 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_caps_whitelist:%s)\n", (yyvsp[0].str)));
if(!cfg_strlist_insert(&cfg_parser->cfg->caps_whitelist, (yyvsp[0].str)))
yyerror("out of memory");
}
2020-11-11 05:37:32 -05:00
#line 4605 "util/configparser.c"
break;
case 405:
2020-11-11 05:37:32 -05:00
#line 1649 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_private_address:%s)\n", (yyvsp[0].str)));
if(!cfg_strlist_insert(&cfg_parser->cfg->private_address, (yyvsp[0].str)))
yyerror("out of memory");
}
2020-11-11 05:37:32 -05:00
#line 4615 "util/configparser.c"
break;
case 406:
2020-11-11 05:37:32 -05:00
#line 1656 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_private_domain:%s)\n", (yyvsp[0].str)));
if(!cfg_strlist_insert(&cfg_parser->cfg->private_domain, (yyvsp[0].str)))
yyerror("out of memory");
}
2020-11-11 05:37:32 -05:00
#line 4625 "util/configparser.c"
break;
case 407:
2020-11-11 05:37:32 -05:00
#line 1663 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_prefetch:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->prefetch = (strcmp((yyvsp[0].str), "yes")==0);
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 4637 "util/configparser.c"
break;
case 408:
2020-11-11 05:37:32 -05:00
#line 1672 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_prefetch_key:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->prefetch_key = (strcmp((yyvsp[0].str), "yes")==0);
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 4649 "util/configparser.c"
break;
case 409:
2020-11-11 05:37:32 -05:00
#line 1681 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_deny_any:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->deny_any = (strcmp((yyvsp[0].str), "yes")==0);
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 4661 "util/configparser.c"
break;
case 410:
2020-11-11 05:37:32 -05:00
#line 1690 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_unwanted_reply_threshold:%s)\n", (yyvsp[0].str)));
if(atoi((yyvsp[0].str)) == 0 && strcmp((yyvsp[0].str), "0") != 0)
yyerror("number expected");
else cfg_parser->cfg->unwanted_threshold = atoi((yyvsp[0].str));
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 4673 "util/configparser.c"
break;
case 411:
2020-11-11 05:37:32 -05:00
#line 1699 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_do_not_query_address:%s)\n", (yyvsp[0].str)));
if(!cfg_strlist_insert(&cfg_parser->cfg->donotqueryaddrs, (yyvsp[0].str)))
yyerror("out of memory");
}
2020-11-11 05:37:32 -05:00
#line 4683 "util/configparser.c"
break;
case 412:
2020-11-11 05:37:32 -05:00
#line 1706 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_do_not_query_localhost:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->donotquery_localhost =
(strcmp((yyvsp[0].str), "yes")==0);
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 4696 "util/configparser.c"
break;
case 413:
2020-11-11 05:37:32 -05:00
#line 1716 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_access_control:%s %s)\n", (yyvsp[-1].str), (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "deny")!=0 && strcmp((yyvsp[0].str), "refuse")!=0 &&
strcmp((yyvsp[0].str), "deny_non_local")!=0 &&
strcmp((yyvsp[0].str), "refuse_non_local")!=0 &&
strcmp((yyvsp[0].str), "allow_setrd")!=0 &&
strcmp((yyvsp[0].str), "allow")!=0 &&
strcmp((yyvsp[0].str), "allow_snoop")!=0) {
yyerror("expected deny, refuse, deny_non_local, "
"refuse_non_local, allow, allow_setrd or "
"allow_snoop in access control action");
free((yyvsp[-1].str));
free((yyvsp[0].str));
} else {
if(!cfg_str2list_insert(&cfg_parser->cfg->acls, (yyvsp[-1].str), (yyvsp[0].str)))
fatal_exit("out of memory adding acl");
}
}
2020-11-11 05:37:32 -05:00
#line 4719 "util/configparser.c"
break;
case 414:
2020-11-11 05:37:32 -05:00
#line 1736 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_module_conf:%s)\n", (yyvsp[0].str)));
free(cfg_parser->cfg->module_conf);
cfg_parser->cfg->module_conf = (yyvsp[0].str);
}
2020-11-11 05:37:32 -05:00
#line 4729 "util/configparser.c"
break;
case 415:
2020-11-11 05:37:32 -05:00
#line 1743 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_val_override_date:%s)\n", (yyvsp[0].str)));
if(*(yyvsp[0].str) == '\0' || strcmp((yyvsp[0].str), "0") == 0) {
cfg_parser->cfg->val_date_override = 0;
} else if(strlen((yyvsp[0].str)) == 14) {
cfg_parser->cfg->val_date_override =
cfg_convert_timeval((yyvsp[0].str));
if(!cfg_parser->cfg->val_date_override)
yyerror("bad date/time specification");
} else {
if(atoi((yyvsp[0].str)) == 0)
yyerror("number expected");
cfg_parser->cfg->val_date_override = atoi((yyvsp[0].str));
}
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 4750 "util/configparser.c"
break;
case 416:
2020-11-11 05:37:32 -05:00
#line 1761 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_val_sig_skew_min:%s)\n", (yyvsp[0].str)));
if(*(yyvsp[0].str) == '\0' || strcmp((yyvsp[0].str), "0") == 0) {
cfg_parser->cfg->val_sig_skew_min = 0;
} else {
cfg_parser->cfg->val_sig_skew_min = atoi((yyvsp[0].str));
if(!cfg_parser->cfg->val_sig_skew_min)
yyerror("number expected");
}
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 4766 "util/configparser.c"
break;
case 417:
2020-11-11 05:37:32 -05:00
#line 1774 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_val_sig_skew_max:%s)\n", (yyvsp[0].str)));
if(*(yyvsp[0].str) == '\0' || strcmp((yyvsp[0].str), "0") == 0) {
cfg_parser->cfg->val_sig_skew_max = 0;
} else {
cfg_parser->cfg->val_sig_skew_max = atoi((yyvsp[0].str));
if(!cfg_parser->cfg->val_sig_skew_max)
yyerror("number expected");
}
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 4782 "util/configparser.c"
break;
case 418:
2020-11-11 05:37:32 -05:00
#line 1787 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_cache_max_ttl:%s)\n", (yyvsp[0].str)));
if(atoi((yyvsp[0].str)) == 0 && strcmp((yyvsp[0].str), "0") != 0)
yyerror("number expected");
else cfg_parser->cfg->max_ttl = atoi((yyvsp[0].str));
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 4794 "util/configparser.c"
break;
case 419:
2020-11-11 05:37:32 -05:00
#line 1796 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_cache_max_negative_ttl:%s)\n", (yyvsp[0].str)));
if(atoi((yyvsp[0].str)) == 0 && strcmp((yyvsp[0].str), "0") != 0)
yyerror("number expected");
else cfg_parser->cfg->max_negative_ttl = atoi((yyvsp[0].str));
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 4806 "util/configparser.c"
break;
case 420:
2020-11-11 05:37:32 -05:00
#line 1805 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_cache_min_ttl:%s)\n", (yyvsp[0].str)));
if(atoi((yyvsp[0].str)) == 0 && strcmp((yyvsp[0].str), "0") != 0)
yyerror("number expected");
else cfg_parser->cfg->min_ttl = atoi((yyvsp[0].str));
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 4818 "util/configparser.c"
break;
case 421:
2020-11-11 05:37:32 -05:00
#line 1814 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_bogus_ttl:%s)\n", (yyvsp[0].str)));
if(atoi((yyvsp[0].str)) == 0 && strcmp((yyvsp[0].str), "0") != 0)
yyerror("number expected");
else cfg_parser->cfg->bogus_ttl = atoi((yyvsp[0].str));
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 4830 "util/configparser.c"
break;
case 422:
2020-11-11 05:37:32 -05:00
#line 1823 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_val_clean_additional:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->val_clean_additional =
(strcmp((yyvsp[0].str), "yes")==0);
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 4843 "util/configparser.c"
break;
case 423:
2020-11-11 05:37:32 -05:00
#line 1833 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_val_permissive_mode:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->val_permissive_mode =
(strcmp((yyvsp[0].str), "yes")==0);
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 4856 "util/configparser.c"
break;
case 424:
2020-11-11 05:37:32 -05:00
#line 1843 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_aggressive_nsec:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else
cfg_parser->cfg->aggressive_nsec =
(strcmp((yyvsp[0].str), "yes")==0);
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 4870 "util/configparser.c"
break;
case 425:
2020-11-11 05:37:32 -05:00
#line 1854 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_ignore_cd_flag:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->ignore_cd = (strcmp((yyvsp[0].str), "yes")==0);
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 4882 "util/configparser.c"
break;
case 426:
2020-11-11 05:37:32 -05:00
#line 1863 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_serve_expired:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->serve_expired = (strcmp((yyvsp[0].str), "yes")==0);
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 4894 "util/configparser.c"
break;
case 427:
2020-11-11 05:37:32 -05:00
#line 1872 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_serve_expired_ttl:%s)\n", (yyvsp[0].str)));
if(atoi((yyvsp[0].str)) == 0 && strcmp((yyvsp[0].str), "0") != 0)
yyerror("number expected");
else cfg_parser->cfg->serve_expired_ttl = atoi((yyvsp[0].str));
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 4906 "util/configparser.c"
break;
case 428:
2020-11-11 05:37:32 -05:00
#line 1881 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_serve_expired_ttl_reset:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->serve_expired_ttl_reset = (strcmp((yyvsp[0].str), "yes")==0);
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 4918 "util/configparser.c"
break;
case 429:
2020-11-11 05:37:32 -05:00
#line 1890 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_serve_expired_reply_ttl:%s)\n", (yyvsp[0].str)));
if(atoi((yyvsp[0].str)) == 0 && strcmp((yyvsp[0].str), "0") != 0)
yyerror("number expected");
else cfg_parser->cfg->serve_expired_reply_ttl = atoi((yyvsp[0].str));
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 4930 "util/configparser.c"
break;
case 430:
2020-11-11 05:37:32 -05:00
#line 1899 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_serve_expired_client_timeout:%s)\n", (yyvsp[0].str)));
if(atoi((yyvsp[0].str)) == 0 && strcmp((yyvsp[0].str), "0") != 0)
yyerror("number expected");
else cfg_parser->cfg->serve_expired_client_timeout = atoi((yyvsp[0].str));
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 4942 "util/configparser.c"
break;
case 431:
2020-11-11 05:37:32 -05:00
#line 1908 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_fake_dsa:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
#if defined(HAVE_SSL) || defined(HAVE_NETTLE)
else fake_dsa = (strcmp((yyvsp[0].str), "yes")==0);
if(fake_dsa)
log_warn("test option fake_dsa is enabled");
#endif
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 4958 "util/configparser.c"
break;
case 432:
2020-11-11 05:37:32 -05:00
#line 1921 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_fake_sha1:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
#if defined(HAVE_SSL) || defined(HAVE_NETTLE)
else fake_sha1 = (strcmp((yyvsp[0].str), "yes")==0);
if(fake_sha1)
log_warn("test option fake_sha1 is enabled");
#endif
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 4974 "util/configparser.c"
break;
case 433:
2020-11-11 05:37:32 -05:00
#line 1934 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_val_log_level:%s)\n", (yyvsp[0].str)));
if(atoi((yyvsp[0].str)) == 0 && strcmp((yyvsp[0].str), "0") != 0)
yyerror("number expected");
else cfg_parser->cfg->val_log_level = atoi((yyvsp[0].str));
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 4986 "util/configparser.c"
break;
case 434:
2020-11-11 05:37:32 -05:00
#line 1943 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_val_nsec3_keysize_iterations:%s)\n", (yyvsp[0].str)));
free(cfg_parser->cfg->val_nsec3_key_iterations);
cfg_parser->cfg->val_nsec3_key_iterations = (yyvsp[0].str);
}
2020-11-11 05:37:32 -05:00
#line 4996 "util/configparser.c"
break;
case 435:
2020-11-11 05:37:32 -05:00
#line 1950 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_add_holddown:%s)\n", (yyvsp[0].str)));
if(atoi((yyvsp[0].str)) == 0 && strcmp((yyvsp[0].str), "0") != 0)
yyerror("number expected");
else cfg_parser->cfg->add_holddown = atoi((yyvsp[0].str));
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 5008 "util/configparser.c"
break;
case 436:
2020-11-11 05:37:32 -05:00
#line 1959 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_del_holddown:%s)\n", (yyvsp[0].str)));
if(atoi((yyvsp[0].str)) == 0 && strcmp((yyvsp[0].str), "0") != 0)
yyerror("number expected");
else cfg_parser->cfg->del_holddown = atoi((yyvsp[0].str));
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 5020 "util/configparser.c"
break;
case 437:
2020-11-11 05:37:32 -05:00
#line 1968 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_keep_missing:%s)\n", (yyvsp[0].str)));
if(atoi((yyvsp[0].str)) == 0 && strcmp((yyvsp[0].str), "0") != 0)
yyerror("number expected");
else cfg_parser->cfg->keep_missing = atoi((yyvsp[0].str));
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 5032 "util/configparser.c"
break;
case 438:
2020-11-11 05:37:32 -05:00
#line 1977 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_permit_small_holddown:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->permit_small_holddown =
(strcmp((yyvsp[0].str), "yes")==0);
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 5045 "util/configparser.c"
break;
case 439:
2020-11-11 05:37:32 -05:00
#line 1986 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_key_cache_size:%s)\n", (yyvsp[0].str)));
if(!cfg_parse_memsize((yyvsp[0].str), &cfg_parser->cfg->key_cache_size))
yyerror("memory size expected");
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 5056 "util/configparser.c"
break;
case 440:
2020-11-11 05:37:32 -05:00
#line 1994 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_key_cache_slabs:%s)\n", (yyvsp[0].str)));
if(atoi((yyvsp[0].str)) == 0)
yyerror("number expected");
else {
cfg_parser->cfg->key_cache_slabs = atoi((yyvsp[0].str));
if(!is_pow2(cfg_parser->cfg->key_cache_slabs))
yyerror("must be a power of 2");
}
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 5072 "util/configparser.c"
break;
case 441:
2020-11-11 05:37:32 -05:00
#line 2007 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_neg_cache_size:%s)\n", (yyvsp[0].str)));
if(!cfg_parse_memsize((yyvsp[0].str), &cfg_parser->cfg->neg_cache_size))
yyerror("memory size expected");
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 5083 "util/configparser.c"
break;
case 442:
2020-11-11 05:37:32 -05:00
#line 2015 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_local_zone:%s %s)\n", (yyvsp[-1].str), (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "static")!=0 && strcmp((yyvsp[0].str), "deny")!=0 &&
strcmp((yyvsp[0].str), "refuse")!=0 && strcmp((yyvsp[0].str), "redirect")!=0 &&
strcmp((yyvsp[0].str), "transparent")!=0 && strcmp((yyvsp[0].str), "nodefault")!=0
&& strcmp((yyvsp[0].str), "typetransparent")!=0
&& strcmp((yyvsp[0].str), "always_transparent")!=0
&& strcmp((yyvsp[0].str), "always_refuse")!=0
&& strcmp((yyvsp[0].str), "always_nxdomain")!=0
&& strcmp((yyvsp[0].str), "noview")!=0
&& strcmp((yyvsp[0].str), "inform")!=0 && strcmp((yyvsp[0].str), "inform_deny")!=0
2019-05-03 05:45:34 -04:00
&& strcmp((yyvsp[0].str), "inform_redirect") != 0
&& strcmp((yyvsp[0].str), "ipset") != 0) {
yyerror("local-zone type: expected static, deny, "
"refuse, redirect, transparent, "
"typetransparent, inform, inform_deny, "
"inform_redirect, always_transparent, "
"always_refuse, always_nxdomain, noview "
2019-05-03 05:45:34 -04:00
", nodefault or ipset");
free((yyvsp[-1].str));
free((yyvsp[0].str));
} else if(strcmp((yyvsp[0].str), "nodefault")==0) {
if(!cfg_strlist_insert(&cfg_parser->cfg->
local_zones_nodefault, (yyvsp[-1].str)))
fatal_exit("out of memory adding local-zone");
free((yyvsp[0].str));
2019-05-03 05:45:34 -04:00
#ifdef USE_IPSET
} else if(strcmp((yyvsp[0].str), "ipset")==0) {
if(!cfg_strlist_insert(&cfg_parser->cfg->
local_zones_ipset, (yyvsp[-1].str)))
fatal_exit("out of memory adding local-zone");
free((yyvsp[0].str));
#endif
} else {
if(!cfg_str2list_insert(&cfg_parser->cfg->local_zones,
(yyvsp[-1].str), (yyvsp[0].str)))
fatal_exit("out of memory adding local-zone");
}
}
2020-11-11 05:37:32 -05:00
#line 5127 "util/configparser.c"
break;
case 443:
2020-11-11 05:37:32 -05:00
#line 2056 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_local_data:%s)\n", (yyvsp[0].str)));
if(!cfg_strlist_insert(&cfg_parser->cfg->local_data, (yyvsp[0].str)))
fatal_exit("out of memory adding local-data");
}
2020-11-11 05:37:32 -05:00
#line 5137 "util/configparser.c"
break;
case 444:
2020-11-11 05:37:32 -05:00
#line 2063 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
char* ptr;
OUTYY(("P(server_local_data_ptr:%s)\n", (yyvsp[0].str)));
ptr = cfg_ptr_reverse((yyvsp[0].str));
free((yyvsp[0].str));
if(ptr) {
if(!cfg_strlist_insert(&cfg_parser->cfg->
local_data, ptr))
fatal_exit("out of memory adding local-data");
} else {
yyerror("local-data-ptr could not be reversed");
}
}
2020-11-11 05:37:32 -05:00
#line 5155 "util/configparser.c"
break;
case 445:
2020-11-11 05:37:32 -05:00
#line 2078 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_minimal_responses:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->minimal_responses =
(strcmp((yyvsp[0].str), "yes")==0);
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 5168 "util/configparser.c"
break;
case 446:
2020-11-11 05:37:32 -05:00
#line 2088 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_rrset_roundrobin:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->rrset_roundrobin =
(strcmp((yyvsp[0].str), "yes")==0);
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 5181 "util/configparser.c"
break;
case 447:
2020-11-11 05:37:32 -05:00
#line 2098 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_unknown_server_time_limit:%s)\n", (yyvsp[0].str)));
cfg_parser->cfg->unknown_server_time_limit = atoi((yyvsp[0].str));
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 5191 "util/configparser.c"
break;
case 448:
2020-11-11 05:37:32 -05:00
#line 2105 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_max_udp_size:%s)\n", (yyvsp[0].str)));
cfg_parser->cfg->max_udp_size = atoi((yyvsp[0].str));
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 5201 "util/configparser.c"
break;
case 449:
2020-11-11 05:37:32 -05:00
#line 2112 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(dns64_prefix:%s)\n", (yyvsp[0].str)));
free(cfg_parser->cfg->dns64_prefix);
cfg_parser->cfg->dns64_prefix = (yyvsp[0].str);
}
2020-11-11 05:37:32 -05:00
#line 5211 "util/configparser.c"
break;
case 450:
2020-11-11 05:37:32 -05:00
#line 2119 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_dns64_synthall:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->dns64_synthall = (strcmp((yyvsp[0].str), "yes")==0);
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 5223 "util/configparser.c"
break;
case 451:
2020-11-11 05:37:32 -05:00
#line 2128 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(dns64_ignore_aaaa:%s)\n", (yyvsp[0].str)));
if(!cfg_strlist_insert(&cfg_parser->cfg->dns64_ignore_aaaa,
(yyvsp[0].str)))
fatal_exit("out of memory adding dns64-ignore-aaaa");
}
2020-11-11 05:37:32 -05:00
#line 5234 "util/configparser.c"
break;
case 452:
2020-11-11 05:37:32 -05:00
#line 2136 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
char* p, *s = (yyvsp[0].str);
OUTYY(("P(server_define_tag:%s)\n", (yyvsp[0].str)));
while((p=strsep(&s, " \t\n")) != NULL) {
if(*p) {
if(!config_add_tag(cfg_parser->cfg, p))
yyerror("could not define-tag, "
"out of memory");
}
}
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 5251 "util/configparser.c"
break;
case 453:
2020-11-11 05:37:32 -05:00
#line 2150 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
size_t len = 0;
uint8_t* bitlist = config_parse_taglist(cfg_parser->cfg, (yyvsp[0].str),
&len);
free((yyvsp[0].str));
OUTYY(("P(server_local_zone_tag:%s)\n", (yyvsp[-1].str)));
if(!bitlist) {
yyerror("could not parse tags, (define-tag them first)");
free((yyvsp[-1].str));
}
if(bitlist) {
if(!cfg_strbytelist_insert(
&cfg_parser->cfg->local_zone_tags,
(yyvsp[-1].str), bitlist, len)) {
yyerror("out of memory");
free((yyvsp[-1].str));
}
}
}
2020-11-11 05:37:32 -05:00
#line 5275 "util/configparser.c"
break;
case 454:
2020-11-11 05:37:32 -05:00
#line 2171 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
size_t len = 0;
uint8_t* bitlist = config_parse_taglist(cfg_parser->cfg, (yyvsp[0].str),
&len);
free((yyvsp[0].str));
OUTYY(("P(server_access_control_tag:%s)\n", (yyvsp[-1].str)));
if(!bitlist) {
yyerror("could not parse tags, (define-tag them first)");
free((yyvsp[-1].str));
}
if(bitlist) {
if(!cfg_strbytelist_insert(
&cfg_parser->cfg->acl_tags,
(yyvsp[-1].str), bitlist, len)) {
yyerror("out of memory");
free((yyvsp[-1].str));
}
}
}
2020-11-11 05:37:32 -05:00
#line 5299 "util/configparser.c"
break;
case 455:
2020-11-11 05:37:32 -05:00
#line 2192 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_access_control_tag_action:%s %s %s)\n", (yyvsp[-2].str), (yyvsp[-1].str), (yyvsp[0].str)));
if(!cfg_str3list_insert(&cfg_parser->cfg->acl_tag_actions,
(yyvsp[-2].str), (yyvsp[-1].str), (yyvsp[0].str))) {
yyerror("out of memory");
free((yyvsp[-2].str));
free((yyvsp[-1].str));
free((yyvsp[0].str));
}
}
2020-11-11 05:37:32 -05:00
#line 5314 "util/configparser.c"
break;
case 456:
2020-11-11 05:37:32 -05:00
#line 2204 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_access_control_tag_data:%s %s %s)\n", (yyvsp[-2].str), (yyvsp[-1].str), (yyvsp[0].str)));
if(!cfg_str3list_insert(&cfg_parser->cfg->acl_tag_datas,
(yyvsp[-2].str), (yyvsp[-1].str), (yyvsp[0].str))) {
yyerror("out of memory");
free((yyvsp[-2].str));
free((yyvsp[-1].str));
free((yyvsp[0].str));
}
}
2020-11-11 05:37:32 -05:00
#line 5329 "util/configparser.c"
break;
case 457:
2020-11-11 05:37:32 -05:00
#line 2216 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_local_zone_override:%s %s %s)\n", (yyvsp[-2].str), (yyvsp[-1].str), (yyvsp[0].str)));
if(!cfg_str3list_insert(&cfg_parser->cfg->local_zone_overrides,
(yyvsp[-2].str), (yyvsp[-1].str), (yyvsp[0].str))) {
yyerror("out of memory");
free((yyvsp[-2].str));
free((yyvsp[-1].str));
free((yyvsp[0].str));
}
}
2020-11-11 05:37:32 -05:00
#line 5344 "util/configparser.c"
break;
case 458:
2020-11-11 05:37:32 -05:00
#line 2228 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_access_control_view:%s %s)\n", (yyvsp[-1].str), (yyvsp[0].str)));
if(!cfg_str2list_insert(&cfg_parser->cfg->acl_view,
(yyvsp[-1].str), (yyvsp[0].str))) {
yyerror("out of memory");
}
}
2020-11-11 05:37:32 -05:00
#line 5356 "util/configparser.c"
break;
case 459:
2020-11-11 05:37:32 -05:00
#line 2237 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
size_t len = 0;
uint8_t* bitlist = config_parse_taglist(cfg_parser->cfg, (yyvsp[0].str),
&len);
free((yyvsp[0].str));
OUTYY(("P(response_ip_tag:%s)\n", (yyvsp[-1].str)));
if(!bitlist) {
yyerror("could not parse tags, (define-tag them first)");
free((yyvsp[-1].str));
}
if(bitlist) {
if(!cfg_strbytelist_insert(
&cfg_parser->cfg->respip_tags,
(yyvsp[-1].str), bitlist, len)) {
yyerror("out of memory");
free((yyvsp[-1].str));
}
}
}
2020-11-11 05:37:32 -05:00
#line 5380 "util/configparser.c"
break;
case 460:
2020-11-11 05:37:32 -05:00
#line 2258 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_ip_ratelimit:%s)\n", (yyvsp[0].str)));
if(atoi((yyvsp[0].str)) == 0 && strcmp((yyvsp[0].str), "0") != 0)
yyerror("number expected");
else cfg_parser->cfg->ip_ratelimit = atoi((yyvsp[0].str));
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 5392 "util/configparser.c"
break;
case 461:
2020-11-11 05:37:32 -05:00
#line 2268 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_ratelimit:%s)\n", (yyvsp[0].str)));
if(atoi((yyvsp[0].str)) == 0 && strcmp((yyvsp[0].str), "0") != 0)
yyerror("number expected");
else cfg_parser->cfg->ratelimit = atoi((yyvsp[0].str));
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 5404 "util/configparser.c"
break;
case 462:
2020-11-11 05:37:32 -05:00
#line 2277 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_ip_ratelimit_size:%s)\n", (yyvsp[0].str)));
if(!cfg_parse_memsize((yyvsp[0].str), &cfg_parser->cfg->ip_ratelimit_size))
yyerror("memory size expected");
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 5415 "util/configparser.c"
break;
case 463:
2020-11-11 05:37:32 -05:00
#line 2285 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_ratelimit_size:%s)\n", (yyvsp[0].str)));
if(!cfg_parse_memsize((yyvsp[0].str), &cfg_parser->cfg->ratelimit_size))
yyerror("memory size expected");
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 5426 "util/configparser.c"
break;
case 464:
2020-11-11 05:37:32 -05:00
#line 2293 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_ip_ratelimit_slabs:%s)\n", (yyvsp[0].str)));
if(atoi((yyvsp[0].str)) == 0)
yyerror("number expected");
else {
cfg_parser->cfg->ip_ratelimit_slabs = atoi((yyvsp[0].str));
if(!is_pow2(cfg_parser->cfg->ip_ratelimit_slabs))
yyerror("must be a power of 2");
}
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 5442 "util/configparser.c"
break;
case 465:
2020-11-11 05:37:32 -05:00
#line 2306 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_ratelimit_slabs:%s)\n", (yyvsp[0].str)));
if(atoi((yyvsp[0].str)) == 0)
yyerror("number expected");
else {
cfg_parser->cfg->ratelimit_slabs = atoi((yyvsp[0].str));
if(!is_pow2(cfg_parser->cfg->ratelimit_slabs))
yyerror("must be a power of 2");
}
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 5458 "util/configparser.c"
break;
case 466:
2020-11-11 05:37:32 -05:00
#line 2319 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_ratelimit_for_domain:%s %s)\n", (yyvsp[-1].str), (yyvsp[0].str)));
if(atoi((yyvsp[0].str)) == 0 && strcmp((yyvsp[0].str), "0") != 0) {
yyerror("number expected");
free((yyvsp[-1].str));
free((yyvsp[0].str));
} else {
if(!cfg_str2list_insert(&cfg_parser->cfg->
ratelimit_for_domain, (yyvsp[-1].str), (yyvsp[0].str)))
fatal_exit("out of memory adding "
"ratelimit-for-domain");
}
}
2020-11-11 05:37:32 -05:00
#line 5476 "util/configparser.c"
break;
case 467:
2020-11-11 05:37:32 -05:00
#line 2334 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_ratelimit_below_domain:%s %s)\n", (yyvsp[-1].str), (yyvsp[0].str)));
if(atoi((yyvsp[0].str)) == 0 && strcmp((yyvsp[0].str), "0") != 0) {
yyerror("number expected");
free((yyvsp[-1].str));
free((yyvsp[0].str));
} else {
if(!cfg_str2list_insert(&cfg_parser->cfg->
ratelimit_below_domain, (yyvsp[-1].str), (yyvsp[0].str)))
fatal_exit("out of memory adding "
"ratelimit-below-domain");
}
}
2020-11-11 05:37:32 -05:00
#line 5494 "util/configparser.c"
break;
case 468:
2020-11-11 05:37:32 -05:00
#line 2349 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_ip_ratelimit_factor:%s)\n", (yyvsp[0].str)));
if(atoi((yyvsp[0].str)) == 0 && strcmp((yyvsp[0].str), "0") != 0)
yyerror("number expected");
else cfg_parser->cfg->ip_ratelimit_factor = atoi((yyvsp[0].str));
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 5506 "util/configparser.c"
break;
case 469:
2020-11-11 05:37:32 -05:00
#line 2358 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_ratelimit_factor:%s)\n", (yyvsp[0].str)));
if(atoi((yyvsp[0].str)) == 0 && strcmp((yyvsp[0].str), "0") != 0)
yyerror("number expected");
else cfg_parser->cfg->ratelimit_factor = atoi((yyvsp[0].str));
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 5518 "util/configparser.c"
break;
case 470:
2020-11-11 05:37:32 -05:00
#line 2367 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(low-rtt option is deprecated, use fast-server-num instead)\n"));
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 5527 "util/configparser.c"
break;
case 471:
2020-11-11 05:37:32 -05:00
#line 2373 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_fast_server_num:%s)\n", (yyvsp[0].str)));
if(atoi((yyvsp[0].str)) <= 0)
yyerror("number expected");
else cfg_parser->cfg->fast_server_num = atoi((yyvsp[0].str));
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 5539 "util/configparser.c"
break;
case 472:
2020-11-11 05:37:32 -05:00
#line 2382 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_fast_server_permil:%s)\n", (yyvsp[0].str)));
if(atoi((yyvsp[0].str)) == 0 && strcmp((yyvsp[0].str), "0") != 0)
yyerror("number expected");
else cfg_parser->cfg->fast_server_permil = atoi((yyvsp[0].str));
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 5551 "util/configparser.c"
break;
case 473:
2020-11-11 05:37:32 -05:00
#line 2391 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_qname_minimisation:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->qname_minimisation =
(strcmp((yyvsp[0].str), "yes")==0);
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 5564 "util/configparser.c"
break;
case 474:
2020-11-11 05:37:32 -05:00
#line 2401 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_qname_minimisation_strict:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->qname_minimisation_strict =
(strcmp((yyvsp[0].str), "yes")==0);
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 5577 "util/configparser.c"
break;
case 475:
2020-11-11 05:37:32 -05:00
#line 2411 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
#ifdef USE_IPSECMOD
OUTYY(("P(server_ipsecmod_enabled:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->ipsecmod_enabled = (strcmp((yyvsp[0].str), "yes")==0);
#else
OUTYY(("P(Compiled without IPsec module, ignoring)\n"));
#endif
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 5593 "util/configparser.c"
break;
case 476:
2020-11-11 05:37:32 -05:00
#line 2424 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
#ifdef USE_IPSECMOD
OUTYY(("P(server_ipsecmod_ignore_bogus:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->ipsecmod_ignore_bogus = (strcmp((yyvsp[0].str), "yes")==0);
#else
OUTYY(("P(Compiled without IPsec module, ignoring)\n"));
#endif
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 5609 "util/configparser.c"
break;
case 477:
2020-11-11 05:37:32 -05:00
#line 2437 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
#ifdef USE_IPSECMOD
OUTYY(("P(server_ipsecmod_hook:%s)\n", (yyvsp[0].str)));
free(cfg_parser->cfg->ipsecmod_hook);
cfg_parser->cfg->ipsecmod_hook = (yyvsp[0].str);
#else
OUTYY(("P(Compiled without IPsec module, ignoring)\n"));
free((yyvsp[0].str));
#endif
}
2020-11-11 05:37:32 -05:00
#line 5624 "util/configparser.c"
break;
case 478:
2020-11-11 05:37:32 -05:00
#line 2449 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
#ifdef USE_IPSECMOD
OUTYY(("P(server_ipsecmod_max_ttl:%s)\n", (yyvsp[0].str)));
if(atoi((yyvsp[0].str)) == 0 && strcmp((yyvsp[0].str), "0") != 0)
yyerror("number expected");
else cfg_parser->cfg->ipsecmod_max_ttl = atoi((yyvsp[0].str));
free((yyvsp[0].str));
#else
OUTYY(("P(Compiled without IPsec module, ignoring)\n"));
free((yyvsp[0].str));
#endif
}
2020-11-11 05:37:32 -05:00
#line 5641 "util/configparser.c"
break;
case 479:
2020-11-11 05:37:32 -05:00
#line 2463 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
#ifdef USE_IPSECMOD
OUTYY(("P(server_ipsecmod_whitelist:%s)\n", (yyvsp[0].str)));
if(!cfg_strlist_insert(&cfg_parser->cfg->ipsecmod_whitelist, (yyvsp[0].str)))
yyerror("out of memory");
#else
OUTYY(("P(Compiled without IPsec module, ignoring)\n"));
free((yyvsp[0].str));
#endif
}
2020-11-11 05:37:32 -05:00
#line 5656 "util/configparser.c"
break;
case 480:
2020-11-11 05:37:32 -05:00
#line 2475 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
#ifdef USE_IPSECMOD
OUTYY(("P(server_ipsecmod_strict:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->ipsecmod_strict = (strcmp((yyvsp[0].str), "yes")==0);
free((yyvsp[0].str));
#else
OUTYY(("P(Compiled without IPsec module, ignoring)\n"));
free((yyvsp[0].str));
#endif
}
2020-11-11 05:37:32 -05:00
#line 5673 "util/configparser.c"
break;
case 481:
2020-11-11 05:37:32 -05:00
#line 2489 "./util/configparser.y"
{
OUTYY(("P(server_edns_client_string:%s %s)\n", (yyvsp[-1].str), (yyvsp[0].str)));
if(!cfg_str2list_insert(
&cfg_parser->cfg->edns_client_strings, (yyvsp[-1].str), (yyvsp[0].str)))
fatal_exit("out of memory adding "
"edns-client-string");
}
2020-11-11 05:37:32 -05:00
#line 5685 "util/configparser.c"
break;
case 482:
2020-11-11 05:37:32 -05:00
#line 2498 "./util/configparser.y"
2020-09-23 06:09:48 -04:00
{
OUTYY(("P(edns_client_string_opcode:%s)\n", (yyvsp[0].str)));
2020-09-23 06:09:48 -04:00
if(atoi((yyvsp[0].str)) == 0 && strcmp((yyvsp[0].str), "0") != 0)
yyerror("option code expected");
else if(atoi((yyvsp[0].str)) > 65535 || atoi((yyvsp[0].str)) < 0)
yyerror("option code must be in interval [0, 65535]");
else cfg_parser->cfg->edns_client_string_opcode = atoi((yyvsp[0].str));
2020-09-23 06:09:48 -04:00
}
2020-11-11 05:37:32 -05:00
#line 5699 "util/configparser.c"
2020-09-23 06:09:48 -04:00
break;
case 483:
2020-11-11 05:37:32 -05:00
#line 2509 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(name:%s)\n", (yyvsp[0].str)));
if(cfg_parser->cfg->stubs->name)
yyerror("stub name override, there must be one name "
"for one stub-zone");
free(cfg_parser->cfg->stubs->name);
cfg_parser->cfg->stubs->name = (yyvsp[0].str);
}
2020-11-11 05:37:32 -05:00
#line 5712 "util/configparser.c"
break;
case 484:
2020-11-11 05:37:32 -05:00
#line 2519 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(stub-host:%s)\n", (yyvsp[0].str)));
if(!cfg_strlist_insert(&cfg_parser->cfg->stubs->hosts, (yyvsp[0].str)))
yyerror("out of memory");
}
2020-11-11 05:37:32 -05:00
#line 5722 "util/configparser.c"
break;
case 485:
2020-11-11 05:37:32 -05:00
#line 2526 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(stub-addr:%s)\n", (yyvsp[0].str)));
if(!cfg_strlist_insert(&cfg_parser->cfg->stubs->addrs, (yyvsp[0].str)))
yyerror("out of memory");
}
2020-11-11 05:37:32 -05:00
#line 5732 "util/configparser.c"
break;
case 486:
2020-11-11 05:37:32 -05:00
#line 2533 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(stub-first:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->stubs->isfirst=(strcmp((yyvsp[0].str), "yes")==0);
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 5744 "util/configparser.c"
break;
case 487:
2020-11-11 05:37:32 -05:00
#line 2542 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(stub-no-cache:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->stubs->no_cache=(strcmp((yyvsp[0].str), "yes")==0);
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 5756 "util/configparser.c"
break;
case 488:
2020-11-11 05:37:32 -05:00
#line 2551 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(stub-ssl-upstream:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->stubs->ssl_upstream =
(strcmp((yyvsp[0].str), "yes")==0);
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 5769 "util/configparser.c"
break;
case 489:
2020-11-11 05:37:32 -05:00
#line 2561 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(stub-prime:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->stubs->isprime =
(strcmp((yyvsp[0].str), "yes")==0);
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 5782 "util/configparser.c"
break;
case 490:
2020-11-11 05:37:32 -05:00
#line 2571 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(name:%s)\n", (yyvsp[0].str)));
if(cfg_parser->cfg->forwards->name)
yyerror("forward name override, there must be one "
"name for one forward-zone");
free(cfg_parser->cfg->forwards->name);
cfg_parser->cfg->forwards->name = (yyvsp[0].str);
}
2020-11-11 05:37:32 -05:00
#line 5795 "util/configparser.c"
break;
case 491:
2020-11-11 05:37:32 -05:00
#line 2581 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(forward-host:%s)\n", (yyvsp[0].str)));
if(!cfg_strlist_insert(&cfg_parser->cfg->forwards->hosts, (yyvsp[0].str)))
yyerror("out of memory");
}
2020-11-11 05:37:32 -05:00
#line 5805 "util/configparser.c"
break;
case 492:
2020-11-11 05:37:32 -05:00
#line 2588 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(forward-addr:%s)\n", (yyvsp[0].str)));
if(!cfg_strlist_insert(&cfg_parser->cfg->forwards->addrs, (yyvsp[0].str)))
yyerror("out of memory");
}
2020-11-11 05:37:32 -05:00
#line 5815 "util/configparser.c"
break;
case 493:
2020-11-11 05:37:32 -05:00
#line 2595 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(forward-first:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->forwards->isfirst=(strcmp((yyvsp[0].str), "yes")==0);
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 5827 "util/configparser.c"
break;
case 494:
2020-11-11 05:37:32 -05:00
#line 2604 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(forward-no-cache:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->forwards->no_cache=(strcmp((yyvsp[0].str), "yes")==0);
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 5839 "util/configparser.c"
break;
case 495:
2020-11-11 05:37:32 -05:00
#line 2613 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(forward-ssl-upstream:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->forwards->ssl_upstream =
(strcmp((yyvsp[0].str), "yes")==0);
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 5852 "util/configparser.c"
break;
case 496:
2020-11-11 05:37:32 -05:00
#line 2623 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(name:%s)\n", (yyvsp[0].str)));
if(cfg_parser->cfg->auths->name)
yyerror("auth name override, there must be one name "
"for one auth-zone");
free(cfg_parser->cfg->auths->name);
cfg_parser->cfg->auths->name = (yyvsp[0].str);
}
2020-11-11 05:37:32 -05:00
#line 5865 "util/configparser.c"
break;
case 497:
2020-11-11 05:37:32 -05:00
#line 2633 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(zonefile:%s)\n", (yyvsp[0].str)));
free(cfg_parser->cfg->auths->zonefile);
cfg_parser->cfg->auths->zonefile = (yyvsp[0].str);
}
2020-11-11 05:37:32 -05:00
#line 5875 "util/configparser.c"
break;
case 498:
2020-11-11 05:37:32 -05:00
#line 2640 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(master:%s)\n", (yyvsp[0].str)));
if(!cfg_strlist_insert(&cfg_parser->cfg->auths->masters, (yyvsp[0].str)))
yyerror("out of memory");
}
2020-11-11 05:37:32 -05:00
#line 5885 "util/configparser.c"
break;
case 499:
2020-11-11 05:37:32 -05:00
#line 2647 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(url:%s)\n", (yyvsp[0].str)));
if(!cfg_strlist_insert(&cfg_parser->cfg->auths->urls, (yyvsp[0].str)))
yyerror("out of memory");
}
2020-11-11 05:37:32 -05:00
#line 5895 "util/configparser.c"
break;
case 500:
2020-11-11 05:37:32 -05:00
#line 2654 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(allow-notify:%s)\n", (yyvsp[0].str)));
if(!cfg_strlist_insert(&cfg_parser->cfg->auths->allow_notify,
(yyvsp[0].str)))
yyerror("out of memory");
}
2020-11-11 05:37:32 -05:00
#line 5906 "util/configparser.c"
break;
case 501:
2020-11-11 05:37:32 -05:00
#line 2662 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(for-downstream:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->auths->for_downstream =
(strcmp((yyvsp[0].str), "yes")==0);
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 5919 "util/configparser.c"
break;
case 502:
2020-11-11 05:37:32 -05:00
#line 2672 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(for-upstream:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->auths->for_upstream =
(strcmp((yyvsp[0].str), "yes")==0);
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 5932 "util/configparser.c"
break;
case 503:
2020-11-11 05:37:32 -05:00
#line 2682 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(fallback-enabled:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->auths->fallback_enabled =
(strcmp((yyvsp[0].str), "yes")==0);
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 5945 "util/configparser.c"
break;
case 504:
2020-11-11 05:37:32 -05:00
#line 2692 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(name:%s)\n", (yyvsp[0].str)));
if(cfg_parser->cfg->views->name)
yyerror("view name override, there must be one "
"name for one view");
free(cfg_parser->cfg->views->name);
cfg_parser->cfg->views->name = (yyvsp[0].str);
}
2020-11-11 05:37:32 -05:00
#line 5958 "util/configparser.c"
break;
case 505:
2020-11-11 05:37:32 -05:00
#line 2702 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(view_local_zone:%s %s)\n", (yyvsp[-1].str), (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "static")!=0 && strcmp((yyvsp[0].str), "deny")!=0 &&
strcmp((yyvsp[0].str), "refuse")!=0 && strcmp((yyvsp[0].str), "redirect")!=0 &&
strcmp((yyvsp[0].str), "transparent")!=0 && strcmp((yyvsp[0].str), "nodefault")!=0
&& strcmp((yyvsp[0].str), "typetransparent")!=0
&& strcmp((yyvsp[0].str), "always_transparent")!=0
&& strcmp((yyvsp[0].str), "always_refuse")!=0
&& strcmp((yyvsp[0].str), "always_nxdomain")!=0
&& strcmp((yyvsp[0].str), "noview")!=0
&& strcmp((yyvsp[0].str), "inform")!=0 && strcmp((yyvsp[0].str), "inform_deny")!=0) {
yyerror("local-zone type: expected static, deny, "
"refuse, redirect, transparent, "
"typetransparent, inform, inform_deny, "
"always_transparent, always_refuse, "
"always_nxdomain, noview or nodefault");
free((yyvsp[-1].str));
free((yyvsp[0].str));
} else if(strcmp((yyvsp[0].str), "nodefault")==0) {
if(!cfg_strlist_insert(&cfg_parser->cfg->views->
local_zones_nodefault, (yyvsp[-1].str)))
fatal_exit("out of memory adding local-zone");
free((yyvsp[0].str));
2019-05-03 05:45:34 -04:00
#ifdef USE_IPSET
} else if(strcmp((yyvsp[0].str), "ipset")==0) {
if(!cfg_strlist_insert(&cfg_parser->cfg->views->
local_zones_ipset, (yyvsp[-1].str)))
fatal_exit("out of memory adding local-zone");
free((yyvsp[0].str));
#endif
} else {
if(!cfg_str2list_insert(
&cfg_parser->cfg->views->local_zones,
(yyvsp[-1].str), (yyvsp[0].str)))
fatal_exit("out of memory adding local-zone");
}
}
2020-11-11 05:37:32 -05:00
#line 6000 "util/configparser.c"
break;
case 506:
2020-11-11 05:37:32 -05:00
#line 2741 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(view_response_ip:%s %s)\n", (yyvsp[-1].str), (yyvsp[0].str)));
validate_respip_action((yyvsp[0].str));
if(!cfg_str2list_insert(
&cfg_parser->cfg->views->respip_actions, (yyvsp[-1].str), (yyvsp[0].str)))
fatal_exit("out of memory adding per-view "
"response-ip action");
}
2020-11-11 05:37:32 -05:00
#line 6013 "util/configparser.c"
break;
case 507:
2020-11-11 05:37:32 -05:00
#line 2751 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(view_response_ip_data:%s)\n", (yyvsp[-1].str)));
if(!cfg_str2list_insert(
&cfg_parser->cfg->views->respip_data, (yyvsp[-1].str), (yyvsp[0].str)))
fatal_exit("out of memory adding response-ip-data");
}
2020-11-11 05:37:32 -05:00
#line 6024 "util/configparser.c"
break;
case 508:
2020-11-11 05:37:32 -05:00
#line 2759 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(view_local_data:%s)\n", (yyvsp[0].str)));
if(!cfg_strlist_insert(&cfg_parser->cfg->views->local_data, (yyvsp[0].str))) {
fatal_exit("out of memory adding local-data");
}
}
2020-11-11 05:37:32 -05:00
#line 6035 "util/configparser.c"
break;
case 509:
2020-11-11 05:37:32 -05:00
#line 2767 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
char* ptr;
OUTYY(("P(view_local_data_ptr:%s)\n", (yyvsp[0].str)));
ptr = cfg_ptr_reverse((yyvsp[0].str));
free((yyvsp[0].str));
if(ptr) {
if(!cfg_strlist_insert(&cfg_parser->cfg->views->
local_data, ptr))
fatal_exit("out of memory adding local-data");
} else {
yyerror("local-data-ptr could not be reversed");
}
}
2020-11-11 05:37:32 -05:00
#line 6053 "util/configparser.c"
break;
case 510:
2020-11-11 05:37:32 -05:00
#line 2782 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(view-first:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->views->isfirst=(strcmp((yyvsp[0].str), "yes")==0);
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 6065 "util/configparser.c"
break;
case 511:
2020-11-11 05:37:32 -05:00
#line 2791 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("\nP(remote-control:)\n"));
}
2020-11-11 05:37:32 -05:00
#line 6073 "util/configparser.c"
break;
case 522:
2020-11-11 05:37:32 -05:00
#line 2802 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(control_enable:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->remote_control_enable =
(strcmp((yyvsp[0].str), "yes")==0);
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 6086 "util/configparser.c"
break;
case 523:
2020-11-11 05:37:32 -05:00
#line 2812 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(control_port:%s)\n", (yyvsp[0].str)));
if(atoi((yyvsp[0].str)) == 0)
yyerror("control port number expected");
else cfg_parser->cfg->control_port = atoi((yyvsp[0].str));
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 6098 "util/configparser.c"
break;
case 524:
2020-11-11 05:37:32 -05:00
#line 2821 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(control_interface:%s)\n", (yyvsp[0].str)));
if(!cfg_strlist_append(&cfg_parser->cfg->control_ifs, (yyvsp[0].str)))
yyerror("out of memory");
}
2020-11-11 05:37:32 -05:00
#line 6108 "util/configparser.c"
break;
case 525:
2020-11-11 05:37:32 -05:00
#line 2828 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(control_use_cert:%s)\n", (yyvsp[0].str)));
cfg_parser->cfg->control_use_cert = (strcmp((yyvsp[0].str), "yes")==0);
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 6118 "util/configparser.c"
break;
case 526:
2020-11-11 05:37:32 -05:00
#line 2835 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(rc_server_key_file:%s)\n", (yyvsp[0].str)));
free(cfg_parser->cfg->server_key_file);
cfg_parser->cfg->server_key_file = (yyvsp[0].str);
}
2020-11-11 05:37:32 -05:00
#line 6128 "util/configparser.c"
break;
case 527:
2020-11-11 05:37:32 -05:00
#line 2842 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(rc_server_cert_file:%s)\n", (yyvsp[0].str)));
free(cfg_parser->cfg->server_cert_file);
cfg_parser->cfg->server_cert_file = (yyvsp[0].str);
}
2020-11-11 05:37:32 -05:00
#line 6138 "util/configparser.c"
break;
case 528:
2020-11-11 05:37:32 -05:00
#line 2849 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(rc_control_key_file:%s)\n", (yyvsp[0].str)));
free(cfg_parser->cfg->control_key_file);
cfg_parser->cfg->control_key_file = (yyvsp[0].str);
}
2020-11-11 05:37:32 -05:00
#line 6148 "util/configparser.c"
break;
case 529:
2020-11-11 05:37:32 -05:00
#line 2856 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(rc_control_cert_file:%s)\n", (yyvsp[0].str)));
free(cfg_parser->cfg->control_cert_file);
cfg_parser->cfg->control_cert_file = (yyvsp[0].str);
}
2020-11-11 05:37:32 -05:00
#line 6158 "util/configparser.c"
break;
case 530:
2020-11-11 05:37:32 -05:00
#line 2863 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("\nP(dnstap:)\n"));
}
2020-11-11 05:37:32 -05:00
#line 6166 "util/configparser.c"
break;
case 552:
2020-11-11 05:37:32 -05:00
#line 2883 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(dt_dnstap_enable:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->dnstap = (strcmp((yyvsp[0].str), "yes")==0);
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 6178 "util/configparser.c"
break;
case 553:
2020-11-11 05:37:32 -05:00
#line 2892 "./util/configparser.y"
2020-09-16 12:38:51 -04:00
{
OUTYY(("P(dt_dnstap_bidirectional:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->dnstap_bidirectional =
(strcmp((yyvsp[0].str), "yes")==0);
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 6191 "util/configparser.c"
break;
case 554:
2020-11-11 05:37:32 -05:00
#line 2902 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(dt_dnstap_socket_path:%s)\n", (yyvsp[0].str)));
free(cfg_parser->cfg->dnstap_socket_path);
cfg_parser->cfg->dnstap_socket_path = (yyvsp[0].str);
}
2020-11-11 05:37:32 -05:00
#line 6201 "util/configparser.c"
break;
case 555:
2020-11-11 05:37:32 -05:00
#line 2909 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(dt_dnstap_ip:%s)\n", (yyvsp[0].str)));
free(cfg_parser->cfg->dnstap_ip);
cfg_parser->cfg->dnstap_ip = (yyvsp[0].str);
}
2020-11-11 05:37:32 -05:00
#line 6211 "util/configparser.c"
break;
case 556:
2020-11-11 05:37:32 -05:00
#line 2916 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(dt_dnstap_tls:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->dnstap_tls = (strcmp((yyvsp[0].str), "yes")==0);
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 6223 "util/configparser.c"
break;
case 557:
2020-11-11 05:37:32 -05:00
#line 2925 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(dt_dnstap_tls_server_name:%s)\n", (yyvsp[0].str)));
free(cfg_parser->cfg->dnstap_tls_server_name);
cfg_parser->cfg->dnstap_tls_server_name = (yyvsp[0].str);
}
2020-11-11 05:37:32 -05:00
#line 6233 "util/configparser.c"
break;
case 558:
2020-11-11 05:37:32 -05:00
#line 2932 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(dt_dnstap_tls_cert_bundle:%s)\n", (yyvsp[0].str)));
free(cfg_parser->cfg->dnstap_tls_cert_bundle);
cfg_parser->cfg->dnstap_tls_cert_bundle = (yyvsp[0].str);
}
2020-11-11 05:37:32 -05:00
#line 6243 "util/configparser.c"
break;
case 559:
2020-11-11 05:37:32 -05:00
#line 2939 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(dt_dnstap_tls_client_key_file:%s)\n", (yyvsp[0].str)));
free(cfg_parser->cfg->dnstap_tls_client_key_file);
cfg_parser->cfg->dnstap_tls_client_key_file = (yyvsp[0].str);
}
2020-11-11 05:37:32 -05:00
#line 6253 "util/configparser.c"
break;
case 560:
2020-11-11 05:37:32 -05:00
#line 2946 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(dt_dnstap_tls_client_cert_file:%s)\n", (yyvsp[0].str)));
free(cfg_parser->cfg->dnstap_tls_client_cert_file);
cfg_parser->cfg->dnstap_tls_client_cert_file = (yyvsp[0].str);
}
2020-11-11 05:37:32 -05:00
#line 6263 "util/configparser.c"
break;
case 561:
2020-11-11 05:37:32 -05:00
#line 2953 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(dt_dnstap_send_identity:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->dnstap_send_identity = (strcmp((yyvsp[0].str), "yes")==0);
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 6275 "util/configparser.c"
break;
case 562:
2020-11-11 05:37:32 -05:00
#line 2962 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(dt_dnstap_send_version:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->dnstap_send_version = (strcmp((yyvsp[0].str), "yes")==0);
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 6287 "util/configparser.c"
break;
case 563:
2020-11-11 05:37:32 -05:00
#line 2971 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(dt_dnstap_identity:%s)\n", (yyvsp[0].str)));
free(cfg_parser->cfg->dnstap_identity);
cfg_parser->cfg->dnstap_identity = (yyvsp[0].str);
}
2020-11-11 05:37:32 -05:00
#line 6297 "util/configparser.c"
break;
case 564:
2020-11-11 05:37:32 -05:00
#line 2978 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(dt_dnstap_version:%s)\n", (yyvsp[0].str)));
free(cfg_parser->cfg->dnstap_version);
cfg_parser->cfg->dnstap_version = (yyvsp[0].str);
}
2020-11-11 05:37:32 -05:00
#line 6307 "util/configparser.c"
break;
case 565:
2020-11-11 05:37:32 -05:00
#line 2985 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(dt_dnstap_log_resolver_query_messages:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->dnstap_log_resolver_query_messages =
(strcmp((yyvsp[0].str), "yes")==0);
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 6320 "util/configparser.c"
break;
case 566:
2020-11-11 05:37:32 -05:00
#line 2995 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(dt_dnstap_log_resolver_response_messages:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->dnstap_log_resolver_response_messages =
(strcmp((yyvsp[0].str), "yes")==0);
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 6333 "util/configparser.c"
break;
case 567:
2020-11-11 05:37:32 -05:00
#line 3005 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(dt_dnstap_log_client_query_messages:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->dnstap_log_client_query_messages =
(strcmp((yyvsp[0].str), "yes")==0);
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 6346 "util/configparser.c"
break;
case 568:
2020-11-11 05:37:32 -05:00
#line 3015 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(dt_dnstap_log_client_response_messages:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->dnstap_log_client_response_messages =
(strcmp((yyvsp[0].str), "yes")==0);
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 6359 "util/configparser.c"
break;
case 569:
2020-11-11 05:37:32 -05:00
#line 3025 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(dt_dnstap_log_forwarder_query_messages:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->dnstap_log_forwarder_query_messages =
(strcmp((yyvsp[0].str), "yes")==0);
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 6372 "util/configparser.c"
break;
case 570:
2020-11-11 05:37:32 -05:00
#line 3035 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(dt_dnstap_log_forwarder_response_messages:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->dnstap_log_forwarder_response_messages =
(strcmp((yyvsp[0].str), "yes")==0);
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 6385 "util/configparser.c"
break;
case 571:
2020-11-11 05:37:32 -05:00
#line 3045 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("\nP(python:)\n"));
}
2020-11-11 05:37:32 -05:00
#line 6393 "util/configparser.c"
break;
case 575:
2020-11-11 05:37:32 -05:00
#line 3054 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(python-script:%s)\n", (yyvsp[0].str)));
if(!cfg_strlist_append_ex(&cfg_parser->cfg->python_script, (yyvsp[0].str)))
yyerror("out of memory");
}
2020-11-11 05:37:32 -05:00
#line 6403 "util/configparser.c"
break;
case 576:
2020-11-11 05:37:32 -05:00
#line 3060 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("\nP(dynlib:)\n"));
}
2020-11-11 05:37:32 -05:00
#line 6411 "util/configparser.c"
break;
case 580:
2020-11-11 05:37:32 -05:00
#line 3069 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(dynlib-file:%s)\n", (yyvsp[0].str)));
if(!cfg_strlist_append_ex(&cfg_parser->cfg->dynlib_file, (yyvsp[0].str)))
yyerror("out of memory");
}
2020-11-11 05:37:32 -05:00
#line 6421 "util/configparser.c"
break;
case 581:
2020-11-11 05:37:32 -05:00
#line 3075 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(disable_dnssec_lame_check:%s)\n", (yyvsp[0].str)));
if (strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->disable_dnssec_lame_check =
(strcmp((yyvsp[0].str), "yes")==0);
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 6434 "util/configparser.c"
break;
case 582:
2020-11-11 05:37:32 -05:00
#line 3085 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_log_identity:%s)\n", (yyvsp[0].str)));
free(cfg_parser->cfg->log_identity);
cfg_parser->cfg->log_identity = (yyvsp[0].str);
}
2020-11-11 05:37:32 -05:00
#line 6444 "util/configparser.c"
break;
case 583:
2020-11-11 05:37:32 -05:00
#line 3092 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_response_ip:%s %s)\n", (yyvsp[-1].str), (yyvsp[0].str)));
validate_respip_action((yyvsp[0].str));
if(!cfg_str2list_insert(&cfg_parser->cfg->respip_actions,
(yyvsp[-1].str), (yyvsp[0].str)))
fatal_exit("out of memory adding response-ip");
}
2020-11-11 05:37:32 -05:00
#line 6456 "util/configparser.c"
break;
case 584:
2020-11-11 05:37:32 -05:00
#line 3101 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_response_ip_data:%s)\n", (yyvsp[-1].str)));
if(!cfg_str2list_insert(&cfg_parser->cfg->respip_data,
(yyvsp[-1].str), (yyvsp[0].str)))
fatal_exit("out of memory adding response-ip-data");
}
2020-11-11 05:37:32 -05:00
#line 6467 "util/configparser.c"
break;
case 585:
2020-11-11 05:37:32 -05:00
#line 3109 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("\nP(dnscrypt:)\n"));
}
2020-11-11 05:37:32 -05:00
#line 6475 "util/configparser.c"
break;
case 598:
2020-11-11 05:37:32 -05:00
#line 3125 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(dnsc_dnscrypt_enable:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->dnscrypt = (strcmp((yyvsp[0].str), "yes")==0);
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 6487 "util/configparser.c"
break;
case 599:
2020-11-11 05:37:32 -05:00
#line 3135 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(dnsc_dnscrypt_port:%s)\n", (yyvsp[0].str)));
if(atoi((yyvsp[0].str)) == 0)
yyerror("port number expected");
else cfg_parser->cfg->dnscrypt_port = atoi((yyvsp[0].str));
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 6499 "util/configparser.c"
break;
case 600:
2020-11-11 05:37:32 -05:00
#line 3144 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(dnsc_dnscrypt_provider:%s)\n", (yyvsp[0].str)));
free(cfg_parser->cfg->dnscrypt_provider);
cfg_parser->cfg->dnscrypt_provider = (yyvsp[0].str);
}
2020-11-11 05:37:32 -05:00
#line 6509 "util/configparser.c"
break;
case 601:
2020-11-11 05:37:32 -05:00
#line 3151 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(dnsc_dnscrypt_provider_cert:%s)\n", (yyvsp[0].str)));
if(cfg_strlist_find(cfg_parser->cfg->dnscrypt_provider_cert, (yyvsp[0].str)))
log_warn("dnscrypt-provider-cert %s is a duplicate", (yyvsp[0].str));
if(!cfg_strlist_insert(&cfg_parser->cfg->dnscrypt_provider_cert, (yyvsp[0].str)))
fatal_exit("out of memory adding dnscrypt-provider-cert");
}
2020-11-11 05:37:32 -05:00
#line 6521 "util/configparser.c"
break;
case 602:
2020-11-11 05:37:32 -05:00
#line 3160 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(dnsc_dnscrypt_provider_cert_rotated:%s)\n", (yyvsp[0].str)));
if(!cfg_strlist_insert(&cfg_parser->cfg->dnscrypt_provider_cert_rotated, (yyvsp[0].str)))
fatal_exit("out of memory adding dnscrypt-provider-cert-rotated");
}
2020-11-11 05:37:32 -05:00
#line 6531 "util/configparser.c"
break;
case 603:
2020-11-11 05:37:32 -05:00
#line 3167 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(dnsc_dnscrypt_secret_key:%s)\n", (yyvsp[0].str)));
if(cfg_strlist_find(cfg_parser->cfg->dnscrypt_secret_key, (yyvsp[0].str)))
log_warn("dnscrypt-secret-key: %s is a duplicate", (yyvsp[0].str));
if(!cfg_strlist_insert(&cfg_parser->cfg->dnscrypt_secret_key, (yyvsp[0].str)))
fatal_exit("out of memory adding dnscrypt-secret-key");
}
2020-11-11 05:37:32 -05:00
#line 6543 "util/configparser.c"
break;
case 604:
2020-11-11 05:37:32 -05:00
#line 3176 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(dnscrypt_shared_secret_cache_size:%s)\n", (yyvsp[0].str)));
if(!cfg_parse_memsize((yyvsp[0].str), &cfg_parser->cfg->dnscrypt_shared_secret_cache_size))
yyerror("memory size expected");
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 6554 "util/configparser.c"
break;
case 605:
2020-11-11 05:37:32 -05:00
#line 3184 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(dnscrypt_shared_secret_cache_slabs:%s)\n", (yyvsp[0].str)));
if(atoi((yyvsp[0].str)) == 0)
yyerror("number expected");
else {
cfg_parser->cfg->dnscrypt_shared_secret_cache_slabs = atoi((yyvsp[0].str));
if(!is_pow2(cfg_parser->cfg->dnscrypt_shared_secret_cache_slabs))
yyerror("must be a power of 2");
}
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 6570 "util/configparser.c"
break;
case 606:
2020-11-11 05:37:32 -05:00
#line 3197 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(dnscrypt_nonce_cache_size:%s)\n", (yyvsp[0].str)));
if(!cfg_parse_memsize((yyvsp[0].str), &cfg_parser->cfg->dnscrypt_nonce_cache_size))
yyerror("memory size expected");
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 6581 "util/configparser.c"
break;
case 607:
2020-11-11 05:37:32 -05:00
#line 3205 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(dnscrypt_nonce_cache_slabs:%s)\n", (yyvsp[0].str)));
if(atoi((yyvsp[0].str)) == 0)
yyerror("number expected");
else {
cfg_parser->cfg->dnscrypt_nonce_cache_slabs = atoi((yyvsp[0].str));
if(!is_pow2(cfg_parser->cfg->dnscrypt_nonce_cache_slabs))
yyerror("must be a power of 2");
}
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 6597 "util/configparser.c"
break;
case 608:
2020-11-11 05:37:32 -05:00
#line 3218 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("\nP(cachedb:)\n"));
}
2020-11-11 05:37:32 -05:00
#line 6605 "util/configparser.c"
break;
case 617:
2020-11-11 05:37:32 -05:00
#line 3229 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
#ifdef USE_CACHEDB
OUTYY(("P(backend:%s)\n", (yyvsp[0].str)));
free(cfg_parser->cfg->cachedb_backend);
cfg_parser->cfg->cachedb_backend = (yyvsp[0].str);
#else
OUTYY(("P(Compiled without cachedb, ignoring)\n"));
free((yyvsp[0].str));
#endif
}
2020-11-11 05:37:32 -05:00
#line 6620 "util/configparser.c"
break;
case 618:
2020-11-11 05:37:32 -05:00
#line 3241 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
#ifdef USE_CACHEDB
OUTYY(("P(secret-seed:%s)\n", (yyvsp[0].str)));
free(cfg_parser->cfg->cachedb_secret);
cfg_parser->cfg->cachedb_secret = (yyvsp[0].str);
#else
OUTYY(("P(Compiled without cachedb, ignoring)\n"));
free((yyvsp[0].str));
#endif
}
2020-11-11 05:37:32 -05:00
#line 6635 "util/configparser.c"
break;
case 619:
2020-11-11 05:37:32 -05:00
#line 3253 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
#if defined(USE_CACHEDB) && defined(USE_REDIS)
OUTYY(("P(redis_server_host:%s)\n", (yyvsp[0].str)));
free(cfg_parser->cfg->redis_server_host);
cfg_parser->cfg->redis_server_host = (yyvsp[0].str);
#else
OUTYY(("P(Compiled without cachedb or redis, ignoring)\n"));
free((yyvsp[0].str));
#endif
}
2020-11-11 05:37:32 -05:00
#line 6650 "util/configparser.c"
break;
case 620:
2020-11-11 05:37:32 -05:00
#line 3265 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
#if defined(USE_CACHEDB) && defined(USE_REDIS)
int port;
OUTYY(("P(redis_server_port:%s)\n", (yyvsp[0].str)));
port = atoi((yyvsp[0].str));
if(port == 0 || port < 0 || port > 65535)
yyerror("valid redis server port number expected");
else cfg_parser->cfg->redis_server_port = port;
#else
OUTYY(("P(Compiled without cachedb or redis, ignoring)\n"));
#endif
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 6668 "util/configparser.c"
break;
case 621:
2020-11-11 05:37:32 -05:00
#line 3280 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
#if defined(USE_CACHEDB) && defined(USE_REDIS)
OUTYY(("P(redis_timeout:%s)\n", (yyvsp[0].str)));
if(atoi((yyvsp[0].str)) == 0)
yyerror("redis timeout value expected");
else cfg_parser->cfg->redis_timeout = atoi((yyvsp[0].str));
#else
OUTYY(("P(Compiled without cachedb or redis, ignoring)\n"));
#endif
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 6684 "util/configparser.c"
break;
case 622:
2020-11-11 05:37:32 -05:00
#line 3293 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
#if defined(USE_CACHEDB) && defined(USE_REDIS)
OUTYY(("P(redis_expire_records:%s)\n", (yyvsp[0].str)));
if(strcmp((yyvsp[0].str), "yes") != 0 && strcmp((yyvsp[0].str), "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->cfg->redis_expire_records = (strcmp((yyvsp[0].str), "yes")==0);
#else
OUTYY(("P(Compiled without cachedb or redis, ignoring)\n"));
#endif
free((yyvsp[0].str));
}
2020-11-11 05:37:32 -05:00
#line 6700 "util/configparser.c"
break;
case 623:
2020-11-11 05:37:32 -05:00
#line 3306 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
OUTYY(("P(server_tcp_connection_limit:%s %s)\n", (yyvsp[-1].str), (yyvsp[0].str)));
if (atoi((yyvsp[0].str)) < 0)
yyerror("positive number expected");
else {
if(!cfg_str2list_insert(&cfg_parser->cfg->tcp_connection_limits, (yyvsp[-1].str), (yyvsp[0].str)))
fatal_exit("out of memory adding tcp connection limit");
}
}
2020-11-11 05:37:32 -05:00
#line 6714 "util/configparser.c"
break;
case 624:
2020-11-11 05:37:32 -05:00
#line 3317 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
2019-05-02 07:43:30 -04:00
OUTYY(("\nP(ipset:)\n"));
}
2020-11-11 05:37:32 -05:00
#line 6722 "util/configparser.c"
2019-05-02 07:43:30 -04:00
break;
case 629:
2020-11-11 05:37:32 -05:00
#line 3326 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
2019-05-02 07:43:30 -04:00
#ifdef USE_IPSET
OUTYY(("P(name-v4:%s)\n", (yyvsp[0].str)));
if(cfg_parser->cfg->ipset_name_v4)
yyerror("ipset name v4 override, there must be one "
"name for ip v4");
free(cfg_parser->cfg->ipset_name_v4);
cfg_parser->cfg->ipset_name_v4 = (yyvsp[0].str);
#else
OUTYY(("P(Compiled without ipset, ignoring)\n"));
free((yyvsp[0].str));
#endif
}
2020-11-11 05:37:32 -05:00
#line 6740 "util/configparser.c"
2019-05-02 07:43:30 -04:00
break;
case 630:
2020-11-11 05:37:32 -05:00
#line 3341 "./util/configparser.y"
2020-06-24 08:18:47 -04:00
{
2019-05-02 07:43:30 -04:00
#ifdef USE_IPSET
OUTYY(("P(name-v6:%s)\n", (yyvsp[0].str)));
if(cfg_parser->cfg->ipset_name_v6)
yyerror("ipset name v6 override, there must be one "
"name for ip v6");
free(cfg_parser->cfg->ipset_name_v6);
cfg_parser->cfg->ipset_name_v6 = (yyvsp[0].str);
#else
OUTYY(("P(Compiled without ipset, ignoring)\n"));
free((yyvsp[0].str));
#endif
}
2020-11-11 05:37:32 -05:00
#line 6758 "util/configparser.c"
2019-05-02 07:43:30 -04:00
break;
2019-05-02 07:43:30 -04:00
2020-11-11 05:37:32 -05:00
#line 6762 "util/configparser.c"
default: break;
}
/* User semantic actions sometimes alter yychar, and that requires
that yytoken be updated with the new translation. We take the
approach of translating immediately before every use of yytoken.
One alternative is translating here after every semantic action,
but that translation would be missed if the semantic action invokes
YYABORT, YYACCEPT, or YYERROR immediately after altering yychar or
if it invokes YYBACKUP. In the case of YYABORT or YYACCEPT, an
incorrect destructor might then be invoked immediately. In the
case of YYERROR or YYBACKUP, subsequent parser actions might lead
to an incorrect destructor call or verbose syntax error message
before the lookahead is translated. */
YY_SYMBOL_PRINT ("-> $$ =", yyr1[yyn], &yyval, &yyloc);
YYPOPSTACK (yylen);
yylen = 0;
YY_STACK_PRINT (yyss, yyssp);
*++yyvsp = yyval;
/* Now 'shift' the result of the reduction. Determine what state
that goes to, based on the state we popped back to and the rule
number reduced by. */
{
const int yylhs = yyr1[yyn] - YYNTOKENS;
const int yyi = yypgoto[yylhs] + *yyssp;
yystate = (0 <= yyi && yyi <= YYLAST && yycheck[yyi] == *yyssp
? yytable[yyi]
: yydefgoto[yylhs]);
}
goto yynewstate;
/*--------------------------------------.
| yyerrlab -- here on detecting error. |
`--------------------------------------*/
yyerrlab:
/* Make sure we have latest lookahead translation. See comments at
user semantic actions for why this is necessary. */
yytoken = yychar == YYEMPTY ? YYEMPTY : YYTRANSLATE (yychar);
/* If not already recovering from an error, report this error. */
if (!yyerrstatus)
{
++yynerrs;
#if ! YYERROR_VERBOSE
yyerror (YY_("syntax error"));
#else
# define YYSYNTAX_ERROR yysyntax_error (&yymsg_alloc, &yymsg, \
yyssp, yytoken)
{
char const *yymsgp = YY_("syntax error");
int yysyntax_error_status;
yysyntax_error_status = YYSYNTAX_ERROR;
if (yysyntax_error_status == 0)
yymsgp = yymsg;
else if (yysyntax_error_status == 1)
{
if (yymsg != yymsgbuf)
YYSTACK_FREE (yymsg);
2020-06-24 08:18:47 -04:00
yymsg = YY_CAST (char *, YYSTACK_ALLOC (YY_CAST (YYSIZE_T, yymsg_alloc)));
if (!yymsg)
{
yymsg = yymsgbuf;
yymsg_alloc = sizeof yymsgbuf;
yysyntax_error_status = 2;
}
else
{
yysyntax_error_status = YYSYNTAX_ERROR;
yymsgp = yymsg;
}
}
yyerror (yymsgp);
if (yysyntax_error_status == 2)
goto yyexhaustedlab;
}
# undef YYSYNTAX_ERROR
#endif
}
if (yyerrstatus == 3)
{
/* If just tried and failed to reuse lookahead token after an
error, discard it. */
if (yychar <= YYEOF)
{
/* Return failure if at end of input. */
if (yychar == YYEOF)
YYABORT;
}
else
{
yydestruct ("Error: discarding",
yytoken, &yylval);
yychar = YYEMPTY;
}
}
/* Else will try to reuse lookahead token after shifting the error
token. */
goto yyerrlab1;
/*---------------------------------------------------.
| yyerrorlab -- error raised explicitly by YYERROR. |
`---------------------------------------------------*/
yyerrorlab:
/* Pacify compilers when the user code never invokes YYERROR and the
label yyerrorlab therefore never appears in user code. */
if (0)
YYERROR;
/* Do not reclaim the symbols of the rule whose action triggered
this YYERROR. */
YYPOPSTACK (yylen);
yylen = 0;
YY_STACK_PRINT (yyss, yyssp);
yystate = *yyssp;
goto yyerrlab1;
/*-------------------------------------------------------------.
| yyerrlab1 -- common code for both syntax error and YYERROR. |
`-------------------------------------------------------------*/
yyerrlab1:
yyerrstatus = 3; /* Each real token shifted decrements this. */
for (;;)
{
yyn = yypact[yystate];
if (!yypact_value_is_default (yyn))
{
yyn += YYTERROR;
if (0 <= yyn && yyn <= YYLAST && yycheck[yyn] == YYTERROR)
{
yyn = yytable[yyn];
if (0 < yyn)
break;
}
}
/* Pop the current state because it cannot handle the error token. */
if (yyssp == yyss)
YYABORT;
yydestruct ("Error: popping",
yystos[yystate], yyvsp);
YYPOPSTACK (1);
yystate = *yyssp;
YY_STACK_PRINT (yyss, yyssp);
}
YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
*++yyvsp = yylval;
YY_IGNORE_MAYBE_UNINITIALIZED_END
/* Shift the error token. */
YY_SYMBOL_PRINT ("Shifting", yystos[yyn], yyvsp, yylsp);
yystate = yyn;
goto yynewstate;
/*-------------------------------------.
| yyacceptlab -- YYACCEPT comes here. |
`-------------------------------------*/
yyacceptlab:
yyresult = 0;
goto yyreturn;
/*-----------------------------------.
| yyabortlab -- YYABORT comes here. |
`-----------------------------------*/
yyabortlab:
yyresult = 1;
goto yyreturn;
#if !defined yyoverflow || YYERROR_VERBOSE
/*-------------------------------------------------.
| yyexhaustedlab -- memory exhaustion comes here. |
`-------------------------------------------------*/
yyexhaustedlab:
yyerror (YY_("memory exhausted"));
yyresult = 2;
/* Fall through. */
#endif
/*-----------------------------------------------------.
| yyreturn -- parsing is finished, return the result. |
`-----------------------------------------------------*/
yyreturn:
if (yychar != YYEMPTY)
{
/* Make sure we have latest lookahead translation. See comments at
user semantic actions for why this is necessary. */
yytoken = YYTRANSLATE (yychar);
yydestruct ("Cleanup: discarding lookahead",
yytoken, &yylval);
}
/* Do not reclaim the symbols of the rule whose action triggered
this YYABORT or YYACCEPT. */
YYPOPSTACK (yylen);
YY_STACK_PRINT (yyss, yyssp);
while (yyssp != yyss)
{
yydestruct ("Cleanup: popping",
2020-06-24 08:18:47 -04:00
yystos[+*yyssp], yyvsp);
YYPOPSTACK (1);
}
#ifndef yyoverflow
if (yyss != yyssa)
YYSTACK_FREE (yyss);
#endif
#if YYERROR_VERBOSE
if (yymsg != yymsgbuf)
YYSTACK_FREE (yymsg);
#endif
return yyresult;
}
2020-11-11 05:37:32 -05:00
#line 3355 "./util/configparser.y"
/* parse helper routines could be here */
static void
validate_respip_action(const char* action)
{
if(strcmp(action, "deny")!=0 &&
strcmp(action, "redirect")!=0 &&
strcmp(action, "inform")!=0 &&
strcmp(action, "inform_deny")!=0 &&
strcmp(action, "always_transparent")!=0 &&
strcmp(action, "always_refuse")!=0 &&
strcmp(action, "always_nxdomain")!=0)
{
yyerror("response-ip action: expected deny, redirect, "
"inform, inform_deny, always_transparent, "
"always_refuse or always_nxdomain");
}
}
2019-05-02 07:43:30 -04:00
2019-05-03 05:45:34 -04:00