2 * Copyright (c) 1986, 1988, 1991, 1993
3 * The Regents of the University of California. All rights reserved.
4 * (c) UNIX System Laboratories, Inc.
5 * All or some portions of this file are derived from material licensed
6 * to the University of California by American Telephone and Telegraph
7 * Co. or Unix System Laboratories, Inc. and are reproduced herein with
8 * the permission of UNIX System Laboratories, Inc.
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 * 4. Neither the name of the University nor the names of its contributors
19 * may be used to endorse or promote products derived from this software
20 * without specific prior written permission.
22 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * @(#)subr_prf.c 8.3 (Berkeley) 1/21/94
37 #include <sys/cdefs.h>
40 * Standaloneified version of the FreeBSD kernel printf family.
43 #include <sys/types.h>
44 #include <sys/stddef.h>
45 #include <sys/stdint.h>
51 * Note that stdarg.h and the ANSI style va_start macro is used for both
52 * ANSI and traditional C compilers.
54 #include <machine/stdarg.h>
56 #define MAXNBUF (sizeof(intmax_t) * CHAR_BIT + 1)
58 typedef void (kvprintf_fn_t
)(int, void *);
60 static char *ksprintn (char *buf
, uintmax_t num
, int base
, int *len
, int upper
);
61 static int kvprintf(char const *fmt
, kvprintf_fn_t
*func
, void *arg
, int radix
, va_list ap
);
64 putchar_wrapper(int cc
, void *arg
)
71 printf(const char *fmt
, ...)
77 retval
= kvprintf(fmt
, putchar_wrapper
, NULL
, 10, ap
);
83 vprintf(const char *fmt
, va_list ap
)
86 kvprintf(fmt
, putchar_wrapper
, NULL
, 10, ap
);
90 sprintf(char *buf
, const char *cfmt
, ...)
96 retval
= kvprintf(cfmt
, NULL
, (void *)buf
, 10, ap
);
108 snprint_func(int ch
, void *arg
)
110 struct print_buf
*pbuf
= arg
;
112 if (pbuf
->size
< 2) {
114 * Reserve last buffer position for the terminating
124 asprintf(char **buf
, const char *cfmt
, ...)
127 struct print_buf arg
;
132 retval
= kvprintf(cfmt
, NULL
, NULL
, 10, ap
);
137 arg
.size
= retval
+ 1;
138 arg
.buf
= *buf
= malloc(arg
.size
);
143 retval
= kvprintf(cfmt
, &snprint_func
, &arg
, 10, ap
);
152 snprintf(char *buf
, size_t size
, const char *cfmt
, ...)
156 struct print_buf arg
;
162 retval
= kvprintf(cfmt
, &snprint_func
, &arg
, 10, ap
);
171 vsprintf(char *buf
, const char *cfmt
, va_list ap
)
175 retval
= kvprintf(cfmt
, NULL
, (void *)buf
, 10, ap
);
180 vsnprintf(char *buf
, size_t size
, const char *cfmt
, va_list ap
)
183 struct print_buf arg
;
188 retval
= kvprintf(cfmt
, &snprint_func
, &arg
, 10, ap
);
193 * Put a NUL-terminated ASCII number (base <= 36) in a buffer in reverse
194 * order; return an optional length and a pointer to the last character
195 * written in the buffer (i.e., the first character of the string).
196 * The buffer pointed to by `nbuf' must have length >= MAXNBUF.
199 ksprintn(char *nbuf
, uintmax_t num
, int base
, int *lenp
, int upper
)
206 c
= hex2ascii(num
% base
);
207 *++p
= upper
? toupper(c
) : c
;
208 } while (num
/= base
);
215 * Scaled down version of printf(3).
217 * Two additional formats:
219 * The format %b is supported to decode error registers.
222 * printf("reg=%b\n", regval, "<base><arg>*");
224 * where <base> is the output base expressed as a control character, e.g.
225 * \10 gives octal; \20 gives hex. Each arg is a sequence of characters,
226 * the first of which gives the bit number to be inspected (origin 1), and
227 * the next characters (up to a control character, i.e. a character <= 32),
228 * give the name of the register. Thus:
230 * kvprintf("reg=%b\n", 3, "\10\2BITTWO\1BITONE");
232 * would produce output:
234 * reg=3<BITTWO,BITONE>
236 * XXX: %D -- Hexdump, takes pointer and separator string:
237 * ("%6D", ptr, ":") -> XX:XX:XX:XX:XX:XX
238 * ("%*D", len, ptr, " " -> XX XX XX XX ...
241 kvprintf(char const *fmt
, kvprintf_fn_t
*func
, void *arg
, int radix
, va_list ap
)
248 } else if (d != NULL) { \
256 const char *p
, *percent
, *q
;
261 int base
, lflag
, qflag
, tmp
, width
, ladjust
, sharpflag
, neg
, sign
, dot
;
262 int cflag
, hflag
, jflag
, tflag
, zflag
;
265 int stop
= 0, retval
= 0;
274 fmt
= "(fmt null)\n";
276 if (radix
< 2 || radix
> 36)
282 while ((ch
= (u_char
)*fmt
++) != '%' || stop
) {
288 qflag
= 0; lflag
= 0; ladjust
= 0; sharpflag
= 0; neg
= 0;
289 sign
= 0; dot
= 0; dwidth
= 0; upper
= 0;
290 cflag
= 0; hflag
= 0; jflag
= 0; tflag
= 0; zflag
= 0;
291 reswitch
: switch (ch
= (u_char
)*fmt
++) {
309 width
= va_arg(ap
, int);
315 dwidth
= va_arg(ap
, int);
323 case '1': case '2': case '3': case '4':
324 case '5': case '6': case '7': case '8': case '9':
325 for (n
= 0;; ++fmt
) {
326 n
= n
* 10 + ch
- '0';
328 if (ch
< '0' || ch
> '9')
337 num
= (u_int
)va_arg(ap
, int);
338 p
= va_arg(ap
, char *);
339 for (q
= ksprintn(nbuf
, num
, *p
++, NULL
, 0); *q
;)
347 if (num
& (1 << (n
- 1))) {
348 PCHAR(tmp
? ',' : '<');
349 for (; (n
= *p
) > ' '; ++p
)
353 for (; *p
> ' '; ++p
)
360 PCHAR(va_arg(ap
, int));
363 up
= va_arg(ap
, u_char
*);
364 p
= va_arg(ap
, char *);
368 PCHAR(hex2ascii(*up
>> 4));
369 PCHAR(hex2ascii(*up
& 0x0f));
400 *(va_arg(ap
, intmax_t *)) = retval
;
402 *(va_arg(ap
, quad_t
*)) = retval
;
404 *(va_arg(ap
, long *)) = retval
;
406 *(va_arg(ap
, size_t *)) = retval
;
408 *(va_arg(ap
, short *)) = retval
;
410 *(va_arg(ap
, char *)) = retval
;
412 *(va_arg(ap
, int *)) = retval
;
419 sharpflag
= (width
== 0);
421 num
= (uintptr_t)va_arg(ap
, void *);
432 p
= va_arg(ap
, char *);
438 for (n
= 0; n
< dwidth
&& p
[n
]; n
++)
443 if (!ladjust
&& width
> 0)
448 if (ladjust
&& width
> 0)
452 case 'S': /* Assume console can cope with wide chars */
453 S
= va_arg(ap
, uint16_t *);
455 S
= (uint16_t *)L
"(null)";
457 for (n
= 0; S
[n
] != 0; n
++)
460 for (n
= 0; n
< dwidth
&& S
[n
]; n
++)
466 if (!ladjust
&& width
> 0)
471 if (ladjust
&& width
> 0)
496 num
= va_arg(ap
, uintmax_t);
498 num
= va_arg(ap
, u_quad_t
);
500 num
= va_arg(ap
, ptrdiff_t);
502 num
= va_arg(ap
, u_long
);
504 num
= va_arg(ap
, size_t);
506 num
= (u_short
)va_arg(ap
, int);
508 num
= (u_char
)va_arg(ap
, int);
510 num
= va_arg(ap
, u_int
);
514 num
= va_arg(ap
, intmax_t);
516 num
= va_arg(ap
, quad_t
);
518 num
= va_arg(ap
, ptrdiff_t);
520 num
= va_arg(ap
, long);
522 num
= va_arg(ap
, ssize_t
);
524 num
= (short)va_arg(ap
, int);
526 num
= (char)va_arg(ap
, int);
528 num
= va_arg(ap
, int);
530 if (sign
&& (intmax_t)num
< 0) {
532 num
= -(intmax_t)num
;
534 p
= ksprintn(nbuf
, num
, base
, &n
, upper
);
536 if (sharpflag
&& num
!= 0) {
545 if (!ladjust
&& padc
== '0')
546 dwidth
= width
- tmp
;
547 width
-= tmp
+ imax(dwidth
, n
);
554 if (sharpflag
&& num
!= 0) {
557 } else if (base
== 16) {
574 while (percent
< fmt
)
577 * Since we ignore a formatting argument it is no
578 * longer safe to obey the remaining formatting
579 * arguments as the arguments will no longer match