60c4c9fec6
* chore: iwyu buildflags.h * chore: iwyu dictionary.h * chore: iwyu arguments.h * chore: iwyu values.h * chore: iwyu compiler_specific.h * chore: iwyu binder_map.h * chore: iwyu <vector> * chore: iwyu <set> * chore: iwyu raw_ptr * chore: iwyu gfx/canvas.h * chore: iwyu gfx/color_utils.h * chore: iwyu base/strings/stringprintf.h * chore: iwyu base/task/thread_pool.h * chore: iwyu base/no_destructor.h * chore: iwyu base/path_service.h * chore: iwyu base/files/file_pathh * chore: iwyu base/strings/sys_string_conversions.h * chore: iwyu base/logging.h * chore: iwyu base/command_line.h * chore: iwyu base/files/file_util.h * chore: iwyu base/files/scoped_file.h * chore: iwyu base/strings/utf_string_conversions.h * chore: iwyu base/environment.h * chore: iwyu base/scoped_observation.h * chore: iwyu base/strings/string_split.h * chore: iwyu base/strings/pattern.h * chore: iwyu base/json/string_escape.h * chore: iwyu base/json/json_reader.h * chore: iwyu base/memory/singleton.h * chore: iwyu base/observer_list.h * chore: iwyu base/timer/timer.h * fixup! chore: iwyu values.h * chore: iwyu shell/browser/browser.h * chore: iwyu base/stl_util.h * chore: iwyu base/strings/string_util.h * chore: iwyu shell/browser/javascript_environment.h * chore: iwyu base/memory/ref_counted.h * chore: iwyu base/environment.h * chore: iwyu content/public/browser/browser_thread.h * chore: remove unused typedef gin_helper::EventEmitter::ValueArray * chore: iwyu gin/wrappable.h * chore: iwyu shell/common/gin_helper/function_template_extensions.h * chore: iwyu shell/common/gin_converters/login_item_settings_converter.h * chore: iwyu shell/common/gin_helper/arguments.h * chore: iwyu ui/gfx/skia_util.h * chore: iwyu ui/gfx/geometry/rect.h * chore: iwyu ui/gfx/image/image.h * chore: iwyu base/strings/strcat.h * chore: iwyu ui/native_theme/native_theme.h * fixup! chore: iwyu shell/browser/javascript_environment.h * fixup! chore: iwyu gfx/canvas.h * fixup! chore: iwyu content/public/browser/browser_thread.h * fixup! chore: iwyu ui/native_theme/native_theme.h * fixup! chore: iwyu ui/native_theme/native_theme.h
84 lines
2.4 KiB
C++
84 lines
2.4 KiB
C++
// 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"
|
|
|
|
#if defined(HELPER_EXECUTABLE) && !IS_MAS_BUILD()
|
|
#include <mach-o/dyld.h>
|
|
#include <cstdio>
|
|
|
|
#include "sandbox/mac/seatbelt_exec.h" // nogncheck
|
|
#endif
|
|
|
|
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, ...);
|
|
}
|
|
|
|
namespace {
|
|
|
|
bool IsEnvSet(const char* name) {
|
|
char* indicator = getenv(name);
|
|
return indicator && indicator[0] != '\0';
|
|
}
|
|
|
|
#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
|
|
|
|
} // namespace
|
|
|
|
int main(int argc, char* argv[]) {
|
|
FixStdioStreams();
|
|
|
|
if (electron::fuses::IsRunAsNodeEnabled() &&
|
|
IsEnvSet("ELECTRON_RUN_AS_NODE")) {
|
|
return ElectronInitializeICUandStartNode(argc, argv);
|
|
}
|
|
|
|
#if defined(HELPER_EXECUTABLE) && !IS_MAS_BUILD()
|
|
uint32_t exec_path_size = 0;
|
|
int rv = _NSGetExecutablePath(nullptr, &exec_path_size);
|
|
if (rv != -1) {
|
|
FatalError("_NSGetExecutablePath: get length failed.");
|
|
}
|
|
|
|
auto exec_path = std::make_unique<char[]>(exec_path_size);
|
|
rv = _NSGetExecutablePath(exec_path.get(), &exec_path_size);
|
|
if (rv != 0) {
|
|
FatalError("_NSGetExecutablePath: get path failed.");
|
|
}
|
|
sandbox::SeatbeltExecServer::CreateFromArgumentsResult seatbelt =
|
|
sandbox::SeatbeltExecServer::CreateFromArguments(exec_path.get(), argc,
|
|
argv);
|
|
if (seatbelt.sandbox_required) {
|
|
if (!seatbelt.server) {
|
|
FatalError("Failed to create seatbelt sandbox server.");
|
|
}
|
|
if (!seatbelt.server->InitializeSandbox()) {
|
|
FatalError("Failed to initialize sandbox.");
|
|
}
|
|
}
|
|
#endif // defined(HELPER_EXECUTABLE) && !IS_MAS_BUILD
|
|
|
|
return ElectronMain(argc, argv);
|
|
}
|