liblisa::state::random

Struct StateGen

pub struct StateGen<'a, A: Arch, M: MappableArea> {
    pub accesses: &'a MemoryAccesses<A>,
    /* private fields */
}
Expand description

Generates random SystemStates consistent with a set of MemoryAccesses.

Fields§

§accesses: &'a MemoryAccesses<A>

The memory accesses to which all generated SystemStates must adhere.

Implementations§

§

impl<'a, A: Arch, M: MappableArea> StateGen<'a, A, M>

pub fn new( accesses: &'a MemoryAccesses<A>, mappable: &'a M, ) -> Result<Self, RandomizationError>

Creates a new randomized state generator. This function builds memory access constraints for the random state generation. If it is not possible to generate a state of non-overlapping memory mappings, this function will return an error.

pub fn needs_adapt_from_bytes( &self, view: &SystemStateByteView<'_, A>, bytes_modified: &[StateByte], ) -> bool

Returns true if any of the bytes in bytes_modified are used in a memory mapping. If they are, this means that you need to call StateGen::adapt after modifying one of these bytes.

pub fn needs_adapt_from_gpregs(&self, gpregs: &[A::GpReg]) -> bool

Returns true if any of the general purpose registers in gpregs are used in a memory mapping. If they are, this means that you need to call StateGen::adapt after modifying one of these registers.

pub fn adapt(&self, s: &mut SystemState<A>, changed_instr: bool) -> bool

Adapts the memory mappings to the current CPU state in s.cpu(). This only changes s.memory. If it is impossible to map the memory to the new CPU state, false is returned. If false is returned, the memory mappings in state s may be in a partially modified state. Another successful call to this function is needed before the state is valid.

pub fn randomize_register<R: Rng>(&self, rng: &mut R, reg: A::Reg) -> u64

Returns a randomized value for the register reg. The random value is masked to Register::mask, if any.

If the register is the program counter, a random address where the full instruction can be mapped is returned. If the register is an address register (such as the FS/GS base registers), a random valid mappable address is returned.

pub fn randomize_new<R: Rng>( &self, rng: &mut R, ) -> Result<SystemState<A>, RandomizationError>

Generates a new random CPU state with valid memory mappings.

pub fn randomize_new_with_locations<R: Rng>( &self, base: &SystemState<A>, locations: &[Location<A>], rng: &mut R, ) -> Result<SystemState<A>, RandomizationError>

Randomizes the state, but only guarantees to change values in locations. Other values may be copied from base as an optimization, or may be randomized.

pub fn fill_with_byte<R: Rng>( &self, rng: &mut R, state: &mut SystemState<A>, b: u8, )

Fills as many storage locations with the byte b.

pub fn fill_from_address_register<R: Rng>( &self, rng: &mut R, state: &mut SystemState<A>, reg: A::GpReg, )

Fills as many storage locations as possible with the value of the register reg.

pub fn remap( &self, cs: &SystemState<A>, ) -> Result<SystemState<A>, RemapError<A>>

Remaps a provide system state from other memory accesses to the memory accesses belonging to this StateGen.

pub fn randomize_location<R: Rng>( &self, location: &Location<A>, state: &mut SystemState<A>, rng: &mut R, bytes_to_keep_unchanged: &[bool], )

Randomizes the storage location location while keeping a byte at position N in the location unchanged if bytes_to_keep_unchanged[N] is true.

pub fn address_registers(&self) -> &[A::GpReg]

Returns all address registers involved in the address computations of memory mappings.

Trait Implementations§

§

impl<A: Arch, M: MappableArea> Clone for StateGen<'_, A, M>

§

fn clone(&self) -> Self

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more

Auto Trait Implementations§

§

impl<'a, A, M> !Freeze for StateGen<'a, A, M>

§

impl<'a, A, M> RefUnwindSafe for StateGen<'a, A, M>

§

impl<'a, A, M> Send for StateGen<'a, A, M>
where M: Sync,

§

impl<'a, A, M> Sync for StateGen<'a, A, M>
where M: Sync,

§

impl<'a, A, M> Unpin for StateGen<'a, A, M>
where <A as Arch>::GpReg: Unpin,

§

impl<'a, A, M> UnwindSafe for StateGen<'a, A, M>
where M: RefUnwindSafe, <A as Arch>::GpReg: UnwindSafe, <A as Arch>::Reg: RefUnwindSafe,

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<T> DynClone for T
where T: Clone,

Source§

fn __clone_box(&self, _: Private) -> *mut ()

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T, W> HasTypeWitness<W> for T
where W: MakeTypeWitness<Arg = T>, T: ?Sized,

§

const WITNESS: W = W::MAKE

A constant of the type witness
§

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

§

const TYPE_EQ: TypeEq<T, <T as Identity>::Type> = TypeEq::NEW

Proof that Self is the same type as Self::Type, provides methods for casting between Self and Self::Type.
§

type Type = T

The same type as Self, used to emulate type equality bounds (T == U) with associated type equality constraints (T: Identity<Type = U>).
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> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
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.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V