2 Repos
Dynamic instrumentation points that attach to kernel function entry and exit points.
Distinct from Kernel Function Overwriters: None of the candidates cover the specific kprobe mechanism for non-destructive inspection.
Explore 2 awesome GitHub repositories matching operating systems & systems programming · Kernel Function Kprobes. Refine with filters or upvote what's useful.
Aya is a Rust-native framework for writing, compiling, and loading eBPF programs into the Linux kernel. It provides a complete development environment that eliminates the need for a C toolchain or libbpf, allowing developers to work entirely within the Rust ecosystem. The framework manages the full lifecycle of eBPF programs, including async runtime integration, CO-RE BTF resolution for kernel version portability, ELF-based program loading, and safe kernel memory access. The framework distinguishes itself through its pure Rust compilation pipeline, which compiles Rust source code directly int
Attaches eBPF programs to kernel function entry points via kprobes for custom logic execution.
pwru is a tooling implementation for tracing, filtering, and debugging network packet movements and transformations within the Linux kernel. It functions as an eBPF network packet tracer and debugger used to analyze kernel state and identify where network packets are dropped or redirected. The project provides specialized capabilities for monitoring the packet lifecycle, including tracking packets through NAT transformations and tunnel decapsulation. It includes an eBPF traffic filter that reduces noise by restricting traced packets based on namespaces, interfaces, and kernel function names.
Attaches dynamic instrumentation probes to kernel function entry and exit points to track packets.