mirror of https://github.com/aya-rs/aya
chore: Fix clippy panic_handler warnings
Working with aya in vscode will currently show a number of warnings along the lines of: ``` found duplicate lang item `panic_impl` the lang item is first defined in crate `std` (which `aya` depends on) ... second definition in the local crate (`bpf_probe_read`) ``` This comes from feature unification. integration-test requires the integration-common user feature, which requires aya, which in turn brings in std. For this same reason we avoid running clippy across the whole workspace. We can avoid this issue by using the panic handler from the another crate, which implements the same loop {} panic handler we use today. It seems rustc is happy to conditionally link the panic handler from an external crate without issuing warnings. Therefore, we add our own crate - ebpf-panic - for this purpose. Signed-off-by: Dave Tucker <dave@dtucker.co.uk>pull/1234/head
parent
da3f09e28b
commit
3078e5aba0
@ -0,0 +1,10 @@
|
||||
[package]
|
||||
name = "ebpf-panic"
|
||||
publish = false
|
||||
version = "1.0.0"
|
||||
|
||||
authors.workspace = true
|
||||
edition.workspace = true
|
||||
homepage.workspace = true
|
||||
license.workspace = true
|
||||
repository.workspace = true
|
@ -0,0 +1,33 @@
|
||||
//! A panic handler for eBPF rust targets.
|
||||
//!
|
||||
//! Panics are not supported in the eBPF rust targets however since crates for
|
||||
//! the eBPF targets are no_std they must provide a panic handler. This crate
|
||||
//! provides a panic handler that loops forever. Such a function, if called,
|
||||
//! will cause the program to be rejected by the eBPF verifier with an error
|
||||
//! message similar to:
|
||||
//!
|
||||
//! ```text
|
||||
//! last insn is not an exit or jmp
|
||||
//! ```
|
||||
//!
|
||||
//! # Example
|
||||
//!
|
||||
//! ```ignore
|
||||
//! #![no_std]
|
||||
//!
|
||||
//! use aya_ebpf::{macros::tracepoint, programs::TracePointContext};
|
||||
//! #[cfg(not(test))]
|
||||
//! extern crate ebpf_panic;
|
||||
//!
|
||||
//! #[tracepoint]
|
||||
//! pub fn test_tracepoint_one(_ctx: TracePointContext) -> u32 {
|
||||
//! 0
|
||||
//! }
|
||||
//! ```
|
||||
#![no_std]
|
||||
|
||||
#[cfg(not(test))]
|
||||
#[panic_handler]
|
||||
fn panic(_info: &core::panic::PanicInfo) -> ! {
|
||||
loop {}
|
||||
}
|
Loading…
Reference in New Issue