Re: [PATCH RFC bpf-next 0/7] Add bpf_link based TC-BPF API
From: Daniel Borkmann <daniel@iogearbox.net>
Date: 2021-06-18 22:42:38
Also in:
bpf
On 6/18/21 1:40 PM, Jamal Hadi Salim wrote:
On 2021-06-16 12:00 p.m., Daniel Borkmann wrote:quoted
On 6/16/21 5:32 PM, Kumar Kartikeya Dwivedi wrote:quoted
On Wed, Jun 16, 2021 at 08:10:55PM IST, Jamal Hadi Salim wrote:quoted
On 2021-06-15 7:07 p.m., Daniel Borkmann wrote:quoted
On 6/13/21 11:10 PM, Jamal Hadi Salim wrote:[..]quoted
quoted
quoted
In particular, here's a list from Kartikeya's implementation: 1) Direct action mode only(More below.)quoted
quoted
2) Protocol ETH_P_ALL onlyThe issue I see with this one is that it's not very valuable or useful from a BPF point of view. Meaning, this kind of check can and typically is implemented from BPF program anyway. For example, when you have direct packet access initially parsing the eth header anyway (and from there having logic for the various eth protos).In that case make it optional to specify proto and default it to ETH_P_ALL. As far as i can see this flexibility doesnt complicate usability or add code complexity to the interfaces.
From a user interface PoV it's odd since you need to go and parse that anyway, at least the programs typically start out with a switch/case on either reading the skb->protocol or getting it via eth->h_proto. But then once you extend that same program to also cover IPv6, you don't need to do anything with the ETH_P_ALL from the loader application, but now you'd also need to additionally remember to downgrade ETH_P_IP to ETH_P_ALL and rebuild the loader to get v6 traffic. But even if you were to split things in the main/entry program to separate v4/v6 processing into two different ones, I expect this to be faster via tail calls (given direct absolute jump) instead of walking a list of tcf_proto objects, comparing the tp->protocol and going into a different cls_bpf instance. [...]>> Could you elaborate on that or provide code examples? Since introduction of the
quoted
direct action mode I've never used anything else again, and we do have complex BPF code blocks that we need to handle as well. Would be good if you could provide more details on things you ran into, maybe they can be solved?Main issue is code complexity in ebpf and not so much instruction count (which is complicated once you have bounded loops). Earlier, I tried to post on the ebpf list but i got no response. I moved on since. I would like to engage you at some point - and you are right there may be some clever tricks to achieve the goals we had. The challenge is in keeping up with the bag of tricks to make the verifier happy. Being able to run non-da mode and for example attach an action such as the policer (and others) has pragmatic uses. It would be quiet complex to implement the policer within an all-in-one-appliance da-mode ebpf code.
It may be more tricky but not impossible either, in recent years some (imho) very interesting and exciting use cases have been implemented and talked about e.g. [0-2], and with the recent linker work there could also be a [e.g. in-kernel] collection with library code that can be pulled in by others aside from using them as BPF selftests as one option. The gain you have with the flexibility [as you know] is that it allows easy integration/orchestration into user space applications and thus suitable for more dynamic envs as with old-style actions. The issue I have with the latter is that they're not scalable enough from a SW datapath / tc fast-path perspective given you then need to fallback to old-style list processing of cls+act combinations which is also not covered / in scope for the libbpf API in terms of their setup, and additionally not all of the BPF features can be used this way either, so it'll be very hard for users to debug why their BPF programs don't work as they're expected to. But also aside from those blockers, the case with this clean slate tc BPF API is that we have a unique chance to overcome the cmdline usability struggles, and make it as straight forward as possible for new generation of users. [0] https://linuxplumbersconf.org/event/7/contributions/677/ [1] https://linuxplumbersconf.org/event/2/contributions/121/ [2] https://netdevconf.info/0x14/session.html?talk-replacing-HTB-with-EDT-and-BPF Thanks, Daniel