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
|
|
|
|
|
2020-05-07 20:31:26 +00:00
|
|
|
|
#include <map>
|
2018-09-13 00:25:56 +00:00
|
|
|
|
#include <memory>
|
2019-07-29 00:46:35 +00:00
|
|
|
|
#include <string>
|
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
|
|
|
|
|
2020-05-07 20:31:26 +00:00
|
|
|
|
#include "base/base_switches.h"
|
2016-05-23 04:01:47 +00:00
|
|
|
|
#include "base/command_line.h"
|
2023-06-13 19:37:59 +00:00
|
|
|
|
#include "base/containers/fixed_flat_set.h"
|
2016-05-23 04:01:47 +00:00
|
|
|
|
#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"
|
2023-02-03 11:43:42 +00:00
|
|
|
|
#include "base/task/single_thread_task_runner.h"
|
2019-09-18 19:58:00 +00:00
|
|
|
|
#include "base/task/thread_pool/thread_pool_instance.h"
|
2020-05-07 20:31:26 +00:00
|
|
|
|
#include "content/public/common/content_switches.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/common/api/electron_bindings.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
|
|
|
|
|
2022-02-10 02:58:52 +00:00
|
|
|
|
#if BUILDFLAG(IS_WIN)
|
2020-05-07 20:31:26 +00:00
|
|
|
|
#include "chrome/child/v8_crashpad_support_win.h"
|
2019-06-13 06:42:21 +00:00
|
|
|
|
#endif
|
|
|
|
|
|
2022-11-29 15:33:54 +00:00
|
|
|
|
#if BUILDFLAG(IS_LINUX)
|
|
|
|
|
#include "base/environment.h"
|
|
|
|
|
#include "base/posix/global_descriptors.h"
|
|
|
|
|
#include "base/strings/string_number_conversions.h"
|
|
|
|
|
#include "components/crash/core/app/crash_switches.h" // nogncheck
|
|
|
|
|
#include "content/public/common/content_descriptors.h"
|
|
|
|
|
#endif
|
|
|
|
|
|
2022-11-14 20:46:52 +00:00
|
|
|
|
#if !IS_MAS_BUILD()
|
2020-06-16 21:19:57 +00:00
|
|
|
|
#include "components/crash/core/app/crashpad.h" // nogncheck
|
|
|
|
|
#include "shell/app/electron_crash_reporter_client.h"
|
|
|
|
|
#include "shell/common/crash_keys.h"
|
|
|
|
|
#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
|
2021-06-17 06:50:56 +00:00
|
|
|
|
int SetNodeCliFlags() {
|
2020-02-07 02:59:38 +00:00
|
|
|
|
// Options that are unilaterally disallowed
|
2023-06-13 19:37:59 +00:00
|
|
|
|
static constexpr auto disallowed = base::MakeFixedFlatSet<base::StringPiece>({
|
|
|
|
|
"--enable-fips",
|
|
|
|
|
"--force-fips",
|
|
|
|
|
"--openssl-config",
|
|
|
|
|
"--use-bundled-ca",
|
|
|
|
|
"--use-openssl-ca",
|
|
|
|
|
});
|
2020-02-07 02:59:38 +00:00
|
|
|
|
|
|
|
|
|
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) {
|
2022-02-10 02:58:52 +00:00
|
|
|
|
#if BUILDFLAG(IS_WIN)
|
2021-03-18 19:55:51 +00:00
|
|
|
|
const auto& option = base::WideToUTF8(arg);
|
2020-02-07 02:59:38 +00:00
|
|
|
|
#else
|
|
|
|
|
const auto& option = arg;
|
|
|
|
|
#endif
|
|
|
|
|
const auto stripped = base::StringPiece(option).substr(0, option.find('='));
|
2023-06-13 19:37:59 +00:00
|
|
|
|
if (disallowed.contains(stripped)) {
|
2020-02-07 02:59:38 +00:00
|
|
|
|
LOG(ERROR) << "The Node.js cli flag " << stripped
|
|
|
|
|
<< " is not supported in Electron";
|
2021-06-17 06:50:56 +00:00
|
|
|
|
// Node.js returns 9 from ProcessGlobalArgs for any errors encountered
|
|
|
|
|
// when setting up cli flags and env vars. Since we're outlawing these
|
|
|
|
|
// flags (making them errors) return 9 here for consistency.
|
|
|
|
|
return 9;
|
2020-02-07 02:59:38 +00:00
|
|
|
|
} 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
|
2021-06-17 06:50:56 +00:00
|
|
|
|
return ProcessGlobalArgs(&args, nullptr, &errors,
|
|
|
|
|
node::kDisallowedInEnvironment);
|
2020-02-07 02:59:38 +00:00
|
|
|
|
}
|
|
|
|
|
|
2022-11-14 20:46:52 +00:00
|
|
|
|
#if IS_MAS_BUILD()
|
2020-06-16 21:19:57 +00:00
|
|
|
|
void SetCrashKeyStub(const std::string& key, const std::string& value) {}
|
|
|
|
|
void ClearCrashKeyStub(const std::string& key) {}
|
|
|
|
|
#endif
|
|
|
|
|
|
2020-02-07 02:59:38 +00:00
|
|
|
|
} // namespace
|
|
|
|
|
|
2015-03-13 00:03:16 +00:00
|
|
|
|
namespace electron {
|
|
|
|
|
|
2020-05-07 20:31:26 +00:00
|
|
|
|
v8::Local<v8::Value> GetParameters(v8::Isolate* isolate) {
|
|
|
|
|
std::map<std::string, std::string> keys;
|
2022-11-14 20:46:52 +00:00
|
|
|
|
#if !IS_MAS_BUILD()
|
2020-05-07 20:31:26 +00:00
|
|
|
|
electron::crash_keys::GetCrashKeys(&keys);
|
2019-07-29 00:46:35 +00:00
|
|
|
|
#endif
|
2020-05-07 20:31:26 +00:00
|
|
|
|
return gin::ConvertToV8(isolate, keys);
|
|
|
|
|
}
|
2019-07-29 00:46:35 +00:00
|
|
|
|
|
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);
|
|
|
|
|
|
2022-02-10 02:58:52 +00:00
|
|
|
|
#if BUILDFLAG(IS_WIN)
|
2020-05-07 20:31:26 +00:00
|
|
|
|
v8_crashpad_support::SetUp();
|
|
|
|
|
#endif
|
|
|
|
|
|
2022-11-29 15:33:54 +00:00
|
|
|
|
#if BUILDFLAG(IS_LINUX)
|
|
|
|
|
auto os_env = base::Environment::Create();
|
|
|
|
|
std::string fd_string, pid_string;
|
|
|
|
|
if (os_env->GetVar("CRASHDUMP_SIGNAL_FD", &fd_string) &&
|
|
|
|
|
os_env->GetVar("CRASHPAD_HANDLER_PID", &pid_string)) {
|
|
|
|
|
int fd = -1, pid = -1;
|
|
|
|
|
DCHECK(base::StringToInt(fd_string, &fd));
|
|
|
|
|
DCHECK(base::StringToInt(pid_string, &pid));
|
|
|
|
|
base::GlobalDescriptors::GetInstance()->Set(kCrashDumpSignal, fd);
|
|
|
|
|
// Following API is unsafe in multi-threaded scenario, but at this point
|
|
|
|
|
// we are still single threaded.
|
|
|
|
|
os_env->UnSetVar("CRASHDUMP_SIGNAL_FD");
|
|
|
|
|
os_env->UnSetVar("CRASHPAD_HANDLER_PID");
|
|
|
|
|
}
|
2020-05-07 20:31:26 +00:00
|
|
|
|
#endif
|
|
|
|
|
|
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.
|
|
|
|
|
uv_loop_t* loop = uv_default_loop();
|
2021-06-08 02:00:05 +00:00
|
|
|
|
auto uv_task_runner = base::MakeRefCounted<UvTaskRunner>(loop);
|
2023-02-03 11:43:42 +00:00
|
|
|
|
base::SingleThreadTaskRunner::CurrentDefaultHandle handle(uv_task_runner);
|
2015-09-03 02:28:50 +00:00
|
|
|
|
|
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));
|
|
|
|
|
|
2023-02-09 01:31:38 +00:00
|
|
|
|
// Explicitly register electron's builtin bindings.
|
|
|
|
|
NodeBindings::RegisterBuiltinBindings();
|
2018-01-06 15:58:24 +00:00
|
|
|
|
|
2020-02-07 02:59:38 +00:00
|
|
|
|
// Parse and set Node.js cli flags.
|
2021-06-17 06:50:56 +00:00
|
|
|
|
int flags_exit_code = SetNodeCliFlags();
|
|
|
|
|
if (flags_exit_code != 0)
|
|
|
|
|
exit(flags_exit_code);
|
2020-02-07 02:59:38 +00:00
|
|
|
|
|
2022-11-21 15:55:01 +00:00
|
|
|
|
// Hack around with the argv pointer. Used for process.title = "blah".
|
|
|
|
|
argv = uv_setup_args(argc, argv);
|
2021-06-17 06:50:56 +00:00
|
|
|
|
|
2022-11-21 15:55:01 +00:00
|
|
|
|
std::vector<std::string> args(argv, argv + argc);
|
|
|
|
|
std::unique_ptr<node::InitializationResult> result =
|
|
|
|
|
node::InitializeOncePerProcess(
|
|
|
|
|
args,
|
|
|
|
|
{node::ProcessInitializationFlags::kNoInitializeV8,
|
|
|
|
|
node::ProcessInitializationFlags::kNoInitializeNodeV8Platform});
|
|
|
|
|
|
|
|
|
|
for (const std::string& error : result->errors())
|
|
|
|
|
fprintf(stderr, "%s: %s\n", args[0].c_str(), error.c_str());
|
|
|
|
|
|
|
|
|
|
if (result->early_return() != 0) {
|
|
|
|
|
return result->exit_code();
|
|
|
|
|
}
|
2015-10-20 23:34:15 +00:00
|
|
|
|
|
2022-11-29 15:33:54 +00:00
|
|
|
|
#if BUILDFLAG(IS_LINUX)
|
|
|
|
|
// On Linux, initialize crashpad after Nodejs init phase so that
|
|
|
|
|
// crash and termination signal handlers can be set by the crashpad client.
|
|
|
|
|
if (!pid_string.empty()) {
|
|
|
|
|
auto* command_line = base::CommandLine::ForCurrentProcess();
|
|
|
|
|
command_line->AppendSwitchASCII(
|
|
|
|
|
crash_reporter::switches::kCrashpadHandlerPid, pid_string);
|
|
|
|
|
ElectronCrashReporterClient::Create();
|
|
|
|
|
crash_reporter::InitializeCrashpad(false, "node");
|
|
|
|
|
crash_keys::SetCrashKeysFromCommandLine(
|
|
|
|
|
*base::CommandLine::ForCurrentProcess());
|
|
|
|
|
crash_keys::SetPlatformCrashKey();
|
|
|
|
|
// Ensure the flags and env variable does not propagate to userland.
|
|
|
|
|
command_line->RemoveSwitch(crash_reporter::switches::kCrashpadHandlerPid);
|
|
|
|
|
}
|
|
|
|
|
#elif BUILDFLAG(IS_WIN) || (BUILDFLAG(IS_MAC) && !IS_MAS_BUILD())
|
|
|
|
|
ElectronCrashReporterClient::Create();
|
|
|
|
|
crash_reporter::InitializeCrashpad(false, "node");
|
|
|
|
|
crash_keys::SetCrashKeysFromCommandLine(
|
|
|
|
|
*base::CommandLine::ForCurrentProcess());
|
|
|
|
|
crash_keys::SetPlatformCrashKey();
|
|
|
|
|
#endif
|
|
|
|
|
|
2019-07-23 18:40:06 +00:00
|
|
|
|
gin::V8Initializer::LoadV8Snapshot(
|
2021-11-24 08:45:59 +00:00
|
|
|
|
gin::V8SnapshotFileType::kWithAdditionalContext);
|
2019-07-23 18:40:06 +00:00
|
|
|
|
|
2020-09-22 14:11:56 +00:00
|
|
|
|
// V8 requires a task scheduler.
|
2019-07-23 18:40:06 +00:00
|
|
|
|
base::ThreadPoolInstance::CreateAndStartWithDefaultParams("Electron");
|
|
|
|
|
|
2020-09-22 14:11:56 +00:00
|
|
|
|
// Allow Node.js to track the amount of time the event loop has spent
|
|
|
|
|
// idle in the kernel’s event provider .
|
|
|
|
|
uv_loop_configure(loop, UV_METRICS_IDLE_TIME);
|
|
|
|
|
|
2019-07-23 18:40:06 +00:00
|
|
|
|
// Initialize gin::IsolateHolder.
|
2022-12-05 17:07:49 +00:00
|
|
|
|
bool setup_wasm_streaming =
|
|
|
|
|
node::per_process::cli_options->get_per_isolate_options()
|
|
|
|
|
->get_per_env_options()
|
|
|
|
|
->experimental_fetch;
|
|
|
|
|
JavascriptEnvironment gin_env(loop, setup_wasm_streaming);
|
2019-07-23 18:40:06 +00:00
|
|
|
|
|
2020-02-28 23:08:27 +00:00
|
|
|
|
v8::Isolate* isolate = gin_env.isolate();
|
2020-04-21 19:18:22 +00:00
|
|
|
|
|
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
|
|
|
|
|
2022-09-07 07:46:37 +00:00
|
|
|
|
uint64_t env_flags = node::EnvironmentFlags::kDefaultFlags |
|
|
|
|
|
node::EnvironmentFlags::kHideConsoleWindows;
|
2021-11-23 17:34:07 +00:00
|
|
|
|
env = node::CreateEnvironment(
|
2023-02-09 08:48:49 +00:00
|
|
|
|
isolate_data, isolate->GetCurrentContext(), result->args(),
|
|
|
|
|
result->exec_args(),
|
2022-09-07 07:46:37 +00:00
|
|
|
|
static_cast<node::EnvironmentFlags::Flags>(env_flags));
|
2021-08-18 20:34:15 +00:00
|
|
|
|
CHECK_NE(nullptr, env);
|
2017-06-12 18:53:11 +00:00
|
|
|
|
|
2022-12-05 17:07:49 +00:00
|
|
|
|
node::SetIsolateUpForNode(isolate);
|
2020-04-17 01:46:09 +00:00
|
|
|
|
|
2020-03-11 01:16:58 +00:00
|
|
|
|
gin_helper::Dictionary process(isolate, env->process_object());
|
|
|
|
|
process.SetMethod("crash", &ElectronBindings::Crash);
|
2015-04-20 06:10:15 +00:00
|
|
|
|
|
2020-05-07 20:31:26 +00:00
|
|
|
|
// Setup process.crashReporter in child node processes
|
2020-03-11 01:16:58 +00:00
|
|
|
|
gin_helper::Dictionary reporter = gin::Dictionary::CreateEmpty(isolate);
|
2020-05-07 20:31:26 +00:00
|
|
|
|
reporter.SetMethod("getParameters", &GetParameters);
|
2022-11-14 20:46:52 +00:00
|
|
|
|
#if IS_MAS_BUILD()
|
2020-06-16 21:19:57 +00:00
|
|
|
|
reporter.SetMethod("addExtraParameter", &SetCrashKeyStub);
|
|
|
|
|
reporter.SetMethod("removeExtraParameter", &ClearCrashKeyStub);
|
|
|
|
|
#else
|
2020-05-07 20:31:26 +00:00
|
|
|
|
reporter.SetMethod("addExtraParameter",
|
|
|
|
|
&electron::crash_keys::SetCrashKey);
|
|
|
|
|
reporter.SetMethod("removeExtraParameter",
|
|
|
|
|
&electron::crash_keys::ClearCrashKey);
|
2020-06-16 21:19:57 +00:00
|
|
|
|
#endif
|
2020-05-07 20:31:26 +00:00
|
|
|
|
|
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-12-16 20:02:36 +00:00
|
|
|
|
v8::HandleScope scope(isolate);
|
2021-06-17 06:50:56 +00:00
|
|
|
|
node::LoadEnvironment(env, node::StartExecutionCallback{});
|
2020-02-24 21:02:04 +00:00
|
|
|
|
|
2023-02-14 08:54:09 +00:00
|
|
|
|
// Potential reasons we get Nothing here may include: the env
|
|
|
|
|
// is stopping, or the user hooks process.emit('exit').
|
|
|
|
|
exit_code = node::SpinEventLoop(env).FromMaybe(1);
|
2019-12-19 21:29:09 +00:00
|
|
|
|
|
|
|
|
|
node::ResetStdio();
|
|
|
|
|
|
2023-04-18 20:23:11 +00:00
|
|
|
|
node::Stop(env, node::StopFlags::kDoNotTerminateIsolate);
|
2023-02-09 08:48:49 +00:00
|
|
|
|
|
2016-07-21 07:43:21 +00:00
|
|
|
|
node::FreeEnvironment(env);
|
2019-10-08 07:03:04 +00:00
|
|
|
|
node::FreeIsolateData(isolate_data);
|
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;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace electron
|