blob: 5e11c20ce5ecd9558c4a01f34ad7f994e3418809 [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>
11#include "bpf_helpers.h"
12
13struct bpf_map_def SEC("maps") my_map = {
14 .type = BPF_MAP_TYPE_HASH,
15 .key_size = sizeof(long),
16 .value_size = sizeof(long),
17 .max_entries = 1024,
18};
19
20/* kprobe is NOT a stable ABI. If kernel internals change this bpf+kprobe
21 * example will no longer be meaningful
22 */
23SEC("kprobe/kfree_skb")
24int bpf_prog2(struct pt_regs *ctx)
25{
26 long loc = 0;
27 long init_val = 1;
28 long *value;
29
Naveen N. Rao138d6152016-04-04 22:31:34 +053030 /* read ip of kfree_skb caller.
Alexei Starovoitovd822a192015-03-25 12:49:24 -070031 * non-portable version of __builtin_return_address(0)
32 */
Naveen N. Rao138d6152016-04-04 22:31:34 +053033 BPF_KPROBE_READ_RET_IP(loc, ctx);
Alexei Starovoitovd822a192015-03-25 12:49:24 -070034
35 value = bpf_map_lookup_elem(&my_map, &loc);
36 if (value)
37 *value += 1;
38 else
39 bpf_map_update_elem(&my_map, &loc, &init_val, BPF_ANY);
40 return 0;
41}
42
43static unsigned int log2(unsigned int v)
44{
45 unsigned int r;
46 unsigned int shift;
47
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;
52 r |= (v >> 1);
53 return r;
54}
55
56static unsigned int log2l(unsigned long v)
57{
58 unsigned int hi = v >> 32;
59 if (hi)
60 return log2(hi) + 32;
61 else
62 return log2(v);
63}
64
Alexei Starovoitovffeedaf2015-06-12 19:39:12 -070065struct hist_key {
66 char comm[16];
67 u64 pid_tgid;
68 u64 uid_gid;
Daniel Borkmann02413ca2016-04-13 00:10:53 +020069 u64 index;
Alexei Starovoitovffeedaf2015-06-12 19:39:12 -070070};
71
Alexei Starovoitovd822a192015-03-25 12:49:24 -070072struct bpf_map_def SEC("maps") my_hist_map = {
Alexei Starovoitov30593032016-02-01 22:39:58 -080073 .type = BPF_MAP_TYPE_PERCPU_HASH,
Alexei Starovoitovffeedaf2015-06-12 19:39:12 -070074 .key_size = sizeof(struct hist_key),
Alexei Starovoitovd822a192015-03-25 12:49:24 -070075 .value_size = sizeof(long),
Alexei Starovoitovffeedaf2015-06-12 19:39:12 -070076 .max_entries = 1024,
Alexei Starovoitovd822a192015-03-25 12:49:24 -070077};
78
79SEC("kprobe/sys_write")
80int bpf_prog3(struct pt_regs *ctx)
81{
Michael Holzheud9125572015-07-06 16:20:07 +020082 long write_size = PT_REGS_PARM3(ctx);
Alexei Starovoitovd822a192015-03-25 12:49:24 -070083 long init_val = 1;
84 long *value;
Daniel Borkmann02413ca2016-04-13 00:10:53 +020085 struct hist_key key;
Alexei Starovoitovd822a192015-03-25 12:49:24 -070086
Alexei Starovoitovffeedaf2015-06-12 19:39:12 -070087 key.index = log2l(write_size);
88 key.pid_tgid = bpf_get_current_pid_tgid();
89 key.uid_gid = bpf_get_current_uid_gid();
90 bpf_get_current_comm(&key.comm, sizeof(key.comm));
91
92 value = bpf_map_lookup_elem(&my_hist_map, &key);
Alexei Starovoitovd822a192015-03-25 12:49:24 -070093 if (value)
94 __sync_fetch_and_add(value, 1);
Alexei Starovoitovffeedaf2015-06-12 19:39:12 -070095 else
96 bpf_map_update_elem(&my_hist_map, &key, &init_val, BPF_ANY);
Alexei Starovoitovd822a192015-03-25 12:49:24 -070097 return 0;
98}
99char _license[] SEC("license") = "GPL";
100u32 _version SEC("version") = LINUX_VERSION_CODE;