aboutsummaryrefslogtreecommitdiffstats
path: root/source/elf_load.cpp
blob: 3fd8a0ffb9ed399e1c4072893b7051dc2a1e3ac0 (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
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
#include "elf_load.hpp"
#include "elf_format.hpp"

#include <algorithm>
#include <cstring>

//constexpr unsigned int ELF_LOAD_ADDR = 0x10000000;

static const unsigned char elf_header[] = { '\177', 'E', 'L', 'F' };

template<typename T>
constexpr static auto ptr_from_offset(void *base, uint32_t offset)
{
    return reinterpret_cast<T>(reinterpret_cast<uint8_t *>(base) + offset);
}

//static Elf32_Shdr *find_section(Elf32_Ehdr *ehdr, const char *name);

namespace elf {

entry_t load(void *elf_data)
{
    // Check the ELF's header signature
    auto ehdr = reinterpret_cast<Elf32_Ehdr *>(elf_data);
    if (!std::equal(ehdr->e_ident, ehdr->e_ident + 4, elf_header))
        return nullptr;

    // Iterate through program header LOAD sections
    bool loaded = false;
    auto phdr = ptr_from_offset<Elf32_Phdr *>(elf_data, ehdr->e_phoff);
    for (Elf32_Half i = 0; i < ehdr->e_phnum; i++) {
        if (phdr->p_type == PT_LOAD) {
            if (phdr->p_filesz == 0) {
                std::memset(reinterpret_cast<void *>(phdr->p_vaddr),
                            0,
                            phdr->p_memsz);
            } else {
                std::memcpy(reinterpret_cast<void *>(phdr->p_vaddr),
                            ptr_from_offset<void *>(elf_data, phdr->p_offset),
                            phdr->p_filesz);
                if (!loaded)
                    loaded = true;
            }
        }

        phdr = ptr_from_offset<Elf32_Phdr *>(phdr, ehdr->e_phentsize);
    }


    return loaded ? reinterpret_cast<entry_t>(ehdr->e_entry) : nullptr;
}

} // namespace elf

//Elf32_Shdr *find_section(Elf32_Ehdr *ehdr, const char *name)
//{
//    auto shdr = ptr_from_offset<Elf32_Shdr *>(ehdr, ehdr->e_shoff);
//    auto shdr_str = ptr_from_offset<Elf32_Shdr *>(ehdr,
//        ehdr->e_shoff + ehdr->e_shstrndx * ehdr->e_shentsize);
//
//    for (Elf32_Half i = 0; i < ehdr->e_shnum; i++) {
//        char *section = ptr_from_offset<char *>(ehdr, shdr_str->sh_offset) + shdr->sh_name;
//        if (!strcmp(section, name))
//            return shdr;
//
//        shdr = ptr_from_offset<Elf32_Shdr *>(shdr, ehdr->e_shentsize);
//    }
//
//    return 0;
//}