]> git.ipfire.org Git - thirdparty/openssl.git/blob - include/openssl/safestack.h
Rename lh_xxx,sk_xxx tp OPENSSL_{LH,SK}_xxx
[thirdparty/openssl.git] / include / openssl / safestack.h
1 /*
2 * Copyright 1999-2016 The OpenSSL Project Authors. All Rights Reserved.
3 *
4 * Licensed under the OpenSSL license (the "License"). You may not use
5 * this file except in compliance with the License. You can obtain a copy
6 * in the file LICENSE in the source distribution or at
7 * https://www.openssl.org/source/license.html
8 */
9
10 #ifndef HEADER_SAFESTACK_H
11 # define HEADER_SAFESTACK_H
12
13 # include <openssl/stack.h>
14 # include <openssl/e_os2.h>
15
16 #ifdef __cplusplus
17 extern "C" {
18 #endif
19
20 # define STACK_OF(type) struct stack_st_##type
21
22 # define SKM_DEFINE_STACK_OF(t1, t2, t3) \
23 STACK_OF(t1); \
24 typedef int (*sk_##t1##_compfunc)(const t3 * const *a, const t3 *const *b); \
25 typedef void (*sk_##t1##_freefunc)(t3 *a); \
26 typedef t3 * (*sk_##t1##_copyfunc)(const t3 *a); \
27 static ossl_inline int sk_##t1##_num(const STACK_OF(t1) *sk) \
28 { \
29 return OPENSSL_sk_num((const OPENSSL_STACK *)sk); \
30 } \
31 static ossl_inline t2 *sk_##t1##_value(const STACK_OF(t1) *sk, int idx) \
32 { \
33 return (t2 *)OPENSSL_sk_value((const OPENSSL_STACK *)sk, idx); \
34 } \
35 static ossl_inline STACK_OF(t1) *sk_##t1##_new(sk_##t1##_compfunc compare) \
36 { \
37 return (STACK_OF(t1) *)OPENSSL_sk_new((OPENSSL_sk_compfunc)compare); \
38 } \
39 static ossl_inline STACK_OF(t1) *sk_##t1##_new_null(void) \
40 { \
41 return (STACK_OF(t1) *)OPENSSL_sk_new_null(); \
42 } \
43 static ossl_inline void sk_##t1##_free(STACK_OF(t1) *sk) \
44 { \
45 OPENSSL_sk_free((OPENSSL_STACK *)sk); \
46 } \
47 static ossl_inline void sk_##t1##_zero(STACK_OF(t1) *sk) \
48 { \
49 OPENSSL_sk_zero((OPENSSL_STACK *)sk); \
50 } \
51 static ossl_inline t2 *sk_##t1##_delete(STACK_OF(t1) *sk, int i) \
52 { \
53 return (t2 *)OPENSSL_sk_delete((OPENSSL_STACK *)sk, i); \
54 } \
55 static ossl_inline t2 *sk_##t1##_delete_ptr(STACK_OF(t1) *sk, t2 *ptr) \
56 { \
57 return (t2 *)OPENSSL_sk_delete_ptr((OPENSSL_STACK *)sk, (void *)ptr); \
58 } \
59 static ossl_inline int sk_##t1##_push(STACK_OF(t1) *sk, t2 *ptr) \
60 { \
61 return OPENSSL_sk_push((OPENSSL_STACK *)sk, (void *)ptr); \
62 } \
63 static ossl_inline int sk_##t1##_unshift(STACK_OF(t1) *sk, t2 *ptr) \
64 { \
65 return OPENSSL_sk_unshift((OPENSSL_STACK *)sk, (void *)ptr); \
66 } \
67 static ossl_inline t2 *sk_##t1##_pop(STACK_OF(t1) *sk) \
68 { \
69 return (t2 *)OPENSSL_sk_pop((OPENSSL_STACK *)sk); \
70 } \
71 static ossl_inline t2 *sk_##t1##_shift(STACK_OF(t1) *sk) \
72 { \
73 return (t2 *)OPENSSL_sk_shift((OPENSSL_STACK *)sk); \
74 } \
75 static ossl_inline void sk_##t1##_pop_free(STACK_OF(t1) *sk, sk_##t1##_freefunc freefunc) \
76 { \
77 OPENSSL_sk_pop_free((OPENSSL_STACK *)sk, (OPENSSL_sk_freefunc)freefunc); \
78 } \
79 static ossl_inline int sk_##t1##_insert(STACK_OF(t1) *sk, t2 *ptr, int idx) \
80 { \
81 return OPENSSL_sk_insert((OPENSSL_STACK *)sk, (void *)ptr, idx); \
82 } \
83 static ossl_inline t2 *sk_##t1##_set(STACK_OF(t1) *sk, int idx, t2 *ptr) \
84 { \
85 return (t2 *)OPENSSL_sk_set((OPENSSL_STACK *)sk, idx, (void *)ptr); \
86 } \
87 static ossl_inline int sk_##t1##_find(STACK_OF(t1) *sk, t2 *ptr) \
88 { \
89 return OPENSSL_sk_find((OPENSSL_STACK *)sk, (void *)ptr); \
90 } \
91 static ossl_inline int sk_##t1##_find_ex(STACK_OF(t1) *sk, t2 *ptr) \
92 { \
93 return OPENSSL_sk_find_ex((OPENSSL_STACK *)sk, (void *)ptr); \
94 } \
95 static ossl_inline void sk_##t1##_sort(STACK_OF(t1) *sk) \
96 { \
97 OPENSSL_sk_sort((OPENSSL_STACK *)sk); \
98 } \
99 static ossl_inline int sk_##t1##_is_sorted(const STACK_OF(t1) *sk) \
100 { \
101 return OPENSSL_sk_is_sorted((const OPENSSL_STACK *)sk); \
102 } \
103 static ossl_inline STACK_OF(t1) * sk_##t1##_dup(STACK_OF(t1) *sk) \
104 { \
105 return (STACK_OF(t1) *)OPENSSL_sk_dup((OPENSSL_STACK *)sk); \
106 } \
107 static ossl_inline STACK_OF(t1) *sk_##t1##_deep_copy(STACK_OF(t1) *sk, \
108 sk_##t1##_copyfunc copyfunc, \
109 sk_##t1##_freefunc freefunc) \
110 { \
111 return (STACK_OF(t1) *)OPENSSL_sk_deep_copy((OPENSSL_STACK *)sk, \
112 (OPENSSL_sk_copyfunc)copyfunc, \
113 (OPENSSL_sk_freefunc)freefunc); \
114 } \
115 static ossl_inline sk_##t1##_compfunc sk_##t1##_set_cmp_func(STACK_OF(t1) *sk, sk_##t1##_compfunc compare) \
116 { \
117 return (sk_##t1##_compfunc)OPENSSL_sk_set_cmp_func((OPENSSL_STACK *)sk, (OPENSSL_sk_compfunc)compare); \
118 }
119
120 # define DEFINE_SPECIAL_STACK_OF(t1, t2) SKM_DEFINE_STACK_OF(t1, t2, t2)
121 # define DEFINE_STACK_OF(t) SKM_DEFINE_STACK_OF(t, t, t)
122 # define DEFINE_STACK_OF_CONST(t) SKM_DEFINE_STACK_OF(t, const t, t)
123
124 /*-
125 * Strings are special: normally an lhash entry will point to a single
126 * (somewhat) mutable object. In the case of strings:
127 *
128 * a) Instead of a single char, there is an array of chars, NUL-terminated.
129 * b) The string may have be immutable.
130 *
131 * So, they need their own declarations. Especially important for
132 * type-checking tools, such as Deputy.
133 *
134 * In practice, however, it appears to be hard to have a const
135 * string. For now, I'm settling for dealing with the fact it is a
136 * string at all.
137 */
138 typedef char *OPENSSL_STRING;
139 typedef const char *OPENSSL_CSTRING;
140
141 /*-
142 * Confusingly, LHASH_OF(STRING) deals with char ** throughout, but
143 * STACK_OF(STRING) is really more like STACK_OF(char), only, as mentioned
144 * above, instead of a single char each entry is a NUL-terminated array of
145 * chars. So, we have to implement STRING specially for STACK_OF. This is
146 * dealt with in the autogenerated macros below.
147 */
148 DEFINE_SPECIAL_STACK_OF(OPENSSL_STRING, char)
149
150 /*
151 * Similarly, we sometimes use a block of characters, NOT nul-terminated.
152 * These should also be distinguished from "normal" stacks.
153 */
154 typedef void *OPENSSL_BLOCK;
155 DEFINE_SPECIAL_STACK_OF(OPENSSL_BLOCK, void)
156
157 # ifdef __cplusplus
158 }
159 # endif
160 #endif