2005-04-21 16:53:53 +02:00
|
|
|
/* This file contains a collection of miscellaneous procedures:
|
2005-08-04 11:26:36 +02:00
|
|
|
* panic: abort MINIX due to a fatal error
|
|
|
|
* kprintf: diagnostic output for the kernel
|
2005-07-20 17:25:38 +02:00
|
|
|
*
|
|
|
|
* Changes:
|
2005-08-04 11:26:36 +02:00
|
|
|
* Dec 10, 2004 kernel printing to circular buffer (Jorrit N. Herder)
|
2005-07-20 17:25:38 +02:00
|
|
|
*
|
|
|
|
* This file contains the routines that take care of kernel messages, i.e.,
|
|
|
|
* diagnostic output within the kernel. Kernel messages are not directly
|
2005-08-03 10:14:08 +02:00
|
|
|
* displayed on the console, because this must be done by the output driver.
|
2005-07-20 17:25:38 +02:00
|
|
|
* Instead, the kernel accumulates characters in a buffer and notifies the
|
|
|
|
* output driver when a new message is ready.
|
2005-04-21 16:53:53 +02:00
|
|
|
*/
|
|
|
|
|
2005-08-03 10:14:08 +02:00
|
|
|
#include <minix/com.h>
|
2005-04-21 16:53:53 +02:00
|
|
|
#include "kernel.h"
|
2005-08-03 10:14:08 +02:00
|
|
|
#include <stdarg.h>
|
2005-04-21 16:53:53 +02:00
|
|
|
#include <unistd.h>
|
2005-07-20 17:25:38 +02:00
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <signal.h>
|
2005-07-21 20:36:40 +02:00
|
|
|
#include "proc.h"
|
2005-04-21 16:53:53 +02:00
|
|
|
|
2005-07-20 17:25:38 +02:00
|
|
|
#define END_OF_KMESS -1
|
|
|
|
FORWARD _PROTOTYPE(void kputc, (int c));
|
2005-09-30 14:54:59 +02:00
|
|
|
FORWARD _PROTOTYPE( void ser_putc, (char c));
|
2005-04-21 16:53:53 +02:00
|
|
|
|
|
|
|
/*===========================================================================*
|
2005-09-11 18:44:06 +02:00
|
|
|
* panic *
|
2005-04-21 16:53:53 +02:00
|
|
|
*===========================================================================*/
|
2005-07-20 17:25:38 +02:00
|
|
|
PUBLIC void panic(mess,nr)
|
|
|
|
_CONST char *mess;
|
|
|
|
int nr;
|
2005-04-21 16:53:53 +02:00
|
|
|
{
|
2005-06-07 14:34:25 +02:00
|
|
|
/* The system has run aground of a fatal kernel error. Terminate execution. */
|
2005-04-21 16:53:53 +02:00
|
|
|
static int panicking = 0;
|
2005-07-19 14:21:36 +02:00
|
|
|
if (panicking ++) return; /* prevent recursive panics */
|
2005-04-21 16:53:53 +02:00
|
|
|
|
2005-07-20 17:25:38 +02:00
|
|
|
if (mess != NULL) {
|
|
|
|
kprintf("\nKernel panic: %s", mess);
|
|
|
|
if (nr != NO_NUM) kprintf(" %d", nr);
|
2005-06-17 11:09:54 +02:00
|
|
|
kprintf("\n",NO_NUM);
|
2005-04-21 16:53:53 +02:00
|
|
|
}
|
2005-07-21 20:36:40 +02:00
|
|
|
|
2005-07-27 16:32:16 +02:00
|
|
|
/* Abort MINIX. */
|
|
|
|
prepare_shutdown(RBT_PANIC);
|
2005-04-21 16:53:53 +02:00
|
|
|
}
|
|
|
|
|
2005-07-20 17:25:38 +02:00
|
|
|
/*===========================================================================*
|
|
|
|
* kprintf *
|
|
|
|
*===========================================================================*/
|
|
|
|
PUBLIC void kprintf(const char *fmt, ...) /* format to be printed */
|
|
|
|
{
|
|
|
|
int c; /* next character in fmt */
|
2005-07-26 14:48:34 +02:00
|
|
|
int d;
|
2005-07-20 17:25:38 +02:00
|
|
|
unsigned long u; /* hold number argument */
|
|
|
|
int base; /* base of number arg */
|
|
|
|
int negative = 0; /* print minus sign */
|
|
|
|
static char x2c[] = "0123456789ABCDEF"; /* nr conversion table */
|
|
|
|
char ascii[8 * sizeof(long) / 3 + 2]; /* string for ascii number */
|
|
|
|
char *s = NULL; /* string to be printed */
|
|
|
|
va_list argp; /* optional arguments */
|
|
|
|
|
|
|
|
va_start(argp, fmt); /* init variable arguments */
|
|
|
|
|
|
|
|
while((c=*fmt++) != 0) {
|
|
|
|
|
|
|
|
if (c == '%') { /* expect format '%key' */
|
|
|
|
switch(c = *fmt++) { /* determine what to do */
|
|
|
|
|
|
|
|
/* Known keys are %d, %u, %x, %s, and %%. This is easily extended
|
|
|
|
* with number types like %b and %o by providing a different base.
|
|
|
|
* Number type keys don't set a string to 's', but use the general
|
|
|
|
* conversion after the switch statement.
|
|
|
|
*/
|
|
|
|
case 'd': /* output decimal */
|
2005-07-26 14:48:34 +02:00
|
|
|
d = va_arg(argp, signed int);
|
|
|
|
if (d < 0) { negative = 1; u = -d; } else { u = d; }
|
2005-07-20 17:25:38 +02:00
|
|
|
base = 10;
|
|
|
|
break;
|
|
|
|
case 'u': /* output unsigned long */
|
|
|
|
u = va_arg(argp, unsigned long);
|
|
|
|
base = 10;
|
|
|
|
break;
|
|
|
|
case 'x': /* output hexadecimal */
|
|
|
|
u = va_arg(argp, unsigned long);
|
|
|
|
base = 0x10;
|
|
|
|
break;
|
|
|
|
case 's': /* output string */
|
|
|
|
s = va_arg(argp, char *);
|
|
|
|
if (s == NULL) s = "(null)";
|
|
|
|
break;
|
|
|
|
case '%': /* output percent */
|
|
|
|
s = "%";
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* Unrecognized key. */
|
|
|
|
default: /* echo back %key */
|
|
|
|
s = "%?";
|
|
|
|
s[1] = c; /* set unknown key */
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Assume a number if no string is set. Convert to ascii. */
|
|
|
|
if (s == NULL) {
|
|
|
|
s = ascii + sizeof(ascii)-1;
|
|
|
|
*s = 0;
|
|
|
|
do { *--s = x2c[(u % base)]; } /* work backwards */
|
|
|
|
while ((u /= base) > 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* This is where the actual output for format "%key" is done. */
|
|
|
|
if (negative) kputc('-'); /* print sign if negative */
|
|
|
|
while(*s != 0) { kputc(*s++); } /* print string/ number */
|
2005-07-26 14:48:34 +02:00
|
|
|
s = NULL; /* reset for next round */
|
2005-07-20 17:25:38 +02:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
kputc(c); /* print and continue */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
kputc(END_OF_KMESS); /* terminate output */
|
|
|
|
va_end(argp); /* end variable arguments */
|
|
|
|
}
|
|
|
|
|
|
|
|
/*===========================================================================*
|
2005-09-11 18:44:06 +02:00
|
|
|
* kputc *
|
2005-07-20 17:25:38 +02:00
|
|
|
*===========================================================================*/
|
|
|
|
PRIVATE void kputc(c)
|
|
|
|
int c; /* character to append */
|
|
|
|
{
|
|
|
|
/* Accumulate a single character for a kernel message. Send a notification
|
2005-08-03 10:14:08 +02:00
|
|
|
* the to output driver if an END_OF_KMESS is encountered.
|
2005-07-20 17:25:38 +02:00
|
|
|
*/
|
|
|
|
if (c != END_OF_KMESS) {
|
2005-09-30 14:54:59 +02:00
|
|
|
if (do_serial_debug)
|
|
|
|
ser_putc(c);
|
2005-07-20 17:25:38 +02:00
|
|
|
kmess.km_buf[kmess.km_next] = c; /* put normal char in buffer */
|
|
|
|
if (kmess.km_size < KMESS_BUF_SIZE)
|
|
|
|
kmess.km_size += 1;
|
|
|
|
kmess.km_next = (kmess.km_next + 1) % KMESS_BUF_SIZE;
|
|
|
|
} else {
|
2005-08-03 10:14:08 +02:00
|
|
|
send_sig(OUTPUT_PROC_NR, SIGKMESS);
|
2005-07-20 17:25:38 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-09-30 14:54:59 +02:00
|
|
|
#define COM1_BASE 0x3F8
|
|
|
|
#define COM1_THR (COM1_BASE + 0)
|
|
|
|
#define LSR_THRE 0x20
|
|
|
|
#define COM1_LSR (COM1_BASE + 5)
|
|
|
|
|
|
|
|
PRIVATE void ser_putc(char c)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
int lsr, thr;
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
lsr= COM1_LSR;
|
|
|
|
thr= COM1_THR;
|
|
|
|
for (i= 0; i<100000; i++)
|
|
|
|
{
|
|
|
|
if (inb(lsr) & LSR_THRE)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
outb(thr, c);
|
|
|
|
}
|