Commit 59cd7377 authored by Michael Weiß's avatar Michael Weiß Committed by Paolo Abeni

net: openvswitch: allow conntrack in non-initial user namespace

Similar to the previous commit, the Netlink interface of the OVS
conntrack module was restricted to global CAP_NET_ADMIN by using
GENL_ADMIN_PERM. This is changed to GENL_UNS_ADMIN_PERM to support
unprivileged containers in non-initial user namespace.
Signed-off-by: default avatarMichael Weiß <michael.weiss@aisec.fraunhofer.de>
Signed-off-by: default avatarPaolo Abeni <pabeni@redhat.com>
parent 80393718
...@@ -1982,7 +1982,8 @@ static int ovs_ct_limit_set_zone_limit(struct nlattr *nla_zone_limit, ...@@ -1982,7 +1982,8 @@ static int ovs_ct_limit_set_zone_limit(struct nlattr *nla_zone_limit,
} else { } else {
struct ovs_ct_limit *ct_limit; struct ovs_ct_limit *ct_limit;
ct_limit = kmalloc(sizeof(*ct_limit), GFP_KERNEL); ct_limit = kmalloc(sizeof(*ct_limit),
GFP_KERNEL_ACCOUNT);
if (!ct_limit) if (!ct_limit)
return -ENOMEM; return -ENOMEM;
...@@ -2252,14 +2253,16 @@ static int ovs_ct_limit_cmd_get(struct sk_buff *skb, struct genl_info *info) ...@@ -2252,14 +2253,16 @@ static int ovs_ct_limit_cmd_get(struct sk_buff *skb, struct genl_info *info)
static const struct genl_small_ops ct_limit_genl_ops[] = { static const struct genl_small_ops ct_limit_genl_ops[] = {
{ .cmd = OVS_CT_LIMIT_CMD_SET, { .cmd = OVS_CT_LIMIT_CMD_SET,
.validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP, .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
.flags = GENL_ADMIN_PERM, /* Requires CAP_NET_ADMIN .flags = GENL_UNS_ADMIN_PERM, /* Requires CAP_NET_ADMIN
* privilege. */ * privilege.
*/
.doit = ovs_ct_limit_cmd_set, .doit = ovs_ct_limit_cmd_set,
}, },
{ .cmd = OVS_CT_LIMIT_CMD_DEL, { .cmd = OVS_CT_LIMIT_CMD_DEL,
.validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP, .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
.flags = GENL_ADMIN_PERM, /* Requires CAP_NET_ADMIN .flags = GENL_UNS_ADMIN_PERM, /* Requires CAP_NET_ADMIN
* privilege. */ * privilege.
*/
.doit = ovs_ct_limit_cmd_del, .doit = ovs_ct_limit_cmd_del,
}, },
{ .cmd = OVS_CT_LIMIT_CMD_GET, { .cmd = OVS_CT_LIMIT_CMD_GET,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment