diff options
author | David Gibson <david@gibson.dropbear.id.au> | 2022-10-19 11:43:45 +1100 |
---|---|---|
committer | Stefano Brivio <sbrivio@redhat.com> | 2022-10-19 03:34:26 +0200 |
commit | 67ab6171729cfcf7867cbb92a2099d88d86f6e6b (patch) | |
tree | f4422311d378d56a79409b16aaa1343afc71c8cb /checksum.c | |
parent | 7abd2b0d727b4dad0f92d8c3130931d023e58514 (diff) | |
download | passt-67ab6171729cfcf7867cbb92a2099d88d86f6e6b.tar passt-67ab6171729cfcf7867cbb92a2099d88d86f6e6b.tar.gz passt-67ab6171729cfcf7867cbb92a2099d88d86f6e6b.tar.bz2 passt-67ab6171729cfcf7867cbb92a2099d88d86f6e6b.tar.lz passt-67ab6171729cfcf7867cbb92a2099d88d86f6e6b.tar.xz passt-67ab6171729cfcf7867cbb92a2099d88d86f6e6b.tar.zst passt-67ab6171729cfcf7867cbb92a2099d88d86f6e6b.zip |
Add csum_icmp4() helper for calculating ICMP checksums
Although tap_ip_send() is currently the only place calculating ICMP
checksums, create a helper function for symmetry with ICMPv6. For
future flexibility it allows the ICMPv6 header and payload to be in
separate buffers.
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
Diffstat (limited to 'checksum.c')
-rw-r--r-- | checksum.c | 16 |
1 files changed, 16 insertions, 0 deletions
@@ -52,6 +52,7 @@ #include <stddef.h> #include <stdint.h> +#include <linux/icmp.h> #include <linux/icmpv6.h> /** @@ -108,6 +109,21 @@ uint16_t csum_unaligned(const void *buf, size_t len, uint32_t init) } /** + * csum_icmp4() - Calculate and set checksum for an ICMP packet + * @icmp4hr: ICMP header, initialised apart from checksum + * @payload: ICMP packet payload + * @len: Length of @payload (not including ICMP header) + */ +void csum_icmp4(struct icmphdr *icmp4hr, const void *payload, size_t len) +{ + /* Partial checksum for ICMP header alone */ + uint32_t psum = sum_16b(icmp4hr, sizeof(*icmp4hr)); + + icmp4hr->checksum = 0; + icmp4hr->checksum = csum_unaligned(payload, len, psum); +} + +/** * csum_icmp6() - Calculate and set checksum for an ICMPv6 packet * @icmp6hr: ICMPv6 header, initialised apart from checksum * @saddr: IPv6 source address |