ipv4: Update parameters for csum_tcpudp_magic to their original types
authorAlexander Duyck <aduyck@mirantis.com>
Fri, 11 Mar 2016 22:05:34 +0000 (14:05 -0800)
committerDavid S. Miller <davem@davemloft.net>
Mon, 14 Mar 2016 03:55:13 +0000 (23:55 -0400)
commit01cfbad79a5e2b835abf6a8154a341d75a6fc8cd
tree6065020f79b979c7e0a4f37489d26279c27379f6
parentfbd40ea0180a2d328c5adc61414dc8bab9335ce2
ipv4: Update parameters for csum_tcpudp_magic to their original types

This patch updates all instances of csum_tcpudp_magic and
csum_tcpudp_nofold to reflect the types that are usually used as the source
inputs.  For example the protocol field is populated based on nexthdr which
is actually an unsigned 8 bit value.  The length is usually populated based
on skb->len which is an unsigned integer.

This addresses an issue in which the IPv6 function csum_ipv6_magic was
generating a checksum using the full 32b of skb->len while
csum_tcpudp_magic was only using the lower 16 bits.  As a result we could
run into issues when attempting to adjust the checksum as there was no
protocol agnostic way to update it.

With this change the value is still truncated as many architectures use
"(len + proto) << 8", however this truncation only occurs for values
greater than 16776960 in length and as such is unlikely to occur as we stop
the inner headers at ~64K in size.

I did have to make a few minor changes in the arm, mn10300, nios2, and
score versions of the function in order to support these changes as they
were either using things such as an OR to combine the protocol and length,
or were using ntohs to convert the length which would have truncated the
value.

I also updated a few spots in terms of whitespace and type differences for
the addresses.  Most of this was just to make sure all of the definitions
were in sync going forward.

Signed-off-by: Alexander Duyck <aduyck@mirantis.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
34 files changed:
arch/alpha/include/asm/checksum.h
arch/alpha/lib/checksum.c
arch/arc/include/asm/checksum.h
arch/arm/include/asm/checksum.h
arch/avr32/include/asm/checksum.h
arch/blackfin/include/asm/checksum.h
arch/c6x/include/asm/checksum.h
arch/cris/include/arch-v10/arch/checksum.h
arch/cris/include/arch-v32/arch/checksum.h
arch/cris/include/asm/checksum.h
arch/frv/include/asm/checksum.h
arch/hexagon/include/asm/checksum.h
arch/hexagon/lib/checksum.c
arch/ia64/include/asm/checksum.h
arch/ia64/lib/checksum.c
arch/m32r/include/asm/checksum.h
arch/metag/include/asm/checksum.h
arch/microblaze/include/asm/checksum.h
arch/mips/include/asm/checksum.h
arch/mn10300/include/asm/checksum.h
arch/nios2/include/asm/checksum.h
arch/parisc/include/asm/checksum.h
arch/s390/include/asm/checksum.h
arch/score/include/asm/checksum.h
arch/sh/include/asm/checksum_32.h
arch/sparc/include/asm/checksum_32.h
arch/sparc/include/asm/checksum_64.h
arch/unicore32/include/asm/checksum.h
arch/x86/include/asm/checksum_32.h
arch/x86/include/asm/checksum_64.h
arch/x86/um/asm/checksum.h
arch/xtensa/include/asm/checksum.h
include/asm-generic/checksum.h
lib/checksum.c