|
@@ -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
|
|
|
+}
|