blob: 4e13293a46a4028b7c391f8408a59d6c1b515f67 [file] [log] [blame]
Lev Walkinc6cac8e2016-03-14 02:57:07 -07001#ifndef ASN1FIX_INTERNAL_H
2#define ASN1FIX_INTERNAL_H
Lev Walkinf15320b2004-06-03 03:38:44 +00003
Lev Walkin97bdee22004-06-28 21:21:24 +00004#ifdef HAVE_CONFIG_H
5#include <config.h>
6#endif
7
Lev Walkinf15320b2004-06-03 03:38:44 +00008/*
9 * System headers required in various modules.
10 */
11#include <stdio.h>
12#include <stdlib.h>
Lev Walkin4efbfb72005-02-25 14:20:30 +000013#include <stdarg.h>
Lev Walkinf15320b2004-06-03 03:38:44 +000014#include <string.h>
15#include <ctype.h> /* isupper() */
16#include <errno.h>
17#include <assert.h>
18
Lev Walkin4efbfb72005-02-25 14:20:30 +000019#ifdef HAVE_UNISTD_H
20#include <unistd.h>
21#endif
22
Lev Walkinf15320b2004-06-03 03:38:44 +000023#include <asn1parser.h> /* Our lovely ASN.1 parser module */
Lev Walkinc0e03b92017-08-22 01:48:23 -070024#include <asn1_namespace.h>
Lev Walkin4efbfb72005-02-25 14:20:30 +000025#include "asn1fix.h"
26
Lev Walkin93659562010-11-20 09:47:13 -080027#ifdef _WIN32
Lev Walkin4efbfb72005-02-25 14:20:30 +000028#define EX_NOINPUT 66
29#define EX_DATAERR 65
30#define snprintf _snprintf
Frank Morgnercab30af2013-05-21 14:28:35 +020031#if defined HAVE_DECL_STRCASECMP && !HAVE_DECL_STRCASECMP
Lev Walkin4efbfb72005-02-25 14:20:30 +000032#define strcasecmp stricmp
33#endif
Frank Morgnercab30af2013-05-21 14:28:35 +020034#endif
Lev Walkin4efbfb72005-02-25 14:20:30 +000035
36#ifndef ETOOMANYREFS
37#define ETOOMANYREFS 144
38#endif
Lev Walkinf15320b2004-06-03 03:38:44 +000039
40/*
41 * A definition of a function that will log error messages.
42 */
43typedef void (*error_logger_f)(int _is_fatal, const char *fmt, ...);
44
45/*
46 * Universal argument.
47 */
48typedef struct arg_s {
Lev Walkinc0e03b92017-08-22 01:48:23 -070049 asn1p_t *asn;
50 asn1_namespace_t *ns;
51 asn1p_module_t *mod;
52 asn1p_expr_t *expr;
53 error_logger_f eh;
54 error_logger_f debug;
55 void *key; /* The next level key */
56 enum asn1f_flags flags;
Lev Walkinf15320b2004-06-03 03:38:44 +000057} arg_t;
58
59/*
60 * Functions performing normalization of various types.
61 */
62#include "asn1fix_misc.h" /* Support functions */
63#include "asn1fix_value.h" /* Value processing */
64#include "asn1fix_cstring.h" /* Fix cstring values */
65#include "asn1fix_compat.h" /* Data compatibility */
66#include "asn1fix_constr.h" /* Constructed types */
67#include "asn1fix_class.h" /* CLASS support */
Lev Walkin9d542d22006-03-14 16:31:37 +000068#include "asn1fix_cws.h" /* CLASS WITH SYNTAX support */
Lev Walkina00d6b32006-03-21 03:40:38 +000069#include "asn1fix_param.h" /* Parameterization */
Lev Walkinf15320b2004-06-03 03:38:44 +000070#include "asn1fix_retrieve.h" /* Data retrieval */
71#include "asn1fix_enum.h" /* Process ENUMERATED */
72#include "asn1fix_integer.h" /* Process INTEGER */
73#include "asn1fix_bitstring.h" /* Process BIT STRING */
74#include "asn1fix_dereft.h" /* Dereference types */
75#include "asn1fix_derefv.h" /* Dereference values */
76#include "asn1fix_tags.h" /* Tags-related stuff */
Lev Walkinb45e0672004-08-18 05:42:05 +000077#include "asn1fix_constraint.h" /* Constraint manipulation */
78#include "asn1fix_crange.h" /* Constraint groking, exportable */
79#include "asn1fix_export.h" /* Exported functions */
Lev Walkinf15320b2004-06-03 03:38:44 +000080
81
82/*
83 * Merge the return value of the called function with the already
84 * partially computed return value of the current function.
85 */
86#define RET2RVAL(ret,rv) do { \
87 int __ret = ret; \
88 switch(__ret) { \
89 case 0: break; \
90 case 1: if(rv) break; \
91 case -1: rv = __ret; break; \
92 default: \
93 assert(__ret >= -1 && __ret <= 1); \
94 rv = -1; \
95 } \
96 } while(0)
97
98/*
99 * Temporary substitute module for the purposes of evaluating expression.
100 */
Lev Walkinc0e03b92017-08-22 01:48:23 -0700101#define WITH_MODULE(tmp_mod, code) \
102 ({ \
103 void *_saved_mod = arg->mod; \
104 asn1_namespace_t *_saved_ns = arg->ns; \
105 arg->mod = tmp_mod; \
106 arg->ns = asn1_namespace_new_from_module(tmp_mod, 1); \
107 typeof(code) ret = code; \
Lev Walkin42457fe2017-09-26 18:07:50 -0700108 asn1_namespace_free(arg->ns); \
Lev Walkinc0e03b92017-08-22 01:48:23 -0700109 arg->ns = _saved_ns; \
110 arg->mod = _saved_mod; \
111 ret; \
112 })
Lev Walkinf15320b2004-06-03 03:38:44 +0000113
Lev Walkinc0e03b92017-08-22 01:48:23 -0700114#define LOG(code, fmt, args...) \
115 do { \
116 int _save_errno = errno; \
117 if(code < 0) { \
118 if(arg->debug) { \
119 arg->debug(code, "%s: " fmt " in %s (%s:%d)", __func__, \
120 ##args, arg->mod->source_file_name, __FILE__, \
121 __LINE__); \
122 } \
123 } else if(arg->eh) { \
124 if(arg->debug) { \
125 arg->eh(code, fmt " in %s (%s:%d)", ##args, \
126 arg->mod->source_file_name, __FILE__, __LINE__); \
127 } else { \
128 arg->eh(code, fmt " in %s", ##args, \
129 arg->mod->source_file_name); \
130 } \
131 errno = _save_errno; \
132 } \
133 } while(0)
Lev Walkinf15320b2004-06-03 03:38:44 +0000134
135#define DEBUG(fmt, args...) LOG(-1, fmt, ##args)
136#define FATAL(fmt, args...) LOG( 1, fmt, ##args)
137#define WARNING(fmt, args...) LOG( 0, fmt, ##args)
138
139
140/*
141 * Define the symbol corresponding to the name of the current function.
142 */
143#if __STDC_VERSION__ < 199901
144#if !(__GNUC__ == 2 && __GNUC_MINOR__ >= 7 || __GNUC__ >= 3)
145#define __func__ (char *)0 /* Name of the current function */
146#endif /* GNUC */
147/* __func__ is supposed to be defined */
148#endif
149
150
Lev Walkinc6cac8e2016-03-14 02:57:07 -0700151#endif /* ASN1FIX_INTERNAL_H */