From: Namhyung Kim <namhyung@kernel.org>
To: Alexei Starovoitov <ast@kernel.org>,
Daniel Borkmann <daniel@iogearbox.net>,
Andrii Nakryiko <andrii@kernel.org>,
Song Liu <songliubraving@fb.com>,
Peter Zijlstra <peterz@infradead.org>
Cc: Martin KaFai Lau <kafai@fb.com>, Yonghong Song <yhs@fb.com>,
John Fastabend <john.fastabend@gmail.com>,
KP Singh <kpsingh@kernel.org>, Hao Luo <haoluo@google.com>,
Stanislav Fomichev <sdf@google.com>,
LKML <linux-kernel@vger.kernel.org>,
bpf@vger.kernel.org, Jiri Olsa <jolsa@kernel.org>,
Steven Rostedt <rostedt@goodmis.org>,
Ingo Molnar <mingo@kernel.org>,
Arnaldo Carvalho de Melo <acme@kernel.org>
Subject: [PATCH bpf-next 2/3] bpf: Add bpf_perf_event_read_sample() helper
Date: Mon, 31 Oct 2022 22:23:39 -0700 [thread overview]
Message-ID: <20221101052340.1210239-3-namhyung@kernel.org> (raw)
In-Reply-To: <20221101052340.1210239-1-namhyung@kernel.org>
The bpf_perf_event_read_sample() helper is to get the specified sample
data (by using PERF_SAMPLE_* flag in the argument) from BPF to make a
decision for filtering on samples. Currently PERF_SAMPLE_IP and
PERF_SAMPLE_DATA flags are supported only.
Signed-off-by: Namhyung Kim <namhyung@kernel.org>
---
include/uapi/linux/bpf.h | 23 ++++++++++++++++
kernel/trace/bpf_trace.c | 49 ++++++++++++++++++++++++++++++++++
tools/include/uapi/linux/bpf.h | 23 ++++++++++++++++
3 files changed, 95 insertions(+)
diff --git a/include/uapi/linux/bpf.h b/include/uapi/linux/bpf.h
index 94659f6b3395..cba501de9373 100644
--- a/include/uapi/linux/bpf.h
+++ b/include/uapi/linux/bpf.h
@@ -5481,6 +5481,28 @@ union bpf_attr {
* 0 on success.
*
* **-ENOENT** if the bpf_local_storage cannot be found.
+ *
+ * long bpf_perf_event_read_sample(struct bpf_perf_event_data *ctx, void *buf, u32 size, u64 sample_flags)
+ * Description
+ * For an eBPF program attached to a perf event, retrieve the
+ * sample data associated to *ctx* and store it in the buffer
+ * pointed by *buf* up to size *size* bytes.
+ *
+ * The *sample_flags* should contain a single value in the
+ * **enum perf_event_sample_format**.
+ * Return
+ * On success, number of bytes written to *buf*. On error, a
+ * negative value.
+ *
+ * The *buf* can be set to **NULL** to return the number of bytes
+ * required to store the requested sample data.
+ *
+ * **-EINVAL** if *sample_flags* is not a PERF_SAMPLE_* flag.
+ *
+ * **-ENOENT** if the associated perf event doesn't have the data.
+ *
+ * **-ENOSYS** if system doesn't support the sample data to be
+ * retrieved.
*/
#define ___BPF_FUNC_MAPPER(FN, ctx...) \
FN(unspec, 0, ##ctx) \
@@ -5695,6 +5717,7 @@ union bpf_attr {
FN(user_ringbuf_drain, 209, ##ctx) \
FN(cgrp_storage_get, 210, ##ctx) \
FN(cgrp_storage_delete, 211, ##ctx) \
+ FN(perf_event_read_sample, 212, ##ctx) \
/* */
/* backwards-compatibility macros for users of __BPF_FUNC_MAPPER that don't
diff --git a/kernel/trace/bpf_trace.c b/kernel/trace/bpf_trace.c
index ce0228c72a93..befd937afa3c 100644
--- a/kernel/trace/bpf_trace.c
+++ b/kernel/trace/bpf_trace.c
@@ -28,6 +28,7 @@
#include <uapi/linux/bpf.h>
#include <uapi/linux/btf.h>
+#include <uapi/linux/perf_event.h>
#include <asm/tlb.h>
@@ -1743,6 +1744,52 @@ static const struct bpf_func_proto bpf_read_branch_records_proto = {
.arg4_type = ARG_ANYTHING,
};
+BPF_CALL_4(bpf_perf_event_read_sample, struct bpf_perf_event_data_kern *, ctx,
+ void *, buf, u32, size, u64, flags)
+{
+ struct perf_sample_data *sd = ctx->data;
+ void *data;
+ u32 to_copy = sizeof(u64);
+
+ /* only allow a single sample flag */
+ if (!is_power_of_2(flags))
+ return -EINVAL;
+
+ /* support reading only already populated info */
+ if (flags & ~sd->sample_flags)
+ return -ENOENT;
+
+ switch (flags) {
+ case PERF_SAMPLE_IP:
+ data = &sd->ip;
+ break;
+ case PERF_SAMPLE_ADDR:
+ data = &sd->addr;
+ break;
+ default:
+ return -ENOSYS;
+ }
+
+ if (!buf)
+ return to_copy;
+
+ if (size < to_copy)
+ to_copy = size;
+
+ memcpy(buf, data, to_copy);
+ return to_copy;
+}
+
+static const struct bpf_func_proto bpf_perf_event_read_sample_proto = {
+ .func = bpf_perf_event_read_sample,
+ .gpl_only = true,
+ .ret_type = RET_INTEGER,
+ .arg1_type = ARG_PTR_TO_CTX,
+ .arg2_type = ARG_PTR_TO_MEM_OR_NULL,
+ .arg3_type = ARG_CONST_SIZE_OR_ZERO,
+ .arg4_type = ARG_ANYTHING,
+};
+
static const struct bpf_func_proto *
pe_prog_func_proto(enum bpf_func_id func_id, const struct bpf_prog *prog)
{
@@ -1759,6 +1806,8 @@ pe_prog_func_proto(enum bpf_func_id func_id, const struct bpf_prog *prog)
return &bpf_read_branch_records_proto;
case BPF_FUNC_get_attach_cookie:
return &bpf_get_attach_cookie_proto_pe;
+ case BPF_FUNC_perf_event_read_sample:
+ return &bpf_perf_event_read_sample_proto;
default:
return bpf_tracing_func_proto(func_id, prog);
}
diff --git a/tools/include/uapi/linux/bpf.h b/tools/include/uapi/linux/bpf.h
index 94659f6b3395..cba501de9373 100644
--- a/tools/include/uapi/linux/bpf.h
+++ b/tools/include/uapi/linux/bpf.h
@@ -5481,6 +5481,28 @@ union bpf_attr {
* 0 on success.
*
* **-ENOENT** if the bpf_local_storage cannot be found.
+ *
+ * long bpf_perf_event_read_sample(struct bpf_perf_event_data *ctx, void *buf, u32 size, u64 sample_flags)
+ * Description
+ * For an eBPF program attached to a perf event, retrieve the
+ * sample data associated to *ctx* and store it in the buffer
+ * pointed by *buf* up to size *size* bytes.
+ *
+ * The *sample_flags* should contain a single value in the
+ * **enum perf_event_sample_format**.
+ * Return
+ * On success, number of bytes written to *buf*. On error, a
+ * negative value.
+ *
+ * The *buf* can be set to **NULL** to return the number of bytes
+ * required to store the requested sample data.
+ *
+ * **-EINVAL** if *sample_flags* is not a PERF_SAMPLE_* flag.
+ *
+ * **-ENOENT** if the associated perf event doesn't have the data.
+ *
+ * **-ENOSYS** if system doesn't support the sample data to be
+ * retrieved.
*/
#define ___BPF_FUNC_MAPPER(FN, ctx...) \
FN(unspec, 0, ##ctx) \
@@ -5695,6 +5717,7 @@ union bpf_attr {
FN(user_ringbuf_drain, 209, ##ctx) \
FN(cgrp_storage_get, 210, ##ctx) \
FN(cgrp_storage_delete, 211, ##ctx) \
+ FN(perf_event_read_sample, 212, ##ctx) \
/* */
/* backwards-compatibility macros for users of __BPF_FUNC_MAPPER that don't
--
2.38.1.273.g43a17bfeac-goog
next prev parent reply other threads:[~2022-11-01 5:23 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-11-01 5:23 [PATCH bpf-next 0/3] bpf: Add bpf_perf_event_read_sample() helper (v1) Namhyung Kim
2022-11-01 5:23 ` [PATCH bpf-next 1/3] perf/core: Prepare sample data before calling BPF Namhyung Kim
2022-11-01 10:03 ` Jiri Olsa
2022-11-04 6:03 ` Namhyung Kim
2022-11-01 5:23 ` Namhyung Kim [this message]
2022-11-01 10:02 ` [PATCH bpf-next 2/3] bpf: Add bpf_perf_event_read_sample() helper Jiri Olsa
2022-11-01 18:26 ` Alexei Starovoitov
2022-11-01 18:46 ` Song Liu
2022-11-01 18:52 ` Alexei Starovoitov
2022-11-01 20:04 ` Song Liu
2022-11-01 22:16 ` Namhyung Kim
2022-11-02 0:13 ` Song Liu
2022-11-02 22:18 ` Namhyung Kim
2022-11-03 18:41 ` Song Liu
2022-11-03 19:45 ` Yonghong Song
2022-11-03 20:55 ` Song Liu
2022-11-03 21:21 ` Yonghong Song
2022-11-04 6:18 ` Namhyung Kim
2022-11-01 5:23 ` [PATCH bpf-next 3/3] bpf: Add perf_event_read_sample test cases Namhyung Kim
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=20221101052340.1210239-3-namhyung@kernel.org \
--to=namhyung@kernel.org \
--cc=acme@kernel.org \
--cc=andrii@kernel.org \
--cc=ast@kernel.org \
--cc=bpf@vger.kernel.org \
--cc=daniel@iogearbox.net \
--cc=haoluo@google.com \
--cc=john.fastabend@gmail.com \
--cc=jolsa@kernel.org \
--cc=kafai@fb.com \
--cc=kpsingh@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@kernel.org \
--cc=peterz@infradead.org \
--cc=rostedt@goodmis.org \
--cc=sdf@google.com \
--cc=songliubraving@fb.com \
--cc=yhs@fb.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