base.h 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. /*
  2. * Copyright 1998-2001 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. #ifndef OSSL_TEST_SHIM_INCLUDE_OPENSSL_BASE_H
  10. #define OSSL_TEST_SHIM_INCLUDE_OPENSSL_BASE_H
  11. /* Needed for BORINGSSL_MAKE_DELETER */
  12. # include <openssl/bio.h>
  13. # include <openssl/evp.h>
  14. # include <openssl/dh.h>
  15. # include <openssl/x509.h>
  16. # include <openssl/ssl.h>
  17. # define OPENSSL_ARRAY_SIZE(array) (sizeof(array) / sizeof((array)[0]))
  18. extern "C++" {
  19. #include <memory>
  20. namespace bssl {
  21. namespace internal {
  22. template <typename T>
  23. struct DeleterImpl {};
  24. template <typename T>
  25. struct Deleter {
  26. void operator()(T *ptr) {
  27. // Rather than specialize Deleter for each type, we specialize
  28. // DeleterImpl. This allows bssl::UniquePtr<T> to be used while only
  29. // including base.h as long as the destructor is not emitted. This matches
  30. // std::unique_ptr's behavior on forward-declared types.
  31. //
  32. // DeleterImpl itself is specialized in the corresponding module's header
  33. // and must be included to release an object. If not included, the compiler
  34. // will error that DeleterImpl<T> does not have a method Free.
  35. DeleterImpl<T>::Free(ptr);
  36. }
  37. };
  38. template <typename T, typename CleanupRet, void (*init)(T *),
  39. CleanupRet (*cleanup)(T *)>
  40. class StackAllocated {
  41. public:
  42. StackAllocated() { init(&ctx_); }
  43. ~StackAllocated() { cleanup(&ctx_); }
  44. StackAllocated(const StackAllocated<T, CleanupRet, init, cleanup> &) = delete;
  45. T& operator=(const StackAllocated<T, CleanupRet, init, cleanup> &) = delete;
  46. T *get() { return &ctx_; }
  47. const T *get() const { return &ctx_; }
  48. void Reset() {
  49. cleanup(&ctx_);
  50. init(&ctx_);
  51. }
  52. private:
  53. T ctx_;
  54. };
  55. } // namespace internal
  56. #define BORINGSSL_MAKE_DELETER(type, deleter) \
  57. namespace internal { \
  58. template <> \
  59. struct DeleterImpl<type> { \
  60. static void Free(type *ptr) { deleter(ptr); } \
  61. }; \
  62. }
  63. // This makes a unique_ptr to STACK_OF(type) that owns all elements on the
  64. // stack, i.e. it uses sk_pop_free() to clean up.
  65. #define BORINGSSL_MAKE_STACK_DELETER(type, deleter) \
  66. namespace internal { \
  67. template <> \
  68. struct DeleterImpl<STACK_OF(type)> { \
  69. static void Free(STACK_OF(type) *ptr) { \
  70. sk_##type##_pop_free(ptr, deleter); \
  71. } \
  72. }; \
  73. }
  74. // Holds ownership of heap-allocated BoringSSL structures. Sample usage:
  75. // bssl::UniquePtr<BIO> rsa(RSA_new());
  76. // bssl::UniquePtr<BIO> bio(BIO_new(BIO_s_mem()));
  77. template <typename T>
  78. using UniquePtr = std::unique_ptr<T, internal::Deleter<T>>;
  79. BORINGSSL_MAKE_DELETER(BIO, BIO_free)
  80. BORINGSSL_MAKE_DELETER(EVP_PKEY, EVP_PKEY_free)
  81. BORINGSSL_MAKE_DELETER(DH, DH_free)
  82. BORINGSSL_MAKE_DELETER(X509, X509_free)
  83. BORINGSSL_MAKE_DELETER(SSL, SSL_free)
  84. BORINGSSL_MAKE_DELETER(SSL_CTX, SSL_CTX_free)
  85. BORINGSSL_MAKE_DELETER(SSL_SESSION, SSL_SESSION_free)
  86. } // namespace bssl
  87. } /* extern C++ */
  88. #endif /* OSSL_TEST_SHIM_INCLUDE_OPENSSL_BASE_H */