From: sashiko-bot@kernel.org
To: "Tanushree Shah" <tshah@linux.ibm.com>
Cc: linux-perf-users@vger.kernel.org
Subject: Re: [PATCH] perf trace-event: Fix buffer overflow in read_string()
Date: Wed, 22 Jul 2026 11:50:12 +0000 [thread overview]
Message-ID: <20260722115012.E10D41F000E9@smtp.kernel.org> (raw)
In-Reply-To: <20260722113552.191143-3-tshah@linux.ibm.com>
Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:
Pre-existing issues:
- [High] This problem wasn't introduced by this patch, but integer truncation when passing a 64-bit size to a 32-bit `do_read` parameter leads to out-of-bounds reads or massive uninitialized memory parsing.
--
--- Patch [1]: [PATCH] perf trace-event: Fix buffer overflow in read_string() ---
commit fd2c84f48dc9adf4455bf50d97942d8f87743ab3
Author: Tanushree Shah <tshah@linux.ibm.com>
perf trace-event: Fix buffer overflow in read_string()
This patch adds a bounds check to read_string() before writing to the buffer.
It ensures that the size does not exceed the bounds of buf, preventing a
buffer overflow when processing trace events.
> diff --git a/tools/perf/util/trace-event-read.c b/tools/perf/util/trace-event-read.c
> index ecbbb93f01853..afd458cf1387d 100644
> --- a/tools/perf/util/trace-event-read.c
> +++ b/tools/perf/util/trace-event-read.c
[ ... ]
> @@ -127,6 +127,11 @@ static char *read_string(void)
> }
> }
>
> + if (size >= (int)sizeof(buf) - 1) {
> + pr_debug("string too long (max %zu bytes)", sizeof(buf) - 1);
> + goto out;
> + }
> +
> buf[size++] = c;
>
> if (!c)
[Severity: High]
This isn't a bug introduced by this patch, but integer truncation when passing
a 64-bit size to a 32-bit do_read() parameter can lead to out-of-bounds reads.
In tools/perf/util/trace-event-read.c, do_read() expects a 32-bit integer:
static int do_read(void *data, int size)
{
...
}
However, read_ftrace_file() passes an unsigned long long size parameter
into it:
static int read_ftrace_file(struct tep_handle *pevent, unsigned long long size)
{
...
buf = malloc(size);
if (buf == NULL) {
...
}
ret = do_read(buf, size);
if (ret < 0) {
...
}
ret = parse_ftrace_file(pevent, buf, size);
...
}
If a maliciously crafted trace file provides a size like 0x100000005,
malloc(size) on 32-bit architectures truncates and allocates only 5 bytes. The
size parameter in parse_ftrace_file() remains the full 64-bit value, which
would result in a massive out-of-bounds read.
On 64-bit architectures, do_read() truncates the size and reads only 5 bytes,
causing parse_ftrace_file() to process up to 4GB of mostly uninitialized
memory.
Does this code need to update do_read() to use size_t or ssize_t to properly
handle the size parameter?
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260722113552.191143-3-tshah@linux.ibm.com?part=1
prev parent reply other threads:[~2026-07-22 11:50 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-22 11:35 [PATCH] perf trace-event: Fix buffer overflow in read_string() Tanushree Shah
2026-07-22 11:50 ` sashiko-bot [this message]
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=20260722115012.E10D41F000E9@smtp.kernel.org \
--to=sashiko-bot@kernel.org \
--cc=linux-perf-users@vger.kernel.org \
--cc=sashiko-reviews@lists.linux.dev \
--cc=tshah@linux.ibm.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