]> Git Repo - u-boot.git/blame - lib/vsprintf.c
lib: compile uuid_guid_get_str if CONFIG_LIB_UUID=y
[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
153d511e 16#include <common.h>
274325c5 17#include <charset.h>
256060e4
HS
18#include <efi_loader.h>
19#include <div64.h>
f8c987f8 20#include <hexdump.h>
256060e4 21#include <stdarg.h>
ba06b3c5 22#include <uuid.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 */
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
046a37bd
SR
258static char *string(char *buf, char *end, char *s, int field_width,
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{
0e66c10a
HS
282 const u16 *str = s ? s : L"<NULL>";
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, ' ');
0e66c10a
HS
288 for (i = 0; i < len && buf + utf16_utf8_strnlen(str, 1) <= end; ++i) {
289 s32 s = utf16_get(&str);
290
60c4454d
HS
291 if (s < 0)
292 s = '?';
0e66c10a
HS
293 utf8_put(s, &buf);
294 }
31bd711c 295 for (; len < field_width; --field_width)
274325c5
RC
296 ADDCH(buf, ' ');
297 return buf;
298}
299
64b5ba4d 300#if CONFIG_IS_ENABLED(EFI_DEVICE_PATH_TO_TEXT)
256060e4
HS
301static char *device_path_string(char *buf, char *end, void *dp, int field_width,
302 int precision, int flags)
303{
304 u16 *str;
305
5f1ce1d4 306 /* If dp == NULL output the string '<NULL>' */
256060e4 307 if (!dp)
5f1ce1d4 308 return string16(buf, end, dp, field_width, precision, flags);
256060e4
HS
309
310 str = efi_dp_str((struct efi_device_path *)dp);
311 if (!str)
312 return ERR_PTR(-ENOMEM);
313
314 buf = string16(buf, end, str, field_width, precision, flags);
315 efi_free_pool(str);
316 return buf;
317}
318#endif
319
046a37bd 320static char *mac_address_string(char *buf, char *end, u8 *addr, int field_width,
6c6166f5 321 int precision, int flags)
153d511e 322{
8acdae68
DS
323 /* (6 * 2 hex digits), 5 colons and trailing zero */
324 char mac_addr[6 * 3];
6c6166f5
MF
325 char *p = mac_addr;
326 int i;
327
328 for (i = 0; i < 6; i++) {
f8c987f8 329 p = hex_byte_pack(p, addr[i]);
6c6166f5
MF
330 if (!(flags & SPECIAL) && i != 5)
331 *p++ = ':';
332 }
333 *p = '\0';
334
046a37bd
SR
335 return string(buf, end, mac_addr, field_width, precision,
336 flags & ~SPECIAL);
6c6166f5
MF
337}
338
046a37bd 339static char *ip6_addr_string(char *buf, char *end, u8 *addr, int field_width,
6c6166f5
MF
340 int precision, int flags)
341{
8acdae68
DS
342 /* (8 * 4 hex digits), 7 colons and trailing zero */
343 char ip6_addr[8 * 5];
6c6166f5
MF
344 char *p = ip6_addr;
345 int i;
346
347 for (i = 0; i < 8; i++) {
f8c987f8
AB
348 p = hex_byte_pack(p, addr[2 * i]);
349 p = hex_byte_pack(p, addr[2 * i + 1]);
6c6166f5
MF
350 if (!(flags & SPECIAL) && i != 7)
351 *p++ = ':';
352 }
353 *p = '\0';
354
046a37bd
SR
355 return string(buf, end, ip6_addr, field_width, precision,
356 flags & ~SPECIAL);
6c6166f5
MF
357}
358
046a37bd 359static char *ip4_addr_string(char *buf, char *end, u8 *addr, int field_width,
6c6166f5
MF
360 int precision, int flags)
361{
8acdae68
DS
362 /* (4 * 3 decimal digits), 3 dots and trailing zero */
363 char ip4_addr[4 * 4];
6c6166f5
MF
364 char temp[3]; /* hold each IP quad in reverse order */
365 char *p = ip4_addr;
366 int i, digits;
367
368 for (i = 0; i < 4; i++) {
369 digits = put_dec_trunc(temp, addr[i]) - temp;
370 /* reverse the digits in the quad */
371 while (digits--)
372 *p++ = temp[digits];
373 if (i != 3)
374 *p++ = '.';
375 }
376 *p = '\0';
377
046a37bd
SR
378 return string(buf, end, ip4_addr, field_width, precision,
379 flags & ~SPECIAL);
6c6166f5 380}
6c6166f5 381
22ada0c8
RC
382#ifdef CONFIG_LIB_UUID
383/*
3bad256f 384 * This works (roughly) the same way as Linux's.
22ada0c8
RC
385 *
386 * %pUb: 01020304-0506-0708-090a-0b0c0d0e0f10
3bad256f 387 * %pUB: 01020304-0506-0708-090A-0B0C0D0E0F10
22ada0c8 388 * %pUl: 04030201-0605-0807-090a-0b0c0d0e0f10
3bad256f 389 * %pUL: 04030201-0605-0807-090A-0B0C0D0E0F10
22ada0c8
RC
390 */
391static char *uuid_string(char *buf, char *end, u8 *addr, int field_width,
392 int precision, int flags, const char *fmt)
393{
394 char uuid[UUID_STR_LEN + 1];
3bad256f 395 int str_format;
22ada0c8
RC
396
397 switch (*(++fmt)) {
398 case 'L':
3bad256f
HS
399 str_format = UUID_STR_FORMAT_GUID | UUID_STR_UPPER_CASE;
400 break;
22ada0c8
RC
401 case 'l':
402 str_format = UUID_STR_FORMAT_GUID;
403 break;
404 case 'B':
3bad256f 405 str_format = UUID_STR_FORMAT_STD | UUID_STR_UPPER_CASE;
22ada0c8
RC
406 break;
407 default:
3bad256f 408 str_format = UUID_STR_FORMAT_STD;
22ada0c8
RC
409 break;
410 }
411
d7ae1609
SG
412 if (addr)
413 uuid_bin_to_str(addr, uuid, str_format);
414 else
415 strcpy(uuid, "<NULL>");
22ada0c8
RC
416
417 return string(buf, end, uuid, field_width, precision, flags);
418}
419#endif
420
6c6166f5
MF
421/*
422 * Show a '%p' thing. A kernel extension is that the '%p' is followed
423 * by an extra set of alphanumeric characters that are extended format
424 * specifiers.
425 *
426 * Right now we handle:
427 *
428 * - 'M' For a 6-byte MAC address, it prints the address in the
429 * usual colon-separated hex notation
430 * - 'I' [46] for IPv4/IPv6 addresses printed in the usual way (dot-separated
431 * decimal for v4 and colon separated network-order 16 bit hex for v6)
432 * - 'i' [46] for 'raw' IPv4/IPv6 addresses, IPv6 omits the colons, IPv4 is
433 * currently the same
434 *
23b542aa
RV
435 * Note: IPv6 support is currently if(0)'ed out. If you ever need
436 * %pI6, please add an IPV6 Kconfig knob, make your code select or
437 * depend on that, and change the 0 below to CONFIG_IS_ENABLED(IPV6).
6c6166f5 438 */
046a37bd
SR
439static char *pointer(const char *fmt, char *buf, char *end, void *ptr,
440 int field_width, int precision, int flags)
6c6166f5 441{
1eebd14b
TR
442 u64 num = (uintptr_t)ptr;
443
d266f669
WD
444 /*
445 * Being a boot loader, we explicitly allow pointers to
446 * (physical) address null.
447 */
448#if 0
6c6166f5 449 if (!ptr)
046a37bd
SR
450 return string(buf, end, "(null)", field_width, precision,
451 flags);
d266f669 452#endif
6c6166f5 453
6c6166f5 454 switch (*fmt) {
4ddcc4e5 455/* Device paths only exist in the EFI context. */
64b5ba4d 456#if CONFIG_IS_ENABLED(EFI_DEVICE_PATH_TO_TEXT) && !defined(API_BUILD)
256060e4
HS
457 case 'D':
458 return device_path_string(buf, end, ptr, field_width,
459 precision, flags);
460#endif
1eebd14b
TR
461 case 'a':
462 flags |= SPECIAL | ZEROPAD;
463
464 switch (fmt[1]) {
465 case 'p':
466 default:
467 field_width = sizeof(phys_addr_t) * 2 + 2;
468 num = *(phys_addr_t *)ptr;
469 break;
470 }
471 break;
6c6166f5
MF
472 case 'm':
473 flags |= SPECIAL;
474 /* Fallthrough */
475 case 'M':
046a37bd
SR
476 return mac_address_string(buf, end, ptr, field_width,
477 precision, flags);
6c6166f5
MF
478 case 'i':
479 flags |= SPECIAL;
480 /* Fallthrough */
481 case 'I':
23b542aa
RV
482 /* %pI6 currently unused */
483 if (0 && fmt[1] == '6')
046a37bd
SR
484 return ip6_addr_string(buf, end, ptr, field_width,
485 precision, flags);
6c6166f5 486 if (fmt[1] == '4')
046a37bd
SR
487 return ip4_addr_string(buf, end, ptr, field_width,
488 precision, flags);
6c6166f5
MF
489 flags &= ~SPECIAL;
490 break;
22ada0c8
RC
491#ifdef CONFIG_LIB_UUID
492 case 'U':
493 return uuid_string(buf, end, ptr, field_width, precision,
494 flags, fmt);
495#endif
496 default:
497 break;
498 }
6c6166f5
MF
499 flags |= SMALL;
500 if (field_width == -1) {
501 field_width = 2*sizeof(void *);
502 flags |= ZEROPAD;
503 }
1eebd14b 504 return number(buf, end, num, 16, field_width, precision, flags);
6c6166f5
MF
505}
506
046a37bd
SR
507static int vsnprintf_internal(char *buf, size_t size, const char *fmt,
508 va_list args)
6c6166f5 509{
7b64f66c 510 u64 num;
6c6166f5
MF
511 int base;
512 char *str;
153d511e
WD
513
514 int flags; /* flags to number() */
515
516 int field_width; /* width of output field */
517 int precision; /* min. # of digits for integers; max
518 number of chars for from string */
6c6166f5
MF
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 */
046a37bd 523 char *end = buf + size;
6c6166f5 524
046a37bd
SR
525 /* Make sure end is always >= buf - do we want this in U-Boot? */
526 if (end < buf) {
527 end = ((void *)-1);
528 size = end - buf;
529 }
6c6166f5 530 str = buf;
153d511e 531
6c6166f5 532 for (; *fmt ; ++fmt) {
153d511e 533 if (*fmt != '%') {
046a37bd 534 ADDCH(str, *fmt);
153d511e
WD
535 continue;
536 }
537
538 /* process flags */
539 flags = 0;
8acdae68 540repeat:
153d511e
WD
541 ++fmt; /* this also skips first '%' */
542 switch (*fmt) {
8acdae68
DS
543 case '-':
544 flags |= LEFT;
545 goto repeat;
546 case '+':
547 flags |= PLUS;
548 goto repeat;
549 case ' ':
550 flags |= SPACE;
551 goto repeat;
552 case '#':
553 flags |= SPECIAL;
554 goto repeat;
555 case '0':
556 flags |= ZEROPAD;
557 goto repeat;
6c6166f5 558 }
153d511e
WD
559
560 /* get field width */
561 field_width = -1;
562 if (is_digit(*fmt))
563 field_width = skip_atoi(&fmt);
564 else if (*fmt == '*') {
565 ++fmt;
566 /* it's the next argument */
567 field_width = va_arg(args, int);
568 if (field_width < 0) {
569 field_width = -field_width;
570 flags |= LEFT;
571 }
572 }
573
574 /* get the precision */
575 precision = -1;
576 if (*fmt == '.') {
577 ++fmt;
578 if (is_digit(*fmt))
579 precision = skip_atoi(&fmt);
580 else if (*fmt == '*') {
581 ++fmt;
582 /* it's the next argument */
583 precision = va_arg(args, int);
584 }
585 if (precision < 0)
586 precision = 0;
587 }
588
589 /* get the conversion qualifier */
590 qualifier = -1;
f354b73e 591 if (*fmt == 'h' || *fmt == 'l' || *fmt == 'L' ||
6c6166f5 592 *fmt == 'Z' || *fmt == 'z' || *fmt == 't') {
153d511e 593 qualifier = *fmt;
6c6166f5
MF
594 ++fmt;
595 if (qualifier == 'l' && *fmt == 'l') {
596 qualifier = 'L';
bf052939
JY
597 ++fmt;
598 }
153d511e
WD
599 }
600
601 /* default base */
602 base = 10;
603
604 switch (*fmt) {
605 case 'c':
046a37bd 606 if (!(flags & LEFT)) {
153d511e 607 while (--field_width > 0)
046a37bd
SR
608 ADDCH(str, ' ');
609 }
610 ADDCH(str, (unsigned char) va_arg(args, int));
153d511e 611 while (--field_width > 0)
046a37bd 612 ADDCH(str, ' ');
153d511e
WD
613 continue;
614
615 case 's':
fbb3ea80 616/* U-Boot uses UTF-16 strings in the EFI context only. */
726cd983
SG
617#if (CONFIG_IS_ENABLED(EFI_LOADER) || CONFIG_IS_ENABLED(EFI_APP)) && \
618 !defined(API_BUILD)
fbb3ea80 619 if (qualifier == 'l') {
274325c5
RC
620 str = string16(str, end, va_arg(args, u16 *),
621 field_width, precision, flags);
fbb3ea80
HS
622 } else
623#endif
624 {
274325c5
RC
625 str = string(str, end, va_arg(args, char *),
626 field_width, precision, flags);
627 }
153d511e
WD
628 continue;
629
630 case 'p':
8acdae68 631 str = pointer(fmt + 1, str, end,
6c6166f5
MF
632 va_arg(args, void *),
633 field_width, precision, flags);
256060e4
HS
634 if (IS_ERR(str))
635 return PTR_ERR(str);
6c6166f5
MF
636 /* Skip all alphanumeric pointer suffixes */
637 while (isalnum(fmt[1]))
638 fmt++;
153d511e
WD
639 continue;
640
153d511e
WD
641 case 'n':
642 if (qualifier == 'l') {
8acdae68 643 long *ip = va_arg(args, long *);
153d511e
WD
644 *ip = (str - buf);
645 } else {
8acdae68 646 int *ip = va_arg(args, int *);
153d511e
WD
647 *ip = (str - buf);
648 }
649 continue;
650
651 case '%':
046a37bd 652 ADDCH(str, '%');
153d511e
WD
653 continue;
654
655 /* integer number formats - set up the flags and "break" */
656 case 'o':
657 base = 8;
658 break;
659
153d511e 660 case 'x':
6c6166f5
MF
661 flags |= SMALL;
662 case 'X':
153d511e
WD
663 base = 16;
664 break;
665
666 case 'd':
667 case 'i':
668 flags |= SIGN;
669 case 'u':
670 break;
671
672 default:
046a37bd 673 ADDCH(str, '%');
153d511e 674 if (*fmt)
046a37bd 675 ADDCH(str, *fmt);
153d511e
WD
676 else
677 --fmt;
678 continue;
679 }
6c6166f5 680 if (qualifier == 'L') /* "quad" for 64 bit variables */
c40b2956 681 num = va_arg(args, unsigned long long);
4b142feb 682 else if (qualifier == 'l') {
153d511e 683 num = va_arg(args, unsigned long);
6c6166f5
MF
684 if (flags & SIGN)
685 num = (signed long) num;
f354b73e
JCPV
686 } else if (qualifier == 'Z' || qualifier == 'z') {
687 num = va_arg(args, size_t);
688 } else if (qualifier == 't') {
689 num = va_arg(args, ptrdiff_t);
690 } else if (qualifier == 'h') {
153d511e
WD
691 num = (unsigned short) va_arg(args, int);
692 if (flags & SIGN)
6c6166f5
MF
693 num = (signed short) num;
694 } else {
153d511e 695 num = va_arg(args, unsigned int);
6c6166f5
MF
696 if (flags & SIGN)
697 num = (signed int) num;
698 }
046a37bd
SR
699 str = number(str, end, num, base, field_width, precision,
700 flags);
701 }
702
046a37bd
SR
703 if (size > 0) {
704 ADDCH(str, '\0');
705 if (str > end)
706 end[-1] = '\0';
686f60f5 707 --str;
153d511e 708 }
046a37bd 709 /* the trailing null byte doesn't count towards the total */
8acdae68 710 return str - buf;
153d511e
WD
711}
712
046a37bd
SR
713int vsnprintf(char *buf, size_t size, const char *fmt,
714 va_list args)
715{
716 return vsnprintf_internal(buf, size, fmt, args);
717}
718
046a37bd
SR
719int vscnprintf(char *buf, size_t size, const char *fmt, va_list args)
720{
721 int i;
722
723 i = vsnprintf(buf, size, fmt, args);
724
725 if (likely(i < size))
726 return i;
727 if (size != 0)
728 return size - 1;
729 return 0;
730}
731
046a37bd
SR
732int snprintf(char *buf, size_t size, const char *fmt, ...)
733{
734 va_list args;
735 int i;
736
737 va_start(args, fmt);
738 i = vsnprintf(buf, size, fmt, args);
739 va_end(args);
740
741 return i;
742}
743
046a37bd
SR
744int scnprintf(char *buf, size_t size, const char *fmt, ...)
745{
746 va_list args;
747 int i;
748
749 va_start(args, fmt);
750 i = vscnprintf(buf, size, fmt, args);
751 va_end(args);
752
753 return i;
754}
046a37bd
SR
755
756/**
757 * Format a string and place it in a buffer (va_list version)
758 *
759 * @param buf The buffer to place the result into
760 * @param fmt The format string to use
761 * @param args Arguments for the format string
762 *
763 * The function returns the number of characters written
764 * into @buf. Use vsnprintf() or vscnprintf() in order to avoid
765 * buffer overflows.
766 *
767 * If you're not already dealing with a va_list consider using sprintf().
768 */
769int vsprintf(char *buf, const char *fmt, va_list args)
770{
771 return vsnprintf_internal(buf, INT_MAX, fmt, args);
772}
773
8acdae68 774int sprintf(char *buf, const char *fmt, ...)
153d511e
WD
775{
776 va_list args;
777 int i;
778
779 va_start(args, fmt);
8acdae68 780 i = vsprintf(buf, fmt, args);
153d511e
WD
781 va_end(args);
782 return i;
783}
784
4f1eed75 785#if CONFIG_IS_ENABLED(PRINTF)
7d9cde10
SR
786int printf(const char *fmt, ...)
787{
788 va_list args;
789 uint i;
7d9cde10
SR
790
791 va_start(args, fmt);
97587786 792 i = vprintf(fmt, args);
7d9cde10
SR
793 va_end(args);
794
7d9cde10
SR
795 return i;
796}
797
798int vprintf(const char *fmt, va_list args)
799{
800 uint i;
801 char printbuffer[CONFIG_SYS_PBSIZE];
802
803 /*
804 * For this to work, printbuffer must be larger than
805 * anything we ever want to print.
806 */
807 i = vscnprintf(printbuffer, sizeof(printbuffer), fmt, args);
808
256060e4
HS
809 /* Handle error */
810 if (i <= 0)
811 return i;
7d9cde10
SR
812 /* Print the string */
813 puts(printbuffer);
814 return i;
815}
4f1eed75 816#endif
66312374 817
4a255ea3
SG
818static char local_toa[22];
819
3cce8a54
SG
820char *simple_itoa(ulong i)
821{
822 /* 21 digits plus null terminator, good for 64-bit or smaller ints */
4a255ea3 823 char *p = &local_toa[21];
3cce8a54
SG
824
825 *p-- = '\0';
826 do {
827 *p-- = '0' + i % 10;
828 i /= 10;
829 } while (i > 0);
830 return p + 1;
831}
b8bcaa3a 832
4a255ea3
SG
833char *simple_xtoa(ulong num)
834{
835 /* 16 digits plus nul terminator, good for 64-bit or smaller ints */
836 char *p = &local_toa[17];
837
838 *--p = '\0';
839 do {
840 p -= 2;
841 hex_byte_pack(p, num & 0xff);
842 num >>= 8;
843 } while (num > 0);
844
845 return p;
846}
847
b8bcaa3a
SG
848/* We don't seem to have %'d in U-Boot */
849void print_grouped_ull(unsigned long long int_val, int digits)
850{
851 char str[21], *s;
852 int grab = 3;
853
854 digits = (digits + 2) / 3;
855 sprintf(str, "%*llu", digits * 3, int_val);
856 for (s = str; *s; s += grab) {
857 if (s != str)
858 putc(s[-1] != ' ' ? ',' : ' ');
859 printf("%.*s", grab, s);
860 grab = 3;
861 }
862}
09c32807
HS
863
864bool str2off(const char *p, loff_t *num)
865{
866 char *endptr;
867
868 *num = simple_strtoull(p, &endptr, 16);
869 return *p != '\0' && *endptr == '\0';
870}
871
872bool str2long(const char *p, ulong *num)
873{
874 char *endptr;
875
7e5f460e 876 *num = hextoul(p, &endptr);
09c32807
HS
877 return *p != '\0' && *endptr == '\0';
878}
2189d5f1
SG
879
880char *strmhz(char *buf, unsigned long hz)
881{
882 long l, n;
883 long m;
884
885 n = DIV_ROUND_CLOSEST(hz, 1000) / 1000L;
886 l = sprintf(buf, "%ld", n);
887
888 hz -= n * 1000000L;
889 m = DIV_ROUND_CLOSEST(hz, 1000L);
890 if (m != 0)
891 sprintf(buf + l, ".%03ld", m);
892
893 return buf;
894}
This page took 0.455687 seconds and 4 git commands to generate.