From: Samuel Moelius <sam.moelius@trailofbits.com>
To: Dan Williams <djbw@kernel.org>
Cc: Samuel Moelius <sam.moelius@trailofbits.com>,
Vishal Verma <vishal.l.verma@intel.com>,
Dave Jiang <dave.jiang@intel.com>,
Ira Weiny <ira.weiny@intel.com>,
Alison Schofield <alison.schofield@intel.com>,
Guangshuo Li <lgs201920130244@gmail.com>,
nvdimm@lists.linux.dev (open list:LIBNVDIMM: NON-VOLATILE MEMORY
DEVICE SUBSYSTEM), linux-kernel@vger.kernel.org (open list)
Subject: [PATCH] nvdimm: ndtest: reject wrapped config-data offsets
Date: Fri, 5 Jun 2026 00:53:36 +0000 [thread overview]
Message-ID: <20260605005341.2051848-1-sam.moelius@trailofbits.com> (raw)
The ndtest provider validates get/set config-data requests by adding the
ioctl-provided offset and length and comparing the result against
LABEL_SIZE. That addition can wrap, so an offset such as U32_MAX with a
one-byte length passes validation and then copies from or to
label_area + U32_MAX.
Validate the command buffer shape, then validate the offset first and
validate the length against the remaining label area so wrapped ranges
are rejected before the copy. Report the rejection through the command
status field so the DIMM ioctl ABI returns a nonzero command status
instead of faulting.
Assisted-by: Codex:gpt-5.5-cyber-preview
Signed-off-by: Samuel Moelius <sam.moelius@trailofbits.com>
---
tools/testing/nvdimm/test/ndtest.c | 20 ++++++++++++++++++--
1 file changed, 18 insertions(+), 2 deletions(-)
diff --git a/tools/testing/nvdimm/test/ndtest.c b/tools/testing/nvdimm/test/ndtest.c
index 8e3b6be53839..1df93f5e4cb6 100644
--- a/tools/testing/nvdimm/test/ndtest.c
+++ b/tools/testing/nvdimm/test/ndtest.c
@@ -207,9 +207,15 @@ static int ndtest_config_get(struct ndtest_dimm *p, unsigned int buf_len,
{
unsigned int len;
- if ((hdr->in_offset + hdr->in_length) > LABEL_SIZE)
+ if (buf_len < sizeof(*hdr) || hdr->in_length > buf_len - sizeof(*hdr))
return -EINVAL;
+ if (hdr->in_offset > LABEL_SIZE ||
+ hdr->in_length > LABEL_SIZE - hdr->in_offset) {
+ hdr->status = -EINVAL;
+ return 0;
+ }
+
hdr->status = 0;
len = min(hdr->in_length, LABEL_SIZE - hdr->in_offset);
memcpy(hdr->out_buf, p->label_area + hdr->in_offset, len);
@@ -221,10 +227,20 @@ static int ndtest_config_set(struct ndtest_dimm *p, unsigned int buf_len,
struct nd_cmd_set_config_hdr *hdr)
{
unsigned int len;
+ u32 *status;
- if ((hdr->in_offset + hdr->in_length) > LABEL_SIZE)
+ if (buf_len < sizeof(*hdr) + sizeof(*status) ||
+ hdr->in_length > buf_len - sizeof(*hdr) - sizeof(*status))
return -EINVAL;
+ status = (void *)hdr + sizeof(*hdr) + hdr->in_length;
+ if (hdr->in_offset > LABEL_SIZE ||
+ hdr->in_length > LABEL_SIZE - hdr->in_offset) {
+ *status = -EINVAL;
+ return 0;
+ }
+
+ *status = 0;
len = min(hdr->in_length, LABEL_SIZE - hdr->in_offset);
memcpy(p->label_area + hdr->in_offset, hdr->in_buf, len);
--
2.43.0
reply other threads:[~2026-06-05 0:53 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=20260605005341.2051848-1-sam.moelius@trailofbits.com \
--to=sam.moelius@trailofbits.com \
--cc=alison.schofield@intel.com \
--cc=dave.jiang@intel.com \
--cc=djbw@kernel.org \
--cc=ira.weiny@intel.com \
--cc=lgs201920130244@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=nvdimm@lists.linux.dev \
--cc=vishal.l.verma@intel.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®