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 SecureContext* Create(Environment* env); |
42 |
|
|
|
43 |
|
|
SSL_CTX* operator*() const { return ctx_.get(); } |
44 |
|
|
|
45 |
|
|
SSL_CTX* ssl_ctx() const { return ctx_.get(); } |
46 |
|
|
|
47 |
|
|
SSLPointer CreateSSL(); |
48 |
|
|
|
49 |
|
|
void SetGetSessionCallback(GetSessionCb cb); |
50 |
|
|
void SetKeylogCallback(KeylogCb cb); |
51 |
|
|
void SetNewSessionCallback(NewSessionCb cb); |
52 |
|
|
void SetSelectSNIContextCallback(SelectSNIContextCb cb); |
53 |
|
|
|
54 |
|
|
// TODO(joyeecheung): track the memory used by OpenSSL types |
55 |
|
1 |
SET_NO_MEMORY_INFO() |
56 |
|
1 |
SET_MEMORY_INFO_NAME(SecureContext) |
57 |
|
1 |
SET_SELF_SIZE(SecureContext) |
58 |
|
|
|
59 |
|
|
SSLCtxPointer ctx_; |
60 |
|
|
X509Pointer cert_; |
61 |
|
|
X509Pointer issuer_; |
62 |
|
|
#ifndef OPENSSL_NO_ENGINE |
63 |
|
|
bool client_cert_engine_provided_ = false; |
64 |
|
|
EnginePointer private_key_engine_; |
65 |
|
|
#endif // !OPENSSL_NO_ENGINE |
66 |
|
|
|
67 |
|
|
static const int kMaxSessionSize = 10 * 1024; |
68 |
|
|
|
69 |
|
|
// See TicketKeyCallback |
70 |
|
|
static const int kTicketKeyReturnIndex = 0; |
71 |
|
|
static const int kTicketKeyHMACIndex = 1; |
72 |
|
|
static const int kTicketKeyAESIndex = 2; |
73 |
|
|
static const int kTicketKeyNameIndex = 3; |
74 |
|
|
static const int kTicketKeyIVIndex = 4; |
75 |
|
|
|
76 |
|
|
unsigned char ticket_key_name_[16]; |
77 |
|
|
unsigned char ticket_key_aes_[16]; |
78 |
|
|
unsigned char ticket_key_hmac_[16]; |
79 |
|
|
|
80 |
|
|
protected: |
81 |
|
|
// OpenSSL structures are opaque. This is sizeof(SSL_CTX) for OpenSSL 1.1.1b: |
82 |
|
|
static const int64_t kExternalSize = 1024; |
83 |
|
|
|
84 |
|
|
static void New(const v8::FunctionCallbackInfo<v8::Value>& args); |
85 |
|
|
static void Init(const v8::FunctionCallbackInfo<v8::Value>& args); |
86 |
|
|
static void SetKey(const v8::FunctionCallbackInfo<v8::Value>& args); |
87 |
|
|
#ifndef OPENSSL_NO_ENGINE |
88 |
|
|
static void SetEngineKey(const v8::FunctionCallbackInfo<v8::Value>& args); |
89 |
|
|
#endif // !OPENSSL_NO_ENGINE |
90 |
|
|
static void SetCert(const v8::FunctionCallbackInfo<v8::Value>& args); |
91 |
|
|
static void AddCACert(const v8::FunctionCallbackInfo<v8::Value>& args); |
92 |
|
|
static void AddCRL(const v8::FunctionCallbackInfo<v8::Value>& args); |
93 |
|
|
static void AddRootCerts(const v8::FunctionCallbackInfo<v8::Value>& args); |
94 |
|
|
static void SetCipherSuites(const v8::FunctionCallbackInfo<v8::Value>& args); |
95 |
|
|
static void SetCiphers(const v8::FunctionCallbackInfo<v8::Value>& args); |
96 |
|
|
static void SetSigalgs(const v8::FunctionCallbackInfo<v8::Value>& args); |
97 |
|
|
static void SetECDHCurve(const v8::FunctionCallbackInfo<v8::Value>& args); |
98 |
|
|
static void SetDHParam(const v8::FunctionCallbackInfo<v8::Value>& args); |
99 |
|
|
static void SetOptions(const v8::FunctionCallbackInfo<v8::Value>& args); |
100 |
|
|
static void SetSessionIdContext( |
101 |
|
|
const v8::FunctionCallbackInfo<v8::Value>& args); |
102 |
|
|
static void SetSessionTimeout( |
103 |
|
|
const v8::FunctionCallbackInfo<v8::Value>& args); |
104 |
|
|
static void SetMinProto(const v8::FunctionCallbackInfo<v8::Value>& args); |
105 |
|
|
static void SetMaxProto(const v8::FunctionCallbackInfo<v8::Value>& args); |
106 |
|
|
static void GetMinProto(const v8::FunctionCallbackInfo<v8::Value>& args); |
107 |
|
|
static void GetMaxProto(const v8::FunctionCallbackInfo<v8::Value>& args); |
108 |
|
|
static void Close(const v8::FunctionCallbackInfo<v8::Value>& args); |
109 |
|
|
static void LoadPKCS12(const v8::FunctionCallbackInfo<v8::Value>& args); |
110 |
|
|
#ifndef OPENSSL_NO_ENGINE |
111 |
|
|
static void SetClientCertEngine( |
112 |
|
|
const v8::FunctionCallbackInfo<v8::Value>& args); |
113 |
|
|
#endif // !OPENSSL_NO_ENGINE |
114 |
|
|
static void GetTicketKeys(const v8::FunctionCallbackInfo<v8::Value>& args); |
115 |
|
|
static void SetTicketKeys(const v8::FunctionCallbackInfo<v8::Value>& args); |
116 |
|
|
static void SetFreeListLength( |
117 |
|
|
const v8::FunctionCallbackInfo<v8::Value>& args); |
118 |
|
|
static void EnableTicketKeyCallback( |
119 |
|
|
const v8::FunctionCallbackInfo<v8::Value>& args); |
120 |
|
|
static void CtxGetter(const v8::FunctionCallbackInfo<v8::Value>& info); |
121 |
|
|
|
122 |
|
|
template <bool primary> |
123 |
|
|
static void GetCertificate(const v8::FunctionCallbackInfo<v8::Value>& args); |
124 |
|
|
|
125 |
|
|
static int TicketKeyCallback(SSL* ssl, |
126 |
|
|
unsigned char* name, |
127 |
|
|
unsigned char* iv, |
128 |
|
|
EVP_CIPHER_CTX* ectx, |
129 |
|
|
HMAC_CTX* hctx, |
130 |
|
|
int enc); |
131 |
|
|
|
132 |
|
|
static int TicketCompatibilityCallback(SSL* ssl, |
133 |
|
|
unsigned char* name, |
134 |
|
|
unsigned char* iv, |
135 |
|
|
EVP_CIPHER_CTX* ectx, |
136 |
|
|
HMAC_CTX* hctx, |
137 |
|
|
int enc); |
138 |
|
|
|
139 |
|
|
SecureContext(Environment* env, v8::Local<v8::Object> wrap); |
140 |
|
|
void Reset(); |
141 |
|
|
}; |
142 |
|
|
|
143 |
|
|
} // namespace crypto |
144 |
|
|
} // namespace node |
145 |
|
|
|
146 |
|
|
#endif // defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS |
147 |
|
|
#endif // SRC_CRYPTO_CRYPTO_CONTEXT_H_ |