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]

fn magic() -> u32[src]

The header magic that identifies this format.

fn from_blob_bytes(data: &'a [u8]) -> Result<Self, AppleCodesignError>[src]

Attempt to construct an instance by parsing a bytes slice. Read more

fn serialize_payload(&self) -> Result<Vec<u8>, AppleCodesignError>[src]

Serialize the payload of this blob to bytes. Read more

fn to_blob_bytes(&self) -> Result<Vec<u8>, AppleCodesignError>[src]

Serialize this blob to bytes. Read more

fn digest_with(
    &self,
    hash_type: DigestType
) -> Result<Vec<u8>, AppleCodesignError>
[src]

Obtain the digest of the blob using the specified hasher. Read more

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

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

Formats the value using the given formatter. Read more

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]

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

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

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

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

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

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

pub fn from(t: T) -> T[src]

Performs the conversion.

impl<T> Instrument for T[src]

fn instrument(self, span: Span) -> Instrumented<Self>[src]

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

fn in_current_span(self) -> Instrumented<Self>[src]

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

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

pub fn into(self) -> U[src]

Performs the conversion.

impl<T> Same<T> for T

type Output = T

Should always be Self

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.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

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.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.

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