Struct libbpf_rs::Program

source ·
pub struct Program { /* private fields */ }
Expand description

Represents a loaded Program.

This struct is not safe to clone because the underlying libbpf resource cannot currently be protected from data races.

If you attempt to attach a Program with the wrong attach method, the attach_* method will fail with the appropriate error.

Implementations§

source§

impl Program

source

pub fn name(&self) -> &str

Retrieve the program’s name.

source

pub fn section(&self) -> &str

Name of the section this Program belongs to.

source

pub fn prog_type(&self) -> ProgramType

Retrieve the type of the program.

source

pub fn get_fd_by_id(id: u32) -> Result<OwnedFd>

Returns program fd by id

source

pub fn get_id_by_fd(fd: BorrowedFd<'_>) -> Result<u32>

Returns program id by fd

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 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(&mut self) -> Result<Link>

Auto-attach based on prog section

source

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

Attach this program to a cgroup.

source

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

Attach this program to a perf event.

source

pub fn attach_uprobe<T: AsRef<Path>>( &mut 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( &mut 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>>( &mut self, retprobe: bool, func_name: T ) -> Result<Link>

Attach this program to a kernel probe.

source

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

Attach this program to the specified syscall

source

pub fn attach_tracepoint( &mut 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( &mut 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>>( &mut self, tp_name: T ) -> Result<Link>

Attach this program to a raw kernel tracepoint.

source

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

Attach to an LSM hook

source

pub fn attach_trace(&mut 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(&mut self, ifindex: i32) -> Result<Link>

Attach this program to XDP

source

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

Attach this program to netns-based programs

source

pub fn attach_usdt( &mut 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( &mut 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(&mut 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>(&mut self, input: Input<'dat>) -> Result<Output<'dat>>

Test run the program with the given input data.

This function uses the BPF_PROG_RUN facility.

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.

Trait Implementations§

source§

impl AsFd for Program

source§

fn as_fd(&self) -> BorrowedFd<'_>

Borrows the file descriptor. Read more
source§

impl AsRawLibbpf for Program

source§

fn as_libbpf_object(&self) -> NonNull<Self::LibbpfType>

Retrieve the underlying libbpf_sys::bpf_program.

§

type LibbpfType = bpf_program

The underlying libbpf type.
source§

impl Debug for Program

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.