浏览代码

Add ElfSectionType and ElfSectionFlags enums

Philipp Oppermann 9 年之前
父节点
当前提交
d130617c92
共有 2 个文件被更改,包括 28 次插入1 次删除
  1. 27 0
      src/elf_sections.rs
  2. 1 1
      src/lib.rs

+ 27 - 0
src/elf_sections.rs

@@ -60,3 +60,30 @@ pub struct ElfSection {
     addralign: u64,
     entry_size: u64,
 }
+
+#[repr(u32)]
+pub enum ElfSectionType {
+    Unused = 0,
+    ProgramSection = 1,
+    LinkerSymbolTable = 2,
+    StringTable = 3,
+    RelaRelocation = 4,
+    SymbolHashTable = 5,
+    DynamicLinkingTable = 6,
+    Note = 7,
+    Uninitialized = 8,
+    RelRelocation = 9,
+    Reserved = 10,
+    DynamicLoaderSymbolTable = 11,
+    // plus environment-specific use from 0x60000000 to 0x6FFFFFFF
+    // plus processor-specific use from 0x70000000 to 0x7FFFFFFF
+}
+
+#[repr(u32)]
+pub enum ElfSectionFlags {
+    Writable = 0x1,
+    Allocated = 0x2,
+    Executable = 0x4,
+    // plus environment-specific use at 0x0F000000
+    // plus processor-specific use at 0xF0000000
+}

+ 1 - 1
src/lib.rs

@@ -1,7 +1,7 @@
 #![feature(no_std)]
 #![no_std]
 
-pub use elf_sections::{ElfSectionsTag, ElfSection, ElfSectionIter};
+pub use elf_sections::{ElfSectionsTag, ElfSection, ElfSectionIter, ElfSectionType, ElfSectionFlags};
 
 mod elf_sections;