1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
use core::{ffi::CStr, fmt, mem, ops::Deref};

use alloc::{string::String, vec, vec::Vec};

use crate::{fs, memory_management::virtual_memory_mapper};

#[derive(Debug)]
pub enum ElfLoadError {
    InvalidMagic,
    FileSystemError(fs::FileSystemError),
    InvalidElfOrNotSupported,
    UnexpectedEndOfFile,
}

impl From<fs::FileSystemError> for ElfLoadError {
    fn from(e: fs::FileSystemError) -> Self {
        Self::FileSystemError(e)
    }
}

#[allow(dead_code)]
mod consts {
    pub const ELF_MAGIC: &[u8; 4] = b"\x7fELF";
    pub const ABI_SYSV: u8 = 0;
    pub const BITS_32: u8 = 1;
    pub const BITS_64: u8 = 2;
    pub const ENDIANNESS_LITTLE: u8 = 1;
    pub const ENDIANNESS_BIG: u8 = 2;

    pub const ELF_TYPE_RELOCATABLE: u16 = 1;
    pub const ELF_TYPE_EXECUTABLE: u16 = 2;
    pub const ELF_TYPE_SHARED: u16 = 3;

    pub const ELF_MACHINE_X86: u16 = 3;
    pub const ELF_MACHINE_X86_64: u16 = 62;

    pub const PROG_FLAG_EXE: u32 = 0x1;
    pub const PROG_FLAG_WRITE: u32 = 0x2;
    pub const PROG_FLAG_READ: u32 = 0x4;
}

pub fn to_virtual_memory_flags(flags: u32) -> u64 {
    // 0 means read-only
    let mut vm_flags = 0;

    if flags & consts::PROG_FLAG_WRITE != 0 {
        vm_flags |= virtual_memory_mapper::flags::PTE_WRITABLE;
    }
    if flags & consts::PROG_FLAG_EXE != 0 {
        // TODO: add support for executable pages
    }
    vm_flags
}

#[repr(C, packed)]
#[derive(Copy, Clone, Debug)]
struct ElfHeaderBase {
    magic: [u8; 4],
    bits: u8,
    endianness: u8,
    version: u8,
    abi: u8,
    abi_version: u8,
    _pad: [u8; 7],
    elf_type: u16,
    machine: u16,
    elf_version: u32,
}

#[repr(C, packed)]
#[derive(Copy, Clone, Debug)]
struct ElfHeader32 {
    entry: u32,
    program_header_offset: u32,
    section_header_offset: u32,
    flags: u32,
    header_size: u16,
    program_header_entry_size: u16,
    program_header_entry_count: u16,
    section_header_entry_size: u16,
    section_header_entry_count: u16,
    section_header_string_table_index: u16,
}
#[repr(C, packed)]
#[derive(Copy, Clone, Debug)]
struct ElfHeader64 {
    entry: u64,
    program_header_offset: u64,
    section_header_offset: u64,
    flags: u32,
    header_size: u16,
    program_header_entry_size: u16,
    program_header_entry_count: u16,
    section_header_entry_size: u16,
    section_header_entry_count: u16,
    section_header_string_table_index: u16,
}

#[derive(Copy, Clone)]
union ElfHeaderUnion {
    header32: ElfHeader32,
    header64: ElfHeader64,
}

#[repr(C, packed)]
#[derive(Copy, Clone)]
struct ElfHeader {
    base: ElfHeaderBase,
    header: ElfHeaderUnion,
}

#[allow(dead_code)]
impl ElfHeader {
    fn is_valid_and_supported(&self) -> bool {
        if (self.base.bits != consts::BITS_32 && self.base.bits != consts::BITS_64)
            || self.base.endianness != consts::ENDIANNESS_LITTLE
            || self.base.version != 1
            || self.base.abi != consts::ABI_SYSV
            || self.base.abi_version != 0
            || (self.base.elf_type != consts::ELF_TYPE_EXECUTABLE
                && self.base.elf_type != consts::ELF_TYPE_SHARED)
            || self.base.machine != consts::ELF_MACHINE_X86_64
            || self.base.elf_version != 1
        {
            return false;
        }
        true
    }

    fn is_elf64(&self) -> bool {
        self.base.bits == consts::BITS_64
    }

    fn is_little_endian(&self) -> bool {
        self.base.endianness == consts::ENDIANNESS_LITTLE
    }

    fn entry(&self) -> u64 {
        if self.is_elf64() {
            unsafe { self.header.header64.entry }
        } else {
            unsafe { self.header.header32.entry as u64 }
        }
    }

    fn program_header_offset(&self) -> u64 {
        if self.is_elf64() {
            unsafe { self.header.header64.program_header_offset }
        } else {
            unsafe { self.header.header32.program_header_offset as u64 }
        }
    }

    fn program_header_entry_size(&self) -> u64 {
        if self.is_elf64() {
            unsafe { self.header.header64.program_header_entry_size as u64 }
        } else {
            unsafe { self.header.header32.program_header_entry_size as u64 }
        }
    }

    fn program_header_entry_count(&self) -> u64 {
        if self.is_elf64() {
            unsafe { self.header.header64.program_header_entry_count as u64 }
        } else {
            unsafe { self.header.header32.program_header_entry_count as u64 }
        }
    }

    fn section_header_offset(&self) -> u64 {
        if self.is_elf64() {
            unsafe { self.header.header64.section_header_offset }
        } else {
            unsafe { self.header.header32.section_header_offset as u64 }
        }
    }

    fn section_header_entry_size(&self) -> u64 {
        if self.is_elf64() {
            unsafe { self.header.header64.section_header_entry_size as u64 }
        } else {
            unsafe { self.header.header32.section_header_entry_size as u64 }
        }
    }

    fn section_header_entry_count(&self) -> u64 {
        if self.is_elf64() {
            unsafe { self.header.header64.section_header_entry_count as u64 }
        } else {
            unsafe { self.header.header32.section_header_entry_count as u64 }
        }
    }

    fn section_header_string_table_index(&self) -> u64 {
        if self.is_elf64() {
            unsafe { self.header.header64.section_header_string_table_index as u64 }
        } else {
            unsafe { self.header.header32.section_header_string_table_index as u64 }
        }
    }

    fn size_of_header(&self) -> u64 {
        if self.is_elf64() {
            unsafe { self.header.header64.header_size as u64 }
        } else {
            unsafe { self.header.header32.header_size as u64 }
        }
    }
}

impl fmt::Debug for ElfHeader {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        let mut s = f.debug_struct("ElfHeader");
        s.field("base", &self.base);
        if self.is_elf64() {
            s.field("header64", unsafe { &self.header.header64 });
        } else {
            s.field("header32", unsafe { &self.header.header32 });
        }
        s.finish()
    }
}

#[derive(Copy, Clone, Debug)]
pub enum ElfProgramType {
    // Unused
    Null,
    // Loadable segment
    Load,
    // Dynamic linking information
    Dynamic,
    // Program interpreter path
    Interpreter,
    // Auxiliary information
    Note,
    // Reserved
    Shlib,
    // Entry for header table itself
    ProgramHeader,
    // Thread-local storage template
    ThreadLocalStorage,
    OsSpecific(u32),
    ProcessorSpecific(u32),
}

impl ElfProgramType {
    pub fn from_u32(ty: u32) -> Self {
        match ty {
            0 => Self::Null,
            1 => Self::Load,
            2 => Self::Dynamic,
            3 => Self::Interpreter,
            4 => Self::Note,
            5 => Self::Shlib,
            6 => Self::ProgramHeader,
            7 => Self::ThreadLocalStorage,
            0x60000000..=0x6fffffff => Self::OsSpecific(ty),
            0x70000000..=0x7fffffff => Self::ProcessorSpecific(ty),
            _ => Self::Null,
        }
    }
}

#[repr(C, packed)]
#[derive(Copy, Clone, Debug)]
pub struct ElfProgram32 {
    // Type of segment
    ty: u32,
    // File offset where segment is located, in bytes
    offset: u32,
    // Virtual address of beginning of segment
    virtual_address: u32,
    // Physical address of beginning of segment (OS-specific)
    physical_address: u32,
    // Num. of bytes in file image of segment (can be zero)
    file_size: u32,
    // Num. of bytes in mem image of segment (can be zero)
    mem_size: u32,
    // Segment flags
    flags: u32,
    // Segment alignment constraint
    alignment: u32,
}

#[repr(C, packed)]
#[derive(Copy, Clone, Debug)]
pub struct ElfProgram64 {
    // Type of segment
    ty: u32,
    // Segment flags
    flags: u32,
    // File offset where segment is located, in bytes
    offset: u64,
    // Virtual address of beginning of segment
    virtual_address: u64,
    // Physical address of beginning of segment (OS-specific)
    physical_address: u64,
    // Num. of bytes in file image of segment (can be zero)
    file_size: u64,
    // Num. of bytes in mem image of segment (can be zero)
    mem_size: u64,
    // Segment alignment constraint
    alignment: u64,
}

#[derive(Clone, Copy)]
pub enum ElfProgram {
    Program32(ElfProgram32),
    Program64(ElfProgram64),
}

impl ElfProgram {
    pub fn load(
        file: &mut fs::File,
        is_elf64: bool,
        entry_size: u64,
    ) -> Result<Self, ElfLoadError> {
        if is_elf64 {
            if entry_size != mem::size_of::<ElfProgram64>() as u64 {
                return Err(ElfLoadError::InvalidElfOrNotSupported);
            }
            let mut header_bytes = [0u8; mem::size_of::<ElfProgram64>()];
            if file.read(&mut header_bytes)? != header_bytes.len() as u64 {
                return Err(ElfLoadError::UnexpectedEndOfFile);
            }
            let program = unsafe { &*(header_bytes.as_ptr() as *const ElfProgram64) };
            Ok(Self::Program64(*program))
        } else {
            if entry_size != mem::size_of::<ElfProgram32>() as u64 {
                return Err(ElfLoadError::InvalidElfOrNotSupported);
            }
            let mut header_bytes = [0u8; mem::size_of::<ElfProgram32>()];
            if file.read(&mut header_bytes)? != header_bytes.len() as u64 {
                return Err(ElfLoadError::UnexpectedEndOfFile);
            }
            let program = unsafe { &*(header_bytes.as_ptr() as *const ElfProgram32) };
            Ok(Self::Program32(*program))
        }
    }

    pub fn ty(&self) -> ElfProgramType {
        let ty_u32 = match self {
            Self::Program32(p) => p.ty,
            Self::Program64(p) => p.ty,
        };

        ElfProgramType::from_u32(ty_u32)
    }

    pub fn offset(&self) -> u64 {
        match self {
            Self::Program32(p) => p.offset as u64,
            Self::Program64(p) => p.offset,
        }
    }

    pub fn virtual_address(&self) -> u64 {
        match self {
            Self::Program32(p) => p.virtual_address as u64,
            Self::Program64(p) => p.virtual_address,
        }
    }

    pub fn physical_address(&self) -> u64 {
        match self {
            Self::Program32(p) => p.physical_address as u64,
            Self::Program64(p) => p.physical_address,
        }
    }

    pub fn file_size(&self) -> u64 {
        match self {
            Self::Program32(p) => p.file_size as u64,
            Self::Program64(p) => p.file_size,
        }
    }

    pub fn mem_size(&self) -> u64 {
        match self {
            Self::Program32(p) => p.mem_size as u64,
            Self::Program64(p) => p.mem_size,
        }
    }

    pub fn flags(&self) -> u32 {
        match self {
            Self::Program32(p) => p.flags,
            Self::Program64(p) => p.flags,
        }
    }

    pub fn alignment(&self) -> u64 {
        match self {
            Self::Program32(p) => p.alignment as u64,
            Self::Program64(p) => p.alignment,
        }
    }
}

impl fmt::Debug for ElfProgram {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        f.debug_struct("ElfProgram")
            .field("ty", &self.ty())
            .field("flags", &self.flags())
            .field("offset", &self.offset())
            .field("virtual_address", &self.virtual_address())
            .field("physical_address", &self.physical_address())
            .field("file_size", &self.file_size())
            .field("mem_size", &self.mem_size())
            .field("alignment", &self.alignment())
            .finish()
    }
}

#[allow(dead_code)]
#[derive(Copy, Clone, Debug)]
pub enum ElfSectionType {
    /// Unused
    Null,
    /// Program data
    ProgramBits,
    /// Symbol table
    SymbolTable,
    /// String table
    StringTable,
    /// Relocation entries with addends
    Rela,
    /// Symbol hash table
    Hash,
    /// Dynamic linking information
    Dynamic,
    /// Note section
    Note,
    /// Uninitialized space
    NoBits,
    /// Relocation entries, no addends
    Rel,
    /// Reserved
    Shlib,
    /// Dynamic loader symbol table
    DynamicSymbols,
    /// Array of constructors
    InitArray,
    /// Array of destructors
    FiniArray,
    /// Array of pre-constructors
    PreInitArray,
    /// Section group
    Group,
    /// Extended section indices
    ExtendedSymbolTableIndices,
    /// Number of defined types
    Num,
    /// Start OS-specific
    Other(u32),
}

impl ElfSectionType {
    pub fn from_u32(ty: u32) -> Self {
        match ty {
            0 => Self::Null,
            1 => Self::ProgramBits,
            2 => Self::SymbolTable,
            3 => Self::StringTable,
            4 => Self::Rela,
            5 => Self::Hash,
            6 => Self::Dynamic,
            7 => Self::Note,
            8 => Self::NoBits,
            9 => Self::Rel,
            10 => Self::Shlib,
            11 => Self::DynamicSymbols,
            14 => Self::InitArray,
            15 => Self::FiniArray,
            16 => Self::PreInitArray,
            17 => Self::Group,
            18 => Self::ExtendedSymbolTableIndices,
            19 => Self::Num,
            0x60000000..=0x6fffffff => Self::Other(ty),
            _ => Self::Null,
        }
    }
}

#[repr(C, packed)]
#[derive(Copy, Clone, Debug)]
pub struct ElfSection32 {
    /// Section name (string tbl index)
    name: u32,
    /// Section type
    ty: u32,
    /// Section flags
    flags: u32,
    /// Address in memory image
    address: u32,
    /// Offset in file
    offset: u32,
    /// Size of section
    size: u32,
    /// Link to other section
    link: u32,
    /// Misc info
    info: u32,
    /// Alignment
    alignment: u32,
    /// Entry size if section holds table (such as symbol table)
    entry_size: u32,
}

#[repr(C, packed)]
#[derive(Copy, Clone, Debug)]
pub struct ElfSection64 {
    /// Section name (string tbl index)
    name: u32,
    /// Section type
    ty: u32,
    /// Section flags
    flags: u64,
    /// Address in memory image
    address: u64,
    /// Offset in file
    offset: u64,
    /// Size of section
    size: u64,
    /// Link to other section
    link: u32,
    /// Misc info
    info: u32,
    /// Alignment
    alignment: u64,
    /// Entry size if section holds table (such as symbol table)
    entry_size: u64,
}

#[derive(Clone, Copy)]
pub enum ElfSectionInner {
    Section32(ElfSection32),
    Section64(ElfSection64),
}

impl ElfSectionInner {
    pub fn load(
        file: &mut fs::File,
        is_elf64: bool,
        entry_size: u64,
    ) -> Result<Self, ElfLoadError> {
        if is_elf64 {
            if entry_size != mem::size_of::<ElfSection64>() as u64 {
                return Err(ElfLoadError::InvalidElfOrNotSupported);
            }
            let mut header_bytes = [0u8; mem::size_of::<ElfSection64>()];
            if file.read(&mut header_bytes)? != header_bytes.len() as u64 {
                return Err(ElfLoadError::UnexpectedEndOfFile);
            }
            let section = unsafe { *(header_bytes.as_ptr() as *const ElfSection64) };
            Ok(Self::Section64(section))
        } else {
            if entry_size != mem::size_of::<ElfSection32>() as u64 {
                return Err(ElfLoadError::InvalidElfOrNotSupported);
            }
            let mut header_bytes = [0u8; mem::size_of::<ElfSection32>()];
            if file.read(&mut header_bytes)? != header_bytes.len() as u64 {
                return Err(ElfLoadError::UnexpectedEndOfFile);
            }
            let section = unsafe { *(header_bytes.as_ptr() as *const ElfSection32) };
            Ok(Self::Section32(section))
        }
    }

    pub fn name_index(&self) -> u32 {
        match self {
            Self::Section32(s) => s.name,
            Self::Section64(s) => s.name,
        }
    }

    pub fn ty(&self) -> ElfSectionType {
        let ty_u32 = match self {
            Self::Section32(s) => s.ty,
            Self::Section64(s) => s.ty,
        };

        ElfSectionType::from_u32(ty_u32)
    }

    pub fn flags(&self) -> u64 {
        match self {
            Self::Section32(s) => s.flags as u64,
            Self::Section64(s) => s.flags,
        }
    }

    pub fn offset(&self) -> u64 {
        match self {
            Self::Section32(s) => s.offset as u64,
            Self::Section64(s) => s.offset,
        }
    }

    pub fn address(&self) -> u64 {
        match self {
            Self::Section32(s) => s.address as u64,
            Self::Section64(s) => s.address,
        }
    }

    pub fn size(&self) -> u64 {
        match self {
            Self::Section32(s) => s.size as u64,
            Self::Section64(s) => s.size,
        }
    }

    pub fn link(&self) -> u64 {
        match self {
            Self::Section32(s) => s.link as u64,
            Self::Section64(s) => s.link as u64,
        }
    }

    pub fn info(&self) -> u64 {
        match self {
            Self::Section32(s) => s.info as u64,
            Self::Section64(s) => s.info as u64,
        }
    }

    pub fn alignment(&self) -> u64 {
        match self {
            Self::Section32(s) => s.alignment as u64,
            Self::Section64(s) => s.alignment,
        }
    }

    pub fn entry_size(&self) -> u64 {
        match self {
            Self::Section32(s) => s.entry_size as u64,
            Self::Section64(s) => s.entry_size,
        }
    }
}

#[derive(Clone)]
pub struct ElfSection {
    name: String,
    inner: ElfSectionInner,
}

impl ElfSection {
    pub fn new(inner: ElfSectionInner, string_table: &[u8]) -> Self {
        let name_index = inner.name_index();
        let name = String::from(
            CStr::from_bytes_until_nul(&string_table[name_index as usize..])
                .unwrap()
                .to_str()
                .unwrap(),
        );
        Self { name, inner }
    }

    pub fn name(&self) -> &str {
        &self.name
    }
}

impl fmt::Debug for ElfSection {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        f.debug_struct("ElfSection")
            .field("name", &self.name)
            .field("type", &self.inner.ty())
            .field("flags", &self.inner.flags())
            .field("offset", &self.inner.offset())
            .field("address", &self.inner.address())
            .field("size", &self.inner.size())
            .field("link", &self.inner.link())
            .field("info", &self.inner.info())
            .field("alignment", &self.inner.alignment())
            .field("entry_size", &self.inner.entry_size())
            .finish()
    }
}

impl Deref for ElfSection {
    type Target = ElfSectionInner;

    fn deref(&self) -> &Self::Target {
        &self.inner
    }
}

#[derive(Debug)]
pub struct Elf {
    header: ElfHeader,
    program_headers: Vec<ElfProgram>,
    sections: Vec<ElfSection>,
}

impl Elf {
    pub fn load(file: &mut fs::File) -> Result<Self, ElfLoadError> {
        // take the largest
        let mut header = [0u8; mem::size_of::<ElfHeader>()];
        if file.read(&mut header)? != header.len() as u64 {
            return Err(ElfLoadError::UnexpectedEndOfFile);
        }
        let header = unsafe { *(header.as_ptr() as *const ElfHeader) };

        if &header.base.magic != consts::ELF_MAGIC {
            return Err(ElfLoadError::InvalidMagic);
        }
        if !header.is_valid_and_supported() {
            return Err(ElfLoadError::InvalidElfOrNotSupported);
        }
        file.seek(header.program_header_offset())?;
        let mut program_headers = Vec::with_capacity(header.program_header_entry_count() as usize);

        for _ in 0..header.program_header_entry_count() {
            let program =
                ElfProgram::load(file, header.is_elf64(), header.program_header_entry_size())?;
            program_headers.push(program);
        }

        let string_table_index = header.section_header_string_table_index() as usize;
        assert!(string_table_index < header.section_header_entry_count() as usize);
        let string_table_position = header.section_header_offset()
            + header.section_header_entry_size() * string_table_index as u64;
        file.seek(string_table_position)?;
        let string_table_section =
            ElfSectionInner::load(file, header.is_elf64(), header.section_header_entry_size())?;
        let mut string_table = vec![0u8; string_table_section.size() as usize];
        file.seek(string_table_section.offset())?;
        file.read(&mut string_table)?;

        file.seek(header.section_header_offset())?;
        let mut sections = Vec::with_capacity(header.section_header_entry_count() as usize);
        for _ in 0..header.section_header_entry_count() {
            let section_inner =
                ElfSectionInner::load(file, header.is_elf64(), header.section_header_entry_size())?;
            let section = ElfSection::new(section_inner, &string_table);
            sections.push(section);
        }

        Ok(Self {
            header,
            program_headers,
            sections,
        })
    }

    pub fn entry_point(&self) -> u64 {
        self.header.entry()
    }

    pub fn program_headers(&self) -> &[ElfProgram] {
        &self.program_headers
    }

    pub fn sections(&self) -> &[ElfSection] {
        &self.sections
    }
}