blob: da1d69e206452731f613665e971b6cc1da65a3dc [file] [log] [blame]
Alexei Starovoitov1c47910e2016-09-01 18:37:25 -07001/* Copyright (c) 2016 Facebook
2 *
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.
6 */
7#include <linux/ptrace.h>
8#include <linux/version.h>
9#include <uapi/linux/bpf.h>
10#include <uapi/linux/bpf_perf_event.h>
11#include <uapi/linux/perf_event.h>
Toke Høiland-Jørgensen7cf245a2020-01-20 14:06:49 +010012#include <bpf/bpf_helpers.h>
13#include <bpf/bpf_tracing.h>
Alexei Starovoitov1c47910e2016-09-01 18:37:25 -070014
15struct key_t {
16 char comm[TASK_COMM_LEN];
17 u32 kernstack;
18 u32 userstack;
19};
20
21struct bpf_map_def SEC("maps") counts = {
22 .type = BPF_MAP_TYPE_HASH,
23 .key_size = sizeof(struct key_t),
24 .value_size = sizeof(u64),
25 .max_entries = 10000,
26};
27
28struct bpf_map_def SEC("maps") stackmap = {
29 .type = BPF_MAP_TYPE_STACK_TRACE,
30 .key_size = sizeof(u32),
31 .value_size = PERF_MAX_STACK_DEPTH * sizeof(u64),
32 .max_entries = 10000,
33};
34
35#define KERN_STACKID_FLAGS (0 | BPF_F_FAST_STACK_CMP)
36#define USER_STACKID_FLAGS (0 | BPF_F_FAST_STACK_CMP | BPF_F_USER_STACK)
37
38SEC("perf_event")
39int bpf_prog1(struct bpf_perf_event_data *ctx)
40{
Yonghong Song81b9cf82017-10-05 09:19:23 -070041 char time_fmt1[] = "Time Enabled: %llu, Time Running: %llu";
42 char time_fmt2[] = "Get Time Failed, ErrCode: %d";
Teng Qin12fe1222018-03-06 10:55:02 -080043 char addr_fmt[] = "Address recorded on event: %llx";
Alexei Starovoitov1c47910e2016-09-01 18:37:25 -070044 char fmt[] = "CPU-%d period %lld ip %llx";
45 u32 cpu = bpf_get_smp_processor_id();
Yonghong Song81b9cf82017-10-05 09:19:23 -070046 struct bpf_perf_event_value value_buf;
Alexei Starovoitov1c47910e2016-09-01 18:37:25 -070047 struct key_t key;
48 u64 *val, one = 1;
Yonghong Song81b9cf82017-10-05 09:19:23 -070049 int ret;
Alexei Starovoitov1c47910e2016-09-01 18:37:25 -070050
51 if (ctx->sample_period < 10000)
52 /* ignore warmup */
53 return 0;
54 bpf_get_current_comm(&key.comm, sizeof(key.comm));
55 key.kernstack = bpf_get_stackid(ctx, &stackmap, KERN_STACKID_FLAGS);
56 key.userstack = bpf_get_stackid(ctx, &stackmap, USER_STACKID_FLAGS);
57 if ((int)key.kernstack < 0 && (int)key.userstack < 0) {
58 bpf_trace_printk(fmt, sizeof(fmt), cpu, ctx->sample_period,
Michael Holzheu2dbb4c02016-11-28 13:48:30 +010059 PT_REGS_IP(&ctx->regs));
Alexei Starovoitov1c47910e2016-09-01 18:37:25 -070060 return 0;
61 }
62
Yonghong Song81b9cf82017-10-05 09:19:23 -070063 ret = bpf_perf_prog_read_value(ctx, (void *)&value_buf, sizeof(struct bpf_perf_event_value));
64 if (!ret)
65 bpf_trace_printk(time_fmt1, sizeof(time_fmt1), value_buf.enabled, value_buf.running);
66 else
67 bpf_trace_printk(time_fmt2, sizeof(time_fmt2), ret);
68
Teng Qin12fe1222018-03-06 10:55:02 -080069 if (ctx->addr != 0)
70 bpf_trace_printk(addr_fmt, sizeof(addr_fmt), ctx->addr);
71
Alexei Starovoitov1c47910e2016-09-01 18:37:25 -070072 val = bpf_map_lookup_elem(&counts, &key);
73 if (val)
74 (*val)++;
75 else
76 bpf_map_update_elem(&counts, &key, &one, BPF_NOEXIST);
77 return 0;
78}
79
80char _license[] SEC("license") = "GPL";