Struct Loader

Source
pub struct Loader<M>
where M: Mmap,
{ /* private fields */ }
Expand description

The elf object loader

Implementations§

Source§

impl<M: Mmap> Loader<M>

Source

pub fn easy_load_dylib(&mut self, object: impl ElfObject) -> Result<ElfDylib>

Load a dynamic library into memory

Source

pub fn load_dylib( &mut self, object: impl ElfObject, lazy_bind: Option<bool>, ) -> Result<ElfDylib>

Load a dynamic library into memory

§Note

When lazy_bind is not set, lazy binding is enabled using the dynamic library’s DT_FLAGS flag.

Source

pub async fn load_dylib_async( &mut self, object: impl ElfObjectAsync, lazy_bind: Option<bool>, ) -> Result<ElfDylib>

Load a dynamic library into memory

§Note

When lazy_bind is not set, lazy binding is enabled using the dynamic library’s DT_FLAGS flag.

Source§

impl<M: Mmap> Loader<M>

Source

pub fn easy_load_exec(&mut self, object: impl ElfObject) -> Result<ElfExec>

Load a executable file into memory

Source

pub fn load_exec( &mut self, object: impl ElfObject, lazy_bind: Option<bool>, ) -> Result<ElfExec>

Load a executable file into memory

§Note
  • When lazy_bind is not set, lazy binding is enabled using the dynamic library’s DT_FLAGS flag.
Source

pub async fn load_exec_async( &mut self, object: impl ElfObjectAsync, lazy_bind: Option<bool>, ) -> Result<ElfExec>

Load a executable file into memory

§Note
  • When lazy_bind is not set, lazy binding is enabled using the dynamic library’s DT_FLAGS flag.
Source§

impl<M: Mmap> Loader<M>

Source

pub fn easy_load(&mut self, object: impl ElfObject) -> Result<Elf>

Load a elf file into memory

Source

pub fn load( &mut self, object: impl ElfObject, lazy_bind: Option<bool>, ) -> Result<Elf>

Load a elf file into memory

§Note
  • When lazy_bind is not set, lazy binding is enabled using the dynamic library’s DT_FLAGS flag.
Source

pub async fn load_async( &mut self, object: impl ElfObjectAsync, lazy_bind: Option<bool>, ) -> Result<Elf>

Load a elf file into memory

§Note
  • When lazy_bind is not set, lazy binding is enabled using the dynamic library’s DT_FLAGS flag.
Source§

impl<M: Mmap> Loader<M>

Source

pub fn new() -> Self

Create a new loader

Source

pub fn set_init_params( &mut self, argc: usize, argv: usize, envp: usize, ) -> &mut Self

glibc passes argc, argv, and envp to functions in .init_array, as a non-standard extension.

Source

pub fn set_hook( &mut self, hook: Box<dyn Fn(&CStr, &ElfPhdr, &ElfSegments, &mut UserData) -> Result<(), Box<dyn Any + Send + Sync>>>, ) -> &mut Self

hook functions are called first when a program header is processed

Source

pub fn read_ehdr(&mut self, object: &mut impl ElfObject) -> Result<ElfHeader>

Read the elf header

Source

pub fn read_phdr( &mut self, object: &mut impl ElfObject, ehdr: &ElfHeader, ) -> Result<&[ElfPhdr]>

Read the program header table

Trait Implementations§

Source§

impl<M: Mmap> Default for Loader<M>

Source§

fn default() -> Self

Returns the “default value” for a type. Read more

Auto Trait Implementations§

§

impl<M> Freeze for Loader<M>

§

impl<M> !RefUnwindSafe for Loader<M>

§

impl<M> !Send for Loader<M>

§

impl<M> !Sync for Loader<M>

§

impl<M> Unpin for Loader<M>
where M: Unpin,

§

impl<M> !UnwindSafe for Loader<M>

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>,

Source§

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>,

Source§

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.