blob: 2c7943ff0a74fe91a87d2e2ff0d765c980c6ef9a (
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
|
#include <linux/auxvec.h>
#include <linux/elf.h>
#include <stdint.h>
#include <stdlib.h>
#include <sys/time.h>
#include <thread.h>
#include <unistd.h>
#define weak_reference(old, new) \
extern __typeof(old) new __attribute__((__weak__, __alias__(#old)))
extern int main(int, char *[]);
char **environ;
static struct __thread_self thread = { .tid = 0, ._errno = 0 };
struct __attribute__((packed)) auxv_t {
uintptr_t a_type;
uintptr_t a_val;
} *__auxv;
static void __vdso_setup(Elf64_Ehdr *vdso_addr __attribute__((unused)))
{
}
weak_reference(__vdso_setup, vdso_setup);
__attribute__((used)) void __libc_start(uintptr_t *sp)
{
char **argv;
int argc;
argc = (int)(*sp);
argv = (char **)(++sp);
sp += argc;
environ = (char **)(++sp);
while (*sp)
sp++;
__auxv = (struct auxv_t *)(++sp);
while (__auxv->a_type != AT_NULL) {
if (__auxv->a_type == AT_SYSINFO_EHDR) {
vdso_setup((Elf64_Ehdr *)__auxv->a_val);
}
__auxv++;
}
__asm__ volatile("wrfsbase %0" ::"r"(thread));
exit(main(argc, argv));
}
__attribute__((noreturn, naked)) void _start(void)
{
__asm__ __volatile__("mov %rsp, %rdi\n"
"call __libc_start\n");
}
|