GCC Code Coverage Report
Directory: ./ Exec Total Coverage
File: inspector_js_api.cc Lines: 187 207 90.3 %
Date: 2022-05-23 04:15:47 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
1233
std::unique_ptr<StringBuffer> ToProtocolString(Isolate* isolate,
35
                                               Local<Value> value) {
36
1233
  TwoByteValue buffer(isolate, value);
37
1233
  return StringBuffer::create(StringView(*buffer, buffer.length()));
38
}
39
40
struct LocalConnection {
41
924
  static std::unique_ptr<InspectorSession> Connect(
42
      Agent* inspector, std::unique_ptr<InspectorSessionDelegate> delegate) {
43
924
    return inspector->Connect(std::move(delegate), false);
44
  }
45
46
847
  static Local<String> GetClassName(Environment* env) {
47
847
    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
847
  static Local<String> GetClassName(Environment* env) {
58
847
    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
1852
    JSBindingsSessionDelegate(Environment* env,
68
                              JSBindingsConnection* connection)
69
                              : env_(env),
70
1852
                                connection_(connection) {
71
1852
    }
72
73
13878
    void SendMessageToFrontend(const v8_inspector::StringView& message)
74
        override {
75
13878
      Isolate* isolate = env_->isolate();
76
13878
      HandleScope handle_scope(isolate);
77
27756
      Context::Scope context_scope(env_->context());
78
      Local<Value> argument;
79
13878
      if (!String::NewFromTwoByte(isolate, message.characters16(),
80
                                  NewStringType::kNormal,
81
27756
                                  message.length()).ToLocal(&argument)) return;
82
13878
      connection_->OnMessage(argument);
83
    }
84
85
   private:
86
    Environment* env_;
87
    BaseObjectPtr<JSBindingsConnection> connection_;
88
  };
89
90
1852
  JSBindingsConnection(Environment* env,
91
                       Local<Object> wrap,
92
                       Local<Function> callback)
93
                       : AsyncWrap(env, wrap, PROVIDER_INSPECTORJSBINDING),
94
1852
                         callback_(env->isolate(), callback) {
95
1852
    Agent* inspector = env->inspector_agent();
96
1852
    session_ = ConnectionType::Connect(
97
        inspector, std::make_unique<JSBindingsSessionDelegate>(env, this));
98
1852
  }
99
100
13878
  void OnMessage(Local<Value> value) {
101
27756
    MakeCallback(callback_.Get(env()->isolate()), 1, &value);
102
13878
  }
103
104
3388
  static void Bind(Environment* env, Local<Object> target) {
105
    Local<FunctionTemplate> tmpl =
106
3388
        env->NewFunctionTemplate(JSBindingsConnection::New);
107
6776
    tmpl->InstanceTemplate()->SetInternalFieldCount(
108
        JSBindingsConnection::kInternalFieldCount);
109
3388
    tmpl->Inherit(AsyncWrap::GetConstructorTemplate(env));
110
3388
    env->SetProtoMethod(tmpl, "dispatch", JSBindingsConnection::Dispatch);
111
3388
    env->SetProtoMethod(tmpl, "disconnect", JSBindingsConnection::Disconnect);
112
3388
    env->SetConstructorFunction(
113
        target,
114
        ConnectionType::GetClassName(env),
115
        tmpl);
116
3388
  }
117
118
1852
  static void New(const FunctionCallbackInfo<Value>& info) {
119
1852
    Environment* env = Environment::GetCurrent(info);
120
1852
    CHECK(info[0]->IsFunction());
121
3704
    Local<Function> callback = info[0].As<Function>();
122
1852
    new JSBindingsConnection(env, info.This(), callback);
123
1852
  }
124
125
1822
  void Disconnect() {
126
1822
    session_.reset();
127
1822
    delete this;
128
  }
129
130
1822
  static void Disconnect(const FunctionCallbackInfo<Value>& info) {
131
    JSBindingsConnection* session;
132
1822
    ASSIGN_OR_RETURN_UNWRAP(&session, info.Holder());
133
1822
    session->Disconnect();
134
  }
135
136
2466
  static void Dispatch(const FunctionCallbackInfo<Value>& info) {
137
2466
    Environment* env = Environment::GetCurrent(info);
138
    JSBindingsConnection* session;
139
2466
    ASSIGN_OR_RETURN_UNWRAP(&session, info.Holder());
140
4932
    CHECK(info[0]->IsString());
141
142
2466
    if (session->session_) {
143
4932
      session->session_->Dispatch(
144
4932
          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
44358
static bool InspectorEnabled(Environment* env) {
167
44358
  Agent* agent = env->inspector_agent();
168
44358
  return agent->IsActive();
169
}
170
171
847
void SetConsoleExtensionInstaller(const FunctionCallbackInfo<Value>& info) {
172
847
  auto env = Environment::GetCurrent(info);
173
174
847
  CHECK_EQ(info.Length(), 1);
175
847
  CHECK(info[0]->IsFunction());
176
177
1694
  env->set_inspector_console_extension_installer(info[0].As<Function>());
178
847
}
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
44352
void InspectorConsoleCall(const FunctionCallbackInfo<Value>& info) {
195
44352
  Environment* env = Environment::GetCurrent(info);
196
44352
  Isolate* isolate = env->isolate();
197
44352
  Local<Context> context = isolate->GetCurrentContext();
198
44352
  CHECK_GE(info.Length(), 2);
199
44352
  SlicedArguments call_args(info, /* start */ 2);
200
44352
  if (InspectorEnabled(env)) {
201
44351
    Local<Value> inspector_method = info[0];
202
44351
    CHECK(inspector_method->IsFunction());
203
44351
    if (!env->is_in_inspector_console_call()) {
204
44350
      env->set_is_in_inspector_console_call(true);
205
      MaybeLocal<Value> ret =
206
44350
          inspector_method.As<Function>()->Call(context,
207
                                                info.Holder(),
208
44350
                                                call_args.length(),
209
133050
                                                call_args.out());
210
44350
      env->set_is_in_inspector_console_call(false);
211
44350
      if (ret.IsEmpty())
212
9
        return;
213
    }
214
  }
215
216
44343
  Local<Value> node_method = info[1];
217
44343
  CHECK(node_method->IsFunction());
218
88686
  USE(node_method.As<Function>()->Call(context,
219
                                   info.Holder(),
220
44343
                                   call_args.length(),
221
177372
                                   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
5996
static void RegisterAsyncHookWrapper(const FunctionCallbackInfo<Value>& args) {
263
5996
  Environment* env = Environment::GetCurrent(args);
264
265
5996
  CHECK(args[0]->IsFunction());
266
11992
  Local<Function> enable_function = args[0].As<Function>();
267
5996
  CHECK(args[1]->IsFunction());
268
5996
  Local<Function> disable_function = args[1].As<Function>();
269
5996
  env->inspector_agent()->RegisterAsyncHook(env->isolate(),
270
    enable_function, disable_function);
271
5996
}
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
847
void Initialize(Local<Object> target, Local<Value> unused,
315
                Local<Context> context, void* priv) {
316
847
  Environment* env = Environment::GetCurrent(context);
317
318
  v8::Local<v8::Function> consoleCallFunc =
319
847
      env->NewFunctionTemplate(InspectorConsoleCall, v8::Local<v8::Signature>(),
320
                               v8::ConstructorBehavior::kThrow,
321
847
                               v8::SideEffectType::kHasSideEffect)
322
847
          ->GetFunction(context)
323
847
          .ToLocalChecked();
324
847
  auto name_string = FIXED_ONE_BYTE_STRING(env->isolate(), "consoleCall");
325
1694
  target->Set(context, name_string, consoleCallFunc).Check();
326
847
  consoleCallFunc->SetName(name_string);
327
328
847
  env->SetMethod(
329
      target, "setConsoleExtensionInstaller", SetConsoleExtensionInstaller);
330
847
  env->SetMethod(target, "callAndPauseOnStart", CallAndPauseOnStart);
331
847
  env->SetMethod(target, "open", Open);
332
847
  env->SetMethodNoSideEffect(target, "url", Url);
333
847
  env->SetMethod(target, "waitForDebugger", WaitForDebugger);
334
335
847
  env->SetMethod(target, "asyncTaskScheduled", AsyncTaskScheduledWrapper);
336
847
  env->SetMethod(target, "asyncTaskCanceled",
337
      InvokeAsyncTaskFnWithId<&Agent::AsyncTaskCanceled>);
338
847
  env->SetMethod(target, "asyncTaskStarted",
339
      InvokeAsyncTaskFnWithId<&Agent::AsyncTaskStarted>);
340
847
  env->SetMethod(target, "asyncTaskFinished",
341
      InvokeAsyncTaskFnWithId<&Agent::AsyncTaskFinished>);
342
343
847
  env->SetMethod(target, "registerAsyncHook", RegisterAsyncHookWrapper);
344
847
  env->SetMethodNoSideEffect(target, "isEnabled", IsEnabled);
345
346
847
  JSBindingsConnection<LocalConnection>::Bind(env, target);
347
847
  JSBindingsConnection<MainThreadConnection>::Bind(env, target);
348
847
}
349
350
}  // namespace
351
352
5187
void RegisterExternalReferences(ExternalReferenceRegistry* registry) {
353
5187
  registry->Register(InspectorConsoleCall);
354
5187
  registry->Register(SetConsoleExtensionInstaller);
355
5187
  registry->Register(CallAndPauseOnStart);
356
5187
  registry->Register(Open);
357
5187
  registry->Register(Url);
358
5187
  registry->Register(WaitForDebugger);
359
360
5187
  registry->Register(AsyncTaskScheduledWrapper);
361
5187
  registry->Register(InvokeAsyncTaskFnWithId<&Agent::AsyncTaskCanceled>);
362
5187
  registry->Register(InvokeAsyncTaskFnWithId<&Agent::AsyncTaskStarted>);
363
5187
  registry->Register(InvokeAsyncTaskFnWithId<&Agent::AsyncTaskFinished>);
364
365
5187
  registry->Register(RegisterAsyncHookWrapper);
366
5187
  registry->Register(IsEnabled);
367
368
5187
  registry->Register(JSBindingsConnection<LocalConnection>::New);
369
5187
  registry->Register(JSBindingsConnection<LocalConnection>::Dispatch);
370
5187
  registry->Register(JSBindingsConnection<LocalConnection>::Disconnect);
371
5187
  registry->Register(JSBindingsConnection<MainThreadConnection>::New);
372
5187
  registry->Register(JSBindingsConnection<MainThreadConnection>::Dispatch);
373
5187
  registry->Register(JSBindingsConnection<MainThreadConnection>::Disconnect);
374
5187
}
375
376
}  // namespace inspector
377
}  // namespace node
378
379
5255
NODE_MODULE_CONTEXT_AWARE_INTERNAL(inspector,
380
                                  node::inspector::Initialize)
381
5187
NODE_MODULE_EXTERNAL_REFERENCE(inspector,
382
                               node::inspector::RegisterExternalReferences)