blob: bae408aded33263d0d02adc2803e53689991be4a (
plain)
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
|
#include <stdbool.h>
#include <lib/elf.h>
bool elf64_validate(Elf64_Ehdr *ehdr, unsigned type, unsigned machine)
{
if (ehdr->e_ident[EI_MAG0] != ELFMAG0 ||
ehdr->e_ident[EI_MAG1] != ELFMAG1 ||
ehdr->e_ident[EI_MAG2] != ELFMAG2 ||
ehdr->e_ident[EI_MAG3] != ELFMAG3 ||
ehdr->e_ident[EI_CLASS] != ELFCLASS64 ||
ehdr->e_ident[EI_DATA] != ELFDATA2LSB ||
ehdr->e_ident[EI_VERSION] != EV_CURRENT ||
ehdr->e_machine != machine ||
ehdr->e_type != type)
{
return false;
}
return true;
}
size_t elf64_size(Elf64_Ehdr *ehdr, Elf64_Phdr *phdrs)
{
size_t size = 0;
for (int i = 0; i < ehdr->e_phnum; i++)
{
if (phdrs[i].p_type != PT_LOAD)
{
continue;
}
if (phdrs[i].p_offset + phdrs[i].p_memsz > size)
{
size = phdrs[i].p_offset + phdrs[i].p_memsz;
if (phdrs[i].p_align > 1)
{
size = (size + phdrs[i].p_align - 1) &
~(phdrs[i].p_align - 1);
}
}
}
return size;
}
|