redbpf
redbpf copied to clipboard
Rust library for building and running BPF/eBPF modules
Hey, currently llvm 15 support is missing. error: ``` error: No suitable version of LLVM was found system-wide or pointed to by LLVM_SYS_120_PREFIX. Consider using `llvmenv` to compile an appropriate...
Hello, I'm trying to make this tutorial After compiling, I have this return Compiling probes v0.1.0 (/home/ubuntu/Bureau/redbpf/red/probes) warning: due to multiple output types requested, the explicitly specified output file name...
Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.17.0 to 1.18.5. Release notes Sourced from tokio's releases. Tokio v1.18.3 1.18.3 (September 27, 2022) This release removes the dependency on the once_cell crate to restore the...
Bumps [bumpalo](https://github.com/fitzgen/bumpalo) from 3.9.1 to 3.12.0. Changelog Sourced from bumpalo's changelog. 3.12.0 Released 2023-01-17. Added Added the bumpalo::boxed::Box::bump and bumpalo::collections::String::bump getters to get the underlying Bump that a string or...
Hi! I am trying to write a basic BPF program using this tool and I keep running into a failed to find valid kernel BTF error from libbpf. I am...
BPF probes want the offset of a symbol in the object file. In shared object and executable files, at least, the current logic seems to return the virtual address of...
I'm trying to run this program, which is compiled with clang: ```c #include #define SEC(NAME) __attribute__((section(NAME), used)) SEC("tracepoint/syscalls/sys_enter_execve") int bpf_prog(void *ctx) { char msg[] = "Hello, BPF World!\n"; bpf_trace_printk(msg, sizeof(msg));...
Hello, Thank you for your great work, this library is awesome. I am wondering whether you plan to do a minor release with tracepoints implemented because v2.3.0 does not ?...