public inbox for passt-dev@passt.top
 help / color / mirror / code / Atom feed
From: David Gibson <david@gibson.dropbear.id.au>
To: Stefano Brivio <sbrivio@redhat.com>
Cc: passt-dev@passt.top
Subject: Re: [PATCH 05/14] Add csum_ip4_header() helper to calculate IPv4 header checksums
Date: Tue, 18 Oct 2022 23:07:00 +1100	[thread overview]
Message-ID: <Y06W5PNf4slUi6oK@yekko> (raw)
In-Reply-To: <20221018050349.19c0a0a9@elisabeth>

[-- Attachment #1: Type: text/plain, Size: 1620 bytes --]

On Tue, Oct 18, 2022 at 05:03:49AM +0200, Stefano Brivio wrote:
> On Mon, 17 Oct 2022 19:57:58 +1100
> David Gibson <david@gibson.dropbear.id.au> wrote:
> 
> > We calculate IPv4 header checksums in at least two places, in dhcp() and
> > in tap_ip_send.  Add a helper to handle this calculation in both places.
> > 
> > Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
> > ---
> >  checksum.c | 6 ++++++
> >  checksum.h | 1 +
> >  dhcp.c     | 3 +--
> >  tap.c      | 3 +--
> >  4 files changed, 9 insertions(+), 4 deletions(-)
> > 
> > diff --git a/checksum.c b/checksum.c
> > index 72f1cfb..f25a96a 100644
> > --- a/checksum.c
> > +++ b/checksum.c
> > @@ -114,6 +114,12 @@ uint16_t csum_unaligned(const void *buf, size_t len, uint32_t init)
> >  	return (uint16_t)~csum_fold(sum_16b(buf, len) + init);
> >  }
> >  
> 
> /**
>  * csum_ip4_header() - Calculate and set IPv4 header checksum
>  * @iph:	IPv4 header
>  */
> 
> ...I just tried to run Doxygen, I think it would be nice to have
> eventually (especially for DOT call graphs), things don't look too bad.
> 
> > +void csum_ip4_header(struct iphdr *ip4hr)
> > +{
> > +	ip4hr->check = 0;
> > +	ip4hr->check = csum_unaligned(ip4hr, (size_t)ip4hr->ihl * 4, 0);
> 
> iph, for consistency.

As noted before, I'd prefer to avoid the implication that IPv4 is
normal and IPv6 is special.  I have changed to just ip4h, though.

-- 
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 --]

  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
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 [this message]
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=Y06W5PNf4slUi6oK@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).