Hi Daniel, On Fri, Sep 11, 2020 at 6:28 PM Daniel Borkmann <daniel@xxxxxxxxxxxxx> wrote: > > On 9/11/20 9:42 AM, Laura García Liébana wrote: > > On Tue, Sep 8, 2020 at 2:55 PM Daniel Borkmann <daniel@xxxxxxxxxxxxx> wrote: > >> On 9/5/20 7:24 AM, Lukas Wunner wrote: > >>> On Fri, Sep 04, 2020 at 11:14:37PM +0200, Daniel Borkmann wrote: > >>>> On 9/4/20 6:21 PM, Lukas Wunner wrote: > >> [...] > >>>> 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. > >> > >> I would strongly prefer something where nf integrates into existing tc hook, > >> not only due to the hook reuse which would be better, but also to allow for a > >> more flexible interaction between tc/BPF use cases and nf, to name one > > > > That sounds good but I'm afraid that it would take too much back and > > forth discussions. We'll really appreciate it if this small patch can > > be unblocked and then rethink the refactoring of ingress/egress hooks > > that you commented in another thread. > > I'm not sure whether your comment was serious or not, but nope, this needs > to be addressed as mentioned as otherwise this use case would regress. It This patch doesn't break anything. The tc redirect use case that you just commented on is the expected behavior and the same will happen with ingress. To be consistent, in the case that someone requires both hooks, another tc redirect would be needed in the egress path. If you mean to bypass the nf egress if tc redirect in ingress is used, that would lead in a huge security concern. Please elaborate on where do you see a break in this patch. > is one thing for you wanting to remove tc / BPF from your application stack > as you call it, but not at the cost of breaking others. > I'm not intended to remove tc / BPF from my application stack as I'm not using it and, as I explained in past emails, it can't be used for my use cases. In addition, let's review your NACK reasons: This reverts the following commits: 8537f78647c0 ("netfilter: Introduce egress hook") 5418d3881e1f ("netfilter: Generalize ingress hook") b030f194aed2 ("netfilter: Rename ingress hook include file") From the discussion in [0], the author's main motivation to add a hook in fast path is for an out of tree kernel module, which is a red flag to begin with. Other mentioned potential use cases like NAT{64,46} is on future extensions w/o concrete code in the tree yet. Revert as suggested [1] given the weak justification to add more hooks to critical fast-path. [0] https://lore.kernel.org/netdev/cover.1583927267.git.lukas@xxxxxxxxx/ [1] https://lore.kernel.org/netdev/20200318.011152.72770718915606186.davem@xxxxxxxxxxxxx/ It has been explained already that there are more use cases that require this hook in nf, not only for future developments or out of tree modules. Thank you!