From: sashiko-bot@kernel.org
To: "Arnaldo Carvalho de Melo" <acme@kernel.org>
Cc: linux-perf-users@vger.kernel.org
Subject: Re: [PATCH 06/11] perf sched: Bounds-check prio before test_bit() in timehist
Date: Mon, 08 Jun 2026 01:51:34 +0000 [thread overview]
Message-ID: <20260608015134.A498B1F00893@smtp.kernel.org> (raw)
In-Reply-To: <20260608013057.1942953-7-acme@kernel.org>
Thank you for your contribution! Sashiko AI review found 2 potential issue(s) to consider:
Pre-existing issues:
- [Medium] Integer truncation of `sample->cpu` into `int16_t` bypasses bounds checks and silently misattributes data
- [Medium] perf sched subcommands fail to register required API callbacks (`.attr` and `.feature`) for pipe mode
--
commit ccee4e7598c7486d2e3310b0d4a29fa61c041674
Author: Arnaldo Carvalho de Melo <acme@redhat.com>
perf sched: Bounds-check prio before test_bit() in timehist
timehist_skip_sample() reads prio from untrusted tracepoint data via
perf_sample__intval(sample, "prev_prio") without bounds validation.
A crafted perf.data with prev_prio >= MAX_PRIO (140) causes test_bit()
to read past the end of the prio_bitmap, which is only MAX_PRIO bits.
Add a prio >= 0 && prio < MAX_PRIO check before the test_bit() call.
> diff --git a/tools/perf/builtin-sched.c b/tools/perf/builtin-sched.c
> index 1ff01f03d2ad1..ded511d851880 100644
> --- a/tools/perf/builtin-sched.c
> +++ b/tools/perf/builtin-sched.c
> @@ -2645,7 +2645,9 @@ static bool timehist_skip_sample(struct perf_sched *sched,
> else if (evsel__name_is(sample->evsel, "sched:sched_switch"))
> prio = perf_sample__intval(sample, "prev_prio");
>
> - if (prio != -1 && !test_bit(prio, sched->prio_bitmap)) {
> + /* prio comes from untrusted tracepoint data — bounds-check before test_bit */
> + if (prio >= 0 &&
> + (prio >= MAX_PRIO || !test_bit(prio, sched->prio_bitmap))) {
> rc = true;
> sched->skipped_samples++;
> }
[Severity: Medium]
This is a pre-existing issue, but I noticed that the sample->cpu value is
narrowed to a 16-bit integer during struct initialization in map_switch_event()
and perf_timehist__process_sample() in tools/perf/builtin-sched.c.
Does this narrowing regression allow wrapped out-of-bounds cpu values to bypass
the subsequent validation check?
For example in map_switch_event():
struct perf_cpu this_cpu = {
.cpu = sample->cpu,
};
/* perf.data is untrusted input — CPU may be absent or corrupted */
if (this_cpu.cpu >= MAX_CPUS || this_cpu.cpu < 0) {
If sample->cpu is larger than 32767, it will silently wrap, passing the bounds
check but potentially misattributing data. A similar pattern exists in
perf_timehist__process_sample().
[Severity: Medium]
This isn't a bug introduced by this patch, but looking at cmd_sched() and
perf_sched__timehist() in tools/perf/builtin-sched.c, it appears the perf sched
subcommands fail to register required API callbacks like .attr and .feature
for pipe mode.
In cmd_sched():
perf_tool__init(&sched.tool, /*ordered_events=*/true);
sched.tool.sample = perf_sched__process_tracepoint_sample;
sched.tool.comm = perf_sched__process_comm;
sched.tool.namespaces = perf_event__process_namespaces;
sched.tool.lost = perf_event__process_lost;
sched.tool.fork = perf_sched__process_fork_event;
And in perf_sched__timehist():
sched->tool.lost = process_lost;
sched->tool.attr = perf_event__process_attr;
sched->tool.tracing_data = perf_event__process_tracing_data;
sched->tool.build_id = perf_event__process_build_id;
Without the .attr callback, no evsel structures are created, and without the
.feature callback, perf_env remains unpopulated in pipe mode.
Does this omission lead to a regression where dropped events or uninitialized
system metadata occur when processing pipelined inputs?
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260608013057.1942953-1-acme@kernel.org?part=6
next prev parent reply other threads:[~2026-06-08 1:51 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-06-08 1:30 [PATCHES v2 00/11] perf tools: Assorted fixes Arnaldo Carvalho de Melo
2026-06-08 1:30 ` [PATCH 01/11] perf tools: Fix get_max_num() size_t underflow on empty sysfs file Arnaldo Carvalho de Melo
2026-06-08 1:45 ` sashiko-bot
2026-06-08 1:30 ` [PATCH 02/11] perf tools: Use scnprintf() in cpu_map__snprint() to prevent overflow Arnaldo Carvalho de Melo
2026-06-08 1:30 ` [PATCH 03/11] perf tools: Use perf_env__get_cpu_topology() in machine__resolve() Arnaldo Carvalho de Melo
2026-06-08 1:51 ` sashiko-bot
2026-06-08 1:30 ` [PATCH 04/11] perf mmap: Fix mbind() maxnode vs bitmap allocation mismatch in aio_bind Arnaldo Carvalho de Melo
2026-06-08 1:30 ` [PATCH 05/11] perf tools: NULL bitmap pointers after bitmap_free() Arnaldo Carvalho de Melo
2026-06-08 1:45 ` sashiko-bot
2026-06-08 1:30 ` [PATCH 06/11] perf sched: Bounds-check prio before test_bit() in timehist Arnaldo Carvalho de Melo
2026-06-08 1:51 ` sashiko-bot [this message]
2026-06-08 1:30 ` [PATCH 07/11] perf sched: Fix idle-hist callchain display using wrong rb_first variant Arnaldo Carvalho de Melo
2026-06-08 1:30 ` [PATCH 08/11] perf tools: Add O_CLOEXEC to open() calls in DSO and ELF code Arnaldo Carvalho de Melo
2026-06-08 1:44 ` sashiko-bot
2026-06-08 1:30 ` [PATCH 09/11] perf bpf: Use scnprintf() in snprintf_hex() and synthesize_bpf_prog_name() Arnaldo Carvalho de Melo
2026-06-08 1:30 ` [PATCH 10/11] perf hists: Fix snprintf() in hists__scnprintf_title() UID filter path Arnaldo Carvalho de Melo
2026-06-08 1:51 ` sashiko-bot
2026-06-08 1:30 ` [PATCH 11/11] perf tools: Use scnprintf() in build_id__snprintf() and hwmon read_events() Arnaldo Carvalho de Melo
2026-06-08 1:54 ` sashiko-bot
-- strict thread matches above, loose matches on Subject: below --
2026-06-07 23:29 [PATCHES v1 00/11] perf tools: Assorted fixes Arnaldo Carvalho de Melo
2026-06-07 23:29 ` [PATCH 06/11] perf sched: Bounds-check prio before test_bit() in timehist Arnaldo Carvalho de Melo
2026-06-07 23:42 ` sashiko-bot
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=20260608015134.A498B1F00893@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