* [dpdk-dev] [PATCH] net: fix inner L2 length in software ptype parser
@ 2017-09-11 14:57 Olivier Matz
2017-10-05 21:33 ` Thomas Monjalon
0 siblings, 1 reply; 2+ messages in thread
From: Olivier Matz @ 2017-09-11 14:57 UTC (permalink / raw)
To: dev
The inner L2 length returned by rte_net_get_ptype() is not
properly initialized. If the caller does not zero the header
lengths structure, the inner_l2 field will be undefined.
Fix it by initializing inner_l2 to 0 when parsing a inner layer.
Fixes: 2c15c5377da2 ("net: support NVGRE in software packet type parser")
Signed-off-by: Olivier Matz <olivier.matz@6wind.com>
---
lib/librte_net/rte_net.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/lib/librte_net/rte_net.c b/lib/librte_net/rte_net.c
index a8c7aff9c..a3ca04032 100644
--- a/lib/librte_net/rte_net.c
+++ b/lib/librte_net/rte_net.c
@@ -396,6 +396,7 @@ uint32_t rte_net_get_ptype(const struct rte_mbuf *m,
if ((layers & RTE_PTYPE_INNER_L2_MASK) == 0)
return pkt_type;
+ hdr_lens->inner_l2_len = 0;
if (proto == rte_cpu_to_be_16(ETHER_TYPE_TEB)) {
eh = rte_pktmbuf_read(m, off, sizeof(*eh), &eh_copy);
if (unlikely(eh == NULL))
--
2.11.0
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [dpdk-dev] [PATCH] net: fix inner L2 length in software ptype parser
2017-09-11 14:57 [dpdk-dev] [PATCH] net: fix inner L2 length in software ptype parser Olivier Matz
@ 2017-10-05 21:33 ` Thomas Monjalon
0 siblings, 0 replies; 2+ messages in thread
From: Thomas Monjalon @ 2017-10-05 21:33 UTC (permalink / raw)
To: Olivier Matz; +Cc: dev
11/09/2017 16:57, Olivier Matz:
> The inner L2 length returned by rte_net_get_ptype() is not
> properly initialized. If the caller does not zero the header
> lengths structure, the inner_l2 field will be undefined.
>
> Fix it by initializing inner_l2 to 0 when parsing a inner layer.
>
> Fixes: 2c15c5377da2 ("net: support NVGRE in software packet type parser")
>
> Signed-off-by: Olivier Matz <olivier.matz@6wind.com>
Applied, thanks
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2017-10-05 21:33 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-09-11 14:57 [dpdk-dev] [PATCH] net: fix inner L2 length in software ptype parser Olivier Matz
2017-10-05 21:33 ` Thomas Monjalon
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).