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.
155 lines
4.4 KiB
Rust
155 lines
4.4 KiB
Rust
1 year ago
|
use std::borrow::Cow;
|
||
|
|
||
|
use proc_macro2::TokenStream;
|
||
|
use proc_macro_error::abort;
|
||
|
use quote::quote;
|
||
|
use syn::{Ident, ItemFn, Result};
|
||
|
|
||
|
pub(crate) struct CgroupSock {
|
||
|
item: ItemFn,
|
||
|
attach_type: String,
|
||
|
}
|
||
|
|
||
|
impl CgroupSock {
|
||
|
pub(crate) fn parse(attrs: TokenStream, item: TokenStream) -> Result<CgroupSock> {
|
||
1 year ago
|
if attrs.is_empty() {
|
||
|
abort!(attrs, "missing attach type")
|
||
|
}
|
||
1 year ago
|
let item: ItemFn = syn::parse2(item)?;
|
||
|
let attach_type: Ident = syn::parse2(attrs)?;
|
||
|
match attach_type.to_string().as_str() {
|
||
|
"post_bind4" | "post_bind6" | "sock_create" | "sock_release" => (),
|
||
|
_ => abort!(attach_type, "invalid attach type"),
|
||
|
}
|
||
|
Ok(CgroupSock {
|
||
|
item,
|
||
|
attach_type: attach_type.to_string(),
|
||
|
})
|
||
|
}
|
||
|
|
||
|
pub(crate) fn expand(&self) -> Result<TokenStream> {
|
||
|
let section_name: Cow<'_, _> = format!("cgroup/{}", self.attach_type).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]
|
||
8 months ago
|
#fn_vis fn #fn_name(ctx: *mut ::aya_ebpf::bindings::bpf_sock) -> i32 {
|
||
|
return #fn_name(::aya_ebpf::programs::SockContext::new(ctx));
|
||
1 year ago
|
|
||
|
#item
|
||
|
}
|
||
|
})
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#[cfg(test)]
|
||
|
mod tests {
|
||
|
use syn::parse_quote;
|
||
|
|
||
1 year ago
|
use super::*;
|
||
|
|
||
1 year ago
|
#[test]
|
||
|
fn cgroup_sock_post_bind4() {
|
||
|
let prog = CgroupSock::parse(
|
||
|
parse_quote!(post_bind4),
|
||
|
parse_quote!(
|
||
|
fn foo(ctx: SockContext) -> i32 {
|
||
|
0
|
||
|
}
|
||
|
),
|
||
|
)
|
||
|
.unwrap();
|
||
|
let expanded = prog.expand().unwrap();
|
||
|
let expected = quote! {
|
||
|
#[no_mangle]
|
||
|
#[link_section = "cgroup/post_bind4"]
|
||
8 months ago
|
fn foo(ctx: *mut ::aya_ebpf::bindings::bpf_sock) -> i32 {
|
||
|
return foo(::aya_ebpf::programs::SockContext::new(ctx));
|
||
1 year ago
|
|
||
|
fn foo(ctx: SockContext) -> i32 {
|
||
|
0
|
||
|
}
|
||
|
}
|
||
|
};
|
||
|
assert_eq!(expected.to_string(), expanded.to_string());
|
||
|
}
|
||
|
|
||
|
#[test]
|
||
|
fn cgroup_sock_post_bind6() {
|
||
|
let prog = CgroupSock::parse(
|
||
|
parse_quote!(post_bind6),
|
||
|
parse_quote!(
|
||
|
fn foo(ctx: SockContext) -> i32 {
|
||
|
0
|
||
|
}
|
||
|
),
|
||
|
)
|
||
|
.unwrap();
|
||
|
let expanded = prog.expand().unwrap();
|
||
|
let expected = quote! {
|
||
|
#[no_mangle]
|
||
|
#[link_section = "cgroup/post_bind6"]
|
||
8 months ago
|
fn foo(ctx: *mut ::aya_ebpf::bindings::bpf_sock) -> i32 {
|
||
|
return foo(::aya_ebpf::programs::SockContext::new(ctx));
|
||
1 year ago
|
|
||
|
fn foo(ctx: SockContext) -> i32 {
|
||
|
0
|
||
|
}
|
||
|
}
|
||
|
};
|
||
|
assert_eq!(expected.to_string(), expanded.to_string());
|
||
|
}
|
||
|
#[test]
|
||
|
fn cgroup_sock_sock_create() {
|
||
|
let prog = CgroupSock::parse(
|
||
|
parse_quote!(sock_create),
|
||
|
parse_quote!(
|
||
|
fn foo(ctx: SockContext) -> i32 {
|
||
|
0
|
||
|
}
|
||
|
),
|
||
|
)
|
||
|
.unwrap();
|
||
|
let expanded = prog.expand().unwrap();
|
||
|
let expected = quote! {
|
||
|
#[no_mangle]
|
||
|
#[link_section = "cgroup/sock_create"]
|
||
8 months ago
|
fn foo(ctx: *mut ::aya_ebpf::bindings::bpf_sock) -> i32 {
|
||
|
return foo(::aya_ebpf::programs::SockContext::new(ctx));
|
||
1 year ago
|
|
||
|
fn foo(ctx: SockContext) -> i32 {
|
||
|
0
|
||
|
}
|
||
|
}
|
||
|
};
|
||
|
assert_eq!(expected.to_string(), expanded.to_string());
|
||
|
}
|
||
|
#[test]
|
||
|
fn cgroup_sock_sock_release() {
|
||
|
let prog = CgroupSock::parse(
|
||
|
parse_quote!(sock_release),
|
||
|
parse_quote!(
|
||
|
fn foo(ctx: SockContext) -> i32 {
|
||
|
0
|
||
|
}
|
||
|
),
|
||
|
)
|
||
|
.unwrap();
|
||
|
let expanded = prog.expand().unwrap();
|
||
|
let expected = quote! {
|
||
|
#[no_mangle]
|
||
|
#[link_section = "cgroup/sock_release"]
|
||
8 months ago
|
fn foo(ctx: *mut ::aya_ebpf::bindings::bpf_sock) -> i32 {
|
||
|
return foo(::aya_ebpf::programs::SockContext::new(ctx));
|
||
1 year ago
|
|
||
|
fn foo(ctx: SockContext) -> i32 {
|
||
|
0
|
||
|
}
|
||
|
}
|
||
|
};
|
||
|
assert_eq!(expected.to_string(), expanded.to_string());
|
||
|
}
|
||
|
}
|