4 * Copyright (C) 1991, 1992 Linus Torvalds
5 * (C) Copyright 2000-2009
6 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
9 /* vsprintf.c -- Lars Wirzenius & Linus Torvalds. */
11 * Wirzenius wrote this portably, Torvalds fucked it up :-)
13 * from hush: simple_itoa() was lifted from boa-0.93.15
18 #include <efi_loader.h>
24 #include <linux/ctype.h>
25 #include <linux/err.h>
26 #include <linux/types.h>
27 #include <linux/string.h>
29 /* we use this so that we can do without the ctype library */
30 #define is_digit(c) ((c) >= '0' && (c) <= '9')
32 static int skip_atoi(const char **s)
37 i = i * 10 + *((*s)++) - '0';
42 /* Decimal conversion is by far the most typical, and is used
43 * for /proc and /sys data. This directly impacts e.g. top performance
44 * with many processes running. We optimize it for speed
46 * http://www.cs.uiowa.edu/~jones/bcd/decimal.html
47 * (with permission from the author, Douglas W. Jones). */
49 /* Formats correctly any integer in [0,99999].
50 * Outputs from one to five digits depending on input.
51 * On i386 gcc 4.1.2 -O2: ~250 bytes of code. */
52 static char *put_dec_trunc(char *buf, unsigned q)
54 unsigned d3, d2, d1, d0;
59 d0 = 6*(d3 + d2 + d1) + (q & 0xf);
60 q = (d0 * 0xcd) >> 11;
62 *buf++ = d0 + '0'; /* least significant digit */
63 d1 = q + 9*d3 + 5*d2 + d1;
65 q = (d1 * 0xcd) >> 11;
67 *buf++ = d1 + '0'; /* next digit */
70 if ((d2 != 0) || (d3 != 0)) {
73 *buf++ = d2 + '0'; /* next digit */
77 q = (d3 * 0xcd) >> 11;
79 *buf++ = d3 + '0'; /* next digit */
81 *buf++ = q + '0'; /* most sign. digit */
87 /* Same with if's removed. Always emits five digits */
88 static char *put_dec_full(char *buf, unsigned q)
90 /* BTW, if q is in [0,9999], 8-bit ints will be enough, */
91 /* but anyway, gcc produces better code with full-sized ints */
92 unsigned d3, d2, d1, d0;
98 * Possible ways to approx. divide by 10
99 * gcc -O2 replaces multiply with shifts and adds
100 * (x * 0xcd) >> 11: 11001101 - shorter code than * 0x67 (on i386)
101 * (x * 0x67) >> 10: 1100111
102 * (x * 0x34) >> 9: 110100 - same
103 * (x * 0x1a) >> 8: 11010 - same
104 * (x * 0x0d) >> 7: 1101 - same, shortest code (on i386)
107 d0 = 6*(d3 + d2 + d1) + (q & 0xf);
108 q = (d0 * 0xcd) >> 11;
111 d1 = q + 9*d3 + 5*d2 + d1;
112 q = (d1 * 0xcd) >> 11;
122 q = (d3 * 0xcd) >> 11; /* - shorter code */
123 /* q = (d3 * 0x67) >> 10; - would also work */
129 /* No inlining helps gcc to use registers better */
130 static noinline char *put_dec(char *buf, uint64_t num)
135 return put_dec_trunc(buf, num);
136 rem = do_div(num, 100000);
137 buf = put_dec_full(buf, rem);
141 #define ZEROPAD 1 /* pad with zero */
142 #define SIGN 2 /* unsigned/signed long */
143 #define PLUS 4 /* show plus */
144 #define SPACE 8 /* space if plus */
145 #define LEFT 16 /* left justified */
146 #define SMALL 32 /* Must be 32 == 0x20 */
147 #define SPECIAL 64 /* 0x */
150 * Macro to add a new character to our output string, but only if it will
151 * fit. The macro moves to the next character position in the output string.
153 #define ADDCH(str, ch) do { \
159 static char *number(char *buf, char *end, u64 num,
160 int base, int size, int precision, int type)
162 /* we are called with base 8, 10 or 16, only, thus don't need "G..." */
163 static const char digits[16] = "0123456789ABCDEF";
168 int need_pfx = ((type & SPECIAL) && base != 10);
171 /* locase = 0 or 0x20. ORing digits or letters with 'locase'
172 * produces same digits or (maybe lowercased) letters */
173 locase = (type & SMALL);
182 } else if (type & PLUS) {
185 } else if (type & SPACE) {
196 /* generate full string in tmp[], in reverse order */
200 /* Generic code, for any base:
202 tmp[i++] = (digits[do_div(num,base)] | locase);
205 else if (base != 10) { /* 8 or 16 */
213 tmp[i++] = (digits[((unsigned char)num) & mask]
217 } else { /* base 10 */
218 i = put_dec(tmp, num) - tmp;
221 /* printing 100 using %2d gives "100", not "00" */
224 /* leading space padding */
226 if (!(type & (ZEROPAD + LEFT))) {
233 /* "0x" / "0" prefix */
237 ADDCH(buf, 'X' | locase);
239 /* zero or space padding */
240 if (!(type & LEFT)) {
241 char c = (type & ZEROPAD) ? '0' : ' ';
246 /* hmm even more zero padding? */
247 while (i <= --precision)
249 /* actual digits of result */
252 /* trailing space padding */
258 static char *string(char *buf, char *end, const char *s, int field_width,
259 int precision, int flags)
266 len = strnlen(s, precision);
269 while (len < field_width--)
271 for (i = 0; i < len; ++i)
273 while (len < field_width--)
278 /* U-Boot uses UTF-16 strings in the EFI context only. */
279 static __maybe_unused char *string16(char *buf, char *end, u16 *s,
280 int field_width, int precision, int flags)
282 const u16 *str = s ? s : u"<NULL>";
283 ssize_t i, len = utf16_strnlen(str, precision);
286 for (; len < field_width; --field_width)
290 for (i = 0; i < len; ++i) {
291 int slen = utf16_utf8_strnlen(str, 1);
292 s32 s = utf16_get(&str);
296 if (buf + slen < end) {
304 for (; len < field_width; --field_width)
310 #if CONFIG_IS_ENABLED(EFI_DEVICE_PATH_TO_TEXT)
311 static char *device_path_string(char *buf, char *end, void *dp, int field_width,
312 int precision, int flags)
316 /* If dp == NULL output the string '<NULL>' */
318 return string16(buf, end, dp, field_width, precision, flags);
320 str = efi_dp_str((struct efi_device_path *)dp);
322 return ERR_PTR(-ENOMEM);
324 buf = string16(buf, end, str, field_width, precision, flags);
330 static char *mac_address_string(char *buf, char *end, u8 *addr, int field_width,
331 int precision, int flags)
333 /* (6 * 2 hex digits), 5 colons and trailing zero */
334 char mac_addr[6 * 3];
338 for (i = 0; i < 6; i++) {
339 p = hex_byte_pack(p, addr[i]);
340 if (!(flags & SPECIAL) && i != 5)
345 return string(buf, end, mac_addr, field_width, precision,
349 static char *ip6_addr_string(char *buf, char *end, u8 *addr, int field_width,
350 int precision, int flags)
352 /* (8 * 4 hex digits), 7 colons and trailing zero */
353 char ip6_addr[8 * 5];
357 for (i = 0; i < 8; i++) {
358 p = hex_byte_pack(p, addr[2 * i]);
359 p = hex_byte_pack(p, addr[2 * i + 1]);
360 if (!(flags & SPECIAL) && i != 7)
365 return string(buf, end, ip6_addr, field_width, precision,
369 static char *ip4_addr_string(char *buf, char *end, u8 *addr, int field_width,
370 int precision, int flags)
372 /* (4 * 3 decimal digits), 3 dots and trailing zero */
373 char ip4_addr[4 * 4];
374 char temp[3]; /* hold each IP quad in reverse order */
378 for (i = 0; i < 4; i++) {
379 digits = put_dec_trunc(temp, addr[i]) - temp;
380 /* reverse the digits in the quad */
388 return string(buf, end, ip4_addr, field_width, precision,
392 #ifdef CONFIG_LIB_UUID
394 * This works (roughly) the same way as Linux's.
396 * %pUb: 01020304-0506-0708-090a-0b0c0d0e0f10
397 * %pUB: 01020304-0506-0708-090A-0B0C0D0E0F10
398 * %pUl: 04030201-0605-0807-090a-0b0c0d0e0f10
399 * %pUL: 04030201-0605-0807-090A-0B0C0D0E0F10
400 * %pUs: GUID text representation if known or fallback to %pUl
402 static char *uuid_string(char *buf, char *end, u8 *addr, int field_width,
403 int precision, int flags, const char *fmt)
405 char uuid[UUID_STR_LEN + 1];
411 str_format = UUID_STR_FORMAT_GUID | UUID_STR_UPPER_CASE;
414 str_format = UUID_STR_FORMAT_GUID;
417 str_format = UUID_STR_FORMAT_STD | UUID_STR_UPPER_CASE;
420 str = uuid_guid_get_str(addr);
422 return string(buf, end, str,
423 field_width, precision, flags);
424 str_format = UUID_STR_FORMAT_GUID;
427 str_format = UUID_STR_FORMAT_STD;
432 uuid_bin_to_str(addr, uuid, str_format);
434 strcpy(uuid, "<NULL>");
436 return string(buf, end, uuid, field_width, precision, flags);
441 * Show a '%p' thing. A kernel extension is that the '%p' is followed
442 * by an extra set of alphanumeric characters that are extended format
445 * Right now we handle:
447 * - 'M' For a 6-byte MAC address, it prints the address in the
448 * usual colon-separated hex notation
449 * - 'I' [46] for IPv4/IPv6 addresses printed in the usual way (dot-separated
450 * decimal for v4 and colon separated network-order 16 bit hex for v6)
451 * - 'i' [46] for 'raw' IPv4/IPv6 addresses, IPv6 omits the colons, IPv4 is
454 * Note: IPv6 support is currently if(0)'ed out. If you ever need
455 * %pI6, please add an IPV6 Kconfig knob, make your code select or
456 * depend on that, and change the 0 below to CONFIG_IS_ENABLED(IPV6).
458 static char *pointer(const char *fmt, char *buf, char *end, void *ptr,
459 int field_width, int precision, int flags)
461 u64 num = (uintptr_t)ptr;
464 * Being a boot loader, we explicitly allow pointers to
465 * (physical) address null.
469 return string(buf, end, "(null)", field_width, precision,
474 /* Device paths only exist in the EFI context. */
475 #if CONFIG_IS_ENABLED(EFI_DEVICE_PATH_TO_TEXT) && !defined(API_BUILD)
477 return device_path_string(buf, end, ptr, field_width,
481 flags |= SPECIAL | ZEROPAD;
486 field_width = sizeof(phys_addr_t) * 2 + 2;
487 num = *(phys_addr_t *)ptr;
495 return mac_address_string(buf, end, ptr, field_width,
501 /* %pI6 currently unused */
502 if (0 && fmt[1] == '6')
503 return ip6_addr_string(buf, end, ptr, field_width,
506 return ip4_addr_string(buf, end, ptr, field_width,
510 #ifdef CONFIG_LIB_UUID
512 return uuid_string(buf, end, ptr, field_width, precision,
519 if (field_width == -1) {
520 field_width = 2*sizeof(void *);
523 return number(buf, end, num, 16, field_width, precision, flags);
526 static int vsnprintf_internal(char *buf, size_t size, const char *fmt,
533 int flags; /* flags to number() */
535 int field_width; /* width of output field */
536 int precision; /* min. # of digits for integers; max
537 number of chars for from string */
538 int qualifier; /* 'h', 'l', or 'L' for integer fields */
539 /* 'z' support added 23/7/1999 S.H. */
540 /* 'z' changed to 'Z' --davidm 1/25/99 */
541 /* 't' added for ptrdiff_t */
542 char *end = buf + size;
544 /* Make sure end is always >= buf - do we want this in U-Boot? */
551 for (; *fmt ; ++fmt) {
560 ++fmt; /* this also skips first '%' */
579 /* get field width */
582 field_width = skip_atoi(&fmt);
583 else if (*fmt == '*') {
585 /* it's the next argument */
586 field_width = va_arg(args, int);
587 if (field_width < 0) {
588 field_width = -field_width;
593 /* get the precision */
598 precision = skip_atoi(&fmt);
599 else if (*fmt == '*') {
601 /* it's the next argument */
602 precision = va_arg(args, int);
608 /* get the conversion qualifier */
610 if (*fmt == 'h' || *fmt == 'l' || *fmt == 'L' ||
611 *fmt == 'Z' || *fmt == 'z' || *fmt == 't') {
614 if (qualifier == 'l' && *fmt == 'l') {
625 if (!(flags & LEFT)) {
626 while (--field_width > 0)
629 ADDCH(str, (unsigned char) va_arg(args, int));
630 while (--field_width > 0)
635 /* U-Boot uses UTF-16 strings in the EFI context only. */
636 #if (CONFIG_IS_ENABLED(EFI_LOADER) || CONFIG_IS_ENABLED(EFI_APP)) && \
638 if (qualifier == 'l') {
639 str = string16(str, end, va_arg(args, u16 *),
640 field_width, precision, flags);
644 str = string(str, end, va_arg(args, char *),
645 field_width, precision, flags);
650 str = pointer(fmt + 1, str, end,
651 va_arg(args, void *),
652 field_width, precision, flags);
655 /* Skip all alphanumeric pointer suffixes */
656 while (isalnum(fmt[1]))
661 if (qualifier == 'l') {
662 long *ip = va_arg(args, long *);
665 int *ip = va_arg(args, int *);
674 /* integer number formats - set up the flags and "break" */
699 if (qualifier == 'L') /* "quad" for 64 bit variables */
700 num = va_arg(args, unsigned long long);
701 else if (qualifier == 'l') {
702 num = va_arg(args, unsigned long);
704 num = (signed long) num;
705 } else if (qualifier == 'Z' || qualifier == 'z') {
706 num = va_arg(args, size_t);
707 } else if (qualifier == 't') {
708 num = va_arg(args, ptrdiff_t);
709 } else if (qualifier == 'h') {
710 num = (unsigned short) va_arg(args, int);
712 num = (signed short) num;
714 num = va_arg(args, unsigned int);
716 num = (signed int) num;
718 str = number(str, end, num, base, field_width, precision,
728 /* the trailing null byte doesn't count towards the total */
732 int vsnprintf(char *buf, size_t size, const char *fmt,
735 return vsnprintf_internal(buf, size, fmt, args);
738 int vscnprintf(char *buf, size_t size, const char *fmt, va_list args)
742 i = vsnprintf(buf, size, fmt, args);
744 if (likely(i < size))
751 int snprintf(char *buf, size_t size, const char *fmt, ...)
757 i = vsnprintf(buf, size, fmt, args);
763 int scnprintf(char *buf, size_t size, const char *fmt, ...)
769 i = vscnprintf(buf, size, fmt, args);
776 * Format a string and place it in a buffer (va_list version)
778 * @param buf The buffer to place the result into
779 * @param fmt The format string to use
780 * @param args Arguments for the format string
782 * The function returns the number of characters written
783 * into @buf. Use vsnprintf() or vscnprintf() in order to avoid
786 * If you're not already dealing with a va_list consider using sprintf().
788 int vsprintf(char *buf, const char *fmt, va_list args)
790 return vsnprintf_internal(buf, INT_MAX, fmt, args);
793 int sprintf(char *buf, const char *fmt, ...)
799 i = vsprintf(buf, fmt, args);
804 #if CONFIG_IS_ENABLED(PRINTF)
805 int printf(const char *fmt, ...)
811 i = vprintf(fmt, args);
817 int vprintf(const char *fmt, va_list args)
820 char printbuffer[CONFIG_SYS_PBSIZE];
823 * For this to work, printbuffer must be larger than
824 * anything we ever want to print.
826 i = vscnprintf(printbuffer, sizeof(printbuffer), fmt, args);
831 /* Print the string */
837 static char local_toa[22];
839 char *simple_itoa(ulong i)
841 /* 21 digits plus null terminator, good for 64-bit or smaller ints */
842 char *p = &local_toa[21];
852 char *simple_xtoa(ulong num)
854 /* 16 digits plus nul terminator, good for 64-bit or smaller ints */
855 char *p = &local_toa[17];
860 hex_byte_pack(p, num & 0xff);
867 /* We don't seem to have %'d in U-Boot */
868 void print_grouped_ull(unsigned long long int_val, int digits)
873 digits = (digits + 2) / 3;
874 sprintf(str, "%*llu", digits * 3, int_val);
875 for (s = str; *s; s += grab) {
877 putc(s[-1] != ' ' ? ',' : ' ');
878 printf("%.*s", grab, s);
883 bool str2off(const char *p, loff_t *num)
887 *num = simple_strtoull(p, &endptr, 16);
888 return *p != '\0' && *endptr == '\0';
891 bool str2long(const char *p, ulong *num)
895 *num = hextoul(p, &endptr);
896 return *p != '\0' && *endptr == '\0';
899 char *strmhz(char *buf, unsigned long hz)
904 n = DIV_ROUND_CLOSEST(hz, 1000) / 1000L;
905 l = sprintf(buf, "%ld", n);
908 m = DIV_ROUND_CLOSEST(hz, 1000L);
910 sprintf(buf + l, ".%03ld", m);