From: David Gibson <david@gibson.dropbear.id.au>
To: Stefano Brivio <sbrivio@redhat.com>
Cc: passt-dev@passt.top, Paul Holzinger <pholzing@redhat.com>
Subject: Re: [PATCH] checksum: Fix calculation for ICMP checksum on IPv4
Date: Wed, 26 Oct 2022 11:06:16 +1100 [thread overview]
Message-ID: <Y1h5+IHPTKsZpZvZ@yekko> (raw)
In-Reply-To: <20221025160713.1024373-1-sbrivio@redhat.com>
[-- Attachment #1: Type: text/plain, Size: 1438 bytes --]
On Tue, Oct 25, 2022 at 06:07:13PM +0200, Stefano Brivio wrote:
> We need to zero out the checksum field before calculating the
> checksum, of course. I have no idea how this passed the "icmp" test
> set, looking into it.
>
> Reported-by: Paul Holzinger <pholzing@redhat.com>
> Fixes: 67ab6171729c ("Add csum_icmp4() helper for calculating ICMP checksums")
> Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
Oops, that's embarrassing.
Reviewed-by: David Gibson <david@gibson.dropbear.id.au>
> ---
> checksum.c | 7 +++++--
> 1 file changed, 5 insertions(+), 2 deletions(-)
>
> diff --git a/checksum.c b/checksum.c
> index 09d2c7c..c59869c 100644
> --- a/checksum.c
> +++ b/checksum.c
> @@ -160,10 +160,13 @@ void csum_udp4(struct udphdr *udp4hr, in_addr_t saddr, in_addr_t daddr,
> */
> 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));
> + uint32_t psum;
>
> icmp4hr->checksum = 0;
> +
> + /* Partial checksum for ICMP header alone */
> + psum = sum_16b(icmp4hr, sizeof(*icmp4hr));
> +
> icmp4hr->checksum = csum_unaligned(payload, len, psum);
> }
>
--
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-26 0:07 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-10-25 16:07 [PATCH] checksum: Fix calculation for ICMP checksum on IPv4 Stefano Brivio
2022-10-25 17:25 ` Stefano Brivio
2022-10-26 0:06 ` David Gibson [this message]
[not found] ` <CAFsF8v+x-c=Rk6z+-hwwFWt0PvEu10u-rpkQ4F=Z2jbfAJPoww@mail.gmail.com>
2022-10-26 12:57 ` Stefano Brivio
[not found] ` <CAFsF8vLk_Qyva32Z5pH5Jic+NeFKrnaPLm_pw_QDARfjdiXQvQ@mail.gmail.com>
2022-10-26 13:40 ` Stefano Brivio
2022-10-26 14:28 ` Stefano Brivio
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=Y1h5+IHPTKsZpZvZ@yekko \
--to=david@gibson.dropbear.id.au \
--cc=passt-dev@passt.top \
--cc=pholzing@redhat.com \
--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).