base.h 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468
  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. #ifndef OPENSSL_HEADER_BASE_H
  53. #define OPENSSL_HEADER_BASE_H
  54. #define OPENSSL_NO_ASM
  55. // This file should be the first included by all BoringSSL headers.
  56. #include <stddef.h>
  57. #include <stdint.h>
  58. #include <sys/types.h>
  59. #if defined(__MINGW32__)
  60. // stdio.h is needed on MinGW for __MINGW_PRINTF_FORMAT.
  61. #include <stdio.h>
  62. #endif
  63. // Include a BoringSSL-only header so consumers including this header without
  64. // setting up include paths do not accidentally pick up the system
  65. // opensslconf.h.
  66. #include <openssl/is_boringssl.h>
  67. #include <openssl/opensslconf.h>
  68. #if defined(BORINGSSL_PREFIX)
  69. #include <boringssl_prefix_symbols.h>
  70. #endif
  71. #if defined(__cplusplus)
  72. extern "C" {
  73. #endif
  74. #if defined(__x86_64) || defined(_M_AMD64) || defined(_M_X64)
  75. #define OPENSSL_64_BIT
  76. #define OPENSSL_X86_64
  77. #elif defined(__x86) || defined(__i386) || defined(__i386__) || defined(_M_IX86)
  78. #define OPENSSL_32_BIT
  79. #define OPENSSL_X86
  80. #elif defined(__aarch64__)
  81. #define OPENSSL_64_BIT
  82. #define OPENSSL_AARCH64
  83. #elif defined(__arm) || defined(__arm__) || defined(_M_ARM)
  84. #define OPENSSL_32_BIT
  85. #define OPENSSL_ARM
  86. #elif (defined(__PPC64__) || defined(__powerpc64__)) && defined(_LITTLE_ENDIAN)
  87. #define OPENSSL_64_BIT
  88. #define OPENSSL_PPC64LE
  89. #elif defined(__mips__) && !defined(__LP64__)
  90. #define OPENSSL_32_BIT
  91. #define OPENSSL_MIPS
  92. #elif defined(__mips__) && defined(__LP64__)
  93. #define OPENSSL_64_BIT
  94. #define OPENSSL_MIPS64
  95. #elif defined(__pnacl__)
  96. #define OPENSSL_32_BIT
  97. #define OPENSSL_PNACL
  98. #elif defined(__myriad2__)
  99. #define OPENSSL_32_BIT
  100. #else
  101. // Note BoringSSL only supports standard 32-bit and 64-bit two's-complement,
  102. // little-endian architectures. Functions will not produce the correct answer
  103. // on other systems. Run the crypto_test binary, notably
  104. // crypto/compiler_test.cc, before adding a new architecture.
  105. #error "Unknown target CPU"
  106. #endif
  107. #if defined(__APPLE__)
  108. #define OPENSSL_APPLE
  109. #endif
  110. #if defined(_WIN32)
  111. #define OPENSSL_WINDOWS
  112. #endif
  113. #if defined(__linux__)
  114. #define OPENSSL_LINUX
  115. #endif
  116. #if defined(__Fuchsia__)
  117. #define OPENSSL_FUCHSIA
  118. #endif
  119. #if defined(TRUSTY)
  120. #define OPENSSL_TRUSTY
  121. #define OPENSSL_NO_THREADS
  122. #endif
  123. #if !defined(OPENSSL_NO_THREADS)
  124. #define OPENSSL_THREADS
  125. #endif
  126. #define OPENSSL_IS_BORINGSSL
  127. #define OPENSSL_VERSION_NUMBER 0x1010007f
  128. #define SSLEAY_VERSION_NUMBER OPENSSL_VERSION_NUMBER
  129. // BORINGSSL_API_VERSION is a positive integer that increments as BoringSSL
  130. // changes over time. The value itself is not meaningful. It will be incremented
  131. // whenever is convenient to coordinate an API change with consumers. This will
  132. // not denote any special point in development.
  133. //
  134. // A consumer may use this symbol in the preprocessor to temporarily build
  135. // against multiple revisions of BoringSSL at the same time. It is not
  136. // recommended to do so for longer than is necessary.
  137. #define BORINGSSL_API_VERSION 6
  138. #if defined(BORINGSSL_SHARED_LIBRARY)
  139. #if defined(OPENSSL_WINDOWS)
  140. #if defined(BORINGSSL_IMPLEMENTATION)
  141. #define OPENSSL_EXPORT __declspec(dllexport)
  142. #else
  143. #define OPENSSL_EXPORT __declspec(dllimport)
  144. #endif
  145. #else // defined(OPENSSL_WINDOWS)
  146. #if defined(BORINGSSL_IMPLEMENTATION)
  147. #define OPENSSL_EXPORT __attribute__((visibility("default")))
  148. #else
  149. #define OPENSSL_EXPORT
  150. #endif
  151. #endif // defined(OPENSSL_WINDOWS)
  152. #else // defined(BORINGSSL_SHARED_LIBRARY)
  153. #define OPENSSL_EXPORT
  154. #endif // defined(BORINGSSL_SHARED_LIBRARY)
  155. #if defined(__GNUC__) || defined(__clang__)
  156. // MinGW has two different printf implementations. Ensure the format macro
  157. // matches the selected implementation. See
  158. // https://sourceforge.net/p/mingw-w64/wiki2/gnu%20printf/.
  159. #if defined(__MINGW_PRINTF_FORMAT)
  160. #define OPENSSL_PRINTF_FORMAT_FUNC(string_index, first_to_check) \
  161. __attribute__( \
  162. (__format__(__MINGW_PRINTF_FORMAT, string_index, first_to_check)))
  163. #else
  164. #define OPENSSL_PRINTF_FORMAT_FUNC(string_index, first_to_check) \
  165. __attribute__((__format__(__printf__, string_index, first_to_check)))
  166. #endif
  167. #else
  168. #define OPENSSL_PRINTF_FORMAT_FUNC(string_index, first_to_check)
  169. #endif
  170. // OPENSSL_MSVC_PRAGMA emits a pragma on MSVC and nothing on other compilers.
  171. #if defined(_MSC_VER)
  172. #define OPENSSL_MSVC_PRAGMA(arg) __pragma(arg)
  173. #else
  174. #define OPENSSL_MSVC_PRAGMA(arg)
  175. #endif
  176. #if defined(__GNUC__) || defined(__clang__)
  177. #define OPENSSL_UNUSED __attribute__((unused))
  178. #else
  179. #define OPENSSL_UNUSED
  180. #endif
  181. #if defined(BORINGSSL_UNSAFE_FUZZER_MODE) && \
  182. !defined(BORINGSSL_UNSAFE_DETERMINISTIC_MODE)
  183. #define BORINGSSL_UNSAFE_DETERMINISTIC_MODE
  184. #endif
  185. #if defined(__has_feature)
  186. #if __has_feature(address_sanitizer)
  187. #define OPENSSL_ASAN
  188. #endif
  189. #if __has_feature(memory_sanitizer)
  190. #define OPENSSL_MSAN
  191. #endif
  192. #endif
  193. // Have a generic fall-through for different versions of C/C++.
  194. #if defined(__cplusplus) && __cplusplus >= 201703L
  195. #define OPENSSL_FALLTHROUGH [[fallthrough]]
  196. #elif defined(__cplusplus) && __cplusplus >= 201103L && defined(__clang__)
  197. #define OPENSSL_FALLTHROUGH [[clang::fallthrough]]
  198. #elif defined(__cplusplus) && __cplusplus >= 201103L && __GNUC__ >= 7
  199. #define OPENSSL_FALLTHROUGH [[gnu::fallthrough]]
  200. #elif __GNUC__ >= 7 // gcc 7
  201. #define OPENSSL_FALLTHROUGH __attribute__ ((fallthrough))
  202. #else // C++11 on gcc 6, and all other cases
  203. #define OPENSSL_FALLTHROUGH
  204. #endif
  205. // CRYPTO_THREADID is a dummy value.
  206. typedef int CRYPTO_THREADID;
  207. typedef int ASN1_BOOLEAN;
  208. typedef int ASN1_NULL;
  209. typedef struct ASN1_ITEM_st ASN1_ITEM;
  210. typedef struct asn1_object_st ASN1_OBJECT;
  211. typedef struct asn1_pctx_st ASN1_PCTX;
  212. typedef struct asn1_string_st ASN1_BIT_STRING;
  213. typedef struct asn1_string_st ASN1_BMPSTRING;
  214. typedef struct asn1_string_st ASN1_ENUMERATED;
  215. typedef struct asn1_string_st ASN1_GENERALIZEDTIME;
  216. typedef struct asn1_string_st ASN1_GENERALSTRING;
  217. typedef struct asn1_string_st ASN1_IA5STRING;
  218. typedef struct asn1_string_st ASN1_INTEGER;
  219. typedef struct asn1_string_st ASN1_OCTET_STRING;
  220. typedef struct asn1_string_st ASN1_PRINTABLESTRING;
  221. typedef struct asn1_string_st ASN1_STRING;
  222. typedef struct asn1_string_st ASN1_T61STRING;
  223. typedef struct asn1_string_st ASN1_TIME;
  224. typedef struct asn1_string_st ASN1_UNIVERSALSTRING;
  225. typedef struct asn1_string_st ASN1_UTCTIME;
  226. typedef struct asn1_string_st ASN1_UTF8STRING;
  227. typedef struct asn1_string_st ASN1_VISIBLESTRING;
  228. typedef struct asn1_type_st ASN1_TYPE;
  229. typedef struct AUTHORITY_KEYID_st AUTHORITY_KEYID;
  230. typedef struct BASIC_CONSTRAINTS_st BASIC_CONSTRAINTS;
  231. typedef struct DIST_POINT_st DIST_POINT;
  232. typedef struct DSA_SIG_st DSA_SIG;
  233. typedef struct ISSUING_DIST_POINT_st ISSUING_DIST_POINT;
  234. typedef struct NAME_CONSTRAINTS_st NAME_CONSTRAINTS;
  235. typedef struct Netscape_spkac_st NETSCAPE_SPKAC;
  236. typedef struct Netscape_spki_st NETSCAPE_SPKI;
  237. typedef struct RIPEMD160state_st RIPEMD160_CTX;
  238. typedef struct X509_POLICY_CACHE_st X509_POLICY_CACHE;
  239. typedef struct X509_POLICY_LEVEL_st X509_POLICY_LEVEL;
  240. typedef struct X509_POLICY_NODE_st X509_POLICY_NODE;
  241. typedef struct X509_POLICY_TREE_st X509_POLICY_TREE;
  242. typedef struct X509_VERIFY_PARAM_st X509_VERIFY_PARAM;
  243. typedef struct X509_algor_st X509_ALGOR;
  244. typedef struct X509_crl_info_st X509_CRL_INFO;
  245. typedef struct X509_crl_st X509_CRL;
  246. typedef struct X509_extension_st X509_EXTENSION;
  247. typedef struct X509_info_st X509_INFO;
  248. typedef struct X509_name_entry_st X509_NAME_ENTRY;
  249. typedef struct X509_name_st X509_NAME;
  250. typedef struct X509_pubkey_st X509_PUBKEY;
  251. typedef struct X509_req_info_st X509_REQ_INFO;
  252. typedef struct X509_req_st X509_REQ;
  253. typedef struct X509_sig_st X509_SIG;
  254. typedef struct X509_val_st X509_VAL;
  255. typedef struct bignum_ctx BN_CTX;
  256. typedef struct bignum_st BIGNUM;
  257. typedef struct bio_method_st BIO_METHOD;
  258. typedef struct bio_st BIO;
  259. typedef struct bn_gencb_st BN_GENCB;
  260. typedef struct bn_mont_ctx_st BN_MONT_CTX;
  261. typedef struct buf_mem_st BUF_MEM;
  262. typedef struct cbb_st CBB;
  263. typedef struct cbs_st CBS;
  264. typedef struct cmac_ctx_st CMAC_CTX;
  265. typedef struct conf_st CONF;
  266. typedef struct conf_value_st CONF_VALUE;
  267. typedef struct crypto_buffer_pool_st CRYPTO_BUFFER_POOL;
  268. typedef struct crypto_buffer_st CRYPTO_BUFFER;
  269. typedef struct dh_st DH;
  270. typedef struct dsa_st DSA;
  271. typedef struct ec_group_st EC_GROUP;
  272. typedef struct ec_key_st EC_KEY;
  273. typedef struct ec_point_st EC_POINT;
  274. typedef struct ecdsa_method_st ECDSA_METHOD;
  275. typedef struct ecdsa_sig_st ECDSA_SIG;
  276. typedef struct engine_st ENGINE;
  277. typedef struct env_md_ctx_st EVP_MD_CTX;
  278. typedef struct env_md_st EVP_MD;
  279. typedef struct evp_aead_st EVP_AEAD;
  280. typedef struct evp_cipher_ctx_st EVP_CIPHER_CTX;
  281. typedef struct evp_cipher_st EVP_CIPHER;
  282. typedef struct evp_encode_ctx_st EVP_ENCODE_CTX;
  283. typedef struct evp_pkey_asn1_method_st EVP_PKEY_ASN1_METHOD;
  284. typedef struct evp_pkey_ctx_st EVP_PKEY_CTX;
  285. typedef struct evp_pkey_method_st EVP_PKEY_METHOD;
  286. typedef struct evp_pkey_st EVP_PKEY;
  287. typedef struct hmac_ctx_st HMAC_CTX;
  288. typedef struct md4_state_st MD4_CTX;
  289. typedef struct md5_state_st MD5_CTX;
  290. typedef struct ossl_init_settings_st OPENSSL_INIT_SETTINGS;
  291. typedef struct pkcs12_st PKCS12;
  292. typedef struct pkcs8_priv_key_info_st PKCS8_PRIV_KEY_INFO;
  293. typedef struct private_key_st X509_PKEY;
  294. typedef struct rand_meth_st RAND_METHOD;
  295. typedef struct rc4_key_st RC4_KEY;
  296. typedef struct rsa_meth_st RSA_METHOD;
  297. typedef struct rsa_st RSA;
  298. typedef struct sha256_state_st SHA256_CTX;
  299. typedef struct sha512_state_st SHA512_CTX;
  300. typedef struct sha_state_st SHA_CTX;
  301. typedef struct spake2_ctx_st SPAKE2_CTX;
  302. typedef struct srtp_protection_profile_st SRTP_PROTECTION_PROFILE;
  303. typedef struct ssl_cipher_st SSL_CIPHER;
  304. typedef struct ssl_ctx_st SSL_CTX;
  305. typedef struct ssl_method_st SSL_METHOD;
  306. typedef struct ssl_private_key_method_st SSL_PRIVATE_KEY_METHOD;
  307. typedef struct ssl_session_st SSL_SESSION;
  308. typedef struct ssl_st SSL;
  309. typedef struct ssl_ticket_aead_method_st SSL_TICKET_AEAD_METHOD;
  310. typedef struct st_ERR_FNS ERR_FNS;
  311. typedef struct v3_ext_ctx X509V3_CTX;
  312. typedef struct x509_attributes_st X509_ATTRIBUTE;
  313. typedef struct x509_cert_aux_st X509_CERT_AUX;
  314. typedef struct x509_cinf_st X509_CINF;
  315. typedef struct x509_crl_method_st X509_CRL_METHOD;
  316. typedef struct x509_lookup_st X509_LOOKUP;
  317. typedef struct x509_revoked_st X509_REVOKED;
  318. typedef struct x509_st X509;
  319. typedef struct x509_store_ctx_st X509_STORE_CTX;
  320. typedef struct x509_store_st X509_STORE;
  321. typedef struct x509_trust_st X509_TRUST;
  322. typedef void *OPENSSL_BLOCK;
  323. #if defined(__cplusplus)
  324. } // extern C
  325. #elif !defined(BORINGSSL_NO_CXX)
  326. #define BORINGSSL_NO_CXX
  327. #endif
  328. // MSVC doesn't set __cplusplus to 201103 to indicate C++11 support (see
  329. // https://connect.microsoft.com/VisualStudio/feedback/details/763051/a-value-of-predefined-macro-cplusplus-is-still-199711l)
  330. // so MSVC is just assumed to support C++11.
  331. #if !defined(BORINGSSL_NO_CXX) && __cplusplus < 201103L && !defined(_MSC_VER)
  332. #define BORINGSSL_NO_CXX
  333. #endif
  334. #if !defined(BORINGSSL_NO_CXX)
  335. extern "C++" {
  336. #include <memory>
  337. // STLPort, used by some Android consumers, not have std::unique_ptr.
  338. #if defined(_STLPORT_VERSION)
  339. #define BORINGSSL_NO_CXX
  340. #endif
  341. } // extern C++
  342. #endif // !BORINGSSL_NO_CXX
  343. #if defined(BORINGSSL_NO_CXX)
  344. #define BORINGSSL_MAKE_DELETER(type, deleter)
  345. #else
  346. extern "C++" {
  347. namespace bssl {
  348. namespace internal {
  349. // The Enable parameter is ignored and only exists so specializations can use
  350. // SFINAE.
  351. template <typename T, typename Enable = void>
  352. struct DeleterImpl {};
  353. template <typename T>
  354. struct Deleter {
  355. void operator()(T *ptr) {
  356. // Rather than specialize Deleter for each type, we specialize
  357. // DeleterImpl. This allows bssl::UniquePtr<T> to be used while only
  358. // including base.h as long as the destructor is not emitted. This matches
  359. // std::unique_ptr's behavior on forward-declared types.
  360. //
  361. // DeleterImpl itself is specialized in the corresponding module's header
  362. // and must be included to release an object. If not included, the compiler
  363. // will error that DeleterImpl<T> does not have a method Free.
  364. DeleterImpl<T>::Free(ptr);
  365. }
  366. };
  367. template <typename T, typename CleanupRet, void (*init)(T *),
  368. CleanupRet (*cleanup)(T *)>
  369. class StackAllocated {
  370. public:
  371. StackAllocated() { init(&ctx_); }
  372. ~StackAllocated() { cleanup(&ctx_); }
  373. StackAllocated(const StackAllocated<T, CleanupRet, init, cleanup> &) = delete;
  374. T& operator=(const StackAllocated<T, CleanupRet, init, cleanup> &) = delete;
  375. T *get() { return &ctx_; }
  376. const T *get() const { return &ctx_; }
  377. T *operator->() { return &ctx_; }
  378. const T *operator->() const { return &ctx_; }
  379. void Reset() {
  380. cleanup(&ctx_);
  381. init(&ctx_);
  382. }
  383. private:
  384. T ctx_;
  385. };
  386. } // namespace internal
  387. #define BORINGSSL_MAKE_DELETER(type, deleter) \
  388. namespace internal { \
  389. template <> \
  390. struct DeleterImpl<type> { \
  391. static void Free(type *ptr) { deleter(ptr); } \
  392. }; \
  393. }
  394. // Holds ownership of heap-allocated BoringSSL structures. Sample usage:
  395. // bssl::UniquePtr<RSA> rsa(RSA_new());
  396. // bssl::UniquePtr<BIO> bio(BIO_new(BIO_s_mem()));
  397. template <typename T>
  398. using UniquePtr = std::unique_ptr<T, internal::Deleter<T>>;
  399. } // namespace bssl
  400. } // extern C++
  401. #endif // !BORINGSSL_NO_CXX
  402. #endif // OPENSSL_HEADER_BASE_H