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.
aya/test/integration-test/src/tests/smoke.rs

86 lines
2.6 KiB
Rust

use aya::{
Ebpf, EbpfLoader,
programs::{Extension, TracePoint, Xdp, XdpFlags, tc},
util::KernelVersion,
};
use crate::utils::NetNsGuard;
#[test_log::test]
fn modprobe() {
// This very simple looking test is actually quite complex.
// The call to tc::qdisc_add_clsact() causes the linux kernel to call into
// `__request_module()`, which via the usermodehelper calls out into the
// `/sbin/modprobe` to load the required kernel module.
// In order for this test to pass, all of that machinery must work
// correctly within the test environment.
let _netns = NetNsGuard::new();
tc::qdisc_add_clsact("lo").unwrap();
}
#[test_log::test]
fn xdp() {
let kernel_version = KernelVersion::current().unwrap();
if kernel_version < KernelVersion::new(5, 18, 0) {
eprintln!(
"skipping test on kernel {kernel_version:?}, support for BPF_F_XDP_HAS_FRAGS was added in 5.18.0; see https://github.com/torvalds/linux/commit/c2f2cdb"
);
return;
}
let _netns = NetNsGuard::new();
let mut bpf = Ebpf::load(crate::PASS).unwrap();
let dispatcher: &mut Xdp = bpf.program_mut("pass").unwrap().try_into().unwrap();
dispatcher.load().unwrap();
dispatcher.attach("lo", XdpFlags::default()).unwrap();
}
#[test_log::test]
fn two_progs() {
let mut bpf = Ebpf::load(crate::TWO_PROGS).unwrap();
let prog_one: &mut TracePoint = bpf
.program_mut("test_tracepoint_one")
.unwrap()
.try_into()
.unwrap();
prog_one.load().unwrap();
prog_one.attach("sched", "sched_switch").unwrap();
let prog_two: &mut TracePoint = bpf
.program_mut("test_tracepoint_two")
.unwrap()
.try_into()
.unwrap();
prog_two.load().unwrap();
prog_two.attach("sched", "sched_switch").unwrap();
}
#[test_log::test]
fn extension() {
let kernel_version = KernelVersion::current().unwrap();
if kernel_version < KernelVersion::new(5, 9, 0) {
eprintln!("skipping test on kernel {kernel_version:?}, XDP uses netlink");
return;
}
let _netns = NetNsGuard::new();
let mut bpf = Ebpf::load(crate::MAIN).unwrap();
let pass: &mut Xdp = bpf.program_mut("xdp_pass").unwrap().try_into().unwrap();
pass.load().unwrap();
pass.attach("lo", XdpFlags::default()).unwrap();
let mut bpf = EbpfLoader::new()
.extension("xdp_drop")
.load(crate::EXT)
.unwrap();
let drop_: &mut Extension = bpf.program_mut("xdp_drop").unwrap().try_into().unwrap();
drop_
.load(pass.fd().unwrap().try_clone().unwrap(), "xdp_pass")
.unwrap();
}