2021-12-04 02:20:26 +01:00
|
|
|
import ./make-test-python.nix ({ pkgs, ... }: {
|
|
|
|
name = "bpf";
|
|
|
|
meta.maintainers = with pkgs.lib.maintainers; [ martinetd ];
|
|
|
|
|
2022-03-21 00:15:30 +01:00
|
|
|
nodes.machine = { pkgs, ... }: {
|
2021-12-04 02:20:26 +01:00
|
|
|
programs.bcc.enable = true;
|
|
|
|
environment.systemPackages = with pkgs; [ bpftrace ];
|
|
|
|
};
|
|
|
|
|
|
|
|
testScript = ''
|
|
|
|
## bcc
|
|
|
|
# syscount -d 1 stops 1s after probe started so is good for that
|
|
|
|
print(machine.succeed("syscount -d 1"))
|
|
|
|
|
|
|
|
## bpftrace
|
|
|
|
# list probes
|
|
|
|
machine.succeed("bpftrace -l")
|
|
|
|
# simple BEGIN probe (user probe on bpftrace itself)
|
|
|
|
print(machine.succeed("bpftrace -e 'BEGIN { print(\"ok\"); exit(); }'"))
|
|
|
|
# tracepoint
|
2022-02-11 08:55:34 +01:00
|
|
|
print(machine.succeed("bpftrace -e 'tracepoint:syscalls:sys_enter_* { print(probe); exit() }'"))
|
2021-12-04 02:20:26 +01:00
|
|
|
# kprobe
|
|
|
|
print(machine.succeed("bpftrace -e 'kprobe:schedule { print(probe); exit() }'"))
|
2022-02-11 08:55:34 +01:00
|
|
|
# BTF
|
|
|
|
print(machine.succeed("bpftrace -e 'kprobe:schedule { "
|
|
|
|
" printf(\"tgid: %d\", ((struct task_struct*) curtask)->tgid); exit() "
|
|
|
|
"}'"))
|
2023-02-03 05:44:13 +01:00
|
|
|
# module BTF (bpftrace >= 0.17)
|
2023-02-04 05:58:07 +01:00
|
|
|
# test is currently disabled on aarch64 as kfunc does not work there yet
|
|
|
|
# https://github.com/iovisor/bpftrace/issues/2496
|
|
|
|
print(machine.succeed("uname -m | grep aarch64 || "
|
|
|
|
"bpftrace -e 'kfunc:nft_trans_alloc_gfp { "
|
|
|
|
" printf(\"portid: %d\\n\", args->ctx->portid); "
|
2023-02-03 05:44:13 +01:00
|
|
|
"} BEGIN { exit() }'"))
|
2021-12-04 02:20:26 +01:00
|
|
|
'';
|
|
|
|
})
|