4
0

uprobe_cookie.rs 481 B

123456789101112131415161718192021
  1. #![no_std]
  2. #![no_main]
  3. use aya_ebpf::{
  4. EbpfContext as _, helpers,
  5. macros::{map, uprobe},
  6. maps::RingBuf,
  7. programs::ProbeContext,
  8. };
  9. #[cfg(not(test))]
  10. extern crate ebpf_panic;
  11. #[map]
  12. static RING_BUF: RingBuf = RingBuf::with_byte_size(0, 0);
  13. #[uprobe]
  14. pub fn uprobe_cookie(ctx: ProbeContext) {
  15. let cookie = unsafe { helpers::bpf_get_attach_cookie(ctx.as_ptr()) };
  16. let cookie_bytes = cookie.to_le_bytes();
  17. let _res = RING_BUF.output(&cookie_bytes, 0);
  18. }