* Re: [PATCH RFC bpf-next 1/6] bpf: Hooks for sys_bind
@ 2018-03-14 18:41 Alexei Starovoitov
2018-03-15 0:17 ` Eric Dumazet
0 siblings, 1 reply; 13+ messages in thread
From: Alexei Starovoitov @ 2018-03-14 18:41 UTC (permalink / raw)
To: Eric Dumazet
Cc: Alexei Starovoitov, David S. Miller, Daniel Borkmann,
Network Development, Kernel Team
On Wed, Mar 14, 2018 at 11:00 AM, Alexei Starovoitov
<alexei.starovoitov@gmail.com> wrote:
>
>> It seems this is exactly the case where a netns would be the correct answer.
>
> Unfortuantely that's not the case. That's what I tried to explain
> in the cover letter:
> "The setup involves per-container IPs, policy, etc, so traditional
> network-only solutions that involve VRFs, netns, acls are not applicable."
> To elaborate more on that:
> netns is l2 isolation.
> vrf is l3 isolation.
> whereas to containerize an application we need to punch connectivity holes
> in these layered techniques.
> We also considered resurrecting Hannes's afnetns work
> and even went as far as designing a new namespace for L4 isolation.
> Unfortunately all hierarchical namespace abstraction don't work.
> To run an application inside cgroup container that was not written
> with containers in mind we have to make an illusion of running
> in non-containerized environment.
> In some cases we remember the port and container id in the post-bind hook
> in a bpf map and when some other task in a different container is trying
> to connect to a service we need to know where this service is running.
> It can be remote and can be local. Both client and service may or may not
> be written with containers in mind and this sockaddr rewrite is providing
> connectivity and load balancing feature that you simply cannot do
> with hierarchical networking primitives.
have to explain this a bit further...
We also considered hacking these 'connectivity holes' in
netns and/or vrf, but that would be real layering violation,
since clean l2, l3 abstraction would suddenly support
something that breaks through the layers.
Just like many consider ipvlan a bad hack that punches
through the layers and connects l2 abstraction of netns
at l3 layer, this is not something kernel should ever do.
We really didn't want another ipvlan-like hack in the kernel.
Instead bpf programs at bind/connect time _help_
applications discover and connect to each other.
All containers are running in init_nens and there are no vrfs.
After bind/connect the normal fib/neighbor core networking
logic works as it should always do. The whole system is
clean from network point of view.
^ permalink raw reply [flat|nested] 13+ messages in thread* Re: [PATCH RFC bpf-next 1/6] bpf: Hooks for sys_bind 2018-03-14 18:41 [PATCH RFC bpf-next 1/6] bpf: Hooks for sys_bind Alexei Starovoitov @ 2018-03-15 0:17 ` Eric Dumazet 2018-03-15 3:37 ` Alexei Starovoitov 0 siblings, 1 reply; 13+ messages in thread From: Eric Dumazet @ 2018-03-15 0:17 UTC (permalink / raw) To: Alexei Starovoitov Cc: Alexei Starovoitov, David S. Miller, Daniel Borkmann, Network Development, Kernel Team On 03/14/2018 11:41 AM, Alexei Starovoitov wrote: > On Wed, Mar 14, 2018 at 11:00 AM, Alexei Starovoitov > <alexei.starovoitov@gmail.com> wrote: >> >>> It seems this is exactly the case where a netns would be the correct answer. >> >> Unfortuantely that's not the case. That's what I tried to explain >> in the cover letter: >> "The setup involves per-container IPs, policy, etc, so traditional >> network-only solutions that involve VRFs, netns, acls are not applicable." >> To elaborate more on that: >> netns is l2 isolation. >> vrf is l3 isolation. >> whereas to containerize an application we need to punch connectivity holes >> in these layered techniques. >> We also considered resurrecting Hannes's afnetns work >> and even went as far as designing a new namespace for L4 isolation. >> Unfortunately all hierarchical namespace abstraction don't work. >> To run an application inside cgroup container that was not written >> with containers in mind we have to make an illusion of running >> in non-containerized environment. >> In some cases we remember the port and container id in the post-bind hook >> in a bpf map and when some other task in a different container is trying >> to connect to a service we need to know where this service is running. >> It can be remote and can be local. Both client and service may or may not >> be written with containers in mind and this sockaddr rewrite is providing >> connectivity and load balancing feature that you simply cannot do >> with hierarchical networking primitives. > > have to explain this a bit further... > We also considered hacking these 'connectivity holes' in > netns and/or vrf, but that would be real layering violation, > since clean l2, l3 abstraction would suddenly support > something that breaks through the layers. > Just like many consider ipvlan a bad hack that punches > through the layers and connects l2 abstraction of netns > at l3 layer, this is not something kernel should ever do. > We really didn't want another ipvlan-like hack in the kernel. > Instead bpf programs at bind/connect time _help_ > applications discover and connect to each other. > All containers are running in init_nens and there are no vrfs. > After bind/connect the normal fib/neighbor core networking > logic works as it should always do. The whole system is > clean from network point of view. We apparently missed something when deploying ipvlan and one netns per container/job Full access to 64K ports, no more ports being reserved/abused. If one job needs more, no problem, just use more than one IP per netns. It also works with UDP just fine. Are you considering adding a hook later for sendmsg() (unconnected socket or not), or do you want to use the existing one in ip_finish_output(), adding per-packet overhead ? This notion of 'clean l2, l3 abstraction' is very subjective. I find netns isolation very clean, powerful, and it is there already. eBPF is certainly nice, but pretending netns/ipvlan are hacks is not credible. ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH RFC bpf-next 1/6] bpf: Hooks for sys_bind 2018-03-15 0:17 ` Eric Dumazet @ 2018-03-15 3:37 ` Alexei Starovoitov 2018-03-15 14:14 ` Jiri Benc 2018-03-15 16:22 ` Mahesh Bandewar (महेश बंडेवार) 0 siblings, 2 replies; 13+ messages in thread From: Alexei Starovoitov @ 2018-03-15 3:37 UTC (permalink / raw) To: Eric Dumazet Cc: Alexei Starovoitov, David S. Miller, Daniel Borkmann, Network Development, Kernel Team On Wed, Mar 14, 2018 at 05:17:54PM -0700, Eric Dumazet wrote: > > > On 03/14/2018 11:41 AM, Alexei Starovoitov wrote: > > On Wed, Mar 14, 2018 at 11:00 AM, Alexei Starovoitov > > <alexei.starovoitov@gmail.com> wrote: > >> > >>> It seems this is exactly the case where a netns would be the correct answer. > >> > >> Unfortuantely that's not the case. That's what I tried to explain > >> in the cover letter: > >> "The setup involves per-container IPs, policy, etc, so traditional > >> network-only solutions that involve VRFs, netns, acls are not applicable." > >> To elaborate more on that: > >> netns is l2 isolation. > >> vrf is l3 isolation. > >> whereas to containerize an application we need to punch connectivity holes > >> in these layered techniques. > >> We also considered resurrecting Hannes's afnetns work > >> and even went as far as designing a new namespace for L4 isolation. > >> Unfortunately all hierarchical namespace abstraction don't work. > >> To run an application inside cgroup container that was not written > >> with containers in mind we have to make an illusion of running > >> in non-containerized environment. > >> In some cases we remember the port and container id in the post-bind hook > >> in a bpf map and when some other task in a different container is trying > >> to connect to a service we need to know where this service is running. > >> It can be remote and can be local. Both client and service may or may not > >> be written with containers in mind and this sockaddr rewrite is providing > >> connectivity and load balancing feature that you simply cannot do > >> with hierarchical networking primitives. > > > > have to explain this a bit further... > > We also considered hacking these 'connectivity holes' in > > netns and/or vrf, but that would be real layering violation, > > since clean l2, l3 abstraction would suddenly support > > something that breaks through the layers. > > Just like many consider ipvlan a bad hack that punches > > through the layers and connects l2 abstraction of netns > > at l3 layer, this is not something kernel should ever do. > > We really didn't want another ipvlan-like hack in the kernel. > > Instead bpf programs at bind/connect time _help_ > > applications discover and connect to each other. > > All containers are running in init_nens and there are no vrfs. > > After bind/connect the normal fib/neighbor core networking > > logic works as it should always do. The whole system is > > clean from network point of view. > > > We apparently missed something when deploying ipvlan and one netns per > container/job Hanness expressed the reasons why RHEL doesn't support ipvlan long ago. I couldn't find the complete link. This one mentions some of the issues: https://www.mail-archive.com/netdev@vger.kernel.org/msg157614.html Since ipvlan works for you, great, but it's clearly a layering violation. ipvlan connects L2 namespaces via L3 by doing its own fib lookups. To me it's a definition 'punch connectivity hole' in L2 abstraction. In normal L2 setup of netns+veth the traffic from one netns should have went into another netns via full L2. ipvlan cheats by giving L3 connectivity. It's not clean to me. There are still neighbour tables in netnses that are duplicated. Because netns is L2 there is full requeuing for traffic across netnses. I guess google doesn't prioritize container to container traffic while outside into netns via ipvlan works ok similar to bond, but imo it's cheating too. imo afnetns would have been much better alternative for your use case without ipvlan pitfalls, but as you said ipvlan already in the tree and afnetns is not. With afnetns early demux would have worked not only for traffic from the network, but for traffic across afnetns-es. > I find netns isolation very clean, powerful, and it is there already. netns+veth is a clean abstraction, but netns+ipvlan is imo not. imo VRF is another clean L3 abstraction. Yet some folks tried to do VRF-like things with netns. David Ahern wrote nice blog about issues with that. I suspect VRF also could have worked for google use case and would have been easier to use than netns+ipvlan. But since ipvlan works for you in the current shape, great, I'm not going to argue further. Let's agree to disagree on cleanliness of the solution. > It also works with UDP just fine. Are you considering adding a hook > later for sendmsg() (unconnected socket or not), or do you want to use > the existing one in ip_finish_output(), adding per-packet overhead ? Currently that's indeed the case. Existing cgroup-bpf hooks at ip_finish_output work for many use cases, but per-packet overhead is bad. With bind/connect hooks we avoid that overhead for good traffic (which is tcp and connected udp). We still need to solve it for unconnected udp. Rough idea is to do similar sockaddr rewrite/drop in unconnected part of udp_sendmsg. ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH RFC bpf-next 1/6] bpf: Hooks for sys_bind 2018-03-15 3:37 ` Alexei Starovoitov @ 2018-03-15 14:14 ` Jiri Benc 2018-03-15 16:22 ` Mahesh Bandewar (महेश बंडेवार) 1 sibling, 0 replies; 13+ messages in thread From: Jiri Benc @ 2018-03-15 14:14 UTC (permalink / raw) To: Alexei Starovoitov Cc: Eric Dumazet, Alexei Starovoitov, David S. Miller, Daniel Borkmann, Network Development, Kernel Team On Wed, 14 Mar 2018 20:37:00 -0700, Alexei Starovoitov wrote: > Hanness expressed the reasons why RHEL doesn't support ipvlan long ago. > I couldn't find the complete link. This one mentions some of the issues: > https://www.mail-archive.com/netdev@vger.kernel.org/msg157614.html ipvlan improved a lot since that time :-) And Paolo has recently fixed the remaining issues we were aware of. Jiri ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH RFC bpf-next 1/6] bpf: Hooks for sys_bind 2018-03-15 3:37 ` Alexei Starovoitov 2018-03-15 14:14 ` Jiri Benc @ 2018-03-15 16:22 ` Mahesh Bandewar (महेश बंडेवार) 1 sibling, 0 replies; 13+ messages in thread From: Mahesh Bandewar (महेश बंडेवार) @ 2018-03-15 16:22 UTC (permalink / raw) To: Alexei Starovoitov Cc: Eric Dumazet, Alexei Starovoitov, David S. Miller, Daniel Borkmann, Network Development, Kernel Team On Wed, Mar 14, 2018 at 8:37 PM, Alexei Starovoitov <alexei.starovoitov@gmail.com> wrote: > On Wed, Mar 14, 2018 at 05:17:54PM -0700, Eric Dumazet wrote: >> >> >> On 03/14/2018 11:41 AM, Alexei Starovoitov wrote: >> > On Wed, Mar 14, 2018 at 11:00 AM, Alexei Starovoitov >> > <alexei.starovoitov@gmail.com> wrote: >> >> >> >>> It seems this is exactly the case where a netns would be the correct answer. >> >> >> >> Unfortuantely that's not the case. That's what I tried to explain >> >> in the cover letter: >> >> "The setup involves per-container IPs, policy, etc, so traditional >> >> network-only solutions that involve VRFs, netns, acls are not applicable." >> >> To elaborate more on that: >> >> netns is l2 isolation. >> >> vrf is l3 isolation. >> >> whereas to containerize an application we need to punch connectivity holes >> >> in these layered techniques. >> >> We also considered resurrecting Hannes's afnetns work >> >> and even went as far as designing a new namespace for L4 isolation. >> >> Unfortunately all hierarchical namespace abstraction don't work. >> >> To run an application inside cgroup container that was not written >> >> with containers in mind we have to make an illusion of running >> >> in non-containerized environment. >> >> In some cases we remember the port and container id in the post-bind hook >> >> in a bpf map and when some other task in a different container is trying >> >> to connect to a service we need to know where this service is running. >> >> It can be remote and can be local. Both client and service may or may not >> >> be written with containers in mind and this sockaddr rewrite is providing >> >> connectivity and load balancing feature that you simply cannot do >> >> with hierarchical networking primitives. >> > >> > have to explain this a bit further... >> > We also considered hacking these 'connectivity holes' in >> > netns and/or vrf, but that would be real layering violation, >> > since clean l2, l3 abstraction would suddenly support >> > something that breaks through the layers. >> > Just like many consider ipvlan a bad hack that punches >> > through the layers and connects l2 abstraction of netns >> > at l3 layer, this is not something kernel should ever do. >> > We really didn't want another ipvlan-like hack in the kernel. >> > Instead bpf programs at bind/connect time _help_ >> > applications discover and connect to each other. >> > All containers are running in init_nens and there are no vrfs. >> > After bind/connect the normal fib/neighbor core networking >> > logic works as it should always do. The whole system is >> > clean from network point of view. >> >> >> We apparently missed something when deploying ipvlan and one netns per >> container/job > > Hanness expressed the reasons why RHEL doesn't support ipvlan long ago. I had a long discussion with Hanness and there are two pending issues (discounting minor bug fixes / improvement). (a) the multicast-group-membership and (b) early demux. multicast group membership is just a matter of putting some code there to fix it. While early-demux is little harder without violating isolation boundaries. To me isolation is critical / important and if we find a right solution that doesn't violate isolation, we'd fix it. > I couldn't find the complete link. This one mentions some of the issues: > https://www.mail-archive.com/netdev@vger.kernel.org/msg157614.html > Since ipvlan works for you, great, but it's clearly a layering violation. > ipvlan connects L2 namespaces via L3 by doing its own fib lookups. > To me it's a definition 'punch connectivity hole' in L2 abstraction. > In normal L2 setup of netns+veth the traffic from one netns should > have went into another netns via full L2. ipvlan cheats by giving > L3 connectivity. It's not clean to me. IPvlan supports three different modes and you have mixed all of them while explaining your understanding of IPvlan. Probably one needs to digest all these modes and evaluate them in the context of their use case. Well, I'm not even going to attempt to explain the differences, if you were serious you could have figured it out. There are lots of use cases and people use it in interesting ways. Each case can be better handled by using either VRF, or macvlan, or IPvlan or whatever is out there. It would be childish to say one use-case is better than others as these are *different* use cases. All these solutions come with their own caveats and you choose what you can live with. Well, you can always improve and I can see Redhat folks are doing it and I appreciate their efforts. Like I said there are several different ways to make this work with namespaces in much cleaner way and IPvlan does not need to be involved. However adding another eBPF hook just because we can in a hackish way is *not* the right way. Especially when a problem has already been solved (with namespace) these 2000 lines dont deserve to be in kernel. eBPF is a good tool and there is a thin line between using it appropriately and misusing it. I don't want to argue and we can agree to disagree! > There are still neighbour > tables in netnses that are duplicated. > Because netns is L2 there is full requeuing for traffic across netnses. > I guess google doesn't prioritize container to container traffic > while outside into netns via ipvlan works ok similar to bond, but > imo it's cheating too. > imo afnetns would have been much better alternative for your > use case without ipvlan pitfalls, but as you said ipvlan already > in the tree and afnetns is not. > With afnetns early demux would have worked not only for traffic from > the network, but for traffic across afnetns-es. > Isolation is a critical piece of our puzzle and none of the suggestions you have given solve it. cgroups clearly don't! However, those could be good solutions in some other use-cases. >> I find netns isolation very clean, powerful, and it is there already. > > netns+veth is a clean abstraction, but netns+ipvlan is imo not. > imo VRF is another clean L3 abstraction. Yet some folks tried > to do VRF-like things with netns. > David Ahern wrote nice blog about issues with that. > I suspect VRF also could have worked for google use case > and would have been easier to use than netns+ipvlan. > But since ipvlan works for you in the current shape, great, > I'm not going to argue further. > Let's agree to disagree on cleanliness of the solution. > >> It also works with UDP just fine. Are you considering adding a hook >> later for sendmsg() (unconnected socket or not), or do you want to use >> the existing one in ip_finish_output(), adding per-packet overhead ? > > Currently that's indeed the case. Existing cgroup-bpf hooks > at ip_finish_output work for many use cases, but per-packet overhead > is bad. With bind/connect hooks we avoid that overhead for > good traffic (which is tcp and connected udp). We still need > to solve it for unconnected udp. Rough idea is to do similar > sockaddr rewrite/drop in unconnected part of udp_sendmsg. > ^ permalink raw reply [flat|nested] 13+ messages in thread
* [PATCH RFC bpf-next 0/6] bpf: introduce cgroup-bpf bind, connect, post-bind hooks @ 2018-03-14 3:39 Alexei Starovoitov 2018-03-14 3:39 ` [PATCH RFC bpf-next 1/6] bpf: Hooks for sys_bind Alexei Starovoitov 0 siblings, 1 reply; 13+ messages in thread From: Alexei Starovoitov @ 2018-03-14 3:39 UTC (permalink / raw) To: davem; +Cc: daniel, netdev, kernel-team For our container management we've been using complicated and fragile setup consisting of LD_PRELOAD wrapper intercepting bind and connect calls from all containerized applications. The setup involves per-container IPs, policy, etc, so traditional network-only solutions that involve VRFs, netns, acls are not applicable. Changing apps is not possible and LD_PRELOAD doesn't work for apps that don't use glibc like java and golang. BPF+cgroup looks to be the best solution for this problem. Hence we introduce 3 hooks: - at entry into sys_bind and sys_connect to let bpf prog look and modify 'struct sockaddr' provided by user space and fail bind/connect when appropriate - post sys_bind after port is allocated The approach works great and has zero overhead for anyone who doesn't use it and very low overhead when deployed. The main question for Daniel and Dave is what approach to take with prog types... In this patch set we introduce 6 new program types to make user experience easier: BPF_PROG_TYPE_CGROUP_INET4_BIND, BPF_PROG_TYPE_CGROUP_INET6_BIND, BPF_PROG_TYPE_CGROUP_INET4_CONNECT, BPF_PROG_TYPE_CGROUP_INET6_CONNECT, BPF_PROG_TYPE_CGROUP_INET4_POST_BIND, BPF_PROG_TYPE_CGROUP_INET6_POST_BIND, since v4 programs should not be using 'struct bpf_sock_addr'->user_ip6 fields and different prog type for v4 and v6 helps verifier reject such access at load time. Similarly bind vs connect are two different prog types too, since only sys_connect programs can call new bpf_bind() helper. This approach is very different from tcp-bpf where single 'struct bpf_sock_ops' and single prog type is used for different hooks. The field checks are done at run-time instead of load time. I think the approach taken by this patch set is justified, but we may do better if we extend BPF_PROG_ATTACH cmd with log_buf + log_size, then we should be able to combine bind+connect+v4+v6 into single program type. The idea that at load time the verifier will remember a bitmask of fields in bpf_sock_addr used by the program and helpers that program used, then at attach time we can check that hook is compatible with features used by the program and report human readable error message back via log_buf. We cannot do this right now with just EINVAL, since combinations of errors like 'using user_ip6 field but attaching to v4 hook' are too high to express as errno. This would be bigger change. If you folks think it's worth it we can go with this approach or if you think 6 new prog types is not too bad, we can leave the patch as-is. Comments? Other comments on patches are welcome. Andrey Ignatov (6): bpf: Hooks for sys_bind selftests/bpf: Selftest for sys_bind hooks net: Introduce __inet_bind() and __inet6_bind bpf: Hooks for sys_connect selftests/bpf: Selftest for sys_connect hooks bpf: Post-hooks for sys_bind include/linux/bpf-cgroup.h | 68 +++- include/linux/bpf_types.h | 6 + include/linux/filter.h | 10 + include/net/inet_common.h | 2 + include/net/ipv6.h | 2 + include/net/sock.h | 3 + include/net/udp.h | 1 + include/uapi/linux/bpf.h | 52 ++- kernel/bpf/cgroup.c | 36 ++ kernel/bpf/syscall.c | 42 ++ kernel/bpf/verifier.c | 6 + net/core/filter.c | 479 ++++++++++++++++++++++- net/ipv4/af_inet.c | 60 ++- net/ipv4/tcp_ipv4.c | 16 + net/ipv4/udp.c | 14 + net/ipv6/af_inet6.c | 47 ++- net/ipv6/tcp_ipv6.c | 16 + net/ipv6/udp.c | 20 + tools/include/uapi/linux/bpf.h | 39 +- tools/testing/selftests/bpf/Makefile | 8 +- tools/testing/selftests/bpf/bpf_helpers.h | 2 + tools/testing/selftests/bpf/connect4_prog.c | 45 +++ tools/testing/selftests/bpf/connect6_prog.c | 61 +++ tools/testing/selftests/bpf/test_sock_addr.c | 541 ++++++++++++++++++++++++++ tools/testing/selftests/bpf/test_sock_addr.sh | 57 +++ 25 files changed, 1580 insertions(+), 53 deletions(-) create mode 100644 tools/testing/selftests/bpf/connect4_prog.c create mode 100644 tools/testing/selftests/bpf/connect6_prog.c create mode 100644 tools/testing/selftests/bpf/test_sock_addr.c create mode 100755 tools/testing/selftests/bpf/test_sock_addr.sh -- 2.9.5 ^ permalink raw reply [flat|nested] 13+ messages in thread
* [PATCH RFC bpf-next 1/6] bpf: Hooks for sys_bind 2018-03-14 3:39 [PATCH RFC bpf-next 0/6] bpf: introduce cgroup-bpf bind, connect, post-bind hooks Alexei Starovoitov @ 2018-03-14 3:39 ` Alexei Starovoitov 2018-03-14 6:21 ` Eric Dumazet 2018-03-14 14:37 ` Daniel Borkmann 0 siblings, 2 replies; 13+ messages in thread From: Alexei Starovoitov @ 2018-03-14 3:39 UTC (permalink / raw) To: davem; +Cc: daniel, netdev, kernel-team From: Andrey Ignatov <rdna@fb.com> == The problem == There is a use-case when all processes inside a cgroup should use one single IP address on a host that has multiple IP configured. Those processes should use the IP for both ingress and egress, for TCP and UDP traffic. So TCP/UDP servers should be bound to that IP to accept incoming connections on it, and TCP/UDP clients should make outgoing connections from that IP. It should not require changing application code since it's often not possible. Currently it's solved by intercepting glibc wrappers around syscalls such as `bind(2)` and `connect(2)`. It's done by a shared library that is preloaded for every process in a cgroup so that whenever TCP/UDP server calls `bind(2)`, the library replaces IP in sockaddr before passing arguments to syscall. When application calls `connect(2)` the library transparently binds the local end of connection to that IP (`bind(2)` with `IP_BIND_ADDRESS_NO_PORT` to avoid performance penalty). Shared library approach is fragile though, e.g.: * some applications clear env vars (incl. `LD_PRELOAD`); * `/etc/ld.so.preload` doesn't help since some applications are linked with option `-z nodefaultlib`; * other applications don't use glibc and there is nothing to intercept. == The solution == The patch provides much more reliable in-kernel solution for the 1st part of the problem: binding TCP/UDP servers on desired IP. It does not depend on application environment and implementation details (whether glibc is used or not). It adds new eBPF program types `BPF_PROG_TYPE_CGROUP_INET4_BIND` and `BPF_PROG_TYPE_CGROUP_INET6_BIND` and corresponding attach types `BPF_CGROUP_INET4_BIND` and `BPF_CGROUP_INET6_BIND` (similar to already existing `BPF_CGROUP_INET_SOCK_CREATE`). The new program types are intended to be used with sockets (`struct sock`) in a cgroup and provided by user `struct sockaddr`. Pointers to both of them are parts of the context passed to programs of newly added types. The new attach types provides hooks in `bind(2)` system call for both IPv4 and IPv6 so that one can write a program to override IP addresses and ports user program tries to bind to and apply such a program for whole cgroup. == Implementation notes == [1] Separate prog/attach types for `AF_INET` and `AF_INET6` are added intentionally to prevent reading/writing to offsets that don't make sense for corresponding socket family. E.g. if user passes `sockaddr_in` it doesn't make sense to read from / write to `user_ip6[]` context fields. [2] The write access to `struct bpf_sock_addr_kern` is implemented using special field as an additional "register". There are just two registers in `sock_addr_convert_ctx_access`: `src` with value to write and `dst` with pointer to context that can't be changed not to break later instructions. But the fields, allowed to write to, are not available directly and to access them address of corresponding pointer has to be loaded first. To get additional register the 1st not used by `src` and `dst` one is taken, its content is saved to `bpf_sock_addr_kern.tmp_reg`, then the register is used to load address of pointer field, and finally the register's content is restored from the temporary field after writing `src` value. Signed-off-by: Andrey Ignatov <rdna@fb.com> Acked-by: Alexei Starovoitov <ast@kernel.org> Signed-off-by: Alexei Starovoitov <ast@kernel.org> --- include/linux/bpf-cgroup.h | 21 ++++ include/linux/bpf_types.h | 2 + include/linux/filter.h | 10 ++ include/uapi/linux/bpf.h | 24 +++++ kernel/bpf/cgroup.c | 36 +++++++ kernel/bpf/syscall.c | 14 +++ kernel/bpf/verifier.c | 2 + net/core/filter.c | 242 +++++++++++++++++++++++++++++++++++++++++++++ net/ipv4/af_inet.c | 7 ++ net/ipv6/af_inet6.c | 7 ++ 10 files changed, 365 insertions(+) diff --git a/include/linux/bpf-cgroup.h b/include/linux/bpf-cgroup.h index 8a4566691c8f..dd0cfbddcfbe 100644 --- a/include/linux/bpf-cgroup.h +++ b/include/linux/bpf-cgroup.h @@ -6,6 +6,7 @@ #include <uapi/linux/bpf.h> struct sock; +struct sockaddr; struct cgroup; struct sk_buff; struct bpf_sock_ops_kern; @@ -63,6 +64,10 @@ int __cgroup_bpf_run_filter_skb(struct sock *sk, int __cgroup_bpf_run_filter_sk(struct sock *sk, enum bpf_attach_type type); +int __cgroup_bpf_run_filter_sock_addr(struct sock *sk, + struct sockaddr *uaddr, + enum bpf_attach_type type); + int __cgroup_bpf_run_filter_sock_ops(struct sock *sk, struct bpf_sock_ops_kern *sock_ops, enum bpf_attach_type type); @@ -103,6 +108,20 @@ int __cgroup_bpf_check_dev_permission(short dev_type, u32 major, u32 minor, __ret; \ }) +#define BPF_CGROUP_RUN_SA_PROG(sk, uaddr, type) \ +({ \ + int __ret = 0; \ + if (cgroup_bpf_enabled) \ + __ret = __cgroup_bpf_run_filter_sock_addr(sk, uaddr, type); \ + __ret; \ +}) + +#define BPF_CGROUP_RUN_PROG_INET4_BIND(sk, uaddr) \ + BPF_CGROUP_RUN_SA_PROG(sk, uaddr, BPF_CGROUP_INET4_BIND) + +#define BPF_CGROUP_RUN_PROG_INET6_BIND(sk, uaddr) \ + BPF_CGROUP_RUN_SA_PROG(sk, uaddr, BPF_CGROUP_INET6_BIND) + #define BPF_CGROUP_RUN_PROG_SOCK_OPS(sock_ops) \ ({ \ int __ret = 0; \ @@ -135,6 +154,8 @@ static inline int cgroup_bpf_inherit(struct cgroup *cgrp) { return 0; } #define BPF_CGROUP_RUN_PROG_INET_INGRESS(sk,skb) ({ 0; }) #define BPF_CGROUP_RUN_PROG_INET_EGRESS(sk,skb) ({ 0; }) #define BPF_CGROUP_RUN_PROG_INET_SOCK(sk) ({ 0; }) +#define BPF_CGROUP_RUN_PROG_INET4_BIND(sk, uaddr) ({ 0; }) +#define BPF_CGROUP_RUN_PROG_INET6_BIND(sk, uaddr) ({ 0; }) #define BPF_CGROUP_RUN_PROG_SOCK_OPS(sock_ops) ({ 0; }) #define BPF_CGROUP_RUN_PROG_DEVICE_CGROUP(type,major,minor,access) ({ 0; }) diff --git a/include/linux/bpf_types.h b/include/linux/bpf_types.h index 19b8349a3809..eefd877f8e68 100644 --- a/include/linux/bpf_types.h +++ b/include/linux/bpf_types.h @@ -8,6 +8,8 @@ BPF_PROG_TYPE(BPF_PROG_TYPE_SCHED_ACT, tc_cls_act) BPF_PROG_TYPE(BPF_PROG_TYPE_XDP, xdp) BPF_PROG_TYPE(BPF_PROG_TYPE_CGROUP_SKB, cg_skb) BPF_PROG_TYPE(BPF_PROG_TYPE_CGROUP_SOCK, cg_sock) +BPF_PROG_TYPE(BPF_PROG_TYPE_CGROUP_INET4_BIND, cg_inet4_bind) +BPF_PROG_TYPE(BPF_PROG_TYPE_CGROUP_INET6_BIND, cg_inet6_bind) BPF_PROG_TYPE(BPF_PROG_TYPE_LWT_IN, lwt_inout) BPF_PROG_TYPE(BPF_PROG_TYPE_LWT_OUT, lwt_inout) BPF_PROG_TYPE(BPF_PROG_TYPE_LWT_XMIT, lwt_xmit) diff --git a/include/linux/filter.h b/include/linux/filter.h index fdb691b520c0..fe469320feab 100644 --- a/include/linux/filter.h +++ b/include/linux/filter.h @@ -1001,6 +1001,16 @@ static inline int bpf_tell_extensions(void) return SKF_AD_MAX; } +struct bpf_sock_addr_kern { + struct sock *sk; + struct sockaddr *uaddr; + /* Temporary "register" to make indirect stores to nested structures + * defined above. We need three registers to make such a store, but + * only two (src and dst) are available at convert_ctx_access time + */ + u64 tmp_reg; +}; + struct bpf_sock_ops_kern { struct sock *sk; u32 op; diff --git a/include/uapi/linux/bpf.h b/include/uapi/linux/bpf.h index 2a66769e5875..78628a3f3cd8 100644 --- a/include/uapi/linux/bpf.h +++ b/include/uapi/linux/bpf.h @@ -133,6 +133,8 @@ enum bpf_prog_type { BPF_PROG_TYPE_SOCK_OPS, BPF_PROG_TYPE_SK_SKB, BPF_PROG_TYPE_CGROUP_DEVICE, + BPF_PROG_TYPE_CGROUP_INET4_BIND, + BPF_PROG_TYPE_CGROUP_INET6_BIND, }; enum bpf_attach_type { @@ -143,6 +145,8 @@ enum bpf_attach_type { BPF_SK_SKB_STREAM_PARSER, BPF_SK_SKB_STREAM_VERDICT, BPF_CGROUP_DEVICE, + BPF_CGROUP_INET4_BIND, + BPF_CGROUP_INET6_BIND, __MAX_BPF_ATTACH_TYPE }; @@ -953,6 +957,26 @@ struct bpf_map_info { __u64 netns_ino; } __attribute__((aligned(8))); +/* User bpf_sock_addr struct to access socket fields and sockaddr struct passed + * by user and intended to be used by socket (e.g. to bind to, depends on + * attach attach type). + */ +struct bpf_sock_addr { + __u32 user_family; /* Allows 4-byte read, but no write. */ + __u32 user_ip4; /* Allows 1,2,4-byte read and 4-byte write. + * Stored in network byte order. + */ + __u32 user_ip6[4]; /* Allows 1,2,4-byte read an 4-byte write. + * Stored in network byte order. + */ + __u32 user_port; /* Allows 4-byte read and write. + * Stored in network byte order + */ + __u32 family; /* Allows 4-byte read, but no write */ + __u32 type; /* Allows 4-byte read, but no write */ + __u32 protocol; /* Allows 4-byte read, but no write */ +}; + /* User bpf_sock_ops struct to access socket values and specify request ops * and their replies. * Some of this fields are in network (bigendian) byte order and may need diff --git a/kernel/bpf/cgroup.c b/kernel/bpf/cgroup.c index c1c0b60d3f2f..78ef086a7c2d 100644 --- a/kernel/bpf/cgroup.c +++ b/kernel/bpf/cgroup.c @@ -495,6 +495,42 @@ int __cgroup_bpf_run_filter_sk(struct sock *sk, EXPORT_SYMBOL(__cgroup_bpf_run_filter_sk); /** + * __cgroup_bpf_run_filter_sock_addr() - Run a program on a sock and + * provided by user sockaddr + * @sk: sock struct that will use sockaddr + * @uaddr: sockaddr struct provided by user + * @type: The type of program to be exectuted + * + * socket is expected to be of type INET or INET6. + * + * This function will return %-EPERM if an attached program is found and + * returned value != 1 during execution. In all other cases, 0 is returned. + */ +int __cgroup_bpf_run_filter_sock_addr(struct sock *sk, + struct sockaddr *uaddr, + enum bpf_attach_type type) +{ + struct bpf_sock_addr_kern ctx = { + .sk = sk, + .uaddr = uaddr, + }; + struct cgroup *cgrp; + int ret; + + /* Check socket family since not all sockets represent network + * endpoint (e.g. AF_UNIX). + */ + if (sk->sk_family != AF_INET && sk->sk_family != AF_INET6) + return 0; + + cgrp = sock_cgroup_ptr(&sk->sk_cgrp_data); + ret = BPF_PROG_RUN_ARRAY(cgrp->bpf.effective[type], &ctx, BPF_PROG_RUN); + + return ret == 1 ? 0 : -EPERM; +} +EXPORT_SYMBOL(__cgroup_bpf_run_filter_sock_addr); + +/** * __cgroup_bpf_run_filter_sock_ops() - Run a program on a sock * @sk: socket to get cgroup from * @sock_ops: bpf_sock_ops_kern struct to pass to program. Contains diff --git a/kernel/bpf/syscall.c b/kernel/bpf/syscall.c index e24aa3241387..7f86542aa42c 100644 --- a/kernel/bpf/syscall.c +++ b/kernel/bpf/syscall.c @@ -1376,6 +1376,12 @@ static int bpf_prog_attach(const union bpf_attr *attr) case BPF_CGROUP_INET_SOCK_CREATE: ptype = BPF_PROG_TYPE_CGROUP_SOCK; break; + case BPF_CGROUP_INET4_BIND: + ptype = BPF_PROG_TYPE_CGROUP_INET4_BIND; + break; + case BPF_CGROUP_INET6_BIND: + ptype = BPF_PROG_TYPE_CGROUP_INET6_BIND; + break; case BPF_CGROUP_SOCK_OPS: ptype = BPF_PROG_TYPE_SOCK_OPS; break; @@ -1431,6 +1437,12 @@ static int bpf_prog_detach(const union bpf_attr *attr) case BPF_CGROUP_INET_SOCK_CREATE: ptype = BPF_PROG_TYPE_CGROUP_SOCK; break; + case BPF_CGROUP_INET4_BIND: + ptype = BPF_PROG_TYPE_CGROUP_INET4_BIND; + break; + case BPF_CGROUP_INET6_BIND: + ptype = BPF_PROG_TYPE_CGROUP_INET6_BIND; + break; case BPF_CGROUP_SOCK_OPS: ptype = BPF_PROG_TYPE_SOCK_OPS; break; @@ -1478,6 +1490,8 @@ static int bpf_prog_query(const union bpf_attr *attr, case BPF_CGROUP_INET_INGRESS: case BPF_CGROUP_INET_EGRESS: case BPF_CGROUP_INET_SOCK_CREATE: + case BPF_CGROUP_INET4_BIND: + case BPF_CGROUP_INET6_BIND: case BPF_CGROUP_SOCK_OPS: case BPF_CGROUP_DEVICE: break; diff --git a/kernel/bpf/verifier.c b/kernel/bpf/verifier.c index eb79a34359c0..01b54afcb762 100644 --- a/kernel/bpf/verifier.c +++ b/kernel/bpf/verifier.c @@ -3872,6 +3872,8 @@ static int check_return_code(struct bpf_verifier_env *env) switch (env->prog->type) { case BPF_PROG_TYPE_CGROUP_SKB: case BPF_PROG_TYPE_CGROUP_SOCK: + case BPF_PROG_TYPE_CGROUP_INET4_BIND: + case BPF_PROG_TYPE_CGROUP_INET6_BIND: case BPF_PROG_TYPE_SOCK_OPS: case BPF_PROG_TYPE_CGROUP_DEVICE: break; diff --git a/net/core/filter.c b/net/core/filter.c index 33edfa8372fd..78907cf3b42f 100644 --- a/net/core/filter.c +++ b/net/core/filter.c @@ -3443,6 +3443,20 @@ sock_filter_func_proto(enum bpf_func_id func_id) } static const struct bpf_func_proto * +inet_bind_func_proto(enum bpf_func_id func_id) +{ + switch (func_id) { + /* inet and inet6 sockets are created in a process + * context so there is always a valid uid/gid + */ + case BPF_FUNC_get_current_uid_gid: + return &bpf_get_current_uid_gid_proto; + default: + return bpf_base_func_proto(func_id); + } +} + +static const struct bpf_func_proto * sk_filter_func_proto(enum bpf_func_id func_id) { switch (func_id) { @@ -3900,6 +3914,70 @@ void bpf_warn_invalid_xdp_action(u32 act) } EXPORT_SYMBOL_GPL(bpf_warn_invalid_xdp_action); +static bool __sock_addr_is_valid_access(unsigned short ctx_family, int off, + int size, enum bpf_access_type type, + struct bpf_insn_access_aux *info) +{ + const int size_default = sizeof(__u32); + unsigned short requested_family = 0; + + if (off < 0 || off >= sizeof(struct bpf_sock_addr)) + return false; + if (off % size != 0) + return false; + + switch (off) { + case bpf_ctx_range(struct bpf_sock_addr, user_ip4): + requested_family = AF_INET; + /* FALLTHROUGH */ + case bpf_ctx_range_till(struct bpf_sock_addr, user_ip6[0], user_ip6[3]): + if (!requested_family) + requested_family = AF_INET6; + /* Disallow access to IPv6 fields from IPv4 contex and vise + * versa. + */ + if (requested_family != ctx_family) + return false; + /* Only narrow read access allowed for now. */ + if (type == BPF_READ) { + bpf_ctx_record_field_size(info, size_default); + if (!bpf_ctx_narrow_access_ok(off, size, size_default)) + return false; + } else { + if (size != size_default) + return false; + } + break; + case bpf_ctx_range(struct bpf_sock_addr, user_port): + if (size != size_default) + return false; + break; + default: + if (type == BPF_READ) { + if (size != size_default) + return false; + } else { + return false; + } + } + + return true; +} + +static bool sock_addr4_is_valid_access(int off, int size, + enum bpf_access_type type, + struct bpf_insn_access_aux *info) +{ + return __sock_addr_is_valid_access(AF_INET, off, size, type, info); +} + +static bool sock_addr6_is_valid_access(int off, int size, + enum bpf_access_type type, + struct bpf_insn_access_aux *info) +{ + return __sock_addr_is_valid_access(AF_INET6, off, size, type, info); +} + static bool sock_ops_is_valid_access(int off, int size, enum bpf_access_type type, struct bpf_insn_access_aux *info) @@ -4415,6 +4493,152 @@ static u32 xdp_convert_ctx_access(enum bpf_access_type type, return insn - insn_buf; } +/* SOCK_ADDR_LOAD_NESTED_FIELD() loads Nested Field S.F.NF where S is type of + * context Structure, F is Field in context structure that contains a pointer + * to Nested Structure of type NS that has the field NF. + * + * SIZE encodes the load size (BPF_B, BPF_H, etc). It's up to caller to make + * sure that SIZE is not greater than actual size of S.F.NF. + * + * If offset OFF is provided, the load happens from that offset relative to + * offset of NF. + */ +#define SOCK_ADDR_LOAD_NESTED_FIELD_SIZE_OFF(S, NS, F, NF, SIZE, OFF) \ + do { \ + *insn++ = BPF_LDX_MEM(BPF_FIELD_SIZEOF(S, F), si->dst_reg, \ + si->src_reg, offsetof(S, F)); \ + *insn++ = BPF_LDX_MEM( \ + SIZE, si->dst_reg, si->dst_reg, \ + bpf_target_off(NS, NF, FIELD_SIZEOF(NS, NF), \ + target_size) \ + + OFF); \ + } while (0) + +#define SOCK_ADDR_LOAD_NESTED_FIELD(S, NS, F, NF) \ + SOCK_ADDR_LOAD_NESTED_FIELD_SIZE_OFF(S, NS, F, NF, \ + BPF_FIELD_SIZEOF(NS, NF), 0) + +/* SOCK_ADDR_STORE_NESTED_FIELD_OFF() has semantic similar to + * SOCK_ADDR_LOAD_NESTED_FIELD_SIZE_OFF() but for store operation. + * + * It doesn't support SIZE argument though since narrow stores are not + * supported for now. + * + * In addition it uses Temporary Field TF (member of struct S) as the 3rd + * "register" since two registers available in convert_ctx_access are not + * enough: we can't override neither SRC, since it contains value to store, nor + * DST since it contains pointer to context that may be used by later + * instructions. But we need a temporary place to save pointer to nested + * structure whose field we want to store to. + */ +#define SOCK_ADDR_STORE_NESTED_FIELD_OFF(S, NS, F, NF, OFF, TF) \ + do { \ + int tmp_reg = BPF_REG_9; \ + if (si->src_reg == tmp_reg || si->dst_reg == tmp_reg) \ + --tmp_reg; \ + if (si->src_reg == tmp_reg || si->dst_reg == tmp_reg) \ + --tmp_reg; \ + *insn++ = BPF_STX_MEM(BPF_DW, si->dst_reg, tmp_reg, \ + offsetof(S, TF)); \ + *insn++ = BPF_LDX_MEM(BPF_FIELD_SIZEOF(S, F), tmp_reg, \ + si->dst_reg, offsetof(S, F)); \ + *insn++ = BPF_STX_MEM( \ + BPF_FIELD_SIZEOF(NS, NF), tmp_reg, si->src_reg, \ + bpf_target_off(NS, NF, FIELD_SIZEOF(NS, NF), \ + target_size) \ + + OFF); \ + *insn++ = BPF_LDX_MEM(BPF_DW, tmp_reg, si->dst_reg, \ + offsetof(S, TF)); \ + } while (0) + +#define SOCK_ADDR_LOAD_OR_STORE_NESTED_FIELD_SIZE_OFF(S, NS, F, NF, SIZE, OFF, \ + TF) \ + do { \ + if (type == BPF_WRITE) { \ + SOCK_ADDR_STORE_NESTED_FIELD_OFF(S, NS, F, NF, OFF, \ + TF); \ + } else { \ + SOCK_ADDR_LOAD_NESTED_FIELD_SIZE_OFF( \ + S, NS, F, NF, SIZE, OFF); \ + } \ + } while (0) + +#define SOCK_ADDR_LOAD_OR_STORE_NESTED_FIELD(S, NS, F, NF, TF) \ + SOCK_ADDR_LOAD_OR_STORE_NESTED_FIELD_SIZE_OFF( \ + S, NS, F, NF, BPF_FIELD_SIZEOF(NS, NF), 0, TF) + +static u32 sock_addr_convert_ctx_access(enum bpf_access_type type, + const struct bpf_insn *si, + struct bpf_insn *insn_buf, + struct bpf_prog *prog, u32 *target_size) +{ + struct bpf_insn *insn = insn_buf; + int off; + + switch (si->off) { + case offsetof(struct bpf_sock_addr, user_family): + SOCK_ADDR_LOAD_NESTED_FIELD(struct bpf_sock_addr_kern, + struct sockaddr, uaddr, sa_family); + break; + + case offsetof(struct bpf_sock_addr, user_ip4): + SOCK_ADDR_LOAD_OR_STORE_NESTED_FIELD_SIZE_OFF( + struct bpf_sock_addr_kern, struct sockaddr_in, uaddr, + sin_addr, BPF_SIZE(si->code), 0, tmp_reg); + break; + + case bpf_ctx_range_till(struct bpf_sock_addr, user_ip6[0], user_ip6[3]): + off = si->off; + off -= offsetof(struct bpf_sock_addr, user_ip6[0]); + SOCK_ADDR_LOAD_OR_STORE_NESTED_FIELD_SIZE_OFF( + struct bpf_sock_addr_kern, struct sockaddr_in6, uaddr, + sin6_addr.s6_addr32[0], BPF_SIZE(si->code), off, + tmp_reg); + break; + + case offsetof(struct bpf_sock_addr, user_port): + /* To get port we need to know sa_family first and then treat + * sockaddr as either sockaddr_in or sockaddr_in6. + * Though we can simplify since port field has same offset and + * size in both structures. + * Here we check this invariant and use just one of the + * structures if it's true. + */ + BUILD_BUG_ON(offsetof(struct sockaddr_in, sin_port) != + offsetof(struct sockaddr_in6, sin6_port)); + BUILD_BUG_ON(FIELD_SIZEOF(struct sockaddr_in, sin_port) != + FIELD_SIZEOF(struct sockaddr_in6, sin6_port)); + SOCK_ADDR_LOAD_OR_STORE_NESTED_FIELD(struct bpf_sock_addr_kern, + struct sockaddr_in6, uaddr, + sin6_port, tmp_reg); + break; + + case offsetof(struct bpf_sock_addr, family): + SOCK_ADDR_LOAD_NESTED_FIELD(struct bpf_sock_addr_kern, + struct sock, sk, sk_family); + break; + + case offsetof(struct bpf_sock_addr, type): + SOCK_ADDR_LOAD_NESTED_FIELD_SIZE_OFF( + struct bpf_sock_addr_kern, struct sock, sk, + __sk_flags_offset, BPF_W, 0); + *insn++ = BPF_ALU32_IMM(BPF_AND, si->dst_reg, SK_FL_TYPE_MASK); + *insn++ = BPF_ALU32_IMM(BPF_RSH, si->dst_reg, SK_FL_TYPE_SHIFT); + break; + + case offsetof(struct bpf_sock_addr, protocol): + SOCK_ADDR_LOAD_NESTED_FIELD_SIZE_OFF( + struct bpf_sock_addr_kern, struct sock, sk, + __sk_flags_offset, BPF_W, 0); + *insn++ = BPF_ALU32_IMM(BPF_AND, si->dst_reg, SK_FL_PROTO_MASK); + *insn++ = BPF_ALU32_IMM(BPF_RSH, si->dst_reg, + SK_FL_PROTO_SHIFT); + break; + } + + return insn - insn_buf; +} + static u32 sock_ops_convert_ctx_access(enum bpf_access_type type, const struct bpf_insn *si, struct bpf_insn *insn_buf, @@ -4849,6 +5073,24 @@ const struct bpf_verifier_ops cg_sock_verifier_ops = { const struct bpf_prog_ops cg_sock_prog_ops = { }; +const struct bpf_verifier_ops cg_inet4_bind_verifier_ops = { + .get_func_proto = inet_bind_func_proto, + .is_valid_access = sock_addr4_is_valid_access, + .convert_ctx_access = sock_addr_convert_ctx_access, +}; + +const struct bpf_prog_ops cg_inet4_bind_prog_ops = { +}; + +const struct bpf_verifier_ops cg_inet6_bind_verifier_ops = { + .get_func_proto = inet_bind_func_proto, + .is_valid_access = sock_addr6_is_valid_access, + .convert_ctx_access = sock_addr_convert_ctx_access, +}; + +const struct bpf_prog_ops cg_inet6_bind_prog_ops = { +}; + const struct bpf_verifier_ops sock_ops_verifier_ops = { .get_func_proto = sock_ops_func_proto, .is_valid_access = sock_ops_is_valid_access, diff --git a/net/ipv4/af_inet.c b/net/ipv4/af_inet.c index e8c7fad8c329..2dec266507dc 100644 --- a/net/ipv4/af_inet.c +++ b/net/ipv4/af_inet.c @@ -450,6 +450,13 @@ int inet_bind(struct socket *sock, struct sockaddr *uaddr, int addr_len) if (addr_len < sizeof(struct sockaddr_in)) goto out; + /* BPF prog is run before any checks are done so that if the prog + * changes context in a wrong way it will be caught. + */ + err = BPF_CGROUP_RUN_PROG_INET4_BIND(sk, uaddr); + if (err) + goto out; + if (addr->sin_family != AF_INET) { /* Compatibility games : accept AF_UNSPEC (mapped to AF_INET) * only if s_addr is INADDR_ANY. diff --git a/net/ipv6/af_inet6.c b/net/ipv6/af_inet6.c index dbbe04018813..fa24e3f06ac6 100644 --- a/net/ipv6/af_inet6.c +++ b/net/ipv6/af_inet6.c @@ -295,6 +295,13 @@ int inet6_bind(struct socket *sock, struct sockaddr *uaddr, int addr_len) if (addr_len < SIN6_LEN_RFC2133) return -EINVAL; + /* BPF prog is run before any checks are done so that if the prog + * changes context in a wrong way it will be caught. + */ + err = BPF_CGROUP_RUN_PROG_INET6_BIND(sk, uaddr); + if (err) + return err; + if (addr->sin6_family != AF_INET6) return -EAFNOSUPPORT; -- 2.9.5 ^ permalink raw reply related [flat|nested] 13+ messages in thread
* Re: [PATCH RFC bpf-next 1/6] bpf: Hooks for sys_bind 2018-03-14 3:39 ` [PATCH RFC bpf-next 1/6] bpf: Hooks for sys_bind Alexei Starovoitov @ 2018-03-14 6:21 ` Eric Dumazet 2018-03-14 18:00 ` Alexei Starovoitov 2018-03-14 14:37 ` Daniel Borkmann 1 sibling, 1 reply; 13+ messages in thread From: Eric Dumazet @ 2018-03-14 6:21 UTC (permalink / raw) To: Alexei Starovoitov, davem; +Cc: daniel, netdev, kernel-team On 03/13/2018 08:39 PM, Alexei Starovoitov wrote: > From: Andrey Ignatov <rdna@fb.com> > > == The problem == > > There is a use-case when all processes inside a cgroup should use one > single IP address on a host that has multiple IP configured. Those > processes should use the IP for both ingress and egress, for TCP and UDP > traffic. So TCP/UDP servers should be bound to that IP to accept > incoming connections on it, and TCP/UDP clients should make outgoing > connections from that IP. It should not require changing application > code since it's often not possible. > > Currently it's solved by intercepting glibc wrappers around syscalls > such as `bind(2)` and `connect(2)`. It's done by a shared library that > is preloaded for every process in a cgroup so that whenever TCP/UDP > server calls `bind(2)`, the library replaces IP in sockaddr before > passing arguments to syscall. When application calls `connect(2)` the > library transparently binds the local end of connection to that IP > (`bind(2)` with `IP_BIND_ADDRESS_NO_PORT` to avoid performance penalty). > > Shared library approach is fragile though, e.g.: > * some applications clear env vars (incl. `LD_PRELOAD`); > * `/etc/ld.so.preload` doesn't help since some applications are linked > with option `-z nodefaultlib`; > * other applications don't use glibc and there is nothing to intercept. > > == The solution == > > The patch provides much more reliable in-kernel solution for the 1st > part of the problem: binding TCP/UDP servers on desired IP. It does not > depend on application environment and implementation details (whether > glibc is used or not). > If I understand well, strace(1) will not show the real (after modification by eBPF) IP/port ? What about selinux and other LSM ? We have now network namespaces for full isolation. Soon ILA will come. The argument that it is not convenient (or even possible) to change the application or using modern isolation is quite strange, considering the added burden/complexity/bloat to the kernel. The post hook for sys_bind is clearly a failure of the model, since releasing the port might already be too late, another thread might fail to get it during a non zero time window. It seems this is exactly the case where a netns would be the correct answer. If you want to provide an alternate port allocation strategy, better provide a correct eBPF hook. ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH RFC bpf-next 1/6] bpf: Hooks for sys_bind 2018-03-14 6:21 ` Eric Dumazet @ 2018-03-14 18:00 ` Alexei Starovoitov 0 siblings, 0 replies; 13+ messages in thread From: Alexei Starovoitov @ 2018-03-14 18:00 UTC (permalink / raw) To: Eric Dumazet; +Cc: Alexei Starovoitov, davem, daniel, netdev, kernel-team On Tue, Mar 13, 2018 at 11:21:08PM -0700, Eric Dumazet wrote: > > If I understand well, strace(1) will not show the real (after modification > by eBPF) IP/port ? correct. Just like it won't show anything after syscall entry, whether lsm acted, seccomp, etc > What about selinux and other LSM ? clearly lsm is not place to do ip/port enforcement for containers. lsm in general is missing post-bind lsm hook and visibility in cgroups. This patch set is not about policy, but more about connectivity. That's why sockaddr rewrite is must have. > We have now network namespaces for full isolation. Soon ILA will come. we're already using a form of ila. That's orthogonal to this feature. > The argument that it is not convenient (or even possible) to change the > application or using modern isolation is quite strange, considering the just like any other datacenter there are thousands of third party applications that we cannot control. Including open source code written by google. Would golang switch to use glibc? I very much doubt. Statically linked apps also don't work with ld_preload. > added burden/complexity/bloat to the kernel. bloat? that's very odd to hear. bpf is very much anti-bloat technique. If you were serious with that comment, please argue with tracing folks who add thousand upon thousand lines of code to the kernel to do hard coded things while bpf already does all that and more without any extra kernel code. > The post hook for sys_bind is clearly a failure of the model, since > releasing the port might already be too late, another thread might fail to > get it during a non zero time window. I suspect commit log wasn't clear. In post-bind hook we don't release the port, we only fail sys_bind and user space will eventually close the socket and release the port. I don't think it's safe to call inet_put_port() here. It is also racy as you pointed out. > If you want to provide an alternate port allocation strategy, better provide > a correct eBPF hook. right. that's another separate work indepedent from this feature. port allocation/free from bpf via helper is also necessary, but for different use case. > It seems this is exactly the case where a netns would be the correct answer. Unfortuantely that's not the case. That's what I tried to explain in the cover letter: "The setup involves per-container IPs, policy, etc, so traditional network-only solutions that involve VRFs, netns, acls are not applicable." To elaborate more on that: netns is l2 isolation. vrf is l3 isolation. whereas to containerize an application we need to punch connectivity holes in these layered techniques. We also considered resurrecting Hannes's afnetns work and even went as far as designing a new namespace for L4 isolation. Unfortunately all hierarchical namespace abstraction don't work. To run an application inside cgroup container that was not written with containers in mind we have to make an illusion of running in non-containerized environment. In some cases we remember the port and container id in the post-bind hook in a bpf map and when some other task in a different container is trying to connect to a service we need to know where this service is running. It can be remote and can be local. Both client and service may or may not be written with containers in mind and this sockaddr rewrite is providing connectivity and load balancing feature that you simply cannot do with hierarchical networking primitives. btw the per-container policy enforcement of ip+port via these hooks wasn't our planned feature. It was requested by other folks and we had to tweak the api a little bit to satisfy ours and theirs requirement. ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH RFC bpf-next 1/6] bpf: Hooks for sys_bind 2018-03-14 3:39 ` [PATCH RFC bpf-next 1/6] bpf: Hooks for sys_bind Alexei Starovoitov 2018-03-14 6:21 ` Eric Dumazet @ 2018-03-14 14:37 ` Daniel Borkmann 2018-03-14 14:55 ` Daniel Borkmann 2018-03-14 18:11 ` Alexei Starovoitov 1 sibling, 2 replies; 13+ messages in thread From: Daniel Borkmann @ 2018-03-14 14:37 UTC (permalink / raw) To: Alexei Starovoitov, davem; +Cc: netdev, kernel-team On 03/14/2018 04:39 AM, Alexei Starovoitov wrote: [...] > +#define BPF_CGROUP_RUN_PROG_INET4_BIND(sk, uaddr) \ > + BPF_CGROUP_RUN_SA_PROG(sk, uaddr, BPF_CGROUP_INET4_BIND) > + > +#define BPF_CGROUP_RUN_PROG_INET6_BIND(sk, uaddr) \ > + BPF_CGROUP_RUN_SA_PROG(sk, uaddr, BPF_CGROUP_INET6_BIND) > + > #define BPF_CGROUP_RUN_PROG_SOCK_OPS(sock_ops) \ > ({ \ > int __ret = 0; \ > @@ -135,6 +154,8 @@ static inline int cgroup_bpf_inherit(struct cgroup *cgrp) { return 0; } > #define BPF_CGROUP_RUN_PROG_INET_INGRESS(sk,skb) ({ 0; }) > #define BPF_CGROUP_RUN_PROG_INET_EGRESS(sk,skb) ({ 0; }) > #define BPF_CGROUP_RUN_PROG_INET_SOCK(sk) ({ 0; }) > +#define BPF_CGROUP_RUN_PROG_INET4_BIND(sk, uaddr) ({ 0; }) > +#define BPF_CGROUP_RUN_PROG_INET6_BIND(sk, uaddr) ({ 0; }) > #define BPF_CGROUP_RUN_PROG_SOCK_OPS(sock_ops) ({ 0; }) > #define BPF_CGROUP_RUN_PROG_DEVICE_CGROUP(type,major,minor,access) ({ 0; }) > > diff --git a/include/linux/bpf_types.h b/include/linux/bpf_types.h > index 19b8349a3809..eefd877f8e68 100644 > --- a/include/linux/bpf_types.h > +++ b/include/linux/bpf_types.h > @@ -8,6 +8,8 @@ BPF_PROG_TYPE(BPF_PROG_TYPE_SCHED_ACT, tc_cls_act) > BPF_PROG_TYPE(BPF_PROG_TYPE_XDP, xdp) > BPF_PROG_TYPE(BPF_PROG_TYPE_CGROUP_SKB, cg_skb) > BPF_PROG_TYPE(BPF_PROG_TYPE_CGROUP_SOCK, cg_sock) > +BPF_PROG_TYPE(BPF_PROG_TYPE_CGROUP_INET4_BIND, cg_inet4_bind) > +BPF_PROG_TYPE(BPF_PROG_TYPE_CGROUP_INET6_BIND, cg_inet6_bind) > BPF_PROG_TYPE(BPF_PROG_TYPE_LWT_IN, lwt_inout) > BPF_PROG_TYPE(BPF_PROG_TYPE_LWT_OUT, lwt_inout) > BPF_PROG_TYPE(BPF_PROG_TYPE_LWT_XMIT, lwt_xmit) > diff --git a/include/linux/filter.h b/include/linux/filter.h > index fdb691b520c0..fe469320feab 100644 > --- a/include/linux/filter.h > +++ b/include/linux/filter.h > @@ -1001,6 +1001,16 @@ static inline int bpf_tell_extensions(void) > return SKF_AD_MAX; > } > > +struct bpf_sock_addr_kern { > + struct sock *sk; > + struct sockaddr *uaddr; > + /* Temporary "register" to make indirect stores to nested structures > + * defined above. We need three registers to make such a store, but > + * only two (src and dst) are available at convert_ctx_access time > + */ > + u64 tmp_reg; > +}; > + > struct bpf_sock_ops_kern { > struct sock *sk; > u32 op; > diff --git a/include/uapi/linux/bpf.h b/include/uapi/linux/bpf.h > index 2a66769e5875..78628a3f3cd8 100644 > --- a/include/uapi/linux/bpf.h > +++ b/include/uapi/linux/bpf.h > @@ -133,6 +133,8 @@ enum bpf_prog_type { > BPF_PROG_TYPE_SOCK_OPS, > BPF_PROG_TYPE_SK_SKB, > BPF_PROG_TYPE_CGROUP_DEVICE, > + BPF_PROG_TYPE_CGROUP_INET4_BIND, > + BPF_PROG_TYPE_CGROUP_INET6_BIND, Could those all be merged into BPF_PROG_TYPE_SOCK_OPS? I'm slowly getting confused by the many sock_*/sk_* prog types we have. The attach hook could still be something like BPF_CGROUP_BIND/BPF_CGROUP_CONNECT. Potentially storing some prog-type specific void *private_data in prog's aux during verification could be a way (similarly as you mention) which can later be retrieved at attach time to reject with -ENOTSUPP or such. > }; > > enum bpf_attach_type { > @@ -143,6 +145,8 @@ enum bpf_attach_type { > BPF_SK_SKB_STREAM_PARSER, > BPF_SK_SKB_STREAM_VERDICT, > BPF_CGROUP_DEVICE, > + BPF_CGROUP_INET4_BIND, > + BPF_CGROUP_INET6_BIND, Binding to v4 mapped v6 address would work as well, right? Can't this be squashed into one attach type as mentioned? > __MAX_BPF_ATTACH_TYPE > }; > > @@ -953,6 +957,26 @@ struct bpf_map_info { > __u64 netns_ino; > } __attribute__((aligned(8))); > > +/* User bpf_sock_addr struct to access socket fields and sockaddr struct passed > + * by user and intended to be used by socket (e.g. to bind to, depends on > + * attach attach type). > + */ > +struct bpf_sock_addr { > + __u32 user_family; /* Allows 4-byte read, but no write. */ > + __u32 user_ip4; /* Allows 1,2,4-byte read and 4-byte write. > + * Stored in network byte order. > + */ > + __u32 user_ip6[4]; /* Allows 1,2,4-byte read an 4-byte write. > + * Stored in network byte order. > + */ > + __u32 user_port; /* Allows 4-byte read and write. > + * Stored in network byte order > + */ > + __u32 family; /* Allows 4-byte read, but no write */ > + __u32 type; /* Allows 4-byte read, but no write */ > + __u32 protocol; /* Allows 4-byte read, but no write */ I recall bind to prefix came up from time to time in BPF context in the sense to let the app itself be more flexible to bind to BPF prog. Do you see also app to be able to add a BPF prog into the array itself? > +}; > + > /* User bpf_sock_ops struct to access socket values and specify request ops > * and their replies. > * Some of this fields are in network (bigendian) byte order and may need > diff --git a/kernel/bpf/cgroup.c b/kernel/bpf/cgroup.c > index c1c0b60d3f2f..78ef086a7c2d 100644 > --- a/kernel/bpf/cgroup.c > +++ b/kernel/bpf/cgroup.c > @@ -495,6 +495,42 @@ int __cgroup_bpf_run_filter_sk(struct sock *sk, > EXPORT_SYMBOL(__cgroup_bpf_run_filter_sk); > > /** > + * __cgroup_bpf_run_filter_sock_addr() - Run a program on a sock and > + * provided by user sockaddr > + * @sk: sock struct that will use sockaddr > + * @uaddr: sockaddr struct provided by user > + * @type: The type of program to be exectuted > + * > + * socket is expected to be of type INET or INET6. > + * > + * This function will return %-EPERM if an attached program is found and > + * returned value != 1 during execution. In all other cases, 0 is returned. > + */ > +int __cgroup_bpf_run_filter_sock_addr(struct sock *sk, > + struct sockaddr *uaddr, > + enum bpf_attach_type type) > +{ > + struct bpf_sock_addr_kern ctx = { > + .sk = sk, > + .uaddr = uaddr, > + }; > + struct cgroup *cgrp; > + int ret; > + > + /* Check socket family since not all sockets represent network > + * endpoint (e.g. AF_UNIX). > + */ > + if (sk->sk_family != AF_INET && sk->sk_family != AF_INET6) > + return 0; > + > + cgrp = sock_cgroup_ptr(&sk->sk_cgrp_data); > + ret = BPF_PROG_RUN_ARRAY(cgrp->bpf.effective[type], &ctx, BPF_PROG_RUN); > + > + return ret == 1 ? 0 : -EPERM; Semantics may be a little bit strange, though this would perhaps be at the risk of the orchestrator(s) (?). Basically when you run through the prog array, then the last attached program in that array has the final /real/ say to which address to bind/connect to; all the others decisions can freely be overridden, so this is dependent on the order the BPF progs how they were attached. I think we don't have this case for context in multi-prog tracing, cgroup/inet (only filtering) and cgroup/dev. Although in cgroup/sock_ops for the tcp/BPF hooks progs can already override the sock_ops.reply (and sk_txhash which may be less relevant) field from the ctx, so whatever one prog is assumed to reply back to the caller, another one could override it. Wouldn't it make more sense to just have a single prog instead to avoid this override/ordering issue? > +} > +EXPORT_SYMBOL(__cgroup_bpf_run_filter_sock_addr); > + > +/** > * __cgroup_bpf_run_filter_sock_ops() - Run a program on a sock > * @sk: socket to get cgroup from > * @sock_ops: bpf_sock_ops_kern struct to pass to program. Contains > diff --git a/kernel/bpf/syscall.c b/kernel/bpf/syscall.c > index e24aa3241387..7f86542aa42c 100644 > --- a/kernel/bpf/syscall.c > +++ b/kernel/bpf/syscall.c > @@ -1376,6 +1376,12 @@ static int bpf_prog_attach(const union bpf_attr *attr) > case BPF_CGROUP_INET_SOCK_CREATE: > ptype = BPF_PROG_TYPE_CGROUP_SOCK; > break; > + case BPF_CGROUP_INET4_BIND: > + ptype = BPF_PROG_TYPE_CGROUP_INET4_BIND; > + break; > + case BPF_CGROUP_INET6_BIND: > + ptype = BPF_PROG_TYPE_CGROUP_INET6_BIND; > + break; > case BPF_CGROUP_SOCK_OPS: > ptype = BPF_PROG_TYPE_SOCK_OPS; > break; > @@ -1431,6 +1437,12 @@ static int bpf_prog_detach(const union bpf_attr *attr) > case BPF_CGROUP_INET_SOCK_CREATE: > ptype = BPF_PROG_TYPE_CGROUP_SOCK; > break; > + case BPF_CGROUP_INET4_BIND: > + ptype = BPF_PROG_TYPE_CGROUP_INET4_BIND; > + break; > + case BPF_CGROUP_INET6_BIND: > + ptype = BPF_PROG_TYPE_CGROUP_INET6_BIND; > + break; > case BPF_CGROUP_SOCK_OPS: > ptype = BPF_PROG_TYPE_SOCK_OPS; > break; > @@ -1478,6 +1490,8 @@ static int bpf_prog_query(const union bpf_attr *attr, > case BPF_CGROUP_INET_INGRESS: > case BPF_CGROUP_INET_EGRESS: > case BPF_CGROUP_INET_SOCK_CREATE: > + case BPF_CGROUP_INET4_BIND: > + case BPF_CGROUP_INET6_BIND: > case BPF_CGROUP_SOCK_OPS: > case BPF_CGROUP_DEVICE: > break; > diff --git a/kernel/bpf/verifier.c b/kernel/bpf/verifier.c > index eb79a34359c0..01b54afcb762 100644 > --- a/kernel/bpf/verifier.c > +++ b/kernel/bpf/verifier.c > @@ -3872,6 +3872,8 @@ static int check_return_code(struct bpf_verifier_env *env) > switch (env->prog->type) { > case BPF_PROG_TYPE_CGROUP_SKB: > case BPF_PROG_TYPE_CGROUP_SOCK: > + case BPF_PROG_TYPE_CGROUP_INET4_BIND: > + case BPF_PROG_TYPE_CGROUP_INET6_BIND: > case BPF_PROG_TYPE_SOCK_OPS: > case BPF_PROG_TYPE_CGROUP_DEVICE: > break; ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH RFC bpf-next 1/6] bpf: Hooks for sys_bind 2018-03-14 14:37 ` Daniel Borkmann @ 2018-03-14 14:55 ` Daniel Borkmann 2018-03-14 18:11 ` Alexei Starovoitov 1 sibling, 0 replies; 13+ messages in thread From: Daniel Borkmann @ 2018-03-14 14:55 UTC (permalink / raw) To: Alexei Starovoitov, davem; +Cc: netdev, kernel-team On 03/14/2018 03:37 PM, Daniel Borkmann wrote: > On 03/14/2018 04:39 AM, Alexei Starovoitov wrote: > [...] >> +#define BPF_CGROUP_RUN_PROG_INET4_BIND(sk, uaddr) \ >> + BPF_CGROUP_RUN_SA_PROG(sk, uaddr, BPF_CGROUP_INET4_BIND) >> + >> +#define BPF_CGROUP_RUN_PROG_INET6_BIND(sk, uaddr) \ >> + BPF_CGROUP_RUN_SA_PROG(sk, uaddr, BPF_CGROUP_INET6_BIND) >> + >> #define BPF_CGROUP_RUN_PROG_SOCK_OPS(sock_ops) \ >> ({ \ >> int __ret = 0; \ >> @@ -135,6 +154,8 @@ static inline int cgroup_bpf_inherit(struct cgroup *cgrp) { return 0; } >> #define BPF_CGROUP_RUN_PROG_INET_INGRESS(sk,skb) ({ 0; }) >> #define BPF_CGROUP_RUN_PROG_INET_EGRESS(sk,skb) ({ 0; }) >> #define BPF_CGROUP_RUN_PROG_INET_SOCK(sk) ({ 0; }) >> +#define BPF_CGROUP_RUN_PROG_INET4_BIND(sk, uaddr) ({ 0; }) >> +#define BPF_CGROUP_RUN_PROG_INET6_BIND(sk, uaddr) ({ 0; }) >> #define BPF_CGROUP_RUN_PROG_SOCK_OPS(sock_ops) ({ 0; }) >> #define BPF_CGROUP_RUN_PROG_DEVICE_CGROUP(type,major,minor,access) ({ 0; }) >> >> diff --git a/include/linux/bpf_types.h b/include/linux/bpf_types.h >> index 19b8349a3809..eefd877f8e68 100644 >> --- a/include/linux/bpf_types.h >> +++ b/include/linux/bpf_types.h >> @@ -8,6 +8,8 @@ BPF_PROG_TYPE(BPF_PROG_TYPE_SCHED_ACT, tc_cls_act) >> BPF_PROG_TYPE(BPF_PROG_TYPE_XDP, xdp) >> BPF_PROG_TYPE(BPF_PROG_TYPE_CGROUP_SKB, cg_skb) >> BPF_PROG_TYPE(BPF_PROG_TYPE_CGROUP_SOCK, cg_sock) >> +BPF_PROG_TYPE(BPF_PROG_TYPE_CGROUP_INET4_BIND, cg_inet4_bind) >> +BPF_PROG_TYPE(BPF_PROG_TYPE_CGROUP_INET6_BIND, cg_inet6_bind) >> BPF_PROG_TYPE(BPF_PROG_TYPE_LWT_IN, lwt_inout) >> BPF_PROG_TYPE(BPF_PROG_TYPE_LWT_OUT, lwt_inout) >> BPF_PROG_TYPE(BPF_PROG_TYPE_LWT_XMIT, lwt_xmit) >> diff --git a/include/linux/filter.h b/include/linux/filter.h >> index fdb691b520c0..fe469320feab 100644 >> --- a/include/linux/filter.h >> +++ b/include/linux/filter.h >> @@ -1001,6 +1001,16 @@ static inline int bpf_tell_extensions(void) >> return SKF_AD_MAX; >> } >> >> +struct bpf_sock_addr_kern { >> + struct sock *sk; >> + struct sockaddr *uaddr; >> + /* Temporary "register" to make indirect stores to nested structures >> + * defined above. We need three registers to make such a store, but >> + * only two (src and dst) are available at convert_ctx_access time >> + */ >> + u64 tmp_reg; >> +}; >> + >> struct bpf_sock_ops_kern { >> struct sock *sk; >> u32 op; >> diff --git a/include/uapi/linux/bpf.h b/include/uapi/linux/bpf.h >> index 2a66769e5875..78628a3f3cd8 100644 >> --- a/include/uapi/linux/bpf.h >> +++ b/include/uapi/linux/bpf.h >> @@ -133,6 +133,8 @@ enum bpf_prog_type { >> BPF_PROG_TYPE_SOCK_OPS, >> BPF_PROG_TYPE_SK_SKB, >> BPF_PROG_TYPE_CGROUP_DEVICE, >> + BPF_PROG_TYPE_CGROUP_INET4_BIND, >> + BPF_PROG_TYPE_CGROUP_INET6_BIND, > > Could those all be merged into BPF_PROG_TYPE_SOCK_OPS? I'm slowly getting > confused by the many sock_*/sk_* prog types we have. The attach hook could > still be something like BPF_CGROUP_BIND/BPF_CGROUP_CONNECT. Potentially > storing some prog-type specific void *private_data in prog's aux during > verification could be a way (similarly as you mention) which can later be > retrieved at attach time to reject with -ENOTSUPP or such. > >> }; >> >> enum bpf_attach_type { >> @@ -143,6 +145,8 @@ enum bpf_attach_type { >> BPF_SK_SKB_STREAM_PARSER, >> BPF_SK_SKB_STREAM_VERDICT, >> BPF_CGROUP_DEVICE, >> + BPF_CGROUP_INET4_BIND, >> + BPF_CGROUP_INET6_BIND, > > Binding to v4 mapped v6 address would work as well, right? Can't this be > squashed into one attach type as mentioned? > >> __MAX_BPF_ATTACH_TYPE >> }; >> >> @@ -953,6 +957,26 @@ struct bpf_map_info { >> __u64 netns_ino; >> } __attribute__((aligned(8))); >> >> +/* User bpf_sock_addr struct to access socket fields and sockaddr struct passed >> + * by user and intended to be used by socket (e.g. to bind to, depends on >> + * attach attach type). >> + */ >> +struct bpf_sock_addr { >> + __u32 user_family; /* Allows 4-byte read, but no write. */ >> + __u32 user_ip4; /* Allows 1,2,4-byte read and 4-byte write. >> + * Stored in network byte order. >> + */ >> + __u32 user_ip6[4]; /* Allows 1,2,4-byte read an 4-byte write. >> + * Stored in network byte order. >> + */ >> + __u32 user_port; /* Allows 4-byte read and write. >> + * Stored in network byte order >> + */ >> + __u32 family; /* Allows 4-byte read, but no write */ >> + __u32 type; /* Allows 4-byte read, but no write */ >> + __u32 protocol; /* Allows 4-byte read, but no write */ > > I recall bind to prefix came up from time to time in BPF context in the sense > to let the app itself be more flexible to bind to BPF prog. Do you see also app > to be able to add a BPF prog into the array itself? > >> +}; >> + >> /* User bpf_sock_ops struct to access socket values and specify request ops >> * and their replies. >> * Some of this fields are in network (bigendian) byte order and may need >> diff --git a/kernel/bpf/cgroup.c b/kernel/bpf/cgroup.c >> index c1c0b60d3f2f..78ef086a7c2d 100644 >> --- a/kernel/bpf/cgroup.c >> +++ b/kernel/bpf/cgroup.c >> @@ -495,6 +495,42 @@ int __cgroup_bpf_run_filter_sk(struct sock *sk, >> EXPORT_SYMBOL(__cgroup_bpf_run_filter_sk); >> >> /** >> + * __cgroup_bpf_run_filter_sock_addr() - Run a program on a sock and >> + * provided by user sockaddr >> + * @sk: sock struct that will use sockaddr >> + * @uaddr: sockaddr struct provided by user >> + * @type: The type of program to be exectuted >> + * >> + * socket is expected to be of type INET or INET6. >> + * >> + * This function will return %-EPERM if an attached program is found and >> + * returned value != 1 during execution. In all other cases, 0 is returned. >> + */ >> +int __cgroup_bpf_run_filter_sock_addr(struct sock *sk, >> + struct sockaddr *uaddr, >> + enum bpf_attach_type type) >> +{ >> + struct bpf_sock_addr_kern ctx = { >> + .sk = sk, >> + .uaddr = uaddr, >> + }; >> + struct cgroup *cgrp; >> + int ret; >> + >> + /* Check socket family since not all sockets represent network >> + * endpoint (e.g. AF_UNIX). >> + */ >> + if (sk->sk_family != AF_INET && sk->sk_family != AF_INET6) >> + return 0; >> + >> + cgrp = sock_cgroup_ptr(&sk->sk_cgrp_data); >> + ret = BPF_PROG_RUN_ARRAY(cgrp->bpf.effective[type], &ctx, BPF_PROG_RUN); >> + >> + return ret == 1 ? 0 : -EPERM; > > Semantics may be a little bit strange, though this would perhaps be at the risk > of the orchestrator(s) (?). Basically when you run through the prog array, then > the last attached program in that array has the final /real/ say to which address > to bind/connect to; all the others decisions can freely be overridden, so this > is dependent on the order the BPF progs how they were attached. I think we don't > have this case for context in multi-prog tracing, cgroup/inet (only filtering) > and cgroup/dev. Although in cgroup/sock_ops for the tcp/BPF hooks progs can already > override the sock_ops.reply (and sk_txhash which may be less relevant) field from > the ctx, so whatever one prog is assumed to reply back to the caller, another one > could override it. Wouldn't it make more sense to just have a single prog instead > to avoid this override/ordering issue? Sigh, scratch that last thought ... lack of coffee, it all depends on where in the cgroup hierarchy you are to be able to override of course. Thanks, Daniel ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH RFC bpf-next 1/6] bpf: Hooks for sys_bind 2018-03-14 14:37 ` Daniel Borkmann 2018-03-14 14:55 ` Daniel Borkmann @ 2018-03-14 18:11 ` Alexei Starovoitov 2018-03-14 23:27 ` Daniel Borkmann 1 sibling, 1 reply; 13+ messages in thread From: Alexei Starovoitov @ 2018-03-14 18:11 UTC (permalink / raw) To: Daniel Borkmann; +Cc: Alexei Starovoitov, davem, netdev, kernel-team On Wed, Mar 14, 2018 at 03:37:01PM +0100, Daniel Borkmann wrote: > > --- a/include/uapi/linux/bpf.h > > +++ b/include/uapi/linux/bpf.h > > @@ -133,6 +133,8 @@ enum bpf_prog_type { > > BPF_PROG_TYPE_SOCK_OPS, > > BPF_PROG_TYPE_SK_SKB, > > BPF_PROG_TYPE_CGROUP_DEVICE, > > + BPF_PROG_TYPE_CGROUP_INET4_BIND, > > + BPF_PROG_TYPE_CGROUP_INET6_BIND, > > Could those all be merged into BPF_PROG_TYPE_SOCK_OPS? I'm slowly getting > confused by the many sock_*/sk_* prog types we have. The attach hook could > still be something like BPF_CGROUP_BIND/BPF_CGROUP_CONNECT. Potentially > storing some prog-type specific void *private_data in prog's aux during > verification could be a way (similarly as you mention) which can later be > retrieved at attach time to reject with -ENOTSUPP or such. that's exacly what I mentioned in the cover letter, but we need to extend attach cmd with verifier-like log_buf+log_size. since simple enotsupp will be impossible to debug. That's the main question of the RFC. > > }; > > > > enum bpf_attach_type { > > @@ -143,6 +145,8 @@ enum bpf_attach_type { > > BPF_SK_SKB_STREAM_PARSER, > > BPF_SK_SKB_STREAM_VERDICT, > > BPF_CGROUP_DEVICE, > > + BPF_CGROUP_INET4_BIND, > > + BPF_CGROUP_INET6_BIND, > > Binding to v4 mapped v6 address would work as well, right? Can't this be > squashed into one attach type as mentioned? explained the reasons for this in the cover letter and proposed extension to attach cmd. > > +struct bpf_sock_addr { > > + __u32 user_family; /* Allows 4-byte read, but no write. */ > > + __u32 user_ip4; /* Allows 1,2,4-byte read and 4-byte write. > > + * Stored in network byte order. > > + */ > > + __u32 user_ip6[4]; /* Allows 1,2,4-byte read an 4-byte write. > > + * Stored in network byte order. > > + */ > > + __u32 user_port; /* Allows 4-byte read and write. > > + * Stored in network byte order > > + */ > > + __u32 family; /* Allows 4-byte read, but no write */ > > + __u32 type; /* Allows 4-byte read, but no write */ > > + __u32 protocol; /* Allows 4-byte read, but no write */ > > I recall bind to prefix came up from time to time in BPF context in the sense > to let the app itself be more flexible to bind to BPF prog. Do you see also app > to be able to add a BPF prog into the array itself? I'm not following. In this case the container management framework will attach bpf progs to cgroups and apps inside the cgroups will get their bind/connects overwritten when necessary. > > +int __cgroup_bpf_run_filter_sock_addr(struct sock *sk, > > + struct sockaddr *uaddr, > > + enum bpf_attach_type type) > > +{ > > + struct bpf_sock_addr_kern ctx = { > > + .sk = sk, > > + .uaddr = uaddr, > > + }; > > + struct cgroup *cgrp; > > + int ret; > > + > > + /* Check socket family since not all sockets represent network > > + * endpoint (e.g. AF_UNIX). > > + */ > > + if (sk->sk_family != AF_INET && sk->sk_family != AF_INET6) > > + return 0; > > + > > + cgrp = sock_cgroup_ptr(&sk->sk_cgrp_data); > > + ret = BPF_PROG_RUN_ARRAY(cgrp->bpf.effective[type], &ctx, BPF_PROG_RUN); > > + > > + return ret == 1 ? 0 : -EPERM; > > Semantics may be a little bit strange, though this would perhaps be at the risk > of the orchestrator(s) (?). Basically when you run through the prog array, then > the last attached program in that array has the final /real/ say to which address > to bind/connect to; all the others decisions can freely be overridden, so this > is dependent on the order the BPF progs how they were attached. I think we don't > have this case for context in multi-prog tracing, cgroup/inet (only filtering) > and cgroup/dev. Although in cgroup/sock_ops for the tcp/BPF hooks progs can already > override the sock_ops.reply (and sk_txhash which may be less relevant) field from > the ctx, so whatever one prog is assumed to reply back to the caller, another one > could override it. correct. tcp-bpf is in the same boat. When progs override the decision the last prog in the prog_run_array is effective. Remember that * The programs of sub-cgroup are executed first, then programs of * this cgroup and then programs of parent cgroup. so outer cgroup controlled by container management is running last. If it would want to let children do nested overwrittes it could look at the same sockaddr memory region and will see what children's prog or children's tasks did with sockaddr and make approriate decision. > Wouldn't it make more sense to just have a single prog instead > to avoid this override/ordering issue? I don't think there is any ordering issue, but yes, if parent is paranoid it can install no-override program on the cgroup. Which is default anyway. ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH RFC bpf-next 1/6] bpf: Hooks for sys_bind 2018-03-14 18:11 ` Alexei Starovoitov @ 2018-03-14 23:27 ` Daniel Borkmann 2018-03-15 0:29 ` Alexei Starovoitov 0 siblings, 1 reply; 13+ messages in thread From: Daniel Borkmann @ 2018-03-14 23:27 UTC (permalink / raw) To: Alexei Starovoitov; +Cc: Alexei Starovoitov, davem, netdev, kernel-team On 03/14/2018 07:11 PM, Alexei Starovoitov wrote: > On Wed, Mar 14, 2018 at 03:37:01PM +0100, Daniel Borkmann wrote: >>> --- a/include/uapi/linux/bpf.h >>> +++ b/include/uapi/linux/bpf.h >>> @@ -133,6 +133,8 @@ enum bpf_prog_type { >>> BPF_PROG_TYPE_SOCK_OPS, >>> BPF_PROG_TYPE_SK_SKB, >>> BPF_PROG_TYPE_CGROUP_DEVICE, >>> + BPF_PROG_TYPE_CGROUP_INET4_BIND, >>> + BPF_PROG_TYPE_CGROUP_INET6_BIND, >> >> Could those all be merged into BPF_PROG_TYPE_SOCK_OPS? I'm slowly getting >> confused by the many sock_*/sk_* prog types we have. The attach hook could >> still be something like BPF_CGROUP_BIND/BPF_CGROUP_CONNECT. Potentially >> storing some prog-type specific void *private_data in prog's aux during >> verification could be a way (similarly as you mention) which can later be >> retrieved at attach time to reject with -ENOTSUPP or such. > > that's exacly what I mentioned in the cover letter, > but we need to extend attach cmd with verifier-like log_buf+log_size. > since simple enotsupp will be impossible to debug. Hmm, adding verifier-like log_buf + log_size feels a bit of a kludge just for this case, but it's the usual problem where getting a std error code is like looking into a crystal ball to figure where it's coming from. I'd see only couple of other alternatives: distinct error code like ENAVAIL for such mismatch, or telling the verifier upfront where this is going to be attached to - same as we do with the dev for offloading or as you did with splitting the prog types or some sort of notion of sub-prog types; or having a query API that returns possible/compatible attach types for this loaded prog via e.g. bpf_prog_get_info_by_fd() that loader can precheck or check when error occurs. All nothing really nice, though. Making verifier-like log_buf + log_size generic meaning not just for the case of BPF_PROG_ATTACH specifically might be yet another option, meaning you'd have a new BPF_GET_ERROR command to pick up the log for the last failed bpf(2) cmd, but either that might require adding a BPF related pointer to task struct for this or any other future BPF feature (maybe not really an option); or to have some sort of bpf cmd to config and obtain an fd for error queue/log once, where this can then be retrieved from and used for all cmds generically. [...] >>> +struct bpf_sock_addr { >>> + __u32 user_family; /* Allows 4-byte read, but no write. */ >>> + __u32 user_ip4; /* Allows 1,2,4-byte read and 4-byte write. >>> + * Stored in network byte order. >>> + */ >>> + __u32 user_ip6[4]; /* Allows 1,2,4-byte read an 4-byte write. >>> + * Stored in network byte order. >>> + */ >>> + __u32 user_port; /* Allows 4-byte read and write. >>> + * Stored in network byte order >>> + */ >>> + __u32 family; /* Allows 4-byte read, but no write */ >>> + __u32 type; /* Allows 4-byte read, but no write */ >>> + __u32 protocol; /* Allows 4-byte read, but no write */ >> >> I recall bind to prefix came up from time to time in BPF context in the sense >> to let the app itself be more flexible to bind to BPF prog. Do you see also app >> to be able to add a BPF prog into the array itself? > > I'm not following. In this case the container management framework > will attach bpf progs to cgroups and apps inside the cgroups will > get their bind/connects overwritten when necessary. Was mostly just thinking whether it could also cover the use case that was brought up from time to time e.g.: https://www.mail-archive.com/netdev@vger.kernel.org/msg100914.html Seems like it would potentially be on top of that, plus having an option to attach from within the app instead of orchestrator. ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH RFC bpf-next 1/6] bpf: Hooks for sys_bind 2018-03-14 23:27 ` Daniel Borkmann @ 2018-03-15 0:29 ` Alexei Starovoitov 0 siblings, 0 replies; 13+ messages in thread From: Alexei Starovoitov @ 2018-03-15 0:29 UTC (permalink / raw) To: Daniel Borkmann, Alexei Starovoitov Cc: Alexei Starovoitov, davem, netdev, kernel-team On 3/14/18 4:27 PM, Daniel Borkmann wrote: > On 03/14/2018 07:11 PM, Alexei Starovoitov wrote: >> On Wed, Mar 14, 2018 at 03:37:01PM +0100, Daniel Borkmann wrote: >>>> --- a/include/uapi/linux/bpf.h >>>> +++ b/include/uapi/linux/bpf.h >>>> @@ -133,6 +133,8 @@ enum bpf_prog_type { >>>> BPF_PROG_TYPE_SOCK_OPS, >>>> BPF_PROG_TYPE_SK_SKB, >>>> BPF_PROG_TYPE_CGROUP_DEVICE, >>>> + BPF_PROG_TYPE_CGROUP_INET4_BIND, >>>> + BPF_PROG_TYPE_CGROUP_INET6_BIND, >>> >>> Could those all be merged into BPF_PROG_TYPE_SOCK_OPS? I'm slowly getting >>> confused by the many sock_*/sk_* prog types we have. The attach hook could >>> still be something like BPF_CGROUP_BIND/BPF_CGROUP_CONNECT. Potentially >>> storing some prog-type specific void *private_data in prog's aux during >>> verification could be a way (similarly as you mention) which can later be >>> retrieved at attach time to reject with -ENOTSUPP or such. >> >> that's exacly what I mentioned in the cover letter, >> but we need to extend attach cmd with verifier-like log_buf+log_size. >> since simple enotsupp will be impossible to debug. > > Hmm, adding verifier-like log_buf + log_size feels a bit of a kludge just > for this case, but it's the usual problem where getting a std error code > is like looking into a crystal ball to figure where it's coming from. I'd see > only couple of other alternatives: distinct error code like ENAVAIL for such > mismatch, or telling the verifier upfront where this is going to be attached > to - same as we do with the dev for offloading or as you did with splitting > the prog types or some sort of notion of sub-prog types; or having a query > API that returns possible/compatible attach types for this loaded prog via > e.g. bpf_prog_get_info_by_fd() that loader can precheck or check when error > occurs. All nothing really nice, though. query after loading isn't great, since possible attach combinations will be too high for human to understand, but I like "passing attach_type into prog_load" idea. That should work and it fits existing prog_ifindex too. So we'll add '__u32 attach_type' to prog_load cmd. elf loader would still need to parse section name to figure out prog type and attach type. Something like: SEC("sock_addr/bind_v4") my_prog(struct bpf_sock_addr *ctx) SEC("sock_addr/connect_v6") my_prog(struct bpf_sock_addr *ctx) We still need new prog type for bind_v4/bind_v6/connect_v4/connect_v6 hooks with distinct 'struct bpf_sock_addr' context, since the prog is accessing both sockaddr and sock. Adding user_ip4, user_ip6 fields to 'struct bpf_sock_ops' is doable, but it would be too confusing to users, so imo that's not a good option. For post-bind hook we probably can reuse 'struct bpf_sock_ops' and BPF_PROG_TYPE_SOCK_OPS, since there only sock is the context. > Making verifier-like log_buf + log_size generic meaning not just for the case > of BPF_PROG_ATTACH specifically might be yet another option, meaning you'd > have a new BPF_GET_ERROR command to pick up the log for the last failed bpf(2) > cmd, but either that might require adding a BPF related pointer to task struct > for this or any other future BPF feature (maybe not really an option); or to > have some sort of bpf cmd to config and obtain an fd for error queue/log once, > where this can then be retrieved from and used for all cmds generically. I don't think we want to hold on to error logs in the kernel, since user may not query it right away or ever. verifier log is freed right after prog_load cmd is done. > Seems like it would potentially be on top of that, plus having an option to > attach from within the app instead of orchestrator. right. let's worry about it as potential next step. ^ permalink raw reply [flat|nested] 13+ messages in thread
end of thread, other threads:[~2018-03-15 16:22 UTC | newest] Thread overview: 13+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2018-03-14 18:41 [PATCH RFC bpf-next 1/6] bpf: Hooks for sys_bind Alexei Starovoitov 2018-03-15 0:17 ` Eric Dumazet 2018-03-15 3:37 ` Alexei Starovoitov 2018-03-15 14:14 ` Jiri Benc 2018-03-15 16:22 ` Mahesh Bandewar (महेश बंडेवार) -- strict thread matches above, loose matches on Subject: below -- 2018-03-14 3:39 [PATCH RFC bpf-next 0/6] bpf: introduce cgroup-bpf bind, connect, post-bind hooks Alexei Starovoitov 2018-03-14 3:39 ` [PATCH RFC bpf-next 1/6] bpf: Hooks for sys_bind Alexei Starovoitov 2018-03-14 6:21 ` Eric Dumazet 2018-03-14 18:00 ` Alexei Starovoitov 2018-03-14 14:37 ` Daniel Borkmann 2018-03-14 14:55 ` Daniel Borkmann 2018-03-14 18:11 ` Alexei Starovoitov 2018-03-14 23:27 ` Daniel Borkmann 2018-03-15 0:29 ` Alexei Starovoitov
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).