GCC Code Coverage Report
Directory: ./ Exec Total Coverage
File: crypto/crypto_context.h Lines: 3 4 75.0 %
Date: 2022-05-22 04:15:48 Branches: 0 0 - %

Line Branch Exec Source
1
#ifndef SRC_CRYPTO_CRYPTO_CONTEXT_H_
2
#define SRC_CRYPTO_CRYPTO_CONTEXT_H_
3
4
#if defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS
5
6
#include "crypto/crypto_util.h"
7
#include "base_object.h"
8
#include "env.h"
9
#include "memory_tracker.h"
10
#include "v8.h"
11
12
namespace node {
13
namespace crypto {
14
// A maxVersion of 0 means "any", but OpenSSL may support TLS versions that
15
// Node.js doesn't, so pin the max to what we do support.
16
constexpr int kMaxSupportedVersion = TLS1_3_VERSION;
17
18
void GetRootCertificates(
19
    const v8::FunctionCallbackInfo<v8::Value>& args);
20
21
void IsExtraRootCertsFileLoaded(
22
    const v8::FunctionCallbackInfo<v8::Value>& args);
23
24
X509_STORE* NewRootCertStore();
25
26
BIOPointer LoadBIO(Environment* env, v8::Local<v8::Value> v);
27
28
class SecureContext final : public BaseObject {
29
 public:
30
  using GetSessionCb = SSL_SESSION* (*)(SSL*, const unsigned char*, int, int*);
31
  using KeylogCb = void (*)(const SSL*, const char*);
32
  using NewSessionCb = int (*)(SSL*, SSL_SESSION*);
33
  using SelectSNIContextCb = int (*)(SSL*, int*, void*);
34
35
  ~SecureContext() override;
36
37
  static bool HasInstance(Environment* env, const v8::Local<v8::Value>& value);
38
  static v8::Local<v8::FunctionTemplate> GetConstructorTemplate(
39
      Environment* env);
40
  static void Initialize(Environment* env, v8::Local<v8::Object> target);
41
  static void RegisterExternalReferences(ExternalReferenceRegistry* registry);
42
  static SecureContext* Create(Environment* env);
43
44
  SSL_CTX* ssl_ctx() const { return ctx_.get(); }
45
46
  SSLPointer CreateSSL();
47
48
  void SetGetSessionCallback(GetSessionCb cb);
49
  void SetKeylogCallback(KeylogCb cb);
50
  void SetNewSessionCallback(NewSessionCb cb);
51
  void SetSelectSNIContextCallback(SelectSNIContextCb cb);
52
53
  // TODO(joyeecheung): track the memory used by OpenSSL types
54
1
  SET_NO_MEMORY_INFO()
55
1
  SET_MEMORY_INFO_NAME(SecureContext)
56
1
  SET_SELF_SIZE(SecureContext)
57
58
  SSLCtxPointer ctx_;
59
  X509Pointer cert_;
60
  X509Pointer issuer_;
61
#ifndef OPENSSL_NO_ENGINE
62
  bool client_cert_engine_provided_ = false;
63
  EnginePointer private_key_engine_;
64
#endif  // !OPENSSL_NO_ENGINE
65
66
  static const int kMaxSessionSize = 10 * 1024;
67
68
  // See TicketKeyCallback
69
  static const int kTicketKeyReturnIndex = 0;
70
  static const int kTicketKeyHMACIndex = 1;
71
  static const int kTicketKeyAESIndex = 2;
72
  static const int kTicketKeyNameIndex = 3;
73
  static const int kTicketKeyIVIndex = 4;
74
75
  unsigned char ticket_key_name_[16];
76
  unsigned char ticket_key_aes_[16];
77
  unsigned char ticket_key_hmac_[16];
78
79
 protected:
80
  // OpenSSL structures are opaque. This is sizeof(SSL_CTX) for OpenSSL 1.1.1b:
81
  static const int64_t kExternalSize = 1024;
82
83
  static void New(const v8::FunctionCallbackInfo<v8::Value>& args);
84
  static void Init(const v8::FunctionCallbackInfo<v8::Value>& args);
85
  static void SetKey(const v8::FunctionCallbackInfo<v8::Value>& args);
86
#ifndef OPENSSL_NO_ENGINE
87
  static void SetEngineKey(const v8::FunctionCallbackInfo<v8::Value>& args);
88
#endif  // !OPENSSL_NO_ENGINE
89
  static void SetCert(const v8::FunctionCallbackInfo<v8::Value>& args);
90
  static void AddCACert(const v8::FunctionCallbackInfo<v8::Value>& args);
91
  static void AddCRL(const v8::FunctionCallbackInfo<v8::Value>& args);
92
  static void AddRootCerts(const v8::FunctionCallbackInfo<v8::Value>& args);
93
  static void SetCipherSuites(const v8::FunctionCallbackInfo<v8::Value>& args);
94
  static void SetCiphers(const v8::FunctionCallbackInfo<v8::Value>& args);
95
  static void SetSigalgs(const v8::FunctionCallbackInfo<v8::Value>& args);
96
  static void SetECDHCurve(const v8::FunctionCallbackInfo<v8::Value>& args);
97
  static void SetDHParam(const v8::FunctionCallbackInfo<v8::Value>& args);
98
  static void SetOptions(const v8::FunctionCallbackInfo<v8::Value>& args);
99
  static void SetSessionIdContext(
100
      const v8::FunctionCallbackInfo<v8::Value>& args);
101
  static void SetSessionTimeout(
102
      const v8::FunctionCallbackInfo<v8::Value>& args);
103
  static void SetMinProto(const v8::FunctionCallbackInfo<v8::Value>& args);
104
  static void SetMaxProto(const v8::FunctionCallbackInfo<v8::Value>& args);
105
  static void GetMinProto(const v8::FunctionCallbackInfo<v8::Value>& args);
106
  static void GetMaxProto(const v8::FunctionCallbackInfo<v8::Value>& args);
107
  static void Close(const v8::FunctionCallbackInfo<v8::Value>& args);
108
  static void LoadPKCS12(const v8::FunctionCallbackInfo<v8::Value>& args);
109
#ifndef OPENSSL_NO_ENGINE
110
  static void SetClientCertEngine(
111
      const v8::FunctionCallbackInfo<v8::Value>& args);
112
#endif  // !OPENSSL_NO_ENGINE
113
  static void GetTicketKeys(const v8::FunctionCallbackInfo<v8::Value>& args);
114
  static void SetTicketKeys(const v8::FunctionCallbackInfo<v8::Value>& args);
115
  static void SetFreeListLength(
116
      const v8::FunctionCallbackInfo<v8::Value>& args);
117
  static void EnableTicketKeyCallback(
118
      const v8::FunctionCallbackInfo<v8::Value>& args);
119
  static void CtxGetter(const v8::FunctionCallbackInfo<v8::Value>& info);
120
121
  template <bool primary>
122
  static void GetCertificate(const v8::FunctionCallbackInfo<v8::Value>& args);
123
124
  static int TicketKeyCallback(SSL* ssl,
125
                               unsigned char* name,
126
                               unsigned char* iv,
127
                               EVP_CIPHER_CTX* ectx,
128
                               HMAC_CTX* hctx,
129
                               int enc);
130
131
  static int TicketCompatibilityCallback(SSL* ssl,
132
                                         unsigned char* name,
133
                                         unsigned char* iv,
134
                                         EVP_CIPHER_CTX* ectx,
135
                                         HMAC_CTX* hctx,
136
                                         int enc);
137
138
  SecureContext(Environment* env, v8::Local<v8::Object> wrap);
139
  void Reset();
140
};
141
142
}  // namespace crypto
143
}  // namespace node
144
145
#endif  // defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS
146
#endif  // SRC_CRYPTO_CRYPTO_CONTEXT_H_