test_current_task_under_cgroup_kern.c 1.1 KB

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