diff options
author | Nick Mathewson <nickm@torproject.org> | 2017-07-27 08:23:37 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2017-07-27 08:23:37 -0400 |
commit | b387dd364f44ff79aff7c4c71a3bff9dd21b1623 (patch) | |
tree | 1c0202bd76a1700fc3f7f2d0c8adf716f46a9e21 /src/common | |
parent | 836d628fc5a8974be09e58c32d2bc178874d50c2 (diff) | |
parent | ced2dd5f92c910fb827bac2e70edfc6e5922b21a (diff) | |
download | tor-b387dd364f44ff79aff7c4c71a3bff9dd21b1623.tar.gz tor-b387dd364f44ff79aff7c4c71a3bff9dd21b1623.zip |
Merge branch 'maint-0.3.1'
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/sandbox.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/common/sandbox.c b/src/common/sandbox.c index 0dcfdc2ac4..c06f9694b1 100644 --- a/src/common/sandbox.c +++ b/src/common/sandbox.c @@ -734,6 +734,14 @@ sb_setsockopt(scmp_filter_ctx ctx, sandbox_cfg_t *filter) return rc; #endif +#ifdef IPV6_V6ONLY + rc = seccomp_rule_add_2(ctx, SCMP_ACT_ALLOW, SCMP_SYS(setsockopt), + SCMP_CMP(1, SCMP_CMP_EQ, IPPROTO_IPV6), + SCMP_CMP(2, SCMP_CMP_EQ, IPV6_V6ONLY)); + if (rc) + return rc; +#endif + return 0; } |