Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | |
André Goddard Rosa | 7b9186f | 2009-12-14 18:00:57 -0800 | [diff] [blame] | 12 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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> |
Paul Gortmaker | 8bc3bcc | 2011-11-16 21:29:17 -0500 | [diff] [blame] | 20 | #include <linux/module.h> /* for KSYM_SYMBOL_LEN */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | #include <linux/types.h> |
| 22 | #include <linux/string.h> |
| 23 | #include <linux/ctype.h> |
| 24 | #include <linux/kernel.h> |
Linus Torvalds | 0fe1ef2 | 2008-07-06 16:43:12 -0700 | [diff] [blame] | 25 | #include <linux/kallsyms.h> |
Jan Beulich | 5380975 | 2012-12-17 16:01:31 -0800 | [diff] [blame] | 26 | #include <linux/math64.h> |
Linus Torvalds | 0fe1ef2 | 2008-07-06 16:43:12 -0700 | [diff] [blame] | 27 | #include <linux/uaccess.h> |
Linus Torvalds | 332d2e7 | 2008-10-20 15:07:34 +1100 | [diff] [blame] | 28 | #include <linux/ioport.h> |
Al Viro | 4b6ccca | 2013-09-03 12:00:44 -0400 | [diff] [blame] | 29 | #include <linux/dcache.h> |
Ryan Mallon | 312b4e2 | 2013-11-12 15:08:51 -0800 | [diff] [blame] | 30 | #include <linux/cred.h> |
Joe Perches | 8a27f7c | 2009-08-17 12:29:44 +0000 | [diff] [blame] | 31 | #include <net/addrconf.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | |
Tim Schmielau | 4e57b68 | 2005-10-30 15:03:48 -0800 | [diff] [blame] | 33 | #include <asm/page.h> /* for PAGE_SIZE */ |
James Bottomley | deac93d | 2008-09-03 20:43:36 -0500 | [diff] [blame] | 34 | #include <asm/sections.h> /* for dereference_function_descriptor() */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | |
Andy Shevchenko | 71dca95 | 2014-10-13 15:55:18 -0700 | [diff] [blame] | 36 | #include <linux/string_helpers.h> |
Alexey Dobriyan | 1dff46d | 2011-10-31 17:12:28 -0700 | [diff] [blame] | 37 | #include "kstrtox.h" |
Harvey Harrison | aa46a63 | 2008-10-16 13:40:34 -0700 | [diff] [blame] | 38 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | * simple_strtoull - convert a string to an unsigned long long |
| 41 | * @cp: The start of the string |
| 42 | * @endp: A pointer to the end of the parsed string will be placed here |
| 43 | * @base: The number base to use |
Eldad Zack | 462e471 | 2012-12-17 16:03:05 -0800 | [diff] [blame] | 44 | * |
| 45 | * This function is obsolete. Please use kstrtoull instead. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | */ |
Harvey Harrison | 22d2705 | 2008-10-16 13:40:35 -0700 | [diff] [blame] | 47 | unsigned long long simple_strtoull(const char *cp, char **endp, unsigned int base) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | { |
Alexey Dobriyan | 1dff46d | 2011-10-31 17:12:28 -0700 | [diff] [blame] | 49 | unsigned long long result; |
| 50 | unsigned int rv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | |
Alexey Dobriyan | 1dff46d | 2011-10-31 17:12:28 -0700 | [diff] [blame] | 52 | cp = _parse_integer_fixup_radix(cp, &base); |
| 53 | rv = _parse_integer(cp, base, &result); |
| 54 | /* FIXME */ |
| 55 | cp += (rv & ~KSTRTOX_OVERFLOW); |
Harvey Harrison | aa46a63 | 2008-10-16 13:40:34 -0700 | [diff] [blame] | 56 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | if (endp) |
| 58 | *endp = (char *)cp; |
André Goddard Rosa | 7b9186f | 2009-12-14 18:00:57 -0800 | [diff] [blame] | 59 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | return result; |
| 61 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | EXPORT_SYMBOL(simple_strtoull); |
| 63 | |
| 64 | /** |
André Goddard Rosa | 922ac25 | 2009-12-14 18:01:01 -0800 | [diff] [blame] | 65 | * simple_strtoul - convert a string to an unsigned long |
| 66 | * @cp: The start of the string |
| 67 | * @endp: A pointer to the end of the parsed string will be placed here |
| 68 | * @base: The number base to use |
Eldad Zack | 462e471 | 2012-12-17 16:03:05 -0800 | [diff] [blame] | 69 | * |
| 70 | * This function is obsolete. Please use kstrtoul instead. |
André Goddard Rosa | 922ac25 | 2009-12-14 18:01:01 -0800 | [diff] [blame] | 71 | */ |
| 72 | unsigned long simple_strtoul(const char *cp, char **endp, unsigned int base) |
| 73 | { |
| 74 | return simple_strtoull(cp, endp, base); |
| 75 | } |
| 76 | EXPORT_SYMBOL(simple_strtoul); |
| 77 | |
| 78 | /** |
| 79 | * simple_strtol - convert a string to a signed long |
| 80 | * @cp: The start of the string |
| 81 | * @endp: A pointer to the end of the parsed string will be placed here |
| 82 | * @base: The number base to use |
Eldad Zack | 462e471 | 2012-12-17 16:03:05 -0800 | [diff] [blame] | 83 | * |
| 84 | * This function is obsolete. Please use kstrtol instead. |
André Goddard Rosa | 922ac25 | 2009-12-14 18:01:01 -0800 | [diff] [blame] | 85 | */ |
| 86 | long simple_strtol(const char *cp, char **endp, unsigned int base) |
| 87 | { |
| 88 | if (*cp == '-') |
| 89 | return -simple_strtoul(cp + 1, endp, base); |
| 90 | |
| 91 | return simple_strtoul(cp, endp, base); |
| 92 | } |
| 93 | EXPORT_SYMBOL(simple_strtol); |
| 94 | |
| 95 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | * simple_strtoll - convert a string to a signed long long |
| 97 | * @cp: The start of the string |
| 98 | * @endp: A pointer to the end of the parsed string will be placed here |
| 99 | * @base: The number base to use |
Eldad Zack | 462e471 | 2012-12-17 16:03:05 -0800 | [diff] [blame] | 100 | * |
| 101 | * This function is obsolete. Please use kstrtoll instead. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | */ |
Harvey Harrison | 22d2705 | 2008-10-16 13:40:35 -0700 | [diff] [blame] | 103 | long long simple_strtoll(const char *cp, char **endp, unsigned int base) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | { |
André Goddard Rosa | 7b9186f | 2009-12-14 18:00:57 -0800 | [diff] [blame] | 105 | if (*cp == '-') |
Harvey Harrison | 22d2705 | 2008-10-16 13:40:35 -0700 | [diff] [blame] | 106 | return -simple_strtoull(cp + 1, endp, base); |
André Goddard Rosa | 7b9186f | 2009-12-14 18:00:57 -0800 | [diff] [blame] | 107 | |
Harvey Harrison | 22d2705 | 2008-10-16 13:40:35 -0700 | [diff] [blame] | 108 | return simple_strtoull(cp, endp, base); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | } |
Hans Verkuil | 98d5ce0 | 2010-04-23 13:18:04 -0400 | [diff] [blame] | 110 | EXPORT_SYMBOL(simple_strtoll); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | |
Joe Perches | cf3b429 | 2010-05-24 14:33:16 -0700 | [diff] [blame] | 112 | static noinline_for_stack |
| 113 | int skip_atoi(const char **s) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | { |
André Goddard Rosa | 7b9186f | 2009-12-14 18:00:57 -0800 | [diff] [blame] | 115 | int i = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | |
Rasmus Villemoes | 43e5b66 | 2015-02-12 15:01:42 -0800 | [diff] [blame] | 117 | do { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | i = i*10 + *((*s)++) - '0'; |
Rasmus Villemoes | 43e5b66 | 2015-02-12 15:01:42 -0800 | [diff] [blame] | 119 | } while (isdigit(**s)); |
André Goddard Rosa | 7b9186f | 2009-12-14 18:00:57 -0800 | [diff] [blame] | 120 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | return i; |
| 122 | } |
| 123 | |
Denis Vlasenko | 4277eed | 2007-07-15 23:41:56 -0700 | [diff] [blame] | 124 | /* Decimal conversion is by far the most typical, and is used |
| 125 | * for /proc and /sys data. This directly impacts e.g. top performance |
| 126 | * with many processes running. We optimize it for speed |
Denys Vlasenko | 133fd9f | 2012-05-31 16:26:08 -0700 | [diff] [blame] | 127 | * using ideas described at <http://www.cs.uiowa.edu/~jones/bcd/divide.html> |
| 128 | * (with permission from the author, Douglas W. Jones). |
| 129 | */ |
Denis Vlasenko | 4277eed | 2007-07-15 23:41:56 -0700 | [diff] [blame] | 130 | |
Denys Vlasenko | 133fd9f | 2012-05-31 16:26:08 -0700 | [diff] [blame] | 131 | #if BITS_PER_LONG != 32 || BITS_PER_LONG_LONG != 64 |
| 132 | /* Formats correctly any integer in [0, 999999999] */ |
Joe Perches | cf3b429 | 2010-05-24 14:33:16 -0700 | [diff] [blame] | 133 | static noinline_for_stack |
Denys Vlasenko | 133fd9f | 2012-05-31 16:26:08 -0700 | [diff] [blame] | 134 | char *put_dec_full9(char *buf, unsigned q) |
Denis Vlasenko | 4277eed | 2007-07-15 23:41:56 -0700 | [diff] [blame] | 135 | { |
Denys Vlasenko | 133fd9f | 2012-05-31 16:26:08 -0700 | [diff] [blame] | 136 | unsigned r; |
Denis Vlasenko | 4277eed | 2007-07-15 23:41:56 -0700 | [diff] [blame] | 137 | |
André Goddard Rosa | 7b9186f | 2009-12-14 18:00:57 -0800 | [diff] [blame] | 138 | /* |
| 139 | * Possible ways to approx. divide by 10 |
Denys Vlasenko | 133fd9f | 2012-05-31 16:26:08 -0700 | [diff] [blame] | 140 | * (x * 0x1999999a) >> 32 x < 1073741829 (multiply must be 64-bit) |
| 141 | * (x * 0xcccd) >> 19 x < 81920 (x < 262149 when 64-bit mul) |
| 142 | * (x * 0x6667) >> 18 x < 43699 |
| 143 | * (x * 0x3334) >> 17 x < 16389 |
| 144 | * (x * 0x199a) >> 16 x < 16389 |
| 145 | * (x * 0x0ccd) >> 15 x < 16389 |
| 146 | * (x * 0x0667) >> 14 x < 2739 |
| 147 | * (x * 0x0334) >> 13 x < 1029 |
| 148 | * (x * 0x019a) >> 12 x < 1029 |
| 149 | * (x * 0x00cd) >> 11 x < 1029 shorter code than * 0x67 (on i386) |
| 150 | * (x * 0x0067) >> 10 x < 179 |
| 151 | * (x * 0x0034) >> 9 x < 69 same |
| 152 | * (x * 0x001a) >> 8 x < 69 same |
| 153 | * (x * 0x000d) >> 7 x < 69 same, shortest code (on i386) |
| 154 | * (x * 0x0007) >> 6 x < 19 |
| 155 | * See <http://www.cs.uiowa.edu/~jones/bcd/divide.html> |
André Goddard Rosa | 7b9186f | 2009-12-14 18:00:57 -0800 | [diff] [blame] | 156 | */ |
Denys Vlasenko | 133fd9f | 2012-05-31 16:26:08 -0700 | [diff] [blame] | 157 | r = (q * (uint64_t)0x1999999a) >> 32; |
| 158 | *buf++ = (q - 10 * r) + '0'; /* 1 */ |
| 159 | q = (r * (uint64_t)0x1999999a) >> 32; |
| 160 | *buf++ = (r - 10 * q) + '0'; /* 2 */ |
| 161 | r = (q * (uint64_t)0x1999999a) >> 32; |
| 162 | *buf++ = (q - 10 * r) + '0'; /* 3 */ |
| 163 | q = (r * (uint64_t)0x1999999a) >> 32; |
| 164 | *buf++ = (r - 10 * q) + '0'; /* 4 */ |
| 165 | r = (q * (uint64_t)0x1999999a) >> 32; |
| 166 | *buf++ = (q - 10 * r) + '0'; /* 5 */ |
| 167 | /* Now value is under 10000, can avoid 64-bit multiply */ |
| 168 | q = (r * 0x199a) >> 16; |
| 169 | *buf++ = (r - 10 * q) + '0'; /* 6 */ |
| 170 | r = (q * 0xcd) >> 11; |
| 171 | *buf++ = (q - 10 * r) + '0'; /* 7 */ |
| 172 | q = (r * 0xcd) >> 11; |
| 173 | *buf++ = (r - 10 * q) + '0'; /* 8 */ |
| 174 | *buf++ = q + '0'; /* 9 */ |
| 175 | return buf; |
| 176 | } |
| 177 | #endif |
Denis Vlasenko | 4277eed | 2007-07-15 23:41:56 -0700 | [diff] [blame] | 178 | |
Denys Vlasenko | 133fd9f | 2012-05-31 16:26:08 -0700 | [diff] [blame] | 179 | /* Similar to above but do not pad with zeros. |
| 180 | * Code can be easily arranged to print 9 digits too, but our callers |
| 181 | * always call put_dec_full9() instead when the number has 9 decimal digits. |
| 182 | */ |
| 183 | static noinline_for_stack |
| 184 | char *put_dec_trunc8(char *buf, unsigned r) |
| 185 | { |
| 186 | unsigned q; |
Denis Vlasenko | 4277eed | 2007-07-15 23:41:56 -0700 | [diff] [blame] | 187 | |
Denys Vlasenko | 133fd9f | 2012-05-31 16:26:08 -0700 | [diff] [blame] | 188 | /* Copy of previous function's body with added early returns */ |
George Spelvin | cb239d0 | 2012-10-04 17:12:30 -0700 | [diff] [blame] | 189 | while (r >= 10000) { |
| 190 | q = r + '0'; |
| 191 | r = (r * (uint64_t)0x1999999a) >> 32; |
| 192 | *buf++ = q - 10*r; |
| 193 | } |
| 194 | |
George Spelvin | f400051 | 2012-10-04 17:12:32 -0700 | [diff] [blame] | 195 | q = (r * 0x199a) >> 16; /* r <= 9999 */ |
| 196 | *buf++ = (r - 10 * q) + '0'; |
Denys Vlasenko | 133fd9f | 2012-05-31 16:26:08 -0700 | [diff] [blame] | 197 | if (q == 0) |
| 198 | return buf; |
George Spelvin | f400051 | 2012-10-04 17:12:32 -0700 | [diff] [blame] | 199 | r = (q * 0xcd) >> 11; /* q <= 999 */ |
| 200 | *buf++ = (q - 10 * r) + '0'; |
Denys Vlasenko | 133fd9f | 2012-05-31 16:26:08 -0700 | [diff] [blame] | 201 | if (r == 0) |
| 202 | return buf; |
George Spelvin | f400051 | 2012-10-04 17:12:32 -0700 | [diff] [blame] | 203 | q = (r * 0xcd) >> 11; /* r <= 99 */ |
| 204 | *buf++ = (r - 10 * q) + '0'; |
Denys Vlasenko | 133fd9f | 2012-05-31 16:26:08 -0700 | [diff] [blame] | 205 | if (q == 0) |
| 206 | return buf; |
George Spelvin | f400051 | 2012-10-04 17:12:32 -0700 | [diff] [blame] | 207 | *buf++ = q + '0'; /* q <= 9 */ |
Denys Vlasenko | 133fd9f | 2012-05-31 16:26:08 -0700 | [diff] [blame] | 208 | return buf; |
| 209 | } |
| 210 | |
| 211 | /* There are two algorithms to print larger numbers. |
| 212 | * One is generic: divide by 1000000000 and repeatedly print |
| 213 | * groups of (up to) 9 digits. It's conceptually simple, |
| 214 | * but requires a (unsigned long long) / 1000000000 division. |
| 215 | * |
| 216 | * Second algorithm splits 64-bit unsigned long long into 16-bit chunks, |
| 217 | * manipulates them cleverly and generates groups of 4 decimal digits. |
| 218 | * It so happens that it does NOT require long long division. |
| 219 | * |
| 220 | * If long is > 32 bits, division of 64-bit values is relatively easy, |
| 221 | * and we will use the first algorithm. |
| 222 | * If long long is > 64 bits (strange architecture with VERY large long long), |
| 223 | * second algorithm can't be used, and we again use the first one. |
| 224 | * |
| 225 | * Else (if long is 32 bits and long long is 64 bits) we use second one. |
| 226 | */ |
| 227 | |
| 228 | #if BITS_PER_LONG != 32 || BITS_PER_LONG_LONG != 64 |
| 229 | |
| 230 | /* First algorithm: generic */ |
| 231 | |
| 232 | static |
| 233 | char *put_dec(char *buf, unsigned long long n) |
| 234 | { |
| 235 | if (n >= 100*1000*1000) { |
| 236 | while (n >= 1000*1000*1000) |
| 237 | buf = put_dec_full9(buf, do_div(n, 1000*1000*1000)); |
| 238 | if (n >= 100*1000*1000) |
| 239 | return put_dec_full9(buf, n); |
| 240 | } |
| 241 | return put_dec_trunc8(buf, n); |
| 242 | } |
| 243 | |
| 244 | #else |
| 245 | |
| 246 | /* Second algorithm: valid only for 64-bit long longs */ |
| 247 | |
George Spelvin | e49317d | 2012-10-04 17:12:27 -0700 | [diff] [blame] | 248 | /* See comment in put_dec_full9 for choice of constants */ |
Denys Vlasenko | 133fd9f | 2012-05-31 16:26:08 -0700 | [diff] [blame] | 249 | static noinline_for_stack |
George Spelvin | 2359172 | 2012-10-04 17:12:29 -0700 | [diff] [blame] | 250 | void put_dec_full4(char *buf, unsigned q) |
Denys Vlasenko | 133fd9f | 2012-05-31 16:26:08 -0700 | [diff] [blame] | 251 | { |
| 252 | unsigned r; |
George Spelvin | e49317d | 2012-10-04 17:12:27 -0700 | [diff] [blame] | 253 | r = (q * 0xccd) >> 15; |
George Spelvin | 2359172 | 2012-10-04 17:12:29 -0700 | [diff] [blame] | 254 | buf[0] = (q - 10 * r) + '0'; |
George Spelvin | e49317d | 2012-10-04 17:12:27 -0700 | [diff] [blame] | 255 | q = (r * 0xcd) >> 11; |
George Spelvin | 2359172 | 2012-10-04 17:12:29 -0700 | [diff] [blame] | 256 | buf[1] = (r - 10 * q) + '0'; |
Denys Vlasenko | 133fd9f | 2012-05-31 16:26:08 -0700 | [diff] [blame] | 257 | r = (q * 0xcd) >> 11; |
George Spelvin | 2359172 | 2012-10-04 17:12:29 -0700 | [diff] [blame] | 258 | buf[2] = (q - 10 * r) + '0'; |
| 259 | buf[3] = r + '0'; |
| 260 | } |
| 261 | |
| 262 | /* |
| 263 | * Call put_dec_full4 on x % 10000, return x / 10000. |
| 264 | * The approximation x/10000 == (x * 0x346DC5D7) >> 43 |
| 265 | * holds for all x < 1,128,869,999. The largest value this |
| 266 | * helper will ever be asked to convert is 1,125,520,955. |
| 267 | * (d1 in the put_dec code, assuming n is all-ones). |
| 268 | */ |
| 269 | static |
| 270 | unsigned put_dec_helper4(char *buf, unsigned x) |
| 271 | { |
| 272 | uint32_t q = (x * (uint64_t)0x346DC5D7) >> 43; |
| 273 | |
| 274 | put_dec_full4(buf, x - q * 10000); |
| 275 | return q; |
Denys Vlasenko | 133fd9f | 2012-05-31 16:26:08 -0700 | [diff] [blame] | 276 | } |
| 277 | |
| 278 | /* Based on code by Douglas W. Jones found at |
| 279 | * <http://www.cs.uiowa.edu/~jones/bcd/decimal.html#sixtyfour> |
| 280 | * (with permission from the author). |
| 281 | * Performs no 64-bit division and hence should be fast on 32-bit machines. |
| 282 | */ |
| 283 | static |
| 284 | char *put_dec(char *buf, unsigned long long n) |
| 285 | { |
| 286 | uint32_t d3, d2, d1, q, h; |
| 287 | |
| 288 | if (n < 100*1000*1000) |
| 289 | return put_dec_trunc8(buf, n); |
| 290 | |
| 291 | d1 = ((uint32_t)n >> 16); /* implicit "& 0xffff" */ |
| 292 | h = (n >> 32); |
| 293 | d2 = (h ) & 0xffff; |
| 294 | d3 = (h >> 16); /* implicit "& 0xffff" */ |
| 295 | |
| 296 | q = 656 * d3 + 7296 * d2 + 5536 * d1 + ((uint32_t)n & 0xffff); |
George Spelvin | 2359172 | 2012-10-04 17:12:29 -0700 | [diff] [blame] | 297 | q = put_dec_helper4(buf, q); |
Denys Vlasenko | 133fd9f | 2012-05-31 16:26:08 -0700 | [diff] [blame] | 298 | |
George Spelvin | 2359172 | 2012-10-04 17:12:29 -0700 | [diff] [blame] | 299 | q += 7671 * d3 + 9496 * d2 + 6 * d1; |
| 300 | q = put_dec_helper4(buf+4, q); |
Denys Vlasenko | 133fd9f | 2012-05-31 16:26:08 -0700 | [diff] [blame] | 301 | |
George Spelvin | 2359172 | 2012-10-04 17:12:29 -0700 | [diff] [blame] | 302 | q += 4749 * d3 + 42 * d2; |
| 303 | q = put_dec_helper4(buf+8, q); |
Denys Vlasenko | 133fd9f | 2012-05-31 16:26:08 -0700 | [diff] [blame] | 304 | |
George Spelvin | 2359172 | 2012-10-04 17:12:29 -0700 | [diff] [blame] | 305 | q += 281 * d3; |
| 306 | buf += 12; |
| 307 | if (q) |
| 308 | buf = put_dec_trunc8(buf, q); |
| 309 | else while (buf[-1] == '0') |
Denys Vlasenko | 133fd9f | 2012-05-31 16:26:08 -0700 | [diff] [blame] | 310 | --buf; |
André Goddard Rosa | 7b9186f | 2009-12-14 18:00:57 -0800 | [diff] [blame] | 311 | |
Denis Vlasenko | 4277eed | 2007-07-15 23:41:56 -0700 | [diff] [blame] | 312 | return buf; |
| 313 | } |
Denys Vlasenko | 133fd9f | 2012-05-31 16:26:08 -0700 | [diff] [blame] | 314 | |
| 315 | #endif |
Denis Vlasenko | 4277eed | 2007-07-15 23:41:56 -0700 | [diff] [blame] | 316 | |
KAMEZAWA Hiroyuki | 1ac101a | 2012-03-23 15:02:54 -0700 | [diff] [blame] | 317 | /* |
| 318 | * Convert passed number to decimal string. |
| 319 | * Returns the length of string. On buffer overflow, returns 0. |
| 320 | * |
| 321 | * If speed is not important, use snprintf(). It's easy to read the code. |
| 322 | */ |
| 323 | int num_to_str(char *buf, int size, unsigned long long num) |
| 324 | { |
Denys Vlasenko | 133fd9f | 2012-05-31 16:26:08 -0700 | [diff] [blame] | 325 | char tmp[sizeof(num) * 3]; |
KAMEZAWA Hiroyuki | 1ac101a | 2012-03-23 15:02:54 -0700 | [diff] [blame] | 326 | int idx, len; |
| 327 | |
Denys Vlasenko | 133fd9f | 2012-05-31 16:26:08 -0700 | [diff] [blame] | 328 | /* put_dec() may work incorrectly for num = 0 (generate "", not "0") */ |
| 329 | if (num <= 9) { |
| 330 | tmp[0] = '0' + num; |
| 331 | len = 1; |
| 332 | } else { |
| 333 | len = put_dec(tmp, num) - tmp; |
| 334 | } |
KAMEZAWA Hiroyuki | 1ac101a | 2012-03-23 15:02:54 -0700 | [diff] [blame] | 335 | |
| 336 | if (len > size) |
| 337 | return 0; |
| 338 | for (idx = 0; idx < len; ++idx) |
| 339 | buf[idx] = tmp[len - idx - 1]; |
Denys Vlasenko | 133fd9f | 2012-05-31 16:26:08 -0700 | [diff] [blame] | 340 | return len; |
KAMEZAWA Hiroyuki | 1ac101a | 2012-03-23 15:02:54 -0700 | [diff] [blame] | 341 | } |
| 342 | |
Rasmus Villemoes | 51be17d | 2015-04-15 16:17:02 -0700 | [diff] [blame] | 343 | #define SIGN 1 /* unsigned/signed, must be 1 */ |
| 344 | #define ZEROPAD 2 /* pad with zero */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 345 | #define PLUS 4 /* show plus */ |
| 346 | #define SPACE 8 /* space if plus */ |
| 347 | #define LEFT 16 /* left justified */ |
Bjorn Helgaas | b89dc5d | 2010-03-05 10:47:31 -0700 | [diff] [blame] | 348 | #define SMALL 32 /* use lowercase in hex (must be 32 == 0x20) */ |
| 349 | #define SPECIAL 64 /* prefix hex with "0x", octal with "0" */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 350 | |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 351 | enum format_type { |
| 352 | FORMAT_TYPE_NONE, /* Just a string part */ |
Vegard Nossum | ed681a9 | 2009-03-14 12:08:50 +0100 | [diff] [blame] | 353 | FORMAT_TYPE_WIDTH, |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 354 | FORMAT_TYPE_PRECISION, |
| 355 | FORMAT_TYPE_CHAR, |
| 356 | FORMAT_TYPE_STR, |
| 357 | FORMAT_TYPE_PTR, |
| 358 | FORMAT_TYPE_PERCENT_CHAR, |
| 359 | FORMAT_TYPE_INVALID, |
| 360 | FORMAT_TYPE_LONG_LONG, |
| 361 | FORMAT_TYPE_ULONG, |
| 362 | FORMAT_TYPE_LONG, |
Zhaolei | a4e94ef | 2009-03-27 17:07:05 +0800 | [diff] [blame] | 363 | FORMAT_TYPE_UBYTE, |
| 364 | FORMAT_TYPE_BYTE, |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 365 | FORMAT_TYPE_USHORT, |
| 366 | FORMAT_TYPE_SHORT, |
| 367 | FORMAT_TYPE_UINT, |
| 368 | FORMAT_TYPE_INT, |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 369 | FORMAT_TYPE_SIZE_T, |
| 370 | FORMAT_TYPE_PTRDIFF |
| 371 | }; |
| 372 | |
| 373 | struct printf_spec { |
Joe Perches | 4e310fd | 2010-04-14 09:27:40 -0700 | [diff] [blame] | 374 | u8 type; /* format_type enum */ |
Joe Perches | ef0658f | 2010-03-06 17:10:14 -0800 | [diff] [blame] | 375 | u8 flags; /* flags to number() */ |
Joe Perches | 4e310fd | 2010-04-14 09:27:40 -0700 | [diff] [blame] | 376 | u8 base; /* number base, 8, 10 or 16 only */ |
| 377 | u8 qualifier; /* number qualifier, one of 'hHlLtzZ' */ |
| 378 | s16 field_width; /* width of output field */ |
| 379 | s16 precision; /* # of digits/chars */ |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 380 | }; |
| 381 | |
Joe Perches | cf3b429 | 2010-05-24 14:33:16 -0700 | [diff] [blame] | 382 | static noinline_for_stack |
| 383 | char *number(char *buf, char *end, unsigned long long num, |
| 384 | struct printf_spec spec) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 385 | { |
Denys Vlasenko | 9b706ae | 2008-02-09 23:24:09 +0100 | [diff] [blame] | 386 | /* we are called with base 8, 10 or 16, only, thus don't need "G..." */ |
| 387 | static const char digits[16] = "0123456789ABCDEF"; /* "GHIJKLMNOPQRSTUVWXYZ"; */ |
| 388 | |
Rasmus Villemoes | e26c12c | 2015-04-15 16:17:05 -0700 | [diff] [blame^] | 389 | char tmp[3 * sizeof(num)]; |
Denys Vlasenko | 9b706ae | 2008-02-09 23:24:09 +0100 | [diff] [blame] | 390 | char sign; |
| 391 | char locase; |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 392 | int need_pfx = ((spec.flags & SPECIAL) && spec.base != 10); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 393 | int i; |
Pierre Carrier | 7c20342 | 2012-05-29 15:07:35 -0700 | [diff] [blame] | 394 | bool is_zero = num == 0LL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 395 | |
Denys Vlasenko | 9b706ae | 2008-02-09 23:24:09 +0100 | [diff] [blame] | 396 | /* locase = 0 or 0x20. ORing digits or letters with 'locase' |
| 397 | * produces same digits or (maybe lowercased) letters */ |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 398 | locase = (spec.flags & SMALL); |
| 399 | if (spec.flags & LEFT) |
| 400 | spec.flags &= ~ZEROPAD; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 401 | sign = 0; |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 402 | if (spec.flags & SIGN) { |
André Goddard Rosa | 7b9186f | 2009-12-14 18:00:57 -0800 | [diff] [blame] | 403 | if ((signed long long)num < 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 404 | sign = '-'; |
André Goddard Rosa | 7b9186f | 2009-12-14 18:00:57 -0800 | [diff] [blame] | 405 | num = -(signed long long)num; |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 406 | spec.field_width--; |
| 407 | } else if (spec.flags & PLUS) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 408 | sign = '+'; |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 409 | spec.field_width--; |
| 410 | } else if (spec.flags & SPACE) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 411 | sign = ' '; |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 412 | spec.field_width--; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 413 | } |
| 414 | } |
Denis Vlasenko | b39a734 | 2007-07-15 23:41:54 -0700 | [diff] [blame] | 415 | if (need_pfx) { |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 416 | if (spec.base == 16) |
Pierre Carrier | 7c20342 | 2012-05-29 15:07:35 -0700 | [diff] [blame] | 417 | spec.field_width -= 2; |
| 418 | else if (!is_zero) |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 419 | spec.field_width--; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 420 | } |
Denis Vlasenko | b39a734 | 2007-07-15 23:41:54 -0700 | [diff] [blame] | 421 | |
| 422 | /* generate full string in tmp[], in reverse order */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 423 | i = 0; |
Denys Vlasenko | 133fd9f | 2012-05-31 16:26:08 -0700 | [diff] [blame] | 424 | if (num < spec.base) |
| 425 | tmp[i++] = digits[num] | locase; |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 426 | else if (spec.base != 10) { /* 8 or 16 */ |
| 427 | int mask = spec.base - 1; |
Denis Vlasenko | b39a734 | 2007-07-15 23:41:54 -0700 | [diff] [blame] | 428 | int shift = 3; |
André Goddard Rosa | 7b9186f | 2009-12-14 18:00:57 -0800 | [diff] [blame] | 429 | |
| 430 | if (spec.base == 16) |
| 431 | shift = 4; |
Denis Vlasenko | b39a734 | 2007-07-15 23:41:54 -0700 | [diff] [blame] | 432 | do { |
Denys Vlasenko | 9b706ae | 2008-02-09 23:24:09 +0100 | [diff] [blame] | 433 | tmp[i++] = (digits[((unsigned char)num) & mask] | locase); |
Denis Vlasenko | b39a734 | 2007-07-15 23:41:54 -0700 | [diff] [blame] | 434 | num >>= shift; |
| 435 | } while (num); |
Denis Vlasenko | 4277eed | 2007-07-15 23:41:56 -0700 | [diff] [blame] | 436 | } else { /* base 10 */ |
| 437 | i = put_dec(tmp, num) - tmp; |
| 438 | } |
Denis Vlasenko | b39a734 | 2007-07-15 23:41:54 -0700 | [diff] [blame] | 439 | |
| 440 | /* printing 100 using %2d gives "100", not "00" */ |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 441 | if (i > spec.precision) |
| 442 | spec.precision = i; |
Denis Vlasenko | b39a734 | 2007-07-15 23:41:54 -0700 | [diff] [blame] | 443 | /* leading space padding */ |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 444 | spec.field_width -= spec.precision; |
Rasmus Villemoes | 51be17d | 2015-04-15 16:17:02 -0700 | [diff] [blame] | 445 | if (!(spec.flags & (ZEROPAD | LEFT))) { |
André Goddard Rosa | 7b9186f | 2009-12-14 18:00:57 -0800 | [diff] [blame] | 446 | while (--spec.field_width >= 0) { |
Jeremy Fitzhardinge | f796937 | 2006-06-25 05:49:17 -0700 | [diff] [blame] | 447 | if (buf < end) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 448 | *buf = ' '; |
| 449 | ++buf; |
| 450 | } |
| 451 | } |
Denis Vlasenko | b39a734 | 2007-07-15 23:41:54 -0700 | [diff] [blame] | 452 | /* sign */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 453 | if (sign) { |
Jeremy Fitzhardinge | f796937 | 2006-06-25 05:49:17 -0700 | [diff] [blame] | 454 | if (buf < end) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 455 | *buf = sign; |
| 456 | ++buf; |
| 457 | } |
Denis Vlasenko | b39a734 | 2007-07-15 23:41:54 -0700 | [diff] [blame] | 458 | /* "0x" / "0" prefix */ |
| 459 | if (need_pfx) { |
Pierre Carrier | 7c20342 | 2012-05-29 15:07:35 -0700 | [diff] [blame] | 460 | if (spec.base == 16 || !is_zero) { |
| 461 | if (buf < end) |
| 462 | *buf = '0'; |
| 463 | ++buf; |
| 464 | } |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 465 | if (spec.base == 16) { |
Jeremy Fitzhardinge | f796937 | 2006-06-25 05:49:17 -0700 | [diff] [blame] | 466 | if (buf < end) |
Denys Vlasenko | 9b706ae | 2008-02-09 23:24:09 +0100 | [diff] [blame] | 467 | *buf = ('X' | locase); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 468 | ++buf; |
| 469 | } |
| 470 | } |
Denis Vlasenko | b39a734 | 2007-07-15 23:41:54 -0700 | [diff] [blame] | 471 | /* zero or space padding */ |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 472 | if (!(spec.flags & LEFT)) { |
| 473 | char c = (spec.flags & ZEROPAD) ? '0' : ' '; |
| 474 | while (--spec.field_width >= 0) { |
Jeremy Fitzhardinge | f796937 | 2006-06-25 05:49:17 -0700 | [diff] [blame] | 475 | if (buf < end) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 476 | *buf = c; |
| 477 | ++buf; |
| 478 | } |
| 479 | } |
Denis Vlasenko | b39a734 | 2007-07-15 23:41:54 -0700 | [diff] [blame] | 480 | /* hmm even more zero padding? */ |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 481 | while (i <= --spec.precision) { |
Jeremy Fitzhardinge | f796937 | 2006-06-25 05:49:17 -0700 | [diff] [blame] | 482 | if (buf < end) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 483 | *buf = '0'; |
| 484 | ++buf; |
| 485 | } |
Denis Vlasenko | b39a734 | 2007-07-15 23:41:54 -0700 | [diff] [blame] | 486 | /* actual digits of result */ |
| 487 | while (--i >= 0) { |
Jeremy Fitzhardinge | f796937 | 2006-06-25 05:49:17 -0700 | [diff] [blame] | 488 | if (buf < end) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 489 | *buf = tmp[i]; |
| 490 | ++buf; |
| 491 | } |
Denis Vlasenko | b39a734 | 2007-07-15 23:41:54 -0700 | [diff] [blame] | 492 | /* trailing space padding */ |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 493 | while (--spec.field_width >= 0) { |
Jeremy Fitzhardinge | f796937 | 2006-06-25 05:49:17 -0700 | [diff] [blame] | 494 | if (buf < end) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 495 | *buf = ' '; |
| 496 | ++buf; |
| 497 | } |
André Goddard Rosa | 7b9186f | 2009-12-14 18:00:57 -0800 | [diff] [blame] | 498 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 499 | return buf; |
| 500 | } |
| 501 | |
Joe Perches | cf3b429 | 2010-05-24 14:33:16 -0700 | [diff] [blame] | 502 | static noinline_for_stack |
| 503 | char *string(char *buf, char *end, const char *s, struct printf_spec spec) |
Linus Torvalds | 0f9bfa5 | 2008-07-06 16:06:25 -0700 | [diff] [blame] | 504 | { |
| 505 | int len, i; |
| 506 | |
| 507 | if ((unsigned long)s < PAGE_SIZE) |
André Goddard Rosa | 0f4f81d | 2009-12-14 18:00:55 -0800 | [diff] [blame] | 508 | s = "(null)"; |
Linus Torvalds | 0f9bfa5 | 2008-07-06 16:06:25 -0700 | [diff] [blame] | 509 | |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 510 | len = strnlen(s, spec.precision); |
Linus Torvalds | 0f9bfa5 | 2008-07-06 16:06:25 -0700 | [diff] [blame] | 511 | |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 512 | if (!(spec.flags & LEFT)) { |
| 513 | while (len < spec.field_width--) { |
Linus Torvalds | 0f9bfa5 | 2008-07-06 16:06:25 -0700 | [diff] [blame] | 514 | if (buf < end) |
| 515 | *buf = ' '; |
| 516 | ++buf; |
| 517 | } |
| 518 | } |
| 519 | for (i = 0; i < len; ++i) { |
| 520 | if (buf < end) |
| 521 | *buf = *s; |
| 522 | ++buf; ++s; |
| 523 | } |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 524 | while (len < spec.field_width--) { |
Linus Torvalds | 0f9bfa5 | 2008-07-06 16:06:25 -0700 | [diff] [blame] | 525 | if (buf < end) |
| 526 | *buf = ' '; |
| 527 | ++buf; |
| 528 | } |
André Goddard Rosa | 7b9186f | 2009-12-14 18:00:57 -0800 | [diff] [blame] | 529 | |
Linus Torvalds | 0f9bfa5 | 2008-07-06 16:06:25 -0700 | [diff] [blame] | 530 | return buf; |
| 531 | } |
| 532 | |
Al Viro | 4b6ccca | 2013-09-03 12:00:44 -0400 | [diff] [blame] | 533 | static void widen(char *buf, char *end, unsigned len, unsigned spaces) |
| 534 | { |
| 535 | size_t size; |
| 536 | if (buf >= end) /* nowhere to put anything */ |
| 537 | return; |
| 538 | size = end - buf; |
| 539 | if (size <= spaces) { |
| 540 | memset(buf, ' ', size); |
| 541 | return; |
| 542 | } |
| 543 | if (len) { |
| 544 | if (len > size - spaces) |
| 545 | len = size - spaces; |
| 546 | memmove(buf + spaces, buf, len); |
| 547 | } |
| 548 | memset(buf, ' ', spaces); |
| 549 | } |
| 550 | |
| 551 | static noinline_for_stack |
| 552 | char *dentry_name(char *buf, char *end, const struct dentry *d, struct printf_spec spec, |
| 553 | const char *fmt) |
| 554 | { |
| 555 | const char *array[4], *s; |
| 556 | const struct dentry *p; |
| 557 | int depth; |
| 558 | int i, n; |
| 559 | |
| 560 | switch (fmt[1]) { |
| 561 | case '2': case '3': case '4': |
| 562 | depth = fmt[1] - '0'; |
| 563 | break; |
| 564 | default: |
| 565 | depth = 1; |
| 566 | } |
| 567 | |
| 568 | rcu_read_lock(); |
| 569 | for (i = 0; i < depth; i++, d = p) { |
| 570 | p = ACCESS_ONCE(d->d_parent); |
| 571 | array[i] = ACCESS_ONCE(d->d_name.name); |
| 572 | if (p == d) { |
| 573 | if (i) |
| 574 | array[i] = ""; |
| 575 | i++; |
| 576 | break; |
| 577 | } |
| 578 | } |
| 579 | s = array[--i]; |
| 580 | for (n = 0; n != spec.precision; n++, buf++) { |
| 581 | char c = *s++; |
| 582 | if (!c) { |
| 583 | if (!i) |
| 584 | break; |
| 585 | c = '/'; |
| 586 | s = array[--i]; |
| 587 | } |
| 588 | if (buf < end) |
| 589 | *buf = c; |
| 590 | } |
| 591 | rcu_read_unlock(); |
| 592 | if (n < spec.field_width) { |
| 593 | /* we want to pad the sucker */ |
| 594 | unsigned spaces = spec.field_width - n; |
| 595 | if (!(spec.flags & LEFT)) { |
| 596 | widen(buf - n, end, n, spaces); |
| 597 | return buf + spaces; |
| 598 | } |
| 599 | while (spaces--) { |
| 600 | if (buf < end) |
| 601 | *buf = ' '; |
| 602 | ++buf; |
| 603 | } |
| 604 | } |
| 605 | return buf; |
| 606 | } |
| 607 | |
Joe Perches | cf3b429 | 2010-05-24 14:33:16 -0700 | [diff] [blame] | 608 | static noinline_for_stack |
| 609 | char *symbol_string(char *buf, char *end, void *ptr, |
Joe Perches | b0d33c2 | 2012-12-12 10:18:50 -0800 | [diff] [blame] | 610 | struct printf_spec spec, const char *fmt) |
Linus Torvalds | 0fe1ef2 | 2008-07-06 16:43:12 -0700 | [diff] [blame] | 611 | { |
Joe Perches | b0d33c2 | 2012-12-12 10:18:50 -0800 | [diff] [blame] | 612 | unsigned long value; |
Linus Torvalds | 0fe1ef2 | 2008-07-06 16:43:12 -0700 | [diff] [blame] | 613 | #ifdef CONFIG_KALLSYMS |
| 614 | char sym[KSYM_SYMBOL_LEN]; |
Joe Perches | b0d33c2 | 2012-12-12 10:18:50 -0800 | [diff] [blame] | 615 | #endif |
| 616 | |
| 617 | if (fmt[1] == 'R') |
| 618 | ptr = __builtin_extract_return_addr(ptr); |
| 619 | value = (unsigned long)ptr; |
| 620 | |
| 621 | #ifdef CONFIG_KALLSYMS |
| 622 | if (*fmt == 'B') |
Namhyung Kim | 0f77a8d | 2011-03-24 11:42:29 +0900 | [diff] [blame] | 623 | sprint_backtrace(sym, value); |
Joe Perches | b0d33c2 | 2012-12-12 10:18:50 -0800 | [diff] [blame] | 624 | else if (*fmt != 'f' && *fmt != 's') |
Frederic Weisbecker | 0c8b946 | 2009-04-15 17:48:18 +0200 | [diff] [blame] | 625 | sprint_symbol(sym, value); |
| 626 | else |
Stephen Boyd | 4796dd2 | 2012-05-29 15:07:33 -0700 | [diff] [blame] | 627 | sprint_symbol_no_offset(sym, value); |
André Goddard Rosa | 7b9186f | 2009-12-14 18:00:57 -0800 | [diff] [blame] | 628 | |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 629 | return string(buf, end, sym, spec); |
Linus Torvalds | 0fe1ef2 | 2008-07-06 16:43:12 -0700 | [diff] [blame] | 630 | #else |
André Goddard Rosa | 7b9186f | 2009-12-14 18:00:57 -0800 | [diff] [blame] | 631 | spec.field_width = 2 * sizeof(void *); |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 632 | spec.flags |= SPECIAL | SMALL | ZEROPAD; |
| 633 | spec.base = 16; |
André Goddard Rosa | 7b9186f | 2009-12-14 18:00:57 -0800 | [diff] [blame] | 634 | |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 635 | return number(buf, end, value, spec); |
Linus Torvalds | 0fe1ef2 | 2008-07-06 16:43:12 -0700 | [diff] [blame] | 636 | #endif |
| 637 | } |
| 638 | |
Joe Perches | cf3b429 | 2010-05-24 14:33:16 -0700 | [diff] [blame] | 639 | static noinline_for_stack |
| 640 | char *resource_string(char *buf, char *end, struct resource *res, |
| 641 | struct printf_spec spec, const char *fmt) |
Linus Torvalds | 332d2e7 | 2008-10-20 15:07:34 +1100 | [diff] [blame] | 642 | { |
| 643 | #ifndef IO_RSRC_PRINTK_SIZE |
Bjorn Helgaas | 2840537 | 2009-10-06 15:33:29 -0600 | [diff] [blame] | 644 | #define IO_RSRC_PRINTK_SIZE 6 |
Linus Torvalds | 332d2e7 | 2008-10-20 15:07:34 +1100 | [diff] [blame] | 645 | #endif |
| 646 | |
| 647 | #ifndef MEM_RSRC_PRINTK_SIZE |
Bjorn Helgaas | 2840537 | 2009-10-06 15:33:29 -0600 | [diff] [blame] | 648 | #define MEM_RSRC_PRINTK_SIZE 10 |
Linus Torvalds | 332d2e7 | 2008-10-20 15:07:34 +1100 | [diff] [blame] | 649 | #endif |
Bjorn Helgaas | 4da0b66 | 2010-03-05 10:47:37 -0700 | [diff] [blame] | 650 | static const struct printf_spec io_spec = { |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 651 | .base = 16, |
Bjorn Helgaas | 4da0b66 | 2010-03-05 10:47:37 -0700 | [diff] [blame] | 652 | .field_width = IO_RSRC_PRINTK_SIZE, |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 653 | .precision = -1, |
| 654 | .flags = SPECIAL | SMALL | ZEROPAD, |
| 655 | }; |
Bjorn Helgaas | 4da0b66 | 2010-03-05 10:47:37 -0700 | [diff] [blame] | 656 | static const struct printf_spec mem_spec = { |
| 657 | .base = 16, |
| 658 | .field_width = MEM_RSRC_PRINTK_SIZE, |
| 659 | .precision = -1, |
| 660 | .flags = SPECIAL | SMALL | ZEROPAD, |
| 661 | }; |
Bjorn Helgaas | 0f4050c | 2010-03-05 10:47:42 -0700 | [diff] [blame] | 662 | static const struct printf_spec bus_spec = { |
| 663 | .base = 16, |
| 664 | .field_width = 2, |
| 665 | .precision = -1, |
| 666 | .flags = SMALL | ZEROPAD, |
| 667 | }; |
Bjorn Helgaas | 4da0b66 | 2010-03-05 10:47:37 -0700 | [diff] [blame] | 668 | static const struct printf_spec dec_spec = { |
Bjorn Helgaas | c91d337 | 2009-10-06 15:33:34 -0600 | [diff] [blame] | 669 | .base = 10, |
| 670 | .precision = -1, |
| 671 | .flags = 0, |
| 672 | }; |
Bjorn Helgaas | 4da0b66 | 2010-03-05 10:47:37 -0700 | [diff] [blame] | 673 | static const struct printf_spec str_spec = { |
Bjorn Helgaas | fd95541 | 2009-10-06 15:33:39 -0600 | [diff] [blame] | 674 | .field_width = -1, |
| 675 | .precision = 10, |
| 676 | .flags = LEFT, |
| 677 | }; |
Bjorn Helgaas | 4da0b66 | 2010-03-05 10:47:37 -0700 | [diff] [blame] | 678 | static const struct printf_spec flag_spec = { |
Bjorn Helgaas | fd95541 | 2009-10-06 15:33:39 -0600 | [diff] [blame] | 679 | .base = 16, |
| 680 | .precision = -1, |
| 681 | .flags = SPECIAL | SMALL, |
| 682 | }; |
Bjorn Helgaas | c7dabef | 2009-10-27 13:26:47 -0600 | [diff] [blame] | 683 | |
| 684 | /* 32-bit res (sizeof==4): 10 chars in dec, 10 in hex ("0x" + 8) |
| 685 | * 64-bit res (sizeof==8): 20 chars in dec, 18 in hex ("0x" + 16) */ |
| 686 | #define RSRC_BUF_SIZE ((2 * sizeof(resource_size_t)) + 4) |
| 687 | #define FLAG_BUF_SIZE (2 * sizeof(res->flags)) |
Bjorn Helgaas | 9d7cca0 | 2010-03-05 10:47:47 -0700 | [diff] [blame] | 688 | #define DECODED_BUF_SIZE sizeof("[mem - 64bit pref window disabled]") |
Bjorn Helgaas | c7dabef | 2009-10-27 13:26:47 -0600 | [diff] [blame] | 689 | #define RAW_BUF_SIZE sizeof("[mem - flags 0x]") |
| 690 | char sym[max(2*RSRC_BUF_SIZE + DECODED_BUF_SIZE, |
| 691 | 2*RSRC_BUF_SIZE + FLAG_BUF_SIZE + RAW_BUF_SIZE)]; |
| 692 | |
Linus Torvalds | 332d2e7 | 2008-10-20 15:07:34 +1100 | [diff] [blame] | 693 | char *p = sym, *pend = sym + sizeof(sym); |
Bjorn Helgaas | c7dabef | 2009-10-27 13:26:47 -0600 | [diff] [blame] | 694 | int decode = (fmt[0] == 'R') ? 1 : 0; |
Bjorn Helgaas | 4da0b66 | 2010-03-05 10:47:37 -0700 | [diff] [blame] | 695 | const struct printf_spec *specp; |
Linus Torvalds | 332d2e7 | 2008-10-20 15:07:34 +1100 | [diff] [blame] | 696 | |
| 697 | *p++ = '['; |
Bjorn Helgaas | 4da0b66 | 2010-03-05 10:47:37 -0700 | [diff] [blame] | 698 | if (res->flags & IORESOURCE_IO) { |
Bjorn Helgaas | c7dabef | 2009-10-27 13:26:47 -0600 | [diff] [blame] | 699 | p = string(p, pend, "io ", str_spec); |
Bjorn Helgaas | 4da0b66 | 2010-03-05 10:47:37 -0700 | [diff] [blame] | 700 | specp = &io_spec; |
| 701 | } else if (res->flags & IORESOURCE_MEM) { |
Bjorn Helgaas | c7dabef | 2009-10-27 13:26:47 -0600 | [diff] [blame] | 702 | p = string(p, pend, "mem ", str_spec); |
Bjorn Helgaas | 4da0b66 | 2010-03-05 10:47:37 -0700 | [diff] [blame] | 703 | specp = &mem_spec; |
| 704 | } else if (res->flags & IORESOURCE_IRQ) { |
Bjorn Helgaas | c7dabef | 2009-10-27 13:26:47 -0600 | [diff] [blame] | 705 | p = string(p, pend, "irq ", str_spec); |
Bjorn Helgaas | 4da0b66 | 2010-03-05 10:47:37 -0700 | [diff] [blame] | 706 | specp = &dec_spec; |
| 707 | } else if (res->flags & IORESOURCE_DMA) { |
Bjorn Helgaas | c7dabef | 2009-10-27 13:26:47 -0600 | [diff] [blame] | 708 | p = string(p, pend, "dma ", str_spec); |
Bjorn Helgaas | 4da0b66 | 2010-03-05 10:47:37 -0700 | [diff] [blame] | 709 | specp = &dec_spec; |
Bjorn Helgaas | 0f4050c | 2010-03-05 10:47:42 -0700 | [diff] [blame] | 710 | } else if (res->flags & IORESOURCE_BUS) { |
| 711 | p = string(p, pend, "bus ", str_spec); |
| 712 | specp = &bus_spec; |
Bjorn Helgaas | 4da0b66 | 2010-03-05 10:47:37 -0700 | [diff] [blame] | 713 | } else { |
Bjorn Helgaas | c7dabef | 2009-10-27 13:26:47 -0600 | [diff] [blame] | 714 | p = string(p, pend, "??? ", str_spec); |
Bjorn Helgaas | 4da0b66 | 2010-03-05 10:47:37 -0700 | [diff] [blame] | 715 | specp = &mem_spec; |
Bjorn Helgaas | c7dabef | 2009-10-27 13:26:47 -0600 | [diff] [blame] | 716 | decode = 0; |
Bjorn Helgaas | fd95541 | 2009-10-06 15:33:39 -0600 | [diff] [blame] | 717 | } |
Bjorn Helgaas | d19cb80 | 2014-02-26 11:25:56 -0700 | [diff] [blame] | 718 | if (decode && res->flags & IORESOURCE_UNSET) { |
| 719 | p = string(p, pend, "size ", str_spec); |
| 720 | p = number(p, pend, resource_size(res), *specp); |
| 721 | } else { |
| 722 | p = number(p, pend, res->start, *specp); |
| 723 | if (res->start != res->end) { |
| 724 | *p++ = '-'; |
| 725 | p = number(p, pend, res->end, *specp); |
| 726 | } |
Bjorn Helgaas | c91d337 | 2009-10-06 15:33:34 -0600 | [diff] [blame] | 727 | } |
Bjorn Helgaas | c7dabef | 2009-10-27 13:26:47 -0600 | [diff] [blame] | 728 | if (decode) { |
Bjorn Helgaas | fd95541 | 2009-10-06 15:33:39 -0600 | [diff] [blame] | 729 | if (res->flags & IORESOURCE_MEM_64) |
| 730 | p = string(p, pend, " 64bit", str_spec); |
| 731 | if (res->flags & IORESOURCE_PREFETCH) |
| 732 | p = string(p, pend, " pref", str_spec); |
Bjorn Helgaas | 9d7cca0 | 2010-03-05 10:47:47 -0700 | [diff] [blame] | 733 | if (res->flags & IORESOURCE_WINDOW) |
| 734 | p = string(p, pend, " window", str_spec); |
Bjorn Helgaas | fd95541 | 2009-10-06 15:33:39 -0600 | [diff] [blame] | 735 | if (res->flags & IORESOURCE_DISABLED) |
| 736 | p = string(p, pend, " disabled", str_spec); |
Bjorn Helgaas | c7dabef | 2009-10-27 13:26:47 -0600 | [diff] [blame] | 737 | } else { |
| 738 | p = string(p, pend, " flags ", str_spec); |
| 739 | p = number(p, pend, res->flags, flag_spec); |
Bjorn Helgaas | fd95541 | 2009-10-06 15:33:39 -0600 | [diff] [blame] | 740 | } |
Linus Torvalds | 332d2e7 | 2008-10-20 15:07:34 +1100 | [diff] [blame] | 741 | *p++ = ']'; |
Bjorn Helgaas | c7dabef | 2009-10-27 13:26:47 -0600 | [diff] [blame] | 742 | *p = '\0'; |
Linus Torvalds | 332d2e7 | 2008-10-20 15:07:34 +1100 | [diff] [blame] | 743 | |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 744 | return string(buf, end, sym, spec); |
Linus Torvalds | 332d2e7 | 2008-10-20 15:07:34 +1100 | [diff] [blame] | 745 | } |
| 746 | |
Joe Perches | cf3b429 | 2010-05-24 14:33:16 -0700 | [diff] [blame] | 747 | static noinline_for_stack |
Andy Shevchenko | 31550a1 | 2012-07-30 14:40:27 -0700 | [diff] [blame] | 748 | char *hex_string(char *buf, char *end, u8 *addr, struct printf_spec spec, |
| 749 | const char *fmt) |
| 750 | { |
Steven Rostedt | 360603a | 2013-05-28 15:47:39 -0400 | [diff] [blame] | 751 | int i, len = 1; /* if we pass '%ph[CDN]', field width remains |
Andy Shevchenko | 31550a1 | 2012-07-30 14:40:27 -0700 | [diff] [blame] | 752 | negative value, fallback to the default */ |
| 753 | char separator; |
| 754 | |
| 755 | if (spec.field_width == 0) |
| 756 | /* nothing to print */ |
| 757 | return buf; |
| 758 | |
| 759 | if (ZERO_OR_NULL_PTR(addr)) |
| 760 | /* NULL pointer */ |
| 761 | return string(buf, end, NULL, spec); |
| 762 | |
| 763 | switch (fmt[1]) { |
| 764 | case 'C': |
| 765 | separator = ':'; |
| 766 | break; |
| 767 | case 'D': |
| 768 | separator = '-'; |
| 769 | break; |
| 770 | case 'N': |
| 771 | separator = 0; |
| 772 | break; |
| 773 | default: |
| 774 | separator = ' '; |
| 775 | break; |
| 776 | } |
| 777 | |
| 778 | if (spec.field_width > 0) |
| 779 | len = min_t(int, spec.field_width, 64); |
| 780 | |
| 781 | for (i = 0; i < len && buf < end - 1; i++) { |
| 782 | buf = hex_byte_pack(buf, addr[i]); |
| 783 | |
| 784 | if (buf < end && separator && i != len - 1) |
| 785 | *buf++ = separator; |
| 786 | } |
| 787 | |
| 788 | return buf; |
| 789 | } |
| 790 | |
| 791 | static noinline_for_stack |
Tejun Heo | dbc760b | 2015-02-13 14:36:53 -0800 | [diff] [blame] | 792 | char *bitmap_string(char *buf, char *end, unsigned long *bitmap, |
| 793 | struct printf_spec spec, const char *fmt) |
| 794 | { |
| 795 | const int CHUNKSZ = 32; |
| 796 | int nr_bits = max_t(int, spec.field_width, 0); |
| 797 | int i, chunksz; |
| 798 | bool first = true; |
| 799 | |
| 800 | /* reused to print numbers */ |
| 801 | spec = (struct printf_spec){ .flags = SMALL | ZEROPAD, .base = 16 }; |
| 802 | |
| 803 | chunksz = nr_bits & (CHUNKSZ - 1); |
| 804 | if (chunksz == 0) |
| 805 | chunksz = CHUNKSZ; |
| 806 | |
| 807 | i = ALIGN(nr_bits, CHUNKSZ) - CHUNKSZ; |
| 808 | for (; i >= 0; i -= CHUNKSZ) { |
| 809 | u32 chunkmask, val; |
| 810 | int word, bit; |
| 811 | |
| 812 | chunkmask = ((1ULL << chunksz) - 1); |
| 813 | word = i / BITS_PER_LONG; |
| 814 | bit = i % BITS_PER_LONG; |
| 815 | val = (bitmap[word] >> bit) & chunkmask; |
| 816 | |
| 817 | if (!first) { |
| 818 | if (buf < end) |
| 819 | *buf = ','; |
| 820 | buf++; |
| 821 | } |
| 822 | first = false; |
| 823 | |
| 824 | spec.field_width = DIV_ROUND_UP(chunksz, 4); |
| 825 | buf = number(buf, end, val, spec); |
| 826 | |
| 827 | chunksz = CHUNKSZ; |
| 828 | } |
| 829 | return buf; |
| 830 | } |
| 831 | |
| 832 | static noinline_for_stack |
| 833 | char *bitmap_list_string(char *buf, char *end, unsigned long *bitmap, |
| 834 | struct printf_spec spec, const char *fmt) |
| 835 | { |
| 836 | int nr_bits = max_t(int, spec.field_width, 0); |
| 837 | /* current bit is 'cur', most recently seen range is [rbot, rtop] */ |
| 838 | int cur, rbot, rtop; |
| 839 | bool first = true; |
| 840 | |
| 841 | /* reused to print numbers */ |
| 842 | spec = (struct printf_spec){ .base = 10 }; |
| 843 | |
| 844 | rbot = cur = find_first_bit(bitmap, nr_bits); |
| 845 | while (cur < nr_bits) { |
| 846 | rtop = cur; |
| 847 | cur = find_next_bit(bitmap, nr_bits, cur + 1); |
| 848 | if (cur < nr_bits && cur <= rtop + 1) |
| 849 | continue; |
| 850 | |
| 851 | if (!first) { |
| 852 | if (buf < end) |
| 853 | *buf = ','; |
| 854 | buf++; |
| 855 | } |
| 856 | first = false; |
| 857 | |
| 858 | buf = number(buf, end, rbot, spec); |
| 859 | if (rbot < rtop) { |
| 860 | if (buf < end) |
| 861 | *buf = '-'; |
| 862 | buf++; |
| 863 | |
| 864 | buf = number(buf, end, rtop, spec); |
| 865 | } |
| 866 | |
| 867 | rbot = cur; |
| 868 | } |
| 869 | return buf; |
| 870 | } |
| 871 | |
| 872 | static noinline_for_stack |
Joe Perches | cf3b429 | 2010-05-24 14:33:16 -0700 | [diff] [blame] | 873 | char *mac_address_string(char *buf, char *end, u8 *addr, |
| 874 | struct printf_spec spec, const char *fmt) |
Harvey Harrison | dd45c9c | 2008-10-27 15:47:12 -0700 | [diff] [blame] | 875 | { |
Joe Perches | 8a27f7c | 2009-08-17 12:29:44 +0000 | [diff] [blame] | 876 | char mac_addr[sizeof("xx:xx:xx:xx:xx:xx")]; |
Harvey Harrison | dd45c9c | 2008-10-27 15:47:12 -0700 | [diff] [blame] | 877 | char *p = mac_addr; |
| 878 | int i; |
Joe Perches | bc7259a | 2010-01-07 11:43:50 +0000 | [diff] [blame] | 879 | char separator; |
Andrei Emeltchenko | 76597ff9 | 2012-07-30 14:40:23 -0700 | [diff] [blame] | 880 | bool reversed = false; |
Joe Perches | bc7259a | 2010-01-07 11:43:50 +0000 | [diff] [blame] | 881 | |
Andrei Emeltchenko | 76597ff9 | 2012-07-30 14:40:23 -0700 | [diff] [blame] | 882 | switch (fmt[1]) { |
| 883 | case 'F': |
Joe Perches | bc7259a | 2010-01-07 11:43:50 +0000 | [diff] [blame] | 884 | separator = '-'; |
Andrei Emeltchenko | 76597ff9 | 2012-07-30 14:40:23 -0700 | [diff] [blame] | 885 | break; |
| 886 | |
| 887 | case 'R': |
| 888 | reversed = true; |
| 889 | /* fall through */ |
| 890 | |
| 891 | default: |
Joe Perches | bc7259a | 2010-01-07 11:43:50 +0000 | [diff] [blame] | 892 | separator = ':'; |
Andrei Emeltchenko | 76597ff9 | 2012-07-30 14:40:23 -0700 | [diff] [blame] | 893 | break; |
Joe Perches | bc7259a | 2010-01-07 11:43:50 +0000 | [diff] [blame] | 894 | } |
Harvey Harrison | dd45c9c | 2008-10-27 15:47:12 -0700 | [diff] [blame] | 895 | |
| 896 | for (i = 0; i < 6; i++) { |
Andrei Emeltchenko | 76597ff9 | 2012-07-30 14:40:23 -0700 | [diff] [blame] | 897 | if (reversed) |
| 898 | p = hex_byte_pack(p, addr[5 - i]); |
| 899 | else |
| 900 | p = hex_byte_pack(p, addr[i]); |
| 901 | |
Joe Perches | 8a27f7c | 2009-08-17 12:29:44 +0000 | [diff] [blame] | 902 | if (fmt[0] == 'M' && i != 5) |
Joe Perches | bc7259a | 2010-01-07 11:43:50 +0000 | [diff] [blame] | 903 | *p++ = separator; |
Harvey Harrison | dd45c9c | 2008-10-27 15:47:12 -0700 | [diff] [blame] | 904 | } |
| 905 | *p = '\0'; |
| 906 | |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 907 | return string(buf, end, mac_addr, spec); |
Harvey Harrison | dd45c9c | 2008-10-27 15:47:12 -0700 | [diff] [blame] | 908 | } |
| 909 | |
Joe Perches | cf3b429 | 2010-05-24 14:33:16 -0700 | [diff] [blame] | 910 | static noinline_for_stack |
| 911 | char *ip4_string(char *p, const u8 *addr, const char *fmt) |
Harvey Harrison | 689afa7 | 2008-10-28 16:04:44 -0700 | [diff] [blame] | 912 | { |
Harvey Harrison | 689afa7 | 2008-10-28 16:04:44 -0700 | [diff] [blame] | 913 | int i; |
Joe Perches | 0159f24 | 2010-01-13 20:23:30 -0800 | [diff] [blame] | 914 | bool leading_zeros = (fmt[0] == 'i'); |
| 915 | int index; |
| 916 | int step; |
Harvey Harrison | 689afa7 | 2008-10-28 16:04:44 -0700 | [diff] [blame] | 917 | |
Joe Perches | 0159f24 | 2010-01-13 20:23:30 -0800 | [diff] [blame] | 918 | switch (fmt[2]) { |
| 919 | case 'h': |
| 920 | #ifdef __BIG_ENDIAN |
| 921 | index = 0; |
| 922 | step = 1; |
| 923 | #else |
| 924 | index = 3; |
| 925 | step = -1; |
| 926 | #endif |
| 927 | break; |
| 928 | case 'l': |
| 929 | index = 3; |
| 930 | step = -1; |
| 931 | break; |
| 932 | case 'n': |
| 933 | case 'b': |
| 934 | default: |
| 935 | index = 0; |
| 936 | step = 1; |
| 937 | break; |
| 938 | } |
Joe Perches | 8a27f7c | 2009-08-17 12:29:44 +0000 | [diff] [blame] | 939 | for (i = 0; i < 4; i++) { |
| 940 | char temp[3]; /* hold each IP quad in reverse order */ |
Denys Vlasenko | 133fd9f | 2012-05-31 16:26:08 -0700 | [diff] [blame] | 941 | int digits = put_dec_trunc8(temp, addr[index]) - temp; |
Joe Perches | 8a27f7c | 2009-08-17 12:29:44 +0000 | [diff] [blame] | 942 | if (leading_zeros) { |
| 943 | if (digits < 3) |
| 944 | *p++ = '0'; |
| 945 | if (digits < 2) |
| 946 | *p++ = '0'; |
| 947 | } |
| 948 | /* reverse the digits in the quad */ |
| 949 | while (digits--) |
| 950 | *p++ = temp[digits]; |
| 951 | if (i < 3) |
| 952 | *p++ = '.'; |
Joe Perches | 0159f24 | 2010-01-13 20:23:30 -0800 | [diff] [blame] | 953 | index += step; |
Joe Perches | 8a27f7c | 2009-08-17 12:29:44 +0000 | [diff] [blame] | 954 | } |
Joe Perches | 8a27f7c | 2009-08-17 12:29:44 +0000 | [diff] [blame] | 955 | *p = '\0'; |
André Goddard Rosa | 7b9186f | 2009-12-14 18:00:57 -0800 | [diff] [blame] | 956 | |
Joe Perches | 8a27f7c | 2009-08-17 12:29:44 +0000 | [diff] [blame] | 957 | return p; |
| 958 | } |
| 959 | |
Joe Perches | cf3b429 | 2010-05-24 14:33:16 -0700 | [diff] [blame] | 960 | static noinline_for_stack |
| 961 | char *ip6_compressed_string(char *p, const char *addr) |
Joe Perches | 8a27f7c | 2009-08-17 12:29:44 +0000 | [diff] [blame] | 962 | { |
André Goddard Rosa | 7b9186f | 2009-12-14 18:00:57 -0800 | [diff] [blame] | 963 | int i, j, range; |
Joe Perches | 8a27f7c | 2009-08-17 12:29:44 +0000 | [diff] [blame] | 964 | unsigned char zerolength[8]; |
| 965 | int longest = 1; |
| 966 | int colonpos = -1; |
| 967 | u16 word; |
André Goddard Rosa | 7b9186f | 2009-12-14 18:00:57 -0800 | [diff] [blame] | 968 | u8 hi, lo; |
Joe Perches | 8a27f7c | 2009-08-17 12:29:44 +0000 | [diff] [blame] | 969 | bool needcolon = false; |
Joe Perches | eb78cd2 | 2009-09-18 13:04:06 +0000 | [diff] [blame] | 970 | bool useIPv4; |
| 971 | struct in6_addr in6; |
| 972 | |
| 973 | memcpy(&in6, addr, sizeof(struct in6_addr)); |
| 974 | |
| 975 | useIPv4 = ipv6_addr_v4mapped(&in6) || ipv6_addr_is_isatap(&in6); |
Joe Perches | 8a27f7c | 2009-08-17 12:29:44 +0000 | [diff] [blame] | 976 | |
| 977 | memset(zerolength, 0, sizeof(zerolength)); |
| 978 | |
| 979 | if (useIPv4) |
| 980 | range = 6; |
| 981 | else |
| 982 | range = 8; |
| 983 | |
| 984 | /* find position of longest 0 run */ |
| 985 | for (i = 0; i < range; i++) { |
| 986 | for (j = i; j < range; j++) { |
Joe Perches | eb78cd2 | 2009-09-18 13:04:06 +0000 | [diff] [blame] | 987 | if (in6.s6_addr16[j] != 0) |
Joe Perches | 8a27f7c | 2009-08-17 12:29:44 +0000 | [diff] [blame] | 988 | break; |
| 989 | zerolength[i]++; |
| 990 | } |
| 991 | } |
| 992 | for (i = 0; i < range; i++) { |
| 993 | if (zerolength[i] > longest) { |
| 994 | longest = zerolength[i]; |
| 995 | colonpos = i; |
| 996 | } |
| 997 | } |
Joe Perches | 29cf519 | 2011-06-09 11:23:37 -0700 | [diff] [blame] | 998 | if (longest == 1) /* don't compress a single 0 */ |
| 999 | colonpos = -1; |
Joe Perches | 8a27f7c | 2009-08-17 12:29:44 +0000 | [diff] [blame] | 1000 | |
| 1001 | /* emit address */ |
| 1002 | for (i = 0; i < range; i++) { |
| 1003 | if (i == colonpos) { |
| 1004 | if (needcolon || i == 0) |
| 1005 | *p++ = ':'; |
| 1006 | *p++ = ':'; |
| 1007 | needcolon = false; |
| 1008 | i += longest - 1; |
| 1009 | continue; |
| 1010 | } |
| 1011 | if (needcolon) { |
| 1012 | *p++ = ':'; |
| 1013 | needcolon = false; |
| 1014 | } |
| 1015 | /* hex u16 without leading 0s */ |
Joe Perches | eb78cd2 | 2009-09-18 13:04:06 +0000 | [diff] [blame] | 1016 | word = ntohs(in6.s6_addr16[i]); |
Joe Perches | 8a27f7c | 2009-08-17 12:29:44 +0000 | [diff] [blame] | 1017 | hi = word >> 8; |
| 1018 | lo = word & 0xff; |
| 1019 | if (hi) { |
| 1020 | if (hi > 0x0f) |
Andy Shevchenko | 55036ba | 2011-10-31 17:12:41 -0700 | [diff] [blame] | 1021 | p = hex_byte_pack(p, hi); |
Joe Perches | 8a27f7c | 2009-08-17 12:29:44 +0000 | [diff] [blame] | 1022 | else |
| 1023 | *p++ = hex_asc_lo(hi); |
Andy Shevchenko | 55036ba | 2011-10-31 17:12:41 -0700 | [diff] [blame] | 1024 | p = hex_byte_pack(p, lo); |
Joe Perches | 8a27f7c | 2009-08-17 12:29:44 +0000 | [diff] [blame] | 1025 | } |
André Goddard Rosa | b5ff992 | 2009-12-14 18:00:59 -0800 | [diff] [blame] | 1026 | else if (lo > 0x0f) |
Andy Shevchenko | 55036ba | 2011-10-31 17:12:41 -0700 | [diff] [blame] | 1027 | p = hex_byte_pack(p, lo); |
Joe Perches | 8a27f7c | 2009-08-17 12:29:44 +0000 | [diff] [blame] | 1028 | else |
| 1029 | *p++ = hex_asc_lo(lo); |
| 1030 | needcolon = true; |
| 1031 | } |
| 1032 | |
| 1033 | if (useIPv4) { |
| 1034 | if (needcolon) |
| 1035 | *p++ = ':'; |
Joe Perches | 0159f24 | 2010-01-13 20:23:30 -0800 | [diff] [blame] | 1036 | p = ip4_string(p, &in6.s6_addr[12], "I4"); |
Joe Perches | 8a27f7c | 2009-08-17 12:29:44 +0000 | [diff] [blame] | 1037 | } |
Joe Perches | 8a27f7c | 2009-08-17 12:29:44 +0000 | [diff] [blame] | 1038 | *p = '\0'; |
André Goddard Rosa | 7b9186f | 2009-12-14 18:00:57 -0800 | [diff] [blame] | 1039 | |
Joe Perches | 8a27f7c | 2009-08-17 12:29:44 +0000 | [diff] [blame] | 1040 | return p; |
| 1041 | } |
| 1042 | |
Joe Perches | cf3b429 | 2010-05-24 14:33:16 -0700 | [diff] [blame] | 1043 | static noinline_for_stack |
| 1044 | char *ip6_string(char *p, const char *addr, const char *fmt) |
Joe Perches | 8a27f7c | 2009-08-17 12:29:44 +0000 | [diff] [blame] | 1045 | { |
| 1046 | int i; |
André Goddard Rosa | 7b9186f | 2009-12-14 18:00:57 -0800 | [diff] [blame] | 1047 | |
Harvey Harrison | 689afa7 | 2008-10-28 16:04:44 -0700 | [diff] [blame] | 1048 | for (i = 0; i < 8; i++) { |
Andy Shevchenko | 55036ba | 2011-10-31 17:12:41 -0700 | [diff] [blame] | 1049 | p = hex_byte_pack(p, *addr++); |
| 1050 | p = hex_byte_pack(p, *addr++); |
Joe Perches | 8a27f7c | 2009-08-17 12:29:44 +0000 | [diff] [blame] | 1051 | if (fmt[0] == 'I' && i != 7) |
Harvey Harrison | 689afa7 | 2008-10-28 16:04:44 -0700 | [diff] [blame] | 1052 | *p++ = ':'; |
| 1053 | } |
| 1054 | *p = '\0'; |
André Goddard Rosa | 7b9186f | 2009-12-14 18:00:57 -0800 | [diff] [blame] | 1055 | |
Joe Perches | 8a27f7c | 2009-08-17 12:29:44 +0000 | [diff] [blame] | 1056 | return p; |
| 1057 | } |
| 1058 | |
Joe Perches | cf3b429 | 2010-05-24 14:33:16 -0700 | [diff] [blame] | 1059 | static noinline_for_stack |
| 1060 | char *ip6_addr_string(char *buf, char *end, const u8 *addr, |
| 1061 | struct printf_spec spec, const char *fmt) |
Joe Perches | 8a27f7c | 2009-08-17 12:29:44 +0000 | [diff] [blame] | 1062 | { |
| 1063 | char ip6_addr[sizeof("xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:255.255.255.255")]; |
| 1064 | |
| 1065 | if (fmt[0] == 'I' && fmt[2] == 'c') |
Joe Perches | eb78cd2 | 2009-09-18 13:04:06 +0000 | [diff] [blame] | 1066 | ip6_compressed_string(ip6_addr, addr); |
Joe Perches | 8a27f7c | 2009-08-17 12:29:44 +0000 | [diff] [blame] | 1067 | else |
Joe Perches | eb78cd2 | 2009-09-18 13:04:06 +0000 | [diff] [blame] | 1068 | ip6_string(ip6_addr, addr, fmt); |
Harvey Harrison | 689afa7 | 2008-10-28 16:04:44 -0700 | [diff] [blame] | 1069 | |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 1070 | return string(buf, end, ip6_addr, spec); |
Harvey Harrison | 689afa7 | 2008-10-28 16:04:44 -0700 | [diff] [blame] | 1071 | } |
| 1072 | |
Joe Perches | cf3b429 | 2010-05-24 14:33:16 -0700 | [diff] [blame] | 1073 | static noinline_for_stack |
| 1074 | char *ip4_addr_string(char *buf, char *end, const u8 *addr, |
| 1075 | struct printf_spec spec, const char *fmt) |
Harvey Harrison | 4aa9960 | 2008-10-29 12:49:58 -0700 | [diff] [blame] | 1076 | { |
Joe Perches | 8a27f7c | 2009-08-17 12:29:44 +0000 | [diff] [blame] | 1077 | char ip4_addr[sizeof("255.255.255.255")]; |
Harvey Harrison | 4aa9960 | 2008-10-29 12:49:58 -0700 | [diff] [blame] | 1078 | |
Joe Perches | 0159f24 | 2010-01-13 20:23:30 -0800 | [diff] [blame] | 1079 | ip4_string(ip4_addr, addr, fmt); |
Harvey Harrison | 4aa9960 | 2008-10-29 12:49:58 -0700 | [diff] [blame] | 1080 | |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 1081 | return string(buf, end, ip4_addr, spec); |
Harvey Harrison | 4aa9960 | 2008-10-29 12:49:58 -0700 | [diff] [blame] | 1082 | } |
| 1083 | |
Joe Perches | cf3b429 | 2010-05-24 14:33:16 -0700 | [diff] [blame] | 1084 | static noinline_for_stack |
Daniel Borkmann | 1067964 | 2013-06-28 19:49:39 +0200 | [diff] [blame] | 1085 | char *ip6_addr_string_sa(char *buf, char *end, const struct sockaddr_in6 *sa, |
| 1086 | struct printf_spec spec, const char *fmt) |
| 1087 | { |
| 1088 | bool have_p = false, have_s = false, have_f = false, have_c = false; |
| 1089 | char ip6_addr[sizeof("[xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:255.255.255.255]") + |
| 1090 | sizeof(":12345") + sizeof("/123456789") + |
| 1091 | sizeof("%1234567890")]; |
| 1092 | char *p = ip6_addr, *pend = ip6_addr + sizeof(ip6_addr); |
| 1093 | const u8 *addr = (const u8 *) &sa->sin6_addr; |
| 1094 | char fmt6[2] = { fmt[0], '6' }; |
| 1095 | u8 off = 0; |
| 1096 | |
| 1097 | fmt++; |
| 1098 | while (isalpha(*++fmt)) { |
| 1099 | switch (*fmt) { |
| 1100 | case 'p': |
| 1101 | have_p = true; |
| 1102 | break; |
| 1103 | case 'f': |
| 1104 | have_f = true; |
| 1105 | break; |
| 1106 | case 's': |
| 1107 | have_s = true; |
| 1108 | break; |
| 1109 | case 'c': |
| 1110 | have_c = true; |
| 1111 | break; |
| 1112 | } |
| 1113 | } |
| 1114 | |
| 1115 | if (have_p || have_s || have_f) { |
| 1116 | *p = '['; |
| 1117 | off = 1; |
| 1118 | } |
| 1119 | |
| 1120 | if (fmt6[0] == 'I' && have_c) |
| 1121 | p = ip6_compressed_string(ip6_addr + off, addr); |
| 1122 | else |
| 1123 | p = ip6_string(ip6_addr + off, addr, fmt6); |
| 1124 | |
| 1125 | if (have_p || have_s || have_f) |
| 1126 | *p++ = ']'; |
| 1127 | |
| 1128 | if (have_p) { |
| 1129 | *p++ = ':'; |
| 1130 | p = number(p, pend, ntohs(sa->sin6_port), spec); |
| 1131 | } |
| 1132 | if (have_f) { |
| 1133 | *p++ = '/'; |
| 1134 | p = number(p, pend, ntohl(sa->sin6_flowinfo & |
| 1135 | IPV6_FLOWINFO_MASK), spec); |
| 1136 | } |
| 1137 | if (have_s) { |
| 1138 | *p++ = '%'; |
| 1139 | p = number(p, pend, sa->sin6_scope_id, spec); |
| 1140 | } |
| 1141 | *p = '\0'; |
| 1142 | |
| 1143 | return string(buf, end, ip6_addr, spec); |
| 1144 | } |
| 1145 | |
| 1146 | static noinline_for_stack |
| 1147 | char *ip4_addr_string_sa(char *buf, char *end, const struct sockaddr_in *sa, |
| 1148 | struct printf_spec spec, const char *fmt) |
| 1149 | { |
| 1150 | bool have_p = false; |
| 1151 | char *p, ip4_addr[sizeof("255.255.255.255") + sizeof(":12345")]; |
| 1152 | char *pend = ip4_addr + sizeof(ip4_addr); |
| 1153 | const u8 *addr = (const u8 *) &sa->sin_addr.s_addr; |
| 1154 | char fmt4[3] = { fmt[0], '4', 0 }; |
| 1155 | |
| 1156 | fmt++; |
| 1157 | while (isalpha(*++fmt)) { |
| 1158 | switch (*fmt) { |
| 1159 | case 'p': |
| 1160 | have_p = true; |
| 1161 | break; |
| 1162 | case 'h': |
| 1163 | case 'l': |
| 1164 | case 'n': |
| 1165 | case 'b': |
| 1166 | fmt4[2] = *fmt; |
| 1167 | break; |
| 1168 | } |
| 1169 | } |
| 1170 | |
| 1171 | p = ip4_string(ip4_addr, addr, fmt4); |
| 1172 | if (have_p) { |
| 1173 | *p++ = ':'; |
| 1174 | p = number(p, pend, ntohs(sa->sin_port), spec); |
| 1175 | } |
| 1176 | *p = '\0'; |
| 1177 | |
| 1178 | return string(buf, end, ip4_addr, spec); |
| 1179 | } |
| 1180 | |
| 1181 | static noinline_for_stack |
Andy Shevchenko | 71dca95 | 2014-10-13 15:55:18 -0700 | [diff] [blame] | 1182 | char *escaped_string(char *buf, char *end, u8 *addr, struct printf_spec spec, |
| 1183 | const char *fmt) |
| 1184 | { |
| 1185 | bool found = true; |
| 1186 | int count = 1; |
| 1187 | unsigned int flags = 0; |
| 1188 | int len; |
| 1189 | |
| 1190 | if (spec.field_width == 0) |
| 1191 | return buf; /* nothing to print */ |
| 1192 | |
| 1193 | if (ZERO_OR_NULL_PTR(addr)) |
| 1194 | return string(buf, end, NULL, spec); /* NULL pointer */ |
| 1195 | |
| 1196 | |
| 1197 | do { |
| 1198 | switch (fmt[count++]) { |
| 1199 | case 'a': |
| 1200 | flags |= ESCAPE_ANY; |
| 1201 | break; |
| 1202 | case 'c': |
| 1203 | flags |= ESCAPE_SPECIAL; |
| 1204 | break; |
| 1205 | case 'h': |
| 1206 | flags |= ESCAPE_HEX; |
| 1207 | break; |
| 1208 | case 'n': |
| 1209 | flags |= ESCAPE_NULL; |
| 1210 | break; |
| 1211 | case 'o': |
| 1212 | flags |= ESCAPE_OCTAL; |
| 1213 | break; |
| 1214 | case 'p': |
| 1215 | flags |= ESCAPE_NP; |
| 1216 | break; |
| 1217 | case 's': |
| 1218 | flags |= ESCAPE_SPACE; |
| 1219 | break; |
| 1220 | default: |
| 1221 | found = false; |
| 1222 | break; |
| 1223 | } |
| 1224 | } while (found); |
| 1225 | |
| 1226 | if (!flags) |
| 1227 | flags = ESCAPE_ANY_NP; |
| 1228 | |
| 1229 | len = spec.field_width < 0 ? 1 : spec.field_width; |
| 1230 | |
| 1231 | /* Ignore the error. We print as many characters as we can */ |
| 1232 | string_escape_mem(addr, len, &buf, end - buf, flags, NULL); |
| 1233 | |
| 1234 | return buf; |
| 1235 | } |
| 1236 | |
| 1237 | static noinline_for_stack |
Joe Perches | cf3b429 | 2010-05-24 14:33:16 -0700 | [diff] [blame] | 1238 | char *uuid_string(char *buf, char *end, const u8 *addr, |
| 1239 | struct printf_spec spec, const char *fmt) |
Joe Perches | 9ac6e44 | 2009-12-14 18:01:09 -0800 | [diff] [blame] | 1240 | { |
| 1241 | char uuid[sizeof("xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx")]; |
| 1242 | char *p = uuid; |
| 1243 | int i; |
| 1244 | static const u8 be[16] = {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15}; |
| 1245 | static const u8 le[16] = {3,2,1,0,5,4,7,6,8,9,10,11,12,13,14,15}; |
| 1246 | const u8 *index = be; |
| 1247 | bool uc = false; |
| 1248 | |
| 1249 | switch (*(++fmt)) { |
| 1250 | case 'L': |
| 1251 | uc = true; /* fall-through */ |
| 1252 | case 'l': |
| 1253 | index = le; |
| 1254 | break; |
| 1255 | case 'B': |
| 1256 | uc = true; |
| 1257 | break; |
| 1258 | } |
| 1259 | |
| 1260 | for (i = 0; i < 16; i++) { |
Andy Shevchenko | 55036ba | 2011-10-31 17:12:41 -0700 | [diff] [blame] | 1261 | p = hex_byte_pack(p, addr[index[i]]); |
Joe Perches | 9ac6e44 | 2009-12-14 18:01:09 -0800 | [diff] [blame] | 1262 | switch (i) { |
| 1263 | case 3: |
| 1264 | case 5: |
| 1265 | case 7: |
| 1266 | case 9: |
| 1267 | *p++ = '-'; |
| 1268 | break; |
| 1269 | } |
| 1270 | } |
| 1271 | |
| 1272 | *p = 0; |
| 1273 | |
| 1274 | if (uc) { |
| 1275 | p = uuid; |
| 1276 | do { |
| 1277 | *p = toupper(*p); |
| 1278 | } while (*(++p)); |
| 1279 | } |
| 1280 | |
| 1281 | return string(buf, end, uuid, spec); |
| 1282 | } |
| 1283 | |
Michał Mirosław | c8f44af | 2011-11-15 15:29:55 +0000 | [diff] [blame] | 1284 | static |
| 1285 | char *netdev_feature_string(char *buf, char *end, const u8 *addr, |
| 1286 | struct printf_spec spec) |
| 1287 | { |
| 1288 | spec.flags |= SPECIAL | SMALL | ZEROPAD; |
| 1289 | if (spec.field_width == -1) |
| 1290 | spec.field_width = 2 + 2 * sizeof(netdev_features_t); |
| 1291 | spec.base = 16; |
| 1292 | |
| 1293 | return number(buf, end, *(const netdev_features_t *)addr, spec); |
| 1294 | } |
| 1295 | |
Joe Perches | aaf0762 | 2014-01-23 15:54:17 -0800 | [diff] [blame] | 1296 | static noinline_for_stack |
| 1297 | char *address_val(char *buf, char *end, const void *addr, |
| 1298 | struct printf_spec spec, const char *fmt) |
| 1299 | { |
| 1300 | unsigned long long num; |
| 1301 | |
| 1302 | spec.flags |= SPECIAL | SMALL | ZEROPAD; |
| 1303 | spec.base = 16; |
| 1304 | |
| 1305 | switch (fmt[1]) { |
| 1306 | case 'd': |
| 1307 | num = *(const dma_addr_t *)addr; |
| 1308 | spec.field_width = sizeof(dma_addr_t) * 2 + 2; |
| 1309 | break; |
| 1310 | case 'p': |
| 1311 | default: |
| 1312 | num = *(const phys_addr_t *)addr; |
| 1313 | spec.field_width = sizeof(phys_addr_t) * 2 + 2; |
| 1314 | break; |
| 1315 | } |
| 1316 | |
| 1317 | return number(buf, end, num, spec); |
| 1318 | } |
| 1319 | |
Ingo Molnar | 411f05f | 2011-05-12 23:00:28 +0200 | [diff] [blame] | 1320 | int kptr_restrict __read_mostly; |
Dan Rosenberg | 455cd5a | 2011-01-12 16:59:41 -0800 | [diff] [blame] | 1321 | |
Linus Torvalds | 4d8a743 | 2008-07-06 16:24:57 -0700 | [diff] [blame] | 1322 | /* |
| 1323 | * Show a '%p' thing. A kernel extension is that the '%p' is followed |
| 1324 | * by an extra set of alphanumeric characters that are extended format |
| 1325 | * specifiers. |
| 1326 | * |
Linus Torvalds | 332d2e7 | 2008-10-20 15:07:34 +1100 | [diff] [blame] | 1327 | * Right now we handle: |
Linus Torvalds | 0fe1ef2 | 2008-07-06 16:43:12 -0700 | [diff] [blame] | 1328 | * |
Frederic Weisbecker | 0c8b946 | 2009-04-15 17:48:18 +0200 | [diff] [blame] | 1329 | * - 'F' For symbolic function descriptor pointers with offset |
| 1330 | * - 'f' For simple symbolic function names without offset |
Steven Rostedt | 0efb4d2 | 2009-09-17 09:27:29 -0400 | [diff] [blame] | 1331 | * - 'S' For symbolic direct pointers with offset |
| 1332 | * - 's' For symbolic direct pointers without offset |
Joe Perches | b0d33c2 | 2012-12-12 10:18:50 -0800 | [diff] [blame] | 1333 | * - '[FfSs]R' as above with __builtin_extract_return_addr() translation |
Namhyung Kim | 0f77a8d | 2011-03-24 11:42:29 +0900 | [diff] [blame] | 1334 | * - 'B' For backtraced symbolic direct pointers with offset |
Bjorn Helgaas | c7dabef | 2009-10-27 13:26:47 -0600 | [diff] [blame] | 1335 | * - 'R' For decoded struct resource, e.g., [mem 0x0-0x1f 64bit pref] |
| 1336 | * - 'r' For raw struct resource, e.g., [mem 0x0-0x1f flags 0x201] |
Tejun Heo | dbc760b | 2015-02-13 14:36:53 -0800 | [diff] [blame] | 1337 | * - 'b[l]' For a bitmap, the number of bits is determined by the field |
| 1338 | * width which must be explicitly specified either as part of the |
| 1339 | * format string '%32b[l]' or through '%*b[l]', [l] selects |
| 1340 | * range-list format instead of hex format |
Harvey Harrison | dd45c9c | 2008-10-27 15:47:12 -0700 | [diff] [blame] | 1341 | * - 'M' For a 6-byte MAC address, it prints the address in the |
| 1342 | * usual colon-separated hex notation |
Joe Perches | 8a27f7c | 2009-08-17 12:29:44 +0000 | [diff] [blame] | 1343 | * - 'm' For a 6-byte MAC address, it prints the hex address without colons |
Joe Perches | bc7259a | 2010-01-07 11:43:50 +0000 | [diff] [blame] | 1344 | * - 'MF' For a 6-byte MAC FDDI address, it prints the address |
Joe Perches | c8e0006 | 2010-01-11 00:44:14 -0800 | [diff] [blame] | 1345 | * with a dash-separated hex notation |
Andy Shevchenko | 7c59154 | 2012-10-04 17:12:33 -0700 | [diff] [blame] | 1346 | * - '[mM]R' For a 6-byte MAC address, Reverse order (Bluetooth) |
Joe Perches | 8a27f7c | 2009-08-17 12:29:44 +0000 | [diff] [blame] | 1347 | * - 'I' [46] for IPv4/IPv6 addresses printed in the usual way |
| 1348 | * IPv4 uses dot-separated decimal without leading 0's (1.2.3.4) |
| 1349 | * IPv6 uses colon separated network-order 16 bit hex with leading 0's |
Daniel Borkmann | 1067964 | 2013-06-28 19:49:39 +0200 | [diff] [blame] | 1350 | * [S][pfs] |
| 1351 | * Generic IPv4/IPv6 address (struct sockaddr *) that falls back to |
| 1352 | * [4] or [6] and is able to print port [p], flowinfo [f], scope [s] |
Joe Perches | 8a27f7c | 2009-08-17 12:29:44 +0000 | [diff] [blame] | 1353 | * - 'i' [46] for 'raw' IPv4/IPv6 addresses |
| 1354 | * IPv6 omits the colons (01020304...0f) |
| 1355 | * IPv4 uses dot-separated decimal with leading 0's (010.123.045.006) |
Daniel Borkmann | 1067964 | 2013-06-28 19:49:39 +0200 | [diff] [blame] | 1356 | * [S][pfs] |
| 1357 | * Generic IPv4/IPv6 address (struct sockaddr *) that falls back to |
| 1358 | * [4] or [6] and is able to print port [p], flowinfo [f], scope [s] |
| 1359 | * - '[Ii][4S][hnbl]' IPv4 addresses in host, network, big or little endian order |
| 1360 | * - 'I[6S]c' for IPv6 addresses printed as specified by |
Joe Perches | 29cf519 | 2011-06-09 11:23:37 -0700 | [diff] [blame] | 1361 | * http://tools.ietf.org/html/rfc5952 |
Andy Shevchenko | 71dca95 | 2014-10-13 15:55:18 -0700 | [diff] [blame] | 1362 | * - 'E[achnops]' For an escaped buffer, where rules are defined by combination |
| 1363 | * of the following flags (see string_escape_mem() for the |
| 1364 | * details): |
| 1365 | * a - ESCAPE_ANY |
| 1366 | * c - ESCAPE_SPECIAL |
| 1367 | * h - ESCAPE_HEX |
| 1368 | * n - ESCAPE_NULL |
| 1369 | * o - ESCAPE_OCTAL |
| 1370 | * p - ESCAPE_NP |
| 1371 | * s - ESCAPE_SPACE |
| 1372 | * By default ESCAPE_ANY_NP is used. |
Joe Perches | 9ac6e44 | 2009-12-14 18:01:09 -0800 | [diff] [blame] | 1373 | * - 'U' For a 16 byte UUID/GUID, it prints the UUID/GUID in the form |
| 1374 | * "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" |
| 1375 | * Options for %pU are: |
| 1376 | * b big endian lower case hex (default) |
| 1377 | * B big endian UPPER case hex |
| 1378 | * l little endian lower case hex |
| 1379 | * L little endian UPPER case hex |
| 1380 | * big endian output byte order is: |
| 1381 | * [0][1][2][3]-[4][5]-[6][7]-[8][9]-[10][11][12][13][14][15] |
| 1382 | * little endian output byte order is: |
| 1383 | * [3][2][1][0]-[5][4]-[7][6]-[8][9]-[10][11][12][13][14][15] |
Joe Perches | 7db6f5f | 2010-06-27 01:02:33 +0000 | [diff] [blame] | 1384 | * - 'V' For a struct va_format which contains a format string * and va_list *, |
| 1385 | * call vsnprintf(->format, *->va_list). |
| 1386 | * Implements a "recursive vsnprintf". |
| 1387 | * Do not use this feature without some mechanism to verify the |
| 1388 | * correctness of the format string and va_list arguments. |
Dan Rosenberg | 455cd5a | 2011-01-12 16:59:41 -0800 | [diff] [blame] | 1389 | * - 'K' For a kernel pointer that should be hidden from unprivileged users |
Michał Mirosław | c8f44af | 2011-11-15 15:29:55 +0000 | [diff] [blame] | 1390 | * - 'NF' For a netdev_features_t |
Andy Shevchenko | 31550a1 | 2012-07-30 14:40:27 -0700 | [diff] [blame] | 1391 | * - 'h[CDN]' For a variable-length buffer, it prints it as a hex string with |
| 1392 | * a certain separator (' ' by default): |
| 1393 | * C colon |
| 1394 | * D dash |
| 1395 | * N no separator |
| 1396 | * The maximum supported length is 64 bytes of the input. Consider |
| 1397 | * to use print_hex_dump() for the larger input. |
Joe Perches | aaf0762 | 2014-01-23 15:54:17 -0800 | [diff] [blame] | 1398 | * - 'a[pd]' For address types [p] phys_addr_t, [d] dma_addr_t and derivatives |
| 1399 | * (default assumed to be phys_addr_t, passed by reference) |
Olof Johansson | c0d92a5 | 2013-11-12 15:09:50 -0800 | [diff] [blame] | 1400 | * - 'd[234]' For a dentry name (optionally 2-4 last components) |
| 1401 | * - 'D[234]' Same as 'd' but for a struct file |
Joe Perches | 9ac6e44 | 2009-12-14 18:01:09 -0800 | [diff] [blame] | 1402 | * |
Linus Torvalds | 332d2e7 | 2008-10-20 15:07:34 +1100 | [diff] [blame] | 1403 | * Note: The difference between 'S' and 'F' is that on ia64 and ppc64 |
| 1404 | * function pointers are really function descriptors, which contain a |
| 1405 | * pointer to the real address. |
Linus Torvalds | 4d8a743 | 2008-07-06 16:24:57 -0700 | [diff] [blame] | 1406 | */ |
Joe Perches | cf3b429 | 2010-05-24 14:33:16 -0700 | [diff] [blame] | 1407 | static noinline_for_stack |
| 1408 | char *pointer(const char *fmt, char *buf, char *end, void *ptr, |
| 1409 | struct printf_spec spec) |
Linus Torvalds | 78a8bf6 | 2008-07-06 16:16:15 -0700 | [diff] [blame] | 1410 | { |
Grant Likely | 725fe00 | 2012-05-31 16:26:08 -0700 | [diff] [blame] | 1411 | int default_width = 2 * sizeof(void *) + (spec.flags & SPECIAL ? 2 : 0); |
| 1412 | |
Kees Cook | 9f36e2c | 2011-03-22 16:34:22 -0700 | [diff] [blame] | 1413 | if (!ptr && *fmt != 'K') { |
Joe Perches | 5e05798 | 2010-10-26 14:22:50 -0700 | [diff] [blame] | 1414 | /* |
| 1415 | * Print (null) with the same width as a pointer so it makes |
| 1416 | * tabular output look nice. |
| 1417 | */ |
| 1418 | if (spec.field_width == -1) |
Grant Likely | 725fe00 | 2012-05-31 16:26:08 -0700 | [diff] [blame] | 1419 | spec.field_width = default_width; |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 1420 | return string(buf, end, "(null)", spec); |
Joe Perches | 5e05798 | 2010-10-26 14:22:50 -0700 | [diff] [blame] | 1421 | } |
Linus Torvalds | d97106a | 2009-01-03 11:46:17 -0800 | [diff] [blame] | 1422 | |
Linus Torvalds | 0fe1ef2 | 2008-07-06 16:43:12 -0700 | [diff] [blame] | 1423 | switch (*fmt) { |
| 1424 | case 'F': |
Frederic Weisbecker | 0c8b946 | 2009-04-15 17:48:18 +0200 | [diff] [blame] | 1425 | case 'f': |
Linus Torvalds | 0fe1ef2 | 2008-07-06 16:43:12 -0700 | [diff] [blame] | 1426 | ptr = dereference_function_descriptor(ptr); |
| 1427 | /* Fallthrough */ |
| 1428 | case 'S': |
Joe Perches | 9ac6e44 | 2009-12-14 18:01:09 -0800 | [diff] [blame] | 1429 | case 's': |
Namhyung Kim | 0f77a8d | 2011-03-24 11:42:29 +0900 | [diff] [blame] | 1430 | case 'B': |
Joe Perches | b0d33c2 | 2012-12-12 10:18:50 -0800 | [diff] [blame] | 1431 | return symbol_string(buf, end, ptr, spec, fmt); |
Linus Torvalds | 332d2e7 | 2008-10-20 15:07:34 +1100 | [diff] [blame] | 1432 | case 'R': |
Bjorn Helgaas | c7dabef | 2009-10-27 13:26:47 -0600 | [diff] [blame] | 1433 | case 'r': |
Bjorn Helgaas | fd95541 | 2009-10-06 15:33:39 -0600 | [diff] [blame] | 1434 | return resource_string(buf, end, ptr, spec, fmt); |
Andy Shevchenko | 31550a1 | 2012-07-30 14:40:27 -0700 | [diff] [blame] | 1435 | case 'h': |
| 1436 | return hex_string(buf, end, ptr, spec, fmt); |
Tejun Heo | dbc760b | 2015-02-13 14:36:53 -0800 | [diff] [blame] | 1437 | case 'b': |
| 1438 | switch (fmt[1]) { |
| 1439 | case 'l': |
| 1440 | return bitmap_list_string(buf, end, ptr, spec, fmt); |
| 1441 | default: |
| 1442 | return bitmap_string(buf, end, ptr, spec, fmt); |
| 1443 | } |
Joe Perches | 8a27f7c | 2009-08-17 12:29:44 +0000 | [diff] [blame] | 1444 | case 'M': /* Colon separated: 00:01:02:03:04:05 */ |
| 1445 | case 'm': /* Contiguous: 000102030405 */ |
Andrei Emeltchenko | 76597ff9 | 2012-07-30 14:40:23 -0700 | [diff] [blame] | 1446 | /* [mM]F (FDDI) */ |
| 1447 | /* [mM]R (Reverse order; Bluetooth) */ |
Joe Perches | 8a27f7c | 2009-08-17 12:29:44 +0000 | [diff] [blame] | 1448 | return mac_address_string(buf, end, ptr, spec, fmt); |
| 1449 | case 'I': /* Formatted IP supported |
| 1450 | * 4: 1.2.3.4 |
| 1451 | * 6: 0001:0203:...:0708 |
| 1452 | * 6c: 1::708 or 1::1.2.3.4 |
| 1453 | */ |
| 1454 | case 'i': /* Contiguous: |
| 1455 | * 4: 001.002.003.004 |
| 1456 | * 6: 000102...0f |
| 1457 | */ |
| 1458 | switch (fmt[1]) { |
| 1459 | case '6': |
| 1460 | return ip6_addr_string(buf, end, ptr, spec, fmt); |
| 1461 | case '4': |
| 1462 | return ip4_addr_string(buf, end, ptr, spec, fmt); |
Daniel Borkmann | 1067964 | 2013-06-28 19:49:39 +0200 | [diff] [blame] | 1463 | case 'S': { |
| 1464 | const union { |
| 1465 | struct sockaddr raw; |
| 1466 | struct sockaddr_in v4; |
| 1467 | struct sockaddr_in6 v6; |
| 1468 | } *sa = ptr; |
| 1469 | |
| 1470 | switch (sa->raw.sa_family) { |
| 1471 | case AF_INET: |
| 1472 | return ip4_addr_string_sa(buf, end, &sa->v4, spec, fmt); |
| 1473 | case AF_INET6: |
| 1474 | return ip6_addr_string_sa(buf, end, &sa->v6, spec, fmt); |
| 1475 | default: |
| 1476 | return string(buf, end, "(invalid address)", spec); |
| 1477 | }} |
Joe Perches | 8a27f7c | 2009-08-17 12:29:44 +0000 | [diff] [blame] | 1478 | } |
Harvey Harrison | 4aa9960 | 2008-10-29 12:49:58 -0700 | [diff] [blame] | 1479 | break; |
Andy Shevchenko | 71dca95 | 2014-10-13 15:55:18 -0700 | [diff] [blame] | 1480 | case 'E': |
| 1481 | return escaped_string(buf, end, ptr, spec, fmt); |
Joe Perches | 9ac6e44 | 2009-12-14 18:01:09 -0800 | [diff] [blame] | 1482 | case 'U': |
| 1483 | return uuid_string(buf, end, ptr, spec, fmt); |
Joe Perches | 7db6f5f | 2010-06-27 01:02:33 +0000 | [diff] [blame] | 1484 | case 'V': |
Jan Beulich | 5756b76 | 2012-03-05 16:49:24 +0000 | [diff] [blame] | 1485 | { |
| 1486 | va_list va; |
| 1487 | |
| 1488 | va_copy(va, *((struct va_format *)ptr)->va); |
| 1489 | buf += vsnprintf(buf, end > buf ? end - buf : 0, |
| 1490 | ((struct va_format *)ptr)->fmt, va); |
| 1491 | va_end(va); |
| 1492 | return buf; |
| 1493 | } |
Dan Rosenberg | 455cd5a | 2011-01-12 16:59:41 -0800 | [diff] [blame] | 1494 | case 'K': |
| 1495 | /* |
| 1496 | * %pK cannot be used in IRQ context because its test |
| 1497 | * for CAP_SYSLOG would be meaningless. |
| 1498 | */ |
Dan Rosenberg | 3715c530 | 2012-07-30 14:40:26 -0700 | [diff] [blame] | 1499 | if (kptr_restrict && (in_irq() || in_serving_softirq() || |
| 1500 | in_nmi())) { |
Dan Rosenberg | 455cd5a | 2011-01-12 16:59:41 -0800 | [diff] [blame] | 1501 | if (spec.field_width == -1) |
Grant Likely | 725fe00 | 2012-05-31 16:26:08 -0700 | [diff] [blame] | 1502 | spec.field_width = default_width; |
Dan Rosenberg | 455cd5a | 2011-01-12 16:59:41 -0800 | [diff] [blame] | 1503 | return string(buf, end, "pK-error", spec); |
Dan Rosenberg | 455cd5a | 2011-01-12 16:59:41 -0800 | [diff] [blame] | 1504 | } |
Ryan Mallon | 312b4e2 | 2013-11-12 15:08:51 -0800 | [diff] [blame] | 1505 | |
| 1506 | switch (kptr_restrict) { |
| 1507 | case 0: |
| 1508 | /* Always print %pK values */ |
| 1509 | break; |
| 1510 | case 1: { |
| 1511 | /* |
| 1512 | * Only print the real pointer value if the current |
| 1513 | * process has CAP_SYSLOG and is running with the |
| 1514 | * same credentials it started with. This is because |
| 1515 | * access to files is checked at open() time, but %pK |
| 1516 | * checks permission at read() time. We don't want to |
| 1517 | * leak pointer values if a binary opens a file using |
| 1518 | * %pK and then elevates privileges before reading it. |
| 1519 | */ |
| 1520 | const struct cred *cred = current_cred(); |
| 1521 | |
| 1522 | if (!has_capability_noaudit(current, CAP_SYSLOG) || |
| 1523 | !uid_eq(cred->euid, cred->uid) || |
| 1524 | !gid_eq(cred->egid, cred->gid)) |
| 1525 | ptr = NULL; |
| 1526 | break; |
| 1527 | } |
| 1528 | case 2: |
| 1529 | default: |
| 1530 | /* Always print 0's for %pK */ |
Joe Perches | 2629760 | 2011-03-22 16:34:19 -0700 | [diff] [blame] | 1531 | ptr = NULL; |
Ryan Mallon | 312b4e2 | 2013-11-12 15:08:51 -0800 | [diff] [blame] | 1532 | break; |
| 1533 | } |
Joe Perches | 2629760 | 2011-03-22 16:34:19 -0700 | [diff] [blame] | 1534 | break; |
Ryan Mallon | 312b4e2 | 2013-11-12 15:08:51 -0800 | [diff] [blame] | 1535 | |
Michał Mirosław | c8f44af | 2011-11-15 15:29:55 +0000 | [diff] [blame] | 1536 | case 'N': |
| 1537 | switch (fmt[1]) { |
| 1538 | case 'F': |
| 1539 | return netdev_feature_string(buf, end, ptr, spec); |
| 1540 | } |
| 1541 | break; |
Stepan Moskovchenko | 7d79921 | 2013-02-21 16:43:09 -0800 | [diff] [blame] | 1542 | case 'a': |
Joe Perches | aaf0762 | 2014-01-23 15:54:17 -0800 | [diff] [blame] | 1543 | return address_val(buf, end, ptr, spec, fmt); |
Al Viro | 4b6ccca | 2013-09-03 12:00:44 -0400 | [diff] [blame] | 1544 | case 'd': |
| 1545 | return dentry_name(buf, end, ptr, spec, fmt); |
| 1546 | case 'D': |
| 1547 | return dentry_name(buf, end, |
| 1548 | ((const struct file *)ptr)->f_path.dentry, |
| 1549 | spec, fmt); |
Linus Torvalds | 0fe1ef2 | 2008-07-06 16:43:12 -0700 | [diff] [blame] | 1550 | } |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 1551 | spec.flags |= SMALL; |
| 1552 | if (spec.field_width == -1) { |
Grant Likely | 725fe00 | 2012-05-31 16:26:08 -0700 | [diff] [blame] | 1553 | spec.field_width = default_width; |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 1554 | spec.flags |= ZEROPAD; |
Linus Torvalds | 78a8bf6 | 2008-07-06 16:16:15 -0700 | [diff] [blame] | 1555 | } |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 1556 | spec.base = 16; |
| 1557 | |
| 1558 | return number(buf, end, (unsigned long) ptr, spec); |
| 1559 | } |
| 1560 | |
| 1561 | /* |
| 1562 | * Helper function to decode printf style format. |
| 1563 | * Each call decode a token from the format and return the |
| 1564 | * number of characters read (or likely the delta where it wants |
| 1565 | * to go on the next call). |
| 1566 | * The decoded token is returned through the parameters |
| 1567 | * |
| 1568 | * 'h', 'l', or 'L' for integer fields |
| 1569 | * 'z' support added 23/7/1999 S.H. |
| 1570 | * 'z' changed to 'Z' --davidm 1/25/99 |
| 1571 | * 't' added for ptrdiff_t |
| 1572 | * |
| 1573 | * @fmt: the format string |
| 1574 | * @type of the token returned |
| 1575 | * @flags: various flags such as +, -, # tokens.. |
| 1576 | * @field_width: overwritten width |
| 1577 | * @base: base of the number (octal, hex, ...) |
| 1578 | * @precision: precision of a number |
| 1579 | * @qualifier: qualifier of a number (long, size_t, ...) |
| 1580 | */ |
Joe Perches | cf3b429 | 2010-05-24 14:33:16 -0700 | [diff] [blame] | 1581 | static noinline_for_stack |
| 1582 | int format_decode(const char *fmt, struct printf_spec *spec) |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 1583 | { |
| 1584 | const char *start = fmt; |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 1585 | |
| 1586 | /* we finished early by reading the field width */ |
Vegard Nossum | ed681a9 | 2009-03-14 12:08:50 +0100 | [diff] [blame] | 1587 | if (spec->type == FORMAT_TYPE_WIDTH) { |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 1588 | if (spec->field_width < 0) { |
| 1589 | spec->field_width = -spec->field_width; |
| 1590 | spec->flags |= LEFT; |
| 1591 | } |
| 1592 | spec->type = FORMAT_TYPE_NONE; |
| 1593 | goto precision; |
| 1594 | } |
| 1595 | |
| 1596 | /* we finished early by reading the precision */ |
| 1597 | if (spec->type == FORMAT_TYPE_PRECISION) { |
| 1598 | if (spec->precision < 0) |
| 1599 | spec->precision = 0; |
| 1600 | |
| 1601 | spec->type = FORMAT_TYPE_NONE; |
| 1602 | goto qualifier; |
| 1603 | } |
| 1604 | |
| 1605 | /* By default */ |
| 1606 | spec->type = FORMAT_TYPE_NONE; |
| 1607 | |
| 1608 | for (; *fmt ; ++fmt) { |
| 1609 | if (*fmt == '%') |
| 1610 | break; |
| 1611 | } |
| 1612 | |
| 1613 | /* Return the current non-format string */ |
| 1614 | if (fmt != start || !*fmt) |
| 1615 | return fmt - start; |
| 1616 | |
| 1617 | /* Process flags */ |
| 1618 | spec->flags = 0; |
| 1619 | |
| 1620 | while (1) { /* this also skips first '%' */ |
| 1621 | bool found = true; |
| 1622 | |
| 1623 | ++fmt; |
| 1624 | |
| 1625 | switch (*fmt) { |
| 1626 | case '-': spec->flags |= LEFT; break; |
| 1627 | case '+': spec->flags |= PLUS; break; |
| 1628 | case ' ': spec->flags |= SPACE; break; |
| 1629 | case '#': spec->flags |= SPECIAL; break; |
| 1630 | case '0': spec->flags |= ZEROPAD; break; |
| 1631 | default: found = false; |
| 1632 | } |
| 1633 | |
| 1634 | if (!found) |
| 1635 | break; |
| 1636 | } |
| 1637 | |
| 1638 | /* get field width */ |
| 1639 | spec->field_width = -1; |
| 1640 | |
| 1641 | if (isdigit(*fmt)) |
| 1642 | spec->field_width = skip_atoi(&fmt); |
| 1643 | else if (*fmt == '*') { |
| 1644 | /* it's the next argument */ |
Vegard Nossum | ed681a9 | 2009-03-14 12:08:50 +0100 | [diff] [blame] | 1645 | spec->type = FORMAT_TYPE_WIDTH; |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 1646 | return ++fmt - start; |
| 1647 | } |
| 1648 | |
| 1649 | precision: |
| 1650 | /* get the precision */ |
| 1651 | spec->precision = -1; |
| 1652 | if (*fmt == '.') { |
| 1653 | ++fmt; |
| 1654 | if (isdigit(*fmt)) { |
| 1655 | spec->precision = skip_atoi(&fmt); |
| 1656 | if (spec->precision < 0) |
| 1657 | spec->precision = 0; |
| 1658 | } else if (*fmt == '*') { |
| 1659 | /* it's the next argument */ |
Vegard Nossum | adf26f8 | 2009-03-14 12:08:50 +0100 | [diff] [blame] | 1660 | spec->type = FORMAT_TYPE_PRECISION; |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 1661 | return ++fmt - start; |
| 1662 | } |
| 1663 | } |
| 1664 | |
| 1665 | qualifier: |
| 1666 | /* get the conversion qualifier */ |
| 1667 | spec->qualifier = -1; |
Andy Shevchenko | 75fb8f2 | 2011-07-25 17:13:20 -0700 | [diff] [blame] | 1668 | if (*fmt == 'h' || _tolower(*fmt) == 'l' || |
| 1669 | _tolower(*fmt) == 'z' || *fmt == 't') { |
Zhaolei | a4e94ef | 2009-03-27 17:07:05 +0800 | [diff] [blame] | 1670 | spec->qualifier = *fmt++; |
| 1671 | if (unlikely(spec->qualifier == *fmt)) { |
| 1672 | if (spec->qualifier == 'l') { |
| 1673 | spec->qualifier = 'L'; |
| 1674 | ++fmt; |
| 1675 | } else if (spec->qualifier == 'h') { |
| 1676 | spec->qualifier = 'H'; |
| 1677 | ++fmt; |
| 1678 | } |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 1679 | } |
| 1680 | } |
| 1681 | |
| 1682 | /* default base */ |
| 1683 | spec->base = 10; |
| 1684 | switch (*fmt) { |
| 1685 | case 'c': |
| 1686 | spec->type = FORMAT_TYPE_CHAR; |
| 1687 | return ++fmt - start; |
| 1688 | |
| 1689 | case 's': |
| 1690 | spec->type = FORMAT_TYPE_STR; |
| 1691 | return ++fmt - start; |
| 1692 | |
| 1693 | case 'p': |
| 1694 | spec->type = FORMAT_TYPE_PTR; |
Rasmus Villemoes | ffbfed0 | 2015-02-12 15:01:37 -0800 | [diff] [blame] | 1695 | return ++fmt - start; |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 1696 | |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 1697 | case '%': |
| 1698 | spec->type = FORMAT_TYPE_PERCENT_CHAR; |
| 1699 | return ++fmt - start; |
| 1700 | |
| 1701 | /* integer number formats - set up the flags and "break" */ |
| 1702 | case 'o': |
| 1703 | spec->base = 8; |
| 1704 | break; |
| 1705 | |
| 1706 | case 'x': |
| 1707 | spec->flags |= SMALL; |
| 1708 | |
| 1709 | case 'X': |
| 1710 | spec->base = 16; |
| 1711 | break; |
| 1712 | |
| 1713 | case 'd': |
| 1714 | case 'i': |
Frederic Weisbecker | 39e874f | 2009-03-09 21:15:04 +0100 | [diff] [blame] | 1715 | spec->flags |= SIGN; |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 1716 | case 'u': |
| 1717 | break; |
| 1718 | |
Ryan Mallon | 708d96fd | 2014-04-03 14:48:37 -0700 | [diff] [blame] | 1719 | case 'n': |
| 1720 | /* |
| 1721 | * Since %n poses a greater security risk than utility, treat |
| 1722 | * it as an invalid format specifier. Warn about its use so |
| 1723 | * that new instances don't get added. |
| 1724 | */ |
| 1725 | WARN_ONCE(1, "Please remove ignored %%n in '%s'\n", fmt); |
| 1726 | /* Fall-through */ |
| 1727 | |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 1728 | default: |
| 1729 | spec->type = FORMAT_TYPE_INVALID; |
| 1730 | return fmt - start; |
| 1731 | } |
| 1732 | |
| 1733 | if (spec->qualifier == 'L') |
| 1734 | spec->type = FORMAT_TYPE_LONG_LONG; |
| 1735 | else if (spec->qualifier == 'l') { |
Rasmus Villemoes | 51be17d | 2015-04-15 16:17:02 -0700 | [diff] [blame] | 1736 | BUILD_BUG_ON(FORMAT_TYPE_ULONG + SIGN != FORMAT_TYPE_LONG); |
| 1737 | spec->type = FORMAT_TYPE_ULONG + (spec->flags & SIGN); |
Andy Shevchenko | 75fb8f2 | 2011-07-25 17:13:20 -0700 | [diff] [blame] | 1738 | } else if (_tolower(spec->qualifier) == 'z') { |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 1739 | spec->type = FORMAT_TYPE_SIZE_T; |
| 1740 | } else if (spec->qualifier == 't') { |
| 1741 | spec->type = FORMAT_TYPE_PTRDIFF; |
Zhaolei | a4e94ef | 2009-03-27 17:07:05 +0800 | [diff] [blame] | 1742 | } else if (spec->qualifier == 'H') { |
Rasmus Villemoes | 51be17d | 2015-04-15 16:17:02 -0700 | [diff] [blame] | 1743 | BUILD_BUG_ON(FORMAT_TYPE_UBYTE + SIGN != FORMAT_TYPE_BYTE); |
| 1744 | spec->type = FORMAT_TYPE_UBYTE + (spec->flags & SIGN); |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 1745 | } else if (spec->qualifier == 'h') { |
Rasmus Villemoes | 51be17d | 2015-04-15 16:17:02 -0700 | [diff] [blame] | 1746 | BUILD_BUG_ON(FORMAT_TYPE_USHORT + SIGN != FORMAT_TYPE_SHORT); |
| 1747 | spec->type = FORMAT_TYPE_USHORT + (spec->flags & SIGN); |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 1748 | } else { |
Rasmus Villemoes | 51be17d | 2015-04-15 16:17:02 -0700 | [diff] [blame] | 1749 | BUILD_BUG_ON(FORMAT_TYPE_UINT + SIGN != FORMAT_TYPE_INT); |
| 1750 | spec->type = FORMAT_TYPE_UINT + (spec->flags & SIGN); |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 1751 | } |
| 1752 | |
| 1753 | return ++fmt - start; |
Linus Torvalds | 78a8bf6 | 2008-07-06 16:16:15 -0700 | [diff] [blame] | 1754 | } |
| 1755 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1756 | /** |
| 1757 | * vsnprintf - Format a string and place it in a buffer |
| 1758 | * @buf: The buffer to place the result into |
| 1759 | * @size: The size of the buffer, including the trailing null space |
| 1760 | * @fmt: The format string to use |
| 1761 | * @args: Arguments for the format string |
| 1762 | * |
Andi Kleen | 20036fd | 2008-10-15 22:02:02 -0700 | [diff] [blame] | 1763 | * This function follows C99 vsnprintf, but has some extensions: |
Steven Rostedt | 91adcd2 | 2009-09-16 20:03:06 -0400 | [diff] [blame] | 1764 | * %pS output the name of a text symbol with offset |
| 1765 | * %ps output the name of a text symbol without offset |
Frederic Weisbecker | 0c8b946 | 2009-04-15 17:48:18 +0200 | [diff] [blame] | 1766 | * %pF output the name of a function pointer with its offset |
| 1767 | * %pf output the name of a function pointer without its offset |
Namhyung Kim | 0f77a8d | 2011-03-24 11:42:29 +0900 | [diff] [blame] | 1768 | * %pB output the name of a backtrace symbol with its offset |
Uwe Kleine-König | 8a79503 | 2009-12-17 15:27:12 -0800 | [diff] [blame] | 1769 | * %pR output the address range in a struct resource with decoded flags |
| 1770 | * %pr output the address range in a struct resource with raw flags |
Tejun Heo | dbc760b | 2015-02-13 14:36:53 -0800 | [diff] [blame] | 1771 | * %pb output the bitmap with field width as the number of bits |
| 1772 | * %pbl output the bitmap as range list with field width as the number of bits |
Uwe Kleine-König | 8a79503 | 2009-12-17 15:27:12 -0800 | [diff] [blame] | 1773 | * %pM output a 6-byte MAC address with colons |
Andy Shevchenko | 7c59154 | 2012-10-04 17:12:33 -0700 | [diff] [blame] | 1774 | * %pMR output a 6-byte MAC address with colons in reversed order |
| 1775 | * %pMF output a 6-byte MAC address with dashes |
Uwe Kleine-König | 8a79503 | 2009-12-17 15:27:12 -0800 | [diff] [blame] | 1776 | * %pm output a 6-byte MAC address without colons |
Andy Shevchenko | 7c59154 | 2012-10-04 17:12:33 -0700 | [diff] [blame] | 1777 | * %pmR output a 6-byte MAC address without colons in reversed order |
Uwe Kleine-König | 8a79503 | 2009-12-17 15:27:12 -0800 | [diff] [blame] | 1778 | * %pI4 print an IPv4 address without leading zeros |
| 1779 | * %pi4 print an IPv4 address with leading zeros |
| 1780 | * %pI6 print an IPv6 address with colons |
| 1781 | * %pi6 print an IPv6 address without colons |
Jan Engelhardt | f996f20 | 2011-07-14 18:48:56 +0200 | [diff] [blame] | 1782 | * %pI6c print an IPv6 address as specified by RFC 5952 |
Daniel Borkmann | 1067964 | 2013-06-28 19:49:39 +0200 | [diff] [blame] | 1783 | * %pIS depending on sa_family of 'struct sockaddr *' print IPv4/IPv6 address |
| 1784 | * %piS depending on sa_family of 'struct sockaddr *' print IPv4/IPv6 address |
Uwe Kleine-König | 8a79503 | 2009-12-17 15:27:12 -0800 | [diff] [blame] | 1785 | * %pU[bBlL] print a UUID/GUID in big or little endian using lower or upper |
| 1786 | * case. |
Andy Shevchenko | 71dca95 | 2014-10-13 15:55:18 -0700 | [diff] [blame] | 1787 | * %*pE[achnops] print an escaped buffer |
Andy Shevchenko | 31550a1 | 2012-07-30 14:40:27 -0700 | [diff] [blame] | 1788 | * %*ph[CDN] a variable-length hex string with a separator (supports up to 64 |
| 1789 | * bytes of the input) |
Steven Rostedt | 0efb4d2 | 2009-09-17 09:27:29 -0400 | [diff] [blame] | 1790 | * %n is ignored |
Andi Kleen | 20036fd | 2008-10-15 22:02:02 -0700 | [diff] [blame] | 1791 | * |
Andrew Morton | 80f548e | 2012-07-30 14:40:25 -0700 | [diff] [blame] | 1792 | * ** Please update Documentation/printk-formats.txt when making changes ** |
| 1793 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1794 | * The return value is the number of characters which would |
| 1795 | * be generated for the given input, excluding the trailing |
| 1796 | * '\0', as per ISO C99. If you want to have the exact |
| 1797 | * number of characters written into @buf as return value |
Robert P. J. Day | 72fd4a3 | 2007-02-10 01:45:59 -0800 | [diff] [blame] | 1798 | * (not including the trailing '\0'), use vscnprintf(). If the |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1799 | * return is greater than or equal to @size, the resulting |
| 1800 | * string is truncated. |
| 1801 | * |
Uwe Kleine-König | ba1835e | 2011-04-06 07:49:04 -0700 | [diff] [blame] | 1802 | * If you're not already dealing with a va_list consider using snprintf(). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1803 | */ |
| 1804 | int vsnprintf(char *buf, size_t size, const char *fmt, va_list args) |
| 1805 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1806 | unsigned long long num; |
André Goddard Rosa | d4be151 | 2009-12-14 18:00:59 -0800 | [diff] [blame] | 1807 | char *str, *end; |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 1808 | struct printf_spec spec = {0}; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1809 | |
Jeremy Fitzhardinge | f796937 | 2006-06-25 05:49:17 -0700 | [diff] [blame] | 1810 | /* Reject out-of-range values early. Large positive sizes are |
| 1811 | used for unknown buffer sizes. */ |
Rasmus Villemoes | 2aa2f9e | 2015-02-12 15:01:39 -0800 | [diff] [blame] | 1812 | if (WARN_ON_ONCE(size > INT_MAX)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1813 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1814 | |
| 1815 | str = buf; |
Jeremy Fitzhardinge | f796937 | 2006-06-25 05:49:17 -0700 | [diff] [blame] | 1816 | end = buf + size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1817 | |
Jeremy Fitzhardinge | f796937 | 2006-06-25 05:49:17 -0700 | [diff] [blame] | 1818 | /* Make sure end is always >= buf */ |
| 1819 | if (end < buf) { |
| 1820 | end = ((void *)-1); |
| 1821 | size = end - buf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1822 | } |
| 1823 | |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 1824 | while (*fmt) { |
| 1825 | const char *old_fmt = fmt; |
André Goddard Rosa | d4be151 | 2009-12-14 18:00:59 -0800 | [diff] [blame] | 1826 | int read = format_decode(fmt, &spec); |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 1827 | |
| 1828 | fmt += read; |
| 1829 | |
| 1830 | switch (spec.type) { |
| 1831 | case FORMAT_TYPE_NONE: { |
| 1832 | int copy = read; |
| 1833 | if (str < end) { |
| 1834 | if (copy > end - str) |
| 1835 | copy = end - str; |
| 1836 | memcpy(str, old_fmt, copy); |
| 1837 | } |
| 1838 | str += read; |
| 1839 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1840 | } |
| 1841 | |
Vegard Nossum | ed681a9 | 2009-03-14 12:08:50 +0100 | [diff] [blame] | 1842 | case FORMAT_TYPE_WIDTH: |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 1843 | spec.field_width = va_arg(args, int); |
| 1844 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1845 | |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 1846 | case FORMAT_TYPE_PRECISION: |
| 1847 | spec.precision = va_arg(args, int); |
| 1848 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1849 | |
André Goddard Rosa | d4be151 | 2009-12-14 18:00:59 -0800 | [diff] [blame] | 1850 | case FORMAT_TYPE_CHAR: { |
| 1851 | char c; |
| 1852 | |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 1853 | if (!(spec.flags & LEFT)) { |
| 1854 | while (--spec.field_width > 0) { |
Jeremy Fitzhardinge | f796937 | 2006-06-25 05:49:17 -0700 | [diff] [blame] | 1855 | if (str < end) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1856 | *str = ' '; |
| 1857 | ++str; |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 1858 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1859 | } |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 1860 | } |
| 1861 | c = (unsigned char) va_arg(args, int); |
| 1862 | if (str < end) |
| 1863 | *str = c; |
| 1864 | ++str; |
| 1865 | while (--spec.field_width > 0) { |
Jeremy Fitzhardinge | f796937 | 2006-06-25 05:49:17 -0700 | [diff] [blame] | 1866 | if (str < end) |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 1867 | *str = ' '; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1868 | ++str; |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 1869 | } |
| 1870 | break; |
André Goddard Rosa | d4be151 | 2009-12-14 18:00:59 -0800 | [diff] [blame] | 1871 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1872 | |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 1873 | case FORMAT_TYPE_STR: |
| 1874 | str = string(str, end, va_arg(args, char *), spec); |
| 1875 | break; |
| 1876 | |
| 1877 | case FORMAT_TYPE_PTR: |
Rasmus Villemoes | ffbfed0 | 2015-02-12 15:01:37 -0800 | [diff] [blame] | 1878 | str = pointer(fmt, str, end, va_arg(args, void *), |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 1879 | spec); |
| 1880 | while (isalnum(*fmt)) |
| 1881 | fmt++; |
| 1882 | break; |
| 1883 | |
| 1884 | case FORMAT_TYPE_PERCENT_CHAR: |
| 1885 | if (str < end) |
| 1886 | *str = '%'; |
| 1887 | ++str; |
| 1888 | break; |
| 1889 | |
| 1890 | case FORMAT_TYPE_INVALID: |
| 1891 | if (str < end) |
| 1892 | *str = '%'; |
| 1893 | ++str; |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 1894 | break; |
| 1895 | |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 1896 | default: |
| 1897 | switch (spec.type) { |
| 1898 | case FORMAT_TYPE_LONG_LONG: |
| 1899 | num = va_arg(args, long long); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1900 | break; |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 1901 | case FORMAT_TYPE_ULONG: |
| 1902 | num = va_arg(args, unsigned long); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1903 | break; |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 1904 | case FORMAT_TYPE_LONG: |
| 1905 | num = va_arg(args, long); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1906 | break; |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 1907 | case FORMAT_TYPE_SIZE_T: |
Jason Gunthorpe | ef12496 | 2012-12-17 15:59:58 -0800 | [diff] [blame] | 1908 | if (spec.flags & SIGN) |
| 1909 | num = va_arg(args, ssize_t); |
| 1910 | else |
| 1911 | num = va_arg(args, size_t); |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 1912 | break; |
| 1913 | case FORMAT_TYPE_PTRDIFF: |
| 1914 | num = va_arg(args, ptrdiff_t); |
| 1915 | break; |
Zhaolei | a4e94ef | 2009-03-27 17:07:05 +0800 | [diff] [blame] | 1916 | case FORMAT_TYPE_UBYTE: |
| 1917 | num = (unsigned char) va_arg(args, int); |
| 1918 | break; |
| 1919 | case FORMAT_TYPE_BYTE: |
| 1920 | num = (signed char) va_arg(args, int); |
| 1921 | break; |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 1922 | case FORMAT_TYPE_USHORT: |
| 1923 | num = (unsigned short) va_arg(args, int); |
| 1924 | break; |
| 1925 | case FORMAT_TYPE_SHORT: |
| 1926 | num = (short) va_arg(args, int); |
| 1927 | break; |
Frederic Weisbecker | 39e874f | 2009-03-09 21:15:04 +0100 | [diff] [blame] | 1928 | case FORMAT_TYPE_INT: |
| 1929 | num = (int) va_arg(args, int); |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 1930 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1931 | default: |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 1932 | num = va_arg(args, unsigned int); |
| 1933 | } |
| 1934 | |
| 1935 | str = number(str, end, num, spec); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1936 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1937 | } |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 1938 | |
Jeremy Fitzhardinge | f796937 | 2006-06-25 05:49:17 -0700 | [diff] [blame] | 1939 | if (size > 0) { |
| 1940 | if (str < end) |
| 1941 | *str = '\0'; |
| 1942 | else |
Linus Torvalds | 0a6047e | 2006-06-28 17:09:34 -0700 | [diff] [blame] | 1943 | end[-1] = '\0'; |
Jeremy Fitzhardinge | f796937 | 2006-06-25 05:49:17 -0700 | [diff] [blame] | 1944 | } |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 1945 | |
Jeremy Fitzhardinge | f796937 | 2006-06-25 05:49:17 -0700 | [diff] [blame] | 1946 | /* the trailing null byte doesn't count towards the total */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1947 | return str-buf; |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 1948 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1949 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1950 | EXPORT_SYMBOL(vsnprintf); |
| 1951 | |
| 1952 | /** |
| 1953 | * vscnprintf - Format a string and place it in a buffer |
| 1954 | * @buf: The buffer to place the result into |
| 1955 | * @size: The size of the buffer, including the trailing null space |
| 1956 | * @fmt: The format string to use |
| 1957 | * @args: Arguments for the format string |
| 1958 | * |
| 1959 | * The return value is the number of characters which have been written into |
Anton Arapov | b921c69 | 2011-01-12 16:59:49 -0800 | [diff] [blame] | 1960 | * the @buf not including the trailing '\0'. If @size is == 0 the function |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1961 | * returns 0. |
| 1962 | * |
Uwe Kleine-König | ba1835e | 2011-04-06 07:49:04 -0700 | [diff] [blame] | 1963 | * If you're not already dealing with a va_list consider using scnprintf(). |
Andi Kleen | 20036fd | 2008-10-15 22:02:02 -0700 | [diff] [blame] | 1964 | * |
| 1965 | * See the vsnprintf() documentation for format string extensions over C99. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1966 | */ |
| 1967 | int vscnprintf(char *buf, size_t size, const char *fmt, va_list args) |
| 1968 | { |
| 1969 | int i; |
| 1970 | |
André Goddard Rosa | 7b9186f | 2009-12-14 18:00:57 -0800 | [diff] [blame] | 1971 | i = vsnprintf(buf, size, fmt, args); |
| 1972 | |
Anton Arapov | b921c69 | 2011-01-12 16:59:49 -0800 | [diff] [blame] | 1973 | if (likely(i < size)) |
| 1974 | return i; |
| 1975 | if (size != 0) |
| 1976 | return size - 1; |
| 1977 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1978 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1979 | EXPORT_SYMBOL(vscnprintf); |
| 1980 | |
| 1981 | /** |
| 1982 | * snprintf - Format a string and place it in a buffer |
| 1983 | * @buf: The buffer to place the result into |
| 1984 | * @size: The size of the buffer, including the trailing null space |
| 1985 | * @fmt: The format string to use |
| 1986 | * @...: Arguments for the format string |
| 1987 | * |
| 1988 | * The return value is the number of characters which would be |
| 1989 | * generated for the given input, excluding the trailing null, |
| 1990 | * as per ISO C99. If the return is greater than or equal to |
| 1991 | * @size, the resulting string is truncated. |
Andi Kleen | 20036fd | 2008-10-15 22:02:02 -0700 | [diff] [blame] | 1992 | * |
| 1993 | * See the vsnprintf() documentation for format string extensions over C99. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1994 | */ |
André Goddard Rosa | 7b9186f | 2009-12-14 18:00:57 -0800 | [diff] [blame] | 1995 | int snprintf(char *buf, size_t size, const char *fmt, ...) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1996 | { |
| 1997 | va_list args; |
| 1998 | int i; |
| 1999 | |
| 2000 | va_start(args, fmt); |
André Goddard Rosa | 7b9186f | 2009-12-14 18:00:57 -0800 | [diff] [blame] | 2001 | i = vsnprintf(buf, size, fmt, args); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2002 | va_end(args); |
André Goddard Rosa | 7b9186f | 2009-12-14 18:00:57 -0800 | [diff] [blame] | 2003 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2004 | return i; |
| 2005 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2006 | EXPORT_SYMBOL(snprintf); |
| 2007 | |
| 2008 | /** |
| 2009 | * scnprintf - Format a string and place it in a buffer |
| 2010 | * @buf: The buffer to place the result into |
| 2011 | * @size: The size of the buffer, including the trailing null space |
| 2012 | * @fmt: The format string to use |
| 2013 | * @...: Arguments for the format string |
| 2014 | * |
| 2015 | * The return value is the number of characters written into @buf not including |
Changli Gao | b903c0b | 2010-10-26 14:22:50 -0700 | [diff] [blame] | 2016 | * the trailing '\0'. If @size is == 0 the function returns 0. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2017 | */ |
| 2018 | |
André Goddard Rosa | 7b9186f | 2009-12-14 18:00:57 -0800 | [diff] [blame] | 2019 | int scnprintf(char *buf, size_t size, const char *fmt, ...) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2020 | { |
| 2021 | va_list args; |
| 2022 | int i; |
| 2023 | |
| 2024 | va_start(args, fmt); |
Anton Arapov | b921c69 | 2011-01-12 16:59:49 -0800 | [diff] [blame] | 2025 | i = vscnprintf(buf, size, fmt, args); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2026 | va_end(args); |
André Goddard Rosa | 7b9186f | 2009-12-14 18:00:57 -0800 | [diff] [blame] | 2027 | |
Anton Arapov | b921c69 | 2011-01-12 16:59:49 -0800 | [diff] [blame] | 2028 | return i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2029 | } |
| 2030 | EXPORT_SYMBOL(scnprintf); |
| 2031 | |
| 2032 | /** |
| 2033 | * vsprintf - Format a string and place it in a buffer |
| 2034 | * @buf: The buffer to place the result into |
| 2035 | * @fmt: The format string to use |
| 2036 | * @args: Arguments for the format string |
| 2037 | * |
| 2038 | * The function returns the number of characters written |
Robert P. J. Day | 72fd4a3 | 2007-02-10 01:45:59 -0800 | [diff] [blame] | 2039 | * into @buf. Use vsnprintf() or vscnprintf() in order to avoid |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2040 | * buffer overflows. |
| 2041 | * |
Uwe Kleine-König | ba1835e | 2011-04-06 07:49:04 -0700 | [diff] [blame] | 2042 | * If you're not already dealing with a va_list consider using sprintf(). |
Andi Kleen | 20036fd | 2008-10-15 22:02:02 -0700 | [diff] [blame] | 2043 | * |
| 2044 | * See the vsnprintf() documentation for format string extensions over C99. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2045 | */ |
| 2046 | int vsprintf(char *buf, const char *fmt, va_list args) |
| 2047 | { |
| 2048 | return vsnprintf(buf, INT_MAX, fmt, args); |
| 2049 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2050 | EXPORT_SYMBOL(vsprintf); |
| 2051 | |
| 2052 | /** |
| 2053 | * sprintf - Format a string and place it in a buffer |
| 2054 | * @buf: The buffer to place the result into |
| 2055 | * @fmt: The format string to use |
| 2056 | * @...: Arguments for the format string |
| 2057 | * |
| 2058 | * The function returns the number of characters written |
Robert P. J. Day | 72fd4a3 | 2007-02-10 01:45:59 -0800 | [diff] [blame] | 2059 | * into @buf. Use snprintf() or scnprintf() in order to avoid |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2060 | * buffer overflows. |
Andi Kleen | 20036fd | 2008-10-15 22:02:02 -0700 | [diff] [blame] | 2061 | * |
| 2062 | * See the vsnprintf() documentation for format string extensions over C99. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2063 | */ |
André Goddard Rosa | 7b9186f | 2009-12-14 18:00:57 -0800 | [diff] [blame] | 2064 | int sprintf(char *buf, const char *fmt, ...) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2065 | { |
| 2066 | va_list args; |
| 2067 | int i; |
| 2068 | |
| 2069 | va_start(args, fmt); |
André Goddard Rosa | 7b9186f | 2009-12-14 18:00:57 -0800 | [diff] [blame] | 2070 | i = vsnprintf(buf, INT_MAX, fmt, args); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2071 | va_end(args); |
André Goddard Rosa | 7b9186f | 2009-12-14 18:00:57 -0800 | [diff] [blame] | 2072 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2073 | return i; |
| 2074 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2075 | EXPORT_SYMBOL(sprintf); |
| 2076 | |
Lai Jiangshan | 4370aa4 | 2009-03-06 17:21:46 +0100 | [diff] [blame] | 2077 | #ifdef CONFIG_BINARY_PRINTF |
| 2078 | /* |
| 2079 | * bprintf service: |
| 2080 | * vbin_printf() - VA arguments to binary data |
| 2081 | * bstr_printf() - Binary data to text string |
| 2082 | */ |
| 2083 | |
| 2084 | /** |
| 2085 | * vbin_printf - Parse a format string and place args' binary value in a buffer |
| 2086 | * @bin_buf: The buffer to place args' binary value |
| 2087 | * @size: The size of the buffer(by words(32bits), not characters) |
| 2088 | * @fmt: The format string to use |
| 2089 | * @args: Arguments for the format string |
| 2090 | * |
| 2091 | * The format follows C99 vsnprintf, except %n is ignored, and its argument |
Masanari Iida | da3dae5 | 2014-09-09 01:27:23 +0900 | [diff] [blame] | 2092 | * is skipped. |
Lai Jiangshan | 4370aa4 | 2009-03-06 17:21:46 +0100 | [diff] [blame] | 2093 | * |
| 2094 | * The return value is the number of words(32bits) which would be generated for |
| 2095 | * the given input. |
| 2096 | * |
| 2097 | * NOTE: |
| 2098 | * If the return value is greater than @size, the resulting bin_buf is NOT |
| 2099 | * valid for bstr_printf(). |
| 2100 | */ |
| 2101 | int vbin_printf(u32 *bin_buf, size_t size, const char *fmt, va_list args) |
| 2102 | { |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 2103 | struct printf_spec spec = {0}; |
Lai Jiangshan | 4370aa4 | 2009-03-06 17:21:46 +0100 | [diff] [blame] | 2104 | char *str, *end; |
Lai Jiangshan | 4370aa4 | 2009-03-06 17:21:46 +0100 | [diff] [blame] | 2105 | |
| 2106 | str = (char *)bin_buf; |
| 2107 | end = (char *)(bin_buf + size); |
| 2108 | |
| 2109 | #define save_arg(type) \ |
| 2110 | do { \ |
| 2111 | if (sizeof(type) == 8) { \ |
| 2112 | unsigned long long value; \ |
| 2113 | str = PTR_ALIGN(str, sizeof(u32)); \ |
| 2114 | value = va_arg(args, unsigned long long); \ |
| 2115 | if (str + sizeof(type) <= end) { \ |
| 2116 | *(u32 *)str = *(u32 *)&value; \ |
| 2117 | *(u32 *)(str + 4) = *((u32 *)&value + 1); \ |
| 2118 | } \ |
| 2119 | } else { \ |
| 2120 | unsigned long value; \ |
| 2121 | str = PTR_ALIGN(str, sizeof(type)); \ |
| 2122 | value = va_arg(args, int); \ |
| 2123 | if (str + sizeof(type) <= end) \ |
| 2124 | *(typeof(type) *)str = (type)value; \ |
| 2125 | } \ |
| 2126 | str += sizeof(type); \ |
| 2127 | } while (0) |
| 2128 | |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 2129 | while (*fmt) { |
André Goddard Rosa | d4be151 | 2009-12-14 18:00:59 -0800 | [diff] [blame] | 2130 | int read = format_decode(fmt, &spec); |
Lai Jiangshan | 4370aa4 | 2009-03-06 17:21:46 +0100 | [diff] [blame] | 2131 | |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 2132 | fmt += read; |
| 2133 | |
| 2134 | switch (spec.type) { |
| 2135 | case FORMAT_TYPE_NONE: |
André Goddard Rosa | d4be151 | 2009-12-14 18:00:59 -0800 | [diff] [blame] | 2136 | case FORMAT_TYPE_INVALID: |
| 2137 | case FORMAT_TYPE_PERCENT_CHAR: |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 2138 | break; |
| 2139 | |
Vegard Nossum | ed681a9 | 2009-03-14 12:08:50 +0100 | [diff] [blame] | 2140 | case FORMAT_TYPE_WIDTH: |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 2141 | case FORMAT_TYPE_PRECISION: |
Lai Jiangshan | 4370aa4 | 2009-03-06 17:21:46 +0100 | [diff] [blame] | 2142 | save_arg(int); |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 2143 | break; |
Lai Jiangshan | 4370aa4 | 2009-03-06 17:21:46 +0100 | [diff] [blame] | 2144 | |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 2145 | case FORMAT_TYPE_CHAR: |
Lai Jiangshan | 4370aa4 | 2009-03-06 17:21:46 +0100 | [diff] [blame] | 2146 | save_arg(char); |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 2147 | break; |
| 2148 | |
| 2149 | case FORMAT_TYPE_STR: { |
Lai Jiangshan | 4370aa4 | 2009-03-06 17:21:46 +0100 | [diff] [blame] | 2150 | const char *save_str = va_arg(args, char *); |
| 2151 | size_t len; |
André Goddard Rosa | 6c35663 | 2009-12-14 18:00:56 -0800 | [diff] [blame] | 2152 | |
Lai Jiangshan | 4370aa4 | 2009-03-06 17:21:46 +0100 | [diff] [blame] | 2153 | if ((unsigned long)save_str > (unsigned long)-PAGE_SIZE |
| 2154 | || (unsigned long)save_str < PAGE_SIZE) |
André Goddard Rosa | 0f4f81d | 2009-12-14 18:00:55 -0800 | [diff] [blame] | 2155 | save_str = "(null)"; |
André Goddard Rosa | 6c35663 | 2009-12-14 18:00:56 -0800 | [diff] [blame] | 2156 | len = strlen(save_str) + 1; |
| 2157 | if (str + len < end) |
| 2158 | memcpy(str, save_str, len); |
| 2159 | str += len; |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 2160 | break; |
Lai Jiangshan | 4370aa4 | 2009-03-06 17:21:46 +0100 | [diff] [blame] | 2161 | } |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 2162 | |
| 2163 | case FORMAT_TYPE_PTR: |
Lai Jiangshan | 4370aa4 | 2009-03-06 17:21:46 +0100 | [diff] [blame] | 2164 | save_arg(void *); |
| 2165 | /* skip all alphanumeric pointer suffixes */ |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 2166 | while (isalnum(*fmt)) |
Lai Jiangshan | 4370aa4 | 2009-03-06 17:21:46 +0100 | [diff] [blame] | 2167 | fmt++; |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 2168 | break; |
| 2169 | |
Lai Jiangshan | 4370aa4 | 2009-03-06 17:21:46 +0100 | [diff] [blame] | 2170 | default: |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 2171 | switch (spec.type) { |
| 2172 | |
| 2173 | case FORMAT_TYPE_LONG_LONG: |
| 2174 | save_arg(long long); |
| 2175 | break; |
| 2176 | case FORMAT_TYPE_ULONG: |
| 2177 | case FORMAT_TYPE_LONG: |
| 2178 | save_arg(unsigned long); |
| 2179 | break; |
| 2180 | case FORMAT_TYPE_SIZE_T: |
| 2181 | save_arg(size_t); |
| 2182 | break; |
| 2183 | case FORMAT_TYPE_PTRDIFF: |
| 2184 | save_arg(ptrdiff_t); |
| 2185 | break; |
Zhaolei | a4e94ef | 2009-03-27 17:07:05 +0800 | [diff] [blame] | 2186 | case FORMAT_TYPE_UBYTE: |
| 2187 | case FORMAT_TYPE_BYTE: |
| 2188 | save_arg(char); |
| 2189 | break; |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 2190 | case FORMAT_TYPE_USHORT: |
| 2191 | case FORMAT_TYPE_SHORT: |
| 2192 | save_arg(short); |
| 2193 | break; |
| 2194 | default: |
| 2195 | save_arg(int); |
| 2196 | } |
Lai Jiangshan | 4370aa4 | 2009-03-06 17:21:46 +0100 | [diff] [blame] | 2197 | } |
| 2198 | } |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 2199 | |
André Goddard Rosa | 7b9186f | 2009-12-14 18:00:57 -0800 | [diff] [blame] | 2200 | return (u32 *)(PTR_ALIGN(str, sizeof(u32))) - bin_buf; |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 2201 | #undef save_arg |
Lai Jiangshan | 4370aa4 | 2009-03-06 17:21:46 +0100 | [diff] [blame] | 2202 | } |
| 2203 | EXPORT_SYMBOL_GPL(vbin_printf); |
| 2204 | |
| 2205 | /** |
| 2206 | * bstr_printf - Format a string from binary arguments and place it in a buffer |
| 2207 | * @buf: The buffer to place the result into |
| 2208 | * @size: The size of the buffer, including the trailing null space |
| 2209 | * @fmt: The format string to use |
| 2210 | * @bin_buf: Binary arguments for the format string |
| 2211 | * |
| 2212 | * This function like C99 vsnprintf, but the difference is that vsnprintf gets |
| 2213 | * arguments from stack, and bstr_printf gets arguments from @bin_buf which is |
| 2214 | * a binary buffer that generated by vbin_printf. |
| 2215 | * |
| 2216 | * The format follows C99 vsnprintf, but has some extensions: |
Steven Rostedt | 0efb4d2 | 2009-09-17 09:27:29 -0400 | [diff] [blame] | 2217 | * see vsnprintf comment for details. |
Lai Jiangshan | 4370aa4 | 2009-03-06 17:21:46 +0100 | [diff] [blame] | 2218 | * |
| 2219 | * The return value is the number of characters which would |
| 2220 | * be generated for the given input, excluding the trailing |
| 2221 | * '\0', as per ISO C99. If you want to have the exact |
| 2222 | * number of characters written into @buf as return value |
| 2223 | * (not including the trailing '\0'), use vscnprintf(). If the |
| 2224 | * return is greater than or equal to @size, the resulting |
| 2225 | * string is truncated. |
| 2226 | */ |
| 2227 | int bstr_printf(char *buf, size_t size, const char *fmt, const u32 *bin_buf) |
| 2228 | { |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 2229 | struct printf_spec spec = {0}; |
André Goddard Rosa | d4be151 | 2009-12-14 18:00:59 -0800 | [diff] [blame] | 2230 | char *str, *end; |
| 2231 | const char *args = (const char *)bin_buf; |
Lai Jiangshan | 4370aa4 | 2009-03-06 17:21:46 +0100 | [diff] [blame] | 2232 | |
Marcin Slusarz | 2f30b1f9 | 2009-09-21 17:04:29 -0700 | [diff] [blame] | 2233 | if (WARN_ON_ONCE((int) size < 0)) |
Lai Jiangshan | 4370aa4 | 2009-03-06 17:21:46 +0100 | [diff] [blame] | 2234 | return 0; |
Lai Jiangshan | 4370aa4 | 2009-03-06 17:21:46 +0100 | [diff] [blame] | 2235 | |
| 2236 | str = buf; |
| 2237 | end = buf + size; |
| 2238 | |
| 2239 | #define get_arg(type) \ |
| 2240 | ({ \ |
| 2241 | typeof(type) value; \ |
| 2242 | if (sizeof(type) == 8) { \ |
| 2243 | args = PTR_ALIGN(args, sizeof(u32)); \ |
| 2244 | *(u32 *)&value = *(u32 *)args; \ |
| 2245 | *((u32 *)&value + 1) = *(u32 *)(args + 4); \ |
| 2246 | } else { \ |
| 2247 | args = PTR_ALIGN(args, sizeof(type)); \ |
| 2248 | value = *(typeof(type) *)args; \ |
| 2249 | } \ |
| 2250 | args += sizeof(type); \ |
| 2251 | value; \ |
| 2252 | }) |
| 2253 | |
| 2254 | /* Make sure end is always >= buf */ |
| 2255 | if (end < buf) { |
| 2256 | end = ((void *)-1); |
| 2257 | size = end - buf; |
| 2258 | } |
| 2259 | |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 2260 | while (*fmt) { |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 2261 | const char *old_fmt = fmt; |
André Goddard Rosa | d4be151 | 2009-12-14 18:00:59 -0800 | [diff] [blame] | 2262 | int read = format_decode(fmt, &spec); |
Lai Jiangshan | 4370aa4 | 2009-03-06 17:21:46 +0100 | [diff] [blame] | 2263 | |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 2264 | fmt += read; |
| 2265 | |
| 2266 | switch (spec.type) { |
| 2267 | case FORMAT_TYPE_NONE: { |
| 2268 | int copy = read; |
| 2269 | if (str < end) { |
| 2270 | if (copy > end - str) |
| 2271 | copy = end - str; |
| 2272 | memcpy(str, old_fmt, copy); |
Lai Jiangshan | 4370aa4 | 2009-03-06 17:21:46 +0100 | [diff] [blame] | 2273 | } |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 2274 | str += read; |
| 2275 | break; |
Lai Jiangshan | 4370aa4 | 2009-03-06 17:21:46 +0100 | [diff] [blame] | 2276 | } |
| 2277 | |
Vegard Nossum | ed681a9 | 2009-03-14 12:08:50 +0100 | [diff] [blame] | 2278 | case FORMAT_TYPE_WIDTH: |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 2279 | spec.field_width = get_arg(int); |
| 2280 | break; |
Lai Jiangshan | 4370aa4 | 2009-03-06 17:21:46 +0100 | [diff] [blame] | 2281 | |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 2282 | case FORMAT_TYPE_PRECISION: |
| 2283 | spec.precision = get_arg(int); |
| 2284 | break; |
Lai Jiangshan | 4370aa4 | 2009-03-06 17:21:46 +0100 | [diff] [blame] | 2285 | |
André Goddard Rosa | d4be151 | 2009-12-14 18:00:59 -0800 | [diff] [blame] | 2286 | case FORMAT_TYPE_CHAR: { |
| 2287 | char c; |
| 2288 | |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 2289 | if (!(spec.flags & LEFT)) { |
| 2290 | while (--spec.field_width > 0) { |
Lai Jiangshan | 4370aa4 | 2009-03-06 17:21:46 +0100 | [diff] [blame] | 2291 | if (str < end) |
| 2292 | *str = ' '; |
| 2293 | ++str; |
| 2294 | } |
| 2295 | } |
| 2296 | c = (unsigned char) get_arg(char); |
| 2297 | if (str < end) |
| 2298 | *str = c; |
| 2299 | ++str; |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 2300 | while (--spec.field_width > 0) { |
Lai Jiangshan | 4370aa4 | 2009-03-06 17:21:46 +0100 | [diff] [blame] | 2301 | if (str < end) |
| 2302 | *str = ' '; |
| 2303 | ++str; |
| 2304 | } |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 2305 | break; |
André Goddard Rosa | d4be151 | 2009-12-14 18:00:59 -0800 | [diff] [blame] | 2306 | } |
Lai Jiangshan | 4370aa4 | 2009-03-06 17:21:46 +0100 | [diff] [blame] | 2307 | |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 2308 | case FORMAT_TYPE_STR: { |
Lai Jiangshan | 4370aa4 | 2009-03-06 17:21:46 +0100 | [diff] [blame] | 2309 | const char *str_arg = args; |
André Goddard Rosa | d4be151 | 2009-12-14 18:00:59 -0800 | [diff] [blame] | 2310 | args += strlen(str_arg) + 1; |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 2311 | str = string(str, end, (char *)str_arg, spec); |
| 2312 | break; |
Lai Jiangshan | 4370aa4 | 2009-03-06 17:21:46 +0100 | [diff] [blame] | 2313 | } |
| 2314 | |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 2315 | case FORMAT_TYPE_PTR: |
Rasmus Villemoes | ffbfed0 | 2015-02-12 15:01:37 -0800 | [diff] [blame] | 2316 | str = pointer(fmt, str, end, get_arg(void *), spec); |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 2317 | while (isalnum(*fmt)) |
Lai Jiangshan | 4370aa4 | 2009-03-06 17:21:46 +0100 | [diff] [blame] | 2318 | fmt++; |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 2319 | break; |
Lai Jiangshan | 4370aa4 | 2009-03-06 17:21:46 +0100 | [diff] [blame] | 2320 | |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 2321 | case FORMAT_TYPE_PERCENT_CHAR: |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 2322 | case FORMAT_TYPE_INVALID: |
Lai Jiangshan | 4370aa4 | 2009-03-06 17:21:46 +0100 | [diff] [blame] | 2323 | if (str < end) |
| 2324 | *str = '%'; |
| 2325 | ++str; |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 2326 | break; |
| 2327 | |
André Goddard Rosa | d4be151 | 2009-12-14 18:00:59 -0800 | [diff] [blame] | 2328 | default: { |
| 2329 | unsigned long long num; |
| 2330 | |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 2331 | switch (spec.type) { |
| 2332 | |
| 2333 | case FORMAT_TYPE_LONG_LONG: |
| 2334 | num = get_arg(long long); |
| 2335 | break; |
| 2336 | case FORMAT_TYPE_ULONG: |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 2337 | case FORMAT_TYPE_LONG: |
| 2338 | num = get_arg(unsigned long); |
| 2339 | break; |
| 2340 | case FORMAT_TYPE_SIZE_T: |
| 2341 | num = get_arg(size_t); |
| 2342 | break; |
| 2343 | case FORMAT_TYPE_PTRDIFF: |
| 2344 | num = get_arg(ptrdiff_t); |
| 2345 | break; |
Zhaolei | a4e94ef | 2009-03-27 17:07:05 +0800 | [diff] [blame] | 2346 | case FORMAT_TYPE_UBYTE: |
| 2347 | num = get_arg(unsigned char); |
| 2348 | break; |
| 2349 | case FORMAT_TYPE_BYTE: |
| 2350 | num = get_arg(signed char); |
| 2351 | break; |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 2352 | case FORMAT_TYPE_USHORT: |
| 2353 | num = get_arg(unsigned short); |
| 2354 | break; |
| 2355 | case FORMAT_TYPE_SHORT: |
| 2356 | num = get_arg(short); |
| 2357 | break; |
| 2358 | case FORMAT_TYPE_UINT: |
| 2359 | num = get_arg(unsigned int); |
| 2360 | break; |
| 2361 | default: |
| 2362 | num = get_arg(int); |
| 2363 | } |
| 2364 | |
| 2365 | str = number(str, end, num, spec); |
André Goddard Rosa | d4be151 | 2009-12-14 18:00:59 -0800 | [diff] [blame] | 2366 | } /* default: */ |
| 2367 | } /* switch(spec.type) */ |
| 2368 | } /* while(*fmt) */ |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 2369 | |
Lai Jiangshan | 4370aa4 | 2009-03-06 17:21:46 +0100 | [diff] [blame] | 2370 | if (size > 0) { |
| 2371 | if (str < end) |
| 2372 | *str = '\0'; |
| 2373 | else |
| 2374 | end[-1] = '\0'; |
| 2375 | } |
Frederic Weisbecker | fef20d9 | 2009-03-06 17:21:50 +0100 | [diff] [blame] | 2376 | |
Lai Jiangshan | 4370aa4 | 2009-03-06 17:21:46 +0100 | [diff] [blame] | 2377 | #undef get_arg |
| 2378 | |
| 2379 | /* the trailing null byte doesn't count towards the total */ |
| 2380 | return str - buf; |
| 2381 | } |
| 2382 | EXPORT_SYMBOL_GPL(bstr_printf); |
| 2383 | |
| 2384 | /** |
| 2385 | * bprintf - Parse a format string and place args' binary value in a buffer |
| 2386 | * @bin_buf: The buffer to place args' binary value |
| 2387 | * @size: The size of the buffer(by words(32bits), not characters) |
| 2388 | * @fmt: The format string to use |
| 2389 | * @...: Arguments for the format string |
| 2390 | * |
| 2391 | * The function returns the number of words(u32) written |
| 2392 | * into @bin_buf. |
| 2393 | */ |
| 2394 | int bprintf(u32 *bin_buf, size_t size, const char *fmt, ...) |
| 2395 | { |
| 2396 | va_list args; |
| 2397 | int ret; |
| 2398 | |
| 2399 | va_start(args, fmt); |
| 2400 | ret = vbin_printf(bin_buf, size, fmt, args); |
| 2401 | va_end(args); |
André Goddard Rosa | 7b9186f | 2009-12-14 18:00:57 -0800 | [diff] [blame] | 2402 | |
Lai Jiangshan | 4370aa4 | 2009-03-06 17:21:46 +0100 | [diff] [blame] | 2403 | return ret; |
| 2404 | } |
| 2405 | EXPORT_SYMBOL_GPL(bprintf); |
| 2406 | |
| 2407 | #endif /* CONFIG_BINARY_PRINTF */ |
| 2408 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2409 | /** |
| 2410 | * vsscanf - Unformat a buffer into a list of arguments |
| 2411 | * @buf: input buffer |
| 2412 | * @fmt: format of buffer |
| 2413 | * @args: arguments |
| 2414 | */ |
André Goddard Rosa | 7b9186f | 2009-12-14 18:00:57 -0800 | [diff] [blame] | 2415 | int vsscanf(const char *buf, const char *fmt, va_list args) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2416 | { |
| 2417 | const char *str = buf; |
| 2418 | char *next; |
| 2419 | char digit; |
| 2420 | int num = 0; |
Joe Perches | ef0658f | 2010-03-06 17:10:14 -0800 | [diff] [blame] | 2421 | u8 qualifier; |
Jan Beulich | 5380975 | 2012-12-17 16:01:31 -0800 | [diff] [blame] | 2422 | unsigned int base; |
| 2423 | union { |
| 2424 | long long s; |
| 2425 | unsigned long long u; |
| 2426 | } val; |
Joe Perches | ef0658f | 2010-03-06 17:10:14 -0800 | [diff] [blame] | 2427 | s16 field_width; |
André Goddard Rosa | d4be151 | 2009-12-14 18:00:59 -0800 | [diff] [blame] | 2428 | bool is_sign; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2429 | |
Jan Beulich | da99075 | 2012-10-04 17:13:24 -0700 | [diff] [blame] | 2430 | while (*fmt) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2431 | /* skip any white space in format */ |
| 2432 | /* white space in format matchs any amount of |
| 2433 | * white space, including none, in the input. |
| 2434 | */ |
| 2435 | if (isspace(*fmt)) { |
André Goddard Rosa | e7d2860 | 2009-12-14 18:01:06 -0800 | [diff] [blame] | 2436 | fmt = skip_spaces(++fmt); |
| 2437 | str = skip_spaces(str); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2438 | } |
| 2439 | |
| 2440 | /* anything that is not a conversion must match exactly */ |
| 2441 | if (*fmt != '%' && *fmt) { |
| 2442 | if (*fmt++ != *str++) |
| 2443 | break; |
| 2444 | continue; |
| 2445 | } |
| 2446 | |
| 2447 | if (!*fmt) |
| 2448 | break; |
| 2449 | ++fmt; |
André Goddard Rosa | 7b9186f | 2009-12-14 18:00:57 -0800 | [diff] [blame] | 2450 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2451 | /* skip this conversion. |
| 2452 | * advance both strings to next white space |
| 2453 | */ |
| 2454 | if (*fmt == '*') { |
Jan Beulich | da99075 | 2012-10-04 17:13:24 -0700 | [diff] [blame] | 2455 | if (!*str) |
| 2456 | break; |
Andy Spencer | 8fccae2 | 2009-10-01 15:44:27 -0700 | [diff] [blame] | 2457 | while (!isspace(*fmt) && *fmt != '%' && *fmt) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2458 | fmt++; |
| 2459 | while (!isspace(*str) && *str) |
| 2460 | str++; |
| 2461 | continue; |
| 2462 | } |
| 2463 | |
| 2464 | /* get field width */ |
| 2465 | field_width = -1; |
Jan Beulich | 5380975 | 2012-12-17 16:01:31 -0800 | [diff] [blame] | 2466 | if (isdigit(*fmt)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2467 | field_width = skip_atoi(&fmt); |
Jan Beulich | 5380975 | 2012-12-17 16:01:31 -0800 | [diff] [blame] | 2468 | if (field_width <= 0) |
| 2469 | break; |
| 2470 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2471 | |
| 2472 | /* get conversion qualifier */ |
| 2473 | qualifier = -1; |
Andy Shevchenko | 75fb8f2 | 2011-07-25 17:13:20 -0700 | [diff] [blame] | 2474 | if (*fmt == 'h' || _tolower(*fmt) == 'l' || |
| 2475 | _tolower(*fmt) == 'z') { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2476 | qualifier = *fmt++; |
| 2477 | if (unlikely(qualifier == *fmt)) { |
| 2478 | if (qualifier == 'h') { |
| 2479 | qualifier = 'H'; |
| 2480 | fmt++; |
| 2481 | } else if (qualifier == 'l') { |
| 2482 | qualifier = 'L'; |
| 2483 | fmt++; |
| 2484 | } |
| 2485 | } |
| 2486 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2487 | |
Jan Beulich | da99075 | 2012-10-04 17:13:24 -0700 | [diff] [blame] | 2488 | if (!*fmt) |
| 2489 | break; |
| 2490 | |
| 2491 | if (*fmt == 'n') { |
| 2492 | /* return number of characters read so far */ |
| 2493 | *va_arg(args, int *) = str - buf; |
| 2494 | ++fmt; |
| 2495 | continue; |
| 2496 | } |
| 2497 | |
| 2498 | if (!*str) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2499 | break; |
| 2500 | |
André Goddard Rosa | d4be151 | 2009-12-14 18:00:59 -0800 | [diff] [blame] | 2501 | base = 10; |
Fabian Frederick | 3f623eb | 2014-06-04 16:11:52 -0700 | [diff] [blame] | 2502 | is_sign = false; |
André Goddard Rosa | d4be151 | 2009-12-14 18:00:59 -0800 | [diff] [blame] | 2503 | |
André Goddard Rosa | 7b9186f | 2009-12-14 18:00:57 -0800 | [diff] [blame] | 2504 | switch (*fmt++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2505 | case 'c': |
| 2506 | { |
André Goddard Rosa | 7b9186f | 2009-12-14 18:00:57 -0800 | [diff] [blame] | 2507 | char *s = (char *)va_arg(args, char*); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2508 | if (field_width == -1) |
| 2509 | field_width = 1; |
| 2510 | do { |
| 2511 | *s++ = *str++; |
| 2512 | } while (--field_width > 0 && *str); |
| 2513 | num++; |
| 2514 | } |
| 2515 | continue; |
| 2516 | case 's': |
| 2517 | { |
André Goddard Rosa | 7b9186f | 2009-12-14 18:00:57 -0800 | [diff] [blame] | 2518 | char *s = (char *)va_arg(args, char *); |
| 2519 | if (field_width == -1) |
Alexey Dobriyan | 4be929b | 2010-05-24 14:33:03 -0700 | [diff] [blame] | 2520 | field_width = SHRT_MAX; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2521 | /* first, skip leading white space in buffer */ |
André Goddard Rosa | e7d2860 | 2009-12-14 18:01:06 -0800 | [diff] [blame] | 2522 | str = skip_spaces(str); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2523 | |
| 2524 | /* now copy until next white space */ |
André Goddard Rosa | 7b9186f | 2009-12-14 18:00:57 -0800 | [diff] [blame] | 2525 | while (*str && !isspace(*str) && field_width--) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2526 | *s++ = *str++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2527 | *s = '\0'; |
| 2528 | num++; |
| 2529 | } |
| 2530 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2531 | case 'o': |
| 2532 | base = 8; |
| 2533 | break; |
| 2534 | case 'x': |
| 2535 | case 'X': |
| 2536 | base = 16; |
| 2537 | break; |
| 2538 | case 'i': |
André Goddard Rosa | 7b9186f | 2009-12-14 18:00:57 -0800 | [diff] [blame] | 2539 | base = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2540 | case 'd': |
Fabian Frederick | 3f623eb | 2014-06-04 16:11:52 -0700 | [diff] [blame] | 2541 | is_sign = true; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2542 | case 'u': |
| 2543 | break; |
| 2544 | case '%': |
| 2545 | /* looking for '%' in str */ |
André Goddard Rosa | 7b9186f | 2009-12-14 18:00:57 -0800 | [diff] [blame] | 2546 | if (*str++ != '%') |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2547 | return num; |
| 2548 | continue; |
| 2549 | default: |
| 2550 | /* invalid format; stop here */ |
| 2551 | return num; |
| 2552 | } |
| 2553 | |
| 2554 | /* have some sort of integer conversion. |
| 2555 | * first, skip white space in buffer. |
| 2556 | */ |
André Goddard Rosa | e7d2860 | 2009-12-14 18:01:06 -0800 | [diff] [blame] | 2557 | str = skip_spaces(str); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2558 | |
| 2559 | digit = *str; |
| 2560 | if (is_sign && digit == '-') |
| 2561 | digit = *(str + 1); |
| 2562 | |
| 2563 | if (!digit |
André Goddard Rosa | 7b9186f | 2009-12-14 18:00:57 -0800 | [diff] [blame] | 2564 | || (base == 16 && !isxdigit(digit)) |
| 2565 | || (base == 10 && !isdigit(digit)) |
| 2566 | || (base == 8 && (!isdigit(digit) || digit > '7')) |
| 2567 | || (base == 0 && !isdigit(digit))) |
| 2568 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2569 | |
Jan Beulich | 5380975 | 2012-12-17 16:01:31 -0800 | [diff] [blame] | 2570 | if (is_sign) |
| 2571 | val.s = qualifier != 'L' ? |
| 2572 | simple_strtol(str, &next, base) : |
| 2573 | simple_strtoll(str, &next, base); |
| 2574 | else |
| 2575 | val.u = qualifier != 'L' ? |
| 2576 | simple_strtoul(str, &next, base) : |
| 2577 | simple_strtoull(str, &next, base); |
| 2578 | |
| 2579 | if (field_width > 0 && next - str > field_width) { |
| 2580 | if (base == 0) |
| 2581 | _parse_integer_fixup_radix(str, &base); |
| 2582 | while (next - str > field_width) { |
| 2583 | if (is_sign) |
| 2584 | val.s = div_s64(val.s, base); |
| 2585 | else |
| 2586 | val.u = div_u64(val.u, base); |
| 2587 | --next; |
| 2588 | } |
| 2589 | } |
| 2590 | |
André Goddard Rosa | 7b9186f | 2009-12-14 18:00:57 -0800 | [diff] [blame] | 2591 | switch (qualifier) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2592 | case 'H': /* that's 'hh' in format */ |
Jan Beulich | 5380975 | 2012-12-17 16:01:31 -0800 | [diff] [blame] | 2593 | if (is_sign) |
| 2594 | *va_arg(args, signed char *) = val.s; |
| 2595 | else |
| 2596 | *va_arg(args, unsigned char *) = val.u; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2597 | break; |
| 2598 | case 'h': |
Jan Beulich | 5380975 | 2012-12-17 16:01:31 -0800 | [diff] [blame] | 2599 | if (is_sign) |
| 2600 | *va_arg(args, short *) = val.s; |
| 2601 | else |
| 2602 | *va_arg(args, unsigned short *) = val.u; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2603 | break; |
| 2604 | case 'l': |
Jan Beulich | 5380975 | 2012-12-17 16:01:31 -0800 | [diff] [blame] | 2605 | if (is_sign) |
| 2606 | *va_arg(args, long *) = val.s; |
| 2607 | else |
| 2608 | *va_arg(args, unsigned long *) = val.u; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2609 | break; |
| 2610 | case 'L': |
Jan Beulich | 5380975 | 2012-12-17 16:01:31 -0800 | [diff] [blame] | 2611 | if (is_sign) |
| 2612 | *va_arg(args, long long *) = val.s; |
| 2613 | else |
| 2614 | *va_arg(args, unsigned long long *) = val.u; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2615 | break; |
| 2616 | case 'Z': |
| 2617 | case 'z': |
Jan Beulich | 5380975 | 2012-12-17 16:01:31 -0800 | [diff] [blame] | 2618 | *va_arg(args, size_t *) = val.u; |
| 2619 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2620 | default: |
Jan Beulich | 5380975 | 2012-12-17 16:01:31 -0800 | [diff] [blame] | 2621 | if (is_sign) |
| 2622 | *va_arg(args, int *) = val.s; |
| 2623 | else |
| 2624 | *va_arg(args, unsigned int *) = val.u; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2625 | break; |
| 2626 | } |
| 2627 | num++; |
| 2628 | |
| 2629 | if (!next) |
| 2630 | break; |
| 2631 | str = next; |
| 2632 | } |
Johannes Berg | c6b40d1 | 2007-05-08 00:27:20 -0700 | [diff] [blame] | 2633 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2634 | return num; |
| 2635 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2636 | EXPORT_SYMBOL(vsscanf); |
| 2637 | |
| 2638 | /** |
| 2639 | * sscanf - Unformat a buffer into a list of arguments |
| 2640 | * @buf: input buffer |
| 2641 | * @fmt: formatting of buffer |
| 2642 | * @...: resulting arguments |
| 2643 | */ |
André Goddard Rosa | 7b9186f | 2009-12-14 18:00:57 -0800 | [diff] [blame] | 2644 | int sscanf(const char *buf, const char *fmt, ...) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2645 | { |
| 2646 | va_list args; |
| 2647 | int i; |
| 2648 | |
André Goddard Rosa | 7b9186f | 2009-12-14 18:00:57 -0800 | [diff] [blame] | 2649 | va_start(args, fmt); |
| 2650 | i = vsscanf(buf, fmt, args); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2651 | va_end(args); |
André Goddard Rosa | 7b9186f | 2009-12-14 18:00:57 -0800 | [diff] [blame] | 2652 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2653 | return i; |
| 2654 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2655 | EXPORT_SYMBOL(sscanf); |