2019-04-02 22:38:16 +00:00
|
|
|
// Copyright (c) 2019 Slack Technologies, Inc.
|
|
|
|
// Use of this source code is governed by the MIT license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "electron/shell/renderer/electron_api_service_impl.h"
|
2019-04-02 22:38:16 +00:00
|
|
|
|
|
|
|
#include <memory>
|
|
|
|
#include <utility>
|
|
|
|
#include <vector>
|
|
|
|
|
2019-06-13 06:42:21 +00:00
|
|
|
#include "base/environment.h"
|
2019-04-02 22:38:16 +00:00
|
|
|
#include "base/threading/thread_restrictions.h"
|
2021-04-27 21:27:34 +00:00
|
|
|
#include "base/trace_event/trace_event.h"
|
2020-03-12 01:07:54 +00:00
|
|
|
#include "gin/data_object_builder.h"
|
2019-04-02 22:38:16 +00:00
|
|
|
#include "mojo/public/cpp/system/platform_handle.h"
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "shell/common/electron_constants.h"
|
2019-10-31 07:56:00 +00:00
|
|
|
#include "shell/common/gin_converters/blink_converter.h"
|
|
|
|
#include "shell/common/gin_converters/value_converter.h"
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "shell/common/heap_snapshot.h"
|
2019-09-06 05:52:54 +00:00
|
|
|
#include "shell/common/node_includes.h"
|
|
|
|
#include "shell/common/options_switches.h"
|
2020-03-12 01:07:54 +00:00
|
|
|
#include "shell/common/v8_value_serializer.h"
|
2019-09-06 05:52:54 +00:00
|
|
|
#include "shell/renderer/electron_render_frame_observer.h"
|
|
|
|
#include "shell/renderer/renderer_client_base.h"
|
2020-08-12 18:33:58 +00:00
|
|
|
#include "third_party/blink/public/mojom/frame/user_activation_notification_type.mojom-shared.h"
|
2019-04-02 22:38:16 +00:00
|
|
|
#include "third_party/blink/public/web/blink.h"
|
|
|
|
#include "third_party/blink/public/web/web_local_frame.h"
|
2020-03-12 01:07:54 +00:00
|
|
|
#include "third_party/blink/public/web/web_message_port_converter.h"
|
2019-04-02 22:38:16 +00:00
|
|
|
|
|
|
|
namespace electron {
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
const char kIpcKey[] = "ipcNative";
|
|
|
|
|
|
|
|
// Gets the private object under kIpcKey
|
|
|
|
v8::Local<v8::Object> GetIpcObject(v8::Local<v8::Context> context) {
|
|
|
|
auto* isolate = context->GetIsolate();
|
2019-09-06 05:52:54 +00:00
|
|
|
auto binding_key = gin::StringToV8(isolate, kIpcKey);
|
2019-04-02 22:38:16 +00:00
|
|
|
auto private_binding_key = v8::Private::ForApi(isolate, binding_key);
|
|
|
|
auto global_object = context->Global();
|
|
|
|
auto value =
|
|
|
|
global_object->GetPrivate(context, private_binding_key).ToLocalChecked();
|
2019-08-05 19:50:51 +00:00
|
|
|
if (value.IsEmpty() || !value->IsObject()) {
|
|
|
|
LOG(ERROR) << "Attempted to get the 'ipcNative' object but it was missing";
|
|
|
|
return v8::Local<v8::Object>();
|
|
|
|
}
|
2019-04-20 17:20:37 +00:00
|
|
|
return value->ToObject(context).ToLocalChecked();
|
2019-04-02 22:38:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void InvokeIpcCallback(v8::Local<v8::Context> context,
|
|
|
|
const std::string& callback_name,
|
|
|
|
std::vector<v8::Local<v8::Value>> args) {
|
|
|
|
TRACE_EVENT0("devtools.timeline", "FunctionCall");
|
|
|
|
auto* isolate = context->GetIsolate();
|
|
|
|
|
|
|
|
auto ipcNative = GetIpcObject(context);
|
2019-08-05 19:50:51 +00:00
|
|
|
if (ipcNative.IsEmpty())
|
|
|
|
return;
|
2019-04-02 22:38:16 +00:00
|
|
|
|
|
|
|
// Only set up the node::CallbackScope if there's a node environment.
|
|
|
|
// Sandboxed renderers don't have a node environment.
|
|
|
|
node::Environment* env = node::Environment::GetCurrent(context);
|
|
|
|
std::unique_ptr<node::CallbackScope> callback_scope;
|
|
|
|
if (env) {
|
2021-06-15 00:37:55 +00:00
|
|
|
node::async_context async_context = {};
|
|
|
|
callback_scope = std::make_unique<node::CallbackScope>(isolate, ipcNative,
|
|
|
|
async_context);
|
2019-04-02 22:38:16 +00:00
|
|
|
}
|
|
|
|
|
2019-09-06 05:52:54 +00:00
|
|
|
auto callback_key = gin::ConvertToV8(isolate, callback_name)
|
2019-04-20 17:20:37 +00:00
|
|
|
->ToString(context)
|
|
|
|
.ToLocalChecked();
|
2019-05-01 00:18:22 +00:00
|
|
|
auto callback_value = ipcNative->Get(context, callback_key).ToLocalChecked();
|
2019-04-02 22:38:16 +00:00
|
|
|
DCHECK(callback_value->IsFunction()); // set by init.ts
|
2019-11-27 01:01:13 +00:00
|
|
|
auto callback = callback_value.As<v8::Function>();
|
2022-02-10 02:58:52 +00:00
|
|
|
std::ignore = callback->Call(context, ipcNative, args.size(), args.data());
|
2019-04-02 22:38:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void EmitIPCEvent(v8::Local<v8::Context> context,
|
|
|
|
bool internal,
|
|
|
|
const std::string& channel,
|
2020-03-12 01:07:54 +00:00
|
|
|
std::vector<v8::Local<v8::Value>> ports,
|
2019-10-09 17:59:08 +00:00
|
|
|
v8::Local<v8::Value> args,
|
2019-04-02 22:38:16 +00:00
|
|
|
int32_t sender_id) {
|
|
|
|
auto* isolate = context->GetIsolate();
|
|
|
|
|
|
|
|
v8::HandleScope handle_scope(isolate);
|
|
|
|
v8::Context::Scope context_scope(context);
|
|
|
|
v8::MicrotasksScope script_scope(isolate,
|
|
|
|
v8::MicrotasksScope::kRunMicrotasks);
|
|
|
|
|
|
|
|
std::vector<v8::Local<v8::Value>> argv = {
|
2019-09-06 05:52:54 +00:00
|
|
|
gin::ConvertToV8(isolate, internal), gin::ConvertToV8(isolate, channel),
|
2020-03-12 01:07:54 +00:00
|
|
|
gin::ConvertToV8(isolate, ports), args,
|
|
|
|
gin::ConvertToV8(isolate, sender_id)};
|
2019-04-02 22:38:16 +00:00
|
|
|
|
|
|
|
InvokeIpcCallback(context, "onMessage", argv);
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
ElectronApiServiceImpl::~ElectronApiServiceImpl() = default;
|
|
|
|
|
|
|
|
ElectronApiServiceImpl::ElectronApiServiceImpl(
|
|
|
|
content::RenderFrame* render_frame,
|
2019-08-12 17:38:41 +00:00
|
|
|
RendererClientBase* renderer_client)
|
2019-04-02 22:38:16 +00:00
|
|
|
: content::RenderFrameObserver(render_frame),
|
2021-02-09 20:16:21 +00:00
|
|
|
renderer_client_(renderer_client) {
|
2022-09-07 07:46:37 +00:00
|
|
|
registry_.AddInterface<mojom::ElectronRenderer>(base::BindRepeating(
|
|
|
|
&ElectronApiServiceImpl::BindTo, base::Unretained(this)));
|
2021-02-09 20:16:21 +00:00
|
|
|
}
|
2019-04-02 22:38:16 +00:00
|
|
|
|
2019-08-12 17:38:41 +00:00
|
|
|
void ElectronApiServiceImpl::BindTo(
|
2021-02-09 20:16:21 +00:00
|
|
|
mojo::PendingReceiver<mojom::ElectronRenderer> receiver) {
|
|
|
|
if (document_created_) {
|
|
|
|
if (receiver_.is_bound())
|
|
|
|
receiver_.reset();
|
|
|
|
|
|
|
|
receiver_.Bind(std::move(receiver));
|
|
|
|
receiver_.set_disconnect_handler(base::BindOnce(
|
|
|
|
&ElectronApiServiceImpl::OnConnectionError, GetWeakPtr()));
|
|
|
|
} else {
|
|
|
|
pending_receiver_ = std::move(receiver);
|
|
|
|
}
|
|
|
|
}
|
2019-08-12 17:38:41 +00:00
|
|
|
|
2021-02-09 20:16:21 +00:00
|
|
|
void ElectronApiServiceImpl::OnInterfaceRequestForFrame(
|
|
|
|
const std::string& interface_name,
|
|
|
|
mojo::ScopedMessagePipeHandle* interface_pipe) {
|
|
|
|
registry_.TryBindInterface(interface_name, interface_pipe);
|
2019-08-12 17:38:41 +00:00
|
|
|
}
|
2019-04-02 22:38:16 +00:00
|
|
|
|
2019-08-12 17:38:41 +00:00
|
|
|
void ElectronApiServiceImpl::DidCreateDocumentElement() {
|
|
|
|
document_created_ = true;
|
2021-02-09 20:16:21 +00:00
|
|
|
|
|
|
|
if (pending_receiver_) {
|
|
|
|
if (receiver_.is_bound())
|
|
|
|
receiver_.reset();
|
|
|
|
|
|
|
|
receiver_.Bind(std::move(pending_receiver_));
|
|
|
|
receiver_.set_disconnect_handler(base::BindOnce(
|
|
|
|
&ElectronApiServiceImpl::OnConnectionError, GetWeakPtr()));
|
|
|
|
}
|
2019-04-02 22:38:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ElectronApiServiceImpl::OnDestruct() {
|
|
|
|
delete this;
|
|
|
|
}
|
|
|
|
|
2019-08-12 17:38:41 +00:00
|
|
|
void ElectronApiServiceImpl::OnConnectionError() {
|
2019-10-28 22:12:35 +00:00
|
|
|
if (receiver_.is_bound())
|
|
|
|
receiver_.reset();
|
2019-08-12 17:38:41 +00:00
|
|
|
}
|
|
|
|
|
2019-04-02 22:38:16 +00:00
|
|
|
void ElectronApiServiceImpl::Message(bool internal,
|
|
|
|
const std::string& channel,
|
2019-10-09 17:59:08 +00:00
|
|
|
blink::CloneableMessage arguments,
|
2019-04-02 22:38:16 +00:00
|
|
|
int32_t sender_id) {
|
2019-08-12 17:38:41 +00:00
|
|
|
blink::WebLocalFrame* frame = render_frame()->GetWebFrame();
|
2019-04-02 22:38:16 +00:00
|
|
|
if (!frame)
|
|
|
|
return;
|
|
|
|
|
|
|
|
v8::Isolate* isolate = blink::MainThreadIsolate();
|
|
|
|
v8::HandleScope handle_scope(isolate);
|
|
|
|
|
|
|
|
v8::Local<v8::Context> context = renderer_client_->GetContext(frame, isolate);
|
2019-10-09 17:59:08 +00:00
|
|
|
v8::Context::Scope context_scope(context);
|
|
|
|
|
|
|
|
v8::Local<v8::Value> args = gin::ConvertToV8(isolate, arguments);
|
2019-04-02 22:38:16 +00:00
|
|
|
|
2020-03-12 01:07:54 +00:00
|
|
|
EmitIPCEvent(context, internal, channel, {}, args, sender_id);
|
2019-04-02 22:38:16 +00:00
|
|
|
}
|
|
|
|
|
2020-03-12 01:07:54 +00:00
|
|
|
void ElectronApiServiceImpl::ReceivePostMessage(
|
|
|
|
const std::string& channel,
|
|
|
|
blink::TransferableMessage message) {
|
|
|
|
blink::WebLocalFrame* frame = render_frame()->GetWebFrame();
|
|
|
|
if (!frame)
|
|
|
|
return;
|
|
|
|
|
|
|
|
v8::Isolate* isolate = blink::MainThreadIsolate();
|
|
|
|
v8::HandleScope handle_scope(isolate);
|
|
|
|
|
|
|
|
v8::Local<v8::Context> context = renderer_client_->GetContext(frame, isolate);
|
|
|
|
v8::Context::Scope context_scope(context);
|
|
|
|
|
|
|
|
v8::Local<v8::Value> message_value = DeserializeV8Value(isolate, message);
|
|
|
|
|
|
|
|
std::vector<v8::Local<v8::Value>> ports;
|
|
|
|
for (auto& port : message.ports) {
|
|
|
|
ports.emplace_back(
|
|
|
|
blink::WebMessagePortConverter::EntangleAndInjectMessagePortChannel(
|
|
|
|
context, std::move(port)));
|
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<v8::Local<v8::Value>> args = {message_value};
|
|
|
|
|
|
|
|
EmitIPCEvent(context, false, channel, ports, gin::ConvertToV8(isolate, args),
|
|
|
|
0);
|
|
|
|
}
|
|
|
|
|
2019-04-02 22:38:16 +00:00
|
|
|
void ElectronApiServiceImpl::TakeHeapSnapshot(
|
|
|
|
mojo::ScopedHandle file,
|
|
|
|
TakeHeapSnapshotCallback callback) {
|
|
|
|
base::ThreadRestrictions::ScopedAllowIO allow_io;
|
|
|
|
|
2020-10-28 00:33:04 +00:00
|
|
|
base::ScopedPlatformFile platform_file;
|
2019-04-02 22:38:16 +00:00
|
|
|
if (mojo::UnwrapPlatformFile(std::move(file), &platform_file) !=
|
|
|
|
MOJO_RESULT_OK) {
|
|
|
|
LOG(ERROR) << "Unable to get the file handle from mojo.";
|
|
|
|
std::move(callback).Run(false);
|
|
|
|
return;
|
|
|
|
}
|
2020-10-28 00:33:04 +00:00
|
|
|
base::File base_file(std::move(platform_file));
|
2019-04-02 22:38:16 +00:00
|
|
|
|
|
|
|
bool success =
|
|
|
|
electron::TakeHeapSnapshot(blink::MainThreadIsolate(), &base_file);
|
|
|
|
|
|
|
|
std::move(callback).Run(success);
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace electron
|