blob: b8fbd275bc462234f525604a1c24e7cd3f0dda3a [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>
26#include <linux/uaccess.h>
Linus Torvalds332d2e72008-10-20 15:07:34 +110027#include <linux/ioport.h>
Joe Perches8a27f7c2009-08-17 12:29:44 +000028#include <net/addrconf.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
Tim Schmielau4e57b682005-10-30 15:03:48 -080030#include <asm/page.h> /* for PAGE_SIZE */
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <asm/div64.h>
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
41 */
Harvey Harrison22d27052008-10-16 13:40:35 -070042unsigned long long simple_strtoull(const char *cp, char **endp, unsigned int base)
Linus Torvalds1da177e2005-04-16 15:20:36 -070043{
Alexey Dobriyan1dff46d2011-10-31 17:12:28 -070044 unsigned long long result;
45 unsigned int rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
Alexey Dobriyan1dff46d2011-10-31 17:12:28 -070047 cp = _parse_integer_fixup_radix(cp, &base);
48 rv = _parse_integer(cp, base, &result);
49 /* FIXME */
50 cp += (rv & ~KSTRTOX_OVERFLOW);
Harvey Harrisonaa46a632008-10-16 13:40:34 -070051
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 if (endp)
53 *endp = (char *)cp;
André Goddard Rosa7b9186f2009-12-14 18:00:57 -080054
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 return result;
56}
Linus Torvalds1da177e2005-04-16 15:20:36 -070057EXPORT_SYMBOL(simple_strtoull);
58
59/**
André Goddard Rosa922ac252009-12-14 18:01:01 -080060 * simple_strtoul - convert a string to an unsigned long
61 * @cp: The start of the string
62 * @endp: A pointer to the end of the parsed string will be placed here
63 * @base: The number base to use
64 */
65unsigned long simple_strtoul(const char *cp, char **endp, unsigned int base)
66{
67 return simple_strtoull(cp, endp, base);
68}
69EXPORT_SYMBOL(simple_strtoul);
70
71/**
72 * simple_strtol - convert a string to a signed long
73 * @cp: The start of the string
74 * @endp: A pointer to the end of the parsed string will be placed here
75 * @base: The number base to use
76 */
77long simple_strtol(const char *cp, char **endp, unsigned int base)
78{
79 if (*cp == '-')
80 return -simple_strtoul(cp + 1, endp, base);
81
82 return simple_strtoul(cp, endp, base);
83}
84EXPORT_SYMBOL(simple_strtol);
85
86/**
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 * simple_strtoll - convert a string to a signed long long
88 * @cp: The start of the string
89 * @endp: A pointer to the end of the parsed string will be placed here
90 * @base: The number base to use
91 */
Harvey Harrison22d27052008-10-16 13:40:35 -070092long long simple_strtoll(const char *cp, char **endp, unsigned int base)
Linus Torvalds1da177e2005-04-16 15:20:36 -070093{
André Goddard Rosa7b9186f2009-12-14 18:00:57 -080094 if (*cp == '-')
Harvey Harrison22d27052008-10-16 13:40:35 -070095 return -simple_strtoull(cp + 1, endp, base);
André Goddard Rosa7b9186f2009-12-14 18:00:57 -080096
Harvey Harrison22d27052008-10-16 13:40:35 -070097 return simple_strtoull(cp, endp, base);
Linus Torvalds1da177e2005-04-16 15:20:36 -070098}
Hans Verkuil98d5ce02010-04-23 13:18:04 -040099EXPORT_SYMBOL(simple_strtoll);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
Joe Perchescf3b4292010-05-24 14:33:16 -0700101static noinline_for_stack
102int skip_atoi(const char **s)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103{
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800104 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
106 while (isdigit(**s))
107 i = i*10 + *((*s)++) - '0';
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800108
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 return i;
110}
111
Denis Vlasenko4277eed2007-07-15 23:41:56 -0700112/* Decimal conversion is by far the most typical, and is used
113 * for /proc and /sys data. This directly impacts e.g. top performance
114 * with many processes running. We optimize it for speed
115 * using code from
116 * http://www.cs.uiowa.edu/~jones/bcd/decimal.html
117 * (with permission from the author, Douglas W. Jones). */
118
119/* Formats correctly any integer in [0,99999].
120 * Outputs from one to five digits depending on input.
121 * On i386 gcc 4.1.2 -O2: ~250 bytes of code. */
Joe Perchescf3b4292010-05-24 14:33:16 -0700122static noinline_for_stack
123char *put_dec_trunc(char *buf, unsigned q)
Denis Vlasenko4277eed2007-07-15 23:41:56 -0700124{
125 unsigned d3, d2, d1, d0;
126 d1 = (q>>4) & 0xf;
127 d2 = (q>>8) & 0xf;
128 d3 = (q>>12);
129
130 d0 = 6*(d3 + d2 + d1) + (q & 0xf);
131 q = (d0 * 0xcd) >> 11;
132 d0 = d0 - 10*q;
133 *buf++ = d0 + '0'; /* least significant digit */
134 d1 = q + 9*d3 + 5*d2 + d1;
135 if (d1 != 0) {
136 q = (d1 * 0xcd) >> 11;
137 d1 = d1 - 10*q;
138 *buf++ = d1 + '0'; /* next digit */
139
140 d2 = q + 2*d2;
141 if ((d2 != 0) || (d3 != 0)) {
142 q = (d2 * 0xd) >> 7;
143 d2 = d2 - 10*q;
144 *buf++ = d2 + '0'; /* next digit */
145
146 d3 = q + 4*d3;
147 if (d3 != 0) {
148 q = (d3 * 0xcd) >> 11;
149 d3 = d3 - 10*q;
150 *buf++ = d3 + '0'; /* next digit */
151 if (q != 0)
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800152 *buf++ = q + '0'; /* most sign. digit */
Denis Vlasenko4277eed2007-07-15 23:41:56 -0700153 }
154 }
155 }
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800156
Denis Vlasenko4277eed2007-07-15 23:41:56 -0700157 return buf;
158}
159/* Same with if's removed. Always emits five digits */
Joe Perchescf3b4292010-05-24 14:33:16 -0700160static noinline_for_stack
161char *put_dec_full(char *buf, unsigned q)
Denis Vlasenko4277eed2007-07-15 23:41:56 -0700162{
163 /* BTW, if q is in [0,9999], 8-bit ints will be enough, */
164 /* but anyway, gcc produces better code with full-sized ints */
165 unsigned d3, d2, d1, d0;
166 d1 = (q>>4) & 0xf;
167 d2 = (q>>8) & 0xf;
168 d3 = (q>>12);
169
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800170 /*
171 * Possible ways to approx. divide by 10
172 * gcc -O2 replaces multiply with shifts and adds
173 * (x * 0xcd) >> 11: 11001101 - shorter code than * 0x67 (on i386)
174 * (x * 0x67) >> 10: 1100111
175 * (x * 0x34) >> 9: 110100 - same
176 * (x * 0x1a) >> 8: 11010 - same
177 * (x * 0x0d) >> 7: 1101 - same, shortest code (on i386)
178 */
Denis Vlasenko4277eed2007-07-15 23:41:56 -0700179 d0 = 6*(d3 + d2 + d1) + (q & 0xf);
180 q = (d0 * 0xcd) >> 11;
181 d0 = d0 - 10*q;
182 *buf++ = d0 + '0';
183 d1 = q + 9*d3 + 5*d2 + d1;
184 q = (d1 * 0xcd) >> 11;
185 d1 = d1 - 10*q;
186 *buf++ = d1 + '0';
187
188 d2 = q + 2*d2;
189 q = (d2 * 0xd) >> 7;
190 d2 = d2 - 10*q;
191 *buf++ = d2 + '0';
192
193 d3 = q + 4*d3;
194 q = (d3 * 0xcd) >> 11; /* - shorter code */
195 /* q = (d3 * 0x67) >> 10; - would also work */
196 d3 = d3 - 10*q;
197 *buf++ = d3 + '0';
198 *buf++ = q + '0';
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800199
Denis Vlasenko4277eed2007-07-15 23:41:56 -0700200 return buf;
201}
202/* No inlining helps gcc to use registers better */
Joe Perchescf3b4292010-05-24 14:33:16 -0700203static noinline_for_stack
204char *put_dec(char *buf, unsigned long long num)
Denis Vlasenko4277eed2007-07-15 23:41:56 -0700205{
206 while (1) {
207 unsigned rem;
208 if (num < 100000)
209 return put_dec_trunc(buf, num);
210 rem = do_div(num, 100000);
211 buf = put_dec_full(buf, rem);
212 }
213}
214
KAMEZAWA Hiroyuki1ac101a2012-03-23 15:02:54 -0700215/*
216 * Convert passed number to decimal string.
217 * Returns the length of string. On buffer overflow, returns 0.
218 *
219 * If speed is not important, use snprintf(). It's easy to read the code.
220 */
221int num_to_str(char *buf, int size, unsigned long long num)
222{
223 char tmp[21]; /* Enough for 2^64 in decimal */
224 int idx, len;
225
226 len = put_dec(tmp, num) - tmp;
227
228 if (len > size)
229 return 0;
230 for (idx = 0; idx < len; ++idx)
231 buf[idx] = tmp[len - idx - 1];
232 return len;
233}
234
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235#define ZEROPAD 1 /* pad with zero */
236#define SIGN 2 /* unsigned/signed long */
237#define PLUS 4 /* show plus */
238#define SPACE 8 /* space if plus */
239#define LEFT 16 /* left justified */
Bjorn Helgaasb89dc5d2010-03-05 10:47:31 -0700240#define SMALL 32 /* use lowercase in hex (must be 32 == 0x20) */
241#define SPECIAL 64 /* prefix hex with "0x", octal with "0" */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100243enum format_type {
244 FORMAT_TYPE_NONE, /* Just a string part */
Vegard Nossumed681a92009-03-14 12:08:50 +0100245 FORMAT_TYPE_WIDTH,
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100246 FORMAT_TYPE_PRECISION,
247 FORMAT_TYPE_CHAR,
248 FORMAT_TYPE_STR,
249 FORMAT_TYPE_PTR,
250 FORMAT_TYPE_PERCENT_CHAR,
251 FORMAT_TYPE_INVALID,
252 FORMAT_TYPE_LONG_LONG,
253 FORMAT_TYPE_ULONG,
254 FORMAT_TYPE_LONG,
Zhaoleia4e94ef2009-03-27 17:07:05 +0800255 FORMAT_TYPE_UBYTE,
256 FORMAT_TYPE_BYTE,
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100257 FORMAT_TYPE_USHORT,
258 FORMAT_TYPE_SHORT,
259 FORMAT_TYPE_UINT,
260 FORMAT_TYPE_INT,
261 FORMAT_TYPE_NRCHARS,
262 FORMAT_TYPE_SIZE_T,
263 FORMAT_TYPE_PTRDIFF
264};
265
266struct printf_spec {
Joe Perches4e310fd2010-04-14 09:27:40 -0700267 u8 type; /* format_type enum */
Joe Perchesef0658f2010-03-06 17:10:14 -0800268 u8 flags; /* flags to number() */
Joe Perches4e310fd2010-04-14 09:27:40 -0700269 u8 base; /* number base, 8, 10 or 16 only */
270 u8 qualifier; /* number qualifier, one of 'hHlLtzZ' */
271 s16 field_width; /* width of output field */
272 s16 precision; /* # of digits/chars */
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100273};
274
Joe Perchescf3b4292010-05-24 14:33:16 -0700275static noinline_for_stack
276char *number(char *buf, char *end, unsigned long long num,
277 struct printf_spec spec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278{
Denys Vlasenko9b706ae2008-02-09 23:24:09 +0100279 /* we are called with base 8, 10 or 16, only, thus don't need "G..." */
280 static const char digits[16] = "0123456789ABCDEF"; /* "GHIJKLMNOPQRSTUVWXYZ"; */
281
282 char tmp[66];
283 char sign;
284 char locase;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100285 int need_pfx = ((spec.flags & SPECIAL) && spec.base != 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 int i;
Pierre Carrier7c203422012-05-29 15:07:35 -0700287 bool is_zero = num == 0LL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
Denys Vlasenko9b706ae2008-02-09 23:24:09 +0100289 /* locase = 0 or 0x20. ORing digits or letters with 'locase'
290 * produces same digits or (maybe lowercased) letters */
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100291 locase = (spec.flags & SMALL);
292 if (spec.flags & LEFT)
293 spec.flags &= ~ZEROPAD;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 sign = 0;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100295 if (spec.flags & SIGN) {
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800296 if ((signed long long)num < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 sign = '-';
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800298 num = -(signed long long)num;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100299 spec.field_width--;
300 } else if (spec.flags & PLUS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 sign = '+';
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100302 spec.field_width--;
303 } else if (spec.flags & SPACE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 sign = ' ';
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100305 spec.field_width--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 }
307 }
Denis Vlasenkob39a7342007-07-15 23:41:54 -0700308 if (need_pfx) {
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100309 if (spec.base == 16)
Pierre Carrier7c203422012-05-29 15:07:35 -0700310 spec.field_width -= 2;
311 else if (!is_zero)
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100312 spec.field_width--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 }
Denis Vlasenkob39a7342007-07-15 23:41:54 -0700314
315 /* generate full string in tmp[], in reverse order */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 i = 0;
317 if (num == 0)
Denis Vlasenkob39a7342007-07-15 23:41:54 -0700318 tmp[i++] = '0';
Denis Vlasenko4277eed2007-07-15 23:41:56 -0700319 /* Generic code, for any base:
320 else do {
Denys Vlasenko9b706ae2008-02-09 23:24:09 +0100321 tmp[i++] = (digits[do_div(num,base)] | locase);
Denis Vlasenko4277eed2007-07-15 23:41:56 -0700322 } while (num != 0);
323 */
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100324 else if (spec.base != 10) { /* 8 or 16 */
325 int mask = spec.base - 1;
Denis Vlasenkob39a7342007-07-15 23:41:54 -0700326 int shift = 3;
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800327
328 if (spec.base == 16)
329 shift = 4;
Denis Vlasenkob39a7342007-07-15 23:41:54 -0700330 do {
Denys Vlasenko9b706ae2008-02-09 23:24:09 +0100331 tmp[i++] = (digits[((unsigned char)num) & mask] | locase);
Denis Vlasenkob39a7342007-07-15 23:41:54 -0700332 num >>= shift;
333 } while (num);
Denis Vlasenko4277eed2007-07-15 23:41:56 -0700334 } else { /* base 10 */
335 i = put_dec(tmp, num) - tmp;
336 }
Denis Vlasenkob39a7342007-07-15 23:41:54 -0700337
338 /* printing 100 using %2d gives "100", not "00" */
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100339 if (i > spec.precision)
340 spec.precision = i;
Denis Vlasenkob39a7342007-07-15 23:41:54 -0700341 /* leading space padding */
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100342 spec.field_width -= spec.precision;
343 if (!(spec.flags & (ZEROPAD+LEFT))) {
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800344 while (--spec.field_width >= 0) {
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -0700345 if (buf < end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 *buf = ' ';
347 ++buf;
348 }
349 }
Denis Vlasenkob39a7342007-07-15 23:41:54 -0700350 /* sign */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 if (sign) {
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -0700352 if (buf < end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 *buf = sign;
354 ++buf;
355 }
Denis Vlasenkob39a7342007-07-15 23:41:54 -0700356 /* "0x" / "0" prefix */
357 if (need_pfx) {
Pierre Carrier7c203422012-05-29 15:07:35 -0700358 if (spec.base == 16 || !is_zero) {
359 if (buf < end)
360 *buf = '0';
361 ++buf;
362 }
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100363 if (spec.base == 16) {
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -0700364 if (buf < end)
Denys Vlasenko9b706ae2008-02-09 23:24:09 +0100365 *buf = ('X' | locase);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 ++buf;
367 }
368 }
Denis Vlasenkob39a7342007-07-15 23:41:54 -0700369 /* zero or space padding */
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100370 if (!(spec.flags & LEFT)) {
371 char c = (spec.flags & ZEROPAD) ? '0' : ' ';
372 while (--spec.field_width >= 0) {
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -0700373 if (buf < end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 *buf = c;
375 ++buf;
376 }
377 }
Denis Vlasenkob39a7342007-07-15 23:41:54 -0700378 /* hmm even more zero padding? */
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100379 while (i <= --spec.precision) {
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -0700380 if (buf < end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 *buf = '0';
382 ++buf;
383 }
Denis Vlasenkob39a7342007-07-15 23:41:54 -0700384 /* actual digits of result */
385 while (--i >= 0) {
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -0700386 if (buf < end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 *buf = tmp[i];
388 ++buf;
389 }
Denis Vlasenkob39a7342007-07-15 23:41:54 -0700390 /* trailing space padding */
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100391 while (--spec.field_width >= 0) {
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -0700392 if (buf < end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 *buf = ' ';
394 ++buf;
395 }
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800396
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 return buf;
398}
399
Joe Perchescf3b4292010-05-24 14:33:16 -0700400static noinline_for_stack
401char *string(char *buf, char *end, const char *s, struct printf_spec spec)
Linus Torvalds0f9bfa52008-07-06 16:06:25 -0700402{
403 int len, i;
404
405 if ((unsigned long)s < PAGE_SIZE)
André Goddard Rosa0f4f81d2009-12-14 18:00:55 -0800406 s = "(null)";
Linus Torvalds0f9bfa52008-07-06 16:06:25 -0700407
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100408 len = strnlen(s, spec.precision);
Linus Torvalds0f9bfa52008-07-06 16:06:25 -0700409
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100410 if (!(spec.flags & LEFT)) {
411 while (len < spec.field_width--) {
Linus Torvalds0f9bfa52008-07-06 16:06:25 -0700412 if (buf < end)
413 *buf = ' ';
414 ++buf;
415 }
416 }
417 for (i = 0; i < len; ++i) {
418 if (buf < end)
419 *buf = *s;
420 ++buf; ++s;
421 }
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100422 while (len < spec.field_width--) {
Linus Torvalds0f9bfa52008-07-06 16:06:25 -0700423 if (buf < end)
424 *buf = ' ';
425 ++buf;
426 }
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800427
Linus Torvalds0f9bfa52008-07-06 16:06:25 -0700428 return buf;
429}
430
Joe Perchescf3b4292010-05-24 14:33:16 -0700431static noinline_for_stack
432char *symbol_string(char *buf, char *end, void *ptr,
433 struct printf_spec spec, char ext)
Linus Torvalds0fe1ef22008-07-06 16:43:12 -0700434{
435 unsigned long value = (unsigned long) ptr;
436#ifdef CONFIG_KALLSYMS
437 char sym[KSYM_SYMBOL_LEN];
Namhyung Kim0f77a8d2011-03-24 11:42:29 +0900438 if (ext == 'B')
439 sprint_backtrace(sym, value);
440 else if (ext != 'f' && ext != 's')
Frederic Weisbecker0c8b9462009-04-15 17:48:18 +0200441 sprint_symbol(sym, value);
442 else
Stephen Boyd4796dd22012-05-29 15:07:33 -0700443 sprint_symbol_no_offset(sym, value);
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800444
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100445 return string(buf, end, sym, spec);
Linus Torvalds0fe1ef22008-07-06 16:43:12 -0700446#else
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800447 spec.field_width = 2 * sizeof(void *);
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100448 spec.flags |= SPECIAL | SMALL | ZEROPAD;
449 spec.base = 16;
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800450
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100451 return number(buf, end, value, spec);
Linus Torvalds0fe1ef22008-07-06 16:43:12 -0700452#endif
453}
454
Joe Perchescf3b4292010-05-24 14:33:16 -0700455static noinline_for_stack
456char *resource_string(char *buf, char *end, struct resource *res,
457 struct printf_spec spec, const char *fmt)
Linus Torvalds332d2e72008-10-20 15:07:34 +1100458{
459#ifndef IO_RSRC_PRINTK_SIZE
Bjorn Helgaas28405372009-10-06 15:33:29 -0600460#define IO_RSRC_PRINTK_SIZE 6
Linus Torvalds332d2e72008-10-20 15:07:34 +1100461#endif
462
463#ifndef MEM_RSRC_PRINTK_SIZE
Bjorn Helgaas28405372009-10-06 15:33:29 -0600464#define MEM_RSRC_PRINTK_SIZE 10
Linus Torvalds332d2e72008-10-20 15:07:34 +1100465#endif
Bjorn Helgaas4da0b662010-03-05 10:47:37 -0700466 static const struct printf_spec io_spec = {
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100467 .base = 16,
Bjorn Helgaas4da0b662010-03-05 10:47:37 -0700468 .field_width = IO_RSRC_PRINTK_SIZE,
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100469 .precision = -1,
470 .flags = SPECIAL | SMALL | ZEROPAD,
471 };
Bjorn Helgaas4da0b662010-03-05 10:47:37 -0700472 static const struct printf_spec mem_spec = {
473 .base = 16,
474 .field_width = MEM_RSRC_PRINTK_SIZE,
475 .precision = -1,
476 .flags = SPECIAL | SMALL | ZEROPAD,
477 };
Bjorn Helgaas0f4050c2010-03-05 10:47:42 -0700478 static const struct printf_spec bus_spec = {
479 .base = 16,
480 .field_width = 2,
481 .precision = -1,
482 .flags = SMALL | ZEROPAD,
483 };
Bjorn Helgaas4da0b662010-03-05 10:47:37 -0700484 static const struct printf_spec dec_spec = {
Bjorn Helgaasc91d3372009-10-06 15:33:34 -0600485 .base = 10,
486 .precision = -1,
487 .flags = 0,
488 };
Bjorn Helgaas4da0b662010-03-05 10:47:37 -0700489 static const struct printf_spec str_spec = {
Bjorn Helgaasfd955412009-10-06 15:33:39 -0600490 .field_width = -1,
491 .precision = 10,
492 .flags = LEFT,
493 };
Bjorn Helgaas4da0b662010-03-05 10:47:37 -0700494 static const struct printf_spec flag_spec = {
Bjorn Helgaasfd955412009-10-06 15:33:39 -0600495 .base = 16,
496 .precision = -1,
497 .flags = SPECIAL | SMALL,
498 };
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600499
500 /* 32-bit res (sizeof==4): 10 chars in dec, 10 in hex ("0x" + 8)
501 * 64-bit res (sizeof==8): 20 chars in dec, 18 in hex ("0x" + 16) */
502#define RSRC_BUF_SIZE ((2 * sizeof(resource_size_t)) + 4)
503#define FLAG_BUF_SIZE (2 * sizeof(res->flags))
Bjorn Helgaas9d7cca02010-03-05 10:47:47 -0700504#define DECODED_BUF_SIZE sizeof("[mem - 64bit pref window disabled]")
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600505#define RAW_BUF_SIZE sizeof("[mem - flags 0x]")
506 char sym[max(2*RSRC_BUF_SIZE + DECODED_BUF_SIZE,
507 2*RSRC_BUF_SIZE + FLAG_BUF_SIZE + RAW_BUF_SIZE)];
508
Linus Torvalds332d2e72008-10-20 15:07:34 +1100509 char *p = sym, *pend = sym + sizeof(sym);
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600510 int decode = (fmt[0] == 'R') ? 1 : 0;
Bjorn Helgaas4da0b662010-03-05 10:47:37 -0700511 const struct printf_spec *specp;
Linus Torvalds332d2e72008-10-20 15:07:34 +1100512
513 *p++ = '[';
Bjorn Helgaas4da0b662010-03-05 10:47:37 -0700514 if (res->flags & IORESOURCE_IO) {
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600515 p = string(p, pend, "io ", str_spec);
Bjorn Helgaas4da0b662010-03-05 10:47:37 -0700516 specp = &io_spec;
517 } else if (res->flags & IORESOURCE_MEM) {
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600518 p = string(p, pend, "mem ", str_spec);
Bjorn Helgaas4da0b662010-03-05 10:47:37 -0700519 specp = &mem_spec;
520 } else if (res->flags & IORESOURCE_IRQ) {
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600521 p = string(p, pend, "irq ", str_spec);
Bjorn Helgaas4da0b662010-03-05 10:47:37 -0700522 specp = &dec_spec;
523 } else if (res->flags & IORESOURCE_DMA) {
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600524 p = string(p, pend, "dma ", str_spec);
Bjorn Helgaas4da0b662010-03-05 10:47:37 -0700525 specp = &dec_spec;
Bjorn Helgaas0f4050c2010-03-05 10:47:42 -0700526 } else if (res->flags & IORESOURCE_BUS) {
527 p = string(p, pend, "bus ", str_spec);
528 specp = &bus_spec;
Bjorn Helgaas4da0b662010-03-05 10:47:37 -0700529 } else {
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600530 p = string(p, pend, "??? ", str_spec);
Bjorn Helgaas4da0b662010-03-05 10:47:37 -0700531 specp = &mem_spec;
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600532 decode = 0;
Bjorn Helgaasfd955412009-10-06 15:33:39 -0600533 }
Bjorn Helgaas4da0b662010-03-05 10:47:37 -0700534 p = number(p, pend, res->start, *specp);
Bjorn Helgaasc91d3372009-10-06 15:33:34 -0600535 if (res->start != res->end) {
536 *p++ = '-';
Bjorn Helgaas4da0b662010-03-05 10:47:37 -0700537 p = number(p, pend, res->end, *specp);
Bjorn Helgaasc91d3372009-10-06 15:33:34 -0600538 }
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600539 if (decode) {
Bjorn Helgaasfd955412009-10-06 15:33:39 -0600540 if (res->flags & IORESOURCE_MEM_64)
541 p = string(p, pend, " 64bit", str_spec);
542 if (res->flags & IORESOURCE_PREFETCH)
543 p = string(p, pend, " pref", str_spec);
Bjorn Helgaas9d7cca02010-03-05 10:47:47 -0700544 if (res->flags & IORESOURCE_WINDOW)
545 p = string(p, pend, " window", str_spec);
Bjorn Helgaasfd955412009-10-06 15:33:39 -0600546 if (res->flags & IORESOURCE_DISABLED)
547 p = string(p, pend, " disabled", str_spec);
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600548 } else {
549 p = string(p, pend, " flags ", str_spec);
550 p = number(p, pend, res->flags, flag_spec);
Bjorn Helgaasfd955412009-10-06 15:33:39 -0600551 }
Linus Torvalds332d2e72008-10-20 15:07:34 +1100552 *p++ = ']';
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600553 *p = '\0';
Linus Torvalds332d2e72008-10-20 15:07:34 +1100554
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100555 return string(buf, end, sym, spec);
Linus Torvalds332d2e72008-10-20 15:07:34 +1100556}
557
Joe Perchescf3b4292010-05-24 14:33:16 -0700558static noinline_for_stack
559char *mac_address_string(char *buf, char *end, u8 *addr,
560 struct printf_spec spec, const char *fmt)
Harvey Harrisondd45c9c2008-10-27 15:47:12 -0700561{
Joe Perches8a27f7c2009-08-17 12:29:44 +0000562 char mac_addr[sizeof("xx:xx:xx:xx:xx:xx")];
Harvey Harrisondd45c9c2008-10-27 15:47:12 -0700563 char *p = mac_addr;
564 int i;
Joe Perchesbc7259a2010-01-07 11:43:50 +0000565 char separator;
566
567 if (fmt[1] == 'F') { /* FDDI canonical format */
Joe Perchesbc7259a2010-01-07 11:43:50 +0000568 separator = '-';
569 } else {
Joe Perchesbc7259a2010-01-07 11:43:50 +0000570 separator = ':';
571 }
Harvey Harrisondd45c9c2008-10-27 15:47:12 -0700572
573 for (i = 0; i < 6; i++) {
Andy Shevchenko55036ba2011-10-31 17:12:41 -0700574 p = hex_byte_pack(p, addr[i]);
Joe Perches8a27f7c2009-08-17 12:29:44 +0000575 if (fmt[0] == 'M' && i != 5)
Joe Perchesbc7259a2010-01-07 11:43:50 +0000576 *p++ = separator;
Harvey Harrisondd45c9c2008-10-27 15:47:12 -0700577 }
578 *p = '\0';
579
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100580 return string(buf, end, mac_addr, spec);
Harvey Harrisondd45c9c2008-10-27 15:47:12 -0700581}
582
Joe Perchescf3b4292010-05-24 14:33:16 -0700583static noinline_for_stack
584char *ip4_string(char *p, const u8 *addr, const char *fmt)
Harvey Harrison689afa72008-10-28 16:04:44 -0700585{
Harvey Harrison689afa72008-10-28 16:04:44 -0700586 int i;
Joe Perches0159f242010-01-13 20:23:30 -0800587 bool leading_zeros = (fmt[0] == 'i');
588 int index;
589 int step;
Harvey Harrison689afa72008-10-28 16:04:44 -0700590
Joe Perches0159f242010-01-13 20:23:30 -0800591 switch (fmt[2]) {
592 case 'h':
593#ifdef __BIG_ENDIAN
594 index = 0;
595 step = 1;
596#else
597 index = 3;
598 step = -1;
599#endif
600 break;
601 case 'l':
602 index = 3;
603 step = -1;
604 break;
605 case 'n':
606 case 'b':
607 default:
608 index = 0;
609 step = 1;
610 break;
611 }
Joe Perches8a27f7c2009-08-17 12:29:44 +0000612 for (i = 0; i < 4; i++) {
613 char temp[3]; /* hold each IP quad in reverse order */
Joe Perches0159f242010-01-13 20:23:30 -0800614 int digits = put_dec_trunc(temp, addr[index]) - temp;
Joe Perches8a27f7c2009-08-17 12:29:44 +0000615 if (leading_zeros) {
616 if (digits < 3)
617 *p++ = '0';
618 if (digits < 2)
619 *p++ = '0';
620 }
621 /* reverse the digits in the quad */
622 while (digits--)
623 *p++ = temp[digits];
624 if (i < 3)
625 *p++ = '.';
Joe Perches0159f242010-01-13 20:23:30 -0800626 index += step;
Joe Perches8a27f7c2009-08-17 12:29:44 +0000627 }
Joe Perches8a27f7c2009-08-17 12:29:44 +0000628 *p = '\0';
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800629
Joe Perches8a27f7c2009-08-17 12:29:44 +0000630 return p;
631}
632
Joe Perchescf3b4292010-05-24 14:33:16 -0700633static noinline_for_stack
634char *ip6_compressed_string(char *p, const char *addr)
Joe Perches8a27f7c2009-08-17 12:29:44 +0000635{
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800636 int i, j, range;
Joe Perches8a27f7c2009-08-17 12:29:44 +0000637 unsigned char zerolength[8];
638 int longest = 1;
639 int colonpos = -1;
640 u16 word;
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800641 u8 hi, lo;
Joe Perches8a27f7c2009-08-17 12:29:44 +0000642 bool needcolon = false;
Joe Percheseb78cd22009-09-18 13:04:06 +0000643 bool useIPv4;
644 struct in6_addr in6;
645
646 memcpy(&in6, addr, sizeof(struct in6_addr));
647
648 useIPv4 = ipv6_addr_v4mapped(&in6) || ipv6_addr_is_isatap(&in6);
Joe Perches8a27f7c2009-08-17 12:29:44 +0000649
650 memset(zerolength, 0, sizeof(zerolength));
651
652 if (useIPv4)
653 range = 6;
654 else
655 range = 8;
656
657 /* find position of longest 0 run */
658 for (i = 0; i < range; i++) {
659 for (j = i; j < range; j++) {
Joe Percheseb78cd22009-09-18 13:04:06 +0000660 if (in6.s6_addr16[j] != 0)
Joe Perches8a27f7c2009-08-17 12:29:44 +0000661 break;
662 zerolength[i]++;
663 }
664 }
665 for (i = 0; i < range; i++) {
666 if (zerolength[i] > longest) {
667 longest = zerolength[i];
668 colonpos = i;
669 }
670 }
Joe Perches29cf5192011-06-09 11:23:37 -0700671 if (longest == 1) /* don't compress a single 0 */
672 colonpos = -1;
Joe Perches8a27f7c2009-08-17 12:29:44 +0000673
674 /* emit address */
675 for (i = 0; i < range; i++) {
676 if (i == colonpos) {
677 if (needcolon || i == 0)
678 *p++ = ':';
679 *p++ = ':';
680 needcolon = false;
681 i += longest - 1;
682 continue;
683 }
684 if (needcolon) {
685 *p++ = ':';
686 needcolon = false;
687 }
688 /* hex u16 without leading 0s */
Joe Percheseb78cd22009-09-18 13:04:06 +0000689 word = ntohs(in6.s6_addr16[i]);
Joe Perches8a27f7c2009-08-17 12:29:44 +0000690 hi = word >> 8;
691 lo = word & 0xff;
692 if (hi) {
693 if (hi > 0x0f)
Andy Shevchenko55036ba2011-10-31 17:12:41 -0700694 p = hex_byte_pack(p, hi);
Joe Perches8a27f7c2009-08-17 12:29:44 +0000695 else
696 *p++ = hex_asc_lo(hi);
Andy Shevchenko55036ba2011-10-31 17:12:41 -0700697 p = hex_byte_pack(p, lo);
Joe Perches8a27f7c2009-08-17 12:29:44 +0000698 }
André Goddard Rosab5ff9922009-12-14 18:00:59 -0800699 else if (lo > 0x0f)
Andy Shevchenko55036ba2011-10-31 17:12:41 -0700700 p = hex_byte_pack(p, lo);
Joe Perches8a27f7c2009-08-17 12:29:44 +0000701 else
702 *p++ = hex_asc_lo(lo);
703 needcolon = true;
704 }
705
706 if (useIPv4) {
707 if (needcolon)
708 *p++ = ':';
Joe Perches0159f242010-01-13 20:23:30 -0800709 p = ip4_string(p, &in6.s6_addr[12], "I4");
Joe Perches8a27f7c2009-08-17 12:29:44 +0000710 }
Joe Perches8a27f7c2009-08-17 12:29:44 +0000711 *p = '\0';
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800712
Joe Perches8a27f7c2009-08-17 12:29:44 +0000713 return p;
714}
715
Joe Perchescf3b4292010-05-24 14:33:16 -0700716static noinline_for_stack
717char *ip6_string(char *p, const char *addr, const char *fmt)
Joe Perches8a27f7c2009-08-17 12:29:44 +0000718{
719 int i;
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800720
Harvey Harrison689afa72008-10-28 16:04:44 -0700721 for (i = 0; i < 8; i++) {
Andy Shevchenko55036ba2011-10-31 17:12:41 -0700722 p = hex_byte_pack(p, *addr++);
723 p = hex_byte_pack(p, *addr++);
Joe Perches8a27f7c2009-08-17 12:29:44 +0000724 if (fmt[0] == 'I' && i != 7)
Harvey Harrison689afa72008-10-28 16:04:44 -0700725 *p++ = ':';
726 }
727 *p = '\0';
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800728
Joe Perches8a27f7c2009-08-17 12:29:44 +0000729 return p;
730}
731
Joe Perchescf3b4292010-05-24 14:33:16 -0700732static noinline_for_stack
733char *ip6_addr_string(char *buf, char *end, const u8 *addr,
734 struct printf_spec spec, const char *fmt)
Joe Perches8a27f7c2009-08-17 12:29:44 +0000735{
736 char ip6_addr[sizeof("xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:255.255.255.255")];
737
738 if (fmt[0] == 'I' && fmt[2] == 'c')
Joe Percheseb78cd22009-09-18 13:04:06 +0000739 ip6_compressed_string(ip6_addr, addr);
Joe Perches8a27f7c2009-08-17 12:29:44 +0000740 else
Joe Percheseb78cd22009-09-18 13:04:06 +0000741 ip6_string(ip6_addr, addr, fmt);
Harvey Harrison689afa72008-10-28 16:04:44 -0700742
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100743 return string(buf, end, ip6_addr, spec);
Harvey Harrison689afa72008-10-28 16:04:44 -0700744}
745
Joe Perchescf3b4292010-05-24 14:33:16 -0700746static noinline_for_stack
747char *ip4_addr_string(char *buf, char *end, const u8 *addr,
748 struct printf_spec spec, const char *fmt)
Harvey Harrison4aa99602008-10-29 12:49:58 -0700749{
Joe Perches8a27f7c2009-08-17 12:29:44 +0000750 char ip4_addr[sizeof("255.255.255.255")];
Harvey Harrison4aa99602008-10-29 12:49:58 -0700751
Joe Perches0159f242010-01-13 20:23:30 -0800752 ip4_string(ip4_addr, addr, fmt);
Harvey Harrison4aa99602008-10-29 12:49:58 -0700753
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100754 return string(buf, end, ip4_addr, spec);
Harvey Harrison4aa99602008-10-29 12:49:58 -0700755}
756
Joe Perchescf3b4292010-05-24 14:33:16 -0700757static noinline_for_stack
758char *uuid_string(char *buf, char *end, const u8 *addr,
759 struct printf_spec spec, const char *fmt)
Joe Perches9ac6e442009-12-14 18:01:09 -0800760{
761 char uuid[sizeof("xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx")];
762 char *p = uuid;
763 int i;
764 static const u8 be[16] = {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15};
765 static const u8 le[16] = {3,2,1,0,5,4,7,6,8,9,10,11,12,13,14,15};
766 const u8 *index = be;
767 bool uc = false;
768
769 switch (*(++fmt)) {
770 case 'L':
771 uc = true; /* fall-through */
772 case 'l':
773 index = le;
774 break;
775 case 'B':
776 uc = true;
777 break;
778 }
779
780 for (i = 0; i < 16; i++) {
Andy Shevchenko55036ba2011-10-31 17:12:41 -0700781 p = hex_byte_pack(p, addr[index[i]]);
Joe Perches9ac6e442009-12-14 18:01:09 -0800782 switch (i) {
783 case 3:
784 case 5:
785 case 7:
786 case 9:
787 *p++ = '-';
788 break;
789 }
790 }
791
792 *p = 0;
793
794 if (uc) {
795 p = uuid;
796 do {
797 *p = toupper(*p);
798 } while (*(++p));
799 }
800
801 return string(buf, end, uuid, spec);
802}
803
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000804static
805char *netdev_feature_string(char *buf, char *end, const u8 *addr,
806 struct printf_spec spec)
807{
808 spec.flags |= SPECIAL | SMALL | ZEROPAD;
809 if (spec.field_width == -1)
810 spec.field_width = 2 + 2 * sizeof(netdev_features_t);
811 spec.base = 16;
812
813 return number(buf, end, *(const netdev_features_t *)addr, spec);
814}
815
Ingo Molnar411f05f2011-05-12 23:00:28 +0200816int kptr_restrict __read_mostly;
Dan Rosenberg455cd5a2011-01-12 16:59:41 -0800817
Linus Torvalds4d8a7432008-07-06 16:24:57 -0700818/*
819 * Show a '%p' thing. A kernel extension is that the '%p' is followed
820 * by an extra set of alphanumeric characters that are extended format
821 * specifiers.
822 *
Linus Torvalds332d2e72008-10-20 15:07:34 +1100823 * Right now we handle:
Linus Torvalds0fe1ef22008-07-06 16:43:12 -0700824 *
Frederic Weisbecker0c8b9462009-04-15 17:48:18 +0200825 * - 'F' For symbolic function descriptor pointers with offset
826 * - 'f' For simple symbolic function names without offset
Steven Rostedt0efb4d22009-09-17 09:27:29 -0400827 * - 'S' For symbolic direct pointers with offset
828 * - 's' For symbolic direct pointers without offset
Namhyung Kim0f77a8d2011-03-24 11:42:29 +0900829 * - 'B' For backtraced symbolic direct pointers with offset
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600830 * - 'R' For decoded struct resource, e.g., [mem 0x0-0x1f 64bit pref]
831 * - 'r' For raw struct resource, e.g., [mem 0x0-0x1f flags 0x201]
Harvey Harrisondd45c9c2008-10-27 15:47:12 -0700832 * - 'M' For a 6-byte MAC address, it prints the address in the
833 * usual colon-separated hex notation
Joe Perches8a27f7c2009-08-17 12:29:44 +0000834 * - 'm' For a 6-byte MAC address, it prints the hex address without colons
Joe Perchesbc7259a2010-01-07 11:43:50 +0000835 * - 'MF' For a 6-byte MAC FDDI address, it prints the address
Joe Perchesc8e00062010-01-11 00:44:14 -0800836 * with a dash-separated hex notation
Joe Perches8a27f7c2009-08-17 12:29:44 +0000837 * - 'I' [46] for IPv4/IPv6 addresses printed in the usual way
838 * IPv4 uses dot-separated decimal without leading 0's (1.2.3.4)
839 * IPv6 uses colon separated network-order 16 bit hex with leading 0's
840 * - 'i' [46] for 'raw' IPv4/IPv6 addresses
841 * IPv6 omits the colons (01020304...0f)
842 * IPv4 uses dot-separated decimal with leading 0's (010.123.045.006)
Joe Perches0159f242010-01-13 20:23:30 -0800843 * - '[Ii]4[hnbl]' IPv4 addresses in host, network, big or little endian order
Joe Perches8a27f7c2009-08-17 12:29:44 +0000844 * - 'I6c' for IPv6 addresses printed as specified by
Joe Perches29cf5192011-06-09 11:23:37 -0700845 * http://tools.ietf.org/html/rfc5952
Joe Perches9ac6e442009-12-14 18:01:09 -0800846 * - 'U' For a 16 byte UUID/GUID, it prints the UUID/GUID in the form
847 * "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
848 * Options for %pU are:
849 * b big endian lower case hex (default)
850 * B big endian UPPER case hex
851 * l little endian lower case hex
852 * L little endian UPPER case hex
853 * big endian output byte order is:
854 * [0][1][2][3]-[4][5]-[6][7]-[8][9]-[10][11][12][13][14][15]
855 * little endian output byte order is:
856 * [3][2][1][0]-[5][4]-[7][6]-[8][9]-[10][11][12][13][14][15]
Joe Perches7db6f5f2010-06-27 01:02:33 +0000857 * - 'V' For a struct va_format which contains a format string * and va_list *,
858 * call vsnprintf(->format, *->va_list).
859 * Implements a "recursive vsnprintf".
860 * Do not use this feature without some mechanism to verify the
861 * correctness of the format string and va_list arguments.
Dan Rosenberg455cd5a2011-01-12 16:59:41 -0800862 * - 'K' For a kernel pointer that should be hidden from unprivileged users
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000863 * - 'NF' For a netdev_features_t
Joe Perches9ac6e442009-12-14 18:01:09 -0800864 *
Linus Torvalds332d2e72008-10-20 15:07:34 +1100865 * Note: The difference between 'S' and 'F' is that on ia64 and ppc64
866 * function pointers are really function descriptors, which contain a
867 * pointer to the real address.
Linus Torvalds4d8a7432008-07-06 16:24:57 -0700868 */
Joe Perchescf3b4292010-05-24 14:33:16 -0700869static noinline_for_stack
870char *pointer(const char *fmt, char *buf, char *end, void *ptr,
871 struct printf_spec spec)
Linus Torvalds78a8bf62008-07-06 16:16:15 -0700872{
Grant Likely725fe002012-05-31 16:26:08 -0700873 int default_width = 2 * sizeof(void *) + (spec.flags & SPECIAL ? 2 : 0);
874
Kees Cook9f36e2c2011-03-22 16:34:22 -0700875 if (!ptr && *fmt != 'K') {
Joe Perches5e057982010-10-26 14:22:50 -0700876 /*
877 * Print (null) with the same width as a pointer so it makes
878 * tabular output look nice.
879 */
880 if (spec.field_width == -1)
Grant Likely725fe002012-05-31 16:26:08 -0700881 spec.field_width = default_width;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100882 return string(buf, end, "(null)", spec);
Joe Perches5e057982010-10-26 14:22:50 -0700883 }
Linus Torvaldsd97106a2009-01-03 11:46:17 -0800884
Linus Torvalds0fe1ef22008-07-06 16:43:12 -0700885 switch (*fmt) {
886 case 'F':
Frederic Weisbecker0c8b9462009-04-15 17:48:18 +0200887 case 'f':
Linus Torvalds0fe1ef22008-07-06 16:43:12 -0700888 ptr = dereference_function_descriptor(ptr);
889 /* Fallthrough */
890 case 'S':
Joe Perches9ac6e442009-12-14 18:01:09 -0800891 case 's':
Namhyung Kim0f77a8d2011-03-24 11:42:29 +0900892 case 'B':
Frederic Weisbecker0c8b9462009-04-15 17:48:18 +0200893 return symbol_string(buf, end, ptr, spec, *fmt);
Linus Torvalds332d2e72008-10-20 15:07:34 +1100894 case 'R':
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600895 case 'r':
Bjorn Helgaasfd955412009-10-06 15:33:39 -0600896 return resource_string(buf, end, ptr, spec, fmt);
Joe Perches8a27f7c2009-08-17 12:29:44 +0000897 case 'M': /* Colon separated: 00:01:02:03:04:05 */
898 case 'm': /* Contiguous: 000102030405 */
Joe Perchesbc7259a2010-01-07 11:43:50 +0000899 /* [mM]F (FDDI, bit reversed) */
Joe Perches8a27f7c2009-08-17 12:29:44 +0000900 return mac_address_string(buf, end, ptr, spec, fmt);
901 case 'I': /* Formatted IP supported
902 * 4: 1.2.3.4
903 * 6: 0001:0203:...:0708
904 * 6c: 1::708 or 1::1.2.3.4
905 */
906 case 'i': /* Contiguous:
907 * 4: 001.002.003.004
908 * 6: 000102...0f
909 */
910 switch (fmt[1]) {
911 case '6':
912 return ip6_addr_string(buf, end, ptr, spec, fmt);
913 case '4':
914 return ip4_addr_string(buf, end, ptr, spec, fmt);
915 }
Harvey Harrison4aa99602008-10-29 12:49:58 -0700916 break;
Joe Perches9ac6e442009-12-14 18:01:09 -0800917 case 'U':
918 return uuid_string(buf, end, ptr, spec, fmt);
Joe Perches7db6f5f2010-06-27 01:02:33 +0000919 case 'V':
Jan Beulich5756b762012-03-05 16:49:24 +0000920 {
921 va_list va;
922
923 va_copy(va, *((struct va_format *)ptr)->va);
924 buf += vsnprintf(buf, end > buf ? end - buf : 0,
925 ((struct va_format *)ptr)->fmt, va);
926 va_end(va);
927 return buf;
928 }
Dan Rosenberg455cd5a2011-01-12 16:59:41 -0800929 case 'K':
930 /*
931 * %pK cannot be used in IRQ context because its test
932 * for CAP_SYSLOG would be meaningless.
933 */
934 if (in_irq() || in_serving_softirq() || in_nmi()) {
935 if (spec.field_width == -1)
Grant Likely725fe002012-05-31 16:26:08 -0700936 spec.field_width = default_width;
Dan Rosenberg455cd5a2011-01-12 16:59:41 -0800937 return string(buf, end, "pK-error", spec);
Dan Rosenberg455cd5a2011-01-12 16:59:41 -0800938 }
Joe Perches26297602011-03-22 16:34:19 -0700939 if (!((kptr_restrict == 0) ||
940 (kptr_restrict == 1 &&
941 has_capability_noaudit(current, CAP_SYSLOG))))
942 ptr = NULL;
943 break;
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000944 case 'N':
945 switch (fmt[1]) {
946 case 'F':
947 return netdev_feature_string(buf, end, ptr, spec);
948 }
949 break;
Linus Torvalds0fe1ef22008-07-06 16:43:12 -0700950 }
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100951 spec.flags |= SMALL;
952 if (spec.field_width == -1) {
Grant Likely725fe002012-05-31 16:26:08 -0700953 spec.field_width = default_width;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100954 spec.flags |= ZEROPAD;
Linus Torvalds78a8bf62008-07-06 16:16:15 -0700955 }
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100956 spec.base = 16;
957
958 return number(buf, end, (unsigned long) ptr, spec);
959}
960
961/*
962 * Helper function to decode printf style format.
963 * Each call decode a token from the format and return the
964 * number of characters read (or likely the delta where it wants
965 * to go on the next call).
966 * The decoded token is returned through the parameters
967 *
968 * 'h', 'l', or 'L' for integer fields
969 * 'z' support added 23/7/1999 S.H.
970 * 'z' changed to 'Z' --davidm 1/25/99
971 * 't' added for ptrdiff_t
972 *
973 * @fmt: the format string
974 * @type of the token returned
975 * @flags: various flags such as +, -, # tokens..
976 * @field_width: overwritten width
977 * @base: base of the number (octal, hex, ...)
978 * @precision: precision of a number
979 * @qualifier: qualifier of a number (long, size_t, ...)
980 */
Joe Perchescf3b4292010-05-24 14:33:16 -0700981static noinline_for_stack
982int format_decode(const char *fmt, struct printf_spec *spec)
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100983{
984 const char *start = fmt;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100985
986 /* we finished early by reading the field width */
Vegard Nossumed681a92009-03-14 12:08:50 +0100987 if (spec->type == FORMAT_TYPE_WIDTH) {
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100988 if (spec->field_width < 0) {
989 spec->field_width = -spec->field_width;
990 spec->flags |= LEFT;
991 }
992 spec->type = FORMAT_TYPE_NONE;
993 goto precision;
994 }
995
996 /* we finished early by reading the precision */
997 if (spec->type == FORMAT_TYPE_PRECISION) {
998 if (spec->precision < 0)
999 spec->precision = 0;
1000
1001 spec->type = FORMAT_TYPE_NONE;
1002 goto qualifier;
1003 }
1004
1005 /* By default */
1006 spec->type = FORMAT_TYPE_NONE;
1007
1008 for (; *fmt ; ++fmt) {
1009 if (*fmt == '%')
1010 break;
1011 }
1012
1013 /* Return the current non-format string */
1014 if (fmt != start || !*fmt)
1015 return fmt - start;
1016
1017 /* Process flags */
1018 spec->flags = 0;
1019
1020 while (1) { /* this also skips first '%' */
1021 bool found = true;
1022
1023 ++fmt;
1024
1025 switch (*fmt) {
1026 case '-': spec->flags |= LEFT; break;
1027 case '+': spec->flags |= PLUS; break;
1028 case ' ': spec->flags |= SPACE; break;
1029 case '#': spec->flags |= SPECIAL; break;
1030 case '0': spec->flags |= ZEROPAD; break;
1031 default: found = false;
1032 }
1033
1034 if (!found)
1035 break;
1036 }
1037
1038 /* get field width */
1039 spec->field_width = -1;
1040
1041 if (isdigit(*fmt))
1042 spec->field_width = skip_atoi(&fmt);
1043 else if (*fmt == '*') {
1044 /* it's the next argument */
Vegard Nossumed681a92009-03-14 12:08:50 +01001045 spec->type = FORMAT_TYPE_WIDTH;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001046 return ++fmt - start;
1047 }
1048
1049precision:
1050 /* get the precision */
1051 spec->precision = -1;
1052 if (*fmt == '.') {
1053 ++fmt;
1054 if (isdigit(*fmt)) {
1055 spec->precision = skip_atoi(&fmt);
1056 if (spec->precision < 0)
1057 spec->precision = 0;
1058 } else if (*fmt == '*') {
1059 /* it's the next argument */
Vegard Nossumadf26f82009-03-14 12:08:50 +01001060 spec->type = FORMAT_TYPE_PRECISION;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001061 return ++fmt - start;
1062 }
1063 }
1064
1065qualifier:
1066 /* get the conversion qualifier */
1067 spec->qualifier = -1;
Andy Shevchenko75fb8f22011-07-25 17:13:20 -07001068 if (*fmt == 'h' || _tolower(*fmt) == 'l' ||
1069 _tolower(*fmt) == 'z' || *fmt == 't') {
Zhaoleia4e94ef2009-03-27 17:07:05 +08001070 spec->qualifier = *fmt++;
1071 if (unlikely(spec->qualifier == *fmt)) {
1072 if (spec->qualifier == 'l') {
1073 spec->qualifier = 'L';
1074 ++fmt;
1075 } else if (spec->qualifier == 'h') {
1076 spec->qualifier = 'H';
1077 ++fmt;
1078 }
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001079 }
1080 }
1081
1082 /* default base */
1083 spec->base = 10;
1084 switch (*fmt) {
1085 case 'c':
1086 spec->type = FORMAT_TYPE_CHAR;
1087 return ++fmt - start;
1088
1089 case 's':
1090 spec->type = FORMAT_TYPE_STR;
1091 return ++fmt - start;
1092
1093 case 'p':
1094 spec->type = FORMAT_TYPE_PTR;
1095 return fmt - start;
1096 /* skip alnum */
1097
1098 case 'n':
1099 spec->type = FORMAT_TYPE_NRCHARS;
1100 return ++fmt - start;
1101
1102 case '%':
1103 spec->type = FORMAT_TYPE_PERCENT_CHAR;
1104 return ++fmt - start;
1105
1106 /* integer number formats - set up the flags and "break" */
1107 case 'o':
1108 spec->base = 8;
1109 break;
1110
1111 case 'x':
1112 spec->flags |= SMALL;
1113
1114 case 'X':
1115 spec->base = 16;
1116 break;
1117
1118 case 'd':
1119 case 'i':
Frederic Weisbecker39e874f2009-03-09 21:15:04 +01001120 spec->flags |= SIGN;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001121 case 'u':
1122 break;
1123
1124 default:
1125 spec->type = FORMAT_TYPE_INVALID;
1126 return fmt - start;
1127 }
1128
1129 if (spec->qualifier == 'L')
1130 spec->type = FORMAT_TYPE_LONG_LONG;
1131 else if (spec->qualifier == 'l') {
Frederic Weisbecker39e874f2009-03-09 21:15:04 +01001132 if (spec->flags & SIGN)
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001133 spec->type = FORMAT_TYPE_LONG;
1134 else
1135 spec->type = FORMAT_TYPE_ULONG;
Andy Shevchenko75fb8f22011-07-25 17:13:20 -07001136 } else if (_tolower(spec->qualifier) == 'z') {
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001137 spec->type = FORMAT_TYPE_SIZE_T;
1138 } else if (spec->qualifier == 't') {
1139 spec->type = FORMAT_TYPE_PTRDIFF;
Zhaoleia4e94ef2009-03-27 17:07:05 +08001140 } else if (spec->qualifier == 'H') {
1141 if (spec->flags & SIGN)
1142 spec->type = FORMAT_TYPE_BYTE;
1143 else
1144 spec->type = FORMAT_TYPE_UBYTE;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001145 } else if (spec->qualifier == 'h') {
Frederic Weisbecker39e874f2009-03-09 21:15:04 +01001146 if (spec->flags & SIGN)
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001147 spec->type = FORMAT_TYPE_SHORT;
1148 else
1149 spec->type = FORMAT_TYPE_USHORT;
1150 } else {
Frederic Weisbecker39e874f2009-03-09 21:15:04 +01001151 if (spec->flags & SIGN)
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001152 spec->type = FORMAT_TYPE_INT;
1153 else
1154 spec->type = FORMAT_TYPE_UINT;
1155 }
1156
1157 return ++fmt - start;
Linus Torvalds78a8bf62008-07-06 16:16:15 -07001158}
1159
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160/**
1161 * vsnprintf - Format a string and place it in a buffer
1162 * @buf: The buffer to place the result into
1163 * @size: The size of the buffer, including the trailing null space
1164 * @fmt: The format string to use
1165 * @args: Arguments for the format string
1166 *
Andi Kleen20036fd2008-10-15 22:02:02 -07001167 * This function follows C99 vsnprintf, but has some extensions:
Steven Rostedt91adcd22009-09-16 20:03:06 -04001168 * %pS output the name of a text symbol with offset
1169 * %ps output the name of a text symbol without offset
Frederic Weisbecker0c8b9462009-04-15 17:48:18 +02001170 * %pF output the name of a function pointer with its offset
1171 * %pf output the name of a function pointer without its offset
Namhyung Kim0f77a8d2011-03-24 11:42:29 +09001172 * %pB output the name of a backtrace symbol with its offset
Uwe Kleine-König8a795032009-12-17 15:27:12 -08001173 * %pR output the address range in a struct resource with decoded flags
1174 * %pr output the address range in a struct resource with raw flags
1175 * %pM output a 6-byte MAC address with colons
1176 * %pm output a 6-byte MAC address without colons
1177 * %pI4 print an IPv4 address without leading zeros
1178 * %pi4 print an IPv4 address with leading zeros
1179 * %pI6 print an IPv6 address with colons
1180 * %pi6 print an IPv6 address without colons
Jan Engelhardtf996f202011-07-14 18:48:56 +02001181 * %pI6c print an IPv6 address as specified by RFC 5952
Uwe Kleine-König8a795032009-12-17 15:27:12 -08001182 * %pU[bBlL] print a UUID/GUID in big or little endian using lower or upper
1183 * case.
Steven Rostedt0efb4d22009-09-17 09:27:29 -04001184 * %n is ignored
Andi Kleen20036fd2008-10-15 22:02:02 -07001185 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 * The return value is the number of characters which would
1187 * be generated for the given input, excluding the trailing
1188 * '\0', as per ISO C99. If you want to have the exact
1189 * number of characters written into @buf as return value
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08001190 * (not including the trailing '\0'), use vscnprintf(). If the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 * return is greater than or equal to @size, the resulting
1192 * string is truncated.
1193 *
Uwe Kleine-Königba1835e2011-04-06 07:49:04 -07001194 * If you're not already dealing with a va_list consider using snprintf().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 */
1196int vsnprintf(char *buf, size_t size, const char *fmt, va_list args)
1197{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 unsigned long long num;
André Goddard Rosad4be1512009-12-14 18:00:59 -08001199 char *str, *end;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001200 struct printf_spec spec = {0};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -07001202 /* Reject out-of-range values early. Large positive sizes are
1203 used for unknown buffer sizes. */
Marcin Slusarz2f30b1f92009-09-21 17:04:29 -07001204 if (WARN_ON_ONCE((int) size < 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206
1207 str = buf;
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -07001208 end = buf + size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -07001210 /* Make sure end is always >= buf */
1211 if (end < buf) {
1212 end = ((void *)-1);
1213 size = end - buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 }
1215
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001216 while (*fmt) {
1217 const char *old_fmt = fmt;
André Goddard Rosad4be1512009-12-14 18:00:59 -08001218 int read = format_decode(fmt, &spec);
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001219
1220 fmt += read;
1221
1222 switch (spec.type) {
1223 case FORMAT_TYPE_NONE: {
1224 int copy = read;
1225 if (str < end) {
1226 if (copy > end - str)
1227 copy = end - str;
1228 memcpy(str, old_fmt, copy);
1229 }
1230 str += read;
1231 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 }
1233
Vegard Nossumed681a92009-03-14 12:08:50 +01001234 case FORMAT_TYPE_WIDTH:
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001235 spec.field_width = va_arg(args, int);
1236 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001238 case FORMAT_TYPE_PRECISION:
1239 spec.precision = va_arg(args, int);
1240 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241
André Goddard Rosad4be1512009-12-14 18:00:59 -08001242 case FORMAT_TYPE_CHAR: {
1243 char c;
1244
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001245 if (!(spec.flags & LEFT)) {
1246 while (--spec.field_width > 0) {
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -07001247 if (str < end)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 *str = ' ';
1249 ++str;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001250
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 }
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001252 }
1253 c = (unsigned char) va_arg(args, int);
1254 if (str < end)
1255 *str = c;
1256 ++str;
1257 while (--spec.field_width > 0) {
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -07001258 if (str < end)
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001259 *str = ' ';
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 ++str;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001261 }
1262 break;
André Goddard Rosad4be1512009-12-14 18:00:59 -08001263 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001265 case FORMAT_TYPE_STR:
1266 str = string(str, end, va_arg(args, char *), spec);
1267 break;
1268
1269 case FORMAT_TYPE_PTR:
1270 str = pointer(fmt+1, str, end, va_arg(args, void *),
1271 spec);
1272 while (isalnum(*fmt))
1273 fmt++;
1274 break;
1275
1276 case FORMAT_TYPE_PERCENT_CHAR:
1277 if (str < end)
1278 *str = '%';
1279 ++str;
1280 break;
1281
1282 case FORMAT_TYPE_INVALID:
1283 if (str < end)
1284 *str = '%';
1285 ++str;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001286 break;
1287
1288 case FORMAT_TYPE_NRCHARS: {
Joe Perchesef0658f2010-03-06 17:10:14 -08001289 u8 qualifier = spec.qualifier;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001290
1291 if (qualifier == 'l') {
1292 long *ip = va_arg(args, long *);
1293 *ip = (str - buf);
Andy Shevchenko75fb8f22011-07-25 17:13:20 -07001294 } else if (_tolower(qualifier) == 'z') {
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001295 size_t *ip = va_arg(args, size_t *);
1296 *ip = (str - buf);
1297 } else {
1298 int *ip = va_arg(args, int *);
1299 *ip = (str - buf);
1300 }
1301 break;
1302 }
1303
1304 default:
1305 switch (spec.type) {
1306 case FORMAT_TYPE_LONG_LONG:
1307 num = va_arg(args, long long);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 break;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001309 case FORMAT_TYPE_ULONG:
1310 num = va_arg(args, unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 break;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001312 case FORMAT_TYPE_LONG:
1313 num = va_arg(args, long);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 break;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001315 case FORMAT_TYPE_SIZE_T:
1316 num = va_arg(args, size_t);
1317 break;
1318 case FORMAT_TYPE_PTRDIFF:
1319 num = va_arg(args, ptrdiff_t);
1320 break;
Zhaoleia4e94ef2009-03-27 17:07:05 +08001321 case FORMAT_TYPE_UBYTE:
1322 num = (unsigned char) va_arg(args, int);
1323 break;
1324 case FORMAT_TYPE_BYTE:
1325 num = (signed char) va_arg(args, int);
1326 break;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001327 case FORMAT_TYPE_USHORT:
1328 num = (unsigned short) va_arg(args, int);
1329 break;
1330 case FORMAT_TYPE_SHORT:
1331 num = (short) va_arg(args, int);
1332 break;
Frederic Weisbecker39e874f2009-03-09 21:15:04 +01001333 case FORMAT_TYPE_INT:
1334 num = (int) va_arg(args, int);
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001335 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 default:
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001337 num = va_arg(args, unsigned int);
1338 }
1339
1340 str = number(str, end, num, spec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 }
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001343
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -07001344 if (size > 0) {
1345 if (str < end)
1346 *str = '\0';
1347 else
Linus Torvalds0a6047ee2006-06-28 17:09:34 -07001348 end[-1] = '\0';
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -07001349 }
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001350
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -07001351 /* the trailing null byte doesn't count towards the total */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 return str-buf;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001353
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355EXPORT_SYMBOL(vsnprintf);
1356
1357/**
1358 * vscnprintf - Format a string and place it in a buffer
1359 * @buf: The buffer to place the result into
1360 * @size: The size of the buffer, including the trailing null space
1361 * @fmt: The format string to use
1362 * @args: Arguments for the format string
1363 *
1364 * The return value is the number of characters which have been written into
Anton Arapovb921c692011-01-12 16:59:49 -08001365 * the @buf not including the trailing '\0'. If @size is == 0 the function
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 * returns 0.
1367 *
Uwe Kleine-Königba1835e2011-04-06 07:49:04 -07001368 * If you're not already dealing with a va_list consider using scnprintf().
Andi Kleen20036fd2008-10-15 22:02:02 -07001369 *
1370 * See the vsnprintf() documentation for format string extensions over C99.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 */
1372int vscnprintf(char *buf, size_t size, const char *fmt, va_list args)
1373{
1374 int i;
1375
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001376 i = vsnprintf(buf, size, fmt, args);
1377
Anton Arapovb921c692011-01-12 16:59:49 -08001378 if (likely(i < size))
1379 return i;
1380 if (size != 0)
1381 return size - 1;
1382 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384EXPORT_SYMBOL(vscnprintf);
1385
1386/**
1387 * snprintf - Format a string and place it in a buffer
1388 * @buf: The buffer to place the result into
1389 * @size: The size of the buffer, including the trailing null space
1390 * @fmt: The format string to use
1391 * @...: Arguments for the format string
1392 *
1393 * The return value is the number of characters which would be
1394 * generated for the given input, excluding the trailing null,
1395 * as per ISO C99. If the return is greater than or equal to
1396 * @size, the resulting string is truncated.
Andi Kleen20036fd2008-10-15 22:02:02 -07001397 *
1398 * See the vsnprintf() documentation for format string extensions over C99.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 */
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001400int snprintf(char *buf, size_t size, const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401{
1402 va_list args;
1403 int i;
1404
1405 va_start(args, fmt);
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001406 i = vsnprintf(buf, size, fmt, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 va_end(args);
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001408
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 return i;
1410}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411EXPORT_SYMBOL(snprintf);
1412
1413/**
1414 * scnprintf - Format a string and place it in a buffer
1415 * @buf: The buffer to place the result into
1416 * @size: The size of the buffer, including the trailing null space
1417 * @fmt: The format string to use
1418 * @...: Arguments for the format string
1419 *
1420 * The return value is the number of characters written into @buf not including
Changli Gaob903c0b2010-10-26 14:22:50 -07001421 * the trailing '\0'. If @size is == 0 the function returns 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 */
1423
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001424int scnprintf(char *buf, size_t size, const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425{
1426 va_list args;
1427 int i;
1428
1429 va_start(args, fmt);
Anton Arapovb921c692011-01-12 16:59:49 -08001430 i = vscnprintf(buf, size, fmt, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 va_end(args);
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001432
Anton Arapovb921c692011-01-12 16:59:49 -08001433 return i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434}
1435EXPORT_SYMBOL(scnprintf);
1436
1437/**
1438 * vsprintf - Format a string and place it in a buffer
1439 * @buf: The buffer to place the result into
1440 * @fmt: The format string to use
1441 * @args: Arguments for the format string
1442 *
1443 * The function returns the number of characters written
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08001444 * into @buf. Use vsnprintf() or vscnprintf() in order to avoid
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 * buffer overflows.
1446 *
Uwe Kleine-Königba1835e2011-04-06 07:49:04 -07001447 * If you're not already dealing with a va_list consider using sprintf().
Andi Kleen20036fd2008-10-15 22:02:02 -07001448 *
1449 * See the vsnprintf() documentation for format string extensions over C99.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 */
1451int vsprintf(char *buf, const char *fmt, va_list args)
1452{
1453 return vsnprintf(buf, INT_MAX, fmt, args);
1454}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455EXPORT_SYMBOL(vsprintf);
1456
1457/**
1458 * sprintf - Format a string and place it in a buffer
1459 * @buf: The buffer to place the result into
1460 * @fmt: The format string to use
1461 * @...: Arguments for the format string
1462 *
1463 * The function returns the number of characters written
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08001464 * into @buf. Use snprintf() or scnprintf() in order to avoid
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 * buffer overflows.
Andi Kleen20036fd2008-10-15 22:02:02 -07001466 *
1467 * See the vsnprintf() documentation for format string extensions over C99.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 */
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001469int sprintf(char *buf, const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470{
1471 va_list args;
1472 int i;
1473
1474 va_start(args, fmt);
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001475 i = vsnprintf(buf, INT_MAX, fmt, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 va_end(args);
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001477
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 return i;
1479}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480EXPORT_SYMBOL(sprintf);
1481
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001482#ifdef CONFIG_BINARY_PRINTF
1483/*
1484 * bprintf service:
1485 * vbin_printf() - VA arguments to binary data
1486 * bstr_printf() - Binary data to text string
1487 */
1488
1489/**
1490 * vbin_printf - Parse a format string and place args' binary value in a buffer
1491 * @bin_buf: The buffer to place args' binary value
1492 * @size: The size of the buffer(by words(32bits), not characters)
1493 * @fmt: The format string to use
1494 * @args: Arguments for the format string
1495 *
1496 * The format follows C99 vsnprintf, except %n is ignored, and its argument
1497 * is skiped.
1498 *
1499 * The return value is the number of words(32bits) which would be generated for
1500 * the given input.
1501 *
1502 * NOTE:
1503 * If the return value is greater than @size, the resulting bin_buf is NOT
1504 * valid for bstr_printf().
1505 */
1506int vbin_printf(u32 *bin_buf, size_t size, const char *fmt, va_list args)
1507{
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001508 struct printf_spec spec = {0};
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001509 char *str, *end;
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001510
1511 str = (char *)bin_buf;
1512 end = (char *)(bin_buf + size);
1513
1514#define save_arg(type) \
1515do { \
1516 if (sizeof(type) == 8) { \
1517 unsigned long long value; \
1518 str = PTR_ALIGN(str, sizeof(u32)); \
1519 value = va_arg(args, unsigned long long); \
1520 if (str + sizeof(type) <= end) { \
1521 *(u32 *)str = *(u32 *)&value; \
1522 *(u32 *)(str + 4) = *((u32 *)&value + 1); \
1523 } \
1524 } else { \
1525 unsigned long value; \
1526 str = PTR_ALIGN(str, sizeof(type)); \
1527 value = va_arg(args, int); \
1528 if (str + sizeof(type) <= end) \
1529 *(typeof(type) *)str = (type)value; \
1530 } \
1531 str += sizeof(type); \
1532} while (0)
1533
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001534 while (*fmt) {
André Goddard Rosad4be1512009-12-14 18:00:59 -08001535 int read = format_decode(fmt, &spec);
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001536
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001537 fmt += read;
1538
1539 switch (spec.type) {
1540 case FORMAT_TYPE_NONE:
André Goddard Rosad4be1512009-12-14 18:00:59 -08001541 case FORMAT_TYPE_INVALID:
1542 case FORMAT_TYPE_PERCENT_CHAR:
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001543 break;
1544
Vegard Nossumed681a92009-03-14 12:08:50 +01001545 case FORMAT_TYPE_WIDTH:
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001546 case FORMAT_TYPE_PRECISION:
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001547 save_arg(int);
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001548 break;
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001549
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001550 case FORMAT_TYPE_CHAR:
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001551 save_arg(char);
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001552 break;
1553
1554 case FORMAT_TYPE_STR: {
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001555 const char *save_str = va_arg(args, char *);
1556 size_t len;
André Goddard Rosa6c356632009-12-14 18:00:56 -08001557
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001558 if ((unsigned long)save_str > (unsigned long)-PAGE_SIZE
1559 || (unsigned long)save_str < PAGE_SIZE)
André Goddard Rosa0f4f81d2009-12-14 18:00:55 -08001560 save_str = "(null)";
André Goddard Rosa6c356632009-12-14 18:00:56 -08001561 len = strlen(save_str) + 1;
1562 if (str + len < end)
1563 memcpy(str, save_str, len);
1564 str += len;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001565 break;
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001566 }
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001567
1568 case FORMAT_TYPE_PTR:
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001569 save_arg(void *);
1570 /* skip all alphanumeric pointer suffixes */
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001571 while (isalnum(*fmt))
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001572 fmt++;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001573 break;
1574
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001575 case FORMAT_TYPE_NRCHARS: {
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001576 /* skip %n 's argument */
Joe Perchesef0658f2010-03-06 17:10:14 -08001577 u8 qualifier = spec.qualifier;
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001578 void *skip_arg;
1579 if (qualifier == 'l')
1580 skip_arg = va_arg(args, long *);
Andy Shevchenko75fb8f22011-07-25 17:13:20 -07001581 else if (_tolower(qualifier) == 'z')
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001582 skip_arg = va_arg(args, size_t *);
1583 else
1584 skip_arg = va_arg(args, int *);
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001585 break;
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001586 }
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001587
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001588 default:
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001589 switch (spec.type) {
1590
1591 case FORMAT_TYPE_LONG_LONG:
1592 save_arg(long long);
1593 break;
1594 case FORMAT_TYPE_ULONG:
1595 case FORMAT_TYPE_LONG:
1596 save_arg(unsigned long);
1597 break;
1598 case FORMAT_TYPE_SIZE_T:
1599 save_arg(size_t);
1600 break;
1601 case FORMAT_TYPE_PTRDIFF:
1602 save_arg(ptrdiff_t);
1603 break;
Zhaoleia4e94ef2009-03-27 17:07:05 +08001604 case FORMAT_TYPE_UBYTE:
1605 case FORMAT_TYPE_BYTE:
1606 save_arg(char);
1607 break;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001608 case FORMAT_TYPE_USHORT:
1609 case FORMAT_TYPE_SHORT:
1610 save_arg(short);
1611 break;
1612 default:
1613 save_arg(int);
1614 }
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001615 }
1616 }
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001617
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001618 return (u32 *)(PTR_ALIGN(str, sizeof(u32))) - bin_buf;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001619#undef save_arg
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001620}
1621EXPORT_SYMBOL_GPL(vbin_printf);
1622
1623/**
1624 * bstr_printf - Format a string from binary arguments and place it in a buffer
1625 * @buf: The buffer to place the result into
1626 * @size: The size of the buffer, including the trailing null space
1627 * @fmt: The format string to use
1628 * @bin_buf: Binary arguments for the format string
1629 *
1630 * This function like C99 vsnprintf, but the difference is that vsnprintf gets
1631 * arguments from stack, and bstr_printf gets arguments from @bin_buf which is
1632 * a binary buffer that generated by vbin_printf.
1633 *
1634 * The format follows C99 vsnprintf, but has some extensions:
Steven Rostedt0efb4d22009-09-17 09:27:29 -04001635 * see vsnprintf comment for details.
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001636 *
1637 * The return value is the number of characters which would
1638 * be generated for the given input, excluding the trailing
1639 * '\0', as per ISO C99. If you want to have the exact
1640 * number of characters written into @buf as return value
1641 * (not including the trailing '\0'), use vscnprintf(). If the
1642 * return is greater than or equal to @size, the resulting
1643 * string is truncated.
1644 */
1645int bstr_printf(char *buf, size_t size, const char *fmt, const u32 *bin_buf)
1646{
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001647 struct printf_spec spec = {0};
André Goddard Rosad4be1512009-12-14 18:00:59 -08001648 char *str, *end;
1649 const char *args = (const char *)bin_buf;
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001650
Marcin Slusarz2f30b1f92009-09-21 17:04:29 -07001651 if (WARN_ON_ONCE((int) size < 0))
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001652 return 0;
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001653
1654 str = buf;
1655 end = buf + size;
1656
1657#define get_arg(type) \
1658({ \
1659 typeof(type) value; \
1660 if (sizeof(type) == 8) { \
1661 args = PTR_ALIGN(args, sizeof(u32)); \
1662 *(u32 *)&value = *(u32 *)args; \
1663 *((u32 *)&value + 1) = *(u32 *)(args + 4); \
1664 } else { \
1665 args = PTR_ALIGN(args, sizeof(type)); \
1666 value = *(typeof(type) *)args; \
1667 } \
1668 args += sizeof(type); \
1669 value; \
1670})
1671
1672 /* Make sure end is always >= buf */
1673 if (end < buf) {
1674 end = ((void *)-1);
1675 size = end - buf;
1676 }
1677
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001678 while (*fmt) {
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001679 const char *old_fmt = fmt;
André Goddard Rosad4be1512009-12-14 18:00:59 -08001680 int read = format_decode(fmt, &spec);
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001681
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001682 fmt += read;
1683
1684 switch (spec.type) {
1685 case FORMAT_TYPE_NONE: {
1686 int copy = read;
1687 if (str < end) {
1688 if (copy > end - str)
1689 copy = end - str;
1690 memcpy(str, old_fmt, copy);
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001691 }
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001692 str += read;
1693 break;
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001694 }
1695
Vegard Nossumed681a92009-03-14 12:08:50 +01001696 case FORMAT_TYPE_WIDTH:
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001697 spec.field_width = get_arg(int);
1698 break;
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001699
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001700 case FORMAT_TYPE_PRECISION:
1701 spec.precision = get_arg(int);
1702 break;
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001703
André Goddard Rosad4be1512009-12-14 18:00:59 -08001704 case FORMAT_TYPE_CHAR: {
1705 char c;
1706
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001707 if (!(spec.flags & LEFT)) {
1708 while (--spec.field_width > 0) {
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001709 if (str < end)
1710 *str = ' ';
1711 ++str;
1712 }
1713 }
1714 c = (unsigned char) get_arg(char);
1715 if (str < end)
1716 *str = c;
1717 ++str;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001718 while (--spec.field_width > 0) {
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001719 if (str < end)
1720 *str = ' ';
1721 ++str;
1722 }
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001723 break;
André Goddard Rosad4be1512009-12-14 18:00:59 -08001724 }
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001725
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001726 case FORMAT_TYPE_STR: {
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001727 const char *str_arg = args;
André Goddard Rosad4be1512009-12-14 18:00:59 -08001728 args += strlen(str_arg) + 1;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001729 str = string(str, end, (char *)str_arg, spec);
1730 break;
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001731 }
1732
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001733 case FORMAT_TYPE_PTR:
1734 str = pointer(fmt+1, str, end, get_arg(void *), spec);
1735 while (isalnum(*fmt))
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001736 fmt++;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001737 break;
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001738
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001739 case FORMAT_TYPE_PERCENT_CHAR:
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001740 case FORMAT_TYPE_INVALID:
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001741 if (str < end)
1742 *str = '%';
1743 ++str;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001744 break;
1745
1746 case FORMAT_TYPE_NRCHARS:
1747 /* skip */
1748 break;
1749
André Goddard Rosad4be1512009-12-14 18:00:59 -08001750 default: {
1751 unsigned long long num;
1752
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001753 switch (spec.type) {
1754
1755 case FORMAT_TYPE_LONG_LONG:
1756 num = get_arg(long long);
1757 break;
1758 case FORMAT_TYPE_ULONG:
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001759 case FORMAT_TYPE_LONG:
1760 num = get_arg(unsigned long);
1761 break;
1762 case FORMAT_TYPE_SIZE_T:
1763 num = get_arg(size_t);
1764 break;
1765 case FORMAT_TYPE_PTRDIFF:
1766 num = get_arg(ptrdiff_t);
1767 break;
Zhaoleia4e94ef2009-03-27 17:07:05 +08001768 case FORMAT_TYPE_UBYTE:
1769 num = get_arg(unsigned char);
1770 break;
1771 case FORMAT_TYPE_BYTE:
1772 num = get_arg(signed char);
1773 break;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001774 case FORMAT_TYPE_USHORT:
1775 num = get_arg(unsigned short);
1776 break;
1777 case FORMAT_TYPE_SHORT:
1778 num = get_arg(short);
1779 break;
1780 case FORMAT_TYPE_UINT:
1781 num = get_arg(unsigned int);
1782 break;
1783 default:
1784 num = get_arg(int);
1785 }
1786
1787 str = number(str, end, num, spec);
André Goddard Rosad4be1512009-12-14 18:00:59 -08001788 } /* default: */
1789 } /* switch(spec.type) */
1790 } /* while(*fmt) */
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001791
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001792 if (size > 0) {
1793 if (str < end)
1794 *str = '\0';
1795 else
1796 end[-1] = '\0';
1797 }
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001798
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001799#undef get_arg
1800
1801 /* the trailing null byte doesn't count towards the total */
1802 return str - buf;
1803}
1804EXPORT_SYMBOL_GPL(bstr_printf);
1805
1806/**
1807 * bprintf - Parse a format string and place args' binary value in a buffer
1808 * @bin_buf: The buffer to place args' binary value
1809 * @size: The size of the buffer(by words(32bits), not characters)
1810 * @fmt: The format string to use
1811 * @...: Arguments for the format string
1812 *
1813 * The function returns the number of words(u32) written
1814 * into @bin_buf.
1815 */
1816int bprintf(u32 *bin_buf, size_t size, const char *fmt, ...)
1817{
1818 va_list args;
1819 int ret;
1820
1821 va_start(args, fmt);
1822 ret = vbin_printf(bin_buf, size, fmt, args);
1823 va_end(args);
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001824
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001825 return ret;
1826}
1827EXPORT_SYMBOL_GPL(bprintf);
1828
1829#endif /* CONFIG_BINARY_PRINTF */
1830
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831/**
1832 * vsscanf - Unformat a buffer into a list of arguments
1833 * @buf: input buffer
1834 * @fmt: format of buffer
1835 * @args: arguments
1836 */
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001837int vsscanf(const char *buf, const char *fmt, va_list args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838{
1839 const char *str = buf;
1840 char *next;
1841 char digit;
1842 int num = 0;
Joe Perchesef0658f2010-03-06 17:10:14 -08001843 u8 qualifier;
1844 u8 base;
1845 s16 field_width;
André Goddard Rosad4be1512009-12-14 18:00:59 -08001846 bool is_sign;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001848 while (*fmt && *str) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 /* skip any white space in format */
1850 /* white space in format matchs any amount of
1851 * white space, including none, in the input.
1852 */
1853 if (isspace(*fmt)) {
André Goddard Rosae7d28602009-12-14 18:01:06 -08001854 fmt = skip_spaces(++fmt);
1855 str = skip_spaces(str);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856 }
1857
1858 /* anything that is not a conversion must match exactly */
1859 if (*fmt != '%' && *fmt) {
1860 if (*fmt++ != *str++)
1861 break;
1862 continue;
1863 }
1864
1865 if (!*fmt)
1866 break;
1867 ++fmt;
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001868
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 /* skip this conversion.
1870 * advance both strings to next white space
1871 */
1872 if (*fmt == '*') {
Andy Spencer8fccae22009-10-01 15:44:27 -07001873 while (!isspace(*fmt) && *fmt != '%' && *fmt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 fmt++;
1875 while (!isspace(*str) && *str)
1876 str++;
1877 continue;
1878 }
1879
1880 /* get field width */
1881 field_width = -1;
1882 if (isdigit(*fmt))
1883 field_width = skip_atoi(&fmt);
1884
1885 /* get conversion qualifier */
1886 qualifier = -1;
Andy Shevchenko75fb8f22011-07-25 17:13:20 -07001887 if (*fmt == 'h' || _tolower(*fmt) == 'l' ||
1888 _tolower(*fmt) == 'z') {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 qualifier = *fmt++;
1890 if (unlikely(qualifier == *fmt)) {
1891 if (qualifier == 'h') {
1892 qualifier = 'H';
1893 fmt++;
1894 } else if (qualifier == 'l') {
1895 qualifier = 'L';
1896 fmt++;
1897 }
1898 }
1899 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900
1901 if (!*fmt || !*str)
1902 break;
1903
André Goddard Rosad4be1512009-12-14 18:00:59 -08001904 base = 10;
1905 is_sign = 0;
1906
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001907 switch (*fmt++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 case 'c':
1909 {
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001910 char *s = (char *)va_arg(args, char*);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911 if (field_width == -1)
1912 field_width = 1;
1913 do {
1914 *s++ = *str++;
1915 } while (--field_width > 0 && *str);
1916 num++;
1917 }
1918 continue;
1919 case 's':
1920 {
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001921 char *s = (char *)va_arg(args, char *);
1922 if (field_width == -1)
Alexey Dobriyan4be929b2010-05-24 14:33:03 -07001923 field_width = SHRT_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 /* first, skip leading white space in buffer */
André Goddard Rosae7d28602009-12-14 18:01:06 -08001925 str = skip_spaces(str);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926
1927 /* now copy until next white space */
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001928 while (*str && !isspace(*str) && field_width--)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929 *s++ = *str++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 *s = '\0';
1931 num++;
1932 }
1933 continue;
1934 case 'n':
1935 /* return number of characters read so far */
1936 {
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001937 int *i = (int *)va_arg(args, int*);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 *i = str - buf;
1939 }
1940 continue;
1941 case 'o':
1942 base = 8;
1943 break;
1944 case 'x':
1945 case 'X':
1946 base = 16;
1947 break;
1948 case 'i':
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001949 base = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 case 'd':
1951 is_sign = 1;
1952 case 'u':
1953 break;
1954 case '%':
1955 /* looking for '%' in str */
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001956 if (*str++ != '%')
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 return num;
1958 continue;
1959 default:
1960 /* invalid format; stop here */
1961 return num;
1962 }
1963
1964 /* have some sort of integer conversion.
1965 * first, skip white space in buffer.
1966 */
André Goddard Rosae7d28602009-12-14 18:01:06 -08001967 str = skip_spaces(str);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968
1969 digit = *str;
1970 if (is_sign && digit == '-')
1971 digit = *(str + 1);
1972
1973 if (!digit
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001974 || (base == 16 && !isxdigit(digit))
1975 || (base == 10 && !isdigit(digit))
1976 || (base == 8 && (!isdigit(digit) || digit > '7'))
1977 || (base == 0 && !isdigit(digit)))
1978 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001980 switch (qualifier) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 case 'H': /* that's 'hh' in format */
1982 if (is_sign) {
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001983 signed char *s = (signed char *)va_arg(args, signed char *);
1984 *s = (signed char)simple_strtol(str, &next, base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985 } else {
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001986 unsigned char *s = (unsigned char *)va_arg(args, unsigned char *);
1987 *s = (unsigned char)simple_strtoul(str, &next, base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988 }
1989 break;
1990 case 'h':
1991 if (is_sign) {
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001992 short *s = (short *)va_arg(args, short *);
1993 *s = (short)simple_strtol(str, &next, base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994 } else {
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001995 unsigned short *s = (unsigned short *)va_arg(args, unsigned short *);
1996 *s = (unsigned short)simple_strtoul(str, &next, base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 }
1998 break;
1999 case 'l':
2000 if (is_sign) {
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08002001 long *l = (long *)va_arg(args, long *);
2002 *l = simple_strtol(str, &next, base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 } else {
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08002004 unsigned long *l = (unsigned long *)va_arg(args, unsigned long *);
2005 *l = simple_strtoul(str, &next, base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006 }
2007 break;
2008 case 'L':
2009 if (is_sign) {
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08002010 long long *l = (long long *)va_arg(args, long long *);
2011 *l = simple_strtoll(str, &next, base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012 } else {
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08002013 unsigned long long *l = (unsigned long long *)va_arg(args, unsigned long long *);
2014 *l = simple_strtoull(str, &next, base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 }
2016 break;
2017 case 'Z':
2018 case 'z':
2019 {
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08002020 size_t *s = (size_t *)va_arg(args, size_t *);
2021 *s = (size_t)simple_strtoul(str, &next, base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022 }
2023 break;
2024 default:
2025 if (is_sign) {
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08002026 int *i = (int *)va_arg(args, int *);
2027 *i = (int)simple_strtol(str, &next, base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 } else {
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08002029 unsigned int *i = (unsigned int *)va_arg(args, unsigned int*);
2030 *i = (unsigned int)simple_strtoul(str, &next, base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031 }
2032 break;
2033 }
2034 num++;
2035
2036 if (!next)
2037 break;
2038 str = next;
2039 }
Johannes Bergc6b40d12007-05-08 00:27:20 -07002040
2041 /*
2042 * Now we've come all the way through so either the input string or the
2043 * format ended. In the former case, there can be a %n at the current
2044 * position in the format that needs to be filled.
2045 */
2046 if (*fmt == '%' && *(fmt + 1) == 'n') {
2047 int *p = (int *)va_arg(args, int *);
2048 *p = str - buf;
2049 }
2050
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051 return num;
2052}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053EXPORT_SYMBOL(vsscanf);
2054
2055/**
2056 * sscanf - Unformat a buffer into a list of arguments
2057 * @buf: input buffer
2058 * @fmt: formatting of buffer
2059 * @...: resulting arguments
2060 */
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08002061int sscanf(const char *buf, const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062{
2063 va_list args;
2064 int i;
2065
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08002066 va_start(args, fmt);
2067 i = vsscanf(buf, fmt, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 va_end(args);
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08002069
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070 return i;
2071}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072EXPORT_SYMBOL(sscanf);