diff options
author | MarcoFalke <falke.marco@gmail.com> | 2022-03-28 09:04:35 +0200 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2022-03-28 09:04:38 +0200 |
commit | dc0ba8ce9f6cca3688853882c1a5c607db2c070b (patch) | |
tree | 48af7a94dd48ef16c050fec8abf901a16766e5e9 /src | |
parent | 88709e9dc522f895496589caf1757a76e3734634 (diff) | |
parent | 9809db3577f0fa618bea42635b1581e628a30395 (diff) |
Merge bitcoin/bitcoin#24659: util: add linkat to syscall sandbox (AllowFileSystem)
9809db3577f0fa618bea42635b1581e628a30395 util: add linkat to syscall sandbox (AllowFileSystem) (fanquake)
Pull request description:
Should fix #24536.
ACKs for top commit:
MarcoFalke:
cr ACK 9809db3577f0fa618bea42635b1581e628a30395
Rspigler:
Tested ACK (commit 9809db3577f0fa618bea42635b1581e628a30395) - this fixes https://github.com/bitcoin/bitcoin/issues/24536
Tree-SHA512: 2642f7dfa806e166fb32639a29b509b2edc8b919516c1f12430fc96f9887952395e157d71ef99fbaef8f7bcce1920530c24ecbce605b8a374b05d586f1f22a24
Diffstat (limited to 'src')
-rw-r--r-- | src/util/syscall_sandbox.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/util/syscall_sandbox.cpp b/src/util/syscall_sandbox.cpp index f2a9cf664d..efc58914b6 100644 --- a/src/util/syscall_sandbox.cpp +++ b/src/util/syscall_sandbox.cpp @@ -592,6 +592,7 @@ public: allowed_syscalls.insert(__NR_getcwd); // get current working directory allowed_syscalls.insert(__NR_getdents); // get directory entries allowed_syscalls.insert(__NR_getdents64); // get directory entries + allowed_syscalls.insert(__NR_linkat); // create relative to a directory file descriptor allowed_syscalls.insert(__NR_lstat); // get file status allowed_syscalls.insert(__NR_mkdir); // create a directory allowed_syscalls.insert(__NR_newfstatat); // get file status |