Struct tugger_apple_codesign::CodeDirectoryBlob[][src]

pub struct CodeDirectoryBlob<'a> {
Show fields pub version: u32, pub flags: CodeSignatureFlags, pub code_limit: u32, pub hash_size: u8, pub hash_type: DigestType, pub platform: u8, pub page_size: u32, pub spare2: u32, pub scatter_offset: Option<u32>, pub spare3: Option<u32>, pub code_limit_64: Option<u64>, pub exec_seg_base: Option<u64>, pub exec_seg_limit: Option<u64>, pub exec_seg_flags: Option<ExecutableSegmentFlags>, pub runtime: Option<u32>, pub pre_encrypt_offset: Option<u32>, pub linkage_hash_type: Option<u8>, pub linkage_truncated: Option<u8>, pub spare4: Option<u16>, pub linkage_offset: Option<u32>, pub linkage_size: Option<u32>, pub ident: Cow<'a, str>, pub team_name: Option<Cow<'a, str>>, pub code_hashes: Vec<Digest<'a>>, pub special_hashes: HashMap<CodeSigningSlot, Digest<'a>>,
}

Represents a code directory blob entry.

This struct is versioned and has been extended over time.

The struct here represents a superset of all fields in all versions.

The parser will set Option<T> fields to None for instances where the version is lower than the version that field was introduced in.

Fields

version: u32

Compatibility version.

flags: CodeSignatureFlags

Setup and mode flags.

code_limit: u32

Limit to main image signature range.

This is the file-level offset to stop digesting code data at. It likely corresponds to the file-offset offset where the embedded signature data starts in the __LINKEDIT segment.

hash_size: u8

Size of each hash in bytes.

hash_type: DigestType

Type of hash.

platform: u8

Platform identifier. 0 if not platform binary.

page_size: u32

Page size in bytes. (stored as log u8)

spare2: u32

Unused (must be 0).

scatter_offset: Option<u32>

Offset of optional scatter vector.

spare3: Option<u32>

Unused (must be 0).

code_limit_64: Option<u64>

Limit to main image signature range, 64 bits.

exec_seg_base: Option<u64>

Offset of executable segment.

exec_seg_limit: Option<u64>

Limit of executable segment.

exec_seg_flags: Option<ExecutableSegmentFlags>

Executable segment flags.

runtime: Option<u32>pre_encrypt_offset: Option<u32>linkage_hash_type: Option<u8>linkage_truncated: Option<u8>spare4: Option<u16>linkage_offset: Option<u32>linkage_size: Option<u32>ident: Cow<'a, str>team_name: Option<Cow<'a, str>>code_hashes: Vec<Digest<'a>>special_hashes: HashMap<CodeSigningSlot, Digest<'a>>

Implementations

impl<'a> CodeDirectoryBlob<'a>[src]

pub fn adjust_version(&mut self) -> u32[src]

Adjust the version of the data structure according to what fields are set.

Returns the old version.

pub fn clear_newer_fields(&mut self)[src]

Clears optional fields that are newer than the current version.

The C structure is versioned and our Rust struct is a superset of all versions. While our serializer should omit too new fields for a given version, it is possible for some optional fields to be set when they wouldn’t get serialized.

Calling this function will set fields not present in the current version to None.

pub fn to_owned(&self) -> CodeDirectoryBlob<'static>[src]

Trait Implementations

impl<'a> Blob<'a> for CodeDirectoryBlob<'a>[src]

impl<'a> Debug for CodeDirectoryBlob<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for CodeDirectoryBlob<'a>

impl<'a> Send for CodeDirectoryBlob<'a>

impl<'a> Sync for CodeDirectoryBlob<'a>

impl<'a> Unpin for CodeDirectoryBlob<'a>

impl<'a> UnwindSafe for CodeDirectoryBlob<'a>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> SendSyncUnwindSafe for T where
    T: Send + Sync + UnwindSafe + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.