@encharm/cws 4.4.0 → 4.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bindings/cws_linux_x64_node108.node +0 -0
- package/dist/bindings/cws_linux_x64_node115.node +0 -0
- package/dist/bindings/cws_linux_x64_node83.node +0 -0
- package/dist/bindings/cws_linux_x64_node93.node +0 -0
- package/package.json +1 -1
- package/src/Addon.h +12 -1
- package/src/headers/20/acorn_version.h +1 -1
- package/src/headers/20/connection_wrap.h +1 -0
- package/src/headers/20/crypto/crypto_keys.h +3 -0
- package/src/headers/20/crypto/crypto_tls.h +12 -3
- package/src/headers/20/crypto/crypto_util.h +3 -2
- package/src/headers/20/env_properties.h +3 -1
- package/src/headers/20/js_native_api.h +11 -1
- package/src/headers/20/js_native_api_v8.h +40 -3
- package/src/headers/20/js_native_api_v8_internals.h +6 -0
- package/src/headers/20/module_wrap.h +1 -1
- package/src/headers/20/node.h +2 -0
- package/src/headers/20/node_api.h +8 -7
- package/src/headers/20/node_constants.h +3 -0
- package/src/headers/20/node_contextify.h +24 -0
- package/src/headers/20/node_file-inl.h +32 -0
- package/src/headers/20/node_file.h +25 -12
- package/src/headers/20/node_options.h +9 -9
- package/src/headers/20/node_version.h +1 -1
- package/src/headers/20/permission/child_process_permission.h +2 -1
- package/src/headers/20/permission/fs_permission.h +11 -9
- package/src/headers/20/permission/inspector_permission.h +29 -0
- package/src/headers/20/permission/permission.h +4 -1
- package/src/headers/20/permission/permission_base.h +6 -2
- package/src/headers/20/permission/worker_permission.h +2 -1
- package/src/headers/20/tracing/node_trace_buffer.h +83 -0
- package/src/headers/20/tracing/node_trace_writer.h +75 -0
- package/src/headers/20/tracing/traced_value.h +70 -0
- package/src/headers/20/undici_version.h +2 -2
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
package/src/Addon.h
CHANGED
|
@@ -331,12 +331,23 @@ void upgrade(const FunctionCallbackInfo<Value> &args) {
|
|
|
331
331
|
NativeString secKey(isolate, args[2]);
|
|
332
332
|
NativeString extensions(isolate, args[3]);
|
|
333
333
|
NativeString subprotocol(isolate, args[4]);
|
|
334
|
-
|
|
335
334
|
// todo: move this check into core!
|
|
336
335
|
if (ticket->fd != INVALID_SOCKET) {
|
|
336
|
+
/*
|
|
337
|
+
This is required for ui_uring support
|
|
338
|
+
TODO: investigate further. My theory is that the original FD is set up for IO uring.
|
|
339
|
+
We need to clone the FD to set the same socket for epoll.
|
|
340
|
+
*/
|
|
341
|
+
#if defined(__linux) && NODE_MAJOR_VERSION >= 20
|
|
342
|
+
int oldFd = ticket->fd;
|
|
343
|
+
ticket->fd = dup(ticket->fd);
|
|
344
|
+
#endif
|
|
337
345
|
hub.upgrade(ticket->fd, secKey.getData(), ticket->ssl, extensions.getData(),
|
|
338
346
|
extensions.getLength(), subprotocol.getData(),
|
|
339
347
|
subprotocol.getLength(), serverGroup);
|
|
348
|
+
#if defined(__linux) && NODE_MAJOR_VERSION >= 20
|
|
349
|
+
close(oldFd);
|
|
350
|
+
#endif
|
|
340
351
|
} else {
|
|
341
352
|
if (ticket->ssl) {
|
|
342
353
|
SSL_free(ticket->ssl);
|
|
@@ -15,6 +15,7 @@ class ConnectionWrap : public LibuvStreamWrap {
|
|
|
15
15
|
static void OnConnection(uv_stream_t* handle, int status);
|
|
16
16
|
static void AfterConnect(uv_connect_t* req, int status);
|
|
17
17
|
|
|
18
|
+
protected:
|
|
18
19
|
ConnectionWrap(Environment* env,
|
|
19
20
|
v8::Local<v8::Object> object,
|
|
20
21
|
ProviderType provider);
|
|
@@ -193,6 +193,9 @@ class KeyObjectHandle : public BaseObject {
|
|
|
193
193
|
const v8::FunctionCallbackInfo<v8::Value>& args);
|
|
194
194
|
v8::Local<v8::Value> GetAsymmetricKeyType() const;
|
|
195
195
|
|
|
196
|
+
static void CheckEcKeyData(const v8::FunctionCallbackInfo<v8::Value>& args);
|
|
197
|
+
bool CheckEcKeyData() const;
|
|
198
|
+
|
|
196
199
|
static void GetSymmetricKeySize(
|
|
197
200
|
const v8::FunctionCallbackInfo<v8::Value>& args);
|
|
198
201
|
|
|
@@ -48,6 +48,8 @@ class TLSWrap : public AsyncWrap,
|
|
|
48
48
|
kServer
|
|
49
49
|
};
|
|
50
50
|
|
|
51
|
+
enum class UnderlyingStreamWriteStatus { kHasActive, kVacancy };
|
|
52
|
+
|
|
51
53
|
static void Initialize(v8::Local<v8::Object> target,
|
|
52
54
|
v8::Local<v8::Value> unused,
|
|
53
55
|
v8::Local<v8::Context> context,
|
|
@@ -103,7 +105,7 @@ class TLSWrap : public AsyncWrap,
|
|
|
103
105
|
|
|
104
106
|
std::string diagnostic_name() const override;
|
|
105
107
|
|
|
106
|
-
|
|
108
|
+
private:
|
|
107
109
|
// OpenSSL structures are opaque. Estimate SSL memory size for OpenSSL 1.1.1b:
|
|
108
110
|
// SSL: 6224
|
|
109
111
|
// SSL->SSL3_STATE: 1040
|
|
@@ -136,7 +138,8 @@ class TLSWrap : public AsyncWrap,
|
|
|
136
138
|
v8::Local<v8::Object> obj,
|
|
137
139
|
Kind kind,
|
|
138
140
|
StreamBase* stream,
|
|
139
|
-
SecureContext* sc
|
|
141
|
+
SecureContext* sc,
|
|
142
|
+
UnderlyingStreamWriteStatus under_stream_ws);
|
|
140
143
|
|
|
141
144
|
static void SSLInfoCallback(const SSL* ssl_, int where, int ret);
|
|
142
145
|
void InitSSL();
|
|
@@ -172,6 +175,7 @@ class TLSWrap : public AsyncWrap,
|
|
|
172
175
|
static void CertCbDone(const v8::FunctionCallbackInfo<v8::Value>& args);
|
|
173
176
|
static void DestroySSL(const v8::FunctionCallbackInfo<v8::Value>& args);
|
|
174
177
|
static void EnableCertCb(const v8::FunctionCallbackInfo<v8::Value>& args);
|
|
178
|
+
static void EnableALPNCb(const v8::FunctionCallbackInfo<v8::Value>& args);
|
|
175
179
|
static void EnableKeylogCallback(
|
|
176
180
|
const v8::FunctionCallbackInfo<v8::Value>& args);
|
|
177
181
|
static void EnableSessionCallbacks(
|
|
@@ -216,6 +220,8 @@ class TLSWrap : public AsyncWrap,
|
|
|
216
220
|
static void Start(const v8::FunctionCallbackInfo<v8::Value>& args);
|
|
217
221
|
static void VerifyError(const v8::FunctionCallbackInfo<v8::Value>& args);
|
|
218
222
|
static void Wrap(const v8::FunctionCallbackInfo<v8::Value>& args);
|
|
223
|
+
static void WritesIssuedByPrevListenerDone(
|
|
224
|
+
const v8::FunctionCallbackInfo<v8::Value>& args);
|
|
219
225
|
|
|
220
226
|
#ifdef SSL_set_max_send_fragment
|
|
221
227
|
static void SetMaxSendFragment(
|
|
@@ -238,7 +244,7 @@ class TLSWrap : public AsyncWrap,
|
|
|
238
244
|
unsigned char* psk,
|
|
239
245
|
unsigned int max_psk_len);
|
|
240
246
|
#endif
|
|
241
|
-
|
|
247
|
+
public:
|
|
242
248
|
Environment* const env_;
|
|
243
249
|
Kind kind_;
|
|
244
250
|
SSLSessionPointer next_sess_;
|
|
@@ -283,8 +289,11 @@ class TLSWrap : public AsyncWrap,
|
|
|
283
289
|
|
|
284
290
|
BIOPointer bio_trace_;
|
|
285
291
|
|
|
292
|
+
bool has_active_write_issued_by_prev_listener_ = false;
|
|
293
|
+
|
|
286
294
|
public:
|
|
287
295
|
std::vector<unsigned char> alpn_protos_; // Accessed by SelectALPNCallback.
|
|
296
|
+
bool alpn_callback_enabled_ = false; // Accessed by SelectALPNCallback.
|
|
288
297
|
};
|
|
289
298
|
|
|
290
299
|
} // namespace crypto
|
|
@@ -676,7 +676,8 @@ void array_push_back(const TypeName* evp_ref,
|
|
|
676
676
|
}
|
|
677
677
|
#endif
|
|
678
678
|
|
|
679
|
-
|
|
679
|
+
// WebIDL AllowSharedBufferSource.
|
|
680
|
+
inline bool IsAnyBufferSource(v8::Local<v8::Value> arg) {
|
|
680
681
|
return arg->IsArrayBufferView() ||
|
|
681
682
|
arg->IsArrayBuffer() ||
|
|
682
683
|
arg->IsSharedArrayBuffer();
|
|
@@ -694,7 +695,7 @@ class ArrayBufferOrViewContents {
|
|
|
694
695
|
return;
|
|
695
696
|
}
|
|
696
697
|
|
|
697
|
-
CHECK(
|
|
698
|
+
CHECK(IsAnyBufferSource(buf));
|
|
698
699
|
if (buf->IsArrayBufferView()) {
|
|
699
700
|
auto view = buf.As<v8::ArrayBufferView>();
|
|
700
701
|
offset_ = view->ByteOffset();
|
|
@@ -31,6 +31,7 @@
|
|
|
31
31
|
// Symbols are per-isolate primitives but Environment proxies them
|
|
32
32
|
// for the sake of convenience.
|
|
33
33
|
#define PER_ISOLATE_SYMBOL_PROPERTIES(V) \
|
|
34
|
+
V(default_host_defined_options, "default_host_defined_options") \
|
|
34
35
|
V(fs_use_promises_symbol, "fs_use_promises_symbol") \
|
|
35
36
|
V(async_id_symbol, "async_id_symbol") \
|
|
36
37
|
V(handle_onclose_symbol, "handle_onclose") \
|
|
@@ -43,7 +44,8 @@
|
|
|
43
44
|
V(owner_symbol, "owner_symbol") \
|
|
44
45
|
V(onpskexchange_symbol, "onpskexchange") \
|
|
45
46
|
V(resource_symbol, "resource_symbol") \
|
|
46
|
-
V(trigger_async_id_symbol, "trigger_async_id_symbol")
|
|
47
|
+
V(trigger_async_id_symbol, "trigger_async_id_symbol") \
|
|
48
|
+
V(vm_dynamic_import_missing_flag, "vm_dynamic_import_missing_flag")
|
|
47
49
|
|
|
48
50
|
// Strings are per-isolate primitives but Environment proxies them
|
|
49
51
|
// for the sake of convenience. Strings should be ASCII-only.
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
#ifndef NAPI_EXTERN
|
|
29
29
|
#ifdef _WIN32
|
|
30
30
|
#define NAPI_EXTERN __declspec(dllexport)
|
|
31
|
-
#elif defined(
|
|
31
|
+
#elif defined(__wasm__)
|
|
32
32
|
#define NAPI_EXTERN \
|
|
33
33
|
__attribute__((visibility("default"))) \
|
|
34
34
|
__attribute__((__import_module__("napi")))
|
|
@@ -517,6 +517,16 @@ NAPI_EXTERN napi_status NAPI_CDECL napi_add_finalizer(napi_env env,
|
|
|
517
517
|
|
|
518
518
|
#endif // NAPI_VERSION >= 5
|
|
519
519
|
|
|
520
|
+
#ifdef NAPI_EXPERIMENTAL
|
|
521
|
+
|
|
522
|
+
NAPI_EXTERN napi_status NAPI_CDECL
|
|
523
|
+
node_api_post_finalizer(napi_env env,
|
|
524
|
+
napi_finalize finalize_cb,
|
|
525
|
+
void* finalize_data,
|
|
526
|
+
void* finalize_hint);
|
|
527
|
+
|
|
528
|
+
#endif // NAPI_EXPERIMENTAL
|
|
529
|
+
|
|
520
530
|
#if NAPI_VERSION >= 6
|
|
521
531
|
|
|
522
532
|
// BigInt
|
|
@@ -105,6 +105,9 @@ struct napi_env__ {
|
|
|
105
105
|
CallIntoModule([&](napi_env env) { cb(env, data, hint); });
|
|
106
106
|
}
|
|
107
107
|
|
|
108
|
+
// Invoke finalizer from V8 garbage collector.
|
|
109
|
+
void InvokeFinalizerFromGC(v8impl::RefTracker* finalizer);
|
|
110
|
+
|
|
108
111
|
// Enqueue the finalizer to the napi_env's own queue of the second pass
|
|
109
112
|
// weak callback.
|
|
110
113
|
// Implementation should drain the queue at the time it is safe to call
|
|
@@ -130,6 +133,19 @@ struct napi_env__ {
|
|
|
130
133
|
delete this;
|
|
131
134
|
}
|
|
132
135
|
|
|
136
|
+
void CheckGCAccess() {
|
|
137
|
+
if (module_api_version == NAPI_VERSION_EXPERIMENTAL && in_gc_finalizer) {
|
|
138
|
+
v8impl::OnFatalError(
|
|
139
|
+
nullptr,
|
|
140
|
+
"Finalizer is calling a function that may affect GC state.\n"
|
|
141
|
+
"The finalizers are run directly from GC and must not affect GC "
|
|
142
|
+
"state.\n"
|
|
143
|
+
"Use `node_api_post_finalizer` from inside of the finalizer to work "
|
|
144
|
+
"around this issue.\n"
|
|
145
|
+
"It schedules the call as a new task in the event loop.");
|
|
146
|
+
}
|
|
147
|
+
}
|
|
148
|
+
|
|
133
149
|
v8::Isolate* const isolate; // Shortcut for context()->GetIsolate()
|
|
134
150
|
v8impl::Persistent<v8::Context> context_persistent;
|
|
135
151
|
|
|
@@ -148,6 +164,7 @@ struct napi_env__ {
|
|
|
148
164
|
int refs = 1;
|
|
149
165
|
void* instance_data = nullptr;
|
|
150
166
|
int32_t module_api_version = NODE_API_DEFAULT_MODULE_API_VERSION;
|
|
167
|
+
bool in_gc_finalizer = false;
|
|
151
168
|
|
|
152
169
|
protected:
|
|
153
170
|
// Should not be deleted directly. Delete with `napi_env__::DeleteMe()`
|
|
@@ -211,6 +228,7 @@ inline napi_status napi_set_last_error(napi_env env,
|
|
|
211
228
|
// NAPI_PREAMBLE is not wrapped in do..while: try_catch must have function scope
|
|
212
229
|
#define NAPI_PREAMBLE(env) \
|
|
213
230
|
CHECK_ENV((env)); \
|
|
231
|
+
(env)->CheckGCAccess(); \
|
|
214
232
|
RETURN_STATUS_IF_FALSE( \
|
|
215
233
|
(env), (env)->last_exception.IsEmpty(), napi_pending_exception); \
|
|
216
234
|
RETURN_STATUS_IF_FALSE((env), \
|
|
@@ -355,8 +373,28 @@ enum class Ownership {
|
|
|
355
373
|
kUserland,
|
|
356
374
|
};
|
|
357
375
|
|
|
358
|
-
// Wrapper around Finalizer that
|
|
359
|
-
class
|
|
376
|
+
// Wrapper around Finalizer that can be tracked.
|
|
377
|
+
class TrackedFinalizer : public Finalizer, public RefTracker {
|
|
378
|
+
protected:
|
|
379
|
+
TrackedFinalizer(napi_env env,
|
|
380
|
+
napi_finalize finalize_callback,
|
|
381
|
+
void* finalize_data,
|
|
382
|
+
void* finalize_hint);
|
|
383
|
+
|
|
384
|
+
public:
|
|
385
|
+
static TrackedFinalizer* New(napi_env env,
|
|
386
|
+
napi_finalize finalize_callback,
|
|
387
|
+
void* finalize_data,
|
|
388
|
+
void* finalize_hint);
|
|
389
|
+
~TrackedFinalizer() override;
|
|
390
|
+
|
|
391
|
+
protected:
|
|
392
|
+
void Finalize() override;
|
|
393
|
+
void FinalizeCore(bool deleteMe);
|
|
394
|
+
};
|
|
395
|
+
|
|
396
|
+
// Wrapper around TrackedFinalizer that implements reference counting.
|
|
397
|
+
class RefBase : public TrackedFinalizer {
|
|
360
398
|
protected:
|
|
361
399
|
RefBase(napi_env env,
|
|
362
400
|
uint32_t initial_refcount,
|
|
@@ -372,7 +410,6 @@ class RefBase : public Finalizer, public RefTracker {
|
|
|
372
410
|
napi_finalize finalize_callback,
|
|
373
411
|
void* finalize_data,
|
|
374
412
|
void* finalize_hint);
|
|
375
|
-
virtual ~RefBase();
|
|
376
413
|
|
|
377
414
|
void* Data();
|
|
378
415
|
uint32_t Ref();
|
|
@@ -17,6 +17,7 @@
|
|
|
17
17
|
|
|
18
18
|
#include "env.h"
|
|
19
19
|
#include "gtest/gtest_prod.h"
|
|
20
|
+
#include "node_errors.h"
|
|
20
21
|
#include "node_internals.h"
|
|
21
22
|
|
|
22
23
|
#define NAPI_ARRAYSIZE(array) node::arraysize((array))
|
|
@@ -34,6 +35,11 @@ using Persistent = v8::Global<T>;
|
|
|
34
35
|
|
|
35
36
|
using PersistentToLocal = node::PersistentToLocal;
|
|
36
37
|
|
|
38
|
+
[[noreturn]] inline void OnFatalError(const char* location,
|
|
39
|
+
const char* message) {
|
|
40
|
+
node::OnFatalError(location, message);
|
|
41
|
+
}
|
|
42
|
+
|
|
37
43
|
} // end of namespace v8impl
|
|
38
44
|
|
|
39
45
|
#endif // SRC_JS_NATIVE_API_V8_INTERNALS_H_
|
|
@@ -97,7 +97,7 @@ class ModuleWrap : public BaseObject {
|
|
|
97
97
|
static v8::MaybeLocal<v8::Module> ResolveModuleCallback(
|
|
98
98
|
v8::Local<v8::Context> context,
|
|
99
99
|
v8::Local<v8::String> specifier,
|
|
100
|
-
v8::Local<v8::FixedArray>
|
|
100
|
+
v8::Local<v8::FixedArray> import_attributes,
|
|
101
101
|
v8::Local<v8::Module> referrer);
|
|
102
102
|
static ModuleWrap* GetFromModule(node::Environment*, v8::Local<v8::Module>);
|
|
103
103
|
|
package/src/headers/20/node.h
CHANGED
|
@@ -265,6 +265,8 @@ enum Flags : uint32_t {
|
|
|
265
265
|
// cppgc::InitializeProcess() before creating a Node.js environment
|
|
266
266
|
// and call cppgc::ShutdownProcess() before process shutdown.
|
|
267
267
|
kNoInitializeCppgc = 1 << 13,
|
|
268
|
+
// Initialize the process for predictable snapshot generation.
|
|
269
|
+
kGeneratePredictableSnapshot = 1 << 14,
|
|
268
270
|
|
|
269
271
|
// Emulate the behavior of InitializeNodeWithArgs() when passing
|
|
270
272
|
// a flags argument to the InitializeOncePerProcess() replacement
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
#ifndef SRC_NODE_API_H_
|
|
2
2
|
#define SRC_NODE_API_H_
|
|
3
3
|
|
|
4
|
-
#
|
|
4
|
+
#if defined(BUILDING_NODE_EXTENSION) && !defined(NAPI_EXTERN)
|
|
5
5
|
#ifdef _WIN32
|
|
6
6
|
// Building native addon against node
|
|
7
7
|
#define NAPI_EXTERN __declspec(dllimport)
|
|
8
|
-
#elif defined(
|
|
8
|
+
#elif defined(__wasm__)
|
|
9
9
|
#define NAPI_EXTERN __attribute__((__import_module__("napi")))
|
|
10
10
|
#endif
|
|
11
11
|
#endif
|
|
@@ -17,8 +17,13 @@ struct uv_loop_s; // Forward declaration.
|
|
|
17
17
|
#ifdef _WIN32
|
|
18
18
|
#define NAPI_MODULE_EXPORT __declspec(dllexport)
|
|
19
19
|
#else
|
|
20
|
+
#ifdef __EMSCRIPTEN__
|
|
21
|
+
#define NAPI_MODULE_EXPORT \
|
|
22
|
+
__attribute__((visibility("default"))) __attribute__((used))
|
|
23
|
+
#else
|
|
20
24
|
#define NAPI_MODULE_EXPORT __attribute__((visibility("default")))
|
|
21
25
|
#endif
|
|
26
|
+
#endif
|
|
22
27
|
|
|
23
28
|
#if defined(__GNUC__)
|
|
24
29
|
#define NAPI_NO_RETURN __attribute__((noreturn))
|
|
@@ -49,7 +54,7 @@ typedef struct napi_module {
|
|
|
49
54
|
NAPI_MODULE_INITIALIZER_X_HELPER(base, version)
|
|
50
55
|
#define NAPI_MODULE_INITIALIZER_X_HELPER(base, version) base##version
|
|
51
56
|
|
|
52
|
-
#ifdef
|
|
57
|
+
#ifdef __wasm__
|
|
53
58
|
#define NAPI_MODULE_INITIALIZER_BASE napi_register_wasm_v
|
|
54
59
|
#else
|
|
55
60
|
#define NAPI_MODULE_INITIALIZER_BASE napi_register_module_v
|
|
@@ -143,7 +148,6 @@ NAPI_EXTERN napi_status NAPI_CDECL napi_get_buffer_info(napi_env env,
|
|
|
143
148
|
void** data,
|
|
144
149
|
size_t* length);
|
|
145
150
|
|
|
146
|
-
#ifndef __wasm32__
|
|
147
151
|
// Methods to manage simple async operations
|
|
148
152
|
NAPI_EXTERN napi_status NAPI_CDECL
|
|
149
153
|
napi_create_async_work(napi_env env,
|
|
@@ -159,7 +163,6 @@ NAPI_EXTERN napi_status NAPI_CDECL napi_queue_async_work(napi_env env,
|
|
|
159
163
|
napi_async_work work);
|
|
160
164
|
NAPI_EXTERN napi_status NAPI_CDECL napi_cancel_async_work(napi_env env,
|
|
161
165
|
napi_async_work work);
|
|
162
|
-
#endif // __wasm32__
|
|
163
166
|
|
|
164
167
|
// version management
|
|
165
168
|
NAPI_EXTERN napi_status NAPI_CDECL
|
|
@@ -197,7 +200,6 @@ napi_close_callback_scope(napi_env env, napi_callback_scope scope);
|
|
|
197
200
|
|
|
198
201
|
#if NAPI_VERSION >= 4
|
|
199
202
|
|
|
200
|
-
#ifndef __wasm32__
|
|
201
203
|
// Calling into JS from other threads
|
|
202
204
|
NAPI_EXTERN napi_status NAPI_CDECL
|
|
203
205
|
napi_create_threadsafe_function(napi_env env,
|
|
@@ -231,7 +233,6 @@ napi_unref_threadsafe_function(napi_env env, napi_threadsafe_function func);
|
|
|
231
233
|
|
|
232
234
|
NAPI_EXTERN napi_status NAPI_CDECL
|
|
233
235
|
napi_ref_threadsafe_function(napi_env env, napi_threadsafe_function func);
|
|
234
|
-
#endif // __wasm32__
|
|
235
236
|
|
|
236
237
|
#endif // NAPI_VERSION >= 4
|
|
237
238
|
|
|
@@ -83,6 +83,30 @@ class ContextifyContext : public BaseObject {
|
|
|
83
83
|
static void IsContext(const v8::FunctionCallbackInfo<v8::Value>& args);
|
|
84
84
|
static void CompileFunction(
|
|
85
85
|
const v8::FunctionCallbackInfo<v8::Value>& args);
|
|
86
|
+
static v8::Local<v8::Object> CompileFunctionAndCacheResult(
|
|
87
|
+
Environment* env,
|
|
88
|
+
v8::Local<v8::Context> parsing_context,
|
|
89
|
+
v8::ScriptCompiler::Source* source,
|
|
90
|
+
std::vector<v8::Local<v8::String>> params,
|
|
91
|
+
std::vector<v8::Local<v8::Object>> context_extensions,
|
|
92
|
+
v8::ScriptCompiler::CompileOptions options,
|
|
93
|
+
bool produce_cached_data,
|
|
94
|
+
v8::Local<v8::Symbol> id_symbol,
|
|
95
|
+
const errors::TryCatchScope& try_catch);
|
|
96
|
+
static v8::Local<v8::PrimitiveArray> GetHostDefinedOptions(
|
|
97
|
+
v8::Isolate* isolate, v8::Local<v8::Symbol> id_symbol);
|
|
98
|
+
static v8::ScriptCompiler::Source GetCommonJSSourceInstance(
|
|
99
|
+
v8::Isolate* isolate,
|
|
100
|
+
v8::Local<v8::String> code,
|
|
101
|
+
v8::Local<v8::String> filename,
|
|
102
|
+
int line_offset,
|
|
103
|
+
int column_offset,
|
|
104
|
+
v8::Local<v8::PrimitiveArray> host_defined_options,
|
|
105
|
+
v8::ScriptCompiler::CachedData* cached_data);
|
|
106
|
+
static v8::ScriptCompiler::CompileOptions GetCompileOptions(
|
|
107
|
+
const v8::ScriptCompiler::Source& source);
|
|
108
|
+
static void ContainsModuleSyntax(
|
|
109
|
+
const v8::FunctionCallbackInfo<v8::Value>& args);
|
|
86
110
|
static void WeakCallback(
|
|
87
111
|
const v8::WeakCallbackInfo<ContextifyContext>& data);
|
|
88
112
|
static void PropertyGetterCallback(
|
|
@@ -349,6 +349,38 @@ int SyncCall(Environment* env, v8::Local<v8::Value> ctx,
|
|
|
349
349
|
return err;
|
|
350
350
|
}
|
|
351
351
|
|
|
352
|
+
// Similar to SyncCall but throws immediately if there is an error.
|
|
353
|
+
template <typename Predicate, typename Func, typename... Args>
|
|
354
|
+
int SyncCallAndThrowIf(Predicate should_throw,
|
|
355
|
+
Environment* env,
|
|
356
|
+
FSReqWrapSync* req_wrap,
|
|
357
|
+
Func fn,
|
|
358
|
+
Args... args) {
|
|
359
|
+
env->PrintSyncTrace();
|
|
360
|
+
int result = fn(nullptr, &(req_wrap->req), args..., nullptr);
|
|
361
|
+
if (should_throw(result)) {
|
|
362
|
+
env->ThrowUVException(result,
|
|
363
|
+
req_wrap->syscall_p,
|
|
364
|
+
nullptr,
|
|
365
|
+
req_wrap->path_p,
|
|
366
|
+
req_wrap->dest_p);
|
|
367
|
+
}
|
|
368
|
+
return result;
|
|
369
|
+
}
|
|
370
|
+
|
|
371
|
+
constexpr bool is_uv_error(int result) {
|
|
372
|
+
return result < 0;
|
|
373
|
+
}
|
|
374
|
+
|
|
375
|
+
// Similar to SyncCall but throws immediately if there is an error.
|
|
376
|
+
template <typename Func, typename... Args>
|
|
377
|
+
int SyncCallAndThrowOnError(Environment* env,
|
|
378
|
+
FSReqWrapSync* req_wrap,
|
|
379
|
+
Func fn,
|
|
380
|
+
Args... args) {
|
|
381
|
+
return SyncCallAndThrowIf(is_uv_error, env, req_wrap, fn, args...);
|
|
382
|
+
}
|
|
383
|
+
|
|
352
384
|
} // namespace fs
|
|
353
385
|
} // namespace node
|
|
354
386
|
|
|
@@ -102,14 +102,6 @@ class BindingData : public SnapshotableObject {
|
|
|
102
102
|
|
|
103
103
|
static FilePathIsFileReturnType FilePathIsFile(Environment* env,
|
|
104
104
|
const std::string& file_path);
|
|
105
|
-
|
|
106
|
-
static const std::array<std::string, 10> legacy_main_extensions;
|
|
107
|
-
// define the final index of the algorithm resolution
|
|
108
|
-
// when packageConfig.main is defined.
|
|
109
|
-
static const uint8_t legacy_main_extensions_with_main_end = 7;
|
|
110
|
-
// define the final index of the algorithm resolution
|
|
111
|
-
// when packageConfig.main is NOT defined
|
|
112
|
-
static const uint8_t legacy_main_extensions_package_fallback_end = 10;
|
|
113
105
|
};
|
|
114
106
|
|
|
115
107
|
// structure used to store state during a complex operation, e.g., mkdirp.
|
|
@@ -465,10 +457,22 @@ int MKDirpSync(uv_loop_t* loop,
|
|
|
465
457
|
|
|
466
458
|
class FSReqWrapSync {
|
|
467
459
|
public:
|
|
468
|
-
FSReqWrapSync(
|
|
460
|
+
FSReqWrapSync(const char* syscall = nullptr,
|
|
461
|
+
const char* path = nullptr,
|
|
462
|
+
const char* dest = nullptr)
|
|
463
|
+
: syscall_p(syscall), path_p(path), dest_p(dest) {}
|
|
469
464
|
~FSReqWrapSync() { uv_fs_req_cleanup(&req); }
|
|
465
|
+
|
|
470
466
|
uv_fs_t req;
|
|
467
|
+
const char* syscall_p;
|
|
468
|
+
const char* path_p;
|
|
469
|
+
const char* dest_p;
|
|
470
|
+
|
|
471
|
+
FSReqWrapSync(const FSReqWrapSync&) = delete;
|
|
472
|
+
FSReqWrapSync& operator=(const FSReqWrapSync&) = delete;
|
|
471
473
|
|
|
474
|
+
// TODO(joyeecheung): move these out of FSReqWrapSync and into a special
|
|
475
|
+
// class for mkdirp
|
|
472
476
|
FSContinuationData* continuation_data() const {
|
|
473
477
|
return continuation_data_.get();
|
|
474
478
|
}
|
|
@@ -476,9 +480,6 @@ class FSReqWrapSync {
|
|
|
476
480
|
continuation_data_ = std::move(data);
|
|
477
481
|
}
|
|
478
482
|
|
|
479
|
-
FSReqWrapSync(const FSReqWrapSync&) = delete;
|
|
480
|
-
FSReqWrapSync& operator=(const FSReqWrapSync&) = delete;
|
|
481
|
-
|
|
482
483
|
private:
|
|
483
484
|
std::unique_ptr<FSContinuationData> continuation_data_;
|
|
484
485
|
};
|
|
@@ -515,6 +516,18 @@ inline int SyncCall(Environment* env, v8::Local<v8::Value> ctx,
|
|
|
515
516
|
FSReqWrapSync* req_wrap, const char* syscall,
|
|
516
517
|
Func fn, Args... args);
|
|
517
518
|
|
|
519
|
+
// Similar to SyncCall but throws immediately if there is an error.
|
|
520
|
+
template <typename Predicate, typename Func, typename... Args>
|
|
521
|
+
int SyncCallAndThrowIf(Predicate should_throw,
|
|
522
|
+
Environment* env,
|
|
523
|
+
FSReqWrapSync* req_wrap,
|
|
524
|
+
Func fn,
|
|
525
|
+
Args... args);
|
|
526
|
+
template <typename Func, typename... Args>
|
|
527
|
+
int SyncCallAndThrowOnError(Environment* env,
|
|
528
|
+
FSReqWrapSync* req_wrap,
|
|
529
|
+
Func fn,
|
|
530
|
+
Args... args);
|
|
518
531
|
} // namespace fs
|
|
519
532
|
|
|
520
533
|
} // namespace node
|
|
@@ -28,24 +28,20 @@ class HostPort {
|
|
|
28
28
|
|
|
29
29
|
void set_host(const std::string& host) { host_name_ = host; }
|
|
30
30
|
|
|
31
|
-
void set_port(
|
|
31
|
+
void set_port(uint16_t port) { port_ = port; }
|
|
32
32
|
|
|
33
33
|
const std::string& host() const { return host_name_; }
|
|
34
34
|
|
|
35
|
-
|
|
36
|
-
// TODO(joyeecheung): make port a uint16_t
|
|
37
|
-
CHECK_GE(port_, 0);
|
|
38
|
-
return port_;
|
|
39
|
-
}
|
|
35
|
+
uint16_t port() const { return port_; }
|
|
40
36
|
|
|
41
37
|
void Update(const HostPort& other) {
|
|
42
38
|
if (!other.host_name_.empty()) host_name_ = other.host_name_;
|
|
43
|
-
|
|
39
|
+
port_ = other.port_;
|
|
44
40
|
}
|
|
45
41
|
|
|
46
42
|
private:
|
|
47
43
|
std::string host_name_;
|
|
48
|
-
|
|
44
|
+
uint16_t port_;
|
|
49
45
|
};
|
|
50
46
|
|
|
51
47
|
class Options {
|
|
@@ -108,15 +104,18 @@ class EnvironmentOptions : public Options {
|
|
|
108
104
|
public:
|
|
109
105
|
bool abort_on_uncaught_exception = false;
|
|
110
106
|
std::vector<std::string> conditions;
|
|
107
|
+
bool detect_module = false;
|
|
111
108
|
std::string dns_result_order;
|
|
112
109
|
bool enable_source_maps = false;
|
|
113
110
|
bool experimental_fetch = true;
|
|
111
|
+
bool experimental_websocket = false;
|
|
114
112
|
bool experimental_global_customevent = true;
|
|
115
113
|
bool experimental_global_web_crypto = true;
|
|
116
114
|
bool experimental_https_modules = false;
|
|
117
115
|
bool experimental_wasm_modules = false;
|
|
118
116
|
bool experimental_import_meta_resolve = false;
|
|
119
|
-
std::string
|
|
117
|
+
std::string input_type; // Value of --input-type
|
|
118
|
+
std::string type; // Value of --experimental-default-type
|
|
120
119
|
std::string experimental_policy;
|
|
121
120
|
std::string experimental_policy_integrity;
|
|
122
121
|
bool has_policy_integrity_string = false;
|
|
@@ -161,6 +160,7 @@ class EnvironmentOptions : public Options {
|
|
|
161
160
|
std::string env_file;
|
|
162
161
|
bool has_env_file_string = false;
|
|
163
162
|
bool test_runner = false;
|
|
163
|
+
uint64_t test_runner_concurrency = 0;
|
|
164
164
|
bool test_runner_coverage = false;
|
|
165
165
|
std::vector<std::string> test_name_pattern;
|
|
166
166
|
std::vector<std::string> test_reporter;
|
|
@@ -12,7 +12,8 @@ namespace permission {
|
|
|
12
12
|
|
|
13
13
|
class ChildProcessPermission final : public PermissionBase {
|
|
14
14
|
public:
|
|
15
|
-
void Apply(const std::string
|
|
15
|
+
void Apply(const std::vector<std::string>& allow,
|
|
16
|
+
PermissionScope scope) override;
|
|
16
17
|
bool is_granted(PermissionScope perm,
|
|
17
18
|
const std::string_view& param = "") override;
|
|
18
19
|
|
|
@@ -6,7 +6,6 @@
|
|
|
6
6
|
#include "v8.h"
|
|
7
7
|
|
|
8
8
|
#include <unordered_map>
|
|
9
|
-
#include <vector>
|
|
10
9
|
#include "permission/permission_base.h"
|
|
11
10
|
#include "util.h"
|
|
12
11
|
|
|
@@ -16,23 +15,27 @@ namespace permission {
|
|
|
16
15
|
|
|
17
16
|
class FSPermission final : public PermissionBase {
|
|
18
17
|
public:
|
|
19
|
-
void Apply(const std::string
|
|
18
|
+
void Apply(const std::vector<std::string>& allow,
|
|
19
|
+
PermissionScope scope) override;
|
|
20
20
|
bool is_granted(PermissionScope perm, const std::string_view& param) override;
|
|
21
21
|
|
|
22
|
-
// For debugging purposes, use the gist function to print the whole tree
|
|
23
|
-
// https://gist.github.com/RafaelGSS/5b4f09c559a54f53f9b7c8c030744d19
|
|
24
22
|
struct RadixTree {
|
|
25
23
|
struct Node {
|
|
26
24
|
std::string prefix;
|
|
27
25
|
std::unordered_map<char, Node*> children;
|
|
28
26
|
Node* wildcard_child;
|
|
27
|
+
bool is_leaf;
|
|
29
28
|
|
|
30
29
|
explicit Node(const std::string& pre)
|
|
31
|
-
: prefix(pre), wildcard_child(nullptr) {}
|
|
30
|
+
: prefix(pre), wildcard_child(nullptr), is_leaf(false) {}
|
|
32
31
|
|
|
33
|
-
Node() : wildcard_child(nullptr) {}
|
|
32
|
+
Node() : wildcard_child(nullptr), is_leaf(false) {}
|
|
34
33
|
|
|
35
34
|
Node* CreateChild(std::string prefix) {
|
|
35
|
+
if (prefix.empty() && !is_leaf) {
|
|
36
|
+
is_leaf = true;
|
|
37
|
+
return this;
|
|
38
|
+
}
|
|
36
39
|
char label = prefix[0];
|
|
37
40
|
|
|
38
41
|
Node* child = children[label];
|
|
@@ -57,6 +60,7 @@ class FSPermission final : public PermissionBase {
|
|
|
57
60
|
return split_child->CreateChild(prefix.substr(i));
|
|
58
61
|
}
|
|
59
62
|
}
|
|
63
|
+
child->is_leaf = true;
|
|
60
64
|
return child->CreateChild(prefix.substr(i));
|
|
61
65
|
}
|
|
62
66
|
|
|
@@ -115,7 +119,7 @@ class FSPermission final : public PermissionBase {
|
|
|
115
119
|
if (children.size() == 0) {
|
|
116
120
|
return true;
|
|
117
121
|
}
|
|
118
|
-
return
|
|
122
|
+
return is_leaf;
|
|
119
123
|
}
|
|
120
124
|
};
|
|
121
125
|
|
|
@@ -131,8 +135,6 @@ class FSPermission final : public PermissionBase {
|
|
|
131
135
|
|
|
132
136
|
private:
|
|
133
137
|
void GrantAccess(PermissionScope scope, const std::string& param);
|
|
134
|
-
void RestrictAccess(PermissionScope scope,
|
|
135
|
-
const std::vector<std::string>& params);
|
|
136
138
|
// fs granted on startup
|
|
137
139
|
RadixTree granted_in_fs_;
|
|
138
140
|
RadixTree granted_out_fs_;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
#ifndef SRC_PERMISSION_INSPECTOR_PERMISSION_H_
|
|
2
|
+
#define SRC_PERMISSION_INSPECTOR_PERMISSION_H_
|
|
3
|
+
|
|
4
|
+
#if defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS
|
|
5
|
+
|
|
6
|
+
#include <string>
|
|
7
|
+
#include "permission/permission_base.h"
|
|
8
|
+
|
|
9
|
+
namespace node {
|
|
10
|
+
|
|
11
|
+
namespace permission {
|
|
12
|
+
|
|
13
|
+
class InspectorPermission final : public PermissionBase {
|
|
14
|
+
public:
|
|
15
|
+
void Apply(const std::vector<std::string>& allow,
|
|
16
|
+
PermissionScope scope) override;
|
|
17
|
+
bool is_granted(PermissionScope perm,
|
|
18
|
+
const std::string_view& param = "") override;
|
|
19
|
+
|
|
20
|
+
private:
|
|
21
|
+
bool deny_all_;
|
|
22
|
+
};
|
|
23
|
+
|
|
24
|
+
} // namespace permission
|
|
25
|
+
|
|
26
|
+
} // namespace node
|
|
27
|
+
|
|
28
|
+
#endif // defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS
|
|
29
|
+
#endif // SRC_PERMISSION_INSPECTOR_PERMISSION_H_
|
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
#include "node_options.h"
|
|
8
8
|
#include "permission/child_process_permission.h"
|
|
9
9
|
#include "permission/fs_permission.h"
|
|
10
|
+
#include "permission/inspector_permission.h"
|
|
10
11
|
#include "permission/permission_base.h"
|
|
11
12
|
#include "permission/worker_permission.h"
|
|
12
13
|
#include "v8.h"
|
|
@@ -39,6 +40,8 @@ class Permission {
|
|
|
39
40
|
return is_scope_granted(permission, res);
|
|
40
41
|
}
|
|
41
42
|
|
|
43
|
+
FORCE_INLINE bool enabled() const { return enabled_; }
|
|
44
|
+
|
|
42
45
|
static PermissionScope StringToPermission(const std::string& perm);
|
|
43
46
|
static const char* PermissionToString(PermissionScope perm);
|
|
44
47
|
static void ThrowAccessDenied(Environment* env,
|
|
@@ -46,7 +49,7 @@ class Permission {
|
|
|
46
49
|
const std::string_view& res);
|
|
47
50
|
|
|
48
51
|
// CLI Call
|
|
49
|
-
void Apply(const std::string
|
|
52
|
+
void Apply(const std::vector<std::string>& allow, PermissionScope scope);
|
|
50
53
|
void EnablePermissions();
|
|
51
54
|
|
|
52
55
|
private:
|
|
@@ -22,10 +22,13 @@ namespace permission {
|
|
|
22
22
|
#define WORKER_THREADS_PERMISSIONS(V) \
|
|
23
23
|
V(WorkerThreads, "worker", PermissionsRoot)
|
|
24
24
|
|
|
25
|
+
#define INSPECTOR_PERMISSIONS(V) V(Inspector, "inspector", PermissionsRoot)
|
|
26
|
+
|
|
25
27
|
#define PERMISSIONS(V) \
|
|
26
28
|
FILESYSTEM_PERMISSIONS(V) \
|
|
27
29
|
CHILD_PROCESS_PERMISSIONS(V) \
|
|
28
|
-
WORKER_THREADS_PERMISSIONS(V)
|
|
30
|
+
WORKER_THREADS_PERMISSIONS(V) \
|
|
31
|
+
INSPECTOR_PERMISSIONS(V)
|
|
29
32
|
|
|
30
33
|
#define V(name, _, __) k##name,
|
|
31
34
|
enum class PermissionScope {
|
|
@@ -36,7 +39,8 @@ enum class PermissionScope {
|
|
|
36
39
|
|
|
37
40
|
class PermissionBase {
|
|
38
41
|
public:
|
|
39
|
-
virtual void Apply(const std::string
|
|
42
|
+
virtual void Apply(const std::vector<std::string>& allow,
|
|
43
|
+
PermissionScope scope) = 0;
|
|
40
44
|
virtual bool is_granted(PermissionScope perm,
|
|
41
45
|
const std::string_view& param = "") = 0;
|
|
42
46
|
};
|
|
@@ -12,7 +12,8 @@ namespace permission {
|
|
|
12
12
|
|
|
13
13
|
class WorkerPermission final : public PermissionBase {
|
|
14
14
|
public:
|
|
15
|
-
void Apply(const std::string
|
|
15
|
+
void Apply(const std::vector<std::string>& allow,
|
|
16
|
+
PermissionScope scope) override;
|
|
16
17
|
bool is_granted(PermissionScope perm,
|
|
17
18
|
const std::string_view& param = "") override;
|
|
18
19
|
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
#ifndef SRC_TRACING_NODE_TRACE_BUFFER_H_
|
|
2
|
+
#define SRC_TRACING_NODE_TRACE_BUFFER_H_
|
|
3
|
+
|
|
4
|
+
#include "tracing/agent.h"
|
|
5
|
+
#include "node_mutex.h"
|
|
6
|
+
#include "libplatform/v8-tracing.h"
|
|
7
|
+
|
|
8
|
+
#include <atomic>
|
|
9
|
+
|
|
10
|
+
namespace node {
|
|
11
|
+
namespace tracing {
|
|
12
|
+
|
|
13
|
+
using v8::platform::tracing::TraceBuffer;
|
|
14
|
+
using v8::platform::tracing::TraceBufferChunk;
|
|
15
|
+
using v8::platform::tracing::TraceObject;
|
|
16
|
+
|
|
17
|
+
// forward declaration
|
|
18
|
+
class NodeTraceBuffer;
|
|
19
|
+
|
|
20
|
+
class InternalTraceBuffer {
|
|
21
|
+
public:
|
|
22
|
+
InternalTraceBuffer(size_t max_chunks, uint32_t id, Agent* agent);
|
|
23
|
+
|
|
24
|
+
TraceObject* AddTraceEvent(uint64_t* handle);
|
|
25
|
+
TraceObject* GetEventByHandle(uint64_t handle);
|
|
26
|
+
void Flush(bool blocking);
|
|
27
|
+
bool IsFull() const {
|
|
28
|
+
return total_chunks_ == max_chunks_ && chunks_[total_chunks_ - 1]->IsFull();
|
|
29
|
+
}
|
|
30
|
+
bool IsFlushing() const {
|
|
31
|
+
return flushing_;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
private:
|
|
35
|
+
uint64_t MakeHandle(size_t chunk_index, uint32_t chunk_seq,
|
|
36
|
+
size_t event_index) const;
|
|
37
|
+
void ExtractHandle(uint64_t handle, uint32_t* buffer_id, size_t* chunk_index,
|
|
38
|
+
uint32_t* chunk_seq, size_t* event_index) const;
|
|
39
|
+
size_t Capacity() const { return max_chunks_ * TraceBufferChunk::kChunkSize; }
|
|
40
|
+
|
|
41
|
+
Mutex mutex_;
|
|
42
|
+
bool flushing_;
|
|
43
|
+
size_t max_chunks_;
|
|
44
|
+
Agent* agent_;
|
|
45
|
+
std::vector<std::unique_ptr<TraceBufferChunk>> chunks_;
|
|
46
|
+
size_t total_chunks_ = 0;
|
|
47
|
+
uint32_t current_chunk_seq_ = 1;
|
|
48
|
+
uint32_t id_;
|
|
49
|
+
};
|
|
50
|
+
|
|
51
|
+
class NodeTraceBuffer : public TraceBuffer {
|
|
52
|
+
public:
|
|
53
|
+
NodeTraceBuffer(size_t max_chunks, Agent* agent, uv_loop_t* tracing_loop);
|
|
54
|
+
~NodeTraceBuffer() override;
|
|
55
|
+
|
|
56
|
+
TraceObject* AddTraceEvent(uint64_t* handle) override;
|
|
57
|
+
TraceObject* GetEventByHandle(uint64_t handle) override;
|
|
58
|
+
bool Flush() override;
|
|
59
|
+
|
|
60
|
+
static const size_t kBufferChunks = 1024;
|
|
61
|
+
|
|
62
|
+
private:
|
|
63
|
+
bool TryLoadAvailableBuffer();
|
|
64
|
+
static void NonBlockingFlushSignalCb(uv_async_t* signal);
|
|
65
|
+
static void ExitSignalCb(uv_async_t* signal);
|
|
66
|
+
|
|
67
|
+
uv_loop_t* tracing_loop_;
|
|
68
|
+
uv_async_t flush_signal_;
|
|
69
|
+
uv_async_t exit_signal_;
|
|
70
|
+
bool exited_ = false;
|
|
71
|
+
// Used exclusively for exit logic.
|
|
72
|
+
Mutex exit_mutex_;
|
|
73
|
+
// Used to wait until async handles have been closed.
|
|
74
|
+
ConditionVariable exit_cond_;
|
|
75
|
+
std::atomic<InternalTraceBuffer*> current_buf_;
|
|
76
|
+
InternalTraceBuffer buffer1_;
|
|
77
|
+
InternalTraceBuffer buffer2_;
|
|
78
|
+
};
|
|
79
|
+
|
|
80
|
+
} // namespace tracing
|
|
81
|
+
} // namespace node
|
|
82
|
+
|
|
83
|
+
#endif // SRC_TRACING_NODE_TRACE_BUFFER_H_
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
#ifndef SRC_TRACING_NODE_TRACE_WRITER_H_
|
|
2
|
+
#define SRC_TRACING_NODE_TRACE_WRITER_H_
|
|
3
|
+
|
|
4
|
+
#include <sstream>
|
|
5
|
+
#include <queue>
|
|
6
|
+
|
|
7
|
+
#include "libplatform/v8-tracing.h"
|
|
8
|
+
#include "tracing/agent.h"
|
|
9
|
+
#include "uv.h"
|
|
10
|
+
|
|
11
|
+
namespace node {
|
|
12
|
+
namespace tracing {
|
|
13
|
+
|
|
14
|
+
using v8::platform::tracing::TraceObject;
|
|
15
|
+
using v8::platform::tracing::TraceWriter;
|
|
16
|
+
|
|
17
|
+
class NodeTraceWriter : public AsyncTraceWriter {
|
|
18
|
+
public:
|
|
19
|
+
explicit NodeTraceWriter(const std::string& log_file_pattern);
|
|
20
|
+
~NodeTraceWriter() override;
|
|
21
|
+
|
|
22
|
+
void InitializeOnThread(uv_loop_t* loop) override;
|
|
23
|
+
void AppendTraceEvent(TraceObject* trace_event) override;
|
|
24
|
+
void Flush(bool blocking) override;
|
|
25
|
+
|
|
26
|
+
static const int kTracesPerFile = 1 << 19;
|
|
27
|
+
|
|
28
|
+
private:
|
|
29
|
+
struct WriteRequest {
|
|
30
|
+
std::string str;
|
|
31
|
+
int highest_request_id;
|
|
32
|
+
};
|
|
33
|
+
|
|
34
|
+
void AfterWrite();
|
|
35
|
+
void StartWrite(uv_buf_t buf);
|
|
36
|
+
void OpenNewFileForStreaming();
|
|
37
|
+
void WriteToFile(std::string&& str, int highest_request_id);
|
|
38
|
+
void WriteSuffix();
|
|
39
|
+
void FlushPrivate();
|
|
40
|
+
static void ExitSignalCb(uv_async_t* signal);
|
|
41
|
+
|
|
42
|
+
uv_loop_t* tracing_loop_ = nullptr;
|
|
43
|
+
// Triggers callback to initiate writing the contents of stream_ to disk.
|
|
44
|
+
uv_async_t flush_signal_;
|
|
45
|
+
// Triggers callback to close async objects, ending the tracing thread.
|
|
46
|
+
uv_async_t exit_signal_;
|
|
47
|
+
// Prevents concurrent R/W on state related to serialized trace data
|
|
48
|
+
// before it's written to disk, namely stream_ and total_traces_
|
|
49
|
+
// as well as json_trace_writer_.
|
|
50
|
+
Mutex stream_mutex_;
|
|
51
|
+
// Prevents concurrent R/W on state related to write requests.
|
|
52
|
+
// If both mutexes are locked, request_mutex_ has to be locked first.
|
|
53
|
+
Mutex request_mutex_;
|
|
54
|
+
// Allows blocking calls to Flush() to wait on a condition for
|
|
55
|
+
// trace events to be written to disk.
|
|
56
|
+
ConditionVariable request_cond_;
|
|
57
|
+
// Used to wait until async handles have been closed.
|
|
58
|
+
ConditionVariable exit_cond_;
|
|
59
|
+
int fd_ = -1;
|
|
60
|
+
uv_fs_t write_req_;
|
|
61
|
+
std::queue<WriteRequest> write_req_queue_;
|
|
62
|
+
int num_write_requests_ = 0;
|
|
63
|
+
int highest_request_id_completed_ = 0;
|
|
64
|
+
int total_traces_ = 0;
|
|
65
|
+
int file_num_ = 0;
|
|
66
|
+
std::string log_file_pattern_;
|
|
67
|
+
std::ostringstream stream_;
|
|
68
|
+
std::unique_ptr<TraceWriter> json_trace_writer_;
|
|
69
|
+
bool exited_ = false;
|
|
70
|
+
};
|
|
71
|
+
|
|
72
|
+
} // namespace tracing
|
|
73
|
+
} // namespace node
|
|
74
|
+
|
|
75
|
+
#endif // SRC_TRACING_NODE_TRACE_WRITER_H_
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
// Copyright 2016 the V8 project authors. All rights reserved.
|
|
2
|
+
// Use of this source code is governed by a BSD-style license that can be
|
|
3
|
+
// found in the LICENSE file.
|
|
4
|
+
|
|
5
|
+
#ifndef SRC_TRACING_TRACED_VALUE_H_
|
|
6
|
+
#define SRC_TRACING_TRACED_VALUE_H_
|
|
7
|
+
|
|
8
|
+
#include "node.h"
|
|
9
|
+
#include "util.h"
|
|
10
|
+
#include "v8.h"
|
|
11
|
+
|
|
12
|
+
#include <cstddef>
|
|
13
|
+
#include <memory>
|
|
14
|
+
#include <string>
|
|
15
|
+
|
|
16
|
+
namespace node {
|
|
17
|
+
namespace tracing {
|
|
18
|
+
|
|
19
|
+
class TracedValue : public v8::ConvertableToTraceFormat {
|
|
20
|
+
public:
|
|
21
|
+
~TracedValue() override = default;
|
|
22
|
+
|
|
23
|
+
static std::unique_ptr<TracedValue> Create();
|
|
24
|
+
static std::unique_ptr<TracedValue> CreateArray();
|
|
25
|
+
|
|
26
|
+
void EndDictionary();
|
|
27
|
+
void EndArray();
|
|
28
|
+
|
|
29
|
+
// These methods assume that |name| is a long lived "quoted" string.
|
|
30
|
+
void SetInteger(const char* name, int value);
|
|
31
|
+
void SetDouble(const char* name, double value);
|
|
32
|
+
void SetBoolean(const char* name, bool value);
|
|
33
|
+
void SetNull(const char* name);
|
|
34
|
+
void SetString(const char* name, const char* value);
|
|
35
|
+
void SetString(const char* name, const std::string& value) {
|
|
36
|
+
SetString(name, value.c_str());
|
|
37
|
+
}
|
|
38
|
+
void BeginDictionary(const char* name);
|
|
39
|
+
void BeginArray(const char* name);
|
|
40
|
+
|
|
41
|
+
void AppendInteger(int);
|
|
42
|
+
void AppendDouble(double);
|
|
43
|
+
void AppendBoolean(bool);
|
|
44
|
+
void AppendNull();
|
|
45
|
+
void AppendString(const char*);
|
|
46
|
+
void AppendString(const std::string& value) { AppendString(value.c_str()); }
|
|
47
|
+
void BeginArray();
|
|
48
|
+
void BeginDictionary();
|
|
49
|
+
|
|
50
|
+
// ConvertableToTraceFormat implementation.
|
|
51
|
+
void AppendAsTraceFormat(std::string* out) const override;
|
|
52
|
+
|
|
53
|
+
TracedValue(const TracedValue&) = delete;
|
|
54
|
+
TracedValue& operator=(const TracedValue&) = delete;
|
|
55
|
+
|
|
56
|
+
private:
|
|
57
|
+
explicit TracedValue(bool root_is_array = false);
|
|
58
|
+
|
|
59
|
+
void WriteComma();
|
|
60
|
+
void WriteName(const char* name);
|
|
61
|
+
|
|
62
|
+
std::string data_;
|
|
63
|
+
bool first_item_;
|
|
64
|
+
bool root_is_array_;
|
|
65
|
+
};
|
|
66
|
+
|
|
67
|
+
} // namespace tracing
|
|
68
|
+
} // namespace node
|
|
69
|
+
|
|
70
|
+
#endif // SRC_TRACING_TRACED_VALUE_H_
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// This is an auto generated file, please do not edit.
|
|
2
|
-
// Refer to tools/update-undici.sh
|
|
2
|
+
// Refer to tools/dep_updaters/update-undici.sh
|
|
3
3
|
#ifndef SRC_UNDICI_VERSION_H_
|
|
4
4
|
#define SRC_UNDICI_VERSION_H_
|
|
5
|
-
#define UNDICI_VERSION "5.26.
|
|
5
|
+
#define UNDICI_VERSION "5.26.4"
|
|
6
6
|
#endif // SRC_UNDICI_VERSION_H_
|