All of lore.kernel.org
 help / color / mirror / Atom feed
* librte_net/rte_ip.h checksum functions question
@ 2017-07-18 12:18 Ido Barnea (ibarnea)
  2017-07-20  9:09 ` Olivier Matz
  0 siblings, 1 reply; 3+ messages in thread
From: Ido Barnea (ibarnea) @ 2017-07-18 12:18 UTC (permalink / raw)
  To: olivier.matz, konstantin.ananyev; +Cc: Hanoch Haim (hhaim), dev

Hi,
Is it intentional that rte_ipv4_phdr_cksum and others in this file assume that ipv4 header is sizeof(struct ipv4_hdr), actually assuming that there are no IPv4 options?
If not, I would like to submit a patch changing that.
Something in the line of:
sizeof(struct ipv4_hdr) changes to ipv4_hdr->version_ihl & IPV4_HDR_IHL_MASK) * IPV4_IHL_MULTIPLIER)

Thanks,
Ido

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: librte_net/rte_ip.h checksum functions question
  2017-07-18 12:18 librte_net/rte_ip.h checksum functions question Ido Barnea (ibarnea)
@ 2017-07-20  9:09 ` Olivier Matz
  2017-07-20  9:57   ` Ido Barnea (ibarnea)
  0 siblings, 1 reply; 3+ messages in thread
From: Olivier Matz @ 2017-07-20  9:09 UTC (permalink / raw)
  To: Ido Barnea (ibarnea); +Cc: konstantin.ananyev, Hanoch Haim (hhaim), dev

Hi Ido,

On Tue, 18 Jul 2017 12:18:20 +0000, "Ido Barnea (ibarnea)" <ibarnea@cisco.com> wrote:
> Hi,
> Is it intentional that rte_ipv4_phdr_cksum and others in this file assume that ipv4 header is sizeof(struct ipv4_hdr), actually assuming that there are no IPv4 options?
> If not, I would like to submit a patch changing that.
> Something in the line of:
> sizeof(struct ipv4_hdr) changes to ipv4_hdr->version_ihl & IPV4_HDR_IHL_MASK) * IPV4_IHL_MULTIPLIER)
> 

I agree we should have other functions that take the real ip header
len in account. What about the following:

static inline uint16_t
rte_ipv4ext_cksum(const struct ipv4_hdr *ipv4_hdr, size_t hdrlen)

static inline uint16_t
rte_ipv4ext_phdr_cksum(const struct ipv4_hdr *ipv4_hdr, size_t hdrlen,
	uint64_t ol_flags)
...

The current function rte_ipv4_cksum() can call rte_ipv4ext_cksum(.., 5)
without additional cost, since 5 will be a constant, resolved at
compilation time.

I also noticed that some functions are not properly documented (it should
be announced that options are not supported). Also, the api comment
of rte_ipv6_udptcp_cksum() talks about ipv4...


Thanks,
Olivier

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: librte_net/rte_ip.h checksum functions question
  2017-07-20  9:09 ` Olivier Matz
@ 2017-07-20  9:57   ` Ido Barnea (ibarnea)
  0 siblings, 0 replies; 3+ messages in thread
From: Ido Barnea (ibarnea) @ 2017-07-20  9:57 UTC (permalink / raw)
  To: Olivier Matz; +Cc: konstantin.ananyev, Hanoch Haim (hhaim), dev

Sounds fine to me. Are you planning to add this, or you want me to do it?




On 20/07/2017, 12:09 PM, "Olivier Matz" <olivier.matz@6wind.com> wrote:

>Hi Ido,
>
>On Tue, 18 Jul 2017 12:18:20 +0000, "Ido Barnea (ibarnea)" <ibarnea@cisco.com> wrote:
>> Hi,
>> Is it intentional that rte_ipv4_phdr_cksum and others in this file assume that ipv4 header is sizeof(struct ipv4_hdr), actually assuming that there are no IPv4 options?
>> If not, I would like to submit a patch changing that.
>> Something in the line of:
>> sizeof(struct ipv4_hdr) changes to ipv4_hdr->version_ihl & IPV4_HDR_IHL_MASK) * IPV4_IHL_MULTIPLIER)
>> 
>
>I agree we should have other functions that take the real ip header
>len in account. What about the following:
>
>static inline uint16_t
>rte_ipv4ext_cksum(const struct ipv4_hdr *ipv4_hdr, size_t hdrlen)
>
>static inline uint16_t
>rte_ipv4ext_phdr_cksum(const struct ipv4_hdr *ipv4_hdr, size_t hdrlen,
>	uint64_t ol_flags)
>...
>
>The current function rte_ipv4_cksum() can call rte_ipv4ext_cksum(.., 5)
>without additional cost, since 5 will be a constant, resolved at
>compilation time.
>
>I also noticed that some functions are not properly documented (it should
>be announced that options are not supported). Also, the api comment
>of rte_ipv6_udptcp_cksum() talks about ipv4...
>
>
>Thanks,
>Olivier

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2017-07-20  9:57 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-07-18 12:18 librte_net/rte_ip.h checksum functions question Ido Barnea (ibarnea)
2017-07-20  9:09 ` Olivier Matz
2017-07-20  9:57   ` Ido Barnea (ibarnea)

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.