-
Notifications
You must be signed in to change notification settings - Fork 11
/
exec_loader.h
213 lines (184 loc) · 7.37 KB
/
exec_loader.h
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
#pragma once
#include "utils.h"
class ExecLoader {
public:
ExecLoader(const std::string& filename, char* head, const size_t size)
: head_(head), size_(size), filename_(filename) {
ehdr_ = reinterpret_cast<Elf64_Ehdr*>(head);
for (uint16_t i = 0; i < ehdr()->e_phnum; i++) {
phdrs_.emplace_back(reinterpret_cast<Elf64_Phdr*>(
head_ + ehdr()->e_phoff + i * ehdr()->e_phentsize));
}
for (auto ph : phdrs()) {
LOG(INFO) << LOG_BITS(ph->p_type);
if (ph->p_type == PT_DYNAMIC) {
CHECK(ph_dynamic_ == NULL);
ph_dynamic_ = ph;
}
}
}
void Show() {
LOG(INFO) << "Ehdr:" << LOG_BITS(ehdr()->e_entry) << LOG_BITS(size_)
<< LOG_BITS(head_);
for (auto p : phdrs()) {
LOG(INFO) << "Phdr:" << LOG_BITS(p->p_vaddr)
<< LOG_BITS(p->p_offset) << LOG_BITS(p->p_filesz);
}
}
void Load() {
LOG(INFO) << "Load start";
for (auto ph : phdrs()) {
if (ph->p_type != PT_LOAD) {
continue;
}
LOG(INFO) << LOG_BITS(reinterpret_cast<void*>(ph->p_vaddr))
<< LOG_BITS(ph->p_memsz);
void* mmap_start =
reinterpret_cast<void*>((ph->p_vaddr) & (~(0xfff)));
void* mmap_end = reinterpret_cast<void*>(
((ph->p_vaddr + ph->p_memsz) + 0xfff) & (~(0xfff)));
size_t mmap_size = reinterpret_cast<size_t>(mmap_end) -
reinterpret_cast<size_t>(mmap_start);
char* p = reinterpret_cast<char*>(
mmap(mmap_start, mmap_size, PROT_READ | PROT_WRITE | PROT_EXEC,
MAP_SHARED | MAP_ANONYMOUS, -1, 0));
LOG(INFO) << "mmap: " << LOG_KEY(filename()) << LOG_BITS(p)
<< LOG_BITS(ph->p_vaddr);
CHECK_EQ(mmap_start, p);
CHECK_LE(reinterpret_cast<Elf64_Addr>(mmap_start), ph->p_vaddr);
CHECK_LT(ph->p_vaddr + ph->p_memsz,
reinterpret_cast<Elf64_Addr>(mmap_end));
LOG(INFO) << LOG_BITS(p) << LOG_BITS(head() + ph->p_offset)
<< LOG_BITS(ph->p_filesz);
memcpy(reinterpret_cast<void*>(ph->p_vaddr), head() + ph->p_offset,
ph->p_filesz);
memories_.emplace_back(std::make_pair(p, ph->p_memsz));
}
LOG(INFO) << "Load end";
}
void Unload() {
for (auto p : memories_) {
munmap(p.first, p.second);
}
}
void Relocate() {}
// To assign variables of stack, stack_num and entry to %rdi, %rsi and %rdx
// I use the calling convention. For details, see A.2.1 Calling Conventions
// in https://refspecs.linuxfoundation.org/elf/x86_64-abi-0.99.pdf. Of
// course, compiler must not inline this function.
void __attribute__((noinline))
ExecuteCore(uint64_t* stack, size_t stack_num, uint64_t entry) {
for (size_t i = 0; i < stack_num; i++) {
asm volatile("pushq %0" ::"m"(*(stack + i)));
}
asm volatile("jmp *%0" ::"r"(entry));
}
void Execute(std::vector<std::string> envs) {
unsigned long at_random = getauxval(AT_RANDOM);
unsigned long at_pagesz = getauxval(AT_PAGESZ);
CHECK_NE(at_random, 0UL);
LOG(INFO) << LOG_BITS(at_random) << LOG_BITS(at_pagesz);
// Some commented out auxiliary values because they are not appropriate
// as loading programs. These values are for sloader itself.
std::vector<unsigned long> aux_types{
AT_IGNORE,
// AT_EXECFD,
// AT_PHDR,
AT_PHENT,
// AT_PHNUM,
AT_PAGESZ,
// AT_BASE,
AT_FLAGS,
// AT_ENTRY,
AT_NOTELF, AT_UID, AT_EUID, AT_GID, AT_EGID, AT_CLKTCK, AT_PLATFORM,
AT_HWCAP, AT_FPUCW, AT_DCACHEBSIZE, AT_ICACHEBSIZE, AT_UCACHEBSIZE,
AT_IGNOREPPC, AT_SECURE, AT_BASE_PLATFORM, AT_RANDOM, AT_HWCAP2,
// AT_EXECFN,
AT_SYSINFO, AT_SYSINFO_EHDR, AT_L1I_CACHESHAPE, AT_L1D_CACHESHAPE,
AT_L2_CACHESHAPE, AT_L3_CACHESHAPE, AT_L1I_CACHESIZE,
AT_L1I_CACHEGEOMETRY, AT_L1D_CACHESIZE, AT_L1D_CACHEGEOMETRY,
AT_L2_CACHESIZE, AT_L2_CACHEGEOMETRY, AT_L3_CACHESIZE,
AT_L3_CACHEGEOMETRY, AT_MINSIGSTKSZ};
std::vector<std::pair<unsigned long, unsigned long>> aux_tvs;
for (size_t i = 0; i < aux_types.size(); i++) {
unsigned long v = getauxval(aux_types[i]);
if (v != 0) {
aux_tvs.emplace_back(std::make_pair(aux_types[i], v));
LOG(INFO) << LOG_BITS(aux_types[i]) << LOG_BITS(v);
}
}
// See http://articles.manugarg.com/aboutelfauxiliaryvectors.html for
// the stack layout padding.
//
// 4 words padding
// 0
// AT_NULL
// auxs
// NULL
// envs
// argv[argc] (must be null)
// argv[0] = filename
// argc
size_t stack_index = 0;
size_t stack_num = 4 + 2 + 2 * aux_tvs.size() + 1 + envs.size() + 3;
size_t stack_size = sizeof(uint64_t) * stack_num;
unsigned long* stack = reinterpret_cast<uint64_t*>(malloc(stack_size));
memset(stack, 0, stack_size);
// 4 words padding
stack_index += 4;
// First two elements are 0 and AT_NULL.
stack_index += 2;
// auxs
for (size_t i = 0; i < aux_tvs.size(); i++) {
*(stack + stack_index) = aux_tvs[i].second;
stack_index++;
*(stack + stack_index) = aux_tvs[i].first;
stack_index++;
}
// End of environment variables
stack_index++;
// Environment variables
for (size_t i = 0; i < envs.size(); i++) {
*(stack + stack_index) =
reinterpret_cast<uint64_t>(envs[i].c_str());
stack_index++;
}
// argv[argc]
stack_index++;
// argv[0]
*(stack + stack_index) = reinterpret_cast<uint64_t>(filename().c_str());
stack_index++;
// argc
*(stack + stack_index) = 1;
stack_index++;
CHECK_EQ(stack_index, stack_num);
ExecuteCore(stack, stack_num, ehdr()->e_entry);
free(stack);
LOG(INFO) << "Execute end";
}
std::string filename() { return filename_; }
Elf64_Ehdr* ehdr() { return ehdr_; }
char* head() { return head_; }
std::vector<Elf64_Phdr*> phdrs() { return phdrs_; }
private:
char* head_ = nullptr;
size_t size_;
std::string filename_ = "";
Elf64_Ehdr* ehdr_ = nullptr;
std::vector<Elf64_Phdr*> phdrs_;
Elf64_Phdr* ph_dynamic_ = nullptr;
std::vector<Elf64_Dyn*> dyns_;
std::vector<std::pair<char*, uint32_t>> memories_;
};
std::unique_ptr<ExecLoader> MakeExecLoader(
const std::filesystem::path& filepath, const std::string& argv0) {
int fd = open(filepath.c_str(), O_RDONLY);
CHECK(fd >= 0);
size_t size = lseek(fd, 0, SEEK_END);
CHECK_GT(size, 8UL + 16UL);
size_t mapped_size = (size + 0xfff) & ~0xfff;
char* p = (char*)mmap(NULL, mapped_size, PROT_READ | PROT_WRITE | PROT_EXEC,
MAP_PRIVATE, fd, 0);
CHECK(p != MAP_FAILED);
return std::make_unique<ExecLoader>(argv0, p, mapped_size);
}