-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpil-splitter.c
133 lines (106 loc) · 2.68 KB
/
pil-splitter.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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
// SPDX-License-Identifier: BSD-3-Clause
/*
* Copyright (c) 2019, Linaro Ltd. All rights reserved.
*/
#include <err.h>
#include <errno.h>
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include <stdbool.h>
#include <fcntl.h>
#include <unistd.h>
#include <elf.h>
static void usage(void)
{
extern const char *__progname;
fprintf(stderr, "%s: <mbn input> <mdt output>\n", __progname);
exit(1);
}
int main(int argc, char **argv)
{
unsigned char e_ident[EI_NIDENT];
unsigned int phnum;
size_t phoff;
bool is_64bit;
size_t offset;
void *segment;
ssize_t n;
char *ext;
int mdt;
int mbn;
int bxx;
int i;
if (argc != 3)
usage();
ext = strstr(argv[2], ".mdt");
if (!ext)
errx(1, "%s doesn't end with .mdt", argv[2]);
mbn = open(argv[1], O_RDONLY);
if (mbn < 0)
err(1, "failed to open %s", argv[1]);
mdt = open(argv[2], O_WRONLY | O_CREAT | O_TRUNC, 0644);
if (mdt < 0)
err(1, "failed to open %s", argv[2]);
read(mbn, e_ident, sizeof(e_ident));
if (memcmp(e_ident, ELFMAG, SELFMAG))
errx(1, "not an ELF file %s", argv[2]);
if (e_ident[EI_CLASS] == ELFCLASS32) {
Elf32_Ehdr ehdr;
is_64bit = false;
pread(mbn, &ehdr, sizeof(ehdr), 0);
pwrite(mdt, &ehdr, sizeof(ehdr), 0);
phoff = ehdr.e_phoff;
phnum = ehdr.e_phnum;
} else if (e_ident[EI_CLASS] == ELFCLASS64) {
Elf64_Ehdr ehdr;
is_64bit = true;
pread(mbn, &ehdr, sizeof(ehdr), 0);
pwrite(mdt, &ehdr, sizeof(ehdr), 0);
phoff = ehdr.e_phoff;
phnum = ehdr.e_phnum;
} else
errx(1, "Unsupported ELF class %d", e_ident[EI_CLASS]);
for (i = 0; i < phnum; i++) {
size_t p_filesz, p_offset;
unsigned long p_flags;
if (is_64bit) {
Elf64_Phdr phdr;
offset = phoff + i * sizeof(phdr);
pread(mbn, &phdr, sizeof(phdr), offset);
pwrite(mdt, &phdr, sizeof(phdr), offset);
p_offset = phdr.p_offset;
p_filesz = phdr.p_filesz;
p_flags = phdr.p_flags;
} else {
Elf32_Phdr phdr;
size_t offset;
offset = phoff + i * sizeof(phdr);
pread(mbn, &phdr, sizeof(phdr), offset);
pwrite(mdt, &phdr, sizeof(phdr), offset);
p_offset = phdr.p_offset;
p_filesz = phdr.p_filesz;
p_flags = phdr.p_flags;
}
if (!p_filesz)
continue;
segment = malloc(p_filesz);
sprintf(ext, ".b%02d", i);
n = pread(mbn, segment, p_filesz, p_offset);
if (n < 0)
warn("error reading segment %d: %s", i, strerror(errno));
else if (n != p_filesz)
warnx("segment %d is truncated", i);
bxx = open(argv[2], O_WRONLY | O_CREAT | O_TRUNC, 0644);
if (bxx < 0)
warn("failed to open %s", argv[2]);
write(bxx, segment, p_filesz);
if (((p_flags >> 24) & 7) == 2 || i == 0)
write(mdt, segment, p_filesz);
close(bxx);
free(segment);
}
close(mdt);
close(mbn);
return 0;
}