Skip to content

Commit 61a6131

Browse files
committed
Fix oireal format and sysalls
1 parent 3bbe7de commit 61a6131

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/printer/RealTimeOIOutputBuilder.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ std::string RealTimeOIOutputBuilder::dump() const {
1717

1818
std::stringstream ss;
1919
ss << killReasonName(reason) << " " << exitStatus_ << " "
20-
<< milliSecondsElapsed_ << " " << realMilliSecondsElapsed_ << " "
20+
<< realMilliSecondsElapsed_ << " "
2121
<< 0ULL << " " << memoryPeakKb_ << " "
2222
<< syscallsCounter_ << std::endl;
2323
dumpStatus(ss);

src/seccomp/policy/DefaultPolicy.cc

+4-4
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,8 @@ void DefaultPolicy::addExecutionControlRules(bool allowFork) {
4444
"clock_nanosleep",
4545
"open",
4646
"epoll_create1",
47-
"openat",
48-
"newfstatat",
49-
"pread64"});
47+
"openat"
48+
});
5049

5150
rules_.emplace_back(SeccompRule(
5251
"set_thread_area", action::ActionTrace([](auto& /* tracee */) {
@@ -130,7 +129,7 @@ void DefaultPolicy::addInputOutputRules() {
130129
"dup2", action::ActionAllow(), filter::SyscallArg(1) >= 3));
131130

132131
// Allow reading from any file descriptor
133-
allowSyscalls({"read", "readv", "dup", "fcntl", "fcntl64"});
132+
allowSyscalls({"read", "readv", "dup", "fcntl", "fcntl64", "pread64"});
134133

135134
rules_.emplace_back(SeccompRule("ioctl", action::ActionErrno(ENOTTY)));
136135

@@ -152,6 +151,7 @@ void DefaultPolicy::addFileSystemAccessRules(bool readOnly) {
152151
"stat64",
153152
"fstat",
154153
"fstat64",
154+
"newfstatat",
155155
"lstat",
156156
"lstat64",
157157
"listxattr",

0 commit comments

Comments
 (0)