diff options
author | MarcoFalke <falke.marco@gmail.com> | 2021-11-19 17:19:10 +0100 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2021-11-19 17:18:59 +0100 |
commit | fade4b3aca5b78b6a8021289433616df9d06a87f (patch) | |
tree | 072013f1d2f3a7b74a99e1e064f78703ef6ff98c | |
parent | fe03f7a37fd0ef05149161f6b95a25493e1fe38f (diff) |
util: Add missing fstatfs to syscall sandbox
-rw-r--r-- | src/util/syscall_sandbox.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/util/syscall_sandbox.cpp b/src/util/syscall_sandbox.cpp index bc69df44f4..6e1cc9b457 100644 --- a/src/util/syscall_sandbox.cpp +++ b/src/util/syscall_sandbox.cpp @@ -581,7 +581,7 @@ public: allowed_syscalls.insert(__NR_fdatasync); // synchronize a file's in-core state with storage device allowed_syscalls.insert(__NR_flock); // apply or remove an advisory lock on an open file allowed_syscalls.insert(__NR_fstat); // get file status - allowed_syscalls.insert(__NR_newfstatat); // get file status + allowed_syscalls.insert(__NR_fstatfs); // get file system status allowed_syscalls.insert(__NR_fsync); // synchronize a file's in-core state with storage device allowed_syscalls.insert(__NR_ftruncate); // truncate a file to a specified length allowed_syscalls.insert(__NR_getcwd); // get current working directory @@ -589,6 +589,7 @@ public: allowed_syscalls.insert(__NR_getdents64); // get directory entries allowed_syscalls.insert(__NR_lstat); // get file status allowed_syscalls.insert(__NR_mkdir); // create a directory + allowed_syscalls.insert(__NR_newfstatat); // get file status allowed_syscalls.insert(__NR_open); // open and possibly create a file allowed_syscalls.insert(__NR_openat); // open and possibly create a file allowed_syscalls.insert(__NR_readlink); // read value of a symbolic link |