pass.rs 552 B

1234567891011121314151617181920
  1. #![no_std]
  2. #![no_main]
  3. use aya_ebpf::{bindings::xdp_action, macros::xdp, programs::XdpContext};
  4. #[cfg(not(test))]
  5. extern crate ebpf_panic;
  6. // Note: the `frags` attribute causes this probe to be incompatible with kernel versions < 5.18.0.
  7. // See https://github.com/torvalds/linux/commit/c2f2cdb.
  8. #[xdp(frags)]
  9. pub fn pass(ctx: XdpContext) -> u32 {
  10. match unsafe { try_pass(ctx) } {
  11. Ok(ret) => ret,
  12. Err(_) => xdp_action::XDP_ABORTED,
  13. }
  14. }
  15. unsafe fn try_pass(_ctx: XdpContext) -> Result<u32, u32> {
  16. Ok(xdp_action::XDP_PASS)
  17. }