]> git.baikalelectronics.ru Git - kernel.git/commit
ipv4: fill fl4_icmp_{type,code} in ping_v4_sendmsg
authorSabrina Dubroca <sd@queasysnail.net>
Fri, 3 Jul 2020 15:00:32 +0000 (17:00 +0200)
committerDavid S. Miller <davem@davemloft.net>
Tue, 7 Jul 2020 22:26:37 +0000 (15:26 -0700)
commitec07734e6d2a950eb607c27657e7eab54d02a86d
tree33395537f8f5fc142824b84893a205bfd378eb0f
parent176b717ecd2be97e39e59ae88c595aacf1f7ac53
ipv4: fill fl4_icmp_{type,code} in ping_v4_sendmsg

IPv4 ping sockets don't set fl4.fl4_icmp_{type,code}, which leads to
incomplete IPsec ACQUIRE messages being sent to userspace. Currently,
both raw sockets and IPv6 ping sockets set those fields.

Expected output of "ip xfrm monitor":
    acquire proto esp
      sel src 10.0.2.15/32 dst 8.8.8.8/32 proto icmp type 8 code 0 dev ens4
      policy src 10.0.2.15/32 dst 8.8.8.8/32
        <snip>

Currently with ping sockets:
    acquire proto esp
      sel src 10.0.2.15/32 dst 8.8.8.8/32 proto icmp type 0 code 0 dev ens4
      policy src 10.0.2.15/32 dst 8.8.8.8/32
        <snip>

The Libreswan test suite found this problem after Fedora changed the
value for the sysctl net.ipv4.ping_group_range.

Fixes: cfce3383c7be ("net: ipv4: add IPPROTO_ICMP socket kind")
Reported-by: Paul Wouters <pwouters@redhat.com>
Tested-by: Paul Wouters <pwouters@redhat.com>
Signed-off-by: Sabrina Dubroca <sd@queasysnail.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/ipv4/ping.c