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.
7 #include <linux/skbuff.h>
8 #include <linux/netdevice.h>
9 #include <linux/version.h>
10 #include <uapi/linux/bpf.h>
11 #include <bpf/bpf_helpers.h>
12 #include <bpf/bpf_tracing.h>
13 #include "trace_common.h"
16 __uint(type, BPF_MAP_TYPE_HASH);
19 __uint(max_entries, 1024);
20 } my_map SEC(".maps");
22 /* kprobe is NOT a stable ABI. If kernel internals change this bpf+kprobe
23 * example will no longer be meaningful
25 SEC("kprobe/kfree_skb")
26 int bpf_prog2(struct pt_regs *ctx)
32 /* read ip of kfree_skb caller.
33 * non-portable version of __builtin_return_address(0)
35 BPF_KPROBE_READ_RET_IP(loc, ctx);
37 value = bpf_map_lookup_elem(&my_map, &loc);
41 bpf_map_update_elem(&my_map, &loc, &init_val, BPF_ANY);
45 static unsigned int log2(unsigned int v)
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;
58 static unsigned int log2l(unsigned long v)
60 unsigned int hi = v >> 32;
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");
81 SEC("kprobe/" SYSCALL(sys_write))
82 int bpf_prog3(struct pt_regs *ctx)
84 long write_size = PT_REGS_PARM3(ctx);
89 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));
94 value = bpf_map_lookup_elem(&my_hist_map, &key);
96 __sync_fetch_and_add(value, 1);
98 bpf_map_update_elem(&my_hist_map, &key, &init_val, BPF_ANY);
101 char _license[] SEC("license") = "GPL";
102 u32 _version SEC("version") = LINUX_VERSION_CODE;