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.
78 lines
2.2 KiB
Rust
78 lines
2.2 KiB
Rust
use std::borrow::Cow;
|
|
|
|
use proc_macro2::TokenStream;
|
|
use quote::quote;
|
|
use syn::{ItemFn, Result};
|
|
|
|
use crate::args::{err_on_unknown_args, pop_string_arg};
|
|
|
|
pub(crate) struct RawTracePoint {
|
|
item: ItemFn,
|
|
tracepoint: Option<String>,
|
|
}
|
|
|
|
impl RawTracePoint {
|
|
pub(crate) fn parse(attrs: TokenStream, item: TokenStream) -> Result<RawTracePoint> {
|
|
let item = syn::parse2(item)?;
|
|
let mut args = syn::parse2(attrs)?;
|
|
let tracepoint = pop_string_arg(&mut args, "tracepoint");
|
|
err_on_unknown_args(&args)?;
|
|
Ok(RawTracePoint { item, tracepoint })
|
|
}
|
|
|
|
pub(crate) fn expand(&self) -> Result<TokenStream> {
|
|
let section_name: Cow<'_, _> = if let Some(tracepoint) = &self.tracepoint {
|
|
format!("raw_tp/{}", tracepoint).into()
|
|
} else {
|
|
"raw_tp".into()
|
|
};
|
|
let fn_vis = &self.item.vis;
|
|
let fn_name = self.item.sig.ident.clone();
|
|
let item = &self.item;
|
|
Ok(quote! {
|
|
#[no_mangle]
|
|
#[link_section = #section_name]
|
|
#fn_vis fn #fn_name(ctx: *mut ::core::ffi::c_void) -> u32 {
|
|
let _ = #fn_name(::aya_ebpf::programs::RawTracePointContext::new(ctx));
|
|
return 0;
|
|
|
|
#item
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use syn::parse_quote;
|
|
|
|
use super::*;
|
|
|
|
#[test]
|
|
fn test_raw_tracepoint() {
|
|
let prog = RawTracePoint::parse(
|
|
parse_quote! { tracepoint = "sys_enter" },
|
|
parse_quote! {
|
|
fn prog(ctx: &mut ::aya_ebpf::programs::RawTracePointContext) -> i32 {
|
|
0
|
|
}
|
|
},
|
|
)
|
|
.unwrap();
|
|
let expanded = prog.expand().unwrap();
|
|
let expected = quote! {
|
|
#[no_mangle]
|
|
#[link_section = "raw_tp/sys_enter"]
|
|
fn prog(ctx: *mut ::core::ffi::c_void) -> u32 {
|
|
let _ = prog(::aya_ebpf::programs::RawTracePointContext::new(ctx));
|
|
return 0;
|
|
|
|
fn prog(ctx: &mut ::aya_ebpf::programs::RawTracePointContext) -> i32 {
|
|
0
|
|
}
|
|
}
|
|
};
|
|
assert_eq!(expected.to_string(), expanded.to_string());
|
|
}
|
|
}
|