mirror of https://github.com/aya-rs/aya
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.6 KiB
Rust
57 lines
1.6 KiB
Rust
use core::{cell::UnsafeCell, mem};
|
|
|
|
use crate::{
|
|
bindings::{bpf_map_def, bpf_map_type::BPF_MAP_TYPE_STACK_TRACE},
|
|
helpers::bpf_get_stackid,
|
|
maps::PinningType,
|
|
BpfContext,
|
|
};
|
|
|
|
#[repr(transparent)]
|
|
pub struct StackTrace {
|
|
def: UnsafeCell<bpf_map_def>,
|
|
}
|
|
|
|
unsafe impl Sync for StackTrace {}
|
|
|
|
const PERF_MAX_STACK_DEPTH: u32 = 127;
|
|
|
|
impl StackTrace {
|
|
pub const fn with_max_entries(max_entries: u32, flags: u32) -> StackTrace {
|
|
StackTrace {
|
|
def: UnsafeCell::new(bpf_map_def {
|
|
type_: BPF_MAP_TYPE_STACK_TRACE,
|
|
key_size: mem::size_of::<u32>() as u32,
|
|
value_size: mem::size_of::<u64>() as u32 * PERF_MAX_STACK_DEPTH,
|
|
max_entries,
|
|
map_flags: flags,
|
|
id: 0,
|
|
pinning: PinningType::None as u32,
|
|
}),
|
|
}
|
|
}
|
|
|
|
pub const fn pinned(max_entries: u32, flags: u32) -> StackTrace {
|
|
StackTrace {
|
|
def: UnsafeCell::new(bpf_map_def {
|
|
type_: BPF_MAP_TYPE_STACK_TRACE,
|
|
key_size: mem::size_of::<u32>() as u32,
|
|
value_size: mem::size_of::<u64>() as u32 * PERF_MAX_STACK_DEPTH,
|
|
max_entries,
|
|
map_flags: flags,
|
|
id: 0,
|
|
pinning: PinningType::ByName as u32,
|
|
}),
|
|
}
|
|
}
|
|
|
|
pub unsafe fn get_stackid<C: BpfContext>(&self, ctx: &C, flags: u64) -> Result<i64, i64> {
|
|
let ret = bpf_get_stackid(ctx.as_ptr(), self.def.get() as *mut _, flags);
|
|
if ret < 0 {
|
|
Err(ret)
|
|
} else {
|
|
Ok(ret)
|
|
}
|
|
}
|
|
}
|