/* * Copyright (c) 1999-2003 Apple Computer, Inc. All rights reserved. * * @APPLE_LICENSE_HEADER_START@ * * Portions Copyright (c) 1999-2003 Apple Computer, Inc. All Rights * Reserved. This file contains Original Code and/or Modifications of * Original Code as defined in and that are subject to the Apple Public * Source License Version 2.0 (the "License"). You may not use this file * except in compliance with the License. Please obtain a copy of the * License at http://www.apple.com/publicsource and read it before using * this file. * * The Original Code and all software distributed under the License are * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE OR NON- INFRINGEMENT. Please see the * License for the specific language governing rights and limitations * under the License. * * @APPLE_LICENSE_HEADER_END@ */ /* * Mach Operating System * Copyright (c) 1990 Carnegie-Mellon University * Copyright (c) 1989 Carnegie-Mellon University * All rights reserved. The CMU software License Agreement specifies * the terms and conditions for use and redistribution. */ /* * INTEL CORPORATION PROPRIETARY INFORMATION * * This software is supplied under the terms of a license agreement or * nondisclosure agreement with Intel Corporation and may not be copied * nor disclosed except in accordance with the terms of that agreement. * * Copyright 1988, 1989 Intel Corporation */ /* * Copyright 1993 NeXT, Inc. * All rights reserved. */ #include "libsaio.h" #include "bootstruct.h" extern int vprf(const char * fmt, va_list ap); bool gVerboseMode; bool gErrors; /* Kabyl: BooterLog */ //Azi: Doubled log available size. // 64kb are not enough to hold the full log while booting with -f argument (ignore caches). // It also seems to fix some reported problems while booting with the mentioned argument. // Note: 96kb are enough to hold full log, booting with -f; even so, this depends on how much // we "play" at the boot prompt, with what patches we're playing and how much they print to the log, // kexts loaded, etc... // Please remove this comment when this gets checked by a "true" dev. #define BOOTER_LOG_SIZE (128 * 1024) #define SAFE_LOG_SIZE 134 char *msgbuf = 0; char *cursor = 0; struct putc_info { char * str; char * last_str; }; static void sputc(int c, struct putc_info * pi) { if (pi->last_str) if (pi->str == pi->last_str) { *(pi->str) = '\0'; return; } *(pi->str)++ = c; } void initBooterLog(void) { msgbuf = malloc(BOOTER_LOG_SIZE); bzero(msgbuf, BOOTER_LOG_SIZE); cursor = msgbuf; } void msglog(const char * fmt, ...) { va_list ap; struct putc_info pi; if (!msgbuf) return; if (((cursor - msgbuf) > (BOOTER_LOG_SIZE - SAFE_LOG_SIZE))) return; va_start(ap, fmt); pi.str = cursor; pi.last_str = 0; prf(fmt, ap, sputc, &pi); va_end(ap); cursor += strlen((char *)cursor); } void setupBooterLog(void) { if (!msgbuf) return; Node *node = DT__FindNode("/", false); if (node) DT__AddProperty(node, "boot-log", strlen((char *)msgbuf) + 1, msgbuf); } /* Kabyl: !BooterLog */ /* * write one character to console */ void putchar(int c) { if ( c == '\t' ) { for (c = 0; c < 8; c++) putc(' '); return; } if ( c == '\n' ) { putc('\r'); } putc(c); } int getc() { int c = bgetc(); if ((c & 0xff) == 0) return c; else return (c & 0xff); } // Read and echo a character from console. This doesn't echo backspace // since that screws up higher level handling int getchar() { register int c = getc(); if ( c == '\r' ) c = '\n'; if ( c >= ' ' && c < 0x7f) putchar(c); return (c); } int printf(const char * fmt, ...) { va_list ap; va_start(ap, fmt); if (bootArgs->Video.v_display == VGA_TEXT_MODE) prf(fmt, ap, putchar, 0); else vprf(fmt, ap); { /* Kabyl: BooterLog */ struct putc_info pi; if (!msgbuf) return 0; if (((cursor - msgbuf) > (BOOTER_LOG_SIZE - SAFE_LOG_SIZE))) return 0; pi.str = cursor; pi.last_str = 0; prf(fmt, ap, sputc, &pi); cursor += strlen((char *)cursor); } va_end(ap); return 0; } int verbose(const char * fmt, ...) { va_list ap; va_start(ap, fmt); if (gVerboseMode) { if (bootArgs->Video.v_display == VGA_TEXT_MODE) prf(fmt, ap, putchar, 0); else vprf(fmt, ap); } { /* Kabyl: BooterLog */ struct putc_info pi; if (!msgbuf) return 0; if (((cursor - msgbuf) > (BOOTER_LOG_SIZE - SAFE_LOG_SIZE))) return 0; pi.str = cursor; pi.last_str = 0; prf(fmt, ap, sputc, &pi); cursor += strlen((char *)cursor); } va_end(ap); return(0); } int error(const char * fmt, ...) { va_list ap; gErrors = true; va_start(ap, fmt); if (bootArgs->Video.v_display == VGA_TEXT_MODE) prf(fmt, ap, putchar, 0); else vprf(fmt, ap); va_end(ap); return(0); } void stop(const char * fmt, ...) { va_list ap; printf("\n"); va_start(ap, fmt); if (bootArgs->Video.v_display == VGA_TEXT_MODE) { prf(fmt, ap, putchar, 0); } else { vprf(fmt, ap); } va_end(ap); printf("\nThis is a non recoverable error! System HALTED!!!"); halt(); while (1); } /** Print a "Press a key to continue..." message and wait for a key press. */ void pause() { printf("Press a key to continue..."); getc(); }