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
|
#include "elf.h"
#include "file.h"
//#include <boost/endian/conversion.hpp>
#include <cstring>
// Helper Functions
namespace {
void AddFileHeader(std::vector<uint8_t>& data, const std::vector<uint8_t>& code)
{
Elf::FileHeader fh;
fh.e_shoff = sizeof(fh) + sizeof(Elf::ProgramHeader) + code.size() + 16;
size_t old_size {data.size()};
data.resize(old_size + sizeof(fh));
std::memcpy(data.data() + old_size, reinterpret_cast<void*>(&fh), sizeof(fh));
}
void AddProgramHeader(std::vector<uint8_t>& data, const std::vector<uint8_t>& code)
{
Elf::ProgramHeader ph;
ph.p_offset = sizeof(Elf::FileHeader) + sizeof(Elf::ProgramHeader);
ph.p_filesz = code.size();
ph.p_memsz = code.size();
size_t old_size {data.size()};
data.resize(old_size + sizeof(ph));
std::memcpy(data.data() + old_size, reinterpret_cast<void*>(&ph), sizeof(ph));
}
void AddSectionHeaderText(std::vector<uint8_t>& data, const std::vector<uint8_t>& code)
{
Elf::SectionHeader sh;
sh.sh_name = 0; // offset in section
sh.sh_size = code.size();
sh.sh_type = 1; // program
size_t old_size {data.size()};
data.resize(old_size + sizeof(sh));
std::memcpy(data.data() + old_size, reinterpret_cast<void*>(&sh), sizeof(sh));
}
void AddSectionHeaderSectionNames(std::vector<uint8_t>& data, const std::vector<uint8_t>& code)
{
Elf::SectionHeader sh;
sh.sh_name = 0; // offset in section
sh.sh_size = 16;
sh.sh_type = 3; // section names
sh.sh_flags = 0;
size_t old_size {data.size()};
data.resize(old_size + sizeof(sh));
std::memcpy(data.data() + old_size, reinterpret_cast<void*>(&sh), sizeof(sh));
}
}
void Elf::Write(const std::filesystem::path& path, const std::vector<uint8_t>& code)
{
std::vector<uint8_t> data;
AddFileHeader(data, code);
AddProgramHeader(data, code);
data.insert(data.end(), code.begin(), code.end());
std::string section_names(".text\0.shstrtab\0", 16);
size_t old_size {data.size()};
data.resize(old_size + section_names.size());
std::memcpy(data.data() + old_size, section_names.data(), section_names.size());
AddSectionHeaderText(data, code);
AddSectionHeaderSectionNames(data, code);
File::setFile(path, data);
}
std::vector<uint8_t> Elf::Read(const std::filesystem::path& path)
{
std::vector<uint8_t> result;
// TODO
return result;
}
|