Linux-perf-users Archive mirror
 help / color / mirror / Atom feed
From: Yabin Cui <yabinc@google.com>
To: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>,
	Ingo Molnar <mingo@redhat.com>,
	 Arnaldo Carvalho de Melo <acme@kernel.org>,
	Mark Rutland <mark.rutland@arm.com>,
	 Alexander Shishkin <alexander.shishkin@linux.intel.com>,
	Jiri Olsa <jolsa@kernel.org>,  Ian Rogers <irogers@google.com>,
	Adrian Hunter <adrian.hunter@intel.com>,
	 linux-perf-users@vger.kernel.org, linux-kernel@vger.kernel.org,
	 bpf@vger.kernel.org
Subject: Re: [PATCH v2] perf/core: Save raw sample data conditionally based on sample type
Date: Thu, 9 May 2024 14:04:31 -0700	[thread overview]
Message-ID: <CALJ9ZPPv6Yj6FrpLY9u0G_4y1Th8BzjM+eTsYJAhRViQuaSfRA@mail.gmail.com> (raw)
In-Reply-To: <CAM9d7cg0vCLf+X30PnmR9wcXT9+taXKntJoeAdWae+_G6mWjvw@mail.gmail.com>

Thanks for reviewing the patch! I will update a v3 patch based on the comments.


On Thu, May 9, 2024 at 12:55 PM Namhyung Kim <namhyung@kernel.org> wrote:
>
> Another thought.
>
> On Thu, May 9, 2024 at 12:45 PM Namhyung Kim <namhyung@kernel.org> wrote:
> >
> > Hello,
> >
> > On Wed, May 1, 2024 at 5:06 PM Yabin Cui <yabinc@google.com> wrote:
> > >
> > > Currently, space for raw sample data is always allocated within sample
> > > records for both BPF output and tracepoint events. This leads to unused
> > > space in sample records when raw sample data is not requested.
> >
> > Oh, I thought it was ok because even if it sets _RAW bit in the
> > data->sample_flags unconditionally, perf_prepare_sample() and
> > perf_output_sample() checks the original event's attr->sample_type
> > so the raw data won't be recorded.
> >
> > But I've realized that it increased data->dyn_size already. :(
> > Which means the sample would have garbage at the end.
> >
> > I need to check if there are other places that made the same
> > mistake for other sample types.
> >
> > >
> > > This patch checks sample type of an event before saving raw sample data
> > > in both BPF output and tracepoint event handling logic. Raw sample data
> > > will only be saved if explicitly requested, reducing overhead when it
> > > is not needed.
> > >
> > > Fixes: 0a9081cf0a11 ("perf/core: Add perf_sample_save_raw_data() helper")
> > > Signed-off-by: Yabin Cui <yabinc@google.com>
> >
> > Acked-by: Namhyung Kim <namhyung@kernel.org>
> >
> > Thanks,
> > Namhyung
> >
> > > ---
> [SNIP]
> > > @@ -10180,13 +10181,18 @@ static void __perf_tp_event_target_task(u64 count, void *record,
> > >         /* Cannot deliver synchronous signal to other task. */
> > >         if (event->attr.sigtrap)
> > >                 return;
> > > -       if (perf_tp_event_match(event, data, regs))
> > > +       if (perf_tp_event_match(event, raw, regs)) {
> > > +               perf_sample_data_init(data, 0, 0);
> > > +               if (event->attr.sample_type & PERF_SAMPLE_RAW)
> > > +                       perf_sample_save_raw_data(data, raw);
>
> Hmm.. to prevent future mistakes, maybe we can move the
> check into the perf_sample_save_raw_data() itself.
>
> And it'd be great if you could do the same for callchain
> and brstack too. :)
>
> Thanks,
> Namhyung
>
>
> > >                 perf_swevent_event(event, count, data, regs);
> > > +       }
> > >  }
> > >
> > >  static void perf_tp_event_target_task(u64 count, void *record,
> > >                                       struct pt_regs *regs,
> > >                                       struct perf_sample_data *data,
> > > +                                     struct perf_raw_record *raw,
> > >                                       struct perf_event_context *ctx)
> > >  {
> > >         unsigned int cpu = smp_processor_id();
> > > @@ -10194,15 +10200,15 @@ static void perf_tp_event_target_task(u64 count, void *record,
> > >         struct perf_event *event, *sibling;
> > >
> > >         perf_event_groups_for_cpu_pmu(event, &ctx->pinned_groups, cpu, pmu) {
> > > -               __perf_tp_event_target_task(count, record, regs, data, event);
> > > +               __perf_tp_event_target_task(count, record, regs, data, raw, event);
> > >                 for_each_sibling_event(sibling, event)
> > > -                       __perf_tp_event_target_task(count, record, regs, data, sibling);
> > > +                       __perf_tp_event_target_task(count, record, regs, data, raw, sibling);
> > >         }
> > >
> > >         perf_event_groups_for_cpu_pmu(event, &ctx->flexible_groups, cpu, pmu) {
> > > -               __perf_tp_event_target_task(count, record, regs, data, event);
> > > +               __perf_tp_event_target_task(count, record, regs, data, raw, event);
> > >                 for_each_sibling_event(sibling, event)
> > > -                       __perf_tp_event_target_task(count, record, regs, data, sibling);
> > > +                       __perf_tp_event_target_task(count, record, regs, data, raw, sibling);
> > >         }
> > >  }
> > >
> > > @@ -10220,15 +10226,10 @@ void perf_tp_event(u16 event_type, u64 count, void *record, int entry_size,
> > >                 },
> > >         };
> > >
> > > -       perf_sample_data_init(&data, 0, 0);
> > > -       perf_sample_save_raw_data(&data, &raw);
> > > -
> > >         perf_trace_buf_update(record, event_type);
> > >
> > >         hlist_for_each_entry_rcu(event, head, hlist_entry) {
> > > -               if (perf_tp_event_match(event, &data, regs)) {
> > > -                       perf_swevent_event(event, count, &data, regs);
> > > -
> > > +               if (perf_tp_event_match(event, &raw, regs)) {
> > >                         /*
> > >                          * Here use the same on-stack perf_sample_data,
> > >                          * some members in data are event-specific and
> > > @@ -10238,7 +10239,9 @@ void perf_tp_event(u16 event_type, u64 count, void *record, int entry_size,
> > >                          * because data->sample_flags is set.
> > >                          */
> > >                         perf_sample_data_init(&data, 0, 0);
> > > -                       perf_sample_save_raw_data(&data, &raw);
> > > +                       if (event->attr.sample_type & PERF_SAMPLE_RAW)
> > > +                               perf_sample_save_raw_data(&data, &raw);
> > > +                       perf_swevent_event(event, count, &data, regs);
> > >                 }
> > >         }
> > >
> > > @@ -10255,7 +10258,7 @@ void perf_tp_event(u16 event_type, u64 count, void *record, int entry_size,
> > >                         goto unlock;
> > >
> > >                 raw_spin_lock(&ctx->lock);
> > > -               perf_tp_event_target_task(count, record, regs, &data, ctx);
> > > +               perf_tp_event_target_task(count, record, regs, &data, &raw, ctx);
> > >                 raw_spin_unlock(&ctx->lock);
> > >  unlock:
> > >                 rcu_read_unlock();
> > > diff --git a/kernel/trace/bpf_trace.c b/kernel/trace/bpf_trace.c
> > > index 9dc605f08a23..4b3ff71b4c0a 100644
> > > --- a/kernel/trace/bpf_trace.c
> > > +++ b/kernel/trace/bpf_trace.c
> > > @@ -620,7 +620,8 @@ static const struct bpf_func_proto bpf_perf_event_read_value_proto = {
> > >
> > >  static __always_inline u64
> > >  __bpf_perf_event_output(struct pt_regs *regs, struct bpf_map *map,
> > > -                       u64 flags, struct perf_sample_data *sd)
> > > +                       u64 flags, struct perf_raw_record *raw,
> > > +                       struct perf_sample_data *sd)
> > >  {
> > >         struct bpf_array *array = container_of(map, struct bpf_array, map);
> > >         unsigned int cpu = smp_processor_id();
> > > @@ -645,6 +646,9 @@ __bpf_perf_event_output(struct pt_regs *regs, struct bpf_map *map,
> > >         if (unlikely(event->oncpu != cpu))
> > >                 return -EOPNOTSUPP;
> > >
> > > +       if (event->attr.sample_type & PERF_SAMPLE_RAW)
> > > +               perf_sample_save_raw_data(sd, raw);
> > > +
> > >         return perf_event_output(event, sd, regs);
> > >  }
> > >
> > > @@ -688,9 +692,8 @@ BPF_CALL_5(bpf_perf_event_output, struct pt_regs *, regs, struct bpf_map *, map,
> > >         }
> > >
> > >         perf_sample_data_init(sd, 0, 0);
> > > -       perf_sample_save_raw_data(sd, &raw);
> > >
> > > -       err = __bpf_perf_event_output(regs, map, flags, sd);
> > > +       err = __bpf_perf_event_output(regs, map, flags, &raw, sd);
> > >  out:
> > >         this_cpu_dec(bpf_trace_nest_level);
> > >         preempt_enable();
> > > @@ -749,9 +752,8 @@ u64 bpf_event_output(struct bpf_map *map, u64 flags, void *meta, u64 meta_size,
> > >
> > >         perf_fetch_caller_regs(regs);
> > >         perf_sample_data_init(sd, 0, 0);
> > > -       perf_sample_save_raw_data(sd, &raw);
> > >
> > > -       ret = __bpf_perf_event_output(regs, map, flags, sd);
> > > +       ret = __bpf_perf_event_output(regs, map, flags, &raw, sd);
> > >  out:
> > >         this_cpu_dec(bpf_event_output_nest_level);
> > >         preempt_enable();
> > > --
> > > 2.45.0.rc0.197.gbae5840b3b-goog
> > >

      reply	other threads:[~2024-05-09 21:04 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-05-02  0:06 [PATCH v2] perf/core: Save raw sample data conditionally based on sample type Yabin Cui
2024-05-09 19:45 ` Namhyung Kim
2024-05-09 19:55   ` Namhyung Kim
2024-05-09 21:04     ` Yabin Cui [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=CALJ9ZPPv6Yj6FrpLY9u0G_4y1Th8BzjM+eTsYJAhRViQuaSfRA@mail.gmail.com \
    --to=yabinc@google.com \
    --cc=acme@kernel.org \
    --cc=adrian.hunter@intel.com \
    --cc=alexander.shishkin@linux.intel.com \
    --cc=bpf@vger.kernel.org \
    --cc=irogers@google.com \
    --cc=jolsa@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-perf-users@vger.kernel.org \
    --cc=mark.rutland@arm.com \
    --cc=mingo@redhat.com \
    --cc=namhyung@kernel.org \
    --cc=peterz@infradead.org \
    /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;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).