aboutsummaryrefslogtreecommitdiff
path: root/src/common/sandbox.c
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2014-02-02 15:47:48 -0500
committerNick Mathewson <nickm@torproject.org>2014-02-02 15:47:48 -0500
commit25f0eb4512a57e305ed0bff00eb276812a7c8de6 (patch)
tree2e8f2994ae0853076d54ed71f9dee2171861f451 /src/common/sandbox.c
parentfd8947afc2815cc3316513fe4461d8d8096eddea (diff)
downloadtor-25f0eb4512a57e305ed0bff00eb276812a7c8de6.tar
tor-25f0eb4512a57e305ed0bff00eb276812a7c8de6.tar.gz
Add a sandbox rule to allow IP_TRANSPARENT
Diffstat (limited to 'src/common/sandbox.c')
-rw-r--r--src/common/sandbox.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/common/sandbox.c b/src/common/sandbox.c
index dec6bfeea..6b7874883 100644
--- a/src/common/sandbox.c
+++ b/src/common/sandbox.c
@@ -475,6 +475,14 @@ sb_setsockopt(scmp_filter_ctx ctx, sandbox_cfg_t *filter)
if (rc)
return rc;
+#ifdef IP_TRANSPARENT
+ rc = seccomp_rule_add(ctx, SCMP_ACT_ALLOW, SCMP_SYS(setsockopt), 2,
+ SCMP_CMP(1, SCMP_CMP_EQ, SOL_IP),
+ SCMP_CMP(2, SCMP_CMP_EQ, IP_TRANSPARENT));
+ if (rc)
+ return rc;
+#endif
+
return 0;
}