All of lore.kernel.org
 help / color / mirror / Atom feed
From: Arnaldo Carvalho de Melo <acme@kernel.org>
To: sashiko-reviews@lists.linux.dev
Cc: linux-perf-users@vger.kernel.org
Subject: Re: [PATCH 05/11] perf sched: Bounds-check prio before test_bit() in timehist
Date: Wed, 10 Jun 2026 15:28:00 -0300	[thread overview]
Message-ID: <aimssBwELS-gZjlc@x1> (raw)
In-Reply-To: <20260610170401.1B5091F00893@smtp.kernel.org>

On Wed, Jun 10, 2026 at 05:04:00PM +0000, sashiko-bot@kernel.org wrote:
> Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:
> - [Low] The patch introduces a logic error that causes invalid negative priorities (<-1) to bypass the `--prio` filter.
> --
> 
> commit 3165982942697d89513b8b104d95d745a4412391
> Author: Arnaldo Carvalho de Melo <acme@redhat.com>
> 
> perf sched: Bounds-check prio before test_bit() in timehist
> 
> This commit adds a bounds check to timehist_skip_sample() to ensure that
> priority values from untrusted tracepoint data do not exceed MAX_PRIO before
> calling test_bit(). It also updates the sentinel check from != -1 to >= 0.
> 
> > 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 */

Updated the comment to:

-               /* prio comes from untrusted tracepoint data — bounds-check before test_bit */
+               /* negative prio means no info; out-of-range prio can't match the filter */

To address the comment below.

- Arnaldo

> > +		if (prio >= 0 &&
> > +		    (prio >= MAX_PRIO || !test_bit(prio, sched->prio_bitmap))) {
> 
> [Severity: Low]
> Does this logic inadvertently allow invalid negative priorities (less than -1)
> to bypass the --prio filter?
> 
> By explicitly replacing the prio != -1 sentinel check with prio >= 0, the new
> logic evaluates to false for any priority less than -1. This causes the block
> to be bypassed, meaning rc remains false and the invalid negative priority is
> not skipped by the filter.
> 
> Should the check be restructured to ensure that invalid negative priorities
> from crafted or corrupted perf.data files are also properly skipped?
> 
> >  			rc = true;
> >  			sched->skipped_samples++;
> >  		}
> 
> -- 
> Sashiko AI review · https://sashiko.dev/#/patchset/20260610165207.2077258-1-acme@kernel.org?part=5

  reply	other threads:[~2026-06-10 18:28 UTC|newest]

Thread overview: 27+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-06-10 16:51 [PATCHES v5 00/11] perf tools: Assorted fixes Arnaldo Carvalho de Melo
2026-06-10 16:51 ` [PATCH 01/11] perf tools: Fix get_max_num() size_t underflow on empty sysfs file Arnaldo Carvalho de Melo
2026-06-10 17:04   ` sashiko-bot
2026-06-10 16:51 ` [PATCH 02/11] perf tools: Use scnprintf() in cpu_map__snprint() to prevent overflow Arnaldo Carvalho de Melo
2026-06-10 16:51 ` [PATCH 03/11] perf tools: Use perf_env__get_cpu_topology() in machine__resolve() Arnaldo Carvalho de Melo
2026-06-10 17:06   ` Ian Rogers
2026-06-10 17:10   ` sashiko-bot
2026-06-10 16:51 ` [PATCH 04/11] perf tools: NULL bitmap pointers after bitmap_free() Arnaldo Carvalho de Melo
2026-06-10 16:51 ` [PATCH 05/11] perf sched: Bounds-check prio before test_bit() in timehist Arnaldo Carvalho de Melo
2026-06-10 17:04   ` sashiko-bot
2026-06-10 18:28     ` Arnaldo Carvalho de Melo [this message]
2026-06-10 16:52 ` [PATCH 06/11] perf sched: Fix idle-hist callchain display using wrong rb_first variant Arnaldo Carvalho de Melo
2026-06-10 17:10   ` sashiko-bot
2026-06-10 16:52 ` [PATCH 07/11] perf tools: Add O_CLOEXEC to open() calls in DSO and ELF code Arnaldo Carvalho de Melo
2026-06-10 17:10   ` sashiko-bot
2026-06-10 16:52 ` [PATCH 08/11] perf bpf: Use scnprintf() in snprintf_hex() and synthesize_bpf_prog_name() Arnaldo Carvalho de Melo
2026-06-10 17:18   ` sashiko-bot
2026-06-10 16:52 ` [PATCH 09/11] perf hists: Fix snprintf() in hists__scnprintf_title() UID filter path Arnaldo Carvalho de Melo
2026-06-10 16:52 ` [PATCH 10/11] perf tools: Use scnprintf() in build_id__snprintf() and hwmon read_events() Arnaldo Carvalho de Melo
2026-06-10 17:09   ` Ian Rogers
2026-06-10 17:17   ` sashiko-bot
2026-06-10 18:12     ` Arnaldo Carvalho de Melo
2026-06-10 16:52 ` [PATCH 11/11] libperf: Document code simplification case for widening struct perf_cpu Arnaldo Carvalho de Melo
2026-06-10 17:24   ` Ian Rogers
  -- strict thread matches above, loose matches on Subject: below --
2026-06-09  1:05 [PATCHES v4 00/11] perf tools: Assorted fixes Arnaldo Carvalho de Melo
2026-06-09  1:05 ` [PATCH 05/11] perf sched: Bounds-check prio before test_bit() in timehist Arnaldo Carvalho de Melo
2026-06-08 20:17 [PATCHES v3 00/11] perf tools: Assorted fixes Arnaldo Carvalho de Melo
2026-06-08 20:17 ` [PATCH 05/11] perf sched: Bounds-check prio before test_bit() in timehist Arnaldo Carvalho de Melo
2026-06-08 21:58   ` Ian Rogers

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=aimssBwELS-gZjlc@x1 \
    --to=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 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.