4 * Copyright (C) 1991, 1992 Linus Torvalds
7 /* vsprintf.c -- Lars Wirzenius & Linus Torvalds. */
9 * Wirzenius wrote this portably, Torvalds fucked it up :-)
11 * from hush: simple_itoa() was lifted from boa-0.93.15
16 #include <efi_loader.h>
21 #include <linux/ctype.h>
22 #include <linux/err.h>
23 #include <linux/types.h>
24 #include <linux/string.h>
26 #define noinline __attribute__((noinline))
28 /* we use this so that we can do without the ctype library */
29 #define is_digit(c) ((c) >= '0' && (c) <= '9')
31 static int skip_atoi(const char **s)
36 i = i * 10 + *((*s)++) - '0';
41 /* Decimal conversion is by far the most typical, and is used
42 * for /proc and /sys data. This directly impacts e.g. top performance
43 * with many processes running. We optimize it for speed
45 * http://www.cs.uiowa.edu/~jones/bcd/decimal.html
46 * (with permission from the author, Douglas W. Jones). */
48 /* Formats correctly any integer in [0,99999].
49 * Outputs from one to five digits depending on input.
50 * On i386 gcc 4.1.2 -O2: ~250 bytes of code. */
51 static char *put_dec_trunc(char *buf, unsigned q)
53 unsigned d3, d2, d1, d0;
58 d0 = 6*(d3 + d2 + d1) + (q & 0xf);
59 q = (d0 * 0xcd) >> 11;
61 *buf++ = d0 + '0'; /* least significant digit */
62 d1 = q + 9*d3 + 5*d2 + d1;
64 q = (d1 * 0xcd) >> 11;
66 *buf++ = d1 + '0'; /* next digit */
69 if ((d2 != 0) || (d3 != 0)) {
72 *buf++ = d2 + '0'; /* next digit */
76 q = (d3 * 0xcd) >> 11;
78 *buf++ = d3 + '0'; /* next digit */
80 *buf++ = q + '0'; /* most sign. digit */
86 /* Same with if's removed. Always emits five digits */
87 static char *put_dec_full(char *buf, unsigned q)
89 /* BTW, if q is in [0,9999], 8-bit ints will be enough, */
90 /* but anyway, gcc produces better code with full-sized ints */
91 unsigned d3, d2, d1, d0;
97 * Possible ways to approx. divide by 10
98 * gcc -O2 replaces multiply with shifts and adds
99 * (x * 0xcd) >> 11: 11001101 - shorter code than * 0x67 (on i386)
100 * (x * 0x67) >> 10: 1100111
101 * (x * 0x34) >> 9: 110100 - same
102 * (x * 0x1a) >> 8: 11010 - same
103 * (x * 0x0d) >> 7: 1101 - same, shortest code (on i386)
106 d0 = 6*(d3 + d2 + d1) + (q & 0xf);
107 q = (d0 * 0xcd) >> 11;
110 d1 = q + 9*d3 + 5*d2 + d1;
111 q = (d1 * 0xcd) >> 11;
121 q = (d3 * 0xcd) >> 11; /* - shorter code */
122 /* q = (d3 * 0x67) >> 10; - would also work */
128 /* No inlining helps gcc to use registers better */
129 static noinline char *put_dec(char *buf, uint64_t num)
134 return put_dec_trunc(buf, num);
135 rem = do_div(num, 100000);
136 buf = put_dec_full(buf, rem);
140 #define ZEROPAD 1 /* pad with zero */
141 #define SIGN 2 /* unsigned/signed long */
142 #define PLUS 4 /* show plus */
143 #define SPACE 8 /* space if plus */
144 #define LEFT 16 /* left justified */
145 #define SMALL 32 /* Must be 32 == 0x20 */
146 #define SPECIAL 64 /* 0x */
149 * Macro to add a new character to our output string, but only if it will
150 * fit. The macro moves to the next character position in the output string.
152 #define ADDCH(str, ch) do { \
158 static char *number(char *buf, char *end, u64 num,
159 int base, int size, int precision, int type)
161 /* we are called with base 8, 10 or 16, only, thus don't need "G..." */
162 static const char digits[16] = "0123456789ABCDEF";
167 int need_pfx = ((type & SPECIAL) && base != 10);
170 /* locase = 0 or 0x20. ORing digits or letters with 'locase'
171 * produces same digits or (maybe lowercased) letters */
172 locase = (type & SMALL);
181 } else if (type & PLUS) {
184 } else if (type & SPACE) {
195 /* generate full string in tmp[], in reverse order */
199 /* Generic code, for any base:
201 tmp[i++] = (digits[do_div(num,base)] | locase);
204 else if (base != 10) { /* 8 or 16 */
212 tmp[i++] = (digits[((unsigned char)num) & mask]
216 } else { /* base 10 */
217 i = put_dec(tmp, num) - tmp;
220 /* printing 100 using %2d gives "100", not "00" */
223 /* leading space padding */
225 if (!(type & (ZEROPAD + LEFT))) {
232 /* "0x" / "0" prefix */
236 ADDCH(buf, 'X' | locase);
238 /* zero or space padding */
239 if (!(type & LEFT)) {
240 char c = (type & ZEROPAD) ? '0' : ' ';
245 /* hmm even more zero padding? */
246 while (i <= --precision)
248 /* actual digits of result */
251 /* trailing space padding */
257 static char *string(char *buf, char *end, char *s, int field_width,
258 int precision, int flags)
265 len = strnlen(s, precision);
268 while (len < field_width--)
270 for (i = 0; i < len; ++i)
272 while (len < field_width--)
277 /* U-Boot uses UTF-16 strings in the EFI context only. */
278 #if CONFIG_IS_ENABLED(EFI_LOADER) && !defined(API_BUILD)
279 static char *string16(char *buf, char *end, u16 *s, int field_width,
280 int precision, int flags)
282 const u16 *str = s ? s : L"<NULL>";
283 ssize_t i, len = utf16_strnlen(str, precision);
286 for (; len < field_width; --field_width)
288 for (i = 0; i < len && buf + utf16_utf8_strnlen(str, 1) <= end; ++i) {
289 s32 s = utf16_get(&str);
295 for (; len < field_width; --field_width)
300 static char *device_path_string(char *buf, char *end, void *dp, int field_width,
301 int precision, int flags)
305 /* If dp == NULL output the string '<NULL>' */
307 return string16(buf, end, dp, field_width, precision, flags);
309 str = efi_dp_str((struct efi_device_path *)dp);
311 return ERR_PTR(-ENOMEM);
313 buf = string16(buf, end, str, field_width, precision, flags);
319 #ifdef CONFIG_CMD_NET
320 static char *mac_address_string(char *buf, char *end, u8 *addr, int field_width,
321 int precision, int flags)
323 /* (6 * 2 hex digits), 5 colons and trailing zero */
324 char mac_addr[6 * 3];
328 for (i = 0; i < 6; i++) {
329 p = hex_byte_pack(p, addr[i]);
330 if (!(flags & SPECIAL) && i != 5)
335 return string(buf, end, mac_addr, field_width, precision,
339 static char *ip6_addr_string(char *buf, char *end, u8 *addr, int field_width,
340 int precision, int flags)
342 /* (8 * 4 hex digits), 7 colons and trailing zero */
343 char ip6_addr[8 * 5];
347 for (i = 0; i < 8; i++) {
348 p = hex_byte_pack(p, addr[2 * i]);
349 p = hex_byte_pack(p, addr[2 * i + 1]);
350 if (!(flags & SPECIAL) && i != 7)
355 return string(buf, end, ip6_addr, field_width, precision,
359 static char *ip4_addr_string(char *buf, char *end, u8 *addr, int field_width,
360 int precision, int flags)
362 /* (4 * 3 decimal digits), 3 dots and trailing zero */
363 char ip4_addr[4 * 4];
364 char temp[3]; /* hold each IP quad in reverse order */
368 for (i = 0; i < 4; i++) {
369 digits = put_dec_trunc(temp, addr[i]) - temp;
370 /* reverse the digits in the quad */
378 return string(buf, end, ip4_addr, field_width, precision,
383 #ifdef CONFIG_LIB_UUID
385 * This works (roughly) the same way as linux's, but we currently always
386 * print lower-case (ie. we just keep %pUB and %pUL for compat with linux),
387 * mostly just because that is what uuid_bin_to_str() supports.
389 * %pUb: 01020304-0506-0708-090a-0b0c0d0e0f10
390 * %pUl: 04030201-0605-0807-090a-0b0c0d0e0f10
392 static char *uuid_string(char *buf, char *end, u8 *addr, int field_width,
393 int precision, int flags, const char *fmt)
395 char uuid[UUID_STR_LEN + 1];
396 int str_format = UUID_STR_FORMAT_STD;
401 str_format = UUID_STR_FORMAT_GUID;
405 /* this is the default */
412 uuid_bin_to_str(addr, uuid, str_format);
414 strcpy(uuid, "<NULL>");
416 return string(buf, end, uuid, field_width, precision, flags);
421 * Show a '%p' thing. A kernel extension is that the '%p' is followed
422 * by an extra set of alphanumeric characters that are extended format
425 * Right now we handle:
427 * - 'M' For a 6-byte MAC address, it prints the address in the
428 * usual colon-separated hex notation
429 * - 'I' [46] for IPv4/IPv6 addresses printed in the usual way (dot-separated
430 * decimal for v4 and colon separated network-order 16 bit hex for v6)
431 * - 'i' [46] for 'raw' IPv4/IPv6 addresses, IPv6 omits the colons, IPv4 is
434 * Note: The difference between 'S' and 'F' is that on ia64 and ppc64
435 * function pointers are really function descriptors, which contain a
436 * pointer to the real address.
438 static char *pointer(const char *fmt, char *buf, char *end, void *ptr,
439 int field_width, int precision, int flags)
441 u64 num = (uintptr_t)ptr;
444 * Being a boot loader, we explicitly allow pointers to
445 * (physical) address null.
449 return string(buf, end, "(null)", field_width, precision,
454 /* Device paths only exist in the EFI context. */
455 #if CONFIG_IS_ENABLED(EFI_LOADER) && !defined(API_BUILD)
457 return device_path_string(buf, end, ptr, field_width,
460 #ifdef CONFIG_CMD_NET
462 flags |= SPECIAL | ZEROPAD;
467 field_width = sizeof(phys_addr_t) * 2 + 2;
468 num = *(phys_addr_t *)ptr;
476 return mac_address_string(buf, end, ptr, field_width,
483 return ip6_addr_string(buf, end, ptr, field_width,
486 return ip4_addr_string(buf, end, ptr, field_width,
491 #ifdef CONFIG_LIB_UUID
493 return uuid_string(buf, end, ptr, field_width, precision,
500 if (field_width == -1) {
501 field_width = 2*sizeof(void *);
504 return number(buf, end, num, 16, field_width, precision, flags);
507 static int vsnprintf_internal(char *buf, size_t size, const char *fmt,
514 int flags; /* flags to number() */
516 int field_width; /* width of output field */
517 int precision; /* min. # of digits for integers; max
518 number of chars for from string */
519 int qualifier; /* 'h', 'l', or 'L' for integer fields */
520 /* 'z' support added 23/7/1999 S.H. */
521 /* 'z' changed to 'Z' --davidm 1/25/99 */
522 /* 't' added for ptrdiff_t */
523 char *end = buf + size;
525 /* Make sure end is always >= buf - do we want this in U-Boot? */
532 for (; *fmt ; ++fmt) {
541 ++fmt; /* this also skips first '%' */
560 /* get field width */
563 field_width = skip_atoi(&fmt);
564 else if (*fmt == '*') {
566 /* it's the next argument */
567 field_width = va_arg(args, int);
568 if (field_width < 0) {
569 field_width = -field_width;
574 /* get the precision */
579 precision = skip_atoi(&fmt);
580 else if (*fmt == '*') {
582 /* it's the next argument */
583 precision = va_arg(args, int);
589 /* get the conversion qualifier */
591 if (*fmt == 'h' || *fmt == 'l' || *fmt == 'L' ||
592 *fmt == 'Z' || *fmt == 'z' || *fmt == 't') {
595 if (qualifier == 'l' && *fmt == 'l') {
606 if (!(flags & LEFT)) {
607 while (--field_width > 0)
610 ADDCH(str, (unsigned char) va_arg(args, int));
611 while (--field_width > 0)
616 /* U-Boot uses UTF-16 strings in the EFI context only. */
617 #if CONFIG_IS_ENABLED(EFI_LOADER) && !defined(API_BUILD)
618 if (qualifier == 'l') {
619 str = string16(str, end, va_arg(args, u16 *),
620 field_width, precision, flags);
624 str = string(str, end, va_arg(args, char *),
625 field_width, precision, flags);
630 str = pointer(fmt + 1, str, end,
631 va_arg(args, void *),
632 field_width, precision, flags);
635 /* Skip all alphanumeric pointer suffixes */
636 while (isalnum(fmt[1]))
641 if (qualifier == 'l') {
642 long *ip = va_arg(args, long *);
645 int *ip = va_arg(args, int *);
654 /* integer number formats - set up the flags and "break" */
679 if (qualifier == 'L') /* "quad" for 64 bit variables */
680 num = va_arg(args, unsigned long long);
681 else if (qualifier == 'l') {
682 num = va_arg(args, unsigned long);
684 num = (signed long) num;
685 } else if (qualifier == 'Z' || qualifier == 'z') {
686 num = va_arg(args, size_t);
687 } else if (qualifier == 't') {
688 num = va_arg(args, ptrdiff_t);
689 } else if (qualifier == 'h') {
690 num = (unsigned short) va_arg(args, int);
692 num = (signed short) num;
694 num = va_arg(args, unsigned int);
696 num = (signed int) num;
698 str = number(str, end, num, base, field_width, precision,
708 /* the trailing null byte doesn't count towards the total */
712 int vsnprintf(char *buf, size_t size, const char *fmt,
715 return vsnprintf_internal(buf, size, fmt, args);
718 int vscnprintf(char *buf, size_t size, const char *fmt, va_list args)
722 i = vsnprintf(buf, size, fmt, args);
724 if (likely(i < size))
731 int snprintf(char *buf, size_t size, const char *fmt, ...)
737 i = vsnprintf(buf, size, fmt, args);
743 int scnprintf(char *buf, size_t size, const char *fmt, ...)
749 i = vscnprintf(buf, size, fmt, args);
756 * Format a string and place it in a buffer (va_list version)
758 * @param buf The buffer to place the result into
759 * @param fmt The format string to use
760 * @param args Arguments for the format string
762 * The function returns the number of characters written
763 * into @buf. Use vsnprintf() or vscnprintf() in order to avoid
766 * If you're not already dealing with a va_list consider using sprintf().
768 int vsprintf(char *buf, const char *fmt, va_list args)
770 return vsnprintf_internal(buf, INT_MAX, fmt, args);
773 int sprintf(char *buf, const char *fmt, ...)
779 i = vsprintf(buf, fmt, args);
784 #if CONFIG_IS_ENABLED(PRINTF)
785 int printf(const char *fmt, ...)
789 char printbuffer[CONFIG_SYS_PBSIZE];
794 * For this to work, printbuffer must be larger than
795 * anything we ever want to print.
797 i = vscnprintf(printbuffer, sizeof(printbuffer), fmt, args);
803 /* Print the string */
808 int vprintf(const char *fmt, va_list args)
811 char printbuffer[CONFIG_SYS_PBSIZE];
814 * For this to work, printbuffer must be larger than
815 * anything we ever want to print.
817 i = vscnprintf(printbuffer, sizeof(printbuffer), fmt, args);
822 /* Print the string */
828 char *simple_itoa(ulong i)
830 /* 21 digits plus null terminator, good for 64-bit or smaller ints */
831 static char local[22];
832 char *p = &local[21];
842 /* We don't seem to have %'d in U-Boot */
843 void print_grouped_ull(unsigned long long int_val, int digits)
848 digits = (digits + 2) / 3;
849 sprintf(str, "%*llu", digits * 3, int_val);
850 for (s = str; *s; s += grab) {
852 putc(s[-1] != ' ' ? ',' : ' ');
853 printf("%.*s", grab, s);
858 bool str2off(const char *p, loff_t *num)
862 *num = simple_strtoull(p, &endptr, 16);
863 return *p != '\0' && *endptr == '\0';
866 bool str2long(const char *p, ulong *num)
870 *num = simple_strtoul(p, &endptr, 16);
871 return *p != '\0' && *endptr == '\0';