Home | History | Annotate | Line # | Download | only in kern
subr_prf.c revision 1.76
      1  1.76        tv /*	$NetBSD: subr_prf.c,v 1.76 2000/08/09 10:22:31 tv Exp $	*/
      2  1.15       cgd 
      3  1.12       cgd /*-
      4  1.12       cgd  * Copyright (c) 1986, 1988, 1991, 1993
      5  1.12       cgd  *	The Regents of the University of California.  All rights reserved.
      6  1.12       cgd  * (c) UNIX System Laboratories, Inc.
      7  1.12       cgd  * All or some portions of this file are derived from material licensed
      8  1.12       cgd  * to the University of California by American Telephone and Telegraph
      9  1.12       cgd  * Co. or Unix System Laboratories, Inc. and are reproduced herein with
     10  1.12       cgd  * the permission of UNIX System Laboratories, Inc.
     11  1.12       cgd  *
     12  1.12       cgd  * Redistribution and use in source and binary forms, with or without
     13  1.12       cgd  * modification, are permitted provided that the following conditions
     14  1.12       cgd  * are met:
     15  1.12       cgd  * 1. Redistributions of source code must retain the above copyright
     16  1.12       cgd  *    notice, this list of conditions and the following disclaimer.
     17  1.12       cgd  * 2. Redistributions in binary form must reproduce the above copyright
     18  1.12       cgd  *    notice, this list of conditions and the following disclaimer in the
     19  1.12       cgd  *    documentation and/or other materials provided with the distribution.
     20  1.12       cgd  * 3. All advertising materials mentioning features or use of this software
     21  1.12       cgd  *    must display the following acknowledgement:
     22  1.12       cgd  *	This product includes software developed by the University of
     23  1.12       cgd  *	California, Berkeley and its contributors.
     24  1.12       cgd  * 4. Neither the name of the University nor the names of its contributors
     25  1.12       cgd  *    may be used to endorse or promote products derived from this software
     26  1.12       cgd  *    without specific prior written permission.
     27  1.12       cgd  *
     28  1.12       cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     29  1.12       cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     30  1.12       cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     31  1.12       cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     32  1.12       cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     33  1.12       cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     34  1.12       cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     35  1.12       cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     36  1.12       cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     37  1.12       cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     38  1.12       cgd  * SUCH DAMAGE.
     39  1.12       cgd  *
     40  1.48      fvdl  *	@(#)subr_prf.c	8.4 (Berkeley) 5/4/95
     41  1.12       cgd  */
     42  1.54   thorpej 
     43  1.49  jonathan #include "opt_ddb.h"
     44  1.67        ws #include "opt_ipkdb.h"
     45  1.54   thorpej #include "opt_multiprocessor.h"
     46  1.12       cgd 
     47  1.12       cgd #include <sys/param.h>
     48  1.12       cgd #include <sys/systm.h>
     49  1.12       cgd #include <sys/buf.h>
     50  1.12       cgd #include <sys/reboot.h>
     51  1.12       cgd #include <sys/msgbuf.h>
     52  1.12       cgd #include <sys/proc.h>
     53  1.12       cgd #include <sys/ioctl.h>
     54  1.12       cgd #include <sys/vnode.h>
     55  1.12       cgd #include <sys/file.h>
     56  1.12       cgd #include <sys/tty.h>
     57  1.12       cgd #include <sys/tprintf.h>
     58  1.12       cgd #include <sys/syslog.h>
     59  1.12       cgd #include <sys/malloc.h>
     60  1.54   thorpej #include <sys/lock.h>
     61  1.12       cgd 
     62  1.20  christos #include <dev/cons.h>
     63  1.20  christos 
     64  1.49  jonathan #ifdef DDB
     65  1.49  jonathan #include <ddb/ddbvar.h>
     66  1.72     jhawk #include <machine/db_machdep.h>
     67  1.72     jhawk #include <ddb/db_command.h>
     68  1.72     jhawk #include <ddb/db_interface.h>
     69  1.49  jonathan #endif
     70  1.49  jonathan 
     71  1.67        ws #ifdef IPKDB
     72  1.67        ws #include <ipkdb/ipkdb.h>
     73  1.67        ws #endif
     74  1.67        ws 
     75  1.54   thorpej #if defined(MULTIPROCESSOR)
     76  1.63   thorpej struct simplelock kprintf_slock = SIMPLELOCK_INITIALIZER;
     77  1.54   thorpej 
     78  1.63   thorpej /*
     79  1.63   thorpej  * Use cpu_simple_lock() and cpu_simple_unlock().  These are the actual
     80  1.63   thorpej  * atomic locking operations, and never attempt to print debugging
     81  1.63   thorpej  * information.
     82  1.63   thorpej  */
     83  1.54   thorpej #define	KPRINTF_MUTEX_ENTER(s)						\
     84  1.54   thorpej do {									\
     85  1.54   thorpej 	(s) = splhigh();						\
     86  1.70        pk 	__cpu_simple_lock(&kprintf_slock.lock_data);			\
     87  1.54   thorpej } while (0)
     88  1.54   thorpej 
     89  1.54   thorpej #define	KPRINTF_MUTEX_EXIT(s)						\
     90  1.54   thorpej do {									\
     91  1.70        pk 	__cpu_simple_unlock(&kprintf_slock.lock_data);			\
     92  1.54   thorpej 	splx((s));							\
     93  1.54   thorpej } while (0)
     94  1.54   thorpej #else /* ! MULTIPROCESSOR */
     95  1.54   thorpej #define	KPRINTF_MUTEX_ENTER(s)	(s) = splhigh()
     96  1.54   thorpej #define	KPRINTF_MUTEX_EXIT(s)	splx((s))
     97  1.55   thorpej #endif /* MULTIPROCESSOR */
     98  1.49  jonathan 
     99  1.12       cgd /*
    100  1.45     chuck  * note that stdarg.h and the ansi style va_start macro is used for both
    101  1.45     chuck  * ansi and traditional c complers.
    102  1.45     chuck  * XXX: this requires that stdarg.h define: va_alist and va_dcl
    103  1.12       cgd  */
    104  1.12       cgd #include <machine/stdarg.h>
    105  1.12       cgd 
    106  1.28        ws 
    107  1.22  christos #ifdef KGDB
    108  1.42   thorpej #include <sys/kgdb.h>
    109  1.22  christos #include <machine/cpu.h>
    110  1.12       cgd #endif
    111  1.45     chuck #ifdef DDB
    112  1.45     chuck #include <ddb/db_output.h>	/* db_printf, db_putchar prototypes */
    113  1.45     chuck #endif
    114  1.45     chuck 
    115  1.45     chuck 
    116  1.45     chuck /*
    117  1.45     chuck  * defines
    118  1.45     chuck  */
    119  1.45     chuck 
    120  1.45     chuck /* flags for kprintf */
    121  1.45     chuck #define TOCONS		0x01	/* to the console */
    122  1.45     chuck #define TOTTY		0x02	/* to the process' tty */
    123  1.45     chuck #define TOLOG		0x04	/* to the kernel message buffer */
    124  1.76        tv #define TOBUFONLY	0x08	/* to the buffer (only) [for snprintf] */
    125  1.45     chuck #define TODDB		0x10	/* to ddb console */
    126  1.45     chuck 
    127  1.45     chuck /* max size buffer kprintf needs to print quad_t [size in base 8 + \0] */
    128  1.45     chuck #define KPRINTF_BUFSIZE		(sizeof(quad_t) * NBBY / 3 + 2)
    129  1.45     chuck 
    130  1.45     chuck 
    131  1.45     chuck /*
    132  1.45     chuck  * local prototypes
    133  1.45     chuck  */
    134  1.45     chuck 
    135  1.58   msaitoh static int	 kprintf __P((const char *, int, void *,
    136  1.45     chuck 				char *, va_list));
    137  1.45     chuck static void	 putchar __P((int, int, struct tty *));
    138  1.54   thorpej static void	 klogpri __P((int));
    139  1.20  christos 
    140  1.12       cgd 
    141  1.37   thorpej /*
    142  1.45     chuck  * globals
    143  1.37   thorpej  */
    144  1.37   thorpej 
    145  1.45     chuck struct	tty *constty;	/* pointer to console "window" tty */
    146  1.45     chuck extern	int log_open;	/* subr_log: is /dev/klog open? */
    147  1.45     chuck const	char *panicstr; /* arg to first call to panic (used as a flag
    148  1.45     chuck 			   to indicate that panic has already been called). */
    149  1.74  sommerfe int	doing_shutdown;	/* set to indicate shutdown in progress */
    150  1.45     chuck 
    151  1.45     chuck /*
    152  1.45     chuck  * v_putc: routine to putc on virtual console
    153  1.45     chuck  *
    154  1.45     chuck  * the v_putc pointer can be used to redirect the console cnputc elsewhere
    155  1.45     chuck  * [e.g. to a "virtual console"].
    156  1.45     chuck  */
    157  1.12       cgd 
    158  1.45     chuck void (*v_putc) __P((int)) = cnputc;	/* start with cnputc (normal cons) */
    159  1.12       cgd 
    160  1.12       cgd 
    161  1.45     chuck /*
    162  1.45     chuck  * functions
    163  1.45     chuck  */
    164  1.12       cgd 
    165  1.12       cgd /*
    166  1.45     chuck  * tablefull: warn that a system table is full
    167  1.12       cgd  */
    168  1.45     chuck 
    169  1.45     chuck void
    170  1.75  jdolecek tablefull(tab, hint)
    171  1.75  jdolecek 	const char *tab, *hint;
    172  1.45     chuck {
    173  1.75  jdolecek 	if (hint)
    174  1.75  jdolecek 		log(LOG_ERR, "%s: table is full - %s\n", tab, hint);
    175  1.75  jdolecek 	else
    176  1.75  jdolecek 		log(LOG_ERR, "%s: table is full\n", tab);
    177  1.45     chuck }
    178  1.12       cgd 
    179  1.12       cgd /*
    180  1.45     chuck  * panic: handle an unresolvable fatal error
    181  1.45     chuck  *
    182  1.45     chuck  * prints "panic: <message>" and reboots.   if called twice (i.e. recursive
    183  1.45     chuck  * call) we avoid trying to sync the disk and just reboot (to avoid
    184  1.45     chuck  * recursive panics).
    185  1.12       cgd  */
    186  1.45     chuck 
    187  1.14       cgd void
    188  1.12       cgd #ifdef __STDC__
    189  1.12       cgd panic(const char *fmt, ...)
    190  1.12       cgd #else
    191  1.14       cgd panic(fmt, va_alist)
    192  1.12       cgd 	char *fmt;
    193  1.20  christos 	va_dcl
    194  1.12       cgd #endif
    195  1.12       cgd {
    196  1.14       cgd 	int bootopt;
    197  1.12       cgd 	va_list ap;
    198  1.12       cgd 
    199  1.14       cgd 	bootopt = RB_AUTOBOOT | RB_DUMP;
    200  1.74  sommerfe 	if (doing_shutdown)
    201  1.12       cgd 		bootopt |= RB_NOSYNC;
    202  1.74  sommerfe 	if (!panicstr)
    203  1.12       cgd 		panicstr = fmt;
    204  1.74  sommerfe 	doing_shutdown = 1;
    205  1.74  sommerfe 
    206  1.12       cgd 	va_start(ap, fmt);
    207  1.45     chuck 	printf("panic: ");
    208  1.45     chuck 	vprintf(fmt, ap);
    209  1.45     chuck 	printf("\n");
    210  1.12       cgd 	va_end(ap);
    211  1.12       cgd 
    212  1.67        ws #ifdef IPKDB
    213  1.32        ws 	ipkdb_panic();
    214  1.28        ws #endif
    215  1.12       cgd #ifdef KGDB
    216  1.12       cgd 	kgdb_panic();
    217  1.12       cgd #endif
    218  1.12       cgd #ifdef KADB
    219  1.14       cgd 	if (boothowto & RB_KDB)
    220  1.14       cgd 		kdbpanic();
    221  1.12       cgd #endif
    222  1.12       cgd #ifdef DDB
    223  1.38   thorpej 	if (db_onpanic)
    224  1.38   thorpej 		Debugger();
    225  1.72     jhawk 	else {
    226  1.73     jhawk 		static int intrace = 0;
    227  1.73     jhawk 
    228  1.73     jhawk 		if (intrace==0) {
    229  1.73     jhawk 			intrace=1;
    230  1.73     jhawk 			printf("Begin traceback...\n");
    231  1.73     jhawk 			db_stack_trace_print(
    232  1.73     jhawk 			    (db_expr_t)__builtin_frame_address(0),
    233  1.73     jhawk 			    TRUE, 65535, "", printf);
    234  1.73     jhawk 			printf("End traceback...\n");
    235  1.73     jhawk 			intrace=0;
    236  1.73     jhawk 		} else
    237  1.73     jhawk 			printf("Faulted in mid-traceback; aborting...");
    238  1.72     jhawk 	}
    239  1.12       cgd #endif
    240  1.39       gwr 	cpu_reboot(bootopt, NULL);
    241  1.12       cgd }
    242  1.12       cgd 
    243  1.12       cgd /*
    244  1.45     chuck  * kernel logging functions: log, logpri, addlog
    245  1.45     chuck  */
    246  1.45     chuck 
    247  1.45     chuck /*
    248  1.45     chuck  * log: write to the log buffer
    249  1.45     chuck  *
    250  1.45     chuck  * => will not sleep [so safe to call from interrupt]
    251  1.45     chuck  * => will log to console if /dev/klog isn't open
    252  1.45     chuck  */
    253  1.45     chuck 
    254  1.45     chuck void
    255  1.45     chuck #ifdef __STDC__
    256  1.45     chuck log(int level, const char *fmt, ...)
    257  1.45     chuck #else
    258  1.45     chuck log(level, fmt, va_alist)
    259  1.45     chuck 	int level;
    260  1.45     chuck 	char *fmt;
    261  1.45     chuck 	va_dcl
    262  1.45     chuck #endif
    263  1.45     chuck {
    264  1.54   thorpej 	int s;
    265  1.45     chuck 	va_list ap;
    266  1.45     chuck 
    267  1.54   thorpej 	KPRINTF_MUTEX_ENTER(s);
    268  1.54   thorpej 
    269  1.54   thorpej 	klogpri(level);		/* log the level first */
    270  1.45     chuck 	va_start(ap, fmt);
    271  1.45     chuck 	kprintf(fmt, TOLOG, NULL, NULL, ap);
    272  1.45     chuck 	va_end(ap);
    273  1.45     chuck 	if (!log_open) {
    274  1.45     chuck 		va_start(ap, fmt);
    275  1.45     chuck 		kprintf(fmt, TOCONS, NULL, NULL, ap);
    276  1.45     chuck 		va_end(ap);
    277  1.45     chuck 	}
    278  1.64   thorpej 
    279  1.64   thorpej 	KPRINTF_MUTEX_EXIT(s);
    280  1.64   thorpej 
    281  1.64   thorpej 	logwakeup();		/* wake up anyone waiting for log msgs */
    282  1.64   thorpej }
    283  1.64   thorpej 
    284  1.64   thorpej /*
    285  1.64   thorpej  * vlog: write to the log buffer [already have va_alist]
    286  1.64   thorpej  */
    287  1.64   thorpej 
    288  1.64   thorpej void
    289  1.64   thorpej vlog(level, fmt, ap)
    290  1.64   thorpej 	int level;
    291  1.64   thorpej 	const char *fmt;
    292  1.64   thorpej 	va_list ap;
    293  1.64   thorpej {
    294  1.64   thorpej 	int s;
    295  1.64   thorpej 
    296  1.64   thorpej 	KPRINTF_MUTEX_ENTER(s);
    297  1.64   thorpej 
    298  1.64   thorpej 	klogpri(level);		/* log the level first */
    299  1.64   thorpej 	kprintf(fmt, TOLOG, NULL, NULL, ap);
    300  1.64   thorpej 	if (!log_open)
    301  1.64   thorpej 		kprintf(fmt, TOCONS, NULL, NULL, ap);
    302  1.54   thorpej 
    303  1.54   thorpej 	KPRINTF_MUTEX_EXIT(s);
    304  1.54   thorpej 
    305  1.45     chuck 	logwakeup();		/* wake up anyone waiting for log msgs */
    306  1.45     chuck }
    307  1.45     chuck 
    308  1.45     chuck /*
    309  1.45     chuck  * logpri: log the priority level to the klog
    310  1.45     chuck  */
    311  1.45     chuck 
    312  1.54   thorpej void
    313  1.45     chuck logpri(level)
    314  1.45     chuck 	int level;
    315  1.45     chuck {
    316  1.54   thorpej 	int s;
    317  1.54   thorpej 
    318  1.54   thorpej 	KPRINTF_MUTEX_ENTER(s);
    319  1.54   thorpej 	klogpri(level);
    320  1.54   thorpej 	KPRINTF_MUTEX_EXIT(s);
    321  1.54   thorpej }
    322  1.54   thorpej 
    323  1.54   thorpej /*
    324  1.54   thorpej  * Note: we must be in the mutex here!
    325  1.54   thorpej  */
    326  1.54   thorpej static void
    327  1.54   thorpej klogpri(level)
    328  1.54   thorpej 	int level;
    329  1.54   thorpej {
    330  1.45     chuck 	char *p;
    331  1.45     chuck 	char snbuf[KPRINTF_BUFSIZE];
    332  1.45     chuck 
    333  1.45     chuck 	putchar('<', TOLOG, NULL);
    334  1.76        tv 	snprintf(snbuf, sizeof(snbuf), "%d", level);
    335  1.45     chuck 	for (p = snbuf ; *p ; p++)
    336  1.45     chuck 		putchar(*p, TOLOG, NULL);
    337  1.45     chuck 	putchar('>', TOLOG, NULL);
    338  1.45     chuck }
    339  1.45     chuck 
    340  1.45     chuck /*
    341  1.45     chuck  * addlog: add info to previous log message
    342  1.12       cgd  */
    343  1.45     chuck 
    344  1.12       cgd void
    345  1.45     chuck #ifdef __STDC__
    346  1.45     chuck addlog(const char *fmt, ...)
    347  1.45     chuck #else
    348  1.45     chuck addlog(fmt, va_alist)
    349  1.45     chuck 	char *fmt;
    350  1.45     chuck 	va_dcl
    351  1.45     chuck #endif
    352  1.45     chuck {
    353  1.54   thorpej 	int s;
    354  1.45     chuck 	va_list ap;
    355  1.45     chuck 
    356  1.54   thorpej 	KPRINTF_MUTEX_ENTER(s);
    357  1.54   thorpej 
    358  1.45     chuck 	va_start(ap, fmt);
    359  1.45     chuck 	kprintf(fmt, TOLOG, NULL, NULL, ap);
    360  1.45     chuck 	va_end(ap);
    361  1.45     chuck 	if (!log_open) {
    362  1.45     chuck 		va_start(ap, fmt);
    363  1.45     chuck 		kprintf(fmt, TOCONS, NULL, NULL, ap);
    364  1.45     chuck 		va_end(ap);
    365  1.45     chuck 	}
    366  1.54   thorpej 
    367  1.54   thorpej 	KPRINTF_MUTEX_EXIT(s);
    368  1.54   thorpej 
    369  1.45     chuck 	logwakeup();
    370  1.45     chuck }
    371  1.45     chuck 
    372  1.45     chuck 
    373  1.45     chuck /*
    374  1.45     chuck  * putchar: print a single character on console or user terminal.
    375  1.45     chuck  *
    376  1.45     chuck  * => if console, then the last MSGBUFS chars are saved in msgbuf
    377  1.45     chuck  *	for inspection later (e.g. dmesg/syslog)
    378  1.54   thorpej  * => we must already be in the mutex!
    379  1.45     chuck  */
    380  1.45     chuck static void
    381  1.45     chuck putchar(c, flags, tp)
    382  1.69  augustss 	int c;
    383  1.45     chuck 	int flags;
    384  1.45     chuck 	struct tty *tp;
    385  1.12       cgd {
    386  1.69  augustss 	struct kern_msgbuf *mbp;
    387  1.12       cgd 
    388  1.45     chuck 	if (panicstr)
    389  1.45     chuck 		constty = NULL;
    390  1.45     chuck 	if ((flags & TOCONS) && tp == NULL && constty) {
    391  1.45     chuck 		tp = constty;
    392  1.45     chuck 		flags |= TOTTY;
    393  1.45     chuck 	}
    394  1.45     chuck 	if ((flags & TOTTY) && tp && tputchar(c, tp) < 0 &&
    395  1.45     chuck 	    (flags & TOCONS) && tp == constty)
    396  1.45     chuck 		constty = NULL;
    397  1.45     chuck 	if ((flags & TOLOG) &&
    398  1.45     chuck 	    c != '\0' && c != '\r' && c != 0177 && msgbufenabled) {
    399  1.45     chuck 		mbp = msgbufp;
    400  1.45     chuck 		if (mbp->msg_magic != MSG_MAGIC) {
    401  1.45     chuck 			/*
    402  1.45     chuck 			 * Arguably should panic or somehow notify the
    403  1.45     chuck 			 * user...  but how?  Panic may be too drastic,
    404  1.45     chuck 			 * and would obliterate the message being kicked
    405  1.45     chuck 			 * out (maybe a panic itself), and printf
    406  1.45     chuck 			 * would invoke us recursively.  Silently punt
    407  1.45     chuck 			 * for now.  If syslog is running, it should
    408  1.45     chuck 			 * notice.
    409  1.45     chuck 			 */
    410  1.45     chuck 			msgbufenabled = 0;
    411  1.45     chuck 		} else {
    412  1.45     chuck 			mbp->msg_bufc[mbp->msg_bufx++] = c;
    413  1.45     chuck 			if (mbp->msg_bufx < 0 || mbp->msg_bufx >= mbp->msg_bufs)
    414  1.45     chuck 				mbp->msg_bufx = 0;
    415  1.48      fvdl 			/* If the buffer is full, keep the most recent data. */
    416  1.48      fvdl 			if (mbp->msg_bufr == mbp->msg_bufx) {
    417  1.48      fvdl 				 if (++mbp->msg_bufr >= mbp->msg_bufs)
    418  1.48      fvdl 					mbp->msg_bufr = 0;
    419  1.48      fvdl 			}
    420  1.45     chuck 		}
    421  1.45     chuck 	}
    422  1.45     chuck 	if ((flags & TOCONS) && constty == NULL && c != '\0')
    423  1.45     chuck 		(*v_putc)(c);
    424  1.45     chuck #ifdef DDB
    425  1.45     chuck 	if (flags & TODDB)
    426  1.45     chuck 		db_putchar(c);
    427  1.45     chuck #endif
    428  1.12       cgd }
    429  1.12       cgd 
    430  1.45     chuck 
    431  1.12       cgd /*
    432  1.45     chuck  * uprintf: print to the controlling tty of the current process
    433  1.45     chuck  *
    434  1.45     chuck  * => we may block if the tty queue is full
    435  1.45     chuck  * => no message is printed if the queue doesn't clear in a reasonable
    436  1.45     chuck  *	time
    437  1.12       cgd  */
    438  1.45     chuck 
    439  1.12       cgd void
    440  1.12       cgd #ifdef __STDC__
    441  1.12       cgd uprintf(const char *fmt, ...)
    442  1.12       cgd #else
    443  1.14       cgd uprintf(fmt, va_alist)
    444  1.12       cgd 	char *fmt;
    445  1.20  christos 	va_dcl
    446  1.12       cgd #endif
    447  1.12       cgd {
    448  1.69  augustss 	struct proc *p = curproc;
    449  1.12       cgd 	va_list ap;
    450  1.12       cgd 
    451  1.12       cgd 	if (p->p_flag & P_CONTROLT && p->p_session->s_ttyvp) {
    452  1.54   thorpej 		/* No mutex needed; going to process TTY. */
    453  1.12       cgd 		va_start(ap, fmt);
    454  1.45     chuck 		kprintf(fmt, TOTTY, p->p_session->s_ttyp, NULL, ap);
    455  1.12       cgd 		va_end(ap);
    456  1.12       cgd 	}
    457  1.12       cgd }
    458  1.12       cgd 
    459  1.45     chuck /*
    460  1.45     chuck  * tprintf functions: used to send messages to a specific process
    461  1.45     chuck  *
    462  1.45     chuck  * usage:
    463  1.45     chuck  *   get a tpr_t handle on a process "p" by using "tprintf_open(p)"
    464  1.45     chuck  *   use the handle when calling "tprintf"
    465  1.45     chuck  *   when done, do a "tprintf_close" to drop the handle
    466  1.45     chuck  */
    467  1.45     chuck 
    468  1.45     chuck /*
    469  1.45     chuck  * tprintf_open: get a tprintf handle on a process "p"
    470  1.45     chuck  *
    471  1.45     chuck  * => returns NULL if process can't be printed to
    472  1.45     chuck  */
    473  1.45     chuck 
    474  1.12       cgd tpr_t
    475  1.12       cgd tprintf_open(p)
    476  1.69  augustss 	struct proc *p;
    477  1.12       cgd {
    478  1.12       cgd 
    479  1.12       cgd 	if (p->p_flag & P_CONTROLT && p->p_session->s_ttyvp) {
    480  1.12       cgd 		SESSHOLD(p->p_session);
    481  1.12       cgd 		return ((tpr_t) p->p_session);
    482  1.12       cgd 	}
    483  1.12       cgd 	return ((tpr_t) NULL);
    484  1.12       cgd }
    485  1.12       cgd 
    486  1.45     chuck /*
    487  1.45     chuck  * tprintf_close: dispose of a tprintf handle obtained with tprintf_open
    488  1.45     chuck  */
    489  1.45     chuck 
    490  1.12       cgd void
    491  1.12       cgd tprintf_close(sess)
    492  1.12       cgd 	tpr_t sess;
    493  1.12       cgd {
    494  1.12       cgd 
    495  1.12       cgd 	if (sess)
    496  1.12       cgd 		SESSRELE((struct session *) sess);
    497  1.12       cgd }
    498  1.12       cgd 
    499  1.12       cgd /*
    500  1.45     chuck  * tprintf: given tprintf handle to a process [obtained with tprintf_open],
    501  1.45     chuck  * send a message to the controlling tty for that process.
    502  1.45     chuck  *
    503  1.45     chuck  * => also sends message to /dev/klog
    504  1.12       cgd  */
    505  1.12       cgd void
    506  1.12       cgd #ifdef __STDC__
    507  1.12       cgd tprintf(tpr_t tpr, const char *fmt, ...)
    508  1.12       cgd #else
    509  1.14       cgd tprintf(tpr, fmt, va_alist)
    510  1.12       cgd 	tpr_t tpr;
    511  1.12       cgd 	char *fmt;
    512  1.20  christos 	va_dcl
    513  1.12       cgd #endif
    514  1.12       cgd {
    515  1.69  augustss 	struct session *sess = (struct session *)tpr;
    516  1.12       cgd 	struct tty *tp = NULL;
    517  1.54   thorpej 	int s, flags = TOLOG;
    518  1.12       cgd 	va_list ap;
    519  1.12       cgd 
    520  1.12       cgd 	if (sess && sess->s_ttyvp && ttycheckoutq(sess->s_ttyp, 0)) {
    521  1.12       cgd 		flags |= TOTTY;
    522  1.12       cgd 		tp = sess->s_ttyp;
    523  1.12       cgd 	}
    524  1.54   thorpej 
    525  1.54   thorpej 	KPRINTF_MUTEX_ENTER(s);
    526  1.54   thorpej 
    527  1.54   thorpej 	klogpri(LOG_INFO);
    528  1.12       cgd 	va_start(ap, fmt);
    529  1.45     chuck 	kprintf(fmt, flags, tp, NULL, ap);
    530  1.12       cgd 	va_end(ap);
    531  1.54   thorpej 
    532  1.54   thorpej 	KPRINTF_MUTEX_EXIT(s);
    533  1.54   thorpej 
    534  1.12       cgd 	logwakeup();
    535  1.12       cgd }
    536  1.12       cgd 
    537  1.45     chuck 
    538  1.12       cgd /*
    539  1.45     chuck  * ttyprintf: send a message to a specific tty
    540  1.45     chuck  *
    541  1.45     chuck  * => should be used only by tty driver or anything that knows the
    542  1.52       mrg  *    underlying tty will not be revoked(2)'d away.  [otherwise,
    543  1.52       mrg  *    use tprintf]
    544  1.12       cgd  */
    545  1.12       cgd void
    546  1.12       cgd #ifdef __STDC__
    547  1.12       cgd ttyprintf(struct tty *tp, const char *fmt, ...)
    548  1.12       cgd #else
    549  1.14       cgd ttyprintf(tp, fmt, va_alist)
    550  1.12       cgd 	struct tty *tp;
    551  1.12       cgd 	char *fmt;
    552  1.20  christos 	va_dcl
    553  1.12       cgd #endif
    554  1.12       cgd {
    555  1.12       cgd 	va_list ap;
    556  1.12       cgd 
    557  1.54   thorpej 	/* No mutex needed; going to process TTY. */
    558  1.12       cgd 	va_start(ap, fmt);
    559  1.45     chuck 	kprintf(fmt, TOTTY, tp, NULL, ap);
    560  1.12       cgd 	va_end(ap);
    561  1.12       cgd }
    562  1.12       cgd 
    563  1.45     chuck #ifdef DDB
    564  1.12       cgd 
    565  1.12       cgd /*
    566  1.45     chuck  * db_printf: printf for DDB (via db_putchar)
    567  1.12       cgd  */
    568  1.45     chuck 
    569  1.12       cgd void
    570  1.12       cgd #ifdef __STDC__
    571  1.45     chuck db_printf(const char *fmt, ...)
    572  1.12       cgd #else
    573  1.45     chuck db_printf(fmt, va_alist)
    574  1.12       cgd 	char *fmt;
    575  1.20  christos 	va_dcl
    576  1.12       cgd #endif
    577  1.12       cgd {
    578  1.12       cgd 	va_list ap;
    579  1.12       cgd 
    580  1.54   thorpej 	/* No mutex needed; DDB pauses all processors. */
    581  1.12       cgd 	va_start(ap, fmt);
    582  1.45     chuck 	kprintf(fmt, TODDB, NULL, NULL, ap);
    583  1.12       cgd 	va_end(ap);
    584  1.12       cgd }
    585  1.12       cgd 
    586  1.45     chuck #endif /* DDB */
    587  1.12       cgd 
    588  1.12       cgd 
    589  1.45     chuck /*
    590  1.76        tv  * normal kernel printf functions: printf, vprintf, snprintf, vsnprintf
    591  1.45     chuck  */
    592  1.12       cgd 
    593  1.45     chuck /*
    594  1.45     chuck  * printf: print a message to the console and the log
    595  1.45     chuck  */
    596  1.12       cgd void
    597  1.12       cgd #ifdef __STDC__
    598  1.30  christos printf(const char *fmt, ...)
    599  1.12       cgd #else
    600  1.30  christos printf(fmt, va_alist)
    601  1.12       cgd 	char *fmt;
    602  1.20  christos 	va_dcl
    603  1.12       cgd #endif
    604  1.12       cgd {
    605  1.12       cgd 	va_list ap;
    606  1.66   thorpej 	int s;
    607  1.54   thorpej 
    608  1.54   thorpej 	KPRINTF_MUTEX_ENTER(s);
    609  1.12       cgd 
    610  1.12       cgd 	va_start(ap, fmt);
    611  1.45     chuck 	kprintf(fmt, TOCONS | TOLOG, NULL, NULL, ap);
    612  1.12       cgd 	va_end(ap);
    613  1.54   thorpej 
    614  1.54   thorpej 	KPRINTF_MUTEX_EXIT(s);
    615  1.54   thorpej 
    616  1.12       cgd 	if (!panicstr)
    617  1.12       cgd 		logwakeup();
    618  1.12       cgd }
    619  1.12       cgd 
    620  1.45     chuck /*
    621  1.45     chuck  * vprintf: print a message to the console and the log [already have
    622  1.45     chuck  *	va_alist]
    623  1.45     chuck  */
    624  1.45     chuck 
    625  1.40   thorpej void
    626  1.40   thorpej vprintf(fmt, ap)
    627  1.40   thorpej 	const char *fmt;
    628  1.40   thorpej 	va_list ap;
    629  1.40   thorpej {
    630  1.66   thorpej 	int s;
    631  1.54   thorpej 
    632  1.54   thorpej 	KPRINTF_MUTEX_ENTER(s);
    633  1.40   thorpej 
    634  1.45     chuck 	kprintf(fmt, TOCONS | TOLOG, NULL, NULL, ap);
    635  1.54   thorpej 
    636  1.54   thorpej 	KPRINTF_MUTEX_EXIT(s);
    637  1.54   thorpej 
    638  1.40   thorpej 	if (!panicstr)
    639  1.40   thorpej 		logwakeup();
    640  1.40   thorpej }
    641  1.40   thorpej 
    642  1.12       cgd /*
    643  1.45     chuck  * sprintf: print a message to a buffer
    644  1.12       cgd  */
    645  1.45     chuck int
    646  1.45     chuck #ifdef __STDC__
    647  1.45     chuck sprintf(char *buf, const char *fmt, ...)
    648  1.45     chuck #else
    649  1.45     chuck sprintf(buf, fmt, va_alist)
    650  1.45     chuck         char *buf;
    651  1.45     chuck         const char *cfmt;
    652  1.45     chuck         va_dcl
    653  1.45     chuck #endif
    654  1.45     chuck {
    655  1.45     chuck 	int retval;
    656  1.12       cgd 	va_list ap;
    657  1.12       cgd 
    658  1.45     chuck 	va_start(ap, fmt);
    659  1.45     chuck 	retval = kprintf(fmt, TOBUFONLY, NULL, buf, ap);
    660  1.12       cgd 	va_end(ap);
    661  1.45     chuck 	*(buf + retval) = 0;	/* null terminate */
    662  1.45     chuck 	return(retval);
    663  1.55   thorpej }
    664  1.55   thorpej 
    665  1.55   thorpej /*
    666  1.55   thorpej  * vsprintf: print a message to a buffer [already have va_alist]
    667  1.55   thorpej  */
    668  1.55   thorpej 
    669  1.55   thorpej int
    670  1.55   thorpej vsprintf(buf, fmt, ap)
    671  1.55   thorpej 	char *buf;
    672  1.55   thorpej 	const char *fmt;
    673  1.55   thorpej 	va_list ap;
    674  1.55   thorpej {
    675  1.55   thorpej 	int retval;
    676  1.55   thorpej 
    677  1.55   thorpej 	retval = kprintf(fmt, TOBUFONLY, NULL, buf, ap);
    678  1.55   thorpej 	*(buf + retval) = 0;	/* null terminate */
    679  1.55   thorpej 	return (retval);
    680  1.12       cgd }
    681  1.12       cgd 
    682  1.12       cgd /*
    683  1.58   msaitoh  * snprintf: print a message to a buffer
    684  1.58   msaitoh  */
    685  1.58   msaitoh int
    686  1.58   msaitoh #ifdef __STDC__
    687  1.58   msaitoh snprintf(char *buf, size_t size, const char *fmt, ...)
    688  1.58   msaitoh #else
    689  1.58   msaitoh snprintf(buf, size, fmt, va_alist)
    690  1.58   msaitoh         char *buf;
    691  1.58   msaitoh         size_t size;
    692  1.58   msaitoh         const char *cfmt;
    693  1.58   msaitoh         va_dcl
    694  1.58   msaitoh #endif
    695  1.58   msaitoh {
    696  1.58   msaitoh 	int retval;
    697  1.58   msaitoh 	va_list ap;
    698  1.58   msaitoh 	char *p;
    699  1.58   msaitoh 
    700  1.58   msaitoh 	if (size < 1)
    701  1.58   msaitoh 		return (-1);
    702  1.58   msaitoh 	p = buf + size - 1;
    703  1.58   msaitoh 	va_start(ap, fmt);
    704  1.58   msaitoh 	retval = kprintf(fmt, TOBUFONLY, &p, buf, ap);
    705  1.58   msaitoh 	va_end(ap);
    706  1.58   msaitoh 	*(p) = 0;	/* null terminate */
    707  1.58   msaitoh 	return(retval);
    708  1.58   msaitoh }
    709  1.58   msaitoh 
    710  1.58   msaitoh /*
    711  1.58   msaitoh  * vsnprintf: print a message to a buffer [already have va_alist]
    712  1.58   msaitoh  */
    713  1.58   msaitoh int
    714  1.58   msaitoh vsnprintf(buf, size, fmt, ap)
    715  1.58   msaitoh         char *buf;
    716  1.58   msaitoh         size_t size;
    717  1.58   msaitoh         const char *fmt;
    718  1.58   msaitoh         va_list ap;
    719  1.58   msaitoh {
    720  1.58   msaitoh 	int retval;
    721  1.58   msaitoh 	char *p;
    722  1.58   msaitoh 
    723  1.58   msaitoh 	if (size < 1)
    724  1.58   msaitoh 		return (-1);
    725  1.58   msaitoh 	p = buf + size - 1;
    726  1.58   msaitoh 	retval = kprintf(fmt, TOBUFONLY, &p, buf, ap);
    727  1.58   msaitoh 	*(p) = 0;	/* null terminate */
    728  1.58   msaitoh 	return(retval);
    729  1.58   msaitoh }
    730  1.58   msaitoh 
    731  1.58   msaitoh /*
    732  1.76        tv  * bitmask_snprintf: print an interpreted bitmask to a buffer
    733  1.45     chuck  *
    734  1.45     chuck  * => returns pointer to the buffer
    735  1.37   thorpej  */
    736  1.37   thorpej char *
    737  1.51        pk bitmask_snprintf(val, p, buf, buflen)
    738  1.51        pk 	u_quad_t val;
    739  1.37   thorpej 	const char *p;
    740  1.37   thorpej 	char *buf;
    741  1.37   thorpej 	size_t buflen;
    742  1.37   thorpej {
    743  1.37   thorpej 	char *bp, *q;
    744  1.37   thorpej 	size_t left;
    745  1.51        pk 	char *sbase, snbuf[KPRINTF_BUFSIZE];
    746  1.51        pk 	int base, bit, ch, len, sep;
    747  1.51        pk 	u_quad_t field;
    748  1.37   thorpej 
    749  1.37   thorpej 	bp = buf;
    750  1.50     perry 	memset(buf, 0, buflen);
    751  1.37   thorpej 
    752  1.37   thorpej 	/*
    753  1.37   thorpej 	 * Always leave room for the trailing NULL.
    754  1.37   thorpej 	 */
    755  1.37   thorpej 	left = buflen - 1;
    756  1.37   thorpej 
    757  1.37   thorpej 	/*
    758  1.37   thorpej 	 * Print the value into the buffer.  Abort if there's not
    759  1.37   thorpej 	 * enough room.
    760  1.37   thorpej 	 */
    761  1.45     chuck 	if (buflen < KPRINTF_BUFSIZE)
    762  1.37   thorpej 		return (buf);
    763  1.37   thorpej 
    764  1.51        pk 	ch = *p++;
    765  1.51        pk 	base = ch != '\177' ? ch : *p++;
    766  1.51        pk 	sbase = base == 8 ? "%qo" : base == 10 ? "%qd" : base == 16 ? "%qx" : 0;
    767  1.51        pk 	if (sbase == 0)
    768  1.51        pk 		return (buf);	/* punt if not oct, dec, or hex */
    769  1.45     chuck 
    770  1.76        tv 	snprintf(snbuf, sizeof(snbuf), sbase, val);
    771  1.45     chuck 	for (q = snbuf ; *q ; q++) {
    772  1.45     chuck 		*bp++ = *q;
    773  1.37   thorpej 		left--;
    774  1.37   thorpej 	}
    775  1.37   thorpej 
    776  1.37   thorpej 	/*
    777  1.65  sommerfe 	 * If the value we printed was 0 and we're using the old-style format,
    778  1.65  sommerfe 	 * or if we don't have room for "<x>", we're done.
    779  1.37   thorpej 	 */
    780  1.65  sommerfe 	if (((val == 0) && (ch != '\177')) || left < 3)
    781  1.37   thorpej 		return (buf);
    782  1.37   thorpej 
    783  1.37   thorpej #define PUTBYTE(b, c, l)	\
    784  1.37   thorpej 	*(b)++ = (c);		\
    785  1.37   thorpej 	if (--(l) == 0)		\
    786  1.37   thorpej 		goto out;
    787  1.51        pk #define PUTSTR(b, p, l) do {		\
    788  1.51        pk 	int c;				\
    789  1.51        pk 	while ((c = *(p)++) != 0) {	\
    790  1.51        pk 		*(b)++ = c;		\
    791  1.51        pk 		if (--(l) == 0)		\
    792  1.51        pk 			goto out;	\
    793  1.51        pk 	}				\
    794  1.51        pk } while (0)
    795  1.37   thorpej 
    796  1.51        pk 	/*
    797  1.76        tv 	 * Chris Torek's new bitmask format is identified by a leading \177
    798  1.51        pk 	 */
    799  1.51        pk 	sep = '<';
    800  1.51        pk 	if (ch != '\177') {
    801  1.76        tv 		/* old (standard) format. */
    802  1.51        pk 		for (;(bit = *p++) != 0;) {
    803  1.51        pk 			if (val & (1 << (bit - 1))) {
    804  1.51        pk 				PUTBYTE(bp, sep, left);
    805  1.51        pk 				for (; (ch = *p) > ' '; ++p) {
    806  1.51        pk 					PUTBYTE(bp, ch, left);
    807  1.37   thorpej 				}
    808  1.51        pk 				sep = ',';
    809  1.51        pk 			} else
    810  1.51        pk 				for (; *p > ' '; ++p)
    811  1.51        pk 					continue;
    812  1.51        pk 		}
    813  1.51        pk 	} else {
    814  1.76        tv 		/* new quad-capable format; also does fields. */
    815  1.51        pk 		field = val;
    816  1.51        pk 		while ((ch = *p++) != '\0') {
    817  1.51        pk 			bit = *p++;	/* now 0-origin */
    818  1.51        pk 			switch (ch) {
    819  1.51        pk 			case 'b':
    820  1.51        pk 				if (((u_int)(val >> bit) & 1) == 0)
    821  1.51        pk 					goto skip;
    822  1.51        pk 				PUTBYTE(bp, sep, left);
    823  1.51        pk 				PUTSTR(bp, p, left);
    824  1.51        pk 				sep = ',';
    825  1.51        pk 				break;
    826  1.51        pk 			case 'f':
    827  1.51        pk 			case 'F':
    828  1.51        pk 				len = *p++;	/* field length */
    829  1.51        pk 				field = (val >> bit) & ((1ULL << len) - 1);
    830  1.51        pk 				if (ch == 'F')	/* just extract */
    831  1.51        pk 					break;
    832  1.51        pk 				PUTBYTE(bp, sep, left);
    833  1.51        pk 				sep = ',';
    834  1.51        pk 				PUTSTR(bp, p, left);
    835  1.51        pk 				PUTBYTE(bp, '=', left);
    836  1.51        pk 				sprintf(snbuf, sbase, field);
    837  1.51        pk 				q = snbuf; PUTSTR(bp, q, left);
    838  1.51        pk 				break;
    839  1.51        pk 			case '=':
    840  1.51        pk 			case ':':
    841  1.51        pk 				/*
    842  1.51        pk 				 * Here "bit" is actually a value instead,
    843  1.51        pk 				 * to be compared against the last field.
    844  1.51        pk 				 * This only works for values in [0..255],
    845  1.51        pk 				 * of course.
    846  1.51        pk 				 */
    847  1.51        pk 				if ((int)field != bit)
    848  1.51        pk 					goto skip;
    849  1.51        pk 				if (ch == '=')
    850  1.51        pk 					PUTBYTE(bp, '=', left);
    851  1.51        pk 				PUTSTR(bp, p, left);
    852  1.51        pk 				break;
    853  1.51        pk 			default:
    854  1.51        pk 			skip:
    855  1.51        pk 				while (*p++ != '\0')
    856  1.51        pk 					continue;
    857  1.51        pk 				break;
    858  1.51        pk 			}
    859  1.51        pk 		}
    860  1.37   thorpej 	}
    861  1.51        pk 	if (sep != '<')
    862  1.51        pk 		PUTBYTE(bp, '>', left);
    863  1.51        pk 
    864  1.51        pk out:
    865  1.51        pk 	return (buf);
    866  1.37   thorpej 
    867  1.37   thorpej #undef PUTBYTE
    868  1.51        pk #undef PUTSTR
    869  1.45     chuck }
    870  1.45     chuck 
    871  1.45     chuck /*
    872  1.45     chuck  * kprintf: scaled down version of printf(3).
    873  1.45     chuck  *
    874  1.45     chuck  * this version based on vfprintf() from libc which was derived from
    875  1.45     chuck  * software contributed to Berkeley by Chris Torek.
    876  1.45     chuck  *
    877  1.76        tv  * NOTE: The kprintf mutex must be held if we're going TOBUF or TOCONS!
    878  1.45     chuck  */
    879  1.45     chuck 
    880  1.45     chuck /*
    881  1.45     chuck  * macros for converting digits to letters and vice versa
    882  1.45     chuck  */
    883  1.45     chuck #define	to_digit(c)	((c) - '0')
    884  1.45     chuck #define is_digit(c)	((unsigned)to_digit(c) <= 9)
    885  1.45     chuck #define	to_char(n)	((n) + '0')
    886  1.45     chuck 
    887  1.45     chuck /*
    888  1.45     chuck  * flags used during conversion.
    889  1.45     chuck  */
    890  1.45     chuck #define	ALT		0x001		/* alternate form */
    891  1.45     chuck #define	HEXPREFIX	0x002		/* add 0x or 0X prefix */
    892  1.45     chuck #define	LADJUST		0x004		/* left adjustment */
    893  1.45     chuck #define	LONGDBL		0x008		/* long double; unimplemented */
    894  1.45     chuck #define	LONGINT		0x010		/* long integer */
    895  1.45     chuck #define	QUADINT		0x020		/* quad integer */
    896  1.45     chuck #define	SHORTINT	0x040		/* short integer */
    897  1.45     chuck #define	ZEROPAD		0x080		/* zero (as opposed to blank) pad */
    898  1.45     chuck #define FPT		0x100		/* Floating point number */
    899  1.45     chuck 
    900  1.45     chuck 	/*
    901  1.45     chuck 	 * To extend shorts properly, we need both signed and unsigned
    902  1.45     chuck 	 * argument extraction methods.
    903  1.45     chuck 	 */
    904  1.45     chuck #define	SARG() \
    905  1.45     chuck 	(flags&QUADINT ? va_arg(ap, quad_t) : \
    906  1.45     chuck 	    flags&LONGINT ? va_arg(ap, long) : \
    907  1.45     chuck 	    flags&SHORTINT ? (long)(short)va_arg(ap, int) : \
    908  1.45     chuck 	    (long)va_arg(ap, int))
    909  1.45     chuck #define	UARG() \
    910  1.45     chuck 	(flags&QUADINT ? va_arg(ap, u_quad_t) : \
    911  1.45     chuck 	    flags&LONGINT ? va_arg(ap, u_long) : \
    912  1.45     chuck 	    flags&SHORTINT ? (u_long)(u_short)va_arg(ap, int) : \
    913  1.45     chuck 	    (u_long)va_arg(ap, u_int))
    914  1.45     chuck 
    915  1.60  explorer #define KPRINTF_PUTCHAR(C) {						\
    916  1.60  explorer 	if (oflags == TOBUFONLY) {					\
    917  1.60  explorer 		if ((vp != NULL) && (sbuf == tailp)) {			\
    918  1.60  explorer 			ret += 1;		/* indicate error */	\
    919  1.60  explorer 			goto overflow;					\
    920  1.60  explorer 		}							\
    921  1.60  explorer 		*sbuf++ = (C);						\
    922  1.60  explorer 	} else {							\
    923  1.60  explorer 		putchar((C), oflags, (struct tty *)vp);			\
    924  1.60  explorer 	}								\
    925  1.58   msaitoh }
    926  1.45     chuck 
    927  1.54   thorpej /*
    928  1.54   thorpej  * Guts of kernel printf.  Note, we already expect to be in a mutex!
    929  1.54   thorpej  */
    930  1.54   thorpej static int
    931  1.58   msaitoh kprintf(fmt0, oflags, vp, sbuf, ap)
    932  1.45     chuck 	const char *fmt0;
    933  1.45     chuck 	int oflags;
    934  1.58   msaitoh 	void *vp;
    935  1.45     chuck 	char *sbuf;
    936  1.45     chuck 	va_list ap;
    937  1.45     chuck {
    938  1.45     chuck 	char *fmt;		/* format string */
    939  1.45     chuck 	int ch;			/* character from fmt */
    940  1.45     chuck 	int n;			/* handy integer (short term usage) */
    941  1.45     chuck 	char *cp;		/* handy char pointer (short term usage) */
    942  1.45     chuck 	int flags;		/* flags as above */
    943  1.45     chuck 	int ret;		/* return value accumulator */
    944  1.45     chuck 	int width;		/* width from format (%8d), or 0 */
    945  1.45     chuck 	int prec;		/* precision from format (%.3d), or -1 */
    946  1.45     chuck 	char sign;		/* sign prefix (' ', '+', '-', or \0) */
    947  1.45     chuck 
    948  1.45     chuck 	u_quad_t _uquad;	/* integer arguments %[diouxX] */
    949  1.45     chuck 	enum { OCT, DEC, HEX } base;/* base for [diouxX] conversion */
    950  1.45     chuck 	int dprec;		/* a copy of prec if [diouxX], 0 otherwise */
    951  1.45     chuck 	int realsz;		/* field size expanded by dprec */
    952  1.45     chuck 	int size;		/* size of converted field or string */
    953  1.45     chuck 	char *xdigs;		/* digits for [xX] conversion */
    954  1.45     chuck 	char buf[KPRINTF_BUFSIZE]; /* space for %c, %[diouxX] */
    955  1.61  explorer 	char *tailp;		/* tail pointer for snprintf */
    956  1.58   msaitoh 
    957  1.61  explorer 	tailp = NULL;	/* XXX: shutup gcc */
    958  1.60  explorer 	if (oflags == TOBUFONLY && (vp != NULL))
    959  1.60  explorer 		tailp = *(char **)vp;
    960  1.45     chuck 
    961  1.45     chuck 	cp = NULL;	/* XXX: shutup gcc */
    962  1.45     chuck 	size = 0;	/* XXX: shutup gcc */
    963  1.45     chuck 
    964  1.45     chuck 	fmt = (char *)fmt0;
    965  1.45     chuck 	ret = 0;
    966  1.45     chuck 
    967  1.45     chuck 	xdigs = NULL;		/* XXX: shut up gcc warning */
    968  1.45     chuck 
    969  1.45     chuck 	/*
    970  1.45     chuck 	 * Scan the format for conversions (`%' character).
    971  1.45     chuck 	 */
    972  1.45     chuck 	for (;;) {
    973  1.45     chuck 		while (*fmt != '%' && *fmt) {
    974  1.58   msaitoh 			ret++;
    975  1.45     chuck 			KPRINTF_PUTCHAR(*fmt++);
    976  1.45     chuck 		}
    977  1.45     chuck 		if (*fmt == 0)
    978  1.45     chuck 			goto done;
    979  1.45     chuck 
    980  1.45     chuck 		fmt++;		/* skip over '%' */
    981  1.45     chuck 
    982  1.45     chuck 		flags = 0;
    983  1.45     chuck 		dprec = 0;
    984  1.45     chuck 		width = 0;
    985  1.45     chuck 		prec = -1;
    986  1.45     chuck 		sign = '\0';
    987  1.45     chuck 
    988  1.45     chuck rflag:		ch = *fmt++;
    989  1.45     chuck reswitch:	switch (ch) {
    990  1.45     chuck 		case ' ':
    991  1.45     chuck 			/*
    992  1.45     chuck 			 * ``If the space and + flags both appear, the space
    993  1.45     chuck 			 * flag will be ignored.''
    994  1.45     chuck 			 *	-- ANSI X3J11
    995  1.45     chuck 			 */
    996  1.45     chuck 			if (!sign)
    997  1.45     chuck 				sign = ' ';
    998  1.45     chuck 			goto rflag;
    999  1.45     chuck 		case '#':
   1000  1.45     chuck 			flags |= ALT;
   1001  1.45     chuck 			goto rflag;
   1002  1.45     chuck 		case '*':
   1003  1.45     chuck 			/*
   1004  1.45     chuck 			 * ``A negative field width argument is taken as a
   1005  1.45     chuck 			 * - flag followed by a positive field width.''
   1006  1.45     chuck 			 *	-- ANSI X3J11
   1007  1.45     chuck 			 * They don't exclude field widths read from args.
   1008  1.45     chuck 			 */
   1009  1.45     chuck 			if ((width = va_arg(ap, int)) >= 0)
   1010  1.45     chuck 				goto rflag;
   1011  1.45     chuck 			width = -width;
   1012  1.45     chuck 			/* FALLTHROUGH */
   1013  1.45     chuck 		case '-':
   1014  1.45     chuck 			flags |= LADJUST;
   1015  1.45     chuck 			goto rflag;
   1016  1.45     chuck 		case '+':
   1017  1.45     chuck 			sign = '+';
   1018  1.45     chuck 			goto rflag;
   1019  1.45     chuck 		case '.':
   1020  1.45     chuck 			if ((ch = *fmt++) == '*') {
   1021  1.45     chuck 				n = va_arg(ap, int);
   1022  1.45     chuck 				prec = n < 0 ? -1 : n;
   1023  1.45     chuck 				goto rflag;
   1024  1.45     chuck 			}
   1025  1.45     chuck 			n = 0;
   1026  1.45     chuck 			while (is_digit(ch)) {
   1027  1.45     chuck 				n = 10 * n + to_digit(ch);
   1028  1.45     chuck 				ch = *fmt++;
   1029  1.45     chuck 			}
   1030  1.45     chuck 			prec = n < 0 ? -1 : n;
   1031  1.45     chuck 			goto reswitch;
   1032  1.45     chuck 		case '0':
   1033  1.45     chuck 			/*
   1034  1.45     chuck 			 * ``Note that 0 is taken as a flag, not as the
   1035  1.45     chuck 			 * beginning of a field width.''
   1036  1.45     chuck 			 *	-- ANSI X3J11
   1037  1.45     chuck 			 */
   1038  1.45     chuck 			flags |= ZEROPAD;
   1039  1.45     chuck 			goto rflag;
   1040  1.45     chuck 		case '1': case '2': case '3': case '4':
   1041  1.45     chuck 		case '5': case '6': case '7': case '8': case '9':
   1042  1.45     chuck 			n = 0;
   1043  1.45     chuck 			do {
   1044  1.45     chuck 				n = 10 * n + to_digit(ch);
   1045  1.45     chuck 				ch = *fmt++;
   1046  1.45     chuck 			} while (is_digit(ch));
   1047  1.45     chuck 			width = n;
   1048  1.45     chuck 			goto reswitch;
   1049  1.45     chuck 		case 'h':
   1050  1.45     chuck 			flags |= SHORTINT;
   1051  1.45     chuck 			goto rflag;
   1052  1.45     chuck 		case 'l':
   1053  1.45     chuck 			if (*fmt == 'l') {
   1054  1.45     chuck 				fmt++;
   1055  1.45     chuck 				flags |= QUADINT;
   1056  1.45     chuck 			} else {
   1057  1.45     chuck 				flags |= LONGINT;
   1058  1.45     chuck 			}
   1059  1.45     chuck 			goto rflag;
   1060  1.45     chuck 		case 'q':
   1061  1.45     chuck 			flags |= QUADINT;
   1062  1.45     chuck 			goto rflag;
   1063  1.45     chuck 		case 'c':
   1064  1.45     chuck 			*(cp = buf) = va_arg(ap, int);
   1065  1.45     chuck 			size = 1;
   1066  1.45     chuck 			sign = '\0';
   1067  1.45     chuck 			break;
   1068  1.45     chuck 		case 'D':
   1069  1.45     chuck 			flags |= LONGINT;
   1070  1.45     chuck 			/*FALLTHROUGH*/
   1071  1.45     chuck 		case 'd':
   1072  1.45     chuck 		case 'i':
   1073  1.45     chuck 			_uquad = SARG();
   1074  1.45     chuck 			if ((quad_t)_uquad < 0) {
   1075  1.45     chuck 				_uquad = -_uquad;
   1076  1.45     chuck 				sign = '-';
   1077  1.45     chuck 			}
   1078  1.45     chuck 			base = DEC;
   1079  1.45     chuck 			goto number;
   1080  1.45     chuck 		case 'n':
   1081  1.45     chuck 			if (flags & QUADINT)
   1082  1.45     chuck 				*va_arg(ap, quad_t *) = ret;
   1083  1.45     chuck 			else if (flags & LONGINT)
   1084  1.45     chuck 				*va_arg(ap, long *) = ret;
   1085  1.45     chuck 			else if (flags & SHORTINT)
   1086  1.45     chuck 				*va_arg(ap, short *) = ret;
   1087  1.45     chuck 			else
   1088  1.45     chuck 				*va_arg(ap, int *) = ret;
   1089  1.45     chuck 			continue;	/* no output */
   1090  1.45     chuck 		case 'O':
   1091  1.45     chuck 			flags |= LONGINT;
   1092  1.45     chuck 			/*FALLTHROUGH*/
   1093  1.45     chuck 		case 'o':
   1094  1.45     chuck 			_uquad = UARG();
   1095  1.45     chuck 			base = OCT;
   1096  1.45     chuck 			goto nosign;
   1097  1.45     chuck 		case 'p':
   1098  1.45     chuck 			/*
   1099  1.45     chuck 			 * ``The argument shall be a pointer to void.  The
   1100  1.45     chuck 			 * value of the pointer is converted to a sequence
   1101  1.45     chuck 			 * of printable characters, in an implementation-
   1102  1.45     chuck 			 * defined manner.''
   1103  1.45     chuck 			 *	-- ANSI X3J11
   1104  1.45     chuck 			 */
   1105  1.45     chuck 			/* NOSTRICT */
   1106  1.45     chuck 			_uquad = (u_long)va_arg(ap, void *);
   1107  1.45     chuck 			base = HEX;
   1108  1.45     chuck 			xdigs = "0123456789abcdef";
   1109  1.45     chuck 			flags |= HEXPREFIX;
   1110  1.45     chuck 			ch = 'x';
   1111  1.45     chuck 			goto nosign;
   1112  1.45     chuck 		case 's':
   1113  1.45     chuck 			if ((cp = va_arg(ap, char *)) == NULL)
   1114  1.45     chuck 				cp = "(null)";
   1115  1.45     chuck 			if (prec >= 0) {
   1116  1.45     chuck 				/*
   1117  1.45     chuck 				 * can't use strlen; can only look for the
   1118  1.45     chuck 				 * NUL in the first `prec' characters, and
   1119  1.45     chuck 				 * strlen() will go further.
   1120  1.45     chuck 				 */
   1121  1.45     chuck 				char *p = memchr(cp, 0, prec);
   1122  1.45     chuck 
   1123  1.45     chuck 				if (p != NULL) {
   1124  1.45     chuck 					size = p - cp;
   1125  1.45     chuck 					if (size > prec)
   1126  1.45     chuck 						size = prec;
   1127  1.45     chuck 				} else
   1128  1.45     chuck 					size = prec;
   1129  1.45     chuck 			} else
   1130  1.45     chuck 				size = strlen(cp);
   1131  1.45     chuck 			sign = '\0';
   1132  1.45     chuck 			break;
   1133  1.45     chuck 		case 'U':
   1134  1.45     chuck 			flags |= LONGINT;
   1135  1.45     chuck 			/*FALLTHROUGH*/
   1136  1.45     chuck 		case 'u':
   1137  1.45     chuck 			_uquad = UARG();
   1138  1.45     chuck 			base = DEC;
   1139  1.45     chuck 			goto nosign;
   1140  1.45     chuck 		case 'X':
   1141  1.45     chuck 			xdigs = "0123456789ABCDEF";
   1142  1.45     chuck 			goto hex;
   1143  1.45     chuck 		case 'x':
   1144  1.45     chuck 			xdigs = "0123456789abcdef";
   1145  1.45     chuck hex:			_uquad = UARG();
   1146  1.45     chuck 			base = HEX;
   1147  1.45     chuck 			/* leading 0x/X only if non-zero */
   1148  1.45     chuck 			if (flags & ALT && _uquad != 0)
   1149  1.45     chuck 				flags |= HEXPREFIX;
   1150  1.45     chuck 
   1151  1.45     chuck 			/* unsigned conversions */
   1152  1.45     chuck nosign:			sign = '\0';
   1153  1.45     chuck 			/*
   1154  1.45     chuck 			 * ``... diouXx conversions ... if a precision is
   1155  1.45     chuck 			 * specified, the 0 flag will be ignored.''
   1156  1.45     chuck 			 *	-- ANSI X3J11
   1157  1.45     chuck 			 */
   1158  1.45     chuck number:			if ((dprec = prec) >= 0)
   1159  1.45     chuck 				flags &= ~ZEROPAD;
   1160  1.45     chuck 
   1161  1.45     chuck 			/*
   1162  1.45     chuck 			 * ``The result of converting a zero value with an
   1163  1.45     chuck 			 * explicit precision of zero is no characters.''
   1164  1.45     chuck 			 *	-- ANSI X3J11
   1165  1.45     chuck 			 */
   1166  1.45     chuck 			cp = buf + KPRINTF_BUFSIZE;
   1167  1.45     chuck 			if (_uquad != 0 || prec != 0) {
   1168  1.45     chuck 				/*
   1169  1.45     chuck 				 * Unsigned mod is hard, and unsigned mod
   1170  1.45     chuck 				 * by a constant is easier than that by
   1171  1.45     chuck 				 * a variable; hence this switch.
   1172  1.45     chuck 				 */
   1173  1.45     chuck 				switch (base) {
   1174  1.45     chuck 				case OCT:
   1175  1.45     chuck 					do {
   1176  1.45     chuck 						*--cp = to_char(_uquad & 7);
   1177  1.45     chuck 						_uquad >>= 3;
   1178  1.45     chuck 					} while (_uquad);
   1179  1.45     chuck 					/* handle octal leading 0 */
   1180  1.45     chuck 					if (flags & ALT && *cp != '0')
   1181  1.45     chuck 						*--cp = '0';
   1182  1.45     chuck 					break;
   1183  1.45     chuck 
   1184  1.45     chuck 				case DEC:
   1185  1.45     chuck 					/* many numbers are 1 digit */
   1186  1.45     chuck 					while (_uquad >= 10) {
   1187  1.45     chuck 						*--cp = to_char(_uquad % 10);
   1188  1.45     chuck 						_uquad /= 10;
   1189  1.45     chuck 					}
   1190  1.45     chuck 					*--cp = to_char(_uquad);
   1191  1.45     chuck 					break;
   1192  1.45     chuck 
   1193  1.45     chuck 				case HEX:
   1194  1.45     chuck 					do {
   1195  1.45     chuck 						*--cp = xdigs[_uquad & 15];
   1196  1.45     chuck 						_uquad >>= 4;
   1197  1.45     chuck 					} while (_uquad);
   1198  1.45     chuck 					break;
   1199  1.45     chuck 
   1200  1.45     chuck 				default:
   1201  1.45     chuck 					cp = "bug in kprintf: bad base";
   1202  1.45     chuck 					size = strlen(cp);
   1203  1.45     chuck 					goto skipsize;
   1204  1.45     chuck 				}
   1205  1.45     chuck 			}
   1206  1.45     chuck 			size = buf + KPRINTF_BUFSIZE - cp;
   1207  1.45     chuck 		skipsize:
   1208  1.45     chuck 			break;
   1209  1.45     chuck 		default:	/* "%?" prints ?, unless ? is NUL */
   1210  1.45     chuck 			if (ch == '\0')
   1211  1.45     chuck 				goto done;
   1212  1.45     chuck 			/* pretend it was %c with argument ch */
   1213  1.45     chuck 			cp = buf;
   1214  1.45     chuck 			*cp = ch;
   1215  1.45     chuck 			size = 1;
   1216  1.45     chuck 			sign = '\0';
   1217  1.45     chuck 			break;
   1218  1.45     chuck 		}
   1219  1.45     chuck 
   1220  1.45     chuck 		/*
   1221  1.45     chuck 		 * All reasonable formats wind up here.  At this point, `cp'
   1222  1.45     chuck 		 * points to a string which (if not flags&LADJUST) should be
   1223  1.45     chuck 		 * padded out to `width' places.  If flags&ZEROPAD, it should
   1224  1.45     chuck 		 * first be prefixed by any sign or other prefix; otherwise,
   1225  1.45     chuck 		 * it should be blank padded before the prefix is emitted.
   1226  1.45     chuck 		 * After any left-hand padding and prefixing, emit zeroes
   1227  1.45     chuck 		 * required by a decimal [diouxX] precision, then print the
   1228  1.45     chuck 		 * string proper, then emit zeroes required by any leftover
   1229  1.45     chuck 		 * floating precision; finally, if LADJUST, pad with blanks.
   1230  1.45     chuck 		 *
   1231  1.45     chuck 		 * Compute actual size, so we know how much to pad.
   1232  1.45     chuck 		 * size excludes decimal prec; realsz includes it.
   1233  1.45     chuck 		 */
   1234  1.45     chuck 		realsz = dprec > size ? dprec : size;
   1235  1.45     chuck 		if (sign)
   1236  1.45     chuck 			realsz++;
   1237  1.45     chuck 		else if (flags & HEXPREFIX)
   1238  1.45     chuck 			realsz+= 2;
   1239  1.45     chuck 
   1240  1.58   msaitoh 		/* adjust ret */
   1241  1.58   msaitoh 		ret += width > realsz ? width : realsz;
   1242  1.58   msaitoh 
   1243  1.45     chuck 		/* right-adjusting blank padding */
   1244  1.45     chuck 		if ((flags & (LADJUST|ZEROPAD)) == 0) {
   1245  1.45     chuck 			n = width - realsz;
   1246  1.45     chuck 			while (n-- > 0)
   1247  1.45     chuck 				KPRINTF_PUTCHAR(' ');
   1248  1.45     chuck 		}
   1249  1.45     chuck 
   1250  1.45     chuck 		/* prefix */
   1251  1.45     chuck 		if (sign) {
   1252  1.45     chuck 			KPRINTF_PUTCHAR(sign);
   1253  1.45     chuck 		} else if (flags & HEXPREFIX) {
   1254  1.45     chuck 			KPRINTF_PUTCHAR('0');
   1255  1.45     chuck 			KPRINTF_PUTCHAR(ch);
   1256  1.45     chuck 		}
   1257  1.45     chuck 
   1258  1.45     chuck 		/* right-adjusting zero padding */
   1259  1.45     chuck 		if ((flags & (LADJUST|ZEROPAD)) == ZEROPAD) {
   1260  1.45     chuck 			n = width - realsz;
   1261  1.45     chuck 			while (n-- > 0)
   1262  1.45     chuck 				KPRINTF_PUTCHAR('0');
   1263  1.45     chuck 		}
   1264  1.45     chuck 
   1265  1.45     chuck 		/* leading zeroes from decimal precision */
   1266  1.45     chuck 		n = dprec - size;
   1267  1.45     chuck 		while (n-- > 0)
   1268  1.45     chuck 			KPRINTF_PUTCHAR('0');
   1269  1.45     chuck 
   1270  1.45     chuck 		/* the string or number proper */
   1271  1.45     chuck 		while (size--)
   1272  1.45     chuck 			KPRINTF_PUTCHAR(*cp++);
   1273  1.45     chuck 		/* left-adjusting padding (always blank) */
   1274  1.45     chuck 		if (flags & LADJUST) {
   1275  1.45     chuck 			n = width - realsz;
   1276  1.45     chuck 			while (n-- > 0)
   1277  1.45     chuck 				KPRINTF_PUTCHAR(' ');
   1278  1.45     chuck 		}
   1279  1.58   msaitoh 	}
   1280  1.45     chuck 
   1281  1.45     chuck done:
   1282  1.58   msaitoh 	if ((oflags == TOBUFONLY) && (vp != NULL))
   1283  1.58   msaitoh 		*(char **)vp = sbuf;
   1284  1.58   msaitoh overflow:
   1285  1.45     chuck 	return (ret);
   1286  1.45     chuck 	/* NOTREACHED */
   1287  1.12       cgd }
   1288