From: sashiko-bot@kernel.org
To: "Arnaldo Carvalho de Melo" <acme@kernel.org>
Cc: linux-perf-users@vger.kernel.org
Subject: Re: [PATCH 07/27] perf session: Add validated swap infrastructure with null-termination checks
Date: Thu, 21 May 2026 01:52:26 +0000 [thread overview]
Message-ID: <20260521015227.54DC21F00A3B@smtp.kernel.org> (raw)
In-Reply-To: <20260521011027.622268-8-acme@kernel.org>
Thank you for your contribution! Sashiko AI review found 2 potential issue(s) to consider:
- [Medium] perf_session__peek_events() incorrectly advances the file offset by an unaligned or garbage event size on critical parsing errors.
- [Medium] TOCTOU race in native-endian event processing leads to integer underflow and massive out-of-bounds read in the newly added perf_event__check_nul().
--
commit 2f80ab41c25d6a21ae7c19d9e2f07ede302f3108
Author: Arnaldo Carvalho de Melo <acme@redhat.com>
perf session: Add validated swap infrastructure with null-termination checks
This commit changes the swap handlers to return an int instead of void, allowing
them to propagate errors. It introduces perf_event__check_nul() to ensure string
fields are null-terminated before processing. Several bounds checks and size
validations are also added to various swap handlers to improve safety.
> diff --git a/tools/perf/util/session.c b/tools/perf/util/session.c
> index 415693a3450a7..8c5b3323d0ee0 100644
> --- a/tools/perf/util/session.c
> +++ b/tools/perf/util/session.c
> @@ -1481,6 +1603,25 @@ static int session__flush_deferred_samples(struct perf_session *session,
> return ret;
> }
>
> +/*
> + * Return true if the string field is properly null-terminated
> + * within the event boundary. Native-endian files are mapped
> + * read-only (MAP_SHARED + PROT_READ) so we cannot write a
> + * null byte in place; skip the event instead.
> + */
> +static bool perf_event__check_nul(const char *str, const void *end, const char *event_name)
> +{
> + size_t max_len = (const char *)end - str;
> +
[Severity: Medium]
Since native-endian files are mapped using MAP_SHARED and a concurrent writer
could shrink event->header.size after the initial validation, could end
become less than str?
If that happens, could this regression cause max_len to underflow to a
massive value, leading strnlen() to perform a huge out-of-bounds read?
Would it be safer to check if ((const void *)str >= end) here to prevent this?
> + if (max_len == 0 || strnlen(str, max_len) == max_len) {
> + pr_warning("WARNING: PERF_RECORD_%s: string not null-terminated, skipping event\n",
> + event_name);
> + return false;
> + }
> +
> + return true;
> +}
[ ... ]
> @@ -1976,11 +2176,25 @@ int perf_session__peek_events(struct perf_session *session, u64 offset,
> int err;
>
> do {
> + event = NULL;
> err = perf_session__peek_event(session, offset, buf,
> PERF_SAMPLE_MAX_SIZE, &event,
> NULL);
> - if (err)
> - return err;
> + if (err) {
> + /*
> + * peek_event sets event_ptr when it read enough
> + * to know the event size (min_sz and swap failures).
> + * If event is NULL or size is 0, we can't advance
> + * and must abort. Otherwise skip past this entry.
> + */
> + if (event && event->header.size) {
> + offset += event->header.size;
[Severity: Medium]
If perf_session__peek_event() fails and returns -1 because the size is
unaligned (e.g., event->header.size % sizeof(u64) != 0), wouldn't this
regression add the unaligned size to the offset?
If the offset becomes unaligned, doesn't it guarantee that all subsequent
reads will interpret the middle of events as headers, leading to a cascade
of parsing corruption?
> + err = 0;
> + } else {
> + return err;
> + }
> + continue;
> + }
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260521011027.622268-1-acme@kernel.org?part=7
next prev parent reply other threads:[~2026-05-21 1:52 UTC|newest]
Thread overview: 38+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-05-21 1:09 [PATCHES 00/27] perf.data validation and hardening Arnaldo Carvalho de Melo
2026-05-21 1:09 ` [PATCH 01/27] perf session: Add minimum event size and alignment validation Arnaldo Carvalho de Melo
2026-05-21 1:59 ` sashiko-bot
2026-05-21 13:01 ` Arnaldo Carvalho de Melo
2026-05-21 1:09 ` [PATCH 02/27] perf tools: Fix event_contains() macro to verify full field extent Arnaldo Carvalho de Melo
2026-05-21 1:09 ` [PATCH 03/27] perf zstd: Fix compression error path in zstd_compress_stream_to_records() Arnaldo Carvalho de Melo
2026-05-21 1:49 ` sashiko-bot
2026-05-21 1:09 ` [PATCH 04/27] perf zstd: Fix multi-iteration decompression and error handling Arnaldo Carvalho de Melo
2026-05-21 1:09 ` [PATCH 05/27] perf session: Fix PERF_RECORD_READ swap and dump for variable-length events Arnaldo Carvalho de Melo
2026-05-21 1:09 ` [PATCH 06/27] perf session: Fix swap_sample_id_all() crash on crafted events Arnaldo Carvalho de Melo
2026-05-21 1:09 ` [PATCH 07/27] perf session: Add validated swap infrastructure with null-termination checks Arnaldo Carvalho de Melo
2026-05-21 1:52 ` sashiko-bot [this message]
2026-05-21 1:09 ` [PATCH 08/27] perf session: Use bounded copy for PERF_RECORD_TIME_CONV Arnaldo Carvalho de Melo
2026-05-21 1:09 ` [PATCH 09/27] perf session: Validate HEADER_ATTR attr.size before swapping Arnaldo Carvalho de Melo
2026-05-21 2:04 ` sashiko-bot
2026-05-21 1:09 ` [PATCH 10/27] perf session: Validate nr fields against event size on both swap and common paths Arnaldo Carvalho de Melo
2026-05-21 1:09 ` [PATCH 11/27] perf header: Byte-swap build ID event pid and bounds check section entries Arnaldo Carvalho de Melo
2026-05-21 1:09 ` [PATCH 12/27] perf cpumap: Reject RANGE_CPUS with start_cpu > end_cpu Arnaldo Carvalho de Melo
2026-05-21 1:09 ` [PATCH 13/27] perf auxtrace: Harden auxtrace_error event handling Arnaldo Carvalho de Melo
2026-05-21 1:09 ` [PATCH 14/27] perf session: Add byte-swap and bounds check for PERF_RECORD_BPF_METADATA events Arnaldo Carvalho de Melo
2026-05-21 2:23 ` sashiko-bot
2026-05-21 1:10 ` [PATCH 15/27] perf header: Validate null-termination in PERF_RECORD_EVENT_UPDATE string fields Arnaldo Carvalho de Melo
2026-05-21 1:10 ` [PATCH 16/27] perf tools: Bounds check perf_event_attr fields against attr.size before printing Arnaldo Carvalho de Melo
2026-05-21 1:10 ` [PATCH 17/27] perf header: Propagate feature section processing errors Arnaldo Carvalho de Melo
2026-05-21 1:10 ` [PATCH 18/27] perf header: Validate f_attr.ids section before use in perf_session__read_header() Arnaldo Carvalho de Melo
2026-05-21 1:10 ` [PATCH 19/27] perf header: Validate feature section size and add read path bounds checking Arnaldo Carvalho de Melo
2026-05-21 2:34 ` sashiko-bot
2026-05-21 1:10 ` [PATCH 20/27] perf header: Sanity check HEADER_EVENT_DESC attr.size before swap Arnaldo Carvalho de Melo
2026-05-21 1:10 ` [PATCH 21/27] perf header: Validate bitmap size before allocating in do_read_bitmap() Arnaldo Carvalho de Melo
2026-05-21 1:10 ` [PATCH 22/27] perf session: Add byte-swap for PERF_RECORD_COMPRESSED2 events Arnaldo Carvalho de Melo
2026-05-21 1:10 ` [PATCH 23/27] perf tools: Harden compressed event processing Arnaldo Carvalho de Melo
2026-05-21 1:10 ` [PATCH 24/27] perf session: Check for decompression buffer size overflow Arnaldo Carvalho de Melo
2026-05-21 1:10 ` [PATCH 25/27] perf session: Bound nr_cpus_avail and validate sample CPU Arnaldo Carvalho de Melo
2026-05-21 2:43 ` sashiko-bot
2026-05-21 1:10 ` [PATCH 26/27] perf kwork: Bounds check work->cpu before indexing cpus_runtime[] Arnaldo Carvalho de Melo
2026-05-21 1:10 ` [PATCH 27/27] perf test: Add truncated perf.data robustness test Arnaldo Carvalho de Melo
2026-05-21 2:07 ` sashiko-bot
2026-05-21 12:57 ` Arnaldo Carvalho de Melo
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=20260521015227.54DC21F00A3B@smtp.kernel.org \
--to=sashiko-bot@kernel.org \
--cc=acme@kernel.org \
--cc=linux-perf-users@vger.kernel.org \
--cc=sashiko-reviews@lists.linux.dev \
/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