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.
116 lines
3.2 KiB
Rust
116 lines
3.2 KiB
Rust
2 years ago
|
use std::borrow::Cow;
|
||
|
|
||
|
use proc_macro2::TokenStream;
|
||
|
use proc_macro_error::abort;
|
||
|
use quote::quote;
|
||
|
use syn::{ItemFn, Result};
|
||
|
|
||
|
#[allow(clippy::enum_variant_names)]
|
||
|
#[derive(Debug, Copy, Clone)]
|
||
|
pub(crate) enum SkSkbKind {
|
||
|
StreamVerdict,
|
||
|
StreamParser,
|
||
|
}
|
||
|
|
||
|
impl std::fmt::Display for SkSkbKind {
|
||
|
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
||
|
use SkSkbKind::*;
|
||
|
match self {
|
||
|
StreamVerdict => write!(f, "stream_verdict"),
|
||
|
StreamParser => write!(f, "stream_parser"),
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
pub(crate) struct SkSkb {
|
||
|
kind: SkSkbKind,
|
||
|
item: ItemFn,
|
||
|
}
|
||
|
|
||
|
impl SkSkb {
|
||
|
pub(crate) fn parse(kind: SkSkbKind, attrs: TokenStream, item: TokenStream) -> Result<SkSkb> {
|
||
|
if !attrs.is_empty() {
|
||
|
abort!(attrs, "unexpected attribute");
|
||
|
}
|
||
|
let item = syn::parse2(item)?;
|
||
|
Ok(SkSkb { item, kind })
|
||
|
}
|
||
|
|
||
|
pub(crate) fn expand(&self) -> Result<TokenStream> {
|
||
|
let kind = &self.kind;
|
||
|
let section_name: Cow<'_, _> = format!("sk_skb/{kind}").into();
|
||
|
let fn_name = self.item.sig.ident.clone();
|
||
|
let fn_vis = &self.item.vis;
|
||
|
let item = &self.item;
|
||
|
Ok(quote! {
|
||
|
#[no_mangle]
|
||
|
#[link_section = #section_name]
|
||
|
#fn_vis fn #fn_name(ctx: *mut ::aya_bpf::bindings::__sk_buff) -> u32 {
|
||
|
return #fn_name(::aya_bpf::programs::SkBuffContext::new(ctx));
|
||
|
|
||
|
#item
|
||
|
}
|
||
|
})
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#[cfg(test)]
|
||
|
mod tests {
|
||
|
use super::*;
|
||
|
use syn::parse_quote;
|
||
|
|
||
|
#[test]
|
||
|
fn test_stream_parser() {
|
||
|
let prog = SkSkb::parse(
|
||
|
SkSkbKind::StreamParser,
|
||
|
parse_quote! {},
|
||
|
parse_quote! {
|
||
|
fn prog(ctx: &mut ::aya_bpf::programs::SkBuffContext) -> u32 {
|
||
|
0
|
||
|
}
|
||
|
},
|
||
|
)
|
||
|
.unwrap();
|
||
|
let expanded = prog.expand().unwrap();
|
||
|
let expected = quote! {
|
||
|
#[no_mangle]
|
||
|
#[link_section = "sk_skb/stream_parser"]
|
||
|
fn prog(ctx: *mut ::aya_bpf::bindings::__sk_buff) -> u32 {
|
||
|
return prog(::aya_bpf::programs::SkBuffContext::new(ctx));
|
||
|
|
||
|
fn prog(ctx: &mut ::aya_bpf::programs::SkBuffContext) -> u32 {
|
||
|
0
|
||
|
}
|
||
|
}
|
||
|
};
|
||
|
assert_eq!(expected.to_string(), expanded.to_string());
|
||
|
}
|
||
|
|
||
|
#[test]
|
||
|
fn test_stream_verdict() {
|
||
|
let prog = SkSkb::parse(
|
||
|
SkSkbKind::StreamVerdict,
|
||
|
parse_quote! {},
|
||
|
parse_quote! {
|
||
|
fn prog(ctx: &mut ::aya_bpf::programs::SkBuffContext) -> u32 {
|
||
|
0
|
||
|
}
|
||
|
},
|
||
|
)
|
||
|
.unwrap();
|
||
|
let expanded = prog.expand().unwrap();
|
||
|
let expected = quote! {
|
||
|
#[no_mangle]
|
||
|
#[link_section = "sk_skb/stream_verdict"]
|
||
|
fn prog(ctx: *mut ::aya_bpf::bindings::__sk_buff) -> u32 {
|
||
|
return prog(::aya_bpf::programs::SkBuffContext::new(ctx));
|
||
|
|
||
|
fn prog(ctx: &mut ::aya_bpf::programs::SkBuffContext) -> u32 {
|
||
|
0
|
||
|
}
|
||
|
}
|
||
|
};
|
||
|
assert_eq!(expected.to_string(), expanded.to_string());
|
||
|
}
|
||
|
}
|