diff --git a/Cargo.toml b/Cargo.toml index 0236f895..b21d6f34 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -107,6 +107,9 @@ which = { version = "7.0.0", default-features = false } xdpilone = { version = "1.0.5", default-features = false } xz2 = { version = "0.1.7", default-features = false } +[workspace.lints.clippy] +unused_trait_names = "warn" + [workspace.lints.rust] unused-extern-crates = "warn" diff --git a/aya-log/src/lib.rs b/aya-log/src/lib.rs index e3569632..03d83182 100644 --- a/aya-log/src/lib.rs +++ b/aya-log/src/lib.rs @@ -736,7 +736,7 @@ fn try_read(mut buf: &[u8]) -> Result<(T, &[u8], &[u8]), ()> { mod test { use std::net::IpAddr; - use aya_log_common::{WriteToBuf, write_record_header}; + use aya_log_common::{WriteToBuf as _, write_record_header}; use log::{Level, logger}; use super::*; diff --git a/aya-obj/src/btf/btf.rs b/aya-obj/src/btf/btf.rs index 97650ad3..c0e5ea33 100644 --- a/aya-obj/src/btf/btf.rs +++ b/aya-obj/src/btf/btf.rs @@ -7,7 +7,7 @@ use alloc::{ }; use core::{ffi::CStr, mem, ptr}; -use bytes::BufMut; +use bytes::BufMut as _; use log::debug; use object::{Endianness, SectionIndex}; @@ -308,7 +308,7 @@ impl Btf { path: P, endianness: Endianness, ) -> Result { - use std::{borrow::ToOwned, fs}; + use std::{borrow::ToOwned as _, fs}; let path = path.as_ref(); Btf::parse( &fs::read(path).map_err(|error| BtfError::FileError { diff --git a/aya-obj/src/btf/info.rs b/aya-obj/src/btf/info.rs index 5be8ef55..1c9a179a 100644 --- a/aya-obj/src/btf/info.rs +++ b/aya-obj/src/btf/info.rs @@ -1,6 +1,6 @@ use alloc::{string::String, vec, vec::Vec}; -use bytes::BufMut; +use bytes::BufMut as _; use object::Endianness; use crate::{ diff --git a/aya-obj/src/btf/relocation.rs b/aya-obj/src/btf/relocation.rs index 3547d561..4b0b2fee 100644 --- a/aya-obj/src/btf/relocation.rs +++ b/aya-obj/src/btf/relocation.rs @@ -2,7 +2,7 @@ use alloc::{ borrow::{Cow, ToOwned as _}, collections::BTreeMap, format, - string::{String, ToString}, + string::{String, ToString as _}, vec, vec::Vec, }; diff --git a/aya-obj/src/btf/types.rs b/aya-obj/src/btf/types.rs index f59011d3..0f96e84a 100644 --- a/aya-obj/src/btf/types.rs +++ b/aya-obj/src/btf/types.rs @@ -1,6 +1,6 @@ #![expect(missing_docs)] -use alloc::{string::ToString, vec, vec::Vec}; +use alloc::{string::ToString as _, vec, vec::Vec}; use core::{fmt::Display, mem, ptr}; use object::Endianness; diff --git a/aya-obj/src/obj.rs b/aya-obj/src/obj.rs index 45246743..871e6937 100644 --- a/aya-obj/src/obj.rs +++ b/aya-obj/src/obj.rs @@ -1,10 +1,10 @@ //! Object file loading, parsing, and relocation. use alloc::{ - borrow::ToOwned, + borrow::ToOwned as _, collections::BTreeMap, ffi::CString, - string::{String, ToString}, + string::{String, ToString as _}, vec, vec::Vec, }; @@ -12,9 +12,9 @@ use core::{ffi::CStr, mem, ptr, slice::from_raw_parts_mut, str::FromStr}; use log::debug; use object::{ - Endianness, ObjectSymbol, ObjectSymbolTable, RelocationTarget, SectionIndex, SectionKind, - SymbolKind, - read::{Object as ElfObject, ObjectSection, Section as ObjSection}, + Endianness, ObjectSymbol as _, ObjectSymbolTable as _, RelocationTarget, SectionIndex, + SectionKind, SymbolKind, + read::{Object as _, ObjectSection as _, Section as ObjSection}, }; use crate::{ diff --git a/aya-obj/src/relocation.rs b/aya-obj/src/relocation.rs index 630b3d65..06f214ea 100644 --- a/aya-obj/src/relocation.rs +++ b/aya-obj/src/relocation.rs @@ -1,6 +1,6 @@ //! Program relocation handling. -use alloc::{borrow::ToOwned, collections::BTreeMap, string::String}; +use alloc::{borrow::ToOwned as _, collections::BTreeMap, string::String}; use core::mem; use log::debug; @@ -502,7 +502,7 @@ fn insn_is_call(ins: &bpf_insn) -> bool { #[cfg(test)] mod test { - use alloc::{string::ToString, vec, vec::Vec}; + use alloc::{string::ToString as _, vec, vec::Vec}; use super::*; use crate::maps::{BtfMap, LegacyMap}; diff --git a/aya-tool/src/generate.rs b/aya-tool/src/generate.rs index eda2fa46..25d393a5 100644 --- a/aya-tool/src/generate.rs +++ b/aya-tool/src/generate.rs @@ -1,6 +1,6 @@ use std::{ fs::{self, File}, - io::{self, Write}, + io::{self, Write as _}, path::{Path, PathBuf}, process::Command, str, diff --git a/aya/src/maps/perf/perf_event_array.rs b/aya/src/maps/perf/perf_event_array.rs index ac8e4cee..66659243 100644 --- a/aya/src/maps/perf/perf_event_array.rs +++ b/aya/src/maps/perf/perf_event_array.rs @@ -3,7 +3,7 @@ //! [`perf`]: https://perf.wiki.kernel.org/index.php/Main_Page. use std::{ borrow::{Borrow, BorrowMut}, - ops::Deref, + ops::Deref as _, os::fd::{AsFd, AsRawFd, BorrowedFd, RawFd}, path::Path, sync::Arc, diff --git a/aya/src/maps/xdp/cpu_map.rs b/aya/src/maps/xdp/cpu_map.rs index bf2b7e05..8010094f 100644 --- a/aya/src/maps/xdp/cpu_map.rs +++ b/aya/src/maps/xdp/cpu_map.rs @@ -3,7 +3,7 @@ use std::{ borrow::{Borrow, BorrowMut}, num::NonZeroU32, - os::fd::{AsFd, AsRawFd}, + os::fd::{AsFd as _, AsRawFd as _}, }; use aya_obj::generated::bpf_cpumap_val; diff --git a/aya/src/maps/xdp/dev_map.rs b/aya/src/maps/xdp/dev_map.rs index c7f25481..41b9935b 100644 --- a/aya/src/maps/xdp/dev_map.rs +++ b/aya/src/maps/xdp/dev_map.rs @@ -3,7 +3,7 @@ use std::{ borrow::{Borrow, BorrowMut}, num::NonZeroU32, - os::fd::{AsFd, AsRawFd}, + os::fd::{AsFd as _, AsRawFd as _}, }; use aya_obj::generated::bpf_devmap_val; diff --git a/aya/src/maps/xdp/dev_map_hash.rs b/aya/src/maps/xdp/dev_map_hash.rs index a09910de..4fff010c 100644 --- a/aya/src/maps/xdp/dev_map_hash.rs +++ b/aya/src/maps/xdp/dev_map_hash.rs @@ -3,7 +3,7 @@ use std::{ borrow::{Borrow, BorrowMut}, num::NonZeroU32, - os::fd::{AsFd, AsRawFd}, + os::fd::{AsFd as _, AsRawFd as _}, }; use aya_obj::generated::bpf_devmap_val; diff --git a/aya/src/maps/xdp/xsk_map.rs b/aya/src/maps/xdp/xsk_map.rs index f23a3f19..fee7be2d 100644 --- a/aya/src/maps/xdp/xsk_map.rs +++ b/aya/src/maps/xdp/xsk_map.rs @@ -2,7 +2,7 @@ use std::{ borrow::{Borrow, BorrowMut}, - os::fd::{AsFd, AsRawFd, BorrowedFd, RawFd}, + os::fd::{AsFd as _, AsRawFd, BorrowedFd, RawFd}, }; use crate::{ diff --git a/aya/src/programs/probe.rs b/aya/src/programs/probe.rs index 8c82d626..2059c2e8 100644 --- a/aya/src/programs/probe.rs +++ b/aya/src/programs/probe.rs @@ -2,7 +2,7 @@ use std::{ ffi::{OsStr, OsString}, fmt::Write as _, fs::{self, OpenOptions}, - io::{self, Write}, + io::{self, Write as _}, os::fd::AsFd as _, path::{Path, PathBuf}, process, diff --git a/aya/src/programs/socket_filter.rs b/aya/src/programs/socket_filter.rs index 0af018a4..a2e1459a 100644 --- a/aya/src/programs/socket_filter.rs +++ b/aya/src/programs/socket_filter.rs @@ -1,7 +1,7 @@ //! Socket filter programs. use std::{ io, mem, - os::fd::{AsFd, AsRawFd, RawFd}, + os::fd::{AsFd, AsRawFd as _, RawFd}, }; use aya_obj::generated::{ diff --git a/aya/src/programs/uprobe.rs b/aya/src/programs/uprobe.rs index 72844899..ea469e18 100644 --- a/aya/src/programs/uprobe.rs +++ b/aya/src/programs/uprobe.rs @@ -12,7 +12,7 @@ use std::{ use aya_obj::generated::{bpf_link_type, bpf_prog_type::BPF_PROG_TYPE_KPROBE}; use libc::pid_t; -use object::{Object, ObjectSection, ObjectSymbol, Symbol}; +use object::{Object as _, ObjectSection as _, ObjectSymbol as _, Symbol}; use thiserror::Error; use crate::{ diff --git a/aya/src/programs/utils.rs b/aya/src/programs/utils.rs index 924ca8c6..a1728893 100644 --- a/aya/src/programs/utils.rs +++ b/aya/src/programs/utils.rs @@ -2,7 +2,7 @@ use std::{ ffi::CStr, fs::File, - io::{self, BufRead, BufReader}, + io::{self, BufRead as _, BufReader}, os::fd::{AsFd as _, AsRawFd as _, BorrowedFd}, path::Path, sync::LazyLock, diff --git a/ebpf/aya-ebpf/src/maps/sock_hash.rs b/ebpf/aya-ebpf/src/maps/sock_hash.rs index 9f01b2ec..fe7fc25b 100644 --- a/ebpf/aya-ebpf/src/maps/sock_hash.rs +++ b/ebpf/aya-ebpf/src/maps/sock_hash.rs @@ -3,7 +3,7 @@ use core::{borrow::Borrow, cell::UnsafeCell, marker::PhantomData, mem}; use aya_ebpf_cty::c_void; use crate::{ - EbpfContext, + EbpfContext as _, bindings::{bpf_map_def, bpf_map_type::BPF_MAP_TYPE_SOCKHASH, bpf_sock_ops}, helpers::{ bpf_msg_redirect_hash, bpf_sk_assign, bpf_sk_redirect_hash, bpf_sk_release, diff --git a/ebpf/aya-ebpf/src/maps/sock_map.rs b/ebpf/aya-ebpf/src/maps/sock_map.rs index 4093a1ba..67b01a12 100644 --- a/ebpf/aya-ebpf/src/maps/sock_map.rs +++ b/ebpf/aya-ebpf/src/maps/sock_map.rs @@ -1,7 +1,7 @@ use core::{cell::UnsafeCell, mem}; use crate::{ - EbpfContext, + EbpfContext as _, bindings::{bpf_map_def, bpf_map_type::BPF_MAP_TYPE_SOCKMAP, bpf_sock_ops}, helpers::{ bpf_msg_redirect_map, bpf_sk_assign, bpf_sk_redirect_map, bpf_sk_release, diff --git a/test/integration-ebpf/src/uprobe_cookie.rs b/test/integration-ebpf/src/uprobe_cookie.rs index 4dc91157..19713f85 100644 --- a/test/integration-ebpf/src/uprobe_cookie.rs +++ b/test/integration-ebpf/src/uprobe_cookie.rs @@ -2,7 +2,7 @@ #![no_main] use aya_ebpf::{ - EbpfContext, helpers, + EbpfContext as _, helpers, macros::{map, uprobe}, maps::RingBuf, programs::ProbeContext, diff --git a/test/integration-test/src/tests/elf.rs b/test/integration-test/src/tests/elf.rs index 3a5ad0a3..83e5f6c0 100644 --- a/test/integration-test/src/tests/elf.rs +++ b/test/integration-test/src/tests/elf.rs @@ -1,4 +1,4 @@ -use object::{Object, ObjectSymbol}; +use object::{Object as _, ObjectSymbol as _}; use test_log::test; #[test] diff --git a/test/integration-test/src/tests/iter.rs b/test/integration-test/src/tests/iter.rs index 960732ab..174a79ee 100644 --- a/test/integration-test/src/tests/iter.rs +++ b/test/integration-test/src/tests/iter.rs @@ -1,4 +1,4 @@ -use std::io::BufRead; +use std::io::BufRead as _; use aya::{Btf, Ebpf, programs::Iter}; use test_log::test; diff --git a/test/integration-test/src/tests/xdp.rs b/test/integration-test/src/tests/xdp.rs index af921032..67066e85 100644 --- a/test/integration-test/src/tests/xdp.rs +++ b/test/integration-test/src/tests/xdp.rs @@ -5,7 +5,7 @@ use aya::{ maps::{Array, CpuMap, XskMap}, programs::{Xdp, XdpFlags}, }; -use object::{Object, ObjectSection, ObjectSymbol, SymbolSection}; +use object::{Object as _, ObjectSection as _, ObjectSymbol as _, SymbolSection}; use test_log::test; use xdpilone::{BufIdx, IfInfo, Socket, SocketConfig, Umem, UmemConfig}; diff --git a/xtask/src/codegen/aya_ebpf_bindings.rs b/xtask/src/codegen/aya_ebpf_bindings.rs index e98ea695..d0285387 100644 --- a/xtask/src/codegen/aya_ebpf_bindings.rs +++ b/xtask/src/codegen/aya_ebpf_bindings.rs @@ -8,7 +8,7 @@ use std::{ use anyhow::{Context as _, Result}; use aya_tool::bindgen; use proc_macro2::TokenStream; -use quote::ToTokens; +use quote::ToTokens as _; use syn::{Item, parse_str}; use crate::{ diff --git a/xtask/src/codegen/helpers.rs b/xtask/src/codegen/helpers.rs index 7e7c7c72..594498bc 100644 --- a/xtask/src/codegen/helpers.rs +++ b/xtask/src/codegen/helpers.rs @@ -1,5 +1,5 @@ use proc_macro2::TokenStream; -use quote::{TokenStreamExt, quote}; +use quote::{TokenStreamExt as _, quote}; use syn::{ AngleBracketedGenericArguments, BareFnArg, ForeignItem, ForeignItemStatic, GenericArgument, Ident, Item, Path, PathArguments, ReturnType, Token, Type, TypeBareFn, TypePath,