]> git.ipfire.org Git - thirdparty/u-boot.git/blame - lib/vsprintf.c
mmc: sdhci: Correct ADMA_DESC_LEN to 12
[thirdparty/u-boot.git] / lib / vsprintf.c
CommitLineData
153d511e
WD
1/*
2 * linux/lib/vsprintf.c
3 *
4 * Copyright (C) 1991, 1992 Linus Torvalds
2189d5f1
SG
5 * (C) Copyright 2000-2009
6 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
153d511e
WD
7 */
8
9/* vsprintf.c -- Lars Wirzenius & Linus Torvalds. */
10/*
11 * Wirzenius wrote this portably, Torvalds fucked it up :-)
3cce8a54
SG
12 *
13 * from hush: simple_itoa() was lifted from boa-0.93.15
153d511e
WD
14 */
15
274325c5 16#include <charset.h>
256060e4
HS
17#include <efi_loader.h>
18#include <div64.h>
f8c987f8 19#include <hexdump.h>
256060e4 20#include <stdarg.h>
ba06b3c5 21#include <uuid.h>
2189d5f1 22#include <vsprintf.h>
256060e4
HS
23#include <linux/ctype.h>
24#include <linux/err.h>
25#include <linux/types.h>
26#include <linux/string.h>
153d511e 27
153d511e
WD
28/* we use this so that we can do without the ctype library */
29#define is_digit(c) ((c) >= '0' && (c) <= '9')
30
31static int skip_atoi(const char **s)
32{
8acdae68 33 int i = 0;
153d511e
WD
34
35 while (is_digit(**s))
8acdae68
DS
36 i = i * 10 + *((*s)++) - '0';
37
153d511e
WD
38 return i;
39}
40
6c6166f5
MF
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
44 * using code from
45 * http://www.cs.uiowa.edu/~jones/bcd/decimal.html
46 * (with permission from the author, Douglas W. Jones). */
47
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. */
8acdae68 51static char *put_dec_trunc(char *buf, unsigned q)
6c6166f5
MF
52{
53 unsigned d3, d2, d1, d0;
54 d1 = (q>>4) & 0xf;
55 d2 = (q>>8) & 0xf;
56 d3 = (q>>12);
57
58 d0 = 6*(d3 + d2 + d1) + (q & 0xf);
59 q = (d0 * 0xcd) >> 11;
60 d0 = d0 - 10*q;
61 *buf++ = d0 + '0'; /* least significant digit */
62 d1 = q + 9*d3 + 5*d2 + d1;
63 if (d1 != 0) {
64 q = (d1 * 0xcd) >> 11;
65 d1 = d1 - 10*q;
66 *buf++ = d1 + '0'; /* next digit */
67
68 d2 = q + 2*d2;
69 if ((d2 != 0) || (d3 != 0)) {
70 q = (d2 * 0xd) >> 7;
71 d2 = d2 - 10*q;
72 *buf++ = d2 + '0'; /* next digit */
73
74 d3 = q + 4*d3;
75 if (d3 != 0) {
76 q = (d3 * 0xcd) >> 11;
77 d3 = d3 - 10*q;
78 *buf++ = d3 + '0'; /* next digit */
79 if (q != 0)
8acdae68 80 *buf++ = q + '0'; /* most sign. digit */
6c6166f5
MF
81 }
82 }
83 }
84 return buf;
85}
86/* Same with if's removed. Always emits five digits */
8acdae68 87static char *put_dec_full(char *buf, unsigned q)
6c6166f5
MF
88{
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;
92 d1 = (q>>4) & 0xf;
93 d2 = (q>>8) & 0xf;
94 d3 = (q>>12);
95
c0a14aed
WD
96 /*
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)
104 */
6c6166f5
MF
105
106 d0 = 6*(d3 + d2 + d1) + (q & 0xf);
107 q = (d0 * 0xcd) >> 11;
108 d0 = d0 - 10*q;
109 *buf++ = d0 + '0';
110 d1 = q + 9*d3 + 5*d2 + d1;
111 q = (d1 * 0xcd) >> 11;
112 d1 = d1 - 10*q;
113 *buf++ = d1 + '0';
114
115 d2 = q + 2*d2;
116 q = (d2 * 0xd) >> 7;
117 d2 = d2 - 10*q;
118 *buf++ = d2 + '0';
119
120 d3 = q + 4*d3;
121 q = (d3 * 0xcd) >> 11; /* - shorter code */
122 /* q = (d3 * 0x67) >> 10; - would also work */
123 d3 = d3 - 10*q;
124 *buf++ = d3 + '0';
125 *buf++ = q + '0';
126 return buf;
127}
128/* No inlining helps gcc to use registers better */
6bf67259 129static noinline char *put_dec(char *buf, uint64_t num)
6c6166f5
MF
130{
131 while (1) {
132 unsigned rem;
133 if (num < 100000)
134 return put_dec_trunc(buf, num);
135 rem = do_div(num, 100000);
136 buf = put_dec_full(buf, rem);
137 }
138}
139
153d511e
WD
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 */
6c6166f5
MF
145#define SMALL 32 /* Must be 32 == 0x20 */
146#define SPECIAL 64 /* 0x */
7f331941 147#define ERRSTR 128 /* %dE showing error string if enabled */
153d511e 148
046a37bd
SR
149/*
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.
152 */
153#define ADDCH(str, ch) do { \
154 if ((str) < end) \
155 *(str) = (ch); \
156 ++str; \
157 } while (0)
046a37bd 158
7b64f66c 159static char *number(char *buf, char *end, u64 num,
046a37bd 160 int base, int size, int precision, int type)
153d511e 161{
6c6166f5 162 /* we are called with base 8, 10 or 16, only, thus don't need "G..." */
8acdae68 163 static const char digits[16] = "0123456789ABCDEF";
6c6166f5
MF
164
165 char tmp[66];
166 char sign;
167 char locase;
168 int need_pfx = ((type & SPECIAL) && base != 10);
153d511e
WD
169 int i;
170
6c6166f5
MF
171 /* locase = 0 or 0x20. ORing digits or letters with 'locase'
172 * produces same digits or (maybe lowercased) letters */
173 locase = (type & SMALL);
153d511e
WD
174 if (type & LEFT)
175 type &= ~ZEROPAD;
153d511e
WD
176 sign = 0;
177 if (type & SIGN) {
7b64f66c 178 if ((s64) num < 0) {
153d511e 179 sign = '-';
7b64f66c 180 num = -(s64) num;
153d511e
WD
181 size--;
182 } else if (type & PLUS) {
183 sign = '+';
184 size--;
185 } else if (type & SPACE) {
186 sign = ' ';
187 size--;
188 }
189 }
6c6166f5
MF
190 if (need_pfx) {
191 size--;
153d511e 192 if (base == 16)
153d511e
WD
193 size--;
194 }
6c6166f5
MF
195
196 /* generate full string in tmp[], in reverse order */
153d511e
WD
197 i = 0;
198 if (num == 0)
6c6166f5
MF
199 tmp[i++] = '0';
200 /* Generic code, for any base:
201 else do {
202 tmp[i++] = (digits[do_div(num,base)] | locase);
203 } while (num != 0);
204 */
205 else if (base != 10) { /* 8 or 16 */
206 int mask = base - 1;
207 int shift = 3;
8acdae68
DS
208
209 if (base == 16)
210 shift = 4;
211
6c6166f5 212 do {
8acdae68
DS
213 tmp[i++] = (digits[((unsigned char)num) & mask]
214 | locase);
6c6166f5
MF
215 num >>= shift;
216 } while (num);
217 } else { /* base 10 */
218 i = put_dec(tmp, num) - tmp;
219 }
220
221 /* printing 100 using %2d gives "100", not "00" */
153d511e
WD
222 if (i > precision)
223 precision = i;
6c6166f5 224 /* leading space padding */
153d511e 225 size -= precision;
046a37bd
SR
226 if (!(type & (ZEROPAD + LEFT))) {
227 while (--size >= 0)
228 ADDCH(buf, ' ');
229 }
6c6166f5 230 /* sign */
153d511e 231 if (sign)
046a37bd 232 ADDCH(buf, sign);
6c6166f5
MF
233 /* "0x" / "0" prefix */
234 if (need_pfx) {
046a37bd 235 ADDCH(buf, '0');
6c6166f5 236 if (base == 16)
046a37bd 237 ADDCH(buf, 'X' | locase);
6c6166f5
MF
238 }
239 /* zero or space padding */
240 if (!(type & LEFT)) {
241 char c = (type & ZEROPAD) ? '0' : ' ';
046a37bd 242
6c6166f5 243 while (--size >= 0)
046a37bd 244 ADDCH(buf, c);
153d511e 245 }
6c6166f5
MF
246 /* hmm even more zero padding? */
247 while (i <= --precision)
046a37bd 248 ADDCH(buf, '0');
6c6166f5
MF
249 /* actual digits of result */
250 while (--i >= 0)
046a37bd 251 ADDCH(buf, tmp[i]);
6c6166f5
MF
252 /* trailing space padding */
253 while (--size >= 0)
046a37bd 254 ADDCH(buf, ' ');
6c6166f5 255 return buf;
153d511e
WD
256}
257
04872381 258static char *string(char *buf, char *end, const char *s, int field_width,
046a37bd 259 int precision, int flags)
6c6166f5
MF
260{
261 int len, i;
153d511e 262
0eb25768 263 if (s == NULL)
6c6166f5
MF
264 s = "<NULL>";
265
266 len = strnlen(s, precision);
267
268 if (!(flags & LEFT))
269 while (len < field_width--)
046a37bd 270 ADDCH(buf, ' ');
6c6166f5 271 for (i = 0; i < len; ++i)
046a37bd 272 ADDCH(buf, *s++);
6c6166f5 273 while (len < field_width--)
046a37bd 274 ADDCH(buf, ' ');
6c6166f5
MF
275 return buf;
276}
277
fbb3ea80 278/* U-Boot uses UTF-16 strings in the EFI context only. */
726cd983
SG
279static __maybe_unused char *string16(char *buf, char *end, u16 *s,
280 int field_width, int precision, int flags)
274325c5 281{
5b9a5b2b 282 const u16 *str = s ? s : u"<NULL>";
0e66c10a 283 ssize_t i, len = utf16_strnlen(str, precision);
274325c5
RC
284
285 if (!(flags & LEFT))
31bd711c 286 for (; len < field_width; --field_width)
274325c5 287 ADDCH(buf, ' ');
fe14f880
HS
288 if (buf < end)
289 *buf = 0;
290 for (i = 0; i < len; ++i) {
291 int slen = utf16_utf8_strnlen(str, 1);
0e66c10a
HS
292 s32 s = utf16_get(&str);
293
60c4454d
HS
294 if (s < 0)
295 s = '?';
fe14f880
HS
296 if (buf + slen < end) {
297 utf8_put(s, &buf);
298 if (buf < end)
299 *buf = 0;
300 } else {
301 buf += slen;
302 }
0e66c10a 303 }
31bd711c 304 for (; len < field_width; --field_width)
274325c5 305 ADDCH(buf, ' ');
fe14f880 306
274325c5
RC
307 return buf;
308}
309
64b5ba4d 310#if CONFIG_IS_ENABLED(EFI_DEVICE_PATH_TO_TEXT)
256060e4
HS
311static char *device_path_string(char *buf, char *end, void *dp, int field_width,
312 int precision, int flags)
313{
314 u16 *str;
315
5f1ce1d4 316 /* If dp == NULL output the string '<NULL>' */
256060e4 317 if (!dp)
5f1ce1d4 318 return string16(buf, end, dp, field_width, precision, flags);
256060e4
HS
319
320 str = efi_dp_str((struct efi_device_path *)dp);
321 if (!str)
322 return ERR_PTR(-ENOMEM);
323
324 buf = string16(buf, end, str, field_width, precision, flags);
325 efi_free_pool(str);
326 return buf;
327}
328#endif
329
046a37bd 330static char *mac_address_string(char *buf, char *end, u8 *addr, int field_width,
6c6166f5 331 int precision, int flags)
153d511e 332{
8acdae68
DS
333 /* (6 * 2 hex digits), 5 colons and trailing zero */
334 char mac_addr[6 * 3];
6c6166f5
MF
335 char *p = mac_addr;
336 int i;
337
338 for (i = 0; i < 6; i++) {
f8c987f8 339 p = hex_byte_pack(p, addr[i]);
6c6166f5
MF
340 if (!(flags & SPECIAL) && i != 5)
341 *p++ = ':';
342 }
343 *p = '\0';
344
046a37bd
SR
345 return string(buf, end, mac_addr, field_width, precision,
346 flags & ~SPECIAL);
6c6166f5
MF
347}
348
046a37bd 349static char *ip6_addr_string(char *buf, char *end, u8 *addr, int field_width,
6c6166f5
MF
350 int precision, int flags)
351{
8acdae68
DS
352 /* (8 * 4 hex digits), 7 colons and trailing zero */
353 char ip6_addr[8 * 5];
6c6166f5
MF
354 char *p = ip6_addr;
355 int i;
356
357 for (i = 0; i < 8; i++) {
f8c987f8
AB
358 p = hex_byte_pack(p, addr[2 * i]);
359 p = hex_byte_pack(p, addr[2 * i + 1]);
6c6166f5
MF
360 if (!(flags & SPECIAL) && i != 7)
361 *p++ = ':';
362 }
363 *p = '\0';
364
046a37bd
SR
365 return string(buf, end, ip6_addr, field_width, precision,
366 flags & ~SPECIAL);
6c6166f5
MF
367}
368
046a37bd 369static char *ip4_addr_string(char *buf, char *end, u8 *addr, int field_width,
6c6166f5
MF
370 int precision, int flags)
371{
8acdae68
DS
372 /* (4 * 3 decimal digits), 3 dots and trailing zero */
373 char ip4_addr[4 * 4];
6c6166f5
MF
374 char temp[3]; /* hold each IP quad in reverse order */
375 char *p = ip4_addr;
376 int i, digits;
377
378 for (i = 0; i < 4; i++) {
379 digits = put_dec_trunc(temp, addr[i]) - temp;
380 /* reverse the digits in the quad */
381 while (digits--)
382 *p++ = temp[digits];
383 if (i != 3)
384 *p++ = '.';
385 }
386 *p = '\0';
387
046a37bd
SR
388 return string(buf, end, ip4_addr, field_width, precision,
389 flags & ~SPECIAL);
6c6166f5 390}
6c6166f5 391
22ada0c8
RC
392#ifdef CONFIG_LIB_UUID
393/*
3bad256f 394 * This works (roughly) the same way as Linux's.
22ada0c8
RC
395 *
396 * %pUb: 01020304-0506-0708-090a-0b0c0d0e0f10
3bad256f 397 * %pUB: 01020304-0506-0708-090A-0B0C0D0E0F10
22ada0c8 398 * %pUl: 04030201-0605-0807-090a-0b0c0d0e0f10
3bad256f 399 * %pUL: 04030201-0605-0807-090A-0B0C0D0E0F10
04872381 400 * %pUs: GUID text representation if known or fallback to %pUl
22ada0c8
RC
401 */
402static char *uuid_string(char *buf, char *end, u8 *addr, int field_width,
403 int precision, int flags, const char *fmt)
404{
405 char uuid[UUID_STR_LEN + 1];
3bad256f 406 int str_format;
04872381 407 const char *str;
22ada0c8
RC
408
409 switch (*(++fmt)) {
410 case 'L':
3bad256f
HS
411 str_format = UUID_STR_FORMAT_GUID | UUID_STR_UPPER_CASE;
412 break;
22ada0c8
RC
413 case 'l':
414 str_format = UUID_STR_FORMAT_GUID;
415 break;
416 case 'B':
3bad256f 417 str_format = UUID_STR_FORMAT_STD | UUID_STR_UPPER_CASE;
22ada0c8 418 break;
04872381
HS
419 case 's':
420 str = uuid_guid_get_str(addr);
421 if (str)
422 return string(buf, end, str,
423 field_width, precision, flags);
424 str_format = UUID_STR_FORMAT_GUID;
425 break;
22ada0c8 426 default:
3bad256f 427 str_format = UUID_STR_FORMAT_STD;
22ada0c8
RC
428 break;
429 }
430
d7ae1609
SG
431 if (addr)
432 uuid_bin_to_str(addr, uuid, str_format);
433 else
434 strcpy(uuid, "<NULL>");
22ada0c8
RC
435
436 return string(buf, end, uuid, field_width, precision, flags);
437}
438#endif
439
6c6166f5
MF
440/*
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
443 * specifiers.
444 *
445 * Right now we handle:
446 *
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
452 * currently the same
6c6166f5 453 */
046a37bd
SR
454static char *pointer(const char *fmt, char *buf, char *end, void *ptr,
455 int field_width, int precision, int flags)
6c6166f5 456{
1eebd14b
TR
457 u64 num = (uintptr_t)ptr;
458
d266f669
WD
459 /*
460 * Being a boot loader, we explicitly allow pointers to
461 * (physical) address null.
462 */
463#if 0
6c6166f5 464 if (!ptr)
046a37bd
SR
465 return string(buf, end, "(null)", field_width, precision,
466 flags);
d266f669 467#endif
6c6166f5 468
6c6166f5 469 switch (*fmt) {
4ddcc4e5 470/* Device paths only exist in the EFI context. */
64b5ba4d 471#if CONFIG_IS_ENABLED(EFI_DEVICE_PATH_TO_TEXT) && !defined(API_BUILD)
256060e4
HS
472 case 'D':
473 return device_path_string(buf, end, ptr, field_width,
474 precision, flags);
475#endif
1eebd14b
TR
476 case 'a':
477 flags |= SPECIAL | ZEROPAD;
478
479 switch (fmt[1]) {
480 case 'p':
481 default:
482 field_width = sizeof(phys_addr_t) * 2 + 2;
483 num = *(phys_addr_t *)ptr;
484 break;
485 }
486 break;
6c6166f5
MF
487 case 'm':
488 flags |= SPECIAL;
489 /* Fallthrough */
490 case 'M':
046a37bd
SR
491 return mac_address_string(buf, end, ptr, field_width,
492 precision, flags);
6c6166f5
MF
493 case 'i':
494 flags |= SPECIAL;
495 /* Fallthrough */
496 case 'I':
d807199d 497 if (IS_ENABLED(CONFIG_IPV6) && fmt[1] == '6')
046a37bd
SR
498 return ip6_addr_string(buf, end, ptr, field_width,
499 precision, flags);
6c6166f5 500 if (fmt[1] == '4')
046a37bd
SR
501 return ip4_addr_string(buf, end, ptr, field_width,
502 precision, flags);
6c6166f5
MF
503 flags &= ~SPECIAL;
504 break;
22ada0c8
RC
505#ifdef CONFIG_LIB_UUID
506 case 'U':
507 return uuid_string(buf, end, ptr, field_width, precision,
508 flags, fmt);
509#endif
510 default:
511 break;
512 }
6c6166f5
MF
513 flags |= SMALL;
514 if (field_width == -1) {
515 field_width = 2*sizeof(void *);
516 flags |= ZEROPAD;
517 }
1eebd14b 518 return number(buf, end, num, 16, field_width, precision, flags);
6c6166f5
MF
519}
520
046a37bd
SR
521static int vsnprintf_internal(char *buf, size_t size, const char *fmt,
522 va_list args)
6c6166f5 523{
7b64f66c 524 u64 num;
6c6166f5
MF
525 int base;
526 char *str;
153d511e
WD
527
528 int flags; /* flags to number() */
529
530 int field_width; /* width of output field */
531 int precision; /* min. # of digits for integers; max
532 number of chars for from string */
6c6166f5
MF
533 int qualifier; /* 'h', 'l', or 'L' for integer fields */
534 /* 'z' support added 23/7/1999 S.H. */
535 /* 'z' changed to 'Z' --davidm 1/25/99 */
536 /* 't' added for ptrdiff_t */
046a37bd 537 char *end = buf + size;
6c6166f5 538
046a37bd
SR
539 /* Make sure end is always >= buf - do we want this in U-Boot? */
540 if (end < buf) {
541 end = ((void *)-1);
542 size = end - buf;
543 }
6c6166f5 544 str = buf;
153d511e 545
6c6166f5 546 for (; *fmt ; ++fmt) {
153d511e 547 if (*fmt != '%') {
046a37bd 548 ADDCH(str, *fmt);
153d511e
WD
549 continue;
550 }
551
552 /* process flags */
553 flags = 0;
8acdae68 554repeat:
153d511e
WD
555 ++fmt; /* this also skips first '%' */
556 switch (*fmt) {
8acdae68
DS
557 case '-':
558 flags |= LEFT;
559 goto repeat;
560 case '+':
561 flags |= PLUS;
562 goto repeat;
563 case ' ':
564 flags |= SPACE;
565 goto repeat;
566 case '#':
567 flags |= SPECIAL;
568 goto repeat;
569 case '0':
570 flags |= ZEROPAD;
571 goto repeat;
6c6166f5 572 }
153d511e
WD
573
574 /* get field width */
575 field_width = -1;
576 if (is_digit(*fmt))
577 field_width = skip_atoi(&fmt);
578 else if (*fmt == '*') {
579 ++fmt;
580 /* it's the next argument */
581 field_width = va_arg(args, int);
582 if (field_width < 0) {
583 field_width = -field_width;
584 flags |= LEFT;
585 }
586 }
587
588 /* get the precision */
589 precision = -1;
590 if (*fmt == '.') {
591 ++fmt;
592 if (is_digit(*fmt))
593 precision = skip_atoi(&fmt);
594 else if (*fmt == '*') {
595 ++fmt;
596 /* it's the next argument */
597 precision = va_arg(args, int);
598 }
599 if (precision < 0)
600 precision = 0;
601 }
602
603 /* get the conversion qualifier */
604 qualifier = -1;
f354b73e 605 if (*fmt == 'h' || *fmt == 'l' || *fmt == 'L' ||
6c6166f5 606 *fmt == 'Z' || *fmt == 'z' || *fmt == 't') {
153d511e 607 qualifier = *fmt;
6c6166f5
MF
608 ++fmt;
609 if (qualifier == 'l' && *fmt == 'l') {
610 qualifier = 'L';
bf052939
JY
611 ++fmt;
612 }
153d511e
WD
613 }
614
615 /* default base */
616 base = 10;
617
618 switch (*fmt) {
619 case 'c':
046a37bd 620 if (!(flags & LEFT)) {
153d511e 621 while (--field_width > 0)
046a37bd
SR
622 ADDCH(str, ' ');
623 }
624 ADDCH(str, (unsigned char) va_arg(args, int));
153d511e 625 while (--field_width > 0)
046a37bd 626 ADDCH(str, ' ');
153d511e
WD
627 continue;
628
629 case 's':
fbb3ea80 630/* U-Boot uses UTF-16 strings in the EFI context only. */
deda5d5e 631#if (CONFIG_IS_ENABLED(EFI_LOADER) || IS_ENABLED(CONFIG_EFI_APP)) && \
726cd983 632 !defined(API_BUILD)
fbb3ea80 633 if (qualifier == 'l') {
274325c5
RC
634 str = string16(str, end, va_arg(args, u16 *),
635 field_width, precision, flags);
fbb3ea80
HS
636 } else
637#endif
638 {
274325c5
RC
639 str = string(str, end, va_arg(args, char *),
640 field_width, precision, flags);
641 }
153d511e
WD
642 continue;
643
644 case 'p':
8acdae68 645 str = pointer(fmt + 1, str, end,
6c6166f5
MF
646 va_arg(args, void *),
647 field_width, precision, flags);
256060e4
HS
648 if (IS_ERR(str))
649 return PTR_ERR(str);
6c6166f5
MF
650 /* Skip all alphanumeric pointer suffixes */
651 while (isalnum(fmt[1]))
652 fmt++;
153d511e
WD
653 continue;
654
153d511e
WD
655 case 'n':
656 if (qualifier == 'l') {
8acdae68 657 long *ip = va_arg(args, long *);
153d511e
WD
658 *ip = (str - buf);
659 } else {
8acdae68 660 int *ip = va_arg(args, int *);
153d511e
WD
661 *ip = (str - buf);
662 }
663 continue;
664
665 case '%':
046a37bd 666 ADDCH(str, '%');
153d511e
WD
667 continue;
668
669 /* integer number formats - set up the flags and "break" */
670 case 'o':
671 base = 8;
672 break;
673
153d511e 674 case 'x':
6c6166f5 675 flags |= SMALL;
9ee32a78 676 /* fallthrough */
6c6166f5 677 case 'X':
153d511e
WD
678 base = 16;
679 break;
680
681 case 'd':
3a3543db 682 if (fmt[1] == 'E') {
7f331941 683 flags |= ERRSTR;
3a3543db
SG
684 fmt++;
685 }
9ee32a78 686 /* fallthrough */
153d511e
WD
687 case 'i':
688 flags |= SIGN;
9ee32a78 689 /* fallthrough */
153d511e
WD
690 case 'u':
691 break;
692
693 default:
046a37bd 694 ADDCH(str, '%');
153d511e 695 if (*fmt)
046a37bd 696 ADDCH(str, *fmt);
153d511e
WD
697 else
698 --fmt;
699 continue;
700 }
6c6166f5 701 if (qualifier == 'L') /* "quad" for 64 bit variables */
c40b2956 702 num = va_arg(args, unsigned long long);
4b142feb 703 else if (qualifier == 'l') {
153d511e 704 num = va_arg(args, unsigned long);
6c6166f5
MF
705 if (flags & SIGN)
706 num = (signed long) num;
f354b73e
JCPV
707 } else if (qualifier == 'Z' || qualifier == 'z') {
708 num = va_arg(args, size_t);
709 } else if (qualifier == 't') {
710 num = va_arg(args, ptrdiff_t);
711 } else if (qualifier == 'h') {
153d511e
WD
712 num = (unsigned short) va_arg(args, int);
713 if (flags & SIGN)
6c6166f5
MF
714 num = (signed short) num;
715 } else {
153d511e 716 num = va_arg(args, unsigned int);
6c6166f5
MF
717 if (flags & SIGN)
718 num = (signed int) num;
719 }
046a37bd
SR
720 str = number(str, end, num, base, field_width, precision,
721 flags);
7f331941
SG
722 if (IS_ENABLED(CONFIG_ERRNO_STR) && (flags & ERRSTR)) {
723 const char *p;
724
725 ADDCH(str, ':');
726 ADDCH(str, ' ');
727 for (p = errno_str(num); *p; p++)
728 ADDCH(str, *p);
7f331941 729 }
046a37bd
SR
730 }
731
046a37bd
SR
732 if (size > 0) {
733 ADDCH(str, '\0');
734 if (str > end)
735 end[-1] = '\0';
686f60f5 736 --str;
153d511e 737 }
046a37bd 738 /* the trailing null byte doesn't count towards the total */
8acdae68 739 return str - buf;
153d511e
WD
740}
741
046a37bd
SR
742int vsnprintf(char *buf, size_t size, const char *fmt,
743 va_list args)
744{
745 return vsnprintf_internal(buf, size, fmt, args);
746}
747
046a37bd
SR
748int vscnprintf(char *buf, size_t size, const char *fmt, va_list args)
749{
750 int i;
751
752 i = vsnprintf(buf, size, fmt, args);
753
754 if (likely(i < size))
755 return i;
756 if (size != 0)
757 return size - 1;
758 return 0;
759}
760
046a37bd
SR
761int snprintf(char *buf, size_t size, const char *fmt, ...)
762{
763 va_list args;
764 int i;
765
766 va_start(args, fmt);
767 i = vsnprintf(buf, size, fmt, args);
768 va_end(args);
769
770 return i;
771}
772
046a37bd
SR
773int scnprintf(char *buf, size_t size, const char *fmt, ...)
774{
775 va_list args;
776 int i;
777
778 va_start(args, fmt);
779 i = vscnprintf(buf, size, fmt, args);
780 va_end(args);
781
782 return i;
783}
046a37bd
SR
784
785/**
786 * Format a string and place it in a buffer (va_list version)
787 *
788 * @param buf The buffer to place the result into
789 * @param fmt The format string to use
790 * @param args Arguments for the format string
791 *
792 * The function returns the number of characters written
793 * into @buf. Use vsnprintf() or vscnprintf() in order to avoid
794 * buffer overflows.
795 *
796 * If you're not already dealing with a va_list consider using sprintf().
797 */
798int vsprintf(char *buf, const char *fmt, va_list args)
799{
800 return vsnprintf_internal(buf, INT_MAX, fmt, args);
801}
802
8acdae68 803int sprintf(char *buf, const char *fmt, ...)
153d511e
WD
804{
805 va_list args;
806 int i;
807
808 va_start(args, fmt);
8acdae68 809 i = vsprintf(buf, fmt, args);
153d511e
WD
810 va_end(args);
811 return i;
812}
813
4f1eed75 814#if CONFIG_IS_ENABLED(PRINTF)
7d9cde10
SR
815int printf(const char *fmt, ...)
816{
817 va_list args;
818 uint i;
7d9cde10
SR
819
820 va_start(args, fmt);
97587786 821 i = vprintf(fmt, args);
7d9cde10
SR
822 va_end(args);
823
7d9cde10
SR
824 return i;
825}
826
827int vprintf(const char *fmt, va_list args)
828{
829 uint i;
830 char printbuffer[CONFIG_SYS_PBSIZE];
831
832 /*
833 * For this to work, printbuffer must be larger than
834 * anything we ever want to print.
835 */
836 i = vscnprintf(printbuffer, sizeof(printbuffer), fmt, args);
837
256060e4
HS
838 /* Handle error */
839 if (i <= 0)
840 return i;
7d9cde10
SR
841 /* Print the string */
842 puts(printbuffer);
843 return i;
844}
4f1eed75 845#endif
66312374 846
4a255ea3
SG
847static char local_toa[22];
848
3cce8a54
SG
849char *simple_itoa(ulong i)
850{
851 /* 21 digits plus null terminator, good for 64-bit or smaller ints */
4a255ea3 852 char *p = &local_toa[21];
3cce8a54
SG
853
854 *p-- = '\0';
855 do {
856 *p-- = '0' + i % 10;
857 i /= 10;
858 } while (i > 0);
859 return p + 1;
860}
b8bcaa3a 861
4a255ea3
SG
862char *simple_xtoa(ulong num)
863{
864 /* 16 digits plus nul terminator, good for 64-bit or smaller ints */
865 char *p = &local_toa[17];
866
867 *--p = '\0';
868 do {
869 p -= 2;
870 hex_byte_pack(p, num & 0xff);
871 num >>= 8;
872 } while (num > 0);
873
874 return p;
875}
876
b8bcaa3a
SG
877/* We don't seem to have %'d in U-Boot */
878void print_grouped_ull(unsigned long long int_val, int digits)
879{
880 char str[21], *s;
881 int grab = 3;
882
883 digits = (digits + 2) / 3;
884 sprintf(str, "%*llu", digits * 3, int_val);
885 for (s = str; *s; s += grab) {
886 if (s != str)
887 putc(s[-1] != ' ' ? ',' : ' ');
888 printf("%.*s", grab, s);
889 grab = 3;
890 }
891}
09c32807
HS
892
893bool str2off(const char *p, loff_t *num)
894{
895 char *endptr;
896
897 *num = simple_strtoull(p, &endptr, 16);
898 return *p != '\0' && *endptr == '\0';
899}
900
901bool str2long(const char *p, ulong *num)
902{
903 char *endptr;
904
7e5f460e 905 *num = hextoul(p, &endptr);
09c32807
HS
906 return *p != '\0' && *endptr == '\0';
907}
2189d5f1
SG
908
909char *strmhz(char *buf, unsigned long hz)
910{
911 long l, n;
912 long m;
913
914 n = DIV_ROUND_CLOSEST(hz, 1000) / 1000L;
915 l = sprintf(buf, "%ld", n);
916
917 hz -= n * 1000000L;
918 m = DIV_ROUND_CLOSEST(hz, 1000L);
919 if (m != 0)
920 sprintf(buf + l, ".%03ld", m);
921
922 return buf;
923}