public inbox for netdev@vger.kernel.org
 help / color / mirror / Atom feed
From: Justin Iurman <justin.iurman@gmail.com>
To: Andrea Mayer <andrea.mayer@uniroma2.it>, netdev@vger.kernel.org
Cc: davem@davemloft.net, edumazet@google.com, kuba@kernel.org,
	pabeni@redhat.com, horms@kernel.org, dsahern@kernel.org,
	david.lebrun@uclouvain.be, stefano.salsano@uniroma2.it,
	paolo.lungaroni@uniroma2.it, nicolas.dichtel@6wind.com,
	linux-kernel@vger.kernel.org, stable@vger.kernel.org
Subject: Re: [PATCH net v2 1/2] seg6: separate dst_cache for input and output paths in seg6 lwtunnel
Date: Thu, 2 Apr 2026 20:30:02 +0200	[thread overview]
Message-ID: <841c82b6-464c-4308-ba37-73ef07454377@gmail.com> (raw)
In-Reply-To: <20260401185755.29813-2-andrea.mayer@uniroma2.it>

On 4/1/26 20:57, Andrea Mayer wrote:
> The seg6 lwtunnel uses a single dst_cache per encap route, shared
> between seg6_input_core() and seg6_output_core(). These two paths
> can perform the post-encap SID lookup in different routing contexts
> (e.g., ip rules matching on the ingress interface, or VRF table
> separation). Whichever path runs first populates the cache, and the
> other reuses it blindly, bypassing its own lookup.
> 
> Fix this by splitting the cache into cache_input and cache_output,
> so each path maintains its own cached dst independently.
> 
> Fixes: 6c8702c60b88 ("ipv6: sr: add support for SRH encapsulation and injection with lwtunnels")
> Cc: stable@vger.kernel.org
> Signed-off-by: Andrea Mayer <andrea.mayer@uniroma2.it>
> Reviewed-by: Nicolas Dichtel <nicolas.dichtel@6wind.com>
> ---
>   net/ipv6/seg6_iptunnel.c | 34 +++++++++++++++++++++++-----------
>   1 file changed, 23 insertions(+), 11 deletions(-)
> 
> diff --git a/net/ipv6/seg6_iptunnel.c b/net/ipv6/seg6_iptunnel.c
> index 3e1b9991131a..d6a0f7df9080 100644
> --- a/net/ipv6/seg6_iptunnel.c
> +++ b/net/ipv6/seg6_iptunnel.c
> @@ -48,7 +48,8 @@ static size_t seg6_lwt_headroom(struct seg6_iptunnel_encap *tuninfo)
>   }
>   
>   struct seg6_lwt {
> -	struct dst_cache cache;
> +	struct dst_cache cache_input;
> +	struct dst_cache cache_output;
>   	struct seg6_iptunnel_encap tuninfo[];
>   };
>   
> @@ -488,7 +489,7 @@ static int seg6_input_core(struct net *net, struct sock *sk,
>   	slwt = seg6_lwt_lwtunnel(lwtst);
>   
>   	local_bh_disable();
> -	dst = dst_cache_get(&slwt->cache);
> +	dst = dst_cache_get(&slwt->cache_input);
>   	local_bh_enable();
>   
>   	err = seg6_do_srh(skb, dst);
> @@ -504,7 +505,7 @@ static int seg6_input_core(struct net *net, struct sock *sk,
>   		/* cache only if we don't create a dst reference loop */
>   		if (!dst->error && lwtst != dst->lwtstate) {
>   			local_bh_disable();
> -			dst_cache_set_ip6(&slwt->cache, dst,
> +			dst_cache_set_ip6(&slwt->cache_input, dst,
>   					  &ipv6_hdr(skb)->saddr);
>   			local_bh_enable();
>   		}
> @@ -564,7 +565,7 @@ static int seg6_output_core(struct net *net, struct sock *sk,
>   	slwt = seg6_lwt_lwtunnel(orig_dst->lwtstate);
>   
>   	local_bh_disable();
> -	dst = dst_cache_get(&slwt->cache);
> +	dst = dst_cache_get(&slwt->cache_output);
>   	local_bh_enable();
>   
>   	err = seg6_do_srh(skb, dst);
> @@ -591,7 +592,7 @@ static int seg6_output_core(struct net *net, struct sock *sk,
>   		/* cache only if we don't create a dst reference loop */
>   		if (orig_dst->lwtstate != dst->lwtstate) {
>   			local_bh_disable();
> -			dst_cache_set_ip6(&slwt->cache, dst, &fl6.saddr);
> +			dst_cache_set_ip6(&slwt->cache_output, dst, &fl6.saddr);
>   			local_bh_enable();
>   		}
>   
> @@ -701,11 +702,13 @@ static int seg6_build_state(struct net *net, struct nlattr *nla,
>   
>   	slwt = seg6_lwt_lwtunnel(newts);
>   
> -	err = dst_cache_init(&slwt->cache, GFP_ATOMIC);
> -	if (err) {
> -		kfree(newts);
> -		return err;
> -	}
> +	err = dst_cache_init(&slwt->cache_input, GFP_ATOMIC);
> +	if (err)
> +		goto err_free_newts;
> +
> +	err = dst_cache_init(&slwt->cache_output, GFP_ATOMIC);
> +	if (err)
> +		goto err_destroy_input;
>   
>   	memcpy(&slwt->tuninfo, tuninfo, tuninfo_len);
>   
> @@ -720,11 +723,20 @@ static int seg6_build_state(struct net *net, struct nlattr *nla,
>   	*ts = newts;
>   
>   	return 0;
> +
> +err_destroy_input:
> +	dst_cache_destroy(&slwt->cache_input);
> +err_free_newts:
> +	kfree(newts);
> +	return err;
>   }
>   
>   static void seg6_destroy_state(struct lwtunnel_state *lwt)
>   {
> -	dst_cache_destroy(&seg6_lwt_lwtunnel(lwt)->cache);
> +	struct seg6_lwt *slwt = seg6_lwt_lwtunnel(lwt);
> +
> +	dst_cache_destroy(&slwt->cache_input);
> +	dst_cache_destroy(&slwt->cache_output);
>   }
>   
>   static int seg6_fill_encap_info(struct sk_buff *skb,

Reviewed-by: Justin Iurman <justin.iurman@gmail.com>

  reply	other threads:[~2026-04-02 18:30 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-04-01 18:57 [PATCH net v2 0/2] seg6: fix dst_cache sharing in seg6 lwtunnel Andrea Mayer
2026-04-01 18:57 ` [PATCH net v2 1/2] seg6: separate dst_cache for input and output paths " Andrea Mayer
2026-04-02 18:30   ` Justin Iurman [this message]
2026-04-01 18:57 ` [PATCH net v2 2/2] selftests: seg6: add test for dst_cache isolation " Andrea Mayer
2026-04-02 18:35   ` Justin Iurman
2026-04-03 14:46     ` Andrea Mayer

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=841c82b6-464c-4308-ba37-73ef07454377@gmail.com \
    --to=justin.iurman@gmail.com \
    --cc=andrea.mayer@uniroma2.it \
    --cc=davem@davemloft.net \
    --cc=david.lebrun@uclouvain.be \
    --cc=dsahern@kernel.org \
    --cc=edumazet@google.com \
    --cc=horms@kernel.org \
    --cc=kuba@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=netdev@vger.kernel.org \
    --cc=nicolas.dichtel@6wind.com \
    --cc=pabeni@redhat.com \
    --cc=paolo.lungaroni@uniroma2.it \
    --cc=stable@vger.kernel.org \
    --cc=stefano.salsano@uniroma2.it \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox