os-k/kaleid/kernel/ke/panic.c

89 lines
3.0 KiB
C
Raw Normal View History

2018-12-24 22:38:14 +01:00
//----------------------------------------------------------------------------//
2020-09-27 17:33:48 +02:00
// OS on Kaleid //
2018-12-24 22:38:14 +01:00
// //
// Desc: How NOT to panic 101 //
2019-02-16 23:36:33 +01:00
// //
// //
// Copyright © 2018-2020 The OS/K Team //
2019-02-16 23:36:33 +01:00
// //
// 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
//----------------------------------------------------------------------------//
2020-02-19 22:19:58 +01:00
#include <libbuf.h>
2019-05-13 23:22:27 +02:00
#include <ke/proc.h>
2019-05-19 00:07:01 +02:00
#include <io/vga.h>
2018-12-24 22:38:14 +01:00
2019-05-19 00:38:58 +02:00
extern bool KeIdtIsInitialized;
2019-04-04 18:41:39 +02:00
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
//
noreturn void __assert_handler(const char *msg,
const char *file,
int line,
const char *func)
2018-12-24 22:38:14 +01:00
{
2019-03-24 14:44:59 +01:00
KeDisableIRQs();
2019-01-14 14:31:49 +01:00
2019-03-25 17:33:51 +01:00
KeStartPanic("In function '%s', from '%s' line %d\nAssertion failed:\n"
"'%s'", 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-24 14:44:59 +01:00
noreturn void KeStartPanic(const char *fmt, ...)
2018-12-24 22:38:14 +01:00
{
va_list ap;
2019-05-22 18:15:23 +02:00
bprintf(BStdOut, "%C\nPANIC\n", VGA_COLOR_LIGHT_RED);
2019-03-24 14:44:59 +01:00
KeDisableIRQs();
2018-12-24 22:38:14 +01:00
2019-05-13 23:22:27 +02:00
KeCurProc = NULL;
if (BStdOut == NULL) KeCrashSystem();
2019-01-14 14:31:49 +01:00
2019-05-13 23:22:27 +02:00
// XXX
// ExAttemptLock(&BStdOut->lock);
2019-04-04 18:41:39 +02: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-04-05 10:20:10 +02:00
if (KeIsPanicking) {
bprintf(BStdOut, "\nDouble panic!");
2019-03-24 14:44:59 +01:00
KeHaltCPU();
2018-12-24 22:38:14 +01:00
}
2019-04-04 18:41:39 +02:00
2019-04-05 10:20:10 +02:00
KeIsPanicking = 1;
2018-12-24 22:38:14 +01:00
2019-04-04 18:41:39 +02:00
// We don't check vbprintf's output
// If it fails, what could we do anyway?
2019-05-19 00:07:01 +02:00
va_start(ap, fmt);
2019-04-04 18:41:39 +02:00
vbprintf(BStdOut, fmt, ap);
va_end(ap);
2019-05-19 00:07:01 +02:00
2019-05-19 00:38:58 +02:00
if (KeIdtIsInitialized)
interrupt(0x3);
2019-04-04 18:41:39 +02:00
BStdOut->flusher(BStdOut);
2018-12-24 22:38:14 +01:00
2019-03-24 14:44:59 +01:00
KeHaltCPU();
2019-01-14 14:31:49 +01:00
}