lief 1.0.0

Official Rust bindings for LIEF
//! This module represents the PE's Thread Local Storage (TLS)

use lief_ffi as ffi;

use crate::common::{AsFFI, FromFFI, into_optional};
use crate::to_slice;
use std::marker::PhantomData;

use crate::pe::DataDirectory;
use crate::pe::Section;

pub struct TLS<'a> {
    ptr: cxx::UniquePtr<ffi::PE_TLS>,
    _owner: PhantomData<&'a ffi::PE_Binary>,
}

impl std::fmt::Debug for TLS<'_> {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        f.debug_struct("TLS")
            .field("callbacks", &self.callbacks())
            .field("addressof_index", &self.addressof_index())
            .field("addressof_callbacks", &self.addressof_callbacks())
            .field("sizeof_zero_fill", &self.sizeof_zero_fill())
            .field("characteristics", &self.characteristics())
            .finish()
    }
}

impl TLS<'_> {
    pub fn new() -> TLS<'static> {
        TLS::from_ffi(lief_ffi::PE_TLS::create())
    }
    /// List of callbacks associated with the current TLS
    ///
    /// These functions are called before any other functions.
    pub fn callbacks(&self) -> Vec<u64> {
        Vec::from(self.ptr.callbacks().as_slice())
    }

    /// The location to receive the TLS index assigned by the loader.
    /// This location should be located in a writable section like `.data`
    pub fn addressof_index(&self) -> u64 {
        self.ptr.addressof_index()
    }

    /// Pointer to an array of TLS callback functions.
    ///
    /// The array is null-terminated, so if there is no callback function this field points to 4
    /// bytes set to zero.
    ///
    /// See [`TLS::callbacks`]
    pub fn addressof_callbacks(&self) -> u64 {
        self.ptr.addressof_callbacks()
    }

    /// Size in bytes of the zero to be *padded* after the data specified by [`TLS::data_template`]
    pub fn sizeof_zero_fill(&self) -> u32 {
        self.ptr.sizeof_zero_fill()
    }

    /// The four bits `[23:20]` describe alignment info.
    ///
    /// Possible values are those defined as `IMAGE_SCN_ALIGN_*`, which are also used to describe
    /// alignment of section in object files.
    ///
    /// The other 28 bits are reserved for future use.
    pub fn characteristics(&self) -> u32 {
        self.ptr.characteristics()
    }

    /// The initial content used to initialize TLS data.
    pub fn data_template(&self) -> &[u8] {
        to_slice!(self.ptr.data_template());
    }

    /// Range of addresses where the [`TLS::data_template`] is located.
    ///
    /// The template is a block of data that is used to initialize TLS data.
    /// The system copies all of this data each time a thread is created, so it
    /// must not be corrupted.
    ///
    /// These addresses are not RVA. It is addresses for which there
    /// should be a rebase relocation in the `.reloc` section.
    pub fn addressof_raw_data(&self) -> (u64, u64) {
        let vec = Vec::from(self.ptr.addressof_raw_data().as_slice());
        if vec.len() != 2 {
            return (0, 0);
        }
        (vec[0], vec[1])
    }

    /// The section where the TLS structure is located
    pub fn section(&self) -> Option<Section<'_>> {
        into_optional(self.ptr.section())
    }

    /// The data directory describing the TLS
    pub fn directory(&self) -> Option<DataDirectory<'_>> {
        into_optional(self.ptr.data_directory())
    }

    /// Add an address to the list of callbacks
    pub fn add_callback(&mut self, addr: u64) -> &mut Self {
        self.ptr.pin_mut().add_callback(addr);
        self
    }

    pub fn set_callbacks(&mut self, callbacks: &[u64]) -> &mut Self {
        unsafe {
            self.ptr
                .pin_mut()
                .set_callbacks(callbacks.as_ptr(), callbacks.len());
        }
        self
    }

    pub fn set_addressof_index(&mut self, addr: u64) -> &mut Self {
        self.ptr.pin_mut().set_addressof_index(addr);
        self
    }

    pub fn set_addressof_callback(&mut self, addr: u64) -> &mut Self {
        self.ptr.pin_mut().set_addressof_callback(addr);
        self
    }

    pub fn set_sizeof_zero_fill(&mut self, size: u32) -> &mut Self {
        self.ptr.pin_mut().set_sizeof_zero_fill(size);
        self
    }

    pub fn set_characteristics(&mut self, characteristics: u32) -> &mut Self {
        self.ptr.pin_mut().set_characteristics(characteristics);
        self
    }

    pub fn set_data_template(&mut self, data: &[u8]) -> &mut Self {
        unsafe {
            self.ptr
                .pin_mut()
                .set_data_template(data.as_ptr(), data.len());
        }
        self
    }
}

impl<'a> FromFFI<ffi::PE_TLS> for TLS<'a> {
    fn from_ffi(ptr: cxx::UniquePtr<ffi::PE_TLS>) -> Self {
        TLS {
            ptr,
            _owner: PhantomData,
        }
    }
}

impl<'a> AsFFI<ffi::PE_TLS> for TLS<'a> {
    fn as_ffi(&self) -> &ffi::PE_TLS {
        self.ptr.as_ref().unwrap()
    }

    fn as_mut_ffi(&mut self) -> std::pin::Pin<&mut ffi::PE_TLS> {
        self.ptr.pin_mut()
    }
}