2018-12-24 22:38:14 +01:00
|
|
|
//----------------------------------------------------------------------------//
|
|
|
|
// GNU GPL OS/K //
|
|
|
|
// //
|
|
|
|
// Desc: How NOT to panic 101 //
|
2019-02-16 23:36:33 +01:00
|
|
|
// //
|
|
|
|
// //
|
|
|
|
// Copyright © 2018-2019 The OS/K Team //
|
|
|
|
// //
|
|
|
|
// This file is part of OS/K. //
|
|
|
|
// //
|
|
|
|
// OS/K is free software: you can redistribute it and/or modify //
|
|
|
|
// it under the terms of the GNU General Public License as published by //
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or //
|
|
|
|
// any later version. //
|
|
|
|
// //
|
|
|
|
// OS/K is distributed in the hope that it will be useful, //
|
|
|
|
// but WITHOUT ANY WARRANTY//without even the implied warranty of //
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the //
|
|
|
|
// GNU General Public License for more details. //
|
|
|
|
// //
|
|
|
|
// You should have received a copy of the GNU General Public License //
|
|
|
|
// along with OS/K. If not, see <https://www.gnu.org/licenses/>. //
|
2018-12-24 22:38:14 +01:00
|
|
|
//----------------------------------------------------------------------------//
|
|
|
|
|
2019-02-16 23:36:33 +01:00
|
|
|
#include <kernel/term.h>
|
|
|
|
#include <kernel/panic.h>
|
2018-12-24 22:38:14 +01:00
|
|
|
|
|
|
|
//
|
2019-01-14 14:31:49 +01:00
|
|
|
// Failed assert() handler
|
2018-12-24 22:38:14 +01:00
|
|
|
//
|
2019-01-21 11:07:11 +01:00
|
|
|
noreturn void __assert_handler(const char *msg,
|
|
|
|
const char *file,
|
|
|
|
int line,
|
|
|
|
const char *func)
|
2018-12-24 22:38:14 +01:00
|
|
|
{
|
2019-01-14 14:31:49 +01:00
|
|
|
DisableIRQs();
|
|
|
|
|
2018-12-24 22:38:14 +01:00
|
|
|
(void)file; (void)line; (void)func;
|
2019-01-14 14:31:49 +01:00
|
|
|
|
2019-03-08 09:00:55 +01:00
|
|
|
StartPanic("cpu%d: In function '%s', from %s line %s - assert() failed: '%s'",
|
|
|
|
_GetCurCPU(), func, file, line, msg);
|
2018-12-24 22:38:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
//
|
2019-01-14 14:31:49 +01:00
|
|
|
// Your best boy panic()
|
|
|
|
// This is CPU local...
|
2018-12-24 22:38:14 +01:00
|
|
|
//
|
2019-03-08 09:00:55 +01:00
|
|
|
noreturn void StartPanic(const char *fmt, ...)
|
2018-12-24 22:38:14 +01:00
|
|
|
{
|
2019-03-08 09:00:55 +01:00
|
|
|
va_list ap;
|
|
|
|
|
2019-01-14 14:31:49 +01:00
|
|
|
DisableIRQs();
|
2018-12-24 22:38:14 +01:00
|
|
|
|
2019-02-16 23:36:33 +01:00
|
|
|
if (GetCurProc()) _SetCurProc(NULL);
|
2019-01-14 14:31:49 +01:00
|
|
|
if (GetStdOut() == NULL) CrashSystem();
|
|
|
|
|
|
|
|
GetStdOut()->ClearTermUnlocked(GetStdOut());
|
|
|
|
|
2019-03-08 09:00:55 +01:00
|
|
|
if (fmt == NULL) {
|
|
|
|
fmt = "(no message given)";
|
2018-12-24 22:38:14 +01:00
|
|
|
}
|
2019-01-14 14:31:49 +01:00
|
|
|
|
2019-01-01 13:09:57 +01:00
|
|
|
if (GetPanicStr()) {
|
2019-03-08 09:00:55 +01:00
|
|
|
GetStdOut()->PrintOnTermUnlocked(GetStdOut(), "\ndouble panic!");
|
2019-01-01 13:09:57 +01:00
|
|
|
HaltCPU();
|
2018-12-24 22:38:14 +01:00
|
|
|
}
|
|
|
|
|
2019-03-08 09:00:55 +01:00
|
|
|
va_start(ap, fmt);
|
|
|
|
vsnprintf(GetPanicStr(), sizeof GetPanicStr(), fmt, ap);
|
|
|
|
va_end(ap);
|
2018-12-24 22:38:14 +01:00
|
|
|
|
2019-03-08 09:00:55 +01:00
|
|
|
GetStdOut()->PrintOnTermUnlocked(GetStdOut(), "\npanic!\n\n");
|
|
|
|
GetStdOut()->PrintOnTermUnlocked(GetStdOut(), GetPanicStr());
|
2018-12-24 22:38:14 +01:00
|
|
|
|
2019-01-14 14:31:49 +01:00
|
|
|
HaltCPU();
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Oh well
|
|
|
|
//
|
|
|
|
noreturn void CrashSystem(void)
|
|
|
|
{
|
|
|
|
DisableIRQs();
|
|
|
|
HaltCPU();
|
2018-12-24 22:38:14 +01:00
|
|
|
}
|
|
|
|
|