On Fri, Sep 04, 2020 at 11:14:37PM +0200, Daniel Borkmann wrote: > On 9/4/20 6:21 PM, Lukas Wunner wrote: > > nft and tc are orthogonal, i.e. filtering/mangling versus queueing. > > However tc has gained the ability to filter packets as well, hence > > there's some overlap in functionality. Naturally tc does not allow > > the full glory of nft filtering/mangling options as Laura has stated, > > hence the need to add nft in the egress path. > > Heh, really!? It sounds to me that you never looked serious enough into what > tc/BPF is actually doing. It wasn't my intention to denigrate or belittle tc's capabilities with the above statement. I don't dispute that the original use case for which these patches were developed might be solved equally well with tc. As I've stated before, I chose netfilter over tc because I needed an in-kernel API, which netfilter provides with nf_register_net_hook(): https://lore.kernel.org/netdev/20191123142305.g2kkaudhhyui22fq@xxxxxxxxx/ The motivation for these patches has pivoted away from my original use case, which is why I no longer mentioned it in the commit message. > The tc queueing layer which is below is not the tc egress hook; the > latter is for filtering/mangling/forwarding or helping the lower tc > queueing layer to classify. People want to apply netfilter rules on egress, so either we need an egress hook in the xmit path or we'd have to teach tc to filter and mangle based on netfilter rules. The former seemed more straight-forward to me but I'm happy to pursue other directions. > Why paying the performance hit going into the nft interpreter for this > hook for *every* other *unrelated* packet in the fast-path... As long as neither tc nor nft is used, *no* packet goes through the nft interpreter and I'm measuring a speedup as a result of moving the two out of the hotpath. If nft is used, only those interfaces for which netfilter rules have been hooked up go through the nft interpreter. > the case is rather if distros start adding DHCP > filtering rules by default there as per your main motivation then > everyone needs to pay this price, which is completely unreasonable > to perform in __dev_queue_xmit(). So first you're saying that the patches are unnecessary and everything they do can be achieved with tc... and then you're saying distros are going to use the nft hook to filter DHCP by default, which will cost performance. That seems contradictory. Why aren't distros using tc today to filter DHCP? Thanks, Lukas