/* A Bison parser, made by GNU Bison 3.7.6. */ /* Bison implementation for Yacc-like parsers in C Copyright (C) 1984, 1989-1990, 2000-2015, 2018-2021 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 . */ /* 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. */ /* DO NOT RELY ON FEATURES THAT ARE NOT DOCUMENTED in the manual, especially those whose name start with YY_ or yy_. They are private implementation details that can be changed or removed. */ /* 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. */ /* Identify Bison output, and Bison version. */ #define YYBISON 30706 /* Bison version string. */ #define YYBISON_VERSION "3.7.6" /* Skeleton name. */ #define YYSKELETON_NAME "yacc.c" /* Pure parsers. */ #define YYPURE 0 /* Push parsers. */ #define YYPUSH 0 /* Pull parsers. */ #define YYPULL 1 /* Substitute the variable and function names. */ #define yyparse c_parse #define yylex c_lex #define yyerror c_error #define yydebug c_debug #define yynerrs c_nerrs #define yylval c_lval #define yychar c_char /* First part of user prologue. */ #line 10 "configparser.y" #include "config.h" #include #include #include #include #include "options.h" #include "util.h" #include "dname.h" #include "tsig.h" #include "rrl.h" int yylex(void); #ifdef __cplusplus extern "C" #endif /* these need to be global, otherwise they cannot be used inside yacc */ extern config_parser_state_type *cfg_parser; static void append_acl(struct acl_options **list, struct acl_options *acl); static void add_to_last_acl(struct acl_options **list, char *ac); static int parse_boolean(const char *str, int *bln); static int parse_expire_expr(const char *str, long long *num, uint8_t *expr); static int parse_number(const char *str, long long *num); static int parse_range(const char *str, long long *low, long long *high); struct component { struct component *next; char *str; }; #line 115 "configparser.c" # ifndef YY_CAST # ifdef __cplusplus # define YY_CAST(Type, Val) static_cast (Val) # define YY_REINTERPRET_CAST(Type, Val) reinterpret_cast (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 #include "configparser.h" /* Symbol kind. */ enum yysymbol_kind_t { YYSYMBOL_YYEMPTY = -2, YYSYMBOL_YYEOF = 0, /* "end of file" */ YYSYMBOL_YYerror = 1, /* error */ YYSYMBOL_YYUNDEF = 2, /* "invalid token" */ YYSYMBOL_STRING = 3, /* STRING */ YYSYMBOL_VAR_SERVER = 4, /* VAR_SERVER */ YYSYMBOL_VAR_SERVER_COUNT = 5, /* VAR_SERVER_COUNT */ YYSYMBOL_VAR_IP_ADDRESS = 6, /* VAR_IP_ADDRESS */ YYSYMBOL_VAR_IP_TRANSPARENT = 7, /* VAR_IP_TRANSPARENT */ YYSYMBOL_VAR_IP_FREEBIND = 8, /* VAR_IP_FREEBIND */ YYSYMBOL_VAR_REUSEPORT = 9, /* VAR_REUSEPORT */ YYSYMBOL_VAR_SEND_BUFFER_SIZE = 10, /* VAR_SEND_BUFFER_SIZE */ YYSYMBOL_VAR_RECEIVE_BUFFER_SIZE = 11, /* VAR_RECEIVE_BUFFER_SIZE */ YYSYMBOL_VAR_DEBUG_MODE = 12, /* VAR_DEBUG_MODE */ YYSYMBOL_VAR_IP4_ONLY = 13, /* VAR_IP4_ONLY */ YYSYMBOL_VAR_IP6_ONLY = 14, /* VAR_IP6_ONLY */ YYSYMBOL_VAR_DO_IP4 = 15, /* VAR_DO_IP4 */ YYSYMBOL_VAR_DO_IP6 = 16, /* VAR_DO_IP6 */ YYSYMBOL_VAR_PORT = 17, /* VAR_PORT */ YYSYMBOL_VAR_USE_SYSTEMD = 18, /* VAR_USE_SYSTEMD */ YYSYMBOL_VAR_VERBOSITY = 19, /* VAR_VERBOSITY */ YYSYMBOL_VAR_USERNAME = 20, /* VAR_USERNAME */ YYSYMBOL_VAR_CHROOT = 21, /* VAR_CHROOT */ YYSYMBOL_VAR_ZONESDIR = 22, /* VAR_ZONESDIR */ YYSYMBOL_VAR_ZONELISTFILE = 23, /* VAR_ZONELISTFILE */ YYSYMBOL_VAR_DATABASE = 24, /* VAR_DATABASE */ YYSYMBOL_VAR_LOGFILE = 25, /* VAR_LOGFILE */ YYSYMBOL_VAR_LOG_ONLY_SYSLOG = 26, /* VAR_LOG_ONLY_SYSLOG */ YYSYMBOL_VAR_PIDFILE = 27, /* VAR_PIDFILE */ YYSYMBOL_VAR_DIFFFILE = 28, /* VAR_DIFFFILE */ YYSYMBOL_VAR_XFRDFILE = 29, /* VAR_XFRDFILE */ YYSYMBOL_VAR_XFRDIR = 30, /* VAR_XFRDIR */ YYSYMBOL_VAR_HIDE_VERSION = 31, /* VAR_HIDE_VERSION */ YYSYMBOL_VAR_HIDE_IDENTITY = 32, /* VAR_HIDE_IDENTITY */ YYSYMBOL_VAR_VERSION = 33, /* VAR_VERSION */ YYSYMBOL_VAR_IDENTITY = 34, /* VAR_IDENTITY */ YYSYMBOL_VAR_NSID = 35, /* VAR_NSID */ YYSYMBOL_VAR_TCP_COUNT = 36, /* VAR_TCP_COUNT */ YYSYMBOL_VAR_TCP_REJECT_OVERFLOW = 37, /* VAR_TCP_REJECT_OVERFLOW */ YYSYMBOL_VAR_TCP_QUERY_COUNT = 38, /* VAR_TCP_QUERY_COUNT */ YYSYMBOL_VAR_TCP_TIMEOUT = 39, /* VAR_TCP_TIMEOUT */ YYSYMBOL_VAR_TCP_MSS = 40, /* VAR_TCP_MSS */ YYSYMBOL_VAR_OUTGOING_TCP_MSS = 41, /* VAR_OUTGOING_TCP_MSS */ YYSYMBOL_VAR_IPV4_EDNS_SIZE = 42, /* VAR_IPV4_EDNS_SIZE */ YYSYMBOL_VAR_IPV6_EDNS_SIZE = 43, /* VAR_IPV6_EDNS_SIZE */ YYSYMBOL_VAR_STATISTICS = 44, /* VAR_STATISTICS */ YYSYMBOL_VAR_XFRD_RELOAD_TIMEOUT = 45, /* VAR_XFRD_RELOAD_TIMEOUT */ YYSYMBOL_VAR_LOG_TIME_ASCII = 46, /* VAR_LOG_TIME_ASCII */ YYSYMBOL_VAR_ROUND_ROBIN = 47, /* VAR_ROUND_ROBIN */ YYSYMBOL_VAR_MINIMAL_RESPONSES = 48, /* VAR_MINIMAL_RESPONSES */ YYSYMBOL_VAR_CONFINE_TO_ZONE = 49, /* VAR_CONFINE_TO_ZONE */ YYSYMBOL_VAR_REFUSE_ANY = 50, /* VAR_REFUSE_ANY */ YYSYMBOL_VAR_ZONEFILES_CHECK = 51, /* VAR_ZONEFILES_CHECK */ YYSYMBOL_VAR_ZONEFILES_WRITE = 52, /* VAR_ZONEFILES_WRITE */ YYSYMBOL_VAR_RRL_SIZE = 53, /* VAR_RRL_SIZE */ YYSYMBOL_VAR_RRL_RATELIMIT = 54, /* VAR_RRL_RATELIMIT */ YYSYMBOL_VAR_RRL_SLIP = 55, /* VAR_RRL_SLIP */ YYSYMBOL_VAR_RRL_IPV4_PREFIX_LENGTH = 56, /* VAR_RRL_IPV4_PREFIX_LENGTH */ YYSYMBOL_VAR_RRL_IPV6_PREFIX_LENGTH = 57, /* VAR_RRL_IPV6_PREFIX_LENGTH */ YYSYMBOL_VAR_RRL_WHITELIST_RATELIMIT = 58, /* VAR_RRL_WHITELIST_RATELIMIT */ YYSYMBOL_VAR_TLS_SERVICE_KEY = 59, /* VAR_TLS_SERVICE_KEY */ YYSYMBOL_VAR_TLS_SERVICE_PEM = 60, /* VAR_TLS_SERVICE_PEM */ YYSYMBOL_VAR_TLS_SERVICE_OCSP = 61, /* VAR_TLS_SERVICE_OCSP */ YYSYMBOL_VAR_TLS_PORT = 62, /* VAR_TLS_PORT */ YYSYMBOL_VAR_TLS_CERT_BUNDLE = 63, /* VAR_TLS_CERT_BUNDLE */ YYSYMBOL_VAR_PROXY_PROTOCOL_PORT = 64, /* VAR_PROXY_PROTOCOL_PORT */ YYSYMBOL_VAR_CPU_AFFINITY = 65, /* VAR_CPU_AFFINITY */ YYSYMBOL_VAR_XFRD_CPU_AFFINITY = 66, /* VAR_XFRD_CPU_AFFINITY */ YYSYMBOL_VAR_SERVER_CPU_AFFINITY = 67, /* VAR_SERVER_CPU_AFFINITY */ YYSYMBOL_VAR_DROP_UPDATES = 68, /* VAR_DROP_UPDATES */ YYSYMBOL_VAR_XFRD_TCP_MAX = 69, /* VAR_XFRD_TCP_MAX */ YYSYMBOL_VAR_XFRD_TCP_PIPELINE = 70, /* VAR_XFRD_TCP_PIPELINE */ YYSYMBOL_VAR_DNSTAP = 71, /* VAR_DNSTAP */ YYSYMBOL_VAR_DNSTAP_ENABLE = 72, /* VAR_DNSTAP_ENABLE */ YYSYMBOL_VAR_DNSTAP_SOCKET_PATH = 73, /* VAR_DNSTAP_SOCKET_PATH */ YYSYMBOL_VAR_DNSTAP_IP = 74, /* VAR_DNSTAP_IP */ YYSYMBOL_VAR_DNSTAP_TLS = 75, /* VAR_DNSTAP_TLS */ YYSYMBOL_VAR_DNSTAP_TLS_SERVER_NAME = 76, /* VAR_DNSTAP_TLS_SERVER_NAME */ YYSYMBOL_VAR_DNSTAP_TLS_CERT_BUNDLE = 77, /* VAR_DNSTAP_TLS_CERT_BUNDLE */ YYSYMBOL_VAR_DNSTAP_TLS_CLIENT_KEY_FILE = 78, /* VAR_DNSTAP_TLS_CLIENT_KEY_FILE */ YYSYMBOL_VAR_DNSTAP_TLS_CLIENT_CERT_FILE = 79, /* VAR_DNSTAP_TLS_CLIENT_CERT_FILE */ YYSYMBOL_VAR_DNSTAP_SEND_IDENTITY = 80, /* VAR_DNSTAP_SEND_IDENTITY */ YYSYMBOL_VAR_DNSTAP_SEND_VERSION = 81, /* VAR_DNSTAP_SEND_VERSION */ YYSYMBOL_VAR_DNSTAP_IDENTITY = 82, /* VAR_DNSTAP_IDENTITY */ YYSYMBOL_VAR_DNSTAP_VERSION = 83, /* VAR_DNSTAP_VERSION */ YYSYMBOL_VAR_DNSTAP_LOG_AUTH_QUERY_MESSAGES = 84, /* VAR_DNSTAP_LOG_AUTH_QUERY_MESSAGES */ YYSYMBOL_VAR_DNSTAP_LOG_AUTH_RESPONSE_MESSAGES = 85, /* VAR_DNSTAP_LOG_AUTH_RESPONSE_MESSAGES */ YYSYMBOL_VAR_REMOTE_CONTROL = 86, /* VAR_REMOTE_CONTROL */ YYSYMBOL_VAR_CONTROL_ENABLE = 87, /* VAR_CONTROL_ENABLE */ YYSYMBOL_VAR_CONTROL_INTERFACE = 88, /* VAR_CONTROL_INTERFACE */ YYSYMBOL_VAR_CONTROL_PORT = 89, /* VAR_CONTROL_PORT */ YYSYMBOL_VAR_SERVER_KEY_FILE = 90, /* VAR_SERVER_KEY_FILE */ YYSYMBOL_VAR_SERVER_CERT_FILE = 91, /* VAR_SERVER_CERT_FILE */ YYSYMBOL_VAR_CONTROL_KEY_FILE = 92, /* VAR_CONTROL_KEY_FILE */ YYSYMBOL_VAR_CONTROL_CERT_FILE = 93, /* VAR_CONTROL_CERT_FILE */ YYSYMBOL_VAR_KEY = 94, /* VAR_KEY */ YYSYMBOL_VAR_ALGORITHM = 95, /* VAR_ALGORITHM */ YYSYMBOL_VAR_SECRET = 96, /* VAR_SECRET */ YYSYMBOL_VAR_TLS_AUTH = 97, /* VAR_TLS_AUTH */ YYSYMBOL_VAR_TLS_AUTH_DOMAIN_NAME = 98, /* VAR_TLS_AUTH_DOMAIN_NAME */ YYSYMBOL_VAR_TLS_AUTH_CLIENT_CERT = 99, /* VAR_TLS_AUTH_CLIENT_CERT */ YYSYMBOL_VAR_TLS_AUTH_CLIENT_KEY = 100, /* VAR_TLS_AUTH_CLIENT_KEY */ YYSYMBOL_VAR_TLS_AUTH_CLIENT_KEY_PW = 101, /* VAR_TLS_AUTH_CLIENT_KEY_PW */ YYSYMBOL_VAR_PATTERN = 102, /* VAR_PATTERN */ YYSYMBOL_VAR_NAME = 103, /* VAR_NAME */ YYSYMBOL_VAR_ZONEFILE = 104, /* VAR_ZONEFILE */ YYSYMBOL_VAR_NOTIFY = 105, /* VAR_NOTIFY */ YYSYMBOL_VAR_PROVIDE_XFR = 106, /* VAR_PROVIDE_XFR */ YYSYMBOL_VAR_ALLOW_QUERY = 107, /* VAR_ALLOW_QUERY */ YYSYMBOL_VAR_AXFR = 108, /* VAR_AXFR */ YYSYMBOL_VAR_UDP = 109, /* VAR_UDP */ YYSYMBOL_VAR_NOTIFY_RETRY = 110, /* VAR_NOTIFY_RETRY */ YYSYMBOL_VAR_ALLOW_NOTIFY = 111, /* VAR_ALLOW_NOTIFY */ YYSYMBOL_VAR_REQUEST_XFR = 112, /* VAR_REQUEST_XFR */ YYSYMBOL_VAR_ALLOW_AXFR_FALLBACK = 113, /* VAR_ALLOW_AXFR_FALLBACK */ YYSYMBOL_VAR_OUTGOING_INTERFACE = 114, /* VAR_OUTGOING_INTERFACE */ YYSYMBOL_VAR_ANSWER_COOKIE = 115, /* VAR_ANSWER_COOKIE */ YYSYMBOL_VAR_COOKIE_SECRET = 116, /* VAR_COOKIE_SECRET */ YYSYMBOL_VAR_COOKIE_SECRET_FILE = 117, /* VAR_COOKIE_SECRET_FILE */ YYSYMBOL_VAR_MAX_REFRESH_TIME = 118, /* VAR_MAX_REFRESH_TIME */ YYSYMBOL_VAR_MIN_REFRESH_TIME = 119, /* VAR_MIN_REFRESH_TIME */ YYSYMBOL_VAR_MAX_RETRY_TIME = 120, /* VAR_MAX_RETRY_TIME */ YYSYMBOL_VAR_MIN_RETRY_TIME = 121, /* VAR_MIN_RETRY_TIME */ YYSYMBOL_VAR_MIN_EXPIRE_TIME = 122, /* VAR_MIN_EXPIRE_TIME */ YYSYMBOL_VAR_MULTI_MASTER_CHECK = 123, /* VAR_MULTI_MASTER_CHECK */ YYSYMBOL_VAR_SIZE_LIMIT_XFR = 124, /* VAR_SIZE_LIMIT_XFR */ YYSYMBOL_VAR_ZONESTATS = 125, /* VAR_ZONESTATS */ YYSYMBOL_VAR_INCLUDE_PATTERN = 126, /* VAR_INCLUDE_PATTERN */ YYSYMBOL_VAR_STORE_IXFR = 127, /* VAR_STORE_IXFR */ YYSYMBOL_VAR_IXFR_SIZE = 128, /* VAR_IXFR_SIZE */ YYSYMBOL_VAR_IXFR_NUMBER = 129, /* VAR_IXFR_NUMBER */ YYSYMBOL_VAR_CREATE_IXFR = 130, /* VAR_CREATE_IXFR */ YYSYMBOL_VAR_ZONE = 131, /* VAR_ZONE */ YYSYMBOL_VAR_RRL_WHITELIST = 132, /* VAR_RRL_WHITELIST */ YYSYMBOL_VAR_SERVERS = 133, /* VAR_SERVERS */ YYSYMBOL_VAR_BINDTODEVICE = 134, /* VAR_BINDTODEVICE */ YYSYMBOL_VAR_SETFIB = 135, /* VAR_SETFIB */ YYSYMBOL_VAR_VERIFY = 136, /* VAR_VERIFY */ YYSYMBOL_VAR_ENABLE = 137, /* VAR_ENABLE */ YYSYMBOL_VAR_VERIFY_ZONE = 138, /* VAR_VERIFY_ZONE */ YYSYMBOL_VAR_VERIFY_ZONES = 139, /* VAR_VERIFY_ZONES */ YYSYMBOL_VAR_VERIFIER = 140, /* VAR_VERIFIER */ YYSYMBOL_VAR_VERIFIER_COUNT = 141, /* VAR_VERIFIER_COUNT */ YYSYMBOL_VAR_VERIFIER_FEED_ZONE = 142, /* VAR_VERIFIER_FEED_ZONE */ YYSYMBOL_VAR_VERIFIER_TIMEOUT = 143, /* VAR_VERIFIER_TIMEOUT */ YYSYMBOL_YYACCEPT = 144, /* $accept */ YYSYMBOL_blocks = 145, /* blocks */ YYSYMBOL_block = 146, /* block */ YYSYMBOL_server = 147, /* server */ YYSYMBOL_server_block = 148, /* server_block */ YYSYMBOL_server_option = 149, /* server_option */ YYSYMBOL_150_1 = 150, /* $@1 */ YYSYMBOL_socket_options = 151, /* socket_options */ YYSYMBOL_socket_option = 152, /* socket_option */ YYSYMBOL_cpus = 153, /* cpus */ YYSYMBOL_service_cpu_affinity = 154, /* service_cpu_affinity */ YYSYMBOL_dnstap = 155, /* dnstap */ YYSYMBOL_dnstap_block = 156, /* dnstap_block */ YYSYMBOL_dnstap_option = 157, /* dnstap_option */ YYSYMBOL_remote_control = 158, /* remote_control */ YYSYMBOL_remote_control_block = 159, /* remote_control_block */ YYSYMBOL_remote_control_option = 160, /* remote_control_option */ YYSYMBOL_tls_auth = 161, /* tls_auth */ YYSYMBOL_162_2 = 162, /* $@2 */ YYSYMBOL_tls_auth_block = 163, /* tls_auth_block */ YYSYMBOL_tls_auth_option = 164, /* tls_auth_option */ YYSYMBOL_key = 165, /* key */ YYSYMBOL_166_3 = 166, /* $@3 */ YYSYMBOL_key_block = 167, /* key_block */ YYSYMBOL_key_option = 168, /* key_option */ YYSYMBOL_zone = 169, /* zone */ YYSYMBOL_170_4 = 170, /* $@4 */ YYSYMBOL_zone_block = 171, /* zone_block */ YYSYMBOL_zone_option = 172, /* zone_option */ YYSYMBOL_pattern = 173, /* pattern */ YYSYMBOL_174_5 = 174, /* $@5 */ YYSYMBOL_pattern_block = 175, /* pattern_block */ YYSYMBOL_pattern_option = 176, /* pattern_option */ YYSYMBOL_pattern_or_zone_option = 177, /* pattern_or_zone_option */ YYSYMBOL_178_6 = 178, /* $@6 */ YYSYMBOL_179_7 = 179, /* $@7 */ YYSYMBOL_verify = 180, /* verify */ YYSYMBOL_verify_block = 181, /* verify_block */ YYSYMBOL_verify_option = 182, /* verify_option */ YYSYMBOL_command = 183, /* command */ YYSYMBOL_arguments = 184, /* arguments */ YYSYMBOL_ip_address = 185, /* ip_address */ YYSYMBOL_number = 186, /* number */ YYSYMBOL_boolean = 187, /* boolean */ YYSYMBOL_tlsauth_option = 188 /* tlsauth_option */ }; typedef enum yysymbol_kind_t yysymbol_kind_t; #ifdef short # undef short #endif /* On compilers that do not define __PTRDIFF_MAX__ etc., make sure and (if available) are included so that the code can choose integer types of a good width. */ #ifndef __PTRDIFF_MAX__ # include /* INFRINGES ON USER NAME SPACE */ # if defined __STDC_VERSION__ && 199901 <= __STDC_VERSION__ # include /* INFRINGES ON USER NAME SPACE */ # define YY_STDINT_H # endif #endif /* 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 #ifdef __INT_LEAST16_MAX__ typedef __INT_LEAST16_TYPE__ yytype_int16; #elif defined YY_STDINT_H typedef int_least16_t yytype_int16; #else typedef short yytype_int16; #endif /* Work around bug in HP-UX 11.23, which defines these macros incorrectly for preprocessor constants. This workaround can likely be removed in 2023, as HPE has promised support for HP-UX 11.23 (aka HP-UX 11i v2) only through the end of 2022; see Table 2 of . */ #ifdef __hpux # undef UINT_LEAST8_MAX # undef UINT_LEAST16_MAX # define UINT_LEAST8_MAX 255 # define UINT_LEAST16_MAX 65535 #endif #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 typedef short yytype_uint8; #endif #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 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 /* 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 # elif defined __STDC_VERSION__ && 199901 <= __STDC_VERSION__ # include /* INFRINGES ON USER NAME SPACE */ # define YYSIZE_T size_t # else # define YYSIZE_T unsigned # endif #endif #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 /* INFRINGES ON USER NAME SPACE */ # define YY_(Msgid) dgettext ("bison-runtime", Msgid) # endif # endif # ifndef YY_ # define YY_(Msgid) Msgid # endif #endif #ifndef YY_ATTRIBUTE_PURE # if defined __GNUC__ && 2 < __GNUC__ + (96 <= __GNUC_MINOR__) # define YY_ATTRIBUTE_PURE __attribute__ ((__pure__)) # else # define YY_ATTRIBUTE_PURE # endif #endif #ifndef YY_ATTRIBUTE_UNUSED # if defined __GNUC__ && 2 < __GNUC__ + (7 <= __GNUC_MINOR__) # define YY_ATTRIBUTE_UNUSED __attribute__ ((__unused__)) # else # define YY_ATTRIBUTE_UNUSED # endif #endif /* Suppress unused-variable warnings by "using" E. */ #if ! defined lint || defined __GNUC__ # define YY_USE(E) ((void) (E)) #else # define YY_USE(E) /* empty */ #endif #if defined __GNUC__ && ! defined __ICC && 407 <= __GNUC__ * 100 + __GNUC_MINOR__ /* Suppress an incorrect diagnostic about yylval being uninitialized. */ # define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN \ _Pragma ("GCC diagnostic push") \ _Pragma ("GCC diagnostic ignored \"-Wuninitialized\"") \ _Pragma ("GCC diagnostic ignored \"-Wmaybe-uninitialized\"") # 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 #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 /* 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 /* INFRINGES ON USER NAME SPACE */ # elif defined _AIX # define YYSTACK_ALLOC __alloca # elif defined _MSC_VER # include /* INFRINGES ON USER NAME SPACE */ # define alloca _alloca # else # define YYSTACK_ALLOC alloca # if ! defined _ALLOCA_H && ! defined EXIT_SUCCESS # include /* 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 /* 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 */ #if (! defined yyoverflow \ && (! defined __cplusplus \ || (defined YYSTYPE_IS_TRIVIAL && YYSTYPE_IS_TRIVIAL))) /* A type that is properly aligned for any stack member. */ union yyalloc { yy_state_t yyss_alloc; YYSTYPE yyvs_alloc; }; /* The size of the maximum gap between one aligned stack and the next. */ # 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) \ ((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 \ { \ YYPTRDIFF_T yynewbytes; \ YYCOPY (&yyptr->Stack_alloc, Stack, yysize); \ Stack = &yyptr->Stack_alloc; \ 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) \ __builtin_memcpy (Dst, Src, YY_CAST (YYSIZE_T, (Count)) * sizeof (*(Src))) # else # define YYCOPY(Dst, Src, Count) \ do \ { \ 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 422 /* YYNTOKENS -- Number of terminals. */ #define YYNTOKENS 144 /* YYNNTS -- Number of nonterminals. */ #define YYNNTS 45 /* YYNRULES -- Number of rules. */ #define YYNRULES 197 /* YYNSTATES -- Number of states. */ #define YYNSTATES 344 /* YYMAXUTOK -- Last valid token kind. */ #define YYMAXUTOK 398 /* YYTRANSLATE(TOKEN-NUM) -- Symbol number corresponding to TOKEN-NUM as returned by yylex, with out-of-bounds checking. */ #define YYTRANSLATE(YYX) \ (0 <= (YYX) && (YYX) <= YYMAXUTOK \ ? YY_CAST (yysymbol_kind_t, yytranslate[YYX]) \ : YYSYMBOL_YYUNDEF) /* YYTRANSLATE[TOKEN-NUM] -- Symbol number corresponding to TOKEN-NUM as returned by yylex. */ static const yytype_uint8 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 }; #if YYDEBUG /* YYRLINE[YYN] -- Source line where rule number YYN was defined. */ static const yytype_int16 yyrline[] = { 0, 227, 227, 229, 232, 233, 234, 235, 236, 237, 238, 239, 242, 245, 245, 249, 248, 265, 273, 275, 277, 279, 281, 283, 285, 287, 289, 291, 293, 295, 297, 299, 301, 303, 305, 335, 337, 339, 347, 349, 351, 353, 355, 357, 359, 361, 363, 370, 372, 374, 376, 378, 380, 382, 384, 386, 388, 390, 392, 402, 408, 414, 424, 434, 440, 442, 444, 449, 454, 459, 461, 463, 465, 467, 469, 476, 478, 486, 488, 490, 492, 494, 496, 500, 530, 531, 534, 561, 563, 568, 569, 603, 605, 616, 619, 619, 622, 624, 626, 628, 630, 632, 634, 636, 638, 640, 642, 644, 646, 648, 653, 656, 656, 659, 661, 671, 679, 681, 683, 685, 691, 690, 712, 712, 715, 726, 730, 734, 738, 746, 745, 770, 770, 773, 785, 793, 812, 811, 836, 836, 839, 852, 856, 855, 872, 872, 875, 882, 885, 891, 893, 895, 903, 905, 908, 907, 919, 918, 930, 940, 945, 954, 959, 964, 969, 974, 979, 984, 989, 994, 999, 1011, 1016, 1021, 1026, 1031, 1033, 1035, 1037, 1041, 1044, 1044, 1047, 1049, 1059, 1066, 1068, 1070, 1072, 1074, 1078, 1098, 1099, 1117, 1127, 1136, 1144, 1145 }; #endif /** Accessing symbol of state STATE. */ #define YY_ACCESSING_SYMBOL(State) YY_CAST (yysymbol_kind_t, yystos[State]) #if YYDEBUG || 0 /* The user-facing name of the symbol whose (internal) number is YYSYMBOL. No bounds checking. */ static const char *yysymbol_name (yysymbol_kind_t yysymbol) YY_ATTRIBUTE_UNUSED; /* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM. First, the terminals, then, starting at YYNTOKENS, nonterminals. */ static const char *const yytname[] = { "\"end of file\"", "error", "\"invalid token\"", "STRING", "VAR_SERVER", "VAR_SERVER_COUNT", "VAR_IP_ADDRESS", "VAR_IP_TRANSPARENT", "VAR_IP_FREEBIND", "VAR_REUSEPORT", "VAR_SEND_BUFFER_SIZE", "VAR_RECEIVE_BUFFER_SIZE", "VAR_DEBUG_MODE", "VAR_IP4_ONLY", "VAR_IP6_ONLY", "VAR_DO_IP4", "VAR_DO_IP6", "VAR_PORT", "VAR_USE_SYSTEMD", "VAR_VERBOSITY", "VAR_USERNAME", "VAR_CHROOT", "VAR_ZONESDIR", "VAR_ZONELISTFILE", "VAR_DATABASE", "VAR_LOGFILE", "VAR_LOG_ONLY_SYSLOG", "VAR_PIDFILE", "VAR_DIFFFILE", "VAR_XFRDFILE", "VAR_XFRDIR", "VAR_HIDE_VERSION", "VAR_HIDE_IDENTITY", "VAR_VERSION", "VAR_IDENTITY", "VAR_NSID", "VAR_TCP_COUNT", "VAR_TCP_REJECT_OVERFLOW", "VAR_TCP_QUERY_COUNT", "VAR_TCP_TIMEOUT", "VAR_TCP_MSS", "VAR_OUTGOING_TCP_MSS", "VAR_IPV4_EDNS_SIZE", "VAR_IPV6_EDNS_SIZE", "VAR_STATISTICS", "VAR_XFRD_RELOAD_TIMEOUT", "VAR_LOG_TIME_ASCII", "VAR_ROUND_ROBIN", "VAR_MINIMAL_RESPONSES", "VAR_CONFINE_TO_ZONE", "VAR_REFUSE_ANY", "VAR_ZONEFILES_CHECK", "VAR_ZONEFILES_WRITE", "VAR_RRL_SIZE", "VAR_RRL_RATELIMIT", "VAR_RRL_SLIP", "VAR_RRL_IPV4_PREFIX_LENGTH", "VAR_RRL_IPV6_PREFIX_LENGTH", "VAR_RRL_WHITELIST_RATELIMIT", "VAR_TLS_SERVICE_KEY", "VAR_TLS_SERVICE_PEM", "VAR_TLS_SERVICE_OCSP", "VAR_TLS_PORT", "VAR_TLS_CERT_BUNDLE", "VAR_PROXY_PROTOCOL_PORT", "VAR_CPU_AFFINITY", "VAR_XFRD_CPU_AFFINITY", "VAR_SERVER_CPU_AFFINITY", "VAR_DROP_UPDATES", "VAR_XFRD_TCP_MAX", "VAR_XFRD_TCP_PIPELINE", "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_IDENTITY", "VAR_DNSTAP_VERSION", "VAR_DNSTAP_LOG_AUTH_QUERY_MESSAGES", "VAR_DNSTAP_LOG_AUTH_RESPONSE_MESSAGES", "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_KEY", "VAR_ALGORITHM", "VAR_SECRET", "VAR_TLS_AUTH", "VAR_TLS_AUTH_DOMAIN_NAME", "VAR_TLS_AUTH_CLIENT_CERT", "VAR_TLS_AUTH_CLIENT_KEY", "VAR_TLS_AUTH_CLIENT_KEY_PW", "VAR_PATTERN", "VAR_NAME", "VAR_ZONEFILE", "VAR_NOTIFY", "VAR_PROVIDE_XFR", "VAR_ALLOW_QUERY", "VAR_AXFR", "VAR_UDP", "VAR_NOTIFY_RETRY", "VAR_ALLOW_NOTIFY", "VAR_REQUEST_XFR", "VAR_ALLOW_AXFR_FALLBACK", "VAR_OUTGOING_INTERFACE", "VAR_ANSWER_COOKIE", "VAR_COOKIE_SECRET", "VAR_COOKIE_SECRET_FILE", "VAR_MAX_REFRESH_TIME", "VAR_MIN_REFRESH_TIME", "VAR_MAX_RETRY_TIME", "VAR_MIN_RETRY_TIME", "VAR_MIN_EXPIRE_TIME", "VAR_MULTI_MASTER_CHECK", "VAR_SIZE_LIMIT_XFR", "VAR_ZONESTATS", "VAR_INCLUDE_PATTERN", "VAR_STORE_IXFR", "VAR_IXFR_SIZE", "VAR_IXFR_NUMBER", "VAR_CREATE_IXFR", "VAR_ZONE", "VAR_RRL_WHITELIST", "VAR_SERVERS", "VAR_BINDTODEVICE", "VAR_SETFIB", "VAR_VERIFY", "VAR_ENABLE", "VAR_VERIFY_ZONE", "VAR_VERIFY_ZONES", "VAR_VERIFIER", "VAR_VERIFIER_COUNT", "VAR_VERIFIER_FEED_ZONE", "VAR_VERIFIER_TIMEOUT", "$accept", "blocks", "block", "server", "server_block", "server_option", "$@1", "socket_options", "socket_option", "cpus", "service_cpu_affinity", "dnstap", "dnstap_block", "dnstap_option", "remote_control", "remote_control_block", "remote_control_option", "tls_auth", "$@2", "tls_auth_block", "tls_auth_option", "key", "$@3", "key_block", "key_option", "zone", "$@4", "zone_block", "zone_option", "pattern", "$@5", "pattern_block", "pattern_option", "pattern_or_zone_option", "$@6", "$@7", "verify", "verify_block", "verify_option", "command", "arguments", "ip_address", "number", "boolean", "tlsauth_option", YY_NULLPTR }; static const char * yysymbol_name (yysymbol_kind_t yysymbol) { return yytname[yysymbol]; } #endif #ifdef YYPRINT /* YYTOKNUM[NUM] -- (External) token number corresponding to the (internal) symbol number NUM (which must be that of a token). */ 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 }; #endif #define YYPACT_NINF (-162) #define yypact_value_is_default(Yyn) \ ((Yyn) == YYPACT_NINF) #define YYTABLE_NINF (-1) #define yytable_value_is_error(Yyn) \ 0 /* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing STATE-NUM. */ static const yytype_int16 yypact[] = { -162, 65, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, 305, -28, -57, -162, -162, -162, -162, 5, 0, 9, 14, 14, 14, 0, 0, 14, 14, 14, 14, 14, 0, 14, 0, 18, 22, 23, 25, 34, 55, 14, 56, 58, 59, 61, 14, 14, 63, 64, 67, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 14, 14, 14, 14, 14, 14, 0, 0, 0, 0, 0, 0, 0, 69, 70, 71, 0, 72, 0, -162, -162, -162, 14, 0, 0, 14, 79, 81, -162, 0, 14, 83, 89, 14, 91, 92, 93, 96, 14, 14, 97, 99, 14, 14, -162, 14, 9, 0, 100, 102, 113, 114, -162, -76, -10, 130, 275, 9, 0, 14, 14, 115, 0, 14, 0, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, 116, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, 124, 125, 126, -162, 128, 131, 132, 136, 137, -162, 138, 146, 147, 149, 150, 0, 151, 6, 14, 152, 0, 0, 0, 0, 153, 14, 0, 154, 155, 14, 0, 0, 14, 157, 14, 115, 14, 0, -162, -162, 160, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, 161, 162, 163, -162, 165, 166, 167, 168, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, 170, -119, -162, -162, -162, -162, -162, 171, 172, -162, 174, 14, 0, -162, 176, -162, -162, -162, -162, -162, -162, -162, 176, -162 }; /* 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. */ static const yytype_uint8 yydefact[] = { 2, 0, 1, 14, 95, 112, 129, 120, 142, 136, 181, 3, 4, 5, 6, 8, 7, 10, 9, 11, 12, 93, 110, 132, 123, 145, 139, 179, 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, 89, 91, 92, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 94, 0, 0, 0, 0, 0, 0, 0, 111, 130, 121, 143, 137, 0, 0, 0, 0, 0, 0, 0, 0, 180, 194, 17, 193, 15, 195, 18, 19, 47, 20, 21, 22, 27, 28, 29, 30, 46, 23, 57, 50, 49, 51, 52, 31, 35, 36, 45, 53, 54, 55, 24, 25, 33, 32, 34, 37, 38, 39, 40, 41, 42, 43, 44, 48, 56, 66, 67, 68, 69, 70, 64, 65, 58, 59, 60, 61, 62, 63, 71, 73, 72, 74, 75, 76, 82, 26, 80, 81, 77, 78, 79, 83, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 113, 114, 115, 116, 117, 118, 119, 0, 0, 0, 131, 0, 0, 0, 0, 0, 122, 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, 144, 147, 0, 138, 141, 183, 184, 182, 185, 191, 186, 187, 189, 188, 84, 90, 134, 135, 133, 125, 126, 127, 128, 124, 146, 149, 0, 0, 0, 165, 0, 0, 0, 0, 164, 163, 166, 167, 168, 169, 170, 152, 151, 150, 153, 171, 172, 173, 174, 148, 175, 176, 177, 178, 140, 190, 16, 160, 161, 162, 159, 154, 0, 0, 192, 0, 0, 0, 85, 196, 156, 158, 86, 87, 88, 197, 155, 196, 157 }; /* YYPGOTO[NTERM-NUM]. */ static const yytype_int16 yypgoto[] = { -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, -162, 8, -162, -162, -162, -162, -162, -82, -162, -113, 45, -31, -161 }; /* YYDEFGOTO[NTERM-NUM]. */ static const yytype_int16 yydefgoto[] = { 0, 1, 11, 12, 20, 97, 279, 321, 333, 198, 98, 13, 21, 113, 14, 22, 121, 15, 24, 123, 236, 16, 23, 122, 230, 17, 26, 125, 268, 18, 25, 124, 265, 266, 334, 342, 19, 27, 134, 275, 320, 138, 136, 140, 341 }; /* 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. */ static const yytype_int16 yytable[] = { 141, 142, 221, 135, 145, 146, 147, 148, 149, 296, 151, 126, 137, 270, 330, 331, 332, 139, 159, 227, 228, 153, 127, 164, 165, 154, 155, 229, 156, 170, 114, 115, 116, 117, 118, 119, 120, 157, 179, 180, 181, 182, 183, 184, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 158, 160, 199, 161, 162, 202, 163, 2, 166, 167, 206, 3, 168, 209, 192, 193, 194, 196, 214, 215, 143, 144, 218, 219, 203, 220, 204, 150, 207, 152, 231, 232, 233, 234, 208, 235, 210, 211, 212, 272, 273, 213, 216, 277, 217, 223, 169, 224, 171, 172, 173, 174, 175, 176, 177, 178, 297, 298, 225, 226, 274, 280, 185, 186, 187, 188, 189, 190, 191, 281, 282, 283, 195, 284, 197, 269, 285, 286, 4, 200, 201, 287, 288, 289, 128, 205, 129, 130, 131, 132, 133, 290, 291, 5, 292, 293, 295, 300, 305, 308, 309, 6, 314, 222, 7, 319, 322, 323, 324, 8, 325, 326, 327, 328, 271, 329, 335, 336, 276, 337, 278, 340, 316, 343, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 299, 0, 0, 0, 0, 0, 0, 306, 0, 0, 0, 310, 0, 0, 313, 0, 315, 0, 317, 237, 238, 239, 240, 241, 0, 0, 242, 243, 244, 245, 246, 0, 0, 0, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 0, 260, 0, 0, 0, 0, 0, 261, 0, 262, 0, 263, 264, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 294, 0, 0, 0, 0, 301, 302, 303, 304, 0, 0, 307, 0, 338, 0, 311, 312, 0, 0, 0, 0, 0, 318, 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, 0, 339, 267, 238, 239, 240, 241, 0, 0, 242, 243, 244, 245, 246, 0, 0, 0, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 0, 260, 0, 0, 0, 0, 0, 261, 0, 262, 0, 263, 264, 0, 94, 95, 96 }; static const yytype_int16 yycheck[] = { 31, 32, 115, 3, 35, 36, 37, 38, 39, 3, 41, 6, 3, 126, 133, 134, 135, 3, 49, 95, 96, 3, 17, 54, 55, 3, 3, 103, 3, 60, 87, 88, 89, 90, 91, 92, 93, 3, 69, 70, 71, 72, 73, 74, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 3, 3, 91, 3, 3, 94, 3, 0, 3, 3, 99, 4, 3, 102, 3, 3, 3, 3, 107, 108, 33, 34, 111, 112, 3, 114, 3, 40, 3, 42, 98, 99, 100, 101, 3, 103, 3, 3, 3, 128, 129, 3, 3, 132, 3, 3, 59, 3, 61, 62, 63, 64, 65, 66, 67, 68, 108, 109, 3, 3, 3, 3, 75, 76, 77, 78, 79, 80, 81, 3, 3, 3, 85, 3, 87, 125, 3, 3, 71, 92, 93, 3, 3, 3, 137, 98, 139, 140, 141, 142, 143, 3, 3, 86, 3, 3, 3, 3, 3, 3, 3, 94, 3, 116, 97, 3, 3, 3, 3, 102, 3, 3, 3, 3, 127, 3, 3, 3, 131, 3, 133, 3, 262, 342, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 131, -1, -1, -1, -1, 136, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 245, -1, -1, -1, -1, -1, -1, 252, -1, -1, -1, 256, -1, -1, 259, -1, 261, -1, 263, 103, 104, 105, 106, 107, -1, -1, 110, 111, 112, 113, 114, -1, -1, -1, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, -1, 132, -1, -1, -1, -1, -1, 138, -1, 140, -1, 142, 143, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 242, -1, -1, -1, -1, 247, 248, 249, 250, -1, -1, 253, -1, 331, -1, 257, 258, -1, -1, -1, -1, -1, 264, 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, -1, 332, 103, 104, 105, 106, 107, -1, -1, 110, 111, 112, 113, 114, -1, -1, -1, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, -1, 132, -1, -1, -1, -1, -1, 138, -1, 140, -1, 142, 143, -1, 115, 116, 117 }; /* YYSTOS[STATE-NUM] -- The (internal number of the) accessing symbol of state STATE-NUM. */ static const yytype_uint8 yystos[] = { 0, 145, 0, 4, 71, 86, 94, 97, 102, 131, 136, 146, 147, 155, 158, 161, 165, 169, 173, 180, 148, 156, 159, 166, 162, 174, 170, 181, 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, 115, 116, 117, 149, 154, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 157, 87, 88, 89, 90, 91, 92, 93, 160, 167, 163, 175, 171, 6, 17, 137, 139, 140, 141, 142, 143, 182, 3, 186, 3, 185, 3, 187, 187, 187, 186, 186, 187, 187, 187, 187, 187, 186, 187, 186, 3, 3, 3, 3, 3, 3, 187, 3, 3, 3, 3, 187, 187, 3, 3, 3, 186, 187, 186, 186, 186, 186, 186, 186, 186, 186, 187, 187, 187, 187, 187, 187, 186, 186, 186, 186, 186, 186, 186, 3, 3, 3, 186, 3, 186, 153, 187, 186, 186, 187, 3, 3, 186, 187, 3, 3, 187, 3, 3, 3, 3, 187, 187, 3, 3, 187, 187, 187, 185, 186, 3, 3, 3, 3, 95, 96, 103, 168, 98, 99, 100, 101, 103, 164, 103, 104, 105, 106, 107, 110, 111, 112, 113, 114, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 132, 138, 140, 142, 143, 176, 177, 103, 172, 177, 185, 186, 187, 187, 3, 183, 186, 187, 186, 150, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 186, 3, 3, 108, 109, 187, 3, 186, 186, 186, 186, 3, 187, 186, 3, 3, 187, 186, 186, 187, 3, 187, 183, 187, 186, 3, 184, 151, 3, 3, 3, 3, 3, 3, 3, 3, 133, 134, 135, 152, 178, 3, 3, 3, 187, 186, 3, 188, 179, 188 }; /* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */ static const yytype_uint8 yyr1[] = { 0, 144, 145, 145, 146, 146, 146, 146, 146, 146, 146, 146, 147, 148, 148, 150, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 151, 151, 152, 152, 152, 153, 153, 154, 154, 155, 156, 156, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 158, 159, 159, 160, 160, 160, 160, 160, 160, 160, 162, 161, 163, 163, 164, 164, 164, 164, 164, 166, 165, 167, 167, 168, 168, 168, 170, 169, 171, 171, 172, 172, 174, 173, 175, 175, 176, 176, 177, 177, 177, 177, 177, 177, 178, 177, 179, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 180, 181, 181, 182, 182, 182, 182, 182, 182, 182, 182, 183, 184, 184, 185, 186, 187, 188, 188 }; /* YYR2[YYN] -- Number of symbols on the right hand side of rule YYN. */ static const yytype_int8 yyr2[] = { 0, 2, 0, 2, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 0, 0, 4, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 2, 2, 2, 2, 0, 2, 1, 1, 2, 2, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 2, 2, 2, 2, 2, 2, 2, 0, 3, 2, 0, 2, 2, 2, 2, 2, 0, 3, 2, 0, 2, 2, 2, 0, 3, 2, 0, 2, 1, 0, 3, 2, 0, 2, 1, 2, 2, 2, 2, 2, 2, 0, 5, 0, 6, 4, 3, 3, 3, 3, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 2, 1, 1, 1, 0, 1 }; enum { YYENOMEM = -2 }; #define yyerrok (yyerrstatus = 0) #define yyclearin (yychar = YYEMPTY) #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) /* Backward compatibility with an undocumented macro. Use YYerror or YYUNDEF. */ #define YYERRCODE YYUNDEF /* Enable debugging if requested. */ #if YYDEBUG # ifndef YYFPRINTF # include /* 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, Kind, Value, Location) \ do { \ if (yydebug) \ { \ YYFPRINTF (stderr, "%s ", Title); \ yy_symbol_print (stderr, \ Kind, Value); \ YYFPRINTF (stderr, "\n"); \ } \ } while (0) /*-----------------------------------. | Print this symbol's value on YYO. | `-----------------------------------*/ static void yy_symbol_value_print (FILE *yyo, yysymbol_kind_t yykind, YYSTYPE const * const yyvaluep) { FILE *yyoutput = yyo; YY_USE (yyoutput); if (!yyvaluep) return; # ifdef YYPRINT if (yykind < YYNTOKENS) YYPRINT (yyo, yytoknum[yykind], *yyvaluep); # endif YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN YY_USE (yykind); YY_IGNORE_MAYBE_UNINITIALIZED_END } /*---------------------------. | Print this symbol on YYO. | `---------------------------*/ static void yy_symbol_print (FILE *yyo, yysymbol_kind_t yykind, YYSTYPE const * const yyvaluep) { YYFPRINTF (yyo, "%s %s (", yykind < YYNTOKENS ? "token" : "nterm", yysymbol_name (yykind)); yy_symbol_value_print (yyo, yykind, yyvaluep); YYFPRINTF (yyo, ")"); } /*------------------------------------------------------------------. | yy_stack_print -- Print the state stack from its BOTTOM up to its | | TOP (included). | `------------------------------------------------------------------*/ static void 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 yy_reduce_print (yy_state_t *yyssp, YYSTYPE *yyvsp, int yyrule) { int yylno = yyrline[yyrule]; int yynrhs = yyr2[yyrule]; int yyi; 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, YY_ACCESSING_SYMBOL (+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) ((void) 0) # define YY_SYMBOL_PRINT(Title, Kind, 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 /*-----------------------------------------------. | Release the memory associated to this symbol. | `-----------------------------------------------*/ static void yydestruct (const char *yymsg, yysymbol_kind_t yykind, YYSTYPE *yyvaluep) { YY_USE (yyvaluep); if (!yymsg) yymsg = "Deleting"; YY_SYMBOL_PRINT (yymsg, yykind, yyvaluep, yylocationp); YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN YY_USE (yykind); YY_IGNORE_MAYBE_UNINITIALIZED_END } /* Lookahead token kind. */ int yychar; /* The semantic value of the lookahead symbol. */ YYSTYPE yylval; /* Number of syntax errors so far. */ int yynerrs; /*----------. | yyparse. | `----------*/ int yyparse (void) { yy_state_fast_t yystate = 0; /* Number of tokens to shift before error messages enabled. */ int yyerrstatus = 0; /* Refer to the stacks through separate pointers, to allow yyoverflow to reallocate them elsewhere. */ /* Their size. */ YYPTRDIFF_T yystacksize = YYINITDEPTH; /* The state stack: array, bottom, top. */ yy_state_t yyssa[YYINITDEPTH]; yy_state_t *yyss = yyssa; yy_state_t *yyssp = yyss; /* The semantic value stack: array, bottom, top. */ YYSTYPE yyvsa[YYINITDEPTH]; YYSTYPE *yyvs = yyvsa; YYSTYPE *yyvsp = yyvs; int yyn; /* The return value of yyparse. */ int yyresult; /* Lookahead symbol kind. */ yysymbol_kind_t yytoken = YYSYMBOL_YYEMPTY; /* The variables used to return semantic value and location from the action routines. */ YYSTYPE yyval; #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; YYDPRINTF ((stderr, "Starting parse\n")); 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++; /*--------------------------------------------------------------------. | 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); YY_IGNORE_USELESS_CAST_BEGIN *yyssp = YY_CAST (yy_state_t, yystate); YY_IGNORE_USELESS_CAST_END YY_STACK_PRINT (yyss, yyssp); 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. */ 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. */ 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"), &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; { yy_state_t *yyss1 = yyss; union yyalloc *yyptr = 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; 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 empty, or end-of-input, or a valid lookahead. */ if (yychar == YYEMPTY) { YYDPRINTF ((stderr, "Reading a token\n")); yychar = yylex (); } if (yychar <= YYEOF) { yychar = YYEOF; yytoken = YYSYMBOL_YYEOF; YYDPRINTF ((stderr, "Now at end of input.\n")); } else if (yychar == YYerror) { /* The scanner already issued an error message, process directly to error recovery. But do not keep the error token as lookahead, it is too special and may lead us to an endless loop in error recovery. */ yychar = YYUNDEF; yytoken = YYSYMBOL_YYerror; goto yyerrlab1; } 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 /* 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 15: /* $@1: %empty */ #line 249 "configparser.y" { struct ip_address_option *ip = cfg_parser->opt->ip_addresses; if(ip == NULL) { cfg_parser->opt->ip_addresses = (yyvsp[0].ip); } else { while(ip->next) { ip = ip->next; } ip->next = (yyvsp[0].ip); } cfg_parser->ip = (yyvsp[0].ip); } #line 1626 "configparser.c" break; case 16: /* server_option: VAR_IP_ADDRESS ip_address $@1 socket_options */ #line 262 "configparser.y" { cfg_parser->ip = NULL; } #line 1634 "configparser.c" break; case 17: /* server_option: VAR_SERVER_COUNT number */ #line 266 "configparser.y" { if ((yyvsp[0].llng) > 0) { cfg_parser->opt->server_count = (int)(yyvsp[0].llng); } else { yyerror("expected a number greater than zero"); } } #line 1646 "configparser.c" break; case 18: /* server_option: VAR_IP_TRANSPARENT boolean */ #line 274 "configparser.y" { cfg_parser->opt->ip_transparent = (yyvsp[0].bln); } #line 1652 "configparser.c" break; case 19: /* server_option: VAR_IP_FREEBIND boolean */ #line 276 "configparser.y" { cfg_parser->opt->ip_freebind = (yyvsp[0].bln); } #line 1658 "configparser.c" break; case 20: /* server_option: VAR_SEND_BUFFER_SIZE number */ #line 278 "configparser.y" { cfg_parser->opt->send_buffer_size = (int)(yyvsp[0].llng); } #line 1664 "configparser.c" break; case 21: /* server_option: VAR_RECEIVE_BUFFER_SIZE number */ #line 280 "configparser.y" { cfg_parser->opt->receive_buffer_size = (int)(yyvsp[0].llng); } #line 1670 "configparser.c" break; case 22: /* server_option: VAR_DEBUG_MODE boolean */ #line 282 "configparser.y" { cfg_parser->opt->debug_mode = (yyvsp[0].bln); } #line 1676 "configparser.c" break; case 23: /* server_option: VAR_USE_SYSTEMD boolean */ #line 284 "configparser.y" { /* ignored, obsolete */ } #line 1682 "configparser.c" break; case 24: /* server_option: VAR_HIDE_VERSION boolean */ #line 286 "configparser.y" { cfg_parser->opt->hide_version = (yyvsp[0].bln); } #line 1688 "configparser.c" break; case 25: /* server_option: VAR_HIDE_IDENTITY boolean */ #line 288 "configparser.y" { cfg_parser->opt->hide_identity = (yyvsp[0].bln); } #line 1694 "configparser.c" break; case 26: /* server_option: VAR_DROP_UPDATES boolean */ #line 290 "configparser.y" { cfg_parser->opt->drop_updates = (yyvsp[0].bln); } #line 1700 "configparser.c" break; case 27: /* server_option: VAR_IP4_ONLY boolean */ #line 292 "configparser.y" { if((yyvsp[0].bln)) { cfg_parser->opt->do_ip4 = 1; cfg_parser->opt->do_ip6 = 0; } } #line 1706 "configparser.c" break; case 28: /* server_option: VAR_IP6_ONLY boolean */ #line 294 "configparser.y" { if((yyvsp[0].bln)) { cfg_parser->opt->do_ip4 = 0; cfg_parser->opt->do_ip6 = 1; } } #line 1712 "configparser.c" break; case 29: /* server_option: VAR_DO_IP4 boolean */ #line 296 "configparser.y" { cfg_parser->opt->do_ip4 = (yyvsp[0].bln); } #line 1718 "configparser.c" break; case 30: /* server_option: VAR_DO_IP6 boolean */ #line 298 "configparser.y" { cfg_parser->opt->do_ip6 = (yyvsp[0].bln); } #line 1724 "configparser.c" break; case 31: /* server_option: VAR_DATABASE STRING */ #line 300 "configparser.y" { /* ignored, obsolete */ } #line 1730 "configparser.c" break; case 32: /* server_option: VAR_IDENTITY STRING */ #line 302 "configparser.y" { cfg_parser->opt->identity = region_strdup(cfg_parser->opt->region, (yyvsp[0].str)); } #line 1736 "configparser.c" break; case 33: /* server_option: VAR_VERSION STRING */ #line 304 "configparser.y" { cfg_parser->opt->version = region_strdup(cfg_parser->opt->region, (yyvsp[0].str)); } #line 1742 "configparser.c" break; case 34: /* server_option: VAR_NSID STRING */ #line 306 "configparser.y" { unsigned char* nsid = 0; size_t nsid_len = strlen((yyvsp[0].str)); if (strncasecmp((yyvsp[0].str), "ascii_", 6) == 0) { nsid_len -= 6; /* discard "ascii_" */ if(nsid_len < 65535) { cfg_parser->opt->nsid = region_alloc(cfg_parser->opt->region, nsid_len*2+1); hex_ntop((uint8_t*)(yyvsp[0].str)+6, nsid_len, (char*)cfg_parser->opt->nsid, nsid_len*2+1); } else { yyerror("NSID too long"); } } else if (nsid_len % 2 != 0) { yyerror("the NSID must be a hex string of an even length."); } else { nsid_len = nsid_len / 2; if(nsid_len < 65535) { nsid = xalloc(nsid_len); if (hex_pton((yyvsp[0].str), nsid, nsid_len) == -1) { yyerror("hex string cannot be parsed in NSID."); } else { cfg_parser->opt->nsid = region_strdup(cfg_parser->opt->region, (yyvsp[0].str)); } free(nsid); } else { yyerror("NSID too long"); } } } #line 1776 "configparser.c" break; case 35: /* server_option: VAR_LOGFILE STRING */ #line 336 "configparser.y" { cfg_parser->opt->logfile = region_strdup(cfg_parser->opt->region, (yyvsp[0].str)); } #line 1782 "configparser.c" break; case 36: /* server_option: VAR_LOG_ONLY_SYSLOG boolean */ #line 338 "configparser.y" { cfg_parser->opt->log_only_syslog = (yyvsp[0].bln); } #line 1788 "configparser.c" break; case 37: /* server_option: VAR_TCP_COUNT number */ #line 340 "configparser.y" { if ((yyvsp[0].llng) > 0) { cfg_parser->opt->tcp_count = (int)(yyvsp[0].llng); } else { yyerror("expected a number greater than zero"); } } #line 1800 "configparser.c" break; case 38: /* server_option: VAR_TCP_REJECT_OVERFLOW boolean */ #line 348 "configparser.y" { cfg_parser->opt->tcp_reject_overflow = (yyvsp[0].bln); } #line 1806 "configparser.c" break; case 39: /* server_option: VAR_TCP_QUERY_COUNT number */ #line 350 "configparser.y" { cfg_parser->opt->tcp_query_count = (int)(yyvsp[0].llng); } #line 1812 "configparser.c" break; case 40: /* server_option: VAR_TCP_TIMEOUT number */ #line 352 "configparser.y" { cfg_parser->opt->tcp_timeout = (int)(yyvsp[0].llng); } #line 1818 "configparser.c" break; case 41: /* server_option: VAR_TCP_MSS number */ #line 354 "configparser.y" { cfg_parser->opt->tcp_mss = (int)(yyvsp[0].llng); } #line 1824 "configparser.c" break; case 42: /* server_option: VAR_OUTGOING_TCP_MSS number */ #line 356 "configparser.y" { cfg_parser->opt->outgoing_tcp_mss = (int)(yyvsp[0].llng); } #line 1830 "configparser.c" break; case 43: /* server_option: VAR_IPV4_EDNS_SIZE number */ #line 358 "configparser.y" { cfg_parser->opt->ipv4_edns_size = (size_t)(yyvsp[0].llng); } #line 1836 "configparser.c" break; case 44: /* server_option: VAR_IPV6_EDNS_SIZE number */ #line 360 "configparser.y" { cfg_parser->opt->ipv6_edns_size = (size_t)(yyvsp[0].llng); } #line 1842 "configparser.c" break; case 45: /* server_option: VAR_PIDFILE STRING */ #line 362 "configparser.y" { cfg_parser->opt->pidfile = region_strdup(cfg_parser->opt->region, (yyvsp[0].str)); } #line 1848 "configparser.c" break; case 46: /* server_option: VAR_PORT number */ #line 364 "configparser.y" { /* port number, stored as a string */ char buf[16]; (void)snprintf(buf, sizeof(buf), "%lld", (yyvsp[0].llng)); cfg_parser->opt->port = region_strdup(cfg_parser->opt->region, buf); } #line 1859 "configparser.c" break; case 47: /* server_option: VAR_REUSEPORT boolean */ #line 371 "configparser.y" { cfg_parser->opt->reuseport = (yyvsp[0].bln); } #line 1865 "configparser.c" break; case 48: /* server_option: VAR_STATISTICS number */ #line 373 "configparser.y" { cfg_parser->opt->statistics = (int)(yyvsp[0].llng); } #line 1871 "configparser.c" break; case 49: /* server_option: VAR_CHROOT STRING */ #line 375 "configparser.y" { cfg_parser->opt->chroot = region_strdup(cfg_parser->opt->region, (yyvsp[0].str)); } #line 1877 "configparser.c" break; case 50: /* server_option: VAR_USERNAME STRING */ #line 377 "configparser.y" { cfg_parser->opt->username = region_strdup(cfg_parser->opt->region, (yyvsp[0].str)); } #line 1883 "configparser.c" break; case 51: /* server_option: VAR_ZONESDIR STRING */ #line 379 "configparser.y" { cfg_parser->opt->zonesdir = region_strdup(cfg_parser->opt->region, (yyvsp[0].str)); } #line 1889 "configparser.c" break; case 52: /* server_option: VAR_ZONELISTFILE STRING */ #line 381 "configparser.y" { cfg_parser->opt->zonelistfile = region_strdup(cfg_parser->opt->region, (yyvsp[0].str)); } #line 1895 "configparser.c" break; case 53: /* server_option: VAR_DIFFFILE STRING */ #line 383 "configparser.y" { /* ignored, obsolete */ } #line 1901 "configparser.c" break; case 54: /* server_option: VAR_XFRDFILE STRING */ #line 385 "configparser.y" { cfg_parser->opt->xfrdfile = region_strdup(cfg_parser->opt->region, (yyvsp[0].str)); } #line 1907 "configparser.c" break; case 55: /* server_option: VAR_XFRDIR STRING */ #line 387 "configparser.y" { cfg_parser->opt->xfrdir = region_strdup(cfg_parser->opt->region, (yyvsp[0].str)); } #line 1913 "configparser.c" break; case 56: /* server_option: VAR_XFRD_RELOAD_TIMEOUT number */ #line 389 "configparser.y" { cfg_parser->opt->xfrd_reload_timeout = (int)(yyvsp[0].llng); } #line 1919 "configparser.c" break; case 57: /* server_option: VAR_VERBOSITY number */ #line 391 "configparser.y" { cfg_parser->opt->verbosity = (int)(yyvsp[0].llng); } #line 1925 "configparser.c" break; case 58: /* server_option: VAR_RRL_SIZE number */ #line 393 "configparser.y" { #ifdef RATELIMIT if ((yyvsp[0].llng) > 0) { cfg_parser->opt->rrl_size = (size_t)(yyvsp[0].llng); } else { yyerror("expected a number greater than zero"); } #endif } #line 1939 "configparser.c" break; case 59: /* server_option: VAR_RRL_RATELIMIT number */ #line 403 "configparser.y" { #ifdef RATELIMIT cfg_parser->opt->rrl_ratelimit = (size_t)(yyvsp[0].llng); #endif } #line 1949 "configparser.c" break; case 60: /* server_option: VAR_RRL_SLIP number */ #line 409 "configparser.y" { #ifdef RATELIMIT cfg_parser->opt->rrl_slip = (size_t)(yyvsp[0].llng); #endif } #line 1959 "configparser.c" break; case 61: /* server_option: VAR_RRL_IPV4_PREFIX_LENGTH number */ #line 415 "configparser.y" { #ifdef RATELIMIT if ((yyvsp[0].llng) > 32) { yyerror("invalid IPv4 prefix length"); } else { cfg_parser->opt->rrl_ipv4_prefix_length = (size_t)(yyvsp[0].llng); } #endif } #line 1973 "configparser.c" break; case 62: /* server_option: VAR_RRL_IPV6_PREFIX_LENGTH number */ #line 425 "configparser.y" { #ifdef RATELIMIT if ((yyvsp[0].llng) > 64) { yyerror("invalid IPv6 prefix length"); } else { cfg_parser->opt->rrl_ipv6_prefix_length = (size_t)(yyvsp[0].llng); } #endif } #line 1987 "configparser.c" break; case 63: /* server_option: VAR_RRL_WHITELIST_RATELIMIT number */ #line 435 "configparser.y" { #ifdef RATELIMIT cfg_parser->opt->rrl_whitelist_ratelimit = (size_t)(yyvsp[0].llng); #endif } #line 1997 "configparser.c" break; case 64: /* server_option: VAR_ZONEFILES_CHECK boolean */ #line 441 "configparser.y" { cfg_parser->opt->zonefiles_check = (yyvsp[0].bln); } #line 2003 "configparser.c" break; case 65: /* server_option: VAR_ZONEFILES_WRITE number */ #line 443 "configparser.y" { cfg_parser->opt->zonefiles_write = (int)(yyvsp[0].llng); } #line 2009 "configparser.c" break; case 66: /* server_option: VAR_LOG_TIME_ASCII boolean */ #line 445 "configparser.y" { cfg_parser->opt->log_time_ascii = (yyvsp[0].bln); log_time_asc = cfg_parser->opt->log_time_ascii; } #line 2018 "configparser.c" break; case 67: /* server_option: VAR_ROUND_ROBIN boolean */ #line 450 "configparser.y" { cfg_parser->opt->round_robin = (yyvsp[0].bln); round_robin = cfg_parser->opt->round_robin; } #line 2027 "configparser.c" break; case 68: /* server_option: VAR_MINIMAL_RESPONSES boolean */ #line 455 "configparser.y" { cfg_parser->opt->minimal_responses = (yyvsp[0].bln); minimal_responses = cfg_parser->opt->minimal_responses; } #line 2036 "configparser.c" break; case 69: /* server_option: VAR_CONFINE_TO_ZONE boolean */ #line 460 "configparser.y" { cfg_parser->opt->confine_to_zone = (yyvsp[0].bln); } #line 2042 "configparser.c" break; case 70: /* server_option: VAR_REFUSE_ANY boolean */ #line 462 "configparser.y" { cfg_parser->opt->refuse_any = (yyvsp[0].bln); } #line 2048 "configparser.c" break; case 71: /* server_option: VAR_TLS_SERVICE_KEY STRING */ #line 464 "configparser.y" { cfg_parser->opt->tls_service_key = region_strdup(cfg_parser->opt->region, (yyvsp[0].str)); } #line 2054 "configparser.c" break; case 72: /* server_option: VAR_TLS_SERVICE_OCSP STRING */ #line 466 "configparser.y" { cfg_parser->opt->tls_service_ocsp = region_strdup(cfg_parser->opt->region, (yyvsp[0].str)); } #line 2060 "configparser.c" break; case 73: /* server_option: VAR_TLS_SERVICE_PEM STRING */ #line 468 "configparser.y" { cfg_parser->opt->tls_service_pem = region_strdup(cfg_parser->opt->region, (yyvsp[0].str)); } #line 2066 "configparser.c" break; case 74: /* server_option: VAR_TLS_PORT number */ #line 470 "configparser.y" { /* port number, stored as string */ char buf[16]; (void)snprintf(buf, sizeof(buf), "%lld", (yyvsp[0].llng)); cfg_parser->opt->tls_port = region_strdup(cfg_parser->opt->region, buf); } #line 2077 "configparser.c" break; case 75: /* server_option: VAR_TLS_CERT_BUNDLE STRING */ #line 477 "configparser.y" { cfg_parser->opt->tls_cert_bundle = region_strdup(cfg_parser->opt->region, (yyvsp[0].str)); } #line 2083 "configparser.c" break; case 76: /* server_option: VAR_PROXY_PROTOCOL_PORT number */ #line 479 "configparser.y" { struct proxy_protocol_port_list* elem = region_alloc_zero( cfg_parser->opt->region, sizeof(*elem)); elem->port = (yyvsp[0].llng); elem->next = cfg_parser->opt->proxy_protocol_port; cfg_parser->opt->proxy_protocol_port = elem; } #line 2095 "configparser.c" break; case 77: /* server_option: VAR_ANSWER_COOKIE boolean */ #line 487 "configparser.y" { cfg_parser->opt->answer_cookie = (yyvsp[0].bln); } #line 2101 "configparser.c" break; case 78: /* server_option: VAR_COOKIE_SECRET STRING */ #line 489 "configparser.y" { cfg_parser->opt->cookie_secret = region_strdup(cfg_parser->opt->region, (yyvsp[0].str)); } #line 2107 "configparser.c" break; case 79: /* server_option: VAR_COOKIE_SECRET_FILE STRING */ #line 491 "configparser.y" { cfg_parser->opt->cookie_secret_file = region_strdup(cfg_parser->opt->region, (yyvsp[0].str)); } #line 2113 "configparser.c" break; case 80: /* server_option: VAR_XFRD_TCP_MAX number */ #line 493 "configparser.y" { cfg_parser->opt->xfrd_tcp_max = (int)(yyvsp[0].llng); } #line 2119 "configparser.c" break; case 81: /* server_option: VAR_XFRD_TCP_PIPELINE number */ #line 495 "configparser.y" { cfg_parser->opt->xfrd_tcp_pipeline = (int)(yyvsp[0].llng); } #line 2125 "configparser.c" break; case 82: /* server_option: VAR_CPU_AFFINITY cpus */ #line 497 "configparser.y" { cfg_parser->opt->cpu_affinity = (yyvsp[0].cpu); } #line 2133 "configparser.c" break; case 83: /* server_option: service_cpu_affinity number */ #line 501 "configparser.y" { if((yyvsp[0].llng) < 0) { yyerror("expected a non-negative number"); YYABORT; } else { struct cpu_map_option *opt, *tail; opt = cfg_parser->opt->service_cpu_affinity; while(opt && opt->service != (yyvsp[-1].llng)) { opt = opt->next; } if(opt) { opt->cpu = (yyvsp[0].llng); } else { opt = region_alloc_zero(cfg_parser->opt->region, sizeof(*opt)); opt->service = (int)(yyvsp[-1].llng); opt->cpu = (int)(yyvsp[0].llng); tail = cfg_parser->opt->service_cpu_affinity; if(tail) { while(tail->next) { tail = tail->next; } tail->next = opt; } else { cfg_parser->opt->service_cpu_affinity = opt; } } } } #line 2165 "configparser.c" break; case 86: /* socket_option: VAR_SERVERS STRING */ #line 535 "configparser.y" { char *tok, *ptr, *str; struct range_option *servers = NULL; long long first, last; /* user may specify "0 1", "0" "1", 0 1 or a combination thereof */ for(str = (yyvsp[0].str); (tok = strtok_r(str, " \t", &ptr)); str = NULL) { struct range_option *opt = region_alloc(cfg_parser->opt->region, sizeof(*opt)); first = last = 0; if(!parse_range(tok, &first, &last)) { yyerror("invalid server range '%s'", tok); YYABORT; } assert(first >= 0); assert(last >= 0); opt->next = NULL; opt->first = (int)first; opt->last = (int)last; if(servers) { servers = servers->next = opt; } else { servers = cfg_parser->ip->servers = opt; } } } #line 2196 "configparser.c" break; case 87: /* socket_option: VAR_BINDTODEVICE boolean */ #line 562 "configparser.y" { cfg_parser->ip->dev = (yyvsp[0].bln); } #line 2202 "configparser.c" break; case 88: /* socket_option: VAR_SETFIB number */ #line 564 "configparser.y" { cfg_parser->ip->fib = (yyvsp[0].llng); } #line 2208 "configparser.c" break; case 89: /* cpus: %empty */ #line 568 "configparser.y" { (yyval.cpu) = NULL; } #line 2214 "configparser.c" break; case 90: /* cpus: cpus STRING */ #line 570 "configparser.y" { char *tok, *ptr, *str; struct cpu_option *tail; long long cpu; str = (yyvsp[0].str); (yyval.cpu) = tail = (yyvsp[-1].cpu); if(tail) { while(tail->next) { tail = tail->next; } } /* Users may specify "0 1", "0" "1", 0 1 or a combination thereof. */ for(str = (yyvsp[0].str); (tok = strtok_r(str, " \t", &ptr)); str = NULL) { struct cpu_option *opt = region_alloc_zero(cfg_parser->opt->region, sizeof(*opt)); cpu = 0; if(!parse_number(tok, &cpu) || cpu < 0) { yyerror("expected a positive number"); YYABORT; } assert(cpu >=0); opt->cpu = (int)cpu; if(tail) { tail->next = opt; tail = opt; } else { (yyval.cpu) = tail = opt; } } } #line 2249 "configparser.c" break; case 91: /* service_cpu_affinity: VAR_XFRD_CPU_AFFINITY */ #line 604 "configparser.y" { (yyval.llng) = -1; } #line 2255 "configparser.c" break; case 92: /* service_cpu_affinity: VAR_SERVER_CPU_AFFINITY */ #line 606 "configparser.y" { if((yyvsp[0].llng) <= 0) { yyerror("invalid server identifier"); YYABORT; } (yyval.llng) = (yyvsp[0].llng); } #line 2267 "configparser.c" break; case 96: /* dnstap_option: VAR_DNSTAP_ENABLE boolean */ #line 623 "configparser.y" { cfg_parser->opt->dnstap_enable = (yyvsp[0].bln); } #line 2273 "configparser.c" break; case 97: /* dnstap_option: VAR_DNSTAP_SOCKET_PATH STRING */ #line 625 "configparser.y" { cfg_parser->opt->dnstap_socket_path = region_strdup(cfg_parser->opt->region, (yyvsp[0].str)); } #line 2279 "configparser.c" break; case 98: /* dnstap_option: VAR_DNSTAP_IP STRING */ #line 627 "configparser.y" { cfg_parser->opt->dnstap_ip = region_strdup(cfg_parser->opt->region, (yyvsp[0].str)); } #line 2285 "configparser.c" break; case 99: /* dnstap_option: VAR_DNSTAP_TLS boolean */ #line 629 "configparser.y" { cfg_parser->opt->dnstap_tls = (yyvsp[0].bln); } #line 2291 "configparser.c" break; case 100: /* dnstap_option: VAR_DNSTAP_TLS_SERVER_NAME STRING */ #line 631 "configparser.y" { cfg_parser->opt->dnstap_tls_server_name = region_strdup(cfg_parser->opt->region, (yyvsp[0].str)); } #line 2297 "configparser.c" break; case 101: /* dnstap_option: VAR_DNSTAP_TLS_CERT_BUNDLE STRING */ #line 633 "configparser.y" { cfg_parser->opt->dnstap_tls_cert_bundle = region_strdup(cfg_parser->opt->region, (yyvsp[0].str)); } #line 2303 "configparser.c" break; case 102: /* dnstap_option: VAR_DNSTAP_TLS_CLIENT_KEY_FILE STRING */ #line 635 "configparser.y" { cfg_parser->opt->dnstap_tls_client_key_file = region_strdup(cfg_parser->opt->region, (yyvsp[0].str)); } #line 2309 "configparser.c" break; case 103: /* dnstap_option: VAR_DNSTAP_TLS_CLIENT_CERT_FILE STRING */ #line 637 "configparser.y" { cfg_parser->opt->dnstap_tls_client_cert_file = region_strdup(cfg_parser->opt->region, (yyvsp[0].str)); } #line 2315 "configparser.c" break; case 104: /* dnstap_option: VAR_DNSTAP_SEND_IDENTITY boolean */ #line 639 "configparser.y" { cfg_parser->opt->dnstap_send_identity = (yyvsp[0].bln); } #line 2321 "configparser.c" break; case 105: /* dnstap_option: VAR_DNSTAP_SEND_VERSION boolean */ #line 641 "configparser.y" { cfg_parser->opt->dnstap_send_version = (yyvsp[0].bln); } #line 2327 "configparser.c" break; case 106: /* dnstap_option: VAR_DNSTAP_IDENTITY STRING */ #line 643 "configparser.y" { cfg_parser->opt->dnstap_identity = region_strdup(cfg_parser->opt->region, (yyvsp[0].str)); } #line 2333 "configparser.c" break; case 107: /* dnstap_option: VAR_DNSTAP_VERSION STRING */ #line 645 "configparser.y" { cfg_parser->opt->dnstap_version = region_strdup(cfg_parser->opt->region, (yyvsp[0].str)); } #line 2339 "configparser.c" break; case 108: /* dnstap_option: VAR_DNSTAP_LOG_AUTH_QUERY_MESSAGES boolean */ #line 647 "configparser.y" { cfg_parser->opt->dnstap_log_auth_query_messages = (yyvsp[0].bln); } #line 2345 "configparser.c" break; case 109: /* dnstap_option: VAR_DNSTAP_LOG_AUTH_RESPONSE_MESSAGES boolean */ #line 649 "configparser.y" { cfg_parser->opt->dnstap_log_auth_response_messages = (yyvsp[0].bln); } #line 2351 "configparser.c" break; case 113: /* remote_control_option: VAR_CONTROL_ENABLE boolean */ #line 660 "configparser.y" { cfg_parser->opt->control_enable = (yyvsp[0].bln); } #line 2357 "configparser.c" break; case 114: /* remote_control_option: VAR_CONTROL_INTERFACE ip_address */ #line 662 "configparser.y" { struct ip_address_option *ip = cfg_parser->opt->control_interface; if(ip == NULL) { cfg_parser->opt->control_interface = (yyvsp[0].ip); } else { while(ip->next != NULL) { ip = ip->next; } ip->next = (yyvsp[0].ip); } } #line 2371 "configparser.c" break; case 115: /* remote_control_option: VAR_CONTROL_PORT number */ #line 672 "configparser.y" { if((yyvsp[0].llng) == 0) { yyerror("control port number expected"); } else { cfg_parser->opt->control_port = (int)(yyvsp[0].llng); } } #line 2383 "configparser.c" break; case 116: /* remote_control_option: VAR_SERVER_KEY_FILE STRING */ #line 680 "configparser.y" { cfg_parser->opt->server_key_file = region_strdup(cfg_parser->opt->region, (yyvsp[0].str)); } #line 2389 "configparser.c" break; case 117: /* remote_control_option: VAR_SERVER_CERT_FILE STRING */ #line 682 "configparser.y" { cfg_parser->opt->server_cert_file = region_strdup(cfg_parser->opt->region, (yyvsp[0].str)); } #line 2395 "configparser.c" break; case 118: /* remote_control_option: VAR_CONTROL_KEY_FILE STRING */ #line 684 "configparser.y" { cfg_parser->opt->control_key_file = region_strdup(cfg_parser->opt->region, (yyvsp[0].str)); } #line 2401 "configparser.c" break; case 119: /* remote_control_option: VAR_CONTROL_CERT_FILE STRING */ #line 686 "configparser.y" { cfg_parser->opt->control_cert_file = region_strdup(cfg_parser->opt->region, (yyvsp[0].str)); } #line 2407 "configparser.c" break; case 120: /* $@2: %empty */ #line 691 "configparser.y" { tls_auth_options_type *tls_auth = tls_auth_options_create(cfg_parser->opt->region); assert(cfg_parser->tls_auth == NULL); cfg_parser->tls_auth = tls_auth; } #line 2417 "configparser.c" break; case 121: /* tls_auth: VAR_TLS_AUTH $@2 tls_auth_block */ #line 697 "configparser.y" { struct tls_auth_options *tls_auth = cfg_parser->tls_auth; if(tls_auth->name == NULL) { yyerror("tls-auth has no name"); } else if(tls_auth->auth_domain_name == NULL) { yyerror("tls-auth %s has no auth-domain-name", tls_auth->name); } else if(tls_auth_options_find(cfg_parser->opt, tls_auth->name)) { yyerror("duplicate tls-auth %s", tls_auth->name); } else { tls_auth_options_insert(cfg_parser->opt, tls_auth); cfg_parser->tls_auth = NULL; } } #line 2435 "configparser.c" break; case 124: /* tls_auth_option: VAR_NAME STRING */ #line 716 "configparser.y" { dname_type *dname; dname = (dname_type *)dname_parse(cfg_parser->opt->region, (yyvsp[0].str)); cfg_parser->tls_auth->name = region_strdup(cfg_parser->opt->region, (yyvsp[0].str)); if(dname == NULL) { yyerror("bad tls-auth name %s", (yyvsp[0].str)); } else { region_recycle(cfg_parser->opt->region, dname, dname_total_size(dname)); } } #line 2450 "configparser.c" break; case 125: /* tls_auth_option: VAR_TLS_AUTH_DOMAIN_NAME STRING */ #line 727 "configparser.y" { cfg_parser->tls_auth->auth_domain_name = region_strdup(cfg_parser->opt->region, (yyvsp[0].str)); } #line 2458 "configparser.c" break; case 126: /* tls_auth_option: VAR_TLS_AUTH_CLIENT_CERT STRING */ #line 731 "configparser.y" { cfg_parser->tls_auth->client_cert = region_strdup(cfg_parser->opt->region, (yyvsp[0].str)); } #line 2466 "configparser.c" break; case 127: /* tls_auth_option: VAR_TLS_AUTH_CLIENT_KEY STRING */ #line 735 "configparser.y" { cfg_parser->tls_auth->client_key = region_strdup(cfg_parser->opt->region, (yyvsp[0].str)); } #line 2474 "configparser.c" break; case 128: /* tls_auth_option: VAR_TLS_AUTH_CLIENT_KEY_PW STRING */ #line 739 "configparser.y" { cfg_parser->tls_auth->client_key_pw = region_strdup(cfg_parser->opt->region, (yyvsp[0].str)); } #line 2482 "configparser.c" break; case 129: /* $@3: %empty */ #line 746 "configparser.y" { key_options_type *key = key_options_create(cfg_parser->opt->region); key->algorithm = region_strdup(cfg_parser->opt->region, "sha256"); assert(cfg_parser->key == NULL); cfg_parser->key = key; } #line 2493 "configparser.c" break; case 130: /* key: VAR_KEY $@3 key_block */ #line 753 "configparser.y" { struct key_options *key = cfg_parser->key; if(key->name == NULL) { yyerror("tsig key has no name"); } else if(key->algorithm == NULL) { yyerror("tsig key %s has no algorithm", key->name); } else if(key->secret == NULL) { yyerror("tsig key %s has no secret blob", key->name); } else if(key_options_find(cfg_parser->opt, key->name)) { yyerror("duplicate tsig key %s", key->name); } else { key_options_insert(cfg_parser->opt, key); cfg_parser->key = NULL; } } #line 2513 "configparser.c" break; case 133: /* key_option: VAR_NAME STRING */ #line 774 "configparser.y" { dname_type *dname; dname = (dname_type *)dname_parse(cfg_parser->opt->region, (yyvsp[0].str)); cfg_parser->key->name = region_strdup(cfg_parser->opt->region, (yyvsp[0].str)); if(dname == NULL) { yyerror("bad tsig key name %s", (yyvsp[0].str)); } else { region_recycle(cfg_parser->opt->region, dname, dname_total_size(dname)); } } #line 2529 "configparser.c" break; case 134: /* key_option: VAR_ALGORITHM STRING */ #line 786 "configparser.y" { if(tsig_get_algorithm_by_name((yyvsp[0].str)) == NULL) { yyerror("bad tsig key algorithm %s", (yyvsp[0].str)); } else { cfg_parser->key->algorithm = region_strdup(cfg_parser->opt->region, (yyvsp[0].str)); } } #line 2541 "configparser.c" break; case 135: /* key_option: VAR_SECRET STRING */ #line 794 "configparser.y" { uint8_t data[16384]; int size; cfg_parser->key->secret = region_strdup(cfg_parser->opt->region, (yyvsp[0].str)); size = b64_pton((yyvsp[0].str), data, sizeof(data)); if(size == -1) { yyerror("cannot base64 decode tsig secret %s", cfg_parser->key->name? cfg_parser->key->name:""); } else if(size != 0) { memset(data, 0xdd, size); /* wipe secret */ } } #line 2560 "configparser.c" break; case 136: /* $@4: %empty */ #line 812 "configparser.y" { assert(cfg_parser->pattern == NULL); assert(cfg_parser->zone == NULL); cfg_parser->zone = zone_options_create(cfg_parser->opt->region); cfg_parser->zone->part_of_config = 1; cfg_parser->zone->pattern = cfg_parser->pattern = pattern_options_create(cfg_parser->opt->region); cfg_parser->zone->pattern->implicit = 1; } #line 2574 "configparser.c" break; case 137: /* zone: VAR_ZONE $@4 zone_block */ #line 822 "configparser.y" { assert(cfg_parser->zone != NULL); if(cfg_parser->zone->name == NULL) { yyerror("zone has no name"); } else if(!nsd_options_insert_zone(cfg_parser->opt, cfg_parser->zone)) { yyerror("duplicate zone %s", cfg_parser->zone->name); } else if(!nsd_options_insert_pattern(cfg_parser->opt, cfg_parser->zone->pattern)) { yyerror("duplicate pattern %s", cfg_parser->zone->pattern->pname); } cfg_parser->pattern = NULL; cfg_parser->zone = NULL; } #line 2591 "configparser.c" break; case 140: /* zone_option: VAR_NAME STRING */ #line 840 "configparser.y" { const char *marker = PATTERN_IMPLICIT_MARKER; char *pname = region_alloc(cfg_parser->opt->region, strlen((yyvsp[0].str)) + strlen(marker) + 1); memmove(pname, marker, strlen(marker)); memmove(pname + strlen(marker), (yyvsp[0].str), strlen((yyvsp[0].str)) + 1); cfg_parser->zone->pattern->pname = pname; cfg_parser->zone->name = region_strdup(cfg_parser->opt->region, (yyvsp[0].str)); if(pattern_options_find(cfg_parser->opt, pname)) { yyerror("zone %s cannot be created because implicit pattern %s " "already exists", (yyvsp[0].str), pname); } } #line 2608 "configparser.c" break; case 142: /* $@5: %empty */ #line 856 "configparser.y" { assert(cfg_parser->pattern == NULL); cfg_parser->pattern = pattern_options_create(cfg_parser->opt->region); } #line 2617 "configparser.c" break; case 143: /* pattern: VAR_PATTERN $@5 pattern_block */ #line 861 "configparser.y" { pattern_options_type *pattern = cfg_parser->pattern; if(pattern->pname == NULL) { yyerror("pattern has no name"); } else if(!nsd_options_insert_pattern(cfg_parser->opt, pattern)) { yyerror("duplicate pattern %s", pattern->pname); } cfg_parser->pattern = NULL; } #line 2631 "configparser.c" break; case 146: /* pattern_option: VAR_NAME STRING */ #line 876 "configparser.y" { if(strchr((yyvsp[0].str), ' ')) { yyerror("space is not allowed in pattern name: '%s'", (yyvsp[0].str)); } cfg_parser->pattern->pname = region_strdup(cfg_parser->opt->region, (yyvsp[0].str)); } #line 2642 "configparser.c" break; case 148: /* pattern_or_zone_option: VAR_RRL_WHITELIST STRING */ #line 886 "configparser.y" { #ifdef RATELIMIT cfg_parser->pattern->rrl_whitelist |= rrlstr2type((yyvsp[0].str)); #endif } #line 2652 "configparser.c" break; case 149: /* pattern_or_zone_option: VAR_ZONEFILE STRING */ #line 892 "configparser.y" { cfg_parser->pattern->zonefile = region_strdup(cfg_parser->opt->region, (yyvsp[0].str)); } #line 2658 "configparser.c" break; case 150: /* pattern_or_zone_option: VAR_ZONESTATS STRING */ #line 894 "configparser.y" { cfg_parser->pattern->zonestats = region_strdup(cfg_parser->opt->region, (yyvsp[0].str)); } #line 2664 "configparser.c" break; case 151: /* pattern_or_zone_option: VAR_SIZE_LIMIT_XFR number */ #line 896 "configparser.y" { if((yyvsp[0].llng) > 0) { cfg_parser->pattern->size_limit_xfr = (int)(yyvsp[0].llng); } else { yyerror("expected a number greater than zero"); } } #line 2676 "configparser.c" break; case 152: /* pattern_or_zone_option: VAR_MULTI_MASTER_CHECK boolean */ #line 904 "configparser.y" { cfg_parser->pattern->multi_master_check = (int)(yyvsp[0].bln); } #line 2682 "configparser.c" break; case 153: /* pattern_or_zone_option: VAR_INCLUDE_PATTERN STRING */ #line 906 "configparser.y" { config_apply_pattern(cfg_parser->pattern, (yyvsp[0].str)); } #line 2688 "configparser.c" break; case 154: /* $@6: %empty */ #line 908 "configparser.y" { acl_options_type *acl = parse_acl_info(cfg_parser->opt->region, (yyvsp[-1].str), (yyvsp[0].str)); if(acl->blocked) yyerror("blocked address used for request-xfr"); if(acl->rangetype != acl_range_single) yyerror("address range used for request-xfr"); append_acl(&cfg_parser->pattern->request_xfr, acl); } #line 2701 "configparser.c" break; case 155: /* pattern_or_zone_option: VAR_REQUEST_XFR STRING STRING $@6 tlsauth_option */ #line 917 "configparser.y" { } #line 2707 "configparser.c" break; case 156: /* $@7: %empty */ #line 919 "configparser.y" { acl_options_type *acl = parse_acl_info(cfg_parser->opt->region, (yyvsp[-1].str), (yyvsp[0].str)); acl->use_axfr_only = 1; if(acl->blocked) yyerror("blocked address used for request-xfr"); if(acl->rangetype != acl_range_single) yyerror("address range used for request-xfr"); append_acl(&cfg_parser->pattern->request_xfr, acl); } #line 2721 "configparser.c" break; case 157: /* pattern_or_zone_option: VAR_REQUEST_XFR VAR_AXFR STRING STRING $@7 tlsauth_option */ #line 929 "configparser.y" { } #line 2727 "configparser.c" break; case 158: /* pattern_or_zone_option: VAR_REQUEST_XFR VAR_UDP STRING STRING */ #line 931 "configparser.y" { acl_options_type *acl = parse_acl_info(cfg_parser->opt->region, (yyvsp[-1].str), (yyvsp[0].str)); acl->allow_udp = 1; if(acl->blocked) yyerror("blocked address used for request-xfr"); if(acl->rangetype != acl_range_single) yyerror("address range used for request-xfr"); append_acl(&cfg_parser->pattern->request_xfr, acl); } #line 2741 "configparser.c" break; case 159: /* pattern_or_zone_option: VAR_ALLOW_NOTIFY STRING STRING */ #line 941 "configparser.y" { acl_options_type *acl = parse_acl_info(cfg_parser->opt->region, (yyvsp[-1].str), (yyvsp[0].str)); append_acl(&cfg_parser->pattern->allow_notify, acl); } #line 2750 "configparser.c" break; case 160: /* pattern_or_zone_option: VAR_NOTIFY STRING STRING */ #line 946 "configparser.y" { acl_options_type *acl = parse_acl_info(cfg_parser->opt->region, (yyvsp[-1].str), (yyvsp[0].str)); if(acl->blocked) yyerror("blocked address used for notify"); if(acl->rangetype != acl_range_single) yyerror("address range used for notify"); append_acl(&cfg_parser->pattern->notify, acl); } #line 2763 "configparser.c" break; case 161: /* pattern_or_zone_option: VAR_PROVIDE_XFR STRING STRING */ #line 955 "configparser.y" { acl_options_type *acl = parse_acl_info(cfg_parser->opt->region, (yyvsp[-1].str), (yyvsp[0].str)); append_acl(&cfg_parser->pattern->provide_xfr, acl); } #line 2772 "configparser.c" break; case 162: /* pattern_or_zone_option: VAR_ALLOW_QUERY STRING STRING */ #line 960 "configparser.y" { acl_options_type *acl = parse_acl_info(cfg_parser->opt->region, (yyvsp[-1].str), (yyvsp[0].str)); append_acl(&cfg_parser->pattern->allow_query, acl); } #line 2781 "configparser.c" break; case 163: /* pattern_or_zone_option: VAR_OUTGOING_INTERFACE STRING */ #line 965 "configparser.y" { acl_options_type *acl = parse_acl_info(cfg_parser->opt->region, (yyvsp[0].str), "NOKEY"); append_acl(&cfg_parser->pattern->outgoing_interface, acl); } #line 2790 "configparser.c" break; case 164: /* pattern_or_zone_option: VAR_ALLOW_AXFR_FALLBACK boolean */ #line 970 "configparser.y" { cfg_parser->pattern->allow_axfr_fallback = (yyvsp[0].bln); cfg_parser->pattern->allow_axfr_fallback_is_default = 0; } #line 2799 "configparser.c" break; case 165: /* pattern_or_zone_option: VAR_NOTIFY_RETRY number */ #line 975 "configparser.y" { cfg_parser->pattern->notify_retry = (yyvsp[0].llng); cfg_parser->pattern->notify_retry_is_default = 0; } #line 2808 "configparser.c" break; case 166: /* pattern_or_zone_option: VAR_MAX_REFRESH_TIME number */ #line 980 "configparser.y" { cfg_parser->pattern->max_refresh_time = (yyvsp[0].llng); cfg_parser->pattern->max_refresh_time_is_default = 0; } #line 2817 "configparser.c" break; case 167: /* pattern_or_zone_option: VAR_MIN_REFRESH_TIME number */ #line 985 "configparser.y" { cfg_parser->pattern->min_refresh_time = (yyvsp[0].llng); cfg_parser->pattern->min_refresh_time_is_default = 0; } #line 2826 "configparser.c" break; case 168: /* pattern_or_zone_option: VAR_MAX_RETRY_TIME number */ #line 990 "configparser.y" { cfg_parser->pattern->max_retry_time = (yyvsp[0].llng); cfg_parser->pattern->max_retry_time_is_default = 0; } #line 2835 "configparser.c" break; case 169: /* pattern_or_zone_option: VAR_MIN_RETRY_TIME number */ #line 995 "configparser.y" { cfg_parser->pattern->min_retry_time = (yyvsp[0].llng); cfg_parser->pattern->min_retry_time_is_default = 0; } #line 2844 "configparser.c" break; case 170: /* pattern_or_zone_option: VAR_MIN_EXPIRE_TIME STRING */ #line 1000 "configparser.y" { long long num; uint8_t expr; if (!parse_expire_expr((yyvsp[0].str), &num, &expr)) { yyerror("expected an expire time in seconds or \"refresh+retry+1\""); YYABORT; /* trigger a parser error */ } cfg_parser->pattern->min_expire_time = num; cfg_parser->pattern->min_expire_time_expr = expr; } #line 2860 "configparser.c" break; case 171: /* pattern_or_zone_option: VAR_STORE_IXFR boolean */ #line 1012 "configparser.y" { cfg_parser->pattern->store_ixfr = (yyvsp[0].bln); cfg_parser->pattern->store_ixfr_is_default = 0; } #line 2869 "configparser.c" break; case 172: /* pattern_or_zone_option: VAR_IXFR_SIZE number */ #line 1017 "configparser.y" { cfg_parser->pattern->ixfr_size = (yyvsp[0].llng); cfg_parser->pattern->ixfr_size_is_default = 0; } #line 2878 "configparser.c" break; case 173: /* pattern_or_zone_option: VAR_IXFR_NUMBER number */ #line 1022 "configparser.y" { cfg_parser->pattern->ixfr_number = (yyvsp[0].llng); cfg_parser->pattern->ixfr_number_is_default = 0; } #line 2887 "configparser.c" break; case 174: /* pattern_or_zone_option: VAR_CREATE_IXFR boolean */ #line 1027 "configparser.y" { cfg_parser->pattern->create_ixfr = (yyvsp[0].bln); cfg_parser->pattern->create_ixfr_is_default = 0; } #line 2896 "configparser.c" break; case 175: /* pattern_or_zone_option: VAR_VERIFY_ZONE boolean */ #line 1032 "configparser.y" { cfg_parser->pattern->verify_zone = (yyvsp[0].bln); } #line 2902 "configparser.c" break; case 176: /* pattern_or_zone_option: VAR_VERIFIER command */ #line 1034 "configparser.y" { cfg_parser->pattern->verifier = (yyvsp[0].strv); } #line 2908 "configparser.c" break; case 177: /* pattern_or_zone_option: VAR_VERIFIER_FEED_ZONE boolean */ #line 1036 "configparser.y" { cfg_parser->pattern->verifier_feed_zone = (yyvsp[0].bln); } #line 2914 "configparser.c" break; case 178: /* pattern_or_zone_option: VAR_VERIFIER_TIMEOUT number */ #line 1038 "configparser.y" { cfg_parser->pattern->verifier_timeout = (yyvsp[0].llng); } #line 2920 "configparser.c" break; case 182: /* verify_option: VAR_ENABLE boolean */ #line 1048 "configparser.y" { cfg_parser->opt->verify_enable = (yyvsp[0].bln); } #line 2926 "configparser.c" break; case 183: /* verify_option: VAR_IP_ADDRESS ip_address */ #line 1050 "configparser.y" { struct ip_address_option *ip = cfg_parser->opt->verify_ip_addresses; if(!ip) { cfg_parser->opt->verify_ip_addresses = (yyvsp[0].ip); } else { while(ip->next) { ip = ip->next; } ip->next = (yyvsp[0].ip); } } #line 2940 "configparser.c" break; case 184: /* verify_option: VAR_PORT number */ #line 1060 "configparser.y" { /* port number, stored as a string */ char buf[16]; (void)snprintf(buf, sizeof(buf), "%lld", (yyvsp[0].llng)); cfg_parser->opt->verify_port = region_strdup(cfg_parser->opt->region, buf); } #line 2951 "configparser.c" break; case 185: /* verify_option: VAR_VERIFY_ZONES boolean */ #line 1067 "configparser.y" { cfg_parser->opt->verify_zones = (yyvsp[0].bln); } #line 2957 "configparser.c" break; case 186: /* verify_option: VAR_VERIFIER command */ #line 1069 "configparser.y" { cfg_parser->opt->verifier = (yyvsp[0].strv); } #line 2963 "configparser.c" break; case 187: /* verify_option: VAR_VERIFIER_COUNT number */ #line 1071 "configparser.y" { cfg_parser->opt->verifier_count = (int)(yyvsp[0].llng); } #line 2969 "configparser.c" break; case 188: /* verify_option: VAR_VERIFIER_TIMEOUT number */ #line 1073 "configparser.y" { cfg_parser->opt->verifier_timeout = (int)(yyvsp[0].llng); } #line 2975 "configparser.c" break; case 189: /* verify_option: VAR_VERIFIER_FEED_ZONE boolean */ #line 1075 "configparser.y" { cfg_parser->opt->verifier_feed_zone = (yyvsp[0].bln); } #line 2981 "configparser.c" break; case 190: /* command: STRING arguments */ #line 1079 "configparser.y" { char **argv; size_t argc = 1; for(struct component *i = (yyvsp[0].comp); i; i = i->next) { argc++; } argv = region_alloc_zero( cfg_parser->opt->region, (argc + 1) * sizeof(char *)); argc = 0; argv[argc++] = (yyvsp[-1].str); for(struct component *j, *i = (yyvsp[0].comp); i; i = j) { j = i->next; argv[argc++] = i->str; region_recycle(cfg_parser->opt->region, i, sizeof(*i)); } (yyval.strv) = argv; } #line 3003 "configparser.c" break; case 191: /* arguments: %empty */ #line 1098 "configparser.y" { (yyval.comp) = NULL; } #line 3009 "configparser.c" break; case 192: /* arguments: arguments STRING */ #line 1100 "configparser.y" { struct component *comp = region_alloc_zero( cfg_parser->opt->region, sizeof(*comp)); comp->str = region_strdup(cfg_parser->opt->region, (yyvsp[0].str)); if((yyvsp[-1].comp)) { struct component *tail = (yyvsp[-1].comp); while(tail->next) { tail = tail->next; } tail->next = comp; (yyval.comp) = (yyvsp[-1].comp); } else { (yyval.comp) = comp; } } #line 3029 "configparser.c" break; case 193: /* ip_address: STRING */ #line 1118 "configparser.y" { struct ip_address_option *ip = region_alloc_zero( cfg_parser->opt->region, sizeof(*ip)); ip->address = region_strdup(cfg_parser->opt->region, (yyvsp[0].str)); ip->fib = -1; (yyval.ip) = ip; } #line 3041 "configparser.c" break; case 194: /* number: STRING */ #line 1128 "configparser.y" { if(!parse_number((yyvsp[0].str), &(yyval.llng))) { yyerror("expected a number"); YYABORT; /* trigger a parser error */ } } #line 3052 "configparser.c" break; case 195: /* boolean: STRING */ #line 1137 "configparser.y" { if(!parse_boolean((yyvsp[0].str), &(yyval.bln))) { yyerror("expected yes or no"); YYABORT; /* trigger a parser error */ } } #line 3063 "configparser.c" break; case 197: /* tlsauth_option: STRING */ #line 1146 "configparser.y" { char *tls_auth_name = region_strdup(cfg_parser->opt->region, (yyvsp[0].str)); add_to_last_acl(&cfg_parser->pattern->request_xfr, tls_auth_name);} #line 3070 "configparser.c" break; #line 3074 "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 ("-> $$ =", YY_CAST (yysymbol_kind_t, yyr1[yyn]), &yyval, &yyloc); YYPOPSTACK (yylen); yylen = 0; *++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 ? YYSYMBOL_YYEMPTY : YYTRANSLATE (yychar); /* If not already recovering from an error, report this error. */ if (!yyerrstatus) { ++yynerrs; yyerror (YY_("syntax error")); } 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. */ /* Pop stack until we find a state that shifts the error token. */ for (;;) { yyn = yypact[yystate]; if (!yypact_value_is_default (yyn)) { yyn += YYSYMBOL_YYerror; if (0 <= yyn && yyn <= YYLAST && yycheck[yyn] == YYSYMBOL_YYerror) { 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", YY_ACCESSING_SYMBOL (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", YY_ACCESSING_SYMBOL (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 /*-------------------------------------------------. | yyexhaustedlab -- memory exhaustion comes here. | `-------------------------------------------------*/ yyexhaustedlab: yyerror (YY_("memory exhausted")); yyresult = 2; goto yyreturn; #endif /*-------------------------------------------------------. | yyreturn -- parsing is finished, clean up and return. | `-------------------------------------------------------*/ 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", YY_ACCESSING_SYMBOL (+*yyssp), yyvsp); YYPOPSTACK (1); } #ifndef yyoverflow if (yyss != yyssa) YYSTACK_FREE (yyss); #endif return yyresult; } #line 1149 "configparser.y" static void append_acl(struct acl_options **list, struct acl_options *acl) { assert(list != NULL); if(*list == NULL) { *list = acl; } else { struct acl_options *tail = *list; while(tail->next != NULL) tail = tail->next; tail->next = acl; } } static void add_to_last_acl(struct acl_options **list, char *tls_auth_name) { struct acl_options *tail = *list; assert(list != NULL); assert(*list != NULL); while(tail->next != NULL) tail = tail->next; tail->tls_auth_name = tls_auth_name; } static int parse_boolean(const char *str, int *bln) { if(strcmp(str, "yes") == 0) { *bln = 1; } else if(strcmp(str, "no") == 0) { *bln = 0; } else { return 0; } return 1; } static int parse_expire_expr(const char *str, long long *num, uint8_t *expr) { if(parse_number(str, num)) { *expr = EXPIRE_TIME_HAS_VALUE; return 1; } if(strcmp(str, REFRESHPLUSRETRYPLUS1_STR) == 0) { *num = 0; *expr = REFRESHPLUSRETRYPLUS1; return 1; } return 0; } static int parse_number(const char *str, long long *num) { /* ensure string consists entirely of digits */ size_t pos = 0; while(str[pos] >= '0' && str[pos] <= '9') { pos++; } if(pos != 0 && str[pos] == '\0') { *num = strtoll(str, NULL, 10); return 1; } return 0; } static int parse_range(const char *str, long long *low, long long *high) { const char *ptr = str; long long num[2]; /* require range to begin with a number */ if(*ptr < '0' || *ptr > '9') { return 0; } num[0] = strtoll(ptr, (char **)&ptr, 10); /* require number to be followed by nothing at all or a dash */ if(*ptr == '\0') { *low = num[0]; *high = num[0]; return 1; } else if(*ptr != '-') { return 0; } ++ptr; /* require dash to be followed by a number */ if(*ptr < '0' || *ptr > '9') { return 0; } num[1] = strtoll(ptr, (char **)&ptr, 10); /* require number to be followed by nothing at all */ if(*ptr == '\0') { if(num[0] < num[1]) { *low = num[0]; *high = num[1]; } else { *low = num[1]; *high = num[0]; } return 1; } return 0; }