From: Peter Zijlstra <peterz@infradead.org>
To: Alexei Starovoitov <ast@fb.com>
Cc: "David S . Miller" <davem@davemloft.net>,
Brendan Gregg <bgregg@netflix.com>,
Daniel Borkmann <daniel@iogearbox.net>,
Arnaldo Carvalho de Melo <acme@infradead.org>,
Wang Nan <wangnan0@huawei.com>,
netdev@vger.kernel.org, linux-kernel@vger.kernel.org,
kernel-team@fb.com
Subject: Re: [PATCH net-next 4/6] perf, bpf: add perf events core support for BPF_PROG_TYPE_PERF_EVENT programs
Date: Mon, 29 Aug 2016 14:17:18 +0200 [thread overview]
Message-ID: <20160829121718.GN10153@twins.programming.kicks-ass.net> (raw)
In-Reply-To: <1472265084-1767670-5-git-send-email-ast@fb.com>
On Fri, Aug 26, 2016 at 07:31:22PM -0700, Alexei Starovoitov wrote:
> +static int perf_event_set_bpf_handler(struct perf_event *event, u32 prog_fd)
> +{
> + struct bpf_prog *prog;
> +
> + if (event->overflow_handler_context)
> + /* hw breakpoint or kernel counter */
> + return -EINVAL;
> +
> + if (event->prog)
> + return -EEXIST;
> +
> + prog = bpf_prog_get_type(prog_fd, BPF_PROG_TYPE_PERF_EVENT);
> + if (IS_ERR(prog))
> + return PTR_ERR(prog);
> +
> + event->prog = prog;
> + event->orig_overflow_handler = READ_ONCE(event->overflow_handler);
> + WRITE_ONCE(event->overflow_handler, bpf_overflow_handler);
> + return 0;
> +}
> +
> +static void perf_event_free_bpf_handler(struct perf_event *event)
> +{
> + struct bpf_prog *prog = event->prog;
> +
> + if (!prog)
> + return;
Does it make sense to do something like:
WARN_ON_ONCE(event->overflow_handler != bpf_overflow_handler);
?
> +
> + WRITE_ONCE(event->overflow_handler, event->orig_overflow_handler);
> + event->prog = NULL;
> + bpf_prog_put(prog);
> +}
> static int perf_event_set_bpf_prog(struct perf_event *event, u32 prog_fd)
> {
> bool is_kprobe, is_tracepoint;
> struct bpf_prog *prog;
>
> + if (event->attr.type == PERF_TYPE_HARDWARE ||
> + event->attr.type == PERF_TYPE_SOFTWARE)
> + return perf_event_set_bpf_handler(event, prog_fd);
> +
> if (event->attr.type != PERF_TYPE_TRACEPOINT)
> return -EINVAL;
>
> @@ -7647,6 +7711,8 @@ static void perf_event_free_bpf_prog(struct perf_event *event)
> {
> struct bpf_prog *prog;
>
> + perf_event_free_bpf_handler(event);
> +
> if (!event->tp_event)
> return;
>
Does it at all make sense to merge the tp_event->prog thing into this
new event->prog?
> #ifdef CONFIG_HAVE_HW_BREAKPOINT
> @@ -8957,6 +9029,14 @@ perf_event_alloc(struct perf_event_attr *attr, int cpu,
> if (!overflow_handler && parent_event) {
> overflow_handler = parent_event->overflow_handler;
> context = parent_event->overflow_handler_context;
> + if (overflow_handler == bpf_overflow_handler) {
> + event->prog = bpf_prog_inc(parent_event->prog);
> + event->orig_overflow_handler = parent_event->orig_overflow_handler;
> + if (IS_ERR(event->prog)) {
> + event->prog = NULL;
> + overflow_handler = NULL;
> + }
> + }
> }
Should we not fail the entire perf_event_alloc() call in that IS_ERR()
case?
next prev parent reply other threads:[~2016-08-29 12:17 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-08-27 2:31 [PATCH net-next 0/6] perf, bpf: add support for bpf in sw/hw perf_events Alexei Starovoitov
2016-08-27 2:31 ` [PATCH net-next 1/6] bpf: support 8-byte metafield access Alexei Starovoitov
2016-08-29 23:44 ` Daniel Borkmann
2016-08-27 2:31 ` [PATCH net-next 2/6] bpf: introduce BPF_PROG_TYPE_PERF_EVENT program type Alexei Starovoitov
2016-08-30 0:14 ` Daniel Borkmann
2016-08-27 2:31 ` [PATCH net-next 3/6] bpf: perf_event progs should only use preallocated maps Alexei Starovoitov
2016-08-30 0:30 ` Daniel Borkmann
2016-08-27 2:31 ` [PATCH net-next 4/6] perf, bpf: add perf events core support for BPF_PROG_TYPE_PERF_EVENT programs Alexei Starovoitov
2016-08-29 12:17 ` Peter Zijlstra [this message]
2016-08-31 3:40 ` Alexei Starovoitov
2016-08-27 2:31 ` [PATCH net-next 5/6] samples/bpf: add perf_event+bpf example Alexei Starovoitov
2016-08-27 2:31 ` [PATCH net-next 6/6] samples/bpf: add sampleip example Alexei Starovoitov
2016-08-29 10:58 ` [PATCH net-next 0/6] perf, bpf: add support for bpf in sw/hw perf_events Peter Zijlstra
2016-08-29 23:08 ` Alexei Starovoitov
2016-08-29 12:19 ` Peter Zijlstra
2016-08-30 2:27 ` Brendan Gregg
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=20160829121718.GN10153@twins.programming.kicks-ass.net \
--to=peterz@infradead.org \
--cc=acme@infradead.org \
--cc=ast@fb.com \
--cc=bgregg@netflix.com \
--cc=daniel@iogearbox.net \
--cc=davem@davemloft.net \
--cc=kernel-team@fb.com \
--cc=linux-kernel@vger.kernel.org \
--cc=netdev@vger.kernel.org \
--cc=wangnan0@huawei.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