Struct goblin::mach::segment::Section

source ·
pub struct Section {
    pub sectname: [u8; 16],
    pub segname: [u8; 16],
    pub addr: u64,
    pub size: u64,
    pub offset: u32,
    pub align: u32,
    pub reloff: u32,
    pub nreloc: u32,
    pub flags: u32,
}
Expand description

Generalized 32/64 bit Section

Fields§

§sectname: [u8; 16]

name of this section

§segname: [u8; 16]

segment this section goes in

§addr: u64

memory address of this section

§size: u64

size in bytes of this section

§offset: u32

file offset of this section

§align: u32

section alignment (power of 2)

§reloff: u32

file offset of relocation entries

§nreloc: u32

number of relocation entries

§flags: u32

flags (section type and attributes

Implementations§

source§

impl Section

source

pub fn name(&self) -> Result<&str>

The name of this section

source

pub fn segname(&self) -> Result<&str>

The containing segment’s name

source

pub fn iter_relocations<'b>( &self, data: &'b [u8], ctx: Ctx ) -> RelocationIterator<'b>

Iterate this sections relocations given data; data must be the original binary

Trait Implementations§

source§

impl Debug for Section

source§

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

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

impl Default for Section

source§

fn default() -> Section

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

impl From<Section> for Section32

source§

fn from(section: Section) -> Self

Converts to this type from the input type.
source§

impl From<Section> for Section64

source§

fn from(section: Section) -> Self

Converts to this type from the input type.
source§

impl From<Section32> for Section

source§

fn from(section: Section32) -> Self

Converts to this type from the input type.
source§

impl From<Section64> for Section

source§

fn from(section: Section64) -> Self

Converts to this type from the input type.
source§

impl IntoCtx<Ctx> for Section

source§

fn into_ctx(self, bytes: &mut [u8], ctx: Ctx)

source§

impl SizeWith<Ctx> for Section

source§

impl<'a> TryFromCtx<'a, Ctx> for Section

§

type Error = Error

source§

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

source§

impl TryIntoCtx<Ctx> for Section

§

type Error = Error

source§

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

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

§

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

§

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.