[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <20220713143924.97429-1-kuniyu@amazon.com>
Date: Wed, 13 Jul 2022 07:39:24 -0700
From: Kuniyuki Iwashima <kuniyu@...zon.com>
To: <pabeni@...hat.com>
CC: <davem@...emloft.net>, <edumazet@...gle.com>, <kuba@...nel.org>,
<kuni1840@...il.com>, <kuniyu@...zon.com>,
<netdev@...r.kernel.org>, <subashab@...eaurora.org>
Subject: Re: [PATCH v3 net] tcp/udp: Make early_demux back namespacified.
From: Paolo Abeni <pabeni@...hat.com>
Date: Wed, 13 Jul 2022 09:15:30 +0200
> Hi,
>
> On Tue, 2022-07-12 at 11:51 -0700, Kuniyuki Iwashima wrote:
> > Commit e21145a9871a ("ipv4: namespacify ip_early_demux sysctl knob") made
> > it possible to enable/disable early_demux on a per-netns basis. Then, we
> > introduced two knobs, tcp_early_demux and udp_early_demux, to switch it for
> > TCP/UDP in commit dddb64bcb346 ("net: Add sysctl to toggle early demux for
> > tcp and udp"). However, the .proc_handler() was wrong and actually
> > disabled us from changing the behaviour in each netns.
> >
> > We can execute early_demux if net.ipv4.ip_early_demux is on and each proto
> > .early_demux() handler is not NULL. When we toggle (tcp|udp)_early_demux,
> > the change itself is saved in each netns variable, but the .early_demux()
> > handler is a global variable, so the handler is switched based on the
> > init_net's sysctl variable. Thus, netns (tcp|udp)_early_demux knobs have
> > nothing to do with the logic. Whether we CAN execute proto .early_demux()
> > is always decided by init_net's sysctl knob, and whether we DO it or not is
> > by each netns ip_early_demux knob.
> >
> > This patch namespacifies (tcp|udp)_early_demux again. For now, the users
> > of the .early_demux() handler are TCP and UDP only, and they are called
> > directly to avoid retpoline. So, we can remove the .early_demux() handler
> > from inet6?_protos and need not dereference them in ip6?_rcv_finish_core().
> > If another proto needs .early_demux(), we can restore it at that time.
> >
> > Fixes: dddb64bcb346 ("net: Add sysctl to toggle early demux for tcp and udp")
> > Signed-off-by: Kuniyuki Iwashima <kuniyu@...zon.com>
> > ---
> > v3:
> > - Drop sysctl min/max fixes (Eric Dumazet)
> >
> > v2: https://lore.kernel.org/netdev/20220712173801.39550-1-kuniyu@amazon.com/
> > - Drop cleanups in tcp_v4_early_demux() (Eric Dumazet)
> >
> > v1: https://lore.kernel.org/netdev/20220712163243.36014-1-kuniyu@amazon.com/
> > ---
> > include/net/protocol.h | 4 ---
> > include/net/tcp.h | 2 +-
> > include/net/udp.h | 2 +-
> > net/ipv4/af_inet.c | 14 ++-------
> > net/ipv4/ip_input.c | 37 ++++++++++++++----------
> > net/ipv4/sysctl_net_ipv4.c | 59 ++------------------------------------
> > net/ipv6/ip6_input.c | 23 ++++++++-------
> > net/ipv6/tcp_ipv6.c | 9 ++----
> > net/ipv6/udp.c | 9 ++----
> > 9 files changed, 45 insertions(+), 114 deletions(-)
> >
> > diff --git a/include/net/protocol.h b/include/net/protocol.h
> > index f51c06ae365f..6aef8cb11cc8 100644
> > --- a/include/net/protocol.h
> > +++ b/include/net/protocol.h
> > @@ -35,8 +35,6 @@
> >
> > /* This is used to register protocols. */
> > struct net_protocol {
> > - int (*early_demux)(struct sk_buff *skb);
> > - int (*early_demux_handler)(struct sk_buff *skb);
> > int (*handler)(struct sk_buff *skb);
> >
> > /* This returns an error if we weren't able to handle the error. */
> > @@ -52,8 +50,6 @@ struct net_protocol {
> >
> > #if IS_ENABLED(CONFIG_IPV6)
> > struct inet6_protocol {
> > - void (*early_demux)(struct sk_buff *skb);
> > - void (*early_demux_handler)(struct sk_buff *skb);
> > int (*handler)(struct sk_buff *skb);
> >
> > /* This returns an error if we weren't able to handle the error. */
> > diff --git a/include/net/tcp.h b/include/net/tcp.h
> > index 1e99f5c61f84..1636c55e798b 100644
> > --- a/include/net/tcp.h
> > +++ b/include/net/tcp.h
> > @@ -932,7 +932,7 @@ extern const struct inet_connection_sock_af_ops ipv6_specific;
> >
> > INDIRECT_CALLABLE_DECLARE(void tcp_v6_send_check(struct sock *sk, struct sk_buff *skb));
> > INDIRECT_CALLABLE_DECLARE(int tcp_v6_rcv(struct sk_buff *skb));
> > -INDIRECT_CALLABLE_DECLARE(void tcp_v6_early_demux(struct sk_buff *skb));
> > +void tcp_v6_early_demux(struct sk_buff *skb);
> >
> > #endif
> >
> > diff --git a/include/net/udp.h b/include/net/udp.h
> > index b83a00330566..bb4c227299cc 100644
> > --- a/include/net/udp.h
> > +++ b/include/net/udp.h
> > @@ -167,7 +167,7 @@ static inline void udp_csum_pull_header(struct sk_buff *skb)
> > typedef struct sock *(*udp_lookup_t)(const struct sk_buff *skb, __be16 sport,
> > __be16 dport);
> >
> > -INDIRECT_CALLABLE_DECLARE(void udp_v6_early_demux(struct sk_buff *));
> > +void udp_v6_early_demux(struct sk_buff *skb);
> > INDIRECT_CALLABLE_DECLARE(int udpv6_rcv(struct sk_buff *));
> >
> > struct sk_buff *__udp_gso_segment(struct sk_buff *gso_skb,
> > diff --git a/net/ipv4/af_inet.c b/net/ipv4/af_inet.c
> > index 93da9f783bec..76e7a7ca6772 100644
> > --- a/net/ipv4/af_inet.c
> > +++ b/net/ipv4/af_inet.c
> > @@ -1710,24 +1710,14 @@ static const struct net_protocol igmp_protocol = {
> > };
> > #endif
> >
> > -/* thinking of making this const? Don't.
> > - * early_demux can change based on sysctl.
> > - */
> > -static struct net_protocol tcp_protocol = {
> > - .early_demux = tcp_v4_early_demux,
> > - .early_demux_handler = tcp_v4_early_demux,
> > +static const struct net_protocol tcp_protocol = {
> > .handler = tcp_v4_rcv,
> > .err_handler = tcp_v4_err,
> > .no_policy = 1,
> > .icmp_strict_tag_validation = 1,
> > };
> >
> > -/* thinking of making this const? Don't.
> > - * early_demux can change based on sysctl.
> > - */
> > -static struct net_protocol udp_protocol = {
> > - .early_demux = udp_v4_early_demux,
> > - .early_demux_handler = udp_v4_early_demux,
> > +static const struct net_protocol udp_protocol = {
> > .handler = udp_rcv,
> > .err_handler = udp_err,
> > .no_policy = 1,
> > diff --git a/net/ipv4/ip_input.c b/net/ipv4/ip_input.c
> > index b1165f717cd1..455ec0931ad8 100644
> > --- a/net/ipv4/ip_input.c
> > +++ b/net/ipv4/ip_input.c
> > @@ -312,14 +312,13 @@ static bool ip_can_use_hint(const struct sk_buff *skb, const struct iphdr *iph,
> > ip_hdr(hint)->tos == iph->tos;
> > }
> >
> > -INDIRECT_CALLABLE_DECLARE(int udp_v4_early_demux(struct sk_buff *));
> > -INDIRECT_CALLABLE_DECLARE(int tcp_v4_early_demux(struct sk_buff *));
> > +int tcp_v4_early_demux(struct sk_buff *skb);
> > +int udp_v4_early_demux(struct sk_buff *skb);
> > static int ip_rcv_finish_core(struct net *net, struct sock *sk,
> > struct sk_buff *skb, struct net_device *dev,
> > const struct sk_buff *hint)
> > {
> > const struct iphdr *iph = ip_hdr(skb);
> > - int (*edemux)(struct sk_buff *skb);
> > int err, drop_reason;
> > struct rtable *rt;
> >
> > @@ -332,21 +331,29 @@ static int ip_rcv_finish_core(struct net *net, struct sock *sk,
> > goto drop_error;
> > }
> >
> > - if (net->ipv4.sysctl_ip_early_demux &&
> > + if (READ_ONCE(net->ipv4.sysctl_ip_early_demux) &&
> > !skb_dst(skb) &&
> > !skb->sk &&
> > !ip_is_fragment(iph)) {
> > - const struct net_protocol *ipprot;
> > - int protocol = iph->protocol;
> > -
> > - ipprot = rcu_dereference(inet_protos[protocol]);
> > - if (ipprot && (edemux = READ_ONCE(ipprot->early_demux))) {
> > - err = INDIRECT_CALL_2(edemux, tcp_v4_early_demux,
> > - udp_v4_early_demux, skb);
> > - if (unlikely(err))
> > - goto drop_error;
> > - /* must reload iph, skb->head might have changed */
> > - iph = ip_hdr(skb);
> > + switch (iph->protocol) {
> > + case IPPROTO_TCP:
> > + if (READ_ONCE(net->ipv4.sysctl_tcp_early_demux)) {
> > + tcp_v4_early_demux(skb);
> > +
> > + /* must reload iph, skb->head might have changed */
> > + iph = ip_hdr(skb);
> > + }
> > + break;
> > + case IPPROTO_UDP:
> > + if (READ_ONCE(net->ipv4.sysctl_tcp_early_demux)) {
>
> I'm sorry for the late feedback. The above should be
> 'sysctl_udp_early_demux'.
>
> The same happens in the ipv6 case.
Thanks for catching this!
I'll fix that in the next spin.
>
> Thanks!
>
> Paolo
Powered by blists - more mailing lists