2015-03-13 00:03:16 +00:00
|
|
|
// Copyright (c) 2015 GitHub, 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 "shell/app/node_main.h"
|
2015-03-13 00:03:16 +00:00
|
|
|
|
2018-09-13 00:25:56 +00:00
|
|
|
#include <memory>
|
2019-07-29 00:46:35 +00:00
|
|
|
#include <string>
|
2020-02-07 02:59:38 +00:00
|
|
|
#include <unordered_set>
|
2018-09-13 00:25:56 +00:00
|
|
|
#include <utility>
|
2020-02-07 02:59:38 +00:00
|
|
|
#include <vector>
|
2018-09-13 00:25:56 +00:00
|
|
|
|
2016-05-23 04:01:47 +00:00
|
|
|
#include "base/command_line.h"
|
|
|
|
#include "base/feature_list.h"
|
2020-02-07 02:59:38 +00:00
|
|
|
#include "base/strings/string_util.h"
|
|
|
|
#include "base/strings/utf_string_conversions.h"
|
2019-09-18 19:58:00 +00:00
|
|
|
#include "base/task/thread_pool/thread_pool_instance.h"
|
2016-07-04 06:08:55 +00:00
|
|
|
#include "base/threading/thread_task_runner_handle.h"
|
2019-06-19 21:31:55 +00:00
|
|
|
#include "electron/electron_version.h"
|
2015-03-13 00:03:16 +00:00
|
|
|
#include "gin/array_buffer.h"
|
|
|
|
#include "gin/public/isolate_holder.h"
|
2015-08-04 08:39:37 +00:00
|
|
|
#include "gin/v8_initializer.h"
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "shell/app/uv_task_runner.h"
|
|
|
|
#include "shell/browser/javascript_environment.h"
|
|
|
|
#include "shell/browser/node_debugger.h"
|
|
|
|
#include "shell/common/api/electron_bindings.h"
|
|
|
|
#include "shell/common/crash_reporter/crash_reporter.h"
|
2019-10-18 00:31:29 +00:00
|
|
|
#include "shell/common/gin_helper/dictionary.h"
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "shell/common/node_bindings.h"
|
|
|
|
#include "shell/common/node_includes.h"
|
2016-12-02 02:19:57 +00:00
|
|
|
|
2019-06-13 06:42:21 +00:00
|
|
|
#if defined(_WIN64)
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "shell/common/crash_reporter/crash_reporter_win.h"
|
2019-06-13 06:42:21 +00:00
|
|
|
#endif
|
|
|
|
|
2020-02-07 02:59:38 +00:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
// Initialize Node.js cli options to pass to Node.js
|
|
|
|
// See https://nodejs.org/api/cli.html#cli_options
|
|
|
|
void SetNodeCliFlags() {
|
|
|
|
// Options that are unilaterally disallowed
|
|
|
|
const std::unordered_set<base::StringPiece, base::StringPieceHash>
|
|
|
|
disallowed = {"--openssl-config", "--use-bundled-ca", "--use-openssl-ca",
|
|
|
|
"--force-fips", "--enable-fips"};
|
|
|
|
|
|
|
|
const auto argv = base::CommandLine::ForCurrentProcess()->argv();
|
|
|
|
std::vector<std::string> args;
|
|
|
|
|
|
|
|
// TODO(codebytere): We need to set the first entry in args to the
|
|
|
|
// process name owing to src/node_options-inl.h#L286-L290 but this is
|
|
|
|
// redundant and so should be refactored upstream.
|
|
|
|
args.reserve(argv.size() + 1);
|
|
|
|
args.emplace_back("electron");
|
|
|
|
|
|
|
|
for (const auto& arg : argv) {
|
|
|
|
#if defined(OS_WIN)
|
|
|
|
const auto& option = base::UTF16ToUTF8(arg);
|
|
|
|
#else
|
|
|
|
const auto& option = arg;
|
|
|
|
#endif
|
|
|
|
const auto stripped = base::StringPiece(option).substr(0, option.find('='));
|
|
|
|
if (disallowed.count(stripped) != 0) {
|
|
|
|
LOG(ERROR) << "The Node.js cli flag " << stripped
|
|
|
|
<< " is not supported in Electron";
|
|
|
|
} else {
|
|
|
|
args.push_back(option);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<std::string> errors;
|
|
|
|
|
|
|
|
// Node.js itself will output parsing errors to
|
|
|
|
// console so we don't need to handle that ourselves
|
|
|
|
ProcessGlobalArgs(&args, nullptr, &errors, node::kDisallowedInEnvironment);
|
|
|
|
}
|
|
|
|
|
2020-02-24 21:02:04 +00:00
|
|
|
// TODO(codebytere): expose this from Node.js itself?
|
|
|
|
void HostCleanupFinalizationGroupCallback(
|
|
|
|
v8::Local<v8::Context> context,
|
|
|
|
v8::Local<v8::FinalizationGroup> group) {
|
|
|
|
node::Environment* env = node::Environment::GetCurrent(context);
|
|
|
|
if (env == nullptr) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
env->RegisterFinalizationGroupForCleanup(group);
|
|
|
|
}
|
|
|
|
|
2020-04-17 01:46:09 +00:00
|
|
|
bool AllowWasmCodeGenerationCallback(v8::Local<v8::Context> context,
|
|
|
|
v8::Local<v8::String>) {
|
|
|
|
v8::Local<v8::Value> wasm_code_gen = context->GetEmbedderData(
|
|
|
|
node::ContextEmbedderIndex::kAllowWasmCodeGeneration);
|
|
|
|
return wasm_code_gen->IsUndefined() || wasm_code_gen->IsTrue();
|
|
|
|
}
|
|
|
|
|
2020-02-07 02:59:38 +00:00
|
|
|
} // namespace
|
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
namespace electron {
|
2015-03-13 00:03:16 +00:00
|
|
|
|
2019-07-29 00:46:35 +00:00
|
|
|
#if !defined(OS_LINUX)
|
|
|
|
void AddExtraParameter(const std::string& key, const std::string& value) {
|
|
|
|
crash_reporter::CrashReporter::GetInstance()->AddExtraParameter(key, value);
|
|
|
|
}
|
|
|
|
|
|
|
|
void RemoveExtraParameter(const std::string& key) {
|
|
|
|
crash_reporter::CrashReporter::GetInstance()->RemoveExtraParameter(key);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2018-04-18 01:55:30 +00:00
|
|
|
int NodeMain(int argc, char* argv[]) {
|
2015-08-27 05:16:19 +00:00
|
|
|
base::CommandLine::Init(argc, argv);
|
|
|
|
|
2015-03-13 00:03:16 +00:00
|
|
|
int exit_code = 1;
|
|
|
|
{
|
2015-09-03 02:28:50 +00:00
|
|
|
// Feed gin::PerIsolateData with a task runner.
|
2015-10-20 23:34:15 +00:00
|
|
|
argv = uv_setup_args(argc, argv);
|
2015-09-03 02:28:50 +00:00
|
|
|
uv_loop_t* loop = uv_default_loop();
|
|
|
|
scoped_refptr<UvTaskRunner> uv_task_runner(new UvTaskRunner(loop));
|
|
|
|
base::ThreadTaskRunnerHandle handle(uv_task_runner);
|
|
|
|
|
2016-05-23 04:01:47 +00:00
|
|
|
// Initialize feature list.
|
2018-06-18 07:32:55 +00:00
|
|
|
auto feature_list = std::make_unique<base::FeatureList>();
|
2016-05-23 04:01:47 +00:00
|
|
|
feature_list->InitializeFromCommandLine("", "");
|
|
|
|
base::FeatureList::SetInstance(std::move(feature_list));
|
|
|
|
|
2019-06-13 06:42:21 +00:00
|
|
|
#if defined(_WIN64)
|
|
|
|
crash_reporter::CrashReporterWin::SetUnhandledExceptionFilter();
|
|
|
|
#endif
|
2015-10-20 23:34:15 +00:00
|
|
|
|
2018-01-06 15:58:24 +00:00
|
|
|
// Explicitly register electron's builtin modules.
|
|
|
|
NodeBindings::RegisterBuiltinModules();
|
|
|
|
|
2020-02-07 02:59:38 +00:00
|
|
|
// Parse and set Node.js cli flags.
|
|
|
|
SetNodeCliFlags();
|
|
|
|
|
2015-10-20 23:34:15 +00:00
|
|
|
int exec_argc;
|
|
|
|
const char** exec_argv;
|
|
|
|
node::Init(&argc, const_cast<const char**>(argv), &exec_argc, &exec_argv);
|
|
|
|
|
2019-07-23 18:40:06 +00:00
|
|
|
gin::V8Initializer::LoadV8Snapshot(
|
|
|
|
gin::V8Initializer::V8SnapshotFileType::kWithAdditionalContext);
|
|
|
|
|
|
|
|
// V8 requires a task scheduler apparently
|
|
|
|
base::ThreadPoolInstance::CreateAndStartWithDefaultParams("Electron");
|
|
|
|
|
|
|
|
// Initialize gin::IsolateHolder.
|
|
|
|
JavascriptEnvironment gin_env(loop);
|
|
|
|
|
2020-02-28 23:08:27 +00:00
|
|
|
v8::Isolate* isolate = gin_env.isolate();
|
2020-04-21 19:18:22 +00:00
|
|
|
// TODO(ckerr) and/or TODO(codebytere) use node::SetIsolateMiscHandlers()
|
|
|
|
node::IsolateSettings is;
|
|
|
|
isolate->SetMicrotasksPolicy(is.policy);
|
|
|
|
|
2020-02-28 23:08:27 +00:00
|
|
|
v8::Isolate::Scope isolate_scope(isolate);
|
2020-03-11 01:16:58 +00:00
|
|
|
v8::Locker locker(isolate);
|
|
|
|
node::Environment* env = nullptr;
|
|
|
|
node::IsolateData* isolate_data = nullptr;
|
|
|
|
{
|
|
|
|
v8::HandleScope scope(isolate);
|
2020-02-28 23:08:27 +00:00
|
|
|
|
2020-03-11 01:16:58 +00:00
|
|
|
isolate_data = node::CreateIsolateData(isolate, loop, gin_env.platform());
|
|
|
|
CHECK_NE(nullptr, isolate_data);
|
2015-03-13 00:03:16 +00:00
|
|
|
|
2020-03-11 01:16:58 +00:00
|
|
|
env = node::CreateEnvironment(isolate_data, gin_env.context(), argc, argv,
|
|
|
|
exec_argc, exec_argv);
|
|
|
|
CHECK_NE(nullptr, env);
|
2017-06-12 18:53:11 +00:00
|
|
|
|
2020-04-27 08:03:40 +00:00
|
|
|
// This needs to be called before the inspector is initialized.
|
2020-03-11 01:16:58 +00:00
|
|
|
env->InitializeDiagnostics();
|
2020-02-24 21:02:04 +00:00
|
|
|
|
2020-03-11 01:16:58 +00:00
|
|
|
// This is needed in order to enable v8 host weakref hooks.
|
|
|
|
// TODO(codebytere): we shouldn't have to call this - upstream?
|
|
|
|
isolate->SetHostCleanupFinalizationGroupCallback(
|
|
|
|
HostCleanupFinalizationGroupCallback);
|
2020-02-24 21:02:04 +00:00
|
|
|
|
2020-04-17 01:46:09 +00:00
|
|
|
isolate->SetAllowWasmCodeGenerationCallback(
|
|
|
|
AllowWasmCodeGenerationCallback);
|
|
|
|
|
2020-03-11 01:16:58 +00:00
|
|
|
gin_helper::Dictionary process(isolate, env->process_object());
|
2016-12-02 02:19:57 +00:00
|
|
|
#if defined(OS_WIN)
|
2020-03-11 01:16:58 +00:00
|
|
|
process.SetMethod("log", &ElectronBindings::Log);
|
2016-10-12 20:01:17 +00:00
|
|
|
#endif
|
2020-03-11 01:16:58 +00:00
|
|
|
process.SetMethod("crash", &ElectronBindings::Crash);
|
2015-04-20 06:10:15 +00:00
|
|
|
|
2020-03-11 01:16:58 +00:00
|
|
|
// Setup process.crashReporter.start in child node processes
|
|
|
|
gin_helper::Dictionary reporter = gin::Dictionary::CreateEmpty(isolate);
|
|
|
|
reporter.SetMethod("start",
|
|
|
|
&crash_reporter::CrashReporter::StartInstance);
|
2019-07-29 00:46:35 +00:00
|
|
|
|
|
|
|
#if !defined(OS_LINUX)
|
2020-03-11 01:16:58 +00:00
|
|
|
reporter.SetMethod("addExtraParameter", &AddExtraParameter);
|
|
|
|
reporter.SetMethod("removeExtraParameter", &RemoveExtraParameter);
|
2019-07-29 00:46:35 +00:00
|
|
|
#endif
|
|
|
|
|
2020-03-11 01:16:58 +00:00
|
|
|
process.Set("crashReporter", reporter);
|
2016-12-09 09:44:12 +00:00
|
|
|
|
2020-03-11 01:16:58 +00:00
|
|
|
gin_helper::Dictionary versions;
|
|
|
|
if (process.Get("versions", &versions)) {
|
|
|
|
versions.SetReadOnly(ELECTRON_PROJECT_NAME, ELECTRON_VERSION_STRING);
|
|
|
|
}
|
2019-01-30 06:13:18 +00:00
|
|
|
}
|
|
|
|
|
2020-03-11 01:16:58 +00:00
|
|
|
// Enable support for v8 inspector.
|
|
|
|
NodeDebugger node_debugger(env);
|
|
|
|
node_debugger.Start();
|
|
|
|
|
2020-02-24 21:02:04 +00:00
|
|
|
// TODO(codebytere): we should try to handle this upstream.
|
|
|
|
{
|
2020-03-11 01:16:58 +00:00
|
|
|
v8::HandleScope scope(isolate);
|
2020-02-24 21:02:04 +00:00
|
|
|
node::InternalCallbackScope callback_scope(
|
|
|
|
env, v8::Local<v8::Object>(), {1, 0},
|
|
|
|
node::InternalCallbackScope::kAllowEmptyResource |
|
|
|
|
node::InternalCallbackScope::kSkipAsyncHooks);
|
|
|
|
node::LoadEnvironment(env);
|
|
|
|
}
|
|
|
|
|
2019-12-19 21:29:09 +00:00
|
|
|
{
|
|
|
|
v8::SealHandleScope seal(isolate);
|
|
|
|
bool more;
|
|
|
|
do {
|
|
|
|
uv_run(env->event_loop(), UV_RUN_DEFAULT);
|
|
|
|
|
2020-02-28 23:08:27 +00:00
|
|
|
gin_env.platform()->DrainTasks(isolate);
|
2016-10-11 23:55:57 +00:00
|
|
|
|
2019-12-19 21:29:09 +00:00
|
|
|
more = uv_loop_alive(env->event_loop());
|
|
|
|
if (more && !env->is_stopping())
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (!uv_loop_alive(env->event_loop())) {
|
|
|
|
EmitBeforeExit(env);
|
|
|
|
}
|
2015-03-13 00:03:16 +00:00
|
|
|
|
|
|
|
// Emit `beforeExit` if the loop became alive either after emitting
|
|
|
|
// event, or after running some callbacks.
|
|
|
|
more = uv_loop_alive(env->event_loop());
|
2019-12-19 21:29:09 +00:00
|
|
|
} while (more && !env->is_stopping());
|
|
|
|
}
|
2015-03-13 00:03:16 +00:00
|
|
|
|
2019-04-30 22:44:40 +00:00
|
|
|
node_debugger.Stop();
|
2015-03-13 00:03:16 +00:00
|
|
|
exit_code = node::EmitExit(env);
|
2019-12-19 21:29:09 +00:00
|
|
|
|
|
|
|
node::ResetStdio();
|
|
|
|
|
2019-07-23 21:56:22 +00:00
|
|
|
env->set_can_call_into_js(false);
|
2019-12-19 21:29:09 +00:00
|
|
|
env->stop_sub_worker_contexts();
|
|
|
|
env->RunCleanup();
|
2015-03-13 00:03:16 +00:00
|
|
|
|
2019-12-19 21:29:09 +00:00
|
|
|
node::RunAtExit(env);
|
2016-07-21 07:43:21 +00:00
|
|
|
node::FreeEnvironment(env);
|
2019-10-08 07:03:04 +00:00
|
|
|
node::FreeIsolateData(isolate_data);
|
2019-07-23 21:56:22 +00:00
|
|
|
|
|
|
|
gin_env.platform()->DrainTasks(isolate);
|
|
|
|
gin_env.platform()->CancelPendingDelayedTasks(isolate);
|
|
|
|
gin_env.platform()->UnregisterIsolate(isolate);
|
2015-03-13 00:03:16 +00:00
|
|
|
}
|
|
|
|
|
2017-10-26 12:06:34 +00:00
|
|
|
// According to "src/gin/shell/gin_main.cc":
|
|
|
|
//
|
2019-04-20 17:20:37 +00:00
|
|
|
// gin::IsolateHolder waits for tasks running in ThreadPool in its
|
|
|
|
// destructor and thus must be destroyed before ThreadPool starts skipping
|
2017-10-26 12:06:34 +00:00
|
|
|
// CONTINUE_ON_SHUTDOWN tasks.
|
2019-06-04 03:44:12 +00:00
|
|
|
base::ThreadPoolInstance::Get()->Shutdown();
|
2017-10-26 12:06:34 +00:00
|
|
|
|
2015-03-13 00:03:16 +00:00
|
|
|
v8::V8::Dispose();
|
|
|
|
|
|
|
|
return exit_code;
|
|
|
|
}
|
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
} // namespace electron
|