diff options
author | Eric W. Biederman <ebiederm@xmission.com> | 2012-11-15 22:03:11 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-11-18 20:33:36 -0500 |
commit | b51642f6d77b131dc85d1d71029c3cbb5b07c262 (patch) | |
tree | 0f3feb16dad1cd729dff368396ee90cd424797a1 /net/bridge/br_netlink.c | |
parent | c027aab4a6b1fe2541090ac04bee8ad246aeef70 (diff) |
net: Enable a userns root rtnl calls that are safe for unprivilged users
- Only allow moving network devices to network namespaces you have
CAP_NET_ADMIN privileges over.
- Enable creating/deleting/modifying interfaces
- Enable adding/deleting addresses
- Enable adding/setting/deleting neighbour entries
- Enable adding/removing routes
- Enable adding/removing fib rules
- Enable setting the forwarding state
- Enable adding/removing ipv6 address labels
- Enable setting bridge parameter
Signed-off-by: "Eric W. Biederman" <ebiederm@xmission.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/bridge/br_netlink.c')
-rw-r--r-- | net/bridge/br_netlink.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/net/bridge/br_netlink.c b/net/bridge/br_netlink.c index 49e14937019d..65429b99a2a3 100644 --- a/net/bridge/br_netlink.c +++ b/net/bridge/br_netlink.c | |||
@@ -240,9 +240,6 @@ int br_setlink(struct net_device *dev, struct nlmsghdr *nlh) | |||
240 | struct nlattr *tb[IFLA_BRPORT_MAX]; | 240 | struct nlattr *tb[IFLA_BRPORT_MAX]; |
241 | int err; | 241 | int err; |
242 | 242 | ||
243 | if (!capable(CAP_NET_ADMIN)) | ||
244 | return -EPERM; | ||
245 | |||
246 | ifm = nlmsg_data(nlh); | 243 | ifm = nlmsg_data(nlh); |
247 | 244 | ||
248 | protinfo = nlmsg_find_attr(nlh, sizeof(*ifm), IFLA_PROTINFO); | 245 | protinfo = nlmsg_find_attr(nlh, sizeof(*ifm), IFLA_PROTINFO); |