-
Notifications
You must be signed in to change notification settings - Fork 317
/
Copy pathtest.rs
61 lines (50 loc) · 1.11 KB
/
test.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#![no_std]
#![no_main]
use aya_ebpf::{
bindings::xdp_action,
macros::{kprobe, kretprobe, lsm, lsm_cgroup, tracepoint, uprobe, uretprobe, xdp},
programs::{LsmContext, ProbeContext, RetProbeContext, TracePointContext, XdpContext},
};
#[xdp]
pub fn pass(ctx: XdpContext) -> u32 {
match unsafe { try_pass(ctx) } {
Ok(ret) => ret,
Err(_) => xdp_action::XDP_ABORTED,
}
}
unsafe fn try_pass(_ctx: XdpContext) -> Result<u32, u32> {
Ok(xdp_action::XDP_PASS)
}
#[kprobe]
pub fn test_kprobe(_ctx: ProbeContext) -> u32 {
0
}
#[kretprobe]
pub fn test_kretprobe(_ctx: RetProbeContext) -> u32 {
0
}
#[tracepoint]
pub fn test_tracepoint(_ctx: TracePointContext) -> u32 {
0
}
#[uprobe]
pub fn test_uprobe(_ctx: ProbeContext) -> u32 {
0
}
#[uretprobe]
pub fn test_uretprobe(_ctx: RetProbeContext) -> u32 {
0
}
#[lsm_cgroup(hook = "socket_bind")]
pub fn test_lsmcgroup(_ctx: LsmContext) -> i32 {
0
}
#[lsm(hook = "socket_bind")]
pub fn test_lsm(_ctx: LsmContext) -> i32 {
-1
}
#[cfg(not(test))]
#[panic_handler]
fn panic(_info: &core::panic::PanicInfo) -> ! {
loop {}
}