Use a compiler to marshall/unmarshall the sessions
[mod_auth_gssapi.git] / src / asn1c / asn_internal.h
1 /*-
2  * Copyright (c) 2003, 2004, 2005, 2007 Lev Walkin <vlm@lionet.info>.
3  * All rights reserved.
4  * Redistribution and modifications are permitted subject to BSD license.
5  */
6 /*
7  * Declarations internally useful for the ASN.1 support code.
8  */
9 #ifndef _ASN_INTERNAL_H_
10 #define _ASN_INTERNAL_H_
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
19 extern "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 */
24 int 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 /*
35  * A macro for debugging the ASN.1 internals.
36  * You may enable or override it.
37  */
38 #ifndef ASN_DEBUG       /* If debugging code is not defined elsewhere... */
39 #if     EMIT_ASN_DEBUG == 1     /* And it was asked to emit this code... */
40 #ifdef  __GNUC__
41 #ifdef  ASN_THREAD_SAFE
42 /* Thread safety requires sacrifice in output indentation:
43  * Retain empty definition of ASN_DEBUG_INDENT_ADD. */
44 #else   /* !ASN_THREAD_SAFE */
45 #undef  ASN_DEBUG_INDENT_ADD
46 #undef  asn_debug_indent
47 int asn_debug_indent;
48 #define ASN_DEBUG_INDENT_ADD(i) do { asn_debug_indent += i; } while(0)
49 #endif  /* ASN_THREAD_SAFE */
50 #define ASN_DEBUG(fmt, args...) do {                    \
51                 int adi = asn_debug_indent;             \
52                 while(adi--) fprintf(stderr, " ");      \
53                 fprintf(stderr, fmt, ##args);           \
54                 fprintf(stderr, " (%s:%d)\n",           \
55                         __FILE__, __LINE__);            \
56         } while(0)
57 #else   /* !__GNUC__ */
58 void ASN_DEBUG_f(const char *fmt, ...);
59 #define ASN_DEBUG       ASN_DEBUG_f
60 #endif  /* __GNUC__ */
61 #else   /* EMIT_ASN_DEBUG != 1 */
62 static inline void ASN_DEBUG(const char *fmt, ...) { (void)fmt; }
63 #endif  /* EMIT_ASN_DEBUG */
64 #endif  /* ASN_DEBUG */
65
66 /*
67  * Invoke the application-supplied callback and fail, if something is wrong.
68  */
69 #define __ASN_E_cbc(buf, size)  (cb((buf), (size), app_key) < 0)
70 #define _ASN_E_CALLBACK(foo)    do {                                    \
71                 if(foo) goto cb_failed;                                 \
72         } while(0)
73 #define _ASN_CALLBACK(buf, size)                                        \
74         _ASN_E_CALLBACK(__ASN_E_cbc(buf, size))
75 #define _ASN_CALLBACK2(buf1, size1, buf2, size2)                        \
76         _ASN_E_CALLBACK(__ASN_E_cbc(buf1, size1) || __ASN_E_cbc(buf2, size2))
77 #define _ASN_CALLBACK3(buf1, size1, buf2, size2, buf3, size3)           \
78         _ASN_E_CALLBACK(__ASN_E_cbc(buf1, size1)                        \
79                 || __ASN_E_cbc(buf2, size2)                             \
80                 || __ASN_E_cbc(buf3, size3))
81
82 #define _i_ASN_TEXT_INDENT(nl, level) do {                              \
83         int __level = (level);                                          \
84         int __nl = ((nl) != 0);                                         \
85         int __i;                                                        \
86         if(__nl) _ASN_CALLBACK("\n", 1);                                \
87         if(__level < 0) __level = 0;                                    \
88         for(__i = 0; __i < __level; __i++)                              \
89                 _ASN_CALLBACK("    ", 4);                               \
90         er.encoded += __nl + 4 * __level;                               \
91 } while(0)
92
93 #define _i_INDENT(nl)   do {                                            \
94         int __i;                                                        \
95         if((nl) && cb("\n", 1, app_key) < 0) return -1;                 \
96         for(__i = 0; __i < ilevel; __i++)                               \
97                 if(cb("    ", 4, app_key) < 0) return -1;               \
98 } while(0)
99
100 /*
101  * Check stack against overflow, if limit is set.
102  */
103 #define _ASN_DEFAULT_STACK_MAX  (30000)
104 static inline int
105 _ASN_STACK_OVERFLOW_CHECK(asn_codec_ctx_t *ctx) {
106         if(ctx && ctx->max_stack_size) {
107
108                 /* ctx MUST be allocated on the stack */
109                 ptrdiff_t usedstack = ((char *)ctx - (char *)&ctx);
110                 if(usedstack > 0) usedstack = -usedstack; /* grows up! */
111
112                 /* double negative required to avoid int wrap-around */
113                 if(usedstack < -(ptrdiff_t)ctx->max_stack_size) {
114                         ASN_DEBUG("Stack limit %ld reached",
115                                 (long)ctx->max_stack_size);
116                         return -1;
117                 }
118         }
119         return 0;
120 }
121
122 #ifdef  __cplusplus
123 }
124 #endif
125
126 #endif  /* _ASN_INTERNAL_H_ */