netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH net] net: ping6: Fix ping -6 with interface name
@ 2022-05-10 17:27 Tariq Toukan
  2022-05-10 20:27 ` David Ahern
  0 siblings, 1 reply; 3+ messages in thread
From: Tariq Toukan @ 2022-05-10 17:27 UTC (permalink / raw)
  To: David S. Miller, Jakub Kicinski, David Ahern
  Cc: netdev, Aya Levin, Gal Pressman, Saeed Mahameed, Tariq Toukan

From: Aya Levin <ayal@nvidia.com>

When passing interface parameter to ping -6:
$ ping -6 ::11:141:84:9 -I eth2
Results in:
PING ::11:141:84:10(::11:141:84:10) from ::11:141:84:9 eth2: 56 data bytes
ping: sendmsg: Invalid argument
ping: sendmsg: Invalid argument

Initialize the fl6's outgoing interface (OIF) before triggering
ip6_datagram_send_ctl.

Fixes: 13651224c00b ("net: ping6: support setting basic SOL_IPV6 options via cmsg")
Signed-off-by: Aya Levin <ayal@nvidia.com>
Reviewed-by: Gal Pressman <gal@nvidia.com>
Reviewed-by: Saeed Mahameed <saeedm@nvidia.com>
Signed-off-by: Tariq Toukan <tariqt@nvidia.com>
---
 net/ipv6/ping.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/net/ipv6/ping.c b/net/ipv6/ping.c
index ff033d16549e..83f014559c0d 100644
--- a/net/ipv6/ping.c
+++ b/net/ipv6/ping.c
@@ -106,6 +106,8 @@ static int ping_v6_sendmsg(struct sock *sk, struct msghdr *msg, size_t len)
 
 		opt.tot_len = sizeof(opt);
 		ipc6.opt = &opt;
+		memset(&fl6, 0, sizeof(fl6));
+		fl6.flowi6_oif = oif;
 
 		err = ip6_datagram_send_ctl(sock_net(sk), sk, msg, &fl6, &ipc6);
 		if (err < 0)
-- 
2.21.0


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2022-05-12 13:02 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-10 17:27 [PATCH net] net: ping6: Fix ping -6 with interface name Tariq Toukan
2022-05-10 20:27 ` David Ahern
2022-05-12 13:02   ` Aya Levin

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).