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_strtoull - convert a string to an unsigned long 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 long simple_strtoull(const char *cp, char **endp, unsigned int base)
57 unsigned long 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_strtoull);
82 * simple_strtoul - convert a string to an unsigned 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 unsigned long simple_strtoul(const char *cp, char **endp, unsigned int base)
89 return simple_strtoull(cp, endp, base);
91 EXPORT_SYMBOL(simple_strtoul);
94 * simple_strtol - convert a string to a signed long
95 * @cp: The start of the string
96 * @endp: A pointer to the end of the parsed string will be placed here
97 * @base: The number base to use
99 long simple_strtol(const char *cp, char **endp, unsigned int base)
102 return -simple_strtoul(cp + 1, endp, base);
104 return simple_strtoul(cp, endp, base);
106 EXPORT_SYMBOL(simple_strtol);
109 * simple_strtoll - convert a string to a signed long long
110 * @cp: The start of the string
111 * @endp: A pointer to the end of the parsed string will be placed here
112 * @base: The number base to use
114 long long simple_strtoll(const char *cp, char **endp, unsigned int base)
117 return -simple_strtoull(cp + 1, endp, base);
119 return simple_strtoull(cp, endp, base);
121 EXPORT_SYMBOL(simple_strtoll);
124 * strict_strtoul - convert a string to an unsigned long strictly
125 * @cp: The string to be converted
126 * @base: The number base to use
127 * @res: The converted result value
129 * strict_strtoul converts a string to an unsigned long only if the
130 * string is really an unsigned long string, any string containing
131 * any invalid char at the tail will be rejected and -EINVAL is returned,
132 * only a newline char at the tail is acceptible because people generally
133 * change a module parameter in the following way:
135 * echo 1024 > /sys/module/e1000/parameters/copybreak
137 * echo will append a newline to the tail.
139 * It returns 0 if conversion is successful and *res is set to the converted
140 * value, otherwise it returns -EINVAL and *res is set to 0.
142 * simple_strtoul just ignores the successive invalid characters and
143 * return the converted value of prefix part of the string.
145 int strict_strtoul(const char *cp, unsigned int base, unsigned long *res)
156 val = simple_strtoul(cp, &tail, base);
160 if ((*tail == '\0') ||
161 ((len == (size_t)(tail - cp) + 1) && (*tail == '\n'))) {
168 EXPORT_SYMBOL(strict_strtoul);
171 * strict_strtol - convert a string to a long strictly
172 * @cp: The string to be converted
173 * @base: The number base to use
174 * @res: The converted result value
176 * strict_strtol is similiar to strict_strtoul, but it allows the first
177 * character of a string is '-'.
179 * It returns 0 if conversion is successful and *res is set to the converted
180 * value, otherwise it returns -EINVAL and *res is set to 0.
182 int strict_strtol(const char *cp, unsigned int base, long *res)
186 ret = strict_strtoul(cp + 1, base, (unsigned long *)res);
190 ret = strict_strtoul(cp, base, (unsigned long *)res);
195 EXPORT_SYMBOL(strict_strtol);
198 * strict_strtoull - convert a string to an unsigned long long strictly
199 * @cp: The string to be converted
200 * @base: The number base to use
201 * @res: The converted result value
203 * strict_strtoull converts a string to an unsigned long long only if the
204 * string is really an unsigned long long string, any string containing
205 * any invalid char at the tail will be rejected and -EINVAL is returned,
206 * only a newline char at the tail is acceptible because people generally
207 * change a module parameter in the following way:
209 * echo 1024 > /sys/module/e1000/parameters/copybreak
211 * echo will append a newline to the tail of the string.
213 * It returns 0 if conversion is successful and *res is set to the converted
214 * value, otherwise it returns -EINVAL and *res is set to 0.
216 * simple_strtoull just ignores the successive invalid characters and
217 * return the converted value of prefix part of the string.
219 int strict_strtoull(const char *cp, unsigned int base, unsigned long long *res)
222 unsigned long long val;
230 val = simple_strtoull(cp, &tail, base);
233 if ((*tail == '\0') ||
234 ((len == (size_t)(tail - cp) + 1) && (*tail == '\n'))) {
241 EXPORT_SYMBOL(strict_strtoull);
244 * strict_strtoll - convert a string to a long long strictly
245 * @cp: The string to be converted
246 * @base: The number base to use
247 * @res: The converted result value
249 * strict_strtoll is similiar to strict_strtoull, but it allows the first
250 * character of a string is '-'.
252 * It returns 0 if conversion is successful and *res is set to the converted
253 * value, otherwise it returns -EINVAL and *res is set to 0.
255 int strict_strtoll(const char *cp, unsigned int base, long long *res)
259 ret = strict_strtoull(cp + 1, base, (unsigned long long *)res);
263 ret = strict_strtoull(cp, base, (unsigned long long *)res);
268 EXPORT_SYMBOL(strict_strtoll);
270 static noinline_for_stack
271 int skip_atoi(const char **s)
276 i = i*10 + *((*s)++) - '0';
281 /* Decimal conversion is by far the most typical, and is used
282 * for /proc and /sys data. This directly impacts e.g. top performance
283 * with many processes running. We optimize it for speed
285 * http://www.cs.uiowa.edu/~jones/bcd/decimal.html
286 * (with permission from the author, Douglas W. Jones). */
288 /* Formats correctly any integer in [0,99999].
289 * Outputs from one to five digits depending on input.
290 * On i386 gcc 4.1.2 -O2: ~250 bytes of code. */
291 static noinline_for_stack
292 char *put_dec_trunc(char *buf, unsigned q)
294 unsigned d3, d2, d1, d0;
299 d0 = 6*(d3 + d2 + d1) + (q & 0xf);
300 q = (d0 * 0xcd) >> 11;
302 *buf++ = d0 + '0'; /* least significant digit */
303 d1 = q + 9*d3 + 5*d2 + d1;
305 q = (d1 * 0xcd) >> 11;
307 *buf++ = d1 + '0'; /* next digit */
310 if ((d2 != 0) || (d3 != 0)) {
313 *buf++ = d2 + '0'; /* next digit */
317 q = (d3 * 0xcd) >> 11;
319 *buf++ = d3 + '0'; /* next digit */
321 *buf++ = q + '0'; /* most sign. digit */
328 /* Same with if's removed. Always emits five digits */
329 static noinline_for_stack
330 char *put_dec_full(char *buf, unsigned q)
332 /* BTW, if q is in [0,9999], 8-bit ints will be enough, */
333 /* but anyway, gcc produces better code with full-sized ints */
334 unsigned d3, d2, d1, d0;
340 * Possible ways to approx. divide by 10
341 * gcc -O2 replaces multiply with shifts and adds
342 * (x * 0xcd) >> 11: 11001101 - shorter code than * 0x67 (on i386)
343 * (x * 0x67) >> 10: 1100111
344 * (x * 0x34) >> 9: 110100 - same
345 * (x * 0x1a) >> 8: 11010 - same
346 * (x * 0x0d) >> 7: 1101 - same, shortest code (on i386)
348 d0 = 6*(d3 + d2 + d1) + (q & 0xf);
349 q = (d0 * 0xcd) >> 11;
352 d1 = q + 9*d3 + 5*d2 + d1;
353 q = (d1 * 0xcd) >> 11;
363 q = (d3 * 0xcd) >> 11; /* - shorter code */
364 /* q = (d3 * 0x67) >> 10; - would also work */
371 /* No inlining helps gcc to use registers better */
372 static noinline_for_stack
373 char *put_dec(char *buf, unsigned long long num)
378 return put_dec_trunc(buf, num);
379 rem = do_div(num, 100000);
380 buf = put_dec_full(buf, rem);
384 #define ZEROPAD 1 /* pad with zero */
385 #define SIGN 2 /* unsigned/signed long */
386 #define PLUS 4 /* show plus */
387 #define SPACE 8 /* space if plus */
388 #define LEFT 16 /* left justified */
389 #define SMALL 32 /* use lowercase in hex (must be 32 == 0x20) */
390 #define SPECIAL 64 /* prefix hex with "0x", octal with "0" */
393 FORMAT_TYPE_NONE, /* Just a string part */
395 FORMAT_TYPE_PRECISION,
399 FORMAT_TYPE_PERCENT_CHAR,
401 FORMAT_TYPE_LONG_LONG,
416 u8 type; /* format_type enum */
417 u8 flags; /* flags to number() */
418 u8 base; /* number base, 8, 10 or 16 only */
419 u8 qualifier; /* number qualifier, one of 'hHlLtzZ' */
420 s16 field_width; /* width of output field */
421 s16 precision; /* # of digits/chars */
424 static noinline_for_stack
425 char *number(char *buf, char *end, unsigned long long num,
426 struct printf_spec spec)
428 /* we are called with base 8, 10 or 16, only, thus don't need "G..." */
429 static const char digits[16] = "0123456789ABCDEF"; /* "GHIJKLMNOPQRSTUVWXYZ"; */
434 int need_pfx = ((spec.flags & SPECIAL) && spec.base != 10);
437 /* locase = 0 or 0x20. ORing digits or letters with 'locase'
438 * produces same digits or (maybe lowercased) letters */
439 locase = (spec.flags & SMALL);
440 if (spec.flags & LEFT)
441 spec.flags &= ~ZEROPAD;
443 if (spec.flags & SIGN) {
444 if ((signed long long)num < 0) {
446 num = -(signed long long)num;
448 } else if (spec.flags & PLUS) {
451 } else if (spec.flags & SPACE) {
462 /* generate full string in tmp[], in reverse order */
466 /* Generic code, for any base:
468 tmp[i++] = (digits[do_div(num,base)] | locase);
471 else if (spec.base != 10) { /* 8 or 16 */
472 int mask = spec.base - 1;
478 tmp[i++] = (digits[((unsigned char)num) & mask] | locase);
481 } else { /* base 10 */
482 i = put_dec(tmp, num) - tmp;
485 /* printing 100 using %2d gives "100", not "00" */
486 if (i > spec.precision)
488 /* leading space padding */
489 spec.field_width -= spec.precision;
490 if (!(spec.flags & (ZEROPAD+LEFT))) {
491 while (--spec.field_width >= 0) {
503 /* "0x" / "0" prefix */
508 if (spec.base == 16) {
510 *buf = ('X' | locase);
514 /* zero or space padding */
515 if (!(spec.flags & LEFT)) {
516 char c = (spec.flags & ZEROPAD) ? '0' : ' ';
517 while (--spec.field_width >= 0) {
523 /* hmm even more zero padding? */
524 while (i <= --spec.precision) {
529 /* actual digits of result */
535 /* trailing space padding */
536 while (--spec.field_width >= 0) {
545 static noinline_for_stack
546 char *string(char *buf, char *end, const char *s, struct printf_spec spec)
550 if ((unsigned long)s < PAGE_SIZE)
553 len = strnlen(s, spec.precision);
555 if (!(spec.flags & LEFT)) {
556 while (len < spec.field_width--) {
562 for (i = 0; i < len; ++i) {
567 while (len < spec.field_width--) {
576 static noinline_for_stack
577 char *symbol_string(char *buf, char *end, void *ptr,
578 struct printf_spec spec, char ext)
580 unsigned long value = (unsigned long) ptr;
581 #ifdef CONFIG_KALLSYMS
582 char sym[KSYM_SYMBOL_LEN];
583 if (ext != 'f' && ext != 's')
584 sprint_symbol(sym, value);
586 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;
594 return number(buf, end, value, spec);
598 static noinline_for_stack
599 char *resource_string(char *buf, char *end, struct resource *res,
600 struct printf_spec spec, const char *fmt)
602 #ifndef IO_RSRC_PRINTK_SIZE
603 #define IO_RSRC_PRINTK_SIZE 6
606 #ifndef MEM_RSRC_PRINTK_SIZE
607 #define MEM_RSRC_PRINTK_SIZE 10
609 static const struct printf_spec io_spec = {
611 .field_width = IO_RSRC_PRINTK_SIZE,
613 .flags = SPECIAL | SMALL | ZEROPAD,
615 static const struct printf_spec mem_spec = {
617 .field_width = MEM_RSRC_PRINTK_SIZE,
619 .flags = SPECIAL | SMALL | ZEROPAD,
621 static const struct printf_spec bus_spec = {
625 .flags = SMALL | ZEROPAD,
627 static const struct printf_spec dec_spec = {
632 static const struct printf_spec str_spec = {
637 static const struct printf_spec flag_spec = {
640 .flags = SPECIAL | SMALL,
643 /* 32-bit res (sizeof==4): 10 chars in dec, 10 in hex ("0x" + 8)
644 * 64-bit res (sizeof==8): 20 chars in dec, 18 in hex ("0x" + 16) */
645 #define RSRC_BUF_SIZE ((2 * sizeof(resource_size_t)) + 4)
646 #define FLAG_BUF_SIZE (2 * sizeof(res->flags))
647 #define DECODED_BUF_SIZE sizeof("[mem - 64bit pref window disabled]")
648 #define RAW_BUF_SIZE sizeof("[mem - flags 0x]")
649 char sym[max(2*RSRC_BUF_SIZE + DECODED_BUF_SIZE,
650 2*RSRC_BUF_SIZE + FLAG_BUF_SIZE + RAW_BUF_SIZE)];
652 char *p = sym, *pend = sym + sizeof(sym);
653 int decode = (fmt[0] == 'R') ? 1 : 0;
654 const struct printf_spec *specp;
657 if (res->flags & IORESOURCE_IO) {
658 p = string(p, pend, "io ", str_spec);
660 } else if (res->flags & IORESOURCE_MEM) {
661 p = string(p, pend, "mem ", str_spec);
663 } else if (res->flags & IORESOURCE_IRQ) {
664 p = string(p, pend, "irq ", str_spec);
666 } else if (res->flags & IORESOURCE_DMA) {
667 p = string(p, pend, "dma ", str_spec);
669 } else if (res->flags & IORESOURCE_BUS) {
670 p = string(p, pend, "bus ", str_spec);
673 p = string(p, pend, "??? ", str_spec);
677 p = number(p, pend, res->start, *specp);
678 if (res->start != res->end) {
680 p = number(p, pend, res->end, *specp);
683 if (res->flags & IORESOURCE_MEM_64)
684 p = string(p, pend, " 64bit", str_spec);
685 if (res->flags & IORESOURCE_PREFETCH)
686 p = string(p, pend, " pref", str_spec);
687 if (res->flags & IORESOURCE_WINDOW)
688 p = string(p, pend, " window", str_spec);
689 if (res->flags & IORESOURCE_DISABLED)
690 p = string(p, pend, " disabled", str_spec);
692 p = string(p, pend, " flags ", str_spec);
693 p = number(p, pend, res->flags, flag_spec);
698 return string(buf, end, sym, spec);
701 static noinline_for_stack
702 char *mac_address_string(char *buf, char *end, u8 *addr,
703 struct printf_spec spec, const char *fmt)
705 char mac_addr[sizeof("xx:xx:xx:xx:xx:xx")];
710 if (fmt[1] == 'F') { /* FDDI canonical format */
716 for (i = 0; i < 6; i++) {
717 p = pack_hex_byte(p, addr[i]);
718 if (fmt[0] == 'M' && i != 5)
723 return string(buf, end, mac_addr, spec);
726 static noinline_for_stack
727 char *ip4_string(char *p, const u8 *addr, const char *fmt)
730 bool leading_zeros = (fmt[0] == 'i');
755 for (i = 0; i < 4; i++) {
756 char temp[3]; /* hold each IP quad in reverse order */
757 int digits = put_dec_trunc(temp, addr[index]) - temp;
764 /* reverse the digits in the quad */
776 static noinline_for_stack
777 char *ip6_compressed_string(char *p, const char *addr)
780 unsigned char zerolength[8];
785 bool needcolon = false;
789 memcpy(&in6, addr, sizeof(struct in6_addr));
791 useIPv4 = ipv6_addr_v4mapped(&in6) || ipv6_addr_is_isatap(&in6);
793 memset(zerolength, 0, sizeof(zerolength));
800 /* find position of longest 0 run */
801 for (i = 0; i < range; i++) {
802 for (j = i; j < range; j++) {
803 if (in6.s6_addr16[j] != 0)
808 for (i = 0; i < range; i++) {
809 if (zerolength[i] > longest) {
810 longest = zerolength[i];
816 for (i = 0; i < range; i++) {
818 if (needcolon || i == 0)
829 /* hex u16 without leading 0s */
830 word = ntohs(in6.s6_addr16[i]);
835 p = pack_hex_byte(p, hi);
837 *p++ = hex_asc_lo(hi);
838 p = pack_hex_byte(p, lo);
841 p = pack_hex_byte(p, lo);
843 *p++ = hex_asc_lo(lo);
850 p = ip4_string(p, &in6.s6_addr[12], "I4");
857 static noinline_for_stack
858 char *ip6_string(char *p, const char *addr, const char *fmt)
862 for (i = 0; i < 8; i++) {
863 p = pack_hex_byte(p, *addr++);
864 p = pack_hex_byte(p, *addr++);
865 if (fmt[0] == 'I' && i != 7)
873 static noinline_for_stack
874 char *ip6_addr_string(char *buf, char *end, const u8 *addr,
875 struct printf_spec spec, const char *fmt)
877 char ip6_addr[sizeof("xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:255.255.255.255")];
879 if (fmt[0] == 'I' && fmt[2] == 'c')
880 ip6_compressed_string(ip6_addr, addr);
882 ip6_string(ip6_addr, addr, fmt);
884 return string(buf, end, ip6_addr, spec);
887 static noinline_for_stack
888 char *ip4_addr_string(char *buf, char *end, const u8 *addr,
889 struct printf_spec spec, const char *fmt)
891 char ip4_addr[sizeof("255.255.255.255")];
893 ip4_string(ip4_addr, addr, fmt);
895 return string(buf, end, ip4_addr, spec);
898 static noinline_for_stack
899 char *uuid_string(char *buf, char *end, const u8 *addr,
900 struct printf_spec spec, const char *fmt)
902 char uuid[sizeof("xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx")];
905 static const u8 be[16] = {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15};
906 static const u8 le[16] = {3,2,1,0,5,4,7,6,8,9,10,11,12,13,14,15};
907 const u8 *index = be;
912 uc = true; /* fall-through */
921 for (i = 0; i < 16; i++) {
922 p = pack_hex_byte(p, addr[index[i]]);
942 return string(buf, end, uuid, spec);
946 * Show a '%p' thing. A kernel extension is that the '%p' is followed
947 * by an extra set of alphanumeric characters that are extended format
950 * Right now we handle:
952 * - 'F' For symbolic function descriptor pointers with offset
953 * - 'f' For simple symbolic function names without offset
954 * - 'S' For symbolic direct pointers with offset
955 * - 's' For symbolic direct pointers without offset
956 * - 'R' For decoded struct resource, e.g., [mem 0x0-0x1f 64bit pref]
957 * - 'r' For raw struct resource, e.g., [mem 0x0-0x1f flags 0x201]
958 * - 'M' For a 6-byte MAC address, it prints the address in the
959 * usual colon-separated hex notation
960 * - 'm' For a 6-byte MAC address, it prints the hex address without colons
961 * - 'MF' For a 6-byte MAC FDDI address, it prints the address
962 * with a dash-separated hex notation
963 * - 'I' [46] for IPv4/IPv6 addresses printed in the usual way
964 * IPv4 uses dot-separated decimal without leading 0's (1.2.3.4)
965 * IPv6 uses colon separated network-order 16 bit hex with leading 0's
966 * - 'i' [46] for 'raw' IPv4/IPv6 addresses
967 * IPv6 omits the colons (01020304...0f)
968 * IPv4 uses dot-separated decimal with leading 0's (010.123.045.006)
969 * - '[Ii]4[hnbl]' IPv4 addresses in host, network, big or little endian order
970 * - 'I6c' for IPv6 addresses printed as specified by
971 * http://tools.ietf.org/html/draft-ietf-6man-text-addr-representation-00
972 * - 'U' For a 16 byte UUID/GUID, it prints the UUID/GUID in the form
973 * "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
974 * Options for %pU are:
975 * b big endian lower case hex (default)
976 * B big endian UPPER case hex
977 * l little endian lower case hex
978 * L little endian UPPER case hex
979 * big endian output byte order is:
980 * [0][1][2][3]-[4][5]-[6][7]-[8][9]-[10][11][12][13][14][15]
981 * little endian output byte order is:
982 * [3][2][1][0]-[5][4]-[7][6]-[8][9]-[10][11][12][13][14][15]
983 * - 'V' For a struct va_format which contains a format string * and va_list *,
984 * call vsnprintf(->format, *->va_list).
985 * Implements a "recursive vsnprintf".
986 * Do not use this feature without some mechanism to verify the
987 * correctness of the format string and va_list arguments.
989 * Note: The difference between 'S' and 'F' is that on ia64 and ppc64
990 * function pointers are really function descriptors, which contain a
991 * pointer to the real address.
993 static noinline_for_stack
994 char *pointer(const char *fmt, char *buf, char *end, void *ptr,
995 struct printf_spec spec)
998 return string(buf, end, "(null)", spec);
1003 ptr = dereference_function_descriptor(ptr);
1007 return symbol_string(buf, end, ptr, spec, *fmt);
1010 return resource_string(buf, end, ptr, spec, fmt);
1011 case 'M': /* Colon separated: 00:01:02:03:04:05 */
1012 case 'm': /* Contiguous: 000102030405 */
1013 /* [mM]F (FDDI, bit reversed) */
1014 return mac_address_string(buf, end, ptr, spec, fmt);
1015 case 'I': /* Formatted IP supported
1017 * 6: 0001:0203:...:0708
1018 * 6c: 1::708 or 1::1.2.3.4
1020 case 'i': /* Contiguous:
1021 * 4: 001.002.003.004
1026 return ip6_addr_string(buf, end, ptr, spec, fmt);
1028 return ip4_addr_string(buf, end, ptr, spec, fmt);
1032 return uuid_string(buf, end, ptr, spec, fmt);
1034 return buf + vsnprintf(buf, end - buf,
1035 ((struct va_format *)ptr)->fmt,
1036 *(((struct va_format *)ptr)->va));
1038 spec.flags |= SMALL;
1039 if (spec.field_width == -1) {
1040 spec.field_width = 2*sizeof(void *);
1041 spec.flags |= ZEROPAD;
1045 return number(buf, end, (unsigned long) ptr, spec);
1049 * Helper function to decode printf style format.
1050 * Each call decode a token from the format and return the
1051 * number of characters read (or likely the delta where it wants
1052 * to go on the next call).
1053 * The decoded token is returned through the parameters
1055 * 'h', 'l', or 'L' for integer fields
1056 * 'z' support added 23/7/1999 S.H.
1057 * 'z' changed to 'Z' --davidm 1/25/99
1058 * 't' added for ptrdiff_t
1060 * @fmt: the format string
1061 * @type of the token returned
1062 * @flags: various flags such as +, -, # tokens..
1063 * @field_width: overwritten width
1064 * @base: base of the number (octal, hex, ...)
1065 * @precision: precision of a number
1066 * @qualifier: qualifier of a number (long, size_t, ...)
1068 static noinline_for_stack
1069 int format_decode(const char *fmt, struct printf_spec *spec)
1071 const char *start = fmt;
1073 /* we finished early by reading the field width */
1074 if (spec->type == FORMAT_TYPE_WIDTH) {
1075 if (spec->field_width < 0) {
1076 spec->field_width = -spec->field_width;
1077 spec->flags |= LEFT;
1079 spec->type = FORMAT_TYPE_NONE;
1083 /* we finished early by reading the precision */
1084 if (spec->type == FORMAT_TYPE_PRECISION) {
1085 if (spec->precision < 0)
1086 spec->precision = 0;
1088 spec->type = FORMAT_TYPE_NONE;
1093 spec->type = FORMAT_TYPE_NONE;
1095 for (; *fmt ; ++fmt) {
1100 /* Return the current non-format string */
1101 if (fmt != start || !*fmt)
1107 while (1) { /* this also skips first '%' */
1113 case '-': spec->flags |= LEFT; break;
1114 case '+': spec->flags |= PLUS; break;
1115 case ' ': spec->flags |= SPACE; break;
1116 case '#': spec->flags |= SPECIAL; break;
1117 case '0': spec->flags |= ZEROPAD; break;
1118 default: found = false;
1125 /* get field width */
1126 spec->field_width = -1;
1129 spec->field_width = skip_atoi(&fmt);
1130 else if (*fmt == '*') {
1131 /* it's the next argument */
1132 spec->type = FORMAT_TYPE_WIDTH;
1133 return ++fmt - start;
1137 /* get the precision */
1138 spec->precision = -1;
1141 if (isdigit(*fmt)) {
1142 spec->precision = skip_atoi(&fmt);
1143 if (spec->precision < 0)
1144 spec->precision = 0;
1145 } else if (*fmt == '*') {
1146 /* it's the next argument */
1147 spec->type = FORMAT_TYPE_PRECISION;
1148 return ++fmt - start;
1153 /* get the conversion qualifier */
1154 spec->qualifier = -1;
1155 if (*fmt == 'h' || TOLOWER(*fmt) == 'l' ||
1156 TOLOWER(*fmt) == 'z' || *fmt == 't') {
1157 spec->qualifier = *fmt++;
1158 if (unlikely(spec->qualifier == *fmt)) {
1159 if (spec->qualifier == 'l') {
1160 spec->qualifier = 'L';
1162 } else if (spec->qualifier == 'h') {
1163 spec->qualifier = 'H';
1173 spec->type = FORMAT_TYPE_CHAR;
1174 return ++fmt - start;
1177 spec->type = FORMAT_TYPE_STR;
1178 return ++fmt - start;
1181 spec->type = FORMAT_TYPE_PTR;
1186 spec->type = FORMAT_TYPE_NRCHARS;
1187 return ++fmt - start;
1190 spec->type = FORMAT_TYPE_PERCENT_CHAR;
1191 return ++fmt - start;
1193 /* integer number formats - set up the flags and "break" */
1199 spec->flags |= SMALL;
1207 spec->flags |= SIGN;
1212 spec->type = FORMAT_TYPE_INVALID;
1216 if (spec->qualifier == 'L')
1217 spec->type = FORMAT_TYPE_LONG_LONG;
1218 else if (spec->qualifier == 'l') {
1219 if (spec->flags & SIGN)
1220 spec->type = FORMAT_TYPE_LONG;
1222 spec->type = FORMAT_TYPE_ULONG;
1223 } else if (TOLOWER(spec->qualifier) == 'z') {
1224 spec->type = FORMAT_TYPE_SIZE_T;
1225 } else if (spec->qualifier == 't') {
1226 spec->type = FORMAT_TYPE_PTRDIFF;
1227 } else if (spec->qualifier == 'H') {
1228 if (spec->flags & SIGN)
1229 spec->type = FORMAT_TYPE_BYTE;
1231 spec->type = FORMAT_TYPE_UBYTE;
1232 } else if (spec->qualifier == 'h') {
1233 if (spec->flags & SIGN)
1234 spec->type = FORMAT_TYPE_SHORT;
1236 spec->type = FORMAT_TYPE_USHORT;
1238 if (spec->flags & SIGN)
1239 spec->type = FORMAT_TYPE_INT;
1241 spec->type = FORMAT_TYPE_UINT;
1244 return ++fmt - start;
1248 * vsnprintf - Format a string and place it in a buffer
1249 * @buf: The buffer to place the result into
1250 * @size: The size of the buffer, including the trailing null space
1251 * @fmt: The format string to use
1252 * @args: Arguments for the format string
1254 * This function follows C99 vsnprintf, but has some extensions:
1255 * %pS output the name of a text symbol with offset
1256 * %ps output the name of a text symbol without offset
1257 * %pF output the name of a function pointer with its offset
1258 * %pf output the name of a function pointer without its offset
1259 * %pR output the address range in a struct resource with decoded flags
1260 * %pr output the address range in a struct resource with raw flags
1261 * %pM output a 6-byte MAC address with colons
1262 * %pm output a 6-byte MAC address without colons
1263 * %pI4 print an IPv4 address without leading zeros
1264 * %pi4 print an IPv4 address with leading zeros
1265 * %pI6 print an IPv6 address with colons
1266 * %pi6 print an IPv6 address without colons
1267 * %pI6c print an IPv6 address as specified by
1268 * http://tools.ietf.org/html/draft-ietf-6man-text-addr-representation-00
1269 * %pU[bBlL] print a UUID/GUID in big or little endian using lower or upper
1273 * The return value is the number of characters which would
1274 * be generated for the given input, excluding the trailing
1275 * '\0', as per ISO C99. If you want to have the exact
1276 * number of characters written into @buf as return value
1277 * (not including the trailing '\0'), use vscnprintf(). If the
1278 * return is greater than or equal to @size, the resulting
1279 * string is truncated.
1281 * Call this function if you are already dealing with a va_list.
1282 * You probably want snprintf() instead.
1284 int vsnprintf(char *buf, size_t size, const char *fmt, va_list args)
1286 unsigned long long num;
1288 struct printf_spec spec = {0};
1290 /* Reject out-of-range values early. Large positive sizes are
1291 used for unknown buffer sizes. */
1292 if (WARN_ON_ONCE((int) size < 0))
1298 /* Make sure end is always >= buf */
1305 const char *old_fmt = fmt;
1306 int read = format_decode(fmt, &spec);
1310 switch (spec.type) {
1311 case FORMAT_TYPE_NONE: {
1314 if (copy > end - str)
1316 memcpy(str, old_fmt, copy);
1322 case FORMAT_TYPE_WIDTH:
1323 spec.field_width = va_arg(args, int);
1326 case FORMAT_TYPE_PRECISION:
1327 spec.precision = va_arg(args, int);
1330 case FORMAT_TYPE_CHAR: {
1333 if (!(spec.flags & LEFT)) {
1334 while (--spec.field_width > 0) {
1341 c = (unsigned char) va_arg(args, int);
1345 while (--spec.field_width > 0) {
1353 case FORMAT_TYPE_STR:
1354 str = string(str, end, va_arg(args, char *), spec);
1357 case FORMAT_TYPE_PTR:
1358 str = pointer(fmt+1, str, end, va_arg(args, void *),
1360 while (isalnum(*fmt))
1364 case FORMAT_TYPE_PERCENT_CHAR:
1370 case FORMAT_TYPE_INVALID:
1376 case FORMAT_TYPE_NRCHARS: {
1377 u8 qualifier = spec.qualifier;
1379 if (qualifier == 'l') {
1380 long *ip = va_arg(args, long *);
1382 } else if (TOLOWER(qualifier) == 'z') {
1383 size_t *ip = va_arg(args, size_t *);
1386 int *ip = va_arg(args, int *);
1393 switch (spec.type) {
1394 case FORMAT_TYPE_LONG_LONG:
1395 num = va_arg(args, long long);
1397 case FORMAT_TYPE_ULONG:
1398 num = va_arg(args, unsigned long);
1400 case FORMAT_TYPE_LONG:
1401 num = va_arg(args, long);
1403 case FORMAT_TYPE_SIZE_T:
1404 num = va_arg(args, size_t);
1406 case FORMAT_TYPE_PTRDIFF:
1407 num = va_arg(args, ptrdiff_t);
1409 case FORMAT_TYPE_UBYTE:
1410 num = (unsigned char) va_arg(args, int);
1412 case FORMAT_TYPE_BYTE:
1413 num = (signed char) va_arg(args, int);
1415 case FORMAT_TYPE_USHORT:
1416 num = (unsigned short) va_arg(args, int);
1418 case FORMAT_TYPE_SHORT:
1419 num = (short) va_arg(args, int);
1421 case FORMAT_TYPE_INT:
1422 num = (int) va_arg(args, int);
1425 num = va_arg(args, unsigned int);
1428 str = number(str, end, num, spec);
1439 /* the trailing null byte doesn't count towards the total */
1443 EXPORT_SYMBOL(vsnprintf);
1446 * vscnprintf - Format a string and place it in a buffer
1447 * @buf: The buffer to place the result into
1448 * @size: The size of the buffer, including the trailing null space
1449 * @fmt: The format string to use
1450 * @args: Arguments for the format string
1452 * The return value is the number of characters which have been written into
1453 * the @buf not including the trailing '\0'. If @size is <= 0 the function
1456 * Call this function if you are already dealing with a va_list.
1457 * You probably want scnprintf() instead.
1459 * See the vsnprintf() documentation for format string extensions over C99.
1461 int vscnprintf(char *buf, size_t size, const char *fmt, va_list args)
1465 i = vsnprintf(buf, size, fmt, args);
1467 return (i >= size) ? (size - 1) : i;
1469 EXPORT_SYMBOL(vscnprintf);
1472 * snprintf - Format a string and place it in a buffer
1473 * @buf: The buffer to place the result into
1474 * @size: The size of the buffer, including the trailing null space
1475 * @fmt: The format string to use
1476 * @...: Arguments for the format string
1478 * The return value is the number of characters which would be
1479 * generated for the given input, excluding the trailing null,
1480 * as per ISO C99. If the return is greater than or equal to
1481 * @size, the resulting string is truncated.
1483 * See the vsnprintf() documentation for format string extensions over C99.
1485 int snprintf(char *buf, size_t size, const char *fmt, ...)
1490 va_start(args, fmt);
1491 i = vsnprintf(buf, size, fmt, args);
1496 EXPORT_SYMBOL(snprintf);
1499 * scnprintf - Format a string and place it in a buffer
1500 * @buf: The buffer to place the result into
1501 * @size: The size of the buffer, including the trailing null space
1502 * @fmt: The format string to use
1503 * @...: Arguments for the format string
1505 * The return value is the number of characters written into @buf not including
1506 * the trailing '\0'. If @size is <= 0 the function returns 0.
1509 int scnprintf(char *buf, size_t size, const char *fmt, ...)
1514 va_start(args, fmt);
1515 i = vsnprintf(buf, size, fmt, args);
1518 return (i >= size) ? (size - 1) : i;
1520 EXPORT_SYMBOL(scnprintf);
1523 * vsprintf - Format a string and place it in a buffer
1524 * @buf: The buffer to place the result into
1525 * @fmt: The format string to use
1526 * @args: Arguments for the format string
1528 * The function returns the number of characters written
1529 * into @buf. Use vsnprintf() or vscnprintf() in order to avoid
1532 * Call this function if you are already dealing with a va_list.
1533 * You probably want sprintf() instead.
1535 * See the vsnprintf() documentation for format string extensions over C99.
1537 int vsprintf(char *buf, const char *fmt, va_list args)
1539 return vsnprintf(buf, INT_MAX, fmt, args);
1541 EXPORT_SYMBOL(vsprintf);
1544 * sprintf - Format a string and place it in a buffer
1545 * @buf: The buffer to place the result into
1546 * @fmt: The format string to use
1547 * @...: Arguments for the format string
1549 * The function returns the number of characters written
1550 * into @buf. Use snprintf() or scnprintf() in order to avoid
1553 * See the vsnprintf() documentation for format string extensions over C99.
1555 int sprintf(char *buf, const char *fmt, ...)
1560 va_start(args, fmt);
1561 i = vsnprintf(buf, INT_MAX, fmt, args);
1566 EXPORT_SYMBOL(sprintf);
1568 #ifdef CONFIG_BINARY_PRINTF
1571 * vbin_printf() - VA arguments to binary data
1572 * bstr_printf() - Binary data to text string
1576 * vbin_printf - Parse a format string and place args' binary value in a buffer
1577 * @bin_buf: The buffer to place args' binary value
1578 * @size: The size of the buffer(by words(32bits), not characters)
1579 * @fmt: The format string to use
1580 * @args: Arguments for the format string
1582 * The format follows C99 vsnprintf, except %n is ignored, and its argument
1585 * The return value is the number of words(32bits) which would be generated for
1589 * If the return value is greater than @size, the resulting bin_buf is NOT
1590 * valid for bstr_printf().
1592 int vbin_printf(u32 *bin_buf, size_t size, const char *fmt, va_list args)
1594 struct printf_spec spec = {0};
1597 str = (char *)bin_buf;
1598 end = (char *)(bin_buf + size);
1600 #define save_arg(type) \
1602 if (sizeof(type) == 8) { \
1603 unsigned long long value; \
1604 str = PTR_ALIGN(str, sizeof(u32)); \
1605 value = va_arg(args, unsigned long long); \
1606 if (str + sizeof(type) <= end) { \
1607 *(u32 *)str = *(u32 *)&value; \
1608 *(u32 *)(str + 4) = *((u32 *)&value + 1); \
1611 unsigned long value; \
1612 str = PTR_ALIGN(str, sizeof(type)); \
1613 value = va_arg(args, int); \
1614 if (str + sizeof(type) <= end) \
1615 *(typeof(type) *)str = (type)value; \
1617 str += sizeof(type); \
1621 int read = format_decode(fmt, &spec);
1625 switch (spec.type) {
1626 case FORMAT_TYPE_NONE:
1627 case FORMAT_TYPE_INVALID:
1628 case FORMAT_TYPE_PERCENT_CHAR:
1631 case FORMAT_TYPE_WIDTH:
1632 case FORMAT_TYPE_PRECISION:
1636 case FORMAT_TYPE_CHAR:
1640 case FORMAT_TYPE_STR: {
1641 const char *save_str = va_arg(args, char *);
1644 if ((unsigned long)save_str > (unsigned long)-PAGE_SIZE
1645 || (unsigned long)save_str < PAGE_SIZE)
1646 save_str = "(null)";
1647 len = strlen(save_str) + 1;
1648 if (str + len < end)
1649 memcpy(str, save_str, len);
1654 case FORMAT_TYPE_PTR:
1656 /* skip all alphanumeric pointer suffixes */
1657 while (isalnum(*fmt))
1661 case FORMAT_TYPE_NRCHARS: {
1662 /* skip %n 's argument */
1663 u8 qualifier = spec.qualifier;
1665 if (qualifier == 'l')
1666 skip_arg = va_arg(args, long *);
1667 else if (TOLOWER(qualifier) == 'z')
1668 skip_arg = va_arg(args, size_t *);
1670 skip_arg = va_arg(args, int *);
1675 switch (spec.type) {
1677 case FORMAT_TYPE_LONG_LONG:
1678 save_arg(long long);
1680 case FORMAT_TYPE_ULONG:
1681 case FORMAT_TYPE_LONG:
1682 save_arg(unsigned long);
1684 case FORMAT_TYPE_SIZE_T:
1687 case FORMAT_TYPE_PTRDIFF:
1688 save_arg(ptrdiff_t);
1690 case FORMAT_TYPE_UBYTE:
1691 case FORMAT_TYPE_BYTE:
1694 case FORMAT_TYPE_USHORT:
1695 case FORMAT_TYPE_SHORT:
1704 return (u32 *)(PTR_ALIGN(str, sizeof(u32))) - bin_buf;
1707 EXPORT_SYMBOL_GPL(vbin_printf);
1710 * bstr_printf - Format a string from binary arguments and place it in a buffer
1711 * @buf: The buffer to place the result into
1712 * @size: The size of the buffer, including the trailing null space
1713 * @fmt: The format string to use
1714 * @bin_buf: Binary arguments for the format string
1716 * This function like C99 vsnprintf, but the difference is that vsnprintf gets
1717 * arguments from stack, and bstr_printf gets arguments from @bin_buf which is
1718 * a binary buffer that generated by vbin_printf.
1720 * The format follows C99 vsnprintf, but has some extensions:
1721 * see vsnprintf comment for details.
1723 * The return value is the number of characters which would
1724 * be generated for the given input, excluding the trailing
1725 * '\0', as per ISO C99. If you want to have the exact
1726 * number of characters written into @buf as return value
1727 * (not including the trailing '\0'), use vscnprintf(). If the
1728 * return is greater than or equal to @size, the resulting
1729 * string is truncated.
1731 int bstr_printf(char *buf, size_t size, const char *fmt, const u32 *bin_buf)
1733 struct printf_spec spec = {0};
1735 const char *args = (const char *)bin_buf;
1737 if (WARN_ON_ONCE((int) size < 0))
1743 #define get_arg(type) \
1745 typeof(type) value; \
1746 if (sizeof(type) == 8) { \
1747 args = PTR_ALIGN(args, sizeof(u32)); \
1748 *(u32 *)&value = *(u32 *)args; \
1749 *((u32 *)&value + 1) = *(u32 *)(args + 4); \
1751 args = PTR_ALIGN(args, sizeof(type)); \
1752 value = *(typeof(type) *)args; \
1754 args += sizeof(type); \
1758 /* Make sure end is always >= buf */
1765 const char *old_fmt = fmt;
1766 int read = format_decode(fmt, &spec);
1770 switch (spec.type) {
1771 case FORMAT_TYPE_NONE: {
1774 if (copy > end - str)
1776 memcpy(str, old_fmt, copy);
1782 case FORMAT_TYPE_WIDTH:
1783 spec.field_width = get_arg(int);
1786 case FORMAT_TYPE_PRECISION:
1787 spec.precision = get_arg(int);
1790 case FORMAT_TYPE_CHAR: {
1793 if (!(spec.flags & LEFT)) {
1794 while (--spec.field_width > 0) {
1800 c = (unsigned char) get_arg(char);
1804 while (--spec.field_width > 0) {
1812 case FORMAT_TYPE_STR: {
1813 const char *str_arg = args;
1814 args += strlen(str_arg) + 1;
1815 str = string(str, end, (char *)str_arg, spec);
1819 case FORMAT_TYPE_PTR:
1820 str = pointer(fmt+1, str, end, get_arg(void *), spec);
1821 while (isalnum(*fmt))
1825 case FORMAT_TYPE_PERCENT_CHAR:
1826 case FORMAT_TYPE_INVALID:
1832 case FORMAT_TYPE_NRCHARS:
1837 unsigned long long num;
1839 switch (spec.type) {
1841 case FORMAT_TYPE_LONG_LONG:
1842 num = get_arg(long long);
1844 case FORMAT_TYPE_ULONG:
1845 case FORMAT_TYPE_LONG:
1846 num = get_arg(unsigned long);
1848 case FORMAT_TYPE_SIZE_T:
1849 num = get_arg(size_t);
1851 case FORMAT_TYPE_PTRDIFF:
1852 num = get_arg(ptrdiff_t);
1854 case FORMAT_TYPE_UBYTE:
1855 num = get_arg(unsigned char);
1857 case FORMAT_TYPE_BYTE:
1858 num = get_arg(signed char);
1860 case FORMAT_TYPE_USHORT:
1861 num = get_arg(unsigned short);
1863 case FORMAT_TYPE_SHORT:
1864 num = get_arg(short);
1866 case FORMAT_TYPE_UINT:
1867 num = get_arg(unsigned int);
1873 str = number(str, end, num, spec);
1875 } /* switch(spec.type) */
1887 /* the trailing null byte doesn't count towards the total */
1890 EXPORT_SYMBOL_GPL(bstr_printf);
1893 * bprintf - Parse a format string and place args' binary value in a buffer
1894 * @bin_buf: The buffer to place args' binary value
1895 * @size: The size of the buffer(by words(32bits), not characters)
1896 * @fmt: The format string to use
1897 * @...: Arguments for the format string
1899 * The function returns the number of words(u32) written
1902 int bprintf(u32 *bin_buf, size_t size, const char *fmt, ...)
1907 va_start(args, fmt);
1908 ret = vbin_printf(bin_buf, size, fmt, args);
1913 EXPORT_SYMBOL_GPL(bprintf);
1915 #endif /* CONFIG_BINARY_PRINTF */
1918 * vsscanf - Unformat a buffer into a list of arguments
1919 * @buf: input buffer
1920 * @fmt: format of buffer
1923 int vsscanf(const char *buf, const char *fmt, va_list args)
1925 const char *str = buf;
1934 while (*fmt && *str) {
1935 /* skip any white space in format */
1936 /* white space in format matchs any amount of
1937 * white space, including none, in the input.
1939 if (isspace(*fmt)) {
1940 fmt = skip_spaces(++fmt);
1941 str = skip_spaces(str);
1944 /* anything that is not a conversion must match exactly */
1945 if (*fmt != '%' && *fmt) {
1946 if (*fmt++ != *str++)
1955 /* skip this conversion.
1956 * advance both strings to next white space
1959 while (!isspace(*fmt) && *fmt != '%' && *fmt)
1961 while (!isspace(*str) && *str)
1966 /* get field width */
1969 field_width = skip_atoi(&fmt);
1971 /* get conversion qualifier */
1973 if (*fmt == 'h' || TOLOWER(*fmt) == 'l' ||
1974 TOLOWER(*fmt) == 'z') {
1976 if (unlikely(qualifier == *fmt)) {
1977 if (qualifier == 'h') {
1980 } else if (qualifier == 'l') {
1996 char *s = (char *)va_arg(args, char*);
1997 if (field_width == -1)
2001 } while (--field_width > 0 && *str);
2007 char *s = (char *)va_arg(args, char *);
2008 if (field_width == -1)
2009 field_width = SHRT_MAX;
2010 /* first, skip leading white space in buffer */
2011 str = skip_spaces(str);
2013 /* now copy until next white space */
2014 while (*str && !isspace(*str) && field_width--)
2021 /* return number of characters read so far */
2023 int *i = (int *)va_arg(args, int*);
2041 /* looking for '%' in str */
2046 /* invalid format; stop here */
2050 /* have some sort of integer conversion.
2051 * first, skip white space in buffer.
2053 str = skip_spaces(str);
2056 if (is_sign && digit == '-')
2060 || (base == 16 && !isxdigit(digit))
2061 || (base == 10 && !isdigit(digit))
2062 || (base == 8 && (!isdigit(digit) || digit > '7'))
2063 || (base == 0 && !isdigit(digit)))
2066 switch (qualifier) {
2067 case 'H': /* that's 'hh' in format */
2069 signed char *s = (signed char *)va_arg(args, signed char *);
2070 *s = (signed char)simple_strtol(str, &next, base);
2072 unsigned char *s = (unsigned char *)va_arg(args, unsigned char *);
2073 *s = (unsigned char)simple_strtoul(str, &next, base);
2078 short *s = (short *)va_arg(args, short *);
2079 *s = (short)simple_strtol(str, &next, base);
2081 unsigned short *s = (unsigned short *)va_arg(args, unsigned short *);
2082 *s = (unsigned short)simple_strtoul(str, &next, base);
2087 long *l = (long *)va_arg(args, long *);
2088 *l = simple_strtol(str, &next, base);
2090 unsigned long *l = (unsigned long *)va_arg(args, unsigned long *);
2091 *l = simple_strtoul(str, &next, base);
2096 long long *l = (long long *)va_arg(args, long long *);
2097 *l = simple_strtoll(str, &next, base);
2099 unsigned long long *l = (unsigned long long *)va_arg(args, unsigned long long *);
2100 *l = simple_strtoull(str, &next, base);
2106 size_t *s = (size_t *)va_arg(args, size_t *);
2107 *s = (size_t)simple_strtoul(str, &next, base);
2112 int *i = (int *)va_arg(args, int *);
2113 *i = (int)simple_strtol(str, &next, base);
2115 unsigned int *i = (unsigned int *)va_arg(args, unsigned int*);
2116 *i = (unsigned int)simple_strtoul(str, &next, base);
2128 * Now we've come all the way through so either the input string or the
2129 * format ended. In the former case, there can be a %n at the current
2130 * position in the format that needs to be filled.
2132 if (*fmt == '%' && *(fmt + 1) == 'n') {
2133 int *p = (int *)va_arg(args, int *);
2139 EXPORT_SYMBOL(vsscanf);
2142 * sscanf - Unformat a buffer into a list of arguments
2143 * @buf: input buffer
2144 * @fmt: formatting of buffer
2145 * @...: resulting arguments
2147 int sscanf(const char *buf, const char *fmt, ...)
2152 va_start(args, fmt);
2153 i = vsscanf(buf, fmt, args);
2158 EXPORT_SYMBOL(sscanf);