From: Simon Horman <horms@kernel.org>
To: Nils Fuhler <nils@nilsfuhler.de>
Cc: davem@davemloft.net, dsahern@kernel.org, edumazet@google.com,
kuba@kernel.org, pabeni@redhat.com, netdev@vger.kernel.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH] net: ip6: ndisc: fix incorrect forwarding of proxied ns packets
Date: Wed, 14 Aug 2024 14:36:51 +0100 [thread overview]
Message-ID: <20240814133651.GA322002@kernel.org> (raw)
In-Reply-To: <20240814123105.8474-2-nils@nilsfuhler.de>
On Wed, Aug 14, 2024 at 02:31:06PM +0200, Nils Fuhler wrote:
> When enabling proxy_ndp per interface instead of globally, neighbor
> solicitation packets sent to proxied global unicast addresses are
> forwarded instead of generating a neighbor advertisement. When
> proxy_ndp is enabled globally, these packets generate na responses as
> expected.
>
> This patch fixes this behaviour. When an ns packet is sent to a
> proxied unicast address, it generates an na response regardless
> whether proxy_ndp is enabled per interface or globally.
>
> Signed-off-by: Nils Fuhler <nils@nilsfuhler.de>
> ---
> net/ipv6/ip6_output.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/net/ipv6/ip6_output.c b/net/ipv6/ip6_output.c
> index ab504d31f0cd..13eaacc5a747 100644
> --- a/net/ipv6/ip6_output.c
> +++ b/net/ipv6/ip6_output.c
> @@ -551,8 +551,8 @@ int ip6_forward(struct sk_buff *skb)
> return -ETIMEDOUT;
> }
>
> - /* XXX: idev->cnf.proxy_ndp? */
> - if (READ_ONCE(net->ipv6.devconf_all->proxy_ndp) &&
> + if ((READ_ONCE(net->ipv6.devconf_all->proxy_ndp) ||
> + READ_ONCE(idev->cnf.proxy_ndp)) &&
Hi Nils,
Earlier in this function it is assumed that idev may be NULL,
I think you need to take that into account here too.
Flagged by Smatch.
If you do post an update, please be sure to wait 24h before doing so.
https://docs.kernel.org/process/maintainer-netdev.html
> pneigh_lookup(&nd_tbl, net, &hdr->daddr, skb->dev, 0)) {
> int proxied = ip6_forward_proxy_check(skb);
> if (proxied > 0) {
> --
> 2.39.2
>
>
prev parent reply other threads:[~2024-08-14 13:36 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-08-14 12:31 [PATCH] net: ip6: ndisc: fix incorrect forwarding of proxied ns packets Nils Fuhler
2024-08-14 13:36 ` Simon Horman [this message]
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=20240814133651.GA322002@kernel.org \
--to=horms@kernel.org \
--cc=davem@davemloft.net \
--cc=dsahern@kernel.org \
--cc=edumazet@google.com \
--cc=kuba@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=netdev@vger.kernel.org \
--cc=nils@nilsfuhler.de \
--cc=pabeni@redhat.com \
/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;
as well as URLs for NNTP newsgroup(s).