You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 11, 2023. It is now read-only.
For the first two, I get this failed to find Kernel BTF error and for the last one, Rust bindings return a VmLinuxNotFound but I guess it's coming from the read_elf portion of libbpf rather than read_raw? I am not sure what file it tries to read and fails in the process.
This project currently ships libbpf version 0.6, I also tried libbpf version 1.1 and the libbpf HEAD but I get the same error with all 3 versions of libbpf.
Stacktrace:
emerald :: ~/hobby/dhcp 130 » RUST_BACKTRACE=1REDBPF_VMLINUX=system cargo bpf build
warning: function `print_cargo_bpf_llvm_version` is never used
--> /home/ishan/hobby/redbpf/cargo-bpf/build.rs:5:4
|
5 | fn print_cargo_bpf_llvm_version(){
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: `#[warn(dead_code)]` on by default
warning: `cargo-bpf` (build script) generated 1 warning
Compiling bpf-sys v2.3.0(/home/ishan/hobby/redbpf/bpf-sys)Compiling cargo-bpf v2.3.0(/home/ishan/hobby/redbpf/cargo-bpf)Compiling redbpf-probes v2.3.0(/home/ishan/hobby/redbpf/redbpf-probes)
error: failed to run custom build command for `redbpf-probes v2.3.0(/home/ishan/hobby/redbpf/redbpf-probes)`
Caused by:
process didn't exit successfully: `/home/ishan/hobby/dhcp/target/bpf/release/build/redbpf-probes-e692d5927a744714/build-script-build` (exit status:101)
--- stdout
cargo:rerun-if-changed=include/
cargo:rerun-if-changed=include/bpf_helper_defs.h
cargo:rerun-if-changed=include/bpf_helpers.h
cargo:rerun-if-changed=include/bpf_iter.h
cargo:rerun-if-changed=include/kernel_supplement.h
cargo:rerun-if-changed=include/redbpf_helpers.h
cargo:rerun-if-changed=include/vmlinux_supplement.h
cargo:rerun-if-changed=include/xdp.h
cargo:rerun-if-env-changed=KERNEL_SOURCE
cargo:rerun-if-env-changed=KERNEL_VERSION
cargo:rerun-if-env-changed=REDBPF_VMLINUXJan0619:13:10.707DEBUG build_script_build:Generating bindings with BTF of vmlinux
--- stderr
libbpf: failed to find valid kernel BTF
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: error on bpf_bindgen::get_builder_vmlinux: error on vmlinux_btf_dump:VmlinuxNotFoundStack backtrace:0: anyhow::error::<impl anyhow::Error>::msg
1: build_script_build::generate_bindings_vmlinux::{{closure}}2: core::result::Result<T,E>::or_else
3: build_script_build::generate_bindings_vmlinux
4: build_script_build::main
5: core::ops::function::FnOnce::call_once
6: std::sys_common::backtrace::__rust_begin_short_backtrace
7: std::rt::lang_start::{{closure}}8: core::ops::function::impls::<impl core::ops::function::FnOnce<A>for&F>::call_once
at /rustc/388538fc963e07a94e3fc3ac8948627fd2d28d29/library/core/src/ops/function.rs:287:139: std::panicking::try::do_call
at /rustc/388538fc963e07a94e3fc3ac8948627fd2d28d29/library/std/src/panicking.rs:483:4010: std::panicking::try
at /rustc/388538fc963e07a94e3fc3ac8948627fd2d28d29/library/std/src/panicking.rs:447:1911: std::panic::catch_unwind
at /rustc/388538fc963e07a94e3fc3ac8948627fd2d28d29/library/std/src/panic.rs:140:1412: std::rt::lang_start_internal::{{closure}}
at /rustc/388538fc963e07a94e3fc3ac8948627fd2d28d29/library/std/src/rt.rs:148:4813: std::panicking::try::do_call
at /rustc/388538fc963e07a94e3fc3ac8948627fd2d28d29/library/std/src/panicking.rs:483:4014: std::panicking::try
at /rustc/388538fc963e07a94e3fc3ac8948627fd2d28d29/library/std/src/panicking.rs:447:1915: std::panic::catch_unwind
at /rustc/388538fc963e07a94e3fc3ac8948627fd2d28d29/library/std/src/panic.rs:140:1416: std::rt::lang_start_internal
at /rustc/388538fc963e07a94e3fc3ac8948627fd2d28d29/library/std/src/rt.rs:148:2017: std::rt::lang_start
18: main
19: <unknown>
20: __libc_start_main
21: _start
at /build/glibc/src/glibc/csu/../sysdeps/x86_64/start.S:115', /home/ishan/hobby/redbpf/redbpf-probes/build.rs:287:37
stack backtrace:0: rust_begin_unwind
at /rustc/388538fc963e07a94e3fc3ac8948627fd2d28d29/library/std/src/panicking.rs:575:51: core::panicking::panic_fmt
at /rustc/388538fc963e07a94e3fc3ac8948627fd2d28d29/library/core/src/panicking.rs:64:142: core::result::unwrap_failed
at /rustc/388538fc963e07a94e3fc3ac8948627fd2d28d29/library/core/src/result.rs:1790:53: core::result::Result<T,E>::unwrap
4: build_script_build::main
5: core::ops::function::FnOnce::call_once
note:Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace.
warning: build failed, waiting for other jobs to finish...
error: failed to compile the `src/dhcp' program
emerald :: ~/hobby/dhcp 1 »
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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 on arch linux and if I understand correctly, This should have BTF built into it.
I tried building my program like this,
For the first two, I get this
failed to find Kernel BTF
error and for the last one, Rust bindings return aVmLinuxNotFound
but I guess it's coming from theread_elf
portion oflibbpf
rather thanread_raw
? I am not sure what file it tries to read and fails in the process.This project currently ships
libbpf
version 0.6, I also triedlibbpf
version 1.1 and thelibbpf
HEAD but I get the same error with all 3 versions oflibbpf
.Stacktrace:
The text was updated successfully, but these errors were encountered: