1 //===- FuzzerUtilLinux.cpp - Misc utils for Linux. ------------------------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
8 // Misc utils for Linux.
9 //===----------------------------------------------------------------------===//
10 #include "FuzzerPlatform.h"
11 #if LIBFUZZER_LINUX || LIBFUZZER_NETBSD || LIBFUZZER_FREEBSD || \
13 #include "FuzzerCommand.h"
14 #include "FuzzerInternal.h"
18 #include <sys/types.h>
25 int ExecuteCommand(const Command
&Cmd
) {
26 std::string CmdLine
= Cmd
.toString();
27 int exit_code
= system(CmdLine
.c_str());
28 if (WIFEXITED(exit_code
))
29 return WEXITSTATUS(exit_code
);
30 if (WIFSIGNALED(exit_code
) && WTERMSIG(exit_code
) == SIGINT
)
31 return Fuzzer::InterruptExitCode();
35 void DiscardOutput(int Fd
) {
36 FILE* Temp
= fopen("/dev/null", "w");
39 dup2(fileno(Temp
), Fd
);