Skip to content
Permalink
38b69273e4
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
225 lines (197 sloc) 6.78 KB
// Copyright 2019-2020 Authors of Red Sift
//
// Licensed under the Apache License, Version 2.0, <LICENSE-APACHE or
// http://apache.org/licenses/LICENSE-2.0> or the MIT license <LICENSE-MIT or
// http://opensource.org/licenses/MIT>, at your option. This file may not be
// copied, modified, or distributed except according to those terms.
/*!
Types and traits for working with networking data.
The main trait exported by this module is `NetworkBuffer`. It's implemented
by
[`XdpContext`](https://ingraind.org/api/redbpf_probes/xdp/struct.XdpContext.html)
to provide access to the network data.
*/
use crate::bindings::*;
use core::mem;
use core::slice;
use cty::*;
use redbpf_macros::impl_network_buffer_array;
/// The packet transport header.
///
/// Currently only `TCP` and `UDP` transports are supported.
pub enum Transport {
TCP(*const tcphdr),
UDP(*const udphdr),
}
impl Transport {
/// Returns the source port.
#[inline]
pub fn source(&self) -> u16 {
let source = match *self {
Transport::TCP(hdr) => unsafe { (*hdr).source },
Transport::UDP(hdr) => unsafe { (*hdr).source },
};
u16::from_be(source)
}
/// Returns the destination port.
#[inline]
pub fn dest(&self) -> u16 {
let dest = match *self {
Transport::TCP(hdr) => unsafe { (*hdr).dest },
Transport::UDP(hdr) => unsafe { (*hdr).dest },
};
u16::from_be(dest)
}
}
pub enum NetworkError {
Other,
OutOfBounds,
NoIPHeader,
UnsupportedTransport(u32),
}
pub type NetworkResult<T> = Result<T, NetworkError>;
pub trait NetworkBuffer
where
Self: Clone + Sized,
{
fn data_start(&self) -> usize;
fn data_end(&self) -> usize;
/// Returns the packet length.
#[inline]
fn len(&self) -> usize {
self.data_end() - self.data_start()
}
/// Returns a raw pointer to a given address inside the buffer.
///
/// # Safety
///
/// This method uses `NetworkBuffer::check_bounds` to ensure the given address
/// `addr` is within the buffer and allows enough following space to point
/// to something of type `U`. However no checks are done to ensure the
/// returned pointer points to a valid bit pattern of type `U`, nor are any
/// alignments checked. Ensuring proper alignment is followed and pointed to
/// address is a valid bit pattern of type `U` is left up to the caller.
#[inline]
unsafe fn ptr_at<U>(&self, addr: usize) -> NetworkResult<*const U> {
self.check_bounds(addr, addr + mem::size_of::<U>())?;
Ok(addr as *const U)
}
/// Returns a raw pointer to the address following `prev` plus the size of a `T`
///
/// # Safety
///
/// This method uses `NetworkBuffer::check_bounds` to ensure the given address
/// `addr` is within the buffer and allows enough following space to point
/// to something of type `U`. However no checks are done to ensure the
/// returned pointer points to a valid bit pattern of type `U`, nor are any
/// alignments checked. Ensuring proper alignment is followed and pointed to
/// address is a valid bit pattern of type `U` is left up to the caller.
#[inline]
unsafe fn ptr_after<T, U>(&self, prev: *const T) -> NetworkResult<*const U> {
self.ptr_at(prev as usize + mem::size_of::<T>())
}
#[inline]
fn check_bounds(&self, start: usize, end: usize) -> NetworkResult<()> {
if start >= end {
return Err(NetworkError::OutOfBounds);
}
if start < self.data_start() as usize {
return Err(NetworkError::OutOfBounds);
}
if end > self.data_end() as usize {
return Err(NetworkError::OutOfBounds);
}
Ok(())
}
/// Returns the packet's `Ethernet` header if present.
#[inline]
fn eth(&self) -> NetworkResult<*const ethhdr> {
unsafe { self.ptr_at(self.data_start() as usize) }
}
/// Returns the packet's `IP` header if present.
#[inline]
fn ip(&self) -> NetworkResult<*const iphdr> {
let eth = self.eth()?;
unsafe {
if (*eth).h_proto != u16::from_be(ETH_P_IP as u16) {
return Err(NetworkError::NoIPHeader);
}
self.ptr_after(eth)
}
}
/// Returns the packet's transport header if present.
#[inline]
fn transport(&self) -> NetworkResult<Transport> {
unsafe {
let ip = self.ip()?;
let addr = ip as usize + ((*ip).ihl() * 4) as usize;
let transport = match (*ip).protocol as u32 {
IPPROTO_TCP => (Transport::TCP(self.ptr_at(addr)?)),
IPPROTO_UDP => (Transport::UDP(self.ptr_at(addr)?)),
t => return Err(NetworkError::UnsupportedTransport(t)),
};
Ok(transport)
}
}
/// Returns the packet's data starting after the transport headers.
#[inline]
fn data(&self) -> NetworkResult<Data<Self>> {
use Transport::*;
unsafe {
let base: *const c_void = match self.transport()? {
TCP(hdr) => {
let mut addr = hdr as usize + mem::size_of::<tcphdr>();
let data_offset = (*hdr).doff();
if data_offset > 5 {
addr += ((data_offset - 5) * 4) as usize;
}
self.ptr_at(addr)
}
UDP(hdr) => self.ptr_after(hdr),
}?;
let ctx: Self = self.clone();
Ok(Data {
ctx,
base: base as usize,
})
}
}
}
/// Data type returned by calling `NetworkBuffer::data()`
pub struct Data<T: NetworkBuffer> {
ctx: T,
base: usize,
}
impl<T: NetworkBuffer> Data<T> {
/// Returns the offset from the first byte of the packet.
#[inline]
pub fn offset(&self) -> usize {
self.base - self.ctx.data_start()
}
/// Returns the length of the data.
///
/// This is equivalent to the length of the packet minus the length of the headers.
#[inline]
pub fn len(&self) -> usize {
self.ctx.data_end() - self.base
}
/// Returns a `slice` of `len` bytes from the data.
#[inline]
pub fn slice(&self, len: usize) -> NetworkResult<&[u8]> {
unsafe {
self.ctx.check_bounds(self.base, self.base + len)?;
let s = slice::from_raw_parts(self.base as *const u8, len);
Ok(s)
}
}
#[inline]
pub fn read<U: NetworkBufferArray>(&self) -> NetworkResult<U> {
unsafe {
let len = mem::size_of::<U>();
self.ctx.check_bounds(self.base, self.base + len)?;
Ok((self.base as *const U).read_unaligned())
}
}
}
pub trait NetworkBufferArray {}
impl_network_buffer_array!();