test_stacktrace_map.c 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. // SPDX-License-Identifier: GPL-2.0
  2. // Copyright (c) 2018 Facebook
  3. #include <linux/bpf.h>
  4. #include "bpf_helpers.h"
  5. #ifndef PERF_MAX_STACK_DEPTH
  6. #define PERF_MAX_STACK_DEPTH 127
  7. #endif
  8. struct bpf_map_def SEC("maps") control_map = {
  9. .type = BPF_MAP_TYPE_ARRAY,
  10. .key_size = sizeof(__u32),
  11. .value_size = sizeof(__u32),
  12. .max_entries = 1,
  13. };
  14. struct bpf_map_def SEC("maps") stackid_hmap = {
  15. .type = BPF_MAP_TYPE_HASH,
  16. .key_size = sizeof(__u32),
  17. .value_size = sizeof(__u32),
  18. .max_entries = 16384,
  19. };
  20. struct bpf_map_def SEC("maps") stackmap = {
  21. .type = BPF_MAP_TYPE_STACK_TRACE,
  22. .key_size = sizeof(__u32),
  23. .value_size = sizeof(__u64) * PERF_MAX_STACK_DEPTH,
  24. .max_entries = 16384,
  25. };
  26. struct bpf_map_def SEC("maps") stack_amap = {
  27. .type = BPF_MAP_TYPE_ARRAY,
  28. .key_size = sizeof(__u32),
  29. .value_size = sizeof(__u64) * PERF_MAX_STACK_DEPTH,
  30. .max_entries = 16384,
  31. };
  32. /* taken from /sys/kernel/debug/tracing/events/sched/sched_switch/format */
  33. struct sched_switch_args {
  34. unsigned long long pad;
  35. char prev_comm[16];
  36. int prev_pid;
  37. int prev_prio;
  38. long long prev_state;
  39. char next_comm[16];
  40. int next_pid;
  41. int next_prio;
  42. };
  43. SEC("tracepoint/sched/sched_switch")
  44. int oncpu(struct sched_switch_args *ctx)
  45. {
  46. __u32 max_len = PERF_MAX_STACK_DEPTH * sizeof(__u64);
  47. __u32 key = 0, val = 0, *value_p;
  48. void *stack_p;
  49. value_p = bpf_map_lookup_elem(&control_map, &key);
  50. if (value_p && *value_p)
  51. return 0; /* skip if non-zero *value_p */
  52. /* The size of stackmap and stackid_hmap should be the same */
  53. key = bpf_get_stackid(ctx, &stackmap, 0);
  54. if ((int)key >= 0) {
  55. bpf_map_update_elem(&stackid_hmap, &key, &val, 0);
  56. stack_p = bpf_map_lookup_elem(&stack_amap, &key);
  57. if (stack_p)
  58. bpf_get_stack(ctx, stack_p, max_len, 0);
  59. }
  60. return 0;
  61. }
  62. char _license[] SEC("license") = "GPL";
  63. __u32 _version SEC("version") = 1; /* ignored by tracepoints, required by libbpf.a */