-
Notifications
You must be signed in to change notification settings - Fork 36
/
elfloader.c
109 lines (85 loc) · 2.41 KB
/
elfloader.c
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
/* Copyright © 2014, Owen Shepherd
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted without restriction.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
* REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
* AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
* INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
* LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
* OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
* PERFORMANCE OF THIS SOFTWARE.
*/
#include <inttypes.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/mman.h>
#include "elfload.h"
FILE *f;
void *buf;
typedef void (*entrypoint_t)(int (*putsp)(const char*));
static bool fpread(el_ctx *ctx, void *dest, size_t nb, size_t offset)
{
(void) ctx;
if (fseek(f, offset, SEEK_SET))
return false;
if (fread(dest, nb, 1, f) != 1)
return false;
return true;
}
static void *alloccb(
el_ctx *ctx,
Elf_Addr phys,
Elf_Addr virt,
Elf_Addr size)
{
(void) ctx;
(void) phys;
(void) size;
return (void*) virt;
}
static void check(el_status stat, const char* expln)
{
if (stat) {
fprintf(stderr, "%s: error %d\n", expln, stat);
exit(1);
}
}
static void go(entrypoint_t ep)
{
ep(puts);
}
int main(int argc, char **argv)
{
if (argc < 2) {
fprintf(stderr, "usage: %s [elf-to-load]\n", argv[0]);
return 1;
}
f = fopen(argv[1], "rb");
if (!f) {
perror("opening file");
return 1;
}
el_ctx ctx;
ctx.pread = fpread;
check(el_init(&ctx), "initialising");
if (posix_memalign(&buf, ctx.align, ctx.memsz)) {
perror("memalign");
return 1;
}
if (mprotect(buf, ctx.memsz, PROT_READ | PROT_WRITE | PROT_EXEC)) {
perror("mprotect");
return 1;
}
ctx.base_load_vaddr = ctx.base_load_paddr = (uintptr_t) buf;
check(el_load(&ctx, alloccb), "loading");
check(el_relocate(&ctx), "relocating");
uintptr_t epaddr = ctx.ehdr.e_entry + (uintptr_t) buf;
entrypoint_t ep = (entrypoint_t) epaddr;
printf("Binary entrypoint is %" PRIxPTR "; invoking %p\n", (uintptr_t) ctx.ehdr.e_entry, ep);
go(ep);
fclose(f);
free(buf);
return 0;
}