2015-03-13 03:03:16 +03: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 23:46:59 +03:00
|
|
|
|
#include "shell/app/node_main.h"
|
2015-03-13 03:03:16 +03:00
|
|
|
|
|
2020-05-07 23:31:26 +03:00
|
|
|
|
#include <map>
|
2018-09-13 03:25:56 +03:00
|
|
|
|
#include <memory>
|
2019-07-29 03:46:35 +03:00
|
|
|
|
#include <string>
|
2020-02-07 05:59:38 +03:00
|
|
|
|
#include <unordered_set>
|
2018-09-13 03:25:56 +03:00
|
|
|
|
#include <utility>
|
2020-02-07 05:59:38 +03:00
|
|
|
|
#include <vector>
|
2018-09-13 03:25:56 +03:00
|
|
|
|
|
2020-05-07 23:31:26 +03:00
|
|
|
|
#include "base/base_switches.h"
|
2016-05-23 07:01:47 +03:00
|
|
|
|
#include "base/command_line.h"
|
|
|
|
|
#include "base/feature_list.h"
|
2020-02-07 05:59:38 +03:00
|
|
|
|
#include "base/strings/string_util.h"
|
|
|
|
|
#include "base/strings/utf_string_conversions.h"
|
2019-09-18 22:58:00 +03:00
|
|
|
|
#include "base/task/thread_pool/thread_pool_instance.h"
|
2016-07-04 09:08:55 +03:00
|
|
|
|
#include "base/threading/thread_task_runner_handle.h"
|
2020-05-07 23:31:26 +03:00
|
|
|
|
#include "content/public/common/content_switches.h"
|
2019-06-20 00:31:55 +03:00
|
|
|
|
#include "electron/electron_version.h"
|
2015-03-13 03:03:16 +03:00
|
|
|
|
#include "gin/array_buffer.h"
|
|
|
|
|
#include "gin/public/isolate_holder.h"
|
2015-08-04 11:39:37 +03:00
|
|
|
|
#include "gin/v8_initializer.h"
|
2019-06-19 23:46:59 +03:00
|
|
|
|
#include "shell/app/uv_task_runner.h"
|
|
|
|
|
#include "shell/browser/javascript_environment.h"
|
|
|
|
|
#include "shell/common/api/electron_bindings.h"
|
2019-10-18 03:31:29 +03:00
|
|
|
|
#include "shell/common/gin_helper/dictionary.h"
|
2019-06-19 23:46:59 +03:00
|
|
|
|
#include "shell/common/node_bindings.h"
|
|
|
|
|
#include "shell/common/node_includes.h"
|
2016-12-02 05:19:57 +03:00
|
|
|
|
|
2022-02-10 05:58:52 +03:00
|
|
|
|
#if BUILDFLAG(IS_LINUX)
|
2020-05-07 23:31:26 +03:00
|
|
|
|
#include "components/crash/core/app/breakpad_linux.h"
|
|
|
|
|
#endif
|
|
|
|
|
|
2022-02-10 05:58:52 +03:00
|
|
|
|
#if BUILDFLAG(IS_WIN)
|
2020-05-07 23:31:26 +03:00
|
|
|
|
#include "chrome/child/v8_crashpad_support_win.h"
|
2019-06-13 09:42:21 +03:00
|
|
|
|
#endif
|
|
|
|
|
|
2020-06-17 00:19:57 +03:00
|
|
|
|
#if !defined(MAS_BUILD)
|
|
|
|
|
#include "components/crash/core/app/crashpad.h" // nogncheck
|
|
|
|
|
#include "shell/app/electron_crash_reporter_client.h"
|
|
|
|
|
#include "shell/browser/api/electron_api_crash_reporter.h"
|
|
|
|
|
#include "shell/common/crash_keys.h"
|
|
|
|
|
#endif
|
|
|
|
|
|
2020-02-07 05:59:38 +03:00
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
|
|
// Initialize Node.js cli options to pass to Node.js
|
|
|
|
|
// See https://nodejs.org/api/cli.html#cli_options
|
2021-06-17 09:50:56 +03:00
|
|
|
|
int SetNodeCliFlags() {
|
2020-02-07 05:59:38 +03:00
|
|
|
|
// 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) {
|
2022-02-10 05:58:52 +03:00
|
|
|
|
#if BUILDFLAG(IS_WIN)
|
2021-03-18 22:55:51 +03:00
|
|
|
|
const auto& option = base::WideToUTF8(arg);
|
2020-02-07 05:59:38 +03:00
|
|
|
|
#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";
|
2021-06-17 09:50:56 +03: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 05:59:38 +03: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 09:50:56 +03:00
|
|
|
|
return ProcessGlobalArgs(&args, nullptr, &errors,
|
|
|
|
|
node::kDisallowedInEnvironment);
|
2020-02-07 05:59:38 +03:00
|
|
|
|
}
|
|
|
|
|
|
2020-06-17 00:19:57 +03:00
|
|
|
|
#if defined(MAS_BUILD)
|
|
|
|
|
void SetCrashKeyStub(const std::string& key, const std::string& value) {}
|
|
|
|
|
void ClearCrashKeyStub(const std::string& key) {}
|
|
|
|
|
#endif
|
|
|
|
|
|
2020-02-07 05:59:38 +03:00
|
|
|
|
} // namespace
|
|
|
|
|
|
2015-03-13 03:03:16 +03:00
|
|
|
|
namespace electron {
|
|
|
|
|
|
2022-02-10 05:58:52 +03:00
|
|
|
|
#if BUILDFLAG(IS_LINUX)
|
2020-05-07 23:31:26 +03:00
|
|
|
|
void CrashReporterStart(gin_helper::Dictionary options) {
|
|
|
|
|
std::string submit_url;
|
|
|
|
|
bool upload_to_server = true;
|
|
|
|
|
bool ignore_system_crash_handler = false;
|
|
|
|
|
bool rate_limit = false;
|
|
|
|
|
bool compress = false;
|
|
|
|
|
std::map<std::string, std::string> global_extra;
|
|
|
|
|
std::map<std::string, std::string> extra;
|
|
|
|
|
options.Get("submitURL", &submit_url);
|
|
|
|
|
options.Get("uploadToServer", &upload_to_server);
|
|
|
|
|
options.Get("ignoreSystemCrashHandler", &ignore_system_crash_handler);
|
|
|
|
|
options.Get("rateLimit", &rate_limit);
|
|
|
|
|
options.Get("compress", &compress);
|
|
|
|
|
options.Get("extra", &extra);
|
|
|
|
|
options.Get("globalExtra", &global_extra);
|
|
|
|
|
|
|
|
|
|
std::string product_name;
|
|
|
|
|
if (options.Get("productName", &product_name))
|
|
|
|
|
global_extra["_productName"] = product_name;
|
|
|
|
|
std::string company_name;
|
|
|
|
|
if (options.Get("companyName", &company_name))
|
|
|
|
|
global_extra["_companyName"] = company_name;
|
|
|
|
|
api::crash_reporter::Start(submit_url, upload_to_server,
|
|
|
|
|
ignore_system_crash_handler, rate_limit, compress,
|
|
|
|
|
global_extra, extra, true);
|
2019-07-29 03:46:35 +03:00
|
|
|
|
}
|
2020-05-07 23:31:26 +03:00
|
|
|
|
#endif
|
2019-07-29 03:46:35 +03:00
|
|
|
|
|
2020-05-07 23:31:26 +03:00
|
|
|
|
v8::Local<v8::Value> GetParameters(v8::Isolate* isolate) {
|
|
|
|
|
std::map<std::string, std::string> keys;
|
|
|
|
|
#if !defined(MAS_BUILD)
|
|
|
|
|
electron::crash_keys::GetCrashKeys(&keys);
|
2019-07-29 03:46:35 +03:00
|
|
|
|
#endif
|
2020-05-07 23:31:26 +03:00
|
|
|
|
return gin::ConvertToV8(isolate, keys);
|
|
|
|
|
}
|
2019-07-29 03:46:35 +03:00
|
|
|
|
|
2018-04-18 04:55:30 +03:00
|
|
|
|
int NodeMain(int argc, char* argv[]) {
|
2015-08-27 08:16:19 +03:00
|
|
|
|
base::CommandLine::Init(argc, argv);
|
|
|
|
|
|
2022-02-10 05:58:52 +03:00
|
|
|
|
#if BUILDFLAG(IS_WIN)
|
2020-05-07 23:31:26 +03:00
|
|
|
|
v8_crashpad_support::SetUp();
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#if !defined(MAS_BUILD)
|
|
|
|
|
ElectronCrashReporterClient::Create();
|
|
|
|
|
#endif
|
|
|
|
|
|
2022-02-10 05:58:52 +03:00
|
|
|
|
#if BUILDFLAG(IS_WIN) || (BUILDFLAG(IS_MAC) && !defined(MAS_BUILD))
|
2020-05-07 23:31:26 +03:00
|
|
|
|
crash_reporter::InitializeCrashpad(false, "node");
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#if !defined(MAS_BUILD)
|
|
|
|
|
crash_keys::SetCrashKeysFromCommandLine(
|
|
|
|
|
*base::CommandLine::ForCurrentProcess());
|
|
|
|
|
crash_keys::SetPlatformCrashKey();
|
|
|
|
|
#endif
|
|
|
|
|
|
2015-03-13 03:03:16 +03:00
|
|
|
|
int exit_code = 1;
|
|
|
|
|
{
|
2015-09-03 05:28:50 +03:00
|
|
|
|
// Feed gin::PerIsolateData with a task runner.
|
|
|
|
|
uv_loop_t* loop = uv_default_loop();
|
2021-06-08 05:00:05 +03:00
|
|
|
|
auto uv_task_runner = base::MakeRefCounted<UvTaskRunner>(loop);
|
2015-09-03 05:28:50 +03:00
|
|
|
|
base::ThreadTaskRunnerHandle handle(uv_task_runner);
|
|
|
|
|
|
2016-05-23 07:01:47 +03:00
|
|
|
|
// Initialize feature list.
|
2018-06-18 10:32:55 +03:00
|
|
|
|
auto feature_list = std::make_unique<base::FeatureList>();
|
2016-05-23 07:01:47 +03:00
|
|
|
|
feature_list->InitializeFromCommandLine("", "");
|
|
|
|
|
base::FeatureList::SetInstance(std::move(feature_list));
|
|
|
|
|
|
2018-01-06 18:58:24 +03:00
|
|
|
|
// Explicitly register electron's builtin modules.
|
|
|
|
|
NodeBindings::RegisterBuiltinModules();
|
|
|
|
|
|
2020-02-07 05:59:38 +03:00
|
|
|
|
// Parse and set Node.js cli flags.
|
2021-06-17 09:50:56 +03:00
|
|
|
|
int flags_exit_code = SetNodeCliFlags();
|
|
|
|
|
if (flags_exit_code != 0)
|
|
|
|
|
exit(flags_exit_code);
|
2020-02-07 05:59:38 +03:00
|
|
|
|
|
2021-06-28 19:05:38 +03:00
|
|
|
|
node::InitializationSettingsFlags flags = node::kRunPlatformInit;
|
2021-06-17 09:50:56 +03:00
|
|
|
|
node::InitializationResult result =
|
2021-06-28 19:05:38 +03:00
|
|
|
|
node::InitializeOncePerProcess(argc, argv, flags);
|
2021-06-17 09:50:56 +03:00
|
|
|
|
|
|
|
|
|
if (result.early_return)
|
|
|
|
|
exit(result.exit_code);
|
2015-10-21 02:34:15 +03:00
|
|
|
|
|
2019-07-23 21:40:06 +03:00
|
|
|
|
gin::V8Initializer::LoadV8Snapshot(
|
2021-11-24 11:45:59 +03:00
|
|
|
|
gin::V8SnapshotFileType::kWithAdditionalContext);
|
2019-07-23 21:40:06 +03:00
|
|
|
|
|
2020-09-22 17:11:56 +03:00
|
|
|
|
// V8 requires a task scheduler.
|
2019-07-23 21:40:06 +03:00
|
|
|
|
base::ThreadPoolInstance::CreateAndStartWithDefaultParams("Electron");
|
|
|
|
|
|
2020-09-22 17:11:56 +03: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 21:40:06 +03:00
|
|
|
|
// Initialize gin::IsolateHolder.
|
|
|
|
|
JavascriptEnvironment gin_env(loop);
|
|
|
|
|
|
2020-02-29 02:08:27 +03:00
|
|
|
|
v8::Isolate* isolate = gin_env.isolate();
|
2020-04-21 22:18:22 +03:00
|
|
|
|
|
2020-02-29 02:08:27 +03:00
|
|
|
|
v8::Isolate::Scope isolate_scope(isolate);
|
2020-03-11 04:16:58 +03:00
|
|
|
|
v8::Locker locker(isolate);
|
|
|
|
|
node::Environment* env = nullptr;
|
|
|
|
|
node::IsolateData* isolate_data = nullptr;
|
|
|
|
|
{
|
|
|
|
|
v8::HandleScope scope(isolate);
|
2020-02-29 02:08:27 +03:00
|
|
|
|
|
2020-03-11 04:16:58 +03:00
|
|
|
|
isolate_data = node::CreateIsolateData(isolate, loop, gin_env.platform());
|
|
|
|
|
CHECK_NE(nullptr, isolate_data);
|
2015-03-13 03:03:16 +03:00
|
|
|
|
|
2021-11-23 20:34:07 +03:00
|
|
|
|
uint64_t flags = node::EnvironmentFlags::kDefaultFlags |
|
|
|
|
|
node::EnvironmentFlags::kHideConsoleWindows;
|
|
|
|
|
env = node::CreateEnvironment(
|
|
|
|
|
isolate_data, gin_env.context(), result.args, result.exec_args,
|
|
|
|
|
static_cast<node::EnvironmentFlags::Flags>(flags));
|
2021-08-18 23:34:15 +03:00
|
|
|
|
CHECK_NE(nullptr, env);
|
2017-06-12 21:53:11 +03:00
|
|
|
|
|
2020-04-28 19:10:27 +03:00
|
|
|
|
node::IsolateSettings is;
|
|
|
|
|
node::SetIsolateUpForNode(isolate, is);
|
2020-04-17 04:46:09 +03:00
|
|
|
|
|
2020-03-11 04:16:58 +03:00
|
|
|
|
gin_helper::Dictionary process(isolate, env->process_object());
|
|
|
|
|
process.SetMethod("crash", &ElectronBindings::Crash);
|
2015-04-20 09:10:15 +03:00
|
|
|
|
|
2020-05-07 23:31:26 +03:00
|
|
|
|
// Setup process.crashReporter in child node processes
|
2020-03-11 04:16:58 +03:00
|
|
|
|
gin_helper::Dictionary reporter = gin::Dictionary::CreateEmpty(isolate);
|
2022-02-10 05:58:52 +03:00
|
|
|
|
#if BUILDFLAG(IS_LINUX)
|
2020-05-07 23:31:26 +03:00
|
|
|
|
reporter.SetMethod("start", &CrashReporterStart);
|
2019-07-29 03:46:35 +03:00
|
|
|
|
#endif
|
|
|
|
|
|
2020-05-07 23:31:26 +03:00
|
|
|
|
reporter.SetMethod("getParameters", &GetParameters);
|
2020-06-17 00:19:57 +03:00
|
|
|
|
#if defined(MAS_BUILD)
|
|
|
|
|
reporter.SetMethod("addExtraParameter", &SetCrashKeyStub);
|
|
|
|
|
reporter.SetMethod("removeExtraParameter", &ClearCrashKeyStub);
|
|
|
|
|
#else
|
2020-05-07 23:31:26 +03:00
|
|
|
|
reporter.SetMethod("addExtraParameter",
|
|
|
|
|
&electron::crash_keys::SetCrashKey);
|
|
|
|
|
reporter.SetMethod("removeExtraParameter",
|
|
|
|
|
&electron::crash_keys::ClearCrashKey);
|
2020-06-17 00:19:57 +03:00
|
|
|
|
#endif
|
2020-05-07 23:31:26 +03:00
|
|
|
|
|
2020-03-11 04:16:58 +03:00
|
|
|
|
process.Set("crashReporter", reporter);
|
2016-12-09 12:44:12 +03:00
|
|
|
|
|
2020-03-11 04:16:58 +03:00
|
|
|
|
gin_helper::Dictionary versions;
|
|
|
|
|
if (process.Get("versions", &versions)) {
|
|
|
|
|
versions.SetReadOnly(ELECTRON_PROJECT_NAME, ELECTRON_VERSION_STRING);
|
|
|
|
|
}
|
2019-01-30 09:13:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
2020-12-16 23:02:36 +03:00
|
|
|
|
v8::HandleScope scope(isolate);
|
2021-06-17 09:50:56 +03:00
|
|
|
|
node::LoadEnvironment(env, node::StartExecutionCallback{});
|
2020-02-25 00:02:04 +03:00
|
|
|
|
|
2020-07-14 20:47:20 +03:00
|
|
|
|
env->set_trace_sync_io(env->options()->trace_sync_io);
|
|
|
|
|
|
2019-12-20 00:29:09 +03:00
|
|
|
|
{
|
|
|
|
|
v8::SealHandleScope seal(isolate);
|
|
|
|
|
bool more;
|
2020-09-22 17:11:56 +03:00
|
|
|
|
env->performance_state()->Mark(
|
|
|
|
|
node::performance::NODE_PERFORMANCE_MILESTONE_LOOP_START);
|
2019-12-20 00:29:09 +03:00
|
|
|
|
do {
|
|
|
|
|
uv_run(env->event_loop(), UV_RUN_DEFAULT);
|
|
|
|
|
|
2020-02-29 02:08:27 +03:00
|
|
|
|
gin_env.platform()->DrainTasks(isolate);
|
2016-10-12 02:55:57 +03:00
|
|
|
|
|
2019-12-20 00:29:09 +03: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 03:03:16 +03: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-20 00:29:09 +03:00
|
|
|
|
} while (more && !env->is_stopping());
|
2020-09-22 17:11:56 +03:00
|
|
|
|
env->performance_state()->Mark(
|
|
|
|
|
node::performance::NODE_PERFORMANCE_MILESTONE_LOOP_EXIT);
|
2019-12-20 00:29:09 +03:00
|
|
|
|
}
|
2015-03-13 03:03:16 +03:00
|
|
|
|
|
2020-07-14 20:47:20 +03:00
|
|
|
|
env->set_trace_sync_io(false);
|
|
|
|
|
|
2015-03-13 03:03:16 +03:00
|
|
|
|
exit_code = node::EmitExit(env);
|
2019-12-20 00:29:09 +03:00
|
|
|
|
|
|
|
|
|
node::ResetStdio();
|
|
|
|
|
|
2020-09-15 00:08:46 +03:00
|
|
|
|
node::Stop(env);
|
2016-07-21 10:43:21 +03:00
|
|
|
|
node::FreeEnvironment(env);
|
2019-10-08 10:03:04 +03:00
|
|
|
|
node::FreeIsolateData(isolate_data);
|
2015-03-13 03:03:16 +03:00
|
|
|
|
}
|
|
|
|
|
|
2017-10-26 15:06:34 +03:00
|
|
|
|
// According to "src/gin/shell/gin_main.cc":
|
|
|
|
|
//
|
2019-04-20 20:20:37 +03:00
|
|
|
|
// gin::IsolateHolder waits for tasks running in ThreadPool in its
|
|
|
|
|
// destructor and thus must be destroyed before ThreadPool starts skipping
|
2017-10-26 15:06:34 +03:00
|
|
|
|
// CONTINUE_ON_SHUTDOWN tasks.
|
2019-06-04 06:44:12 +03:00
|
|
|
|
base::ThreadPoolInstance::Get()->Shutdown();
|
2017-10-26 15:06:34 +03:00
|
|
|
|
|
2015-03-13 03:03:16 +03:00
|
|
|
|
v8::V8::Dispose();
|
|
|
|
|
|
|
|
|
|
return exit_code;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace electron
|