Struct aya::programs::SkMsg[][src]

pub struct SkMsg { /* fields omitted */ }
Expand description

A program used to intercept messages sent with sendmsg()/sendfile().

SkMsg programs are attached to socket maps, and can be used inspect, filter and redirect messages sent on sockets. See also SockMap and SockHash.

Examples

use std::convert::{TryFrom, TryInto};
use std::io::Write;
use std::net::TcpStream;
use std::os::unix::io::AsRawFd;
use aya::maps::SockHash;
use aya::programs::SkMsg;

let mut intercept_egress = SockHash::try_from(bpf.map_mut("INTERCEPT_EGRESS")?)?;
let prog: &mut SkMsg = bpf.program_mut("intercept_egress_packet")?.try_into()?;
prog.load()?;
prog.attach(&intercept_egress)?;

let mut client = TcpStream::connect("127.0.0.1:1234")?;
intercept_egress.insert(1234, client.as_raw_fd(), 0)?;

// the write will be intercepted
client.write_all(b"foo")?;

Implementations

Loads the program inside the kernel.

See also Program::load.

Returns the name of the program.

Attaches the program to the given sockmap.

Trait Implementations

Formats the value using the given formatter. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.