2022-01-17 07:46:33 +00:00
|
|
|
// Copyright (c) 2022 Slack Technologies, Inc.
|
|
|
|
// Use of this source code is governed by the MIT license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
|
|
|
#include <cstdlib>
|
|
|
|
#include <memory>
|
|
|
|
|
|
|
|
#include "electron/fuses.h"
|
|
|
|
#include "shell/app/electron_library_main.h"
|
|
|
|
#include "shell/app/uv_stdio_fix.h"
|
|
|
|
|
2022-11-14 20:46:52 +00:00
|
|
|
#if defined(HELPER_EXECUTABLE) && !IS_MAS_BUILD()
|
2022-01-17 07:46:33 +00:00
|
|
|
#include <mach-o/dyld.h>
|
|
|
|
#include <cstdio>
|
|
|
|
|
|
|
|
#include "sandbox/mac/seatbelt_exec.h" // nogncheck
|
|
|
|
#endif
|
|
|
|
|
2023-04-03 20:14:19 +00:00
|
|
|
extern "C" {
|
|
|
|
// abort_report_np() records the message in a special section that both the
|
|
|
|
// system CrashReporter and Crashpad collect in crash reports. Using a Crashpad
|
|
|
|
// Annotation would be preferable, but this executable cannot depend on
|
|
|
|
// Crashpad directly.
|
|
|
|
void abort_report_np(const char* fmt, ...);
|
|
|
|
}
|
|
|
|
|
2022-01-17 07:46:33 +00:00
|
|
|
namespace {
|
|
|
|
|
2023-06-08 20:40:08 +00:00
|
|
|
bool IsEnvSet(const char* name) {
|
2022-01-17 07:46:33 +00:00
|
|
|
char* indicator = getenv(name);
|
|
|
|
return indicator && indicator[0] != '\0';
|
|
|
|
}
|
|
|
|
|
2023-04-03 20:14:19 +00:00
|
|
|
#if defined(HELPER_EXECUTABLE) && !IS_MAS_BUILD()
|
|
|
|
[[noreturn]] void FatalError(const char* format, ...) {
|
|
|
|
va_list valist;
|
|
|
|
va_start(valist, format);
|
|
|
|
char message[4096];
|
|
|
|
if (vsnprintf(message, sizeof(message), format, valist) >= 0) {
|
|
|
|
fputs(message, stderr);
|
|
|
|
abort_report_np("%s", message);
|
|
|
|
}
|
|
|
|
va_end(valist);
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2022-01-17 07:46:33 +00:00
|
|
|
} // namespace
|
|
|
|
|
|
|
|
int main(int argc, char* argv[]) {
|
|
|
|
FixStdioStreams();
|
|
|
|
|
2022-04-21 08:25:51 +00:00
|
|
|
if (electron::fuses::IsRunAsNodeEnabled() &&
|
|
|
|
IsEnvSet("ELECTRON_RUN_AS_NODE")) {
|
2022-01-17 07:46:33 +00:00
|
|
|
return ElectronInitializeICUandStartNode(argc, argv);
|
|
|
|
}
|
|
|
|
|
2022-11-14 20:46:52 +00:00
|
|
|
#if defined(HELPER_EXECUTABLE) && !IS_MAS_BUILD()
|
2022-01-17 07:46:33 +00:00
|
|
|
uint32_t exec_path_size = 0;
|
2023-10-03 19:26:35 +00:00
|
|
|
int rv = _NSGetExecutablePath(nullptr, &exec_path_size);
|
2022-01-17 07:46:33 +00:00
|
|
|
if (rv != -1) {
|
2023-04-03 20:14:19 +00:00
|
|
|
FatalError("_NSGetExecutablePath: get length failed.");
|
2022-01-17 07:46:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
auto exec_path = std::make_unique<char[]>(exec_path_size);
|
|
|
|
rv = _NSGetExecutablePath(exec_path.get(), &exec_path_size);
|
|
|
|
if (rv != 0) {
|
2023-04-03 20:14:19 +00:00
|
|
|
FatalError("_NSGetExecutablePath: get path failed.");
|
2022-01-17 07:46:33 +00:00
|
|
|
}
|
|
|
|
sandbox::SeatbeltExecServer::CreateFromArgumentsResult seatbelt =
|
|
|
|
sandbox::SeatbeltExecServer::CreateFromArguments(exec_path.get(), argc,
|
|
|
|
argv);
|
|
|
|
if (seatbelt.sandbox_required) {
|
|
|
|
if (!seatbelt.server) {
|
2023-04-03 20:14:19 +00:00
|
|
|
FatalError("Failed to create seatbelt sandbox server.");
|
2022-01-17 07:46:33 +00:00
|
|
|
}
|
|
|
|
if (!seatbelt.server->InitializeSandbox()) {
|
2023-04-03 20:14:19 +00:00
|
|
|
FatalError("Failed to initialize sandbox.");
|
2022-01-17 07:46:33 +00:00
|
|
|
}
|
|
|
|
}
|
2022-11-14 20:46:52 +00:00
|
|
|
#endif // defined(HELPER_EXECUTABLE) && !IS_MAS_BUILD
|
2022-01-17 07:46:33 +00:00
|
|
|
|
|
|
|
return ElectronMain(argc, argv);
|
|
|
|
}
|