Skip to main content

TeHeader

Struct TeHeader 

Source
#[repr(C)]
pub struct TeHeader { pub signature: u16, pub machine: u16, pub number_of_sections: u8, pub subsystem: u8, pub stripped_size: u16, pub entry_point: u32, pub base_of_code: u32, pub image_base: u64, pub reloc_dir: DataDirectory, pub debug_dir: DataDirectory, }
Expand description

The TE header is a reduced PE32/PE32+ header containing only fields required for execution in the Platform Initialization (PI) architecture. The TE header is described in this specification: https://uefi.org/specs/PI/1.8/V1_TE_Image.html#te-header

Fields§

§signature: u16

Te signature, always TE_MAGIC

§machine: u16

The machine type

§number_of_sections: u8

The number of sections

§subsystem: u8

The subsystem

§stripped_size: u16

the amount of bytes stripped from the header when converting from a PE32/PE32+ header to a TE header. Used to resolve addresses

§entry_point: u32

The entry point of the binary

§base_of_code: u32

The base of the code section

§image_base: u64

The image base

§reloc_dir: DataDirectory

The size and address of the relocation directory

§debug_dir: DataDirectory

The size and address of the debug directory

Implementations§

Source§

impl TeHeader

Source

pub fn parse(bytes: &[u8], offset: &mut usize) -> Result<Self>

Parse the TE header from the given bytes.

Source

pub fn sections( &self, bytes: &[u8], offset: &mut usize, ) -> Result<Vec<SectionTable>>

Parse the sections from the TE header.

Trait Implementations§

Source§

impl Clone for TeHeader

Source§

fn clone(&self) -> TeHeader

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 Debug for TeHeader

Source§

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

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

impl Default for TeHeader

Source§

fn default() -> TeHeader

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

impl PartialEq for TeHeader

Source§

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

Tests for self and other values to be equal, and is used by ==.
1.0.0 (const: unstable) · Source§

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

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<'a> TryFromCtx<'a, Endian> for TeHeader
where TeHeader: 'a,

Source§

type Error = Error

Source§

fn try_from_ctx( src: &'a [u8], ctx: Endian, ) -> Result<(Self, usize), Self::Error>

Source§

impl<'a_fresh> TryIntoCtx<Endian> for &'a_fresh TeHeader

Source§

type Error = Error

Source§

fn try_into_ctx(self, dst: &mut [u8], ctx: Endian) -> Result<usize, Self::Error>

Source§

impl TryIntoCtx<Endian> for TeHeader

Source§

type Error = Error

Source§

fn try_into_ctx(self, dst: &mut [u8], ctx: Endian) -> Result<usize, Self::Error>

Source§

impl Copy for TeHeader

Source§

impl StructuralPartialEq for TeHeader

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> 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 = 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.