pull/1218/merge
Ryan Alameddine 2 days ago committed by GitHub
commit d8fc2a40a3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -10,7 +10,7 @@ use aya_ebpf_bindings::helpers::{
};
use aya_ebpf_cty::c_long;
use crate::{EbpfContext, bindings::__sk_buff};
use crate::{EbpfContext, bindings::__sk_buff, check_bounds_signed};
pub struct SkBuff {
pub skb: *mut __sk_buff,
@ -88,8 +88,12 @@ impl SkBuff {
#[inline(always)]
pub fn load_bytes(&self, offset: usize, dst: &mut [u8]) -> Result<usize, c_long> {
let len = usize::try_from(self.len()).map_err(|core::num::TryFromIntError { .. }| -1)?;
// 0 byte reads will trip the verifier. We need to ensure that the valid range of values for len is at least 1.
let len = len.checked_sub(offset).ok_or(-1)?;
let len = len.min(dst.len());
if !check_bounds_signed(len as i64, 1, dst.len() as i64) {
return Err(-1);
}
let len_u32 = u32::try_from(len).map_err(|core::num::TryFromIntError { .. }| -1)?;
let ret = unsafe {
bpf_skb_load_bytes(

@ -91,3 +91,7 @@ path = "src/xdp_sec.rs"
[[bin]]
name = "uprobe_cookie"
path = "src/uprobe_cookie.rs"
[[bin]]
name = "socket_filter"
path = "src/socket_filter.rs"

@ -0,0 +1,19 @@
#![no_std]
#![no_main]
use aya_ebpf::{macros::socket_filter, programs::SkBuffContext};
#[socket_filter]
pub fn read_one(ctx: SkBuffContext) -> i64 {
// Read 1 byte
let mut dst = [0; 2];
let _ = ctx.load_bytes(0, &mut dst);
0
}
#[cfg(not(test))]
#[panic_handler]
fn panic(_info: &core::panic::PanicInfo) -> ! {
loop {}
}

@ -32,6 +32,8 @@ pub const TEST: &[u8] = include_bytes_aligned!(concat!(env!("OUT_DIR"), "/test")
pub const TWO_PROGS: &[u8] = include_bytes_aligned!(concat!(env!("OUT_DIR"), "/two_progs"));
pub const XDP_SEC: &[u8] = include_bytes_aligned!(concat!(env!("OUT_DIR"), "/xdp_sec"));
pub const UPROBE_COOKIE: &[u8] = include_bytes_aligned!(concat!(env!("OUT_DIR"), "/uprobe_cookie"));
pub const SOCKET_FILTER: &[u8] = include_bytes_aligned!(concat!(env!("OUT_DIR"), "/socket_filter"));
#[cfg(test)]
mod tests;
#[cfg(test)]

@ -10,6 +10,7 @@ mod rbpf;
mod relocations;
mod ring_buf;
mod smoke;
mod socket_filter;
mod strncmp;
mod tcx;
mod uprobe_cookie;

@ -0,0 +1,8 @@
use aya::{Ebpf, programs::SocketFilter};
#[test]
fn socket_filter_load() {
let mut bpf = Ebpf::load(crate::SOCKET_FILTER).unwrap();
let prog: &mut SocketFilter = bpf.program_mut("read_one").unwrap().try_into().unwrap();
prog.load().unwrap();
}
Loading…
Cancel
Save