Skip to main content

Probe

Struct Probe 

Source
pub struct Probe {
    pub inst: &'static str,
    pub interval: u32,
}
Expand description

How a prologue touches the stack as it takes a frame, on a target that can.

What -fstack-clash-protection asks for. An operating system leaves one page below every stack unmapped, so that a stack which grows into it faults rather than running into whatever is under it, and a frame larger than that page can move the stack pointer clean over it without ever writing to it. A prologue that takes the frame a page at a time and writes something to each page as it arrives cannot: the first page it reaches that is not mapped is the one that faults.

Two facts rather than one because neither implies the other. What touches a page is an instruction of the machine, and how far apart the pages are is what the kernel that runs the program left, and they are together here because a prologue that has one and not the other cannot write anything.

Fields§

§inst: &'static str

Writes an address without changing what is there, which is what makes it safe to do to a page a local has not been put in yet.

§interval: u32

How far apart the touches are, which is the page the operating system leaves below the stack. A prologue never moves the stack pointer further than this without touching where it landed.

Trait Implementations§

Source§

impl Clone for Probe

Source§

fn clone(&self) -> Probe

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

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

Performs copy-assignment from source. Read more
Source§

impl Copy for Probe

Source§

impl Debug for Probe

Source§

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

Formats the value using the given formatter. Read more
Source§

impl Eq for Probe

Source§

impl PartialEq for Probe

Source§

fn eq(&self, other: &Probe) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl StructuralPartialEq for Probe

Auto Trait Implementations§

§

impl Freeze for Probe

§

impl RefUnwindSafe for Probe

§

impl Send for Probe

§

impl Sync for Probe

§

impl Unpin for Probe

§

impl UnsafeUnpin for Probe

§

impl UnwindSafe for Probe

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, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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> 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 = !

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

fn try_from(value: U) -> Result<T, !>

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.