From: David Gibson <david@gibson.dropbear.id.au>
To: Stefano Brivio <sbrivio@redhat.com>
Cc: passt-dev@passt.top
Subject: Re: [PATCH 01/14] Add csum_icmp6() helper for calculating ICMPv6 checksums
Date: Tue, 18 Oct 2022 23:05:51 +1100 [thread overview]
Message-ID: <Y06Wnyuh2NtnAN8X@yekko> (raw)
In-Reply-To: <20221018050101.2b437d40@elisabeth>
[-- Attachment #1: Type: text/plain, Size: 5171 bytes --]
On Tue, Oct 18, 2022 at 05:01:01AM +0200, Stefano Brivio wrote:
> On Mon, 17 Oct 2022 19:57:54 +1100
> David Gibson <david@gibson.dropbear.id.au> wrote:
>
> > At least two places in passt calculate ICMPv6 checksums, ndp() and
> > tap_ip_send(). Add a helper to handle this calculation in both places.
> > 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 ICMPv6 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 | 27 +++++++++++++++++++++++++++
> > checksum.h | 7 +++++++
> > ndp.c | 5 +----
> > tap.c | 6 ++----
> > 4 files changed, 37 insertions(+), 8 deletions(-)
> >
> > diff --git a/checksum.c b/checksum.c
> > index 56ad01e..0e207c8 100644
> > --- a/checksum.c
> > +++ b/checksum.c
> > @@ -52,6 +52,8 @@
> > #include <stddef.h>
> > #include <stdint.h>
> >
> > +#include <linux/icmpv6.h>
> > +
> > /**
> > * sum_16b() - Calculate sum of 16-bit words
> > * @buf: Input buffer
> > @@ -105,6 +107,31 @@ uint16_t csum_unaligned(const void *buf, size_t len, uint32_t init)
> > return (uint16_t)~csum_fold(sum_16b(buf, len) + init);
> > }
> >
> > +/**
> > + * csum_icmp6() - Calculate checksum for an ICMPv6 packet
>
> "Calculate and set" ...?
Done.
> > + * @icmp6hr: ICMPv6 header, initialized apart from checksum
> > + * @saddr: IPv6 source address
> > + * @daddr: IPv6 destination address
> > + * @payload: ICMP packet payload
> > + * @len: Length of @payload (not including ICMPv6 header)
> > + */
> > +void csum_icmp6(struct icmp6hdr *icmp6hr,
> > + const struct in6_addr *saddr,
> > + const struct in6_addr *daddr,
>
> I think:
> const struct in6_addr *saddr, const struct in6_addr *daddr,
>
> would be easier on eyes.
Done. Not sure why I did it that way in the first place.
> > + 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(*icmp6hr)) + htons(IPPROTO_ICMPV6);
>
> Maybe:
>
> uint32_t psum = sum_16b(saddr, sizeof(*saddr)) +
> sum_16b(daddr, sizeof(*daddr)) +
> htons(len + sizeof(*icmp6hr)) + htons(IPPROTO_ICMPV6);
>
> for me, it turns things from "sum a bunch of things" to "addresses and
> something else".
Fair enough, done.
> > +
> > + icmp6hr->icmp6_cksum = 0;
> > + /* Add in partial checksum for the ICMPv6 header alone */
> > + psum += sum_16b(icmp6hr, sizeof(*icmp6hr));
> > + icmp6hr->icmp6_cksum = csum_unaligned(payload, len, psum);
> > +}
> > +
> > /**
> > * csum_tcp4() - Calculate TCP checksum for IPv4 and set in place
> > * @iph: Packet buffer, IP header
> > diff --git a/checksum.h b/checksum.h
> > index 5418406..2c72200 100644
> > --- a/checksum.h
> > +++ b/checksum.h
> > @@ -6,9 +6,16 @@
> > #ifndef CHECKSUM_H
> > #define CHECKSUM_H
> >
> > +struct icmp6hdr;
> > +
> > 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_icmp6(struct icmp6hdr *ih,
> > + const struct in6_addr *saddr,
> > + const struct in6_addr *daddr,
> > + const void *payload,
> > + size_t len);
>
> It looks a bit like Haskell. ;) I would really use the horizontal space
> we have.
>
> > void csum_tcp4(struct iphdr *iph);
> > uint16_t csum(const void *buf, size_t len, uint32_t init);
> >
> > diff --git a/ndp.c b/ndp.c
> > index dec36a9..03f1d06 100644
> > --- a/ndp.c
> > +++ b/ndp.c
> > @@ -189,10 +189,7 @@ dns_done:
> > ip6hr->saddr = c->ip6.addr_ll;
> >
> > ip6hr->payload_len = htons(sizeof(*ihr) + len);
> > - ip6hr->hop_limit = IPPROTO_ICMPV6;
> > - ihr->icmp6_cksum = 0;
> > - ihr->icmp6_cksum = csum_unaligned(ip6hr, sizeof(*ip6hr) +
> > - sizeof(*ihr) + len, 0);
> > + csum_icmp6(ihr, &ip6hr->saddr, &ip6hr->daddr, ihr + 1, len);
>
> Nice to see this all going away!
>
> > ip6hr->version = 6;
> > ip6hr->nexthdr = IPPROTO_ICMPV6;
> > diff --git a/tap.c b/tap.c
> > index 8b6d9bc..aafc92b 100644
> > --- a/tap.c
> > +++ b/tap.c
> > @@ -191,10 +191,8 @@ void tap_ip_send(const struct ctx *c, const struct in6_addr *src, uint8_t proto,
> > } else if (proto == IPPROTO_ICMPV6) {
> > struct icmp6hdr *ih = (struct icmp6hdr *)(ip6h + 1);
> >
> > - ih->icmp6_cksum = 0;
> > - ih->icmp6_cksum = csum_unaligned(ip6h,
> > - len + sizeof(*ip6h),
> > - 0);
> > + csum_icmp6(ih, &ip6h->saddr, &ip6h->daddr,
> > + ih + 1, len - sizeof(*ih));
> > }
> > ip6h->version = 6;
> > ip6h->nexthdr = proto;
>
--
David Gibson | I'll have my music baroque, and my code
david AT gibson.dropbear.id.au | minimalist, thank you. NOT _the_ _other_
| _way_ _around_!
http://www.ozlabs.org/~dgibson
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
next prev parent reply other threads:[~2022-10-18 12:08 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 [this message]
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
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=Y06Wnyuh2NtnAN8X@yekko \
--to=david@gibson.dropbear.id.au \
--cc=passt-dev@passt.top \
--cc=sbrivio@redhat.com \
/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).