mirror of
https://github.com/google/sandboxed-api.git
synced 2024-03-22 13:11:30 +08:00
forkserver: Remove waitpid flag
It was superseded by sandboxee rusage when using unotify monitor PiperOrigin-RevId: 557396642 Change-Id: I41f84149227f62d4b7727030f9359834a9b61dbc
This commit is contained in:
parent
c501379056
commit
7a57d32711
|
@ -260,7 +260,6 @@ cc_binary(
|
|||
":forkserver",
|
||||
":sanitizer",
|
||||
"//sandboxed_api/util:raw_logging",
|
||||
"@com_google_absl//absl/flags:parse",
|
||||
"@com_google_absl//absl/log:globals",
|
||||
],
|
||||
)
|
||||
|
@ -623,7 +622,6 @@ cc_library(
|
|||
"@com_google_absl//absl/base:core_headers",
|
||||
"@com_google_absl//absl/container:flat_hash_map",
|
||||
"@com_google_absl//absl/container:flat_hash_set",
|
||||
"@com_google_absl//absl/flags:flag",
|
||||
"@com_google_absl//absl/log",
|
||||
"@com_google_absl//absl/status",
|
||||
"@com_google_absl//absl/status:statusor",
|
||||
|
@ -643,7 +641,6 @@ cc_library(
|
|||
":forkserver_cc_proto",
|
||||
"//sandboxed_api/util:fileops",
|
||||
"@com_google_absl//absl/base:core_headers",
|
||||
"@com_google_absl//absl/flags:flag",
|
||||
"@com_google_absl//absl/log",
|
||||
"@com_google_absl//absl/log:check",
|
||||
"@com_google_absl//absl/synchronization",
|
||||
|
@ -871,7 +868,6 @@ cc_test(
|
|||
":sandbox2",
|
||||
"//sandboxed_api:testing",
|
||||
"//sandboxed_api/util:raw_logging",
|
||||
"@com_google_absl//absl/log",
|
||||
"@com_google_absl//absl/log:check",
|
||||
"@com_google_absl//absl/strings",
|
||||
"@com_google_googletest//:gtest_main",
|
||||
|
|
|
@ -214,8 +214,6 @@ set_target_properties(sandbox2_forkserver_bin PROPERTIES
|
|||
add_executable(sandbox2::forkserver_bin ALIAS sandbox2_forkserver_bin)
|
||||
target_link_libraries(sandbox2_forkserver_bin PRIVATE
|
||||
absl::log_globals
|
||||
absl::flags
|
||||
absl::flags_parse
|
||||
sandbox2::client
|
||||
sandbox2::comms
|
||||
sandbox2::forkserver
|
||||
|
@ -591,7 +589,6 @@ target_link_libraries(sandbox2_fork_client
|
|||
PRIVATE sandbox2::comms
|
||||
sandbox2::forkserver_proto
|
||||
PUBLIC absl::core_headers
|
||||
absl::flags
|
||||
absl::synchronization
|
||||
sapi::base
|
||||
sapi::fileops
|
||||
|
@ -924,7 +921,6 @@ if(BUILD_TESTING AND SAPI_BUILD_TESTING)
|
|||
)
|
||||
target_link_libraries(sandbox2_forkserver_test PRIVATE
|
||||
absl::check
|
||||
absl::log
|
||||
absl::strings
|
||||
sandbox2::forkserver
|
||||
sandbox2::forkserver_proto
|
||||
|
|
|
@ -14,19 +14,11 @@
|
|||
|
||||
#include "sandboxed_api/sandbox2/fork_client.h"
|
||||
|
||||
#include "absl/flags/flag.h"
|
||||
#include "absl/log/check.h"
|
||||
#include "absl/log/log.h"
|
||||
#include "sandboxed_api/sandbox2/comms.h"
|
||||
#include "sandboxed_api/sandbox2/forkserver.pb.h"
|
||||
|
||||
// Make the forkserver use a signal handler for SIGCHLD instead of setting
|
||||
// `SA_NOCLDWAIT`. This is needed in certain cases where the process need
|
||||
// to be explicitly reaped by waitpid (see getrusage).
|
||||
ABSL_FLAG(
|
||||
bool, sandbox2_forkserver_use_waitpid, false,
|
||||
"Use waitpid to reap child processes instead of relying on SA_NOCLDWAIT");
|
||||
|
||||
namespace sandbox2 {
|
||||
|
||||
using ::sapi::file_util::fileops::FDCloser;
|
||||
|
|
|
@ -40,8 +40,6 @@
|
|||
|
||||
#include "absl/container/flat_hash_map.h"
|
||||
#include "absl/container/flat_hash_set.h"
|
||||
#include "absl/flags/declare.h"
|
||||
#include "absl/flags/flag.h"
|
||||
#include "absl/status/status.h"
|
||||
#include "absl/status/statusor.h"
|
||||
#include "absl/strings/match.h"
|
||||
|
@ -64,8 +62,6 @@
|
|||
#include "sandboxed_api/util/raw_logging.h"
|
||||
#include "sandboxed_api/util/strerror.h"
|
||||
|
||||
ABSL_DECLARE_FLAG(bool, sandbox2_forkserver_use_waitpid);
|
||||
|
||||
namespace sandbox2 {
|
||||
|
||||
namespace file_util = ::sapi::file_util;
|
||||
|
@ -74,18 +70,6 @@ namespace {
|
|||
|
||||
using ::sapi::StrError;
|
||||
|
||||
void SigChldHandler(int signal) {
|
||||
if (signal != SIGCHLD) {
|
||||
return;
|
||||
}
|
||||
|
||||
pid_t pid;
|
||||
int wstatus;
|
||||
do {
|
||||
pid = waitpid(-1, &wstatus, WNOHANG);
|
||||
} while (pid > 0);
|
||||
}
|
||||
|
||||
// "Moves" FDs in move_fds from current to target FD number while keeping FDs
|
||||
// in keep_fds open - potentially moving them to another FD number as well in
|
||||
// case of colisions.
|
||||
|
@ -574,20 +558,11 @@ bool ForkServer::Initialize() {
|
|||
// Don't convert terminated child processes into zombies. It's up to the
|
||||
// sandbox (Monitor) to track them and receive/report their final status.
|
||||
struct sigaction sa;
|
||||
if (absl::GetFlag(FLAGS_sandbox2_forkserver_use_waitpid)) {
|
||||
sa.sa_handler = SigChldHandler;
|
||||
sa.sa_flags = 0;
|
||||
} else {
|
||||
sa.sa_handler = SIG_DFL;
|
||||
sa.sa_flags = SA_NOCLDWAIT;
|
||||
}
|
||||
sa.sa_handler = SIG_DFL;
|
||||
sa.sa_flags = SA_NOCLDWAIT;
|
||||
sigemptyset(&sa.sa_mask);
|
||||
if (sigaction(SIGCHLD, &sa, nullptr) == -1) {
|
||||
if (absl::GetFlag(FLAGS_sandbox2_forkserver_use_waitpid)) {
|
||||
SAPI_RAW_PLOG(ERROR, "sigaction(SIGCHLD, sa_handler=SigChldHandler)");
|
||||
} else {
|
||||
SAPI_RAW_PLOG(ERROR, "sigaction(SIGCHLD, flags=SA_NOCLDWAIT)");
|
||||
}
|
||||
SAPI_RAW_PLOG(ERROR, "sigaction(SIGCHLD, flags=SA_NOCLDWAIT)");
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
|
|
|
@ -19,20 +19,16 @@
|
|||
#include <csignal>
|
||||
#include <cstdlib>
|
||||
|
||||
#include "absl/flags/parse.h"
|
||||
#include "absl/log/globals.h"
|
||||
#include "sandboxed_api/sandbox2/comms.h"
|
||||
#include "sandboxed_api/sandbox2/forkserver.h"
|
||||
#include "sandboxed_api/sandbox2/sanitizer.h"
|
||||
#include "sandboxed_api/util/raw_logging.h"
|
||||
|
||||
int main(int argc, char* argv[]) {
|
||||
int main() {
|
||||
// Make sure the logs go stderr.
|
||||
absl::SetStderrThreshold(absl::LogSeverityAtLeast::kInfo);
|
||||
|
||||
// Parse command line arguments.
|
||||
absl::ParseCommandLine(argc, argv);
|
||||
|
||||
// Close all non-essential FDs to keep newly opened FD numbers consistent.
|
||||
absl::Status status = sandbox2::sanitizer::CloseAllFDsExcept(
|
||||
{0, 1, 2, sandbox2::Comms::kSandbox2ClientCommsFD});
|
||||
|
|
|
@ -34,7 +34,6 @@
|
|||
#include <vector>
|
||||
|
||||
#include "absl/cleanup/cleanup.h"
|
||||
#include "absl/flags/declare.h"
|
||||
#include "absl/flags/flag.h"
|
||||
#include "absl/log/log.h"
|
||||
#include "absl/status/status.h"
|
||||
|
@ -54,8 +53,6 @@
|
|||
#include "sandboxed_api/util/fileops.h"
|
||||
#include "sandboxed_api/util/raw_logging.h"
|
||||
|
||||
ABSL_DECLARE_FLAG(bool, sandbox2_forkserver_use_waitpid);
|
||||
|
||||
namespace sandbox2 {
|
||||
|
||||
namespace file_util = ::sapi::file_util;
|
||||
|
@ -127,7 +124,6 @@ GlobalForkserverStartModeSet GetForkserverStartMode() {
|
|||
struct ForkserverArgs {
|
||||
int exec_fd;
|
||||
int comms_fd;
|
||||
bool use_waitpid;
|
||||
};
|
||||
|
||||
int LaunchForkserver(void* vargs) {
|
||||
|
@ -146,11 +142,7 @@ int LaunchForkserver(void* vargs) {
|
|||
"duping comms fd failed");
|
||||
|
||||
char proc_name[] = "S2-FORK-SERV";
|
||||
char use_waitpid[] = "--sandbox2_forkserver_use_waitpid";
|
||||
char* argv[] = {proc_name, nullptr, nullptr};
|
||||
if (args->use_waitpid) {
|
||||
argv[1] = use_waitpid;
|
||||
}
|
||||
char* const argv[] = {proc_name, nullptr};
|
||||
util::Execveat(args->exec_fd, "", argv, environ, AT_EMPTY_PATH);
|
||||
SAPI_RAW_PLOG(FATAL, "Could not launch forkserver binary");
|
||||
}
|
||||
|
@ -208,7 +200,6 @@ absl::StatusOr<std::unique_ptr<GlobalForkClient>> StartGlobalForkServer() {
|
|||
ForkserverArgs args = {
|
||||
.exec_fd = exec_fd,
|
||||
.comms_fd = sv[0],
|
||||
.use_waitpid = absl::GetFlag(FLAGS_sandbox2_forkserver_use_waitpid),
|
||||
};
|
||||
pid_t pid = clone(LaunchForkserver, &stack[stack_size], clone_flags, &args,
|
||||
nullptr, nullptr, nullptr);
|
||||
|
|
Loading…
Reference in New Issue
Block a user