4 * Copyright (C) 1991, 1992 Linus Torvalds
7 /* vsprintf.c -- Lars Wirzenius & Linus Torvalds. */
9 * Wirzenius wrote this portably, Torvalds fucked it up :-)
13 * Fri Jul 13 2001 Crutcher Dunnavant <crutcher+kernel@datastacks.com>
14 * - changed to provide snprintf and vsnprintf functions
15 * So Feb 1 16:51:32 CET 2004 Juergen Quade <quade@hsnr.de>
16 * - scnprintf and vscnprintf
20 #include <linux/module.h>
21 #include <linux/types.h>
22 #include <linux/string.h>
23 #include <linux/ctype.h>
24 #include <linux/kernel.h>
25 #include <linux/kallsyms.h>
26 #include <linux/uaccess.h>
27 #include <linux/ioport.h>
28 #include <net/addrconf.h>
30 #include <asm/page.h> /* for PAGE_SIZE */
31 #include <asm/div64.h>
32 #include <asm/sections.h> /* for dereference_function_descriptor() */
34 /* Works only for digits and letters, but small and fast */
35 #define TOLOWER(x) ((x) | 0x20)
37 static unsigned int simple_guess_base(const char *cp
)
40 if (TOLOWER(cp
[1]) == 'x' && isxdigit(cp
[2]))
50 * simple_strtoul - convert a string to an unsigned long
51 * @cp: The start of the string
52 * @endp: A pointer to the end of the parsed string will be placed here
53 * @base: The number base to use
55 unsigned long simple_strtoul(const char *cp
, char **endp
, unsigned int base
)
57 unsigned long result
= 0;
60 base
= simple_guess_base(cp
);
62 if (base
== 16 && cp
[0] == '0' && TOLOWER(cp
[1]) == 'x')
65 while (isxdigit(*cp
)) {
68 value
= isdigit(*cp
) ? *cp
- '0' : TOLOWER(*cp
) - 'a' + 10;
71 result
= result
* base
+ value
;
79 EXPORT_SYMBOL(simple_strtoul
);
82 * simple_strtol - convert a string to a signed long
83 * @cp: The start of the string
84 * @endp: A pointer to the end of the parsed string will be placed here
85 * @base: The number base to use
87 long simple_strtol(const char *cp
, char **endp
, unsigned int base
)
90 return -simple_strtoul(cp
+ 1, endp
, base
);
91 return simple_strtoul(cp
, endp
, base
);
93 EXPORT_SYMBOL(simple_strtol
);
96 * simple_strtoull - convert a string to an unsigned long long
97 * @cp: The start of the string
98 * @endp: A pointer to the end of the parsed string will be placed here
99 * @base: The number base to use
101 unsigned long long simple_strtoull(const char *cp
, char **endp
, unsigned int base
)
103 unsigned long long result
= 0;
106 base
= simple_guess_base(cp
);
108 if (base
== 16 && cp
[0] == '0' && TOLOWER(cp
[1]) == 'x')
111 while (isxdigit(*cp
)) {
114 value
= isdigit(*cp
) ? *cp
- '0' : TOLOWER(*cp
) - 'a' + 10;
117 result
= result
* base
+ value
;
125 EXPORT_SYMBOL(simple_strtoull
);
128 * simple_strtoll - convert a string to a signed long long
129 * @cp: The start of the string
130 * @endp: A pointer to the end of the parsed string will be placed here
131 * @base: The number base to use
133 long long simple_strtoll(const char *cp
, char **endp
, unsigned int base
)
136 return -simple_strtoull(cp
+ 1, endp
, base
);
137 return simple_strtoull(cp
, endp
, base
);
141 * strict_strtoul - convert a string to an unsigned long strictly
142 * @cp: The string to be converted
143 * @base: The number base to use
144 * @res: The converted result value
146 * strict_strtoul converts a string to an unsigned long only if the
147 * string is really an unsigned long string, any string containing
148 * any invalid char at the tail will be rejected and -EINVAL is returned,
149 * only a newline char at the tail is acceptible because people generally
150 * change a module parameter in the following way:
152 * echo 1024 > /sys/module/e1000/parameters/copybreak
154 * echo will append a newline to the tail.
156 * It returns 0 if conversion is successful and *res is set to the converted
157 * value, otherwise it returns -EINVAL and *res is set to 0.
159 * simple_strtoul just ignores the successive invalid characters and
160 * return the converted value of prefix part of the string.
162 int strict_strtoul(const char *cp
, unsigned int base
, unsigned long *res
)
173 val
= simple_strtoul(cp
, &tail
, base
);
176 if ((*tail
== '\0') ||
177 ((len
== (size_t)(tail
- cp
) + 1) && (*tail
== '\n'))) {
184 EXPORT_SYMBOL(strict_strtoul
);
187 * strict_strtol - convert a string to a long strictly
188 * @cp: The string to be converted
189 * @base: The number base to use
190 * @res: The converted result value
192 * strict_strtol is similiar to strict_strtoul, but it allows the first
193 * character of a string is '-'.
195 * It returns 0 if conversion is successful and *res is set to the converted
196 * value, otherwise it returns -EINVAL and *res is set to 0.
198 int strict_strtol(const char *cp
, unsigned int base
, long *res
)
202 ret
= strict_strtoul(cp
+ 1, base
, (unsigned long *)res
);
206 ret
= strict_strtoul(cp
, base
, (unsigned long *)res
);
211 EXPORT_SYMBOL(strict_strtol
);
214 * strict_strtoull - convert a string to an unsigned long long strictly
215 * @cp: The string to be converted
216 * @base: The number base to use
217 * @res: The converted result value
219 * strict_strtoull converts a string to an unsigned long long only if the
220 * string is really an unsigned long long string, any string containing
221 * any invalid char at the tail will be rejected and -EINVAL is returned,
222 * only a newline char at the tail is acceptible because people generally
223 * change a module parameter in the following way:
225 * echo 1024 > /sys/module/e1000/parameters/copybreak
227 * echo will append a newline to the tail of the string.
229 * It returns 0 if conversion is successful and *res is set to the converted
230 * value, otherwise it returns -EINVAL and *res is set to 0.
232 * simple_strtoull just ignores the successive invalid characters and
233 * return the converted value of prefix part of the string.
235 int strict_strtoull(const char *cp
, unsigned int base
, unsigned long long *res
)
238 unsigned long long val
;
246 val
= simple_strtoull(cp
, &tail
, base
);
249 if ((*tail
== '\0') ||
250 ((len
== (size_t)(tail
- cp
) + 1) && (*tail
== '\n'))) {
257 EXPORT_SYMBOL(strict_strtoull
);
260 * strict_strtoll - convert a string to a long long strictly
261 * @cp: The string to be converted
262 * @base: The number base to use
263 * @res: The converted result value
265 * strict_strtoll is similiar to strict_strtoull, but it allows the first
266 * character of a string is '-'.
268 * It returns 0 if conversion is successful and *res is set to the converted
269 * value, otherwise it returns -EINVAL and *res is set to 0.
271 int strict_strtoll(const char *cp
, unsigned int base
, long long *res
)
275 ret
= strict_strtoull(cp
+ 1, base
, (unsigned long long *)res
);
279 ret
= strict_strtoull(cp
, base
, (unsigned long long *)res
);
284 EXPORT_SYMBOL(strict_strtoll
);
286 static int skip_atoi(const char **s
)
291 i
= i
*10 + *((*s
)++) - '0';
295 /* Decimal conversion is by far the most typical, and is used
296 * for /proc and /sys data. This directly impacts e.g. top performance
297 * with many processes running. We optimize it for speed
299 * http://www.cs.uiowa.edu/~jones/bcd/decimal.html
300 * (with permission from the author, Douglas W. Jones). */
302 /* Formats correctly any integer in [0,99999].
303 * Outputs from one to five digits depending on input.
304 * On i386 gcc 4.1.2 -O2: ~250 bytes of code. */
305 static char* put_dec_trunc(char *buf
, unsigned q
)
307 unsigned d3
, d2
, d1
, d0
;
312 d0
= 6*(d3
+ d2
+ d1
) + (q
& 0xf);
313 q
= (d0
* 0xcd) >> 11;
315 *buf
++ = d0
+ '0'; /* least significant digit */
316 d1
= q
+ 9*d3
+ 5*d2
+ d1
;
318 q
= (d1
* 0xcd) >> 11;
320 *buf
++ = d1
+ '0'; /* next digit */
323 if ((d2
!= 0) || (d3
!= 0)) {
326 *buf
++ = d2
+ '0'; /* next digit */
330 q
= (d3
* 0xcd) >> 11;
332 *buf
++ = d3
+ '0'; /* next digit */
334 *buf
++ = q
+ '0'; /* most sign. digit */
340 /* Same with if's removed. Always emits five digits */
341 static char* put_dec_full(char *buf
, unsigned q
)
343 /* BTW, if q is in [0,9999], 8-bit ints will be enough, */
344 /* but anyway, gcc produces better code with full-sized ints */
345 unsigned d3
, d2
, d1
, d0
;
350 /* Possible ways to approx. divide by 10 */
351 /* gcc -O2 replaces multiply with shifts and adds */
352 // (x * 0xcd) >> 11: 11001101 - shorter code than * 0x67 (on i386)
353 // (x * 0x67) >> 10: 1100111
354 // (x * 0x34) >> 9: 110100 - same
355 // (x * 0x1a) >> 8: 11010 - same
356 // (x * 0x0d) >> 7: 1101 - same, shortest code (on i386)
358 d0
= 6*(d3
+ d2
+ d1
) + (q
& 0xf);
359 q
= (d0
* 0xcd) >> 11;
362 d1
= q
+ 9*d3
+ 5*d2
+ d1
;
363 q
= (d1
* 0xcd) >> 11;
373 q
= (d3
* 0xcd) >> 11; /* - shorter code */
374 /* q = (d3 * 0x67) >> 10; - would also work */
380 /* No inlining helps gcc to use registers better */
381 static noinline
char* put_dec(char *buf
, unsigned long long num
)
386 return put_dec_trunc(buf
, num
);
387 rem
= do_div(num
, 100000);
388 buf
= put_dec_full(buf
, rem
);
392 #define ZEROPAD 1 /* pad with zero */
393 #define SIGN 2 /* unsigned/signed long */
394 #define PLUS 4 /* show plus */
395 #define SPACE 8 /* space if plus */
396 #define LEFT 16 /* left justified */
397 #define SMALL 32 /* Must be 32 == 0x20 */
398 #define SPECIAL 64 /* 0x */
401 FORMAT_TYPE_NONE
, /* Just a string part */
403 FORMAT_TYPE_PRECISION
,
407 FORMAT_TYPE_PERCENT_CHAR
,
409 FORMAT_TYPE_LONG_LONG
,
424 enum format_type type
;
425 int flags
; /* flags to number() */
426 int field_width
; /* width of output field */
428 int precision
; /* # of digits/chars */
432 static char *number(char *buf
, char *end
, unsigned long long num
,
433 struct printf_spec spec
)
435 /* we are called with base 8, 10 or 16, only, thus don't need "G..." */
436 static const char digits
[16] = "0123456789ABCDEF"; /* "GHIJKLMNOPQRSTUVWXYZ"; */
441 int need_pfx
= ((spec
.flags
& SPECIAL
) && spec
.base
!= 10);
444 /* locase = 0 or 0x20. ORing digits or letters with 'locase'
445 * produces same digits or (maybe lowercased) letters */
446 locase
= (spec
.flags
& SMALL
);
447 if (spec
.flags
& LEFT
)
448 spec
.flags
&= ~ZEROPAD
;
450 if (spec
.flags
& SIGN
) {
451 if ((signed long long) num
< 0) {
453 num
= - (signed long long) num
;
455 } else if (spec
.flags
& PLUS
) {
458 } else if (spec
.flags
& SPACE
) {
469 /* generate full string in tmp[], in reverse order */
473 /* Generic code, for any base:
475 tmp[i++] = (digits[do_div(num,base)] | locase);
478 else if (spec
.base
!= 10) { /* 8 or 16 */
479 int mask
= spec
.base
- 1;
481 if (spec
.base
== 16) shift
= 4;
483 tmp
[i
++] = (digits
[((unsigned char)num
) & mask
] | locase
);
486 } else { /* base 10 */
487 i
= put_dec(tmp
, num
) - tmp
;
490 /* printing 100 using %2d gives "100", not "00" */
491 if (i
> spec
.precision
)
493 /* leading space padding */
494 spec
.field_width
-= spec
.precision
;
495 if (!(spec
.flags
& (ZEROPAD
+LEFT
))) {
496 while(--spec
.field_width
>= 0) {
508 /* "0x" / "0" prefix */
513 if (spec
.base
== 16) {
515 *buf
= ('X' | locase
);
519 /* zero or space padding */
520 if (!(spec
.flags
& LEFT
)) {
521 char c
= (spec
.flags
& ZEROPAD
) ? '0' : ' ';
522 while (--spec
.field_width
>= 0) {
528 /* hmm even more zero padding? */
529 while (i
<= --spec
.precision
) {
534 /* actual digits of result */
540 /* trailing space padding */
541 while (--spec
.field_width
>= 0) {
549 static char *string(char *buf
, char *end
, char *s
, struct printf_spec spec
)
553 if ((unsigned long)s
< PAGE_SIZE
)
556 len
= strnlen(s
, spec
.precision
);
558 if (!(spec
.flags
& LEFT
)) {
559 while (len
< spec
.field_width
--) {
565 for (i
= 0; i
< len
; ++i
) {
570 while (len
< spec
.field_width
--) {
578 static char *symbol_string(char *buf
, char *end
, void *ptr
,
579 struct printf_spec spec
, char ext
)
581 unsigned long value
= (unsigned long) ptr
;
582 #ifdef CONFIG_KALLSYMS
583 char sym
[KSYM_SYMBOL_LEN
];
584 if (ext
!= 'f' && ext
!= 's')
585 sprint_symbol(sym
, value
);
587 kallsyms_lookup(value
, NULL
, NULL
, NULL
, sym
);
588 return string(buf
, end
, sym
, spec
);
590 spec
.field_width
= 2*sizeof(void *);
591 spec
.flags
|= SPECIAL
| SMALL
| ZEROPAD
;
593 return number(buf
, end
, value
, spec
);
597 static char *resource_string(char *buf
, char *end
, struct resource
*res
,
598 struct printf_spec spec
)
600 #ifndef IO_RSRC_PRINTK_SIZE
601 #define IO_RSRC_PRINTK_SIZE 4
604 #ifndef MEM_RSRC_PRINTK_SIZE
605 #define MEM_RSRC_PRINTK_SIZE 8
607 struct printf_spec num_spec
= {
610 .flags
= SPECIAL
| SMALL
| ZEROPAD
,
612 /* room for the actual numbers, the two "0x", -, [, ] and the final zero */
613 char sym
[4*sizeof(resource_size_t
) + 8];
614 char *p
= sym
, *pend
= sym
+ sizeof(sym
);
617 if (res
->flags
& IORESOURCE_IO
)
618 size
= IO_RSRC_PRINTK_SIZE
;
619 else if (res
->flags
& IORESOURCE_MEM
)
620 size
= MEM_RSRC_PRINTK_SIZE
;
623 num_spec
.field_width
= size
;
624 p
= number(p
, pend
, res
->start
, num_spec
);
626 p
= number(p
, pend
, res
->end
, num_spec
);
630 return string(buf
, end
, sym
, spec
);
633 static char *mac_address_string(char *buf
, char *end
, u8
*addr
,
634 struct printf_spec spec
, const char *fmt
)
636 char mac_addr
[sizeof("xx:xx:xx:xx:xx:xx")];
640 for (i
= 0; i
< 6; i
++) {
641 p
= pack_hex_byte(p
, addr
[i
]);
642 if (fmt
[0] == 'M' && i
!= 5)
647 return string(buf
, end
, mac_addr
, spec
);
650 static char *ip4_string(char *p
, const u8
*addr
, bool leading_zeros
)
654 for (i
= 0; i
< 4; i
++) {
655 char temp
[3]; /* hold each IP quad in reverse order */
656 int digits
= put_dec_trunc(temp
, addr
[i
]) - temp
;
663 /* reverse the digits in the quad */
674 static char *ip6_compressed_string(char *p
, const char *addr
)
679 unsigned char zerolength
[8];
685 bool needcolon
= false;
689 memcpy(&in6
, addr
, sizeof(struct in6_addr
));
691 useIPv4
= ipv6_addr_v4mapped(&in6
) || ipv6_addr_is_isatap(&in6
);
693 memset(zerolength
, 0, sizeof(zerolength
));
700 /* find position of longest 0 run */
701 for (i
= 0; i
< range
; i
++) {
702 for (j
= i
; j
< range
; j
++) {
703 if (in6
.s6_addr16
[j
] != 0)
708 for (i
= 0; i
< range
; i
++) {
709 if (zerolength
[i
] > longest
) {
710 longest
= zerolength
[i
];
716 for (i
= 0; i
< range
; i
++) {
718 if (needcolon
|| i
== 0)
729 /* hex u16 without leading 0s */
730 word
= ntohs(in6
.s6_addr16
[i
]);
735 p
= pack_hex_byte(p
, hi
);
737 *p
++ = hex_asc_lo(hi
);
740 p
= pack_hex_byte(p
, lo
);
742 *p
++ = hex_asc_lo(lo
);
749 p
= ip4_string(p
, &in6
.s6_addr
[12], false);
756 static char *ip6_string(char *p
, const char *addr
, const char *fmt
)
759 for (i
= 0; i
< 8; i
++) {
760 p
= pack_hex_byte(p
, *addr
++);
761 p
= pack_hex_byte(p
, *addr
++);
762 if (fmt
[0] == 'I' && i
!= 7)
770 static char *ip6_addr_string(char *buf
, char *end
, const u8
*addr
,
771 struct printf_spec spec
, const char *fmt
)
773 char ip6_addr
[sizeof("xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:255.255.255.255")];
775 if (fmt
[0] == 'I' && fmt
[2] == 'c')
776 ip6_compressed_string(ip6_addr
, addr
);
778 ip6_string(ip6_addr
, addr
, fmt
);
780 return string(buf
, end
, ip6_addr
, spec
);
783 static char *ip4_addr_string(char *buf
, char *end
, const u8
*addr
,
784 struct printf_spec spec
, const char *fmt
)
786 char ip4_addr
[sizeof("255.255.255.255")];
788 ip4_string(ip4_addr
, addr
, fmt
[0] == 'i');
790 return string(buf
, end
, ip4_addr
, spec
);
793 static char *uuid_string(char *buf
, char *end
, const u8
*addr
,
794 struct printf_spec spec
, const char *fmt
)
796 char uuid
[sizeof("xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx")];
799 static const u8 be
[16] = {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15};
800 static const u8 le
[16] = {3,2,1,0,5,4,7,6,8,9,10,11,12,13,14,15};
801 const u8
*index
= be
;
806 uc
= true; /* fall-through */
815 for (i
= 0; i
< 16; i
++) {
816 p
= pack_hex_byte(p
, addr
[index
[i
]]);
836 return string(buf
, end
, uuid
, spec
);
840 * Show a '%p' thing. A kernel extension is that the '%p' is followed
841 * by an extra set of alphanumeric characters that are extended format
844 * Right now we handle:
846 * - 'F' For symbolic function descriptor pointers with offset
847 * - 'f' For simple symbolic function names without offset
848 * - 'S' For symbolic direct pointers with offset
849 * - 's' For symbolic direct pointers without offset
850 * - 'R' For a struct resource pointer, it prints the range of
851 * addresses (not the name nor the flags)
852 * - 'M' For a 6-byte MAC address, it prints the address in the
853 * usual colon-separated hex notation
854 * - 'm' For a 6-byte MAC address, it prints the hex address without colons
855 * - 'I' [46] for IPv4/IPv6 addresses printed in the usual way
856 * IPv4 uses dot-separated decimal without leading 0's (1.2.3.4)
857 * IPv6 uses colon separated network-order 16 bit hex with leading 0's
858 * - 'i' [46] for 'raw' IPv4/IPv6 addresses
859 * IPv6 omits the colons (01020304...0f)
860 * IPv4 uses dot-separated decimal with leading 0's (010.123.045.006)
861 * - 'I6c' for IPv6 addresses printed as specified by
862 * http://www.ietf.org/id/draft-kawamura-ipv6-text-representation-03.txt
863 * - 'U' For a 16 byte UUID/GUID, it prints the UUID/GUID in the form
864 * "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
865 * Options for %pU are:
866 * b big endian lower case hex (default)
867 * B big endian UPPER case hex
868 * l little endian lower case hex
869 * L little endian UPPER case hex
870 * big endian output byte order is:
871 * [0][1][2][3]-[4][5]-[6][7]-[8][9]-[10][11][12][13][14][15]
872 * little endian output byte order is:
873 * [3][2][1][0]-[5][4]-[7][6]-[8][9]-[10][11][12][13][14][15]
875 * Note: The difference between 'S' and 'F' is that on ia64 and ppc64
876 * function pointers are really function descriptors, which contain a
877 * pointer to the real address.
879 static char *pointer(const char *fmt
, char *buf
, char *end
, void *ptr
,
880 struct printf_spec spec
)
883 return string(buf
, end
, "(null)", spec
);
888 ptr
= dereference_function_descriptor(ptr
);
892 return symbol_string(buf
, end
, ptr
, spec
, *fmt
);
894 return resource_string(buf
, end
, ptr
, spec
);
895 case 'M': /* Colon separated: 00:01:02:03:04:05 */
896 case 'm': /* Contiguous: 000102030405 */
897 return mac_address_string(buf
, end
, ptr
, spec
, fmt
);
898 case 'I': /* Formatted IP supported
900 * 6: 0001:0203:...:0708
901 * 6c: 1::708 or 1::1.2.3.4
903 case 'i': /* Contiguous:
909 return ip6_addr_string(buf
, end
, ptr
, spec
, fmt
);
911 return ip4_addr_string(buf
, end
, ptr
, spec
, fmt
);
915 return uuid_string(buf
, end
, ptr
, spec
, fmt
);
918 if (spec
.field_width
== -1) {
919 spec
.field_width
= 2*sizeof(void *);
920 spec
.flags
|= ZEROPAD
;
924 return number(buf
, end
, (unsigned long) ptr
, spec
);
928 * Helper function to decode printf style format.
929 * Each call decode a token from the format and return the
930 * number of characters read (or likely the delta where it wants
931 * to go on the next call).
932 * The decoded token is returned through the parameters
934 * 'h', 'l', or 'L' for integer fields
935 * 'z' support added 23/7/1999 S.H.
936 * 'z' changed to 'Z' --davidm 1/25/99
937 * 't' added for ptrdiff_t
939 * @fmt: the format string
940 * @type of the token returned
941 * @flags: various flags such as +, -, # tokens..
942 * @field_width: overwritten width
943 * @base: base of the number (octal, hex, ...)
944 * @precision: precision of a number
945 * @qualifier: qualifier of a number (long, size_t, ...)
947 static int format_decode(const char *fmt
, struct printf_spec
*spec
)
949 const char *start
= fmt
;
951 /* we finished early by reading the field width */
952 if (spec
->type
== FORMAT_TYPE_WIDTH
) {
953 if (spec
->field_width
< 0) {
954 spec
->field_width
= -spec
->field_width
;
957 spec
->type
= FORMAT_TYPE_NONE
;
961 /* we finished early by reading the precision */
962 if (spec
->type
== FORMAT_TYPE_PRECISION
) {
963 if (spec
->precision
< 0)
966 spec
->type
= FORMAT_TYPE_NONE
;
971 spec
->type
= FORMAT_TYPE_NONE
;
973 for (; *fmt
; ++fmt
) {
978 /* Return the current non-format string */
979 if (fmt
!= start
|| !*fmt
)
985 while (1) { /* this also skips first '%' */
991 case '-': spec
->flags
|= LEFT
; break;
992 case '+': spec
->flags
|= PLUS
; break;
993 case ' ': spec
->flags
|= SPACE
; break;
994 case '#': spec
->flags
|= SPECIAL
; break;
995 case '0': spec
->flags
|= ZEROPAD
; break;
996 default: found
= false;
1003 /* get field width */
1004 spec
->field_width
= -1;
1007 spec
->field_width
= skip_atoi(&fmt
);
1008 else if (*fmt
== '*') {
1009 /* it's the next argument */
1010 spec
->type
= FORMAT_TYPE_WIDTH
;
1011 return ++fmt
- start
;
1015 /* get the precision */
1016 spec
->precision
= -1;
1019 if (isdigit(*fmt
)) {
1020 spec
->precision
= skip_atoi(&fmt
);
1021 if (spec
->precision
< 0)
1022 spec
->precision
= 0;
1023 } else if (*fmt
== '*') {
1024 /* it's the next argument */
1025 spec
->type
= FORMAT_TYPE_PRECISION
;
1026 return ++fmt
- start
;
1031 /* get the conversion qualifier */
1032 spec
->qualifier
= -1;
1033 if (*fmt
== 'h' || *fmt
== 'l' || *fmt
== 'L' ||
1034 *fmt
== 'Z' || *fmt
== 'z' || *fmt
== 't') {
1035 spec
->qualifier
= *fmt
++;
1036 if (unlikely(spec
->qualifier
== *fmt
)) {
1037 if (spec
->qualifier
== 'l') {
1038 spec
->qualifier
= 'L';
1040 } else if (spec
->qualifier
== 'h') {
1041 spec
->qualifier
= 'H';
1051 spec
->type
= FORMAT_TYPE_CHAR
;
1052 return ++fmt
- start
;
1055 spec
->type
= FORMAT_TYPE_STR
;
1056 return ++fmt
- start
;
1059 spec
->type
= FORMAT_TYPE_PTR
;
1064 spec
->type
= FORMAT_TYPE_NRCHARS
;
1065 return ++fmt
- start
;
1068 spec
->type
= FORMAT_TYPE_PERCENT_CHAR
;
1069 return ++fmt
- start
;
1071 /* integer number formats - set up the flags and "break" */
1077 spec
->flags
|= SMALL
;
1085 spec
->flags
|= SIGN
;
1090 spec
->type
= FORMAT_TYPE_INVALID
;
1094 if (spec
->qualifier
== 'L')
1095 spec
->type
= FORMAT_TYPE_LONG_LONG
;
1096 else if (spec
->qualifier
== 'l') {
1097 if (spec
->flags
& SIGN
)
1098 spec
->type
= FORMAT_TYPE_LONG
;
1100 spec
->type
= FORMAT_TYPE_ULONG
;
1101 } else if (spec
->qualifier
== 'Z' || spec
->qualifier
== 'z') {
1102 spec
->type
= FORMAT_TYPE_SIZE_T
;
1103 } else if (spec
->qualifier
== 't') {
1104 spec
->type
= FORMAT_TYPE_PTRDIFF
;
1105 } else if (spec
->qualifier
== 'H') {
1106 if (spec
->flags
& SIGN
)
1107 spec
->type
= FORMAT_TYPE_BYTE
;
1109 spec
->type
= FORMAT_TYPE_UBYTE
;
1110 } else if (spec
->qualifier
== 'h') {
1111 if (spec
->flags
& SIGN
)
1112 spec
->type
= FORMAT_TYPE_SHORT
;
1114 spec
->type
= FORMAT_TYPE_USHORT
;
1116 if (spec
->flags
& SIGN
)
1117 spec
->type
= FORMAT_TYPE_INT
;
1119 spec
->type
= FORMAT_TYPE_UINT
;
1122 return ++fmt
- start
;
1126 * vsnprintf - Format a string and place it in a buffer
1127 * @buf: The buffer to place the result into
1128 * @size: The size of the buffer, including the trailing null space
1129 * @fmt: The format string to use
1130 * @args: Arguments for the format string
1132 * This function follows C99 vsnprintf, but has some extensions:
1133 * %pS output the name of a text symbol with offset
1134 * %ps output the name of a text symbol without offset
1135 * %pF output the name of a function pointer with its offset
1136 * %pf output the name of a function pointer without its offset
1137 * %pR output the address range in a struct resource
1140 * The return value is the number of characters which would
1141 * be generated for the given input, excluding the trailing
1142 * '\0', as per ISO C99. If you want to have the exact
1143 * number of characters written into @buf as return value
1144 * (not including the trailing '\0'), use vscnprintf(). If the
1145 * return is greater than or equal to @size, the resulting
1146 * string is truncated.
1148 * Call this function if you are already dealing with a va_list.
1149 * You probably want snprintf() instead.
1151 int vsnprintf(char *buf
, size_t size
, const char *fmt
, va_list args
)
1153 unsigned long long num
;
1156 struct printf_spec spec
= {0};
1158 /* Reject out-of-range values early. Large positive sizes are
1159 used for unknown buffer sizes. */
1160 if (WARN_ON_ONCE((int) size
< 0))
1166 /* Make sure end is always >= buf */
1173 const char *old_fmt
= fmt
;
1175 read
= format_decode(fmt
, &spec
);
1179 switch (spec
.type
) {
1180 case FORMAT_TYPE_NONE
: {
1183 if (copy
> end
- str
)
1185 memcpy(str
, old_fmt
, copy
);
1191 case FORMAT_TYPE_WIDTH
:
1192 spec
.field_width
= va_arg(args
, int);
1195 case FORMAT_TYPE_PRECISION
:
1196 spec
.precision
= va_arg(args
, int);
1199 case FORMAT_TYPE_CHAR
:
1200 if (!(spec
.flags
& LEFT
)) {
1201 while (--spec
.field_width
> 0) {
1208 c
= (unsigned char) va_arg(args
, int);
1212 while (--spec
.field_width
> 0) {
1219 case FORMAT_TYPE_STR
:
1220 str
= string(str
, end
, va_arg(args
, char *), spec
);
1223 case FORMAT_TYPE_PTR
:
1224 str
= pointer(fmt
+1, str
, end
, va_arg(args
, void *),
1226 while (isalnum(*fmt
))
1230 case FORMAT_TYPE_PERCENT_CHAR
:
1236 case FORMAT_TYPE_INVALID
:
1242 case FORMAT_TYPE_NRCHARS
: {
1243 int qualifier
= spec
.qualifier
;
1245 if (qualifier
== 'l') {
1246 long *ip
= va_arg(args
, long *);
1248 } else if (qualifier
== 'Z' ||
1250 size_t *ip
= va_arg(args
, size_t *);
1253 int *ip
= va_arg(args
, int *);
1260 switch (spec
.type
) {
1261 case FORMAT_TYPE_LONG_LONG
:
1262 num
= va_arg(args
, long long);
1264 case FORMAT_TYPE_ULONG
:
1265 num
= va_arg(args
, unsigned long);
1267 case FORMAT_TYPE_LONG
:
1268 num
= va_arg(args
, long);
1270 case FORMAT_TYPE_SIZE_T
:
1271 num
= va_arg(args
, size_t);
1273 case FORMAT_TYPE_PTRDIFF
:
1274 num
= va_arg(args
, ptrdiff_t);
1276 case FORMAT_TYPE_UBYTE
:
1277 num
= (unsigned char) va_arg(args
, int);
1279 case FORMAT_TYPE_BYTE
:
1280 num
= (signed char) va_arg(args
, int);
1282 case FORMAT_TYPE_USHORT
:
1283 num
= (unsigned short) va_arg(args
, int);
1285 case FORMAT_TYPE_SHORT
:
1286 num
= (short) va_arg(args
, int);
1288 case FORMAT_TYPE_INT
:
1289 num
= (int) va_arg(args
, int);
1292 num
= va_arg(args
, unsigned int);
1295 str
= number(str
, end
, num
, spec
);
1306 /* the trailing null byte doesn't count towards the total */
1310 EXPORT_SYMBOL(vsnprintf
);
1313 * vscnprintf - Format a string and place it in a buffer
1314 * @buf: The buffer to place the result into
1315 * @size: The size of the buffer, including the trailing null space
1316 * @fmt: The format string to use
1317 * @args: Arguments for the format string
1319 * The return value is the number of characters which have been written into
1320 * the @buf not including the trailing '\0'. If @size is <= 0 the function
1323 * Call this function if you are already dealing with a va_list.
1324 * You probably want scnprintf() instead.
1326 * See the vsnprintf() documentation for format string extensions over C99.
1328 int vscnprintf(char *buf
, size_t size
, const char *fmt
, va_list args
)
1332 i
=vsnprintf(buf
,size
,fmt
,args
);
1333 return (i
>= size
) ? (size
- 1) : i
;
1335 EXPORT_SYMBOL(vscnprintf
);
1338 * snprintf - Format a string and place it in a buffer
1339 * @buf: The buffer to place the result into
1340 * @size: The size of the buffer, including the trailing null space
1341 * @fmt: The format string to use
1342 * @...: Arguments for the format string
1344 * The return value is the number of characters which would be
1345 * generated for the given input, excluding the trailing null,
1346 * as per ISO C99. If the return is greater than or equal to
1347 * @size, the resulting string is truncated.
1349 * See the vsnprintf() documentation for format string extensions over C99.
1351 int snprintf(char * buf
, size_t size
, const char *fmt
, ...)
1356 va_start(args
, fmt
);
1357 i
=vsnprintf(buf
,size
,fmt
,args
);
1361 EXPORT_SYMBOL(snprintf
);
1364 * scnprintf - Format a string and place it in a buffer
1365 * @buf: The buffer to place the result into
1366 * @size: The size of the buffer, including the trailing null space
1367 * @fmt: The format string to use
1368 * @...: Arguments for the format string
1370 * The return value is the number of characters written into @buf not including
1371 * the trailing '\0'. If @size is <= 0 the function returns 0.
1374 int scnprintf(char * buf
, size_t size
, const char *fmt
, ...)
1379 va_start(args
, fmt
);
1380 i
= vsnprintf(buf
, size
, fmt
, args
);
1382 return (i
>= size
) ? (size
- 1) : i
;
1384 EXPORT_SYMBOL(scnprintf
);
1387 * vsprintf - Format a string and place it in a buffer
1388 * @buf: The buffer to place the result into
1389 * @fmt: The format string to use
1390 * @args: Arguments for the format string
1392 * The function returns the number of characters written
1393 * into @buf. Use vsnprintf() or vscnprintf() in order to avoid
1396 * Call this function if you are already dealing with a va_list.
1397 * You probably want sprintf() instead.
1399 * See the vsnprintf() documentation for format string extensions over C99.
1401 int vsprintf(char *buf
, const char *fmt
, va_list args
)
1403 return vsnprintf(buf
, INT_MAX
, fmt
, args
);
1405 EXPORT_SYMBOL(vsprintf
);
1408 * sprintf - Format a string and place it in a buffer
1409 * @buf: The buffer to place the result into
1410 * @fmt: The format string to use
1411 * @...: Arguments for the format string
1413 * The function returns the number of characters written
1414 * into @buf. Use snprintf() or scnprintf() in order to avoid
1417 * See the vsnprintf() documentation for format string extensions over C99.
1419 int sprintf(char * buf
, const char *fmt
, ...)
1424 va_start(args
, fmt
);
1425 i
=vsnprintf(buf
, INT_MAX
, fmt
, args
);
1429 EXPORT_SYMBOL(sprintf
);
1431 #ifdef CONFIG_BINARY_PRINTF
1434 * vbin_printf() - VA arguments to binary data
1435 * bstr_printf() - Binary data to text string
1439 * vbin_printf - Parse a format string and place args' binary value in a buffer
1440 * @bin_buf: The buffer to place args' binary value
1441 * @size: The size of the buffer(by words(32bits), not characters)
1442 * @fmt: The format string to use
1443 * @args: Arguments for the format string
1445 * The format follows C99 vsnprintf, except %n is ignored, and its argument
1448 * The return value is the number of words(32bits) which would be generated for
1452 * If the return value is greater than @size, the resulting bin_buf is NOT
1453 * valid for bstr_printf().
1455 int vbin_printf(u32
*bin_buf
, size_t size
, const char *fmt
, va_list args
)
1457 struct printf_spec spec
= {0};
1461 str
= (char *)bin_buf
;
1462 end
= (char *)(bin_buf
+ size
);
1464 #define save_arg(type) \
1466 if (sizeof(type) == 8) { \
1467 unsigned long long value; \
1468 str = PTR_ALIGN(str, sizeof(u32)); \
1469 value = va_arg(args, unsigned long long); \
1470 if (str + sizeof(type) <= end) { \
1471 *(u32 *)str = *(u32 *)&value; \
1472 *(u32 *)(str + 4) = *((u32 *)&value + 1); \
1475 unsigned long value; \
1476 str = PTR_ALIGN(str, sizeof(type)); \
1477 value = va_arg(args, int); \
1478 if (str + sizeof(type) <= end) \
1479 *(typeof(type) *)str = (type)value; \
1481 str += sizeof(type); \
1486 read
= format_decode(fmt
, &spec
);
1490 switch (spec
.type
) {
1491 case FORMAT_TYPE_NONE
:
1494 case FORMAT_TYPE_WIDTH
:
1495 case FORMAT_TYPE_PRECISION
:
1499 case FORMAT_TYPE_CHAR
:
1503 case FORMAT_TYPE_STR
: {
1504 const char *save_str
= va_arg(args
, char *);
1506 if ((unsigned long)save_str
> (unsigned long)-PAGE_SIZE
1507 || (unsigned long)save_str
< PAGE_SIZE
)
1508 save_str
= "<NULL>";
1509 len
= strlen(save_str
);
1510 if (str
+ len
+ 1 < end
)
1511 memcpy(str
, save_str
, len
+ 1);
1516 case FORMAT_TYPE_PTR
:
1518 /* skip all alphanumeric pointer suffixes */
1519 while (isalnum(*fmt
))
1523 case FORMAT_TYPE_PERCENT_CHAR
:
1526 case FORMAT_TYPE_INVALID
:
1529 case FORMAT_TYPE_NRCHARS
: {
1530 /* skip %n 's argument */
1531 int qualifier
= spec
.qualifier
;
1533 if (qualifier
== 'l')
1534 skip_arg
= va_arg(args
, long *);
1535 else if (qualifier
== 'Z' || qualifier
== 'z')
1536 skip_arg
= va_arg(args
, size_t *);
1538 skip_arg
= va_arg(args
, int *);
1543 switch (spec
.type
) {
1545 case FORMAT_TYPE_LONG_LONG
:
1546 save_arg(long long);
1548 case FORMAT_TYPE_ULONG
:
1549 case FORMAT_TYPE_LONG
:
1550 save_arg(unsigned long);
1552 case FORMAT_TYPE_SIZE_T
:
1555 case FORMAT_TYPE_PTRDIFF
:
1556 save_arg(ptrdiff_t);
1558 case FORMAT_TYPE_UBYTE
:
1559 case FORMAT_TYPE_BYTE
:
1562 case FORMAT_TYPE_USHORT
:
1563 case FORMAT_TYPE_SHORT
:
1571 return (u32
*)(PTR_ALIGN(str
, sizeof(u32
))) - bin_buf
;
1575 EXPORT_SYMBOL_GPL(vbin_printf
);
1578 * bstr_printf - Format a string from binary arguments and place it in a buffer
1579 * @buf: The buffer to place the result into
1580 * @size: The size of the buffer, including the trailing null space
1581 * @fmt: The format string to use
1582 * @bin_buf: Binary arguments for the format string
1584 * This function like C99 vsnprintf, but the difference is that vsnprintf gets
1585 * arguments from stack, and bstr_printf gets arguments from @bin_buf which is
1586 * a binary buffer that generated by vbin_printf.
1588 * The format follows C99 vsnprintf, but has some extensions:
1589 * see vsnprintf comment for details.
1591 * The return value is the number of characters which would
1592 * be generated for the given input, excluding the trailing
1593 * '\0', as per ISO C99. If you want to have the exact
1594 * number of characters written into @buf as return value
1595 * (not including the trailing '\0'), use vscnprintf(). If the
1596 * return is greater than or equal to @size, the resulting
1597 * string is truncated.
1599 int bstr_printf(char *buf
, size_t size
, const char *fmt
, const u32
*bin_buf
)
1601 unsigned long long num
;
1603 const char *args
= (const char *)bin_buf
;
1605 struct printf_spec spec
= {0};
1607 if (WARN_ON_ONCE((int) size
< 0))
1613 #define get_arg(type) \
1615 typeof(type) value; \
1616 if (sizeof(type) == 8) { \
1617 args = PTR_ALIGN(args, sizeof(u32)); \
1618 *(u32 *)&value = *(u32 *)args; \
1619 *((u32 *)&value + 1) = *(u32 *)(args + 4); \
1621 args = PTR_ALIGN(args, sizeof(type)); \
1622 value = *(typeof(type) *)args; \
1624 args += sizeof(type); \
1628 /* Make sure end is always >= buf */
1636 const char *old_fmt
= fmt
;
1638 read
= format_decode(fmt
, &spec
);
1642 switch (spec
.type
) {
1643 case FORMAT_TYPE_NONE
: {
1646 if (copy
> end
- str
)
1648 memcpy(str
, old_fmt
, copy
);
1654 case FORMAT_TYPE_WIDTH
:
1655 spec
.field_width
= get_arg(int);
1658 case FORMAT_TYPE_PRECISION
:
1659 spec
.precision
= get_arg(int);
1662 case FORMAT_TYPE_CHAR
:
1663 if (!(spec
.flags
& LEFT
)) {
1664 while (--spec
.field_width
> 0) {
1670 c
= (unsigned char) get_arg(char);
1674 while (--spec
.field_width
> 0) {
1681 case FORMAT_TYPE_STR
: {
1682 const char *str_arg
= args
;
1683 size_t len
= strlen(str_arg
);
1685 str
= string(str
, end
, (char *)str_arg
, spec
);
1689 case FORMAT_TYPE_PTR
:
1690 str
= pointer(fmt
+1, str
, end
, get_arg(void *), spec
);
1691 while (isalnum(*fmt
))
1695 case FORMAT_TYPE_PERCENT_CHAR
:
1701 case FORMAT_TYPE_INVALID
:
1707 case FORMAT_TYPE_NRCHARS
:
1712 switch (spec
.type
) {
1714 case FORMAT_TYPE_LONG_LONG
:
1715 num
= get_arg(long long);
1717 case FORMAT_TYPE_ULONG
:
1718 num
= get_arg(unsigned long);
1720 case FORMAT_TYPE_LONG
:
1721 num
= get_arg(unsigned long);
1723 case FORMAT_TYPE_SIZE_T
:
1724 num
= get_arg(size_t);
1726 case FORMAT_TYPE_PTRDIFF
:
1727 num
= get_arg(ptrdiff_t);
1729 case FORMAT_TYPE_UBYTE
:
1730 num
= get_arg(unsigned char);
1732 case FORMAT_TYPE_BYTE
:
1733 num
= get_arg(signed char);
1735 case FORMAT_TYPE_USHORT
:
1736 num
= get_arg(unsigned short);
1738 case FORMAT_TYPE_SHORT
:
1739 num
= get_arg(short);
1741 case FORMAT_TYPE_UINT
:
1742 num
= get_arg(unsigned int);
1748 str
= number(str
, end
, num
, spec
);
1761 /* the trailing null byte doesn't count towards the total */
1764 EXPORT_SYMBOL_GPL(bstr_printf
);
1767 * bprintf - Parse a format string and place args' binary value in a buffer
1768 * @bin_buf: The buffer to place args' binary value
1769 * @size: The size of the buffer(by words(32bits), not characters)
1770 * @fmt: The format string to use
1771 * @...: Arguments for the format string
1773 * The function returns the number of words(u32) written
1776 int bprintf(u32
*bin_buf
, size_t size
, const char *fmt
, ...)
1781 va_start(args
, fmt
);
1782 ret
= vbin_printf(bin_buf
, size
, fmt
, args
);
1786 EXPORT_SYMBOL_GPL(bprintf
);
1788 #endif /* CONFIG_BINARY_PRINTF */
1791 * vsscanf - Unformat a buffer into a list of arguments
1792 * @buf: input buffer
1793 * @fmt: format of buffer
1796 int vsscanf(const char * buf
, const char * fmt
, va_list args
)
1798 const char *str
= buf
;
1807 while(*fmt
&& *str
) {
1808 /* skip any white space in format */
1809 /* white space in format matchs any amount of
1810 * white space, including none, in the input.
1812 if (isspace(*fmt
)) {
1813 while (isspace(*fmt
))
1815 while (isspace(*str
))
1819 /* anything that is not a conversion must match exactly */
1820 if (*fmt
!= '%' && *fmt
) {
1821 if (*fmt
++ != *str
++)
1830 /* skip this conversion.
1831 * advance both strings to next white space
1834 while (!isspace(*fmt
) && *fmt
!= '%' && *fmt
)
1836 while (!isspace(*str
) && *str
)
1841 /* get field width */
1844 field_width
= skip_atoi(&fmt
);
1846 /* get conversion qualifier */
1848 if (*fmt
== 'h' || *fmt
== 'l' || *fmt
== 'L' ||
1849 *fmt
== 'Z' || *fmt
== 'z') {
1851 if (unlikely(qualifier
== *fmt
)) {
1852 if (qualifier
== 'h') {
1855 } else if (qualifier
== 'l') {
1870 char *s
= (char *) va_arg(args
,char*);
1871 if (field_width
== -1)
1875 } while (--field_width
> 0 && *str
);
1881 char *s
= (char *) va_arg(args
, char *);
1882 if(field_width
== -1)
1883 field_width
= INT_MAX
;
1884 /* first, skip leading white space in buffer */
1885 while (isspace(*str
))
1888 /* now copy until next white space */
1889 while (*str
&& !isspace(*str
) && field_width
--) {
1897 /* return number of characters read so far */
1899 int *i
= (int *)va_arg(args
,int*);
1917 /* looking for '%' in str */
1922 /* invalid format; stop here */
1926 /* have some sort of integer conversion.
1927 * first, skip white space in buffer.
1929 while (isspace(*str
))
1933 if (is_sign
&& digit
== '-')
1937 || (base
== 16 && !isxdigit(digit
))
1938 || (base
== 10 && !isdigit(digit
))
1939 || (base
== 8 && (!isdigit(digit
) || digit
> '7'))
1940 || (base
== 0 && !isdigit(digit
)))
1944 case 'H': /* that's 'hh' in format */
1946 signed char *s
= (signed char *) va_arg(args
,signed char *);
1947 *s
= (signed char) simple_strtol(str
,&next
,base
);
1949 unsigned char *s
= (unsigned char *) va_arg(args
, unsigned char *);
1950 *s
= (unsigned char) simple_strtoul(str
, &next
, base
);
1955 short *s
= (short *) va_arg(args
,short *);
1956 *s
= (short) simple_strtol(str
,&next
,base
);
1958 unsigned short *s
= (unsigned short *) va_arg(args
, unsigned short *);
1959 *s
= (unsigned short) simple_strtoul(str
, &next
, base
);
1964 long *l
= (long *) va_arg(args
,long *);
1965 *l
= simple_strtol(str
,&next
,base
);
1967 unsigned long *l
= (unsigned long*) va_arg(args
,unsigned long*);
1968 *l
= simple_strtoul(str
,&next
,base
);
1973 long long *l
= (long long*) va_arg(args
,long long *);
1974 *l
= simple_strtoll(str
,&next
,base
);
1976 unsigned long long *l
= (unsigned long long*) va_arg(args
,unsigned long long*);
1977 *l
= simple_strtoull(str
,&next
,base
);
1983 size_t *s
= (size_t*) va_arg(args
,size_t*);
1984 *s
= (size_t) simple_strtoul(str
,&next
,base
);
1989 int *i
= (int *) va_arg(args
, int*);
1990 *i
= (int) simple_strtol(str
,&next
,base
);
1992 unsigned int *i
= (unsigned int*) va_arg(args
, unsigned int*);
1993 *i
= (unsigned int) simple_strtoul(str
,&next
,base
);
2005 * Now we've come all the way through so either the input string or the
2006 * format ended. In the former case, there can be a %n at the current
2007 * position in the format that needs to be filled.
2009 if (*fmt
== '%' && *(fmt
+ 1) == 'n') {
2010 int *p
= (int *)va_arg(args
, int *);
2016 EXPORT_SYMBOL(vsscanf
);
2019 * sscanf - Unformat a buffer into a list of arguments
2020 * @buf: input buffer
2021 * @fmt: formatting of buffer
2022 * @...: resulting arguments
2024 int sscanf(const char * buf
, const char * fmt
, ...)
2030 i
= vsscanf(buf
,fmt
,args
);
2034 EXPORT_SYMBOL(sscanf
);