blob: dc48d2b32ebdc5da654fc6729cd9f7059f403563 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 Rosa7b9186f2009-12-14 18:00:57 -080012/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 * Fri Jul 13 2001 Crutcher Dunnavant <crutcher+kernel@datastacks.com>
14 * - changed to provide snprintf and vsnprintf functions
15 * So Feb 1 16:51:32 CET 2004 Juergen Quade <quade@hsnr.de>
16 * - scnprintf and vscnprintf
17 */
18
19#include <stdarg.h>
20#include <linux/module.h>
21#include <linux/types.h>
22#include <linux/string.h>
23#include <linux/ctype.h>
24#include <linux/kernel.h>
Linus Torvalds0fe1ef22008-07-06 16:43:12 -070025#include <linux/kallsyms.h>
26#include <linux/uaccess.h>
Linus Torvalds332d2e72008-10-20 15:07:34 +110027#include <linux/ioport.h>
Joe Perchesbc7259a2010-01-07 11:43:50 +000028#include <linux/bitrev.h>
Joe Perches8a27f7c2009-08-17 12:29:44 +000029#include <net/addrconf.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
Tim Schmielau4e57b682005-10-30 15:03:48 -080031#include <asm/page.h> /* for PAGE_SIZE */
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <asm/div64.h>
James Bottomleydeac93d2008-09-03 20:43:36 -050033#include <asm/sections.h> /* for dereference_function_descriptor() */
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
Denys Vlasenko9b706ae2008-02-09 23:24:09 +010035/* Works only for digits and letters, but small and fast */
36#define TOLOWER(x) ((x) | 0x20)
37
Harvey Harrisonaa46a632008-10-16 13:40:34 -070038static unsigned int simple_guess_base(const char *cp)
39{
40 if (cp[0] == '0') {
41 if (TOLOWER(cp[1]) == 'x' && isxdigit(cp[2]))
42 return 16;
43 else
44 return 8;
45 } else {
46 return 10;
47 }
48}
49
Linus Torvalds1da177e2005-04-16 15:20:36 -070050/**
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 * simple_strtoull - convert a string to an unsigned long long
52 * @cp: The start of the string
53 * @endp: A pointer to the end of the parsed string will be placed here
54 * @base: The number base to use
55 */
Harvey Harrison22d27052008-10-16 13:40:35 -070056unsigned long long simple_strtoull(const char *cp, char **endp, unsigned int base)
Linus Torvalds1da177e2005-04-16 15:20:36 -070057{
Harvey Harrisonaa46a632008-10-16 13:40:34 -070058 unsigned long long result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
Harvey Harrisonaa46a632008-10-16 13:40:34 -070060 if (!base)
61 base = simple_guess_base(cp);
62
63 if (base == 16 && cp[0] == '0' && TOLOWER(cp[1]) == 'x')
64 cp += 2;
65
66 while (isxdigit(*cp)) {
67 unsigned int value;
68
69 value = isdigit(*cp) ? *cp - '0' : TOLOWER(*cp) - 'a' + 10;
70 if (value >= base)
71 break;
72 result = result * base + value;
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 cp++;
74 }
75 if (endp)
76 *endp = (char *)cp;
André Goddard Rosa7b9186f2009-12-14 18:00:57 -080077
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 return result;
79}
Linus Torvalds1da177e2005-04-16 15:20:36 -070080EXPORT_SYMBOL(simple_strtoull);
81
82/**
André Goddard Rosa922ac252009-12-14 18:01:01 -080083 * simple_strtoul - convert a string to an unsigned long
84 * @cp: The start of the string
85 * @endp: A pointer to the end of the parsed string will be placed here
86 * @base: The number base to use
87 */
88unsigned long simple_strtoul(const char *cp, char **endp, unsigned int base)
89{
90 return simple_strtoull(cp, endp, base);
91}
92EXPORT_SYMBOL(simple_strtoul);
93
94/**
95 * simple_strtol - convert a string to a signed long
96 * @cp: The start of the string
97 * @endp: A pointer to the end of the parsed string will be placed here
98 * @base: The number base to use
99 */
100long simple_strtol(const char *cp, char **endp, unsigned int base)
101{
102 if (*cp == '-')
103 return -simple_strtoul(cp + 1, endp, base);
104
105 return simple_strtoul(cp, endp, base);
106}
107EXPORT_SYMBOL(simple_strtol);
108
109/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 * simple_strtoll - convert a string to a signed long long
111 * @cp: The start of the string
112 * @endp: A pointer to the end of the parsed string will be placed here
113 * @base: The number base to use
114 */
Harvey Harrison22d27052008-10-16 13:40:35 -0700115long long simple_strtoll(const char *cp, char **endp, unsigned int base)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116{
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800117 if (*cp == '-')
Harvey Harrison22d27052008-10-16 13:40:35 -0700118 return -simple_strtoull(cp + 1, endp, base);
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800119
Harvey Harrison22d27052008-10-16 13:40:35 -0700120 return simple_strtoull(cp, endp, base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121}
122
Yi Yang06b2a762008-02-08 04:21:57 -0800123/**
124 * strict_strtoul - convert a string to an unsigned long strictly
125 * @cp: The string to be converted
126 * @base: The number base to use
127 * @res: The converted result value
128 *
129 * strict_strtoul converts a string to an unsigned long only if the
130 * string is really an unsigned long string, any string containing
131 * any invalid char at the tail will be rejected and -EINVAL is returned,
132 * only a newline char at the tail is acceptible because people generally
133 * change a module parameter in the following way:
134 *
135 * echo 1024 > /sys/module/e1000/parameters/copybreak
136 *
137 * echo will append a newline to the tail.
138 *
139 * It returns 0 if conversion is successful and *res is set to the converted
140 * value, otherwise it returns -EINVAL and *res is set to 0.
141 *
142 * simple_strtoul just ignores the successive invalid characters and
143 * return the converted value of prefix part of the string.
144 */
Harvey Harrison9d85db22008-10-16 13:40:35 -0700145int strict_strtoul(const char *cp, unsigned int base, unsigned long *res)
146{
147 char *tail;
148 unsigned long val;
149 size_t len;
150
151 *res = 0;
152 len = strlen(cp);
153 if (len == 0)
154 return -EINVAL;
155
156 val = simple_strtoul(cp, &tail, base);
Pavel Macheke899aa82009-01-06 14:40:53 -0800157 if (tail == cp)
158 return -EINVAL;
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800159
Harvey Harrison9d85db22008-10-16 13:40:35 -0700160 if ((*tail == '\0') ||
161 ((len == (size_t)(tail - cp) + 1) && (*tail == '\n'))) {
162 *res = val;
163 return 0;
164 }
165
166 return -EINVAL;
167}
168EXPORT_SYMBOL(strict_strtoul);
Yi Yang06b2a762008-02-08 04:21:57 -0800169
170/**
171 * strict_strtol - convert a string to a long strictly
172 * @cp: The string to be converted
173 * @base: The number base to use
174 * @res: The converted result value
175 *
176 * strict_strtol is similiar to strict_strtoul, but it allows the first
177 * character of a string is '-'.
178 *
179 * It returns 0 if conversion is successful and *res is set to the converted
180 * value, otherwise it returns -EINVAL and *res is set to 0.
181 */
Harvey Harrison9d85db22008-10-16 13:40:35 -0700182int strict_strtol(const char *cp, unsigned int base, long *res)
183{
184 int ret;
185 if (*cp == '-') {
186 ret = strict_strtoul(cp + 1, base, (unsigned long *)res);
187 if (!ret)
188 *res = -(*res);
189 } else {
190 ret = strict_strtoul(cp, base, (unsigned long *)res);
191 }
192
193 return ret;
194}
195EXPORT_SYMBOL(strict_strtol);
Yi Yang06b2a762008-02-08 04:21:57 -0800196
197/**
198 * strict_strtoull - convert a string to an unsigned long long strictly
199 * @cp: The string to be converted
200 * @base: The number base to use
201 * @res: The converted result value
202 *
203 * strict_strtoull converts a string to an unsigned long long only if the
204 * string is really an unsigned long long string, any string containing
205 * any invalid char at the tail will be rejected and -EINVAL is returned,
206 * only a newline char at the tail is acceptible because people generally
207 * change a module parameter in the following way:
208 *
209 * echo 1024 > /sys/module/e1000/parameters/copybreak
210 *
211 * echo will append a newline to the tail of the string.
212 *
213 * It returns 0 if conversion is successful and *res is set to the converted
214 * value, otherwise it returns -EINVAL and *res is set to 0.
215 *
216 * simple_strtoull just ignores the successive invalid characters and
217 * return the converted value of prefix part of the string.
218 */
Harvey Harrison9d85db22008-10-16 13:40:35 -0700219int strict_strtoull(const char *cp, unsigned int base, unsigned long long *res)
220{
221 char *tail;
222 unsigned long long val;
223 size_t len;
224
225 *res = 0;
226 len = strlen(cp);
227 if (len == 0)
228 return -EINVAL;
229
230 val = simple_strtoull(cp, &tail, base);
Pavel Macheke899aa82009-01-06 14:40:53 -0800231 if (tail == cp)
232 return -EINVAL;
Harvey Harrison9d85db22008-10-16 13:40:35 -0700233 if ((*tail == '\0') ||
234 ((len == (size_t)(tail - cp) + 1) && (*tail == '\n'))) {
235 *res = val;
236 return 0;
237 }
238
239 return -EINVAL;
240}
241EXPORT_SYMBOL(strict_strtoull);
Yi Yang06b2a762008-02-08 04:21:57 -0800242
243/**
244 * strict_strtoll - convert a string to a long long strictly
245 * @cp: The string to be converted
246 * @base: The number base to use
247 * @res: The converted result value
248 *
249 * strict_strtoll is similiar to strict_strtoull, but it allows the first
250 * character of a string is '-'.
251 *
252 * It returns 0 if conversion is successful and *res is set to the converted
253 * value, otherwise it returns -EINVAL and *res is set to 0.
254 */
Harvey Harrison9d85db22008-10-16 13:40:35 -0700255int strict_strtoll(const char *cp, unsigned int base, long long *res)
256{
257 int ret;
258 if (*cp == '-') {
259 ret = strict_strtoull(cp + 1, base, (unsigned long long *)res);
260 if (!ret)
261 *res = -(*res);
262 } else {
263 ret = strict_strtoull(cp, base, (unsigned long long *)res);
264 }
Yi Yang06b2a762008-02-08 04:21:57 -0800265
Harvey Harrison9d85db22008-10-16 13:40:35 -0700266 return ret;
267}
Yi Yang06b2a762008-02-08 04:21:57 -0800268EXPORT_SYMBOL(strict_strtoll);
Yi Yang06b2a762008-02-08 04:21:57 -0800269
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270static int skip_atoi(const char **s)
271{
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800272 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273
274 while (isdigit(**s))
275 i = i*10 + *((*s)++) - '0';
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800276
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 return i;
278}
279
Denis Vlasenko4277eed2007-07-15 23:41:56 -0700280/* Decimal conversion is by far the most typical, and is used
281 * for /proc and /sys data. This directly impacts e.g. top performance
282 * with many processes running. We optimize it for speed
283 * using code from
284 * http://www.cs.uiowa.edu/~jones/bcd/decimal.html
285 * (with permission from the author, Douglas W. Jones). */
286
287/* Formats correctly any integer in [0,99999].
288 * Outputs from one to five digits depending on input.
289 * On i386 gcc 4.1.2 -O2: ~250 bytes of code. */
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800290static char *put_dec_trunc(char *buf, unsigned q)
Denis Vlasenko4277eed2007-07-15 23:41:56 -0700291{
292 unsigned d3, d2, d1, d0;
293 d1 = (q>>4) & 0xf;
294 d2 = (q>>8) & 0xf;
295 d3 = (q>>12);
296
297 d0 = 6*(d3 + d2 + d1) + (q & 0xf);
298 q = (d0 * 0xcd) >> 11;
299 d0 = d0 - 10*q;
300 *buf++ = d0 + '0'; /* least significant digit */
301 d1 = q + 9*d3 + 5*d2 + d1;
302 if (d1 != 0) {
303 q = (d1 * 0xcd) >> 11;
304 d1 = d1 - 10*q;
305 *buf++ = d1 + '0'; /* next digit */
306
307 d2 = q + 2*d2;
308 if ((d2 != 0) || (d3 != 0)) {
309 q = (d2 * 0xd) >> 7;
310 d2 = d2 - 10*q;
311 *buf++ = d2 + '0'; /* next digit */
312
313 d3 = q + 4*d3;
314 if (d3 != 0) {
315 q = (d3 * 0xcd) >> 11;
316 d3 = d3 - 10*q;
317 *buf++ = d3 + '0'; /* next digit */
318 if (q != 0)
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800319 *buf++ = q + '0'; /* most sign. digit */
Denis Vlasenko4277eed2007-07-15 23:41:56 -0700320 }
321 }
322 }
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800323
Denis Vlasenko4277eed2007-07-15 23:41:56 -0700324 return buf;
325}
326/* Same with if's removed. Always emits five digits */
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800327static char *put_dec_full(char *buf, unsigned q)
Denis Vlasenko4277eed2007-07-15 23:41:56 -0700328{
329 /* BTW, if q is in [0,9999], 8-bit ints will be enough, */
330 /* but anyway, gcc produces better code with full-sized ints */
331 unsigned d3, d2, d1, d0;
332 d1 = (q>>4) & 0xf;
333 d2 = (q>>8) & 0xf;
334 d3 = (q>>12);
335
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800336 /*
337 * Possible ways to approx. divide by 10
338 * gcc -O2 replaces multiply with shifts and adds
339 * (x * 0xcd) >> 11: 11001101 - shorter code than * 0x67 (on i386)
340 * (x * 0x67) >> 10: 1100111
341 * (x * 0x34) >> 9: 110100 - same
342 * (x * 0x1a) >> 8: 11010 - same
343 * (x * 0x0d) >> 7: 1101 - same, shortest code (on i386)
344 */
Denis Vlasenko4277eed2007-07-15 23:41:56 -0700345 d0 = 6*(d3 + d2 + d1) + (q & 0xf);
346 q = (d0 * 0xcd) >> 11;
347 d0 = d0 - 10*q;
348 *buf++ = d0 + '0';
349 d1 = q + 9*d3 + 5*d2 + d1;
350 q = (d1 * 0xcd) >> 11;
351 d1 = d1 - 10*q;
352 *buf++ = d1 + '0';
353
354 d2 = q + 2*d2;
355 q = (d2 * 0xd) >> 7;
356 d2 = d2 - 10*q;
357 *buf++ = d2 + '0';
358
359 d3 = q + 4*d3;
360 q = (d3 * 0xcd) >> 11; /* - shorter code */
361 /* q = (d3 * 0x67) >> 10; - would also work */
362 d3 = d3 - 10*q;
363 *buf++ = d3 + '0';
364 *buf++ = q + '0';
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800365
Denis Vlasenko4277eed2007-07-15 23:41:56 -0700366 return buf;
367}
368/* No inlining helps gcc to use registers better */
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800369static noinline char *put_dec(char *buf, unsigned long long num)
Denis Vlasenko4277eed2007-07-15 23:41:56 -0700370{
371 while (1) {
372 unsigned rem;
373 if (num < 100000)
374 return put_dec_trunc(buf, num);
375 rem = do_div(num, 100000);
376 buf = put_dec_full(buf, rem);
377 }
378}
379
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380#define ZEROPAD 1 /* pad with zero */
381#define SIGN 2 /* unsigned/signed long */
382#define PLUS 4 /* show plus */
383#define SPACE 8 /* space if plus */
384#define LEFT 16 /* left justified */
Denys Vlasenko9b706ae2008-02-09 23:24:09 +0100385#define SMALL 32 /* Must be 32 == 0x20 */
386#define SPECIAL 64 /* 0x */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100388enum format_type {
389 FORMAT_TYPE_NONE, /* Just a string part */
Vegard Nossumed681a92009-03-14 12:08:50 +0100390 FORMAT_TYPE_WIDTH,
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100391 FORMAT_TYPE_PRECISION,
392 FORMAT_TYPE_CHAR,
393 FORMAT_TYPE_STR,
394 FORMAT_TYPE_PTR,
395 FORMAT_TYPE_PERCENT_CHAR,
396 FORMAT_TYPE_INVALID,
397 FORMAT_TYPE_LONG_LONG,
398 FORMAT_TYPE_ULONG,
399 FORMAT_TYPE_LONG,
Zhaoleia4e94ef2009-03-27 17:07:05 +0800400 FORMAT_TYPE_UBYTE,
401 FORMAT_TYPE_BYTE,
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100402 FORMAT_TYPE_USHORT,
403 FORMAT_TYPE_SHORT,
404 FORMAT_TYPE_UINT,
405 FORMAT_TYPE_INT,
406 FORMAT_TYPE_NRCHARS,
407 FORMAT_TYPE_SIZE_T,
408 FORMAT_TYPE_PTRDIFF
409};
410
411struct printf_spec {
412 enum format_type type;
413 int flags; /* flags to number() */
414 int field_width; /* width of output field */
415 int base;
416 int precision; /* # of digits/chars */
417 int qualifier;
418};
419
420static char *number(char *buf, char *end, unsigned long long num,
421 struct printf_spec spec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422{
Denys Vlasenko9b706ae2008-02-09 23:24:09 +0100423 /* we are called with base 8, 10 or 16, only, thus don't need "G..." */
424 static const char digits[16] = "0123456789ABCDEF"; /* "GHIJKLMNOPQRSTUVWXYZ"; */
425
426 char tmp[66];
427 char sign;
428 char locase;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100429 int need_pfx = ((spec.flags & SPECIAL) && spec.base != 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 int i;
431
Denys Vlasenko9b706ae2008-02-09 23:24:09 +0100432 /* locase = 0 or 0x20. ORing digits or letters with 'locase'
433 * produces same digits or (maybe lowercased) letters */
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100434 locase = (spec.flags & SMALL);
435 if (spec.flags & LEFT)
436 spec.flags &= ~ZEROPAD;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 sign = 0;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100438 if (spec.flags & SIGN) {
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800439 if ((signed long long)num < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 sign = '-';
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800441 num = -(signed long long)num;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100442 spec.field_width--;
443 } else if (spec.flags & PLUS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 sign = '+';
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100445 spec.field_width--;
446 } else if (spec.flags & SPACE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 sign = ' ';
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100448 spec.field_width--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 }
450 }
Denis Vlasenkob39a7342007-07-15 23:41:54 -0700451 if (need_pfx) {
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100452 spec.field_width--;
453 if (spec.base == 16)
454 spec.field_width--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 }
Denis Vlasenkob39a7342007-07-15 23:41:54 -0700456
457 /* generate full string in tmp[], in reverse order */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 i = 0;
459 if (num == 0)
Denis Vlasenkob39a7342007-07-15 23:41:54 -0700460 tmp[i++] = '0';
Denis Vlasenko4277eed2007-07-15 23:41:56 -0700461 /* Generic code, for any base:
462 else do {
Denys Vlasenko9b706ae2008-02-09 23:24:09 +0100463 tmp[i++] = (digits[do_div(num,base)] | locase);
Denis Vlasenko4277eed2007-07-15 23:41:56 -0700464 } while (num != 0);
465 */
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100466 else if (spec.base != 10) { /* 8 or 16 */
467 int mask = spec.base - 1;
Denis Vlasenkob39a7342007-07-15 23:41:54 -0700468 int shift = 3;
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800469
470 if (spec.base == 16)
471 shift = 4;
Denis Vlasenkob39a7342007-07-15 23:41:54 -0700472 do {
Denys Vlasenko9b706ae2008-02-09 23:24:09 +0100473 tmp[i++] = (digits[((unsigned char)num) & mask] | locase);
Denis Vlasenkob39a7342007-07-15 23:41:54 -0700474 num >>= shift;
475 } while (num);
Denis Vlasenko4277eed2007-07-15 23:41:56 -0700476 } else { /* base 10 */
477 i = put_dec(tmp, num) - tmp;
478 }
Denis Vlasenkob39a7342007-07-15 23:41:54 -0700479
480 /* printing 100 using %2d gives "100", not "00" */
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100481 if (i > spec.precision)
482 spec.precision = i;
Denis Vlasenkob39a7342007-07-15 23:41:54 -0700483 /* leading space padding */
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100484 spec.field_width -= spec.precision;
485 if (!(spec.flags & (ZEROPAD+LEFT))) {
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800486 while (--spec.field_width >= 0) {
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -0700487 if (buf < end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 *buf = ' ';
489 ++buf;
490 }
491 }
Denis Vlasenkob39a7342007-07-15 23:41:54 -0700492 /* sign */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 if (sign) {
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -0700494 if (buf < end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 *buf = sign;
496 ++buf;
497 }
Denis Vlasenkob39a7342007-07-15 23:41:54 -0700498 /* "0x" / "0" prefix */
499 if (need_pfx) {
500 if (buf < end)
501 *buf = '0';
502 ++buf;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100503 if (spec.base == 16) {
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -0700504 if (buf < end)
Denys Vlasenko9b706ae2008-02-09 23:24:09 +0100505 *buf = ('X' | locase);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 ++buf;
507 }
508 }
Denis Vlasenkob39a7342007-07-15 23:41:54 -0700509 /* zero or space padding */
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100510 if (!(spec.flags & LEFT)) {
511 char c = (spec.flags & ZEROPAD) ? '0' : ' ';
512 while (--spec.field_width >= 0) {
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -0700513 if (buf < end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 *buf = c;
515 ++buf;
516 }
517 }
Denis Vlasenkob39a7342007-07-15 23:41:54 -0700518 /* hmm even more zero padding? */
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100519 while (i <= --spec.precision) {
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -0700520 if (buf < end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 *buf = '0';
522 ++buf;
523 }
Denis Vlasenkob39a7342007-07-15 23:41:54 -0700524 /* actual digits of result */
525 while (--i >= 0) {
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -0700526 if (buf < end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 *buf = tmp[i];
528 ++buf;
529 }
Denis Vlasenkob39a7342007-07-15 23:41:54 -0700530 /* trailing space padding */
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100531 while (--spec.field_width >= 0) {
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -0700532 if (buf < end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 *buf = ' ';
534 ++buf;
535 }
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800536
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 return buf;
538}
539
André Goddard Rosa0f4f81d2009-12-14 18:00:55 -0800540static char *string(char *buf, char *end, const char *s, struct printf_spec spec)
Linus Torvalds0f9bfa52008-07-06 16:06:25 -0700541{
542 int len, i;
543
544 if ((unsigned long)s < PAGE_SIZE)
André Goddard Rosa0f4f81d2009-12-14 18:00:55 -0800545 s = "(null)";
Linus Torvalds0f9bfa52008-07-06 16:06:25 -0700546
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100547 len = strnlen(s, spec.precision);
Linus Torvalds0f9bfa52008-07-06 16:06:25 -0700548
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100549 if (!(spec.flags & LEFT)) {
550 while (len < spec.field_width--) {
Linus Torvalds0f9bfa52008-07-06 16:06:25 -0700551 if (buf < end)
552 *buf = ' ';
553 ++buf;
554 }
555 }
556 for (i = 0; i < len; ++i) {
557 if (buf < end)
558 *buf = *s;
559 ++buf; ++s;
560 }
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100561 while (len < spec.field_width--) {
Linus Torvalds0f9bfa52008-07-06 16:06:25 -0700562 if (buf < end)
563 *buf = ' ';
564 ++buf;
565 }
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800566
Linus Torvalds0f9bfa52008-07-06 16:06:25 -0700567 return buf;
568}
569
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100570static char *symbol_string(char *buf, char *end, void *ptr,
Frederic Weisbecker0c8b9462009-04-15 17:48:18 +0200571 struct printf_spec spec, char ext)
Linus Torvalds0fe1ef22008-07-06 16:43:12 -0700572{
573 unsigned long value = (unsigned long) ptr;
574#ifdef CONFIG_KALLSYMS
575 char sym[KSYM_SYMBOL_LEN];
Steven Rostedt91adcd22009-09-16 20:03:06 -0400576 if (ext != 'f' && ext != 's')
Frederic Weisbecker0c8b9462009-04-15 17:48:18 +0200577 sprint_symbol(sym, value);
578 else
579 kallsyms_lookup(value, NULL, NULL, NULL, sym);
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800580
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100581 return string(buf, end, sym, spec);
Linus Torvalds0fe1ef22008-07-06 16:43:12 -0700582#else
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800583 spec.field_width = 2 * sizeof(void *);
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100584 spec.flags |= SPECIAL | SMALL | ZEROPAD;
585 spec.base = 16;
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800586
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100587 return number(buf, end, value, spec);
Linus Torvalds0fe1ef22008-07-06 16:43:12 -0700588#endif
589}
590
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100591static char *resource_string(char *buf, char *end, struct resource *res,
Bjorn Helgaasfd955412009-10-06 15:33:39 -0600592 struct printf_spec spec, const char *fmt)
Linus Torvalds332d2e72008-10-20 15:07:34 +1100593{
594#ifndef IO_RSRC_PRINTK_SIZE
Bjorn Helgaas28405372009-10-06 15:33:29 -0600595#define IO_RSRC_PRINTK_SIZE 6
Linus Torvalds332d2e72008-10-20 15:07:34 +1100596#endif
597
598#ifndef MEM_RSRC_PRINTK_SIZE
Bjorn Helgaas28405372009-10-06 15:33:29 -0600599#define MEM_RSRC_PRINTK_SIZE 10
Linus Torvalds332d2e72008-10-20 15:07:34 +1100600#endif
Bjorn Helgaasc91d3372009-10-06 15:33:34 -0600601 struct printf_spec hex_spec = {
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100602 .base = 16,
603 .precision = -1,
604 .flags = SPECIAL | SMALL | ZEROPAD,
605 };
Bjorn Helgaasc91d3372009-10-06 15:33:34 -0600606 struct printf_spec dec_spec = {
607 .base = 10,
608 .precision = -1,
609 .flags = 0,
610 };
Bjorn Helgaasfd955412009-10-06 15:33:39 -0600611 struct printf_spec str_spec = {
612 .field_width = -1,
613 .precision = 10,
614 .flags = LEFT,
615 };
616 struct printf_spec flag_spec = {
617 .base = 16,
618 .precision = -1,
619 .flags = SPECIAL | SMALL,
620 };
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600621
622 /* 32-bit res (sizeof==4): 10 chars in dec, 10 in hex ("0x" + 8)
623 * 64-bit res (sizeof==8): 20 chars in dec, 18 in hex ("0x" + 16) */
624#define RSRC_BUF_SIZE ((2 * sizeof(resource_size_t)) + 4)
625#define FLAG_BUF_SIZE (2 * sizeof(res->flags))
626#define DECODED_BUF_SIZE sizeof("[mem - 64bit pref disabled]")
627#define RAW_BUF_SIZE sizeof("[mem - flags 0x]")
628 char sym[max(2*RSRC_BUF_SIZE + DECODED_BUF_SIZE,
629 2*RSRC_BUF_SIZE + FLAG_BUF_SIZE + RAW_BUF_SIZE)];
630
Linus Torvalds332d2e72008-10-20 15:07:34 +1100631 char *p = sym, *pend = sym + sizeof(sym);
Bjorn Helgaasc91d3372009-10-06 15:33:34 -0600632 int size = -1, addr = 0;
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600633 int decode = (fmt[0] == 'R') ? 1 : 0;
Linus Torvalds332d2e72008-10-20 15:07:34 +1100634
Bjorn Helgaasc91d3372009-10-06 15:33:34 -0600635 if (res->flags & IORESOURCE_IO) {
Linus Torvalds332d2e72008-10-20 15:07:34 +1100636 size = IO_RSRC_PRINTK_SIZE;
Bjorn Helgaasc91d3372009-10-06 15:33:34 -0600637 addr = 1;
638 } else if (res->flags & IORESOURCE_MEM) {
Linus Torvalds332d2e72008-10-20 15:07:34 +1100639 size = MEM_RSRC_PRINTK_SIZE;
Bjorn Helgaasc91d3372009-10-06 15:33:34 -0600640 addr = 1;
641 }
Linus Torvalds332d2e72008-10-20 15:07:34 +1100642
643 *p++ = '[';
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600644 if (res->flags & IORESOURCE_IO)
645 p = string(p, pend, "io ", str_spec);
646 else if (res->flags & IORESOURCE_MEM)
647 p = string(p, pend, "mem ", str_spec);
648 else if (res->flags & IORESOURCE_IRQ)
649 p = string(p, pend, "irq ", str_spec);
650 else if (res->flags & IORESOURCE_DMA)
651 p = string(p, pend, "dma ", str_spec);
652 else {
653 p = string(p, pend, "??? ", str_spec);
654 decode = 0;
Bjorn Helgaasfd955412009-10-06 15:33:39 -0600655 }
Bjorn Helgaasc91d3372009-10-06 15:33:34 -0600656 hex_spec.field_width = size;
657 p = number(p, pend, res->start, addr ? hex_spec : dec_spec);
658 if (res->start != res->end) {
659 *p++ = '-';
660 p = number(p, pend, res->end, addr ? hex_spec : dec_spec);
661 }
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600662 if (decode) {
Bjorn Helgaasfd955412009-10-06 15:33:39 -0600663 if (res->flags & IORESOURCE_MEM_64)
664 p = string(p, pend, " 64bit", str_spec);
665 if (res->flags & IORESOURCE_PREFETCH)
666 p = string(p, pend, " pref", str_spec);
667 if (res->flags & IORESOURCE_DISABLED)
668 p = string(p, pend, " disabled", str_spec);
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600669 } else {
670 p = string(p, pend, " flags ", str_spec);
671 p = number(p, pend, res->flags, flag_spec);
Bjorn Helgaasfd955412009-10-06 15:33:39 -0600672 }
Linus Torvalds332d2e72008-10-20 15:07:34 +1100673 *p++ = ']';
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600674 *p = '\0';
Linus Torvalds332d2e72008-10-20 15:07:34 +1100675
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100676 return string(buf, end, sym, spec);
Linus Torvalds332d2e72008-10-20 15:07:34 +1100677}
678
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100679static char *mac_address_string(char *buf, char *end, u8 *addr,
Joe Perches8a27f7c2009-08-17 12:29:44 +0000680 struct printf_spec spec, const char *fmt)
Harvey Harrisondd45c9c2008-10-27 15:47:12 -0700681{
Joe Perches8a27f7c2009-08-17 12:29:44 +0000682 char mac_addr[sizeof("xx:xx:xx:xx:xx:xx")];
Harvey Harrisondd45c9c2008-10-27 15:47:12 -0700683 char *p = mac_addr;
684 int i;
Joe Perchesbc7259a2010-01-07 11:43:50 +0000685 bool bitrev;
686 char separator;
687
688 if (fmt[1] == 'F') { /* FDDI canonical format */
689 bitrev = true;
690 separator = '-';
691 } else {
692 bitrev = false;
693 separator = ':';
694 }
Harvey Harrisondd45c9c2008-10-27 15:47:12 -0700695
696 for (i = 0; i < 6; i++) {
Joe Perchesbc7259a2010-01-07 11:43:50 +0000697 p = pack_hex_byte(p, bitrev ? bitrev8(addr[i]) : addr[i]);
Joe Perches8a27f7c2009-08-17 12:29:44 +0000698 if (fmt[0] == 'M' && i != 5)
Joe Perchesbc7259a2010-01-07 11:43:50 +0000699 *p++ = separator;
Harvey Harrisondd45c9c2008-10-27 15:47:12 -0700700 }
701 *p = '\0';
702
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100703 return string(buf, end, mac_addr, spec);
Harvey Harrisondd45c9c2008-10-27 15:47:12 -0700704}
705
Joe Perches8a27f7c2009-08-17 12:29:44 +0000706static char *ip4_string(char *p, const u8 *addr, bool leading_zeros)
Harvey Harrison689afa72008-10-28 16:04:44 -0700707{
Harvey Harrison689afa72008-10-28 16:04:44 -0700708 int i;
709
Joe Perches8a27f7c2009-08-17 12:29:44 +0000710 for (i = 0; i < 4; i++) {
711 char temp[3]; /* hold each IP quad in reverse order */
712 int digits = put_dec_trunc(temp, addr[i]) - temp;
713 if (leading_zeros) {
714 if (digits < 3)
715 *p++ = '0';
716 if (digits < 2)
717 *p++ = '0';
718 }
719 /* reverse the digits in the quad */
720 while (digits--)
721 *p++ = temp[digits];
722 if (i < 3)
723 *p++ = '.';
724 }
Joe Perches8a27f7c2009-08-17 12:29:44 +0000725 *p = '\0';
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800726
Joe Perches8a27f7c2009-08-17 12:29:44 +0000727 return p;
728}
729
Joe Percheseb78cd22009-09-18 13:04:06 +0000730static char *ip6_compressed_string(char *p, const char *addr)
Joe Perches8a27f7c2009-08-17 12:29:44 +0000731{
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800732 int i, j, range;
Joe Perches8a27f7c2009-08-17 12:29:44 +0000733 unsigned char zerolength[8];
734 int longest = 1;
735 int colonpos = -1;
736 u16 word;
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800737 u8 hi, lo;
Joe Perches8a27f7c2009-08-17 12:29:44 +0000738 bool needcolon = false;
Joe Percheseb78cd22009-09-18 13:04:06 +0000739 bool useIPv4;
740 struct in6_addr in6;
741
742 memcpy(&in6, addr, sizeof(struct in6_addr));
743
744 useIPv4 = ipv6_addr_v4mapped(&in6) || ipv6_addr_is_isatap(&in6);
Joe Perches8a27f7c2009-08-17 12:29:44 +0000745
746 memset(zerolength, 0, sizeof(zerolength));
747
748 if (useIPv4)
749 range = 6;
750 else
751 range = 8;
752
753 /* find position of longest 0 run */
754 for (i = 0; i < range; i++) {
755 for (j = i; j < range; j++) {
Joe Percheseb78cd22009-09-18 13:04:06 +0000756 if (in6.s6_addr16[j] != 0)
Joe Perches8a27f7c2009-08-17 12:29:44 +0000757 break;
758 zerolength[i]++;
759 }
760 }
761 for (i = 0; i < range; i++) {
762 if (zerolength[i] > longest) {
763 longest = zerolength[i];
764 colonpos = i;
765 }
766 }
767
768 /* emit address */
769 for (i = 0; i < range; i++) {
770 if (i == colonpos) {
771 if (needcolon || i == 0)
772 *p++ = ':';
773 *p++ = ':';
774 needcolon = false;
775 i += longest - 1;
776 continue;
777 }
778 if (needcolon) {
779 *p++ = ':';
780 needcolon = false;
781 }
782 /* hex u16 without leading 0s */
Joe Percheseb78cd22009-09-18 13:04:06 +0000783 word = ntohs(in6.s6_addr16[i]);
Joe Perches8a27f7c2009-08-17 12:29:44 +0000784 hi = word >> 8;
785 lo = word & 0xff;
786 if (hi) {
787 if (hi > 0x0f)
788 p = pack_hex_byte(p, hi);
789 else
790 *p++ = hex_asc_lo(hi);
André Goddard Rosab5ff9922009-12-14 18:00:59 -0800791 p = pack_hex_byte(p, lo);
Joe Perches8a27f7c2009-08-17 12:29:44 +0000792 }
André Goddard Rosab5ff9922009-12-14 18:00:59 -0800793 else if (lo > 0x0f)
Joe Perches8a27f7c2009-08-17 12:29:44 +0000794 p = pack_hex_byte(p, lo);
795 else
796 *p++ = hex_asc_lo(lo);
797 needcolon = true;
798 }
799
800 if (useIPv4) {
801 if (needcolon)
802 *p++ = ':';
Joe Percheseb78cd22009-09-18 13:04:06 +0000803 p = ip4_string(p, &in6.s6_addr[12], false);
Joe Perches8a27f7c2009-08-17 12:29:44 +0000804 }
Joe Perches8a27f7c2009-08-17 12:29:44 +0000805 *p = '\0';
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800806
Joe Perches8a27f7c2009-08-17 12:29:44 +0000807 return p;
808}
809
Joe Percheseb78cd22009-09-18 13:04:06 +0000810static char *ip6_string(char *p, const char *addr, const char *fmt)
Joe Perches8a27f7c2009-08-17 12:29:44 +0000811{
812 int i;
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800813
Harvey Harrison689afa72008-10-28 16:04:44 -0700814 for (i = 0; i < 8; i++) {
Joe Percheseb78cd22009-09-18 13:04:06 +0000815 p = pack_hex_byte(p, *addr++);
816 p = pack_hex_byte(p, *addr++);
Joe Perches8a27f7c2009-08-17 12:29:44 +0000817 if (fmt[0] == 'I' && i != 7)
Harvey Harrison689afa72008-10-28 16:04:44 -0700818 *p++ = ':';
819 }
820 *p = '\0';
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800821
Joe Perches8a27f7c2009-08-17 12:29:44 +0000822 return p;
823}
824
825static char *ip6_addr_string(char *buf, char *end, const u8 *addr,
826 struct printf_spec spec, const char *fmt)
827{
828 char ip6_addr[sizeof("xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:255.255.255.255")];
829
830 if (fmt[0] == 'I' && fmt[2] == 'c')
Joe Percheseb78cd22009-09-18 13:04:06 +0000831 ip6_compressed_string(ip6_addr, addr);
Joe Perches8a27f7c2009-08-17 12:29:44 +0000832 else
Joe Percheseb78cd22009-09-18 13:04:06 +0000833 ip6_string(ip6_addr, addr, fmt);
Harvey Harrison689afa72008-10-28 16:04:44 -0700834
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100835 return string(buf, end, ip6_addr, spec);
Harvey Harrison689afa72008-10-28 16:04:44 -0700836}
837
Joe Perches8a27f7c2009-08-17 12:29:44 +0000838static char *ip4_addr_string(char *buf, char *end, const u8 *addr,
839 struct printf_spec spec, const char *fmt)
Harvey Harrison4aa99602008-10-29 12:49:58 -0700840{
Joe Perches8a27f7c2009-08-17 12:29:44 +0000841 char ip4_addr[sizeof("255.255.255.255")];
Harvey Harrison4aa99602008-10-29 12:49:58 -0700842
Joe Perches8a27f7c2009-08-17 12:29:44 +0000843 ip4_string(ip4_addr, addr, fmt[0] == 'i');
Harvey Harrison4aa99602008-10-29 12:49:58 -0700844
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100845 return string(buf, end, ip4_addr, spec);
Harvey Harrison4aa99602008-10-29 12:49:58 -0700846}
847
Joe Perches9ac6e442009-12-14 18:01:09 -0800848static char *uuid_string(char *buf, char *end, const u8 *addr,
849 struct printf_spec spec, const char *fmt)
850{
851 char uuid[sizeof("xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx")];
852 char *p = uuid;
853 int i;
854 static const u8 be[16] = {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15};
855 static const u8 le[16] = {3,2,1,0,5,4,7,6,8,9,10,11,12,13,14,15};
856 const u8 *index = be;
857 bool uc = false;
858
859 switch (*(++fmt)) {
860 case 'L':
861 uc = true; /* fall-through */
862 case 'l':
863 index = le;
864 break;
865 case 'B':
866 uc = true;
867 break;
868 }
869
870 for (i = 0; i < 16; i++) {
871 p = pack_hex_byte(p, addr[index[i]]);
872 switch (i) {
873 case 3:
874 case 5:
875 case 7:
876 case 9:
877 *p++ = '-';
878 break;
879 }
880 }
881
882 *p = 0;
883
884 if (uc) {
885 p = uuid;
886 do {
887 *p = toupper(*p);
888 } while (*(++p));
889 }
890
891 return string(buf, end, uuid, spec);
892}
893
Linus Torvalds4d8a7432008-07-06 16:24:57 -0700894/*
895 * Show a '%p' thing. A kernel extension is that the '%p' is followed
896 * by an extra set of alphanumeric characters that are extended format
897 * specifiers.
898 *
Linus Torvalds332d2e72008-10-20 15:07:34 +1100899 * Right now we handle:
Linus Torvalds0fe1ef22008-07-06 16:43:12 -0700900 *
Frederic Weisbecker0c8b9462009-04-15 17:48:18 +0200901 * - 'F' For symbolic function descriptor pointers with offset
902 * - 'f' For simple symbolic function names without offset
Steven Rostedt0efb4d22009-09-17 09:27:29 -0400903 * - 'S' For symbolic direct pointers with offset
904 * - 's' For symbolic direct pointers without offset
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600905 * - 'R' For decoded struct resource, e.g., [mem 0x0-0x1f 64bit pref]
906 * - 'r' For raw struct resource, e.g., [mem 0x0-0x1f flags 0x201]
Harvey Harrisondd45c9c2008-10-27 15:47:12 -0700907 * - 'M' For a 6-byte MAC address, it prints the address in the
908 * usual colon-separated hex notation
Joe Perches8a27f7c2009-08-17 12:29:44 +0000909 * - 'm' For a 6-byte MAC address, it prints the hex address without colons
Joe Perchesbc7259a2010-01-07 11:43:50 +0000910 * - 'MF' For a 6-byte MAC FDDI address, it prints the address
911 * with a dash-separated hex notation with bit reversed bytes
912 * - 'mF' For a 6-byte MAC FDDI address, it prints the address
913 * in hex notation without separators with bit reversed bytes
Joe Perches8a27f7c2009-08-17 12:29:44 +0000914 * - 'I' [46] for IPv4/IPv6 addresses printed in the usual way
915 * IPv4 uses dot-separated decimal without leading 0's (1.2.3.4)
916 * IPv6 uses colon separated network-order 16 bit hex with leading 0's
917 * - 'i' [46] for 'raw' IPv4/IPv6 addresses
918 * IPv6 omits the colons (01020304...0f)
919 * IPv4 uses dot-separated decimal with leading 0's (010.123.045.006)
920 * - 'I6c' for IPv6 addresses printed as specified by
921 * http://www.ietf.org/id/draft-kawamura-ipv6-text-representation-03.txt
Joe Perches9ac6e442009-12-14 18:01:09 -0800922 * - 'U' For a 16 byte UUID/GUID, it prints the UUID/GUID in the form
923 * "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
924 * Options for %pU are:
925 * b big endian lower case hex (default)
926 * B big endian UPPER case hex
927 * l little endian lower case hex
928 * L little endian UPPER case hex
929 * big endian output byte order is:
930 * [0][1][2][3]-[4][5]-[6][7]-[8][9]-[10][11][12][13][14][15]
931 * little endian output byte order is:
932 * [3][2][1][0]-[5][4]-[7][6]-[8][9]-[10][11][12][13][14][15]
933 *
Linus Torvalds332d2e72008-10-20 15:07:34 +1100934 * Note: The difference between 'S' and 'F' is that on ia64 and ppc64
935 * function pointers are really function descriptors, which contain a
936 * pointer to the real address.
Linus Torvalds4d8a7432008-07-06 16:24:57 -0700937 */
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100938static char *pointer(const char *fmt, char *buf, char *end, void *ptr,
939 struct printf_spec spec)
Linus Torvalds78a8bf62008-07-06 16:16:15 -0700940{
Linus Torvaldsd97106a2009-01-03 11:46:17 -0800941 if (!ptr)
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100942 return string(buf, end, "(null)", spec);
Linus Torvaldsd97106a2009-01-03 11:46:17 -0800943
Linus Torvalds0fe1ef22008-07-06 16:43:12 -0700944 switch (*fmt) {
945 case 'F':
Frederic Weisbecker0c8b9462009-04-15 17:48:18 +0200946 case 'f':
Linus Torvalds0fe1ef22008-07-06 16:43:12 -0700947 ptr = dereference_function_descriptor(ptr);
948 /* Fallthrough */
949 case 'S':
Joe Perches9ac6e442009-12-14 18:01:09 -0800950 case 's':
Frederic Weisbecker0c8b9462009-04-15 17:48:18 +0200951 return symbol_string(buf, end, ptr, spec, *fmt);
Linus Torvalds332d2e72008-10-20 15:07:34 +1100952 case 'R':
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600953 case 'r':
Bjorn Helgaasfd955412009-10-06 15:33:39 -0600954 return resource_string(buf, end, ptr, spec, fmt);
Joe Perches8a27f7c2009-08-17 12:29:44 +0000955 case 'M': /* Colon separated: 00:01:02:03:04:05 */
956 case 'm': /* Contiguous: 000102030405 */
Joe Perchesbc7259a2010-01-07 11:43:50 +0000957 /* [mM]F (FDDI, bit reversed) */
Joe Perches8a27f7c2009-08-17 12:29:44 +0000958 return mac_address_string(buf, end, ptr, spec, fmt);
959 case 'I': /* Formatted IP supported
960 * 4: 1.2.3.4
961 * 6: 0001:0203:...:0708
962 * 6c: 1::708 or 1::1.2.3.4
963 */
964 case 'i': /* Contiguous:
965 * 4: 001.002.003.004
966 * 6: 000102...0f
967 */
968 switch (fmt[1]) {
969 case '6':
970 return ip6_addr_string(buf, end, ptr, spec, fmt);
971 case '4':
972 return ip4_addr_string(buf, end, ptr, spec, fmt);
973 }
Harvey Harrison4aa99602008-10-29 12:49:58 -0700974 break;
Joe Perches9ac6e442009-12-14 18:01:09 -0800975 case 'U':
976 return uuid_string(buf, end, ptr, spec, fmt);
Linus Torvalds0fe1ef22008-07-06 16:43:12 -0700977 }
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100978 spec.flags |= SMALL;
979 if (spec.field_width == -1) {
980 spec.field_width = 2*sizeof(void *);
981 spec.flags |= ZEROPAD;
Linus Torvalds78a8bf62008-07-06 16:16:15 -0700982 }
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100983 spec.base = 16;
984
985 return number(buf, end, (unsigned long) ptr, spec);
986}
987
988/*
989 * Helper function to decode printf style format.
990 * Each call decode a token from the format and return the
991 * number of characters read (or likely the delta where it wants
992 * to go on the next call).
993 * The decoded token is returned through the parameters
994 *
995 * 'h', 'l', or 'L' for integer fields
996 * 'z' support added 23/7/1999 S.H.
997 * 'z' changed to 'Z' --davidm 1/25/99
998 * 't' added for ptrdiff_t
999 *
1000 * @fmt: the format string
1001 * @type of the token returned
1002 * @flags: various flags such as +, -, # tokens..
1003 * @field_width: overwritten width
1004 * @base: base of the number (octal, hex, ...)
1005 * @precision: precision of a number
1006 * @qualifier: qualifier of a number (long, size_t, ...)
1007 */
1008static int format_decode(const char *fmt, struct printf_spec *spec)
1009{
1010 const char *start = fmt;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001011
1012 /* we finished early by reading the field width */
Vegard Nossumed681a92009-03-14 12:08:50 +01001013 if (spec->type == FORMAT_TYPE_WIDTH) {
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001014 if (spec->field_width < 0) {
1015 spec->field_width = -spec->field_width;
1016 spec->flags |= LEFT;
1017 }
1018 spec->type = FORMAT_TYPE_NONE;
1019 goto precision;
1020 }
1021
1022 /* we finished early by reading the precision */
1023 if (spec->type == FORMAT_TYPE_PRECISION) {
1024 if (spec->precision < 0)
1025 spec->precision = 0;
1026
1027 spec->type = FORMAT_TYPE_NONE;
1028 goto qualifier;
1029 }
1030
1031 /* By default */
1032 spec->type = FORMAT_TYPE_NONE;
1033
1034 for (; *fmt ; ++fmt) {
1035 if (*fmt == '%')
1036 break;
1037 }
1038
1039 /* Return the current non-format string */
1040 if (fmt != start || !*fmt)
1041 return fmt - start;
1042
1043 /* Process flags */
1044 spec->flags = 0;
1045
1046 while (1) { /* this also skips first '%' */
1047 bool found = true;
1048
1049 ++fmt;
1050
1051 switch (*fmt) {
1052 case '-': spec->flags |= LEFT; break;
1053 case '+': spec->flags |= PLUS; break;
1054 case ' ': spec->flags |= SPACE; break;
1055 case '#': spec->flags |= SPECIAL; break;
1056 case '0': spec->flags |= ZEROPAD; break;
1057 default: found = false;
1058 }
1059
1060 if (!found)
1061 break;
1062 }
1063
1064 /* get field width */
1065 spec->field_width = -1;
1066
1067 if (isdigit(*fmt))
1068 spec->field_width = skip_atoi(&fmt);
1069 else if (*fmt == '*') {
1070 /* it's the next argument */
Vegard Nossumed681a92009-03-14 12:08:50 +01001071 spec->type = FORMAT_TYPE_WIDTH;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001072 return ++fmt - start;
1073 }
1074
1075precision:
1076 /* get the precision */
1077 spec->precision = -1;
1078 if (*fmt == '.') {
1079 ++fmt;
1080 if (isdigit(*fmt)) {
1081 spec->precision = skip_atoi(&fmt);
1082 if (spec->precision < 0)
1083 spec->precision = 0;
1084 } else if (*fmt == '*') {
1085 /* it's the next argument */
Vegard Nossumadf26f82009-03-14 12:08:50 +01001086 spec->type = FORMAT_TYPE_PRECISION;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001087 return ++fmt - start;
1088 }
1089 }
1090
1091qualifier:
1092 /* get the conversion qualifier */
1093 spec->qualifier = -1;
André Goddard Rosa08562cb2009-12-14 18:00:58 -08001094 if (*fmt == 'h' || TOLOWER(*fmt) == 'l' ||
1095 TOLOWER(*fmt) == 'z' || *fmt == 't') {
Zhaoleia4e94ef2009-03-27 17:07:05 +08001096 spec->qualifier = *fmt++;
1097 if (unlikely(spec->qualifier == *fmt)) {
1098 if (spec->qualifier == 'l') {
1099 spec->qualifier = 'L';
1100 ++fmt;
1101 } else if (spec->qualifier == 'h') {
1102 spec->qualifier = 'H';
1103 ++fmt;
1104 }
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001105 }
1106 }
1107
1108 /* default base */
1109 spec->base = 10;
1110 switch (*fmt) {
1111 case 'c':
1112 spec->type = FORMAT_TYPE_CHAR;
1113 return ++fmt - start;
1114
1115 case 's':
1116 spec->type = FORMAT_TYPE_STR;
1117 return ++fmt - start;
1118
1119 case 'p':
1120 spec->type = FORMAT_TYPE_PTR;
1121 return fmt - start;
1122 /* skip alnum */
1123
1124 case 'n':
1125 spec->type = FORMAT_TYPE_NRCHARS;
1126 return ++fmt - start;
1127
1128 case '%':
1129 spec->type = FORMAT_TYPE_PERCENT_CHAR;
1130 return ++fmt - start;
1131
1132 /* integer number formats - set up the flags and "break" */
1133 case 'o':
1134 spec->base = 8;
1135 break;
1136
1137 case 'x':
1138 spec->flags |= SMALL;
1139
1140 case 'X':
1141 spec->base = 16;
1142 break;
1143
1144 case 'd':
1145 case 'i':
Frederic Weisbecker39e874f2009-03-09 21:15:04 +01001146 spec->flags |= SIGN;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001147 case 'u':
1148 break;
1149
1150 default:
1151 spec->type = FORMAT_TYPE_INVALID;
1152 return fmt - start;
1153 }
1154
1155 if (spec->qualifier == 'L')
1156 spec->type = FORMAT_TYPE_LONG_LONG;
1157 else if (spec->qualifier == 'l') {
Frederic Weisbecker39e874f2009-03-09 21:15:04 +01001158 if (spec->flags & SIGN)
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001159 spec->type = FORMAT_TYPE_LONG;
1160 else
1161 spec->type = FORMAT_TYPE_ULONG;
André Goddard Rosa08562cb2009-12-14 18:00:58 -08001162 } else if (TOLOWER(spec->qualifier) == 'z') {
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001163 spec->type = FORMAT_TYPE_SIZE_T;
1164 } else if (spec->qualifier == 't') {
1165 spec->type = FORMAT_TYPE_PTRDIFF;
Zhaoleia4e94ef2009-03-27 17:07:05 +08001166 } else if (spec->qualifier == 'H') {
1167 if (spec->flags & SIGN)
1168 spec->type = FORMAT_TYPE_BYTE;
1169 else
1170 spec->type = FORMAT_TYPE_UBYTE;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001171 } else if (spec->qualifier == 'h') {
Frederic Weisbecker39e874f2009-03-09 21:15:04 +01001172 if (spec->flags & SIGN)
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001173 spec->type = FORMAT_TYPE_SHORT;
1174 else
1175 spec->type = FORMAT_TYPE_USHORT;
1176 } else {
Frederic Weisbecker39e874f2009-03-09 21:15:04 +01001177 if (spec->flags & SIGN)
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001178 spec->type = FORMAT_TYPE_INT;
1179 else
1180 spec->type = FORMAT_TYPE_UINT;
1181 }
1182
1183 return ++fmt - start;
Linus Torvalds78a8bf62008-07-06 16:16:15 -07001184}
1185
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186/**
1187 * vsnprintf - Format a string and place it in a buffer
1188 * @buf: The buffer to place the result into
1189 * @size: The size of the buffer, including the trailing null space
1190 * @fmt: The format string to use
1191 * @args: Arguments for the format string
1192 *
Andi Kleen20036fd2008-10-15 22:02:02 -07001193 * This function follows C99 vsnprintf, but has some extensions:
Steven Rostedt91adcd22009-09-16 20:03:06 -04001194 * %pS output the name of a text symbol with offset
1195 * %ps output the name of a text symbol without offset
Frederic Weisbecker0c8b9462009-04-15 17:48:18 +02001196 * %pF output the name of a function pointer with its offset
1197 * %pf output the name of a function pointer without its offset
Uwe Kleine-König8a795032009-12-17 15:27:12 -08001198 * %pR output the address range in a struct resource with decoded flags
1199 * %pr output the address range in a struct resource with raw flags
1200 * %pM output a 6-byte MAC address with colons
1201 * %pm output a 6-byte MAC address without colons
1202 * %pI4 print an IPv4 address without leading zeros
1203 * %pi4 print an IPv4 address with leading zeros
1204 * %pI6 print an IPv6 address with colons
1205 * %pi6 print an IPv6 address without colons
1206 * %pI6c print an IPv6 address as specified by
1207 * http://www.ietf.org/id/draft-kawamura-ipv6-text-representation-03.txt
1208 * %pU[bBlL] print a UUID/GUID in big or little endian using lower or upper
1209 * case.
Steven Rostedt0efb4d22009-09-17 09:27:29 -04001210 * %n is ignored
Andi Kleen20036fd2008-10-15 22:02:02 -07001211 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 * The return value is the number of characters which would
1213 * be generated for the given input, excluding the trailing
1214 * '\0', as per ISO C99. If you want to have the exact
1215 * number of characters written into @buf as return value
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08001216 * (not including the trailing '\0'), use vscnprintf(). If the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 * return is greater than or equal to @size, the resulting
1218 * string is truncated.
1219 *
1220 * Call this function if you are already dealing with a va_list.
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08001221 * You probably want snprintf() instead.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 */
1223int vsnprintf(char *buf, size_t size, const char *fmt, va_list args)
1224{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 unsigned long long num;
André Goddard Rosad4be1512009-12-14 18:00:59 -08001226 char *str, *end;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001227 struct printf_spec spec = {0};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -07001229 /* Reject out-of-range values early. Large positive sizes are
1230 used for unknown buffer sizes. */
Marcin Slusarz2f30b1f92009-09-21 17:04:29 -07001231 if (WARN_ON_ONCE((int) size < 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233
1234 str = buf;
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -07001235 end = buf + size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -07001237 /* Make sure end is always >= buf */
1238 if (end < buf) {
1239 end = ((void *)-1);
1240 size = end - buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 }
1242
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001243 while (*fmt) {
1244 const char *old_fmt = fmt;
André Goddard Rosad4be1512009-12-14 18:00:59 -08001245 int read = format_decode(fmt, &spec);
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001246
1247 fmt += read;
1248
1249 switch (spec.type) {
1250 case FORMAT_TYPE_NONE: {
1251 int copy = read;
1252 if (str < end) {
1253 if (copy > end - str)
1254 copy = end - str;
1255 memcpy(str, old_fmt, copy);
1256 }
1257 str += read;
1258 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 }
1260
Vegard Nossumed681a92009-03-14 12:08:50 +01001261 case FORMAT_TYPE_WIDTH:
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001262 spec.field_width = va_arg(args, int);
1263 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001265 case FORMAT_TYPE_PRECISION:
1266 spec.precision = va_arg(args, int);
1267 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268
André Goddard Rosad4be1512009-12-14 18:00:59 -08001269 case FORMAT_TYPE_CHAR: {
1270 char c;
1271
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001272 if (!(spec.flags & LEFT)) {
1273 while (--spec.field_width > 0) {
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -07001274 if (str < end)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 *str = ' ';
1276 ++str;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001277
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 }
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001279 }
1280 c = (unsigned char) va_arg(args, int);
1281 if (str < end)
1282 *str = c;
1283 ++str;
1284 while (--spec.field_width > 0) {
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -07001285 if (str < end)
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001286 *str = ' ';
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 ++str;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001288 }
1289 break;
André Goddard Rosad4be1512009-12-14 18:00:59 -08001290 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001292 case FORMAT_TYPE_STR:
1293 str = string(str, end, va_arg(args, char *), spec);
1294 break;
1295
1296 case FORMAT_TYPE_PTR:
1297 str = pointer(fmt+1, str, end, va_arg(args, void *),
1298 spec);
1299 while (isalnum(*fmt))
1300 fmt++;
1301 break;
1302
1303 case FORMAT_TYPE_PERCENT_CHAR:
1304 if (str < end)
1305 *str = '%';
1306 ++str;
1307 break;
1308
1309 case FORMAT_TYPE_INVALID:
1310 if (str < end)
1311 *str = '%';
1312 ++str;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001313 break;
1314
1315 case FORMAT_TYPE_NRCHARS: {
1316 int qualifier = spec.qualifier;
1317
1318 if (qualifier == 'l') {
1319 long *ip = va_arg(args, long *);
1320 *ip = (str - buf);
André Goddard Rosa08562cb2009-12-14 18:00:58 -08001321 } else if (TOLOWER(qualifier) == 'z') {
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001322 size_t *ip = va_arg(args, size_t *);
1323 *ip = (str - buf);
1324 } else {
1325 int *ip = va_arg(args, int *);
1326 *ip = (str - buf);
1327 }
1328 break;
1329 }
1330
1331 default:
1332 switch (spec.type) {
1333 case FORMAT_TYPE_LONG_LONG:
1334 num = va_arg(args, long long);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 break;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001336 case FORMAT_TYPE_ULONG:
1337 num = va_arg(args, unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 break;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001339 case FORMAT_TYPE_LONG:
1340 num = va_arg(args, long);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 break;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001342 case FORMAT_TYPE_SIZE_T:
1343 num = va_arg(args, size_t);
1344 break;
1345 case FORMAT_TYPE_PTRDIFF:
1346 num = va_arg(args, ptrdiff_t);
1347 break;
Zhaoleia4e94ef2009-03-27 17:07:05 +08001348 case FORMAT_TYPE_UBYTE:
1349 num = (unsigned char) va_arg(args, int);
1350 break;
1351 case FORMAT_TYPE_BYTE:
1352 num = (signed char) va_arg(args, int);
1353 break;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001354 case FORMAT_TYPE_USHORT:
1355 num = (unsigned short) va_arg(args, int);
1356 break;
1357 case FORMAT_TYPE_SHORT:
1358 num = (short) va_arg(args, int);
1359 break;
Frederic Weisbecker39e874f2009-03-09 21:15:04 +01001360 case FORMAT_TYPE_INT:
1361 num = (int) va_arg(args, int);
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001362 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 default:
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001364 num = va_arg(args, unsigned int);
1365 }
1366
1367 str = number(str, end, num, spec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 }
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001370
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -07001371 if (size > 0) {
1372 if (str < end)
1373 *str = '\0';
1374 else
Linus Torvalds0a6047e2006-06-28 17:09:34 -07001375 end[-1] = '\0';
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -07001376 }
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001377
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -07001378 /* the trailing null byte doesn't count towards the total */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 return str-buf;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001380
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382EXPORT_SYMBOL(vsnprintf);
1383
1384/**
1385 * vscnprintf - Format a string and place it in a buffer
1386 * @buf: The buffer to place the result into
1387 * @size: The size of the buffer, including the trailing null space
1388 * @fmt: The format string to use
1389 * @args: Arguments for the format string
1390 *
1391 * The return value is the number of characters which have been written into
1392 * the @buf not including the trailing '\0'. If @size is <= 0 the function
1393 * returns 0.
1394 *
1395 * Call this function if you are already dealing with a va_list.
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08001396 * You probably want scnprintf() instead.
Andi Kleen20036fd2008-10-15 22:02:02 -07001397 *
1398 * See the vsnprintf() documentation for format string extensions over C99.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 */
1400int vscnprintf(char *buf, size_t size, const char *fmt, va_list args)
1401{
1402 int i;
1403
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001404 i = vsnprintf(buf, size, fmt, args);
1405
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 return (i >= size) ? (size - 1) : i;
1407}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408EXPORT_SYMBOL(vscnprintf);
1409
1410/**
1411 * snprintf - Format a string and place it in a buffer
1412 * @buf: The buffer to place the result into
1413 * @size: The size of the buffer, including the trailing null space
1414 * @fmt: The format string to use
1415 * @...: Arguments for the format string
1416 *
1417 * The return value is the number of characters which would be
1418 * generated for the given input, excluding the trailing null,
1419 * as per ISO C99. If the return is greater than or equal to
1420 * @size, the resulting string is truncated.
Andi Kleen20036fd2008-10-15 22:02:02 -07001421 *
1422 * See the vsnprintf() documentation for format string extensions over C99.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 */
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001424int snprintf(char *buf, size_t size, const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425{
1426 va_list args;
1427 int i;
1428
1429 va_start(args, fmt);
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001430 i = vsnprintf(buf, size, fmt, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 va_end(args);
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001432
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 return i;
1434}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435EXPORT_SYMBOL(snprintf);
1436
1437/**
1438 * scnprintf - Format a string and place it in a buffer
1439 * @buf: The buffer to place the result into
1440 * @size: The size of the buffer, including the trailing null space
1441 * @fmt: The format string to use
1442 * @...: Arguments for the format string
1443 *
1444 * The return value is the number of characters written into @buf not including
Martin Peschkeea6f3282007-02-12 00:51:56 -08001445 * the trailing '\0'. If @size is <= 0 the function returns 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 */
1447
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001448int scnprintf(char *buf, size_t size, const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449{
1450 va_list args;
1451 int i;
1452
1453 va_start(args, fmt);
1454 i = vsnprintf(buf, size, fmt, args);
1455 va_end(args);
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001456
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 return (i >= size) ? (size - 1) : i;
1458}
1459EXPORT_SYMBOL(scnprintf);
1460
1461/**
1462 * vsprintf - Format a string and place it in a buffer
1463 * @buf: The buffer to place the result into
1464 * @fmt: The format string to use
1465 * @args: Arguments for the format string
1466 *
1467 * The function returns the number of characters written
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08001468 * into @buf. Use vsnprintf() or vscnprintf() in order to avoid
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 * buffer overflows.
1470 *
1471 * Call this function if you are already dealing with a va_list.
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08001472 * You probably want sprintf() instead.
Andi Kleen20036fd2008-10-15 22:02:02 -07001473 *
1474 * See the vsnprintf() documentation for format string extensions over C99.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 */
1476int vsprintf(char *buf, const char *fmt, va_list args)
1477{
1478 return vsnprintf(buf, INT_MAX, fmt, args);
1479}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480EXPORT_SYMBOL(vsprintf);
1481
1482/**
1483 * sprintf - Format a string and place it in a buffer
1484 * @buf: The buffer to place the result into
1485 * @fmt: The format string to use
1486 * @...: Arguments for the format string
1487 *
1488 * The function returns the number of characters written
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08001489 * into @buf. Use snprintf() or scnprintf() in order to avoid
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 * buffer overflows.
Andi Kleen20036fd2008-10-15 22:02:02 -07001491 *
1492 * See the vsnprintf() documentation for format string extensions over C99.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 */
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001494int sprintf(char *buf, const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495{
1496 va_list args;
1497 int i;
1498
1499 va_start(args, fmt);
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001500 i = vsnprintf(buf, INT_MAX, fmt, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 va_end(args);
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001502
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 return i;
1504}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505EXPORT_SYMBOL(sprintf);
1506
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001507#ifdef CONFIG_BINARY_PRINTF
1508/*
1509 * bprintf service:
1510 * vbin_printf() - VA arguments to binary data
1511 * bstr_printf() - Binary data to text string
1512 */
1513
1514/**
1515 * vbin_printf - Parse a format string and place args' binary value in a buffer
1516 * @bin_buf: The buffer to place args' binary value
1517 * @size: The size of the buffer(by words(32bits), not characters)
1518 * @fmt: The format string to use
1519 * @args: Arguments for the format string
1520 *
1521 * The format follows C99 vsnprintf, except %n is ignored, and its argument
1522 * is skiped.
1523 *
1524 * The return value is the number of words(32bits) which would be generated for
1525 * the given input.
1526 *
1527 * NOTE:
1528 * If the return value is greater than @size, the resulting bin_buf is NOT
1529 * valid for bstr_printf().
1530 */
1531int vbin_printf(u32 *bin_buf, size_t size, const char *fmt, va_list args)
1532{
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001533 struct printf_spec spec = {0};
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001534 char *str, *end;
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001535
1536 str = (char *)bin_buf;
1537 end = (char *)(bin_buf + size);
1538
1539#define save_arg(type) \
1540do { \
1541 if (sizeof(type) == 8) { \
1542 unsigned long long value; \
1543 str = PTR_ALIGN(str, sizeof(u32)); \
1544 value = va_arg(args, unsigned long long); \
1545 if (str + sizeof(type) <= end) { \
1546 *(u32 *)str = *(u32 *)&value; \
1547 *(u32 *)(str + 4) = *((u32 *)&value + 1); \
1548 } \
1549 } else { \
1550 unsigned long value; \
1551 str = PTR_ALIGN(str, sizeof(type)); \
1552 value = va_arg(args, int); \
1553 if (str + sizeof(type) <= end) \
1554 *(typeof(type) *)str = (type)value; \
1555 } \
1556 str += sizeof(type); \
1557} while (0)
1558
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001559 while (*fmt) {
André Goddard Rosad4be1512009-12-14 18:00:59 -08001560 int read = format_decode(fmt, &spec);
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001561
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001562 fmt += read;
1563
1564 switch (spec.type) {
1565 case FORMAT_TYPE_NONE:
André Goddard Rosad4be1512009-12-14 18:00:59 -08001566 case FORMAT_TYPE_INVALID:
1567 case FORMAT_TYPE_PERCENT_CHAR:
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001568 break;
1569
Vegard Nossumed681a92009-03-14 12:08:50 +01001570 case FORMAT_TYPE_WIDTH:
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001571 case FORMAT_TYPE_PRECISION:
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001572 save_arg(int);
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001573 break;
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001574
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001575 case FORMAT_TYPE_CHAR:
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001576 save_arg(char);
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001577 break;
1578
1579 case FORMAT_TYPE_STR: {
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001580 const char *save_str = va_arg(args, char *);
1581 size_t len;
André Goddard Rosa6c356632009-12-14 18:00:56 -08001582
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001583 if ((unsigned long)save_str > (unsigned long)-PAGE_SIZE
1584 || (unsigned long)save_str < PAGE_SIZE)
André Goddard Rosa0f4f81d2009-12-14 18:00:55 -08001585 save_str = "(null)";
André Goddard Rosa6c356632009-12-14 18:00:56 -08001586 len = strlen(save_str) + 1;
1587 if (str + len < end)
1588 memcpy(str, save_str, len);
1589 str += len;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001590 break;
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001591 }
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001592
1593 case FORMAT_TYPE_PTR:
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001594 save_arg(void *);
1595 /* skip all alphanumeric pointer suffixes */
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001596 while (isalnum(*fmt))
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001597 fmt++;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001598 break;
1599
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001600 case FORMAT_TYPE_NRCHARS: {
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001601 /* skip %n 's argument */
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001602 int qualifier = spec.qualifier;
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001603 void *skip_arg;
1604 if (qualifier == 'l')
1605 skip_arg = va_arg(args, long *);
André Goddard Rosa08562cb2009-12-14 18:00:58 -08001606 else if (TOLOWER(qualifier) == 'z')
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001607 skip_arg = va_arg(args, size_t *);
1608 else
1609 skip_arg = va_arg(args, int *);
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001610 break;
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001611 }
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001612
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001613 default:
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001614 switch (spec.type) {
1615
1616 case FORMAT_TYPE_LONG_LONG:
1617 save_arg(long long);
1618 break;
1619 case FORMAT_TYPE_ULONG:
1620 case FORMAT_TYPE_LONG:
1621 save_arg(unsigned long);
1622 break;
1623 case FORMAT_TYPE_SIZE_T:
1624 save_arg(size_t);
1625 break;
1626 case FORMAT_TYPE_PTRDIFF:
1627 save_arg(ptrdiff_t);
1628 break;
Zhaoleia4e94ef2009-03-27 17:07:05 +08001629 case FORMAT_TYPE_UBYTE:
1630 case FORMAT_TYPE_BYTE:
1631 save_arg(char);
1632 break;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001633 case FORMAT_TYPE_USHORT:
1634 case FORMAT_TYPE_SHORT:
1635 save_arg(short);
1636 break;
1637 default:
1638 save_arg(int);
1639 }
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001640 }
1641 }
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001642
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001643 return (u32 *)(PTR_ALIGN(str, sizeof(u32))) - bin_buf;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001644#undef save_arg
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001645}
1646EXPORT_SYMBOL_GPL(vbin_printf);
1647
1648/**
1649 * bstr_printf - Format a string from binary arguments and place it in a buffer
1650 * @buf: The buffer to place the result into
1651 * @size: The size of the buffer, including the trailing null space
1652 * @fmt: The format string to use
1653 * @bin_buf: Binary arguments for the format string
1654 *
1655 * This function like C99 vsnprintf, but the difference is that vsnprintf gets
1656 * arguments from stack, and bstr_printf gets arguments from @bin_buf which is
1657 * a binary buffer that generated by vbin_printf.
1658 *
1659 * The format follows C99 vsnprintf, but has some extensions:
Steven Rostedt0efb4d22009-09-17 09:27:29 -04001660 * see vsnprintf comment for details.
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001661 *
1662 * The return value is the number of characters which would
1663 * be generated for the given input, excluding the trailing
1664 * '\0', as per ISO C99. If you want to have the exact
1665 * number of characters written into @buf as return value
1666 * (not including the trailing '\0'), use vscnprintf(). If the
1667 * return is greater than or equal to @size, the resulting
1668 * string is truncated.
1669 */
1670int bstr_printf(char *buf, size_t size, const char *fmt, const u32 *bin_buf)
1671{
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001672 struct printf_spec spec = {0};
André Goddard Rosad4be1512009-12-14 18:00:59 -08001673 char *str, *end;
1674 const char *args = (const char *)bin_buf;
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001675
Marcin Slusarz2f30b1f92009-09-21 17:04:29 -07001676 if (WARN_ON_ONCE((int) size < 0))
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001677 return 0;
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001678
1679 str = buf;
1680 end = buf + size;
1681
1682#define get_arg(type) \
1683({ \
1684 typeof(type) value; \
1685 if (sizeof(type) == 8) { \
1686 args = PTR_ALIGN(args, sizeof(u32)); \
1687 *(u32 *)&value = *(u32 *)args; \
1688 *((u32 *)&value + 1) = *(u32 *)(args + 4); \
1689 } else { \
1690 args = PTR_ALIGN(args, sizeof(type)); \
1691 value = *(typeof(type) *)args; \
1692 } \
1693 args += sizeof(type); \
1694 value; \
1695})
1696
1697 /* Make sure end is always >= buf */
1698 if (end < buf) {
1699 end = ((void *)-1);
1700 size = end - buf;
1701 }
1702
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001703 while (*fmt) {
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001704 const char *old_fmt = fmt;
André Goddard Rosad4be1512009-12-14 18:00:59 -08001705 int read = format_decode(fmt, &spec);
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001706
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001707 fmt += read;
1708
1709 switch (spec.type) {
1710 case FORMAT_TYPE_NONE: {
1711 int copy = read;
1712 if (str < end) {
1713 if (copy > end - str)
1714 copy = end - str;
1715 memcpy(str, old_fmt, copy);
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001716 }
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001717 str += read;
1718 break;
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001719 }
1720
Vegard Nossumed681a92009-03-14 12:08:50 +01001721 case FORMAT_TYPE_WIDTH:
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001722 spec.field_width = get_arg(int);
1723 break;
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001724
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001725 case FORMAT_TYPE_PRECISION:
1726 spec.precision = get_arg(int);
1727 break;
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001728
André Goddard Rosad4be1512009-12-14 18:00:59 -08001729 case FORMAT_TYPE_CHAR: {
1730 char c;
1731
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001732 if (!(spec.flags & LEFT)) {
1733 while (--spec.field_width > 0) {
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001734 if (str < end)
1735 *str = ' ';
1736 ++str;
1737 }
1738 }
1739 c = (unsigned char) get_arg(char);
1740 if (str < end)
1741 *str = c;
1742 ++str;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001743 while (--spec.field_width > 0) {
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001744 if (str < end)
1745 *str = ' ';
1746 ++str;
1747 }
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001748 break;
André Goddard Rosad4be1512009-12-14 18:00:59 -08001749 }
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001750
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001751 case FORMAT_TYPE_STR: {
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001752 const char *str_arg = args;
André Goddard Rosad4be1512009-12-14 18:00:59 -08001753 args += strlen(str_arg) + 1;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001754 str = string(str, end, (char *)str_arg, spec);
1755 break;
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001756 }
1757
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001758 case FORMAT_TYPE_PTR:
1759 str = pointer(fmt+1, str, end, get_arg(void *), spec);
1760 while (isalnum(*fmt))
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001761 fmt++;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001762 break;
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001763
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001764 case FORMAT_TYPE_PERCENT_CHAR:
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001765 case FORMAT_TYPE_INVALID:
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001766 if (str < end)
1767 *str = '%';
1768 ++str;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001769 break;
1770
1771 case FORMAT_TYPE_NRCHARS:
1772 /* skip */
1773 break;
1774
André Goddard Rosad4be1512009-12-14 18:00:59 -08001775 default: {
1776 unsigned long long num;
1777
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001778 switch (spec.type) {
1779
1780 case FORMAT_TYPE_LONG_LONG:
1781 num = get_arg(long long);
1782 break;
1783 case FORMAT_TYPE_ULONG:
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001784 case FORMAT_TYPE_LONG:
1785 num = get_arg(unsigned long);
1786 break;
1787 case FORMAT_TYPE_SIZE_T:
1788 num = get_arg(size_t);
1789 break;
1790 case FORMAT_TYPE_PTRDIFF:
1791 num = get_arg(ptrdiff_t);
1792 break;
Zhaoleia4e94ef2009-03-27 17:07:05 +08001793 case FORMAT_TYPE_UBYTE:
1794 num = get_arg(unsigned char);
1795 break;
1796 case FORMAT_TYPE_BYTE:
1797 num = get_arg(signed char);
1798 break;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001799 case FORMAT_TYPE_USHORT:
1800 num = get_arg(unsigned short);
1801 break;
1802 case FORMAT_TYPE_SHORT:
1803 num = get_arg(short);
1804 break;
1805 case FORMAT_TYPE_UINT:
1806 num = get_arg(unsigned int);
1807 break;
1808 default:
1809 num = get_arg(int);
1810 }
1811
1812 str = number(str, end, num, spec);
André Goddard Rosad4be1512009-12-14 18:00:59 -08001813 } /* default: */
1814 } /* switch(spec.type) */
1815 } /* while(*fmt) */
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001816
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001817 if (size > 0) {
1818 if (str < end)
1819 *str = '\0';
1820 else
1821 end[-1] = '\0';
1822 }
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001823
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001824#undef get_arg
1825
1826 /* the trailing null byte doesn't count towards the total */
1827 return str - buf;
1828}
1829EXPORT_SYMBOL_GPL(bstr_printf);
1830
1831/**
1832 * bprintf - Parse a format string and place args' binary value in a buffer
1833 * @bin_buf: The buffer to place args' binary value
1834 * @size: The size of the buffer(by words(32bits), not characters)
1835 * @fmt: The format string to use
1836 * @...: Arguments for the format string
1837 *
1838 * The function returns the number of words(u32) written
1839 * into @bin_buf.
1840 */
1841int bprintf(u32 *bin_buf, size_t size, const char *fmt, ...)
1842{
1843 va_list args;
1844 int ret;
1845
1846 va_start(args, fmt);
1847 ret = vbin_printf(bin_buf, size, fmt, args);
1848 va_end(args);
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001849
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001850 return ret;
1851}
1852EXPORT_SYMBOL_GPL(bprintf);
1853
1854#endif /* CONFIG_BINARY_PRINTF */
1855
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856/**
1857 * vsscanf - Unformat a buffer into a list of arguments
1858 * @buf: input buffer
1859 * @fmt: format of buffer
1860 * @args: arguments
1861 */
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001862int vsscanf(const char *buf, const char *fmt, va_list args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863{
1864 const char *str = buf;
1865 char *next;
1866 char digit;
1867 int num = 0;
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001868 int qualifier, base, field_width;
André Goddard Rosad4be1512009-12-14 18:00:59 -08001869 bool is_sign;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001871 while (*fmt && *str) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 /* skip any white space in format */
1873 /* white space in format matchs any amount of
1874 * white space, including none, in the input.
1875 */
1876 if (isspace(*fmt)) {
André Goddard Rosae7d28602009-12-14 18:01:06 -08001877 fmt = skip_spaces(++fmt);
1878 str = skip_spaces(str);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 }
1880
1881 /* anything that is not a conversion must match exactly */
1882 if (*fmt != '%' && *fmt) {
1883 if (*fmt++ != *str++)
1884 break;
1885 continue;
1886 }
1887
1888 if (!*fmt)
1889 break;
1890 ++fmt;
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001891
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 /* skip this conversion.
1893 * advance both strings to next white space
1894 */
1895 if (*fmt == '*') {
Andy Spencer8fccae22009-10-01 15:44:27 -07001896 while (!isspace(*fmt) && *fmt != '%' && *fmt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 fmt++;
1898 while (!isspace(*str) && *str)
1899 str++;
1900 continue;
1901 }
1902
1903 /* get field width */
1904 field_width = -1;
1905 if (isdigit(*fmt))
1906 field_width = skip_atoi(&fmt);
1907
1908 /* get conversion qualifier */
1909 qualifier = -1;
André Goddard Rosa08562cb2009-12-14 18:00:58 -08001910 if (*fmt == 'h' || TOLOWER(*fmt) == 'l' ||
1911 TOLOWER(*fmt) == 'z') {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 qualifier = *fmt++;
1913 if (unlikely(qualifier == *fmt)) {
1914 if (qualifier == 'h') {
1915 qualifier = 'H';
1916 fmt++;
1917 } else if (qualifier == 'l') {
1918 qualifier = 'L';
1919 fmt++;
1920 }
1921 }
1922 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923
1924 if (!*fmt || !*str)
1925 break;
1926
André Goddard Rosad4be1512009-12-14 18:00:59 -08001927 base = 10;
1928 is_sign = 0;
1929
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001930 switch (*fmt++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931 case 'c':
1932 {
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001933 char *s = (char *)va_arg(args, char*);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 if (field_width == -1)
1935 field_width = 1;
1936 do {
1937 *s++ = *str++;
1938 } while (--field_width > 0 && *str);
1939 num++;
1940 }
1941 continue;
1942 case 's':
1943 {
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001944 char *s = (char *)va_arg(args, char *);
1945 if (field_width == -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 field_width = INT_MAX;
1947 /* first, skip leading white space in buffer */
André Goddard Rosae7d28602009-12-14 18:01:06 -08001948 str = skip_spaces(str);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949
1950 /* now copy until next white space */
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001951 while (*str && !isspace(*str) && field_width--)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952 *s++ = *str++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 *s = '\0';
1954 num++;
1955 }
1956 continue;
1957 case 'n':
1958 /* return number of characters read so far */
1959 {
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001960 int *i = (int *)va_arg(args, int*);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961 *i = str - buf;
1962 }
1963 continue;
1964 case 'o':
1965 base = 8;
1966 break;
1967 case 'x':
1968 case 'X':
1969 base = 16;
1970 break;
1971 case 'i':
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001972 base = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973 case 'd':
1974 is_sign = 1;
1975 case 'u':
1976 break;
1977 case '%':
1978 /* looking for '%' in str */
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001979 if (*str++ != '%')
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 return num;
1981 continue;
1982 default:
1983 /* invalid format; stop here */
1984 return num;
1985 }
1986
1987 /* have some sort of integer conversion.
1988 * first, skip white space in buffer.
1989 */
André Goddard Rosae7d28602009-12-14 18:01:06 -08001990 str = skip_spaces(str);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991
1992 digit = *str;
1993 if (is_sign && digit == '-')
1994 digit = *(str + 1);
1995
1996 if (!digit
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001997 || (base == 16 && !isxdigit(digit))
1998 || (base == 10 && !isdigit(digit))
1999 || (base == 8 && (!isdigit(digit) || digit > '7'))
2000 || (base == 0 && !isdigit(digit)))
2001 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08002003 switch (qualifier) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004 case 'H': /* that's 'hh' in format */
2005 if (is_sign) {
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08002006 signed char *s = (signed char *)va_arg(args, signed char *);
2007 *s = (signed char)simple_strtol(str, &next, base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008 } else {
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08002009 unsigned char *s = (unsigned char *)va_arg(args, unsigned char *);
2010 *s = (unsigned char)simple_strtoul(str, &next, base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011 }
2012 break;
2013 case 'h':
2014 if (is_sign) {
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08002015 short *s = (short *)va_arg(args, short *);
2016 *s = (short)simple_strtol(str, &next, base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 } else {
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08002018 unsigned short *s = (unsigned short *)va_arg(args, unsigned short *);
2019 *s = (unsigned short)simple_strtoul(str, &next, base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020 }
2021 break;
2022 case 'l':
2023 if (is_sign) {
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08002024 long *l = (long *)va_arg(args, long *);
2025 *l = simple_strtol(str, &next, base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026 } else {
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08002027 unsigned long *l = (unsigned long *)va_arg(args, unsigned long *);
2028 *l = simple_strtoul(str, &next, base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029 }
2030 break;
2031 case 'L':
2032 if (is_sign) {
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08002033 long long *l = (long long *)va_arg(args, long long *);
2034 *l = simple_strtoll(str, &next, base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 } else {
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08002036 unsigned long long *l = (unsigned long long *)va_arg(args, unsigned long long *);
2037 *l = simple_strtoull(str, &next, base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038 }
2039 break;
2040 case 'Z':
2041 case 'z':
2042 {
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08002043 size_t *s = (size_t *)va_arg(args, size_t *);
2044 *s = (size_t)simple_strtoul(str, &next, base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045 }
2046 break;
2047 default:
2048 if (is_sign) {
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08002049 int *i = (int *)va_arg(args, int *);
2050 *i = (int)simple_strtol(str, &next, base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051 } else {
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08002052 unsigned int *i = (unsigned int *)va_arg(args, unsigned int*);
2053 *i = (unsigned int)simple_strtoul(str, &next, base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054 }
2055 break;
2056 }
2057 num++;
2058
2059 if (!next)
2060 break;
2061 str = next;
2062 }
Johannes Bergc6b40d12007-05-08 00:27:20 -07002063
2064 /*
2065 * Now we've come all the way through so either the input string or the
2066 * format ended. In the former case, there can be a %n at the current
2067 * position in the format that needs to be filled.
2068 */
2069 if (*fmt == '%' && *(fmt + 1) == 'n') {
2070 int *p = (int *)va_arg(args, int *);
2071 *p = str - buf;
2072 }
2073
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074 return num;
2075}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076EXPORT_SYMBOL(vsscanf);
2077
2078/**
2079 * sscanf - Unformat a buffer into a list of arguments
2080 * @buf: input buffer
2081 * @fmt: formatting of buffer
2082 * @...: resulting arguments
2083 */
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08002084int sscanf(const char *buf, const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085{
2086 va_list args;
2087 int i;
2088
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08002089 va_start(args, fmt);
2090 i = vsscanf(buf, fmt, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091 va_end(args);
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08002092
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 return i;
2094}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095EXPORT_SYMBOL(sscanf);