From: Isaac Boukris <iboukris@gmail.com>
To: Honnappa Nagarahalli <honnappa.nagarahalli@arm.com>,
Konstantin Ananyev <konstantin.ananyev@huawei.com>
Cc: dev@dpdk.org, Isaac Boukris <iboukris@gmail.com>
Subject: [PATCH] lib/ring: do not allow zero size ring
Date: Tue, 11 Nov 2025 00:28:27 +0200 [thread overview]
Message-ID: <20251110222827.575488-1-iboukris@gmail.com> (raw)
this might happen when for instance the ring size is read from
config, and would cause runtime crash.
Signed-off-by: Isaac Boukris <iboukris@gmail.com>
---
app/test/test_ring.c | 7 +++++++
lib/ring/rte_ring.c | 4 ++--
2 files changed, 9 insertions(+), 2 deletions(-)
diff --git a/app/test/test_ring.c b/app/test/test_ring.c
index ba1fec1de3..81231ecfc2 100644
--- a/app/test/test_ring.c
+++ b/app/test/test_ring.c
@@ -505,6 +505,13 @@ test_ring_negative_tests(void)
struct rte_ring *rt = NULL;
unsigned int i;
+ /* Test zero size ring */
+ rp = test_ring_create("test_zero_size_ring", -1, 0, SOCKET_ID_ANY, 0);
+ if (rp != NULL) {
+ printf("Test failed to detect zero size ring\n");
+ goto test_fail;
+ }
+
/* Test with esize not a multiple of 4 */
rp = test_ring_create("test_bad_element_size", 23,
RING_SIZE + 1, SOCKET_ID_ANY, 0);
diff --git a/lib/ring/rte_ring.c b/lib/ring/rte_ring.c
index edd63aa535..f9434de536 100644
--- a/lib/ring/rte_ring.c
+++ b/lib/ring/rte_ring.c
@@ -67,7 +67,7 @@ rte_ring_get_memsize_elem(unsigned int esize, unsigned int count)
}
/* count must be a power of 2 */
- if ((!POWEROF2(count)) || (count > RTE_RING_SZ_MASK )) {
+ if ((count == 0) || (!POWEROF2(count)) || (count > RTE_RING_SZ_MASK )) {
RING_LOG(ERR,
"Requested number of elements is invalid, must be power of 2, and not exceed %u",
RTE_RING_SZ_MASK);
@@ -227,7 +227,7 @@ rte_ring_init(struct rte_ring *r, const char *name, unsigned int count,
r->mask = r->size - 1;
r->capacity = count;
} else {
- if ((!POWEROF2(count)) || (count > RTE_RING_SZ_MASK)) {
+ if ((count == 0) || (!POWEROF2(count)) || (count > RTE_RING_SZ_MASK)) {
RING_LOG(ERR,
"Requested size is invalid, must be power of 2, and not exceed the size limit %u",
RTE_RING_SZ_MASK);
--
2.49.0
next reply other threads:[~2025-11-10 22:29 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-11-10 22:28 Isaac Boukris [this message]
2025-11-10 23:15 ` [PATCH v2] lib/ring: do not allow zero size ring Isaac Boukris
2025-11-10 23:26 ` Wathsala Vithanage
2025-11-11 0:40 ` Morten Brørup
2025-11-11 6:22 ` [PATCH v3] " Isaac Boukris
2025-11-11 8:24 ` Konstantin Ananyev
2025-11-11 12:25 ` Thomas Monjalon
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=20251110222827.575488-1-iboukris@gmail.com \
--to=iboukris@gmail.com \
--cc=dev@dpdk.org \
--cc=honnappa.nagarahalli@arm.com \
--cc=konstantin.ananyev@huawei.com \
/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 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.