123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374 |
- use header::Tag;
- /// This tag contains section header table from an ELF kernel.
- ///
- /// The sections iterator is provided via the `sections` method.
- #[derive(Debug)]
- pub struct ElfSectionsTag {
- inner: *const ElfSectionsTagInner,
- offset: usize,
- }
- pub unsafe fn elf_sections_tag(tag: &Tag, offset: usize) -> ElfSectionsTag {
- assert_eq!(9, tag.typ);
- let es = ElfSectionsTag {
- inner: (tag as *const Tag).offset(1) as *const ElfSectionsTagInner,
- offset,
- };
- assert!((es.get().entry_size * es.get().shndx) <= tag.size);
- es
- }
- #[derive(Clone, Copy, Debug)]
- #[repr(C, packed)] // only repr(C) would add unwanted padding at the end
- struct ElfSectionsTagInner {
- number_of_sections: u32,
- entry_size: u32,
- shndx: u32, // string table
- }
- impl ElfSectionsTag {
- /// Get an iterator of loaded ELF sections.
- ///
- /// # Examples
- ///
- /// ```ignore
- /// if let Some(elf_tag) = boot_info.elf_sections_tag() {
- /// let mut total = 0;
- /// for section in elf_tag.sections() {
- /// println!("Section: {:?}", section);
- /// total += 1;
- /// }
- /// }
- /// ```
- pub fn sections(&self) -> impl Iterator<Item = ElfSection> {
- let string_section_offset = (self.get().shndx * self.get().entry_size) as isize;
- let string_section_ptr =
- unsafe { self.first_section().offset(string_section_offset) as *const _ };
- ElfSectionIter {
- current_section: self.first_section(),
- remaining_sections: self.get().number_of_sections,
- entry_size: self.get().entry_size,
- string_section: string_section_ptr,
- offset: self.offset,
- }
- }
- fn first_section(&self) -> *const u8 {
- (unsafe { self.inner.offset(1) }) as *const _
- }
- fn get(&self) -> &ElfSectionsTagInner {
- unsafe { &*self.inner }
- }
- }
- /// An iterator over some ELF sections.
- #[derive(Clone, Debug)]
- pub struct ElfSectionIter {
- current_section: *const u8,
- remaining_sections: u32,
- entry_size: u32,
- string_section: *const u8,
- offset: usize,
- }
- impl Iterator for ElfSectionIter {
- type Item = ElfSection;
- fn next(&mut self) -> Option<ElfSection> {
- while self.remaining_sections != 0 {
- let section = ElfSection {
- inner: self.current_section,
- string_section: self.string_section,
- entry_size: self.entry_size,
- offset: self.offset,
- };
- self.current_section = unsafe { self.current_section.offset(self.entry_size as isize) };
- self.remaining_sections -= 1;
- if section.section_type() != ElfSectionType::Unused {
- return Some(section);
- }
- }
- None
- }
- }
- /// A single generic ELF Section.
- #[derive(Debug)]
- pub struct ElfSection {
- inner: *const u8,
- string_section: *const u8,
- entry_size: u32,
- offset: usize,
- }
- #[derive(Clone, Copy, Debug)]
- #[repr(C, packed)]
- struct ElfSectionInner32 {
- name_index: u32,
- typ: u32,
- flags: u32,
- addr: u32,
- offset: u32,
- size: u32,
- link: u32,
- info: u32,
- addralign: u32,
- entry_size: u32,
- }
- #[derive(Clone, Copy, Debug)]
- #[repr(C, packed)]
- struct ElfSectionInner64 {
- name_index: u32,
- typ: u32,
- flags: u64,
- addr: u64,
- offset: u64,
- size: u64,
- link: u32,
- info: u32,
- addralign: u64,
- entry_size: u64,
- }
- impl ElfSection {
- /// Get the section type as a `ElfSectionType` enum variant.
- pub fn section_type(&self) -> ElfSectionType {
- match self.get().typ() {
- 0 => ElfSectionType::Unused,
- 1 => ElfSectionType::ProgramSection,
- 2 => ElfSectionType::LinkerSymbolTable,
- 3 => ElfSectionType::StringTable,
- 4 => ElfSectionType::RelaRelocation,
- 5 => ElfSectionType::SymbolHashTable,
- 6 => ElfSectionType::DynamicLinkingTable,
- 7 => ElfSectionType::Note,
- 8 => ElfSectionType::Uninitialized,
- 9 => ElfSectionType::RelRelocation,
- 10 => ElfSectionType::Reserved,
- 11 => ElfSectionType::DynamicLoaderSymbolTable,
- 0x6000_0000..=0x6FFF_FFFF => ElfSectionType::EnvironmentSpecific,
- 0x7000_0000..=0x7FFF_FFFF => ElfSectionType::ProcessorSpecific,
- _ => panic!(),
- }
- }
- /// Get the "raw" section type as a `u32`
- pub fn section_type_raw(&self) -> u32 {
- self.get().typ()
- }
- /// Read the name of the section.
- pub fn name(&self) -> &str {
- use core::{slice, str};
- let name_ptr = unsafe { self.string_table().offset(self.get().name_index() as isize) };
- let strlen = {
- let mut len = 0;
- while unsafe { *name_ptr.offset(len) } != 0 {
- len += 1;
- }
- len as usize
- };
- str::from_utf8(unsafe { slice::from_raw_parts(name_ptr, strlen) }).unwrap()
- }
- /// Get the physical start address of the section.
- pub fn start_address(&self) -> u64 {
- self.get().addr()
- }
- /// Get the physical end address of the section.
- ///
- /// This is the same as doing `section.start_address() + section.size()`
- pub fn end_address(&self) -> u64 {
- self.get().addr() + self.get().size()
- }
- /// Get the section's size in bytes.
- pub fn size(&self) -> u64 {
- self.get().size()
- }
- /// Get the section's address alignment constraints.
- ///
- /// That is, the value of `start_address` must be congruent to 0,
- /// modulo the value of `addrlign`. Currently, only 0 and positive
- /// integral powers of two are allowed. Values 0 and 1 mean the section has no
- /// alignment constraints.
- pub fn addralign(&self) -> u64 {
- self.get().addralign()
- }
- /// Get the section's flags.
- pub fn flags(&self) -> ElfSectionFlags {
- ElfSectionFlags::from_bits_truncate(self.get().flags())
- }
- /// Check if the `ALLOCATED` flag is set in the section flags.
- pub fn is_allocated(&self) -> bool {
- self.flags().contains(ElfSectionFlags::ALLOCATED)
- }
- fn get(&self) -> &dyn ElfSectionInner {
- match self.entry_size {
- 40 => unsafe { &*(self.inner as *const ElfSectionInner32) },
- 64 => unsafe { &*(self.inner as *const ElfSectionInner64) },
- _ => panic!(),
- }
- }
- unsafe fn string_table(&self) -> *const u8 {
- let addr = match self.entry_size {
- 40 => (*(self.string_section as *const ElfSectionInner32)).addr as usize,
- 64 => (*(self.string_section as *const ElfSectionInner64)).addr as usize,
- _ => panic!(),
- };
- (addr + self.offset) as *const _
- }
- }
- trait ElfSectionInner {
- fn name_index(&self) -> u32;
- fn typ(&self) -> u32;
- fn flags(&self) -> u64;
- fn addr(&self) -> u64;
- fn size(&self) -> u64;
- fn addralign(&self) -> u64;
- }
- impl ElfSectionInner for ElfSectionInner32 {
- fn name_index(&self) -> u32 {
- self.name_index
- }
- fn typ(&self) -> u32 {
- self.typ
- }
- fn flags(&self) -> u64 {
- self.flags.into()
- }
- fn addr(&self) -> u64 {
- self.addr.into()
- }
- fn size(&self) -> u64 {
- self.size.into()
- }
- fn addralign(&self) -> u64 {
- self.addralign.into()
- }
- }
- impl ElfSectionInner for ElfSectionInner64 {
- fn name_index(&self) -> u32 {
- self.name_index
- }
- fn typ(&self) -> u32 {
- self.typ
- }
- fn flags(&self) -> u64 {
- self.flags
- }
- fn addr(&self) -> u64 {
- self.addr
- }
- fn size(&self) -> u64 {
- self.size
- }
- fn addralign(&self) -> u64 {
- self.addralign.into()
- }
- }
- /// An enum abstraction over raw ELF section types.
- #[derive(PartialEq, Eq, Debug, Copy, Clone)]
- #[repr(u32)]
- pub enum ElfSectionType {
- /// This value marks the section header as inactive; it does not have an
- /// associated section. Other members of the section header have undefined
- /// values.
- Unused = 0,
- /// The section holds information defined by the program, whose format and
- /// meaning are determined solely by the program.
- ProgramSection = 1,
- /// This section holds a linker symbol table.
- LinkerSymbolTable = 2,
- /// The section holds a string table.
- StringTable = 3,
- /// The section holds relocation entries with explicit addends, such as type
- /// Elf32_Rela for the 32-bit class of object files. An object file may have
- /// multiple relocation sections.
- RelaRelocation = 4,
- /// The section holds a symbol hash table.
- SymbolHashTable = 5,
- /// The section holds dynamic linking tables.
- DynamicLinkingTable = 6,
- /// This section holds information that marks the file in some way.
- Note = 7,
- /// A section of this type occupies no space in the file but otherwise resembles
- /// `ProgramSection`. Although this section contains no bytes, the
- /// sh_offset member contains the conceptual file offset.
- Uninitialized = 8,
- /// The section holds relocation entries without explicit addends, such as type
- /// Elf32_Rel for the 32-bit class of object files. An object file may have
- /// multiple relocation sections.
- RelRelocation = 9,
- /// This section type is reserved but has unspecified semantics.
- Reserved = 10,
- /// This section holds a dynamic loader symbol table.
- DynamicLoaderSymbolTable = 11,
- /// Values in this inclusive range (`[0x6000_0000, 0x6FFF_FFFF)`) are
- /// reserved for environment-specific semantics.
- EnvironmentSpecific = 0x6000_0000,
- /// Values in this inclusive range (`[0x7000_0000, 0x7FFF_FFFF)`) are
- /// reserved for processor-specific semantics.
- ProcessorSpecific = 0x7000_0000,
- }
- bitflags! {
- /// ELF Section bitflags.
- pub struct ElfSectionFlags: u64 {
- /// The section contains data that should be writable during program execution.
- const WRITABLE = 0x1;
- /// The section occupies memory during the process execution.
- const ALLOCATED = 0x2;
- /// The section contains executable machine instructions.
- const EXECUTABLE = 0x4;
- // plus environment-specific use at 0x0F000000
- // plus processor-specific use at 0xF0000000
- }
- }
|