blob: 2736083143091cbacce4dad56c4185f7a91b3aac [file] [log] [blame]
Lev Walkin20696a42017-10-17 21:27:33 -07001/*
2 * Copyright (c) 2003-2017 Lev Walkin <vlm@lionet.info>. All rights reserved.
Lev Walkina9cc46e2004-09-22 16:06:28 +00003 * Redistribution and modifications are permitted subject to BSD license.
4 */
5/*
6 * Declarations internally useful for the ASN.1 support code.
7 */
Lev Walkinc6cac8e2016-03-14 02:57:07 -07008#ifndef ASN_INTERNAL_H
9#define ASN_INTERNAL_H
Lev Walkin6cbed3d2017-10-07 16:42:41 -070010#define __EXTENSIONS__ /* for Sun */
Lev Walkina9cc46e2004-09-22 16:06:28 +000011
Lev Walkin1eded352006-07-13 11:19:01 +000012#include "asn_application.h" /* Application-visible API */
Lev Walkina9cc46e2004-09-22 16:06:28 +000013
Lev Walkin2ffa1c62005-04-19 09:19:17 +000014#ifndef __NO_ASSERT_H__ /* Include assert.h only for internal use. */
15#include <assert.h> /* for assert() macro */
16#endif
17
Lev Walkin6a0370b2005-07-28 08:39:46 +000018#ifdef __cplusplus
19extern "C" {
20#endif
21
Lev Walkinda9a3b82005-08-16 17:00:21 +000022/* Environment version might be used to avoid running with the old library */
Lev Walkincf6c1e22010-12-12 02:40:27 -080023#define ASN1C_ENVIRONMENT_VERSION 923 /* Compile-time version */
Lev Walkin6a0370b2005-07-28 08:39:46 +000024int get_asn1c_environment_version(void); /* Run-time version */
25
Lev Walkina9cc46e2004-09-22 16:06:28 +000026#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
Lev Walkinb85507a2012-03-02 03:54:57 -080031#define asn_debug_indent 0
32#define ASN_DEBUG_INDENT_ADD(i) do{}while(0)
33
Lev Walkin9175a282017-10-24 00:58:42 -070034#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
Lev Walkina9cc46e2004-09-22 16:06:28 +000039/*
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... */
Lev Walkin9175a282017-10-24 00:58:42 -070044#if ASN_EMIT_DEBUG == 1 /* And it was asked to emit this code... */
Lev Walkin588bf0f2017-10-13 23:51:16 -070045#if __STDC_VERSION__ >= 199901L
Lev Walkin3e86a4e2007-06-29 11:38:57 +000046#ifdef ASN_THREAD_SAFE
Lev Walkinb85507a2012-03-02 03:54:57 -080047/* Thread safety requires sacrifice in output indentation:
48 * Retain empty definition of ASN_DEBUG_INDENT_ADD. */
Lev Walkin27f53bc2007-06-29 12:10:50 +000049#else /* !ASN_THREAD_SAFE */
Lev Walkinb85507a2012-03-02 03:54:57 -080050#undef ASN_DEBUG_INDENT_ADD
51#undef asn_debug_indent
Lev Walkin3e86a4e2007-06-29 11:38:57 +000052int asn_debug_indent;
Lev Walkine2c05bf2012-02-27 10:24:35 -080053#define ASN_DEBUG_INDENT_ADD(i) do { asn_debug_indent += i; } while(0)
Lev Walkin27f53bc2007-06-29 12:10:50 +000054#endif /* ASN_THREAD_SAFE */
Lev Walkin3e86a4e2007-06-29 11:38:57 +000055#define ASN_DEBUG(fmt, args...) do { \
56 int adi = asn_debug_indent; \
57 while(adi--) fprintf(stderr, " "); \
58 fprintf(stderr, fmt, ##args); \
59 fprintf(stderr, " (%s:%d)\n", \
60 __FILE__, __LINE__); \
Lev Walkina9cc46e2004-09-22 16:06:28 +000061 } while(0)
Lev Walkin588bf0f2017-10-13 23:51:16 -070062#else /* !C99 */
Lev Walkind84f6032017-10-03 16:33:59 -070063void CC_PRINTFLIKE(1, 2) ASN_DEBUG_f(const char *fmt, ...);
Lev Walkina9cc46e2004-09-22 16:06:28 +000064#define ASN_DEBUG ASN_DEBUG_f
Lev Walkin588bf0f2017-10-13 23:51:16 -070065#endif /* C99 */
Lev Walkin9175a282017-10-24 00:58:42 -070066#else /* ASN_EMIT_DEBUG != 1 */
Lev Walkin2b290be2017-08-03 23:19:23 -070067#if __STDC_VERSION__ >= 199901L
68#define ASN_DEBUG(...) do{}while(0)
69#else /* not C99 */
Lev Walkind84f6032017-10-03 16:33:59 -070070static void CC_PRINTFLIKE(1, 2) ASN_DEBUG(const char *fmt, ...) { (void)fmt; }
Lev Walkin2b290be2017-08-03 23:19:23 -070071#endif /* C99 or better */
Lev Walkin9175a282017-10-24 00:58:42 -070072#endif /* ASN_EMIT_DEBUG */
Lev Walkina9cc46e2004-09-22 16:06:28 +000073#endif /* ASN_DEBUG */
74
75/*
Lev Walkine2bbbf82017-10-08 18:52:37 -070076 * Print to a callback.
77 * The callback is expected to return negative values on error.
78 * 0 and positive values are treated as success.
79 * RETURN VALUES:
80 * -1: Failed to format or invoke the callback.
81 * >0: Size of the data that got delivered to the callback.
82 */
83ssize_t CC_PRINTFLIKE(3, 4)
84asn__format_to_callback(
85 int (*callback)(const void *, size_t, void *key), void *key,
86 const char *fmt, ...);
87
88/*
Lev Walkina9cc46e2004-09-22 16:06:28 +000089 * Invoke the application-supplied callback and fail, if something is wrong.
90 */
Lev Walkin4fe28822017-09-18 02:57:34 -070091#define ASN__E_cbc(buf, size) (cb((buf), (size), app_key) < 0)
92#define ASN__E_CALLBACK(size, foo) \
93 do { \
94 if(foo) goto cb_failed; \
95 er.encoded += (size); \
96 } while(0)
97#define ASN__CALLBACK(buf, size) ASN__E_CALLBACK(size, ASN__E_cbc(buf, size))
98#define ASN__CALLBACK2(buf1, size1, buf2, size2) \
99 ASN__E_CALLBACK((size1) + (size2), \
100 ASN__E_cbc(buf1, size1) || ASN__E_cbc(buf2, size2))
101#define ASN__CALLBACK3(buf1, size1, buf2, size2, buf3, size3) \
102 ASN__E_CALLBACK((size1) + (size2) + (size3), \
103 ASN__E_cbc(buf1, size1) || ASN__E_cbc(buf2, size2) \
104 || ASN__E_cbc(buf3, size3))
Lev Walkina9cc46e2004-09-22 16:06:28 +0000105
Lev Walkin4fe28822017-09-18 02:57:34 -0700106#define ASN__TEXT_INDENT(nl, level) \
107 do { \
108 int tmp_level = (level); \
109 int tmp_nl = ((nl) != 0); \
110 int tmp_i; \
111 if(tmp_nl) ASN__CALLBACK("\n", 1); \
112 if(tmp_level < 0) tmp_level = 0; \
113 for(tmp_i = 0; tmp_i < tmp_level; tmp_i++) ASN__CALLBACK(" ", 4); \
Lev Walkin1ec76052016-03-13 17:13:20 -0700114 } while(0)
Lev Walkin8e8078a2004-09-26 13:10:40 +0000115
Lev Walkin1ec76052016-03-13 17:13:20 -0700116#define _i_INDENT(nl) do { \
117 int tmp_i; \
118 if((nl) && cb("\n", 1, app_key) < 0) \
119 return -1; \
120 for(tmp_i = 0; tmp_i < ilevel; tmp_i++) \
121 if(cb(" ", 4, app_key) < 0) \
122 return -1; \
123 } while(0)
Lev Walkina9cc46e2004-09-22 16:06:28 +0000124
Lev Walkin1d9e8dd2005-12-07 05:46:03 +0000125/*
126 * Check stack against overflow, if limit is set.
127 */
Lev Walkin7c1dc052016-03-14 03:08:15 -0700128#define ASN__DEFAULT_STACK_MAX (30000)
Lev Walkin3f995632017-09-26 18:27:32 -0700129static int CC_NOTUSED
Lev Walkinafbf2a92017-09-12 23:30:27 -0700130ASN__STACK_OVERFLOW_CHECK(const asn_codec_ctx_t *ctx) {
Lev Walkin1d9e8dd2005-12-07 05:46:03 +0000131 if(ctx && ctx->max_stack_size) {
132
133 /* ctx MUST be allocated on the stack */
Lev Walkinafbf2a92017-09-12 23:30:27 -0700134 ptrdiff_t usedstack = ((const char *)ctx - (const char *)&ctx);
Lev Walkin1d9e8dd2005-12-07 05:46:03 +0000135 if(usedstack > 0) usedstack = -usedstack; /* grows up! */
136
137 /* double negative required to avoid int wrap-around */
138 if(usedstack < -(ptrdiff_t)ctx->max_stack_size) {
139 ASN_DEBUG("Stack limit %ld reached",
140 (long)ctx->max_stack_size);
141 return -1;
142 }
143 }
144 return 0;
145}
146
Lev Walkin6a0370b2005-07-28 08:39:46 +0000147#ifdef __cplusplus
148}
149#endif
150
Lev Walkinc6cac8e2016-03-14 02:57:07 -0700151#endif /* ASN_INTERNAL_H */