diff mbox

[PATCHv2] helpers: fix udp checksum computation

Message ID 1432032571-25179-1-git-send-email-maxim.uvarov@linaro.org
State Accepted
Commit ba0a821ccf532dc13a571bd1cf4666eb78c27b84
Headers show

Commit Message

Maxim Uvarov May 19, 2015, 10:49 a.m. UTC
From: Alexandru Badicioiu <alexandru.badicioiu@linaro.org>

Signed-off-by: Alexandru Badicioiu <alexandru.badicioiu@linaro.org>
Signed-off-by: Maxim Uvarov <maxim.uvarov@linaro.org>
---
 v2: fix csum in odp generatior.


 example/generator/odp_generator.c |  2 +-
 helper/include/odp/helper/udp.h   | 37 +++++++++++++------------------------
 2 files changed, 14 insertions(+), 25 deletions(-)

Comments

Maxim Uvarov June 2, 2015, 1:37 p.m. UTC | #1
ping. Does anybody also reviewed that patch?

Thanks,
Maxim.

On 05/19/15 13:49, Maxim Uvarov wrote:
> From: Alexandru Badicioiu <alexandru.badicioiu@linaro.org>
>
> Signed-off-by: Alexandru Badicioiu <alexandru.badicioiu@linaro.org>
> Signed-off-by: Maxim Uvarov <maxim.uvarov@linaro.org>
> ---
>   v2: fix csum in odp generatior.
>
>
>   example/generator/odp_generator.c |  2 +-
>   helper/include/odp/helper/udp.h   | 37 +++++++++++++------------------------
>   2 files changed, 14 insertions(+), 25 deletions(-)
>
> diff --git a/example/generator/odp_generator.c b/example/generator/odp_generator.c
> index 8ae5b29..8c224f3 100644
> --- a/example/generator/odp_generator.c
> +++ b/example/generator/odp_generator.c
> @@ -238,7 +238,7 @@ static odp_packet_t pack_udp_pkt(odp_pool_t pool)
>   	udp->dst_port = 0;
>   	udp->length = odp_cpu_to_be_16(args->appl.payload + ODPH_UDPHDR_LEN);
>   	udp->chksum = 0;
> -	udp->chksum = odp_cpu_to_be_16(odph_ipv4_udp_chksum(pkt));
> +	udp->chksum = odph_ipv4_udp_chksum(pkt);
>   
>   	return pkt;
>   }
> diff --git a/helper/include/odp/helper/udp.h b/helper/include/odp/helper/udp.h
> index 866145a..06c439b 100644
> --- a/helper/include/odp/helper/udp.h
> +++ b/helper/include/odp/helper/udp.h
> @@ -38,15 +38,6 @@ typedef struct ODP_PACKED {
>   	uint16be_t chksum;   /**< UDP header and data checksum (0 if not used)*/
>   } odph_udphdr_t;
>   
> -/** UDP pseudo header */
> -typedef struct ODPH_PACKET {
> -	uint32be_t src_addr; /**< Source addr */
> -	uint32be_t dst_addr; /**< Destination addr */
> -	uint8_t pad;	     /**< pad byte */
> -	uint8_t proto;	     /**< UDP protocol */
> -	uint16be_t length;   /**< data length */
> -} odph_udpphdr_t;
> -
>   /**
>    * UDP checksum
>    *
> @@ -58,10 +49,10 @@ typedef struct ODPH_PACKET {
>   static inline uint16_t odph_ipv4_udp_chksum(odp_packet_t pkt)
>   {
>   	uint32_t sum = 0;
> -	odph_udpphdr_t phdr;
>   	odph_udphdr_t *udph;
>   	odph_ipv4hdr_t *iph;
>   	uint16_t udplen;
> +	uint8_t *buf;
>   
>   	if (!odp_packet_l3_offset(pkt))
>   		return 0;
> @@ -73,24 +64,22 @@ static inline uint16_t odph_ipv4_udp_chksum(odp_packet_t pkt)
>   	udph = (odph_udphdr_t *)odp_packet_l4_ptr(pkt, NULL);
>   	udplen = odp_be_to_cpu_16(udph->length);
>   
> -	/* the source ip */
> -	phdr.src_addr = iph->src_addr;
> -	/* the dest ip */
> -	phdr.dst_addr = iph->dst_addr;
> -	/* proto */
> -	phdr.pad = 0;
> -	phdr.proto = ODPH_IPPROTO_UDP;
> -	/* the length */
> -	phdr.length = udph->length;
> -
> -	/* calc UDP pseudo header chksum */
> -	sum = (__odp_force uint32_t) odp_chksum(&phdr, sizeof(odph_udpphdr_t));
> -	/* calc udp header and data chksum */
> -	sum += (__odp_force uint32_t) odp_chksum(udph, udplen);
> +	/* 32-bit sum of all 16-bit words covered by UDP chksum */
> +	sum = (iph->src_addr & 0xFFFF) + (iph->src_addr >> 16) +
> +	      (iph->dst_addr & 0xFFFF) + (iph->dst_addr >> 16) +
> +	      (uint16_t)iph->proto + udplen;
> +	for (buf = (uint8_t *)udph; udplen > 1; udplen -= 2) {
> +		sum += ((*buf << 8) + *(buf + 1));
> +		buf += 2;
> +	}
>   
>   	/* Fold sum to 16 bits: add carrier to result */
>   	while (sum >> 16)
>   		sum = (sum & 0xFFFF) + (sum >> 16);
> +
> +	/* 1's complement */
> +	sum = ~sum;
> +
>   	/* set computation result */
>   	sum = (sum == 0x0) ? 0xFFFF : sum;
>
Mike Holmes June 2, 2015, 1:49 p.m. UTC | #2
We need a test for it in ~/git/odp/helper/test, it is one of the last few
APIs without its own test.

On 2 June 2015 at 09:37, Maxim Uvarov <maxim.uvarov@linaro.org> wrote:

> ping. Does anybody also reviewed that patch?
>
> Thanks,
> Maxim.
>
>
> On 05/19/15 13:49, Maxim Uvarov wrote:
>
>> From: Alexandru Badicioiu <alexandru.badicioiu@linaro.org>
>>
>> Signed-off-by: Alexandru Badicioiu <alexandru.badicioiu@linaro.org>
>> Signed-off-by: Maxim Uvarov <maxim.uvarov@linaro.org>
>> ---
>>   v2: fix csum in odp generatior.
>>
>>
>>   example/generator/odp_generator.c |  2 +-
>>   helper/include/odp/helper/udp.h   | 37
>> +++++++++++++------------------------
>>   2 files changed, 14 insertions(+), 25 deletions(-)
>>
>> diff --git a/example/generator/odp_generator.c
>> b/example/generator/odp_generator.c
>> index 8ae5b29..8c224f3 100644
>> --- a/example/generator/odp_generator.c
>> +++ b/example/generator/odp_generator.c
>> @@ -238,7 +238,7 @@ static odp_packet_t pack_udp_pkt(odp_pool_t pool)
>>         udp->dst_port = 0;
>>         udp->length = odp_cpu_to_be_16(args->appl.payload +
>> ODPH_UDPHDR_LEN);
>>         udp->chksum = 0;
>> -       udp->chksum = odp_cpu_to_be_16(odph_ipv4_udp_chksum(pkt));
>> +       udp->chksum = odph_ipv4_udp_chksum(pkt);
>>         return pkt;
>>   }
>> diff --git a/helper/include/odp/helper/udp.h
>> b/helper/include/odp/helper/udp.h
>> index 866145a..06c439b 100644
>> --- a/helper/include/odp/helper/udp.h
>> +++ b/helper/include/odp/helper/udp.h
>> @@ -38,15 +38,6 @@ typedef struct ODP_PACKED {
>>         uint16be_t chksum;   /**< UDP header and data checksum (0 if not
>> used)*/
>>   } odph_udphdr_t;
>>   -/** UDP pseudo header */
>> -typedef struct ODPH_PACKET {
>> -       uint32be_t src_addr; /**< Source addr */
>> -       uint32be_t dst_addr; /**< Destination addr */
>> -       uint8_t pad;         /**< pad byte */
>> -       uint8_t proto;       /**< UDP protocol */
>> -       uint16be_t length;   /**< data length */
>> -} odph_udpphdr_t;
>> -
>>   /**
>>    * UDP checksum
>>    *
>> @@ -58,10 +49,10 @@ typedef struct ODPH_PACKET {
>>   static inline uint16_t odph_ipv4_udp_chksum(odp_packet_t pkt)
>>   {
>>         uint32_t sum = 0;
>> -       odph_udpphdr_t phdr;
>>         odph_udphdr_t *udph;
>>         odph_ipv4hdr_t *iph;
>>         uint16_t udplen;
>> +       uint8_t *buf;
>>         if (!odp_packet_l3_offset(pkt))
>>                 return 0;
>> @@ -73,24 +64,22 @@ static inline uint16_t
>> odph_ipv4_udp_chksum(odp_packet_t pkt)
>>         udph = (odph_udphdr_t *)odp_packet_l4_ptr(pkt, NULL);
>>         udplen = odp_be_to_cpu_16(udph->length);
>>   -     /* the source ip */
>> -       phdr.src_addr = iph->src_addr;
>> -       /* the dest ip */
>> -       phdr.dst_addr = iph->dst_addr;
>> -       /* proto */
>> -       phdr.pad = 0;
>> -       phdr.proto = ODPH_IPPROTO_UDP;
>> -       /* the length */
>> -       phdr.length = udph->length;
>> -
>> -       /* calc UDP pseudo header chksum */
>> -       sum = (__odp_force uint32_t) odp_chksum(&phdr,
>> sizeof(odph_udpphdr_t));
>> -       /* calc udp header and data chksum */
>> -       sum += (__odp_force uint32_t) odp_chksum(udph, udplen);
>> +       /* 32-bit sum of all 16-bit words covered by UDP chksum */
>> +       sum = (iph->src_addr & 0xFFFF) + (iph->src_addr >> 16) +
>> +             (iph->dst_addr & 0xFFFF) + (iph->dst_addr >> 16) +
>> +             (uint16_t)iph->proto + udplen;
>> +       for (buf = (uint8_t *)udph; udplen > 1; udplen -= 2) {
>> +               sum += ((*buf << 8) + *(buf + 1));
>> +               buf += 2;
>> +       }
>>         /* Fold sum to 16 bits: add carrier to result */
>>         while (sum >> 16)
>>                 sum = (sum & 0xFFFF) + (sum >> 16);
>> +
>> +       /* 1's complement */
>> +       sum = ~sum;
>> +
>>         /* set computation result */
>>         sum = (sum == 0x0) ? 0xFFFF : sum;
>>
>>
>
> _______________________________________________
> lng-odp mailing list
> lng-odp@lists.linaro.org
> https://lists.linaro.org/mailman/listinfo/lng-odp
>
diff mbox

Patch

diff --git a/example/generator/odp_generator.c b/example/generator/odp_generator.c
index 8ae5b29..8c224f3 100644
--- a/example/generator/odp_generator.c
+++ b/example/generator/odp_generator.c
@@ -238,7 +238,7 @@  static odp_packet_t pack_udp_pkt(odp_pool_t pool)
 	udp->dst_port = 0;
 	udp->length = odp_cpu_to_be_16(args->appl.payload + ODPH_UDPHDR_LEN);
 	udp->chksum = 0;
-	udp->chksum = odp_cpu_to_be_16(odph_ipv4_udp_chksum(pkt));
+	udp->chksum = odph_ipv4_udp_chksum(pkt);
 
 	return pkt;
 }
diff --git a/helper/include/odp/helper/udp.h b/helper/include/odp/helper/udp.h
index 866145a..06c439b 100644
--- a/helper/include/odp/helper/udp.h
+++ b/helper/include/odp/helper/udp.h
@@ -38,15 +38,6 @@  typedef struct ODP_PACKED {
 	uint16be_t chksum;   /**< UDP header and data checksum (0 if not used)*/
 } odph_udphdr_t;
 
-/** UDP pseudo header */
-typedef struct ODPH_PACKET {
-	uint32be_t src_addr; /**< Source addr */
-	uint32be_t dst_addr; /**< Destination addr */
-	uint8_t pad;	     /**< pad byte */
-	uint8_t proto;	     /**< UDP protocol */
-	uint16be_t length;   /**< data length */
-} odph_udpphdr_t;
-
 /**
  * UDP checksum
  *
@@ -58,10 +49,10 @@  typedef struct ODPH_PACKET {
 static inline uint16_t odph_ipv4_udp_chksum(odp_packet_t pkt)
 {
 	uint32_t sum = 0;
-	odph_udpphdr_t phdr;
 	odph_udphdr_t *udph;
 	odph_ipv4hdr_t *iph;
 	uint16_t udplen;
+	uint8_t *buf;
 
 	if (!odp_packet_l3_offset(pkt))
 		return 0;
@@ -73,24 +64,22 @@  static inline uint16_t odph_ipv4_udp_chksum(odp_packet_t pkt)
 	udph = (odph_udphdr_t *)odp_packet_l4_ptr(pkt, NULL);
 	udplen = odp_be_to_cpu_16(udph->length);
 
-	/* the source ip */
-	phdr.src_addr = iph->src_addr;
-	/* the dest ip */
-	phdr.dst_addr = iph->dst_addr;
-	/* proto */
-	phdr.pad = 0;
-	phdr.proto = ODPH_IPPROTO_UDP;
-	/* the length */
-	phdr.length = udph->length;
-
-	/* calc UDP pseudo header chksum */
-	sum = (__odp_force uint32_t) odp_chksum(&phdr, sizeof(odph_udpphdr_t));
-	/* calc udp header and data chksum */
-	sum += (__odp_force uint32_t) odp_chksum(udph, udplen);
+	/* 32-bit sum of all 16-bit words covered by UDP chksum */
+	sum = (iph->src_addr & 0xFFFF) + (iph->src_addr >> 16) +
+	      (iph->dst_addr & 0xFFFF) + (iph->dst_addr >> 16) +
+	      (uint16_t)iph->proto + udplen;
+	for (buf = (uint8_t *)udph; udplen > 1; udplen -= 2) {
+		sum += ((*buf << 8) + *(buf + 1));
+		buf += 2;
+	}
 
 	/* Fold sum to 16 bits: add carrier to result */
 	while (sum >> 16)
 		sum = (sum & 0xFFFF) + (sum >> 16);
+
+	/* 1's complement */
+	sum = ~sum;
+
 	/* set computation result */
 	sum = (sum == 0x0) ? 0xFFFF : sum;