1 // SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2 /* Copyright (C) 2018 Netronome Systems, Inc. */
3 /* This program is free software; you can redistribute it and/or
4 * modify it under the terms of version 2 of the GNU General Public
5 * License as published by the Free Software Foundation.
9 #include <bpf/libbpf.h>
18 #include <linux/bpf.h>
19 #include <linux/perf_event.h>
20 #include <sys/ioctl.h>
22 #include <sys/syscall.h>
28 #define MMAP_PAGE_CNT 16
30 static volatile bool stop;
32 struct event_ring_info {
39 struct perf_event_sample {
40 struct perf_event_header header;
46 struct perf_event_lost {
47 struct perf_event_header header;
52 static void int_exit(int signo)
54 fprintf(stderr, "Stopping...\n");
58 struct event_pipe_ctx {
64 static enum bpf_perf_event_ret
65 print_bpf_output(void *private_data, int cpu, struct perf_event_header *event)
67 struct perf_event_sample *e = container_of(event,
68 struct perf_event_sample,
70 struct perf_event_lost *lost = container_of(event,
71 struct perf_event_lost,
73 struct event_pipe_ctx *ctx = private_data;
74 int idx = ctx->all_cpus ? cpu : ctx->idx;
77 jsonw_start_object(json_wtr);
78 jsonw_name(json_wtr, "type");
79 jsonw_uint(json_wtr, e->header.type);
80 jsonw_name(json_wtr, "cpu");
81 jsonw_uint(json_wtr, cpu);
82 jsonw_name(json_wtr, "index");
83 jsonw_uint(json_wtr, idx);
84 if (e->header.type == PERF_RECORD_SAMPLE) {
85 jsonw_name(json_wtr, "timestamp");
86 jsonw_uint(json_wtr, e->time);
87 jsonw_name(json_wtr, "data");
88 print_data_json(e->data, e->size);
89 } else if (e->header.type == PERF_RECORD_LOST) {
90 jsonw_name(json_wtr, "lost");
91 jsonw_start_object(json_wtr);
92 jsonw_name(json_wtr, "id");
93 jsonw_uint(json_wtr, lost->id);
94 jsonw_name(json_wtr, "count");
95 jsonw_uint(json_wtr, lost->lost);
96 jsonw_end_object(json_wtr);
98 jsonw_end_object(json_wtr);
100 if (e->header.type == PERF_RECORD_SAMPLE) {
101 printf("== @%lld.%09lld CPU: %d index: %d =====\n",
102 e->time / 1000000000ULL, e->time % 1000000000ULL,
104 fprint_hex(stdout, e->data, e->size, " ");
106 } else if (e->header.type == PERF_RECORD_LOST) {
107 printf("lost %lld events\n", lost->lost);
109 printf("unknown event type=%d size=%d\n",
110 e->header.type, e->header.size);
114 return LIBBPF_PERF_EVENT_CONT;
117 int do_event_pipe(int argc, char **argv)
119 struct perf_event_attr perf_attr = {
120 .sample_type = PERF_SAMPLE_RAW | PERF_SAMPLE_TIME,
121 .type = PERF_TYPE_SOFTWARE,
122 .config = PERF_COUNT_SW_BPF_OUTPUT,
126 struct bpf_map_info map_info = {};
127 struct perf_buffer_raw_opts opts = {};
128 struct event_pipe_ctx ctx = {
133 struct perf_buffer *pb;
137 map_info_len = sizeof(map_info);
138 map_fd = map_parse_fd_and_info(&argc, &argv, &map_info, &map_info_len);
142 if (map_info.type != BPF_MAP_TYPE_PERF_EVENT_ARRAY) {
143 p_err("map is not a perf event array");
153 if (is_prefix(*argv, "cpu")) {
157 ctx.cpu = strtoul(*argv, &endptr, 0);
159 p_err("can't parse %s as CPU ID", *argv);
164 } else if (is_prefix(*argv, "index")) {
168 ctx.idx = strtoul(*argv, &endptr, 0);
170 p_err("can't parse %s as index", *argv);
180 ctx.all_cpus = false;
184 if (ctx.idx == -1 || ctx.cpu == -1) {
185 p_err("cpu and index must be specified together");
193 opts.attr = &perf_attr;
194 opts.event_cb = print_bpf_output;
196 opts.cpu_cnt = ctx.all_cpus ? 0 : 1;
197 opts.cpus = &ctx.cpu;
198 opts.map_keys = &ctx.idx;
200 pb = perf_buffer__new_raw(map_fd, MMAP_PAGE_CNT, &opts);
201 err = libbpf_get_error(pb);
203 p_err("failed to create perf buffer: %s (%d)",
208 signal(SIGINT, int_exit);
209 signal(SIGHUP, int_exit);
210 signal(SIGTERM, int_exit);
213 jsonw_start_array(json_wtr);
216 err = perf_buffer__poll(pb, 200);
217 if (err < 0 && err != -EINTR) {
218 p_err("perf buffer polling failed: %s (%d)",
225 jsonw_end_array(json_wtr);
227 perf_buffer__free(pb);
233 perf_buffer__free(pb);