GCC Code Coverage Report
Directory: ./ Exec Total Coverage
File: inspector_js_api.cc Lines: 187 207 90.3 %
Date: 2022-05-20 04:15:46 Branches: 37 78 47.4 %

Line Branch Exec Source
1
#include "base_object-inl.h"
2
#include "inspector_agent.h"
3
#include "inspector_io.h"
4
#include "memory_tracker-inl.h"
5
#include "node_external_reference.h"
6
#include "util-inl.h"
7
#include "v8-inspector.h"
8
#include "v8.h"
9
10
#include <memory>
11
12
namespace node {
13
namespace inspector {
14
namespace {
15
16
using v8::Context;
17
using v8::Function;
18
using v8::FunctionCallbackInfo;
19
using v8::FunctionTemplate;
20
using v8::Global;
21
using v8::HandleScope;
22
using v8::Isolate;
23
using v8::Local;
24
using v8::MaybeLocal;
25
using v8::NewStringType;
26
using v8::Object;
27
using v8::String;
28
using v8::Uint32;
29
using v8::Value;
30
31
using v8_inspector::StringBuffer;
32
using v8_inspector::StringView;
33
34
1231
std::unique_ptr<StringBuffer> ToProtocolString(Isolate* isolate,
35
                                               Local<Value> value) {
36
1231
  TwoByteValue buffer(isolate, value);
37
1231
  return StringBuffer::create(StringView(*buffer, buffer.length()));
38
}
39
40
struct LocalConnection {
41
923
  static std::unique_ptr<InspectorSession> Connect(
42
      Agent* inspector, std::unique_ptr<InspectorSessionDelegate> delegate) {
43
923
    return inspector->Connect(std::move(delegate), false);
44
  }
45
46
844
  static Local<String> GetClassName(Environment* env) {
47
844
    return FIXED_ONE_BYTE_STRING(env->isolate(), "Connection");
48
  }
49
};
50
51
struct MainThreadConnection {
52
2
  static std::unique_ptr<InspectorSession> Connect(
53
      Agent* inspector, std::unique_ptr<InspectorSessionDelegate> delegate) {
54
2
    return inspector->ConnectToMainThread(std::move(delegate), true);
55
  }
56
57
844
  static Local<String> GetClassName(Environment* env) {
58
844
    return FIXED_ONE_BYTE_STRING(env->isolate(), "MainThreadConnection");
59
  }
60
};
61
62
template <typename ConnectionType>
63
class JSBindingsConnection : public AsyncWrap {
64
 public:
65
  class JSBindingsSessionDelegate : public InspectorSessionDelegate {
66
   public:
67
1850
    JSBindingsSessionDelegate(Environment* env,
68
                              JSBindingsConnection* connection)
69
                              : env_(env),
70
1850
                                connection_(connection) {
71
1850
    }
72
73
13868
    void SendMessageToFrontend(const v8_inspector::StringView& message)
74
        override {
75
13868
      Isolate* isolate = env_->isolate();
76
13868
      HandleScope handle_scope(isolate);
77
27736
      Context::Scope context_scope(env_->context());
78
      Local<Value> argument;
79
13868
      if (!String::NewFromTwoByte(isolate, message.characters16(),
80
                                  NewStringType::kNormal,
81
27736
                                  message.length()).ToLocal(&argument)) return;
82
13868
      connection_->OnMessage(argument);
83
    }
84
85
   private:
86
    Environment* env_;
87
    BaseObjectPtr<JSBindingsConnection> connection_;
88
  };
89
90
1850
  JSBindingsConnection(Environment* env,
91
                       Local<Object> wrap,
92
                       Local<Function> callback)
93
                       : AsyncWrap(env, wrap, PROVIDER_INSPECTORJSBINDING),
94
1850
                         callback_(env->isolate(), callback) {
95
1850
    Agent* inspector = env->inspector_agent();
96
1850
    session_ = ConnectionType::Connect(
97
        inspector, std::make_unique<JSBindingsSessionDelegate>(env, this));
98
1850
  }
99
100
13868
  void OnMessage(Local<Value> value) {
101
27736
    MakeCallback(callback_.Get(env()->isolate()), 1, &value);
102
13868
  }
103
104
3376
  static void Bind(Environment* env, Local<Object> target) {
105
    Local<FunctionTemplate> tmpl =
106
3376
        env->NewFunctionTemplate(JSBindingsConnection::New);
107
6752
    tmpl->InstanceTemplate()->SetInternalFieldCount(
108
        JSBindingsConnection::kInternalFieldCount);
109
3376
    tmpl->Inherit(AsyncWrap::GetConstructorTemplate(env));
110
3376
    env->SetProtoMethod(tmpl, "dispatch", JSBindingsConnection::Dispatch);
111
3376
    env->SetProtoMethod(tmpl, "disconnect", JSBindingsConnection::Disconnect);
112
3376
    env->SetConstructorFunction(
113
        target,
114
        ConnectionType::GetClassName(env),
115
        tmpl);
116
3376
  }
117
118
1850
  static void New(const FunctionCallbackInfo<Value>& info) {
119
1850
    Environment* env = Environment::GetCurrent(info);
120
1850
    CHECK(info[0]->IsFunction());
121
3700
    Local<Function> callback = info[0].As<Function>();
122
1850
    new JSBindingsConnection(env, info.This(), callback);
123
1850
  }
124
125
1820
  void Disconnect() {
126
1820
    session_.reset();
127
1820
    delete this;
128
  }
129
130
1820
  static void Disconnect(const FunctionCallbackInfo<Value>& info) {
131
    JSBindingsConnection* session;
132
1820
    ASSIGN_OR_RETURN_UNWRAP(&session, info.Holder());
133
1820
    session->Disconnect();
134
  }
135
136
2462
  static void Dispatch(const FunctionCallbackInfo<Value>& info) {
137
2462
    Environment* env = Environment::GetCurrent(info);
138
    JSBindingsConnection* session;
139
2462
    ASSIGN_OR_RETURN_UNWRAP(&session, info.Holder());
140
4924
    CHECK(info[0]->IsString());
141
142
2462
    if (session->session_) {
143
4924
      session->session_->Dispatch(
144
4924
          ToProtocolString(env->isolate(), info[0])->string());
145
    }
146
  }
147
148
4
  void MemoryInfo(MemoryTracker* tracker) const override {
149
4
    tracker->TrackField("callback", callback_);
150
4
    tracker->TrackFieldWithSize(
151
        "session", sizeof(*session_), "InspectorSession");
152
  }
153
154
4
  SET_MEMORY_INFO_NAME(JSBindingsConnection)
155
2
  SET_SELF_SIZE(JSBindingsConnection)
156
157
  bool IsNotIndicativeOfMemoryLeakAtExit() const override {
158
    return true;  // Binding connections emit events on their own.
159
  }
160
161
 private:
162
  std::unique_ptr<InspectorSession> session_;
163
  Global<Function> callback_;
164
};
165
166
44254
static bool InspectorEnabled(Environment* env) {
167
44254
  Agent* agent = env->inspector_agent();
168
44254
  return agent->IsActive();
169
}
170
171
844
void SetConsoleExtensionInstaller(const FunctionCallbackInfo<Value>& info) {
172
844
  auto env = Environment::GetCurrent(info);
173
174
844
  CHECK_EQ(info.Length(), 1);
175
844
  CHECK(info[0]->IsFunction());
176
177
1688
  env->set_inspector_console_extension_installer(info[0].As<Function>());
178
844
}
179
180
8
void CallAndPauseOnStart(const FunctionCallbackInfo<v8::Value>& args) {
181
8
  Environment* env = Environment::GetCurrent(args);
182
8
  CHECK_GT(args.Length(), 1);
183
8
  CHECK(args[0]->IsFunction());
184
14
  SlicedArguments call_args(args, /* start */ 2);
185
8
  env->inspector_agent()->PauseOnNextJavascriptStatement("Break on start");
186
  v8::MaybeLocal<v8::Value> retval =
187
22
      args[0].As<v8::Function>()->Call(env->context(), args[1],
188
16
                                       call_args.length(), call_args.out());
189
6
  if (!retval.IsEmpty()) {
190
10
    args.GetReturnValue().Set(retval.ToLocalChecked());
191
  }
192
6
}
193
194
44248
void InspectorConsoleCall(const FunctionCallbackInfo<Value>& info) {
195
44248
  Environment* env = Environment::GetCurrent(info);
196
44248
  Isolate* isolate = env->isolate();
197
44248
  Local<Context> context = isolate->GetCurrentContext();
198
44248
  CHECK_GE(info.Length(), 2);
199
44248
  SlicedArguments call_args(info, /* start */ 2);
200
44248
  if (InspectorEnabled(env)) {
201
44247
    Local<Value> inspector_method = info[0];
202
44247
    CHECK(inspector_method->IsFunction());
203
44247
    if (!env->is_in_inspector_console_call()) {
204
44246
      env->set_is_in_inspector_console_call(true);
205
      MaybeLocal<Value> ret =
206
44246
          inspector_method.As<Function>()->Call(context,
207
                                                info.Holder(),
208
44246
                                                call_args.length(),
209
132738
                                                call_args.out());
210
44246
      env->set_is_in_inspector_console_call(false);
211
44246
      if (ret.IsEmpty())
212
9
        return;
213
    }
214
  }
215
216
44239
  Local<Value> node_method = info[1];
217
44239
  CHECK(node_method->IsFunction());
218
88478
  USE(node_method.As<Function>()->Call(context,
219
                                   info.Holder(),
220
44239
                                   call_args.length(),
221
176956
                                   call_args.out()));
222
}
223
224
25
static void* GetAsyncTask(int64_t asyncId) {
225
  // The inspector assumes that when other clients use its asyncTask* API,
226
  // they use real pointers, or at least something aligned like real pointer.
227
  // In general it means that our task_id should always be even.
228
  //
229
  // On 32bit platforms, the 64bit asyncId would get truncated when converted
230
  // to a 32bit pointer. However, the javascript part will never enable
231
  // the async_hook on 32bit platforms, therefore the truncation will never
232
  // happen in practice.
233
25
  return reinterpret_cast<void*>(asyncId << 1);
234
}
235
236
template <void (Agent::*asyncTaskFn)(void*)>
237
44
static void InvokeAsyncTaskFnWithId(const FunctionCallbackInfo<Value>& args) {
238
44
  Environment* env = Environment::GetCurrent(args);
239
44
  CHECK(args[0]->IsNumber());
240
44
  int64_t task_id = args[0]->IntegerValue(env->context()).FromJust();
241
44
  (env->inspector_agent()->*asyncTaskFn)(GetAsyncTask(task_id));
242
44
}
243
244
3
static void AsyncTaskScheduledWrapper(const FunctionCallbackInfo<Value>& args) {
245
3
  Environment* env = Environment::GetCurrent(args);
246
247
6
  CHECK(args[0]->IsString());
248
6
  Local<String> task_name = args[0].As<String>();
249
6
  String::Value task_name_value(args.GetIsolate(), task_name);
250
3
  StringView task_name_view(*task_name_value, task_name_value.length());
251
252
3
  CHECK(args[1]->IsNumber());
253
3
  int64_t task_id = args[1]->IntegerValue(env->context()).FromJust();
254
3
  void* task = GetAsyncTask(task_id);
255
256
3
  CHECK(args[2]->IsBoolean());
257
3
  bool recurring = args[2]->BooleanValue(args.GetIsolate());
258
259
3
  env->inspector_agent()->AsyncTaskScheduled(task_name_view, task, recurring);
260
3
}
261
262
5916
static void RegisterAsyncHookWrapper(const FunctionCallbackInfo<Value>& args) {
263
5916
  Environment* env = Environment::GetCurrent(args);
264
265
5916
  CHECK(args[0]->IsFunction());
266
11832
  Local<Function> enable_function = args[0].As<Function>();
267
5916
  CHECK(args[1]->IsFunction());
268
5916
  Local<Function> disable_function = args[1].As<Function>();
269
5916
  env->inspector_agent()->RegisterAsyncHook(env->isolate(),
270
    enable_function, disable_function);
271
5916
}
272
273
6
void IsEnabled(const FunctionCallbackInfo<Value>& args) {
274
6
  Environment* env = Environment::GetCurrent(args);
275
6
  args.GetReturnValue().Set(InspectorEnabled(env));
276
6
}
277
278
void Open(const FunctionCallbackInfo<Value>& args) {
279
  Environment* env = Environment::GetCurrent(args);
280
  Agent* agent = env->inspector_agent();
281
282
  if (args.Length() > 0 && args[0]->IsUint32()) {
283
    uint32_t port = args[0].As<Uint32>()->Value();
284
    ExclusiveAccess<HostPort>::Scoped host_port(agent->host_port());
285
    host_port->set_port(static_cast<int>(port));
286
  }
287
288
  if (args.Length() > 1 && args[1]->IsString()) {
289
    Utf8Value host(env->isolate(), args[1].As<String>());
290
    ExclusiveAccess<HostPort>::Scoped host_port(agent->host_port());
291
    host_port->set_host(*host);
292
  }
293
294
  agent->StartIoThread();
295
}
296
297
void WaitForDebugger(const FunctionCallbackInfo<Value>& args) {
298
  Environment* env = Environment::GetCurrent(args);
299
  Agent* agent = env->inspector_agent();
300
  if (agent->IsActive())
301
    agent->WaitForConnect();
302
  args.GetReturnValue().Set(agent->IsActive());
303
}
304
305
6
void Url(const FunctionCallbackInfo<Value>& args) {
306
6
  Environment* env = Environment::GetCurrent(args);
307
6
  std::string url = env->inspector_agent()->GetWsUrl();
308
6
  if (url.empty()) {
309
1
    return;
310
  }
311
10
  args.GetReturnValue().Set(OneByteString(env->isolate(), url.c_str()));
312
}
313
314
844
void Initialize(Local<Object> target, Local<Value> unused,
315
                Local<Context> context, void* priv) {
316
844
  Environment* env = Environment::GetCurrent(context);
317
318
  v8::Local<v8::Function> consoleCallFunc =
319
844
      env->NewFunctionTemplate(InspectorConsoleCall, v8::Local<v8::Signature>(),
320
                               v8::ConstructorBehavior::kThrow,
321
844
                               v8::SideEffectType::kHasSideEffect)
322
844
          ->GetFunction(context)
323
844
          .ToLocalChecked();
324
844
  auto name_string = FIXED_ONE_BYTE_STRING(env->isolate(), "consoleCall");
325
1688
  target->Set(context, name_string, consoleCallFunc).Check();
326
844
  consoleCallFunc->SetName(name_string);
327
328
844
  env->SetMethod(
329
      target, "setConsoleExtensionInstaller", SetConsoleExtensionInstaller);
330
844
  env->SetMethod(target, "callAndPauseOnStart", CallAndPauseOnStart);
331
844
  env->SetMethod(target, "open", Open);
332
844
  env->SetMethodNoSideEffect(target, "url", Url);
333
844
  env->SetMethod(target, "waitForDebugger", WaitForDebugger);
334
335
844
  env->SetMethod(target, "asyncTaskScheduled", AsyncTaskScheduledWrapper);
336
844
  env->SetMethod(target, "asyncTaskCanceled",
337
      InvokeAsyncTaskFnWithId<&Agent::AsyncTaskCanceled>);
338
844
  env->SetMethod(target, "asyncTaskStarted",
339
      InvokeAsyncTaskFnWithId<&Agent::AsyncTaskStarted>);
340
844
  env->SetMethod(target, "asyncTaskFinished",
341
      InvokeAsyncTaskFnWithId<&Agent::AsyncTaskFinished>);
342
343
844
  env->SetMethod(target, "registerAsyncHook", RegisterAsyncHookWrapper);
344
844
  env->SetMethodNoSideEffect(target, "isEnabled", IsEnabled);
345
346
844
  JSBindingsConnection<LocalConnection>::Bind(env, target);
347
844
  JSBindingsConnection<MainThreadConnection>::Bind(env, target);
348
844
}
349
350
}  // namespace
351
352
5111
void RegisterExternalReferences(ExternalReferenceRegistry* registry) {
353
5111
  registry->Register(InspectorConsoleCall);
354
5111
  registry->Register(SetConsoleExtensionInstaller);
355
5111
  registry->Register(CallAndPauseOnStart);
356
5111
  registry->Register(Open);
357
5111
  registry->Register(Url);
358
5111
  registry->Register(WaitForDebugger);
359
360
5111
  registry->Register(AsyncTaskScheduledWrapper);
361
5111
  registry->Register(InvokeAsyncTaskFnWithId<&Agent::AsyncTaskCanceled>);
362
5111
  registry->Register(InvokeAsyncTaskFnWithId<&Agent::AsyncTaskStarted>);
363
5111
  registry->Register(InvokeAsyncTaskFnWithId<&Agent::AsyncTaskFinished>);
364
365
5111
  registry->Register(RegisterAsyncHookWrapper);
366
5111
  registry->Register(IsEnabled);
367
368
5111
  registry->Register(JSBindingsConnection<LocalConnection>::New);
369
5111
  registry->Register(JSBindingsConnection<LocalConnection>::Dispatch);
370
5111
  registry->Register(JSBindingsConnection<LocalConnection>::Disconnect);
371
5111
  registry->Register(JSBindingsConnection<MainThreadConnection>::New);
372
5111
  registry->Register(JSBindingsConnection<MainThreadConnection>::Dispatch);
373
5111
  registry->Register(JSBindingsConnection<MainThreadConnection>::Disconnect);
374
5111
}
375
376
}  // namespace inspector
377
}  // namespace node
378
379
5169
NODE_MODULE_CONTEXT_AWARE_INTERNAL(inspector,
380
                                  node::inspector::Initialize)
381
5111
NODE_MODULE_EXTERNAL_REFERENCE(inspector,
382
                               node::inspector::RegisterExternalReferences)