-
Notifications
You must be signed in to change notification settings - Fork 50
/
CrashCatcher.c
313 lines (264 loc) · 11.8 KB
/
CrashCatcher.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
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
/* Copyright (C) 2022 Adam Green (https://github.com/adamgreen)
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
#include <CrashCatcher.h>
#include "CrashCatcherPriv.h"
#include <string.h>
/* Test harness will define this value on 64-bit machine to provide upper 32-bits of pointer addresses. */
CRASH_CATCHER_TEST_WRITEABLE uint64_t g_crashCatcherTestBaseAddress;
/* The unit tests can point the core to a fake location for the SCB->CPUID register. */
CRASH_CATCHER_TEST_WRITEABLE uint32_t* g_pCrashCatcherCpuId = (uint32_t*)0xE000ED00;
/* The unit tests can point the core to a fake location for the fault status registers. */
CRASH_CATCHER_TEST_WRITEABLE FaultStatusRegisters* g_pCrashCatcherFaultStatusRegisters = (FaultStatusRegisters*)0xE000ED28;
/* The unit tests can point the core to a fake location for the Coprocessor Access Control Register. */
CRASH_CATCHER_TEST_WRITEABLE uint32_t* g_pCrashCatcherCoprocessorAccessControlRegister = (uint32_t*)0xE000ED88;
/* Fault handler will switch MSP to use this area as the stack while CrashCatcher code is running.
NOTE: If you change the size of this buffer, it also needs to be changed in the HardFault_Handler (in
FaultHandler_arm*.S) when initializing the stack pointer. */
uint32_t g_crashCatcherStack[CRASH_CATCHER_STACK_WORD_COUNT];
typedef struct
{
const CrashCatcherExceptionRegisters* pExceptionRegisters;
CrashCatcherStackedRegisters* pSP;
uint32_t flags;
CrashCatcherInfo info;
} Object;
static Object initStackPointers(const CrashCatcherExceptionRegisters* pExceptionRegisters);
static uint32_t getAddressOfExceptionStack(const CrashCatcherExceptionRegisters* pExceptionRegisters);
static void* uint32AddressToPointer(uint32_t address);
static void advanceStackPointerToValueBeforeException(Object* pObject);
static int areFloatingPointRegistersAutoStacked(const Object* pObject);
static void initFloatingPointFlag(Object* pObject);
static int areFloatingPointCoprocessorsEnabled(void);
static void initIsBKPT(Object* pObject);
static int isBKPT(uint16_t instruction);
static uint8_t getBKPTValue(uint16_t instruction);
static int isBadPC();
static void setStackSentinel(void);
static void dumpSignature(void);
static void dumpFlags(const Object* pObject);
static void dumpR0toR3(const Object* pObject);
static void dumpR4toR11(const Object* pObject);
static void dumpR12(const Object* pObject);
static void dumpSP(const Object* pObject);
static void dumpLR_PC_PSR(const Object* pObject);
static void dumpMSPandPSPandExceptionPSR(const Object* pObject);
static void dumpFloatingPointRegisters(const Object* pObject);
static void dumpMemoryRegions(const CrashCatcherMemoryRegion* pRegion);
static void checkStackSentinelForStackOverflow(void);
static int isARMv6MDevice(void);
static void dumpFaultStatusRegisters(void);
static void advanceProgramCounterPastHardcodedBreakpoint(const Object* pObject);
void CrashCatcher_Entry(const CrashCatcherExceptionRegisters* pExceptionRegisters)
{
Object object = initStackPointers(pExceptionRegisters);
advanceStackPointerToValueBeforeException(&object);
initFloatingPointFlag(&object);
initIsBKPT(&object);
do
{
setStackSentinel();
CrashCatcher_DumpStart(&object.info);
dumpSignature();
dumpFlags(&object);
dumpR0toR3(&object);
dumpR4toR11(&object);
dumpR12(&object);
dumpSP(&object);
dumpLR_PC_PSR(&object);
dumpMSPandPSPandExceptionPSR(&object);
if (object.flags & CRASH_CATCHER_FLAGS_FLOATING_POINT)
dumpFloatingPointRegisters(&object);
dumpMemoryRegions(CrashCatcher_GetMemoryRegions());
if (!isARMv6MDevice())
dumpFaultStatusRegisters();
checkStackSentinelForStackOverflow();
}
while (CrashCatcher_DumpEnd() == CRASH_CATCHER_TRY_AGAIN);
advanceProgramCounterPastHardcodedBreakpoint(&object);
}
static Object initStackPointers(const CrashCatcherExceptionRegisters* pExceptionRegisters)
{
Object object;
object.pExceptionRegisters = pExceptionRegisters;
object.info.sp = getAddressOfExceptionStack(pExceptionRegisters);
object.pSP = uint32AddressToPointer(object.info.sp);
object.flags = 0;
return object;
}
static uint32_t getAddressOfExceptionStack(const CrashCatcherExceptionRegisters* pExceptionRegisters)
{
if (pExceptionRegisters->exceptionLR & LR_PSP)
return pExceptionRegisters->psp;
else
return pExceptionRegisters->msp;
}
static void* uint32AddressToPointer(uint32_t address)
{
if (sizeof(uint32_t*) == 8)
return (void*)(unsigned long)((uint64_t)address | g_crashCatcherTestBaseAddress);
else
return (void*)(unsigned long)address;
}
static void advanceStackPointerToValueBeforeException(Object* pObject)
{
/* Cortex-M processor always push 8 integer registers on the stack. */
pObject->info.sp += 8 * sizeof(uint32_t);
/* ARMv7-M processors can also push 16 single-precision floating point registers, FPSCR and a padding word. */
if (areFloatingPointRegistersAutoStacked(pObject))
pObject->info.sp += (16 + 1 + 1) * sizeof(uint32_t);
/* Cortex-M processor may also have had to force 8-byte alignment before auto stacking registers. */
pObject->info.sp |= (pObject->pSP->psr & PSR_STACK_ALIGN) ? 4 : 0;
}
static int areFloatingPointRegistersAutoStacked(const Object* pObject)
{
return 0 == (pObject->pExceptionRegisters->exceptionLR & LR_FLOAT);
}
static void initFloatingPointFlag(Object* pObject)
{
if (areFloatingPointCoprocessorsEnabled())
pObject->flags |= CRASH_CATCHER_FLAGS_FLOATING_POINT;
}
static int areFloatingPointCoprocessorsEnabled(void)
{
static const uint32_t coProcessor10and11EnabledBits = 5 << 20;
uint32_t coprocessorAccessControl = *g_pCrashCatcherCoprocessorAccessControlRegister;
return (coprocessorAccessControl & (coProcessor10and11EnabledBits)) == coProcessor10and11EnabledBits;
}
static void initIsBKPT(Object* pObject)
{
int wasBKPT = 0;
uint8_t bkptNumber = 0;
/* On ARMv7M, can use fault status registers to determine if bad PC was cause of fault before checking to see if
it points to a BKPT instruction. */
if (CRASH_CATCHER_ISBKPT_SUPPORT && (isARMv6MDevice() || !isBadPC()))
{
const uint16_t* pInstruction = uint32AddressToPointer(pObject->pSP->pc);
uint16_t instruction = *pInstruction;
wasBKPT = isBKPT(instruction);
if (wasBKPT)
bkptNumber = getBKPTValue(instruction);
}
pObject->info.isBKPT = wasBKPT;
pObject->info.bkptNumber = bkptNumber;
}
static int isBKPT(uint16_t instruction)
{
return (instruction & 0xFF00) == 0xBE00;
}
static uint8_t getBKPTValue(uint16_t instruction)
{
return instruction & 0x00FF;
}
static int isBadPC()
{
const uint32_t IACCVIOL = 1 << 0;
const uint32_t IBUSERR = 1 << 8;
const uint32_t badPCFaultBits = IACCVIOL | IBUSERR;
return g_pCrashCatcherFaultStatusRegisters->CFSR & badPCFaultBits;
}
static void setStackSentinel(void)
{
g_crashCatcherStack[0] = CRASH_CATCHER_STACK_SENTINEL;
}
static void dumpSignature(void)
{
static const uint8_t signature[4] = {CRASH_CATCHER_SIGNATURE_BYTE0,
CRASH_CATCHER_SIGNATURE_BYTE1,
CRASH_CATCHER_VERSION_MAJOR,
CRASH_CATCHER_VERSION_MINOR};
CrashCatcher_DumpMemory(signature, CRASH_CATCHER_BYTE, sizeof(signature));
}
static void dumpFlags(const Object* pObject)
{
CrashCatcher_DumpMemory(&pObject->flags, CRASH_CATCHER_BYTE, sizeof(pObject->flags));
}
static void dumpR0toR3(const Object* pObject)
{
CrashCatcher_DumpMemory(&pObject->pSP->r0, CRASH_CATCHER_BYTE, 4 * sizeof(uint32_t));
}
static void dumpR4toR11(const Object* pObject)
{
CrashCatcher_DumpMemory(&pObject->pExceptionRegisters->r4, CRASH_CATCHER_BYTE, (11 - 4 + 1) * sizeof(uint32_t));
}
static void dumpR12(const Object* pObject)
{
CrashCatcher_DumpMemory(&pObject->pSP->r12, CRASH_CATCHER_BYTE, sizeof(uint32_t));
}
static void dumpSP(const Object* pObject)
{
CrashCatcher_DumpMemory(&pObject->info.sp, CRASH_CATCHER_BYTE, sizeof(uint32_t));
}
static void dumpLR_PC_PSR(const Object* pObject)
{
CrashCatcher_DumpMemory(&pObject->pSP->lr, CRASH_CATCHER_BYTE, 3 * sizeof(uint32_t));
}
static void dumpMSPandPSPandExceptionPSR(const Object* pObject)
{
CrashCatcher_DumpMemory(&pObject->pExceptionRegisters->msp, CRASH_CATCHER_BYTE, 3 * sizeof(uint32_t));
}
static void dumpFloatingPointRegisters(const Object* pObject)
{
uint32_t allFloatingPointRegisters[32 + 1];
if (areFloatingPointRegistersAutoStacked(pObject))
{
/* Copy the upper floats first as that will cause a lazy copy of the auto-stacked registers. */
CrashCatcher_CopyUpperFloatingPointRegisters(&allFloatingPointRegisters[16]);
memcpy(&allFloatingPointRegisters[0], &pObject->pSP->floats, sizeof(pObject->pSP->floats));
allFloatingPointRegisters[32] = pObject->pSP->fpscr;
}
else
{
CrashCatcher_CopyAllFloatingPointRegisters(allFloatingPointRegisters);
}
CrashCatcher_DumpMemory(allFloatingPointRegisters, CRASH_CATCHER_BYTE, sizeof(allFloatingPointRegisters));
}
static void dumpMemoryRegions(const CrashCatcherMemoryRegion* pRegion)
{
while (pRegion && pRegion->startAddress != 0xFFFFFFFF)
{
/* Just dump the two addresses in pRegion. The element size isn't required. */
CrashCatcher_DumpMemory(pRegion, CRASH_CATCHER_BYTE, 2 * sizeof(uint32_t));
CrashCatcher_DumpMemory(uint32AddressToPointer(pRegion->startAddress),
pRegion->elementSize,
(pRegion->endAddress - pRegion->startAddress) / pRegion->elementSize);
pRegion++;
}
}
static void checkStackSentinelForStackOverflow(void)
{
if (g_crashCatcherStack[0] != CRASH_CATCHER_STACK_SENTINEL)
{
uint8_t value[4] = {0xAC, 0xCE, 0x55, 0xED};
CrashCatcher_DumpMemory(value, CRASH_CATCHER_BYTE, sizeof(value));
}
}
static int isARMv6MDevice(void)
{
static const uint32_t armv6mArchitecture = 0xC << 16;
uint32_t cpuId = *g_pCrashCatcherCpuId;
uint32_t architecture = cpuId & (0xF << 16);
return (architecture == armv6mArchitecture);
}
static void dumpFaultStatusRegisters(void)
{
uint32_t faultStatusRegistersAddress = (uint32_t)(unsigned long)g_pCrashCatcherFaultStatusRegisters;
CrashCatcherMemoryRegion faultStatusRegion[] = { {faultStatusRegistersAddress,
faultStatusRegistersAddress + sizeof(FaultStatusRegisters),
CRASH_CATCHER_WORD},
{0xFFFFFFFF, 0xFFFFFFFF, CRASH_CATCHER_BYTE} };
dumpMemoryRegions(faultStatusRegion);
}
static void advanceProgramCounterPastHardcodedBreakpoint(const Object* pObject)
{
if (pObject->info.isBKPT)
pObject->pSP->pc += 2;
}