From: Nick Mathewson Date: Sun, 2 Feb 2014 20:47:48 +0000 (-0500) Subject: Add a sandbox rule to allow IP_TRANSPARENT X-Git-Tag: tor-0.2.5.2-alpha~40^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=25f0eb4512a57e305ed0bff00eb276812a7c8de6;p=thirdparty%2Ftor.git Add a sandbox rule to allow IP_TRANSPARENT --- diff --git a/src/common/sandbox.c b/src/common/sandbox.c index dec6bfeea5..6b78748834 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; }