Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1 | /* ==================================================================== |
| 2 | * Copyright (c) 1998-2001 The OpenSSL Project. All rights reserved. |
| 3 | * |
| 4 | * Redistribution and use in source and binary forms, with or without |
| 5 | * modification, are permitted provided that the following conditions |
| 6 | * are met: |
| 7 | * |
| 8 | * 1. Redistributions of source code must retain the above copyright |
| 9 | * notice, this list of conditions and the following disclaimer. |
| 10 | * |
| 11 | * 2. Redistributions in binary form must reproduce the above copyright |
| 12 | * notice, this list of conditions and the following disclaimer in |
| 13 | * the documentation and/or other materials provided with the |
| 14 | * distribution. |
| 15 | * |
| 16 | * 3. All advertising materials mentioning features or use of this |
| 17 | * software must display the following acknowledgment: |
| 18 | * "This product includes software developed by the OpenSSL Project |
| 19 | * for use in the OpenSSL Toolkit. (http://www.openssl.org/)" |
| 20 | * |
| 21 | * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to |
| 22 | * endorse or promote products derived from this software without |
| 23 | * prior written permission. For written permission, please contact |
| 24 | * openssl-core@openssl.org. |
| 25 | * |
| 26 | * 5. Products derived from this software may not be called "OpenSSL" |
| 27 | * nor may "OpenSSL" appear in their names without prior written |
| 28 | * permission of the OpenSSL Project. |
| 29 | * |
| 30 | * 6. Redistributions of any form whatsoever must retain the following |
| 31 | * acknowledgment: |
| 32 | * "This product includes software developed by the OpenSSL Project |
| 33 | * for use in the OpenSSL Toolkit (http://www.openssl.org/)" |
| 34 | * |
| 35 | * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY |
| 36 | * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 37 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 38 | * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR |
| 39 | * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 40 | * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 41 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 42 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 43 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, |
| 44 | * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 45 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED |
| 46 | * OF THE POSSIBILITY OF SUCH DAMAGE. |
| 47 | * ==================================================================== |
| 48 | * |
| 49 | * This product includes cryptographic software written by Eric Young |
| 50 | * (eay@cryptsoft.com). This product includes software written by Tim |
| 51 | * Hudson (tjh@cryptsoft.com). */ |
| 52 | |
| 53 | #ifndef OPENSSL_HEADER_BASE_H |
| 54 | #define OPENSSL_HEADER_BASE_H |
| 55 | |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 56 | |
| 57 | /* This file should be the first included by all BoringSSL headers. */ |
| 58 | |
Brian Smith | 054e682 | 2015-03-27 21:12:01 -1000 | [diff] [blame] | 59 | #include <stddef.h> |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 60 | #include <stdint.h> |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 61 | #include <sys/types.h> |
| 62 | |
David Benjamin | 8404bdb | 2016-10-10 14:41:44 -0400 | [diff] [blame] | 63 | #if defined(__MINGW32__) |
| 64 | /* stdio.h is needed on MinGW for __MINGW_PRINTF_FORMAT. */ |
| 65 | #include <stdio.h> |
| 66 | #endif |
| 67 | |
David Benjamin | d403be9 | 2017-04-12 16:28:25 -0400 | [diff] [blame] | 68 | /* Include a BoringSSL-only header so consumers including this header without |
| 69 | * setting up include paths do not accidentally pick up the system |
| 70 | * opensslconf.h. */ |
| 71 | #include <openssl/is_boringssl.h> |
David Benjamin | e593fed | 2016-02-25 11:39:59 -0500 | [diff] [blame] | 72 | #include <openssl/opensslconf.h> |
Piotr Sikora | 987b8f1 | 2014-07-14 19:21:44 -0700 | [diff] [blame] | 73 | |
Steven Valdez | 9980ce1 | 2016-04-14 16:35:26 -0400 | [diff] [blame] | 74 | #if defined(BORINGSSL_PREFIX) |
| 75 | #include <boringssl_prefix_symbols.h> |
| 76 | #endif |
| 77 | |
Adam Langley | b2cb0ec | 2014-09-02 14:28:49 -0700 | [diff] [blame] | 78 | #if defined(__cplusplus) |
| 79 | extern "C" { |
| 80 | #endif |
| 81 | |
| 82 | |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 83 | #if defined(__x86_64) || defined(_M_AMD64) || defined(_M_X64) |
| 84 | #define OPENSSL_64_BIT |
| 85 | #define OPENSSL_X86_64 |
| 86 | #elif defined(__x86) || defined(__i386) || defined(__i386__) || defined(_M_IX86) |
| 87 | #define OPENSSL_32_BIT |
| 88 | #define OPENSSL_X86 |
| 89 | #elif defined(__aarch64__) |
| 90 | #define OPENSSL_64_BIT |
| 91 | #define OPENSSL_AARCH64 |
| 92 | #elif defined(__arm) || defined(__arm__) || defined(_M_ARM) |
| 93 | #define OPENSSL_32_BIT |
| 94 | #define OPENSSL_ARM |
Adam Langley | 4467e59 | 2016-09-23 12:47:24 -0700 | [diff] [blame] | 95 | #elif (defined(__PPC64__) || defined(__powerpc64__)) && defined(_LITTLE_ENDIAN) |
Adam Langley | 3e65265 | 2015-01-09 15:44:37 -0800 | [diff] [blame] | 96 | #define OPENSSL_64_BIT |
Adam Langley | 4467e59 | 2016-09-23 12:47:24 -0700 | [diff] [blame] | 97 | #define OPENSSL_PPC64LE |
Adam Langley | c11e13a | 2015-03-20 16:46:23 -0700 | [diff] [blame] | 98 | #elif defined(__mips__) && !defined(__LP64__) |
Adam Langley | 09020c2 | 2014-07-10 09:14:56 -0700 | [diff] [blame] | 99 | #define OPENSSL_32_BIT |
| 100 | #define OPENSSL_MIPS |
Adam Langley | c11e13a | 2015-03-20 16:46:23 -0700 | [diff] [blame] | 101 | #elif defined(__mips__) && defined(__LP64__) |
| 102 | #define OPENSSL_64_BIT |
| 103 | #define OPENSSL_MIPS64 |
Adam Langley | 0113a4f | 2014-07-10 17:07:14 -0700 | [diff] [blame] | 104 | #elif defined(__pnacl__) |
| 105 | #define OPENSSL_32_BIT |
| 106 | #define OPENSSL_PNACL |
Radu Margarint | 17b6a7f | 2016-07-21 15:46:57 -0700 | [diff] [blame] | 107 | #elif defined(__myriad2__) |
| 108 | #define OPENSSL_32_BIT |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 109 | #else |
| 110 | #error "Unknown target CPU" |
| 111 | #endif |
| 112 | |
Adam Langley | 30eda1d | 2014-06-24 11:15:12 -0700 | [diff] [blame] | 113 | #if defined(__APPLE__) |
| 114 | #define OPENSSL_APPLE |
| 115 | #endif |
| 116 | |
Brian Smith | 8a36e53 | 2015-07-31 16:11:31 -0400 | [diff] [blame] | 117 | #if defined(_WIN32) |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 118 | #define OPENSSL_WINDOWS |
| 119 | #endif |
| 120 | |
Alessandro Ghedini | 5e393fe | 2016-07-09 13:02:18 +0100 | [diff] [blame] | 121 | #if defined(__linux__) |
| 122 | #define OPENSSL_LINUX |
| 123 | #endif |
| 124 | |
Aaron Green | c80e416 | 2017-01-13 11:49:38 -0800 | [diff] [blame] | 125 | #if defined(__Fuchsia__) |
| 126 | #define OPENSSL_FUCHSIA |
| 127 | #endif |
| 128 | |
Adam Langley | 65a7e94 | 2015-05-07 18:28:27 -0700 | [diff] [blame] | 129 | #if defined(TRUSTY) |
| 130 | #define OPENSSL_TRUSTY |
| 131 | #define OPENSSL_NO_THREADS |
| 132 | #endif |
| 133 | |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 134 | #define OPENSSL_IS_BORINGSSL |
David Benjamin | 232127d | 2015-11-19 18:03:32 -0500 | [diff] [blame] | 135 | #define BORINGSSL_201512 |
David Benjamin | fb8e678 | 2016-03-11 14:39:46 -0500 | [diff] [blame] | 136 | #define BORINGSSL_201603 |
Alessandro Ghedini | 0aecbcf | 2016-10-03 17:14:34 +0100 | [diff] [blame] | 137 | #define OPENSSL_VERSION_NUMBER 0x100020af |
Matt Braithwaite | 6454a4c | 2015-07-31 15:57:07 -0700 | [diff] [blame] | 138 | #define SSLEAY_VERSION_NUMBER OPENSSL_VERSION_NUMBER |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 139 | |
David Benjamin | 9d908ba | 2016-05-05 18:54:33 -0400 | [diff] [blame] | 140 | /* BORINGSSL_API_VERSION is a positive integer that increments as BoringSSL |
| 141 | * changes over time. The value itself is not meaningful. It will be incremented |
| 142 | * whenever is convenient to coordinate an API change with consumers. This will |
| 143 | * not denote any special point in development. |
| 144 | * |
| 145 | * A consumer may use this symbol in the preprocessor to temporarily build |
| 146 | * against multiple revisions of BoringSSL at the same time. It is not |
| 147 | * recommended to do so for longer than is necessary. */ |
David Benjamin | 073391f | 2017-05-03 15:03:35 -0400 | [diff] [blame] | 148 | #define BORINGSSL_API_VERSION 4 |
David Benjamin | 9d908ba | 2016-05-05 18:54:33 -0400 | [diff] [blame] | 149 | |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 150 | #if defined(BORINGSSL_SHARED_LIBRARY) |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 151 | |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 152 | #if defined(OPENSSL_WINDOWS) |
| 153 | |
| 154 | #if defined(BORINGSSL_IMPLEMENTATION) |
| 155 | #define OPENSSL_EXPORT __declspec(dllexport) |
| 156 | #else |
| 157 | #define OPENSSL_EXPORT __declspec(dllimport) |
| 158 | #endif |
| 159 | |
| 160 | #else /* defined(OPENSSL_WINDOWS) */ |
| 161 | |
| 162 | #if defined(BORINGSSL_IMPLEMENTATION) |
| 163 | #define OPENSSL_EXPORT __attribute__((visibility("default"))) |
| 164 | #else |
| 165 | #define OPENSSL_EXPORT |
| 166 | #endif |
| 167 | |
| 168 | #endif /* defined(OPENSSL_WINDOWS) */ |
| 169 | |
| 170 | #else /* defined(BORINGSSL_SHARED_LIBRARY) */ |
| 171 | |
| 172 | #define OPENSSL_EXPORT |
| 173 | |
| 174 | #endif /* defined(BORINGSSL_SHARED_LIBRARY) */ |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 175 | |
Brian Smith | 061332f | 2016-01-17 09:30:42 -1000 | [diff] [blame] | 176 | |
| 177 | #if defined(__GNUC__) |
David Benjamin | 8404bdb | 2016-10-10 14:41:44 -0400 | [diff] [blame] | 178 | /* MinGW has two different printf implementations. Ensure the format macro |
| 179 | * matches the selected implementation. See |
| 180 | * https://sourceforge.net/p/mingw-w64/wiki2/gnu%20printf/. */ |
| 181 | #if defined(__MINGW_PRINTF_FORMAT) |
Brian Smith | 061332f | 2016-01-17 09:30:42 -1000 | [diff] [blame] | 182 | #define OPENSSL_PRINTF_FORMAT_FUNC(string_index, first_to_check) \ |
David Benjamin | 8404bdb | 2016-10-10 14:41:44 -0400 | [diff] [blame] | 183 | __attribute__( \ |
| 184 | (__format__(__MINGW_PRINTF_FORMAT, string_index, first_to_check))) |
| 185 | #else |
| 186 | #define OPENSSL_PRINTF_FORMAT_FUNC(string_index, first_to_check) \ |
| 187 | __attribute__((__format__(__printf__, string_index, first_to_check))) |
| 188 | #endif |
Brian Smith | 061332f | 2016-01-17 09:30:42 -1000 | [diff] [blame] | 189 | #else |
| 190 | #define OPENSSL_PRINTF_FORMAT_FUNC(string_index, first_to_check) |
| 191 | #endif |
| 192 | |
David Benjamin | a353cdb | 2016-06-09 16:48:33 -0400 | [diff] [blame] | 193 | /* OPENSSL_MSVC_PRAGMA emits a pragma on MSVC and nothing on other compilers. */ |
| 194 | #if defined(_MSC_VER) |
| 195 | #define OPENSSL_MSVC_PRAGMA(arg) __pragma(arg) |
| 196 | #else |
| 197 | #define OPENSSL_MSVC_PRAGMA(arg) |
| 198 | #endif |
| 199 | |
David Benjamin | 14c7e8d | 2016-11-09 17:57:31 -0500 | [diff] [blame] | 200 | #if defined(BORINGSSL_UNSAFE_FUZZER_MODE) && \ |
| 201 | !defined(BORINGSSL_UNSAFE_DETERMINISTIC_MODE) |
| 202 | #define BORINGSSL_UNSAFE_DETERMINISTIC_MODE |
| 203 | #endif |
Brian Smith | 061332f | 2016-01-17 09:30:42 -1000 | [diff] [blame] | 204 | |
Adam Langley | 208e239 | 2017-05-08 12:53:15 -0700 | [diff] [blame^] | 205 | #if defined(__has_feature) |
| 206 | #if __has_feature(address_sanitizer) |
| 207 | #define OPENSSL_ASAN |
| 208 | #endif |
| 209 | #endif |
| 210 | |
David Benjamin | f0df86a | 2015-04-20 11:32:12 -0400 | [diff] [blame] | 211 | /* CRYPTO_THREADID is a dummy value. */ |
| 212 | typedef int CRYPTO_THREADID; |
| 213 | |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 214 | typedef int ASN1_BOOLEAN; |
| 215 | typedef int ASN1_NULL; |
| 216 | typedef struct ASN1_ITEM_st ASN1_ITEM; |
| 217 | typedef struct asn1_object_st ASN1_OBJECT; |
| 218 | typedef struct asn1_pctx_st ASN1_PCTX; |
| 219 | typedef struct asn1_string_st ASN1_BIT_STRING; |
| 220 | typedef struct asn1_string_st ASN1_BMPSTRING; |
| 221 | typedef struct asn1_string_st ASN1_ENUMERATED; |
| 222 | typedef struct asn1_string_st ASN1_GENERALIZEDTIME; |
| 223 | typedef struct asn1_string_st ASN1_GENERALSTRING; |
| 224 | typedef struct asn1_string_st ASN1_IA5STRING; |
| 225 | typedef struct asn1_string_st ASN1_INTEGER; |
| 226 | typedef struct asn1_string_st ASN1_OCTET_STRING; |
| 227 | typedef struct asn1_string_st ASN1_PRINTABLESTRING; |
| 228 | typedef struct asn1_string_st ASN1_STRING; |
| 229 | typedef struct asn1_string_st ASN1_T61STRING; |
| 230 | typedef struct asn1_string_st ASN1_TIME; |
| 231 | typedef struct asn1_string_st ASN1_UNIVERSALSTRING; |
| 232 | typedef struct asn1_string_st ASN1_UTCTIME; |
| 233 | typedef struct asn1_string_st ASN1_UTF8STRING; |
| 234 | typedef struct asn1_string_st ASN1_VISIBLESTRING; |
Matt Braithwaite | d17d74d | 2016-08-17 20:10:28 -0700 | [diff] [blame] | 235 | typedef struct asn1_type_st ASN1_TYPE; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 236 | typedef struct AUTHORITY_KEYID_st AUTHORITY_KEYID; |
Matt Braithwaite | b9afd51 | 2016-07-19 12:41:35 -0700 | [diff] [blame] | 237 | typedef struct BASIC_CONSTRAINTS_st BASIC_CONSTRAINTS; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 238 | typedef struct DIST_POINT_st DIST_POINT; |
Matt Braithwaite | b9afd51 | 2016-07-19 12:41:35 -0700 | [diff] [blame] | 239 | typedef struct DSA_SIG_st DSA_SIG; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 240 | typedef struct ISSUING_DIST_POINT_st ISSUING_DIST_POINT; |
| 241 | typedef struct NAME_CONSTRAINTS_st NAME_CONSTRAINTS; |
Matt Braithwaite | 16f774f | 2015-08-03 14:14:14 -0700 | [diff] [blame] | 242 | typedef struct Netscape_certificate_sequence NETSCAPE_CERT_SEQUENCE; |
| 243 | typedef struct Netscape_spkac_st NETSCAPE_SPKAC; |
| 244 | typedef struct Netscape_spki_st NETSCAPE_SPKI; |
Adam Langley | ff452c1 | 2016-03-08 14:17:02 -0800 | [diff] [blame] | 245 | typedef struct RIPEMD160state_st RIPEMD160_CTX; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 246 | typedef struct X509_POLICY_CACHE_st X509_POLICY_CACHE; |
| 247 | typedef struct X509_POLICY_LEVEL_st X509_POLICY_LEVEL; |
| 248 | typedef struct X509_POLICY_NODE_st X509_POLICY_NODE; |
| 249 | typedef struct X509_POLICY_TREE_st X509_POLICY_TREE; |
Matt Braithwaite | b9afd51 | 2016-07-19 12:41:35 -0700 | [diff] [blame] | 250 | typedef struct X509_VERIFY_PARAM_st X509_VERIFY_PARAM; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 251 | typedef struct X509_algor_st X509_ALGOR; |
Matt Braithwaite | 16f774f | 2015-08-03 14:14:14 -0700 | [diff] [blame] | 252 | typedef struct X509_crl_info_st X509_CRL_INFO; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 253 | typedef struct X509_crl_st X509_CRL; |
Matt Braithwaite | 16f774f | 2015-08-03 14:14:14 -0700 | [diff] [blame] | 254 | typedef struct X509_extension_st X509_EXTENSION; |
| 255 | typedef struct X509_info_st X509_INFO; |
| 256 | typedef struct X509_name_entry_st X509_NAME_ENTRY; |
| 257 | typedef struct X509_name_st X509_NAME; |
| 258 | typedef struct X509_objects_st X509_OBJECTS; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 259 | typedef struct X509_pubkey_st X509_PUBKEY; |
Matt Braithwaite | 16f774f | 2015-08-03 14:14:14 -0700 | [diff] [blame] | 260 | typedef struct X509_req_info_st X509_REQ_INFO; |
| 261 | typedef struct X509_req_st X509_REQ; |
| 262 | typedef struct X509_sig_st X509_SIG; |
| 263 | typedef struct X509_val_st X509_VAL; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 264 | typedef struct bignum_ctx BN_CTX; |
| 265 | typedef struct bignum_st BIGNUM; |
| 266 | typedef struct bio_method_st BIO_METHOD; |
| 267 | typedef struct bio_st BIO; |
| 268 | typedef struct bn_gencb_st BN_GENCB; |
| 269 | typedef struct bn_mont_ctx_st BN_MONT_CTX; |
| 270 | typedef struct buf_mem_st BUF_MEM; |
| 271 | typedef struct cbb_st CBB; |
| 272 | typedef struct cbs_st CBS; |
Adam Langley | 0d107e1 | 2015-05-05 16:36:32 -0700 | [diff] [blame] | 273 | typedef struct cmac_ctx_st CMAC_CTX; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 274 | typedef struct conf_st CONF; |
Brian Smith | 054e682 | 2015-03-27 21:12:01 -1000 | [diff] [blame] | 275 | typedef struct conf_value_st CONF_VALUE; |
Adam Langley | 9ef99d5 | 2016-10-25 17:33:49 -0700 | [diff] [blame] | 276 | typedef struct crypto_buffer_pool_st CRYPTO_BUFFER_POOL; |
| 277 | typedef struct crypto_buffer_st CRYPTO_BUFFER; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 278 | typedef struct dh_st DH; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 279 | typedef struct dsa_st DSA; |
Matt Braithwaite | b9afd51 | 2016-07-19 12:41:35 -0700 | [diff] [blame] | 280 | typedef struct ec_group_st EC_GROUP; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 281 | typedef struct ec_key_st EC_KEY; |
Matt Braithwaite | b9afd51 | 2016-07-19 12:41:35 -0700 | [diff] [blame] | 282 | typedef struct ec_point_st EC_POINT; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 283 | typedef struct ecdsa_method_st ECDSA_METHOD; |
| 284 | typedef struct ecdsa_sig_st ECDSA_SIG; |
| 285 | typedef struct engine_st ENGINE; |
| 286 | typedef struct env_md_ctx_st EVP_MD_CTX; |
| 287 | typedef struct env_md_st EVP_MD; |
Adam Langley | fd772a5 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 288 | typedef struct evp_aead_st EVP_AEAD; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 289 | typedef struct evp_cipher_ctx_st EVP_CIPHER_CTX; |
| 290 | typedef struct evp_cipher_st EVP_CIPHER; |
David Benjamin | 97a3393 | 2015-09-19 15:17:34 -0400 | [diff] [blame] | 291 | typedef struct evp_encode_ctx_st EVP_ENCODE_CTX; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 292 | typedef struct evp_pkey_asn1_method_st EVP_PKEY_ASN1_METHOD; |
| 293 | typedef struct evp_pkey_ctx_st EVP_PKEY_CTX; |
| 294 | typedef struct evp_pkey_method_st EVP_PKEY_METHOD; |
| 295 | typedef struct evp_pkey_st EVP_PKEY; |
| 296 | typedef struct hmac_ctx_st HMAC_CTX; |
Adam Langley | c9eb7ea | 2014-08-22 11:06:14 -0700 | [diff] [blame] | 297 | typedef struct md4_state_st MD4_CTX; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 298 | typedef struct md5_state_st MD5_CTX; |
Adam Langley | 5127db3 | 2014-09-19 10:49:56 -0700 | [diff] [blame] | 299 | typedef struct pkcs12_st PKCS12; |
Matt Braithwaite | 16f774f | 2015-08-03 14:14:14 -0700 | [diff] [blame] | 300 | typedef struct pkcs8_priv_key_info_st PKCS8_PRIV_KEY_INFO; |
| 301 | typedef struct private_key_st X509_PKEY; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 302 | typedef struct rand_meth_st RAND_METHOD; |
Adam Langley | 3f92d21 | 2015-02-20 15:32:52 -0800 | [diff] [blame] | 303 | typedef struct rc4_key_st RC4_KEY; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 304 | typedef struct rsa_meth_st RSA_METHOD; |
| 305 | typedef struct rsa_st RSA; |
| 306 | typedef struct sha256_state_st SHA256_CTX; |
| 307 | typedef struct sha512_state_st SHA512_CTX; |
| 308 | typedef struct sha_state_st SHA_CTX; |
Arnar Birgisson | f27459e | 2016-02-09 18:09:00 -0800 | [diff] [blame] | 309 | typedef struct spake2_ctx_st SPAKE2_CTX; |
David Benjamin | cfd65b6 | 2015-09-14 01:54:44 -0400 | [diff] [blame] | 310 | typedef struct srtp_protection_profile_st SRTP_PROTECTION_PROFILE; |
David Benjamin | 79c117a | 2015-09-13 13:53:19 -0400 | [diff] [blame] | 311 | typedef struct ssl_cipher_st SSL_CIPHER; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 312 | typedef struct ssl_ctx_st SSL_CTX; |
Adam Langley | 0950563 | 2015-07-30 18:10:13 -0700 | [diff] [blame] | 313 | typedef struct ssl_custom_extension SSL_CUSTOM_EXTENSION; |
David Benjamin | 79c117a | 2015-09-13 13:53:19 -0400 | [diff] [blame] | 314 | typedef struct ssl_method_st SSL_METHOD; |
Adam Langley | d04ca95 | 2017-02-28 11:26:51 -0800 | [diff] [blame] | 315 | typedef struct ssl_private_key_method_st SSL_PRIVATE_KEY_METHOD; |
David Benjamin | a6b8cdf | 2015-09-13 14:07:33 -0400 | [diff] [blame] | 316 | typedef struct ssl_session_st SSL_SESSION; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 317 | typedef struct ssl_st SSL; |
Adam Langley | 4c341d0 | 2017-03-08 19:33:21 -0800 | [diff] [blame] | 318 | typedef struct ssl_ticket_aead_method_st SSL_TICKET_AEAD_METHOD; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 319 | typedef struct st_ERR_FNS ERR_FNS; |
| 320 | typedef struct v3_ext_ctx X509V3_CTX; |
Matt Braithwaite | 16f774f | 2015-08-03 14:14:14 -0700 | [diff] [blame] | 321 | typedef struct x509_attributes_st X509_ATTRIBUTE; |
| 322 | typedef struct x509_cert_aux_st X509_CERT_AUX; |
| 323 | typedef struct x509_cert_pair_st X509_CERT_PAIR; |
| 324 | typedef struct x509_cinf_st X509_CINF; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 325 | typedef struct x509_crl_method_st X509_CRL_METHOD; |
Matt Braithwaite | d17d74d | 2016-08-17 20:10:28 -0700 | [diff] [blame] | 326 | typedef struct x509_lookup_st X509_LOOKUP; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 327 | typedef struct x509_revoked_st X509_REVOKED; |
| 328 | typedef struct x509_st X509; |
| 329 | typedef struct x509_store_ctx_st X509_STORE_CTX; |
| 330 | typedef struct x509_store_st X509_STORE; |
Matt Braithwaite | 16f774f | 2015-08-03 14:14:14 -0700 | [diff] [blame] | 331 | typedef struct x509_trust_st X509_TRUST; |
| 332 | |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 333 | typedef void *OPENSSL_BLOCK; |
| 334 | |
| 335 | |
Adam Langley | b2cb0ec | 2014-09-02 14:28:49 -0700 | [diff] [blame] | 336 | #if defined(__cplusplus) |
| 337 | } /* extern C */ |
Matt Braithwaite | d17d74d | 2016-08-17 20:10:28 -0700 | [diff] [blame] | 338 | |
Matt Braithwaite | d17d74d | 2016-08-17 20:10:28 -0700 | [diff] [blame] | 339 | // MSVC doesn't set __cplusplus to 201103 to indicate C++11 support (see |
| 340 | // https://connect.microsoft.com/VisualStudio/feedback/details/763051/a-value-of-predefined-macro-cplusplus-is-still-199711l) |
| 341 | // so MSVC is just assumed to support C++11. |
David Benjamin | f0e935d | 2016-09-06 18:10:19 -0400 | [diff] [blame] | 342 | #if !defined(BORINGSSL_NO_CXX) && __cplusplus < 201103L && !defined(_MSC_VER) |
| 343 | #define BORINGSSL_NO_CXX |
| 344 | #endif |
| 345 | |
David Benjamin | 3e5619d | 2016-09-07 17:28:59 -0400 | [diff] [blame] | 346 | #if !defined(BORINGSSL_NO_CXX) |
| 347 | extern "C++" { |
| 348 | |
| 349 | #include <memory> |
| 350 | |
| 351 | // STLPort, used by some Android consumers, not have std::unique_ptr. |
| 352 | #if defined(_STLPORT_VERSION) |
| 353 | #define BORINGSSL_NO_CXX |
| 354 | #endif |
| 355 | |
| 356 | } // extern C++ |
| 357 | #endif // !BORINGSSL_NO_CXX |
| 358 | |
David Benjamin | f0e935d | 2016-09-06 18:10:19 -0400 | [diff] [blame] | 359 | #if defined(BORINGSSL_NO_CXX) |
Matt Braithwaite | d17d74d | 2016-08-17 20:10:28 -0700 | [diff] [blame] | 360 | |
| 361 | #define BORINGSSL_MAKE_DELETER(type, deleter) |
| 362 | #define BORINGSSL_MAKE_STACK_DELETER(type, deleter) |
| 363 | |
| 364 | #else |
| 365 | |
David Benjamin | f0e935d | 2016-09-06 18:10:19 -0400 | [diff] [blame] | 366 | extern "C++" { |
| 367 | |
Matt Braithwaite | d17d74d | 2016-08-17 20:10:28 -0700 | [diff] [blame] | 368 | #include <memory> |
| 369 | |
| 370 | namespace bssl { |
| 371 | |
| 372 | namespace internal { |
| 373 | |
David Benjamin | 4709203 | 2016-09-09 14:54:10 -0400 | [diff] [blame] | 374 | template <typename T> |
| 375 | struct DeleterImpl {}; |
| 376 | |
| 377 | template <typename T> |
| 378 | struct Deleter { |
| 379 | void operator()(T *ptr) { |
| 380 | // Rather than specialize Deleter for each type, we specialize |
| 381 | // DeleterImpl. This allows bssl::UniquePtr<T> to be used while only |
| 382 | // including base.h as long as the destructor is not emitted. This matches |
| 383 | // std::unique_ptr's behavior on forward-declared types. |
| 384 | // |
| 385 | // DeleterImpl itself is specialized in the corresponding module's header |
| 386 | // and must be included to release an object. If not included, the compiler |
| 387 | // will error that DeleterImpl<T> does not have a method Free. |
| 388 | DeleterImpl<T>::Free(ptr); |
| 389 | } |
| 390 | }; |
Matt Braithwaite | d17d74d | 2016-08-17 20:10:28 -0700 | [diff] [blame] | 391 | |
David Benjamin | f0e935d | 2016-09-06 18:10:19 -0400 | [diff] [blame] | 392 | template <typename T, typename CleanupRet, void (*init)(T *), |
| 393 | CleanupRet (*cleanup)(T *)> |
| 394 | class StackAllocated { |
| 395 | public: |
| 396 | StackAllocated() { init(&ctx_); } |
| 397 | ~StackAllocated() { cleanup(&ctx_); } |
| 398 | |
Matthew Braithwaite | 1b0bd28 | 2016-09-27 13:25:32 -0700 | [diff] [blame] | 399 | StackAllocated(const StackAllocated<T, CleanupRet, init, cleanup> &) = delete; |
| 400 | T& operator=(const StackAllocated<T, CleanupRet, init, cleanup> &) = delete; |
| 401 | |
David Benjamin | f0e935d | 2016-09-06 18:10:19 -0400 | [diff] [blame] | 402 | T *get() { return &ctx_; } |
| 403 | const T *get() const { return &ctx_; } |
| 404 | |
| 405 | void Reset() { |
| 406 | cleanup(&ctx_); |
| 407 | init(&ctx_); |
| 408 | } |
| 409 | |
| 410 | private: |
| 411 | T ctx_; |
| 412 | }; |
| 413 | |
| 414 | } // namespace internal |
| 415 | |
David Benjamin | 4709203 | 2016-09-09 14:54:10 -0400 | [diff] [blame] | 416 | #define BORINGSSL_MAKE_DELETER(type, deleter) \ |
| 417 | namespace internal { \ |
| 418 | template <> \ |
| 419 | struct DeleterImpl<type> { \ |
| 420 | static void Free(type *ptr) { deleter(ptr); } \ |
| 421 | }; \ |
David Benjamin | f0e935d | 2016-09-06 18:10:19 -0400 | [diff] [blame] | 422 | } |
Matt Braithwaite | d17d74d | 2016-08-17 20:10:28 -0700 | [diff] [blame] | 423 | |
| 424 | // This makes a unique_ptr to STACK_OF(type) that owns all elements on the |
| 425 | // stack, i.e. it uses sk_pop_free() to clean up. |
David Benjamin | 4709203 | 2016-09-09 14:54:10 -0400 | [diff] [blame] | 426 | #define BORINGSSL_MAKE_STACK_DELETER(type, deleter) \ |
David Benjamin | f0e935d | 2016-09-06 18:10:19 -0400 | [diff] [blame] | 427 | namespace internal { \ |
David Benjamin | 4709203 | 2016-09-09 14:54:10 -0400 | [diff] [blame] | 428 | template <> \ |
| 429 | struct DeleterImpl<STACK_OF(type)> { \ |
| 430 | static void Free(STACK_OF(type) *ptr) { \ |
| 431 | sk_##type##_pop_free(ptr, deleter); \ |
| 432 | } \ |
| 433 | }; \ |
David Benjamin | f0e935d | 2016-09-06 18:10:19 -0400 | [diff] [blame] | 434 | } |
Matt Braithwaite | d17d74d | 2016-08-17 20:10:28 -0700 | [diff] [blame] | 435 | |
| 436 | // Holds ownership of heap-allocated BoringSSL structures. Sample usage: |
David Benjamin | 8ee0d14 | 2017-05-02 09:54:05 -0400 | [diff] [blame] | 437 | // bssl::UniquePtr<RSA> rsa(RSA_new()); |
Matt Braithwaite | d17d74d | 2016-08-17 20:10:28 -0700 | [diff] [blame] | 438 | // bssl::UniquePtr<BIO> bio(BIO_new(BIO_s_mem())); |
| 439 | template <typename T> |
| 440 | using UniquePtr = std::unique_ptr<T, internal::Deleter<T>>; |
| 441 | |
| 442 | } // namespace bssl |
| 443 | |
Matt Braithwaite | d17d74d | 2016-08-17 20:10:28 -0700 | [diff] [blame] | 444 | } /* extern C++ */ |
| 445 | |
David Benjamin | f0e935d | 2016-09-06 18:10:19 -0400 | [diff] [blame] | 446 | #endif // !BORINGSSL_NO_CXX |
| 447 | |
Adam Langley | b2cb0ec | 2014-09-02 14:28:49 -0700 | [diff] [blame] | 448 | #endif |
| 449 | |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 450 | #endif /* OPENSSL_HEADER_BASE_H */ |