diff options
author | Nick Mathewson <nickm@torproject.org> | 2014-04-10 15:08:28 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2014-04-10 15:08:28 -0400 |
commit | 196895ed7ed1bd4c93c4c3cdd12893cfa4e4cc41 (patch) | |
tree | 95f3ddd4c984dc178c6f57a01f414363e767feec /src/common | |
parent | a7904543689917d0087ea47ad3d3c1631cdd2bde (diff) | |
download | tor-196895ed7ed1bd4c93c4c3cdd12893cfa4e4cc41.tar.gz tor-196895ed7ed1bd4c93c4c3cdd12893cfa4e4cc41.zip |
Make the sandbox code allow the writev() syscall.
Tor doesn't use it directly, but the glibc backtrace-to-fd code does
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/sandbox.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/common/sandbox.c b/src/common/sandbox.c index 5775289882..0a7a129b54 100644 --- a/src/common/sandbox.c +++ b/src/common/sandbox.c @@ -119,6 +119,7 @@ static int filter_nopar_gen[] = { SCMP_SYS(stat), SCMP_SYS(uname), SCMP_SYS(write), + SCMP_SYS(writev), SCMP_SYS(exit_group), SCMP_SYS(exit), |