summaryrefslogtreecommitdiff
path: root/lib/ASN1.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/ASN1.c')
-rw-r--r--lib/ASN1.c2723
1 files changed, 1530 insertions, 1193 deletions
diff --git a/lib/ASN1.c b/lib/ASN1.c
index 7d5601e..1cac985 100644
--- a/lib/ASN1.c
+++ b/lib/ASN1.c
@@ -1,8 +1,8 @@
-/* A Bison parser, made by GNU Bison 3.3.2. */
+/* A Bison parser, made by GNU Bison 3.7.5. */
/* Bison implementation for Yacc-like parsers in C
- Copyright (C) 1984, 1989-1990, 2000-2015, 2018-2019 Free Software Foundation,
+ 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
@@ -34,6 +34,10 @@
/* 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.
@@ -41,14 +45,11 @@
define necessary library symbols; they are noted "INFRINGES ON
USER NAME SPACE" below. */
-/* Undocumented macros, especially those whose name start with YY_,
- are private implementation details. Do not rely on them. */
-
-/* Identify Bison output. */
-#define YYBISON 1
+/* Identify Bison output, and Bison version. */
+#define YYBISON 30705
-/* Bison version. */
-#define YYBISON_VERSION "3.3.2"
+/* Bison version string. */
+#define YYBISON_VERSION "3.7.5"
/* Skeleton name. */
#define YYSKELETON_NAME "yacc.c"
@@ -62,22 +63,22 @@
/* Pull parsers. */
#define YYPULL 1
-
+/* Substitute the type names. */
+#define YYSTYPE _ASN1_YYSTYPE
/* Substitute the variable and function names. */
#define yyparse _asn1_yyparse
#define yylex _asn1_yylex
#define yyerror _asn1_yyerror
#define yydebug _asn1_yydebug
#define yynerrs _asn1_yynerrs
-
#define yylval _asn1_yylval
#define yychar _asn1_yychar
/* First part of user prologue. */
-#line 1 "ASN1.y" /* yacc.c:337 */
+#line 1 "ASN1.y"
/*
- * Copyright (C) 2001-2014 Free Software Foundation, Inc.
+ * Copyright (C) 2001-2022 Free Software Foundation, Inc.
*
* This file is part of LIBTASN1.
*
@@ -108,6 +109,7 @@
#include <parser_aux.h>
#include <structure.h>
#include <libtasn1.h>
+#include "c-ctype.h"
static list_type *e_list = NULL;
static FILE *file_asn1; /* Pointer to file to parse */
@@ -130,6 +132,9 @@ static const char *file_name; /* file to parse */
static void _asn1_yyerror (const char *);
static int _asn1_yylex(void);
+#ifdef FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION
+#define SAFE_COPY(dst, dst_size, fmt, ...) { snprintf(dst, dst_size, fmt, __VA_ARGS__); }
+#else
#define SAFE_COPY(dst, dst_size, fmt, ...) { \
int _ret = snprintf(dst, dst_size, fmt, __VA_ARGS__); \
if (_ret != (int)strlen(dst)) \
@@ -139,8 +144,19 @@ static int _asn1_yylex(void);
exit(1); \
} \
}
+#endif
-#line 144 "ASN1.c" /* yacc.c:337 */
+#line 150 "ASN1.c"
+
+# ifndef YY_CAST
+# ifdef __cplusplus
+# define YY_CAST(Type, Val) static_cast<Type> (Val)
+# define YY_REINTERPRET_CAST(Type, Val) reinterpret_cast<Type> (Val)
+# else
+# define YY_CAST(Type, Val) ((Type) (Val))
+# define YY_REINTERPRET_CAST(Type, Val) ((Type) (Val))
+# endif
+# endif
# ifndef YY_NULLPTR
# if defined __cplusplus
# if 201103L <= __cplusplus
@@ -153,77 +169,86 @@ static int _asn1_yylex(void);
# endif
# endif
-/* Enabling verbose error messages. */
-#ifdef YYERROR_VERBOSE
-# undef YYERROR_VERBOSE
-# define YYERROR_VERBOSE 1
-#else
-# define YYERROR_VERBOSE 1
-#endif
-
/* Debug traces. */
-#ifndef YYDEBUG
-# define YYDEBUG 0
-#endif
+#ifndef _ASN1_YYDEBUG
+# if defined YYDEBUG
#if YYDEBUG
+# define _ASN1_YYDEBUG 1
+# else
+# define _ASN1_YYDEBUG 0
+# endif
+# else /* ! defined YYDEBUG */
+# define _ASN1_YYDEBUG 0
+# endif /* ! defined YYDEBUG */
+#endif /* ! defined _ASN1_YYDEBUG */
+#if _ASN1_YYDEBUG
extern int _asn1_yydebug;
#endif
-/* Token type. */
-#ifndef YYTOKENTYPE
-# define YYTOKENTYPE
- enum yytokentype
+/* Token kinds. */
+#ifndef _ASN1_YYTOKENTYPE
+# define _ASN1_YYTOKENTYPE
+ enum _asn1_yytokentype
{
- ASSIG = 258,
- NUM = 259,
- IDENTIFIER = 260,
- OPTIONAL = 261,
- INTEGER = 262,
- SIZE = 263,
- OCTET = 264,
- STRING = 265,
- SEQUENCE = 266,
- BIT = 267,
- UNIVERSAL = 268,
- PRIVATE = 269,
- APPLICATION = 270,
- DEFAULT = 271,
- CHOICE = 272,
- OF = 273,
- OBJECT = 274,
- STR_IDENTIFIER = 275,
- BOOLEAN = 276,
- ASN1_TRUE = 277,
- ASN1_FALSE = 278,
- TOKEN_NULL = 279,
- ANY = 280,
- DEFINED = 281,
- BY = 282,
- SET = 283,
- EXPLICIT = 284,
- IMPLICIT = 285,
- DEFINITIONS = 286,
- TAGS = 287,
- BEGIN = 288,
- END = 289,
- UTCTime = 290,
- GeneralizedTime = 291,
- GeneralString = 292,
- NumericString = 293,
- IA5String = 294,
- TeletexString = 295,
- PrintableString = 296,
- UniversalString = 297,
- BMPString = 298,
- UTF8String = 299,
- VisibleString = 300,
- FROM = 301,
- IMPORTS = 302,
- ENUMERATED = 303
+ _ASN1_YYEMPTY = -2,
+ _ASN1_YYEOF = 0, /* "end of file" */
+ _ASN1_YYerror = 256, /* error */
+ _ASN1_YYUNDEF = 257, /* "invalid token" */
+ ASSIG = 258, /* "::=" */
+ NUM = 259, /* NUM */
+ IDENTIFIER = 260, /* IDENTIFIER */
+ OPTIONAL = 261, /* OPTIONAL */
+ INTEGER = 262, /* INTEGER */
+ SIZE = 263, /* SIZE */
+ OCTET = 264, /* OCTET */
+ STRING = 265, /* STRING */
+ SEQUENCE = 266, /* SEQUENCE */
+ BIT = 267, /* BIT */
+ UNIVERSAL = 268, /* UNIVERSAL */
+ PRIVATE = 269, /* PRIVATE */
+ APPLICATION = 270, /* APPLICATION */
+ DEFAULT = 271, /* DEFAULT */
+ CHOICE = 272, /* CHOICE */
+ OF = 273, /* OF */
+ OBJECT = 274, /* OBJECT */
+ STR_IDENTIFIER = 275, /* STR_IDENTIFIER */
+ BOOLEAN = 276, /* BOOLEAN */
+ ASN1_TRUE = 277, /* ASN1_TRUE */
+ ASN1_FALSE = 278, /* ASN1_FALSE */
+ TOKEN_NULL = 279, /* TOKEN_NULL */
+ ANY = 280, /* ANY */
+ DEFINED = 281, /* DEFINED */
+ BY = 282, /* BY */
+ SET = 283, /* SET */
+ EXPLICIT = 284, /* EXPLICIT */
+ IMPLICIT = 285, /* IMPLICIT */
+ DEFINITIONS = 286, /* DEFINITIONS */
+ TAGS = 287, /* TAGS */
+ BEGIN = 288, /* BEGIN */
+ END = 289, /* END */
+ UTCTime = 290, /* UTCTime */
+ GeneralizedTime = 291, /* GeneralizedTime */
+ GeneralString = 292, /* GeneralString */
+ NumericString = 293, /* NumericString */
+ IA5String = 294, /* IA5String */
+ TeletexString = 295, /* TeletexString */
+ PrintableString = 296, /* PrintableString */
+ UniversalString = 297, /* UniversalString */
+ BMPString = 298, /* BMPString */
+ UTF8String = 299, /* UTF8String */
+ VisibleString = 300, /* VisibleString */
+ FROM = 301, /* FROM */
+ IMPORTS = 302, /* IMPORTS */
+ ENUMERATED = 303 /* ENUMERATED */
};
+ typedef enum _asn1_yytokentype _asn1_yytoken_kind_t;
#endif
-/* Tokens. */
+/* Token kinds. */
+#define _ASN1_YYEMPTY -2
+#define _ASN1_YYEOF 0
+#define _ASN1_YYerror 256
+#define _ASN1_YYUNDEF 257
#define ASSIG 258
#define NUM 259
#define IDENTIFIER 260
@@ -272,30 +297,150 @@ extern int _asn1_yydebug;
#define ENUMERATED 303
/* Value type. */
-#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
-
-union YYSTYPE
+#if ! defined _ASN1_YYSTYPE && ! defined _ASN1_YYSTYPE_IS_DECLARED
+union _ASN1_YYSTYPE
{
-#line 72 "ASN1.y" /* yacc.c:352 */
+#line 77 "ASN1.y"
unsigned int constant;
char str[ASN1_MAX_NAME_SIZE+1];
asn1_node node;
-#line 286 "ASN1.c" /* yacc.c:352 */
-};
+#line 310 "ASN1.c"
-typedef union YYSTYPE YYSTYPE;
-# define YYSTYPE_IS_TRIVIAL 1
-# define YYSTYPE_IS_DECLARED 1
+};
+typedef union _ASN1_YYSTYPE _ASN1_YYSTYPE;
+# define _ASN1_YYSTYPE_IS_TRIVIAL 1
+# define _ASN1_YYSTYPE_IS_DECLARED 1
#endif
-extern YYSTYPE _asn1_yylval;
+extern _ASN1_YYSTYPE _asn1_yylval;
int _asn1_yyparse (void);
+/* 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_ASSIG = 3, /* "::=" */
+ YYSYMBOL_NUM = 4, /* NUM */
+ YYSYMBOL_IDENTIFIER = 5, /* IDENTIFIER */
+ YYSYMBOL_OPTIONAL = 6, /* OPTIONAL */
+ YYSYMBOL_INTEGER = 7, /* INTEGER */
+ YYSYMBOL_SIZE = 8, /* SIZE */
+ YYSYMBOL_OCTET = 9, /* OCTET */
+ YYSYMBOL_STRING = 10, /* STRING */
+ YYSYMBOL_SEQUENCE = 11, /* SEQUENCE */
+ YYSYMBOL_BIT = 12, /* BIT */
+ YYSYMBOL_UNIVERSAL = 13, /* UNIVERSAL */
+ YYSYMBOL_PRIVATE = 14, /* PRIVATE */
+ YYSYMBOL_APPLICATION = 15, /* APPLICATION */
+ YYSYMBOL_DEFAULT = 16, /* DEFAULT */
+ YYSYMBOL_CHOICE = 17, /* CHOICE */
+ YYSYMBOL_OF = 18, /* OF */
+ YYSYMBOL_OBJECT = 19, /* OBJECT */
+ YYSYMBOL_STR_IDENTIFIER = 20, /* STR_IDENTIFIER */
+ YYSYMBOL_BOOLEAN = 21, /* BOOLEAN */
+ YYSYMBOL_ASN1_TRUE = 22, /* ASN1_TRUE */
+ YYSYMBOL_ASN1_FALSE = 23, /* ASN1_FALSE */
+ YYSYMBOL_TOKEN_NULL = 24, /* TOKEN_NULL */
+ YYSYMBOL_ANY = 25, /* ANY */
+ YYSYMBOL_DEFINED = 26, /* DEFINED */
+ YYSYMBOL_BY = 27, /* BY */
+ YYSYMBOL_SET = 28, /* SET */
+ YYSYMBOL_EXPLICIT = 29, /* EXPLICIT */
+ YYSYMBOL_IMPLICIT = 30, /* IMPLICIT */
+ YYSYMBOL_DEFINITIONS = 31, /* DEFINITIONS */
+ YYSYMBOL_TAGS = 32, /* TAGS */
+ YYSYMBOL_BEGIN = 33, /* BEGIN */
+ YYSYMBOL_END = 34, /* END */
+ YYSYMBOL_UTCTime = 35, /* UTCTime */
+ YYSYMBOL_GeneralizedTime = 36, /* GeneralizedTime */
+ YYSYMBOL_GeneralString = 37, /* GeneralString */
+ YYSYMBOL_NumericString = 38, /* NumericString */
+ YYSYMBOL_IA5String = 39, /* IA5String */
+ YYSYMBOL_TeletexString = 40, /* TeletexString */
+ YYSYMBOL_PrintableString = 41, /* PrintableString */
+ YYSYMBOL_UniversalString = 42, /* UniversalString */
+ YYSYMBOL_BMPString = 43, /* BMPString */
+ YYSYMBOL_UTF8String = 44, /* UTF8String */
+ YYSYMBOL_VisibleString = 45, /* VisibleString */
+ YYSYMBOL_FROM = 46, /* FROM */
+ YYSYMBOL_IMPORTS = 47, /* IMPORTS */
+ YYSYMBOL_ENUMERATED = 48, /* ENUMERATED */
+ YYSYMBOL_49_ = 49, /* '+' */
+ YYSYMBOL_50_ = 50, /* '-' */
+ YYSYMBOL_51_ = 51, /* '(' */
+ YYSYMBOL_52_ = 52, /* ')' */
+ YYSYMBOL_53_ = 53, /* ',' */
+ YYSYMBOL_54_ = 54, /* '[' */
+ YYSYMBOL_55_ = 55, /* ']' */
+ YYSYMBOL_56_ = 56, /* '|' */
+ YYSYMBOL_57_ = 57, /* '{' */
+ YYSYMBOL_58_ = 58, /* '}' */
+ YYSYMBOL_59_ = 59, /* '.' */
+ YYSYMBOL_YYACCEPT = 60, /* $accept */
+ YYSYMBOL_definitions = 61, /* definitions */
+ YYSYMBOL_pos_num = 62, /* pos_num */
+ YYSYMBOL_neg_num = 63, /* neg_num */
+ YYSYMBOL_pos_neg_num = 64, /* pos_neg_num */
+ YYSYMBOL_num_identifier = 65, /* num_identifier */
+ YYSYMBOL_int_identifier = 66, /* int_identifier */
+ YYSYMBOL_pos_neg_identifier = 67, /* pos_neg_identifier */
+ YYSYMBOL_constant = 68, /* constant */
+ YYSYMBOL_constant_list = 69, /* constant_list */
+ YYSYMBOL_obj_constant = 70, /* obj_constant */
+ YYSYMBOL_obj_constant_list = 71, /* obj_constant_list */
+ YYSYMBOL_class = 72, /* class */
+ YYSYMBOL_tag_type = 73, /* tag_type */
+ YYSYMBOL_tag = 74, /* tag */
+ YYSYMBOL_default = 75, /* default */
+ YYSYMBOL_pos_neg_list = 76, /* pos_neg_list */
+ YYSYMBOL_integer_def = 77, /* integer_def */
+ YYSYMBOL_boolean_def = 78, /* boolean_def */
+ YYSYMBOL_Time = 79, /* Time */
+ YYSYMBOL_size_def2 = 80, /* size_def2 */
+ YYSYMBOL_size_def = 81, /* size_def */
+ YYSYMBOL_generalstring_def = 82, /* generalstring_def */
+ YYSYMBOL_numericstring_def = 83, /* numericstring_def */
+ YYSYMBOL_ia5string_def = 84, /* ia5string_def */
+ YYSYMBOL_teletexstring_def = 85, /* teletexstring_def */
+ YYSYMBOL_printablestring_def = 86, /* printablestring_def */
+ YYSYMBOL_universalstring_def = 87, /* universalstring_def */
+ YYSYMBOL_bmpstring_def = 88, /* bmpstring_def */
+ YYSYMBOL_utf8string_def = 89, /* utf8string_def */
+ YYSYMBOL_visiblestring_def = 90, /* visiblestring_def */
+ YYSYMBOL_octet_string_def = 91, /* octet_string_def */
+ YYSYMBOL_bit_element = 92, /* bit_element */
+ YYSYMBOL_bit_element_list = 93, /* bit_element_list */
+ YYSYMBOL_bit_string_def = 94, /* bit_string_def */
+ YYSYMBOL_enumerated_def = 95, /* enumerated_def */
+ YYSYMBOL_object_def = 96, /* object_def */
+ YYSYMBOL_type_assig_right = 97, /* type_assig_right */
+ YYSYMBOL_type_assig_right_tag = 98, /* type_assig_right_tag */
+ YYSYMBOL_type_assig_right_tag_default = 99, /* type_assig_right_tag_default */
+ YYSYMBOL_type_assig = 100, /* type_assig */
+ YYSYMBOL_type_assig_list = 101, /* type_assig_list */
+ YYSYMBOL_sequence_def = 102, /* sequence_def */
+ YYSYMBOL_set_def = 103, /* set_def */
+ YYSYMBOL_choise_def = 104, /* choise_def */
+ YYSYMBOL_any_def = 105, /* any_def */
+ YYSYMBOL_known_string = 106, /* known_string */
+ YYSYMBOL_type_invalid = 107, /* type_invalid */
+ YYSYMBOL_type_def = 108, /* type_def */
+ YYSYMBOL_constant_def = 109, /* constant_def */
+ YYSYMBOL_type_constant = 110, /* type_constant */
+ YYSYMBOL_type_constant_list = 111, /* type_constant_list */
+ YYSYMBOL_definitions_id = 112, /* definitions_id */
+ YYSYMBOL_explicit_implicit = 113 /* explicit_implicit */
+};
+typedef enum yysymbol_kind_t yysymbol_kind_t;
+
@@ -303,28 +448,87 @@ int _asn1_yyparse (void);
# undef short
#endif
-#ifdef YYTYPE_UINT8
-typedef YYTYPE_UINT8 yytype_uint8;
-#else
-typedef unsigned char yytype_uint8;
+/* On compilers that do not define __PTRDIFF_MAX__ etc., make sure
+ <limits.h> and (if available) <stdint.h> are included
+ so that the code can choose integer types of a good width. */
+
+#ifndef __PTRDIFF_MAX__
+# include <limits.h> /* INFRINGES ON USER NAME SPACE */
+# if defined __STDC_VERSION__ && 199901 <= __STDC_VERSION__
+# include <stdint.h> /* INFRINGES ON USER NAME SPACE */
+# define YY_STDINT_H
+# endif
#endif
-#ifdef YYTYPE_INT8
-typedef YYTYPE_INT8 yytype_int8;
+/* 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 YYTYPE_UINT16
-typedef YYTYPE_UINT16 yytype_uint16;
+#ifdef __INT_LEAST16_MAX__
+typedef __INT_LEAST16_TYPE__ yytype_int16;
+#elif defined YY_STDINT_H
+typedef int_least16_t yytype_int16;
#else
-typedef unsigned short yytype_uint16;
+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
+ <https://h20195.www2.hpe.com/V2/getpdf.aspx/4AA4-7673ENW.pdf>. */
+#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
-#ifdef YYTYPE_INT16
-typedef YYTYPE_INT16 yytype_int16;
+#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 short yytype_int16;
+typedef int yytype_uint16;
+#endif
+
+#ifndef YYPTRDIFF_T
+# if defined __PTRDIFF_TYPE__ && defined __PTRDIFF_MAX__
+# define YYPTRDIFF_T __PTRDIFF_TYPE__
+# define YYPTRDIFF_MAXIMUM __PTRDIFF_MAX__
+# elif defined PTRDIFF_MAX
+# ifndef ptrdiff_t
+# include <stddef.h> /* INFRINGES ON USER NAME SPACE */
+# endif
+# define YYPTRDIFF_T ptrdiff_t
+# define YYPTRDIFF_MAXIMUM PTRDIFF_MAX
+# else
+# define YYPTRDIFF_T long
+# define YYPTRDIFF_MAXIMUM LONG_MAX
+# endif
#endif
#ifndef YYSIZE_T
@@ -332,7 +536,7 @@ typedef short yytype_int16;
# define YYSIZE_T __SIZE_TYPE__
# elif defined size_t
# define YYSIZE_T size_t
-# elif ! defined YYSIZE_T
+# elif defined __STDC_VERSION__ && 199901 <= __STDC_VERSION__
# include <stddef.h> /* INFRINGES ON USER NAME SPACE */
# define YYSIZE_T size_t
# else
@@ -340,7 +544,20 @@ typedef short yytype_int16;
# endif
#endif
-#define YYSIZE_MAXIMUM ((YYSIZE_T) -1)
+#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_uint8 yy_state_t;
+
+/* State numbers in computations. */
+typedef int yy_state_fast_t;
#ifndef YY_
# if defined YYENABLE_NLS && YYENABLE_NLS
@@ -354,38 +571,37 @@ typedef short yytype_int16;
# endif
#endif
-#ifndef YY_ATTRIBUTE
-# if (defined __GNUC__ \
- && (2 < __GNUC__ || (__GNUC__ == 2 && 96 <= __GNUC_MINOR__))) \
- || defined __SUNPRO_C && 0x5110 <= __SUNPRO_C
-# define YY_ATTRIBUTE(Spec) __attribute__(Spec)
-# else
-# define YY_ATTRIBUTE(Spec) /* empty */
-# endif
-#endif
#ifndef YY_ATTRIBUTE_PURE
-# define YY_ATTRIBUTE_PURE 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
-# define YY_ATTRIBUTE_UNUSED 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 YYUSE(E) ((void) (E))
+# define YY_USE(E) ((void) (E))
#else
-# define YYUSE(E) /* empty */
+# 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\"")\
+# 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 \
+# define YY_IGNORE_MAYBE_UNINITIALIZED_END \
_Pragma ("GCC diagnostic pop")
#else
# define YY_INITIAL_VALUE(Value) Value
@@ -398,8 +614,22 @@ typedef short yytype_int16;
# 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 || YYERROR_VERBOSE
+#if 1
/* The parser invokes alloca or malloc; define the necessary symbols. */
@@ -464,27 +694,26 @@ void free (void *); /* INFRINGES ON USER NAME SPACE */
# endif
# endif
# endif
-#endif /* ! defined yyoverflow || YYERROR_VERBOSE */
-
+#endif /* 1 */
#if (! defined yyoverflow \
&& (! defined __cplusplus \
- || (defined YYSTYPE_IS_TRIVIAL && YYSTYPE_IS_TRIVIAL)))
+ || (defined _ASN1_YYSTYPE_IS_TRIVIAL && _ASN1_YYSTYPE_IS_TRIVIAL)))
/* A type that is properly aligned for any stack member. */
union yyalloc
{
- yytype_int16 yyss_alloc;
+ 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 (sizeof (union yyalloc) - 1)
+# 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) * (sizeof (yytype_int16) + sizeof (YYSTYPE)) \
+ ((N) * (YYSIZEOF (yy_state_t) + YYSIZEOF (YYSTYPE)) \
+ YYSTACK_GAP_MAXIMUM)
# define YYCOPY_NEEDED 1
@@ -497,11 +726,11 @@ union yyalloc
# define YYSTACK_RELOCATE(Stack_alloc, Stack) \
do \
{ \
- YYSIZE_T yynewbytes; \
+ YYPTRDIFF_T yynewbytes; \
YYCOPY (&yyptr->Stack_alloc, Stack, yysize); \
Stack = &yyptr->Stack_alloc; \
- yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \
- yyptr += yynewbytes / sizeof (*yyptr); \
+ yynewbytes = yystacksize * YYSIZEOF (*Stack) + YYSTACK_GAP_MAXIMUM; \
+ yyptr += yynewbytes / YYSIZEOF (*yyptr); \
} \
while (0)
@@ -513,12 +742,12 @@ union yyalloc
# ifndef YYCOPY
# if defined __GNUC__ && 1 < __GNUC__
# define YYCOPY(Dst, Src, Count) \
- __builtin_memcpy (Dst, Src, (Count) * sizeof (*(Src)))
+ __builtin_memcpy (Dst, Src, YY_CAST (YYSIZE_T, (Count)) * sizeof (*(Src)))
# else
# define YYCOPY(Dst, Src, Count) \
do \
{ \
- YYSIZE_T yyi; \
+ YYPTRDIFF_T yyi; \
for (yyi = 0; yyi < (Count); yyi++) \
(Dst)[yyi] = (Src)[yyi]; \
} \
@@ -530,28 +759,31 @@ union yyalloc
/* YYFINAL -- State number of the termination state. */
#define YYFINAL 5
/* YYLAST -- Last index in YYTABLE. */
-#define YYLAST 223
+#define YYLAST 248
/* YYNTOKENS -- Number of terminals. */
#define YYNTOKENS 60
/* YYNNTS -- Number of nonterminals. */
-#define YYNNTS 52
+#define YYNNTS 54
/* YYNRULES -- Number of rules. */
-#define YYNRULES 128
+#define YYNRULES 137
/* YYNSTATES -- Number of states. */
-#define YYNSTATES 223
+#define YYNSTATES 238
-#define YYUNDEFTOK 2
+/* YYMAXUTOK -- Last valid token kind. */
#define YYMAXUTOK 303
+
/* YYTRANSLATE(TOKEN-NUM) -- Symbol number corresponding to TOKEN-NUM
as returned by yylex, with out-of-bounds checking. */
-#define YYTRANSLATE(YYX) \
- ((unsigned) (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK)
+#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[] =
+static const yytype_int8 yytranslate[] =
{
0, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
@@ -586,62 +818,76 @@ static const yytype_uint8 yytranslate[] =
45, 46, 47, 48
};
-#if YYDEBUG
+#if _ASN1_YYDEBUG
/* YYRLINE[YYN] -- Source line where rule number YYN was defined. */
-static const yytype_uint16 yyrline[] =
+static const yytype_int16 yyrline[] =
{
- 0, 145, 145, 158, 159, 162, 165, 166, 169, 170,
- 173, 174, 175, 178, 179, 182, 184, 189, 190, 194,
- 196, 201, 202, 206, 207, 208, 211, 213, 217, 218,
- 219, 222, 224, 225, 229, 230, 234, 235, 237, 238,
- 245, 248, 249, 252, 254, 260, 261, 264, 265, 269,
- 270, 274, 275, 279, 280, 284, 285, 289, 290, 294,
- 295, 299, 300, 304, 305, 309, 310, 314, 319, 320,
- 324, 325, 326, 331, 337, 340, 342, 345, 346, 347,
- 348, 349, 350, 351, 352, 353, 354, 355, 356, 357,
- 358, 359, 360, 361, 362, 363, 364, 365, 368, 369,
- 374, 375, 378, 381, 384, 385, 389, 391, 393, 398,
- 400, 402, 407, 411, 412, 417, 419, 422, 426, 431,
- 437, 438, 441, 442, 446, 449, 451, 475, 476
+ 0, 151, 151, 164, 165, 168, 171, 172, 175, 176,
+ 179, 180, 181, 184, 185, 188, 190, 195, 196, 200,
+ 202, 207, 208, 212, 213, 214, 217, 219, 223, 224,
+ 225, 228, 230, 231, 235, 236, 240, 241, 243, 244,
+ 248, 251, 252, 255, 257, 263, 264, 267, 268, 272,
+ 273, 277, 278, 282, 283, 287, 288, 292, 293, 297,
+ 298, 302, 303, 307, 308, 312, 313, 317, 322, 323,
+ 327, 328, 330, 335, 341, 344, 346, 349, 350, 351,
+ 352, 353, 354, 355, 356, 357, 358, 359, 360, 361,
+ 362, 363, 364, 365, 366, 367, 368, 369, 372, 373,
+ 378, 379, 382, 385, 388, 389, 393, 395, 397, 402,
+ 404, 406, 411, 415, 416, 421, 422, 423, 424, 425,
+ 426, 427, 428, 431, 438, 441, 445, 450, 456, 457,
+ 458, 461, 462, 473, 476, 478, 502, 503
};
#endif
-#if YYDEBUG || YYERROR_VERBOSE || 1
+/** Accessing symbol of state STATE. */
+#define YY_ACCESSING_SYMBOL(State) YY_CAST (yysymbol_kind_t, yystos[State])
+
+#if 1
+/* 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", "error", "$undefined", "\"::=\"", "NUM", "IDENTIFIER",
- "OPTIONAL", "INTEGER", "SIZE", "OCTET", "STRING", "SEQUENCE", "BIT",
- "UNIVERSAL", "PRIVATE", "APPLICATION", "DEFAULT", "CHOICE", "OF",
- "OBJECT", "STR_IDENTIFIER", "BOOLEAN", "ASN1_TRUE", "ASN1_FALSE",
- "TOKEN_NULL", "ANY", "DEFINED", "BY", "SET", "EXPLICIT", "IMPLICIT",
- "DEFINITIONS", "TAGS", "BEGIN", "END", "UTCTime", "GeneralizedTime",
- "GeneralString", "NumericString", "IA5String", "TeletexString",
- "PrintableString", "UniversalString", "BMPString", "UTF8String",
- "VisibleString", "FROM", "IMPORTS", "ENUMERATED", "'+'", "'-'", "'('",
- "')'", "','", "'['", "']'", "'|'", "'{'", "'}'", "'.'", "$accept",
- "definitions", "pos_num", "neg_num", "pos_neg_num", "num_identifier",
- "int_identifier", "pos_neg_identifier", "constant", "constant_list",
- "obj_constant", "obj_constant_list", "class", "tag_type", "tag",
- "default", "pos_neg_list", "integer_def", "boolean_def", "Time",
- "size_def2", "size_def", "generalstring_def", "numericstring_def",
- "ia5string_def", "teletexstring_def", "printablestring_def",
- "universalstring_def", "bmpstring_def", "utf8string_def",
- "visiblestring_def", "octet_string_def", "bit_element",
+ "\"end of file\"", "error", "\"invalid token\"", "\"::=\"", "NUM",
+ "IDENTIFIER", "OPTIONAL", "INTEGER", "SIZE", "OCTET", "STRING",
+ "SEQUENCE", "BIT", "UNIVERSAL", "PRIVATE", "APPLICATION", "DEFAULT",
+ "CHOICE", "OF", "OBJECT", "STR_IDENTIFIER", "BOOLEAN", "ASN1_TRUE",
+ "ASN1_FALSE", "TOKEN_NULL", "ANY", "DEFINED", "BY", "SET", "EXPLICIT",
+ "IMPLICIT", "DEFINITIONS", "TAGS", "BEGIN", "END", "UTCTime",
+ "GeneralizedTime", "GeneralString", "NumericString", "IA5String",
+ "TeletexString", "PrintableString", "UniversalString", "BMPString",
+ "UTF8String", "VisibleString", "FROM", "IMPORTS", "ENUMERATED", "'+'",
+ "'-'", "'('", "')'", "','", "'['", "']'", "'|'", "'{'", "'}'", "'.'",
+ "$accept", "definitions", "pos_num", "neg_num", "pos_neg_num",
+ "num_identifier", "int_identifier", "pos_neg_identifier", "constant",
+ "constant_list", "obj_constant", "obj_constant_list", "class",
+ "tag_type", "tag", "default", "pos_neg_list", "integer_def",
+ "boolean_def", "Time", "size_def2", "size_def", "generalstring_def",
+ "numericstring_def", "ia5string_def", "teletexstring_def",
+ "printablestring_def", "universalstring_def", "bmpstring_def",
+ "utf8string_def", "visiblestring_def", "octet_string_def", "bit_element",
"bit_element_list", "bit_string_def", "enumerated_def", "object_def",
"type_assig_right", "type_assig_right_tag",
"type_assig_right_tag_default", "type_assig", "type_assig_list",
- "sequence_def", "set_def", "choise_def", "any_def", "type_def",
- "constant_def", "type_constant", "type_constant_list", "definitions_id",
- "explicit_implicit", YY_NULLPTR
+ "sequence_def", "set_def", "choise_def", "any_def", "known_string",
+ "type_invalid", "type_def", "constant_def", "type_constant",
+ "type_constant_list", "definitions_id", "explicit_implicit", YY_NULLPTR
};
+
+static const char *
+yysymbol_name (yysymbol_kind_t yysymbol)
+{
+ return yytname[yysymbol];
+}
#endif
-# ifdef YYPRINT
+#ifdef YYPRINT
/* YYTOKNUM[NUM] -- (External) token number corresponding to the
(internal) symbol number NUM (which must be that of a token). */
-static const yytype_uint16 yytoknum[] =
+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,
@@ -650,45 +896,46 @@ static const yytype_uint16 yytoknum[] =
295, 296, 297, 298, 299, 300, 301, 302, 303, 43,
45, 40, 41, 44, 91, 93, 124, 123, 125, 46
};
-# endif
+#endif
-#define YYPACT_NINF -129
+#define YYPACT_NINF (-140)
-#define yypact_value_is_default(Yystate) \
- (!!((Yystate) == (-129)))
+#define yypact_value_is_default(Yyn) \
+ ((Yyn) == YYPACT_NINF)
-#define YYTABLE_NINF -12
+#define YYTABLE_NINF (-12)
-#define yytable_value_is_error(Yytable_value) \
+#define yytable_value_is_error(Yyn) \
0
/* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing
STATE-NUM. */
static const yytype_int16 yypact[] =
{
- 36, -7, 74, 22, 3, -129, 26, -129, 34, -129,
- -129, -129, 5, -129, -129, 55, 89, -129, -129, 97,
- 57, 101, -129, 122, 141, 132, -129, -129, -129, 32,
- 77, 77, 152, 165, 150, -129, -129, 6, 119, 167,
- 18, 168, 124, 159, -129, -129, 156, 21, -129, -129,
- 6, 6, 6, 6, 6, 6, 6, 6, 6, 126,
- 30, 38, 121, 133, -129, -129, -129, -129, -129, -129,
- -129, -129, -129, -129, -129, -129, -129, -129, -129, -129,
- -129, -129, -129, -129, -129, -129, 128, 58, 183, 136,
- 180, -129, -129, 20, 6, 121, 184, 172, -3, 184,
- -129, 164, 121, 184, 174, -129, -129, -129, -129, -129,
- -129, -129, -129, -129, 188, 139, -129, -129, -129, 191,
- -129, -129, -129, 42, 149, -129, 192, 193, -129, -129,
- -129, 142, 169, 146, 151, 58, -129, 53, -129, -129,
- 77, -129, 71, 121, 188, -129, 83, 195, -129, 90,
- 121, 153, -129, 94, -129, 148, 147, -129, 197, -129,
- 154, 43, 7, -129, -129, 149, -129, -21, -129, 58,
- 155, 20, -129, 24, -129, 184, -129, -129, 114, -129,
- -129, -129, -129, 201, 188, -129, -129, 157, 158, -129,
- 58, -129, 23, -129, 160, 162, -129, -129, -129, 54,
- -129, -129, -129, 163, -129, 47, -129, -129, 169, -129,
- -129, -129, -129, -129, -129, -129, -129, 204, 166, 170,
- -129, -129, -129
+ 41, -27, 32, 17, 0, -140, 90, -140, 19, -140,
+ -140, -140, 3, -140, -140, 24, 126, -140, -140, 98,
+ 80, 105, -140, 141, 30, -140, -140, -140, -140, -140,
+ -140, -140, -140, 131, -140, -140, -140, -140, 84, 67,
+ 148, 155, 170, 107, -140, -140, 6, 91, 184, 18,
+ 185, 139, 177, -140, -140, 172, 36, -140, -140, 6,
+ 6, 6, 6, 6, 6, 6, 6, 6, 142, 25,
+ 145, 128, 149, -140, -140, -140, -140, -140, -140, -140,
+ -140, -140, -140, -140, -140, -140, -140, -140, -140, -140,
+ -140, -140, -140, -140, 144, 64, 199, 174, 152, 196,
+ -140, -140, 26, 6, 128, 200, 189, 43, 200, -140,
+ 179, 128, 200, 190, -140, -140, -140, -140, -140, -140,
+ -140, -140, -140, 204, 156, -140, -140, -140, 206, -140,
+ -140, -140, 92, 173, -140, 208, 209, -140, -140, -140,
+ 157, 211, 188, 164, 166, 64, -140, -11, -140, -140,
+ 67, -140, 27, 128, 204, -140, 78, 213, -140, 97,
+ 128, 168, -140, 101, -140, 165, 162, -140, 218, -140,
+ 167, 10, 5, -140, -140, 173, 169, -140, -7, -140,
+ 64, 171, 26, -140, 37, -140, 200, -140, -140, 104,
+ -140, -140, -140, -140, 221, 204, -140, -140, 175, 176,
+ -140, 64, -140, 7, 197, -140, 178, 180, -140, -140,
+ -140, 94, -140, -140, -140, 181, -140, 23, -140, -140,
+ 219, 188, -140, -140, -140, -140, -140, -140, -140, -140,
+ 225, 186, 220, 187, -140, -140, -140, -140
};
/* YYDEFACT[STATE-NUM] -- Default reduction number in state STATE-NUM.
@@ -696,51 +943,52 @@ static const yytype_int16 yypact[] =
means the default is an error. */
static const yytype_uint8 yydefact[] =
{
- 0, 126, 0, 0, 0, 1, 0, 8, 9, 125,
- 19, 21, 0, 127, 128, 0, 0, 124, 22, 0,
- 0, 0, 20, 0, 0, 0, 120, 121, 122, 0,
- 0, 0, 0, 0, 0, 2, 123, 75, 36, 0,
- 0, 0, 0, 0, 40, 97, 113, 0, 41, 42,
- 47, 49, 51, 53, 55, 57, 59, 61, 63, 0,
- 0, 28, 0, 77, 79, 80, 83, 84, 85, 86,
- 87, 88, 89, 90, 91, 81, 82, 78, 93, 98,
- 116, 92, 96, 94, 95, 115, 0, 0, 0, 0,
- 0, 45, 76, 0, 65, 0, 0, 0, 70, 0,
- 74, 0, 0, 0, 0, 48, 50, 52, 54, 56,
- 58, 60, 62, 64, 0, 0, 23, 24, 25, 0,
- 29, 30, 99, 0, 0, 3, 0, 0, 6, 7,
- 119, 0, 0, 0, 0, 0, 17, 0, 66, 107,
+ 0, 135, 0, 0, 0, 1, 0, 8, 9, 134,
+ 19, 21, 0, 136, 137, 0, 0, 133, 22, 0,
+ 0, 0, 20, 0, 0, 120, 119, 121, 117, 118,
+ 122, 115, 116, 0, 129, 128, 130, 131, 0, 0,
+ 0, 0, 0, 0, 2, 132, 75, 36, 0, 0,
+ 0, 0, 0, 40, 97, 113, 0, 41, 42, 47,
+ 49, 51, 53, 55, 57, 59, 61, 63, 0, 0,
+ 28, 0, 77, 79, 80, 83, 84, 85, 86, 87,
+ 88, 89, 90, 91, 81, 82, 78, 93, 98, 124,
+ 92, 96, 94, 95, 0, 0, 0, 0, 0, 0,
+ 45, 76, 0, 65, 0, 0, 0, 70, 0, 74,
+ 0, 0, 0, 0, 48, 50, 52, 54, 56, 58,
+ 60, 62, 64, 0, 0, 23, 24, 25, 0, 29,
+ 30, 99, 0, 0, 3, 0, 0, 6, 7, 127,
+ 0, 0, 0, 0, 0, 0, 17, 0, 66, 107,
0, 104, 0, 0, 0, 71, 0, 0, 110, 0,
0, 0, 68, 0, 26, 0, 3, 12, 0, 34,
- 0, 0, 0, 4, 5, 0, 9, 0, 46, 0,
- 0, 0, 37, 100, 103, 0, 106, 108, 0, 112,
- 114, 109, 111, 0, 0, 73, 27, 5, 0, 38,
- 0, 118, 0, 43, 0, 0, 15, 18, 102, 0,
- 101, 105, 72, 0, 69, 0, 35, 117, 0, 16,
- 14, 32, 33, 13, 31, 67, 10, 0, 0, 0,
- 11, 39, 44
+ 0, 0, 0, 4, 5, 0, 0, 9, 0, 46,
+ 0, 0, 0, 37, 100, 103, 0, 106, 108, 0,
+ 112, 114, 109, 111, 0, 0, 73, 27, 5, 0,
+ 38, 0, 126, 0, 0, 43, 0, 0, 15, 18,
+ 102, 0, 101, 105, 72, 0, 69, 0, 35, 125,
+ 0, 0, 16, 14, 32, 33, 13, 31, 67, 10,
+ 0, 0, 0, 0, 11, 39, 123, 44
};
/* YYPGOTO[NTERM-NUM]. */
static const yytype_int16 yypgoto[] =
{
- -129, -129, -129, -129, -120, -128, 4, -129, 39, -129,
- -12, -92, -129, -129, -129, -129, -129, -129, -129, -129,
- 130, -34, -129, -129, -129, -129, -129, -129, -129, -129,
- -129, -129, 27, 68, -129, -129, -129, -60, -30, -129,
- 46, 72, -129, -129, -129, -129, -129, -129, 194, -129,
- -129, -129
+ -140, -140, -140, -140, -130, -139, 14, -140, 54, -140,
+ -12, -108, 143, -140, -140, -140, -140, -140, -140, -140,
+ 146, -43, -140, -140, -140, -140, -140, -140, -140, -140,
+ -140, -140, 46, 88, -140, -140, -140, -70, 93, -140,
+ 58, -53, -140, -140, -140, -140, -140, -140, -140, -140,
+ 210, -140, -140, -140
};
/* YYDEFGOTO[NTERM-NUM]. */
-static const yytype_int16 yydefgoto[] =
+static const yytype_uint8 yydefgoto[] =
{
- -1, 2, 128, 129, 130, 10, 160, 214, 136, 137,
- 11, 12, 119, 61, 62, 200, 161, 63, 64, 65,
- 91, 92, 66, 67, 68, 69, 70, 71, 72, 73,
- 74, 75, 152, 153, 76, 77, 78, 79, 80, 174,
- 141, 142, 81, 82, 83, 84, 26, 27, 28, 29,
- 3, 15
+ 0, 2, 137, 138, 139, 10, 170, 227, 146, 147,
+ 11, 12, 128, 70, 71, 212, 171, 72, 73, 74,
+ 100, 101, 75, 76, 77, 78, 79, 80, 81, 82,
+ 83, 84, 162, 163, 85, 86, 87, 88, 89, 185,
+ 151, 152, 90, 91, 92, 93, 33, 34, 35, 36,
+ 37, 38, 3, 15
};
/* YYTABLE[YYPACT[STATE-NUM]] -- What to do in state STATE-NUM. If
@@ -748,89 +996,94 @@ static const yytype_int16 yydefgoto[] =
number is the opposite. If YYTABLE_NINF, syntax error. */
static const yytype_int16 yytable[] =
{
- 18, 85, 122, 159, 167, 89, 97, 7, 8, 7,
- 8, 7, 8, 104, 89, 170, 105, 106, 107, 108,
- 109, 110, 111, 112, 113, 134, 89, 7, 8, 89,
- 198, 193, 162, 24, 115, 139, 95, 25, 194, 102,
- 199, 1, 148, 116, 117, 118, 156, 157, 90, 195,
- 4, 216, 157, 6, 144, 13, 14, 90, 125, 210,
- 138, 9, 125, 17, 145, 191, 35, 120, 121, 90,
- 206, 135, 90, 192, 5, 96, 211, 212, 103, 213,
- 219, 207, 37, 177, 38, 16, 39, 19, 40, 41,
- 182, 126, 158, 20, 42, 189, 43, 217, 44, 190,
- 21, 45, 46, 126, 127, 47, 171, 126, 127, 22,
- 173, 172, 48, 49, 50, 51, 52, 53, 54, 55,
- 56, 57, 58, 24, 175, 59, 37, 25, 38, 176,
- 39, 60, 40, 41, 23, 31, 175, 32, 42, 33,
- 43, 179, 44, 175, 30, 45, 46, 184, 181, 47,
- 18, 34, 185, 7, 8, 86, 48, 49, 50, 51,
- 52, 53, 54, 55, 56, 57, 58, 184, 87, 59,
- 88, 146, 202, 7, 166, 149, 93, 94, 98, 100,
- 18, 99, 101, 114, 123, 124, 131, 132, 89, 140,
- 143, 147, 150, 151, 154, 155, 163, 164, 168, 165,
- 180, 187, 169, 186, 183, 203, -10, 196, 220, 218,
- 197, 204, 178, 188, 209, 215, -11, 205, 221, 208,
- 133, 201, 222, 36
+ 18, 131, 169, 178, 7, 8, 106, 7, 8, 7,
+ 8, 7, 8, 113, 98, 181, 114, 115, 116, 117,
+ 118, 119, 120, 121, 122, 172, 98, 229, 167, 124,
+ 4, 144, 5, 39, 149, 40, 104, 41, 125, 126,
+ 127, 158, 182, 210, 98, 205, 1, 183, 6, 42,
+ 207, 98, 206, 211, 111, 156, 19, 99, 9, 159,
+ 148, 17, 200, 202, 155, 219, 201, 203, 134, 99,
+ 16, 218, 46, 230, 47, 105, 48, 145, 49, 50,
+ 186, 226, 233, 188, 51, 187, 52, 99, 53, 24,
+ 193, 54, 55, 112, 99, 56, 166, 167, 134, 223,
+ 154, 21, 57, 58, 59, 60, 61, 62, 63, 64,
+ 65, 66, 67, 135, 136, 68, 224, 225, 44, 13,
+ 14, 69, 25, 26, 27, 28, 29, 30, 31, 32,
+ 20, 186, 22, 46, 43, 47, 190, 48, 23, 49,
+ 50, 135, 168, 135, 136, 51, 24, 52, 102, 53,
+ 186, 94, 54, 55, 195, 192, 56, 195, 95, 196,
+ 18, 97, 214, 57, 58, 59, 60, 61, 62, 63,
+ 64, 65, 66, 67, 129, 130, 68, 7, 8, 25,
+ 26, 27, 28, 29, 30, 31, 32, 125, 126, 127,
+ 96, 18, 7, 177, 103, 107, 108, 109, 110, 123,
+ 132, 133, 140, 142, 98, 150, 157, 153, 160, 161,
+ 165, 164, 173, 174, 175, 176, 179, 180, 191, 194,
+ 197, -10, 198, 208, 204, 215, 199, 220, 232, 234,
+ 236, 231, 222, 228, -11, 217, 209, 221, 235, 237,
+ 141, 216, 189, 184, 213, 143, 0, 0, 45
};
-static const yytype_uint8 yycheck[] =
+static const yytype_int16 yycheck[] =
{
- 12, 31, 62, 123, 132, 8, 40, 4, 5, 4,
- 5, 4, 5, 47, 8, 135, 50, 51, 52, 53,
- 54, 55, 56, 57, 58, 5, 8, 4, 5, 8,
- 6, 52, 124, 1, 4, 95, 18, 5, 59, 18,
- 16, 5, 102, 13, 14, 15, 4, 5, 51, 169,
- 57, 4, 5, 31, 57, 29, 30, 51, 4, 5,
- 94, 58, 4, 58, 98, 58, 34, 29, 30, 51,
- 190, 51, 51, 165, 0, 57, 22, 23, 57, 199,
- 208, 58, 5, 143, 7, 51, 9, 32, 11, 12,
- 150, 49, 50, 4, 17, 52, 19, 50, 21, 56,
- 3, 24, 25, 49, 50, 28, 53, 49, 50, 52,
- 140, 58, 35, 36, 37, 38, 39, 40, 41, 42,
- 43, 44, 45, 1, 53, 48, 5, 5, 7, 58,
- 9, 54, 11, 12, 33, 3, 53, 5, 17, 7,
- 19, 58, 21, 53, 3, 24, 25, 53, 58, 28,
- 162, 19, 58, 4, 5, 3, 35, 36, 37, 38,
- 39, 40, 41, 42, 43, 44, 45, 53, 3, 48,
- 20, 99, 58, 4, 5, 103, 57, 10, 10, 20,
- 192, 57, 26, 57, 51, 57, 3, 51, 8, 5,
- 18, 27, 18, 5, 55, 4, 4, 4, 52, 57,
- 5, 4, 51, 55, 51, 4, 59, 52, 4, 205,
- 171, 184, 144, 59, 52, 52, 59, 59, 52, 59,
- 90, 175, 52, 29
+ 12, 71, 132, 142, 4, 5, 49, 4, 5, 4,
+ 5, 4, 5, 56, 8, 145, 59, 60, 61, 62,
+ 63, 64, 65, 66, 67, 133, 8, 4, 5, 4,
+ 57, 5, 0, 3, 104, 5, 18, 7, 13, 14,
+ 15, 111, 53, 6, 8, 52, 5, 58, 31, 19,
+ 180, 8, 59, 16, 18, 108, 32, 51, 58, 112,
+ 103, 58, 52, 58, 107, 58, 56, 175, 4, 51,
+ 51, 201, 5, 50, 7, 57, 9, 51, 11, 12,
+ 53, 211, 221, 153, 17, 58, 19, 51, 21, 5,
+ 160, 24, 25, 57, 51, 28, 4, 5, 4, 5,
+ 57, 3, 35, 36, 37, 38, 39, 40, 41, 42,
+ 43, 44, 45, 49, 50, 48, 22, 23, 34, 29,
+ 30, 54, 38, 39, 40, 41, 42, 43, 44, 45,
+ 4, 53, 52, 5, 3, 7, 58, 9, 33, 11,
+ 12, 49, 50, 49, 50, 17, 5, 19, 57, 21,
+ 53, 3, 24, 25, 53, 58, 28, 53, 3, 58,
+ 172, 54, 58, 35, 36, 37, 38, 39, 40, 41,
+ 42, 43, 44, 45, 29, 30, 48, 4, 5, 38,
+ 39, 40, 41, 42, 43, 44, 45, 13, 14, 15,
+ 20, 203, 4, 5, 10, 10, 57, 20, 26, 57,
+ 51, 57, 3, 51, 8, 5, 27, 18, 18, 5,
+ 4, 55, 4, 4, 57, 4, 52, 51, 5, 51,
+ 55, 59, 4, 52, 55, 4, 59, 30, 9, 4,
+ 10, 217, 52, 52, 59, 59, 182, 59, 52, 52,
+ 97, 195, 154, 150, 186, 99, -1, -1, 38
};
/* YYSTOS[STATE-NUM] -- The (internal number of the) accessing
symbol of state STATE-NUM. */
-static const yytype_uint8 yystos[] =
+static const yytype_int8 yystos[] =
{
- 0, 5, 61, 110, 57, 0, 31, 4, 5, 58,
- 65, 70, 71, 29, 30, 111, 51, 58, 70, 32,
- 4, 3, 52, 33, 1, 5, 106, 107, 108, 109,
- 3, 3, 5, 7, 19, 34, 108, 5, 7, 9,
- 11, 12, 17, 19, 21, 24, 25, 28, 35, 36,
- 37, 38, 39, 40, 41, 42, 43, 44, 45, 48,
- 54, 73, 74, 77, 78, 79, 82, 83, 84, 85,
- 86, 87, 88, 89, 90, 91, 94, 95, 96, 97,
- 98, 102, 103, 104, 105, 98, 3, 3, 20, 8,
- 51, 80, 81, 57, 10, 18, 57, 81, 10, 57,
- 20, 26, 18, 57, 81, 81, 81, 81, 81, 81,
- 81, 81, 81, 81, 57, 4, 13, 14, 15, 72,
- 29, 30, 97, 51, 57, 4, 49, 50, 62, 63,
- 64, 3, 51, 80, 5, 51, 68, 69, 81, 97,
+ 0, 5, 61, 112, 57, 0, 31, 4, 5, 58,
+ 65, 70, 71, 29, 30, 113, 51, 58, 70, 32,
+ 4, 3, 52, 33, 5, 38, 39, 40, 41, 42,
+ 43, 44, 45, 106, 107, 108, 109, 110, 111, 3,
+ 5, 7, 19, 3, 34, 110, 5, 7, 9, 11,
+ 12, 17, 19, 21, 24, 25, 28, 35, 36, 37,
+ 38, 39, 40, 41, 42, 43, 44, 45, 48, 54,
+ 73, 74, 77, 78, 79, 82, 83, 84, 85, 86,
+ 87, 88, 89, 90, 91, 94, 95, 96, 97, 98,
+ 102, 103, 104, 105, 3, 3, 20, 54, 8, 51,
+ 80, 81, 57, 10, 18, 57, 81, 10, 57, 20,
+ 26, 18, 57, 81, 81, 81, 81, 81, 81, 81,
+ 81, 81, 81, 57, 4, 13, 14, 15, 72, 29,
+ 30, 97, 51, 57, 4, 49, 50, 62, 63, 64,
+ 3, 72, 51, 80, 5, 51, 68, 69, 81, 97,
5, 100, 101, 18, 57, 81, 101, 27, 97, 101,
18, 5, 92, 93, 55, 4, 4, 5, 50, 64,
- 66, 76, 71, 4, 4, 57, 5, 65, 52, 51,
- 64, 53, 58, 98, 99, 53, 58, 97, 93, 58,
- 5, 58, 97, 51, 53, 58, 55, 4, 59, 52,
- 56, 58, 71, 52, 59, 64, 52, 68, 6, 16,
- 75, 100, 58, 4, 92, 59, 64, 58, 59, 52,
- 5, 22, 23, 64, 67, 52, 4, 50, 66, 65,
- 4, 52, 52
+ 66, 76, 71, 4, 4, 57, 4, 5, 65, 52,
+ 51, 64, 53, 58, 98, 99, 53, 58, 97, 93,
+ 58, 5, 58, 97, 51, 53, 58, 55, 4, 59,
+ 52, 56, 58, 71, 55, 52, 59, 64, 52, 68,
+ 6, 16, 75, 100, 58, 4, 92, 59, 64, 58,
+ 30, 59, 52, 5, 22, 23, 64, 67, 52, 4,
+ 50, 66, 9, 65, 4, 52, 10, 52
};
/* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */
-static const yytype_uint8 yyr1[] =
+static const yytype_int8 yyr1[] =
{
0, 60, 61, 62, 62, 63, 64, 64, 65, 65,
66, 66, 66, 67, 67, 68, 68, 69, 69, 70,
@@ -843,12 +1096,13 @@ static const yytype_uint8 yyr1[] =
97, 97, 97, 97, 97, 97, 97, 97, 97, 97,
97, 97, 97, 97, 97, 97, 97, 97, 98, 98,
99, 99, 99, 100, 101, 101, 102, 102, 102, 103,
- 103, 103, 104, 105, 105, 106, 106, 107, 107, 107,
- 108, 108, 109, 109, 110, 110, 110, 111, 111
+ 103, 103, 104, 105, 105, 106, 106, 106, 106, 106,
+ 106, 106, 106, 107, 108, 109, 109, 109, 110, 110,
+ 110, 111, 111, 112, 112, 112, 113, 113
};
/* YYR2[YYN] -- Number of symbols on the right hand side of rule YYN. */
-static const yytype_uint8 yyr2[] =
+static const yytype_int8 yyr2[] =
{
0, 2, 8, 1, 2, 2, 1, 1, 1, 1,
1, 2, 1, 1, 1, 3, 4, 1, 3, 1,
@@ -861,15 +1115,16 @@ static const yytype_uint8 yyr2[] =
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 2,
1, 2, 2, 2, 1, 3, 4, 3, 4, 4,
- 3, 4, 4, 1, 4, 3, 3, 7, 6, 4,
- 1, 1, 1, 2, 4, 3, 1, 1, 1
+ 3, 4, 4, 1, 4, 1, 1, 1, 1, 1,
+ 1, 1, 1, 9, 3, 7, 6, 4, 1, 1,
+ 1, 1, 2, 4, 3, 1, 1, 1
};
+enum { YYENOMEM = -2 };
+
#define yyerrok (yyerrstatus = 0)
-#define yyclearin (yychar = YYEMPTY)
-#define YYEMPTY (-2)
-#define YYEOF 0
+#define yyclearin (yychar = _ASN1_YYEMPTY)
#define YYACCEPT goto yyacceptlab
#define YYABORT goto yyabortlab
@@ -880,7 +1135,7 @@ static const yytype_uint8 yyr2[] =
#define YYBACKUP(Token, Value) \
do \
- if (yychar == YYEMPTY) \
+ if (yychar == _ASN1_YYEMPTY) \
{ \
yychar = (Token); \
yylval = (Value); \
@@ -895,14 +1150,13 @@ static const yytype_uint8 yyr2[] =
} \
while (0)
-/* Error token number */
-#define YYTERROR 1
-#define YYERRCODE 256
-
+/* Backward compatibility with an undocumented macro.
+ Use _ASN1_YYerror or _ASN1_YYUNDEF. */
+#define YYERRCODE _ASN1_YYUNDEF
/* Enable debugging if requested. */
-#if YYDEBUG
+#if _ASN1_YYDEBUG
# ifndef YYFPRINTF
# include <stdio.h> /* INFRINGES ON USER NAME SPACE */
@@ -916,18 +1170,18 @@ do { \
} while (0)
/* This macro is provided for backward compatibility. */
-#ifndef YY_LOCATION_PRINT
-# define YY_LOCATION_PRINT(File, Loc) ((void) 0)
-#endif
+# ifndef YY_LOCATION_PRINT
+# define YY_LOCATION_PRINT(File, Loc) ((void) 0)
+# endif
-# define YY_SYMBOL_PRINT(Title, Type, Value, Location) \
+# define YY_SYMBOL_PRINT(Title, Kind, Value, Location) \
do { \
if (yydebug) \
{ \
YYFPRINTF (stderr, "%s ", Title); \
yy_symbol_print (stderr, \
- Type, Value); \
+ Kind, Value); \
YYFPRINTF (stderr, "\n"); \
} \
} while (0)
@@ -938,17 +1192,20 @@ do { \
`-----------------------------------*/
static void
-yy_symbol_value_print (FILE *yyo, int yytype, YYSTYPE const * const yyvaluep)
+yy_symbol_value_print (FILE *yyo,
+ yysymbol_kind_t yykind, YYSTYPE const * const yyvaluep)
{
FILE *yyoutput = yyo;
- YYUSE (yyoutput);
+ YY_USE (yyoutput);
if (!yyvaluep)
return;
# ifdef YYPRINT
- if (yytype < YYNTOKENS)
- YYPRINT (yyo, yytoknum[yytype], *yyvaluep);
+ if (yykind < YYNTOKENS)
+ YYPRINT (yyo, yytoknum[yykind], *yyvaluep);
# endif
- YYUSE (yytype);
+ YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
+ YY_USE (yykind);
+ YY_IGNORE_MAYBE_UNINITIALIZED_END
}
@@ -957,12 +1214,13 @@ yy_symbol_value_print (FILE *yyo, int yytype, YYSTYPE const * const yyvaluep)
`---------------------------*/
static void
-yy_symbol_print (FILE *yyo, int yytype, YYSTYPE const * const yyvaluep)
+yy_symbol_print (FILE *yyo,
+ yysymbol_kind_t yykind, YYSTYPE const * const yyvaluep)
{
YYFPRINTF (yyo, "%s %s (",
- yytype < YYNTOKENS ? "token" : "nterm", yytname[yytype]);
+ yykind < YYNTOKENS ? "token" : "nterm", yysymbol_name (yykind));
- yy_symbol_value_print (yyo, yytype, yyvaluep);
+ yy_symbol_value_print (yyo, yykind, yyvaluep);
YYFPRINTF (yyo, ")");
}
@@ -972,7 +1230,7 @@ yy_symbol_print (FILE *yyo, int yytype, YYSTYPE const * const yyvaluep)
`------------------------------------------------------------------*/
static void
-yy_stack_print (yytype_int16 *yybottom, yytype_int16 *yytop)
+yy_stack_print (yy_state_t *yybottom, yy_state_t *yytop)
{
YYFPRINTF (stderr, "Stack now");
for (; yybottom <= yytop; yybottom++)
@@ -995,21 +1253,21 @@ do { \
`------------------------------------------------*/
static void
-yy_reduce_print (yytype_int16 *yyssp, YYSTYPE *yyvsp, int yyrule)
+yy_reduce_print (yy_state_t *yyssp, YYSTYPE *yyvsp,
+ int yyrule)
{
- unsigned long yylno = yyrline[yyrule];
+ int yylno = yyrline[yyrule];
int yynrhs = yyr2[yyrule];
int yyi;
- YYFPRINTF (stderr, "Reducing stack by rule %d (line %lu):\n",
+ 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,
- yystos[yyssp[yyi + 1 - yynrhs]],
- &yyvsp[(yyi + 1) - (yynrhs)]
- );
+ YY_ACCESSING_SYMBOL (+yyssp[yyi + 1 - yynrhs]),
+ &yyvsp[(yyi + 1) - (yynrhs)]);
YYFPRINTF (stderr, "\n");
}
}
@@ -1023,12 +1281,12 @@ do { \
/* Nonzero means print parse trace. It is left uninitialized so that
multiple parsers can coexist. */
int yydebug;
-#else /* !YYDEBUG */
-# define YYDPRINTF(Args)
-# define YY_SYMBOL_PRINT(Title, Type, Value, Location)
+#else /* !_ASN1_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 */
+#endif /* !_ASN1_YYDEBUG */
/* YYINITDEPTH -- initial size of the parser's stacks. */
@@ -1048,28 +1306,76 @@ int yydebug;
#endif
-#if YYERROR_VERBOSE
+/* Context of a parse error. */
+typedef struct
+{
+ yy_state_t *yyssp;
+ yysymbol_kind_t yytoken;
+} yypcontext_t;
+
+/* Put in YYARG at most YYARGN of the expected tokens given the
+ current YYCTX, and return the number of tokens stored in YYARG. If
+ YYARG is null, return the number of expected tokens (guaranteed to
+ be less than YYNTOKENS). Return YYENOMEM on memory exhaustion.
+ Return 0 if there are more than YYARGN expected tokens, yet fill
+ YYARG up to YYARGN. */
+static int
+yypcontext_expected_tokens (const yypcontext_t *yyctx,
+ yysymbol_kind_t yyarg[], int yyargn)
+{
+ /* Actual size of YYARG. */
+ int yycount = 0;
+ int yyn = yypact[+*yyctx->yyssp];
+ if (!yypact_value_is_default (yyn))
+ {
+ /* Start YYX at -YYN if negative to avoid negative indexes in
+ YYCHECK. In other words, skip the first -YYN actions for
+ this state because they are default actions. */
+ int yyxbegin = yyn < 0 ? -yyn : 0;
+ /* Stay within bounds of both yycheck and yytname. */
+ int yychecklim = YYLAST - yyn + 1;
+ int yyxend = yychecklim < YYNTOKENS ? yychecklim : YYNTOKENS;
+ int yyx;
+ for (yyx = yyxbegin; yyx < yyxend; ++yyx)
+ if (yycheck[yyx + yyn] == yyx && yyx != YYSYMBOL_YYerror
+ && !yytable_value_is_error (yytable[yyx + yyn]))
+ {
+ if (!yyarg)
+ ++yycount;
+ else if (yycount == yyargn)
+ return 0;
+ else
+ yyarg[yycount++] = YY_CAST (yysymbol_kind_t, yyx);
+ }
+ }
+ if (yyarg && yycount == 0 && 0 < yyargn)
+ yyarg[0] = YYSYMBOL_YYEMPTY;
+ return yycount;
+}
+
+
-# ifndef yystrlen
-# if defined __GLIBC__ && defined _STRING_H
-# define yystrlen strlen
-# else
+
+#ifndef yystrlen
+# if defined __GLIBC__ && defined _STRING_H
+# define yystrlen(S) (YY_CAST (YYPTRDIFF_T, strlen (S)))
+# else
/* Return the length of YYSTR. */
-static YYSIZE_T
+static YYPTRDIFF_T
yystrlen (const char *yystr)
{
- YYSIZE_T yylen;
+ YYPTRDIFF_T yylen;
for (yylen = 0; yystr[yylen]; yylen++)
continue;
return yylen;
}
-# endif
# endif
+#endif
-# ifndef yystpcpy
-# if defined __GLIBC__ && defined _STRING_H && defined _GNU_SOURCE
-# define yystpcpy stpcpy
-# else
+#ifndef yystpcpy
+# if defined __GLIBC__ && defined _STRING_H && defined _GNU_SOURCE
+# define yystpcpy stpcpy
+# else
/* Copy YYSRC to YYDEST, returning the address of the terminating '\0' in
YYDEST. */
static char *
@@ -1083,10 +1389,10 @@ yystpcpy (char *yydest, const char *yysrc)
return yyd - 1;
}
-# endif
# endif
+#endif
-# ifndef yytnamerr
+#ifndef yytnamerr
/* Copy to YYRES the contents of YYSTR after stripping away unnecessary
quotes and backslashes, so that it's suitable for yyerror. The
heuristic is that double-quoting is unnecessary unless the string
@@ -1094,14 +1400,13 @@ yystpcpy (char *yydest, const char *yysrc)
backslash-backslash). YYSTR is taken from yytname. If YYRES is
null, do not copy; instead, return the length of what the result
would have been. */
-static YYSIZE_T
+static YYPTRDIFF_T
yytnamerr (char *yyres, const char *yystr)
{
if (*yystr == '"')
{
- YYSIZE_T yyn = 0;
+ YYPTRDIFF_T yyn = 0;
char const *yyp = yystr;
-
for (;;)
switch (*++yyp)
{
@@ -1130,36 +1435,20 @@ yytnamerr (char *yyres, const char *yystr)
do_not_strip_quotes: ;
}
- if (! yyres)
+ if (yyres)
+ return yystpcpy (yyres, yystr) - yyres;
+ else
return yystrlen (yystr);
-
- return (YYSIZE_T) (yystpcpy (yyres, yystr) - yyres);
}
-# endif
+#endif
-/* Copy into *YYMSG, which is of size *YYMSG_ALLOC, an error message
- about the unexpected token YYTOKEN for the state stack whose top is
- YYSSP.
- Return 0 if *YYMSG was successfully written. Return 1 if *YYMSG is
- not large enough to hold the message. In that case, also set
- *YYMSG_ALLOC to the required number of bytes. Return 2 if the
- required number of bytes is too large to store. */
static int
-yysyntax_error (YYSIZE_T *yymsg_alloc, char **yymsg,
- yytype_int16 *yyssp, int yytoken)
+yy_syntax_error_arguments (const yypcontext_t *yyctx,
+ yysymbol_kind_t yyarg[], int yyargn)
{
- YYSIZE_T yysize0 = yytnamerr (YY_NULLPTR, yytname[yytoken]);
- YYSIZE_T yysize = yysize0;
- enum { YYERROR_VERBOSE_ARGS_MAXIMUM = 5 };
- /* Internationalized format string. */
- const char *yyformat = YY_NULLPTR;
- /* Arguments of yyformat. */
- char const *yyarg[YYERROR_VERBOSE_ARGS_MAXIMUM];
- /* Number of reported tokens (one for the "unexpected", one per
- "expected"). */
+ /* Actual size of YYARG. */
int yycount = 0;
-
/* There are many possibilities here to consider:
- If this state is a consistent state with a default action, then
the only way this function was invoked is if the default action
@@ -1183,49 +1472,54 @@ yysyntax_error (YYSIZE_T *yymsg_alloc, char **yymsg,
one exception: it will still contain any token that will not be
accepted due to an error action in a later state.
*/
- if (yytoken != YYEMPTY)
+ if (yyctx->yytoken != YYSYMBOL_YYEMPTY)
{
- int yyn = yypact[*yyssp];
- yyarg[yycount++] = yytname[yytoken];
- if (!yypact_value_is_default (yyn))
- {
- /* Start YYX at -YYN if negative to avoid negative indexes in
- YYCHECK. In other words, skip the first -YYN actions for
- this state because they are default actions. */
- int yyxbegin = yyn < 0 ? -yyn : 0;
- /* Stay within bounds of both yycheck and yytname. */
- int yychecklim = YYLAST - yyn + 1;
- int yyxend = yychecklim < YYNTOKENS ? yychecklim : YYNTOKENS;
- int yyx;
-
- for (yyx = yyxbegin; yyx < yyxend; ++yyx)
- if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR
- && !yytable_value_is_error (yytable[yyx + yyn]))
- {
- if (yycount == YYERROR_VERBOSE_ARGS_MAXIMUM)
- {
- yycount = 1;
- yysize = yysize0;
- break;
- }
- yyarg[yycount++] = yytname[yyx];
- {
- YYSIZE_T yysize1 = yysize + yytnamerr (YY_NULLPTR, yytname[yyx]);
- if (yysize <= yysize1 && yysize1 <= YYSTACK_ALLOC_MAXIMUM)
- yysize = yysize1;
- else
- return 2;
- }
- }
- }
+ int yyn;
+ if (yyarg)
+ yyarg[yycount] = yyctx->yytoken;
+ ++yycount;
+ yyn = yypcontext_expected_tokens (yyctx,
+ yyarg ? yyarg + 1 : yyarg, yyargn - 1);
+ if (yyn == YYENOMEM)
+ return YYENOMEM;
+ else
+ yycount += yyn;
}
+ return yycount;
+}
+
+/* Copy into *YYMSG, which is of size *YYMSG_ALLOC, an error message
+ about the unexpected token YYTOKEN for the state stack whose top is
+ YYSSP.
+
+ Return 0 if *YYMSG was successfully written. Return -1 if *YYMSG is
+ not large enough to hold the message. In that case, also set
+ *YYMSG_ALLOC to the required number of bytes. Return YYENOMEM if the
+ required number of bytes is too large to store. */
+static int
+yysyntax_error (YYPTRDIFF_T *yymsg_alloc, char **yymsg,
+ const yypcontext_t *yyctx)
+{
+ enum { YYARGS_MAX = 5 };
+ /* Internationalized format string. */
+ const char *yyformat = YY_NULLPTR;
+ /* Arguments of yyformat: reported tokens (one for the "unexpected",
+ one per "expected"). */
+ yysymbol_kind_t yyarg[YYARGS_MAX];
+ /* Cumulated lengths of YYARG. */
+ YYPTRDIFF_T yysize = 0;
+
+ /* Actual size of YYARG. */
+ int yycount = yy_syntax_error_arguments (yyctx, yyarg, YYARGS_MAX);
+ if (yycount == YYENOMEM)
+ return YYENOMEM;
switch (yycount)
{
-# define YYCASE_(N, S) \
+#define YYCASE_(N, S) \
case N: \
yyformat = S; \
- break
+ break
default: /* Avoid compiler warnings. */
YYCASE_(0, YY_("syntax error"));
YYCASE_(1, YY_("syntax error, unexpected %s"));
@@ -1233,15 +1527,23 @@ yysyntax_error (YYSIZE_T *yymsg_alloc, char **yymsg,
YYCASE_(3, YY_("syntax error, unexpected %s, expecting %s or %s"));
YYCASE_(4, YY_("syntax error, unexpected %s, expecting %s or %s or %s"));
YYCASE_(5, YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s"));
-# undef YYCASE_
+#undef YYCASE_
}
+ /* Compute error message size. Don't count the "%s"s, but reserve
+ room for the terminator. */
+ yysize = yystrlen (yyformat) - 2 * yycount + 1;
{
- YYSIZE_T yysize1 = yysize + yystrlen (yyformat);
- if (yysize <= yysize1 && yysize1 <= YYSTACK_ALLOC_MAXIMUM)
- yysize = yysize1;
- else
- return 2;
+ int yyi;
+ for (yyi = 0; yyi < yycount; ++yyi)
+ {
+ YYPTRDIFF_T yysize1
+ = yysize + yytnamerr (YY_NULLPTR, yytname[yyarg[yyi]]);
+ if (yysize <= yysize1 && yysize1 <= YYSTACK_ALLOC_MAXIMUM)
+ yysize = yysize1;
+ else
+ return YYENOMEM;
+ }
}
if (*yymsg_alloc < yysize)
@@ -1250,7 +1552,7 @@ yysyntax_error (YYSIZE_T *yymsg_alloc, char **yymsg,
if (! (yysize <= *yymsg_alloc
&& *yymsg_alloc <= YYSTACK_ALLOC_MAXIMUM))
*yymsg_alloc = YYSTACK_ALLOC_MAXIMUM;
- return 1;
+ return -1;
}
/* Avoid sprintf, as that infringes on the user's name space.
@@ -1262,40 +1564,39 @@ yysyntax_error (YYSIZE_T *yymsg_alloc, char **yymsg,
while ((*yyp = *yyformat) != '\0')
if (*yyp == '%' && yyformat[1] == 's' && yyi < yycount)
{
- yyp += yytnamerr (yyp, yyarg[yyi++]);
+ yyp += yytnamerr (yyp, yytname[yyarg[yyi++]]);
yyformat += 2;
}
else
{
- yyp++;
- yyformat++;
+ ++yyp;
+ ++yyformat;
}
}
return 0;
}
-#endif /* YYERROR_VERBOSE */
+
/*-----------------------------------------------.
| Release the memory associated to this symbol. |
`-----------------------------------------------*/
static void
-yydestruct (const char *yymsg, int yytype, YYSTYPE *yyvaluep)
+yydestruct (const char *yymsg,
+ yysymbol_kind_t yykind, YYSTYPE *yyvaluep)
{
- YYUSE (yyvaluep);
+ YY_USE (yyvaluep);
if (!yymsg)
yymsg = "Deleting";
- YY_SYMBOL_PRINT (yymsg, yytype, yyvaluep, yylocationp);
+ YY_SYMBOL_PRINT (yymsg, yykind, yyvaluep, yylocationp);
YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
- YYUSE (yytype);
+ YY_USE (yykind);
YY_IGNORE_MAYBE_UNINITIALIZED_END
}
-
-
-/* The lookahead symbol. */
+/* Lookahead token kind. */
int yychar;
/* The semantic value of the lookahead symbol. */
@@ -1304,6 +1605,8 @@ YYSTYPE yylval;
int yynerrs;
+
+
/*----------.
| yyparse. |
`----------*/
@@ -1311,43 +1614,39 @@ int yynerrs;
int
yyparse (void)
{
- int yystate;
+ yy_state_fast_t yystate = 0;
/* Number of tokens to shift before error messages enabled. */
- int yyerrstatus;
-
- /* The stacks and their tools:
- 'yyss': related to states.
- 'yyvs': related to semantic values.
+ int yyerrstatus = 0;
- Refer to the stacks through separate pointers, to allow yyoverflow
+ /* Refer to the stacks through separate pointers, to allow yyoverflow
to reallocate them elsewhere. */
- /* The state stack. */
- yytype_int16 yyssa[YYINITDEPTH];
- yytype_int16 *yyss;
- yytype_int16 *yyssp;
+ /* Their size. */
+ YYPTRDIFF_T yystacksize = YYINITDEPTH;
- /* The semantic value stack. */
- YYSTYPE yyvsa[YYINITDEPTH];
- YYSTYPE *yyvs;
- YYSTYPE *yyvsp;
+ /* The state stack: array, bottom, top. */
+ yy_state_t yyssa[YYINITDEPTH];
+ yy_state_t *yyss = yyssa;
+ yy_state_t *yyssp = yyss;
- YYSIZE_T yystacksize;
+ /* 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 token as an internal (translated) token number. */
- int yytoken = 0;
+ /* Lookahead symbol kind. */
+ yysymbol_kind_t yytoken = YYSYMBOL_YYEMPTY;
/* The variables used to return semantic value and location from the
action routines. */
YYSTYPE yyval;
-#if YYERROR_VERBOSE
/* Buffer for error messages, and its allocated size. */
char yymsgbuf[128];
char *yymsg = yymsgbuf;
- YYSIZE_T yymsg_alloc = sizeof yymsgbuf;
-#endif
+ YYPTRDIFF_T yymsg_alloc = sizeof yymsgbuf;
#define YYPOPSTACK(N) (yyvsp -= (N), yyssp -= (N))
@@ -1355,16 +1654,9 @@ yyparse (void)
Keep to zero when no symbol should be popped. */
int yylen = 0;
- yyssp = yyss = yyssa;
- yyvsp = yyvs = yyvsa;
- yystacksize = YYINITDEPTH;
-
YYDPRINTF ((stderr, "Starting parse\n"));
- yystate = 0;
- yyerrstatus = 0;
- yynerrs = 0;
- yychar = YYEMPTY; /* Cause a token to be read. */
+ yychar = _ASN1_YYEMPTY; /* Cause a token to be read. */
goto yysetstate;
@@ -1378,10 +1670,15 @@ yynewstate:
/*--------------------------------------------------------------------.
-| yynewstate -- set current state (the top of the stack) to yystate. |
+| yysetstate -- set current state (the top of the stack) to yystate. |
`--------------------------------------------------------------------*/
yysetstate:
- *yyssp = (yytype_int16) yystate;
+ 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
@@ -1389,23 +1686,23 @@ yysetstate:
#else
{
/* Get the current used size of the three stacks, in elements. */
- YYSIZE_T yysize = (YYSIZE_T) (yyssp - yyss + 1);
+ 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;
- yytype_int16 *yyss1 = yyss;
/* 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 * sizeof (*yyssp),
- &yyvs1, yysize * sizeof (*yyvsp),
+ &yyss1, yysize * YYSIZEOF (*yyssp),
+ &yyvs1, yysize * YYSIZEOF (*yyvsp),
&yystacksize);
yyss = yyss1;
yyvs = yyvs1;
@@ -1419,14 +1716,15 @@ yysetstate:
yystacksize = YYMAXDEPTH;
{
- yytype_int16 *yyss1 = yyss;
+ yy_state_t *yyss1 = yyss;
union yyalloc *yyptr =
- (union yyalloc *) YYSTACK_ALLOC (YYSTACK_BYTES (yystacksize));
+ 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
+# undef YYSTACK_RELOCATE
if (yyss1 != yyssa)
YYSTACK_FREE (yyss1);
}
@@ -1435,16 +1733,16 @@ yysetstate:
yyssp = yyss + yysize - 1;
yyvsp = yyvs + yysize - 1;
- YYDPRINTF ((stderr, "Stack size increased to %lu\n",
- (unsigned long) yystacksize));
+ 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 */
- YYDPRINTF ((stderr, "Entering state %d\n", yystate));
-
if (yystate == YYFINAL)
YYACCEPT;
@@ -1465,18 +1763,29 @@ yybackup:
/* Not known => get a lookahead token if don't already have one. */
- /* YYCHAR is either YYEMPTY or YYEOF or a valid lookahead symbol. */
- if (yychar == YYEMPTY)
+ /* YYCHAR is either empty, or end-of-input, or a valid lookahead. */
+ if (yychar == _ASN1_YYEMPTY)
{
- YYDPRINTF ((stderr, "Reading a token: "));
+ YYDPRINTF ((stderr, "Reading a token\n"));
yychar = yylex ();
}
- if (yychar <= YYEOF)
+ if (yychar <= _ASN1_YYEOF)
{
- yychar = yytoken = YYEOF;
+ yychar = _ASN1_YYEOF;
+ yytoken = YYSYMBOL_YYEOF;
YYDPRINTF ((stderr, "Now at end of input.\n"));
}
+ else if (yychar == _ASN1_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 = _ASN1_YYUNDEF;
+ yytoken = YYSYMBOL_YYerror;
+ goto yyerrlab1;
+ }
else
{
yytoken = YYTRANSLATE (yychar);
@@ -1504,15 +1813,13 @@ yybackup:
/* Shift the lookahead token. */
YY_SYMBOL_PRINT ("Shifting", yytoken, &yylval, &yylloc);
-
- /* Discard the shifted token. */
- yychar = YYEMPTY;
-
yystate = yyn;
YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
*++yyvsp = yylval;
YY_IGNORE_MAYBE_UNINITIALIZED_END
+ /* Discard the shifted token. */
+ yychar = _ASN1_YYEMPTY;
goto yynewstate;
@@ -1547,9 +1854,9 @@ yyreduce:
YY_REDUCE_PRINT (yyn);
switch (yyn)
{
- case 2:
-#line 148 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_DEFINITIONS|(yyvsp[-5].constant));
+ case 2: /* definitions: definitions_id DEFINITIONS explicit_implicit TAGS "::=" BEGIN type_constant_list END */
+#line 154 "ASN1.y"
+ {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_DEFINITIONS|(yyvsp[-5].constant));
_asn1_set_name((yyval.node),_asn1_get_name((yyvsp[-7].node)));
_asn1_set_name((yyvsp[-7].node),"");
_asn1_set_right((yyvsp[-7].node),(yyvsp[-1].node));
@@ -1557,813 +1864,877 @@ yyreduce:
p_tree=(yyval.node);
}
-#line 1561 "ASN1.c" /* yacc.c:1652 */
+#line 1868 "ASN1.c"
break;
- case 3:
-#line 158 "ASN1.y" /* yacc.c:1652 */
- {snprintf((yyval.str),sizeof((yyval.str)),"%s",(yyvsp[0].str));}
-#line 1567 "ASN1.c" /* yacc.c:1652 */
+ case 3: /* pos_num: NUM */
+#line 164 "ASN1.y"
+ {snprintf((yyval.str),sizeof((yyval.str)),"%s",(yyvsp[0].str));}
+#line 1874 "ASN1.c"
break;
- case 4:
-#line 159 "ASN1.y" /* yacc.c:1652 */
- {snprintf((yyval.str),sizeof((yyval.str)),"%s",(yyvsp[0].str));}
-#line 1573 "ASN1.c" /* yacc.c:1652 */
+ case 4: /* pos_num: '+' NUM */
+#line 165 "ASN1.y"
+ {snprintf((yyval.str),sizeof((yyval.str)),"%s",(yyvsp[0].str));}
+#line 1880 "ASN1.c"
break;
- case 5:
-#line 162 "ASN1.y" /* yacc.c:1652 */
- {SAFE_COPY((yyval.str),sizeof((yyval.str)),"-%s",(yyvsp[0].str));}
-#line 1579 "ASN1.c" /* yacc.c:1652 */
+ case 5: /* neg_num: '-' NUM */
+#line 168 "ASN1.y"
+ {SAFE_COPY((yyval.str),sizeof((yyval.str)),"-%s",(yyvsp[0].str));}
+#line 1886 "ASN1.c"
break;
- case 6:
-#line 165 "ASN1.y" /* yacc.c:1652 */
- {snprintf((yyval.str),sizeof((yyval.str)),"%s",(yyvsp[0].str));}
-#line 1585 "ASN1.c" /* yacc.c:1652 */
+ case 6: /* pos_neg_num: pos_num */
+#line 171 "ASN1.y"
+ {snprintf((yyval.str),sizeof((yyval.str)),"%s",(yyvsp[0].str));}
+#line 1892 "ASN1.c"
break;
- case 7:
-#line 166 "ASN1.y" /* yacc.c:1652 */
- {snprintf((yyval.str),sizeof((yyval.str)),"%s",(yyvsp[0].str));}
-#line 1591 "ASN1.c" /* yacc.c:1652 */
+ case 7: /* pos_neg_num: neg_num */
+#line 172 "ASN1.y"
+ {snprintf((yyval.str),sizeof((yyval.str)),"%s",(yyvsp[0].str));}
+#line 1898 "ASN1.c"
break;
- case 8:
-#line 169 "ASN1.y" /* yacc.c:1652 */
- {snprintf((yyval.str),sizeof((yyval.str)),"%s",(yyvsp[0].str));}
-#line 1597 "ASN1.c" /* yacc.c:1652 */
+ case 8: /* num_identifier: NUM */
+#line 175 "ASN1.y"
+ {snprintf((yyval.str),sizeof((yyval.str)),"%s",(yyvsp[0].str));}
+#line 1904 "ASN1.c"
break;
- case 9:
-#line 170 "ASN1.y" /* yacc.c:1652 */
- {snprintf((yyval.str),sizeof((yyval.str)),"%s",(yyvsp[0].str));}
-#line 1603 "ASN1.c" /* yacc.c:1652 */
+ case 9: /* num_identifier: IDENTIFIER */
+#line 176 "ASN1.y"
+ {snprintf((yyval.str),sizeof((yyval.str)),"%s",(yyvsp[0].str));}
+#line 1910 "ASN1.c"
break;
- case 10:
-#line 173 "ASN1.y" /* yacc.c:1652 */
- {snprintf((yyval.str),sizeof((yyval.str)),"%s",(yyvsp[0].str));}
-#line 1609 "ASN1.c" /* yacc.c:1652 */
+ case 10: /* int_identifier: NUM */
+#line 179 "ASN1.y"
+ {snprintf((yyval.str),sizeof((yyval.str)),"%s",(yyvsp[0].str));}
+#line 1916 "ASN1.c"
break;
- case 11:
-#line 174 "ASN1.y" /* yacc.c:1652 */
- {SAFE_COPY((yyval.str),sizeof((yyval.str)),"-%s",(yyvsp[0].str));}
-#line 1615 "ASN1.c" /* yacc.c:1652 */
+ case 11: /* int_identifier: '-' NUM */
+#line 180 "ASN1.y"
+ {SAFE_COPY((yyval.str),sizeof((yyval.str)),"-%s",(yyvsp[0].str));}
+#line 1922 "ASN1.c"
break;
- case 12:
-#line 175 "ASN1.y" /* yacc.c:1652 */
- {snprintf((yyval.str),sizeof((yyval.str)),"%s",(yyvsp[0].str));}
-#line 1621 "ASN1.c" /* yacc.c:1652 */
+ case 12: /* int_identifier: IDENTIFIER */
+#line 181 "ASN1.y"
+ {snprintf((yyval.str),sizeof((yyval.str)),"%s",(yyvsp[0].str));}
+#line 1928 "ASN1.c"
break;
- case 13:
-#line 178 "ASN1.y" /* yacc.c:1652 */
- {snprintf((yyval.str),sizeof((yyval.str)),"%s",(yyvsp[0].str));}
-#line 1627 "ASN1.c" /* yacc.c:1652 */
+ case 13: /* pos_neg_identifier: pos_neg_num */
+#line 184 "ASN1.y"
+ {snprintf((yyval.str),sizeof((yyval.str)),"%s",(yyvsp[0].str));}
+#line 1934 "ASN1.c"
break;
- case 14:
-#line 179 "ASN1.y" /* yacc.c:1652 */
- {snprintf((yyval.str),sizeof((yyval.str)),"%s",(yyvsp[0].str));}
-#line 1633 "ASN1.c" /* yacc.c:1652 */
+ case 14: /* pos_neg_identifier: IDENTIFIER */
+#line 185 "ASN1.y"
+ {snprintf((yyval.str),sizeof((yyval.str)),"%s",(yyvsp[0].str));}
+#line 1940 "ASN1.c"
break;
- case 15:
-#line 182 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_CONSTANT);
+ case 15: /* constant: '(' pos_neg_num ')' */
+#line 188 "ASN1.y"
+ {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_CONSTANT);
_asn1_set_value((yyval.node),(yyvsp[-1].str),strlen((yyvsp[-1].str))+1);}
-#line 1640 "ASN1.c" /* yacc.c:1652 */
+#line 1947 "ASN1.c"
break;
- case 16:
-#line 184 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_CONSTANT);
+ case 16: /* constant: IDENTIFIER '(' pos_neg_num ')' */
+#line 190 "ASN1.y"
+ {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_CONSTANT);
_asn1_set_name((yyval.node),(yyvsp[-3].str));
_asn1_set_value((yyval.node),(yyvsp[-1].str),strlen((yyvsp[-1].str))+1);}
-#line 1648 "ASN1.c" /* yacc.c:1652 */
+#line 1955 "ASN1.c"
break;
- case 17:
-#line 189 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=(yyvsp[0].node);}
-#line 1654 "ASN1.c" /* yacc.c:1652 */
+ case 17: /* constant_list: constant */
+#line 195 "ASN1.y"
+ {(yyval.node)=(yyvsp[0].node);}
+#line 1961 "ASN1.c"
break;
- case 18:
-#line 190 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=(yyvsp[-2].node);
+ case 18: /* constant_list: constant_list ',' constant */
+#line 196 "ASN1.y"
+ {(yyval.node)=(yyvsp[-2].node);
_asn1_set_right(_asn1_get_last_right((yyvsp[-2].node)),(yyvsp[0].node));}
-#line 1661 "ASN1.c" /* yacc.c:1652 */
+#line 1968 "ASN1.c"
break;
- case 19:
-#line 194 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_CONSTANT);
+ case 19: /* obj_constant: num_identifier */
+#line 200 "ASN1.y"
+ {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_CONSTANT);
_asn1_set_value((yyval.node),(yyvsp[0].str),strlen((yyvsp[0].str))+1);}
-#line 1668 "ASN1.c" /* yacc.c:1652 */
+#line 1975 "ASN1.c"
break;
- case 20:
-#line 196 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_CONSTANT);
+ case 20: /* obj_constant: IDENTIFIER '(' NUM ')' */
+#line 202 "ASN1.y"
+ {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_CONSTANT);
_asn1_set_name((yyval.node),(yyvsp[-3].str));
_asn1_set_value((yyval.node),(yyvsp[-1].str),strlen((yyvsp[-1].str))+1);}
-#line 1676 "ASN1.c" /* yacc.c:1652 */
+#line 1983 "ASN1.c"
break;
- case 21:
-#line 201 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=(yyvsp[0].node);}
-#line 1682 "ASN1.c" /* yacc.c:1652 */
+ case 21: /* obj_constant_list: obj_constant */
+#line 207 "ASN1.y"
+ {(yyval.node)=(yyvsp[0].node);}
+#line 1989 "ASN1.c"
break;
- case 22:
-#line 202 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=(yyvsp[-1].node);
+ case 22: /* obj_constant_list: obj_constant_list obj_constant */
+#line 208 "ASN1.y"
+ {(yyval.node)=(yyvsp[-1].node);
_asn1_set_right(_asn1_get_last_right((yyvsp[-1].node)),(yyvsp[0].node));}
-#line 1689 "ASN1.c" /* yacc.c:1652 */
+#line 1996 "ASN1.c"
break;
- case 23:
-#line 206 "ASN1.y" /* yacc.c:1652 */
- {(yyval.constant)=CONST_UNIVERSAL;}
-#line 1695 "ASN1.c" /* yacc.c:1652 */
+ case 23: /* class: UNIVERSAL */
+#line 212 "ASN1.y"
+ {(yyval.constant)=CONST_UNIVERSAL;}
+#line 2002 "ASN1.c"
break;
- case 24:
-#line 207 "ASN1.y" /* yacc.c:1652 */
- {(yyval.constant)=CONST_PRIVATE;}
-#line 1701 "ASN1.c" /* yacc.c:1652 */
+ case 24: /* class: PRIVATE */
+#line 213 "ASN1.y"
+ {(yyval.constant)=CONST_PRIVATE;}
+#line 2008 "ASN1.c"
break;
- case 25:
-#line 208 "ASN1.y" /* yacc.c:1652 */
- {(yyval.constant)=CONST_APPLICATION;}
-#line 1707 "ASN1.c" /* yacc.c:1652 */
+ case 25: /* class: APPLICATION */
+#line 214 "ASN1.y"
+ {(yyval.constant)=CONST_APPLICATION;}
+#line 2014 "ASN1.c"
break;
- case 26:
-#line 211 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_TAG);
+ case 26: /* tag_type: '[' NUM ']' */
+#line 217 "ASN1.y"
+ {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_TAG);
_asn1_set_value((yyval.node),(yyvsp[-1].str),strlen((yyvsp[-1].str))+1);}
-#line 1714 "ASN1.c" /* yacc.c:1652 */
+#line 2021 "ASN1.c"
break;
- case 27:
-#line 213 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_TAG | (yyvsp[-2].constant));
+ case 27: /* tag_type: '[' class NUM ']' */
+#line 219 "ASN1.y"
+ {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_TAG | (yyvsp[-2].constant));
_asn1_set_value((yyval.node),(yyvsp[-1].str),strlen((yyvsp[-1].str))+1);}
-#line 1721 "ASN1.c" /* yacc.c:1652 */
+#line 2028 "ASN1.c"
break;
- case 28:
-#line 217 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=(yyvsp[0].node);}
-#line 1727 "ASN1.c" /* yacc.c:1652 */
+ case 28: /* tag: tag_type */
+#line 223 "ASN1.y"
+ {(yyval.node)=(yyvsp[0].node);}
+#line 2034 "ASN1.c"
break;
- case 29:
-#line 218 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=_asn1_mod_type((yyvsp[-1].node),CONST_EXPLICIT);}
-#line 1733 "ASN1.c" /* yacc.c:1652 */
+ case 29: /* tag: tag_type EXPLICIT */
+#line 224 "ASN1.y"
+ {(yyval.node)=_asn1_mod_type((yyvsp[-1].node),CONST_EXPLICIT);}
+#line 2040 "ASN1.c"
break;
- case 30:
-#line 219 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=_asn1_mod_type((yyvsp[-1].node),CONST_IMPLICIT);}
-#line 1739 "ASN1.c" /* yacc.c:1652 */
+ case 30: /* tag: tag_type IMPLICIT */
+#line 225 "ASN1.y"
+ {(yyval.node)=_asn1_mod_type((yyvsp[-1].node),CONST_IMPLICIT);}
+#line 2046 "ASN1.c"
break;
- case 31:
-#line 222 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_DEFAULT);
+ case 31: /* default: DEFAULT pos_neg_identifier */
+#line 228 "ASN1.y"
+ {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_DEFAULT);
_asn1_set_value((yyval.node),(yyvsp[0].str),strlen((yyvsp[0].str))+1);}
-#line 1746 "ASN1.c" /* yacc.c:1652 */
+#line 2053 "ASN1.c"
break;
- case 32:
-#line 224 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_DEFAULT|CONST_TRUE);}
-#line 1752 "ASN1.c" /* yacc.c:1652 */
+ case 32: /* default: DEFAULT ASN1_TRUE */
+#line 230 "ASN1.y"
+ {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_DEFAULT|CONST_TRUE);}
+#line 2059 "ASN1.c"
break;
- case 33:
-#line 225 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_DEFAULT|CONST_FALSE);}
-#line 1758 "ASN1.c" /* yacc.c:1652 */
+ case 33: /* default: DEFAULT ASN1_FALSE */
+#line 231 "ASN1.y"
+ {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_DEFAULT|CONST_FALSE);}
+#line 2065 "ASN1.c"
break;
- case 36:
-#line 234 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_INTEGER);}
-#line 1764 "ASN1.c" /* yacc.c:1652 */
+ case 36: /* integer_def: INTEGER */
+#line 240 "ASN1.y"
+ {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_INTEGER);}
+#line 2071 "ASN1.c"
break;
- case 37:
-#line 235 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_INTEGER|CONST_LIST);
+ case 37: /* integer_def: INTEGER '{' constant_list '}' */
+#line 241 "ASN1.y"
+ {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_INTEGER|CONST_LIST);
_asn1_set_down((yyval.node),(yyvsp[-1].node));}
-#line 1771 "ASN1.c" /* yacc.c:1652 */
+#line 2078 "ASN1.c"
break;
- case 38:
-#line 237 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_INTEGER);}
-#line 1777 "ASN1.c" /* yacc.c:1652 */
+ case 38: /* integer_def: integer_def '(' pos_neg_list ')' */
+#line 243 "ASN1.y"
+ {(yyval.node)=(yyvsp[-3].node);}
+#line 2084 "ASN1.c"
break;
- case 39:
-#line 239 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_INTEGER|CONST_MIN_MAX);
- _asn1_set_down((yyval.node),_asn1_add_static_node(&e_list, ASN1_ETYPE_SIZE));
- _asn1_set_value(_asn1_get_down((yyval.node)),(yyvsp[-1].str),strlen((yyvsp[-1].str))+1);
- _asn1_set_name(_asn1_get_down((yyval.node)),(yyvsp[-4].str));}
-#line 1786 "ASN1.c" /* yacc.c:1652 */
+ case 39: /* integer_def: integer_def '(' int_identifier '.' '.' int_identifier ')' */
+#line 245 "ASN1.y"
+ {(yyval.node)=(yyvsp[-6].node);}
+#line 2090 "ASN1.c"
break;
- case 40:
-#line 245 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_BOOLEAN);}
-#line 1792 "ASN1.c" /* yacc.c:1652 */
+ case 40: /* boolean_def: BOOLEAN */
+#line 248 "ASN1.y"
+ {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_BOOLEAN);}
+#line 2096 "ASN1.c"
break;
- case 41:
-#line 248 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_UTC_TIME);}
-#line 1798 "ASN1.c" /* yacc.c:1652 */
+ case 41: /* Time: UTCTime */
+#line 251 "ASN1.y"
+ {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_UTC_TIME);}
+#line 2102 "ASN1.c"
break;
- case 42:
-#line 249 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_GENERALIZED_TIME);}
-#line 1804 "ASN1.c" /* yacc.c:1652 */
+ case 42: /* Time: GeneralizedTime */
+#line 252 "ASN1.y"
+ {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_GENERALIZED_TIME);}
+#line 2108 "ASN1.c"
break;
- case 43:
-#line 252 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_SIZE|CONST_1_PARAM);
+ case 43: /* size_def2: SIZE '(' num_identifier ')' */
+#line 255 "ASN1.y"
+ {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_SIZE|CONST_1_PARAM);
_asn1_set_value((yyval.node),(yyvsp[-1].str),strlen((yyvsp[-1].str))+1);}
-#line 1811 "ASN1.c" /* yacc.c:1652 */
+#line 2115 "ASN1.c"
break;
- case 44:
-#line 255 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_SIZE|CONST_MIN_MAX);
+ case 44: /* size_def2: SIZE '(' num_identifier '.' '.' num_identifier ')' */
+#line 258 "ASN1.y"
+ {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_SIZE|CONST_MIN_MAX);
_asn1_set_value((yyval.node),(yyvsp[-4].str),strlen((yyvsp[-4].str))+1);
_asn1_set_name((yyval.node),(yyvsp[-1].str));}
-#line 1819 "ASN1.c" /* yacc.c:1652 */
+#line 2123 "ASN1.c"
break;
- case 45:
-#line 260 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=(yyvsp[0].node);}
-#line 1825 "ASN1.c" /* yacc.c:1652 */
+ case 45: /* size_def: size_def2 */
+#line 263 "ASN1.y"
+ {(yyval.node)=(yyvsp[0].node);}
+#line 2129 "ASN1.c"
break;
- case 46:
-#line 261 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=(yyvsp[-1].node);}
-#line 1831 "ASN1.c" /* yacc.c:1652 */
+ case 46: /* size_def: '(' size_def2 ')' */
+#line 264 "ASN1.y"
+ {(yyval.node)=(yyvsp[-1].node);}
+#line 2135 "ASN1.c"
break;
- case 47:
-#line 264 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_GENERALSTRING);}
-#line 1837 "ASN1.c" /* yacc.c:1652 */
+ case 47: /* generalstring_def: GeneralString */
+#line 267 "ASN1.y"
+ {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_GENERALSTRING);}
+#line 2141 "ASN1.c"
break;
- case 48:
-#line 265 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_GENERALSTRING|CONST_SIZE);
+ case 48: /* generalstring_def: GeneralString size_def */
+#line 268 "ASN1.y"
+ {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_GENERALSTRING|CONST_SIZE);
_asn1_set_down((yyval.node),(yyvsp[0].node));}
-#line 1844 "ASN1.c" /* yacc.c:1652 */
+#line 2148 "ASN1.c"
break;
- case 49:
-#line 269 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_NUMERIC_STRING|CONST_UNIVERSAL);}
-#line 1850 "ASN1.c" /* yacc.c:1652 */
+ case 49: /* numericstring_def: NumericString */
+#line 272 "ASN1.y"
+ {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_NUMERIC_STRING|CONST_UNIVERSAL);}
+#line 2154 "ASN1.c"
break;
- case 50:
-#line 270 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_NUMERIC_STRING|CONST_SIZE);
+ case 50: /* numericstring_def: NumericString size_def */
+#line 273 "ASN1.y"
+ {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_NUMERIC_STRING|CONST_SIZE);
_asn1_set_down((yyval.node),(yyvsp[0].node));}
-#line 1857 "ASN1.c" /* yacc.c:1652 */
+#line 2161 "ASN1.c"
break;
- case 51:
-#line 274 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_IA5_STRING);}
-#line 1863 "ASN1.c" /* yacc.c:1652 */
+ case 51: /* ia5string_def: IA5String */
+#line 277 "ASN1.y"
+ {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_IA5_STRING);}
+#line 2167 "ASN1.c"
break;
- case 52:
-#line 275 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_IA5_STRING|CONST_SIZE);
+ case 52: /* ia5string_def: IA5String size_def */
+#line 278 "ASN1.y"
+ {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_IA5_STRING|CONST_SIZE);
_asn1_set_down((yyval.node),(yyvsp[0].node));}
-#line 1870 "ASN1.c" /* yacc.c:1652 */
+#line 2174 "ASN1.c"
break;
- case 53:
-#line 279 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_TELETEX_STRING);}
-#line 1876 "ASN1.c" /* yacc.c:1652 */
+ case 53: /* teletexstring_def: TeletexString */
+#line 282 "ASN1.y"
+ {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_TELETEX_STRING);}
+#line 2180 "ASN1.c"
break;
- case 54:
-#line 280 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_TELETEX_STRING|CONST_SIZE);
+ case 54: /* teletexstring_def: TeletexString size_def */
+#line 283 "ASN1.y"
+ {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_TELETEX_STRING|CONST_SIZE);
_asn1_set_down((yyval.node),(yyvsp[0].node));}
-#line 1883 "ASN1.c" /* yacc.c:1652 */
+#line 2187 "ASN1.c"
break;
- case 55:
-#line 284 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_PRINTABLE_STRING);}
-#line 1889 "ASN1.c" /* yacc.c:1652 */
+ case 55: /* printablestring_def: PrintableString */
+#line 287 "ASN1.y"
+ {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_PRINTABLE_STRING);}
+#line 2193 "ASN1.c"
break;
- case 56:
-#line 285 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_PRINTABLE_STRING|CONST_SIZE);
+ case 56: /* printablestring_def: PrintableString size_def */
+#line 288 "ASN1.y"
+ {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_PRINTABLE_STRING|CONST_SIZE);
_asn1_set_down((yyval.node),(yyvsp[0].node));}
-#line 1896 "ASN1.c" /* yacc.c:1652 */
+#line 2200 "ASN1.c"
break;
- case 57:
-#line 289 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_UNIVERSAL_STRING);}
-#line 1902 "ASN1.c" /* yacc.c:1652 */
+ case 57: /* universalstring_def: UniversalString */
+#line 292 "ASN1.y"
+ {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_UNIVERSAL_STRING);}
+#line 2206 "ASN1.c"
break;
- case 58:
-#line 290 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_UNIVERSAL_STRING|CONST_SIZE);
+ case 58: /* universalstring_def: UniversalString size_def */
+#line 293 "ASN1.y"
+ {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_UNIVERSAL_STRING|CONST_SIZE);
_asn1_set_down((yyval.node),(yyvsp[0].node));}
-#line 1909 "ASN1.c" /* yacc.c:1652 */
+#line 2213 "ASN1.c"
break;
- case 59:
-#line 294 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_BMP_STRING);}
-#line 1915 "ASN1.c" /* yacc.c:1652 */
+ case 59: /* bmpstring_def: BMPString */
+#line 297 "ASN1.y"
+ {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_BMP_STRING);}
+#line 2219 "ASN1.c"
break;
- case 60:
-#line 295 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_BMP_STRING|CONST_SIZE);
+ case 60: /* bmpstring_def: BMPString size_def */
+#line 298 "ASN1.y"
+ {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_BMP_STRING|CONST_SIZE);
_asn1_set_down((yyval.node),(yyvsp[0].node));}
-#line 1922 "ASN1.c" /* yacc.c:1652 */
+#line 2226 "ASN1.c"
break;
- case 61:
-#line 299 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_UTF8_STRING);}
-#line 1928 "ASN1.c" /* yacc.c:1652 */
+ case 61: /* utf8string_def: UTF8String */
+#line 302 "ASN1.y"
+ {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_UTF8_STRING);}
+#line 2232 "ASN1.c"
break;
- case 62:
-#line 300 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_UTF8_STRING|CONST_SIZE);
+ case 62: /* utf8string_def: UTF8String size_def */
+#line 303 "ASN1.y"
+ {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_UTF8_STRING|CONST_SIZE);
_asn1_set_down((yyval.node),(yyvsp[0].node));}
-#line 1935 "ASN1.c" /* yacc.c:1652 */
+#line 2239 "ASN1.c"
break;
- case 63:
-#line 304 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_VISIBLE_STRING);}
-#line 1941 "ASN1.c" /* yacc.c:1652 */
+ case 63: /* visiblestring_def: VisibleString */
+#line 307 "ASN1.y"
+ {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_VISIBLE_STRING);}
+#line 2245 "ASN1.c"
break;
- case 64:
-#line 305 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_VISIBLE_STRING|CONST_SIZE);
+ case 64: /* visiblestring_def: VisibleString size_def */
+#line 308 "ASN1.y"
+ {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_VISIBLE_STRING|CONST_SIZE);
_asn1_set_down((yyval.node),(yyvsp[0].node));}
-#line 1948 "ASN1.c" /* yacc.c:1652 */
+#line 2252 "ASN1.c"
break;
- case 65:
-#line 309 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_OCTET_STRING);}
-#line 1954 "ASN1.c" /* yacc.c:1652 */
+ case 65: /* octet_string_def: OCTET STRING */
+#line 312 "ASN1.y"
+ {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_OCTET_STRING);}
+#line 2258 "ASN1.c"
break;
- case 66:
-#line 310 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_OCTET_STRING|CONST_SIZE);
+ case 66: /* octet_string_def: OCTET STRING size_def */
+#line 313 "ASN1.y"
+ {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_OCTET_STRING|CONST_SIZE);
_asn1_set_down((yyval.node),(yyvsp[0].node));}
-#line 1961 "ASN1.c" /* yacc.c:1652 */
+#line 2265 "ASN1.c"
break;
- case 67:
-#line 314 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_CONSTANT);
+ case 67: /* bit_element: IDENTIFIER '(' NUM ')' */
+#line 317 "ASN1.y"
+ {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_CONSTANT);
_asn1_set_name((yyval.node),(yyvsp[-3].str));
_asn1_set_value((yyval.node),(yyvsp[-1].str),strlen((yyvsp[-1].str))+1);}
-#line 1969 "ASN1.c" /* yacc.c:1652 */
+#line 2273 "ASN1.c"
break;
- case 68:
-#line 319 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=(yyvsp[0].node);}
-#line 1975 "ASN1.c" /* yacc.c:1652 */
+ case 68: /* bit_element_list: bit_element */
+#line 322 "ASN1.y"
+ {(yyval.node)=(yyvsp[0].node);}
+#line 2279 "ASN1.c"
break;
- case 69:
-#line 320 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=(yyvsp[-2].node);
+ case 69: /* bit_element_list: bit_element_list ',' bit_element */
+#line 323 "ASN1.y"
+ {(yyval.node)=(yyvsp[-2].node);
_asn1_set_right(_asn1_get_last_right((yyvsp[-2].node)),(yyvsp[0].node));}
-#line 1982 "ASN1.c" /* yacc.c:1652 */
+#line 2286 "ASN1.c"
break;
- case 70:
-#line 324 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_BIT_STRING);}
-#line 1988 "ASN1.c" /* yacc.c:1652 */
+ case 70: /* bit_string_def: BIT STRING */
+#line 327 "ASN1.y"
+ {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_BIT_STRING);}
+#line 2292 "ASN1.c"
break;
- case 71:
-#line 325 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_BIT_STRING|CONST_SIZE);}
-#line 1994 "ASN1.c" /* yacc.c:1652 */
+ case 71: /* bit_string_def: BIT STRING size_def */
+#line 328 "ASN1.y"
+ {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_BIT_STRING|CONST_SIZE);
+ _asn1_set_down((yyval.node),(yyvsp[0].node));}
+#line 2299 "ASN1.c"
break;
- case 72:
-#line 327 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_BIT_STRING|CONST_LIST);
+ case 72: /* bit_string_def: BIT STRING '{' bit_element_list '}' */
+#line 331 "ASN1.y"
+ {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_BIT_STRING|CONST_LIST);
_asn1_set_down((yyval.node),(yyvsp[-1].node));}
-#line 2001 "ASN1.c" /* yacc.c:1652 */
+#line 2306 "ASN1.c"
break;
- case 73:
-#line 332 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_ENUMERATED|CONST_LIST);
+ case 73: /* enumerated_def: ENUMERATED '{' bit_element_list '}' */
+#line 336 "ASN1.y"
+ {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_ENUMERATED|CONST_LIST);
_asn1_set_down((yyval.node),(yyvsp[-1].node));}
-#line 2008 "ASN1.c" /* yacc.c:1652 */
+#line 2313 "ASN1.c"
break;
- case 74:
-#line 337 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_OBJECT_ID);}
-#line 2014 "ASN1.c" /* yacc.c:1652 */
+ case 74: /* object_def: OBJECT STR_IDENTIFIER */
+#line 341 "ASN1.y"
+ {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_OBJECT_ID);}
+#line 2319 "ASN1.c"
break;
- case 75:
-#line 340 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_IDENTIFIER);
+ case 75: /* type_assig_right: IDENTIFIER */
+#line 344 "ASN1.y"
+ {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_IDENTIFIER);
_asn1_set_value((yyval.node),(yyvsp[0].str),strlen((yyvsp[0].str))+1);}
-#line 2021 "ASN1.c" /* yacc.c:1652 */
+#line 2326 "ASN1.c"
break;
- case 76:
-#line 342 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_IDENTIFIER|CONST_SIZE);
+ case 76: /* type_assig_right: IDENTIFIER size_def */
+#line 346 "ASN1.y"
+ {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_IDENTIFIER|CONST_SIZE);
_asn1_set_value((yyval.node),(yyvsp[-1].str),strlen((yyvsp[-1].str))+1);
_asn1_set_down((yyval.node),(yyvsp[0].node));}
-#line 2029 "ASN1.c" /* yacc.c:1652 */
+#line 2334 "ASN1.c"
break;
- case 77:
-#line 345 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=(yyvsp[0].node);}
-#line 2035 "ASN1.c" /* yacc.c:1652 */
+ case 77: /* type_assig_right: integer_def */
+#line 349 "ASN1.y"
+ {(yyval.node)=(yyvsp[0].node);}
+#line 2340 "ASN1.c"
break;
- case 78:
-#line 346 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=(yyvsp[0].node);}
-#line 2041 "ASN1.c" /* yacc.c:1652 */
+ case 78: /* type_assig_right: enumerated_def */
+#line 350 "ASN1.y"
+ {(yyval.node)=(yyvsp[0].node);}
+#line 2346 "ASN1.c"
break;
- case 79:
-#line 347 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=(yyvsp[0].node);}
-#line 2047 "ASN1.c" /* yacc.c:1652 */
+ case 79: /* type_assig_right: boolean_def */
+#line 351 "ASN1.y"
+ {(yyval.node)=(yyvsp[0].node);}
+#line 2352 "ASN1.c"
break;
- case 81:
-#line 349 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=(yyvsp[0].node);}
-#line 2053 "ASN1.c" /* yacc.c:1652 */
+ case 81: /* type_assig_right: octet_string_def */
+#line 353 "ASN1.y"
+ {(yyval.node)=(yyvsp[0].node);}
+#line 2358 "ASN1.c"
break;
- case 82:
-#line 350 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=(yyvsp[0].node);}
-#line 2059 "ASN1.c" /* yacc.c:1652 */
+ case 82: /* type_assig_right: bit_string_def */
+#line 354 "ASN1.y"
+ {(yyval.node)=(yyvsp[0].node);}
+#line 2364 "ASN1.c"
break;
- case 83:
-#line 351 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=(yyvsp[0].node);}
-#line 2065 "ASN1.c" /* yacc.c:1652 */
+ case 83: /* type_assig_right: generalstring_def */
+#line 355 "ASN1.y"
+ {(yyval.node)=(yyvsp[0].node);}
+#line 2370 "ASN1.c"
break;
- case 84:
-#line 352 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=(yyvsp[0].node);}
-#line 2071 "ASN1.c" /* yacc.c:1652 */
+ case 84: /* type_assig_right: numericstring_def */
+#line 356 "ASN1.y"
+ {(yyval.node)=(yyvsp[0].node);}
+#line 2376 "ASN1.c"
break;
- case 85:
-#line 353 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=(yyvsp[0].node);}
-#line 2077 "ASN1.c" /* yacc.c:1652 */
+ case 85: /* type_assig_right: ia5string_def */
+#line 357 "ASN1.y"
+ {(yyval.node)=(yyvsp[0].node);}
+#line 2382 "ASN1.c"
break;
- case 86:
-#line 354 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=(yyvsp[0].node);}
-#line 2083 "ASN1.c" /* yacc.c:1652 */
+ case 86: /* type_assig_right: teletexstring_def */
+#line 358 "ASN1.y"
+ {(yyval.node)=(yyvsp[0].node);}
+#line 2388 "ASN1.c"
break;
- case 87:
-#line 355 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=(yyvsp[0].node);}
-#line 2089 "ASN1.c" /* yacc.c:1652 */
+ case 87: /* type_assig_right: printablestring_def */
+#line 359 "ASN1.y"
+ {(yyval.node)=(yyvsp[0].node);}
+#line 2394 "ASN1.c"
break;
- case 88:
-#line 356 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=(yyvsp[0].node);}
-#line 2095 "ASN1.c" /* yacc.c:1652 */
+ case 88: /* type_assig_right: universalstring_def */
+#line 360 "ASN1.y"
+ {(yyval.node)=(yyvsp[0].node);}
+#line 2400 "ASN1.c"
break;
- case 89:
-#line 357 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=(yyvsp[0].node);}
-#line 2101 "ASN1.c" /* yacc.c:1652 */
+ case 89: /* type_assig_right: bmpstring_def */
+#line 361 "ASN1.y"
+ {(yyval.node)=(yyvsp[0].node);}
+#line 2406 "ASN1.c"
break;
- case 90:
-#line 358 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=(yyvsp[0].node);}
-#line 2107 "ASN1.c" /* yacc.c:1652 */
+ case 90: /* type_assig_right: utf8string_def */
+#line 362 "ASN1.y"
+ {(yyval.node)=(yyvsp[0].node);}
+#line 2412 "ASN1.c"
break;
- case 91:
-#line 359 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=(yyvsp[0].node);}
-#line 2113 "ASN1.c" /* yacc.c:1652 */
+ case 91: /* type_assig_right: visiblestring_def */
+#line 363 "ASN1.y"
+ {(yyval.node)=(yyvsp[0].node);}
+#line 2418 "ASN1.c"
break;
- case 92:
-#line 360 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=(yyvsp[0].node);}
-#line 2119 "ASN1.c" /* yacc.c:1652 */
+ case 92: /* type_assig_right: sequence_def */
+#line 364 "ASN1.y"
+ {(yyval.node)=(yyvsp[0].node);}
+#line 2424 "ASN1.c"
break;
- case 93:
-#line 361 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=(yyvsp[0].node);}
-#line 2125 "ASN1.c" /* yacc.c:1652 */
+ case 93: /* type_assig_right: object_def */
+#line 365 "ASN1.y"
+ {(yyval.node)=(yyvsp[0].node);}
+#line 2430 "ASN1.c"
break;
- case 94:
-#line 362 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=(yyvsp[0].node);}
-#line 2131 "ASN1.c" /* yacc.c:1652 */
+ case 94: /* type_assig_right: choise_def */
+#line 366 "ASN1.y"
+ {(yyval.node)=(yyvsp[0].node);}
+#line 2436 "ASN1.c"
break;
- case 95:
-#line 363 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=(yyvsp[0].node);}
-#line 2137 "ASN1.c" /* yacc.c:1652 */
+ case 95: /* type_assig_right: any_def */
+#line 367 "ASN1.y"
+ {(yyval.node)=(yyvsp[0].node);}
+#line 2442 "ASN1.c"
break;
- case 96:
-#line 364 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=(yyvsp[0].node);}
-#line 2143 "ASN1.c" /* yacc.c:1652 */
+ case 96: /* type_assig_right: set_def */
+#line 368 "ASN1.y"
+ {(yyval.node)=(yyvsp[0].node);}
+#line 2448 "ASN1.c"
break;
- case 97:
-#line 365 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_NULL);}
-#line 2149 "ASN1.c" /* yacc.c:1652 */
+ case 97: /* type_assig_right: TOKEN_NULL */
+#line 369 "ASN1.y"
+ {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_NULL);}
+#line 2454 "ASN1.c"
break;
- case 98:
-#line 368 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=(yyvsp[0].node);}
-#line 2155 "ASN1.c" /* yacc.c:1652 */
+ case 98: /* type_assig_right_tag: type_assig_right */
+#line 372 "ASN1.y"
+ {(yyval.node)=(yyvsp[0].node);}
+#line 2460 "ASN1.c"
break;
- case 99:
-#line 369 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=_asn1_mod_type((yyvsp[0].node),CONST_TAG);
+ case 99: /* type_assig_right_tag: tag type_assig_right */
+#line 373 "ASN1.y"
+ {(yyval.node)=_asn1_mod_type((yyvsp[0].node),CONST_TAG);
_asn1_set_right((yyvsp[-1].node),_asn1_get_down((yyval.node)));
_asn1_set_down((yyval.node),(yyvsp[-1].node));}
-#line 2163 "ASN1.c" /* yacc.c:1652 */
+#line 2468 "ASN1.c"
break;
- case 100:
-#line 374 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=(yyvsp[0].node);}
-#line 2169 "ASN1.c" /* yacc.c:1652 */
+ case 100: /* type_assig_right_tag_default: type_assig_right_tag */
+#line 378 "ASN1.y"
+ {(yyval.node)=(yyvsp[0].node);}
+#line 2474 "ASN1.c"
break;
- case 101:
-#line 375 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=_asn1_mod_type((yyvsp[-1].node),CONST_DEFAULT);
+ case 101: /* type_assig_right_tag_default: type_assig_right_tag default */
+#line 379 "ASN1.y"
+ {(yyval.node)=_asn1_mod_type((yyvsp[-1].node),CONST_DEFAULT);
_asn1_set_right((yyvsp[0].node),_asn1_get_down((yyval.node)));
_asn1_set_down((yyval.node),(yyvsp[0].node));}
-#line 2177 "ASN1.c" /* yacc.c:1652 */
+#line 2482 "ASN1.c"
break;
- case 102:
-#line 378 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=_asn1_mod_type((yyvsp[-1].node),CONST_OPTION);}
-#line 2183 "ASN1.c" /* yacc.c:1652 */
+ case 102: /* type_assig_right_tag_default: type_assig_right_tag OPTIONAL */
+#line 382 "ASN1.y"
+ {(yyval.node)=_asn1_mod_type((yyvsp[-1].node),CONST_OPTION);}
+#line 2488 "ASN1.c"
break;
- case 103:
-#line 381 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=_asn1_set_name((yyvsp[0].node),(yyvsp[-1].str));}
-#line 2189 "ASN1.c" /* yacc.c:1652 */
+ case 103: /* type_assig: IDENTIFIER type_assig_right_tag_default */
+#line 385 "ASN1.y"
+ {(yyval.node)=_asn1_set_name((yyvsp[0].node),(yyvsp[-1].str));}
+#line 2494 "ASN1.c"
break;
- case 104:
-#line 384 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=(yyvsp[0].node);}
-#line 2195 "ASN1.c" /* yacc.c:1652 */
+ case 104: /* type_assig_list: type_assig */
+#line 388 "ASN1.y"
+ {(yyval.node)=(yyvsp[0].node);}
+#line 2500 "ASN1.c"
break;
- case 105:
-#line 385 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=(yyvsp[-2].node);
+ case 105: /* type_assig_list: type_assig_list ',' type_assig */
+#line 389 "ASN1.y"
+ {(yyval.node)=(yyvsp[-2].node);
_asn1_set_right(_asn1_get_last_right((yyvsp[-2].node)),(yyvsp[0].node));}
-#line 2202 "ASN1.c" /* yacc.c:1652 */
+#line 2507 "ASN1.c"
break;
- case 106:
-#line 389 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_SEQUENCE);
+ case 106: /* sequence_def: SEQUENCE '{' type_assig_list '}' */
+#line 393 "ASN1.y"
+ {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_SEQUENCE);
_asn1_set_down((yyval.node),(yyvsp[-1].node));}
-#line 2209 "ASN1.c" /* yacc.c:1652 */
+#line 2514 "ASN1.c"
break;
- case 107:
-#line 391 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_SEQUENCE_OF);
+ case 107: /* sequence_def: SEQUENCE OF type_assig_right */
+#line 395 "ASN1.y"
+ {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_SEQUENCE_OF);
_asn1_set_down((yyval.node),(yyvsp[0].node));}
-#line 2216 "ASN1.c" /* yacc.c:1652 */
+#line 2521 "ASN1.c"
break;
- case 108:
-#line 393 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_SEQUENCE_OF|CONST_SIZE);
+ case 108: /* sequence_def: SEQUENCE size_def OF type_assig_right */
+#line 397 "ASN1.y"
+ {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_SEQUENCE_OF|CONST_SIZE);
_asn1_set_right((yyvsp[-2].node),(yyvsp[0].node));
_asn1_set_down((yyval.node),(yyvsp[-2].node));}
-#line 2224 "ASN1.c" /* yacc.c:1652 */
+#line 2529 "ASN1.c"
break;
- case 109:
-#line 398 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_SET);
+ case 109: /* set_def: SET '{' type_assig_list '}' */
+#line 402 "ASN1.y"
+ {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_SET);
_asn1_set_down((yyval.node),(yyvsp[-1].node));}
-#line 2231 "ASN1.c" /* yacc.c:1652 */
+#line 2536 "ASN1.c"
break;
- case 110:
-#line 400 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_SET_OF);
+ case 110: /* set_def: SET OF type_assig_right */
+#line 404 "ASN1.y"
+ {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_SET_OF);
_asn1_set_down((yyval.node),(yyvsp[0].node));}
-#line 2238 "ASN1.c" /* yacc.c:1652 */
+#line 2543 "ASN1.c"
break;
- case 111:
-#line 402 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_SET_OF|CONST_SIZE);
+ case 111: /* set_def: SET size_def OF type_assig_right */
+#line 406 "ASN1.y"
+ {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_SET_OF|CONST_SIZE);
_asn1_set_right((yyvsp[-2].node),(yyvsp[0].node));
_asn1_set_down((yyval.node),(yyvsp[-2].node));}
-#line 2246 "ASN1.c" /* yacc.c:1652 */
+#line 2551 "ASN1.c"
break;
- case 112:
-#line 407 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_CHOICE);
+ case 112: /* choise_def: CHOICE '{' type_assig_list '}' */
+#line 411 "ASN1.y"
+ {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_CHOICE);
_asn1_set_down((yyval.node),(yyvsp[-1].node));}
-#line 2253 "ASN1.c" /* yacc.c:1652 */
+#line 2558 "ASN1.c"
break;
- case 113:
-#line 411 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_ANY);}
-#line 2259 "ASN1.c" /* yacc.c:1652 */
+ case 113: /* any_def: ANY */
+#line 415 "ASN1.y"
+ {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_ANY);}
+#line 2564 "ASN1.c"
break;
- case 114:
-#line 412 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_ANY|CONST_DEFINED_BY);
+ case 114: /* any_def: ANY DEFINED BY IDENTIFIER */
+#line 416 "ASN1.y"
+ {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_ANY|CONST_DEFINED_BY);
_asn1_set_down((yyval.node),_asn1_add_static_node(&e_list, ASN1_ETYPE_CONSTANT));
_asn1_set_name(_asn1_get_down((yyval.node)),(yyvsp[0].str));}
-#line 2267 "ASN1.c" /* yacc.c:1652 */
+#line 2572 "ASN1.c"
+ break;
+
+ case 115: /* known_string: UTF8String */
+#line 421 "ASN1.y"
+ { SAFE_COPY((yyval.str),sizeof((yyval.str)),"%s",last_token); }
+#line 2578 "ASN1.c"
+ break;
+
+ case 116: /* known_string: VisibleString */
+#line 422 "ASN1.y"
+ { SAFE_COPY((yyval.str),sizeof((yyval.str)),"%s",last_token); }
+#line 2584 "ASN1.c"
+ break;
+
+ case 117: /* known_string: PrintableString */
+#line 423 "ASN1.y"
+ { SAFE_COPY((yyval.str),sizeof((yyval.str)),"%s",last_token); }
+#line 2590 "ASN1.c"
break;
- case 115:
-#line 417 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=_asn1_set_name((yyvsp[0].node),(yyvsp[-2].str));}
-#line 2273 "ASN1.c" /* yacc.c:1652 */
+ case 118: /* known_string: UniversalString */
+#line 424 "ASN1.y"
+ { SAFE_COPY((yyval.str),sizeof((yyval.str)),"%s",last_token); }
+#line 2596 "ASN1.c"
break;
- case 116:
-#line 419 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=_asn1_set_name((yyvsp[0].node), last_error_token);}
-#line 2279 "ASN1.c" /* yacc.c:1652 */
+ case 119: /* known_string: IA5String */
+#line 425 "ASN1.y"
+ { SAFE_COPY((yyval.str),sizeof((yyval.str)),"%s",last_token); }
+#line 2602 "ASN1.c"
break;
- case 117:
-#line 423 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_OBJECT_ID|CONST_ASSIGN);
+ case 120: /* known_string: NumericString */
+#line 426 "ASN1.y"
+ { SAFE_COPY((yyval.str),sizeof((yyval.str)),"%s",last_token); }
+#line 2608 "ASN1.c"
+ break;
+
+ case 121: /* known_string: TeletexString */
+#line 427 "ASN1.y"
+ { SAFE_COPY((yyval.str),sizeof((yyval.str)),"%s",last_token); }
+#line 2614 "ASN1.c"
+ break;
+
+ case 122: /* known_string: BMPString */
+#line 428 "ASN1.y"
+ { SAFE_COPY((yyval.str),sizeof((yyval.str)),"%s",last_token); }
+#line 2620 "ASN1.c"
+ break;
+
+ case 123: /* type_invalid: known_string "::=" '[' class NUM ']' IMPLICIT OCTET STRING */
+#line 431 "ASN1.y"
+ {
+#ifndef FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION
+ fprintf(stderr, "%s:%u: Warning: %s is a built-in ASN.1 type.\n", file_name, line_number, (yyvsp[-8].str));
+#endif
+}
+#line 2630 "ASN1.c"
+ break;
+
+ case 124: /* type_def: IDENTIFIER "::=" type_assig_right_tag */
+#line 438 "ASN1.y"
+ { (yyval.node)=_asn1_set_name((yyvsp[0].node),(yyvsp[-2].str));}
+#line 2636 "ASN1.c"
+ break;
+
+ case 125: /* constant_def: IDENTIFIER OBJECT STR_IDENTIFIER "::=" '{' obj_constant_list '}' */
+#line 442 "ASN1.y"
+ {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_OBJECT_ID|CONST_ASSIGN);
_asn1_set_name((yyval.node),(yyvsp[-6].str));
_asn1_set_down((yyval.node),(yyvsp[-1].node));}
-#line 2287 "ASN1.c" /* yacc.c:1652 */
+#line 2644 "ASN1.c"
break;
- case 118:
-#line 427 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_OBJECT_ID|CONST_ASSIGN|CONST_1_PARAM);
+ case 126: /* constant_def: IDENTIFIER IDENTIFIER "::=" '{' obj_constant_list '}' */
+#line 446 "ASN1.y"
+ {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_OBJECT_ID|CONST_ASSIGN|CONST_1_PARAM);
_asn1_set_name((yyval.node),(yyvsp[-5].str));
_asn1_set_value((yyval.node),(yyvsp[-4].str),strlen((yyvsp[-4].str))+1);
_asn1_set_down((yyval.node),(yyvsp[-1].node));}
-#line 2296 "ASN1.c" /* yacc.c:1652 */
+#line 2653 "ASN1.c"
break;
- case 119:
-#line 432 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_INTEGER|CONST_ASSIGN);
+ case 127: /* constant_def: IDENTIFIER INTEGER "::=" pos_neg_num */
+#line 451 "ASN1.y"
+ {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_INTEGER|CONST_ASSIGN);
_asn1_set_name((yyval.node),(yyvsp[-3].str));
_asn1_set_value((yyval.node),(yyvsp[0].str),strlen((yyvsp[0].str))+1);}
-#line 2304 "ASN1.c" /* yacc.c:1652 */
+#line 2661 "ASN1.c"
break;
- case 120:
-#line 437 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=(yyvsp[0].node);}
-#line 2310 "ASN1.c" /* yacc.c:1652 */
+ case 128: /* type_constant: type_def */
+#line 456 "ASN1.y"
+ {(yyval.node)=(yyvsp[0].node);}
+#line 2667 "ASN1.c"
break;
- case 121:
-#line 438 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=(yyvsp[0].node);}
-#line 2316 "ASN1.c" /* yacc.c:1652 */
+ case 129: /* type_constant: type_invalid */
+#line 457 "ASN1.y"
+ {(yyval.node)=NULL;}
+#line 2673 "ASN1.c"
break;
- case 122:
-#line 441 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=(yyvsp[0].node);}
-#line 2322 "ASN1.c" /* yacc.c:1652 */
+ case 130: /* type_constant: constant_def */
+#line 458 "ASN1.y"
+ {(yyval.node)=(yyvsp[0].node);}
+#line 2679 "ASN1.c"
break;
- case 123:
-#line 442 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=(yyvsp[-1].node);
- _asn1_set_right(_asn1_get_last_right((yyvsp[-1].node)),(yyvsp[0].node));}
-#line 2329 "ASN1.c" /* yacc.c:1652 */
+ case 131: /* type_constant_list: type_constant */
+#line 461 "ASN1.y"
+ {(yyval.node)=(yyvsp[0].node);}
+#line 2685 "ASN1.c"
break;
- case 124:
-#line 446 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_OBJECT_ID);
+ case 132: /* type_constant_list: type_constant_list type_constant */
+#line 462 "ASN1.y"
+ {if (!(yyvsp[-1].node))
+ {
+ (yyval.node) = (yyvsp[0].node);
+ }
+ else
+ {
+ (yyval.node)=(yyvsp[-1].node);
+ if ((yyvsp[0].node)) _asn1_set_right(_asn1_get_last_right((yyvsp[-1].node)),(yyvsp[0].node));
+ }}
+#line 2699 "ASN1.c"
+ break;
+
+ case 133: /* definitions_id: IDENTIFIER '{' obj_constant_list '}' */
+#line 473 "ASN1.y"
+ {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_OBJECT_ID);
_asn1_set_down((yyval.node),(yyvsp[-1].node));
_asn1_set_name((yyval.node),(yyvsp[-3].str));}
-#line 2337 "ASN1.c" /* yacc.c:1652 */
+#line 2707 "ASN1.c"
break;
- case 125:
-#line 449 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_OBJECT_ID);
+ case 134: /* definitions_id: IDENTIFIER '{' '}' */
+#line 476 "ASN1.y"
+ {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_OBJECT_ID);
_asn1_set_name((yyval.node),(yyvsp[-2].str));}
-#line 2344 "ASN1.c" /* yacc.c:1652 */
+#line 2714 "ASN1.c"
break;
- case 126:
-#line 451 "ASN1.y" /* yacc.c:1652 */
- {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_OBJECT_ID);
+ case 135: /* definitions_id: IDENTIFIER */
+#line 478 "ASN1.y"
+ {(yyval.node)=_asn1_add_static_node(&e_list, ASN1_ETYPE_OBJECT_ID);
_asn1_set_name((yyval.node),(yyvsp[0].str));}
-#line 2351 "ASN1.c" /* yacc.c:1652 */
+#line 2721 "ASN1.c"
break;
- case 127:
-#line 475 "ASN1.y" /* yacc.c:1652 */
- {(yyval.constant)=CONST_EXPLICIT;}
-#line 2357 "ASN1.c" /* yacc.c:1652 */
+ case 136: /* explicit_implicit: EXPLICIT */
+#line 502 "ASN1.y"
+ {(yyval.constant)=CONST_EXPLICIT;}
+#line 2727 "ASN1.c"
break;
- case 128:
-#line 476 "ASN1.y" /* yacc.c:1652 */
- {(yyval.constant)=CONST_IMPLICIT;}
-#line 2363 "ASN1.c" /* yacc.c:1652 */
+ case 137: /* explicit_implicit: IMPLICIT */
+#line 503 "ASN1.y"
+ {(yyval.constant)=CONST_IMPLICIT;}
+#line 2733 "ASN1.c"
break;
-#line 2367 "ASN1.c" /* yacc.c:1652 */
+#line 2737 "ASN1.c"
+
default: break;
}
/* User semantic actions sometimes alter yychar, and that requires
@@ -2377,11 +2748,10 @@ yyreduce:
case of YYERROR or YYBACKUP, subsequent parser actions might lead
to an incorrect destructor call or verbose syntax error message
before the lookahead is translated. */
- YY_SYMBOL_PRINT ("-> $$ =", yyr1[yyn], &yyval, &yyloc);
+ YY_SYMBOL_PRINT ("-> $$ =", YY_CAST (yysymbol_kind_t, yyr1[yyn]), &yyval, &yyloc);
YYPOPSTACK (yylen);
yylen = 0;
- YY_STACK_PRINT (yyss, yyssp);
*++yyvsp = yyval;
@@ -2405,66 +2775,60 @@ yyreduce:
yyerrlab:
/* Make sure we have latest lookahead translation. See comments at
user semantic actions for why this is necessary. */
- yytoken = yychar == YYEMPTY ? YYEMPTY : YYTRANSLATE (yychar);
-
+ yytoken = yychar == _ASN1_YYEMPTY ? YYSYMBOL_YYEMPTY : YYTRANSLATE (yychar);
/* If not already recovering from an error, report this error. */
if (!yyerrstatus)
{
++yynerrs;
-#if ! YYERROR_VERBOSE
- yyerror (YY_("syntax error"));
-#else
-# define YYSYNTAX_ERROR yysyntax_error (&yymsg_alloc, &yymsg, \
- yyssp, yytoken)
{
+ yypcontext_t yyctx
+ = {yyssp, yytoken};
char const *yymsgp = YY_("syntax error");
int yysyntax_error_status;
- yysyntax_error_status = YYSYNTAX_ERROR;
+ yysyntax_error_status = yysyntax_error (&yymsg_alloc, &yymsg, &yyctx);
if (yysyntax_error_status == 0)
yymsgp = yymsg;
- else if (yysyntax_error_status == 1)
+ else if (yysyntax_error_status == -1)
{
if (yymsg != yymsgbuf)
YYSTACK_FREE (yymsg);
- yymsg = (char *) YYSTACK_ALLOC (yymsg_alloc);
- if (!yymsg)
+ yymsg = YY_CAST (char *,
+ YYSTACK_ALLOC (YY_CAST (YYSIZE_T, yymsg_alloc)));
+ if (yymsg)
{
- yymsg = yymsgbuf;
- yymsg_alloc = sizeof yymsgbuf;
- yysyntax_error_status = 2;
+ yysyntax_error_status
+ = yysyntax_error (&yymsg_alloc, &yymsg, &yyctx);
+ yymsgp = yymsg;
}
else
{
- yysyntax_error_status = YYSYNTAX_ERROR;
- yymsgp = yymsg;
+ yymsg = yymsgbuf;
+ yymsg_alloc = sizeof yymsgbuf;
+ yysyntax_error_status = YYENOMEM;
}
}
yyerror (yymsgp);
- if (yysyntax_error_status == 2)
+ if (yysyntax_error_status == YYENOMEM)
goto yyexhaustedlab;
}
-# undef YYSYNTAX_ERROR
-#endif
}
-
-
if (yyerrstatus == 3)
{
/* If just tried and failed to reuse lookahead token after an
error, discard it. */
- if (yychar <= YYEOF)
+ if (yychar <= _ASN1_YYEOF)
{
/* Return failure if at end of input. */
- if (yychar == YYEOF)
+ if (yychar == _ASN1_YYEOF)
YYABORT;
}
else
{
yydestruct ("Error: discarding",
yytoken, &yylval);
- yychar = YYEMPTY;
+ yychar = _ASN1_YYEMPTY;
}
}
@@ -2497,13 +2861,14 @@ yyerrorlab:
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 += YYTERROR;
- if (0 <= yyn && yyn <= YYLAST && yycheck[yyn] == YYTERROR)
+ yyn += YYSYMBOL_YYerror;
+ if (0 <= yyn && yyn <= YYLAST && yycheck[yyn] == YYSYMBOL_YYerror)
{
yyn = yytable[yyn];
if (0 < yyn)
@@ -2517,7 +2882,7 @@ yyerrlab1:
yydestruct ("Error: popping",
- yystos[yystate], yyvsp);
+ YY_ACCESSING_SYMBOL (yystate), yyvsp);
YYPOPSTACK (1);
yystate = *yyssp;
YY_STACK_PRINT (yyss, yyssp);
@@ -2529,7 +2894,7 @@ yyerrlab1:
/* Shift the error token. */
- YY_SYMBOL_PRINT ("Shifting", yystos[yyn], yyvsp, yylsp);
+ YY_SYMBOL_PRINT ("Shifting", YY_ACCESSING_SYMBOL (yyn), yyvsp, yylsp);
yystate = yyn;
goto yynewstate;
@@ -2551,22 +2916,22 @@ yyabortlab:
goto yyreturn;
-#if !defined yyoverflow || YYERROR_VERBOSE
+#if 1
/*-------------------------------------------------.
| yyexhaustedlab -- memory exhaustion comes here. |
`-------------------------------------------------*/
yyexhaustedlab:
yyerror (YY_("memory exhausted"));
yyresult = 2;
- /* Fall through. */
+ goto yyreturn;
#endif
-/*-----------------------------------------------------.
-| yyreturn -- parsing is finished, return the result. |
-`-----------------------------------------------------*/
+/*-------------------------------------------------------.
+| yyreturn -- parsing is finished, clean up and return. |
+`-------------------------------------------------------*/
yyreturn:
- if (yychar != YYEMPTY)
+ if (yychar != _ASN1_YYEMPTY)
{
/* Make sure we have latest lookahead translation. See comments at
user semantic actions for why this is necessary. */
@@ -2581,20 +2946,19 @@ yyreturn:
while (yyssp != yyss)
{
yydestruct ("Cleanup: popping",
- yystos[*yyssp], yyvsp);
+ YY_ACCESSING_SYMBOL (+*yyssp), yyvsp);
YYPOPSTACK (1);
}
#ifndef yyoverflow
if (yyss != yyssa)
YYSTACK_FREE (yyss);
#endif
-#if YYERROR_VERBOSE
if (yymsg != yymsgbuf)
YYSTACK_FREE (yymsg);
-#endif
return yyresult;
}
-#line 480 "ASN1.y" /* yacc.c:1918 */
+
+#line 507 "ASN1.y"
@@ -2627,7 +2991,7 @@ static const int key_word_token[] = {
/* Token identifier or ASCII code or 0(zero: End Of File) */
/*************************************************************/
static int
-_asn1_yylex ()
+_asn1_yylex (void)
{
int c, counter = 0, k, lastc;
char string[ASN1_MAX_NAME_SIZE + 1]; /* will contain the next token */
@@ -2683,7 +3047,7 @@ _asn1_yylex ()
}
}
}
- string[counter++] = c;
+ string[counter++] = (char) c;
/* Till the end of the token */
while (!
((c = fgetc (file_asn1)) == EOF || c == ' ' || c == '\t'
@@ -2695,7 +3059,7 @@ _asn1_yylex ()
result_parse = ASN1_NAME_TOO_LONG;
return 0;
}
- string[counter++] = c;
+ string[counter++] = (char) c;
}
ungetc (c, file_asn1);
string[counter] = 0;
@@ -2703,7 +3067,7 @@ _asn1_yylex ()
/* Is STRING a number? */
for (k = 0; k < counter; k++)
- if (!isdigit ((int)string[k]))
+ if (!c_isdigit ((int)string[k]))
break;
if (k >= counter)
{
@@ -2781,20 +3145,18 @@ _asn1_create_errorDescription (int error, char *error_desc)
* opening @file, %ASN1_SYNTAX_ERROR if the syntax is not
* correct, %ASN1_IDENTIFIER_NOT_FOUND if in the file there is an
* identifier that is not defined, %ASN1_NAME_TOO_LONG if in the
- * file there is an identifier whith more than %ASN1_MAX_NAME_SIZE
+ * file there is an identifier with more than %ASN1_MAX_NAME_SIZE
* characters.
**/
int
asn1_parser2tree (const char *file, asn1_node * definitions,
char *error_desc)
{
-
- p_tree = NULL;
-
if (*definitions != NULL)
- return ASN1_ELEMENT_NOT_EMPTY;
-
- *definitions = NULL;
+ {
+ result_parse = ASN1_ELEMENT_NOT_EMPTY;
+ goto error;
+ }
file_name = file;
@@ -2804,54 +3166,48 @@ asn1_parser2tree (const char *file, asn1_node * definitions,
if (file_asn1 == NULL)
{
result_parse = ASN1_FILE_NOT_FOUND;
+ goto error;
}
- else
- {
- result_parse = ASN1_SUCCESS;
-
- line_number = 1;
- yyparse ();
-
- fclose (file_asn1);
-
- if (result_parse == ASN1_SUCCESS)
- { /* syntax OK */
- /* set IMPLICIT or EXPLICIT property */
- _asn1_set_default_tag (p_tree);
- /* set CONST_SET and CONST_NOT_USED */
- _asn1_type_set_config (p_tree);
- /* check the identifier definitions */
- result_parse = _asn1_check_identifier (p_tree);
- if (result_parse == ASN1_SUCCESS)
- { /* all identifier defined */
- /* Delete the list and keep the ASN1 structure */
- _asn1_delete_list (e_list);
- e_list = NULL;
- /* Convert into DER coding the value assign to INTEGER constants */
- _asn1_change_integer_value (p_tree);
- /* Expand the IDs of OBJECT IDENTIFIER constants */
- result_parse = _asn1_expand_object_id (e_list, p_tree);
- if (result_parse != ASN1_SUCCESS)
- goto error;
-
- *definitions = p_tree;
- }
- else /* some identifiers not defined */
- {
- /* Delete the list and the ASN1 structure */
- _asn1_delete_list_and_nodes (e_list);
- e_list = NULL;
- }
- }
- else /* syntax error */
- {
- /* Delete the list and the ASN1 structure */
- _asn1_delete_list_and_nodes (e_list);
- e_list = NULL;
- }
- }
- error:
+ result_parse = ASN1_SUCCESS;
+
+ line_number = 1;
+ yyparse ();
+
+ fclose (file_asn1);
+
+ if (result_parse != ASN1_SUCCESS)
+ goto error;
+
+ /* set IMPLICIT or EXPLICIT property */
+ _asn1_set_default_tag (p_tree);
+ /* set CONST_SET and CONST_NOT_USED */
+ _asn1_type_set_config (p_tree);
+ /* check the identifier definitions */
+ result_parse = _asn1_check_identifier (p_tree);
+ if (result_parse != ASN1_SUCCESS)
+ goto error;
+
+ /* Convert into DER coding the value assign to INTEGER constants */
+ _asn1_change_integer_value (p_tree);
+ /* Expand the IDs of OBJECT IDENTIFIER constants */
+ result_parse = _asn1_expand_object_id (&e_list, p_tree);
+ if (result_parse != ASN1_SUCCESS)
+ goto error;
+
+ /* success */
+ *definitions = p_tree;
+ _asn1_delete_list (e_list);
+ e_list = NULL;
+ p_tree = NULL;
+ *error_desc = 0;
+ return result_parse;
+
+error:
+ _asn1_delete_list_and_nodes (e_list);
+ e_list = NULL;
+ p_tree = NULL;
+
_asn1_create_errorDescription (result_parse, error_desc);
return result_parse;
@@ -2879,7 +3235,7 @@ asn1_parser2tree (const char *file, asn1_node * definitions,
* while opening @inputFileName, %ASN1_SYNTAX_ERROR if the syntax is
* not correct, %ASN1_IDENTIFIER_NOT_FOUND if in the file there is
* an identifier that is not defined, %ASN1_NAME_TOO_LONG if in the
- * file there is an identifier whith more than %ASN1_MAX_NAME_SIZE
+ * file there is an identifier with more than %ASN1_MAX_NAME_SIZE
* characters.
**/
int
@@ -2898,102 +3254,99 @@ asn1_parser2array (const char *inputFileName, const char *outputFileName,
file_asn1 = fopen (inputFileName, "r");
if (file_asn1 == NULL)
- result_parse = ASN1_FILE_NOT_FOUND;
- else
{
- result_parse = ASN1_SUCCESS;
-
- line_number = 1;
- yyparse ();
-
- fclose (file_asn1);
-
- if (result_parse == ASN1_SUCCESS)
- { /* syntax OK */
- /* set IMPLICIT or EXPLICIT property */
- _asn1_set_default_tag (p_tree);
- /* set CONST_SET and CONST_NOT_USED */
- _asn1_type_set_config (p_tree);
- /* check the identifier definitions */
- result_parse = _asn1_check_identifier (p_tree);
-
- if (result_parse == ASN1_SUCCESS)
- { /* all identifier defined */
+ result_parse = ASN1_FILE_NOT_FOUND;
+ goto error2;
+ }
- /* searching the last '/' and '.' in inputFileName */
- char_p = inputFileName;
- slash_p = inputFileName;
- while ((char_p = strchr (char_p, '/')))
- {
- char_p++;
- slash_p = char_p;
- }
+ result_parse = ASN1_SUCCESS;
+
+ line_number = 1;
+ yyparse ();
+
+ fclose (file_asn1);
+ if (result_parse != ASN1_SUCCESS)
+ goto error1;
+
+ /* set IMPLICIT or EXPLICIT property */
+ _asn1_set_default_tag (p_tree);
+ /* set CONST_SET and CONST_NOT_USED */
+ _asn1_type_set_config (p_tree);
+ /* check the identifier definitions */
+ result_parse = _asn1_check_identifier (p_tree);
+ if (result_parse != ASN1_SUCCESS)
+ goto error2;
+
+ /* all identifier defined */
+ /* searching the last '/' and '.' in inputFileName */
+ char_p = inputFileName;
+ slash_p = inputFileName;
+ while ((char_p = strchr (char_p, '/')))
+ {
+ char_p++;
+ slash_p = char_p;
+ }
- char_p = slash_p;
- dot_p = inputFileName + strlen (inputFileName);
+ char_p = slash_p;
+ dot_p = inputFileName + strlen (inputFileName);
- while ((char_p = strchr (char_p, '.')))
- {
- dot_p = char_p;
- char_p++;
- }
+ while ((char_p = strchr (char_p, '.')))
+ {
+ dot_p = char_p;
+ char_p++;
+ }
- if (outputFileName == NULL)
- {
- /* file_out_name = inputFileName + _asn1_tab.c */
- file_out_name = malloc (dot_p - inputFileName + 1 +
- sizeof ("_asn1_tab.c")-1);
- memcpy (file_out_name, inputFileName,
- dot_p - inputFileName);
- file_out_name[dot_p - inputFileName] = 0;
- strcat (file_out_name, "_asn1_tab.c");
- }
- else
- {
- /* file_out_name = inputFileName */
- file_out_name =
- (char *) malloc (strlen (outputFileName) + 1);
- strcpy (file_out_name, outputFileName);
- }
+ if (outputFileName == NULL)
+ {
+ /* file_out_name = inputFileName + _asn1_tab.c */
+ file_out_name = malloc (dot_p - inputFileName + 1 +
+ sizeof ("_asn1_tab.c")-1);
+ memcpy (file_out_name, inputFileName,
+ dot_p - inputFileName);
+ file_out_name[dot_p - inputFileName] = 0;
+ strcat (file_out_name, "_asn1_tab.c");
+ }
+ else
+ {
+ /* file_out_name = inputFileName */
+ file_out_name = strdup(outputFileName);
+ }
- if (vectorName == NULL)
- {
- unsigned len, i;
- /* vector_name = file name + _asn1_tab */
- vector_name = malloc (dot_p - slash_p + 1 +
- sizeof("_asn1_tab") - 1);
- memcpy (vector_name, slash_p, dot_p - slash_p);
- vector_name[dot_p - slash_p] = 0;
- strcat (vector_name, "_asn1_tab");
-
- len = strlen(vector_name);
- for (i=0;i<len;i++)
- {
- if (vector_name[i] == '-')
- vector_name[i] = '_';
- }
- }
- else
- {
- /* vector_name = vectorName */
- vector_name = (char *) malloc (strlen (vectorName) + 1);
- strcpy (vector_name, vectorName);
- }
+ if (vectorName == NULL)
+ {
+ unsigned len, i;
+ /* vector_name = file name + _asn1_tab */
+ vector_name = malloc (dot_p - slash_p + 1 +
+ sizeof("_asn1_tab") - 1);
+ memcpy (vector_name, slash_p, dot_p - slash_p);
+ vector_name[dot_p - slash_p] = 0;
+ strcat (vector_name, "_asn1_tab");
+
+ len = strlen(vector_name);
+ for (i=0;i<len;i++)
+ {
+ if (vector_name[i] == '-')
+ vector_name[i] = '_';
+ }
+ }
+ else
+ {
+ /* vector_name = vectorName */
+ vector_name = strdup(vectorName);
+ }
- /* Save structure in a file */
- _asn1_create_static_structure (p_tree,
- file_out_name, vector_name);
+ /* Save structure in a file */
+ _asn1_create_static_structure (p_tree,
+ file_out_name, vector_name);
- free (file_out_name);
- free (vector_name);
- } /* result == OK */
- } /* result == OK */
+ free (file_out_name);
+ free (vector_name);
- /* Delete the list and the ASN1 structure */
- _asn1_delete_list_and_nodes (e_list);
- e_list = NULL;
- } /* inputFile exist */
+ error1:
+ _asn1_delete_list_and_nodes (e_list);
+ e_list = NULL;
+ error2:
_asn1_create_errorDescription (result_parse, error_desc);
return result_parse;
@@ -3011,22 +3364,6 @@ static void
_asn1_yyerror (const char *s)
{
/* Sends the error description to the std_out */
-
- if (strcmp (last_token, "VisibleString") == 0 ||
- strcmp (last_token, "PrintableString") == 0 ||
- strcmp (last_token, "UniversalString") == 0 ||
- strcmp (last_token, "IA5String") == 0 ||
- strcmp (last_token, "UTF8String") == 0 ||
- strcmp (last_token, "NumericString") == 0 ||
- strcmp (last_token, "TeletexString") == 0 ||
- strcmp (last_token, "BMPString") == 0)
- {
- snprintf (last_error_token, sizeof(last_error_token),
- "%s", last_token);
- fprintf(stderr, "%s:%u: Warning: %s is a built-in ASN.1 type.\n",
- file_name, line_number, last_token);
- return;
- }
last_error_token[0] = 0;
if (result_parse != ASN1_NAME_TOO_LONG)