Struct memflow_native::NativeOs
source · [−]pub struct NativeOs { /* private fields */ }Implementations
Trait Implementations
sourceimpl<'a> OsInner<'a> for LinuxOs
impl<'a> OsInner<'a> for LinuxOs
sourcefn process_address_list_callback(
&mut self,
callback: AddressCallback<'_>
) -> Result<()>
fn process_address_list_callback(
&mut self,
callback: AddressCallback<'_>
) -> Result<()>
Walks a process list and calls a callback for each process structure address
The callback is fully opaque. We need this style so that C FFI can work seamlessly.
sourcefn process_info_by_address(&mut self, address: Address) -> Result<ProcessInfo>
fn process_info_by_address(&mut self, address: Address) -> Result<ProcessInfo>
Find process information by its internal address
sourcefn process_by_info(&'a mut self, info: ProcessInfo) -> Result<Self::ProcessType>
fn process_by_info(&'a mut self, info: ProcessInfo) -> Result<Self::ProcessType>
Construct a process by its info, borrowing the OS
It will share the underlying memory resources
sourcefn into_process_by_info(
self,
info: ProcessInfo
) -> Result<Self::IntoProcessType>
fn into_process_by_info(
self,
info: ProcessInfo
) -> Result<Self::IntoProcessType>
Construct a process by its info, consuming the OS
This function will consume the Kernel instance and move its resources into the process
sourcefn module_address_list_callback(
&mut self,
callback: AddressCallback<'_>
) -> Result<()>
fn module_address_list_callback(
&mut self,
callback: AddressCallback<'_>
) -> Result<()>
Walks the OS module list and calls the provided callback for each module structure address
Arguments
callback- where to pass each matching module to. This is an opaque callback.
sourcefn module_by_address(&mut self, address: Address) -> Result<ModuleInfo>
fn module_by_address(&mut self, address: Address) -> Result<ModuleInfo>
Retrieves a module by its structure address
Arguments
address- address where module’s information resides in
sourcefn primary_module_address(&mut self) -> Result<Address>
fn primary_module_address(&mut self) -> Result<Address>
Retrieves address of the primary module structure of the process
This will generally be for the initial executable that was run
sourcefn module_import_list_callback(
&mut self,
_info: &ModuleInfo,
_callback: ImportCallback<'_>
) -> Result<()>
fn module_import_list_callback(
&mut self,
_info: &ModuleInfo,
_callback: ImportCallback<'_>
) -> Result<()>
Retrieves a list of all imports of a given module
sourcefn module_export_list_callback(
&mut self,
_info: &ModuleInfo,
_callback: ExportCallback<'_>
) -> Result<()>
fn module_export_list_callback(
&mut self,
_info: &ModuleInfo,
_callback: ExportCallback<'_>
) -> Result<()>
Retrieves a list of all exports of a given module
sourcefn module_section_list_callback(
&mut self,
_info: &ModuleInfo,
_callback: SectionCallback<'_>
) -> Result<()>
fn module_section_list_callback(
&mut self,
_info: &ModuleInfo,
_callback: SectionCallback<'_>
) -> Result<()>
Retrieves a list of all sections of a given module
type ProcessType = LinuxProcess
type IntoProcessType = LinuxProcess
sourcefn process_info_by_pid(&mut self, pid: Pid) -> Result<ProcessInfo>
fn process_info_by_pid(&mut self, pid: Pid) -> Result<ProcessInfo>
Find process information by its ID
sourcefn process_address_list(&mut self) -> Result<Vec<Address, Global>, Error>
fn process_address_list(&mut self) -> Result<Vec<Address, Global>, Error>
Retrieves a process address list Read more
sourcefn process_info_list_callback(
&mut self,
callback: OpaqueCallback<'_, ProcessInfo>
) -> Result<(), Error>
fn process_info_list_callback(
&mut self,
callback: OpaqueCallback<'_, ProcessInfo>
) -> Result<(), Error>
Walks a process list and calls a callback for each process Read more
sourcefn process_info_list(&mut self) -> Result<Vec<ProcessInfo, Global>, Error>
fn process_info_list(&mut self) -> Result<Vec<ProcessInfo, Global>, Error>
Retrieves a process list
sourcefn process_info_by_name(&mut self, name: &str) -> Result<ProcessInfo, Error>
fn process_info_by_name(&mut self, name: &str) -> Result<ProcessInfo, Error>
Find process information by its name Read more
sourcefn process_by_address(
&'a mut self,
addr: Address
) -> Result<Self::ProcessType, Error>
fn process_by_address(
&'a mut self,
addr: Address
) -> Result<Self::ProcessType, Error>
Creates a process by its internal address, borrowing the OS Read more
sourcefn process_by_name(&'a mut self, name: &str) -> Result<Self::ProcessType, Error>
fn process_by_name(&'a mut self, name: &str) -> Result<Self::ProcessType, Error>
Creates a process by its name, borrowing the OS Read more
sourcefn process_by_pid(&'a mut self, pid: u32) -> Result<Self::ProcessType, Error>
fn process_by_pid(&'a mut self, pid: u32) -> Result<Self::ProcessType, Error>
Creates a process by its ID, borrowing the OS Read more
sourcefn into_process_by_address(
self,
addr: Address
) -> Result<Self::IntoProcessType, Error>
fn into_process_by_address(
self,
addr: Address
) -> Result<Self::IntoProcessType, Error>
Creates a process by its internal address, consuming the OS Read more
sourcefn into_process_by_name(
self,
name: &str
) -> Result<Self::IntoProcessType, Error>
fn into_process_by_name(
self,
name: &str
) -> Result<Self::IntoProcessType, Error>
Creates a process by its name, consuming the OS Read more
sourcefn into_process_by_pid(self, pid: u32) -> Result<Self::IntoProcessType, Error>
fn into_process_by_pid(self, pid: u32) -> Result<Self::IntoProcessType, Error>
Creates a process by its ID, consuming the OS Read more
sourcefn module_list_callback(
&mut self,
callback: OpaqueCallback<'_, ModuleInfo>
) -> Result<(), Error>
fn module_list_callback(
&mut self,
callback: OpaqueCallback<'_, ModuleInfo>
) -> Result<(), Error>
Walks the OS module list and calls the provided callback for each module Read more
sourcefn module_by_name(&mut self, name: &str) -> Result<ModuleInfo, Error>
fn module_by_name(&mut self, name: &str) -> Result<ModuleInfo, Error>
Finds a OS module by its name Read more
sourcefn module_list(&mut self) -> Result<Vec<ModuleInfo, Global>, Error>
fn module_list(&mut self) -> Result<Vec<ModuleInfo, Global>, Error>
Retrieves a module list for the OS
sourcefn primary_module(&mut self) -> Result<ModuleInfo, Error>
fn primary_module(&mut self) -> Result<ModuleInfo, Error>
Retrieves information for the primary module of the OS Read more
sourcefn module_import_list(
&mut self,
info: &ModuleInfo
) -> Result<Vec<ImportInfo, Global>, Error>
fn module_import_list(
&mut self,
info: &ModuleInfo
) -> Result<Vec<ImportInfo, Global>, Error>
Retrieves a list of all imports of a given module
sourcefn module_export_list(
&mut self,
info: &ModuleInfo
) -> Result<Vec<ExportInfo, Global>, Error>
fn module_export_list(
&mut self,
info: &ModuleInfo
) -> Result<Vec<ExportInfo, Global>, Error>
Retrieves a list of all exports of a given module
sourcefn module_section_list(
&mut self,
info: &ModuleInfo
) -> Result<Vec<SectionInfo, Global>, Error>
fn module_section_list(
&mut self,
info: &ModuleInfo
) -> Result<Vec<SectionInfo, Global>, Error>
Retrieves a list of all sections of a given module
sourcefn module_import_by_name(
&mut self,
info: &ModuleInfo,
name: &str
) -> Result<ImportInfo, Error>
fn module_import_by_name(
&mut self,
info: &ModuleInfo,
name: &str
) -> Result<ImportInfo, Error>
Finds a single import of a given module by its name
sourcefn module_export_by_name(
&mut self,
info: &ModuleInfo,
name: &str
) -> Result<ExportInfo, Error>
fn module_export_by_name(
&mut self,
info: &ModuleInfo,
name: &str
) -> Result<ExportInfo, Error>
Finds a single export of a given module by its name
sourcefn module_section_by_name(
&mut self,
info: &ModuleInfo,
name: &str
) -> Result<SectionInfo, Error>
fn module_section_by_name(
&mut self,
info: &ModuleInfo,
name: &str
) -> Result<SectionInfo, Error>
Finds a single section of a given module by its name
sourceimpl<'cglue_a, CGlueInst: Deref<Target = NativeOs>, CGlueCtx: ContextBounds> OsInstanceVtableFiller<'cglue_a, CGlueInst, CGlueCtx> for NativeOs
impl<'cglue_a, CGlueInst: Deref<Target = NativeOs>, CGlueCtx: ContextBounds> OsInstanceVtableFiller<'cglue_a, CGlueInst, CGlueCtx> for NativeOs
fn fill_table(
table: OsInstanceVtables<'cglue_a, CGlueInst, CGlueCtx>
) -> OsInstanceVtables<'cglue_a, CGlueInst, CGlueCtx>
Auto Trait Implementations
impl RefUnwindSafe for LinuxOs
impl Send for LinuxOs
impl Sync for LinuxOs
impl Unpin for LinuxOs
impl UnwindSafe for LinuxOs
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<'a, T> BorrowOwned<'a> for T where
T: 'a + Clone,
impl<'a, T> BorrowOwned<'a> for T where
T: 'a + Clone,
type ROwned = T
type ROwned = T
The owned type, stored in RCow::Owned
fn r_borrow(
this: &'a <T as BorrowOwned<'a>>::ROwned
) -> <T as BorrowOwned<'a>>::RBorrowed
fn r_to_owned(
this: <T as BorrowOwned<'a>>::RBorrowed
) -> <T as BorrowOwned<'a>>::ROwned
fn deref_borrowed(this: &<T as BorrowOwned<'a>>::RBorrowed) -> &T
fn deref_owned(this: &<T as BorrowOwned<'a>>::ROwned) -> &T
fn from_cow_borrow(this: &'a T) -> <T as BorrowOwned<'a>>::RBorrowed
fn from_cow_owned(this: <T as ToOwned>::Owned) -> <T as BorrowOwned<'a>>::ROwned
fn into_cow_borrow(this: <T as BorrowOwned<'a>>::RBorrowed) -> &'a T
fn into_cow_owned(this: <T as BorrowOwned<'a>>::ROwned) -> <T as ToOwned>::Owned
impl<T> GetWithMetadata for T
impl<T> GetWithMetadata for T
type ForSelf = WithMetadata_<T, T>
type ForSelf = WithMetadata_<T, T>
This is always WithMetadata_<Self, Self>
impl<S> ROExtAcc for S
impl<S> ROExtAcc for S
fn f_get<F>(&self, offset: FieldOffset<S, F, Aligned>) -> &F
fn f_get<F>(&self, offset: FieldOffset<S, F, Aligned>) -> &F
Gets a reference to a field, determined by offset. Read more
fn f_get_mut<F>(&mut self, offset: FieldOffset<S, F, Aligned>) -> &mut F
fn f_get_mut<F>(&mut self, offset: FieldOffset<S, F, Aligned>) -> &mut F
Gets a muatble reference to a field, determined by offset. Read more
fn f_get_ptr<F, A>(&self, offset: FieldOffset<S, F, A>) -> *const F
fn f_get_ptr<F, A>(&self, offset: FieldOffset<S, F, A>) -> *const F
Gets a const pointer to a field,
the field is determined by offset. Read more
fn f_get_mut_ptr<F, A>(&mut self, offset: FieldOffset<S, F, A>) -> *mut F
fn f_get_mut_ptr<F, A>(&mut self, offset: FieldOffset<S, F, A>) -> *mut F
Gets a mutable pointer to a field, determined by offset. Read more
impl<S> ROExtOps<Aligned> for S
impl<S> ROExtOps<Aligned> for S
fn f_replace<F>(&mut self, offset: FieldOffset<S, F, Aligned>, value: F) -> F
fn f_replace<F>(&mut self, offset: FieldOffset<S, F, Aligned>, value: F) -> F
Replaces a field (determined by offset) with value,
returning the previous value of the field. Read more
fn f_swap<F>(&mut self, offset: FieldOffset<S, F, Aligned>, right: &mut S)
fn f_swap<F>(&mut self, offset: FieldOffset<S, F, Aligned>, right: &mut S)
Swaps a field (determined by offset) with the same field in right. Read more
fn f_get_copy<F>(&self, offset: FieldOffset<S, F, Aligned>) -> F where
F: Copy,
fn f_get_copy<F>(&self, offset: FieldOffset<S, F, Aligned>) -> F where
F: Copy,
Gets a copy of a field (determined by offset).
The field is determined by offset. Read more
impl<S> ROExtOps<Unaligned> for S
impl<S> ROExtOps<Unaligned> for S
fn f_replace<F>(&mut self, offset: FieldOffset<S, F, Unaligned>, value: F) -> F
fn f_replace<F>(&mut self, offset: FieldOffset<S, F, Unaligned>, value: F) -> F
Replaces a field (determined by offset) with value,
returning the previous value of the field. Read more
fn f_swap<F>(&mut self, offset: FieldOffset<S, F, Unaligned>, right: &mut S)
fn f_swap<F>(&mut self, offset: FieldOffset<S, F, Unaligned>, right: &mut S)
Swaps a field (determined by offset) with the same field in right. Read more
fn f_get_copy<F>(&self, offset: FieldOffset<S, F, Unaligned>) -> F where
F: Copy,
fn f_get_copy<F>(&self, offset: FieldOffset<S, F, Unaligned>) -> F where
F: Copy,
Gets a copy of a field (determined by offset).
The field is determined by offset. Read more
impl<T> SelfOps for T where
T: ?Sized,
impl<T> SelfOps for T where
T: ?Sized,
fn eq_id(&self, other: &Self) -> bool
fn eq_id(&self, other: &Self) -> bool
Compares the address of self with the address of other. Read more
fn piped<F, U>(self, f: F) -> U where
F: FnOnce(Self) -> U,
fn piped<F, U>(self, f: F) -> U where
F: FnOnce(Self) -> U,
Emulates the pipeline operator, allowing method syntax in more places. Read more
fn piped_ref<'a, F, U>(&'a self, f: F) -> U where
F: FnOnce(&'a Self) -> U,
fn piped_ref<'a, F, U>(&'a self, f: F) -> U where
F: FnOnce(&'a Self) -> U,
The same as piped except that the function takes &Self
Useful for functions that take &Self instead of Self. Read more
fn piped_mut<'a, F, U>(&'a mut self, f: F) -> U where
F: FnOnce(&'a mut Self) -> U,
fn piped_mut<'a, F, U>(&'a mut self, f: F) -> U where
F: FnOnce(&'a mut Self) -> U,
The same as piped, except that the function takes &mut Self.
Useful for functions that take &mut Self instead of Self. Read more
fn mutated<F>(self, f: F) -> Self where
F: FnOnce(&mut Self),
fn mutated<F>(self, f: F) -> Self where
F: FnOnce(&mut Self),
Mutates self using a closure taking self by mutable reference, passing it along the method chain. Read more
fn observe<F>(self, f: F) -> Self where
F: FnOnce(&Self),
fn observe<F>(self, f: F) -> Self where
F: FnOnce(&Self),
Observes the value of self, passing it along unmodified. Useful in long method chains. Read more
fn into_<T>(self) -> T where
Self: Into<T>,
fn into_<T>(self) -> T where
Self: Into<T>,
Performs a conversion with Into.
using the turbofish .into_::<_>() syntax. Read more
fn as_ref_<T>(&self) -> &T where
Self: AsRef<T>,
T: ?Sized,
fn as_ref_<T>(&self) -> &T where
Self: AsRef<T>,
T: ?Sized,
Performs a reference to reference conversion with AsRef,
using the turbofish .as_ref_::<_>() syntax. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more
impl<This> TransmuteElement for This where
This: ?Sized,
impl<This> TransmuteElement for This where
This: ?Sized,
unsafe fn transmute_element<T>(self) -> Self::TransmutedPtr where
Self: CanTransmuteElement<T>,
unsafe fn transmute_element<T>(self) -> Self::TransmutedPtr where
Self: CanTransmuteElement<T>,
Transmutes the element type of this pointer.. Read more
impl<T> TypeIdentity for T where
T: ?Sized,
impl<T> TypeIdentity for T where
T: ?Sized,
type Type = T
type Type = T
This is always Self.
fn into_type(self) -> Self::Type where
Self::Type: Sized,
fn into_type(self) -> Self::Type where
Self::Type: Sized,
Converts a value back to the original type.
fn as_type(&self) -> &Self::Type
fn as_type(&self) -> &Self::Type
Converts a reference back to the original type.
fn as_type_mut(&mut self) -> &mut Self::Type
fn as_type_mut(&mut self) -> &mut Self::Type
Converts a mutable reference back to the original type.
fn into_type_box(self: Box<Self, Global>) -> Box<Self::Type, Global>
fn into_type_box(self: Box<Self, Global>) -> Box<Self::Type, Global>
Converts a box back to the original type.
fn into_type_arc(this: Arc<Self>) -> Arc<Self::Type>
fn into_type_arc(this: Arc<Self>) -> Arc<Self::Type>
Converts an Arc back to the original type. Read more
fn into_type_rc(this: Rc<Self>) -> Rc<Self::Type>
fn into_type_rc(this: Rc<Self>) -> Rc<Self::Type>
Converts an Rc back to the original type. Read more
fn from_type(this: Self::Type) -> Self where
Self::Type: Sized,
fn from_type(this: Self::Type) -> Self where
Self::Type: Sized,
Converts a value back to the original type.
fn from_type_ref(this: &Self::Type) -> &Self
fn from_type_ref(this: &Self::Type) -> &Self
Converts a reference back to the original type.
fn from_type_mut(this: &mut Self::Type) -> &mut Self
fn from_type_mut(this: &mut Self::Type) -> &mut Self
Converts a mutable reference back to the original type.
fn from_type_box(this: Box<Self::Type, Global>) -> Box<Self, Global>
fn from_type_box(this: Box<Self::Type, Global>) -> Box<Self, Global>
Converts a box back to the original type.
fn from_type_arc(this: Arc<Self::Type>) -> Arc<Self>
fn from_type_arc(this: Arc<Self::Type>) -> Arc<Self>
Converts an Arc back to the original type.
fn from_type_rc(this: Rc<Self::Type>) -> Rc<Self>
fn from_type_rc(this: Rc<Self::Type>) -> Rc<Self>
Converts an Rc back to the original type.