1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712
|
/*
* Copyright (C) 2018 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "common/libs/utils/subprocess.h"
#ifdef __linux__
#include <sys/prctl.h>
#endif
#include <errno.h>
#include <fcntl.h>
#include <signal.h>
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <unistd.h>
#include <cerrno>
#include <cstring>
#include <map>
#include <optional>
#include <ostream>
#include <set>
#include <sstream>
#include <string>
#include <thread>
#include <type_traits>
#include <utility>
#include <vector>
#include <android-base/logging.h>
#include <android-base/strings.h>
#include "common/libs/fs/shared_buf.h"
#include "common/libs/utils/files.h"
extern char** environ;
namespace cuttlefish {
namespace {
// If a redirected-to file descriptor was already closed, it's possible that
// some inherited file descriptor duped to this file descriptor and the redirect
// would override that. This function makes sure that doesn't happen.
bool validate_redirects(
const std::map<Subprocess::StdIOChannel, int>& redirects,
const std::map<SharedFD, int>& inherited_fds) {
// Add the redirected IO channels to a set as integers. This allows converting
// the enum values into integers instead of the other way around.
std::set<int> int_redirects;
for (const auto& entry : redirects) {
int_redirects.insert(static_cast<int>(entry.first));
}
for (const auto& entry : inherited_fds) {
auto dupped_fd = entry.second;
if (int_redirects.count(dupped_fd)) {
LOG(ERROR) << "Requested redirect of fd(" << dupped_fd
<< ") conflicts with inherited FD.";
return false;
}
}
return true;
}
void do_redirects(const std::map<Subprocess::StdIOChannel, int>& redirects) {
for (const auto& entry : redirects) {
auto std_channel = static_cast<int>(entry.first);
auto fd = entry.second;
TEMP_FAILURE_RETRY(dup2(fd, std_channel));
}
}
std::vector<const char*> ToCharPointers(const std::vector<std::string>& vect) {
std::vector<const char*> ret = {};
for (const auto& str : vect) {
ret.push_back(str.c_str());
}
ret.push_back(NULL);
return ret;
}
} // namespace
std::vector<std::string> ArgsToVec(char** argv) {
std::vector<std::string> args;
for (int i = 0; argv && argv[i]; i++) {
args.push_back(argv[i]);
}
return args;
}
std::unordered_map<std::string, std::string> EnvpToMap(char** envp) {
std::unordered_map<std::string, std::string> env_map;
if (!envp) {
return env_map;
}
for (char** e = envp; *e != nullptr; e++) {
std::string env_var_val(*e);
auto tokens = android::base::Split(env_var_val, "=");
if (tokens.size() <= 1) {
LOG(WARNING) << "Environment var in unknown format: " << env_var_val;
continue;
}
const auto var = tokens.at(0);
tokens.erase(tokens.begin());
env_map[var] = android::base::Join(tokens, "=");
}
return env_map;
}
SubprocessOptions& SubprocessOptions::Verbose(bool verbose) & {
verbose_ = verbose;
return *this;
}
SubprocessOptions SubprocessOptions::Verbose(bool verbose) && {
verbose_ = verbose;
return std::move(*this);
}
#ifdef __linux__
SubprocessOptions& SubprocessOptions::ExitWithParent(bool v) & {
exit_with_parent_ = v;
return *this;
}
SubprocessOptions SubprocessOptions::ExitWithParent(bool v) && {
exit_with_parent_ = v;
return std::move(*this);
}
#endif
SubprocessOptions& SubprocessOptions::SandboxArguments(
std::vector<std::string> args) & {
sandbox_arguments_ = std::move(args);
return *this;
}
SubprocessOptions SubprocessOptions::SandboxArguments(
std::vector<std::string> args) && {
sandbox_arguments_ = std::move(args);
return *this;
}
SubprocessOptions& SubprocessOptions::InGroup(bool in_group) & {
in_group_ = in_group;
return *this;
}
SubprocessOptions SubprocessOptions::InGroup(bool in_group) && {
in_group_ = in_group;
return std::move(*this);
}
SubprocessOptions& SubprocessOptions::Strace(std::string s) & {
strace_ = std::move(s);
return *this;
}
SubprocessOptions SubprocessOptions::Strace(std::string s) && {
strace_ = std::move(s);
return std::move(*this);
}
Subprocess::Subprocess(Subprocess&& subprocess)
: pid_(subprocess.pid_.load()),
started_(subprocess.started_),
stopper_(subprocess.stopper_) {
// Make sure the moved object no longer controls this subprocess
subprocess.pid_ = -1;
subprocess.started_ = false;
}
Subprocess& Subprocess::operator=(Subprocess&& other) {
pid_ = other.pid_.load();
started_ = other.started_;
stopper_ = other.stopper_;
other.pid_ = -1;
other.started_ = false;
return *this;
}
int Subprocess::Wait() {
if (pid_ < 0) {
LOG(ERROR)
<< "Attempt to wait on invalid pid(has it been waited on already?): "
<< pid_;
return -1;
}
int wstatus = 0;
auto pid = pid_.load(); // Wait will set pid_ to -1 after waiting
auto wait_ret = waitpid(pid, &wstatus, 0);
if (wait_ret < 0) {
auto error = errno;
LOG(ERROR) << "Error on call to waitpid: " << strerror(error);
return wait_ret;
}
int retval = 0;
if (WIFEXITED(wstatus)) {
pid_ = -1;
retval = WEXITSTATUS(wstatus);
if (retval) {
LOG(DEBUG) << "Subprocess " << pid
<< " exited with error code: " << retval;
}
} else if (WIFSIGNALED(wstatus)) {
pid_ = -1;
int sig_num = WTERMSIG(wstatus);
LOG(ERROR) << "Subprocess " << pid << " was interrupted by a signal '"
<< strsignal(sig_num) << "' (" << sig_num << ")";
retval = -1;
}
return retval;
}
int Subprocess::Wait(siginfo_t* infop, int options) {
if (pid_ < 0) {
LOG(ERROR)
<< "Attempt to wait on invalid pid(has it been waited on already?): "
<< pid_;
return -1;
}
*infop = {};
auto retval = TEMP_FAILURE_RETRY(waitid(P_PID, pid_, infop, options));
// We don't want to wait twice for the same process
bool exited = infop->si_code == CLD_EXITED || infop->si_code == CLD_DUMPED;
bool reaped = !(options & WNOWAIT);
if (exited && reaped) {
pid_ = -1;
}
return retval;
}
static Result<void> SendSignalImpl(const int signal, const pid_t pid,
bool to_group, const bool started) {
if (pid == -1) {
return CF_ERR(strerror(ESRCH));
}
CF_EXPECTF(started == true,
"The Subprocess object lost the ownership"
"of the process {}.",
pid);
int ret_code = 0;
if (to_group) {
ret_code = killpg(getpgid(pid), signal);
} else {
ret_code = kill(pid, signal);
}
CF_EXPECTF(ret_code == 0, "kill/killpg returns {} with errno: {}", ret_code,
strerror(errno));
return {};
}
Result<void> Subprocess::SendSignal(const int signal) {
CF_EXPECT(SendSignalImpl(signal, pid_, /* to_group */ false, started_));
return {};
}
Result<void> Subprocess::SendSignalToGroup(const int signal) {
CF_EXPECT(SendSignalImpl(signal, pid_, /* to_group */ true, started_));
return {};
}
StopperResult KillSubprocess(Subprocess* subprocess) {
auto pid = subprocess->pid();
if (pid > 0) {
auto pgid = getpgid(pid);
if (pgid < 0) {
auto error = errno;
LOG(WARNING) << "Error obtaining process group id of process with pid="
<< pid << ": " << strerror(error);
// Send the kill signal anyways, because pgid will be -1 it will be sent
// to the process and not a (non-existent) group
}
bool is_group_head = pid == pgid;
auto kill_ret = (is_group_head ? killpg : kill)(pid, SIGKILL);
if (kill_ret == 0) {
return StopperResult::kStopSuccess;
}
auto kill_cmd = is_group_head ? "killpg(" : "kill(";
PLOG(ERROR) << kill_cmd << pid << ", SIGKILL) failed: ";
return StopperResult::kStopFailure;
}
return StopperResult::kStopSuccess;
}
SubprocessStopper KillSubprocessFallback(std::function<StopperResult()> nice) {
return KillSubprocessFallback([nice](Subprocess*) { return nice(); });
}
SubprocessStopper KillSubprocessFallback(SubprocessStopper nice_stopper) {
return [nice_stopper](Subprocess* process) {
auto nice_result = nice_stopper(process);
if (nice_result == StopperResult::kStopFailure) {
auto harsh_result = KillSubprocess(process);
return harsh_result == StopperResult::kStopSuccess
? StopperResult::kStopCrash
: harsh_result;
}
return nice_result;
};
}
Command::Command(std::string executable, SubprocessStopper stopper)
: subprocess_stopper_(stopper) {
for (char** env = environ; *env; env++) {
env_.emplace_back(*env);
}
command_.emplace_back(std::move(executable));
}
Command::~Command() {
// Close all inherited file descriptors
for (const auto& entry : inherited_fds_) {
close(entry.second);
}
// Close all redirected file descriptors
for (const auto& entry : redirects_) {
close(entry.second);
}
}
void Command::BuildParameter(std::stringstream* stream, SharedFD shared_fd) {
int fd;
if (inherited_fds_.count(shared_fd)) {
fd = inherited_fds_[shared_fd];
} else {
fd = shared_fd->Fcntl(F_DUPFD_CLOEXEC, 3);
CHECK(fd >= 0) << "Could not acquire a new file descriptor: "
<< shared_fd->StrError();
inherited_fds_[shared_fd] = fd;
}
*stream << fd;
}
Command& Command::RedirectStdIO(Subprocess::StdIOChannel channel,
SharedFD shared_fd) & {
CHECK(shared_fd->IsOpen());
CHECK(redirects_.count(channel) == 0)
<< "Attempted multiple redirections of fd: " << static_cast<int>(channel);
auto dup_fd = shared_fd->Fcntl(F_DUPFD_CLOEXEC, 3);
CHECK(dup_fd >= 0) << "Could not acquire a new file descriptor: "
<< shared_fd->StrError();
redirects_[channel] = dup_fd;
return *this;
}
Command Command::RedirectStdIO(Subprocess::StdIOChannel channel,
SharedFD shared_fd) && {
RedirectStdIO(channel, shared_fd);
return std::move(*this);
}
Command& Command::RedirectStdIO(Subprocess::StdIOChannel subprocess_channel,
Subprocess::StdIOChannel parent_channel) & {
return RedirectStdIO(subprocess_channel,
SharedFD::Dup(static_cast<int>(parent_channel)));
}
Command Command::RedirectStdIO(Subprocess::StdIOChannel subprocess_channel,
Subprocess::StdIOChannel parent_channel) && {
RedirectStdIO(subprocess_channel, parent_channel);
return std::move(*this);
}
Command& Command::SetWorkingDirectory(const std::string& path) & {
#ifdef __linux__
auto fd = SharedFD::Open(path, O_RDONLY | O_PATH | O_DIRECTORY);
#elif defined(__APPLE__)
auto fd = SharedFD::Open(path, O_RDONLY | O_DIRECTORY);
#else
#error "Unsupported operating system"
#endif
CHECK(fd->IsOpen()) << "Could not open \"" << path
<< "\" dir fd: " << fd->StrError();
return SetWorkingDirectory(fd);
}
Command Command::SetWorkingDirectory(const std::string& path) && {
return std::move(SetWorkingDirectory(path));
}
Command& Command::SetWorkingDirectory(SharedFD dirfd) & {
CHECK(dirfd->IsOpen()) << "Dir fd invalid: " << dirfd->StrError();
working_directory_ = std::move(dirfd);
return *this;
}
Command Command::SetWorkingDirectory(SharedFD dirfd) && {
return std::move(SetWorkingDirectory(std::move(dirfd)));
}
Command& Command::AddPrerequisite(
const std::function<Result<void>()>& prerequisite) & {
prerequisites_.push_back(prerequisite);
return *this;
}
Command Command::AddPrerequisite(
const std::function<Result<void>()>& prerequisite) && {
prerequisites_.push_back(prerequisite);
return std::move(*this);
}
Subprocess Command::Start(SubprocessOptions options) const {
auto cmd = ToCharPointers(command_);
if (!options.Strace().empty()) {
auto strace_args = {
"/usr/bin/strace",
"--daemonize",
"--output-separately", // Add .pid suffix
"--follow-forks",
"-o", // Write to a separate file.
options.Strace().c_str(),
};
cmd.insert(cmd.begin(), strace_args);
}
if (!validate_redirects(redirects_, inherited_fds_)) {
return Subprocess(-1, {});
}
std::string fds_arg;
if (!options.SandboxArguments().empty()) {
std::vector<int> fds;
for (const auto& redirect : redirects_) {
fds.emplace_back(static_cast<int>(redirect.first));
}
for (const auto& inherited_fd : inherited_fds_) {
fds.emplace_back(inherited_fd.second);
}
fds_arg = "--inherited_fds=" + fmt::format("{}", fmt::join(fds, ","));
auto forwarding_args = {fds_arg.c_str(), "--"};
cmd.insert(cmd.begin(), forwarding_args);
auto sbox_ptrs = ToCharPointers(options.SandboxArguments());
sbox_ptrs.pop_back(); // Final null pointer will end argv early
cmd.insert(cmd.begin(), sbox_ptrs.begin(), sbox_ptrs.end());
}
for (auto& prerequisite : prerequisites_) {
auto prerequisiteResult = prerequisite();
if (!prerequisiteResult.ok()) {
LOG(ERROR) << "Failed to check prerequisites: "
<< prerequisiteResult.error().FormatForEnv();
}
}
// ToCharPointers allocates memory so it can't be called in the child process.
auto envp = ToCharPointers(env_);
pid_t pid = fork();
if (!pid) {
// LOG(...) can't be used in the child process because it may block waiting
// for other threads which don't exist in the child process.
#ifdef __linux__
if (options.ExitWithParent()) {
prctl(PR_SET_PDEATHSIG, SIGHUP); // Die when parent dies
}
#endif
do_redirects(redirects_);
if (options.InGroup()) {
// This call should never fail (see SETPGID(2))
if (setpgid(0, 0) != 0) {
exit(-errno);
}
}
for (const auto& entry : inherited_fds_) {
if (fcntl(entry.second, F_SETFD, 0)) {
exit(-errno);
}
}
if (working_directory_->IsOpen()) {
if (SharedFD::Fchdir(working_directory_) != 0) {
exit(-errno);
}
}
int rval;
const char* executable = executable_ ? executable_->c_str() : cmd[0];
#ifdef __linux__
rval = execvpe(executable, const_cast<char* const*>(cmd.data()),
const_cast<char* const*>(envp.data()));
#elif defined(__APPLE__)
rval = execve(executable, const_cast<char* const*>(cmd.data()),
const_cast<char* const*>(envp.data()));
#else
#error "Unsupported architecture"
#endif
// No need to check for error, execvpe/execve don't return on success.
exit(rval);
}
if (pid == -1) {
LOG(ERROR) << "fork failed (" << strerror(errno) << ")";
}
if (options.Verbose()) { // "more verbose", and LOG(DEBUG) > LOG(VERBOSE)
LOG(DEBUG) << "Started (pid: " << pid << "): " << cmd[0];
for (int i = 1; cmd[i]; i++) {
LOG(DEBUG) << cmd[i];
}
} else {
LOG(VERBOSE) << "Started (pid: " << pid << "): " << cmd[0];
for (int i = 1; cmd[i]; i++) {
LOG(VERBOSE) << cmd[i];
}
}
return Subprocess(pid, subprocess_stopper_);
}
std::ostream& operator<<(std::ostream& out, const Command& command) {
return out << android::base::Join(command.command_, " ");
}
std::string Command::AsBashScript(
const std::string& redirected_stdio_path) const {
CHECK(inherited_fds_.empty())
<< "Bash wrapper will not have inheritied file descriptors.";
CHECK(redirects_.empty()) << "Bash wrapper will not have redirected stdio.";
std::string contents =
"#!/usr/bin/env bash\n\n" + android::base::Join(command_, " \\\n");
if (!redirected_stdio_path.empty()) {
contents += " &> " + AbsolutePath(redirected_stdio_path);
}
return contents;
}
// A class that waits for threads to exit in its destructor.
class ThreadJoiner {
std::vector<std::thread*> threads_;
public:
ThreadJoiner(const std::vector<std::thread*> threads) : threads_(threads) {}
~ThreadJoiner() {
for (auto& thread : threads_) {
if (thread->joinable()) {
thread->join();
}
}
}
};
int RunWithManagedStdio(Command&& cmd_tmp, const std::string* stdin_str,
std::string* stdout_str, std::string* stderr_str,
SubprocessOptions options) {
/*
* The order of these declarations is necessary for safety. If the function
* returns at any point, the Command will be destroyed first, closing all
* of its references to SharedFDs. This will cause the thread internals to fail
* their reads or writes. The ThreadJoiner then waits for the threads to
* complete, as running the destructor of an active std::thread crashes the
* program.
*
* C++ scoping rules dictate that objects are descoped in reverse order to
* construction, so this behavior is predictable.
*/
std::thread stdin_thread, stdout_thread, stderr_thread;
ThreadJoiner thread_joiner({&stdin_thread, &stdout_thread, &stderr_thread});
Command cmd = std::move(cmd_tmp);
bool io_error = false;
if (stdin_str != nullptr) {
SharedFD pipe_read, pipe_write;
if (!SharedFD::Pipe(&pipe_read, &pipe_write)) {
LOG(ERROR) << "Could not create a pipe to write the stdin of \""
<< cmd.GetShortName() << "\"";
return -1;
}
cmd.RedirectStdIO(Subprocess::StdIOChannel::kStdIn, pipe_read);
stdin_thread = std::thread([pipe_write, stdin_str, &io_error]() {
int written = WriteAll(pipe_write, *stdin_str);
if (written < 0) {
io_error = true;
LOG(ERROR) << "Error in writing stdin to process";
}
});
}
if (stdout_str != nullptr) {
SharedFD pipe_read, pipe_write;
if (!SharedFD::Pipe(&pipe_read, &pipe_write)) {
LOG(ERROR) << "Could not create a pipe to read the stdout of \""
<< cmd.GetShortName() << "\"";
return -1;
}
cmd.RedirectStdIO(Subprocess::StdIOChannel::kStdOut, pipe_write);
stdout_thread = std::thread([pipe_read, stdout_str, &io_error]() {
int read = ReadAll(pipe_read, stdout_str);
if (read < 0) {
io_error = true;
LOG(ERROR) << "Error in reading stdout from process";
}
});
}
if (stderr_str != nullptr) {
SharedFD pipe_read, pipe_write;
if (!SharedFD::Pipe(&pipe_read, &pipe_write)) {
LOG(ERROR) << "Could not create a pipe to read the stderr of \""
<< cmd.GetShortName() << "\"";
return -1;
}
cmd.RedirectStdIO(Subprocess::StdIOChannel::kStdErr, pipe_write);
stderr_thread = std::thread([pipe_read, stderr_str, &io_error]() {
int read = ReadAll(pipe_read, stderr_str);
if (read < 0) {
io_error = true;
LOG(ERROR) << "Error in reading stderr from process";
}
});
}
auto subprocess = cmd.Start(std::move(options));
if (!subprocess.Started()) {
return -1;
}
auto cmd_short_name = cmd.GetShortName();
{
// Force the destructor to run by moving it into a smaller scope.
// This is necessary to close the write end of the pipe.
Command forceDelete = std::move(cmd);
}
int code = subprocess.Wait();
{
auto join_threads = std::move(thread_joiner);
}
if (io_error) {
LOG(ERROR) << "IO error communicating with " << cmd_short_name;
return -1;
}
return code;
}
namespace {
struct ExtraParam {
// option for Subprocess::Start()
SubprocessOptions subprocess_options;
// options for Subprocess::Wait(...)
int wait_options;
siginfo_t* infop;
};
Result<int> ExecuteImpl(const std::vector<std::string>& command,
const std::optional<std::vector<std::string>>& envs,
std::optional<ExtraParam> extra_param) {
Command cmd(command[0]);
for (size_t i = 1; i < command.size(); ++i) {
cmd.AddParameter(command[i]);
}
if (envs) {
cmd.SetEnvironment(*envs);
}
auto subprocess =
(!extra_param ? cmd.Start()
: cmd.Start(std::move(extra_param->subprocess_options)));
CF_EXPECT(subprocess.Started(), "Subprocess failed to start.");
if (extra_param) {
CF_EXPECT(extra_param->infop != nullptr,
"When ExtraParam is given, the infop buffer address "
<< "must not be nullptr.");
return subprocess.Wait(extra_param->infop, extra_param->wait_options);
} else {
return subprocess.Wait();
}
}
} // namespace
int Execute(const std::vector<std::string>& commands,
const std::vector<std::string>& envs) {
auto result = ExecuteImpl(commands, envs, /* extra_param */ std::nullopt);
return (!result.ok() ? -1 : *result);
}
int Execute(const std::vector<std::string>& commands) {
std::vector<std::string> envs;
auto result = ExecuteImpl(commands, /* envs */ std::nullopt,
/* extra_param */ std::nullopt);
return (!result.ok() ? -1 : *result);
}
Result<siginfo_t> Execute(const std::vector<std::string>& commands,
SubprocessOptions subprocess_options,
int wait_options) {
siginfo_t info;
auto ret_code = CF_EXPECT(ExecuteImpl(
commands, /* envs */ std::nullopt,
ExtraParam{.subprocess_options = std::move(subprocess_options),
.wait_options = wait_options,
.infop = &info}));
CF_EXPECT(ret_code == 0, "Subprocess::Wait() returned " << ret_code);
return info;
}
Result<siginfo_t> Execute(const std::vector<std::string>& commands,
const std::vector<std::string>& envs,
SubprocessOptions subprocess_options,
int wait_options) {
siginfo_t info;
auto ret_code = CF_EXPECT(ExecuteImpl(
commands, envs,
ExtraParam{.subprocess_options = std::move(subprocess_options),
.wait_options = wait_options,
.infop = &info}));
CF_EXPECT(ret_code == 0, "Subprocess::Wait() returned " << ret_code);
return info;
}
} // namespace cuttlefish
|