]> git.baikalelectronics.ru Git - kernel.git/commit
bonding: fix ICMPv6 header handling when receiving IPv6 messages
authorHangbin Liu <liuhangbin@gmail.com>
Fri, 18 Nov 2022 03:43:53 +0000 (11:43 +0800)
committerJakub Kicinski <kuba@kernel.org>
Sat, 19 Nov 2022 03:41:51 +0000 (19:41 -0800)
commit606267b4df149c989c169c4e9b03180352f9bdbd
tree47e1dac7b91baca766b52379d1e41cb0cc6df70a
parente4274093e8c7c2fd2fad2af715e7bfb1eb31f463
bonding: fix ICMPv6 header handling when receiving IPv6 messages

Currently, we get icmp6hdr via function icmp6_hdr(), which needs the skb
transport header to be set first. But there is no rule to ask driver set
transport header before netif_receive_skb() and bond_handle_frame(). So
we will not able to get correct icmp6hdr on some drivers.

Fix this by using skb_header_pointer to get the IPv6 and ICMPV6 headers.

Reported-by: Liang Li <liali@redhat.com>
Fixes: 5bd50b2a0a38 ("bonding: add new parameter ns_targets")
Suggested-by: Eric Dumazet <eric.dumazet@gmail.com>
Signed-off-by: Hangbin Liu <liuhangbin@gmail.com>
Reviewed-by: Eric Dumazet <edumazet@google.com>
Acked-by: Jay Vosburgh <jay.vosburgh@canonical.com>
Link: https://lore.kernel.org/r/20221118034353.1285609-1-liuhangbin@gmail.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
drivers/net/bonding/bond_main.c