1 /* Copyright (c) 2013-2015 PLUMgrid, http://plumgrid.com
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.
8 #include <linux/version.h>
9 #include <bpf/bpf_helpers.h>
10 #include <bpf/bpf_tracing.h>
11 #include <bpf/bpf_core_read.h>
14 __uint(type, BPF_MAP_TYPE_HASH);
17 __uint(max_entries, 1024);
18 } my_map SEC(".maps");
20 /* kprobe is NOT a stable ABI. If kernel internals change this bpf+kprobe
21 * example will no longer be meaningful
23 SEC("kprobe/kfree_skb_reason")
24 int bpf_prog2(struct pt_regs *ctx)
30 /* read ip of kfree_skb_reason caller.
31 * non-portable version of __builtin_return_address(0)
33 BPF_KPROBE_READ_RET_IP(loc, ctx);
35 value = bpf_map_lookup_elem(&my_map, &loc);
39 bpf_map_update_elem(&my_map, &loc, &init_val, BPF_ANY);
43 static unsigned int log2(unsigned int v)
48 r = (v > 0xFFFF) << 4; v >>= r;
49 shift = (v > 0xFF) << 3; v >>= shift; r |= shift;
50 shift = (v > 0xF) << 2; v >>= shift; r |= shift;
51 shift = (v > 0x3) << 1; v >>= shift; r |= shift;
56 static unsigned int log2l(unsigned long v)
58 unsigned int hi = v >> 32;
73 __uint(type, BPF_MAP_TYPE_PERCPU_HASH);
74 __uint(key_size, sizeof(struct hist_key));
75 __uint(value_size, sizeof(long));
76 __uint(max_entries, 1024);
77 } my_hist_map SEC(".maps");
80 int BPF_KSYSCALL(bpf_prog3, unsigned int fd, const char *buf, size_t count)
86 key.index = log2l(count);
87 key.pid_tgid = bpf_get_current_pid_tgid();
88 key.uid_gid = bpf_get_current_uid_gid();
89 bpf_get_current_comm(&key.comm, sizeof(key.comm));
91 value = bpf_map_lookup_elem(&my_hist_map, &key);
93 __sync_fetch_and_add(value, 1);
95 bpf_map_update_elem(&my_hist_map, &key, &init_val, BPF_ANY);
98 char _license[] SEC("license") = "GPL";
99 u32 _version SEC("version") = LINUX_VERSION_CODE;