]> git.karo-electronics.de Git - karo-tx-linux.git/blob - lib/vsprintf.c
877a50301428ff772f0703da9ce2e23fea30e9f9
[karo-tx-linux.git] / lib / vsprintf.c
1 /*
2  *  linux/lib/vsprintf.c
3  *
4  *  Copyright (C) 1991, 1992  Linus Torvalds
5  */
6
7 /* vsprintf.c -- Lars Wirzenius & Linus Torvalds. */
8 /*
9  * Wirzenius wrote this portably, Torvalds fucked it up :-)
10  */
11
12 /*
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
17  */
18
19 #include <stdarg.h>
20 #include <linux/module.h>       /* for KSYM_SYMBOL_LEN */
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>
29
30 #include <asm/page.h>           /* for PAGE_SIZE */
31 #include <asm/div64.h>
32 #include <asm/sections.h>       /* for dereference_function_descriptor() */
33
34 #include "kstrtox.h"
35
36 /**
37  * simple_strtoull - convert a string to an unsigned long long
38  * @cp: The start of the string
39  * @endp: A pointer to the end of the parsed string will be placed here
40  * @base: The number base to use
41  */
42 unsigned long long simple_strtoull(const char *cp, char **endp, unsigned int base)
43 {
44         unsigned long long result;
45         unsigned int rv;
46
47         cp = _parse_integer_fixup_radix(cp, &base);
48         rv = _parse_integer(cp, base, &result);
49         /* FIXME */
50         cp += (rv & ~KSTRTOX_OVERFLOW);
51
52         if (endp)
53                 *endp = (char *)cp;
54
55         return result;
56 }
57 EXPORT_SYMBOL(simple_strtoull);
58
59 /**
60  * simple_strtoul - convert a string to an unsigned long
61  * @cp: The start of the string
62  * @endp: A pointer to the end of the parsed string will be placed here
63  * @base: The number base to use
64  */
65 unsigned long simple_strtoul(const char *cp, char **endp, unsigned int base)
66 {
67         return simple_strtoull(cp, endp, base);
68 }
69 EXPORT_SYMBOL(simple_strtoul);
70
71 /**
72  * simple_strtol - convert a string to a signed long
73  * @cp: The start of the string
74  * @endp: A pointer to the end of the parsed string will be placed here
75  * @base: The number base to use
76  */
77 long simple_strtol(const char *cp, char **endp, unsigned int base)
78 {
79         if (*cp == '-')
80                 return -simple_strtoul(cp + 1, endp, base);
81
82         return simple_strtoul(cp, endp, base);
83 }
84 EXPORT_SYMBOL(simple_strtol);
85
86 /**
87  * simple_strtoll - convert a string to a signed long long
88  * @cp: The start of the string
89  * @endp: A pointer to the end of the parsed string will be placed here
90  * @base: The number base to use
91  */
92 long long simple_strtoll(const char *cp, char **endp, unsigned int base)
93 {
94         if (*cp == '-')
95                 return -simple_strtoull(cp + 1, endp, base);
96
97         return simple_strtoull(cp, endp, base);
98 }
99 EXPORT_SYMBOL(simple_strtoll);
100
101 static noinline_for_stack
102 int skip_atoi(const char **s)
103 {
104         int i = 0;
105
106         while (isdigit(**s))
107                 i = i*10 + *((*s)++) - '0';
108
109         return i;
110 }
111
112 /* Decimal conversion is by far the most typical, and is used
113  * for /proc and /sys data. This directly impacts e.g. top performance
114  * with many processes running. We optimize it for speed
115  * using ideas described at <http://www.cs.uiowa.edu/~jones/bcd/divide.html>
116  * (with permission from the author, Douglas W. Jones).
117  */
118
119 #if BITS_PER_LONG != 32 || BITS_PER_LONG_LONG != 64
120 /* Formats correctly any integer in [0, 999999999] */
121 static noinline_for_stack
122 char *put_dec_full9(char *buf, unsigned q)
123 {
124         unsigned r;
125
126         /* Possible ways to approx. divide by 10
127          * (x * 0x1999999a) >> 32 x < 1073741829 (multiply must be 64-bit)
128          * (x * 0xcccd) >> 19     x <      81920 (x < 262149 when 64-bit mul)
129          * (x * 0x6667) >> 18     x <      43699
130          * (x * 0x3334) >> 17     x <      16389
131          * (x * 0x199a) >> 16     x <      16389
132          * (x * 0x0ccd) >> 15     x <      16389
133          * (x * 0x0667) >> 14     x <       2739
134          * (x * 0x0334) >> 13     x <       1029
135          * (x * 0x019a) >> 12     x <       1029
136          * (x * 0x00cd) >> 11     x <       1029 shorter code than * 0x67 (on i386)
137          * (x * 0x0067) >> 10     x <        179
138          * (x * 0x0034) >>  9     x <         69 same
139          * (x * 0x001a) >>  8     x <         69 same
140          * (x * 0x000d) >>  7     x <         69 same, shortest code (on i386)
141          * (x * 0x0007) >>  6     x <         19
142          * See <http://www.cs.uiowa.edu/~jones/bcd/divide.html>
143          */
144         r      = (q * (uint64_t)0x1999999a) >> 32;
145         *buf++ = (q - 10 * r) + '0'; /* 1 */
146         q      = (r * (uint64_t)0x1999999a) >> 32;
147         *buf++ = (r - 10 * q) + '0'; /* 2 */
148         r      = (q * (uint64_t)0x1999999a) >> 32;
149         *buf++ = (q - 10 * r) + '0'; /* 3 */
150         q      = (r * (uint64_t)0x1999999a) >> 32;
151         *buf++ = (r - 10 * q) + '0'; /* 4 */
152         r      = (q * (uint64_t)0x1999999a) >> 32;
153         *buf++ = (q - 10 * r) + '0'; /* 5 */
154         /* Now value is under 10000, can avoid 64-bit multiply */
155         q      = (r * 0x199a) >> 16;
156         *buf++ = (r - 10 * q)  + '0'; /* 6 */
157         r      = (q * 0xcd) >> 11;
158         *buf++ = (q - 10 * r)  + '0'; /* 7 */
159         q      = (r * 0xcd) >> 11;
160         *buf++ = (r - 10 * q) + '0'; /* 8 */
161         *buf++ = q + '0'; /* 9 */
162         return buf;
163 }
164 #endif
165
166 /* Similar to above but do not pad with zeros.
167  * Code can be easily arranged to print 9 digits too, but our callers
168  * always call put_dec_full9() instead when the number has 9 decimal digits.
169  */
170 static noinline_for_stack
171 char *put_dec_trunc8(char *buf, unsigned r)
172 {
173         unsigned q;
174
175         /* Copy of previous function's body with added early returns */
176         q      = (r * (uint64_t)0x1999999a) >> 32;
177         *buf++ = (r - 10 * q) + '0'; /* 2 */
178         if (q == 0) return buf;
179         r      = (q * (uint64_t)0x1999999a) >> 32;
180         *buf++ = (q - 10 * r) + '0'; /* 3 */
181         if (r == 0) return buf;
182         q      = (r * (uint64_t)0x1999999a) >> 32;
183         *buf++ = (r - 10 * q) + '0'; /* 4 */
184         if (q == 0) return buf;
185         r      = (q * (uint64_t)0x1999999a) >> 32;
186         *buf++ = (q - 10 * r) + '0'; /* 5 */
187         if (r == 0) return buf;
188         q      = (r * 0x199a) >> 16;
189         *buf++ = (r - 10 * q)  + '0'; /* 6 */
190         if (q == 0) return buf;
191         r      = (q * 0xcd) >> 11;
192         *buf++ = (q - 10 * r)  + '0'; /* 7 */
193         if (r == 0) return buf;
194         q      = (r * 0xcd) >> 11;
195         *buf++ = (r - 10 * q) + '0'; /* 8 */
196         if (q == 0) return buf;
197         *buf++ = q + '0'; /* 9 */
198         return buf;
199 }
200
201 /* There are two algorithms to print larger numbers.
202  * One is generic: divide by 1000000000 and repeatedly print
203  * groups of (up to) 9 digits. It's conceptually simple,
204  * but requires a (unsigned long long) / 1000000000 division.
205  *
206  * Second algorithm splits 64-bit unsigned long long into 16-bit chunks,
207  * manipulates them cleverly and generates groups of 4 decimal digits.
208  * It so happens that it does NOT require long long division.
209  *
210  * If long is > 32 bits, division of 64-bit values is relatively easy,
211  * and we will use the first algorithm.
212  * If long long is > 64 bits (strange architecture with VERY large long long),
213  * second algorithm can't be used, and we again use the first one.
214  *
215  * Else (if long is 32 bits and long long is 64 bits) we use second one.
216  */
217
218 #if BITS_PER_LONG != 32 || BITS_PER_LONG_LONG != 64
219
220 /* First algorithm: generic */
221
222 static
223 char *put_dec(char *buf, unsigned long long n)
224 {
225         if (n >= 100*1000*1000) {
226                 while (n >= 1000*1000*1000)
227                         buf = put_dec_full9(buf, do_div(n, 1000*1000*1000));
228                 if (n >= 100*1000*1000)
229                         return put_dec_full9(buf, n);
230         }
231         return put_dec_trunc8(buf, n);
232 }
233
234 #else
235
236 /* Second algorithm: valid only for 64-bit long longs */
237
238 static noinline_for_stack
239 char *put_dec_full4(char *buf, unsigned q)
240 {
241         unsigned r;
242         r      = (q * 0xcccd) >> 19;
243         *buf++ = (q - 10 * r) + '0';
244         q      = (r * 0x199a) >> 16;
245         *buf++ = (r - 10 * q)  + '0';
246         r      = (q * 0xcd) >> 11;
247         *buf++ = (q - 10 * r)  + '0';
248         *buf++ = r + '0';
249         return buf;
250 }
251
252 /* Based on code by Douglas W. Jones found at
253  * <http://www.cs.uiowa.edu/~jones/bcd/decimal.html#sixtyfour>
254  * (with permission from the author).
255  * Performs no 64-bit division and hence should be fast on 32-bit machines.
256  */
257 static
258 char *put_dec(char *buf, unsigned long long n)
259 {
260         uint32_t d3, d2, d1, q, h;
261
262         if (n < 100*1000*1000)
263                 return put_dec_trunc8(buf, n);
264
265         d1  = ((uint32_t)n >> 16); /* implicit "& 0xffff" */
266         h   = (n >> 32);
267         d2  = (h      ) & 0xffff;
268         d3  = (h >> 16); /* implicit "& 0xffff" */
269
270         q   = 656 * d3 + 7296 * d2 + 5536 * d1 + ((uint32_t)n & 0xffff);
271
272         buf = put_dec_full4(buf, q % 10000);
273         q   = q / 10000;
274
275         d1  = q + 7671 * d3 + 9496 * d2 + 6 * d1;
276         buf = put_dec_full4(buf, d1 % 10000);
277         q   = d1 / 10000;
278
279         d2  = q + 4749 * d3 + 42 * d2;
280         buf = put_dec_full4(buf, d2 % 10000);
281         q   = d2 / 10000;
282
283         d3  = q + 281 * d3;
284         if (!d3)
285                 goto done;
286         buf = put_dec_full4(buf, d3 % 10000);
287         q   = d3 / 10000;
288         if (!q)
289                 goto done;
290         buf = put_dec_full4(buf, q);
291  done:
292         while (buf[-1] == '0')
293                 --buf;
294
295         return buf;
296 }
297
298 #endif
299
300 /*
301  * Convert passed number to decimal string.
302  * Returns the length of string.  On buffer overflow, returns 0.
303  *
304  * If speed is not important, use snprintf(). It's easy to read the code.
305  */
306 int num_to_str(char *buf, int size, unsigned long long num)
307 {
308         char tmp[sizeof(num) * 3];
309         int idx, len;
310
311         /* put_dec() may work incorrectly for num = 0 (generate "", not "0") */
312         if (num <= 9) {
313                 tmp[0] = '0' + num;
314                 len = 1;
315         } else {
316                 len = put_dec(tmp, num) - tmp;
317         }
318
319         if (len > size)
320                 return 0;
321         for (idx = 0; idx < len; ++idx)
322                 buf[idx] = tmp[len - idx - 1];
323         return len;
324 }
325
326 #define ZEROPAD 1               /* pad with zero */
327 #define SIGN    2               /* unsigned/signed long */
328 #define PLUS    4               /* show plus */
329 #define SPACE   8               /* space if plus */
330 #define LEFT    16              /* left justified */
331 #define SMALL   32              /* use lowercase in hex (must be 32 == 0x20) */
332 #define SPECIAL 64              /* prefix hex with "0x", octal with "0" */
333
334 enum format_type {
335         FORMAT_TYPE_NONE, /* Just a string part */
336         FORMAT_TYPE_WIDTH,
337         FORMAT_TYPE_PRECISION,
338         FORMAT_TYPE_CHAR,
339         FORMAT_TYPE_STR,
340         FORMAT_TYPE_PTR,
341         FORMAT_TYPE_PERCENT_CHAR,
342         FORMAT_TYPE_INVALID,
343         FORMAT_TYPE_LONG_LONG,
344         FORMAT_TYPE_ULONG,
345         FORMAT_TYPE_LONG,
346         FORMAT_TYPE_UBYTE,
347         FORMAT_TYPE_BYTE,
348         FORMAT_TYPE_USHORT,
349         FORMAT_TYPE_SHORT,
350         FORMAT_TYPE_UINT,
351         FORMAT_TYPE_INT,
352         FORMAT_TYPE_NRCHARS,
353         FORMAT_TYPE_SIZE_T,
354         FORMAT_TYPE_PTRDIFF
355 };
356
357 struct printf_spec {
358         u8      type;           /* format_type enum */
359         u8      flags;          /* flags to number() */
360         u8      base;           /* number base, 8, 10 or 16 only */
361         u8      qualifier;      /* number qualifier, one of 'hHlLtzZ' */
362         s16     field_width;    /* width of output field */
363         s16     precision;      /* # of digits/chars */
364 };
365
366 static noinline_for_stack
367 char *number(char *buf, char *end, unsigned long long num,
368              struct printf_spec spec)
369 {
370         /* we are called with base 8, 10 or 16, only, thus don't need "G..."  */
371         static const char digits[16] = "0123456789ABCDEF"; /* "GHIJKLMNOPQRSTUVWXYZ"; */
372
373         char tmp[66];
374         char sign;
375         char locase;
376         int need_pfx = ((spec.flags & SPECIAL) && spec.base != 10);
377         int i;
378
379         /* locase = 0 or 0x20. ORing digits or letters with 'locase'
380          * produces same digits or (maybe lowercased) letters */
381         locase = (spec.flags & SMALL);
382         if (spec.flags & LEFT)
383                 spec.flags &= ~ZEROPAD;
384         sign = 0;
385         if (spec.flags & SIGN) {
386                 if ((signed long long)num < 0) {
387                         sign = '-';
388                         num = -(signed long long)num;
389                         spec.field_width--;
390                 } else if (spec.flags & PLUS) {
391                         sign = '+';
392                         spec.field_width--;
393                 } else if (spec.flags & SPACE) {
394                         sign = ' ';
395                         spec.field_width--;
396                 }
397         }
398         if (need_pfx) {
399                 spec.field_width--;
400                 if (spec.base == 16)
401                         spec.field_width--;
402         }
403
404         /* generate full string in tmp[], in reverse order */
405         i = 0;
406         if (num < spec.base)
407                 tmp[i++] = digits[num] | locase;
408         /* Generic code, for any base:
409         else do {
410                 tmp[i++] = (digits[do_div(num,base)] | locase);
411         } while (num != 0);
412         */
413         else if (spec.base != 10) { /* 8 or 16 */
414                 int mask = spec.base - 1;
415                 int shift = 3;
416
417                 if (spec.base == 16)
418                         shift = 4;
419                 do {
420                         tmp[i++] = (digits[((unsigned char)num) & mask] | locase);
421                         num >>= shift;
422                 } while (num);
423         } else { /* base 10 */
424                 i = put_dec(tmp, num) - tmp;
425         }
426
427         /* printing 100 using %2d gives "100", not "00" */
428         if (i > spec.precision)
429                 spec.precision = i;
430         /* leading space padding */
431         spec.field_width -= spec.precision;
432         if (!(spec.flags & (ZEROPAD+LEFT))) {
433                 while (--spec.field_width >= 0) {
434                         if (buf < end)
435                                 *buf = ' ';
436                         ++buf;
437                 }
438         }
439         /* sign */
440         if (sign) {
441                 if (buf < end)
442                         *buf = sign;
443                 ++buf;
444         }
445         /* "0x" / "0" prefix */
446         if (need_pfx) {
447                 if (buf < end)
448                         *buf = '0';
449                 ++buf;
450                 if (spec.base == 16) {
451                         if (buf < end)
452                                 *buf = ('X' | locase);
453                         ++buf;
454                 }
455         }
456         /* zero or space padding */
457         if (!(spec.flags & LEFT)) {
458                 char c = (spec.flags & ZEROPAD) ? '0' : ' ';
459                 while (--spec.field_width >= 0) {
460                         if (buf < end)
461                                 *buf = c;
462                         ++buf;
463                 }
464         }
465         /* hmm even more zero padding? */
466         while (i <= --spec.precision) {
467                 if (buf < end)
468                         *buf = '0';
469                 ++buf;
470         }
471         /* actual digits of result */
472         while (--i >= 0) {
473                 if (buf < end)
474                         *buf = tmp[i];
475                 ++buf;
476         }
477         /* trailing space padding */
478         while (--spec.field_width >= 0) {
479                 if (buf < end)
480                         *buf = ' ';
481                 ++buf;
482         }
483
484         return buf;
485 }
486
487 static noinline_for_stack
488 char *string(char *buf, char *end, const char *s, struct printf_spec spec)
489 {
490         int len, i;
491
492         if ((unsigned long)s < PAGE_SIZE)
493                 s = "(null)";
494
495         len = strnlen(s, spec.precision);
496
497         if (!(spec.flags & LEFT)) {
498                 while (len < spec.field_width--) {
499                         if (buf < end)
500                                 *buf = ' ';
501                         ++buf;
502                 }
503         }
504         for (i = 0; i < len; ++i) {
505                 if (buf < end)
506                         *buf = *s;
507                 ++buf; ++s;
508         }
509         while (len < spec.field_width--) {
510                 if (buf < end)
511                         *buf = ' ';
512                 ++buf;
513         }
514
515         return buf;
516 }
517
518 static noinline_for_stack
519 char *symbol_string(char *buf, char *end, void *ptr,
520                     struct printf_spec spec, char ext)
521 {
522         unsigned long value = (unsigned long) ptr;
523 #ifdef CONFIG_KALLSYMS
524         char sym[KSYM_SYMBOL_LEN];
525         if (ext == 'B')
526                 sprint_backtrace(sym, value);
527         else if (ext != 'f' && ext != 's')
528                 sprint_symbol(sym, value);
529         else
530                 kallsyms_lookup(value, NULL, NULL, NULL, sym);
531
532         return string(buf, end, sym, spec);
533 #else
534         spec.field_width = 2 * sizeof(void *);
535         spec.flags |= SPECIAL | SMALL | ZEROPAD;
536         spec.base = 16;
537
538         return number(buf, end, value, spec);
539 #endif
540 }
541
542 static noinline_for_stack
543 char *resource_string(char *buf, char *end, struct resource *res,
544                       struct printf_spec spec, const char *fmt)
545 {
546 #ifndef IO_RSRC_PRINTK_SIZE
547 #define IO_RSRC_PRINTK_SIZE     6
548 #endif
549
550 #ifndef MEM_RSRC_PRINTK_SIZE
551 #define MEM_RSRC_PRINTK_SIZE    10
552 #endif
553         static const struct printf_spec io_spec = {
554                 .base = 16,
555                 .field_width = IO_RSRC_PRINTK_SIZE,
556                 .precision = -1,
557                 .flags = SPECIAL | SMALL | ZEROPAD,
558         };
559         static const struct printf_spec mem_spec = {
560                 .base = 16,
561                 .field_width = MEM_RSRC_PRINTK_SIZE,
562                 .precision = -1,
563                 .flags = SPECIAL | SMALL | ZEROPAD,
564         };
565         static const struct printf_spec bus_spec = {
566                 .base = 16,
567                 .field_width = 2,
568                 .precision = -1,
569                 .flags = SMALL | ZEROPAD,
570         };
571         static const struct printf_spec dec_spec = {
572                 .base = 10,
573                 .precision = -1,
574                 .flags = 0,
575         };
576         static const struct printf_spec str_spec = {
577                 .field_width = -1,
578                 .precision = 10,
579                 .flags = LEFT,
580         };
581         static const struct printf_spec flag_spec = {
582                 .base = 16,
583                 .precision = -1,
584                 .flags = SPECIAL | SMALL,
585         };
586
587         /* 32-bit res (sizeof==4): 10 chars in dec, 10 in hex ("0x" + 8)
588          * 64-bit res (sizeof==8): 20 chars in dec, 18 in hex ("0x" + 16) */
589 #define RSRC_BUF_SIZE           ((2 * sizeof(resource_size_t)) + 4)
590 #define FLAG_BUF_SIZE           (2 * sizeof(res->flags))
591 #define DECODED_BUF_SIZE        sizeof("[mem - 64bit pref window disabled]")
592 #define RAW_BUF_SIZE            sizeof("[mem - flags 0x]")
593         char sym[max(2*RSRC_BUF_SIZE + DECODED_BUF_SIZE,
594                      2*RSRC_BUF_SIZE + FLAG_BUF_SIZE + RAW_BUF_SIZE)];
595
596         char *p = sym, *pend = sym + sizeof(sym);
597         int decode = (fmt[0] == 'R') ? 1 : 0;
598         const struct printf_spec *specp;
599
600         *p++ = '[';
601         if (res->flags & IORESOURCE_IO) {
602                 p = string(p, pend, "io  ", str_spec);
603                 specp = &io_spec;
604         } else if (res->flags & IORESOURCE_MEM) {
605                 p = string(p, pend, "mem ", str_spec);
606                 specp = &mem_spec;
607         } else if (res->flags & IORESOURCE_IRQ) {
608                 p = string(p, pend, "irq ", str_spec);
609                 specp = &dec_spec;
610         } else if (res->flags & IORESOURCE_DMA) {
611                 p = string(p, pend, "dma ", str_spec);
612                 specp = &dec_spec;
613         } else if (res->flags & IORESOURCE_BUS) {
614                 p = string(p, pend, "bus ", str_spec);
615                 specp = &bus_spec;
616         } else {
617                 p = string(p, pend, "??? ", str_spec);
618                 specp = &mem_spec;
619                 decode = 0;
620         }
621         p = number(p, pend, res->start, *specp);
622         if (res->start != res->end) {
623                 *p++ = '-';
624                 p = number(p, pend, res->end, *specp);
625         }
626         if (decode) {
627                 if (res->flags & IORESOURCE_MEM_64)
628                         p = string(p, pend, " 64bit", str_spec);
629                 if (res->flags & IORESOURCE_PREFETCH)
630                         p = string(p, pend, " pref", str_spec);
631                 if (res->flags & IORESOURCE_WINDOW)
632                         p = string(p, pend, " window", str_spec);
633                 if (res->flags & IORESOURCE_DISABLED)
634                         p = string(p, pend, " disabled", str_spec);
635         } else {
636                 p = string(p, pend, " flags ", str_spec);
637                 p = number(p, pend, res->flags, flag_spec);
638         }
639         *p++ = ']';
640         *p = '\0';
641
642         return string(buf, end, sym, spec);
643 }
644
645 static noinline_for_stack
646 char *mac_address_string(char *buf, char *end, u8 *addr,
647                          struct printf_spec spec, const char *fmt)
648 {
649         char mac_addr[sizeof("xx:xx:xx:xx:xx:xx")];
650         char *p = mac_addr;
651         int i;
652         char separator;
653
654         if (fmt[1] == 'F') {            /* FDDI canonical format */
655                 separator = '-';
656         } else {
657                 separator = ':';
658         }
659
660         for (i = 0; i < 6; i++) {
661                 p = hex_byte_pack(p, addr[i]);
662                 if (fmt[0] == 'M' && i != 5)
663                         *p++ = separator;
664         }
665         *p = '\0';
666
667         return string(buf, end, mac_addr, spec);
668 }
669
670 static noinline_for_stack
671 char *ip4_string(char *p, const u8 *addr, const char *fmt)
672 {
673         int i;
674         bool leading_zeros = (fmt[0] == 'i');
675         int index;
676         int step;
677
678         switch (fmt[2]) {
679         case 'h':
680 #ifdef __BIG_ENDIAN
681                 index = 0;
682                 step = 1;
683 #else
684                 index = 3;
685                 step = -1;
686 #endif
687                 break;
688         case 'l':
689                 index = 3;
690                 step = -1;
691                 break;
692         case 'n':
693         case 'b':
694         default:
695                 index = 0;
696                 step = 1;
697                 break;
698         }
699         for (i = 0; i < 4; i++) {
700                 char temp[3];   /* hold each IP quad in reverse order */
701                 int digits = put_dec_trunc8(temp, addr[index]) - temp;
702                 if (leading_zeros) {
703                         if (digits < 3)
704                                 *p++ = '0';
705                         if (digits < 2)
706                                 *p++ = '0';
707                 }
708                 /* reverse the digits in the quad */
709                 while (digits--)
710                         *p++ = temp[digits];
711                 if (i < 3)
712                         *p++ = '.';
713                 index += step;
714         }
715         *p = '\0';
716
717         return p;
718 }
719
720 static noinline_for_stack
721 char *ip6_compressed_string(char *p, const char *addr)
722 {
723         int i, j, range;
724         unsigned char zerolength[8];
725         int longest = 1;
726         int colonpos = -1;
727         u16 word;
728         u8 hi, lo;
729         bool needcolon = false;
730         bool useIPv4;
731         struct in6_addr in6;
732
733         memcpy(&in6, addr, sizeof(struct in6_addr));
734
735         useIPv4 = ipv6_addr_v4mapped(&in6) || ipv6_addr_is_isatap(&in6);
736
737         memset(zerolength, 0, sizeof(zerolength));
738
739         if (useIPv4)
740                 range = 6;
741         else
742                 range = 8;
743
744         /* find position of longest 0 run */
745         for (i = 0; i < range; i++) {
746                 for (j = i; j < range; j++) {
747                         if (in6.s6_addr16[j] != 0)
748                                 break;
749                         zerolength[i]++;
750                 }
751         }
752         for (i = 0; i < range; i++) {
753                 if (zerolength[i] > longest) {
754                         longest = zerolength[i];
755                         colonpos = i;
756                 }
757         }
758         if (longest == 1)               /* don't compress a single 0 */
759                 colonpos = -1;
760
761         /* emit address */
762         for (i = 0; i < range; i++) {
763                 if (i == colonpos) {
764                         if (needcolon || i == 0)
765                                 *p++ = ':';
766                         *p++ = ':';
767                         needcolon = false;
768                         i += longest - 1;
769                         continue;
770                 }
771                 if (needcolon) {
772                         *p++ = ':';
773                         needcolon = false;
774                 }
775                 /* hex u16 without leading 0s */
776                 word = ntohs(in6.s6_addr16[i]);
777                 hi = word >> 8;
778                 lo = word & 0xff;
779                 if (hi) {
780                         if (hi > 0x0f)
781                                 p = hex_byte_pack(p, hi);
782                         else
783                                 *p++ = hex_asc_lo(hi);
784                         p = hex_byte_pack(p, lo);
785                 }
786                 else if (lo > 0x0f)
787                         p = hex_byte_pack(p, lo);
788                 else
789                         *p++ = hex_asc_lo(lo);
790                 needcolon = true;
791         }
792
793         if (useIPv4) {
794                 if (needcolon)
795                         *p++ = ':';
796                 p = ip4_string(p, &in6.s6_addr[12], "I4");
797         }
798         *p = '\0';
799
800         return p;
801 }
802
803 static noinline_for_stack
804 char *ip6_string(char *p, const char *addr, const char *fmt)
805 {
806         int i;
807
808         for (i = 0; i < 8; i++) {
809                 p = hex_byte_pack(p, *addr++);
810                 p = hex_byte_pack(p, *addr++);
811                 if (fmt[0] == 'I' && i != 7)
812                         *p++ = ':';
813         }
814         *p = '\0';
815
816         return p;
817 }
818
819 static noinline_for_stack
820 char *ip6_addr_string(char *buf, char *end, const u8 *addr,
821                       struct printf_spec spec, const char *fmt)
822 {
823         char ip6_addr[sizeof("xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:255.255.255.255")];
824
825         if (fmt[0] == 'I' && fmt[2] == 'c')
826                 ip6_compressed_string(ip6_addr, addr);
827         else
828                 ip6_string(ip6_addr, addr, fmt);
829
830         return string(buf, end, ip6_addr, spec);
831 }
832
833 static noinline_for_stack
834 char *ip4_addr_string(char *buf, char *end, const u8 *addr,
835                       struct printf_spec spec, const char *fmt)
836 {
837         char ip4_addr[sizeof("255.255.255.255")];
838
839         ip4_string(ip4_addr, addr, fmt);
840
841         return string(buf, end, ip4_addr, spec);
842 }
843
844 static noinline_for_stack
845 char *uuid_string(char *buf, char *end, const u8 *addr,
846                   struct printf_spec spec, const char *fmt)
847 {
848         char uuid[sizeof("xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx")];
849         char *p = uuid;
850         int i;
851         static const u8 be[16] = {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15};
852         static const u8 le[16] = {3,2,1,0,5,4,7,6,8,9,10,11,12,13,14,15};
853         const u8 *index = be;
854         bool uc = false;
855
856         switch (*(++fmt)) {
857         case 'L':
858                 uc = true;              /* fall-through */
859         case 'l':
860                 index = le;
861                 break;
862         case 'B':
863                 uc = true;
864                 break;
865         }
866
867         for (i = 0; i < 16; i++) {
868                 p = hex_byte_pack(p, addr[index[i]]);
869                 switch (i) {
870                 case 3:
871                 case 5:
872                 case 7:
873                 case 9:
874                         *p++ = '-';
875                         break;
876                 }
877         }
878
879         *p = 0;
880
881         if (uc) {
882                 p = uuid;
883                 do {
884                         *p = toupper(*p);
885                 } while (*(++p));
886         }
887
888         return string(buf, end, uuid, spec);
889 }
890
891 static
892 char *netdev_feature_string(char *buf, char *end, const u8 *addr,
893                       struct printf_spec spec)
894 {
895         spec.flags |= SPECIAL | SMALL | ZEROPAD;
896         if (spec.field_width == -1)
897                 spec.field_width = 2 + 2 * sizeof(netdev_features_t);
898         spec.base = 16;
899
900         return number(buf, end, *(const netdev_features_t *)addr, spec);
901 }
902
903 int kptr_restrict __read_mostly;
904
905 /*
906  * Show a '%p' thing.  A kernel extension is that the '%p' is followed
907  * by an extra set of alphanumeric characters that are extended format
908  * specifiers.
909  *
910  * Right now we handle:
911  *
912  * - 'F' For symbolic function descriptor pointers with offset
913  * - 'f' For simple symbolic function names without offset
914  * - 'S' For symbolic direct pointers with offset
915  * - 's' For symbolic direct pointers without offset
916  * - 'B' For backtraced symbolic direct pointers with offset
917  * - 'R' For decoded struct resource, e.g., [mem 0x0-0x1f 64bit pref]
918  * - 'r' For raw struct resource, e.g., [mem 0x0-0x1f flags 0x201]
919  * - 'M' For a 6-byte MAC address, it prints the address in the
920  *       usual colon-separated hex notation
921  * - 'm' For a 6-byte MAC address, it prints the hex address without colons
922  * - 'MF' For a 6-byte MAC FDDI address, it prints the address
923  *       with a dash-separated hex notation
924  * - 'I' [46] for IPv4/IPv6 addresses printed in the usual way
925  *       IPv4 uses dot-separated decimal without leading 0's (1.2.3.4)
926  *       IPv6 uses colon separated network-order 16 bit hex with leading 0's
927  * - 'i' [46] for 'raw' IPv4/IPv6 addresses
928  *       IPv6 omits the colons (01020304...0f)
929  *       IPv4 uses dot-separated decimal with leading 0's (010.123.045.006)
930  * - '[Ii]4[hnbl]' IPv4 addresses in host, network, big or little endian order
931  * - 'I6c' for IPv6 addresses printed as specified by
932  *       http://tools.ietf.org/html/rfc5952
933  * - 'U' For a 16 byte UUID/GUID, it prints the UUID/GUID in the form
934  *       "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
935  *       Options for %pU are:
936  *         b big endian lower case hex (default)
937  *         B big endian UPPER case hex
938  *         l little endian lower case hex
939  *         L little endian UPPER case hex
940  *           big endian output byte order is:
941  *             [0][1][2][3]-[4][5]-[6][7]-[8][9]-[10][11][12][13][14][15]
942  *           little endian output byte order is:
943  *             [3][2][1][0]-[5][4]-[7][6]-[8][9]-[10][11][12][13][14][15]
944  * - 'V' For a struct va_format which contains a format string * and va_list *,
945  *       call vsnprintf(->format, *->va_list).
946  *       Implements a "recursive vsnprintf".
947  *       Do not use this feature without some mechanism to verify the
948  *       correctness of the format string and va_list arguments.
949  * - 'K' For a kernel pointer that should be hidden from unprivileged users
950  * - 'NF' For a netdev_features_t
951  *
952  * Note: The difference between 'S' and 'F' is that on ia64 and ppc64
953  * function pointers are really function descriptors, which contain a
954  * pointer to the real address.
955  */
956 static noinline_for_stack
957 char *pointer(const char *fmt, char *buf, char *end, void *ptr,
958               struct printf_spec spec)
959 {
960         if (!ptr && *fmt != 'K') {
961                 /*
962                  * Print (null) with the same width as a pointer so it makes
963                  * tabular output look nice.
964                  */
965                 if (spec.field_width == -1)
966                         spec.field_width = 2 * sizeof(void *);
967                 return string(buf, end, "(null)", spec);
968         }
969
970         switch (*fmt) {
971         case 'F':
972         case 'f':
973                 ptr = dereference_function_descriptor(ptr);
974                 /* Fallthrough */
975         case 'S':
976         case 's':
977         case 'B':
978                 return symbol_string(buf, end, ptr, spec, *fmt);
979         case 'R':
980         case 'r':
981                 return resource_string(buf, end, ptr, spec, fmt);
982         case 'M':                       /* Colon separated: 00:01:02:03:04:05 */
983         case 'm':                       /* Contiguous: 000102030405 */
984                                         /* [mM]F (FDDI, bit reversed) */
985                 return mac_address_string(buf, end, ptr, spec, fmt);
986         case 'I':                       /* Formatted IP supported
987                                          * 4:   1.2.3.4
988                                          * 6:   0001:0203:...:0708
989                                          * 6c:  1::708 or 1::1.2.3.4
990                                          */
991         case 'i':                       /* Contiguous:
992                                          * 4:   001.002.003.004
993                                          * 6:   000102...0f
994                                          */
995                 switch (fmt[1]) {
996                 case '6':
997                         return ip6_addr_string(buf, end, ptr, spec, fmt);
998                 case '4':
999                         return ip4_addr_string(buf, end, ptr, spec, fmt);
1000                 }
1001                 break;
1002         case 'U':
1003                 return uuid_string(buf, end, ptr, spec, fmt);
1004         case 'V':
1005                 {
1006                         va_list va;
1007
1008                         va_copy(va, *((struct va_format *)ptr)->va);
1009                         buf += vsnprintf(buf, end > buf ? end - buf : 0,
1010                                          ((struct va_format *)ptr)->fmt, va);
1011                         va_end(va);
1012                         return buf;
1013                 }
1014         case 'K':
1015                 /*
1016                  * %pK cannot be used in IRQ context because its test
1017                  * for CAP_SYSLOG would be meaningless.
1018                  */
1019                 if (in_irq() || in_serving_softirq() || in_nmi()) {
1020                         if (spec.field_width == -1)
1021                                 spec.field_width = 2 * sizeof(void *);
1022                         return string(buf, end, "pK-error", spec);
1023                 }
1024                 if (!((kptr_restrict == 0) ||
1025                       (kptr_restrict == 1 &&
1026                        has_capability_noaudit(current, CAP_SYSLOG))))
1027                         ptr = NULL;
1028                 break;
1029         case 'N':
1030                 switch (fmt[1]) {
1031                 case 'F':
1032                         return netdev_feature_string(buf, end, ptr, spec);
1033                 }
1034                 break;
1035         }
1036         spec.flags |= SMALL;
1037         if (spec.field_width == -1) {
1038                 spec.field_width = 2 * sizeof(void *);
1039                 spec.flags |= ZEROPAD;
1040         }
1041         spec.base = 16;
1042
1043         return number(buf, end, (unsigned long) ptr, spec);
1044 }
1045
1046 /*
1047  * Helper function to decode printf style format.
1048  * Each call decode a token from the format and return the
1049  * number of characters read (or likely the delta where it wants
1050  * to go on the next call).
1051  * The decoded token is returned through the parameters
1052  *
1053  * 'h', 'l', or 'L' for integer fields
1054  * 'z' support added 23/7/1999 S.H.
1055  * 'z' changed to 'Z' --davidm 1/25/99
1056  * 't' added for ptrdiff_t
1057  *
1058  * @fmt: the format string
1059  * @type of the token returned
1060  * @flags: various flags such as +, -, # tokens..
1061  * @field_width: overwritten width
1062  * @base: base of the number (octal, hex, ...)
1063  * @precision: precision of a number
1064  * @qualifier: qualifier of a number (long, size_t, ...)
1065  */
1066 static noinline_for_stack
1067 int format_decode(const char *fmt, struct printf_spec *spec)
1068 {
1069         const char *start = fmt;
1070
1071         /* we finished early by reading the field width */
1072         if (spec->type == FORMAT_TYPE_WIDTH) {
1073                 if (spec->field_width < 0) {
1074                         spec->field_width = -spec->field_width;
1075                         spec->flags |= LEFT;
1076                 }
1077                 spec->type = FORMAT_TYPE_NONE;
1078                 goto precision;
1079         }
1080
1081         /* we finished early by reading the precision */
1082         if (spec->type == FORMAT_TYPE_PRECISION) {
1083                 if (spec->precision < 0)
1084                         spec->precision = 0;
1085
1086                 spec->type = FORMAT_TYPE_NONE;
1087                 goto qualifier;
1088         }
1089
1090         /* By default */
1091         spec->type = FORMAT_TYPE_NONE;
1092
1093         for (; *fmt ; ++fmt) {
1094                 if (*fmt == '%')
1095                         break;
1096         }
1097
1098         /* Return the current non-format string */
1099         if (fmt != start || !*fmt)
1100                 return fmt - start;
1101
1102         /* Process flags */
1103         spec->flags = 0;
1104
1105         while (1) { /* this also skips first '%' */
1106                 bool found = true;
1107
1108                 ++fmt;
1109
1110                 switch (*fmt) {
1111                 case '-': spec->flags |= LEFT;    break;
1112                 case '+': spec->flags |= PLUS;    break;
1113                 case ' ': spec->flags |= SPACE;   break;
1114                 case '#': spec->flags |= SPECIAL; break;
1115                 case '0': spec->flags |= ZEROPAD; break;
1116                 default:  found = false;
1117                 }
1118
1119                 if (!found)
1120                         break;
1121         }
1122
1123         /* get field width */
1124         spec->field_width = -1;
1125
1126         if (isdigit(*fmt))
1127                 spec->field_width = skip_atoi(&fmt);
1128         else if (*fmt == '*') {
1129                 /* it's the next argument */
1130                 spec->type = FORMAT_TYPE_WIDTH;
1131                 return ++fmt - start;
1132         }
1133
1134 precision:
1135         /* get the precision */
1136         spec->precision = -1;
1137         if (*fmt == '.') {
1138                 ++fmt;
1139                 if (isdigit(*fmt)) {
1140                         spec->precision = skip_atoi(&fmt);
1141                         if (spec->precision < 0)
1142                                 spec->precision = 0;
1143                 } else if (*fmt == '*') {
1144                         /* it's the next argument */
1145                         spec->type = FORMAT_TYPE_PRECISION;
1146                         return ++fmt - start;
1147                 }
1148         }
1149
1150 qualifier:
1151         /* get the conversion qualifier */
1152         spec->qualifier = -1;
1153         if (*fmt == 'h' || _tolower(*fmt) == 'l' ||
1154             _tolower(*fmt) == 'z' || *fmt == 't') {
1155                 spec->qualifier = *fmt++;
1156                 if (unlikely(spec->qualifier == *fmt)) {
1157                         if (spec->qualifier == 'l') {
1158                                 spec->qualifier = 'L';
1159                                 ++fmt;
1160                         } else if (spec->qualifier == 'h') {
1161                                 spec->qualifier = 'H';
1162                                 ++fmt;
1163                         }
1164                 }
1165         }
1166
1167         /* default base */
1168         spec->base = 10;
1169         switch (*fmt) {
1170         case 'c':
1171                 spec->type = FORMAT_TYPE_CHAR;
1172                 return ++fmt - start;
1173
1174         case 's':
1175                 spec->type = FORMAT_TYPE_STR;
1176                 return ++fmt - start;
1177
1178         case 'p':
1179                 spec->type = FORMAT_TYPE_PTR;
1180                 return fmt - start;
1181                 /* skip alnum */
1182
1183         case 'n':
1184                 spec->type = FORMAT_TYPE_NRCHARS;
1185                 return ++fmt - start;
1186
1187         case '%':
1188                 spec->type = FORMAT_TYPE_PERCENT_CHAR;
1189                 return ++fmt - start;
1190
1191         /* integer number formats - set up the flags and "break" */
1192         case 'o':
1193                 spec->base = 8;
1194                 break;
1195
1196         case 'x':
1197                 spec->flags |= SMALL;
1198
1199         case 'X':
1200                 spec->base = 16;
1201                 break;
1202
1203         case 'd':
1204         case 'i':
1205                 spec->flags |= SIGN;
1206         case 'u':
1207                 break;
1208
1209         default:
1210                 spec->type = FORMAT_TYPE_INVALID;
1211                 return fmt - start;
1212         }
1213
1214         if (spec->qualifier == 'L')
1215                 spec->type = FORMAT_TYPE_LONG_LONG;
1216         else if (spec->qualifier == 'l') {
1217                 if (spec->flags & SIGN)
1218                         spec->type = FORMAT_TYPE_LONG;
1219                 else
1220                         spec->type = FORMAT_TYPE_ULONG;
1221         } else if (_tolower(spec->qualifier) == 'z') {
1222                 spec->type = FORMAT_TYPE_SIZE_T;
1223         } else if (spec->qualifier == 't') {
1224                 spec->type = FORMAT_TYPE_PTRDIFF;
1225         } else if (spec->qualifier == 'H') {
1226                 if (spec->flags & SIGN)
1227                         spec->type = FORMAT_TYPE_BYTE;
1228                 else
1229                         spec->type = FORMAT_TYPE_UBYTE;
1230         } else if (spec->qualifier == 'h') {
1231                 if (spec->flags & SIGN)
1232                         spec->type = FORMAT_TYPE_SHORT;
1233                 else
1234                         spec->type = FORMAT_TYPE_USHORT;
1235         } else {
1236                 if (spec->flags & SIGN)
1237                         spec->type = FORMAT_TYPE_INT;
1238                 else
1239                         spec->type = FORMAT_TYPE_UINT;
1240         }
1241
1242         return ++fmt - start;
1243 }
1244
1245 /**
1246  * vsnprintf - Format a string and place it in a buffer
1247  * @buf: The buffer to place the result into
1248  * @size: The size of the buffer, including the trailing null space
1249  * @fmt: The format string to use
1250  * @args: Arguments for the format string
1251  *
1252  * This function follows C99 vsnprintf, but has some extensions:
1253  * %pS output the name of a text symbol with offset
1254  * %ps output the name of a text symbol without offset
1255  * %pF output the name of a function pointer with its offset
1256  * %pf output the name of a function pointer without its offset
1257  * %pB output the name of a backtrace symbol with its offset
1258  * %pR output the address range in a struct resource with decoded flags
1259  * %pr output the address range in a struct resource with raw flags
1260  * %pM output a 6-byte MAC address with colons
1261  * %pm output a 6-byte MAC address without colons
1262  * %pI4 print an IPv4 address without leading zeros
1263  * %pi4 print an IPv4 address with leading zeros
1264  * %pI6 print an IPv6 address with colons
1265  * %pi6 print an IPv6 address without colons
1266  * %pI6c print an IPv6 address as specified by RFC 5952
1267  * %pU[bBlL] print a UUID/GUID in big or little endian using lower or upper
1268  *   case.
1269  * %n is ignored
1270  *
1271  * The return value is the number of characters which would
1272  * be generated for the given input, excluding the trailing
1273  * '\0', as per ISO C99. If you want to have the exact
1274  * number of characters written into @buf as return value
1275  * (not including the trailing '\0'), use vscnprintf(). If the
1276  * return is greater than or equal to @size, the resulting
1277  * string is truncated.
1278  *
1279  * If you're not already dealing with a va_list consider using snprintf().
1280  */
1281 int vsnprintf(char *buf, size_t size, const char *fmt, va_list args)
1282 {
1283         unsigned long long num;
1284         char *str, *end;
1285         struct printf_spec spec = {0};
1286
1287         /* Reject out-of-range values early.  Large positive sizes are
1288            used for unknown buffer sizes. */
1289         if (WARN_ON_ONCE((int) size < 0))
1290                 return 0;
1291
1292         str = buf;
1293         end = buf + size;
1294
1295         /* Make sure end is always >= buf */
1296         if (end < buf) {
1297                 end = ((void *)-1);
1298                 size = end - buf;
1299         }
1300
1301         while (*fmt) {
1302                 const char *old_fmt = fmt;
1303                 int read = format_decode(fmt, &spec);
1304
1305                 fmt += read;
1306
1307                 switch (spec.type) {
1308                 case FORMAT_TYPE_NONE: {
1309                         int copy = read;
1310                         if (str < end) {
1311                                 if (copy > end - str)
1312                                         copy = end - str;
1313                                 memcpy(str, old_fmt, copy);
1314                         }
1315                         str += read;
1316                         break;
1317                 }
1318
1319                 case FORMAT_TYPE_WIDTH:
1320                         spec.field_width = va_arg(args, int);
1321                         break;
1322
1323                 case FORMAT_TYPE_PRECISION:
1324                         spec.precision = va_arg(args, int);
1325                         break;
1326
1327                 case FORMAT_TYPE_CHAR: {
1328                         char c;
1329
1330                         if (!(spec.flags & LEFT)) {
1331                                 while (--spec.field_width > 0) {
1332                                         if (str < end)
1333                                                 *str = ' ';
1334                                         ++str;
1335
1336                                 }
1337                         }
1338                         c = (unsigned char) va_arg(args, int);
1339                         if (str < end)
1340                                 *str = c;
1341                         ++str;
1342                         while (--spec.field_width > 0) {
1343                                 if (str < end)
1344                                         *str = ' ';
1345                                 ++str;
1346                         }
1347                         break;
1348                 }
1349
1350                 case FORMAT_TYPE_STR:
1351                         str = string(str, end, va_arg(args, char *), spec);
1352                         break;
1353
1354                 case FORMAT_TYPE_PTR:
1355                         str = pointer(fmt+1, str, end, va_arg(args, void *),
1356                                       spec);
1357                         while (isalnum(*fmt))
1358                                 fmt++;
1359                         break;
1360
1361                 case FORMAT_TYPE_PERCENT_CHAR:
1362                         if (str < end)
1363                                 *str = '%';
1364                         ++str;
1365                         break;
1366
1367                 case FORMAT_TYPE_INVALID:
1368                         if (str < end)
1369                                 *str = '%';
1370                         ++str;
1371                         break;
1372
1373                 case FORMAT_TYPE_NRCHARS: {
1374                         u8 qualifier = spec.qualifier;
1375
1376                         if (qualifier == 'l') {
1377                                 long *ip = va_arg(args, long *);
1378                                 *ip = (str - buf);
1379                         } else if (_tolower(qualifier) == 'z') {
1380                                 size_t *ip = va_arg(args, size_t *);
1381                                 *ip = (str - buf);
1382                         } else {
1383                                 int *ip = va_arg(args, int *);
1384                                 *ip = (str - buf);
1385                         }
1386                         break;
1387                 }
1388
1389                 default:
1390                         switch (spec.type) {
1391                         case FORMAT_TYPE_LONG_LONG:
1392                                 num = va_arg(args, long long);
1393                                 break;
1394                         case FORMAT_TYPE_ULONG:
1395                                 num = va_arg(args, unsigned long);
1396                                 break;
1397                         case FORMAT_TYPE_LONG:
1398                                 num = va_arg(args, long);
1399                                 break;
1400                         case FORMAT_TYPE_SIZE_T:
1401                                 num = va_arg(args, size_t);
1402                                 break;
1403                         case FORMAT_TYPE_PTRDIFF:
1404                                 num = va_arg(args, ptrdiff_t);
1405                                 break;
1406                         case FORMAT_TYPE_UBYTE:
1407                                 num = (unsigned char) va_arg(args, int);
1408                                 break;
1409                         case FORMAT_TYPE_BYTE:
1410                                 num = (signed char) va_arg(args, int);
1411                                 break;
1412                         case FORMAT_TYPE_USHORT:
1413                                 num = (unsigned short) va_arg(args, int);
1414                                 break;
1415                         case FORMAT_TYPE_SHORT:
1416                                 num = (short) va_arg(args, int);
1417                                 break;
1418                         case FORMAT_TYPE_INT:
1419                                 num = (int) va_arg(args, int);
1420                                 break;
1421                         default:
1422                                 num = va_arg(args, unsigned int);
1423                         }
1424
1425                         str = number(str, end, num, spec);
1426                 }
1427         }
1428
1429         if (size > 0) {
1430                 if (str < end)
1431                         *str = '\0';
1432                 else
1433                         end[-1] = '\0';
1434         }
1435
1436         /* the trailing null byte doesn't count towards the total */
1437         return str-buf;
1438
1439 }
1440 EXPORT_SYMBOL(vsnprintf);
1441
1442 /**
1443  * vscnprintf - Format a string and place it in a buffer
1444  * @buf: The buffer to place the result into
1445  * @size: The size of the buffer, including the trailing null space
1446  * @fmt: The format string to use
1447  * @args: Arguments for the format string
1448  *
1449  * The return value is the number of characters which have been written into
1450  * the @buf not including the trailing '\0'. If @size is == 0 the function
1451  * returns 0.
1452  *
1453  * If you're not already dealing with a va_list consider using scnprintf().
1454  *
1455  * See the vsnprintf() documentation for format string extensions over C99.
1456  */
1457 int vscnprintf(char *buf, size_t size, const char *fmt, va_list args)
1458 {
1459         int i;
1460
1461         i = vsnprintf(buf, size, fmt, args);
1462
1463         if (likely(i < size))
1464                 return i;
1465         if (size != 0)
1466                 return size - 1;
1467         return 0;
1468 }
1469 EXPORT_SYMBOL(vscnprintf);
1470
1471 /**
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
1477  *
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.
1482  *
1483  * See the vsnprintf() documentation for format string extensions over C99.
1484  */
1485 int snprintf(char *buf, size_t size, const char *fmt, ...)
1486 {
1487         va_list args;
1488         int i;
1489
1490         va_start(args, fmt);
1491         i = vsnprintf(buf, size, fmt, args);
1492         va_end(args);
1493
1494         return i;
1495 }
1496 EXPORT_SYMBOL(snprintf);
1497
1498 /**
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
1504  *
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.
1507  */
1508
1509 int scnprintf(char *buf, size_t size, const char *fmt, ...)
1510 {
1511         va_list args;
1512         int i;
1513
1514         va_start(args, fmt);
1515         i = vscnprintf(buf, size, fmt, args);
1516         va_end(args);
1517
1518         return i;
1519 }
1520 EXPORT_SYMBOL(scnprintf);
1521
1522 /**
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
1527  *
1528  * The function returns the number of characters written
1529  * into @buf. Use vsnprintf() or vscnprintf() in order to avoid
1530  * buffer overflows.
1531  *
1532  * If you're not already dealing with a va_list consider using sprintf().
1533  *
1534  * See the vsnprintf() documentation for format string extensions over C99.
1535  */
1536 int vsprintf(char *buf, const char *fmt, va_list args)
1537 {
1538         return vsnprintf(buf, INT_MAX, fmt, args);
1539 }
1540 EXPORT_SYMBOL(vsprintf);
1541
1542 /**
1543  * sprintf - Format a string and place it in a buffer
1544  * @buf: The buffer to place the result into
1545  * @fmt: The format string to use
1546  * @...: Arguments for the format string
1547  *
1548  * The function returns the number of characters written
1549  * into @buf. Use snprintf() or scnprintf() in order to avoid
1550  * buffer overflows.
1551  *
1552  * See the vsnprintf() documentation for format string extensions over C99.
1553  */
1554 int sprintf(char *buf, const char *fmt, ...)
1555 {
1556         va_list args;
1557         int i;
1558
1559         va_start(args, fmt);
1560         i = vsnprintf(buf, INT_MAX, fmt, args);
1561         va_end(args);
1562
1563         return i;
1564 }
1565 EXPORT_SYMBOL(sprintf);
1566
1567 #ifdef CONFIG_BINARY_PRINTF
1568 /*
1569  * bprintf service:
1570  * vbin_printf() - VA arguments to binary data
1571  * bstr_printf() - Binary data to text string
1572  */
1573
1574 /**
1575  * vbin_printf - Parse a format string and place args' binary value in a buffer
1576  * @bin_buf: The buffer to place args' binary value
1577  * @size: The size of the buffer(by words(32bits), not characters)
1578  * @fmt: The format string to use
1579  * @args: Arguments for the format string
1580  *
1581  * The format follows C99 vsnprintf, except %n is ignored, and its argument
1582  * is skiped.
1583  *
1584  * The return value is the number of words(32bits) which would be generated for
1585  * the given input.
1586  *
1587  * NOTE:
1588  * If the return value is greater than @size, the resulting bin_buf is NOT
1589  * valid for bstr_printf().
1590  */
1591 int vbin_printf(u32 *bin_buf, size_t size, const char *fmt, va_list args)
1592 {
1593         struct printf_spec spec = {0};
1594         char *str, *end;
1595
1596         str = (char *)bin_buf;
1597         end = (char *)(bin_buf + size);
1598
1599 #define save_arg(type)                                                  \
1600 do {                                                                    \
1601         if (sizeof(type) == 8) {                                        \
1602                 unsigned long long value;                               \
1603                 str = PTR_ALIGN(str, sizeof(u32));                      \
1604                 value = va_arg(args, unsigned long long);               \
1605                 if (str + sizeof(type) <= end) {                        \
1606                         *(u32 *)str = *(u32 *)&value;                   \
1607                         *(u32 *)(str + 4) = *((u32 *)&value + 1);       \
1608                 }                                                       \
1609         } else {                                                        \
1610                 unsigned long value;                                    \
1611                 str = PTR_ALIGN(str, sizeof(type));                     \
1612                 value = va_arg(args, int);                              \
1613                 if (str + sizeof(type) <= end)                          \
1614                         *(typeof(type) *)str = (type)value;             \
1615         }                                                               \
1616         str += sizeof(type);                                            \
1617 } while (0)
1618
1619         while (*fmt) {
1620                 int read = format_decode(fmt, &spec);
1621
1622                 fmt += read;
1623
1624                 switch (spec.type) {
1625                 case FORMAT_TYPE_NONE:
1626                 case FORMAT_TYPE_INVALID:
1627                 case FORMAT_TYPE_PERCENT_CHAR:
1628                         break;
1629
1630                 case FORMAT_TYPE_WIDTH:
1631                 case FORMAT_TYPE_PRECISION:
1632                         save_arg(int);
1633                         break;
1634
1635                 case FORMAT_TYPE_CHAR:
1636                         save_arg(char);
1637                         break;
1638
1639                 case FORMAT_TYPE_STR: {
1640                         const char *save_str = va_arg(args, char *);
1641                         size_t len;
1642
1643                         if ((unsigned long)save_str > (unsigned long)-PAGE_SIZE
1644                                         || (unsigned long)save_str < PAGE_SIZE)
1645                                 save_str = "(null)";
1646                         len = strlen(save_str) + 1;
1647                         if (str + len < end)
1648                                 memcpy(str, save_str, len);
1649                         str += len;
1650                         break;
1651                 }
1652
1653                 case FORMAT_TYPE_PTR:
1654                         save_arg(void *);
1655                         /* skip all alphanumeric pointer suffixes */
1656                         while (isalnum(*fmt))
1657                                 fmt++;
1658                         break;
1659
1660                 case FORMAT_TYPE_NRCHARS: {
1661                         /* skip %n 's argument */
1662                         u8 qualifier = spec.qualifier;
1663                         void *skip_arg;
1664                         if (qualifier == 'l')
1665                                 skip_arg = va_arg(args, long *);
1666                         else if (_tolower(qualifier) == 'z')
1667                                 skip_arg = va_arg(args, size_t *);
1668                         else
1669                                 skip_arg = va_arg(args, int *);
1670                         break;
1671                 }
1672
1673                 default:
1674                         switch (spec.type) {
1675
1676                         case FORMAT_TYPE_LONG_LONG:
1677                                 save_arg(long long);
1678                                 break;
1679                         case FORMAT_TYPE_ULONG:
1680                         case FORMAT_TYPE_LONG:
1681                                 save_arg(unsigned long);
1682                                 break;
1683                         case FORMAT_TYPE_SIZE_T:
1684                                 save_arg(size_t);
1685                                 break;
1686                         case FORMAT_TYPE_PTRDIFF:
1687                                 save_arg(ptrdiff_t);
1688                                 break;
1689                         case FORMAT_TYPE_UBYTE:
1690                         case FORMAT_TYPE_BYTE:
1691                                 save_arg(char);
1692                                 break;
1693                         case FORMAT_TYPE_USHORT:
1694                         case FORMAT_TYPE_SHORT:
1695                                 save_arg(short);
1696                                 break;
1697                         default:
1698                                 save_arg(int);
1699                         }
1700                 }
1701         }
1702
1703         return (u32 *)(PTR_ALIGN(str, sizeof(u32))) - bin_buf;
1704 #undef save_arg
1705 }
1706 EXPORT_SYMBOL_GPL(vbin_printf);
1707
1708 /**
1709  * bstr_printf - Format a string from binary arguments and place it in a buffer
1710  * @buf: The buffer to place the result into
1711  * @size: The size of the buffer, including the trailing null space
1712  * @fmt: The format string to use
1713  * @bin_buf: Binary arguments for the format string
1714  *
1715  * This function like C99 vsnprintf, but the difference is that vsnprintf gets
1716  * arguments from stack, and bstr_printf gets arguments from @bin_buf which is
1717  * a binary buffer that generated by vbin_printf.
1718  *
1719  * The format follows C99 vsnprintf, but has some extensions:
1720  *  see vsnprintf comment for details.
1721  *
1722  * The return value is the number of characters which would
1723  * be generated for the given input, excluding the trailing
1724  * '\0', as per ISO C99. If you want to have the exact
1725  * number of characters written into @buf as return value
1726  * (not including the trailing '\0'), use vscnprintf(). If the
1727  * return is greater than or equal to @size, the resulting
1728  * string is truncated.
1729  */
1730 int bstr_printf(char *buf, size_t size, const char *fmt, const u32 *bin_buf)
1731 {
1732         struct printf_spec spec = {0};
1733         char *str, *end;
1734         const char *args = (const char *)bin_buf;
1735
1736         if (WARN_ON_ONCE((int) size < 0))
1737                 return 0;
1738
1739         str = buf;
1740         end = buf + size;
1741
1742 #define get_arg(type)                                                   \
1743 ({                                                                      \
1744         typeof(type) value;                                             \
1745         if (sizeof(type) == 8) {                                        \
1746                 args = PTR_ALIGN(args, sizeof(u32));                    \
1747                 *(u32 *)&value = *(u32 *)args;                          \
1748                 *((u32 *)&value + 1) = *(u32 *)(args + 4);              \
1749         } else {                                                        \
1750                 args = PTR_ALIGN(args, sizeof(type));                   \
1751                 value = *(typeof(type) *)args;                          \
1752         }                                                               \
1753         args += sizeof(type);                                           \
1754         value;                                                          \
1755 })
1756
1757         /* Make sure end is always >= buf */
1758         if (end < buf) {
1759                 end = ((void *)-1);
1760                 size = end - buf;
1761         }
1762
1763         while (*fmt) {
1764                 const char *old_fmt = fmt;
1765                 int read = format_decode(fmt, &spec);
1766
1767                 fmt += read;
1768
1769                 switch (spec.type) {
1770                 case FORMAT_TYPE_NONE: {
1771                         int copy = read;
1772                         if (str < end) {
1773                                 if (copy > end - str)
1774                                         copy = end - str;
1775                                 memcpy(str, old_fmt, copy);
1776                         }
1777                         str += read;
1778                         break;
1779                 }
1780
1781                 case FORMAT_TYPE_WIDTH:
1782                         spec.field_width = get_arg(int);
1783                         break;
1784
1785                 case FORMAT_TYPE_PRECISION:
1786                         spec.precision = get_arg(int);
1787                         break;
1788
1789                 case FORMAT_TYPE_CHAR: {
1790                         char c;
1791
1792                         if (!(spec.flags & LEFT)) {
1793                                 while (--spec.field_width > 0) {
1794                                         if (str < end)
1795                                                 *str = ' ';
1796                                         ++str;
1797                                 }
1798                         }
1799                         c = (unsigned char) get_arg(char);
1800                         if (str < end)
1801                                 *str = c;
1802                         ++str;
1803                         while (--spec.field_width > 0) {
1804                                 if (str < end)
1805                                         *str = ' ';
1806                                 ++str;
1807                         }
1808                         break;
1809                 }
1810
1811                 case FORMAT_TYPE_STR: {
1812                         const char *str_arg = args;
1813                         args += strlen(str_arg) + 1;
1814                         str = string(str, end, (char *)str_arg, spec);
1815                         break;
1816                 }
1817
1818                 case FORMAT_TYPE_PTR:
1819                         str = pointer(fmt+1, str, end, get_arg(void *), spec);
1820                         while (isalnum(*fmt))
1821                                 fmt++;
1822                         break;
1823
1824                 case FORMAT_TYPE_PERCENT_CHAR:
1825                 case FORMAT_TYPE_INVALID:
1826                         if (str < end)
1827                                 *str = '%';
1828                         ++str;
1829                         break;
1830
1831                 case FORMAT_TYPE_NRCHARS:
1832                         /* skip */
1833                         break;
1834
1835                 default: {
1836                         unsigned long long num;
1837
1838                         switch (spec.type) {
1839
1840                         case FORMAT_TYPE_LONG_LONG:
1841                                 num = get_arg(long long);
1842                                 break;
1843                         case FORMAT_TYPE_ULONG:
1844                         case FORMAT_TYPE_LONG:
1845                                 num = get_arg(unsigned long);
1846                                 break;
1847                         case FORMAT_TYPE_SIZE_T:
1848                                 num = get_arg(size_t);
1849                                 break;
1850                         case FORMAT_TYPE_PTRDIFF:
1851                                 num = get_arg(ptrdiff_t);
1852                                 break;
1853                         case FORMAT_TYPE_UBYTE:
1854                                 num = get_arg(unsigned char);
1855                                 break;
1856                         case FORMAT_TYPE_BYTE:
1857                                 num = get_arg(signed char);
1858                                 break;
1859                         case FORMAT_TYPE_USHORT:
1860                                 num = get_arg(unsigned short);
1861                                 break;
1862                         case FORMAT_TYPE_SHORT:
1863                                 num = get_arg(short);
1864                                 break;
1865                         case FORMAT_TYPE_UINT:
1866                                 num = get_arg(unsigned int);
1867                                 break;
1868                         default:
1869                                 num = get_arg(int);
1870                         }
1871
1872                         str = number(str, end, num, spec);
1873                 } /* default: */
1874                 } /* switch(spec.type) */
1875         } /* while(*fmt) */
1876
1877         if (size > 0) {
1878                 if (str < end)
1879                         *str = '\0';
1880                 else
1881                         end[-1] = '\0';
1882         }
1883
1884 #undef get_arg
1885
1886         /* the trailing null byte doesn't count towards the total */
1887         return str - buf;
1888 }
1889 EXPORT_SYMBOL_GPL(bstr_printf);
1890
1891 /**
1892  * bprintf - Parse a format string and place args' binary value in a buffer
1893  * @bin_buf: The buffer to place args' binary value
1894  * @size: The size of the buffer(by words(32bits), not characters)
1895  * @fmt: The format string to use
1896  * @...: Arguments for the format string
1897  *
1898  * The function returns the number of words(u32) written
1899  * into @bin_buf.
1900  */
1901 int bprintf(u32 *bin_buf, size_t size, const char *fmt, ...)
1902 {
1903         va_list args;
1904         int ret;
1905
1906         va_start(args, fmt);
1907         ret = vbin_printf(bin_buf, size, fmt, args);
1908         va_end(args);
1909
1910         return ret;
1911 }
1912 EXPORT_SYMBOL_GPL(bprintf);
1913
1914 #endif /* CONFIG_BINARY_PRINTF */
1915
1916 /**
1917  * vsscanf - Unformat a buffer into a list of arguments
1918  * @buf:        input buffer
1919  * @fmt:        format of buffer
1920  * @args:       arguments
1921  */
1922 int vsscanf(const char *buf, const char *fmt, va_list args)
1923 {
1924         const char *str = buf;
1925         char *next;
1926         char digit;
1927         int num = 0;
1928         u8 qualifier;
1929         u8 base;
1930         s16 field_width;
1931         bool is_sign;
1932
1933         while (*fmt && *str) {
1934                 /* skip any white space in format */
1935                 /* white space in format matchs any amount of
1936                  * white space, including none, in the input.
1937                  */
1938                 if (isspace(*fmt)) {
1939                         fmt = skip_spaces(++fmt);
1940                         str = skip_spaces(str);
1941                 }
1942
1943                 /* anything that is not a conversion must match exactly */
1944                 if (*fmt != '%' && *fmt) {
1945                         if (*fmt++ != *str++)
1946                                 break;
1947                         continue;
1948                 }
1949
1950                 if (!*fmt)
1951                         break;
1952                 ++fmt;
1953
1954                 /* skip this conversion.
1955                  * advance both strings to next white space
1956                  */
1957                 if (*fmt == '*') {
1958                         while (!isspace(*fmt) && *fmt != '%' && *fmt)
1959                                 fmt++;
1960                         while (!isspace(*str) && *str)
1961                                 str++;
1962                         continue;
1963                 }
1964
1965                 /* get field width */
1966                 field_width = -1;
1967                 if (isdigit(*fmt))
1968                         field_width = skip_atoi(&fmt);
1969
1970                 /* get conversion qualifier */
1971                 qualifier = -1;
1972                 if (*fmt == 'h' || _tolower(*fmt) == 'l' ||
1973                     _tolower(*fmt) == 'z') {
1974                         qualifier = *fmt++;
1975                         if (unlikely(qualifier == *fmt)) {
1976                                 if (qualifier == 'h') {
1977                                         qualifier = 'H';
1978                                         fmt++;
1979                                 } else if (qualifier == 'l') {
1980                                         qualifier = 'L';
1981                                         fmt++;
1982                                 }
1983                         }
1984                 }
1985
1986                 if (!*fmt || !*str)
1987                         break;
1988
1989                 base = 10;
1990                 is_sign = 0;
1991
1992                 switch (*fmt++) {
1993                 case 'c':
1994                 {
1995                         char *s = (char *)va_arg(args, char*);
1996                         if (field_width == -1)
1997                                 field_width = 1;
1998                         do {
1999                                 *s++ = *str++;
2000                         } while (--field_width > 0 && *str);
2001                         num++;
2002                 }
2003                 continue;
2004                 case 's':
2005                 {
2006                         char *s = (char *)va_arg(args, char *);
2007                         if (field_width == -1)
2008                                 field_width = SHRT_MAX;
2009                         /* first, skip leading white space in buffer */
2010                         str = skip_spaces(str);
2011
2012                         /* now copy until next white space */
2013                         while (*str && !isspace(*str) && field_width--)
2014                                 *s++ = *str++;
2015                         *s = '\0';
2016                         num++;
2017                 }
2018                 continue;
2019                 case 'n':
2020                         /* return number of characters read so far */
2021                 {
2022                         int *i = (int *)va_arg(args, int*);
2023                         *i = str - buf;
2024                 }
2025                 continue;
2026                 case 'o':
2027                         base = 8;
2028                         break;
2029                 case 'x':
2030                 case 'X':
2031                         base = 16;
2032                         break;
2033                 case 'i':
2034                         base = 0;
2035                 case 'd':
2036                         is_sign = 1;
2037                 case 'u':
2038                         break;
2039                 case '%':
2040                         /* looking for '%' in str */
2041                         if (*str++ != '%')
2042                                 return num;
2043                         continue;
2044                 default:
2045                         /* invalid format; stop here */
2046                         return num;
2047                 }
2048
2049                 /* have some sort of integer conversion.
2050                  * first, skip white space in buffer.
2051                  */
2052                 str = skip_spaces(str);
2053
2054                 digit = *str;
2055                 if (is_sign && digit == '-')
2056                         digit = *(str + 1);
2057
2058                 if (!digit
2059                     || (base == 16 && !isxdigit(digit))
2060                     || (base == 10 && !isdigit(digit))
2061                     || (base == 8 && (!isdigit(digit) || digit > '7'))
2062                     || (base == 0 && !isdigit(digit)))
2063                         break;
2064
2065                 switch (qualifier) {
2066                 case 'H':       /* that's 'hh' in format */
2067                         if (is_sign) {
2068                                 signed char *s = (signed char *)va_arg(args, signed char *);
2069                                 *s = (signed char)simple_strtol(str, &next, base);
2070                         } else {
2071                                 unsigned char *s = (unsigned char *)va_arg(args, unsigned char *);
2072                                 *s = (unsigned char)simple_strtoul(str, &next, base);
2073                         }
2074                         break;
2075                 case 'h':
2076                         if (is_sign) {
2077                                 short *s = (short *)va_arg(args, short *);
2078                                 *s = (short)simple_strtol(str, &next, base);
2079                         } else {
2080                                 unsigned short *s = (unsigned short *)va_arg(args, unsigned short *);
2081                                 *s = (unsigned short)simple_strtoul(str, &next, base);
2082                         }
2083                         break;
2084                 case 'l':
2085                         if (is_sign) {
2086                                 long *l = (long *)va_arg(args, long *);
2087                                 *l = simple_strtol(str, &next, base);
2088                         } else {
2089                                 unsigned long *l = (unsigned long *)va_arg(args, unsigned long *);
2090                                 *l = simple_strtoul(str, &next, base);
2091                         }
2092                         break;
2093                 case 'L':
2094                         if (is_sign) {
2095                                 long long *l = (long long *)va_arg(args, long long *);
2096                                 *l = simple_strtoll(str, &next, base);
2097                         } else {
2098                                 unsigned long long *l = (unsigned long long *)va_arg(args, unsigned long long *);
2099                                 *l = simple_strtoull(str, &next, base);
2100                         }
2101                         break;
2102                 case 'Z':
2103                 case 'z':
2104                 {
2105                         size_t *s = (size_t *)va_arg(args, size_t *);
2106                         *s = (size_t)simple_strtoul(str, &next, base);
2107                 }
2108                 break;
2109                 default:
2110                         if (is_sign) {
2111                                 int *i = (int *)va_arg(args, int *);
2112                                 *i = (int)simple_strtol(str, &next, base);
2113                         } else {
2114                                 unsigned int *i = (unsigned int *)va_arg(args, unsigned int*);
2115                                 *i = (unsigned int)simple_strtoul(str, &next, base);
2116                         }
2117                         break;
2118                 }
2119                 num++;
2120
2121                 if (!next)
2122                         break;
2123                 str = next;
2124         }
2125
2126         /*
2127          * Now we've come all the way through so either the input string or the
2128          * format ended. In the former case, there can be a %n at the current
2129          * position in the format that needs to be filled.
2130          */
2131         if (*fmt == '%' && *(fmt + 1) == 'n') {
2132                 int *p = (int *)va_arg(args, int *);
2133                 *p = str - buf;
2134         }
2135
2136         return num;
2137 }
2138 EXPORT_SYMBOL(vsscanf);
2139
2140 /**
2141  * sscanf - Unformat a buffer into a list of arguments
2142  * @buf:        input buffer
2143  * @fmt:        formatting of buffer
2144  * @...:        resulting arguments
2145  */
2146 int sscanf(const char *buf, const char *fmt, ...)
2147 {
2148         va_list args;
2149         int i;
2150
2151         va_start(args, fmt);
2152         i = vsscanf(buf, fmt, args);
2153         va_end(args);
2154
2155         return i;
2156 }
2157 EXPORT_SYMBOL(sscanf);