From: Stefano Brivio <sbrivio@redhat.com>
To: David Gibson <david@gibson.dropbear.id.au>
Cc: passt-dev@passt.top
Subject: Re: [PATCH 03/14] Add csum_udp6() helper for calculating UDP over IPv6 checksums
Date: Tue, 18 Oct 2022 05:02:31 +0200 [thread overview]
Message-ID: <20221018050231.22a9f79d@elisabeth> (raw)
In-Reply-To: <20221017085807.473470-4-david@gibson.dropbear.id.au>
On Mon, 17 Oct 2022 19:57:56 +1100
David Gibson <david@gibson.dropbear.id.au> wrote:
> Add a helper for calculating UDP checksums when used over IPv6
> For future flexibility, the new helper takes parameters for the fields in
> the IPv6 pseudo-header, so an IPv6 header or pseudo-header doesn't need to
> be explicitly constructed. It also allows the UDP header and payload to
> be in separate buffers, although we don't use this yet.
>
> Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
> ---
> checksum.c | 23 +++++++++++++++++++++++
> checksum.h | 5 +++++
> tap.c | 5 ++---
> 3 files changed, 30 insertions(+), 3 deletions(-)
>
> diff --git a/checksum.c b/checksum.c
> index c8b6b42..0849fb1 100644
> --- a/checksum.c
> +++ b/checksum.c
> @@ -52,6 +52,7 @@
> #include <stddef.h>
> #include <stdint.h>
>
> +#include <linux/udp.h>
> #include <linux/icmp.h>
> #include <linux/icmpv6.h>
>
> @@ -122,6 +123,28 @@ void csum_icmp4(struct icmphdr *icmp4hr, const void *payload, size_t len)
> icmp4hr->checksum = csum_unaligned(payload, len, hrsum);
> }
>
> +/**
> + * csum_udp6() - Calculate checksum for a UDP over IPv6 packet
Calculate and set.
> + * @udp6hr: UDP header, initialized apart from checksum
-ised.
> + * @payload: UDP packet payload
> + * @len: Length of @payload (not including UDP header)
> + */
> +void csum_udp6(struct udphdr *udp6hr,
> + const struct in6_addr *saddr,
> + const struct in6_addr *daddr,
You could use some horizontal space.
> + const void *payload, size_t len)
> +{
> + /* Partial checksum for the pseudo-IPv6 header */
> + uint32_t psum = sum_16b(saddr, sizeof(*saddr)) +
> + sum_16b(daddr, sizeof(*daddr)) +
> + htons(len + sizeof(*udp6hr)) + htons(IPPROTO_UDP);
Alignment:
uint32_t psum = sum_16b(saddr, sizeof(*saddr)) +
sum_16b(daddr, sizeof(*daddr)) +
htons(len + sizeof(*udp6hr)) + htons(IPPROTO_UDP);
> + udp6hr->check = 0;
> + /* Add in partial checksum for the UDP header alone */
> + psum += sum_16b(udp6hr, sizeof(*udp6hr));
> + udp6hr->check = csum_unaligned(payload, len, psum);
> +}
> +
> /**
> * csum_icmp6() - Calculate checksum for an ICMPv6 packet
> * @icmp6hr: ICMPv6 header, initialized apart from checksum
> diff --git a/checksum.h b/checksum.h
> index ff95cf9..1b9f48e 100644
> --- a/checksum.h
> +++ b/checksum.h
> @@ -6,6 +6,7 @@
> #ifndef CHECKSUM_H
> #define CHECKSUM_H
>
> +struct udphdr;
> struct icmphdr;
> struct icmp6hdr;
>
> @@ -13,6 +14,10 @@ uint32_t sum_16b(const void *buf, size_t len);
> uint16_t csum_fold(uint32_t sum);
> uint16_t csum_unaligned(const void *buf, size_t len, uint32_t init);
> void csum_icmp4(struct icmphdr *ih, const void *payload, size_t len);
> +void csum_udp6(struct udphdr *udp6hr,
> + const struct in6_addr *saddr,
> + const struct in6_addr *daddr,
> + const void *payload, size_t len);
Use some horizontal space.
> void csum_icmp6(struct icmp6hdr *ih,
> const struct in6_addr *saddr,
> const struct in6_addr *daddr,
> diff --git a/tap.c b/tap.c
> index f082901..9c197cb 100644
> --- a/tap.c
> +++ b/tap.c
> @@ -183,9 +183,8 @@ void tap_ip_send(const struct ctx *c, const struct in6_addr *src, uint8_t proto,
> } else if (proto == IPPROTO_UDP) {
> struct udphdr *uh = (struct udphdr *)(ip6h + 1);
>
> - uh->check = 0;
> - uh->check = csum_unaligned(ip6h, len + sizeof(*ip6h),
> - 0);
> + csum_udp6(uh, &ip6h->saddr, &ip6h->daddr,
> + uh + 1, len - sizeof(*uh));
> } else if (proto == IPPROTO_ICMPV6) {
> struct icmp6hdr *ih = (struct icmp6hdr *)(ip6h + 1);
>
--
Stefano
next prev parent reply other threads:[~2022-10-18 8:40 UTC|newest]
Thread overview: 36+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-10-17 8:57 [PATCH 00/14] Clean up checksum and header generation for inbound packets David Gibson
2022-10-17 8:57 ` [PATCH 01/14] Add csum_icmp6() helper for calculating ICMPv6 checksums David Gibson
2022-10-18 3:01 ` Stefano Brivio
2022-10-18 12:05 ` David Gibson
2022-10-17 8:57 ` [PATCH 02/14] Add csum_icmp4() helper for calculating ICMPv4 checksums David Gibson
2022-10-18 3:01 ` Stefano Brivio
2022-10-18 12:06 ` David Gibson
2022-10-18 12:28 ` Stefano Brivio
2022-10-17 8:57 ` [PATCH 03/14] Add csum_udp6() helper for calculating UDP over IPv6 checksums David Gibson
2022-10-18 3:02 ` Stefano Brivio [this message]
2022-10-18 12:06 ` David Gibson
2022-10-17 8:57 ` [PATCH 04/14] Add csum_udp4() helper for calculating UDP over IPv4 checksums David Gibson
2022-10-18 3:03 ` Stefano Brivio
2022-10-18 12:06 ` David Gibson
2022-10-17 8:57 ` [PATCH 05/14] Add csum_ip4_header() helper to calculate IPv4 header checksums David Gibson
2022-10-18 3:03 ` Stefano Brivio
2022-10-18 12:07 ` David Gibson
2022-10-17 8:57 ` [PATCH 06/14] Add helpers for normal inbound packet destination addresses David Gibson
2022-10-18 3:04 ` Stefano Brivio
2022-10-18 12:07 ` David Gibson
2022-10-17 8:58 ` [PATCH 07/14] Remove support for TCP packets from tap_ip_send() David Gibson
2022-10-17 8:58 ` [PATCH 08/14] tap: Remove unhelpeful vnet_pre optimization from tap_send() David Gibson
2022-10-18 3:05 ` Stefano Brivio
2022-10-18 12:07 ` David Gibson
2022-10-17 8:58 ` [PATCH 09/14] Split tap_ip_send() into IPv4 and IPv6 specific functions David Gibson
2022-10-18 3:06 ` Stefano Brivio
2022-10-18 12:07 ` David Gibson
2022-10-17 8:58 ` [PATCH 10/14] tap: Split tap_ip6_send() into UDP and ICMP variants David Gibson
2022-10-17 8:58 ` [PATCH 11/14] ndp: Remove unneeded eh_source parameter David Gibson
2022-10-17 8:58 ` [PATCH 12/14] ndp: Use tap_icmp6_send() helper David Gibson
2022-10-17 8:58 ` [PATCH 13/14] tap: Split tap_ip4_send() into UDP and ICMP variants David Gibson
2022-10-18 3:06 ` Stefano Brivio
2022-10-18 12:07 ` David Gibson
2022-10-18 12:27 ` Stefano Brivio
2022-10-18 23:54 ` David Gibson
2022-10-17 8:58 ` [PATCH 14/14] dhcp: Use tap_udp4_send() helper in dhcp() David Gibson
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20221018050231.22a9f79d@elisabeth \
--to=sbrivio@redhat.com \
--cc=david@gibson.dropbear.id.au \
--cc=passt-dev@passt.top \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://passt.top/passt
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for IMAP folder(s).