forked from bcoles/kasld
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dmesg_mem_init_kernel_layout.c
275 lines (220 loc) · 6.44 KB
/
dmesg_mem_init_kernel_layout.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
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
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
// This file is part of KASLD - https://github.com/bcoles/kasld
//
// Search kernel log for virtual kernel memory layout.
//
// The `mem_init()` function prints the layout of the kernel segments
// to the kernel debug log, including kernel vas start and .text start.
//
// x86:
// https://elixir.bootlin.com/linux/v5.6.19/source/arch/x86/mm/init_32.c
// Removed in kernel 5.7-rc1 on 2020-03-06:
// https://github.com/torvalds/linux/commit/681ff0181bbfb183e32bc6beb6ec076304470479#diff-3bfd62fd3cf596dbff9091b59a7168cdf8fb93ed342a633bd37fac9633e96025
//
// arm:
// https://elixir.bootlin.com/linux/v5.0.21/source/arch/arm/mm/init.c
// Removed in kernel 5.1-rc1 on 2019-03-16:
// https://github.com/torvalds/linux/commit/0be288630752e6358d02eba7b283c1783a5c7c38#diff-0ac47f754483fd3333a760d4285c7197ba5820b1ad1899f192270cd6a3a1e309
//
// arm64:
// https://elixir.bootlin.com/linux/v4.15.18/source/arch/arm64/mm/init.c
// Removed in kernel v4.16-rc1 on 2018-01-16:
// https://github.com/torvalds/linux/commit/071929dbdd865f779a89ba3f1e06ba8d17dd3743
//
// x86_64:
// This code was never present on x86_64.
//
// m68k:
// Due to a bug, this code always printed "ptrval", instead of segment
// addresses, and was later removed in kernel 4.17-rc1 on 2018-03-19:
// https://github.com/torvalds/linux/commit/31833332f79876366809ccb0614fee7df8afe9fe
//
// PA-RISC:
// https://elixir.bootlin.com/linux/v4.16-rc3/source/arch/parisc/mm/init.c
// Code was commented out in kernel 4.16-rc4 on 2018-03-02:
// https://github.com/torvalds/linux/commit/fd8d0ca2563151204f3fe555dc8ca4bcfe8677a3
//
// RISC-V:
// https://elixir.bootlin.com/linux/v6.1.1/source/arch/riscv/mm/init.c#L127
// Kernel virtual memory layout is printed (excluding .text section),
// but requires kernel to be configured with CONFIG_DEBUG_VM.
//
// Xtensa:
// Code is still present as of 2023:
// https://elixir.bootlin.com/linux/v6.1.1/source/arch/xtensa/mm/init.c#L134
//
// SuperH:
// Code is still present as of 2023:
// https://elixir.bootlin.com/linux/v6.1.1/source/arch/sh/mm/init.c#L371
//
// Requires:
// - kernel.dmesg_restrict = 0; or CAP_SYSLOG capabilities; or
// readable /var/log/dmesg.
// - CONFIG_DEBUG_VM on RISC-V systems
// ---
// <[email protected]>
#define _GNU_SOURCE
#include "kasld.h"
#include "include/syslog.h"
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
#include <unistd.h>
unsigned long search_dmesg_mem_init_kernel_text() {
char *substr;
char *syslog;
char *addr_buf;
char *text_buf;
char *ptr;
char *endptr;
int size;
unsigned long addr = 0;
const char *needle = " kernel memory layout:";
if (mmap_syslog(&syslog, &size))
return 0;
printf("[.] searching dmesg for '%s' ...\n", needle);
substr = strstr(syslog, needle);
if (substr == NULL)
return 0;
text_buf = strstr(substr, " .text : 0x");
if (text_buf == NULL)
return 0;
addr_buf = strtok(text_buf, "\n");
if (addr_buf == NULL)
return 0;
// printf("%s\n", addr_buf);
ptr = strtok(addr_buf, " ");
while ((ptr = strtok(NULL, " ")) != NULL) {
addr = strtoul(&ptr[0], &endptr, 16);
if (addr >= KERNEL_BASE_MIN && addr <= KERNEL_BASE_MAX)
break;
addr = 0;
}
return addr;
}
unsigned long search_dmesg_log_file_mem_init_kernel_text() {
FILE *f;
char *endptr;
char *line = 0;
char *ptr;
char *addr_buf;
char *text_buf;
size_t size = 0;
const char *path = "/var/log/dmesg";
const char *needle = " .text : 0x";
unsigned long addr = 0;
printf("[.] searching %s for '%s' ...\n", path, needle);
f = fopen(path, "rb");
if (f == NULL) {
perror("[-] fopen");
return 0;
}
while ((getline(&line, &size, f)) != -1) {
text_buf = strstr(line, needle);
if (text_buf == NULL)
continue;
addr_buf = strtok(text_buf, "\n");
if (addr_buf == NULL)
continue;
// printf("%s\n", addr_buf);
ptr = strtok(addr_buf, " ");
while ((ptr = strtok(NULL, " ")) != NULL) {
addr = strtoul(&ptr[0], &endptr, 16);
if (addr >= KERNEL_BASE_MIN && addr <= KERNEL_BASE_MAX)
break;
addr = 0;
}
}
fclose(f);
return addr;
}
unsigned long search_dmesg_mem_init_lowmem() {
char *substr;
char *syslog;
char *addr_buf;
char *text_buf;
char *ptr;
char *endptr;
int size;
unsigned long addr = 0;
const char *needle = " kernel memory layout:";
if (mmap_syslog(&syslog, &size))
return 0;
printf("[.] searching dmesg for '%s' ...\n", needle);
substr = strstr(syslog, needle);
if (substr == NULL)
return 0;
text_buf = strstr(substr, " lowmem ");
if (text_buf == NULL)
return 0;
addr_buf = strtok(text_buf, "\n");
if (addr_buf == NULL)
return 0;
// printf("%s\n", addr_buf);
ptr = strtok(addr_buf, " ");
while ((ptr = strtok(NULL, " ")) != NULL) {
addr = strtoul(&ptr[0], &endptr, 16);
if (addr && addr <= KERNEL_VAS_END)
break;
addr = 0;
}
return addr;
}
unsigned long search_dmesg_log_file_mem_init_lowmem() {
FILE *f;
char *endptr;
char *line = 0;
char *ptr;
char *addr_buf;
char *text_buf;
size_t size = 0;
const char *path = "/var/log/dmesg";
const char *needle = " lowmem ";
unsigned long addr = 0;
printf("[.] searching %s for '%s' ...\n", path, needle);
f = fopen(path, "rb");
if (f == NULL) {
perror("[-] fopen");
return 0;
}
while ((getline(&line, &size, f)) != -1) {
text_buf = strstr(line, needle);
if (text_buf == NULL)
continue;
addr_buf = strtok(text_buf, "\n");
if (addr_buf == NULL)
continue;
// printf("%s\n", addr_buf);
ptr = strtok(addr_buf, " ");
while ((ptr = strtok(NULL, " ")) != NULL) {
addr = strtoul(&ptr[0], &endptr, 16);
if (addr && addr <= KERNEL_VAS_END)
break;
addr = 0;
}
}
fclose(f);
return addr;
}
int main() {
unsigned long addr;
addr = search_dmesg_mem_init_kernel_text();
if (!addr)
addr = search_dmesg_log_file_mem_init_kernel_text();
if (addr) {
printf("kernel text start: %lx\n", addr);
printf("possible kernel base: %lx\n", addr & -KERNEL_ALIGN);
}
addr = search_dmesg_mem_init_lowmem();
if (!addr)
addr = search_dmesg_log_file_mem_init_lowmem();
if (addr) {
printf("kernel lowmem start: %lx\n", addr);
if (addr < (unsigned long)KERNEL_VAS_START)
printf("[!] warning: lowmem start %lx below configured KERNEL_VAS_START "
"%lx\n",
addr, (unsigned long)KERNEL_VAS_START);
}
return 0;
}