spintest.bpf.c 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. /* Copyright (c) 2016, Facebook
  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. #ifndef PERF_MAX_STACK_DEPTH
  12. #define PERF_MAX_STACK_DEPTH 127
  13. #endif
  14. struct {
  15. __uint(type, BPF_MAP_TYPE_HASH);
  16. __type(key, long);
  17. __type(value, long);
  18. __uint(max_entries, 1024);
  19. } my_map SEC(".maps");
  20. struct {
  21. __uint(type, BPF_MAP_TYPE_PERCPU_HASH);
  22. __uint(key_size, sizeof(long));
  23. __uint(value_size, sizeof(long));
  24. __uint(max_entries, 1024);
  25. } my_map2 SEC(".maps");
  26. struct {
  27. __uint(type, BPF_MAP_TYPE_STACK_TRACE);
  28. __uint(key_size, sizeof(u32));
  29. __uint(value_size, PERF_MAX_STACK_DEPTH * sizeof(u64));
  30. __uint(max_entries, 10000);
  31. } stackmap SEC(".maps");
  32. #define PROG(foo) \
  33. int foo(struct pt_regs *ctx) \
  34. { \
  35. long v = PT_REGS_IP(ctx), *val; \
  36. \
  37. val = bpf_map_lookup_elem(&my_map, &v); \
  38. bpf_map_update_elem(&my_map, &v, &v, BPF_ANY); \
  39. bpf_map_update_elem(&my_map2, &v, &v, BPF_ANY); \
  40. bpf_map_delete_elem(&my_map2, &v); \
  41. bpf_get_stackid(ctx, &stackmap, BPF_F_REUSE_STACKID); \
  42. return 0; \
  43. }
  44. /* add kprobes to all possible *spin* functions */
  45. SEC("kprobe.multi/spin_*lock*")PROG(spin_lock)
  46. SEC("kprobe.multi/*_spin_on_owner")PROG(spin_on_owner)
  47. SEC("kprobe.multi/_raw_spin_*lock*")PROG(raw_spin_lock)
  48. /* and to inner bpf helpers */
  49. SEC("kprobe/htab_map_update_elem")PROG(p15)
  50. SEC("kprobe/__htab_percpu_map_update_elem")PROG(p16)
  51. SEC("kprobe/htab_map_alloc")PROG(p17)
  52. char _license[] SEC("license") = "GPL";
  53. u32 _version SEC("version") = LINUX_VERSION_CODE;