2018-12-24 22:38:14 +01:00
|
|
|
//----------------------------------------------------------------------------//
|
|
|
|
// GNU GPL OS/K //
|
|
|
|
// //
|
|
|
|
// Authors: spectral` //
|
|
|
|
// NeoX //
|
|
|
|
// //
|
|
|
|
// Desc: How NOT to panic 101 //
|
|
|
|
//----------------------------------------------------------------------------//
|
|
|
|
|
2019-01-01 13:09:57 +01:00
|
|
|
#include <kalkern/ke/panic.h>
|
|
|
|
#include <kalkern/ke/state.h>
|
2018-12-30 22:21:19 +01:00
|
|
|
|
|
|
|
#define _UNLOCKED_IO
|
2019-01-01 13:09:57 +01:00
|
|
|
#include <kalkern/io/terminal.h>
|
2018-12-24 22:38:14 +01:00
|
|
|
|
|
|
|
//
|
|
|
|
// Panic message
|
|
|
|
//
|
2018-12-30 22:21:19 +01:00
|
|
|
const char *__panicmsg = NULL;
|
2018-12-24 22:38:14 +01:00
|
|
|
|
|
|
|
//
|
|
|
|
// Failed assert() handler
|
|
|
|
//
|
2018-12-31 15:08:56 +01:00
|
|
|
noreturn void _assert_handler(const char *msg,
|
2019-01-01 13:09:57 +01:00
|
|
|
const char *file,
|
|
|
|
int line,
|
|
|
|
const char *func)
|
2018-12-24 22:38:14 +01:00
|
|
|
{
|
|
|
|
// not getting out of here
|
2019-01-01 13:09:57 +01:00
|
|
|
DisableInterrupts();
|
2018-12-24 22:38:14 +01:00
|
|
|
|
|
|
|
(void)file; (void)line; (void)func;
|
|
|
|
|
|
|
|
// XXX sprintf() to create a proper panicstr
|
2019-01-01 13:09:57 +01:00
|
|
|
StartPanic(msg);
|
2018-12-24 22:38:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Your best boy panic()
|
|
|
|
//
|
2019-01-01 13:09:57 +01:00
|
|
|
void StartPanic(const char *str)
|
2018-12-24 22:38:14 +01:00
|
|
|
{
|
2019-01-01 13:09:57 +01:00
|
|
|
DisableInterrupts();
|
2018-12-24 22:38:14 +01:00
|
|
|
|
2019-01-01 13:09:57 +01:00
|
|
|
SetKernState(KSTATE_PANIC);
|
2018-12-29 23:51:00 +01:00
|
|
|
|
2019-01-01 17:11:30 +01:00
|
|
|
ClearTermUnlocked(stdout);
|
2018-12-24 22:38:14 +01:00
|
|
|
|
|
|
|
if (str == NULL) {
|
|
|
|
str = "(no message given)";
|
|
|
|
}
|
|
|
|
|
2019-01-01 13:09:57 +01:00
|
|
|
if (GetPanicStr()) {
|
2019-01-01 17:11:30 +01:00
|
|
|
PrintOnTermUnlocked(stdout, "double panic!\n");
|
2019-01-01 13:09:57 +01:00
|
|
|
HaltCPU();
|
2018-12-24 22:38:14 +01:00
|
|
|
}
|
|
|
|
|
2019-01-01 13:09:57 +01:00
|
|
|
SetPanicStr(str);
|
2018-12-24 22:38:14 +01:00
|
|
|
|
2018-12-30 22:21:19 +01:00
|
|
|
// we cannot lock anything when panicking
|
2019-01-01 17:11:30 +01:00
|
|
|
PrintOnTermUnlocked(stdout, "panic! - ");
|
|
|
|
PrintOnTermUnlocked(stdout, str);
|
2018-12-24 22:38:14 +01:00
|
|
|
|
|
|
|
while (TRUE) {
|
2019-01-01 13:09:57 +01:00
|
|
|
HaltCPU();
|
2018-12-24 22:38:14 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|