Pablo Neira Ayuso <pablo@xxxxxxxxxxxxx> wrote: > > This work aims to change all major hook users to nf_register_net_hook > > so that when a new netns is created it has no hooks at all, even when the > > initial namespace uses conntrack, iptables and bridge netfilter. > > > > To keep behaviour somewhat compatible, xtable hooks are registered once a > > iptables set/getsockopt call is made within a net namespace. > > This also means that e.g. conntrack behaviour is not yet optimal, we > > still create all the data structures and only skip hook registration > > at this time. > > Caveats: > > - conntrack is no longer active just by loading nf_conntrack module -- at > > least one (x)tables rule that requires conntrack has to be added, e.g. > > conntrack match or S/DNAT target. > > So far it was possible to run conntrack without iptables, eg. to > collect statistics at per-flow level via ctnetlink. Could you find a > way to enable the hooks also from that path? Good point, I'll look at this tomorrow. It should not be too hard to add this. > We probably should go back to the idea of having an explicit way of > enabling conntrack from the ruleset, but that will need the /proc > switch to keep there the existing semantics that people expect. I'm assuming you mean something like -t raw -p tcp ... bla ... -j CT --track ? where this target calls the conntrack_in function directly? I planned to add such an expression for nft bridge conntrack. I think that if we go down this route we should also investigate if we also need to change the way how we deal with defragmentation. (e.g. for PF_BRIDGE and INGRESS hook points). Maybe we could/should make it a (nf)table property? I thought about adding a defrag expression for bridge but its error prone, e.g. 'tcp dport 42 defrag' would have to be reordered to defrag before l4 matching. Thanks, Florian -- To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html