1 /* Copyright (c) 2016 Sargun Dhillon <sargun@sargun.me>
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/ptrace.h>
9 #include <uapi/linux/bpf.h>
10 #include <linux/version.h>
11 #include <bpf/bpf_helpers.h>
12 #include <uapi/linux/utsname.h>
13 #include "trace_common.h"
16 __uint(type
, BPF_MAP_TYPE_CGROUP_ARRAY
);
17 __uint(key_size
, sizeof(u32
));
18 __uint(value_size
, sizeof(u32
));
19 __uint(max_entries
, 1);
20 } cgroup_map
SEC(".maps");
23 __uint(type
, BPF_MAP_TYPE_ARRAY
);
26 __uint(max_entries
, 1);
27 } perf_map
SEC(".maps");
29 /* Writes the last PID that called sync to a map at index 0 */
30 SEC("kprobe/" SYSCALL(sys_sync
))
31 int bpf_prog1(struct pt_regs
*ctx
)
33 u64 pid
= bpf_get_current_pid_tgid();
36 if (!bpf_current_task_under_cgroup(&cgroup_map
, 0))
39 bpf_map_update_elem(&perf_map
, &idx
, &pid
, BPF_ANY
);
43 char _license
[] SEC("license") = "GPL";
44 u32 _version
SEC("version") = LINUX_VERSION_CODE
;