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
|
// MIT License, Copyright (c) 2021 Marvin Borner
// Detect stack overflows and other bugs
#include <def.h>
#include <print.h>
/**
* Stack protector
*/
#define STACK_CHK_GUARD 0xdeadbeef
u32 __stack_chk_guard = STACK_CHK_GUARD;
void __stack_chk_fail(void);
NORETURN void __stack_chk_fail(void)
{
panic("FATAL: Stack smashing detected\n");
}
void __stack_chk_fail_local(void);
NORETURN void __stack_chk_fail_local(void)
{
panic("FATAL: Local stack smashing detected\n");
}
/**
* UBSan
*/
#define is_aligned(value, alignment) !(value & (alignment - 1))
struct source_location {
const char *file;
u32 line;
u32 column;
};
struct type_descriptor {
u16 kind;
u16 info;
char name[];
};
struct type_mismatch {
struct source_location location;
struct type_descriptor *type;
u8 alignment;
u8 type_check_kind;
};
struct nonnull_arg {
struct source_location location;
struct source_location attribute_location;
u32 index;
};
struct overflow {
struct source_location location;
struct type_descriptor *type;
};
struct out_of_bounds {
struct source_location location;
struct type_descriptor *left_type;
struct type_descriptor *right_type;
};
void __ubsan_handle_load_invalid_value(void);
void __ubsan_handle_load_invalid_value(void)
{
panic("UBSAN: load-invalid-value\n");
}
void __ubsan_handle_nonnull_arg(struct nonnull_arg *data);
void __ubsan_handle_nonnull_arg(struct nonnull_arg *data)
{
struct source_location *loc = &data->location;
panic("%s:%d: UBSAN: nonnull-arg [index: %d]\n", loc->file, loc->line, data->index);
}
void __ubsan_handle_nullability_arg(struct nonnull_arg *data);
void __ubsan_handle_nullability_arg(struct nonnull_arg *data)
{
struct source_location *loc = &data->location;
panic("%s:%d: UBSAN: nonnull-arg [index: %d]\n", loc->file, loc->line, data->index);
}
void __ubsan_handle_nonnull_return_v1(void);
void __ubsan_handle_nonnull_return_v1(void)
{
panic("UBSAN: nonnull-return-v1\n");
}
void __ubsan_handle_nullability_return_v1(void);
void __ubsan_handle_nullability_return_v1(void)
{
panic("UBSAN: nullability-return-v1\n");
}
void __ubsan_handle_vla_bound_not_positive(void);
void __ubsan_handle_vla_bound_not_positive(void)
{
panic("UBSAN: vla-bound-not-positive\n");
}
void __ubsan_handle_add_overflow(struct overflow *data, void *left, void *right);
void __ubsan_handle_add_overflow(struct overflow *data, void *left, void *right)
{
UNUSED(left);
UNUSED(right);
struct source_location *loc = &data->location;
panic("%s:%d: UBSAN: add-overflow [type: %s]\n", loc->file, loc->line, data->type->name);
}
void __ubsan_handle_sub_overflow(struct overflow *data, void *left, void *right);
void __ubsan_handle_sub_overflow(struct overflow *data, void *left, void *right)
{
UNUSED(left);
UNUSED(right);
struct source_location *loc = &data->location;
panic("%s:%d: UBSAN: sub-overflow [type: %s]\n", loc->file, loc->line, data->type->name);
}
void __ubsan_handle_negate_overflow(struct overflow *data, void *left, void *right);
void __ubsan_handle_negate_overflow(struct overflow *data, void *left, void *right)
{
UNUSED(left);
UNUSED(right);
struct source_location *loc = &data->location;
panic("%s:%d: UBSAN: negate-overflow [type: %s]\n", loc->file, loc->line, data->type->name);
}
void __ubsan_handle_mul_overflow(struct overflow *data, void *left, void *right);
void __ubsan_handle_mul_overflow(struct overflow *data, void *left, void *right)
{
UNUSED(left);
UNUSED(right);
struct source_location *loc = &data->location;
panic("%s:%d: UBSAN: mul-overflow [type: %s]\n", loc->file, loc->line, data->type->name);
}
void __ubsan_handle_shift_out_of_bounds(struct overflow *data, void *left, void *right);
void __ubsan_handle_shift_out_of_bounds(struct overflow *data, void *left, void *right)
{
UNUSED(left);
UNUSED(right);
struct source_location *loc = &data->location;
panic("%s:%d: UBSAN: shift-out-of-bounds [type: %s]\n", loc->file, loc->line,
data->type->name);
}
void __ubsan_handle_divrem_overflow(struct overflow *data, void *left, void *right);
void __ubsan_handle_divrem_overflow(struct overflow *data, void *left, void *right)
{
UNUSED(left);
UNUSED(right);
struct source_location *loc = &data->location;
panic("%s:%d: UBSAN: divrem-overflow (probably div-by-zero) [type: %s]\n", loc->file,
loc->line, data->type->name);
}
void __ubsan_handle_out_of_bounds(struct out_of_bounds *data, void *value);
void __ubsan_handle_out_of_bounds(struct out_of_bounds *data, void *value)
{
UNUSED(value);
struct source_location *loc = &data->location;
panic("%s:%d: UBSAN: out-of-bounds\n", loc->file, loc->line);
}
void __ubsan_handle_type_mismatch_v1(struct type_mismatch *data, u32 ptr);
void __ubsan_handle_type_mismatch_v1(struct type_mismatch *data, u32 ptr)
{
static const char *kinds[] = {
"Load of",
"Store to",
"Reference binding to",
"Member access within",
"Member call on",
"Constructor call on",
"Downcast of",
"Downcast of",
"Upcast of",
"Cast to virtual base of",
"Nonnull binding to",
"Dynamic operation on",
};
struct source_location *loc = &data->location;
const char *msg = "";
if (ptr == 0) {
msg = "null pointer";
} else if (data->alignment != 0 && is_aligned(ptr, data->alignment))
msg = "misaligned memory address";
else
msg = "address with insufficient space";
panic("%s:%d: UBSAN: %s %s [type: %s; addr: 0x%x; align: %d]\n", loc->file, loc->line,
kinds[data->type_check_kind], msg, data->type->name, ptr, data->alignment);
}
void __ubsan_handle_alignment_assumption(void);
void __ubsan_handle_alignment_assumption(void)
{
panic("UBSAN: alignment-assumption\n");
}
void __ubsan_handle_builtin_unreachable(void);
void __ubsan_handle_builtin_unreachable(void)
{
panic("UBSAN: builtin-unreachable\n");
}
void __ubsan_handle_missing_return(void);
void __ubsan_handle_missing_return(void)
{
panic("UBSAN: missing-return\n");
}
void __ubsan_handle_implicit_conversion(void);
void __ubsan_handle_implicit_conversion(void)
{
panic("UBSAN: implicit-conversion\n");
}
void __ubsan_handle_invalid_builtin(void);
void __ubsan_handle_invalid_builtin(void)
{
panic("UBSAN: invalid-builtin\n");
}
void __ubsan_handle_pointer_overflow(void);
void __ubsan_handle_pointer_overflow(void)
{
panic("UBSAN: pointer-overflow\n");
}
|