blob: c4105ad51e56496dbeb340ca8a1b99984d3d0276 [file] [log] [blame]
Peter Szilagyifbc56f92019-07-23 19:29:46 +00001/*
2 * Copyright (c) 2003-2017 Lev Walkin <vlm@lionet.info>. All rights reserved.
3 * Redistribution and modifications are permitted subject to BSD license.
4 */
5/*
6 * Declarations internally useful for the ASN.1 support code.
7 */
8#ifndef ASN_INTERNAL_H
9#define ASN_INTERNAL_H
10#define __EXTENSIONS__ /* for Sun */
11
12#include "asn_application.h" /* Application-visible API */
13
14#ifndef __NO_ASSERT_H__ /* Include assert.h only for internal use. */
15#include <assert.h> /* for assert() macro */
16#endif
17
18#ifdef __cplusplus
19extern "C" {
20#endif
21
22/* Environment version might be used to avoid running with the old library */
23#define ASN1C_ENVIRONMENT_VERSION 923 /* Compile-time version */
24int get_asn1c_environment_version(void); /* Run-time version */
25
26#define CALLOC(nmemb, size) calloc(nmemb, size)
27#define MALLOC(size) malloc(size)
28#define REALLOC(oldptr, size) realloc(oldptr, size)
29#define FREEMEM(ptr) free(ptr)
30
31#define asn_debug_indent 0
32#define ASN_DEBUG_INDENT_ADD(i) do{}while(0)
33
34#ifdef EMIT_ASN_DEBUG
35#warning "Use ASN_EMIT_DEBUG instead of EMIT_ASN_DEBUG"
36#define ASN_EMIT_DEBUG EMIT_ASN_DEBUG
37#endif
38
39/*
40 * A macro for debugging the ASN.1 internals.
41 * You may enable or override it.
42 */
43#ifndef ASN_DEBUG /* If debugging code is not defined elsewhere... */
44#if ASN_EMIT_DEBUG == 1 /* And it was asked to emit this code... */
45#if !defined(BELL_LABS) /* Bell Labs */
46 //#if __STDC_VERSION__ >= 199901L
47#ifdef ASN_THREAD_SAFE
48/* Thread safety requires sacrifice in output indentation:
49 * Retain empty definition of ASN_DEBUG_INDENT_ADD. */
50#else /* !ASN_THREAD_SAFE */
51#undef ASN_DEBUG_INDENT_ADD
52#undef asn_debug_indent
53int asn_debug_indent;
54#define ASN_DEBUG_INDENT_ADD(i) do { asn_debug_indent += i; } while(0)
55#endif /* ASN_THREAD_SAFE */
56#if defined(BELL_LABS) /* Bell Labs version */
57extern int logAsn1c(const char *filename, int linenumber, const char *format, ...);
58#define ASN_DEBUG(fmt, args...) do { \
59 (void) logAsn1c(__FILE__, __LINE__, fmt, ##args); \
60 } while(0)
61#else
62#define ASN_DEBUG(fmt, args...) do { \
63 int adi = asn_debug_indent; \
64 while(adi--) fprintf(stderr, " "); \
65 fprintf(stderr, fmt, ##args); \
66 fprintf(stderr, " (%s:%d)\n", \
67 __FILE__, __LINE__); \
68 } while(0)
69#endif /* BELL_LABS */
70#else /* !C99 */
71void CC_PRINTFLIKE(1, 2) ASN_DEBUG_f(const char *fmt, ...);
72#define ASN_DEBUG ASN_DEBUG_f
73#endif /* C99 */
74#else /* ASN_EMIT_DEBUG != 1 */
75#if __STDC_VERSION__ >= 199901L
76#define ASN_DEBUG(...) do{}while(0)
77#else /* not C99 */
78static void CC_PRINTFLIKE(1, 2) ASN_DEBUG(const char *fmt, ...) { (void)fmt; }
79#endif /* C99 or better */
80#endif /* ASN_EMIT_DEBUG */
81#endif /* ASN_DEBUG */
82
83/*
84 * Print to a callback.
85 * The callback is expected to return negative values on error.
86 * 0 and positive values are treated as success.
87 * RETURN VALUES:
88 * -1: Failed to format or invoke the callback.
89 * >0: Size of the data that got delivered to the callback.
90 */
91ssize_t CC_PRINTFLIKE(3, 4)
92asn__format_to_callback(
93 int (*callback)(const void *, size_t, void *key), void *key,
94 const char *fmt, ...);
95
96/*
97 * Invoke the application-supplied callback and fail, if something is wrong.
98 */
99#define ASN__E_cbc(buf, size) (cb((buf), (size), app_key) < 0)
100#define ASN__E_CALLBACK(size, foo) \
101 do { \
102 if(foo) goto cb_failed; \
103 er.encoded += (size); \
104 } while(0)
105#define ASN__CALLBACK(buf, size) ASN__E_CALLBACK(size, ASN__E_cbc(buf, size))
106#define ASN__CALLBACK2(buf1, size1, buf2, size2) \
107 ASN__E_CALLBACK((size1) + (size2), \
108 ASN__E_cbc(buf1, size1) || ASN__E_cbc(buf2, size2))
109#define ASN__CALLBACK3(buf1, size1, buf2, size2, buf3, size3) \
110 ASN__E_CALLBACK((size1) + (size2) + (size3), \
111 ASN__E_cbc(buf1, size1) || ASN__E_cbc(buf2, size2) \
112 || ASN__E_cbc(buf3, size3))
113
114#define ASN__TEXT_INDENT(nl, level) \
115 do { \
116 int tmp_level = (level); \
117 int tmp_nl = ((nl) != 0); \
118 int tmp_i; \
119 if(tmp_nl) ASN__CALLBACK("\n", 1); \
120 if(tmp_level < 0) tmp_level = 0; \
121 for(tmp_i = 0; tmp_i < tmp_level; tmp_i++) ASN__CALLBACK(" ", 4); \
122 } while(0)
123
124#define _i_INDENT(nl) do { \
125 int tmp_i; \
126 if((nl) && cb("\n", 1, app_key) < 0) \
127 return -1; \
128 for(tmp_i = 0; tmp_i < ilevel; tmp_i++) \
129 if(cb(" ", 4, app_key) < 0) \
130 return -1; \
131 } while(0)
132
133/*
134 * Check stack against overflow, if limit is set.
135 */
136#define ASN__DEFAULT_STACK_MAX (30000)
137static int CC_NOTUSED
138ASN__STACK_OVERFLOW_CHECK(const asn_codec_ctx_t *ctx) {
139 if(ctx && ctx->max_stack_size) {
140
141 /* ctx MUST be allocated on the stack */
142 ptrdiff_t usedstack = ((const char *)ctx - (const char *)&ctx);
143 if(usedstack > 0) usedstack = -usedstack; /* grows up! */
144
145 /* double negative required to avoid int wrap-around */
146 if(usedstack < -(ptrdiff_t)ctx->max_stack_size) {
147 ASN_DEBUG("Stack limit %ld reached",
148 (long)ctx->max_stack_size);
149 return -1;
150 }
151 }
152 return 0;
153}
154
155#ifdef __cplusplus
156}
157#endif
158
159#endif /* ASN_INTERNAL_H */