2015-03-12 17:03:16 -07: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 13:46:59 -07:00
|
|
|
|
#include "shell/app/node_main.h"
|
2015-03-12 17:03:16 -07:00
|
|
|
|
|
2020-05-07 13:31:26 -07:00
|
|
|
|
#include <map>
|
2018-09-12 19:25:56 -05:00
|
|
|
|
#include <memory>
|
2019-07-29 02:46:35 +02:00
|
|
|
|
#include <string>
|
2020-02-07 02:59:38 +00:00
|
|
|
|
#include <unordered_set>
|
2018-09-12 19:25:56 -05:00
|
|
|
|
#include <utility>
|
2020-02-07 02:59:38 +00:00
|
|
|
|
#include <vector>
|
2018-09-12 19:25:56 -05:00
|
|
|
|
|
2020-05-07 13:31:26 -07:00
|
|
|
|
#include "base/base_switches.h"
|
2016-05-23 13:01:47 +09: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 15:58:00 -04:00
|
|
|
|
#include "base/task/thread_pool/thread_pool_instance.h"
|
2016-07-04 15:08:55 +09:00
|
|
|
|
#include "base/threading/thread_task_runner_handle.h"
|
2020-05-07 13:31:26 -07:00
|
|
|
|
#include "content/public/common/content_switches.h"
|
2019-06-19 14:31:55 -07:00
|
|
|
|
#include "electron/electron_version.h"
|
2015-03-12 17:03:16 -07:00
|
|
|
|
#include "gin/array_buffer.h"
|
|
|
|
|
#include "gin/public/isolate_holder.h"
|
2015-08-04 16:39:37 +08:00
|
|
|
|
#include "gin/v8_initializer.h"
|
2019-06-19 13:46:59 -07:00
|
|
|
|
#include "shell/app/uv_task_runner.h"
|
|
|
|
|
#include "shell/browser/javascript_environment.h"
|
|
|
|
|
#include "shell/common/api/electron_bindings.h"
|
2019-10-18 09:31:29 +09:00
|
|
|
|
#include "shell/common/gin_helper/dictionary.h"
|
2019-06-19 13:46:59 -07:00
|
|
|
|
#include "shell/common/node_bindings.h"
|
|
|
|
|
#include "shell/common/node_includes.h"
|
2016-12-01 18:19:57 -08:00
|
|
|
|
|
2020-05-07 13:31:26 -07:00
|
|
|
|
#if defined(OS_LINUX)
|
|
|
|
|
#include "components/crash/core/app/breakpad_linux.h"
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#if defined(OS_WIN)
|
|
|
|
|
#include "chrome/child/v8_crashpad_support_win.h"
|
2019-06-12 23:42:21 -07:00
|
|
|
|
#endif
|
|
|
|
|
|
2020-06-16 14:19:57 -07: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 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-06-16 14:19:57 -07: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 02:59:38 +00:00
|
|
|
|
} // namespace
|
|
|
|
|
|
2019-06-19 14:23:04 -07:00
|
|
|
|
namespace electron {
|
2015-03-12 17:03:16 -07:00
|
|
|
|
|
2020-05-07 13:31:26 -07:00
|
|
|
|
#if defined(OS_LINUX)
|
|
|
|
|
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 02:46:35 +02:00
|
|
|
|
}
|
2020-05-07 13:31:26 -07:00
|
|
|
|
#endif
|
2019-07-29 02:46:35 +02:00
|
|
|
|
|
2020-05-07 13:31:26 -07: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 02:46:35 +02:00
|
|
|
|
#endif
|
2020-05-07 13:31:26 -07:00
|
|
|
|
return gin::ConvertToV8(isolate, keys);
|
|
|
|
|
}
|
2019-07-29 02:46:35 +02:00
|
|
|
|
|
2018-04-17 21:55:30 -04:00
|
|
|
|
int NodeMain(int argc, char* argv[]) {
|
2015-08-27 13:16:19 +08:00
|
|
|
|
base::CommandLine::Init(argc, argv);
|
|
|
|
|
|
2020-05-07 13:31:26 -07:00
|
|
|
|
#if defined(OS_WIN)
|
|
|
|
|
v8_crashpad_support::SetUp();
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#if !defined(MAS_BUILD)
|
|
|
|
|
ElectronCrashReporterClient::Create();
|
|
|
|
|
#endif
|
|
|
|
|
|
2020-08-12 11:33:58 -07:00
|
|
|
|
#if defined(OS_WIN) || (defined(OS_MAC) && !defined(MAS_BUILD))
|
2020-05-07 13:31:26 -07:00
|
|
|
|
crash_reporter::InitializeCrashpad(false, "node");
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#if !defined(MAS_BUILD)
|
|
|
|
|
crash_keys::SetCrashKeysFromCommandLine(
|
|
|
|
|
*base::CommandLine::ForCurrentProcess());
|
|
|
|
|
crash_keys::SetPlatformCrashKey();
|
|
|
|
|
#endif
|
|
|
|
|
|
2015-03-12 17:03:16 -07:00
|
|
|
|
int exit_code = 1;
|
|
|
|
|
{
|
2015-09-03 10:28:50 +08:00
|
|
|
|
// Feed gin::PerIsolateData with a task runner.
|
2015-10-21 07:34:15 +08:00
|
|
|
|
argv = uv_setup_args(argc, argv);
|
2015-09-03 10:28:50 +08: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 13:01:47 +09:00
|
|
|
|
// Initialize feature list.
|
2018-06-18 09:32:55 +02:00
|
|
|
|
auto feature_list = std::make_unique<base::FeatureList>();
|
2016-05-23 13:01:47 +09:00
|
|
|
|
feature_list->InitializeFromCommandLine("", "");
|
|
|
|
|
base::FeatureList::SetInstance(std::move(feature_list));
|
|
|
|
|
|
2018-01-06 07:58:24 -08: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-21 07:34:15 +08:00
|
|
|
|
int exec_argc;
|
|
|
|
|
const char** exec_argv;
|
|
|
|
|
node::Init(&argc, const_cast<const char**>(argv), &exec_argc, &exec_argv);
|
|
|
|
|
|
2019-07-23 11:40:06 -07:00
|
|
|
|
gin::V8Initializer::LoadV8Snapshot(
|
|
|
|
|
gin::V8Initializer::V8SnapshotFileType::kWithAdditionalContext);
|
|
|
|
|
|
2020-09-22 07:11:56 -07:00
|
|
|
|
// V8 requires a task scheduler.
|
2019-07-23 11:40:06 -07:00
|
|
|
|
base::ThreadPoolInstance::CreateAndStartWithDefaultParams("Electron");
|
|
|
|
|
|
2020-09-22 07:11:56 -07: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 11:40:06 -07:00
|
|
|
|
// Initialize gin::IsolateHolder.
|
|
|
|
|
JavascriptEnvironment gin_env(loop);
|
|
|
|
|
|
2020-02-28 23:08:27 +00:00
|
|
|
|
v8::Isolate* isolate = gin_env.isolate();
|
2020-04-21 14:18:22 -05:00
|
|
|
|
|
2020-02-28 23:08:27 +00:00
|
|
|
|
v8::Isolate::Scope isolate_scope(isolate);
|
2020-03-10 18:16:58 -07: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-10 18:16:58 -07:00
|
|
|
|
isolate_data = node::CreateIsolateData(isolate, loop, gin_env.platform());
|
|
|
|
|
CHECK_NE(nullptr, isolate_data);
|
2015-03-12 17:03:16 -07:00
|
|
|
|
|
2020-09-17 16:08:57 -06:00
|
|
|
|
std::vector<std::string> args(argv, argv + argc); // NOLINT
|
|
|
|
|
std::vector<std::string> exec_args(exec_argv,
|
|
|
|
|
exec_argv + exec_argc); // NOLINT
|
|
|
|
|
env = node::CreateEnvironment(isolate_data, gin_env.context(), args,
|
2020-09-23 20:35:56 -07:00
|
|
|
|
exec_args);
|
2020-12-16 12:02:36 -08:00
|
|
|
|
CHECK_NOT_NULL(env);
|
2017-06-13 00:23:11 +05:30
|
|
|
|
|
2020-04-28 09:10:27 -07:00
|
|
|
|
node::IsolateSettings is;
|
|
|
|
|
node::SetIsolateUpForNode(isolate, is);
|
2020-04-16 18:46:09 -07:00
|
|
|
|
|
2020-03-10 18:16:58 -07:00
|
|
|
|
gin_helper::Dictionary process(isolate, env->process_object());
|
|
|
|
|
process.SetMethod("crash", &ElectronBindings::Crash);
|
2015-04-20 14:10:15 +08:00
|
|
|
|
|
2020-05-07 13:31:26 -07:00
|
|
|
|
// Setup process.crashReporter in child node processes
|
2020-03-10 18:16:58 -07:00
|
|
|
|
gin_helper::Dictionary reporter = gin::Dictionary::CreateEmpty(isolate);
|
2020-05-07 13:31:26 -07:00
|
|
|
|
#if defined(OS_LINUX)
|
|
|
|
|
reporter.SetMethod("start", &CrashReporterStart);
|
2019-07-29 02:46:35 +02:00
|
|
|
|
#endif
|
|
|
|
|
|
2020-05-07 13:31:26 -07:00
|
|
|
|
reporter.SetMethod("getParameters", &GetParameters);
|
2020-06-16 14:19:57 -07:00
|
|
|
|
#if defined(MAS_BUILD)
|
|
|
|
|
reporter.SetMethod("addExtraParameter", &SetCrashKeyStub);
|
|
|
|
|
reporter.SetMethod("removeExtraParameter", &ClearCrashKeyStub);
|
|
|
|
|
#else
|
2020-05-07 13:31:26 -07:00
|
|
|
|
reporter.SetMethod("addExtraParameter",
|
|
|
|
|
&electron::crash_keys::SetCrashKey);
|
|
|
|
|
reporter.SetMethod("removeExtraParameter",
|
|
|
|
|
&electron::crash_keys::ClearCrashKey);
|
2020-06-16 14:19:57 -07:00
|
|
|
|
#endif
|
2020-05-07 13:31:26 -07:00
|
|
|
|
|
2020-03-10 18:16:58 -07:00
|
|
|
|
process.Set("crashReporter", reporter);
|
2016-12-09 01:44:12 -08:00
|
|
|
|
|
2020-03-10 18:16:58 -07:00
|
|
|
|
gin_helper::Dictionary versions;
|
|
|
|
|
if (process.Get("versions", &versions)) {
|
|
|
|
|
versions.SetReadOnly(ELECTRON_PROJECT_NAME, ELECTRON_VERSION_STRING);
|
|
|
|
|
}
|
2019-01-30 11:43:18 +05:30
|
|
|
|
}
|
|
|
|
|
|
2020-12-16 12:02:36 -08:00
|
|
|
|
v8::HandleScope scope(isolate);
|
|
|
|
|
node::LoadEnvironment(env);
|
2020-02-24 13:02:04 -08:00
|
|
|
|
|
2020-07-14 10:47:20 -07:00
|
|
|
|
env->set_trace_sync_io(env->options()->trace_sync_io);
|
|
|
|
|
|
2019-12-19 13:29:09 -08:00
|
|
|
|
{
|
|
|
|
|
v8::SealHandleScope seal(isolate);
|
|
|
|
|
bool more;
|
2020-09-22 07:11:56 -07:00
|
|
|
|
env->performance_state()->Mark(
|
|
|
|
|
node::performance::NODE_PERFORMANCE_MILESTONE_LOOP_START);
|
2019-12-19 13:29:09 -08:00
|
|
|
|
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 16:55:57 -07:00
|
|
|
|
|
2019-12-19 13:29:09 -08: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-12 17:03:16 -07: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 13:29:09 -08:00
|
|
|
|
} while (more && !env->is_stopping());
|
2020-09-22 07:11:56 -07:00
|
|
|
|
env->performance_state()->Mark(
|
|
|
|
|
node::performance::NODE_PERFORMANCE_MILESTONE_LOOP_EXIT);
|
2019-12-19 13:29:09 -08:00
|
|
|
|
}
|
2015-03-12 17:03:16 -07:00
|
|
|
|
|
2020-07-14 10:47:20 -07:00
|
|
|
|
env->set_trace_sync_io(false);
|
|
|
|
|
|
2015-03-12 17:03:16 -07:00
|
|
|
|
exit_code = node::EmitExit(env);
|
2019-12-19 13:29:09 -08:00
|
|
|
|
|
|
|
|
|
node::ResetStdio();
|
|
|
|
|
|
2020-09-14 14:08:46 -07:00
|
|
|
|
node::Stop(env);
|
2016-07-21 16:43:21 +09:00
|
|
|
|
node::FreeEnvironment(env);
|
2019-10-08 09:03:04 +02:00
|
|
|
|
node::FreeIsolateData(isolate_data);
|
2019-07-23 14:56:22 -07:00
|
|
|
|
|
|
|
|
|
gin_env.platform()->DrainTasks(isolate);
|
|
|
|
|
gin_env.platform()->CancelPendingDelayedTasks(isolate);
|
|
|
|
|
gin_env.platform()->UnregisterIsolate(isolate);
|
2015-03-12 17:03:16 -07:00
|
|
|
|
}
|
|
|
|
|
|
2017-10-26 14:06:34 +02:00
|
|
|
|
// According to "src/gin/shell/gin_main.cc":
|
|
|
|
|
//
|
2019-04-20 13:20:37 -04:00
|
|
|
|
// gin::IsolateHolder waits for tasks running in ThreadPool in its
|
|
|
|
|
// destructor and thus must be destroyed before ThreadPool starts skipping
|
2017-10-26 14:06:34 +02:00
|
|
|
|
// CONTINUE_ON_SHUTDOWN tasks.
|
2019-06-03 20:44:12 -07:00
|
|
|
|
base::ThreadPoolInstance::Get()->Shutdown();
|
2017-10-26 14:06:34 +02:00
|
|
|
|
|
2015-03-12 17:03:16 -07:00
|
|
|
|
v8::V8::Dispose();
|
|
|
|
|
|
|
|
|
|
return exit_code;
|
|
|
|
|
}
|
|
|
|
|
|
2019-06-19 14:23:04 -07:00
|
|
|
|
} // namespace electron
|