blob: 0d62fd700f6893c9de2ae96bec1b6bb95531f5d6 [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>
Paul Gortmaker8bc3bcc2011-11-16 21:29:17 -050020#include <linux/module.h> /* for KSYM_SYMBOL_LEN */
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#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>
Jan Beulich53809752012-12-17 16:01:31 -080026#include <linux/math64.h>
Linus Torvalds0fe1ef22008-07-06 16:43:12 -070027#include <linux/uaccess.h>
Linus Torvalds332d2e72008-10-20 15:07:34 +110028#include <linux/ioport.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 */
James Bottomleydeac93d2008-09-03 20:43:36 -050032#include <asm/sections.h> /* for dereference_function_descriptor() */
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
Alexey Dobriyan1dff46d2011-10-31 17:12:28 -070034#include "kstrtox.h"
Harvey Harrisonaa46a632008-10-16 13:40:34 -070035
Linus Torvalds1da177e2005-04-16 15:20:36 -070036/**
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 * simple_strtoull - convert a string to an unsigned long long
38 * @cp: The start of the string
39 * @endp: A pointer to the end of the parsed string will be placed here
40 * @base: The number base to use
Eldad Zack462e4712012-12-17 16:03:05 -080041 *
42 * This function is obsolete. Please use kstrtoull instead.
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 */
Harvey Harrison22d27052008-10-16 13:40:35 -070044unsigned long long simple_strtoull(const char *cp, char **endp, unsigned int base)
Linus Torvalds1da177e2005-04-16 15:20:36 -070045{
Alexey Dobriyan1dff46d2011-10-31 17:12:28 -070046 unsigned long long result;
47 unsigned int rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Alexey Dobriyan1dff46d2011-10-31 17:12:28 -070049 cp = _parse_integer_fixup_radix(cp, &base);
50 rv = _parse_integer(cp, base, &result);
51 /* FIXME */
52 cp += (rv & ~KSTRTOX_OVERFLOW);
Harvey Harrisonaa46a632008-10-16 13:40:34 -070053
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 if (endp)
55 *endp = (char *)cp;
André Goddard Rosa7b9186f2009-12-14 18:00:57 -080056
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 return result;
58}
Linus Torvalds1da177e2005-04-16 15:20:36 -070059EXPORT_SYMBOL(simple_strtoull);
60
61/**
André Goddard Rosa922ac252009-12-14 18:01:01 -080062 * simple_strtoul - convert a string to an unsigned long
63 * @cp: The start of the string
64 * @endp: A pointer to the end of the parsed string will be placed here
65 * @base: The number base to use
Eldad Zack462e4712012-12-17 16:03:05 -080066 *
67 * This function is obsolete. Please use kstrtoul instead.
André Goddard Rosa922ac252009-12-14 18:01:01 -080068 */
69unsigned long simple_strtoul(const char *cp, char **endp, unsigned int base)
70{
71 return simple_strtoull(cp, endp, base);
72}
73EXPORT_SYMBOL(simple_strtoul);
74
75/**
76 * simple_strtol - convert a string to a signed long
77 * @cp: The start of the string
78 * @endp: A pointer to the end of the parsed string will be placed here
79 * @base: The number base to use
Eldad Zack462e4712012-12-17 16:03:05 -080080 *
81 * This function is obsolete. Please use kstrtol instead.
André Goddard Rosa922ac252009-12-14 18:01:01 -080082 */
83long simple_strtol(const char *cp, char **endp, unsigned int base)
84{
85 if (*cp == '-')
86 return -simple_strtoul(cp + 1, endp, base);
87
88 return simple_strtoul(cp, endp, base);
89}
90EXPORT_SYMBOL(simple_strtol);
91
92/**
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 * simple_strtoll - convert a string to a signed long long
94 * @cp: The start of the string
95 * @endp: A pointer to the end of the parsed string will be placed here
96 * @base: The number base to use
Eldad Zack462e4712012-12-17 16:03:05 -080097 *
98 * This function is obsolete. Please use kstrtoll instead.
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 */
Harvey Harrison22d27052008-10-16 13:40:35 -0700100long long simple_strtoll(const char *cp, char **endp, unsigned int base)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101{
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800102 if (*cp == '-')
Harvey Harrison22d27052008-10-16 13:40:35 -0700103 return -simple_strtoull(cp + 1, endp, base);
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800104
Harvey Harrison22d27052008-10-16 13:40:35 -0700105 return simple_strtoull(cp, endp, base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106}
Hans Verkuil98d5ce02010-04-23 13:18:04 -0400107EXPORT_SYMBOL(simple_strtoll);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
Joe Perchescf3b4292010-05-24 14:33:16 -0700109static noinline_for_stack
110int skip_atoi(const char **s)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111{
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800112 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
114 while (isdigit(**s))
115 i = i*10 + *((*s)++) - '0';
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800116
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 return i;
118}
119
Denis Vlasenko4277eed2007-07-15 23:41:56 -0700120/* Decimal conversion is by far the most typical, and is used
121 * for /proc and /sys data. This directly impacts e.g. top performance
122 * with many processes running. We optimize it for speed
Denys Vlasenko133fd9f2012-05-31 16:26:08 -0700123 * using ideas described at <http://www.cs.uiowa.edu/~jones/bcd/divide.html>
124 * (with permission from the author, Douglas W. Jones).
125 */
Denis Vlasenko4277eed2007-07-15 23:41:56 -0700126
Denys Vlasenko133fd9f2012-05-31 16:26:08 -0700127#if BITS_PER_LONG != 32 || BITS_PER_LONG_LONG != 64
128/* Formats correctly any integer in [0, 999999999] */
Joe Perchescf3b4292010-05-24 14:33:16 -0700129static noinline_for_stack
Denys Vlasenko133fd9f2012-05-31 16:26:08 -0700130char *put_dec_full9(char *buf, unsigned q)
Denis Vlasenko4277eed2007-07-15 23:41:56 -0700131{
Denys Vlasenko133fd9f2012-05-31 16:26:08 -0700132 unsigned r;
Denis Vlasenko4277eed2007-07-15 23:41:56 -0700133
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800134 /*
135 * Possible ways to approx. divide by 10
Denys Vlasenko133fd9f2012-05-31 16:26:08 -0700136 * (x * 0x1999999a) >> 32 x < 1073741829 (multiply must be 64-bit)
137 * (x * 0xcccd) >> 19 x < 81920 (x < 262149 when 64-bit mul)
138 * (x * 0x6667) >> 18 x < 43699
139 * (x * 0x3334) >> 17 x < 16389
140 * (x * 0x199a) >> 16 x < 16389
141 * (x * 0x0ccd) >> 15 x < 16389
142 * (x * 0x0667) >> 14 x < 2739
143 * (x * 0x0334) >> 13 x < 1029
144 * (x * 0x019a) >> 12 x < 1029
145 * (x * 0x00cd) >> 11 x < 1029 shorter code than * 0x67 (on i386)
146 * (x * 0x0067) >> 10 x < 179
147 * (x * 0x0034) >> 9 x < 69 same
148 * (x * 0x001a) >> 8 x < 69 same
149 * (x * 0x000d) >> 7 x < 69 same, shortest code (on i386)
150 * (x * 0x0007) >> 6 x < 19
151 * See <http://www.cs.uiowa.edu/~jones/bcd/divide.html>
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800152 */
Denys Vlasenko133fd9f2012-05-31 16:26:08 -0700153 r = (q * (uint64_t)0x1999999a) >> 32;
154 *buf++ = (q - 10 * r) + '0'; /* 1 */
155 q = (r * (uint64_t)0x1999999a) >> 32;
156 *buf++ = (r - 10 * q) + '0'; /* 2 */
157 r = (q * (uint64_t)0x1999999a) >> 32;
158 *buf++ = (q - 10 * r) + '0'; /* 3 */
159 q = (r * (uint64_t)0x1999999a) >> 32;
160 *buf++ = (r - 10 * q) + '0'; /* 4 */
161 r = (q * (uint64_t)0x1999999a) >> 32;
162 *buf++ = (q - 10 * r) + '0'; /* 5 */
163 /* Now value is under 10000, can avoid 64-bit multiply */
164 q = (r * 0x199a) >> 16;
165 *buf++ = (r - 10 * q) + '0'; /* 6 */
166 r = (q * 0xcd) >> 11;
167 *buf++ = (q - 10 * r) + '0'; /* 7 */
168 q = (r * 0xcd) >> 11;
169 *buf++ = (r - 10 * q) + '0'; /* 8 */
170 *buf++ = q + '0'; /* 9 */
171 return buf;
172}
173#endif
Denis Vlasenko4277eed2007-07-15 23:41:56 -0700174
Denys Vlasenko133fd9f2012-05-31 16:26:08 -0700175/* Similar to above but do not pad with zeros.
176 * Code can be easily arranged to print 9 digits too, but our callers
177 * always call put_dec_full9() instead when the number has 9 decimal digits.
178 */
179static noinline_for_stack
180char *put_dec_trunc8(char *buf, unsigned r)
181{
182 unsigned q;
Denis Vlasenko4277eed2007-07-15 23:41:56 -0700183
Denys Vlasenko133fd9f2012-05-31 16:26:08 -0700184 /* Copy of previous function's body with added early returns */
George Spelvincb239d02012-10-04 17:12:30 -0700185 while (r >= 10000) {
186 q = r + '0';
187 r = (r * (uint64_t)0x1999999a) >> 32;
188 *buf++ = q - 10*r;
189 }
190
George Spelvinf4000512012-10-04 17:12:32 -0700191 q = (r * 0x199a) >> 16; /* r <= 9999 */
192 *buf++ = (r - 10 * q) + '0';
Denys Vlasenko133fd9f2012-05-31 16:26:08 -0700193 if (q == 0)
194 return buf;
George Spelvinf4000512012-10-04 17:12:32 -0700195 r = (q * 0xcd) >> 11; /* q <= 999 */
196 *buf++ = (q - 10 * r) + '0';
Denys Vlasenko133fd9f2012-05-31 16:26:08 -0700197 if (r == 0)
198 return buf;
George Spelvinf4000512012-10-04 17:12:32 -0700199 q = (r * 0xcd) >> 11; /* r <= 99 */
200 *buf++ = (r - 10 * q) + '0';
Denys Vlasenko133fd9f2012-05-31 16:26:08 -0700201 if (q == 0)
202 return buf;
George Spelvinf4000512012-10-04 17:12:32 -0700203 *buf++ = q + '0'; /* q <= 9 */
Denys Vlasenko133fd9f2012-05-31 16:26:08 -0700204 return buf;
205}
206
207/* There are two algorithms to print larger numbers.
208 * One is generic: divide by 1000000000 and repeatedly print
209 * groups of (up to) 9 digits. It's conceptually simple,
210 * but requires a (unsigned long long) / 1000000000 division.
211 *
212 * Second algorithm splits 64-bit unsigned long long into 16-bit chunks,
213 * manipulates them cleverly and generates groups of 4 decimal digits.
214 * It so happens that it does NOT require long long division.
215 *
216 * If long is > 32 bits, division of 64-bit values is relatively easy,
217 * and we will use the first algorithm.
218 * If long long is > 64 bits (strange architecture with VERY large long long),
219 * second algorithm can't be used, and we again use the first one.
220 *
221 * Else (if long is 32 bits and long long is 64 bits) we use second one.
222 */
223
224#if BITS_PER_LONG != 32 || BITS_PER_LONG_LONG != 64
225
226/* First algorithm: generic */
227
228static
229char *put_dec(char *buf, unsigned long long n)
230{
231 if (n >= 100*1000*1000) {
232 while (n >= 1000*1000*1000)
233 buf = put_dec_full9(buf, do_div(n, 1000*1000*1000));
234 if (n >= 100*1000*1000)
235 return put_dec_full9(buf, n);
236 }
237 return put_dec_trunc8(buf, n);
238}
239
240#else
241
242/* Second algorithm: valid only for 64-bit long longs */
243
George Spelvine49317d2012-10-04 17:12:27 -0700244/* See comment in put_dec_full9 for choice of constants */
Denys Vlasenko133fd9f2012-05-31 16:26:08 -0700245static noinline_for_stack
George Spelvin23591722012-10-04 17:12:29 -0700246void put_dec_full4(char *buf, unsigned q)
Denys Vlasenko133fd9f2012-05-31 16:26:08 -0700247{
248 unsigned r;
George Spelvine49317d2012-10-04 17:12:27 -0700249 r = (q * 0xccd) >> 15;
George Spelvin23591722012-10-04 17:12:29 -0700250 buf[0] = (q - 10 * r) + '0';
George Spelvine49317d2012-10-04 17:12:27 -0700251 q = (r * 0xcd) >> 11;
George Spelvin23591722012-10-04 17:12:29 -0700252 buf[1] = (r - 10 * q) + '0';
Denys Vlasenko133fd9f2012-05-31 16:26:08 -0700253 r = (q * 0xcd) >> 11;
George Spelvin23591722012-10-04 17:12:29 -0700254 buf[2] = (q - 10 * r) + '0';
255 buf[3] = r + '0';
256}
257
258/*
259 * Call put_dec_full4 on x % 10000, return x / 10000.
260 * The approximation x/10000 == (x * 0x346DC5D7) >> 43
261 * holds for all x < 1,128,869,999. The largest value this
262 * helper will ever be asked to convert is 1,125,520,955.
263 * (d1 in the put_dec code, assuming n is all-ones).
264 */
265static
266unsigned put_dec_helper4(char *buf, unsigned x)
267{
268 uint32_t q = (x * (uint64_t)0x346DC5D7) >> 43;
269
270 put_dec_full4(buf, x - q * 10000);
271 return q;
Denys Vlasenko133fd9f2012-05-31 16:26:08 -0700272}
273
274/* Based on code by Douglas W. Jones found at
275 * <http://www.cs.uiowa.edu/~jones/bcd/decimal.html#sixtyfour>
276 * (with permission from the author).
277 * Performs no 64-bit division and hence should be fast on 32-bit machines.
278 */
279static
280char *put_dec(char *buf, unsigned long long n)
281{
282 uint32_t d3, d2, d1, q, h;
283
284 if (n < 100*1000*1000)
285 return put_dec_trunc8(buf, n);
286
287 d1 = ((uint32_t)n >> 16); /* implicit "& 0xffff" */
288 h = (n >> 32);
289 d2 = (h ) & 0xffff;
290 d3 = (h >> 16); /* implicit "& 0xffff" */
291
292 q = 656 * d3 + 7296 * d2 + 5536 * d1 + ((uint32_t)n & 0xffff);
George Spelvin23591722012-10-04 17:12:29 -0700293 q = put_dec_helper4(buf, q);
Denys Vlasenko133fd9f2012-05-31 16:26:08 -0700294
George Spelvin23591722012-10-04 17:12:29 -0700295 q += 7671 * d3 + 9496 * d2 + 6 * d1;
296 q = put_dec_helper4(buf+4, q);
Denys Vlasenko133fd9f2012-05-31 16:26:08 -0700297
George Spelvin23591722012-10-04 17:12:29 -0700298 q += 4749 * d3 + 42 * d2;
299 q = put_dec_helper4(buf+8, q);
Denys Vlasenko133fd9f2012-05-31 16:26:08 -0700300
George Spelvin23591722012-10-04 17:12:29 -0700301 q += 281 * d3;
302 buf += 12;
303 if (q)
304 buf = put_dec_trunc8(buf, q);
305 else while (buf[-1] == '0')
Denys Vlasenko133fd9f2012-05-31 16:26:08 -0700306 --buf;
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800307
Denis Vlasenko4277eed2007-07-15 23:41:56 -0700308 return buf;
309}
Denys Vlasenko133fd9f2012-05-31 16:26:08 -0700310
311#endif
Denis Vlasenko4277eed2007-07-15 23:41:56 -0700312
KAMEZAWA Hiroyuki1ac101a2012-03-23 15:02:54 -0700313/*
314 * Convert passed number to decimal string.
315 * Returns the length of string. On buffer overflow, returns 0.
316 *
317 * If speed is not important, use snprintf(). It's easy to read the code.
318 */
319int num_to_str(char *buf, int size, unsigned long long num)
320{
Denys Vlasenko133fd9f2012-05-31 16:26:08 -0700321 char tmp[sizeof(num) * 3];
KAMEZAWA Hiroyuki1ac101a2012-03-23 15:02:54 -0700322 int idx, len;
323
Denys Vlasenko133fd9f2012-05-31 16:26:08 -0700324 /* put_dec() may work incorrectly for num = 0 (generate "", not "0") */
325 if (num <= 9) {
326 tmp[0] = '0' + num;
327 len = 1;
328 } else {
329 len = put_dec(tmp, num) - tmp;
330 }
KAMEZAWA Hiroyuki1ac101a2012-03-23 15:02:54 -0700331
332 if (len > size)
333 return 0;
334 for (idx = 0; idx < len; ++idx)
335 buf[idx] = tmp[len - idx - 1];
Denys Vlasenko133fd9f2012-05-31 16:26:08 -0700336 return len;
KAMEZAWA Hiroyuki1ac101a2012-03-23 15:02:54 -0700337}
338
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339#define ZEROPAD 1 /* pad with zero */
340#define SIGN 2 /* unsigned/signed long */
341#define PLUS 4 /* show plus */
342#define SPACE 8 /* space if plus */
343#define LEFT 16 /* left justified */
Bjorn Helgaasb89dc5d2010-03-05 10:47:31 -0700344#define SMALL 32 /* use lowercase in hex (must be 32 == 0x20) */
345#define SPECIAL 64 /* prefix hex with "0x", octal with "0" */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100347enum format_type {
348 FORMAT_TYPE_NONE, /* Just a string part */
Vegard Nossumed681a92009-03-14 12:08:50 +0100349 FORMAT_TYPE_WIDTH,
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100350 FORMAT_TYPE_PRECISION,
351 FORMAT_TYPE_CHAR,
352 FORMAT_TYPE_STR,
353 FORMAT_TYPE_PTR,
354 FORMAT_TYPE_PERCENT_CHAR,
355 FORMAT_TYPE_INVALID,
356 FORMAT_TYPE_LONG_LONG,
357 FORMAT_TYPE_ULONG,
358 FORMAT_TYPE_LONG,
Zhaoleia4e94ef2009-03-27 17:07:05 +0800359 FORMAT_TYPE_UBYTE,
360 FORMAT_TYPE_BYTE,
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100361 FORMAT_TYPE_USHORT,
362 FORMAT_TYPE_SHORT,
363 FORMAT_TYPE_UINT,
364 FORMAT_TYPE_INT,
365 FORMAT_TYPE_NRCHARS,
366 FORMAT_TYPE_SIZE_T,
367 FORMAT_TYPE_PTRDIFF
368};
369
370struct printf_spec {
Joe Perches4e310fd2010-04-14 09:27:40 -0700371 u8 type; /* format_type enum */
Joe Perchesef0658f2010-03-06 17:10:14 -0800372 u8 flags; /* flags to number() */
Joe Perches4e310fd2010-04-14 09:27:40 -0700373 u8 base; /* number base, 8, 10 or 16 only */
374 u8 qualifier; /* number qualifier, one of 'hHlLtzZ' */
375 s16 field_width; /* width of output field */
376 s16 precision; /* # of digits/chars */
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100377};
378
Joe Perchescf3b4292010-05-24 14:33:16 -0700379static noinline_for_stack
380char *number(char *buf, char *end, unsigned long long num,
381 struct printf_spec spec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382{
Denys Vlasenko9b706ae2008-02-09 23:24:09 +0100383 /* we are called with base 8, 10 or 16, only, thus don't need "G..." */
384 static const char digits[16] = "0123456789ABCDEF"; /* "GHIJKLMNOPQRSTUVWXYZ"; */
385
386 char tmp[66];
387 char sign;
388 char locase;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100389 int need_pfx = ((spec.flags & SPECIAL) && spec.base != 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 int i;
Pierre Carrier7c203422012-05-29 15:07:35 -0700391 bool is_zero = num == 0LL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
Denys Vlasenko9b706ae2008-02-09 23:24:09 +0100393 /* locase = 0 or 0x20. ORing digits or letters with 'locase'
394 * produces same digits or (maybe lowercased) letters */
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100395 locase = (spec.flags & SMALL);
396 if (spec.flags & LEFT)
397 spec.flags &= ~ZEROPAD;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 sign = 0;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100399 if (spec.flags & SIGN) {
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800400 if ((signed long long)num < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 sign = '-';
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800402 num = -(signed long long)num;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100403 spec.field_width--;
404 } else if (spec.flags & PLUS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 sign = '+';
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100406 spec.field_width--;
407 } else if (spec.flags & SPACE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 sign = ' ';
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100409 spec.field_width--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 }
411 }
Denis Vlasenkob39a7342007-07-15 23:41:54 -0700412 if (need_pfx) {
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100413 if (spec.base == 16)
Pierre Carrier7c203422012-05-29 15:07:35 -0700414 spec.field_width -= 2;
415 else if (!is_zero)
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100416 spec.field_width--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 }
Denis Vlasenkob39a7342007-07-15 23:41:54 -0700418
419 /* generate full string in tmp[], in reverse order */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 i = 0;
Denys Vlasenko133fd9f2012-05-31 16:26:08 -0700421 if (num < spec.base)
422 tmp[i++] = digits[num] | locase;
Denis Vlasenko4277eed2007-07-15 23:41:56 -0700423 /* Generic code, for any base:
424 else do {
Denys Vlasenko9b706ae2008-02-09 23:24:09 +0100425 tmp[i++] = (digits[do_div(num,base)] | locase);
Denis Vlasenko4277eed2007-07-15 23:41:56 -0700426 } while (num != 0);
427 */
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100428 else if (spec.base != 10) { /* 8 or 16 */
429 int mask = spec.base - 1;
Denis Vlasenkob39a7342007-07-15 23:41:54 -0700430 int shift = 3;
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800431
432 if (spec.base == 16)
433 shift = 4;
Denis Vlasenkob39a7342007-07-15 23:41:54 -0700434 do {
Denys Vlasenko9b706ae2008-02-09 23:24:09 +0100435 tmp[i++] = (digits[((unsigned char)num) & mask] | locase);
Denis Vlasenkob39a7342007-07-15 23:41:54 -0700436 num >>= shift;
437 } while (num);
Denis Vlasenko4277eed2007-07-15 23:41:56 -0700438 } else { /* base 10 */
439 i = put_dec(tmp, num) - tmp;
440 }
Denis Vlasenkob39a7342007-07-15 23:41:54 -0700441
442 /* printing 100 using %2d gives "100", not "00" */
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100443 if (i > spec.precision)
444 spec.precision = i;
Denis Vlasenkob39a7342007-07-15 23:41:54 -0700445 /* leading space padding */
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100446 spec.field_width -= spec.precision;
447 if (!(spec.flags & (ZEROPAD+LEFT))) {
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800448 while (--spec.field_width >= 0) {
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -0700449 if (buf < end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 *buf = ' ';
451 ++buf;
452 }
453 }
Denis Vlasenkob39a7342007-07-15 23:41:54 -0700454 /* sign */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 if (sign) {
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -0700456 if (buf < end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 *buf = sign;
458 ++buf;
459 }
Denis Vlasenkob39a7342007-07-15 23:41:54 -0700460 /* "0x" / "0" prefix */
461 if (need_pfx) {
Pierre Carrier7c203422012-05-29 15:07:35 -0700462 if (spec.base == 16 || !is_zero) {
463 if (buf < end)
464 *buf = '0';
465 ++buf;
466 }
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100467 if (spec.base == 16) {
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -0700468 if (buf < end)
Denys Vlasenko9b706ae2008-02-09 23:24:09 +0100469 *buf = ('X' | locase);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 ++buf;
471 }
472 }
Denis Vlasenkob39a7342007-07-15 23:41:54 -0700473 /* zero or space padding */
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100474 if (!(spec.flags & LEFT)) {
475 char c = (spec.flags & ZEROPAD) ? '0' : ' ';
476 while (--spec.field_width >= 0) {
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -0700477 if (buf < end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 *buf = c;
479 ++buf;
480 }
481 }
Denis Vlasenkob39a7342007-07-15 23:41:54 -0700482 /* hmm even more zero padding? */
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100483 while (i <= --spec.precision) {
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -0700484 if (buf < end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 *buf = '0';
486 ++buf;
487 }
Denis Vlasenkob39a7342007-07-15 23:41:54 -0700488 /* actual digits of result */
489 while (--i >= 0) {
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -0700490 if (buf < end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 *buf = tmp[i];
492 ++buf;
493 }
Denis Vlasenkob39a7342007-07-15 23:41:54 -0700494 /* trailing space padding */
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100495 while (--spec.field_width >= 0) {
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -0700496 if (buf < end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 *buf = ' ';
498 ++buf;
499 }
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800500
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 return buf;
502}
503
Joe Perchescf3b4292010-05-24 14:33:16 -0700504static noinline_for_stack
505char *string(char *buf, char *end, const char *s, struct printf_spec spec)
Linus Torvalds0f9bfa52008-07-06 16:06:25 -0700506{
507 int len, i;
508
509 if ((unsigned long)s < PAGE_SIZE)
André Goddard Rosa0f4f81d2009-12-14 18:00:55 -0800510 s = "(null)";
Linus Torvalds0f9bfa52008-07-06 16:06:25 -0700511
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100512 len = strnlen(s, spec.precision);
Linus Torvalds0f9bfa52008-07-06 16:06:25 -0700513
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100514 if (!(spec.flags & LEFT)) {
515 while (len < spec.field_width--) {
Linus Torvalds0f9bfa52008-07-06 16:06:25 -0700516 if (buf < end)
517 *buf = ' ';
518 ++buf;
519 }
520 }
521 for (i = 0; i < len; ++i) {
522 if (buf < end)
523 *buf = *s;
524 ++buf; ++s;
525 }
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100526 while (len < spec.field_width--) {
Linus Torvalds0f9bfa52008-07-06 16:06:25 -0700527 if (buf < end)
528 *buf = ' ';
529 ++buf;
530 }
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800531
Linus Torvalds0f9bfa52008-07-06 16:06:25 -0700532 return buf;
533}
534
Joe Perchescf3b4292010-05-24 14:33:16 -0700535static noinline_for_stack
536char *symbol_string(char *buf, char *end, void *ptr,
537 struct printf_spec spec, char ext)
Linus Torvalds0fe1ef22008-07-06 16:43:12 -0700538{
539 unsigned long value = (unsigned long) ptr;
540#ifdef CONFIG_KALLSYMS
541 char sym[KSYM_SYMBOL_LEN];
Namhyung Kim0f77a8d2011-03-24 11:42:29 +0900542 if (ext == 'B')
543 sprint_backtrace(sym, value);
544 else if (ext != 'f' && ext != 's')
Frederic Weisbecker0c8b9462009-04-15 17:48:18 +0200545 sprint_symbol(sym, value);
546 else
Stephen Boyd4796dd22012-05-29 15:07:33 -0700547 sprint_symbol_no_offset(sym, value);
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800548
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100549 return string(buf, end, sym, spec);
Linus Torvalds0fe1ef22008-07-06 16:43:12 -0700550#else
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800551 spec.field_width = 2 * sizeof(void *);
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100552 spec.flags |= SPECIAL | SMALL | ZEROPAD;
553 spec.base = 16;
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800554
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100555 return number(buf, end, value, spec);
Linus Torvalds0fe1ef22008-07-06 16:43:12 -0700556#endif
557}
558
Joe Perchescf3b4292010-05-24 14:33:16 -0700559static noinline_for_stack
560char *resource_string(char *buf, char *end, struct resource *res,
561 struct printf_spec spec, const char *fmt)
Linus Torvalds332d2e72008-10-20 15:07:34 +1100562{
563#ifndef IO_RSRC_PRINTK_SIZE
Bjorn Helgaas28405372009-10-06 15:33:29 -0600564#define IO_RSRC_PRINTK_SIZE 6
Linus Torvalds332d2e72008-10-20 15:07:34 +1100565#endif
566
567#ifndef MEM_RSRC_PRINTK_SIZE
Bjorn Helgaas28405372009-10-06 15:33:29 -0600568#define MEM_RSRC_PRINTK_SIZE 10
Linus Torvalds332d2e72008-10-20 15:07:34 +1100569#endif
Bjorn Helgaas4da0b662010-03-05 10:47:37 -0700570 static const struct printf_spec io_spec = {
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100571 .base = 16,
Bjorn Helgaas4da0b662010-03-05 10:47:37 -0700572 .field_width = IO_RSRC_PRINTK_SIZE,
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100573 .precision = -1,
574 .flags = SPECIAL | SMALL | ZEROPAD,
575 };
Bjorn Helgaas4da0b662010-03-05 10:47:37 -0700576 static const struct printf_spec mem_spec = {
577 .base = 16,
578 .field_width = MEM_RSRC_PRINTK_SIZE,
579 .precision = -1,
580 .flags = SPECIAL | SMALL | ZEROPAD,
581 };
Bjorn Helgaas0f4050c2010-03-05 10:47:42 -0700582 static const struct printf_spec bus_spec = {
583 .base = 16,
584 .field_width = 2,
585 .precision = -1,
586 .flags = SMALL | ZEROPAD,
587 };
Bjorn Helgaas4da0b662010-03-05 10:47:37 -0700588 static const struct printf_spec dec_spec = {
Bjorn Helgaasc91d3372009-10-06 15:33:34 -0600589 .base = 10,
590 .precision = -1,
591 .flags = 0,
592 };
Bjorn Helgaas4da0b662010-03-05 10:47:37 -0700593 static const struct printf_spec str_spec = {
Bjorn Helgaasfd955412009-10-06 15:33:39 -0600594 .field_width = -1,
595 .precision = 10,
596 .flags = LEFT,
597 };
Bjorn Helgaas4da0b662010-03-05 10:47:37 -0700598 static const struct printf_spec flag_spec = {
Bjorn Helgaasfd955412009-10-06 15:33:39 -0600599 .base = 16,
600 .precision = -1,
601 .flags = SPECIAL | SMALL,
602 };
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600603
604 /* 32-bit res (sizeof==4): 10 chars in dec, 10 in hex ("0x" + 8)
605 * 64-bit res (sizeof==8): 20 chars in dec, 18 in hex ("0x" + 16) */
606#define RSRC_BUF_SIZE ((2 * sizeof(resource_size_t)) + 4)
607#define FLAG_BUF_SIZE (2 * sizeof(res->flags))
Bjorn Helgaas9d7cca02010-03-05 10:47:47 -0700608#define DECODED_BUF_SIZE sizeof("[mem - 64bit pref window disabled]")
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600609#define RAW_BUF_SIZE sizeof("[mem - flags 0x]")
610 char sym[max(2*RSRC_BUF_SIZE + DECODED_BUF_SIZE,
611 2*RSRC_BUF_SIZE + FLAG_BUF_SIZE + RAW_BUF_SIZE)];
612
Linus Torvalds332d2e72008-10-20 15:07:34 +1100613 char *p = sym, *pend = sym + sizeof(sym);
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600614 int decode = (fmt[0] == 'R') ? 1 : 0;
Bjorn Helgaas4da0b662010-03-05 10:47:37 -0700615 const struct printf_spec *specp;
Linus Torvalds332d2e72008-10-20 15:07:34 +1100616
617 *p++ = '[';
Bjorn Helgaas4da0b662010-03-05 10:47:37 -0700618 if (res->flags & IORESOURCE_IO) {
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600619 p = string(p, pend, "io ", str_spec);
Bjorn Helgaas4da0b662010-03-05 10:47:37 -0700620 specp = &io_spec;
621 } else if (res->flags & IORESOURCE_MEM) {
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600622 p = string(p, pend, "mem ", str_spec);
Bjorn Helgaas4da0b662010-03-05 10:47:37 -0700623 specp = &mem_spec;
624 } else if (res->flags & IORESOURCE_IRQ) {
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600625 p = string(p, pend, "irq ", str_spec);
Bjorn Helgaas4da0b662010-03-05 10:47:37 -0700626 specp = &dec_spec;
627 } else if (res->flags & IORESOURCE_DMA) {
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600628 p = string(p, pend, "dma ", str_spec);
Bjorn Helgaas4da0b662010-03-05 10:47:37 -0700629 specp = &dec_spec;
Bjorn Helgaas0f4050c2010-03-05 10:47:42 -0700630 } else if (res->flags & IORESOURCE_BUS) {
631 p = string(p, pend, "bus ", str_spec);
632 specp = &bus_spec;
Bjorn Helgaas4da0b662010-03-05 10:47:37 -0700633 } else {
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600634 p = string(p, pend, "??? ", str_spec);
Bjorn Helgaas4da0b662010-03-05 10:47:37 -0700635 specp = &mem_spec;
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600636 decode = 0;
Bjorn Helgaasfd955412009-10-06 15:33:39 -0600637 }
Bjorn Helgaas4da0b662010-03-05 10:47:37 -0700638 p = number(p, pend, res->start, *specp);
Bjorn Helgaasc91d3372009-10-06 15:33:34 -0600639 if (res->start != res->end) {
640 *p++ = '-';
Bjorn Helgaas4da0b662010-03-05 10:47:37 -0700641 p = number(p, pend, res->end, *specp);
Bjorn Helgaasc91d3372009-10-06 15:33:34 -0600642 }
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600643 if (decode) {
Bjorn Helgaasfd955412009-10-06 15:33:39 -0600644 if (res->flags & IORESOURCE_MEM_64)
645 p = string(p, pend, " 64bit", str_spec);
646 if (res->flags & IORESOURCE_PREFETCH)
647 p = string(p, pend, " pref", str_spec);
Bjorn Helgaas9d7cca02010-03-05 10:47:47 -0700648 if (res->flags & IORESOURCE_WINDOW)
649 p = string(p, pend, " window", str_spec);
Bjorn Helgaasfd955412009-10-06 15:33:39 -0600650 if (res->flags & IORESOURCE_DISABLED)
651 p = string(p, pend, " disabled", str_spec);
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600652 } else {
653 p = string(p, pend, " flags ", str_spec);
654 p = number(p, pend, res->flags, flag_spec);
Bjorn Helgaasfd955412009-10-06 15:33:39 -0600655 }
Linus Torvalds332d2e72008-10-20 15:07:34 +1100656 *p++ = ']';
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600657 *p = '\0';
Linus Torvalds332d2e72008-10-20 15:07:34 +1100658
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100659 return string(buf, end, sym, spec);
Linus Torvalds332d2e72008-10-20 15:07:34 +1100660}
661
Joe Perchescf3b4292010-05-24 14:33:16 -0700662static noinline_for_stack
Andy Shevchenko31550a12012-07-30 14:40:27 -0700663char *hex_string(char *buf, char *end, u8 *addr, struct printf_spec spec,
664 const char *fmt)
665{
666 int i, len = 1; /* if we pass '%ph[CDN]', field witdh remains
667 negative value, fallback to the default */
668 char separator;
669
670 if (spec.field_width == 0)
671 /* nothing to print */
672 return buf;
673
674 if (ZERO_OR_NULL_PTR(addr))
675 /* NULL pointer */
676 return string(buf, end, NULL, spec);
677
678 switch (fmt[1]) {
679 case 'C':
680 separator = ':';
681 break;
682 case 'D':
683 separator = '-';
684 break;
685 case 'N':
686 separator = 0;
687 break;
688 default:
689 separator = ' ';
690 break;
691 }
692
693 if (spec.field_width > 0)
694 len = min_t(int, spec.field_width, 64);
695
696 for (i = 0; i < len && buf < end - 1; i++) {
697 buf = hex_byte_pack(buf, addr[i]);
698
699 if (buf < end && separator && i != len - 1)
700 *buf++ = separator;
701 }
702
703 return buf;
704}
705
706static noinline_for_stack
Joe Perchescf3b4292010-05-24 14:33:16 -0700707char *mac_address_string(char *buf, char *end, u8 *addr,
708 struct printf_spec spec, const char *fmt)
Harvey Harrisondd45c9c2008-10-27 15:47:12 -0700709{
Joe Perches8a27f7c2009-08-17 12:29:44 +0000710 char mac_addr[sizeof("xx:xx:xx:xx:xx:xx")];
Harvey Harrisondd45c9c2008-10-27 15:47:12 -0700711 char *p = mac_addr;
712 int i;
Joe Perchesbc7259a2010-01-07 11:43:50 +0000713 char separator;
Andrei Emeltchenko76597ff92012-07-30 14:40:23 -0700714 bool reversed = false;
Joe Perchesbc7259a2010-01-07 11:43:50 +0000715
Andrei Emeltchenko76597ff92012-07-30 14:40:23 -0700716 switch (fmt[1]) {
717 case 'F':
Joe Perchesbc7259a2010-01-07 11:43:50 +0000718 separator = '-';
Andrei Emeltchenko76597ff92012-07-30 14:40:23 -0700719 break;
720
721 case 'R':
722 reversed = true;
723 /* fall through */
724
725 default:
Joe Perchesbc7259a2010-01-07 11:43:50 +0000726 separator = ':';
Andrei Emeltchenko76597ff92012-07-30 14:40:23 -0700727 break;
Joe Perchesbc7259a2010-01-07 11:43:50 +0000728 }
Harvey Harrisondd45c9c2008-10-27 15:47:12 -0700729
730 for (i = 0; i < 6; i++) {
Andrei Emeltchenko76597ff92012-07-30 14:40:23 -0700731 if (reversed)
732 p = hex_byte_pack(p, addr[5 - i]);
733 else
734 p = hex_byte_pack(p, addr[i]);
735
Joe Perches8a27f7c2009-08-17 12:29:44 +0000736 if (fmt[0] == 'M' && i != 5)
Joe Perchesbc7259a2010-01-07 11:43:50 +0000737 *p++ = separator;
Harvey Harrisondd45c9c2008-10-27 15:47:12 -0700738 }
739 *p = '\0';
740
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100741 return string(buf, end, mac_addr, spec);
Harvey Harrisondd45c9c2008-10-27 15:47:12 -0700742}
743
Joe Perchescf3b4292010-05-24 14:33:16 -0700744static noinline_for_stack
745char *ip4_string(char *p, const u8 *addr, const char *fmt)
Harvey Harrison689afa72008-10-28 16:04:44 -0700746{
Harvey Harrison689afa72008-10-28 16:04:44 -0700747 int i;
Joe Perches0159f242010-01-13 20:23:30 -0800748 bool leading_zeros = (fmt[0] == 'i');
749 int index;
750 int step;
Harvey Harrison689afa72008-10-28 16:04:44 -0700751
Joe Perches0159f242010-01-13 20:23:30 -0800752 switch (fmt[2]) {
753 case 'h':
754#ifdef __BIG_ENDIAN
755 index = 0;
756 step = 1;
757#else
758 index = 3;
759 step = -1;
760#endif
761 break;
762 case 'l':
763 index = 3;
764 step = -1;
765 break;
766 case 'n':
767 case 'b':
768 default:
769 index = 0;
770 step = 1;
771 break;
772 }
Joe Perches8a27f7c2009-08-17 12:29:44 +0000773 for (i = 0; i < 4; i++) {
774 char temp[3]; /* hold each IP quad in reverse order */
Denys Vlasenko133fd9f2012-05-31 16:26:08 -0700775 int digits = put_dec_trunc8(temp, addr[index]) - temp;
Joe Perches8a27f7c2009-08-17 12:29:44 +0000776 if (leading_zeros) {
777 if (digits < 3)
778 *p++ = '0';
779 if (digits < 2)
780 *p++ = '0';
781 }
782 /* reverse the digits in the quad */
783 while (digits--)
784 *p++ = temp[digits];
785 if (i < 3)
786 *p++ = '.';
Joe Perches0159f242010-01-13 20:23:30 -0800787 index += step;
Joe Perches8a27f7c2009-08-17 12:29:44 +0000788 }
Joe Perches8a27f7c2009-08-17 12:29:44 +0000789 *p = '\0';
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800790
Joe Perches8a27f7c2009-08-17 12:29:44 +0000791 return p;
792}
793
Joe Perchescf3b4292010-05-24 14:33:16 -0700794static noinline_for_stack
795char *ip6_compressed_string(char *p, const char *addr)
Joe Perches8a27f7c2009-08-17 12:29:44 +0000796{
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800797 int i, j, range;
Joe Perches8a27f7c2009-08-17 12:29:44 +0000798 unsigned char zerolength[8];
799 int longest = 1;
800 int colonpos = -1;
801 u16 word;
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800802 u8 hi, lo;
Joe Perches8a27f7c2009-08-17 12:29:44 +0000803 bool needcolon = false;
Joe Percheseb78cd22009-09-18 13:04:06 +0000804 bool useIPv4;
805 struct in6_addr in6;
806
807 memcpy(&in6, addr, sizeof(struct in6_addr));
808
809 useIPv4 = ipv6_addr_v4mapped(&in6) || ipv6_addr_is_isatap(&in6);
Joe Perches8a27f7c2009-08-17 12:29:44 +0000810
811 memset(zerolength, 0, sizeof(zerolength));
812
813 if (useIPv4)
814 range = 6;
815 else
816 range = 8;
817
818 /* find position of longest 0 run */
819 for (i = 0; i < range; i++) {
820 for (j = i; j < range; j++) {
Joe Percheseb78cd22009-09-18 13:04:06 +0000821 if (in6.s6_addr16[j] != 0)
Joe Perches8a27f7c2009-08-17 12:29:44 +0000822 break;
823 zerolength[i]++;
824 }
825 }
826 for (i = 0; i < range; i++) {
827 if (zerolength[i] > longest) {
828 longest = zerolength[i];
829 colonpos = i;
830 }
831 }
Joe Perches29cf5192011-06-09 11:23:37 -0700832 if (longest == 1) /* don't compress a single 0 */
833 colonpos = -1;
Joe Perches8a27f7c2009-08-17 12:29:44 +0000834
835 /* emit address */
836 for (i = 0; i < range; i++) {
837 if (i == colonpos) {
838 if (needcolon || i == 0)
839 *p++ = ':';
840 *p++ = ':';
841 needcolon = false;
842 i += longest - 1;
843 continue;
844 }
845 if (needcolon) {
846 *p++ = ':';
847 needcolon = false;
848 }
849 /* hex u16 without leading 0s */
Joe Percheseb78cd22009-09-18 13:04:06 +0000850 word = ntohs(in6.s6_addr16[i]);
Joe Perches8a27f7c2009-08-17 12:29:44 +0000851 hi = word >> 8;
852 lo = word & 0xff;
853 if (hi) {
854 if (hi > 0x0f)
Andy Shevchenko55036ba2011-10-31 17:12:41 -0700855 p = hex_byte_pack(p, hi);
Joe Perches8a27f7c2009-08-17 12:29:44 +0000856 else
857 *p++ = hex_asc_lo(hi);
Andy Shevchenko55036ba2011-10-31 17:12:41 -0700858 p = hex_byte_pack(p, lo);
Joe Perches8a27f7c2009-08-17 12:29:44 +0000859 }
André Goddard Rosab5ff9922009-12-14 18:00:59 -0800860 else if (lo > 0x0f)
Andy Shevchenko55036ba2011-10-31 17:12:41 -0700861 p = hex_byte_pack(p, lo);
Joe Perches8a27f7c2009-08-17 12:29:44 +0000862 else
863 *p++ = hex_asc_lo(lo);
864 needcolon = true;
865 }
866
867 if (useIPv4) {
868 if (needcolon)
869 *p++ = ':';
Joe Perches0159f242010-01-13 20:23:30 -0800870 p = ip4_string(p, &in6.s6_addr[12], "I4");
Joe Perches8a27f7c2009-08-17 12:29:44 +0000871 }
Joe Perches8a27f7c2009-08-17 12:29:44 +0000872 *p = '\0';
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800873
Joe Perches8a27f7c2009-08-17 12:29:44 +0000874 return p;
875}
876
Joe Perchescf3b4292010-05-24 14:33:16 -0700877static noinline_for_stack
878char *ip6_string(char *p, const char *addr, const char *fmt)
Joe Perches8a27f7c2009-08-17 12:29:44 +0000879{
880 int i;
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800881
Harvey Harrison689afa72008-10-28 16:04:44 -0700882 for (i = 0; i < 8; i++) {
Andy Shevchenko55036ba2011-10-31 17:12:41 -0700883 p = hex_byte_pack(p, *addr++);
884 p = hex_byte_pack(p, *addr++);
Joe Perches8a27f7c2009-08-17 12:29:44 +0000885 if (fmt[0] == 'I' && i != 7)
Harvey Harrison689afa72008-10-28 16:04:44 -0700886 *p++ = ':';
887 }
888 *p = '\0';
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800889
Joe Perches8a27f7c2009-08-17 12:29:44 +0000890 return p;
891}
892
Joe Perchescf3b4292010-05-24 14:33:16 -0700893static noinline_for_stack
894char *ip6_addr_string(char *buf, char *end, const u8 *addr,
895 struct printf_spec spec, const char *fmt)
Joe Perches8a27f7c2009-08-17 12:29:44 +0000896{
897 char ip6_addr[sizeof("xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:255.255.255.255")];
898
899 if (fmt[0] == 'I' && fmt[2] == 'c')
Joe Percheseb78cd22009-09-18 13:04:06 +0000900 ip6_compressed_string(ip6_addr, addr);
Joe Perches8a27f7c2009-08-17 12:29:44 +0000901 else
Joe Percheseb78cd22009-09-18 13:04:06 +0000902 ip6_string(ip6_addr, addr, fmt);
Harvey Harrison689afa72008-10-28 16:04:44 -0700903
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100904 return string(buf, end, ip6_addr, spec);
Harvey Harrison689afa72008-10-28 16:04:44 -0700905}
906
Joe Perchescf3b4292010-05-24 14:33:16 -0700907static noinline_for_stack
908char *ip4_addr_string(char *buf, char *end, const u8 *addr,
909 struct printf_spec spec, const char *fmt)
Harvey Harrison4aa99602008-10-29 12:49:58 -0700910{
Joe Perches8a27f7c2009-08-17 12:29:44 +0000911 char ip4_addr[sizeof("255.255.255.255")];
Harvey Harrison4aa99602008-10-29 12:49:58 -0700912
Joe Perches0159f242010-01-13 20:23:30 -0800913 ip4_string(ip4_addr, addr, fmt);
Harvey Harrison4aa99602008-10-29 12:49:58 -0700914
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100915 return string(buf, end, ip4_addr, spec);
Harvey Harrison4aa99602008-10-29 12:49:58 -0700916}
917
Joe Perchescf3b4292010-05-24 14:33:16 -0700918static noinline_for_stack
919char *uuid_string(char *buf, char *end, const u8 *addr,
920 struct printf_spec spec, const char *fmt)
Joe Perches9ac6e442009-12-14 18:01:09 -0800921{
922 char uuid[sizeof("xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx")];
923 char *p = uuid;
924 int i;
925 static const u8 be[16] = {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15};
926 static const u8 le[16] = {3,2,1,0,5,4,7,6,8,9,10,11,12,13,14,15};
927 const u8 *index = be;
928 bool uc = false;
929
930 switch (*(++fmt)) {
931 case 'L':
932 uc = true; /* fall-through */
933 case 'l':
934 index = le;
935 break;
936 case 'B':
937 uc = true;
938 break;
939 }
940
941 for (i = 0; i < 16; i++) {
Andy Shevchenko55036ba2011-10-31 17:12:41 -0700942 p = hex_byte_pack(p, addr[index[i]]);
Joe Perches9ac6e442009-12-14 18:01:09 -0800943 switch (i) {
944 case 3:
945 case 5:
946 case 7:
947 case 9:
948 *p++ = '-';
949 break;
950 }
951 }
952
953 *p = 0;
954
955 if (uc) {
956 p = uuid;
957 do {
958 *p = toupper(*p);
959 } while (*(++p));
960 }
961
962 return string(buf, end, uuid, spec);
963}
964
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000965static
966char *netdev_feature_string(char *buf, char *end, const u8 *addr,
967 struct printf_spec spec)
968{
969 spec.flags |= SPECIAL | SMALL | ZEROPAD;
970 if (spec.field_width == -1)
971 spec.field_width = 2 + 2 * sizeof(netdev_features_t);
972 spec.base = 16;
973
974 return number(buf, end, *(const netdev_features_t *)addr, spec);
975}
976
Ingo Molnar411f05f2011-05-12 23:00:28 +0200977int kptr_restrict __read_mostly;
Dan Rosenberg455cd5a2011-01-12 16:59:41 -0800978
Linus Torvalds4d8a7432008-07-06 16:24:57 -0700979/*
980 * Show a '%p' thing. A kernel extension is that the '%p' is followed
981 * by an extra set of alphanumeric characters that are extended format
982 * specifiers.
983 *
Linus Torvalds332d2e72008-10-20 15:07:34 +1100984 * Right now we handle:
Linus Torvalds0fe1ef22008-07-06 16:43:12 -0700985 *
Frederic Weisbecker0c8b9462009-04-15 17:48:18 +0200986 * - 'F' For symbolic function descriptor pointers with offset
987 * - 'f' For simple symbolic function names without offset
Steven Rostedt0efb4d22009-09-17 09:27:29 -0400988 * - 'S' For symbolic direct pointers with offset
989 * - 's' For symbolic direct pointers without offset
Namhyung Kim0f77a8d2011-03-24 11:42:29 +0900990 * - 'B' For backtraced symbolic direct pointers with offset
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600991 * - 'R' For decoded struct resource, e.g., [mem 0x0-0x1f 64bit pref]
992 * - 'r' For raw struct resource, e.g., [mem 0x0-0x1f flags 0x201]
Harvey Harrisondd45c9c2008-10-27 15:47:12 -0700993 * - 'M' For a 6-byte MAC address, it prints the address in the
994 * usual colon-separated hex notation
Joe Perches8a27f7c2009-08-17 12:29:44 +0000995 * - 'm' For a 6-byte MAC address, it prints the hex address without colons
Joe Perchesbc7259a2010-01-07 11:43:50 +0000996 * - 'MF' For a 6-byte MAC FDDI address, it prints the address
Joe Perchesc8e00062010-01-11 00:44:14 -0800997 * with a dash-separated hex notation
Andy Shevchenko7c591542012-10-04 17:12:33 -0700998 * - '[mM]R' For a 6-byte MAC address, Reverse order (Bluetooth)
Joe Perches8a27f7c2009-08-17 12:29:44 +0000999 * - 'I' [46] for IPv4/IPv6 addresses printed in the usual way
1000 * IPv4 uses dot-separated decimal without leading 0's (1.2.3.4)
1001 * IPv6 uses colon separated network-order 16 bit hex with leading 0's
1002 * - 'i' [46] for 'raw' IPv4/IPv6 addresses
1003 * IPv6 omits the colons (01020304...0f)
1004 * IPv4 uses dot-separated decimal with leading 0's (010.123.045.006)
Joe Perches0159f242010-01-13 20:23:30 -08001005 * - '[Ii]4[hnbl]' IPv4 addresses in host, network, big or little endian order
Joe Perches8a27f7c2009-08-17 12:29:44 +00001006 * - 'I6c' for IPv6 addresses printed as specified by
Joe Perches29cf5192011-06-09 11:23:37 -07001007 * http://tools.ietf.org/html/rfc5952
Joe Perches9ac6e442009-12-14 18:01:09 -08001008 * - 'U' For a 16 byte UUID/GUID, it prints the UUID/GUID in the form
1009 * "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
1010 * Options for %pU are:
1011 * b big endian lower case hex (default)
1012 * B big endian UPPER case hex
1013 * l little endian lower case hex
1014 * L little endian UPPER case hex
1015 * big endian output byte order is:
1016 * [0][1][2][3]-[4][5]-[6][7]-[8][9]-[10][11][12][13][14][15]
1017 * little endian output byte order is:
1018 * [3][2][1][0]-[5][4]-[7][6]-[8][9]-[10][11][12][13][14][15]
Joe Perches7db6f5f2010-06-27 01:02:33 +00001019 * - 'V' For a struct va_format which contains a format string * and va_list *,
1020 * call vsnprintf(->format, *->va_list).
1021 * Implements a "recursive vsnprintf".
1022 * Do not use this feature without some mechanism to verify the
1023 * correctness of the format string and va_list arguments.
Dan Rosenberg455cd5a2011-01-12 16:59:41 -08001024 * - 'K' For a kernel pointer that should be hidden from unprivileged users
Michał Mirosławc8f44af2011-11-15 15:29:55 +00001025 * - 'NF' For a netdev_features_t
Andy Shevchenko31550a12012-07-30 14:40:27 -07001026 * - 'h[CDN]' For a variable-length buffer, it prints it as a hex string with
1027 * a certain separator (' ' by default):
1028 * C colon
1029 * D dash
1030 * N no separator
1031 * The maximum supported length is 64 bytes of the input. Consider
1032 * to use print_hex_dump() for the larger input.
Stepan Moskovchenko7d799212013-02-21 16:43:09 -08001033 * - 'a' For a phys_addr_t type and its derivative types (passed by reference)
Joe Perches9ac6e442009-12-14 18:01:09 -08001034 *
Linus Torvalds332d2e72008-10-20 15:07:34 +11001035 * Note: The difference between 'S' and 'F' is that on ia64 and ppc64
1036 * function pointers are really function descriptors, which contain a
1037 * pointer to the real address.
Linus Torvalds4d8a7432008-07-06 16:24:57 -07001038 */
Joe Perchescf3b4292010-05-24 14:33:16 -07001039static noinline_for_stack
1040char *pointer(const char *fmt, char *buf, char *end, void *ptr,
1041 struct printf_spec spec)
Linus Torvalds78a8bf62008-07-06 16:16:15 -07001042{
Grant Likely725fe002012-05-31 16:26:08 -07001043 int default_width = 2 * sizeof(void *) + (spec.flags & SPECIAL ? 2 : 0);
1044
Kees Cook9f36e2c2011-03-22 16:34:22 -07001045 if (!ptr && *fmt != 'K') {
Joe Perches5e057982010-10-26 14:22:50 -07001046 /*
1047 * Print (null) with the same width as a pointer so it makes
1048 * tabular output look nice.
1049 */
1050 if (spec.field_width == -1)
Grant Likely725fe002012-05-31 16:26:08 -07001051 spec.field_width = default_width;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001052 return string(buf, end, "(null)", spec);
Joe Perches5e057982010-10-26 14:22:50 -07001053 }
Linus Torvaldsd97106a2009-01-03 11:46:17 -08001054
Linus Torvalds0fe1ef22008-07-06 16:43:12 -07001055 switch (*fmt) {
1056 case 'F':
Frederic Weisbecker0c8b9462009-04-15 17:48:18 +02001057 case 'f':
Linus Torvalds0fe1ef22008-07-06 16:43:12 -07001058 ptr = dereference_function_descriptor(ptr);
1059 /* Fallthrough */
1060 case 'S':
Joe Perches9ac6e442009-12-14 18:01:09 -08001061 case 's':
Namhyung Kim0f77a8d2011-03-24 11:42:29 +09001062 case 'B':
Frederic Weisbecker0c8b9462009-04-15 17:48:18 +02001063 return symbol_string(buf, end, ptr, spec, *fmt);
Linus Torvalds332d2e72008-10-20 15:07:34 +11001064 case 'R':
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -06001065 case 'r':
Bjorn Helgaasfd955412009-10-06 15:33:39 -06001066 return resource_string(buf, end, ptr, spec, fmt);
Andy Shevchenko31550a12012-07-30 14:40:27 -07001067 case 'h':
1068 return hex_string(buf, end, ptr, spec, fmt);
Joe Perches8a27f7c2009-08-17 12:29:44 +00001069 case 'M': /* Colon separated: 00:01:02:03:04:05 */
1070 case 'm': /* Contiguous: 000102030405 */
Andrei Emeltchenko76597ff92012-07-30 14:40:23 -07001071 /* [mM]F (FDDI) */
1072 /* [mM]R (Reverse order; Bluetooth) */
Joe Perches8a27f7c2009-08-17 12:29:44 +00001073 return mac_address_string(buf, end, ptr, spec, fmt);
1074 case 'I': /* Formatted IP supported
1075 * 4: 1.2.3.4
1076 * 6: 0001:0203:...:0708
1077 * 6c: 1::708 or 1::1.2.3.4
1078 */
1079 case 'i': /* Contiguous:
1080 * 4: 001.002.003.004
1081 * 6: 000102...0f
1082 */
1083 switch (fmt[1]) {
1084 case '6':
1085 return ip6_addr_string(buf, end, ptr, spec, fmt);
1086 case '4':
1087 return ip4_addr_string(buf, end, ptr, spec, fmt);
1088 }
Harvey Harrison4aa99602008-10-29 12:49:58 -07001089 break;
Joe Perches9ac6e442009-12-14 18:01:09 -08001090 case 'U':
1091 return uuid_string(buf, end, ptr, spec, fmt);
Joe Perches7db6f5f2010-06-27 01:02:33 +00001092 case 'V':
Jan Beulich5756b762012-03-05 16:49:24 +00001093 {
1094 va_list va;
1095
1096 va_copy(va, *((struct va_format *)ptr)->va);
1097 buf += vsnprintf(buf, end > buf ? end - buf : 0,
1098 ((struct va_format *)ptr)->fmt, va);
1099 va_end(va);
1100 return buf;
1101 }
Dan Rosenberg455cd5a2011-01-12 16:59:41 -08001102 case 'K':
1103 /*
1104 * %pK cannot be used in IRQ context because its test
1105 * for CAP_SYSLOG would be meaningless.
1106 */
Dan Rosenberg3715c5302012-07-30 14:40:26 -07001107 if (kptr_restrict && (in_irq() || in_serving_softirq() ||
1108 in_nmi())) {
Dan Rosenberg455cd5a2011-01-12 16:59:41 -08001109 if (spec.field_width == -1)
Grant Likely725fe002012-05-31 16:26:08 -07001110 spec.field_width = default_width;
Dan Rosenberg455cd5a2011-01-12 16:59:41 -08001111 return string(buf, end, "pK-error", spec);
Dan Rosenberg455cd5a2011-01-12 16:59:41 -08001112 }
Joe Perches26297602011-03-22 16:34:19 -07001113 if (!((kptr_restrict == 0) ||
1114 (kptr_restrict == 1 &&
1115 has_capability_noaudit(current, CAP_SYSLOG))))
1116 ptr = NULL;
1117 break;
Michał Mirosławc8f44af2011-11-15 15:29:55 +00001118 case 'N':
1119 switch (fmt[1]) {
1120 case 'F':
1121 return netdev_feature_string(buf, end, ptr, spec);
1122 }
1123 break;
Stepan Moskovchenko7d799212013-02-21 16:43:09 -08001124 case 'a':
1125 spec.flags |= SPECIAL | SMALL | ZEROPAD;
1126 spec.field_width = sizeof(phys_addr_t) * 2 + 2;
1127 spec.base = 16;
1128 return number(buf, end,
1129 (unsigned long long) *((phys_addr_t *)ptr), spec);
Linus Torvalds0fe1ef22008-07-06 16:43:12 -07001130 }
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001131 spec.flags |= SMALL;
1132 if (spec.field_width == -1) {
Grant Likely725fe002012-05-31 16:26:08 -07001133 spec.field_width = default_width;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001134 spec.flags |= ZEROPAD;
Linus Torvalds78a8bf62008-07-06 16:16:15 -07001135 }
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001136 spec.base = 16;
1137
1138 return number(buf, end, (unsigned long) ptr, spec);
1139}
1140
1141/*
1142 * Helper function to decode printf style format.
1143 * Each call decode a token from the format and return the
1144 * number of characters read (or likely the delta where it wants
1145 * to go on the next call).
1146 * The decoded token is returned through the parameters
1147 *
1148 * 'h', 'l', or 'L' for integer fields
1149 * 'z' support added 23/7/1999 S.H.
1150 * 'z' changed to 'Z' --davidm 1/25/99
1151 * 't' added for ptrdiff_t
1152 *
1153 * @fmt: the format string
1154 * @type of the token returned
1155 * @flags: various flags such as +, -, # tokens..
1156 * @field_width: overwritten width
1157 * @base: base of the number (octal, hex, ...)
1158 * @precision: precision of a number
1159 * @qualifier: qualifier of a number (long, size_t, ...)
1160 */
Joe Perchescf3b4292010-05-24 14:33:16 -07001161static noinline_for_stack
1162int format_decode(const char *fmt, struct printf_spec *spec)
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001163{
1164 const char *start = fmt;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001165
1166 /* we finished early by reading the field width */
Vegard Nossumed681a92009-03-14 12:08:50 +01001167 if (spec->type == FORMAT_TYPE_WIDTH) {
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001168 if (spec->field_width < 0) {
1169 spec->field_width = -spec->field_width;
1170 spec->flags |= LEFT;
1171 }
1172 spec->type = FORMAT_TYPE_NONE;
1173 goto precision;
1174 }
1175
1176 /* we finished early by reading the precision */
1177 if (spec->type == FORMAT_TYPE_PRECISION) {
1178 if (spec->precision < 0)
1179 spec->precision = 0;
1180
1181 spec->type = FORMAT_TYPE_NONE;
1182 goto qualifier;
1183 }
1184
1185 /* By default */
1186 spec->type = FORMAT_TYPE_NONE;
1187
1188 for (; *fmt ; ++fmt) {
1189 if (*fmt == '%')
1190 break;
1191 }
1192
1193 /* Return the current non-format string */
1194 if (fmt != start || !*fmt)
1195 return fmt - start;
1196
1197 /* Process flags */
1198 spec->flags = 0;
1199
1200 while (1) { /* this also skips first '%' */
1201 bool found = true;
1202
1203 ++fmt;
1204
1205 switch (*fmt) {
1206 case '-': spec->flags |= LEFT; break;
1207 case '+': spec->flags |= PLUS; break;
1208 case ' ': spec->flags |= SPACE; break;
1209 case '#': spec->flags |= SPECIAL; break;
1210 case '0': spec->flags |= ZEROPAD; break;
1211 default: found = false;
1212 }
1213
1214 if (!found)
1215 break;
1216 }
1217
1218 /* get field width */
1219 spec->field_width = -1;
1220
1221 if (isdigit(*fmt))
1222 spec->field_width = skip_atoi(&fmt);
1223 else if (*fmt == '*') {
1224 /* it's the next argument */
Vegard Nossumed681a92009-03-14 12:08:50 +01001225 spec->type = FORMAT_TYPE_WIDTH;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001226 return ++fmt - start;
1227 }
1228
1229precision:
1230 /* get the precision */
1231 spec->precision = -1;
1232 if (*fmt == '.') {
1233 ++fmt;
1234 if (isdigit(*fmt)) {
1235 spec->precision = skip_atoi(&fmt);
1236 if (spec->precision < 0)
1237 spec->precision = 0;
1238 } else if (*fmt == '*') {
1239 /* it's the next argument */
Vegard Nossumadf26f82009-03-14 12:08:50 +01001240 spec->type = FORMAT_TYPE_PRECISION;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001241 return ++fmt - start;
1242 }
1243 }
1244
1245qualifier:
1246 /* get the conversion qualifier */
1247 spec->qualifier = -1;
Andy Shevchenko75fb8f22011-07-25 17:13:20 -07001248 if (*fmt == 'h' || _tolower(*fmt) == 'l' ||
1249 _tolower(*fmt) == 'z' || *fmt == 't') {
Zhaoleia4e94ef2009-03-27 17:07:05 +08001250 spec->qualifier = *fmt++;
1251 if (unlikely(spec->qualifier == *fmt)) {
1252 if (spec->qualifier == 'l') {
1253 spec->qualifier = 'L';
1254 ++fmt;
1255 } else if (spec->qualifier == 'h') {
1256 spec->qualifier = 'H';
1257 ++fmt;
1258 }
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001259 }
1260 }
1261
1262 /* default base */
1263 spec->base = 10;
1264 switch (*fmt) {
1265 case 'c':
1266 spec->type = FORMAT_TYPE_CHAR;
1267 return ++fmt - start;
1268
1269 case 's':
1270 spec->type = FORMAT_TYPE_STR;
1271 return ++fmt - start;
1272
1273 case 'p':
1274 spec->type = FORMAT_TYPE_PTR;
1275 return fmt - start;
1276 /* skip alnum */
1277
1278 case 'n':
1279 spec->type = FORMAT_TYPE_NRCHARS;
1280 return ++fmt - start;
1281
1282 case '%':
1283 spec->type = FORMAT_TYPE_PERCENT_CHAR;
1284 return ++fmt - start;
1285
1286 /* integer number formats - set up the flags and "break" */
1287 case 'o':
1288 spec->base = 8;
1289 break;
1290
1291 case 'x':
1292 spec->flags |= SMALL;
1293
1294 case 'X':
1295 spec->base = 16;
1296 break;
1297
1298 case 'd':
1299 case 'i':
Frederic Weisbecker39e874f2009-03-09 21:15:04 +01001300 spec->flags |= SIGN;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001301 case 'u':
1302 break;
1303
1304 default:
1305 spec->type = FORMAT_TYPE_INVALID;
1306 return fmt - start;
1307 }
1308
1309 if (spec->qualifier == 'L')
1310 spec->type = FORMAT_TYPE_LONG_LONG;
1311 else if (spec->qualifier == 'l') {
Frederic Weisbecker39e874f2009-03-09 21:15:04 +01001312 if (spec->flags & SIGN)
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001313 spec->type = FORMAT_TYPE_LONG;
1314 else
1315 spec->type = FORMAT_TYPE_ULONG;
Andy Shevchenko75fb8f22011-07-25 17:13:20 -07001316 } else if (_tolower(spec->qualifier) == 'z') {
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001317 spec->type = FORMAT_TYPE_SIZE_T;
1318 } else if (spec->qualifier == 't') {
1319 spec->type = FORMAT_TYPE_PTRDIFF;
Zhaoleia4e94ef2009-03-27 17:07:05 +08001320 } else if (spec->qualifier == 'H') {
1321 if (spec->flags & SIGN)
1322 spec->type = FORMAT_TYPE_BYTE;
1323 else
1324 spec->type = FORMAT_TYPE_UBYTE;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001325 } else if (spec->qualifier == 'h') {
Frederic Weisbecker39e874f2009-03-09 21:15:04 +01001326 if (spec->flags & SIGN)
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001327 spec->type = FORMAT_TYPE_SHORT;
1328 else
1329 spec->type = FORMAT_TYPE_USHORT;
1330 } else {
Frederic Weisbecker39e874f2009-03-09 21:15:04 +01001331 if (spec->flags & SIGN)
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001332 spec->type = FORMAT_TYPE_INT;
1333 else
1334 spec->type = FORMAT_TYPE_UINT;
1335 }
1336
1337 return ++fmt - start;
Linus Torvalds78a8bf62008-07-06 16:16:15 -07001338}
1339
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340/**
1341 * vsnprintf - Format a string and place it in a buffer
1342 * @buf: The buffer to place the result into
1343 * @size: The size of the buffer, including the trailing null space
1344 * @fmt: The format string to use
1345 * @args: Arguments for the format string
1346 *
Andi Kleen20036fd2008-10-15 22:02:02 -07001347 * This function follows C99 vsnprintf, but has some extensions:
Steven Rostedt91adcd22009-09-16 20:03:06 -04001348 * %pS output the name of a text symbol with offset
1349 * %ps output the name of a text symbol without offset
Frederic Weisbecker0c8b9462009-04-15 17:48:18 +02001350 * %pF output the name of a function pointer with its offset
1351 * %pf output the name of a function pointer without its offset
Namhyung Kim0f77a8d2011-03-24 11:42:29 +09001352 * %pB output the name of a backtrace symbol with its offset
Uwe Kleine-König8a795032009-12-17 15:27:12 -08001353 * %pR output the address range in a struct resource with decoded flags
1354 * %pr output the address range in a struct resource with raw flags
1355 * %pM output a 6-byte MAC address with colons
Andy Shevchenko7c591542012-10-04 17:12:33 -07001356 * %pMR output a 6-byte MAC address with colons in reversed order
1357 * %pMF output a 6-byte MAC address with dashes
Uwe Kleine-König8a795032009-12-17 15:27:12 -08001358 * %pm output a 6-byte MAC address without colons
Andy Shevchenko7c591542012-10-04 17:12:33 -07001359 * %pmR output a 6-byte MAC address without colons in reversed order
Uwe Kleine-König8a795032009-12-17 15:27:12 -08001360 * %pI4 print an IPv4 address without leading zeros
1361 * %pi4 print an IPv4 address with leading zeros
1362 * %pI6 print an IPv6 address with colons
1363 * %pi6 print an IPv6 address without colons
Jan Engelhardtf996f202011-07-14 18:48:56 +02001364 * %pI6c print an IPv6 address as specified by RFC 5952
Uwe Kleine-König8a795032009-12-17 15:27:12 -08001365 * %pU[bBlL] print a UUID/GUID in big or little endian using lower or upper
1366 * case.
Andy Shevchenko31550a12012-07-30 14:40:27 -07001367 * %*ph[CDN] a variable-length hex string with a separator (supports up to 64
1368 * bytes of the input)
Steven Rostedt0efb4d22009-09-17 09:27:29 -04001369 * %n is ignored
Andi Kleen20036fd2008-10-15 22:02:02 -07001370 *
Andrew Morton80f548e2012-07-30 14:40:25 -07001371 * ** Please update Documentation/printk-formats.txt when making changes **
1372 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 * The return value is the number of characters which would
1374 * be generated for the given input, excluding the trailing
1375 * '\0', as per ISO C99. If you want to have the exact
1376 * number of characters written into @buf as return value
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08001377 * (not including the trailing '\0'), use vscnprintf(). If the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 * return is greater than or equal to @size, the resulting
1379 * string is truncated.
1380 *
Uwe Kleine-Königba1835e2011-04-06 07:49:04 -07001381 * If you're not already dealing with a va_list consider using snprintf().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 */
1383int vsnprintf(char *buf, size_t size, const char *fmt, va_list args)
1384{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 unsigned long long num;
André Goddard Rosad4be1512009-12-14 18:00:59 -08001386 char *str, *end;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001387 struct printf_spec spec = {0};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -07001389 /* Reject out-of-range values early. Large positive sizes are
1390 used for unknown buffer sizes. */
Marcin Slusarz2f30b1f92009-09-21 17:04:29 -07001391 if (WARN_ON_ONCE((int) size < 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393
1394 str = buf;
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -07001395 end = buf + size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -07001397 /* Make sure end is always >= buf */
1398 if (end < buf) {
1399 end = ((void *)-1);
1400 size = end - buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 }
1402
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001403 while (*fmt) {
1404 const char *old_fmt = fmt;
André Goddard Rosad4be1512009-12-14 18:00:59 -08001405 int read = format_decode(fmt, &spec);
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001406
1407 fmt += read;
1408
1409 switch (spec.type) {
1410 case FORMAT_TYPE_NONE: {
1411 int copy = read;
1412 if (str < end) {
1413 if (copy > end - str)
1414 copy = end - str;
1415 memcpy(str, old_fmt, copy);
1416 }
1417 str += read;
1418 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 }
1420
Vegard Nossumed681a92009-03-14 12:08:50 +01001421 case FORMAT_TYPE_WIDTH:
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001422 spec.field_width = va_arg(args, int);
1423 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001425 case FORMAT_TYPE_PRECISION:
1426 spec.precision = va_arg(args, int);
1427 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428
André Goddard Rosad4be1512009-12-14 18:00:59 -08001429 case FORMAT_TYPE_CHAR: {
1430 char c;
1431
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001432 if (!(spec.flags & LEFT)) {
1433 while (--spec.field_width > 0) {
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -07001434 if (str < end)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 *str = ' ';
1436 ++str;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001437
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 }
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001439 }
1440 c = (unsigned char) va_arg(args, int);
1441 if (str < end)
1442 *str = c;
1443 ++str;
1444 while (--spec.field_width > 0) {
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -07001445 if (str < end)
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001446 *str = ' ';
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 ++str;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001448 }
1449 break;
André Goddard Rosad4be1512009-12-14 18:00:59 -08001450 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001452 case FORMAT_TYPE_STR:
1453 str = string(str, end, va_arg(args, char *), spec);
1454 break;
1455
1456 case FORMAT_TYPE_PTR:
1457 str = pointer(fmt+1, str, end, va_arg(args, void *),
1458 spec);
1459 while (isalnum(*fmt))
1460 fmt++;
1461 break;
1462
1463 case FORMAT_TYPE_PERCENT_CHAR:
1464 if (str < end)
1465 *str = '%';
1466 ++str;
1467 break;
1468
1469 case FORMAT_TYPE_INVALID:
1470 if (str < end)
1471 *str = '%';
1472 ++str;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001473 break;
1474
1475 case FORMAT_TYPE_NRCHARS: {
Joe Perchesef0658f2010-03-06 17:10:14 -08001476 u8 qualifier = spec.qualifier;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001477
1478 if (qualifier == 'l') {
1479 long *ip = va_arg(args, long *);
1480 *ip = (str - buf);
Andy Shevchenko75fb8f22011-07-25 17:13:20 -07001481 } else if (_tolower(qualifier) == 'z') {
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001482 size_t *ip = va_arg(args, size_t *);
1483 *ip = (str - buf);
1484 } else {
1485 int *ip = va_arg(args, int *);
1486 *ip = (str - buf);
1487 }
1488 break;
1489 }
1490
1491 default:
1492 switch (spec.type) {
1493 case FORMAT_TYPE_LONG_LONG:
1494 num = va_arg(args, long long);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 break;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001496 case FORMAT_TYPE_ULONG:
1497 num = va_arg(args, unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 break;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001499 case FORMAT_TYPE_LONG:
1500 num = va_arg(args, long);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 break;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001502 case FORMAT_TYPE_SIZE_T:
Jason Gunthorpeef124962012-12-17 15:59:58 -08001503 if (spec.flags & SIGN)
1504 num = va_arg(args, ssize_t);
1505 else
1506 num = va_arg(args, size_t);
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001507 break;
1508 case FORMAT_TYPE_PTRDIFF:
1509 num = va_arg(args, ptrdiff_t);
1510 break;
Zhaoleia4e94ef2009-03-27 17:07:05 +08001511 case FORMAT_TYPE_UBYTE:
1512 num = (unsigned char) va_arg(args, int);
1513 break;
1514 case FORMAT_TYPE_BYTE:
1515 num = (signed char) va_arg(args, int);
1516 break;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001517 case FORMAT_TYPE_USHORT:
1518 num = (unsigned short) va_arg(args, int);
1519 break;
1520 case FORMAT_TYPE_SHORT:
1521 num = (short) va_arg(args, int);
1522 break;
Frederic Weisbecker39e874f2009-03-09 21:15:04 +01001523 case FORMAT_TYPE_INT:
1524 num = (int) va_arg(args, int);
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001525 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 default:
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001527 num = va_arg(args, unsigned int);
1528 }
1529
1530 str = number(str, end, num, spec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 }
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001533
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -07001534 if (size > 0) {
1535 if (str < end)
1536 *str = '\0';
1537 else
Linus Torvalds0a6047e2006-06-28 17:09:34 -07001538 end[-1] = '\0';
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -07001539 }
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001540
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -07001541 /* the trailing null byte doesn't count towards the total */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 return str-buf;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001543
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545EXPORT_SYMBOL(vsnprintf);
1546
1547/**
1548 * vscnprintf - Format a string and place it in a buffer
1549 * @buf: The buffer to place the result into
1550 * @size: The size of the buffer, including the trailing null space
1551 * @fmt: The format string to use
1552 * @args: Arguments for the format string
1553 *
1554 * The return value is the number of characters which have been written into
Anton Arapovb921c692011-01-12 16:59:49 -08001555 * the @buf not including the trailing '\0'. If @size is == 0 the function
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 * returns 0.
1557 *
Uwe Kleine-Königba1835e2011-04-06 07:49:04 -07001558 * If you're not already dealing with a va_list consider using scnprintf().
Andi Kleen20036fd2008-10-15 22:02:02 -07001559 *
1560 * See the vsnprintf() documentation for format string extensions over C99.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 */
1562int vscnprintf(char *buf, size_t size, const char *fmt, va_list args)
1563{
1564 int i;
1565
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001566 i = vsnprintf(buf, size, fmt, args);
1567
Anton Arapovb921c692011-01-12 16:59:49 -08001568 if (likely(i < size))
1569 return i;
1570 if (size != 0)
1571 return size - 1;
1572 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574EXPORT_SYMBOL(vscnprintf);
1575
1576/**
1577 * snprintf - Format a string and place it in a buffer
1578 * @buf: The buffer to place the result into
1579 * @size: The size of the buffer, including the trailing null space
1580 * @fmt: The format string to use
1581 * @...: Arguments for the format string
1582 *
1583 * The return value is the number of characters which would be
1584 * generated for the given input, excluding the trailing null,
1585 * as per ISO C99. If the return is greater than or equal to
1586 * @size, the resulting string is truncated.
Andi Kleen20036fd2008-10-15 22:02:02 -07001587 *
1588 * See the vsnprintf() documentation for format string extensions over C99.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 */
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001590int snprintf(char *buf, size_t size, const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591{
1592 va_list args;
1593 int i;
1594
1595 va_start(args, fmt);
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001596 i = vsnprintf(buf, size, fmt, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 va_end(args);
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001598
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 return i;
1600}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601EXPORT_SYMBOL(snprintf);
1602
1603/**
1604 * scnprintf - Format a string and place it in a buffer
1605 * @buf: The buffer to place the result into
1606 * @size: The size of the buffer, including the trailing null space
1607 * @fmt: The format string to use
1608 * @...: Arguments for the format string
1609 *
1610 * The return value is the number of characters written into @buf not including
Changli Gaob903c0b2010-10-26 14:22:50 -07001611 * the trailing '\0'. If @size is == 0 the function returns 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 */
1613
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001614int scnprintf(char *buf, size_t size, const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615{
1616 va_list args;
1617 int i;
1618
1619 va_start(args, fmt);
Anton Arapovb921c692011-01-12 16:59:49 -08001620 i = vscnprintf(buf, size, fmt, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 va_end(args);
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001622
Anton Arapovb921c692011-01-12 16:59:49 -08001623 return i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624}
1625EXPORT_SYMBOL(scnprintf);
1626
1627/**
1628 * vsprintf - Format a string and place it in a buffer
1629 * @buf: The buffer to place the result into
1630 * @fmt: The format string to use
1631 * @args: Arguments for the format string
1632 *
1633 * The function returns the number of characters written
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08001634 * into @buf. Use vsnprintf() or vscnprintf() in order to avoid
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 * buffer overflows.
1636 *
Uwe Kleine-Königba1835e2011-04-06 07:49:04 -07001637 * If you're not already dealing with a va_list consider using sprintf().
Andi Kleen20036fd2008-10-15 22:02:02 -07001638 *
1639 * See the vsnprintf() documentation for format string extensions over C99.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 */
1641int vsprintf(char *buf, const char *fmt, va_list args)
1642{
1643 return vsnprintf(buf, INT_MAX, fmt, args);
1644}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645EXPORT_SYMBOL(vsprintf);
1646
1647/**
1648 * sprintf - Format a string and place it in a buffer
1649 * @buf: The buffer to place the result into
1650 * @fmt: The format string to use
1651 * @...: Arguments for the format string
1652 *
1653 * The function returns the number of characters written
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08001654 * into @buf. Use snprintf() or scnprintf() in order to avoid
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 * buffer overflows.
Andi Kleen20036fd2008-10-15 22:02:02 -07001656 *
1657 * See the vsnprintf() documentation for format string extensions over C99.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 */
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001659int sprintf(char *buf, const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660{
1661 va_list args;
1662 int i;
1663
1664 va_start(args, fmt);
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001665 i = vsnprintf(buf, INT_MAX, fmt, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 va_end(args);
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001667
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 return i;
1669}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670EXPORT_SYMBOL(sprintf);
1671
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001672#ifdef CONFIG_BINARY_PRINTF
1673/*
1674 * bprintf service:
1675 * vbin_printf() - VA arguments to binary data
1676 * bstr_printf() - Binary data to text string
1677 */
1678
1679/**
1680 * vbin_printf - Parse a format string and place args' binary value in a buffer
1681 * @bin_buf: The buffer to place args' binary value
1682 * @size: The size of the buffer(by words(32bits), not characters)
1683 * @fmt: The format string to use
1684 * @args: Arguments for the format string
1685 *
1686 * The format follows C99 vsnprintf, except %n is ignored, and its argument
1687 * is skiped.
1688 *
1689 * The return value is the number of words(32bits) which would be generated for
1690 * the given input.
1691 *
1692 * NOTE:
1693 * If the return value is greater than @size, the resulting bin_buf is NOT
1694 * valid for bstr_printf().
1695 */
1696int vbin_printf(u32 *bin_buf, size_t size, const char *fmt, va_list args)
1697{
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001698 struct printf_spec spec = {0};
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001699 char *str, *end;
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001700
1701 str = (char *)bin_buf;
1702 end = (char *)(bin_buf + size);
1703
1704#define save_arg(type) \
1705do { \
1706 if (sizeof(type) == 8) { \
1707 unsigned long long value; \
1708 str = PTR_ALIGN(str, sizeof(u32)); \
1709 value = va_arg(args, unsigned long long); \
1710 if (str + sizeof(type) <= end) { \
1711 *(u32 *)str = *(u32 *)&value; \
1712 *(u32 *)(str + 4) = *((u32 *)&value + 1); \
1713 } \
1714 } else { \
1715 unsigned long value; \
1716 str = PTR_ALIGN(str, sizeof(type)); \
1717 value = va_arg(args, int); \
1718 if (str + sizeof(type) <= end) \
1719 *(typeof(type) *)str = (type)value; \
1720 } \
1721 str += sizeof(type); \
1722} while (0)
1723
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001724 while (*fmt) {
André Goddard Rosad4be1512009-12-14 18:00:59 -08001725 int read = format_decode(fmt, &spec);
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001726
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001727 fmt += read;
1728
1729 switch (spec.type) {
1730 case FORMAT_TYPE_NONE:
André Goddard Rosad4be1512009-12-14 18:00:59 -08001731 case FORMAT_TYPE_INVALID:
1732 case FORMAT_TYPE_PERCENT_CHAR:
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001733 break;
1734
Vegard Nossumed681a92009-03-14 12:08:50 +01001735 case FORMAT_TYPE_WIDTH:
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001736 case FORMAT_TYPE_PRECISION:
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001737 save_arg(int);
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001738 break;
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001739
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001740 case FORMAT_TYPE_CHAR:
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001741 save_arg(char);
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001742 break;
1743
1744 case FORMAT_TYPE_STR: {
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001745 const char *save_str = va_arg(args, char *);
1746 size_t len;
André Goddard Rosa6c356632009-12-14 18:00:56 -08001747
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001748 if ((unsigned long)save_str > (unsigned long)-PAGE_SIZE
1749 || (unsigned long)save_str < PAGE_SIZE)
André Goddard Rosa0f4f81d2009-12-14 18:00:55 -08001750 save_str = "(null)";
André Goddard Rosa6c356632009-12-14 18:00:56 -08001751 len = strlen(save_str) + 1;
1752 if (str + len < end)
1753 memcpy(str, save_str, len);
1754 str += len;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001755 break;
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001756 }
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001757
1758 case FORMAT_TYPE_PTR:
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001759 save_arg(void *);
1760 /* skip all alphanumeric pointer suffixes */
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001761 while (isalnum(*fmt))
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001762 fmt++;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001763 break;
1764
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001765 case FORMAT_TYPE_NRCHARS: {
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001766 /* skip %n 's argument */
Joe Perchesef0658f2010-03-06 17:10:14 -08001767 u8 qualifier = spec.qualifier;
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001768 void *skip_arg;
1769 if (qualifier == 'l')
1770 skip_arg = va_arg(args, long *);
Andy Shevchenko75fb8f22011-07-25 17:13:20 -07001771 else if (_tolower(qualifier) == 'z')
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001772 skip_arg = va_arg(args, size_t *);
1773 else
1774 skip_arg = va_arg(args, int *);
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001775 break;
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001776 }
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001777
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001778 default:
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001779 switch (spec.type) {
1780
1781 case FORMAT_TYPE_LONG_LONG:
1782 save_arg(long long);
1783 break;
1784 case FORMAT_TYPE_ULONG:
1785 case FORMAT_TYPE_LONG:
1786 save_arg(unsigned long);
1787 break;
1788 case FORMAT_TYPE_SIZE_T:
1789 save_arg(size_t);
1790 break;
1791 case FORMAT_TYPE_PTRDIFF:
1792 save_arg(ptrdiff_t);
1793 break;
Zhaoleia4e94ef2009-03-27 17:07:05 +08001794 case FORMAT_TYPE_UBYTE:
1795 case FORMAT_TYPE_BYTE:
1796 save_arg(char);
1797 break;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001798 case FORMAT_TYPE_USHORT:
1799 case FORMAT_TYPE_SHORT:
1800 save_arg(short);
1801 break;
1802 default:
1803 save_arg(int);
1804 }
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001805 }
1806 }
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001807
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001808 return (u32 *)(PTR_ALIGN(str, sizeof(u32))) - bin_buf;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001809#undef save_arg
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001810}
1811EXPORT_SYMBOL_GPL(vbin_printf);
1812
1813/**
1814 * bstr_printf - Format a string from binary arguments and place it in a buffer
1815 * @buf: The buffer to place the result into
1816 * @size: The size of the buffer, including the trailing null space
1817 * @fmt: The format string to use
1818 * @bin_buf: Binary arguments for the format string
1819 *
1820 * This function like C99 vsnprintf, but the difference is that vsnprintf gets
1821 * arguments from stack, and bstr_printf gets arguments from @bin_buf which is
1822 * a binary buffer that generated by vbin_printf.
1823 *
1824 * The format follows C99 vsnprintf, but has some extensions:
Steven Rostedt0efb4d22009-09-17 09:27:29 -04001825 * see vsnprintf comment for details.
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001826 *
1827 * The return value is the number of characters which would
1828 * be generated for the given input, excluding the trailing
1829 * '\0', as per ISO C99. If you want to have the exact
1830 * number of characters written into @buf as return value
1831 * (not including the trailing '\0'), use vscnprintf(). If the
1832 * return is greater than or equal to @size, the resulting
1833 * string is truncated.
1834 */
1835int bstr_printf(char *buf, size_t size, const char *fmt, const u32 *bin_buf)
1836{
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001837 struct printf_spec spec = {0};
André Goddard Rosad4be1512009-12-14 18:00:59 -08001838 char *str, *end;
1839 const char *args = (const char *)bin_buf;
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001840
Marcin Slusarz2f30b1f92009-09-21 17:04:29 -07001841 if (WARN_ON_ONCE((int) size < 0))
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001842 return 0;
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001843
1844 str = buf;
1845 end = buf + size;
1846
1847#define get_arg(type) \
1848({ \
1849 typeof(type) value; \
1850 if (sizeof(type) == 8) { \
1851 args = PTR_ALIGN(args, sizeof(u32)); \
1852 *(u32 *)&value = *(u32 *)args; \
1853 *((u32 *)&value + 1) = *(u32 *)(args + 4); \
1854 } else { \
1855 args = PTR_ALIGN(args, sizeof(type)); \
1856 value = *(typeof(type) *)args; \
1857 } \
1858 args += sizeof(type); \
1859 value; \
1860})
1861
1862 /* Make sure end is always >= buf */
1863 if (end < buf) {
1864 end = ((void *)-1);
1865 size = end - buf;
1866 }
1867
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001868 while (*fmt) {
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001869 const char *old_fmt = fmt;
André Goddard Rosad4be1512009-12-14 18:00:59 -08001870 int read = format_decode(fmt, &spec);
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001871
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001872 fmt += read;
1873
1874 switch (spec.type) {
1875 case FORMAT_TYPE_NONE: {
1876 int copy = read;
1877 if (str < end) {
1878 if (copy > end - str)
1879 copy = end - str;
1880 memcpy(str, old_fmt, copy);
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001881 }
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001882 str += read;
1883 break;
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001884 }
1885
Vegard Nossumed681a92009-03-14 12:08:50 +01001886 case FORMAT_TYPE_WIDTH:
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001887 spec.field_width = get_arg(int);
1888 break;
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001889
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001890 case FORMAT_TYPE_PRECISION:
1891 spec.precision = get_arg(int);
1892 break;
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001893
André Goddard Rosad4be1512009-12-14 18:00:59 -08001894 case FORMAT_TYPE_CHAR: {
1895 char c;
1896
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001897 if (!(spec.flags & LEFT)) {
1898 while (--spec.field_width > 0) {
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001899 if (str < end)
1900 *str = ' ';
1901 ++str;
1902 }
1903 }
1904 c = (unsigned char) get_arg(char);
1905 if (str < end)
1906 *str = c;
1907 ++str;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001908 while (--spec.field_width > 0) {
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001909 if (str < end)
1910 *str = ' ';
1911 ++str;
1912 }
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001913 break;
André Goddard Rosad4be1512009-12-14 18:00:59 -08001914 }
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001915
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001916 case FORMAT_TYPE_STR: {
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001917 const char *str_arg = args;
André Goddard Rosad4be1512009-12-14 18:00:59 -08001918 args += strlen(str_arg) + 1;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001919 str = string(str, end, (char *)str_arg, spec);
1920 break;
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001921 }
1922
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001923 case FORMAT_TYPE_PTR:
1924 str = pointer(fmt+1, str, end, get_arg(void *), spec);
1925 while (isalnum(*fmt))
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001926 fmt++;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001927 break;
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001928
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001929 case FORMAT_TYPE_PERCENT_CHAR:
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001930 case FORMAT_TYPE_INVALID:
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001931 if (str < end)
1932 *str = '%';
1933 ++str;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001934 break;
1935
1936 case FORMAT_TYPE_NRCHARS:
1937 /* skip */
1938 break;
1939
André Goddard Rosad4be1512009-12-14 18:00:59 -08001940 default: {
1941 unsigned long long num;
1942
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001943 switch (spec.type) {
1944
1945 case FORMAT_TYPE_LONG_LONG:
1946 num = get_arg(long long);
1947 break;
1948 case FORMAT_TYPE_ULONG:
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001949 case FORMAT_TYPE_LONG:
1950 num = get_arg(unsigned long);
1951 break;
1952 case FORMAT_TYPE_SIZE_T:
1953 num = get_arg(size_t);
1954 break;
1955 case FORMAT_TYPE_PTRDIFF:
1956 num = get_arg(ptrdiff_t);
1957 break;
Zhaoleia4e94ef2009-03-27 17:07:05 +08001958 case FORMAT_TYPE_UBYTE:
1959 num = get_arg(unsigned char);
1960 break;
1961 case FORMAT_TYPE_BYTE:
1962 num = get_arg(signed char);
1963 break;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001964 case FORMAT_TYPE_USHORT:
1965 num = get_arg(unsigned short);
1966 break;
1967 case FORMAT_TYPE_SHORT:
1968 num = get_arg(short);
1969 break;
1970 case FORMAT_TYPE_UINT:
1971 num = get_arg(unsigned int);
1972 break;
1973 default:
1974 num = get_arg(int);
1975 }
1976
1977 str = number(str, end, num, spec);
André Goddard Rosad4be1512009-12-14 18:00:59 -08001978 } /* default: */
1979 } /* switch(spec.type) */
1980 } /* while(*fmt) */
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001981
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001982 if (size > 0) {
1983 if (str < end)
1984 *str = '\0';
1985 else
1986 end[-1] = '\0';
1987 }
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001988
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001989#undef get_arg
1990
1991 /* the trailing null byte doesn't count towards the total */
1992 return str - buf;
1993}
1994EXPORT_SYMBOL_GPL(bstr_printf);
1995
1996/**
1997 * bprintf - Parse a format string and place args' binary value in a buffer
1998 * @bin_buf: The buffer to place args' binary value
1999 * @size: The size of the buffer(by words(32bits), not characters)
2000 * @fmt: The format string to use
2001 * @...: Arguments for the format string
2002 *
2003 * The function returns the number of words(u32) written
2004 * into @bin_buf.
2005 */
2006int bprintf(u32 *bin_buf, size_t size, const char *fmt, ...)
2007{
2008 va_list args;
2009 int ret;
2010
2011 va_start(args, fmt);
2012 ret = vbin_printf(bin_buf, size, fmt, args);
2013 va_end(args);
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08002014
Lai Jiangshan4370aa42009-03-06 17:21:46 +01002015 return ret;
2016}
2017EXPORT_SYMBOL_GPL(bprintf);
2018
2019#endif /* CONFIG_BINARY_PRINTF */
2020
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021/**
2022 * vsscanf - Unformat a buffer into a list of arguments
2023 * @buf: input buffer
2024 * @fmt: format of buffer
2025 * @args: arguments
2026 */
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08002027int vsscanf(const char *buf, const char *fmt, va_list args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028{
2029 const char *str = buf;
2030 char *next;
2031 char digit;
2032 int num = 0;
Joe Perchesef0658f2010-03-06 17:10:14 -08002033 u8 qualifier;
Jan Beulich53809752012-12-17 16:01:31 -08002034 unsigned int base;
2035 union {
2036 long long s;
2037 unsigned long long u;
2038 } val;
Joe Perchesef0658f2010-03-06 17:10:14 -08002039 s16 field_width;
André Goddard Rosad4be1512009-12-14 18:00:59 -08002040 bool is_sign;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041
Jan Beulichda990752012-10-04 17:13:24 -07002042 while (*fmt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 /* skip any white space in format */
2044 /* white space in format matchs any amount of
2045 * white space, including none, in the input.
2046 */
2047 if (isspace(*fmt)) {
André Goddard Rosae7d28602009-12-14 18:01:06 -08002048 fmt = skip_spaces(++fmt);
2049 str = skip_spaces(str);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 }
2051
2052 /* anything that is not a conversion must match exactly */
2053 if (*fmt != '%' && *fmt) {
2054 if (*fmt++ != *str++)
2055 break;
2056 continue;
2057 }
2058
2059 if (!*fmt)
2060 break;
2061 ++fmt;
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08002062
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063 /* skip this conversion.
2064 * advance both strings to next white space
2065 */
2066 if (*fmt == '*') {
Jan Beulichda990752012-10-04 17:13:24 -07002067 if (!*str)
2068 break;
Andy Spencer8fccae22009-10-01 15:44:27 -07002069 while (!isspace(*fmt) && *fmt != '%' && *fmt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070 fmt++;
2071 while (!isspace(*str) && *str)
2072 str++;
2073 continue;
2074 }
2075
2076 /* get field width */
2077 field_width = -1;
Jan Beulich53809752012-12-17 16:01:31 -08002078 if (isdigit(*fmt)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 field_width = skip_atoi(&fmt);
Jan Beulich53809752012-12-17 16:01:31 -08002080 if (field_width <= 0)
2081 break;
2082 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083
2084 /* get conversion qualifier */
2085 qualifier = -1;
Andy Shevchenko75fb8f22011-07-25 17:13:20 -07002086 if (*fmt == 'h' || _tolower(*fmt) == 'l' ||
2087 _tolower(*fmt) == 'z') {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088 qualifier = *fmt++;
2089 if (unlikely(qualifier == *fmt)) {
2090 if (qualifier == 'h') {
2091 qualifier = 'H';
2092 fmt++;
2093 } else if (qualifier == 'l') {
2094 qualifier = 'L';
2095 fmt++;
2096 }
2097 }
2098 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099
Jan Beulichda990752012-10-04 17:13:24 -07002100 if (!*fmt)
2101 break;
2102
2103 if (*fmt == 'n') {
2104 /* return number of characters read so far */
2105 *va_arg(args, int *) = str - buf;
2106 ++fmt;
2107 continue;
2108 }
2109
2110 if (!*str)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 break;
2112
André Goddard Rosad4be1512009-12-14 18:00:59 -08002113 base = 10;
2114 is_sign = 0;
2115
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08002116 switch (*fmt++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117 case 'c':
2118 {
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08002119 char *s = (char *)va_arg(args, char*);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120 if (field_width == -1)
2121 field_width = 1;
2122 do {
2123 *s++ = *str++;
2124 } while (--field_width > 0 && *str);
2125 num++;
2126 }
2127 continue;
2128 case 's':
2129 {
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08002130 char *s = (char *)va_arg(args, char *);
2131 if (field_width == -1)
Alexey Dobriyan4be929b2010-05-24 14:33:03 -07002132 field_width = SHRT_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 /* first, skip leading white space in buffer */
André Goddard Rosae7d28602009-12-14 18:01:06 -08002134 str = skip_spaces(str);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135
2136 /* now copy until next white space */
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08002137 while (*str && !isspace(*str) && field_width--)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138 *s++ = *str++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139 *s = '\0';
2140 num++;
2141 }
2142 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143 case 'o':
2144 base = 8;
2145 break;
2146 case 'x':
2147 case 'X':
2148 base = 16;
2149 break;
2150 case 'i':
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08002151 base = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152 case 'd':
2153 is_sign = 1;
2154 case 'u':
2155 break;
2156 case '%':
2157 /* looking for '%' in str */
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08002158 if (*str++ != '%')
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 return num;
2160 continue;
2161 default:
2162 /* invalid format; stop here */
2163 return num;
2164 }
2165
2166 /* have some sort of integer conversion.
2167 * first, skip white space in buffer.
2168 */
André Goddard Rosae7d28602009-12-14 18:01:06 -08002169 str = skip_spaces(str);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170
2171 digit = *str;
2172 if (is_sign && digit == '-')
2173 digit = *(str + 1);
2174
2175 if (!digit
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08002176 || (base == 16 && !isxdigit(digit))
2177 || (base == 10 && !isdigit(digit))
2178 || (base == 8 && (!isdigit(digit) || digit > '7'))
2179 || (base == 0 && !isdigit(digit)))
2180 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181
Jan Beulich53809752012-12-17 16:01:31 -08002182 if (is_sign)
2183 val.s = qualifier != 'L' ?
2184 simple_strtol(str, &next, base) :
2185 simple_strtoll(str, &next, base);
2186 else
2187 val.u = qualifier != 'L' ?
2188 simple_strtoul(str, &next, base) :
2189 simple_strtoull(str, &next, base);
2190
2191 if (field_width > 0 && next - str > field_width) {
2192 if (base == 0)
2193 _parse_integer_fixup_radix(str, &base);
2194 while (next - str > field_width) {
2195 if (is_sign)
2196 val.s = div_s64(val.s, base);
2197 else
2198 val.u = div_u64(val.u, base);
2199 --next;
2200 }
2201 }
2202
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08002203 switch (qualifier) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204 case 'H': /* that's 'hh' in format */
Jan Beulich53809752012-12-17 16:01:31 -08002205 if (is_sign)
2206 *va_arg(args, signed char *) = val.s;
2207 else
2208 *va_arg(args, unsigned char *) = val.u;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209 break;
2210 case 'h':
Jan Beulich53809752012-12-17 16:01:31 -08002211 if (is_sign)
2212 *va_arg(args, short *) = val.s;
2213 else
2214 *va_arg(args, unsigned short *) = val.u;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215 break;
2216 case 'l':
Jan Beulich53809752012-12-17 16:01:31 -08002217 if (is_sign)
2218 *va_arg(args, long *) = val.s;
2219 else
2220 *va_arg(args, unsigned long *) = val.u;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221 break;
2222 case 'L':
Jan Beulich53809752012-12-17 16:01:31 -08002223 if (is_sign)
2224 *va_arg(args, long long *) = val.s;
2225 else
2226 *va_arg(args, unsigned long long *) = val.u;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227 break;
2228 case 'Z':
2229 case 'z':
Jan Beulich53809752012-12-17 16:01:31 -08002230 *va_arg(args, size_t *) = val.u;
2231 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232 default:
Jan Beulich53809752012-12-17 16:01:31 -08002233 if (is_sign)
2234 *va_arg(args, int *) = val.s;
2235 else
2236 *va_arg(args, unsigned int *) = val.u;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237 break;
2238 }
2239 num++;
2240
2241 if (!next)
2242 break;
2243 str = next;
2244 }
Johannes Bergc6b40d12007-05-08 00:27:20 -07002245
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246 return num;
2247}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248EXPORT_SYMBOL(vsscanf);
2249
2250/**
2251 * sscanf - Unformat a buffer into a list of arguments
2252 * @buf: input buffer
2253 * @fmt: formatting of buffer
2254 * @...: resulting arguments
2255 */
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08002256int sscanf(const char *buf, const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257{
2258 va_list args;
2259 int i;
2260
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08002261 va_start(args, fmt);
2262 i = vsscanf(buf, fmt, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263 va_end(args);
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08002264
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265 return i;
2266}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267EXPORT_SYMBOL(sscanf);