From: "Ziyang Xuan (William)" <william.xuanziyang@huawei.com>
To: David Miller <davem@davemloft.net>, <yoshfuji@linux-ipv6.org>,
David Ahern <dsahern@kernel.org>,
Jakub Kicinski <kuba@kernel.org>, netdev <netdev@vger.kernel.org>,
<ja@ssi.bg>
Cc: Linux Kernel Mailing List <linux-kernel@vger.kernel.org>
Subject: Re: IPv4 saddr do not match with selected output device in double default gateways scene
Date: Thu, 10 Mar 2022 09:51:19 +0800 [thread overview]
Message-ID: <0de63268-a33b-d514-9457-1332c8aec58e@huawei.com> (raw)
In-Reply-To: <58c15089-f1c7-675e-db4b-b6dfdad4b497@huawei.com>
> Create VLAN devices and add default gateways with following commands:
>
> # ip link add link eth2 dev eth2.71 type vlan id 71
> # ip link add link eth2 dev eth2.72 type vlan id 72
> # ip addr add 192.168.71.41/24 dev eth2.71
> # ip addr add 192.168.72.41/24 dev eth2.72
> # ip link set eth2.71 up
> # ip link set eth2.72 up
> # route add -net default gw 192.168.71.1 dev eth2.71
> # route add -net default gw 192.168.72.1 dev eth2.72
>
> Add a nameserver configuration in the following file:
> # cat /etc/resolv.conf
> nameserver 8.8.8.8
>
> Use the following command trigger DNS packet:
> # ping www.baidu.com
>
> Assume the above test machine is client.
>
> Of course, we should also create VLAN devices in peer server as following:
>
> # ip link add link eth2 dev eth2.71 type vlan id 71
> # ip link add link eth2 dev eth2.72 type vlan id 72
> # ip addr add 192.168.71.1/24 dev eth2.71
> # ip addr add 192.168.72.1/24 dev eth2.72
> # ip link set eth2.71 up
> # ip link set eth2.72 up
>
> We capture packets with tcpdump in client machine when ping:
> # tcpdump -i eth2 -vne
> ...
> 20:30:22.996044 52:54:00:20:23:a9 > 52:54:00:d2:4f:e3, ethertype 802.1Q (0x8100), length 77: vlan 71, p 0, ethertype IPv4, (tos 0x0, ttl 64, id 25407, offset 0, flags [DF], proto UDP (17), length 59)
> 192.168.72.41.42666 > 8.8.8.8.domain: 58562+ A? www.baidu.com. (31)
> 20:30:22.996125 52:54:00:20:23:a9 > 52:54:00:d2:4f:e3, ethertype 802.1Q (0x8100), length 77: vlan 71, p 0, ethertype IPv4, (tos 0x0, ttl 64, id 25408, offset 0, flags [DF], proto UDP (17), length 59)
> 192.168.72.41.42666 > 8.8.8.8.domain: 25803+ AAAA? www.baidu.com. (31)
> ...
>
> We can find that IPv4 saddr "192.168.72.41" do not match with selected VLAN device "eth2.71".
Is there anyone familiar with route/fib realization? And thank you for your warm-hearted help!
>
> I tracked the related processes, and found that user space program uses connect() firstly, then sends UDP packet.
>
> The problem happens in the connect() process. Analysis as following with codes:
>
> static inline struct rtable *ip_route_connect(struct flowi4 *fl4,
> __be32 dst, __be32 src, u32 tos,
> int oif, u8 protocol,
> __be16 sport, __be16 dport,
> struct sock *sk)
> {
> struct net *net = sock_net(sk);
> struct rtable *rt;
>
> ip_route_connect_init(fl4, dst, src, tos, oif, protocol,
> sport, dport, sk);
>
> if (!dst || !src) {
>
> /* rtable and fl4 are matched after the first __ip_route_output_key().
> * rtable->dst.dev->name == "eth2.72" && rtable->rt_gw4 == 0x148a8c0
> * fl4->saddr == 0x2948a8c0
> */
> rt = __ip_route_output_key(net, fl4);
> if (IS_ERR(rt))
> return rt;
> ip_rt_put(rt);
> flowi4_update_output(fl4, oif, tos, fl4->daddr, fl4->saddr);
> }
> security_sk_classify_flow(sk, flowi4_to_flowi_common(fl4));
>
> /* rtable and fl4 do not match after the second __ip_route_output_key().
> * rtable->dst.dev->name == "eth2.71" && rtable->rt_gw4 == 0x147a8c0
> * fl4->saddr == 0x2948a8c0
> */
> return ip_route_output_flow(net, fl4, sk);
> }
>
> Deep tracking, it because fa->fa_default has changed in fib_select_default() after first __ip_route_output_key() process,
> and a new fib_nh is selected in fib_select_default() within the second __ip_route_output_key() process but not update flowi4.
> So the phenomenon described at the beginning happens.
>
> Does it a kernel bug or a user problem? If it is a kernel bug, is there any good solution?
>
next prev parent reply other threads:[~2022-03-10 1:51 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-03-08 6:41 Ziyang Xuan (William)
2022-03-10 1:51 ` Ziyang Xuan (William) [this message]
2022-03-10 2:57 ` David Ahern
2022-03-10 3:20 ` Ziyang Xuan (William)
2022-03-10 3:51 ` David Ahern
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=0de63268-a33b-d514-9457-1332c8aec58e@huawei.com \
--to=william.xuanziyang@huawei.com \
--cc=davem@davemloft.net \
--cc=dsahern@kernel.org \
--cc=ja@ssi.bg \
--cc=kuba@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=netdev@vger.kernel.org \
--cc=yoshfuji@linux-ipv6.org \
/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
all inboxes | Powered by JetHome®