From: bugzilla@dpdk.org
To: dev@dpdk.org
Subject: [DPDK/ethdev Bug 2015] memif: ring semantics differ from VPP
Date: Fri, 28 Aug 2026 17:38:57 +0000 [thread overview]
Message-ID: <bug-2015-3@https.bugs.dpdk.org/> (raw)
https://bugs.dpdk.org/show_bug.cgi?id=2015
Bug ID: 2015
Summary: memif: ring semantics differ from VPP
Product: DPDK
Version: 26.11
Hardware: All
OS: All
Status: UNCONFIRMED
Severity: minor
Priority: Normal
Component: ethdev
Assignee: dev@dpdk.org
Reporter: stephen@networkplumber.org
Target Milestone: ---
Found when doing AI assisted analysis and comparison of DPDK memif with VPP.
The two memif implementations disagree by one about what the hello
limit fields mean.
DPDK sends h->max_region = ETH_MEMIF_MAX_REGION_NUM - 1, treating the
field as an inclusive maximum index, and checks received indices with
>= against ETH_MEMIF_MAX_REGION_NUM.
VPP sends h->max_region = MEMIF_MAX_REGION (256) and checks received
indices with > rather than >=, so it accepts index 256 and therefore
257 regions. The same > form is used for its ring index checks.
Nothing is memory-unsafe on either side today, because both clamp what
they actually use, and VPP's regions are vectors. But the accepted range
and the advertised range do not agree, and the two stacks do not agree
with each other.
There is no memif specification outside VPP's tree, so this is the kind
of thing that only gets settled by writing it down. It should be pinned
in whatever wire contract comes out of the current memif hardening work,
and DPDK's side adjusted to match once the meaning is agreed.
Raised here so it is on the record and does not get fixed unilaterally
in one stack in a way that breaks the other.
--
You are receiving this mail because:
You are the assignee for the bug.
reply other threads:[~2026-08-28 17:38 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
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=bug-2015-3@https.bugs.dpdk.org/ \
--to=bugzilla@dpdk.org \
--cc=dev@dpdk.org \
/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.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox