]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/commit - net/core/dev.c
net: mangle zero checksum in skb_checksum_help()
authorEric Dumazet <edumazet@google.com>
Sat, 29 Oct 2016 18:02:36 +0000 (11:02 -0700)
committerDavid S. Miller <davem@davemloft.net>
Mon, 31 Oct 2016 19:29:11 +0000 (15:29 -0400)
commit4f2e4ad56a65f3b7d64c258e373cb71e8d2499f4
treebda55b33236870d871bc3402abc8b14f4f262f56
parente551c32d57c88923f99f8f010e89ca7ed0735e83
net: mangle zero checksum in skb_checksum_help()

Sending zero checksum is ok for TCP, but not for UDP.

UDPv6 receiver should by default drop a frame with a 0 checksum,
and UDPv4 would not verify the checksum and might accept a corrupted
packet.

Simply replace such checksum by 0xffff, regardless of transport.

This error was caught on SIT tunnels, but seems generic.

Signed-off-by: Eric Dumazet <edumazet@google.com>
Cc: Maciej Żenczykowski <maze@google.com>
Cc: Willem de Bruijn <willemb@google.com>
Acked-by: Maciej Żenczykowski <maze@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/core/dev.c