We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eaa0419 commit 85f85c7Copy full SHA for 85f85c7
src/util/syscall_sandbox.cpp
@@ -592,6 +592,7 @@ class SeccompPolicyBuilder
592
allowed_syscalls.insert(__NR_getcwd); // get current working directory
593
allowed_syscalls.insert(__NR_getdents); // get directory entries
594
allowed_syscalls.insert(__NR_getdents64); // get directory entries
595
+ allowed_syscalls.insert(__NR_linkat); // create relative to a directory file descriptor
596
allowed_syscalls.insert(__NR_lstat); // get file status
597
allowed_syscalls.insert(__NR_mkdir); // create a directory
598
allowed_syscalls.insert(__NR_newfstatat); // get file status
0 commit comments