blob: 5bc696bac27d767ee12dad11874c9d97b2880e88 [file] [log] [blame]
Alexei Starovoitovd822a192015-03-25 12:49:24 -07001/* Copyright (c) 2013-2015 PLUMgrid, http://plumgrid.com
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/skbuff.h>
8#include <linux/netdevice.h>
9#include <linux/version.h>
10#include <uapi/linux/bpf.h>
Toke Høiland-Jørgensen7cf245a2020-01-20 14:06:49 +010011#include <bpf/bpf_helpers.h>
12#include <bpf/bpf_tracing.h>
Daniel T. Lee63841bc2020-05-16 13:06:05 +090013#include "trace_common.h"
Alexei Starovoitovd822a192015-03-25 12:49:24 -070014
Daniel T. Lee59929cd2020-05-16 13:06:08 +090015struct {
16 __uint(type, BPF_MAP_TYPE_HASH);
17 __type(key, long);
18 __type(value, long);
19 __uint(max_entries, 1024);
20} my_map SEC(".maps");
Alexei Starovoitovd822a192015-03-25 12:49:24 -070021
22/* kprobe is NOT a stable ABI. If kernel internals change this bpf+kprobe
23 * example will no longer be meaningful
24 */
25SEC("kprobe/kfree_skb")
26int bpf_prog2(struct pt_regs *ctx)
27{
28 long loc = 0;
29 long init_val = 1;
30 long *value;
31
Naveen N. Rao138d6152016-04-04 22:31:34 +053032 /* read ip of kfree_skb caller.
Alexei Starovoitovd822a192015-03-25 12:49:24 -070033 * non-portable version of __builtin_return_address(0)
34 */
Naveen N. Rao138d6152016-04-04 22:31:34 +053035 BPF_KPROBE_READ_RET_IP(loc, ctx);
Alexei Starovoitovd822a192015-03-25 12:49:24 -070036
37 value = bpf_map_lookup_elem(&my_map, &loc);
38 if (value)
39 *value += 1;
40 else
41 bpf_map_update_elem(&my_map, &loc, &init_val, BPF_ANY);
42 return 0;
43}
44
45static unsigned int log2(unsigned int v)
46{
47 unsigned int r;
48 unsigned int shift;
49
50 r = (v > 0xFFFF) << 4; v >>= r;
51 shift = (v > 0xFF) << 3; v >>= shift; r |= shift;
52 shift = (v > 0xF) << 2; v >>= shift; r |= shift;
53 shift = (v > 0x3) << 1; v >>= shift; r |= shift;
54 r |= (v >> 1);
55 return r;
56}
57
58static unsigned int log2l(unsigned long v)
59{
60 unsigned int hi = v >> 32;
61 if (hi)
62 return log2(hi) + 32;
63 else
64 return log2(v);
65}
66
Alexei Starovoitovffeedaf2015-06-12 19:39:12 -070067struct hist_key {
68 char comm[16];
69 u64 pid_tgid;
70 u64 uid_gid;
Daniel Borkmann02413ca2016-04-13 00:10:53 +020071 u64 index;
Alexei Starovoitovffeedaf2015-06-12 19:39:12 -070072};
73
Daniel T. Lee59929cd2020-05-16 13:06:08 +090074struct {
75 __uint(type, BPF_MAP_TYPE_PERCPU_HASH);
76 __uint(key_size, sizeof(struct hist_key));
77 __uint(value_size, sizeof(long));
78 __uint(max_entries, 1024);
79} my_hist_map SEC(".maps");
Alexei Starovoitovd822a192015-03-25 12:49:24 -070080
Daniel T. Lee63841bc2020-05-16 13:06:05 +090081SEC("kprobe/" SYSCALL(sys_write))
Alexei Starovoitovd822a192015-03-25 12:49:24 -070082int bpf_prog3(struct pt_regs *ctx)
83{
Michael Holzheud9125572015-07-06 16:20:07 +020084 long write_size = PT_REGS_PARM3(ctx);
Alexei Starovoitovd822a192015-03-25 12:49:24 -070085 long init_val = 1;
86 long *value;
Daniel Borkmann02413ca2016-04-13 00:10:53 +020087 struct hist_key key;
Alexei Starovoitovd822a192015-03-25 12:49:24 -070088
Alexei Starovoitovffeedaf2015-06-12 19:39:12 -070089 key.index = log2l(write_size);
90 key.pid_tgid = bpf_get_current_pid_tgid();
91 key.uid_gid = bpf_get_current_uid_gid();
92 bpf_get_current_comm(&key.comm, sizeof(key.comm));
93
94 value = bpf_map_lookup_elem(&my_hist_map, &key);
Alexei Starovoitovd822a192015-03-25 12:49:24 -070095 if (value)
96 __sync_fetch_and_add(value, 1);
Alexei Starovoitovffeedaf2015-06-12 19:39:12 -070097 else
98 bpf_map_update_elem(&my_hist_map, &key, &init_val, BPF_ANY);
Alexei Starovoitovd822a192015-03-25 12:49:24 -070099 return 0;
100}
101char _license[] SEC("license") = "GPL";
102u32 _version SEC("version") = LINUX_VERSION_CODE;