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>
|
|
|
|
|
2022-04-20 20:52:15 +00:00
|
|
|
#include "base/allocator/early_zone_registration_mac.h"
|
2022-01-17 07:46:33 +00:00
|
|
|
#include "electron/buildflags/buildflags.h"
|
|
|
|
#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
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
2022-03-14 09:19:15 +00:00
|
|
|
[[maybe_unused]] bool IsEnvSet(const char* name) {
|
2022-01-17 07:46:33 +00:00
|
|
|
char* indicator = getenv(name);
|
|
|
|
return indicator && indicator[0] != '\0';
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
int main(int argc, char* argv[]) {
|
2022-04-20 20:52:15 +00:00
|
|
|
partition_alloc::EarlyMallocZoneRegistration();
|
2022-01-17 07:46:33 +00:00
|
|
|
FixStdioStreams();
|
|
|
|
|
|
|
|
#if BUILDFLAG(ENABLE_RUN_AS_NODE)
|
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);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
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;
|
|
|
|
int rv = _NSGetExecutablePath(NULL, &exec_path_size);
|
|
|
|
if (rv != -1) {
|
|
|
|
fprintf(stderr, "_NSGetExecutablePath: get length failed\n");
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
|
|
|
auto exec_path = std::make_unique<char[]>(exec_path_size);
|
|
|
|
rv = _NSGetExecutablePath(exec_path.get(), &exec_path_size);
|
|
|
|
if (rv != 0) {
|
|
|
|
fprintf(stderr, "_NSGetExecutablePath: get path failed\n");
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
sandbox::SeatbeltExecServer::CreateFromArgumentsResult seatbelt =
|
|
|
|
sandbox::SeatbeltExecServer::CreateFromArguments(exec_path.get(), argc,
|
|
|
|
argv);
|
|
|
|
if (seatbelt.sandbox_required) {
|
|
|
|
if (!seatbelt.server) {
|
|
|
|
fprintf(stderr, "Failed to create seatbelt sandbox server.\n");
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
if (!seatbelt.server->InitializeSandbox()) {
|
|
|
|
fprintf(stderr, "Failed to initialize sandbox.\n");
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
}
|
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);
|
|
|
|
}
|