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