libbpf_rs

Type Alias ProgramMut

Source
pub type ProgramMut<'obj> = ProgramImpl<'obj, Mut>;
Expand description

A mutable loaded BPF program.

Aliased Type§

struct ProgramMut<'obj> { /* private fields */ }

Implementations§

Source§

impl<'obj> ProgramMut<'obj>

Source

pub fn new_mut(prog: &'obj mut bpf_program) -> Self

Source

pub fn pin<P: AsRef<Path>>(&mut self, path: P) -> Result<()>

Pin this program to bpffs.

Source

pub fn unpin<P: AsRef<Path>>(&mut self, path: P) -> Result<()>

Unpin this program from bpffs

Source

pub fn attach(&self) -> Result<Link>

Auto-attach based on prog section

Source

pub fn attach_cgroup(&self, cgroup_fd: i32) -> Result<Link>

Attach this program to a cgroup.

Source

pub fn attach_perf_event(&self, pfd: i32) -> Result<Link>

Attach this program to a perf event.

Source

pub fn attach_uprobe<T: AsRef<Path>>( &self, retprobe: bool, pid: i32, binary_path: T, func_offset: usize, ) -> Result<Link>

Attach this program to a userspace probe.

Source

pub fn attach_uprobe_with_opts( &self, pid: i32, binary_path: impl AsRef<Path>, func_offset: usize, opts: UprobeOpts, ) -> Result<Link>

Attach this program to a userspace probe, providing additional options.

Source

pub fn attach_kprobe<T: AsRef<str>>( &self, retprobe: bool, func_name: T, ) -> Result<Link>

Attach this program to a kernel probe.

Source

pub fn attach_ksyscall<T: AsRef<str>>( &self, retprobe: bool, syscall_name: T, ) -> Result<Link>

Attach this program to the specified syscall

Source

pub fn attach_tracepoint( &self, tp_category: impl AsRef<str>, tp_name: impl AsRef<str>, ) -> Result<Link>

Attach this program to a kernel tracepoint.

Source

pub fn attach_tracepoint_with_opts( &self, tp_category: impl AsRef<str>, tp_name: impl AsRef<str>, tp_opts: TracepointOpts, ) -> Result<Link>

Attach this program to a kernel tracepoint, providing additional options.

Source

pub fn attach_raw_tracepoint<T: AsRef<str>>(&self, tp_name: T) -> Result<Link>

Attach this program to a raw kernel tracepoint.

Source

pub fn attach_lsm(&self) -> Result<Link>

Attach to an LSM hook

Source

pub fn attach_trace(&self) -> Result<Link>

Source

pub fn attach_sockmap(&self, map_fd: i32) -> Result<()>

Attach a verdict/parser to a sockmap/sockhash

Source

pub fn attach_xdp(&self, ifindex: i32) -> Result<Link>

Attach this program to XDP

Source

pub fn attach_netns(&self, netns_fd: i32) -> Result<Link>

Attach this program to netns-based programs

Source

pub fn attach_netfilter_with_opts( &self, netfilter_opt: NetfilterOpts, ) -> Result<Link>

Attach this program to netfilter programs

Source

pub fn attach_usdt( &self, pid: i32, binary_path: impl AsRef<Path>, usdt_provider: impl AsRef<str>, usdt_name: impl AsRef<str>, ) -> Result<Link>

Attach this program to a USDT probe point. The entry point of the program must be defined with SEC("usdt").

Source

pub fn attach_usdt_with_opts( &self, pid: i32, binary_path: impl AsRef<Path>, usdt_provider: impl AsRef<str>, usdt_name: impl AsRef<str>, usdt_opts: UsdtOpts, ) -> Result<Link>

Attach this program to a USDT probe point, providing additional options. The entry point of the program must be defined with SEC("usdt").

Source

pub fn attach_iter(&self, map_fd: BorrowedFd<'_>) -> Result<Link>

Attach this program to a BPF Iterator. The entry point of the program must be defined with SEC("iter") or SEC("iter.s").

Source

pub fn test_run<'dat>(&self, input: Input<'dat>) -> Result<Output<'dat>>

Test run the program with the given input data.

This function uses the BPF_PROG_RUN facility.

Methods from Deref<Target = Program<'obj>>§

Source

pub fn name(&self) -> &OsStr

Retrieve the name of this Program.

Source

pub fn section(&self) -> &OsStr

Retrieve the name of the section this Program belongs to.

Source

pub fn prog_type(&self) -> ProgramType

Retrieve the type of the program.

Source

pub fn flags(&self) -> u32

Returns flags that have been set for the program.

Source

pub fn attach_type(&self) -> ProgramAttachType

Retrieve the attach type of the program.

Source

pub fn autoload(&self) -> bool

Return true if the bpf program is set to autoload, false otherwise.

Source

pub fn log_level(&self) -> u32

Return the bpf program’s log level.

Source

pub fn insn_cnt(&self) -> usize

Returns the number of instructions that form the program.

Please see note in OpenProgram::insn_cnt.

Source

pub fn insns(&self) -> &[bpf_insn]

Gives read-only access to BPF program’s underlying BPF instructions.

Please see note in OpenProgram::insns.

Source

pub fn attach(&self) -> Result<Link>

Auto-attach based on prog section

Source

pub fn attach_cgroup(&self, cgroup_fd: i32) -> Result<Link>

Attach this program to a cgroup.

Source

pub fn attach_perf_event(&self, pfd: i32) -> Result<Link>

Attach this program to a perf event.

Source

pub fn attach_uprobe<T: AsRef<Path>>( &self, retprobe: bool, pid: i32, binary_path: T, func_offset: usize, ) -> Result<Link>

Attach this program to a userspace probe.

Source

pub fn attach_uprobe_with_opts( &self, pid: i32, binary_path: impl AsRef<Path>, func_offset: usize, opts: UprobeOpts, ) -> Result<Link>

Attach this program to a userspace probe, providing additional options.

Source

pub fn attach_kprobe<T: AsRef<str>>( &self, retprobe: bool, func_name: T, ) -> Result<Link>

Attach this program to a kernel probe.

Source

pub fn attach_ksyscall<T: AsRef<str>>( &self, retprobe: bool, syscall_name: T, ) -> Result<Link>

Attach this program to the specified syscall

Source

pub fn attach_tracepoint( &self, tp_category: impl AsRef<str>, tp_name: impl AsRef<str>, ) -> Result<Link>

Attach this program to a kernel tracepoint.

Source

pub fn attach_tracepoint_with_opts( &self, tp_category: impl AsRef<str>, tp_name: impl AsRef<str>, tp_opts: TracepointOpts, ) -> Result<Link>

Attach this program to a kernel tracepoint, providing additional options.

Source

pub fn attach_raw_tracepoint<T: AsRef<str>>(&self, tp_name: T) -> Result<Link>

Attach this program to a raw kernel tracepoint.

Source

pub fn attach_lsm(&self) -> Result<Link>

Attach to an LSM hook

Source

pub fn attach_trace(&self) -> Result<Link>

Source

pub fn attach_sockmap(&self, map_fd: i32) -> Result<()>

Attach a verdict/parser to a sockmap/sockhash

Source

pub fn attach_xdp(&self, ifindex: i32) -> Result<Link>

Attach this program to XDP

Source

pub fn attach_netns(&self, netns_fd: i32) -> Result<Link>

Attach this program to netns-based programs

Source

pub fn attach_netfilter_with_opts( &self, netfilter_opt: NetfilterOpts, ) -> Result<Link>

Attach this program to netfilter programs

Source

pub fn attach_usdt( &self, pid: i32, binary_path: impl AsRef<Path>, usdt_provider: impl AsRef<str>, usdt_name: impl AsRef<str>, ) -> Result<Link>

Attach this program to a USDT probe point. The entry point of the program must be defined with SEC("usdt").

Source

pub fn attach_usdt_with_opts( &self, pid: i32, binary_path: impl AsRef<Path>, usdt_provider: impl AsRef<str>, usdt_name: impl AsRef<str>, usdt_opts: UsdtOpts, ) -> Result<Link>

Attach this program to a USDT probe point, providing additional options. The entry point of the program must be defined with SEC("usdt").

Source

pub fn attach_iter(&self, map_fd: BorrowedFd<'_>) -> Result<Link>

Attach this program to a BPF Iterator. The entry point of the program must be defined with SEC("iter") or SEC("iter.s").

Source

pub fn test_run<'dat>(&self, input: Input<'dat>) -> Result<Output<'dat>>

Test run the program with the given input data.

This function uses the BPF_PROG_RUN facility.

Trait Implementations§

Source§

impl<'obj> Deref for ProgramMut<'obj>

Source§

type Target = ProgramImpl<'obj>

The resulting type after dereferencing.
Source§

fn deref(&self) -> &Self::Target

Dereferences the value.