lib: add asn1 decoder
[oweals/u-boot.git] / lib / vsprintf.c
1 /*
2  *  linux/lib/vsprintf.c
3  *
4  *  Copyright (C) 1991, 1992  Linus Torvalds
5  * (C) Copyright 2000-2009
6  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
7  */
8
9 /* vsprintf.c -- Lars Wirzenius & Linus Torvalds. */
10 /*
11  * Wirzenius wrote this portably, Torvalds fucked it up :-)
12  *
13  * from hush: simple_itoa() was lifted from boa-0.93.15
14  */
15
16 #include <common.h>
17 #include <charset.h>
18 #include <efi_loader.h>
19 #include <div64.h>
20 #include <hexdump.h>
21 #include <stdarg.h>
22 #include <vsprintf.h>
23 #include <linux/ctype.h>
24 #include <linux/err.h>
25 #include <linux/types.h>
26 #include <linux/string.h>
27
28 #define noinline __attribute__((noinline))
29
30 /* we use this so that we can do without the ctype library */
31 #define is_digit(c)     ((c) >= '0' && (c) <= '9')
32
33 static int skip_atoi(const char **s)
34 {
35         int i = 0;
36
37         while (is_digit(**s))
38                 i = i * 10 + *((*s)++) - '0';
39
40         return i;
41 }
42
43 /* Decimal conversion is by far the most typical, and is used
44  * for /proc and /sys data. This directly impacts e.g. top performance
45  * with many processes running. We optimize it for speed
46  * using code from
47  * http://www.cs.uiowa.edu/~jones/bcd/decimal.html
48  * (with permission from the author, Douglas W. Jones). */
49
50 /* Formats correctly any integer in [0,99999].
51  * Outputs from one to five digits depending on input.
52  * On i386 gcc 4.1.2 -O2: ~250 bytes of code. */
53 static char *put_dec_trunc(char *buf, unsigned q)
54 {
55         unsigned d3, d2, d1, d0;
56         d1 = (q>>4) & 0xf;
57         d2 = (q>>8) & 0xf;
58         d3 = (q>>12);
59
60         d0 = 6*(d3 + d2 + d1) + (q & 0xf);
61         q = (d0 * 0xcd) >> 11;
62         d0 = d0 - 10*q;
63         *buf++ = d0 + '0'; /* least significant digit */
64         d1 = q + 9*d3 + 5*d2 + d1;
65         if (d1 != 0) {
66                 q = (d1 * 0xcd) >> 11;
67                 d1 = d1 - 10*q;
68                 *buf++ = d1 + '0'; /* next digit */
69
70                 d2 = q + 2*d2;
71                 if ((d2 != 0) || (d3 != 0)) {
72                         q = (d2 * 0xd) >> 7;
73                         d2 = d2 - 10*q;
74                         *buf++ = d2 + '0'; /* next digit */
75
76                         d3 = q + 4*d3;
77                         if (d3 != 0) {
78                                 q = (d3 * 0xcd) >> 11;
79                                 d3 = d3 - 10*q;
80                                 *buf++ = d3 + '0';  /* next digit */
81                                 if (q != 0)
82                                         *buf++ = q + '0'; /* most sign. digit */
83                         }
84                 }
85         }
86         return buf;
87 }
88 /* Same with if's removed. Always emits five digits */
89 static char *put_dec_full(char *buf, unsigned q)
90 {
91         /* BTW, if q is in [0,9999], 8-bit ints will be enough, */
92         /* but anyway, gcc produces better code with full-sized ints */
93         unsigned d3, d2, d1, d0;
94         d1 = (q>>4) & 0xf;
95         d2 = (q>>8) & 0xf;
96         d3 = (q>>12);
97
98         /*
99          * Possible ways to approx. divide by 10
100          * gcc -O2 replaces multiply with shifts and adds
101          * (x * 0xcd) >> 11: 11001101 - shorter code than * 0x67 (on i386)
102          * (x * 0x67) >> 10:  1100111
103          * (x * 0x34) >> 9:    110100 - same
104          * (x * 0x1a) >> 8:     11010 - same
105          * (x * 0x0d) >> 7:      1101 - same, shortest code (on i386)
106          */
107
108         d0 = 6*(d3 + d2 + d1) + (q & 0xf);
109         q = (d0 * 0xcd) >> 11;
110         d0 = d0 - 10*q;
111         *buf++ = d0 + '0';
112         d1 = q + 9*d3 + 5*d2 + d1;
113                 q = (d1 * 0xcd) >> 11;
114                 d1 = d1 - 10*q;
115                 *buf++ = d1 + '0';
116
117                 d2 = q + 2*d2;
118                         q = (d2 * 0xd) >> 7;
119                         d2 = d2 - 10*q;
120                         *buf++ = d2 + '0';
121
122                         d3 = q + 4*d3;
123                                 q = (d3 * 0xcd) >> 11; /* - shorter code */
124                                 /* q = (d3 * 0x67) >> 10; - would also work */
125                                 d3 = d3 - 10*q;
126                                 *buf++ = d3 + '0';
127                                         *buf++ = q + '0';
128         return buf;
129 }
130 /* No inlining helps gcc to use registers better */
131 static noinline char *put_dec(char *buf, uint64_t num)
132 {
133         while (1) {
134                 unsigned rem;
135                 if (num < 100000)
136                         return put_dec_trunc(buf, num);
137                 rem = do_div(num, 100000);
138                 buf = put_dec_full(buf, rem);
139         }
140 }
141
142 #define ZEROPAD 1               /* pad with zero */
143 #define SIGN    2               /* unsigned/signed long */
144 #define PLUS    4               /* show plus */
145 #define SPACE   8               /* space if plus */
146 #define LEFT    16              /* left justified */
147 #define SMALL   32              /* Must be 32 == 0x20 */
148 #define SPECIAL 64              /* 0x */
149
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)
159
160 static char *number(char *buf, char *end, u64 num,
161                 int base, int size, int precision, int type)
162 {
163         /* we are called with base 8, 10 or 16, only, thus don't need "G..."  */
164         static const char digits[16] = "0123456789ABCDEF";
165
166         char tmp[66];
167         char sign;
168         char locase;
169         int need_pfx = ((type & SPECIAL) && base != 10);
170         int i;
171
172         /* locase = 0 or 0x20. ORing digits or letters with 'locase'
173          * produces same digits or (maybe lowercased) letters */
174         locase = (type & SMALL);
175         if (type & LEFT)
176                 type &= ~ZEROPAD;
177         sign = 0;
178         if (type & SIGN) {
179                 if ((s64) num < 0) {
180                         sign = '-';
181                         num = -(s64) num;
182                         size--;
183                 } else if (type & PLUS) {
184                         sign = '+';
185                         size--;
186                 } else if (type & SPACE) {
187                         sign = ' ';
188                         size--;
189                 }
190         }
191         if (need_pfx) {
192                 size--;
193                 if (base == 16)
194                         size--;
195         }
196
197         /* generate full string in tmp[], in reverse order */
198         i = 0;
199         if (num == 0)
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;
209
210                 if (base == 16)
211                         shift = 4;
212
213                 do {
214                         tmp[i++] = (digits[((unsigned char)num) & mask]
215                                         | locase);
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" */
223         if (i > precision)
224                 precision = i;
225         /* leading space padding */
226         size -= precision;
227         if (!(type & (ZEROPAD + LEFT))) {
228                 while (--size >= 0)
229                         ADDCH(buf, ' ');
230         }
231         /* sign */
232         if (sign)
233                 ADDCH(buf, sign);
234         /* "0x" / "0" prefix */
235         if (need_pfx) {
236                 ADDCH(buf, '0');
237                 if (base == 16)
238                         ADDCH(buf, 'X' | locase);
239         }
240         /* zero or space padding */
241         if (!(type & LEFT)) {
242                 char c = (type & ZEROPAD) ? '0' : ' ';
243
244                 while (--size >= 0)
245                         ADDCH(buf, c);
246         }
247         /* hmm even more zero padding? */
248         while (i <= --precision)
249                 ADDCH(buf, '0');
250         /* actual digits of result */
251         while (--i >= 0)
252                 ADDCH(buf, tmp[i]);
253         /* trailing space padding */
254         while (--size >= 0)
255                 ADDCH(buf, ' ');
256         return buf;
257 }
258
259 static char *string(char *buf, char *end, char *s, int field_width,
260                 int precision, int flags)
261 {
262         int len, i;
263
264         if (s == NULL)
265                 s = "<NULL>";
266
267         len = strnlen(s, precision);
268
269         if (!(flags & LEFT))
270                 while (len < field_width--)
271                         ADDCH(buf, ' ');
272         for (i = 0; i < len; ++i)
273                 ADDCH(buf, *s++);
274         while (len < field_width--)
275                 ADDCH(buf, ' ');
276         return buf;
277 }
278
279 /* U-Boot uses UTF-16 strings in the EFI context only. */
280 #if CONFIG_IS_ENABLED(EFI_LOADER) && !defined(API_BUILD)
281 static char *string16(char *buf, char *end, u16 *s, int field_width,
282                 int precision, int flags)
283 {
284         const u16 *str = s ? s : L"<NULL>";
285         ssize_t i, len = utf16_strnlen(str, precision);
286
287         if (!(flags & LEFT))
288                 for (; len < field_width; --field_width)
289                         ADDCH(buf, ' ');
290         for (i = 0; i < len && buf + utf16_utf8_strnlen(str, 1) <= end; ++i) {
291                 s32 s = utf16_get(&str);
292
293                 if (s < 0)
294                         s = '?';
295                 utf8_put(s, &buf);
296         }
297         for (; len < field_width; --field_width)
298                 ADDCH(buf, ' ');
299         return buf;
300 }
301
302 #if CONFIG_IS_ENABLED(EFI_DEVICE_PATH_TO_TEXT)
303 static char *device_path_string(char *buf, char *end, void *dp, int field_width,
304                                 int precision, int flags)
305 {
306         u16 *str;
307
308         /* If dp == NULL output the string '<NULL>' */
309         if (!dp)
310                 return string16(buf, end, dp, field_width, precision, flags);
311
312         str = efi_dp_str((struct efi_device_path *)dp);
313         if (!str)
314                 return ERR_PTR(-ENOMEM);
315
316         buf = string16(buf, end, str, field_width, precision, flags);
317         efi_free_pool(str);
318         return buf;
319 }
320 #endif
321 #endif
322
323 #ifdef CONFIG_CMD_NET
324 static char *mac_address_string(char *buf, char *end, u8 *addr, int field_width,
325                                 int precision, int flags)
326 {
327         /* (6 * 2 hex digits), 5 colons and trailing zero */
328         char mac_addr[6 * 3];
329         char *p = mac_addr;
330         int i;
331
332         for (i = 0; i < 6; i++) {
333                 p = hex_byte_pack(p, addr[i]);
334                 if (!(flags & SPECIAL) && i != 5)
335                         *p++ = ':';
336         }
337         *p = '\0';
338
339         return string(buf, end, mac_addr, field_width, precision,
340                       flags & ~SPECIAL);
341 }
342
343 static char *ip6_addr_string(char *buf, char *end, u8 *addr, int field_width,
344                          int precision, int flags)
345 {
346         /* (8 * 4 hex digits), 7 colons and trailing zero */
347         char ip6_addr[8 * 5];
348         char *p = ip6_addr;
349         int i;
350
351         for (i = 0; i < 8; i++) {
352                 p = hex_byte_pack(p, addr[2 * i]);
353                 p = hex_byte_pack(p, addr[2 * i + 1]);
354                 if (!(flags & SPECIAL) && i != 7)
355                         *p++ = ':';
356         }
357         *p = '\0';
358
359         return string(buf, end, ip6_addr, field_width, precision,
360                       flags & ~SPECIAL);
361 }
362
363 static char *ip4_addr_string(char *buf, char *end, u8 *addr, int field_width,
364                          int precision, int flags)
365 {
366         /* (4 * 3 decimal digits), 3 dots and trailing zero */
367         char ip4_addr[4 * 4];
368         char temp[3];   /* hold each IP quad in reverse order */
369         char *p = ip4_addr;
370         int i, digits;
371
372         for (i = 0; i < 4; i++) {
373                 digits = put_dec_trunc(temp, addr[i]) - temp;
374                 /* reverse the digits in the quad */
375                 while (digits--)
376                         *p++ = temp[digits];
377                 if (i != 3)
378                         *p++ = '.';
379         }
380         *p = '\0';
381
382         return string(buf, end, ip4_addr, field_width, precision,
383                       flags & ~SPECIAL);
384 }
385 #endif
386
387 #ifdef CONFIG_LIB_UUID
388 /*
389  * This works (roughly) the same way as Linux's.
390  *
391  *   %pUb:   01020304-0506-0708-090a-0b0c0d0e0f10
392  *   %pUB:   01020304-0506-0708-090A-0B0C0D0E0F10
393  *   %pUl:   04030201-0605-0807-090a-0b0c0d0e0f10
394  *   %pUL:   04030201-0605-0807-090A-0B0C0D0E0F10
395  */
396 static char *uuid_string(char *buf, char *end, u8 *addr, int field_width,
397                          int precision, int flags, const char *fmt)
398 {
399         char uuid[UUID_STR_LEN + 1];
400         int str_format;
401
402         switch (*(++fmt)) {
403         case 'L':
404                 str_format = UUID_STR_FORMAT_GUID | UUID_STR_UPPER_CASE;
405                 break;
406         case 'l':
407                 str_format = UUID_STR_FORMAT_GUID;
408                 break;
409         case 'B':
410                 str_format = UUID_STR_FORMAT_STD | UUID_STR_UPPER_CASE;
411                 break;
412         default:
413                 str_format = UUID_STR_FORMAT_STD;
414                 break;
415         }
416
417         if (addr)
418                 uuid_bin_to_str(addr, uuid, str_format);
419         else
420                 strcpy(uuid, "<NULL>");
421
422         return string(buf, end, uuid, field_width, precision, flags);
423 }
424 #endif
425
426 /*
427  * Show a '%p' thing.  A kernel extension is that the '%p' is followed
428  * by an extra set of alphanumeric characters that are extended format
429  * specifiers.
430  *
431  * Right now we handle:
432  *
433  * - 'M' For a 6-byte MAC address, it prints the address in the
434  *       usual colon-separated hex notation
435  * - 'I' [46] for IPv4/IPv6 addresses printed in the usual way (dot-separated
436  *       decimal for v4 and colon separated network-order 16 bit hex for v6)
437  * - 'i' [46] for 'raw' IPv4/IPv6 addresses, IPv6 omits the colons, IPv4 is
438  *       currently the same
439  *
440  * Note: The difference between 'S' and 'F' is that on ia64 and ppc64
441  * function pointers are really function descriptors, which contain a
442  * pointer to the real address.
443  */
444 static char *pointer(const char *fmt, char *buf, char *end, void *ptr,
445                 int field_width, int precision, int flags)
446 {
447         u64 num = (uintptr_t)ptr;
448
449         /*
450          * Being a boot loader, we explicitly allow pointers to
451          * (physical) address null.
452          */
453 #if 0
454         if (!ptr)
455                 return string(buf, end, "(null)", field_width, precision,
456                               flags);
457 #endif
458
459         switch (*fmt) {
460 /* Device paths only exist in the EFI context. */
461 #if CONFIG_IS_ENABLED(EFI_DEVICE_PATH_TO_TEXT) && !defined(API_BUILD)
462         case 'D':
463                 return device_path_string(buf, end, ptr, field_width,
464                                           precision, flags);
465 #endif
466         case 'a':
467                 flags |= SPECIAL | ZEROPAD;
468
469                 switch (fmt[1]) {
470                 case 'p':
471                 default:
472                         field_width = sizeof(phys_addr_t) * 2 + 2;
473                         num = *(phys_addr_t *)ptr;
474                         break;
475                 }
476                 break;
477 #ifdef CONFIG_CMD_NET
478         case 'm':
479                 flags |= SPECIAL;
480                 /* Fallthrough */
481         case 'M':
482                 return mac_address_string(buf, end, ptr, field_width,
483                                           precision, flags);
484         case 'i':
485                 flags |= SPECIAL;
486                 /* Fallthrough */
487         case 'I':
488                 if (fmt[1] == '6')
489                         return ip6_addr_string(buf, end, ptr, field_width,
490                                                precision, flags);
491                 if (fmt[1] == '4')
492                         return ip4_addr_string(buf, end, ptr, field_width,
493                                                precision, flags);
494                 flags &= ~SPECIAL;
495                 break;
496 #endif
497 #ifdef CONFIG_LIB_UUID
498         case 'U':
499                 return uuid_string(buf, end, ptr, field_width, precision,
500                                    flags, fmt);
501 #endif
502         default:
503                 break;
504         }
505         flags |= SMALL;
506         if (field_width == -1) {
507                 field_width = 2*sizeof(void *);
508                 flags |= ZEROPAD;
509         }
510         return number(buf, end, num, 16, field_width, precision, flags);
511 }
512
513 static int vsnprintf_internal(char *buf, size_t size, const char *fmt,
514                               va_list args)
515 {
516         u64 num;
517         int base;
518         char *str;
519
520         int flags;              /* flags to number() */
521
522         int field_width;        /* width of output field */
523         int precision;          /* min. # of digits for integers; max
524                                    number of chars for from string */
525         int qualifier;          /* 'h', 'l', or 'L' for integer fields */
526                                 /* 'z' support added 23/7/1999 S.H.    */
527                                 /* 'z' changed to 'Z' --davidm 1/25/99 */
528                                 /* 't' added for ptrdiff_t */
529         char *end = buf + size;
530
531         /* Make sure end is always >= buf - do we want this in U-Boot? */
532         if (end < buf) {
533                 end = ((void *)-1);
534                 size = end - buf;
535         }
536         str = buf;
537
538         for (; *fmt ; ++fmt) {
539                 if (*fmt != '%') {
540                         ADDCH(str, *fmt);
541                         continue;
542                 }
543
544                 /* process flags */
545                 flags = 0;
546 repeat:
547                         ++fmt;          /* this also skips first '%' */
548                         switch (*fmt) {
549                         case '-':
550                                 flags |= LEFT;
551                                 goto repeat;
552                         case '+':
553                                 flags |= PLUS;
554                                 goto repeat;
555                         case ' ':
556                                 flags |= SPACE;
557                                 goto repeat;
558                         case '#':
559                                 flags |= SPECIAL;
560                                 goto repeat;
561                         case '0':
562                                 flags |= ZEROPAD;
563                                 goto repeat;
564                         }
565
566                 /* get field width */
567                 field_width = -1;
568                 if (is_digit(*fmt))
569                         field_width = skip_atoi(&fmt);
570                 else if (*fmt == '*') {
571                         ++fmt;
572                         /* it's the next argument */
573                         field_width = va_arg(args, int);
574                         if (field_width < 0) {
575                                 field_width = -field_width;
576                                 flags |= LEFT;
577                         }
578                 }
579
580                 /* get the precision */
581                 precision = -1;
582                 if (*fmt == '.') {
583                         ++fmt;
584                         if (is_digit(*fmt))
585                                 precision = skip_atoi(&fmt);
586                         else if (*fmt == '*') {
587                                 ++fmt;
588                                 /* it's the next argument */
589                                 precision = va_arg(args, int);
590                         }
591                         if (precision < 0)
592                                 precision = 0;
593                 }
594
595                 /* get the conversion qualifier */
596                 qualifier = -1;
597                 if (*fmt == 'h' || *fmt == 'l' || *fmt == 'L' ||
598                     *fmt == 'Z' || *fmt == 'z' || *fmt == 't') {
599                         qualifier = *fmt;
600                         ++fmt;
601                         if (qualifier == 'l' && *fmt == 'l') {
602                                 qualifier = 'L';
603                                 ++fmt;
604                         }
605                 }
606
607                 /* default base */
608                 base = 10;
609
610                 switch (*fmt) {
611                 case 'c':
612                         if (!(flags & LEFT)) {
613                                 while (--field_width > 0)
614                                         ADDCH(str, ' ');
615                         }
616                         ADDCH(str, (unsigned char) va_arg(args, int));
617                         while (--field_width > 0)
618                                 ADDCH(str, ' ');
619                         continue;
620
621                 case 's':
622 /* U-Boot uses UTF-16 strings in the EFI context only. */
623 #if CONFIG_IS_ENABLED(EFI_LOADER) && !defined(API_BUILD)
624                         if (qualifier == 'l') {
625                                 str = string16(str, end, va_arg(args, u16 *),
626                                                field_width, precision, flags);
627                         } else
628 #endif
629                         {
630                                 str = string(str, end, va_arg(args, char *),
631                                              field_width, precision, flags);
632                         }
633                         continue;
634
635                 case 'p':
636                         str = pointer(fmt + 1, str, end,
637                                         va_arg(args, void *),
638                                         field_width, precision, flags);
639                         if (IS_ERR(str))
640                                 return PTR_ERR(str);
641                         /* Skip all alphanumeric pointer suffixes */
642                         while (isalnum(fmt[1]))
643                                 fmt++;
644                         continue;
645
646                 case 'n':
647                         if (qualifier == 'l') {
648                                 long *ip = va_arg(args, long *);
649                                 *ip = (str - buf);
650                         } else {
651                                 int *ip = va_arg(args, int *);
652                                 *ip = (str - buf);
653                         }
654                         continue;
655
656                 case '%':
657                         ADDCH(str, '%');
658                         continue;
659
660                 /* integer number formats - set up the flags and "break" */
661                 case 'o':
662                         base = 8;
663                         break;
664
665                 case 'x':
666                         flags |= SMALL;
667                 case 'X':
668                         base = 16;
669                         break;
670
671                 case 'd':
672                 case 'i':
673                         flags |= SIGN;
674                 case 'u':
675                         break;
676
677                 default:
678                         ADDCH(str, '%');
679                         if (*fmt)
680                                 ADDCH(str, *fmt);
681                         else
682                                 --fmt;
683                         continue;
684                 }
685                 if (qualifier == 'L')  /* "quad" for 64 bit variables */
686                         num = va_arg(args, unsigned long long);
687                 else if (qualifier == 'l') {
688                         num = va_arg(args, unsigned long);
689                         if (flags & SIGN)
690                                 num = (signed long) num;
691                 } else if (qualifier == 'Z' || qualifier == 'z') {
692                         num = va_arg(args, size_t);
693                 } else if (qualifier == 't') {
694                         num = va_arg(args, ptrdiff_t);
695                 } else if (qualifier == 'h') {
696                         num = (unsigned short) va_arg(args, int);
697                         if (flags & SIGN)
698                                 num = (signed short) num;
699                 } else {
700                         num = va_arg(args, unsigned int);
701                         if (flags & SIGN)
702                                 num = (signed int) num;
703                 }
704                 str = number(str, end, num, base, field_width, precision,
705                              flags);
706         }
707
708         if (size > 0) {
709                 ADDCH(str, '\0');
710                 if (str > end)
711                         end[-1] = '\0';
712                 --str;
713         }
714         /* the trailing null byte doesn't count towards the total */
715         return str - buf;
716 }
717
718 int vsnprintf(char *buf, size_t size, const char *fmt,
719                               va_list args)
720 {
721         return vsnprintf_internal(buf, size, fmt, args);
722 }
723
724 int vscnprintf(char *buf, size_t size, const char *fmt, va_list args)
725 {
726         int i;
727
728         i = vsnprintf(buf, size, fmt, args);
729
730         if (likely(i < size))
731                 return i;
732         if (size != 0)
733                 return size - 1;
734         return 0;
735 }
736
737 int snprintf(char *buf, size_t size, const char *fmt, ...)
738 {
739         va_list args;
740         int i;
741
742         va_start(args, fmt);
743         i = vsnprintf(buf, size, fmt, args);
744         va_end(args);
745
746         return i;
747 }
748
749 int scnprintf(char *buf, size_t size, const char *fmt, ...)
750 {
751         va_list args;
752         int i;
753
754         va_start(args, fmt);
755         i = vscnprintf(buf, size, fmt, args);
756         va_end(args);
757
758         return i;
759 }
760
761 /**
762  * Format a string and place it in a buffer (va_list version)
763  *
764  * @param buf   The buffer to place the result into
765  * @param fmt   The format string to use
766  * @param args  Arguments for the format string
767  *
768  * The function returns the number of characters written
769  * into @buf. Use vsnprintf() or vscnprintf() in order to avoid
770  * buffer overflows.
771  *
772  * If you're not already dealing with a va_list consider using sprintf().
773  */
774 int vsprintf(char *buf, const char *fmt, va_list args)
775 {
776         return vsnprintf_internal(buf, INT_MAX, fmt, args);
777 }
778
779 int sprintf(char *buf, const char *fmt, ...)
780 {
781         va_list args;
782         int i;
783
784         va_start(args, fmt);
785         i = vsprintf(buf, fmt, args);
786         va_end(args);
787         return i;
788 }
789
790 #if CONFIG_IS_ENABLED(PRINTF)
791 int printf(const char *fmt, ...)
792 {
793         va_list args;
794         uint i;
795         char printbuffer[CONFIG_SYS_PBSIZE];
796
797         va_start(args, fmt);
798
799         /*
800          * For this to work, printbuffer must be larger than
801          * anything we ever want to print.
802          */
803         i = vscnprintf(printbuffer, sizeof(printbuffer), fmt, args);
804         va_end(args);
805
806         /* Handle error */
807         if (i <= 0)
808                 return i;
809         /* Print the string */
810         puts(printbuffer);
811         return i;
812 }
813
814 int vprintf(const char *fmt, va_list args)
815 {
816         uint i;
817         char printbuffer[CONFIG_SYS_PBSIZE];
818
819         /*
820          * For this to work, printbuffer must be larger than
821          * anything we ever want to print.
822          */
823         i = vscnprintf(printbuffer, sizeof(printbuffer), fmt, args);
824
825         /* Handle error */
826         if (i <= 0)
827                 return i;
828         /* Print the string */
829         puts(printbuffer);
830         return i;
831 }
832 #endif
833
834 char *simple_itoa(ulong i)
835 {
836         /* 21 digits plus null terminator, good for 64-bit or smaller ints */
837         static char local[22];
838         char *p = &local[21];
839
840         *p-- = '\0';
841         do {
842                 *p-- = '0' + i % 10;
843                 i /= 10;
844         } while (i > 0);
845         return p + 1;
846 }
847
848 /* We don't seem to have %'d in U-Boot */
849 void 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 }
863
864 bool 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
872 bool str2long(const char *p, ulong *num)
873 {
874         char *endptr;
875
876         *num = simple_strtoul(p, &endptr, 16);
877         return *p != '\0' && *endptr == '\0';
878 }
879
880 char *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 }