DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH] examples/ipsec-secgw: set ip6_plen to the proper value
@ 2017-10-13  8:04 Tomasz Duszynski
  2017-10-18 16:18 ` Sergio Gonzalez Monroy
  0 siblings, 1 reply; 3+ messages in thread
From: Tomasz Duszynski @ 2017-10-13  8:04 UTC (permalink / raw)
  To: dev; +Cc: Tomasz Duszynski

ipv6 payload length header field should contain only the number of bytes
following the ipv6 header and not the entire packet size.

Fixes: f159e70b0922 ("examples/ipsec-secgw: support transport mode")
Fixes: 906257e965b7 ("examples/ipsec-secgw: support IPv6")

Signed-off-by: Tomasz Duszynski <tdu@semihalf.com>
---
 examples/ipsec-secgw/esp.c  | 6 ++++--
 examples/ipsec-secgw/ipip.h | 3 ++-
 2 files changed, 6 insertions(+), 3 deletions(-)

diff --git a/examples/ipsec-secgw/esp.c b/examples/ipsec-secgw/esp.c
index 70bb81f..2897840 100644
--- a/examples/ipsec-secgw/esp.c
+++ b/examples/ipsec-secgw/esp.c
@@ -211,7 +211,8 @@ esp_inbound_post(struct rte_mbuf *m, struct ipsec_sa *sa,
 			/* XXX No option headers supported */
 			memmove(ip6, ip, sizeof(struct ip6_hdr));
 			ip6->ip6_nxt = *nexthdr;
-			ip6->ip6_plen = htons(rte_pktmbuf_data_len(m));
+			ip6->ip6_plen = htons(rte_pktmbuf_data_len(m) -
+					      sizeof(struct ip6_hdr));
 		}
 	} else
 		ipip_inbound(m, sizeof(struct esp_hdr) + sa->iv_len);
@@ -313,7 +314,8 @@ esp_outbound(struct rte_mbuf *m, struct ipsec_sa *sa,
 		} else {
 			ip6 = (struct ip6_hdr *)new_ip;
 			ip6->ip6_nxt = IPPROTO_ESP;
-			ip6->ip6_plen = htons(rte_pktmbuf_data_len(m));
+			ip6->ip6_plen = htons(rte_pktmbuf_data_len(m) -
+					      sizeof(struct ip6_hdr));
 		}
 	}
 
diff --git a/examples/ipsec-secgw/ipip.h b/examples/ipsec-secgw/ipip.h
index ff1dccd..93393d5 100644
--- a/examples/ipsec-secgw/ipip.h
+++ b/examples/ipsec-secgw/ipip.h
@@ -72,7 +72,8 @@ ipip_outbound(struct rte_mbuf *m, uint32_t offset, uint32_t is_ipv6,
 
 		/* Per RFC4301 5.1.2.1 */
 		outip6->ip6_flow = htonl(IP6_VERSION << 28 | ds_ecn << 20);
-		outip6->ip6_plen = htons(rte_pktmbuf_data_len(m));
+		outip6->ip6_plen = htons(rte_pktmbuf_data_len(m) -
+					 sizeof(struct ip6_hdr));
 
 		outip6->ip6_nxt = IPPROTO_ESP;
 		outip6->ip6_hops = IPDEFTTL;
-- 
2.7.4

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

* Re: [dpdk-dev] [PATCH] examples/ipsec-secgw: set ip6_plen to the proper value
  2017-10-13  8:04 [dpdk-dev] [PATCH] examples/ipsec-secgw: set ip6_plen to the proper value Tomasz Duszynski
@ 2017-10-18 16:18 ` Sergio Gonzalez Monroy
  2017-10-19 19:12   ` De Lara Guarch, Pablo
  0 siblings, 1 reply; 3+ messages in thread
From: Sergio Gonzalez Monroy @ 2017-10-18 16:18 UTC (permalink / raw)
  To: Tomasz Duszynski, dev

On 13/10/2017 09:04, Tomasz Duszynski wrote:
> ipv6 payload length header field should contain only the number of bytes
> following the ipv6 header and not the entire packet size.
>
> Fixes: f159e70b0922 ("examples/ipsec-secgw: support transport mode")
> Fixes: 906257e965b7 ("examples/ipsec-secgw: support IPv6")
>
> Signed-off-by: Tomasz Duszynski <tdu@semihalf.com>
> ---
>   examples/ipsec-secgw/esp.c  | 6 ++++--
>   examples/ipsec-secgw/ipip.h | 3 ++-
>   2 files changed, 6 insertions(+), 3 deletions(-)

Acked-by: Sergio Gonzalez Monroy <sergio.gonzalez.monroy@intel.com>

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

* Re: [dpdk-dev] [PATCH] examples/ipsec-secgw: set ip6_plen to the proper value
  2017-10-18 16:18 ` Sergio Gonzalez Monroy
@ 2017-10-19 19:12   ` De Lara Guarch, Pablo
  0 siblings, 0 replies; 3+ messages in thread
From: De Lara Guarch, Pablo @ 2017-10-19 19:12 UTC (permalink / raw)
  To: Gonzalez Monroy, Sergio, Tomasz Duszynski, dev; +Cc: stable



> -----Original Message-----
> From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Sergio Gonzalez
> Monroy
> Sent: Wednesday, October 18, 2017 5:18 PM
> To: Tomasz Duszynski <tdu@semihalf.com>; dev@dpdk.org
> Subject: Re: [dpdk-dev] [PATCH] examples/ipsec-secgw: set ip6_plen to the
> proper value
> 
> On 13/10/2017 09:04, Tomasz Duszynski wrote:
> > ipv6 payload length header field should contain only the number of
> > bytes following the ipv6 header and not the entire packet size.
> >
> > Fixes: f159e70b0922 ("examples/ipsec-secgw: support transport mode")
> > Fixes: 906257e965b7 ("examples/ipsec-secgw: support IPv6")
> >
> > Signed-off-by: Tomasz Duszynski <tdu@semihalf.com>
> > ---
> >   examples/ipsec-secgw/esp.c  | 6 ++++--
> >   examples/ipsec-secgw/ipip.h | 3 ++-
> >   2 files changed, 6 insertions(+), 3 deletions(-)
> 
> Acked-by: Sergio Gonzalez Monroy <sergio.gonzalez.monroy@intel.com>

CC'ing stable ML.

Applied to dpdk-next-crypto.
Thanks,

Pablo

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

end of thread, other threads:[~2017-10-19 19:12 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-10-13  8:04 [dpdk-dev] [PATCH] examples/ipsec-secgw: set ip6_plen to the proper value Tomasz Duszynski
2017-10-18 16:18 ` Sergio Gonzalez Monroy
2017-10-19 19:12   ` De Lara Guarch, Pablo

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 NNTP newsgroup(s).