Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
| 2 | * All rights reserved. |
| 3 | * |
| 4 | * This package is an SSL implementation written |
| 5 | * by Eric Young (eay@cryptsoft.com). |
| 6 | * The implementation was written so as to conform with Netscapes SSL. |
| 7 | * |
| 8 | * This library is free for commercial and non-commercial use as long as |
| 9 | * the following conditions are aheared to. The following conditions |
| 10 | * apply to all code found in this distribution, be it the RC4, RSA, |
| 11 | * lhash, DES, etc., code; not just the SSL code. The SSL documentation |
| 12 | * included with this distribution is covered by the same copyright terms |
| 13 | * except that the holder is Tim Hudson (tjh@cryptsoft.com). |
| 14 | * |
| 15 | * Copyright remains Eric Young's, and as such any Copyright notices in |
| 16 | * the code are not to be removed. |
| 17 | * If this package is used in a product, Eric Young should be given attribution |
| 18 | * as the author of the parts of the library used. |
| 19 | * This can be in the form of a textual message at program startup or |
| 20 | * in documentation (online or textual) provided with the package. |
| 21 | * |
| 22 | * Redistribution and use in source and binary forms, with or without |
| 23 | * modification, are permitted provided that the following conditions |
| 24 | * are met: |
| 25 | * 1. Redistributions of source code must retain the copyright |
| 26 | * notice, this list of conditions and the following disclaimer. |
| 27 | * 2. Redistributions in binary form must reproduce the above copyright |
| 28 | * notice, this list of conditions and the following disclaimer in the |
| 29 | * documentation and/or other materials provided with the distribution. |
| 30 | * 3. All advertising materials mentioning features or use of this software |
| 31 | * must display the following acknowledgement: |
| 32 | * "This product includes cryptographic software written by |
| 33 | * Eric Young (eay@cryptsoft.com)" |
| 34 | * The word 'cryptographic' can be left out if the rouines from the library |
| 35 | * being used are not cryptographic related :-). |
| 36 | * 4. If you include any Windows specific code (or a derivative thereof) from |
| 37 | * the apps directory (application code) you must include an acknowledgement: |
| 38 | * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" |
| 39 | * |
| 40 | * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND |
| 41 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 42 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 43 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 44 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 45 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 46 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 47 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 48 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 49 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 50 | * SUCH DAMAGE. |
| 51 | * |
| 52 | * The licence and distribution terms for any publically available version or |
| 53 | * derivative of this code cannot be changed. i.e. this code cannot simply be |
| 54 | * copied and put under another distribution licence |
| 55 | * [including the GNU Public Licence.] */ |
| 56 | |
| 57 | #ifndef OPENSSL_HEADER_STACK_H |
| 58 | #define OPENSSL_HEADER_STACK_H |
| 59 | |
| 60 | #include <openssl/base.h> |
| 61 | |
| 62 | #include <openssl/type_check.h> |
| 63 | |
| 64 | #if defined(__cplusplus) |
| 65 | extern "C" { |
| 66 | #endif |
| 67 | |
| 68 | |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 69 | // A stack, in OpenSSL, is an array of pointers. They are the most commonly |
| 70 | // used collection object. |
| 71 | // |
| 72 | // This file defines macros for type safe use of the stack functions. A stack |
| 73 | // of a specific type of object has type |STACK_OF(type)|. This can be defined |
| 74 | // (once) with |DEFINE_STACK_OF(type)| and declared where needed with |
| 75 | // |DECLARE_STACK_OF(type)|. For example: |
| 76 | // |
| 77 | // typedef struct foo_st { |
| 78 | // int bar; |
| 79 | // } FOO; |
| 80 | // |
David Benjamin | f109f20 | 2019-02-21 10:49:57 -0600 | [diff] [blame] | 81 | // DEFINE_STACK_OF(FOO) |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 82 | // |
| 83 | // Although note that the stack will contain /pointers/ to |FOO|. |
| 84 | // |
| 85 | // A macro will be defined for each of the sk_* functions below. For |
| 86 | // STACK_OF(FOO), the macros would be sk_FOO_new, sk_FOO_pop etc. |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 87 | |
| 88 | |
David Benjamin | fb4e2e0 | 2018-09-23 15:59:51 -0500 | [diff] [blame] | 89 | // stack_free_func is a function that frees an element in a stack. Note its |
| 90 | // actual type is void (*)(T *) for some T. Low-level |sk_*| functions will be |
| 91 | // passed a type-specific wrapper to call it correctly. |
| 92 | typedef void (*stack_free_func)(void *ptr); |
| 93 | |
| 94 | // stack_copy_func is a function that copies an element in a stack. Note its |
| 95 | // actual type is T *(*)(T *) for some T. Low-level |sk_*| functions will be |
| 96 | // passed a type-specific wrapper to call it correctly. |
| 97 | typedef void *(*stack_copy_func)(void *ptr); |
| 98 | |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 99 | // stack_cmp_func is a comparison function that returns a value < 0, 0 or > 0 |
| 100 | // if |*a| is less than, equal to or greater than |*b|, respectively. Note the |
| 101 | // extra indirection - the function is given a pointer to a pointer to the |
| 102 | // element. This differs from the usual qsort/bsearch comparison function. |
David Benjamin | 5248399 | 2018-09-23 16:31:03 -0500 | [diff] [blame] | 103 | // |
| 104 | // Note its actual type is int (*)(const T **, const T **). Low-level |sk_*| |
| 105 | // functions will be passed a type-specific wrapper to call it correctly. |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 106 | typedef int (*stack_cmp_func)(const void **a, const void **b); |
| 107 | |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 108 | // stack_st contains an array of pointers. It is not designed to be used |
| 109 | // directly, rather the wrapper macros should be used. |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 110 | typedef struct stack_st { |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 111 | // num contains the number of valid pointers in |data|. |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 112 | size_t num; |
| 113 | void **data; |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 114 | // sorted is non-zero if the values pointed to by |data| are in ascending |
| 115 | // order, based on |comp|. |
David Benjamin | 22edd87 | 2016-08-04 21:38:40 +0000 | [diff] [blame] | 116 | int sorted; |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 117 | // num_alloc contains the number of pointers allocated in the buffer pointed |
| 118 | // to by |data|, which may be larger than |num|. |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 119 | size_t num_alloc; |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 120 | // comp is an optional comparison function. |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 121 | stack_cmp_func comp; |
| 122 | } _STACK; |
| 123 | |
| 124 | |
| 125 | #define STACK_OF(type) struct stack_st_##type |
| 126 | |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 127 | #define DECLARE_STACK_OF(type) STACK_OF(type); |
| 128 | |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 129 | // These are the raw stack functions, you shouldn't be using them. Rather you |
| 130 | // should be using the type stack macros implemented above. |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 131 | |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 132 | // sk_new creates a new, empty stack with the given comparison function, which |
| 133 | // may be zero. It returns the new stack or NULL on allocation failure. |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 134 | OPENSSL_EXPORT _STACK *sk_new(stack_cmp_func comp); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 135 | |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 136 | // sk_new_null creates a new, empty stack. It returns the new stack or NULL on |
| 137 | // allocation failure. |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 138 | OPENSSL_EXPORT _STACK *sk_new_null(void); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 139 | |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 140 | // sk_num returns the number of elements in |s|. |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 141 | OPENSSL_EXPORT size_t sk_num(const _STACK *sk); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 142 | |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 143 | // sk_zero resets |sk| to the empty state but does nothing to free the |
| 144 | // individual elements themselves. |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 145 | OPENSSL_EXPORT void sk_zero(_STACK *sk); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 146 | |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 147 | // sk_value returns the |i|th pointer in |sk|, or NULL if |i| is out of |
| 148 | // range. |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 149 | OPENSSL_EXPORT void *sk_value(const _STACK *sk, size_t i); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 150 | |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 151 | // sk_set sets the |i|th pointer in |sk| to |p| and returns |p|. If |i| is out |
| 152 | // of range, it returns NULL. |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 153 | OPENSSL_EXPORT void *sk_set(_STACK *sk, size_t i, void *p); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 154 | |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 155 | // sk_free frees the given stack and array of pointers, but does nothing to |
David Benjamin | fb4e2e0 | 2018-09-23 15:59:51 -0500 | [diff] [blame] | 156 | // free the individual elements. Also see |sk_pop_free_ex|. |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 157 | OPENSSL_EXPORT void sk_free(_STACK *sk); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 158 | |
David Benjamin | fb4e2e0 | 2018-09-23 15:59:51 -0500 | [diff] [blame] | 159 | // sk_pop_free_ex calls |free_func| on each element in the stack and then frees |
| 160 | // the stack itself. Note this corresponds to |sk_FOO_pop_free|. It is named |
| 161 | // |sk_pop_free_ex| as a workaround for existing code calling an older version |
| 162 | // of |sk_pop_free|. |
| 163 | OPENSSL_EXPORT void sk_pop_free_ex(_STACK *sk, |
| 164 | void (*call_free_func)(stack_free_func, |
| 165 | void *), |
| 166 | stack_free_func free_func); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 167 | |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 168 | // sk_insert inserts |p| into the stack at index |where|, moving existing |
| 169 | // elements if needed. It returns the length of the new stack, or zero on |
| 170 | // error. |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 171 | OPENSSL_EXPORT size_t sk_insert(_STACK *sk, void *p, size_t where); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 172 | |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 173 | // sk_delete removes the pointer at index |where|, moving other elements down |
| 174 | // if needed. It returns the removed pointer, or NULL if |where| is out of |
| 175 | // range. |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 176 | OPENSSL_EXPORT void *sk_delete(_STACK *sk, size_t where); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 177 | |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 178 | // sk_delete_ptr removes, at most, one instance of |p| from the stack based on |
| 179 | // pointer equality. If an instance of |p| is found then |p| is returned, |
| 180 | // otherwise it returns NULL. |
David Benjamin | 8d2f4b9 | 2018-09-23 15:11:41 -0500 | [diff] [blame] | 181 | OPENSSL_EXPORT void *sk_delete_ptr(_STACK *sk, const void *p); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 182 | |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 183 | // sk_find returns the first value in the stack equal to |p|. If a comparison |
Steven Valdez | acddb8c | 2018-04-11 12:58:27 -0400 | [diff] [blame] | 184 | // function has been set on the stack, equality is defined by it, otherwise |
| 185 | // pointer equality is used. If the stack is sorted, then a binary search is |
| 186 | // used, otherwise a linear search is performed. If a matching element is found, |
| 187 | // its index is written to |
| 188 | // |*out_index| (if |out_index| is not NULL) and one is returned. Otherwise zero |
| 189 | // is returned. |
| 190 | // |
| 191 | // Note this differs from OpenSSL. The type signature is slightly different, and |
| 192 | // OpenSSL's sk_find will implicitly sort |sk| if it has a comparison function |
| 193 | // defined. |
David Benjamin | 5248399 | 2018-09-23 16:31:03 -0500 | [diff] [blame] | 194 | OPENSSL_EXPORT int sk_find(const _STACK *sk, size_t *out_index, const void *p, |
| 195 | int (*call_cmp_func)(stack_cmp_func, const void **, |
| 196 | const void **)); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 197 | |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 198 | // sk_shift removes and returns the first element in the stack, or returns NULL |
| 199 | // if the stack is empty. |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 200 | OPENSSL_EXPORT void *sk_shift(_STACK *sk); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 201 | |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 202 | // sk_push appends |p| to the stack and returns the length of the new stack, or |
| 203 | // 0 on allocation failure. |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 204 | OPENSSL_EXPORT size_t sk_push(_STACK *sk, void *p); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 205 | |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 206 | // sk_pop returns and removes the last element on the stack, or NULL if the |
| 207 | // stack is empty. |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 208 | OPENSSL_EXPORT void *sk_pop(_STACK *sk); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 209 | |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 210 | // sk_dup performs a shallow copy of a stack and returns the new stack, or NULL |
| 211 | // on error. |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 212 | OPENSSL_EXPORT _STACK *sk_dup(const _STACK *sk); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 213 | |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 214 | // sk_sort sorts the elements of |sk| into ascending order based on the |
| 215 | // comparison function. The stack maintains a |sorted| flag and sorting an |
| 216 | // already sorted stack is a no-op. |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 217 | OPENSSL_EXPORT void sk_sort(_STACK *sk); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 218 | |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 219 | // sk_is_sorted returns one if |sk| is known to be sorted and zero |
| 220 | // otherwise. |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 221 | OPENSSL_EXPORT int sk_is_sorted(const _STACK *sk); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 222 | |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 223 | // sk_set_cmp_func sets the comparison function to be used by |sk| and returns |
| 224 | // the previous one. |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 225 | OPENSSL_EXPORT stack_cmp_func sk_set_cmp_func(_STACK *sk, stack_cmp_func comp); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 226 | |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 227 | // sk_deep_copy performs a copy of |sk| and of each of the non-NULL elements in |
| 228 | // |sk| by using |copy_func|. If an error occurs, |free_func| is used to free |
| 229 | // any copies already made and NULL is returned. |
David Benjamin | fb4e2e0 | 2018-09-23 15:59:51 -0500 | [diff] [blame] | 230 | OPENSSL_EXPORT _STACK *sk_deep_copy( |
| 231 | const _STACK *sk, void *(*call_copy_func)(stack_copy_func, void *), |
| 232 | stack_copy_func copy_func, void (*call_free_func)(stack_free_func, void *), |
| 233 | stack_free_func free_func); |
| 234 | |
| 235 | |
| 236 | // Deprecated functions. |
| 237 | |
| 238 | // sk_pop_free behaves like |sk_pop_free_ex| but performs an invalid function |
| 239 | // pointer cast. It exists because some existing callers called |sk_pop_free| |
| 240 | // directly. |
| 241 | // |
| 242 | // TODO(davidben): Migrate callers to bssl::UniquePtr and remove this. |
| 243 | OPENSSL_EXPORT void sk_pop_free(_STACK *sk, stack_free_func free_func); |
Adam Langley | a1048a7 | 2015-02-11 14:27:21 -0800 | [diff] [blame] | 244 | |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 245 | |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 246 | // Defining stack types. |
| 247 | // |
| 248 | // This set of macros is used to emit the typed functions that act on a |
| 249 | // |STACK_OF(T)|. |
David Benjamin | 01f8a8c | 2017-04-15 18:12:55 -0400 | [diff] [blame] | 250 | |
David Benjamin | 0121953 | 2017-07-25 22:33:06 -0400 | [diff] [blame] | 251 | #if !defined(BORINGSSL_NO_CXX) |
| 252 | extern "C++" { |
Joshua Liebow-Feeser | 8c7c635 | 2018-08-26 18:53:36 -0700 | [diff] [blame] | 253 | BSSL_NAMESPACE_BEGIN |
David Benjamin | 0121953 | 2017-07-25 22:33:06 -0400 | [diff] [blame] | 254 | namespace internal { |
| 255 | template <typename T> |
| 256 | struct StackTraits {}; |
| 257 | } |
Joshua Liebow-Feeser | 8c7c635 | 2018-08-26 18:53:36 -0700 | [diff] [blame] | 258 | BSSL_NAMESPACE_END |
David Benjamin | 0121953 | 2017-07-25 22:33:06 -0400 | [diff] [blame] | 259 | } |
| 260 | |
David Benjamin | ec78383 | 2017-07-25 23:23:03 -0400 | [diff] [blame] | 261 | #define BORINGSSL_DEFINE_STACK_TRAITS(name, type, is_const) \ |
| 262 | extern "C++" { \ |
Joshua Liebow-Feeser | 8c7c635 | 2018-08-26 18:53:36 -0700 | [diff] [blame] | 263 | BSSL_NAMESPACE_BEGIN \ |
David Benjamin | ec78383 | 2017-07-25 23:23:03 -0400 | [diff] [blame] | 264 | namespace internal { \ |
| 265 | template <> \ |
| 266 | struct StackTraits<STACK_OF(name)> { \ |
| 267 | static constexpr bool kIsStack = true; \ |
| 268 | using Type = type; \ |
| 269 | static constexpr bool kIsConst = is_const; \ |
| 270 | }; \ |
| 271 | } \ |
Joshua Liebow-Feeser | 8c7c635 | 2018-08-26 18:53:36 -0700 | [diff] [blame] | 272 | BSSL_NAMESPACE_END \ |
David Benjamin | 0121953 | 2017-07-25 22:33:06 -0400 | [diff] [blame] | 273 | } |
| 274 | |
| 275 | #else |
David Benjamin | ec78383 | 2017-07-25 23:23:03 -0400 | [diff] [blame] | 276 | #define BORINGSSL_DEFINE_STACK_TRAITS(name, type, is_const) |
David Benjamin | 0121953 | 2017-07-25 22:33:06 -0400 | [diff] [blame] | 277 | #endif |
| 278 | |
David Benjamin | 0121953 | 2017-07-25 22:33:06 -0400 | [diff] [blame] | 279 | #define BORINGSSL_DEFINE_STACK_OF_IMPL(name, ptrtype, constptrtype) \ |
Daniel Wagner-Hall | 2fce1be | 2017-11-23 16:22:41 +0000 | [diff] [blame] | 280 | DECLARE_STACK_OF(name) \ |
David Benjamin | 01f8a8c | 2017-04-15 18:12:55 -0400 | [diff] [blame] | 281 | \ |
David Benjamin | fb4e2e0 | 2018-09-23 15:59:51 -0500 | [diff] [blame] | 282 | typedef void (*stack_##name##_free_func)(ptrtype); \ |
| 283 | typedef ptrtype (*stack_##name##_copy_func)(ptrtype); \ |
David Benjamin | 01f8a8c | 2017-04-15 18:12:55 -0400 | [diff] [blame] | 284 | typedef int (*stack_##name##_cmp_func)(constptrtype *a, constptrtype *b); \ |
| 285 | \ |
David Benjamin | a943613 | 2018-09-23 18:36:01 -0500 | [diff] [blame] | 286 | OPENSSL_INLINE void sk_##name##_call_free_func(stack_free_func free_func, \ |
| 287 | void *ptr) { \ |
David Benjamin | fb4e2e0 | 2018-09-23 15:59:51 -0500 | [diff] [blame] | 288 | ((stack_##name##_free_func)free_func)((ptrtype)ptr); \ |
| 289 | } \ |
| 290 | \ |
David Benjamin | a943613 | 2018-09-23 18:36:01 -0500 | [diff] [blame] | 291 | OPENSSL_INLINE void *sk_##name##_call_copy_func(stack_copy_func copy_func, \ |
| 292 | void *ptr) { \ |
David Benjamin | fb4e2e0 | 2018-09-23 15:59:51 -0500 | [diff] [blame] | 293 | return (void *)((stack_##name##_copy_func)copy_func)((ptrtype)ptr); \ |
| 294 | } \ |
| 295 | \ |
David Benjamin | a943613 | 2018-09-23 18:36:01 -0500 | [diff] [blame] | 296 | OPENSSL_INLINE int sk_##name##_call_cmp_func( \ |
David Benjamin | 5248399 | 2018-09-23 16:31:03 -0500 | [diff] [blame] | 297 | stack_cmp_func cmp_func, const void **a, const void **b) { \ |
| 298 | constptrtype a_ptr = (constptrtype)*a; \ |
| 299 | constptrtype b_ptr = (constptrtype)*b; \ |
| 300 | return ((stack_##name##_cmp_func)cmp_func)(&a_ptr, &b_ptr); \ |
| 301 | } \ |
| 302 | \ |
David Benjamin | a943613 | 2018-09-23 18:36:01 -0500 | [diff] [blame] | 303 | OPENSSL_INLINE STACK_OF(name) * \ |
David Benjamin | 01f8a8c | 2017-04-15 18:12:55 -0400 | [diff] [blame] | 304 | sk_##name##_new(stack_##name##_cmp_func comp) { \ |
| 305 | return (STACK_OF(name) *)sk_new((stack_cmp_func)comp); \ |
| 306 | } \ |
| 307 | \ |
David Benjamin | a943613 | 2018-09-23 18:36:01 -0500 | [diff] [blame] | 308 | OPENSSL_INLINE STACK_OF(name) *sk_##name##_new_null(void) { \ |
David Benjamin | 01f8a8c | 2017-04-15 18:12:55 -0400 | [diff] [blame] | 309 | return (STACK_OF(name) *)sk_new_null(); \ |
| 310 | } \ |
| 311 | \ |
David Benjamin | a943613 | 2018-09-23 18:36:01 -0500 | [diff] [blame] | 312 | OPENSSL_INLINE size_t sk_##name##_num(const STACK_OF(name) *sk) { \ |
David Benjamin | 01f8a8c | 2017-04-15 18:12:55 -0400 | [diff] [blame] | 313 | return sk_num((const _STACK *)sk); \ |
| 314 | } \ |
| 315 | \ |
David Benjamin | a943613 | 2018-09-23 18:36:01 -0500 | [diff] [blame] | 316 | OPENSSL_INLINE void sk_##name##_zero(STACK_OF(name) *sk) { \ |
David Benjamin | 01f8a8c | 2017-04-15 18:12:55 -0400 | [diff] [blame] | 317 | sk_zero((_STACK *)sk); \ |
| 318 | } \ |
| 319 | \ |
David Benjamin | a943613 | 2018-09-23 18:36:01 -0500 | [diff] [blame] | 320 | OPENSSL_INLINE ptrtype sk_##name##_value(const STACK_OF(name) *sk, \ |
| 321 | size_t i) { \ |
David Benjamin | 01f8a8c | 2017-04-15 18:12:55 -0400 | [diff] [blame] | 322 | return (ptrtype)sk_value((const _STACK *)sk, i); \ |
| 323 | } \ |
| 324 | \ |
David Benjamin | a943613 | 2018-09-23 18:36:01 -0500 | [diff] [blame] | 325 | OPENSSL_INLINE ptrtype sk_##name##_set(STACK_OF(name) *sk, size_t i, \ |
| 326 | ptrtype p) { \ |
David Benjamin | 01f8a8c | 2017-04-15 18:12:55 -0400 | [diff] [blame] | 327 | return (ptrtype)sk_set((_STACK *)sk, i, (void *)p); \ |
| 328 | } \ |
| 329 | \ |
David Benjamin | a943613 | 2018-09-23 18:36:01 -0500 | [diff] [blame] | 330 | OPENSSL_INLINE void sk_##name##_free(STACK_OF(name) * sk) { \ |
David Benjamin | 01f8a8c | 2017-04-15 18:12:55 -0400 | [diff] [blame] | 331 | sk_free((_STACK *)sk); \ |
| 332 | } \ |
| 333 | \ |
David Benjamin | a943613 | 2018-09-23 18:36:01 -0500 | [diff] [blame] | 334 | OPENSSL_INLINE void sk_##name##_pop_free( \ |
| 335 | STACK_OF(name) * sk, stack_##name##_free_func free_func) { \ |
David Benjamin | fb4e2e0 | 2018-09-23 15:59:51 -0500 | [diff] [blame] | 336 | sk_pop_free_ex((_STACK *)sk, sk_##name##_call_free_func, \ |
| 337 | (stack_free_func)free_func); \ |
David Benjamin | 01f8a8c | 2017-04-15 18:12:55 -0400 | [diff] [blame] | 338 | } \ |
| 339 | \ |
David Benjamin | a943613 | 2018-09-23 18:36:01 -0500 | [diff] [blame] | 340 | OPENSSL_INLINE size_t sk_##name##_insert(STACK_OF(name) *sk, ptrtype p, \ |
| 341 | size_t where) { \ |
David Benjamin | 01f8a8c | 2017-04-15 18:12:55 -0400 | [diff] [blame] | 342 | return sk_insert((_STACK *)sk, (void *)p, where); \ |
| 343 | } \ |
| 344 | \ |
David Benjamin | a943613 | 2018-09-23 18:36:01 -0500 | [diff] [blame] | 345 | OPENSSL_INLINE ptrtype sk_##name##_delete(STACK_OF(name) *sk, \ |
| 346 | size_t where) { \ |
David Benjamin | 01f8a8c | 2017-04-15 18:12:55 -0400 | [diff] [blame] | 347 | return (ptrtype)sk_delete((_STACK *)sk, where); \ |
| 348 | } \ |
| 349 | \ |
David Benjamin | a943613 | 2018-09-23 18:36:01 -0500 | [diff] [blame] | 350 | OPENSSL_INLINE ptrtype sk_##name##_delete_ptr(STACK_OF(name) *sk, \ |
| 351 | constptrtype p) { \ |
David Benjamin | 8d2f4b9 | 2018-09-23 15:11:41 -0500 | [diff] [blame] | 352 | return (ptrtype)sk_delete_ptr((_STACK *)sk, (const void *)p); \ |
David Benjamin | 01f8a8c | 2017-04-15 18:12:55 -0400 | [diff] [blame] | 353 | } \ |
| 354 | \ |
David Benjamin | a943613 | 2018-09-23 18:36:01 -0500 | [diff] [blame] | 355 | OPENSSL_INLINE int sk_##name##_find(const STACK_OF(name) *sk, \ |
| 356 | size_t * out_index, constptrtype p) { \ |
David Benjamin | 5248399 | 2018-09-23 16:31:03 -0500 | [diff] [blame] | 357 | return sk_find((const _STACK *)sk, out_index, (const void *)p, \ |
| 358 | sk_##name##_call_cmp_func); \ |
David Benjamin | 01f8a8c | 2017-04-15 18:12:55 -0400 | [diff] [blame] | 359 | } \ |
| 360 | \ |
David Benjamin | a943613 | 2018-09-23 18:36:01 -0500 | [diff] [blame] | 361 | OPENSSL_INLINE ptrtype sk_##name##_shift(STACK_OF(name) *sk) { \ |
David Benjamin | 01f8a8c | 2017-04-15 18:12:55 -0400 | [diff] [blame] | 362 | return (ptrtype)sk_shift((_STACK *)sk); \ |
| 363 | } \ |
| 364 | \ |
David Benjamin | a943613 | 2018-09-23 18:36:01 -0500 | [diff] [blame] | 365 | OPENSSL_INLINE size_t sk_##name##_push(STACK_OF(name) *sk, ptrtype p) { \ |
David Benjamin | 01f8a8c | 2017-04-15 18:12:55 -0400 | [diff] [blame] | 366 | return sk_push((_STACK *)sk, (void *)p); \ |
| 367 | } \ |
| 368 | \ |
David Benjamin | a943613 | 2018-09-23 18:36:01 -0500 | [diff] [blame] | 369 | OPENSSL_INLINE ptrtype sk_##name##_pop(STACK_OF(name) *sk) { \ |
David Benjamin | 01f8a8c | 2017-04-15 18:12:55 -0400 | [diff] [blame] | 370 | return (ptrtype)sk_pop((_STACK *)sk); \ |
| 371 | } \ |
| 372 | \ |
David Benjamin | a943613 | 2018-09-23 18:36:01 -0500 | [diff] [blame] | 373 | OPENSSL_INLINE STACK_OF(name) * sk_##name##_dup(const STACK_OF(name) *sk) { \ |
David Benjamin | 01f8a8c | 2017-04-15 18:12:55 -0400 | [diff] [blame] | 374 | return (STACK_OF(name) *)sk_dup((const _STACK *)sk); \ |
| 375 | } \ |
| 376 | \ |
David Benjamin | a943613 | 2018-09-23 18:36:01 -0500 | [diff] [blame] | 377 | OPENSSL_INLINE void sk_##name##_sort(STACK_OF(name) *sk) { \ |
David Benjamin | 01f8a8c | 2017-04-15 18:12:55 -0400 | [diff] [blame] | 378 | sk_sort((_STACK *)sk); \ |
| 379 | } \ |
| 380 | \ |
David Benjamin | a943613 | 2018-09-23 18:36:01 -0500 | [diff] [blame] | 381 | OPENSSL_INLINE int sk_##name##_is_sorted(const STACK_OF(name) *sk) { \ |
David Benjamin | 01f8a8c | 2017-04-15 18:12:55 -0400 | [diff] [blame] | 382 | return sk_is_sorted((const _STACK *)sk); \ |
| 383 | } \ |
| 384 | \ |
David Benjamin | a943613 | 2018-09-23 18:36:01 -0500 | [diff] [blame] | 385 | OPENSSL_INLINE stack_##name##_cmp_func sk_##name##_set_cmp_func( \ |
| 386 | STACK_OF(name) *sk, stack_##name##_cmp_func comp) { \ |
David Benjamin | 01f8a8c | 2017-04-15 18:12:55 -0400 | [diff] [blame] | 387 | return (stack_##name##_cmp_func)sk_set_cmp_func((_STACK *)sk, \ |
| 388 | (stack_cmp_func)comp); \ |
| 389 | } \ |
| 390 | \ |
David Benjamin | a943613 | 2018-09-23 18:36:01 -0500 | [diff] [blame] | 391 | OPENSSL_INLINE STACK_OF(name) * \ |
David Benjamin | 01f8a8c | 2017-04-15 18:12:55 -0400 | [diff] [blame] | 392 | sk_##name##_deep_copy(const STACK_OF(name) *sk, \ |
| 393 | ptrtype(*copy_func)(ptrtype), \ |
| 394 | void (*free_func)(ptrtype)) { \ |
David Benjamin | fb4e2e0 | 2018-09-23 15:59:51 -0500 | [diff] [blame] | 395 | return (STACK_OF(name) *)sk_deep_copy( \ |
| 396 | (const _STACK *)sk, sk_##name##_call_copy_func, \ |
| 397 | (stack_copy_func)copy_func, sk_##name##_call_free_func, \ |
| 398 | (stack_free_func)free_func); \ |
David Benjamin | 01f8a8c | 2017-04-15 18:12:55 -0400 | [diff] [blame] | 399 | } |
| 400 | |
David Benjamin | 35b4a12 | 2018-07-14 17:04:41 -0400 | [diff] [blame] | 401 | // DEFINE_NAMED_STACK_OF defines |STACK_OF(name)| to be a stack whose elements |
| 402 | // are |type| *. |
| 403 | #define DEFINE_NAMED_STACK_OF(name, type) \ |
| 404 | BORINGSSL_DEFINE_STACK_OF_IMPL(name, type *, const type *) \ |
| 405 | BORINGSSL_DEFINE_STACK_TRAITS(name, type, false) |
| 406 | |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 407 | // DEFINE_STACK_OF defines |STACK_OF(type)| to be a stack whose elements are |
| 408 | // |type| *. |
David Benjamin | 35b4a12 | 2018-07-14 17:04:41 -0400 | [diff] [blame] | 409 | #define DEFINE_STACK_OF(type) DEFINE_NAMED_STACK_OF(type, type) |
David Benjamin | 01f8a8c | 2017-04-15 18:12:55 -0400 | [diff] [blame] | 410 | |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 411 | // DEFINE_CONST_STACK_OF defines |STACK_OF(type)| to be a stack whose elements |
| 412 | // are const |type| *. |
David Benjamin | ec78383 | 2017-07-25 23:23:03 -0400 | [diff] [blame] | 413 | #define DEFINE_CONST_STACK_OF(type) \ |
David Benjamin | 0121953 | 2017-07-25 22:33:06 -0400 | [diff] [blame] | 414 | BORINGSSL_DEFINE_STACK_OF_IMPL(type, const type *, const type *) \ |
David Benjamin | ec78383 | 2017-07-25 23:23:03 -0400 | [diff] [blame] | 415 | BORINGSSL_DEFINE_STACK_TRAITS(type, const type, true) |
David Benjamin | 01f8a8c | 2017-04-15 18:12:55 -0400 | [diff] [blame] | 416 | |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 417 | // DEFINE_SPECIAL_STACK_OF defines |STACK_OF(type)| to be a stack whose elements |
| 418 | // are |type|, where |type| must be a typedef for a pointer. |
David Benjamin | 5ecfb10 | 2018-10-24 17:08:00 -0500 | [diff] [blame] | 419 | #define DEFINE_SPECIAL_STACK_OF(type) \ |
| 420 | OPENSSL_STATIC_ASSERT(sizeof(type) == sizeof(void *), \ |
| 421 | #type " is not a pointer"); \ |
David Benjamin | 0121953 | 2017-07-25 22:33:06 -0400 | [diff] [blame] | 422 | BORINGSSL_DEFINE_STACK_OF_IMPL(type, type, const type) |
David Benjamin | 01f8a8c | 2017-04-15 18:12:55 -0400 | [diff] [blame] | 423 | |
| 424 | |
| 425 | typedef char *OPENSSL_STRING; |
| 426 | |
| 427 | DEFINE_STACK_OF(void) |
| 428 | DEFINE_SPECIAL_STACK_OF(OPENSSL_STRING) |
| 429 | |
| 430 | |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 431 | #if defined(__cplusplus) |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 432 | } // extern C |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 433 | #endif |
| 434 | |
David Benjamin | 0121953 | 2017-07-25 22:33:06 -0400 | [diff] [blame] | 435 | #if !defined(BORINGSSL_NO_CXX) |
| 436 | extern "C++" { |
| 437 | |
| 438 | #include <type_traits> |
| 439 | |
Joshua Liebow-Feeser | 8c7c635 | 2018-08-26 18:53:36 -0700 | [diff] [blame] | 440 | BSSL_NAMESPACE_BEGIN |
David Benjamin | 0121953 | 2017-07-25 22:33:06 -0400 | [diff] [blame] | 441 | |
| 442 | namespace internal { |
| 443 | |
| 444 | // Stacks defined with |DEFINE_CONST_STACK_OF| are freed with |sk_free|. |
| 445 | template <typename Stack> |
| 446 | struct DeleterImpl< |
| 447 | Stack, typename std::enable_if<StackTraits<Stack>::kIsConst>::type> { |
| 448 | static void Free(Stack *sk) { sk_free(reinterpret_cast<_STACK *>(sk)); } |
| 449 | }; |
| 450 | |
| 451 | // Stacks defined with |DEFINE_STACK_OF| are freed with |sk_pop_free| and the |
| 452 | // corresponding type's deleter. |
| 453 | template <typename Stack> |
| 454 | struct DeleterImpl< |
| 455 | Stack, typename std::enable_if<!StackTraits<Stack>::kIsConst>::type> { |
| 456 | static void Free(Stack *sk) { |
David Benjamin | fb4e2e0 | 2018-09-23 15:59:51 -0500 | [diff] [blame] | 457 | // sk_FOO_pop_free is defined by macros and bound by name, so we cannot |
| 458 | // access it from C++ here. |
| 459 | using Type = typename StackTraits<Stack>::Type; |
| 460 | sk_pop_free_ex(reinterpret_cast<_STACK *>(sk), |
David Benjamin | e1ee0f5 | 2018-10-02 17:11:52 -0500 | [diff] [blame] | 461 | [](stack_free_func /* unused */, void *ptr) { |
David Benjamin | fb4e2e0 | 2018-09-23 15:59:51 -0500 | [diff] [blame] | 462 | DeleterImpl<Type>::Free(reinterpret_cast<Type *>(ptr)); |
| 463 | }, |
| 464 | nullptr); |
David Benjamin | 0121953 | 2017-07-25 22:33:06 -0400 | [diff] [blame] | 465 | } |
| 466 | }; |
| 467 | |
David Benjamin | ec78383 | 2017-07-25 23:23:03 -0400 | [diff] [blame] | 468 | template <typename Stack> |
| 469 | class StackIteratorImpl { |
| 470 | public: |
| 471 | using Type = typename StackTraits<Stack>::Type; |
| 472 | // Iterators must be default-constructable. |
| 473 | StackIteratorImpl() : sk_(nullptr), idx_(0) {} |
| 474 | StackIteratorImpl(const Stack *sk, size_t idx) : sk_(sk), idx_(idx) {} |
| 475 | |
| 476 | bool operator==(StackIteratorImpl other) const { |
| 477 | return sk_ == other.sk_ && idx_ == other.idx_; |
| 478 | } |
| 479 | bool operator!=(StackIteratorImpl other) const { |
| 480 | return !(*this == other); |
| 481 | } |
| 482 | |
| 483 | Type *operator*() const { |
| 484 | return reinterpret_cast<Type *>( |
| 485 | sk_value(reinterpret_cast<const _STACK *>(sk_), idx_)); |
| 486 | } |
| 487 | |
| 488 | StackIteratorImpl &operator++(/* prefix */) { |
| 489 | idx_++; |
| 490 | return *this; |
| 491 | } |
| 492 | |
| 493 | StackIteratorImpl operator++(int /* postfix */) { |
| 494 | StackIteratorImpl copy(*this); |
| 495 | ++(*this); |
| 496 | return copy; |
| 497 | } |
| 498 | |
| 499 | private: |
| 500 | const Stack *sk_; |
| 501 | size_t idx_; |
| 502 | }; |
| 503 | |
| 504 | template <typename Stack> |
| 505 | using StackIterator = typename std::enable_if<StackTraits<Stack>::kIsStack, |
| 506 | StackIteratorImpl<Stack>>::type; |
| 507 | |
David Benjamin | 0121953 | 2017-07-25 22:33:06 -0400 | [diff] [blame] | 508 | } // namespace internal |
| 509 | |
David Benjamin | 6e9321f | 2017-07-25 23:49:58 -0400 | [diff] [blame] | 510 | // PushToStack pushes |elem| to |sk|. It returns true on success and false on |
| 511 | // allocation failure. |
| 512 | template <typename Stack> |
David Benjamin | a943613 | 2018-09-23 18:36:01 -0500 | [diff] [blame] | 513 | inline |
David Benjamin | 6e9321f | 2017-07-25 23:49:58 -0400 | [diff] [blame] | 514 | typename std::enable_if<!internal::StackTraits<Stack>::kIsConst, bool>::type |
| 515 | PushToStack(Stack *sk, |
| 516 | UniquePtr<typename internal::StackTraits<Stack>::Type> elem) { |
| 517 | if (!sk_push(reinterpret_cast<_STACK *>(sk), elem.get())) { |
| 518 | return false; |
| 519 | } |
| 520 | // sk_push takes ownership on success. |
| 521 | elem.release(); |
| 522 | return true; |
| 523 | } |
| 524 | |
Joshua Liebow-Feeser | 8c7c635 | 2018-08-26 18:53:36 -0700 | [diff] [blame] | 525 | BSSL_NAMESPACE_END |
David Benjamin | 0121953 | 2017-07-25 22:33:06 -0400 | [diff] [blame] | 526 | |
David Benjamin | ec78383 | 2017-07-25 23:23:03 -0400 | [diff] [blame] | 527 | // Define begin() and end() for stack types so C++ range for loops work. |
| 528 | template <typename Stack> |
David Benjamin | a943613 | 2018-09-23 18:36:01 -0500 | [diff] [blame] | 529 | inline bssl::internal::StackIterator<Stack> begin(const Stack *sk) { |
David Benjamin | ec78383 | 2017-07-25 23:23:03 -0400 | [diff] [blame] | 530 | return bssl::internal::StackIterator<Stack>(sk, 0); |
| 531 | } |
| 532 | |
| 533 | template <typename Stack> |
David Benjamin | a943613 | 2018-09-23 18:36:01 -0500 | [diff] [blame] | 534 | inline bssl::internal::StackIterator<Stack> end(const Stack *sk) { |
David Benjamin | ec78383 | 2017-07-25 23:23:03 -0400 | [diff] [blame] | 535 | return bssl::internal::StackIterator<Stack>( |
| 536 | sk, sk_num(reinterpret_cast<const _STACK *>(sk))); |
| 537 | } |
| 538 | |
David Benjamin | 0121953 | 2017-07-25 22:33:06 -0400 | [diff] [blame] | 539 | } // extern C++ |
| 540 | #endif |
| 541 | |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 542 | #endif // OPENSSL_HEADER_STACK_H |