Re: [PATCH v5 0/6] Add eBPF hooks for cgroups
From: Daniel Mack <hidden>
Date: 2016-09-19 16:34:28
Also in:
netdev
Hi, On 09/16/2016 09:57 PM, Sargun Dhillon wrote:
On Wed, Sep 14, 2016 at 01:13:16PM +0200, Daniel Mack wrote:
quoted
I have no idea what makes you think this is limited to systemd. As I said, I provided an example for userspace that works from the command line. The same limitation apply as for all other users of cgroups.So, at least in my work, we have Mesos, but on nearly every machine that Mesos runs, people also have systemd. Now, there's recently become a bit of a battle of ownership of things like cgroups on these machines. We can usually solve it by nesting under systemd cgroups, and thus so far we've avoided making too many systemd-specific concessions. The reason this works (mostly), is because everything we touch has a sense of nesting, where we can apply policy at a place lower in the hierarchy, and yet systemd's monitoring and policy still stays in place. Now, with this patch, we don't have that, but I think we can reasonably add some flag like "no override" when applying policies, or alternatively something like "no new privileges", to prevent children from applying policies that override top-level policy.
Yes, but the API is already guarded by CAP_NET_ADMIN. Take that capability away from your children, and they can't tamper with the policy. Does that work for you?
I realize there is a speed concern as well, but I think for people who want nested policy, we're willing to make the tradeoff. The cost of traversing a few extra pointers still outweighs the overhead of network namespaces, iptables, etc.. for many of us.
Not sure. Have you tried it?
What do you think Daniel?
I think we should look at an implementation once we really need it, and then revisit the performance impact. In any case, this can be changed under the hood, without touching the userspace API (except for adding flags if we need them).
quoted
Not necessarily. You can as well do it the inetd way, and pass the socket to a process that is launched on demand, but do SO_ATTACH_FILTER + SO_LOCK_FILTER in the middle. What happens with payload on the socket is not transparent to the launched binary at all. The proposed cgroup eBPF solution implements a very similar behavior in that regard.It would be nice to be able to see whether or not a filter is attached to a cgroup, but given this is going through syscalls, at least introspection is possible as opposed to something like netlink.
Sure, there are many ways. I implemented the bpf cgroup logic using an own cgroup controller once, which made it possible to read out the status. But as we agreed on attaching programs through the bpf(2) system call, I moved back to the implementation that directly stores the pointers in the cgroup. First enabling the controller through the fs-backed cgroup interface, then come back through the bpf(2) syscall and then go back to the fs interface to read out status values is a bit weird.
quoted
And FWIW, I agree with Thomas - there is nothing wrong with having multiple options to use for such use-cases.Right now, for containers, we have netfilter and network namespaces. There's a lot of performance overhead that comes with this.
Out of curiosity: Could you express that in numbers? And how exactly are you testing?
Not only that, but iptables doesn't really have a simple way of usage by automated infrastructure. We (firewalld, systemd, dockerd, mesos) end up fighting with one another for ownership over firewall rules.
Yes, that's a common problem.
Although, I have problems with this approach, I think that it's a good baseline where we can have top level owned by systemd, docker underneath that, and Mesos underneath that. We can add additional hooks for things like Checmate and Landlock, and with a little more work, we can do compositition, solving all of our problems.
It is supposed to be just a baseline, yes. Thanks for your feedback, Daniel