test_current_task_under_cgroup.bpf.c 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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 "vmlinux.h"
  8. #include <linux/version.h>
  9. #include <bpf/bpf_helpers.h>
  10. #include <bpf/bpf_tracing.h>
  11. #include <bpf/bpf_core_read.h>
  12. struct {
  13. __uint(type, BPF_MAP_TYPE_CGROUP_ARRAY);
  14. __uint(key_size, sizeof(u32));
  15. __uint(value_size, sizeof(u32));
  16. __uint(max_entries, 1);
  17. } cgroup_map SEC(".maps");
  18. struct {
  19. __uint(type, BPF_MAP_TYPE_ARRAY);
  20. __type(key, u32);
  21. __type(value, u64);
  22. __uint(max_entries, 1);
  23. } perf_map SEC(".maps");
  24. /* Writes the last PID that called sync to a map at index 0 */
  25. SEC("ksyscall/sync")
  26. int BPF_KSYSCALL(bpf_prog1)
  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;