-
Notifications
You must be signed in to change notification settings - Fork 297
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Dave Tucker <[email protected]>
- Loading branch information
1 parent
0ef6d8b
commit 14ed0a5
Showing
6 changed files
with
231 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
use core::{mem, ptr::NonNull}; | ||
|
||
use aya_bpf_cty::c_void; | ||
|
||
use crate::{ | ||
bindings::{bpf_map_def, bpf_map_type::BPF_MAP_TYPE_CPUMAP}, | ||
helpers::bpf_map_lookup_elem, | ||
maps::PinningType, | ||
}; | ||
|
||
#[repr(transparent)] | ||
pub struct CpuMap { | ||
def: bpf_map_def, | ||
} | ||
|
||
impl CpuMap { | ||
pub const fn with_max_entries(max_entries: u32, flags: u32) -> CpuMap { | ||
CpuMap { | ||
def: bpf_map_def { | ||
type_: BPF_MAP_TYPE_CPUMAP, | ||
key_size: mem::size_of::<u32>() as u32, | ||
value_size: mem::size_of::<u32>() as u32, | ||
max_entries, | ||
map_flags: flags, | ||
id: 0, | ||
pinning: PinningType::None as u32, | ||
}, | ||
} | ||
} | ||
|
||
pub const fn pinned(max_entries: u32, flags: u32) -> CpuMap { | ||
CpuMap { | ||
def: bpf_map_def { | ||
type_: BPF_MAP_TYPE_CPUMAP, | ||
key_size: mem::size_of::<u32>() as u32, | ||
value_size: mem::size_of::<u32>() as u32, | ||
max_entries, | ||
map_flags: flags, | ||
id: 0, | ||
pinning: PinningType::None as u32, | ||
}, | ||
} | ||
} | ||
|
||
pub fn get(&mut self, index: u32) -> Option<&u32> { | ||
unsafe { | ||
let value = bpf_map_lookup_elem( | ||
&mut self.def as *mut _ as *mut _, | ||
&index as *const _ as *const c_void, | ||
); | ||
// FIXME: alignment | ||
NonNull::new(value as *mut u32).map(|p| p.as_ref()) | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
use core::{mem, ptr::NonNull}; | ||
|
||
use aya_bpf_cty::c_void; | ||
|
||
use crate::{ | ||
bindings::{bpf_map_def, bpf_map_type::BPF_MAP_TYPE_DEVMAP}, | ||
helpers::bpf_map_lookup_elem, | ||
maps::PinningType, | ||
}; | ||
|
||
#[repr(transparent)] | ||
pub struct DevMap { | ||
def: bpf_map_def, | ||
} | ||
|
||
impl DevMap { | ||
pub const fn with_max_entries(max_entries: u32, flags: u32) -> DevMap { | ||
DevMap { | ||
def: bpf_map_def { | ||
type_: BPF_MAP_TYPE_DEVMAP, | ||
key_size: mem::size_of::<u32>() as u32, | ||
value_size: mem::size_of::<u32>() as u32, | ||
max_entries, | ||
map_flags: flags, | ||
id: 0, | ||
pinning: PinningType::None as u32, | ||
}, | ||
} | ||
} | ||
|
||
pub const fn pinned(max_entries: u32, flags: u32) -> DevMap { | ||
DevMap { | ||
def: bpf_map_def { | ||
type_: BPF_MAP_TYPE_DEVMAP, | ||
key_size: mem::size_of::<u32>() as u32, | ||
value_size: mem::size_of::<u32>() as u32, | ||
max_entries, | ||
map_flags: flags, | ||
id: 0, | ||
pinning: PinningType::None as u32, | ||
}, | ||
} | ||
} | ||
|
||
pub fn get(&mut self, index: u32) -> Option<&u32> { | ||
unsafe { | ||
let value = bpf_map_lookup_elem( | ||
&mut self.def as *mut _ as *mut _, | ||
&index as *const _ as *const c_void, | ||
); | ||
// FIXME: alignment | ||
NonNull::new(value as *mut u32).map(|p| p.as_ref()) | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
use core::{mem, ptr::NonNull}; | ||
|
||
use aya_bpf_cty::c_void; | ||
|
||
use crate::{ | ||
bindings::{bpf_map_def, bpf_map_type::BPF_MAP_TYPE_DEVMAP_HASH}, | ||
helpers::bpf_map_lookup_elem, | ||
maps::PinningType, | ||
}; | ||
|
||
#[repr(transparent)] | ||
pub struct DevMapHash { | ||
def: bpf_map_def, | ||
} | ||
|
||
impl DevMapHash { | ||
pub const fn with_max_entries(max_entries: u32, flags: u32) -> DevMapHash { | ||
DevMapHash { | ||
def: bpf_map_def { | ||
type_: BPF_MAP_TYPE_DEVMAP_HASH, | ||
key_size: mem::size_of::<u32>() as u32, | ||
value_size: mem::size_of::<u32>() as u32, | ||
max_entries, | ||
map_flags: flags, | ||
id: 0, | ||
pinning: PinningType::None as u32, | ||
}, | ||
} | ||
} | ||
|
||
pub const fn pinned(max_entries: u32, flags: u32) -> DevMapHash { | ||
DevMapHash { | ||
def: bpf_map_def { | ||
type_: BPF_MAP_TYPE_DEVMAP_HASH, | ||
key_size: mem::size_of::<u32>() as u32, | ||
value_size: mem::size_of::<u32>() as u32, | ||
max_entries, | ||
map_flags: flags, | ||
id: 0, | ||
pinning: PinningType::None as u32, | ||
}, | ||
} | ||
} | ||
|
||
pub fn get(&mut self, index: u32) -> Option<&u32> { | ||
unsafe { | ||
let value = bpf_map_lookup_elem( | ||
&mut self.def as *mut _ as *mut _, | ||
&index as *const _ as *const c_void, | ||
); | ||
// FIXME: alignment | ||
NonNull::new(value as *mut u32).map(|p| p.as_ref()) | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
mod cpu_map; | ||
mod dev_map; | ||
mod dev_map_hash; | ||
mod xsk_map; | ||
|
||
pub use cpu_map::CpuMap; | ||
pub use dev_map::DevMap; | ||
pub use dev_map_hash::DevMapHash; | ||
pub use xsk_map::XskMap; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
use core::{mem, ptr::NonNull}; | ||
|
||
use aya_bpf_cty::c_void; | ||
|
||
use crate::{ | ||
bindings::{bpf_map_def, bpf_map_type::BPF_MAP_TYPE_XSKMAP}, | ||
helpers::bpf_map_lookup_elem, | ||
maps::PinningType, | ||
}; | ||
|
||
#[repr(transparent)] | ||
pub struct XskMap { | ||
def: bpf_map_def, | ||
} | ||
|
||
impl XskMap { | ||
pub const fn with_max_entries(max_entries: u32, flags: u32) -> XskMap { | ||
XskMap { | ||
def: bpf_map_def { | ||
type_: BPF_MAP_TYPE_XSKMAP, | ||
key_size: mem::size_of::<u32>() as u32, | ||
value_size: mem::size_of::<u32>() as u32, | ||
max_entries, | ||
map_flags: flags, | ||
id: 0, | ||
pinning: PinningType::None as u32, | ||
}, | ||
} | ||
} | ||
|
||
pub const fn pinned(max_entries: u32, flags: u32) -> XskMap { | ||
XskMap { | ||
def: bpf_map_def { | ||
type_: BPF_MAP_TYPE_XSKMAP, | ||
key_size: mem::size_of::<u32>() as u32, | ||
value_size: mem::size_of::<u32>() as u32, | ||
max_entries, | ||
map_flags: flags, | ||
id: 0, | ||
pinning: PinningType::None as u32, | ||
}, | ||
} | ||
} | ||
|
||
pub fn get(&mut self, index: u32) -> Option<&u32> { | ||
unsafe { | ||
let value = bpf_map_lookup_elem( | ||
&mut self.def as *mut _ as *mut _, | ||
&index as *const _ as *const c_void, | ||
); | ||
// FIXME: alignment | ||
NonNull::new(value as *mut u32).map(|p| p.as_ref()) | ||
} | ||
} | ||
} |