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.
27 lines
648 B
Rust
27 lines
648 B
Rust
#![no_std]
|
|
#![no_main]
|
|
|
|
use aya_ebpf::{bindings::xdp_action::XDP_PASS, macros::xdp, programs::XdpContext};
|
|
|
|
macro_rules! probe {
|
|
($name:ident, ($($arg:ident $(= $value:literal)?),*) ) => {
|
|
#[xdp($($arg $(= $value)?),*)]
|
|
pub fn $name(_ctx: XdpContext) -> u32 {
|
|
XDP_PASS
|
|
}
|
|
};
|
|
}
|
|
|
|
probe!(xdp_plain, ());
|
|
probe!(xdp_frags, (frags));
|
|
probe!(xdp_cpumap, (map = "cpumap"));
|
|
probe!(xdp_devmap, (map = "devmap"));
|
|
probe!(xdp_frags_cpumap, (frags, map = "cpumap"));
|
|
probe!(xdp_frags_devmap, (frags, map = "devmap"));
|
|
|
|
#[cfg(not(test))]
|
|
#[panic_handler]
|
|
fn panic(_info: &core::panic::PanicInfo) -> ! {
|
|
loop {}
|
|
}
|