123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- 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_ebpf::bindings::__sk_buff) -> u32 {
- return #fn_name(::aya_ebpf::programs::SkBuffContext::new(ctx));
- #item
- }
- })
- }
- }
- #[cfg(test)]
- mod tests {
- use syn::parse_quote;
- use super::*;
- #[test]
- fn test_stream_parser() {
- let prog = SkSkb::parse(
- SkSkbKind::StreamParser,
- parse_quote! {},
- parse_quote! {
- fn prog(ctx: &mut ::aya_ebpf::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_ebpf::bindings::__sk_buff) -> u32 {
- return prog(::aya_ebpf::programs::SkBuffContext::new(ctx));
- fn prog(ctx: &mut ::aya_ebpf::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_ebpf::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_ebpf::bindings::__sk_buff) -> u32 {
- return prog(::aya_ebpf::programs::SkBuffContext::new(ctx));
- fn prog(ctx: &mut ::aya_ebpf::programs::SkBuffContext) -> u32 {
- 0
- }
- }
- };
- assert_eq!(expected.to_string(), expanded.to_string());
- }
- }
|