Re: [PATCH net-next 09/17] net: Allow userns root control of the core of the network stack.
From: Ben Hutchings <hidden>
Date: 2012-11-21 18:29:42
On Fri, 2012-11-16 at 18:46 -0800, Eric W. Biederman wrote:
Ben Hutchings [off-list ref] writes:quoted
On Fri, 2012-11-16 at 06:32 -0800, Eric W. Biederman wrote:quoted
Glauber Costa [off-list ref] writes:quoted
On 11/16/2012 05:03 PM, Eric W. Biederman wrote:quoted
+ if (!capable(CAP_NET_ADMIN)) + return -EPERM; + return netdev_store(dev, attr, buf, len, change_tx_queue_len);You mean ns_capable here?No. There I meant capable. I deliberately call capable here because I don't understand what the tx_queue_len well enough to be certain it is safe to relax that check to be just ns_capable. My get feel is that allowing an unprivileged user to be able to arbitrarily change the tx_queue_len on a networking device would be a nice way to allow queuing as many network packets as you would like with kernel memory and DOSing the machine. So since with a quick read of the code I could not convince myself it was safe to allow unprivilged users to change tx_queue_len I left it protected by capable. While at the same time I relaxed the check in netdev_store to be ns_capable.Tor the same reason you had better be very selective about which ethtool commands are allowed based on per-user_ns CAP_NET_ADMIN. Consider for a start: ETHTOOL_SEEPROM => brick the NIC ETHTOOL_FLASHDEV => brick the NIC; own the system if it's not using an IOMMUThese are prevented by not having access to real hardware by default. A physical network interface must be moved into a network namespace for you to have access to it.
Yes, I realise that. The question is whether you would expect anything in a container to be able to do those things, even with a physical net device assigned to it. Actually we have the same issue without considering containers - should CAP_NET_ADMIN really give you low-level control over hardware just because it's networking hardware? I think some of these ethtool operations, and access to non-standard MDIO registers, should perhaps require an additional capability (CAP_SYS_ADMIN or CAP_SYS_RAWIO?).
There are a handful of software network devices that are generally safe macvlan, veth, tun, ipip tunnels, etc. Using those network devices is very interesting and about as performant as you can get while still being safe. A buffer overflow in an ethtool command looks as likely to me as being able to own the system by reflashing the NIC.
Sure, if you can find one. But on many NICs the firmware can perform more or less arbitrary DMA *by design* (one reason for using IOMMUs), and the ability to update the firmware is not a bug to be fixed!
Access to a real physical NIC is an act of trust. Given the general linux policy that drivers are merged when they mostly work I don't currently know of any trust models between "I trust you with full access to this device" and "I don't trust you with direct access to this device" that I would feel confident giving to an untrusted user.
At the moment it's 'I trust you with full access to *all* network devices' (init ns CAP_NET_ADMIN), 'I trust you with some reconfiguration of these network devices' (other ns CAP_NET_ADMIN) and 'I don't trust you...' You're expanding what other-ns-CAP_NET_ADMIN means, to 'I trust you with full access to these network devices'.
Which is a convoluted way of saying "ip link set eth0 netns bob" is the moral equivalent of "chown bob.bob /dev/eth0; chmod u+rwx /dev/eth0"
[...] And it's previously been decided that ownership of a block device still should *not* mean full control over it (see responses to CVE-2011-4127). Ben. -- Ben Hutchings, Staff Engineer, Solarflare Not speaking for my employer; that's the marketing department's job. They asked us to note that Solarflare product names are trademarked.