replace some function names
[linux-2.6/zen-sources.git] / lib / vsprintf.c
blobe1a1b02076bc58c914080f22dcf19a75f83f39dd
1 /*
2 * linux/lib/vsprintf.c
4 * Copyright (C) 1991, 1992 Linus Torvalds
5 */
7 /* vsprintf.c -- Lars Wirzenius & Linus Torvalds. */
8 /*
9 * Wirzenius wrote this portably, Torvalds fucked it up :-)
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
19 #include <stdarg.h>
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>
29 #include <asm/page.h> /* for PAGE_SIZE */
30 #include <asm/div64.h>
31 #include <asm/sections.h> /* for dereference_function_descriptor() */
33 /* Works only for digits and letters, but small and fast */
34 #define TOLOWER(x) ((x) | 0x20)
36 static unsigned int simple_guess_base(const char *cp)
38 if (cp[0] == '0') {
39 if (TOLOWER(cp[1]) == 'x' && isxdigit(cp[2]))
40 return 16;
41 else
42 return 8;
43 } else {
44 return 10;
48 /**
49 * simple_strtoul - convert a string to an unsigned long
50 * @cp: The start of the string
51 * @endp: A pointer to the end of the parsed string will be placed here
52 * @base: The number base to use
54 unsigned long simple_strtoul(const char *cp, char **endp, unsigned int base)
56 unsigned long result = 0;
58 if (!base)
59 base = simple_guess_base(cp);
61 if (base == 16 && cp[0] == '0' && TOLOWER(cp[1]) == 'x')
62 cp += 2;
64 while (isxdigit(*cp)) {
65 unsigned int value;
67 value = isdigit(*cp) ? *cp - '0' : TOLOWER(*cp) - 'a' + 10;
68 if (value >= base)
69 break;
70 result = result * base + value;
71 cp++;
74 if (endp)
75 *endp = (char *)cp;
76 return result;
78 EXPORT_SYMBOL(simple_strtoul);
80 /**
81 * simple_strtol - convert a string to a signed long
82 * @cp: The start of the string
83 * @endp: A pointer to the end of the parsed string will be placed here
84 * @base: The number base to use
86 long simple_strtol(const char *cp, char **endp, unsigned int base)
88 if(*cp == '-')
89 return -simple_strtoul(cp + 1, endp, base);
90 return simple_strtoul(cp, endp, base);
92 EXPORT_SYMBOL(simple_strtol);
94 /**
95 * simple_strtoull - convert a string to an unsigned long long
96 * @cp: The start of the string
97 * @endp: A pointer to the end of the parsed string will be placed here
98 * @base: The number base to use
100 unsigned long long simple_strtoull(const char *cp, char **endp, unsigned int base)
102 unsigned long long result = 0;
104 if (!base)
105 base = simple_guess_base(cp);
107 if (base == 16 && cp[0] == '0' && TOLOWER(cp[1]) == 'x')
108 cp += 2;
110 while (isxdigit(*cp)) {
111 unsigned int value;
113 value = isdigit(*cp) ? *cp - '0' : TOLOWER(*cp) - 'a' + 10;
114 if (value >= base)
115 break;
116 result = result * base + value;
117 cp++;
120 if (endp)
121 *endp = (char *)cp;
122 return result;
124 EXPORT_SYMBOL(simple_strtoull);
127 * simple_strtoll - convert a string to a signed long long
128 * @cp: The start of the string
129 * @endp: A pointer to the end of the parsed string will be placed here
130 * @base: The number base to use
132 long long simple_strtoll(const char *cp, char **endp, unsigned int base)
134 if(*cp=='-')
135 return -simple_strtoull(cp + 1, endp, base);
136 return simple_strtoull(cp, endp, base);
140 * strict_strtoul - convert a string to an unsigned long strictly
141 * @cp: The string to be converted
142 * @base: The number base to use
143 * @res: The converted result value
145 * strict_strtoul converts a string to an unsigned long only if the
146 * string is really an unsigned long string, any string containing
147 * any invalid char at the tail will be rejected and -EINVAL is returned,
148 * only a newline char at the tail is acceptible because people generally
149 * change a module parameter in the following way:
151 * echo 1024 > /sys/module/e1000/parameters/copybreak
153 * echo will append a newline to the tail.
155 * It returns 0 if conversion is successful and *res is set to the converted
156 * value, otherwise it returns -EINVAL and *res is set to 0.
158 * simple_strtoul just ignores the successive invalid characters and
159 * return the converted value of prefix part of the string.
161 int strict_strtoul(const char *cp, unsigned int base, unsigned long *res)
163 char *tail;
164 unsigned long val;
165 size_t len;
167 *res = 0;
168 len = strlen(cp);
169 if (len == 0)
170 return -EINVAL;
172 val = simple_strtoul(cp, &tail, base);
173 if ((*tail == '\0') ||
174 ((len == (size_t)(tail - cp) + 1) && (*tail == '\n'))) {
175 *res = val;
176 return 0;
179 return -EINVAL;
181 EXPORT_SYMBOL(strict_strtoul);
184 * strict_strtol - convert a string to a long strictly
185 * @cp: The string to be converted
186 * @base: The number base to use
187 * @res: The converted result value
189 * strict_strtol is similiar to strict_strtoul, but it allows the first
190 * character of a string is '-'.
192 * It returns 0 if conversion is successful and *res is set to the converted
193 * value, otherwise it returns -EINVAL and *res is set to 0.
195 int strict_strtol(const char *cp, unsigned int base, long *res)
197 int ret;
198 if (*cp == '-') {
199 ret = strict_strtoul(cp + 1, base, (unsigned long *)res);
200 if (!ret)
201 *res = -(*res);
202 } else {
203 ret = strict_strtoul(cp, base, (unsigned long *)res);
206 return ret;
208 EXPORT_SYMBOL(strict_strtol);
211 * strict_strtoull - convert a string to an unsigned long long strictly
212 * @cp: The string to be converted
213 * @base: The number base to use
214 * @res: The converted result value
216 * strict_strtoull converts a string to an unsigned long long only if the
217 * string is really an unsigned long long string, any string containing
218 * any invalid char at the tail will be rejected and -EINVAL is returned,
219 * only a newline char at the tail is acceptible because people generally
220 * change a module parameter in the following way:
222 * echo 1024 > /sys/module/e1000/parameters/copybreak
224 * echo will append a newline to the tail of the string.
226 * It returns 0 if conversion is successful and *res is set to the converted
227 * value, otherwise it returns -EINVAL and *res is set to 0.
229 * simple_strtoull just ignores the successive invalid characters and
230 * return the converted value of prefix part of the string.
232 int strict_strtoull(const char *cp, unsigned int base, unsigned long long *res)
234 char *tail;
235 unsigned long long val;
236 size_t len;
238 *res = 0;
239 len = strlen(cp);
240 if (len == 0)
241 return -EINVAL;
243 val = simple_strtoull(cp, &tail, base);
244 if ((*tail == '\0') ||
245 ((len == (size_t)(tail - cp) + 1) && (*tail == '\n'))) {
246 *res = val;
247 return 0;
250 return -EINVAL;
252 EXPORT_SYMBOL(strict_strtoull);
255 * strict_strtoll - convert a string to a long long strictly
256 * @cp: The string to be converted
257 * @base: The number base to use
258 * @res: The converted result value
260 * strict_strtoll is similiar to strict_strtoull, but it allows the first
261 * character of a string is '-'.
263 * It returns 0 if conversion is successful and *res is set to the converted
264 * value, otherwise it returns -EINVAL and *res is set to 0.
266 int strict_strtoll(const char *cp, unsigned int base, long long *res)
268 int ret;
269 if (*cp == '-') {
270 ret = strict_strtoull(cp + 1, base, (unsigned long long *)res);
271 if (!ret)
272 *res = -(*res);
273 } else {
274 ret = strict_strtoull(cp, base, (unsigned long long *)res);
277 return ret;
279 EXPORT_SYMBOL(strict_strtoll);
281 static int skip_atoi(const char **s)
283 int i=0;
285 while (isdigit(**s))
286 i = i*10 + *((*s)++) - '0';
287 return i;
290 /* Decimal conversion is by far the most typical, and is used
291 * for /proc and /sys data. This directly impacts e.g. top performance
292 * with many processes running. We optimize it for speed
293 * using code from
294 * http://www.cs.uiowa.edu/~jones/bcd/decimal.html
295 * (with permission from the author, Douglas W. Jones). */
297 /* Formats correctly any integer in [0,99999].
298 * Outputs from one to five digits depending on input.
299 * On i386 gcc 4.1.2 -O2: ~250 bytes of code. */
300 static char* put_dec_trunc(char *buf, unsigned q)
302 unsigned d3, d2, d1, d0;
303 d1 = (q>>4) & 0xf;
304 d2 = (q>>8) & 0xf;
305 d3 = (q>>12);
307 d0 = 6*(d3 + d2 + d1) + (q & 0xf);
308 q = (d0 * 0xcd) >> 11;
309 d0 = d0 - 10*q;
310 *buf++ = d0 + '0'; /* least significant digit */
311 d1 = q + 9*d3 + 5*d2 + d1;
312 if (d1 != 0) {
313 q = (d1 * 0xcd) >> 11;
314 d1 = d1 - 10*q;
315 *buf++ = d1 + '0'; /* next digit */
317 d2 = q + 2*d2;
318 if ((d2 != 0) || (d3 != 0)) {
319 q = (d2 * 0xd) >> 7;
320 d2 = d2 - 10*q;
321 *buf++ = d2 + '0'; /* next digit */
323 d3 = q + 4*d3;
324 if (d3 != 0) {
325 q = (d3 * 0xcd) >> 11;
326 d3 = d3 - 10*q;
327 *buf++ = d3 + '0'; /* next digit */
328 if (q != 0)
329 *buf++ = q + '0'; /* most sign. digit */
333 return buf;
335 /* Same with if's removed. Always emits five digits */
336 static char* put_dec_full(char *buf, unsigned q)
338 /* BTW, if q is in [0,9999], 8-bit ints will be enough, */
339 /* but anyway, gcc produces better code with full-sized ints */
340 unsigned d3, d2, d1, d0;
341 d1 = (q>>4) & 0xf;
342 d2 = (q>>8) & 0xf;
343 d3 = (q>>12);
345 /* Possible ways to approx. divide by 10 */
346 /* gcc -O2 replaces multiply with shifts and adds */
347 // (x * 0xcd) >> 11: 11001101 - shorter code than * 0x67 (on i386)
348 // (x * 0x67) >> 10: 1100111
349 // (x * 0x34) >> 9: 110100 - same
350 // (x * 0x1a) >> 8: 11010 - same
351 // (x * 0x0d) >> 7: 1101 - same, shortest code (on i386)
353 d0 = 6*(d3 + d2 + d1) + (q & 0xf);
354 q = (d0 * 0xcd) >> 11;
355 d0 = d0 - 10*q;
356 *buf++ = d0 + '0';
357 d1 = q + 9*d3 + 5*d2 + d1;
358 q = (d1 * 0xcd) >> 11;
359 d1 = d1 - 10*q;
360 *buf++ = d1 + '0';
362 d2 = q + 2*d2;
363 q = (d2 * 0xd) >> 7;
364 d2 = d2 - 10*q;
365 *buf++ = d2 + '0';
367 d3 = q + 4*d3;
368 q = (d3 * 0xcd) >> 11; /* - shorter code */
369 /* q = (d3 * 0x67) >> 10; - would also work */
370 d3 = d3 - 10*q;
371 *buf++ = d3 + '0';
372 *buf++ = q + '0';
373 return buf;
375 /* No inlining helps gcc to use registers better */
376 static noinline char* put_dec(char *buf, unsigned long long num)
378 while (1) {
379 unsigned rem;
380 if (num < 100000)
381 return put_dec_trunc(buf, num);
382 rem = do_div(num, 100000);
383 buf = put_dec_full(buf, rem);
387 #define ZEROPAD 1 /* pad with zero */
388 #define SIGN 2 /* unsigned/signed long */
389 #define PLUS 4 /* show plus */
390 #define SPACE 8 /* space if plus */
391 #define LEFT 16 /* left justified */
392 #define SMALL 32 /* Must be 32 == 0x20 */
393 #define SPECIAL 64 /* 0x */
395 static char *number(char *buf, char *end, unsigned long long num, int base, int size, int precision, int type)
397 /* we are called with base 8, 10 or 16, only, thus don't need "G..." */
398 static const char digits[16] = "0123456789ABCDEF"; /* "GHIJKLMNOPQRSTUVWXYZ"; */
400 char tmp[66];
401 char sign;
402 char locase;
403 int need_pfx = ((type & SPECIAL) && base != 10);
404 int i;
406 /* locase = 0 or 0x20. ORing digits or letters with 'locase'
407 * produces same digits or (maybe lowercased) letters */
408 locase = (type & SMALL);
409 if (type & LEFT)
410 type &= ~ZEROPAD;
411 sign = 0;
412 if (type & SIGN) {
413 if ((signed long long) num < 0) {
414 sign = '-';
415 num = - (signed long long) num;
416 size--;
417 } else if (type & PLUS) {
418 sign = '+';
419 size--;
420 } else if (type & SPACE) {
421 sign = ' ';
422 size--;
425 if (need_pfx) {
426 size--;
427 if (base == 16)
428 size--;
431 /* generate full string in tmp[], in reverse order */
432 i = 0;
433 if (num == 0)
434 tmp[i++] = '0';
435 /* Generic code, for any base:
436 else do {
437 tmp[i++] = (digits[do_div(num,base)] | locase);
438 } while (num != 0);
440 else if (base != 10) { /* 8 or 16 */
441 int mask = base - 1;
442 int shift = 3;
443 if (base == 16) shift = 4;
444 do {
445 tmp[i++] = (digits[((unsigned char)num) & mask] | locase);
446 num >>= shift;
447 } while (num);
448 } else { /* base 10 */
449 i = put_dec(tmp, num) - tmp;
452 /* printing 100 using %2d gives "100", not "00" */
453 if (i > precision)
454 precision = i;
455 /* leading space padding */
456 size -= precision;
457 if (!(type & (ZEROPAD+LEFT))) {
458 while(--size >= 0) {
459 if (buf < end)
460 *buf = ' ';
461 ++buf;
464 /* sign */
465 if (sign) {
466 if (buf < end)
467 *buf = sign;
468 ++buf;
470 /* "0x" / "0" prefix */
471 if (need_pfx) {
472 if (buf < end)
473 *buf = '0';
474 ++buf;
475 if (base == 16) {
476 if (buf < end)
477 *buf = ('X' | locase);
478 ++buf;
481 /* zero or space padding */
482 if (!(type & LEFT)) {
483 char c = (type & ZEROPAD) ? '0' : ' ';
484 while (--size >= 0) {
485 if (buf < end)
486 *buf = c;
487 ++buf;
490 /* hmm even more zero padding? */
491 while (i <= --precision) {
492 if (buf < end)
493 *buf = '0';
494 ++buf;
496 /* actual digits of result */
497 while (--i >= 0) {
498 if (buf < end)
499 *buf = tmp[i];
500 ++buf;
502 /* trailing space padding */
503 while (--size >= 0) {
504 if (buf < end)
505 *buf = ' ';
506 ++buf;
508 return buf;
511 static char *string(char *buf, char *end, char *s, int field_width, int precision, int flags)
513 int len, i;
515 if ((unsigned long)s < PAGE_SIZE)
516 s = "<NULL>";
518 len = strnlen(s, precision);
520 if (!(flags & LEFT)) {
521 while (len < field_width--) {
522 if (buf < end)
523 *buf = ' ';
524 ++buf;
527 for (i = 0; i < len; ++i) {
528 if (buf < end)
529 *buf = *s;
530 ++buf; ++s;
532 while (len < field_width--) {
533 if (buf < end)
534 *buf = ' ';
535 ++buf;
537 return buf;
540 static char *symbol_string(char *buf, char *end, void *ptr, int field_width, int precision, int flags)
542 unsigned long value = (unsigned long) ptr;
543 #ifdef CONFIG_KALLSYMS
544 char sym[KSYM_SYMBOL_LEN];
545 sprint_symbol(sym, value);
546 return string(buf, end, sym, field_width, precision, flags);
547 #else
548 field_width = 2*sizeof(void *);
549 flags |= SPECIAL | SMALL | ZEROPAD;
550 return number(buf, end, value, 16, field_width, precision, flags);
551 #endif
554 static char *resource_string(char *buf, char *end, struct resource *res, int field_width, int precision, int flags)
556 #ifndef IO_RSRC_PRINTK_SIZE
557 #define IO_RSRC_PRINTK_SIZE 4
558 #endif
560 #ifndef MEM_RSRC_PRINTK_SIZE
561 #define MEM_RSRC_PRINTK_SIZE 8
562 #endif
564 /* room for the actual numbers, the two "0x", -, [, ] and the final zero */
565 char sym[4*sizeof(resource_size_t) + 8];
566 char *p = sym, *pend = sym + sizeof(sym);
567 int size = -1;
569 if (res->flags & IORESOURCE_IO)
570 size = IO_RSRC_PRINTK_SIZE;
571 else if (res->flags & IORESOURCE_MEM)
572 size = MEM_RSRC_PRINTK_SIZE;
574 *p++ = '[';
575 p = number(p, pend, res->start, 16, size, -1, SPECIAL | SMALL | ZEROPAD);
576 *p++ = '-';
577 p = number(p, pend, res->end, 16, size, -1, SPECIAL | SMALL | ZEROPAD);
578 *p++ = ']';
579 *p = 0;
581 return string(buf, end, sym, field_width, precision, flags);
585 * Show a '%p' thing. A kernel extension is that the '%p' is followed
586 * by an extra set of alphanumeric characters that are extended format
587 * specifiers.
589 * Right now we handle:
591 * - 'F' For symbolic function descriptor pointers
592 * - 'S' For symbolic direct pointers
593 * - 'R' For a struct resource pointer, it prints the range of
594 * addresses (not the name nor the flags)
596 * Note: The difference between 'S' and 'F' is that on ia64 and ppc64
597 * function pointers are really function descriptors, which contain a
598 * pointer to the real address.
600 static char *pointer(const char *fmt, char *buf, char *end, void *ptr, int field_width, int precision, int flags)
602 switch (*fmt) {
603 case 'F':
604 ptr = dereference_function_descriptor(ptr);
605 /* Fallthrough */
606 case 'S':
607 return symbol_string(buf, end, ptr, field_width, precision, flags);
608 case 'R':
609 return resource_string(buf, end, ptr, field_width, precision, flags);
611 flags |= SMALL;
612 if (field_width == -1) {
613 field_width = 2*sizeof(void *);
614 flags |= ZEROPAD;
616 return number(buf, end, (unsigned long) ptr, 16, field_width, precision, flags);
620 * vsnprintf_used
622 * Functionality : Print a string with parameters to a buffer of a
623 * limited size. Unlike vsnprintf, we return the number
624 * of bytes actually put in the buffer, not the number
625 * that would have been put in if it was big enough.
627 int snprintf_used(char *buffer, int buffer_size, const char *fmt, ...)
629 int result;
630 va_list args;
632 if (!buffer_size)
633 return 0;
635 va_start(args, fmt);
636 result = vsnprintf(buffer, buffer_size, fmt, args);
637 va_end(args);
639 return result > buffer_size ? buffer_size : result;
643 * vsnprintf - Format a string and place it in a buffer
644 * @buf: The buffer to place the result into
645 * @size: The size of the buffer, including the trailing null space
646 * @fmt: The format string to use
647 * @args: Arguments for the format string
649 * This function follows C99 vsnprintf, but has some extensions:
650 * %pS output the name of a text symbol
651 * %pF output the name of a function pointer
652 * %pR output the address range in a struct resource
654 * The return value is the number of characters which would
655 * be generated for the given input, excluding the trailing
656 * '\0', as per ISO C99. If you want to have the exact
657 * number of characters written into @buf as return value
658 * (not including the trailing '\0'), use vscnprintf(). If the
659 * return is greater than or equal to @size, the resulting
660 * string is truncated.
662 * Call this function if you are already dealing with a va_list.
663 * You probably want snprintf() instead.
665 int vsnprintf(char *buf, size_t size, const char *fmt, va_list args)
667 unsigned long long num;
668 int base;
669 char *str, *end, c;
671 int flags; /* flags to number() */
673 int field_width; /* width of output field */
674 int precision; /* min. # of digits for integers; max
675 number of chars for from string */
676 int qualifier; /* 'h', 'l', or 'L' for integer fields */
677 /* 'z' support added 23/7/1999 S.H. */
678 /* 'z' changed to 'Z' --davidm 1/25/99 */
679 /* 't' added for ptrdiff_t */
681 /* Reject out-of-range values early. Large positive sizes are
682 used for unknown buffer sizes. */
683 if (unlikely((int) size < 0)) {
684 /* There can be only one.. */
685 static char warn = 1;
686 WARN_ON(warn);
687 warn = 0;
688 return 0;
691 str = buf;
692 end = buf + size;
694 /* Make sure end is always >= buf */
695 if (end < buf) {
696 end = ((void *)-1);
697 size = end - buf;
700 for (; *fmt ; ++fmt) {
701 if (*fmt != '%') {
702 if (str < end)
703 *str = *fmt;
704 ++str;
705 continue;
708 /* process flags */
709 flags = 0;
710 repeat:
711 ++fmt; /* this also skips first '%' */
712 switch (*fmt) {
713 case '-': flags |= LEFT; goto repeat;
714 case '+': flags |= PLUS; goto repeat;
715 case ' ': flags |= SPACE; goto repeat;
716 case '#': flags |= SPECIAL; goto repeat;
717 case '0': flags |= ZEROPAD; goto repeat;
720 /* get field width */
721 field_width = -1;
722 if (isdigit(*fmt))
723 field_width = skip_atoi(&fmt);
724 else if (*fmt == '*') {
725 ++fmt;
726 /* it's the next argument */
727 field_width = va_arg(args, int);
728 if (field_width < 0) {
729 field_width = -field_width;
730 flags |= LEFT;
734 /* get the precision */
735 precision = -1;
736 if (*fmt == '.') {
737 ++fmt;
738 if (isdigit(*fmt))
739 precision = skip_atoi(&fmt);
740 else if (*fmt == '*') {
741 ++fmt;
742 /* it's the next argument */
743 precision = va_arg(args, int);
745 if (precision < 0)
746 precision = 0;
749 /* get the conversion qualifier */
750 qualifier = -1;
751 if (*fmt == 'h' || *fmt == 'l' || *fmt == 'L' ||
752 *fmt =='Z' || *fmt == 'z' || *fmt == 't') {
753 qualifier = *fmt;
754 ++fmt;
755 if (qualifier == 'l' && *fmt == 'l') {
756 qualifier = 'L';
757 ++fmt;
761 /* default base */
762 base = 10;
764 switch (*fmt) {
765 case 'c':
766 if (!(flags & LEFT)) {
767 while (--field_width > 0) {
768 if (str < end)
769 *str = ' ';
770 ++str;
773 c = (unsigned char) va_arg(args, int);
774 if (str < end)
775 *str = c;
776 ++str;
777 while (--field_width > 0) {
778 if (str < end)
779 *str = ' ';
780 ++str;
782 continue;
784 case 's':
785 str = string(str, end, va_arg(args, char *), field_width, precision, flags);
786 continue;
788 case 'p':
789 str = pointer(fmt+1, str, end,
790 va_arg(args, void *),
791 field_width, precision, flags);
792 /* Skip all alphanumeric pointer suffixes */
793 while (isalnum(fmt[1]))
794 fmt++;
795 continue;
797 case 'n':
798 /* FIXME:
799 * What does C99 say about the overflow case here? */
800 if (qualifier == 'l') {
801 long * ip = va_arg(args, long *);
802 *ip = (str - buf);
803 } else if (qualifier == 'Z' || qualifier == 'z') {
804 size_t * ip = va_arg(args, size_t *);
805 *ip = (str - buf);
806 } else {
807 int * ip = va_arg(args, int *);
808 *ip = (str - buf);
810 continue;
812 case '%':
813 if (str < end)
814 *str = '%';
815 ++str;
816 continue;
818 /* integer number formats - set up the flags and "break" */
819 case 'o':
820 base = 8;
821 break;
823 case 'x':
824 flags |= SMALL;
825 case 'X':
826 base = 16;
827 break;
829 case 'd':
830 case 'i':
831 flags |= SIGN;
832 case 'u':
833 break;
835 default:
836 if (str < end)
837 *str = '%';
838 ++str;
839 if (*fmt) {
840 if (str < end)
841 *str = *fmt;
842 ++str;
843 } else {
844 --fmt;
846 continue;
848 if (qualifier == 'L')
849 num = va_arg(args, long long);
850 else if (qualifier == 'l') {
851 num = va_arg(args, unsigned long);
852 if (flags & SIGN)
853 num = (signed long) num;
854 } else if (qualifier == 'Z' || qualifier == 'z') {
855 num = va_arg(args, size_t);
856 } else if (qualifier == 't') {
857 num = va_arg(args, ptrdiff_t);
858 } else if (qualifier == 'h') {
859 num = (unsigned short) va_arg(args, int);
860 if (flags & SIGN)
861 num = (signed short) num;
862 } else {
863 num = va_arg(args, unsigned int);
864 if (flags & SIGN)
865 num = (signed int) num;
867 str = number(str, end, num, base,
868 field_width, precision, flags);
870 if (size > 0) {
871 if (str < end)
872 *str = '\0';
873 else
874 end[-1] = '\0';
876 /* the trailing null byte doesn't count towards the total */
877 return str-buf;
879 EXPORT_SYMBOL(vsnprintf);
882 * vscnprintf - Format a string and place it in a buffer
883 * @buf: The buffer to place the result into
884 * @size: The size of the buffer, including the trailing null space
885 * @fmt: The format string to use
886 * @args: Arguments for the format string
888 * The return value is the number of characters which have been written into
889 * the @buf not including the trailing '\0'. If @size is <= 0 the function
890 * returns 0.
892 * Call this function if you are already dealing with a va_list.
893 * You probably want scnprintf() instead.
895 * See the vsnprintf() documentation for format string extensions over C99.
897 int vscnprintf(char *buf, size_t size, const char *fmt, va_list args)
899 int i;
901 i=vsnprintf(buf,size,fmt,args);
902 return (i >= size) ? (size - 1) : i;
904 EXPORT_SYMBOL(vscnprintf);
907 * snprintf - Format a string and place it in a buffer
908 * @buf: The buffer to place the result into
909 * @size: The size of the buffer, including the trailing null space
910 * @fmt: The format string to use
911 * @...: Arguments for the format string
913 * The return value is the number of characters which would be
914 * generated for the given input, excluding the trailing null,
915 * as per ISO C99. If the return is greater than or equal to
916 * @size, the resulting string is truncated.
918 * See the vsnprintf() documentation for format string extensions over C99.
920 int snprintf(char * buf, size_t size, const char *fmt, ...)
922 va_list args;
923 int i;
925 va_start(args, fmt);
926 i=vsnprintf(buf,size,fmt,args);
927 va_end(args);
928 return i;
930 EXPORT_SYMBOL(snprintf);
933 * scnprintf - Format a string and place it in a buffer
934 * @buf: The buffer to place the result into
935 * @size: The size of the buffer, including the trailing null space
936 * @fmt: The format string to use
937 * @...: Arguments for the format string
939 * The return value is the number of characters written into @buf not including
940 * the trailing '\0'. If @size is <= 0 the function returns 0.
943 int scnprintf(char * buf, size_t size, const char *fmt, ...)
945 va_list args;
946 int i;
948 va_start(args, fmt);
949 i = vsnprintf(buf, size, fmt, args);
950 va_end(args);
951 return (i >= size) ? (size - 1) : i;
953 EXPORT_SYMBOL(scnprintf);
956 * vsprintf - Format a string and place it in a buffer
957 * @buf: The buffer to place the result into
958 * @fmt: The format string to use
959 * @args: Arguments for the format string
961 * The function returns the number of characters written
962 * into @buf. Use vsnprintf() or vscnprintf() in order to avoid
963 * buffer overflows.
965 * Call this function if you are already dealing with a va_list.
966 * You probably want sprintf() instead.
968 * See the vsnprintf() documentation for format string extensions over C99.
970 int vsprintf(char *buf, const char *fmt, va_list args)
972 return vsnprintf(buf, INT_MAX, fmt, args);
974 EXPORT_SYMBOL(vsprintf);
977 * sprintf - Format a string and place it in a buffer
978 * @buf: The buffer to place the result into
979 * @fmt: The format string to use
980 * @...: Arguments for the format string
982 * The function returns the number of characters written
983 * into @buf. Use snprintf() or scnprintf() in order to avoid
984 * buffer overflows.
986 * See the vsnprintf() documentation for format string extensions over C99.
988 int sprintf(char * buf, const char *fmt, ...)
990 va_list args;
991 int i;
993 va_start(args, fmt);
994 i=vsnprintf(buf, INT_MAX, fmt, args);
995 va_end(args);
996 return i;
998 EXPORT_SYMBOL(sprintf);
1001 * vsscanf - Unformat a buffer into a list of arguments
1002 * @buf: input buffer
1003 * @fmt: format of buffer
1004 * @args: arguments
1006 int vsscanf(const char * buf, const char * fmt, va_list args)
1008 const char *str = buf;
1009 char *next;
1010 char digit;
1011 int num = 0;
1012 int qualifier;
1013 int base;
1014 int field_width;
1015 int is_sign = 0;
1017 while(*fmt && *str) {
1018 /* skip any white space in format */
1019 /* white space in format matchs any amount of
1020 * white space, including none, in the input.
1022 if (isspace(*fmt)) {
1023 while (isspace(*fmt))
1024 ++fmt;
1025 while (isspace(*str))
1026 ++str;
1029 /* anything that is not a conversion must match exactly */
1030 if (*fmt != '%' && *fmt) {
1031 if (*fmt++ != *str++)
1032 break;
1033 continue;
1036 if (!*fmt)
1037 break;
1038 ++fmt;
1040 /* skip this conversion.
1041 * advance both strings to next white space
1043 if (*fmt == '*') {
1044 while (!isspace(*fmt) && *fmt)
1045 fmt++;
1046 while (!isspace(*str) && *str)
1047 str++;
1048 continue;
1051 /* get field width */
1052 field_width = -1;
1053 if (isdigit(*fmt))
1054 field_width = skip_atoi(&fmt);
1056 /* get conversion qualifier */
1057 qualifier = -1;
1058 if (*fmt == 'h' || *fmt == 'l' || *fmt == 'L' ||
1059 *fmt == 'Z' || *fmt == 'z') {
1060 qualifier = *fmt++;
1061 if (unlikely(qualifier == *fmt)) {
1062 if (qualifier == 'h') {
1063 qualifier = 'H';
1064 fmt++;
1065 } else if (qualifier == 'l') {
1066 qualifier = 'L';
1067 fmt++;
1071 base = 10;
1072 is_sign = 0;
1074 if (!*fmt || !*str)
1075 break;
1077 switch(*fmt++) {
1078 case 'c':
1080 char *s = (char *) va_arg(args,char*);
1081 if (field_width == -1)
1082 field_width = 1;
1083 do {
1084 *s++ = *str++;
1085 } while (--field_width > 0 && *str);
1086 num++;
1088 continue;
1089 case 's':
1091 char *s = (char *) va_arg(args, char *);
1092 if(field_width == -1)
1093 field_width = INT_MAX;
1094 /* first, skip leading white space in buffer */
1095 while (isspace(*str))
1096 str++;
1098 /* now copy until next white space */
1099 while (*str && !isspace(*str) && field_width--) {
1100 *s++ = *str++;
1102 *s = '\0';
1103 num++;
1105 continue;
1106 case 'n':
1107 /* return number of characters read so far */
1109 int *i = (int *)va_arg(args,int*);
1110 *i = str - buf;
1112 continue;
1113 case 'o':
1114 base = 8;
1115 break;
1116 case 'x':
1117 case 'X':
1118 base = 16;
1119 break;
1120 case 'i':
1121 base = 0;
1122 case 'd':
1123 is_sign = 1;
1124 case 'u':
1125 break;
1126 case '%':
1127 /* looking for '%' in str */
1128 if (*str++ != '%')
1129 return num;
1130 continue;
1131 default:
1132 /* invalid format; stop here */
1133 return num;
1136 /* have some sort of integer conversion.
1137 * first, skip white space in buffer.
1139 while (isspace(*str))
1140 str++;
1142 digit = *str;
1143 if (is_sign && digit == '-')
1144 digit = *(str + 1);
1146 if (!digit
1147 || (base == 16 && !isxdigit(digit))
1148 || (base == 10 && !isdigit(digit))
1149 || (base == 8 && (!isdigit(digit) || digit > '7'))
1150 || (base == 0 && !isdigit(digit)))
1151 break;
1153 switch(qualifier) {
1154 case 'H': /* that's 'hh' in format */
1155 if (is_sign) {
1156 signed char *s = (signed char *) va_arg(args,signed char *);
1157 *s = (signed char) simple_strtol(str,&next,base);
1158 } else {
1159 unsigned char *s = (unsigned char *) va_arg(args, unsigned char *);
1160 *s = (unsigned char) simple_strtoul(str, &next, base);
1162 break;
1163 case 'h':
1164 if (is_sign) {
1165 short *s = (short *) va_arg(args,short *);
1166 *s = (short) simple_strtol(str,&next,base);
1167 } else {
1168 unsigned short *s = (unsigned short *) va_arg(args, unsigned short *);
1169 *s = (unsigned short) simple_strtoul(str, &next, base);
1171 break;
1172 case 'l':
1173 if (is_sign) {
1174 long *l = (long *) va_arg(args,long *);
1175 *l = simple_strtol(str,&next,base);
1176 } else {
1177 unsigned long *l = (unsigned long*) va_arg(args,unsigned long*);
1178 *l = simple_strtoul(str,&next,base);
1180 break;
1181 case 'L':
1182 if (is_sign) {
1183 long long *l = (long long*) va_arg(args,long long *);
1184 *l = simple_strtoll(str,&next,base);
1185 } else {
1186 unsigned long long *l = (unsigned long long*) va_arg(args,unsigned long long*);
1187 *l = simple_strtoull(str,&next,base);
1189 break;
1190 case 'Z':
1191 case 'z':
1193 size_t *s = (size_t*) va_arg(args,size_t*);
1194 *s = (size_t) simple_strtoul(str,&next,base);
1196 break;
1197 default:
1198 if (is_sign) {
1199 int *i = (int *) va_arg(args, int*);
1200 *i = (int) simple_strtol(str,&next,base);
1201 } else {
1202 unsigned int *i = (unsigned int*) va_arg(args, unsigned int*);
1203 *i = (unsigned int) simple_strtoul(str,&next,base);
1205 break;
1207 num++;
1209 if (!next)
1210 break;
1211 str = next;
1215 * Now we've come all the way through so either the input string or the
1216 * format ended. In the former case, there can be a %n at the current
1217 * position in the format that needs to be filled.
1219 if (*fmt == '%' && *(fmt + 1) == 'n') {
1220 int *p = (int *)va_arg(args, int *);
1221 *p = str - buf;
1224 return num;
1226 EXPORT_SYMBOL(vsscanf);
1229 * sscanf - Unformat a buffer into a list of arguments
1230 * @buf: input buffer
1231 * @fmt: formatting of buffer
1232 * @...: resulting arguments
1234 int sscanf(const char * buf, const char * fmt, ...)
1236 va_list args;
1237 int i;
1239 va_start(args,fmt);
1240 i = vsscanf(buf,fmt,args);
1241 va_end(args);
1242 return i;
1244 EXPORT_SYMBOL(sscanf);