mirror of https://github.com/aya-rs/aya
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
103 lines
3.0 KiB
Rust
103 lines
3.0 KiB
Rust
//! An array of eBPF program file descriptors used as a jump table.
|
|
|
|
use std::{
|
|
convert::TryFrom,
|
|
mem,
|
|
ops::{Deref, DerefMut},
|
|
os::unix::prelude::RawFd,
|
|
};
|
|
|
|
use crate::{
|
|
generated::bpf_map_type::BPF_MAP_TYPE_SOCKMAP,
|
|
maps::{Map, MapError, MapKeys, MapRef, MapRefMut},
|
|
sys::{bpf_map_delete_elem, bpf_map_update_elem},
|
|
};
|
|
|
|
pub struct SockMap<T: Deref<Target = Map>> {
|
|
pub(crate) inner: T,
|
|
}
|
|
|
|
impl<T: Deref<Target = Map>> SockMap<T> {
|
|
fn new(map: T) -> Result<SockMap<T>, MapError> {
|
|
let map_type = map.obj.def.map_type;
|
|
if map_type != BPF_MAP_TYPE_SOCKMAP as u32 {
|
|
return Err(MapError::InvalidMapType {
|
|
map_type: map_type as u32,
|
|
})?;
|
|
}
|
|
let expected = mem::size_of::<u32>();
|
|
let size = map.obj.def.key_size as usize;
|
|
if size != expected {
|
|
return Err(MapError::InvalidKeySize { size, expected });
|
|
}
|
|
|
|
let expected = mem::size_of::<RawFd>();
|
|
let size = map.obj.def.value_size as usize;
|
|
if size != expected {
|
|
return Err(MapError::InvalidValueSize { size, expected });
|
|
}
|
|
let _fd = map.fd_or_err()?;
|
|
|
|
Ok(SockMap { inner: map })
|
|
}
|
|
|
|
/// An iterator over the indices of the array that point to a program. The iterator item type
|
|
/// is `Result<u32, MapError>`.
|
|
pub unsafe fn indices(&self) -> MapKeys<'_, u32> {
|
|
MapKeys::new(&self.inner)
|
|
}
|
|
|
|
fn check_bounds(&self, index: u32) -> Result<(), MapError> {
|
|
let max_entries = self.inner.obj.def.max_entries;
|
|
if index >= self.inner.obj.def.max_entries {
|
|
Err(MapError::OutOfBounds { index, max_entries })
|
|
} else {
|
|
Ok(())
|
|
}
|
|
}
|
|
}
|
|
|
|
impl<T: Deref<Target = Map> + DerefMut<Target = Map>> SockMap<T> {
|
|
pub fn set(&mut self, index: u32, tcp_fd: RawFd, flags: u64) -> Result<(), MapError> {
|
|
let fd = self.inner.fd_or_err()?;
|
|
self.check_bounds(index)?;
|
|
bpf_map_update_elem(fd, &index, &tcp_fd, flags).map_err(|(code, io_error)| {
|
|
MapError::SyscallError {
|
|
call: "bpf_map_update_elem".to_owned(),
|
|
code,
|
|
io_error,
|
|
}
|
|
})?;
|
|
Ok(())
|
|
}
|
|
|
|
/// Clears the value at index in the jump table.
|
|
pub fn clear_index(&mut self, index: &u32) -> Result<(), MapError> {
|
|
let fd = self.inner.fd_or_err()?;
|
|
self.check_bounds(*index)?;
|
|
bpf_map_delete_elem(fd, index)
|
|
.map(|_| ())
|
|
.map_err(|(code, io_error)| MapError::SyscallError {
|
|
call: "bpf_map_delete_elem".to_owned(),
|
|
code,
|
|
io_error,
|
|
})
|
|
}
|
|
}
|
|
|
|
impl TryFrom<MapRef> for SockMap<MapRef> {
|
|
type Error = MapError;
|
|
|
|
fn try_from(a: MapRef) -> Result<SockMap<MapRef>, MapError> {
|
|
SockMap::new(a)
|
|
}
|
|
}
|
|
|
|
impl TryFrom<MapRefMut> for SockMap<MapRefMut> {
|
|
type Error = MapError;
|
|
|
|
fn try_from(a: MapRefMut) -> Result<SockMap<MapRefMut>, MapError> {
|
|
SockMap::new(a)
|
|
}
|
|
}
|