blob: 0b3c62235a3dee81beffa40d522558b3f2b33d76 [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;
287
Denys Vlasenko9b706ae2008-02-09 23:24:09 +0100288 /* locase = 0 or 0x20. ORing digits or letters with 'locase'
289 * produces same digits or (maybe lowercased) letters */
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100290 locase = (spec.flags & SMALL);
291 if (spec.flags & LEFT)
292 spec.flags &= ~ZEROPAD;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 sign = 0;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100294 if (spec.flags & SIGN) {
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800295 if ((signed long long)num < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 sign = '-';
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800297 num = -(signed long long)num;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100298 spec.field_width--;
299 } else if (spec.flags & PLUS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 sign = '+';
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100301 spec.field_width--;
302 } else if (spec.flags & SPACE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 sign = ' ';
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100304 spec.field_width--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 }
306 }
Denis Vlasenkob39a7342007-07-15 23:41:54 -0700307 if (need_pfx) {
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100308 spec.field_width--;
309 if (spec.base == 16)
310 spec.field_width--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 }
Denis Vlasenkob39a7342007-07-15 23:41:54 -0700312
313 /* generate full string in tmp[], in reverse order */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 i = 0;
315 if (num == 0)
Denis Vlasenkob39a7342007-07-15 23:41:54 -0700316 tmp[i++] = '0';
Denis Vlasenko4277eed2007-07-15 23:41:56 -0700317 /* Generic code, for any base:
318 else do {
Denys Vlasenko9b706ae2008-02-09 23:24:09 +0100319 tmp[i++] = (digits[do_div(num,base)] | locase);
Denis Vlasenko4277eed2007-07-15 23:41:56 -0700320 } while (num != 0);
321 */
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100322 else if (spec.base != 10) { /* 8 or 16 */
323 int mask = spec.base - 1;
Denis Vlasenkob39a7342007-07-15 23:41:54 -0700324 int shift = 3;
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800325
326 if (spec.base == 16)
327 shift = 4;
Denis Vlasenkob39a7342007-07-15 23:41:54 -0700328 do {
Denys Vlasenko9b706ae2008-02-09 23:24:09 +0100329 tmp[i++] = (digits[((unsigned char)num) & mask] | locase);
Denis Vlasenkob39a7342007-07-15 23:41:54 -0700330 num >>= shift;
331 } while (num);
Denis Vlasenko4277eed2007-07-15 23:41:56 -0700332 } else { /* base 10 */
333 i = put_dec(tmp, num) - tmp;
334 }
Denis Vlasenkob39a7342007-07-15 23:41:54 -0700335
336 /* printing 100 using %2d gives "100", not "00" */
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100337 if (i > spec.precision)
338 spec.precision = i;
Denis Vlasenkob39a7342007-07-15 23:41:54 -0700339 /* leading space padding */
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100340 spec.field_width -= spec.precision;
341 if (!(spec.flags & (ZEROPAD+LEFT))) {
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800342 while (--spec.field_width >= 0) {
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -0700343 if (buf < end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 *buf = ' ';
345 ++buf;
346 }
347 }
Denis Vlasenkob39a7342007-07-15 23:41:54 -0700348 /* sign */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 if (sign) {
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -0700350 if (buf < end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 *buf = sign;
352 ++buf;
353 }
Denis Vlasenkob39a7342007-07-15 23:41:54 -0700354 /* "0x" / "0" prefix */
355 if (need_pfx) {
356 if (buf < end)
357 *buf = '0';
358 ++buf;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100359 if (spec.base == 16) {
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -0700360 if (buf < end)
Denys Vlasenko9b706ae2008-02-09 23:24:09 +0100361 *buf = ('X' | locase);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 ++buf;
363 }
364 }
Denis Vlasenkob39a7342007-07-15 23:41:54 -0700365 /* zero or space padding */
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100366 if (!(spec.flags & LEFT)) {
367 char c = (spec.flags & ZEROPAD) ? '0' : ' ';
368 while (--spec.field_width >= 0) {
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -0700369 if (buf < end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 *buf = c;
371 ++buf;
372 }
373 }
Denis Vlasenkob39a7342007-07-15 23:41:54 -0700374 /* hmm even more zero padding? */
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100375 while (i <= --spec.precision) {
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -0700376 if (buf < end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 *buf = '0';
378 ++buf;
379 }
Denis Vlasenkob39a7342007-07-15 23:41:54 -0700380 /* actual digits of result */
381 while (--i >= 0) {
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -0700382 if (buf < end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 *buf = tmp[i];
384 ++buf;
385 }
Denis Vlasenkob39a7342007-07-15 23:41:54 -0700386 /* trailing space padding */
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100387 while (--spec.field_width >= 0) {
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -0700388 if (buf < end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 *buf = ' ';
390 ++buf;
391 }
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800392
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 return buf;
394}
395
Joe Perchescf3b4292010-05-24 14:33:16 -0700396static noinline_for_stack
397char *string(char *buf, char *end, const char *s, struct printf_spec spec)
Linus Torvalds0f9bfa52008-07-06 16:06:25 -0700398{
399 int len, i;
400
401 if ((unsigned long)s < PAGE_SIZE)
André Goddard Rosa0f4f81d2009-12-14 18:00:55 -0800402 s = "(null)";
Linus Torvalds0f9bfa52008-07-06 16:06:25 -0700403
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100404 len = strnlen(s, spec.precision);
Linus Torvalds0f9bfa52008-07-06 16:06:25 -0700405
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100406 if (!(spec.flags & LEFT)) {
407 while (len < spec.field_width--) {
Linus Torvalds0f9bfa52008-07-06 16:06:25 -0700408 if (buf < end)
409 *buf = ' ';
410 ++buf;
411 }
412 }
413 for (i = 0; i < len; ++i) {
414 if (buf < end)
415 *buf = *s;
416 ++buf; ++s;
417 }
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100418 while (len < spec.field_width--) {
Linus Torvalds0f9bfa52008-07-06 16:06:25 -0700419 if (buf < end)
420 *buf = ' ';
421 ++buf;
422 }
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800423
Linus Torvalds0f9bfa52008-07-06 16:06:25 -0700424 return buf;
425}
426
Joe Perchescf3b4292010-05-24 14:33:16 -0700427static noinline_for_stack
428char *symbol_string(char *buf, char *end, void *ptr,
429 struct printf_spec spec, char ext)
Linus Torvalds0fe1ef22008-07-06 16:43:12 -0700430{
431 unsigned long value = (unsigned long) ptr;
432#ifdef CONFIG_KALLSYMS
433 char sym[KSYM_SYMBOL_LEN];
Namhyung Kim0f77a8d2011-03-24 11:42:29 +0900434 if (ext == 'B')
435 sprint_backtrace(sym, value);
436 else if (ext != 'f' && ext != 's')
Frederic Weisbecker0c8b9462009-04-15 17:48:18 +0200437 sprint_symbol(sym, value);
438 else
Stephen Boyd364da7c2012-04-23 10:42:01 -0700439 sprint_symbol_no_offset(sym, value);
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800440
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100441 return string(buf, end, sym, spec);
Linus Torvalds0fe1ef22008-07-06 16:43:12 -0700442#else
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800443 spec.field_width = 2 * sizeof(void *);
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100444 spec.flags |= SPECIAL | SMALL | ZEROPAD;
445 spec.base = 16;
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800446
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100447 return number(buf, end, value, spec);
Linus Torvalds0fe1ef22008-07-06 16:43:12 -0700448#endif
449}
450
Joe Perchescf3b4292010-05-24 14:33:16 -0700451static noinline_for_stack
452char *resource_string(char *buf, char *end, struct resource *res,
453 struct printf_spec spec, const char *fmt)
Linus Torvalds332d2e72008-10-20 15:07:34 +1100454{
455#ifndef IO_RSRC_PRINTK_SIZE
Bjorn Helgaas28405372009-10-06 15:33:29 -0600456#define IO_RSRC_PRINTK_SIZE 6
Linus Torvalds332d2e72008-10-20 15:07:34 +1100457#endif
458
459#ifndef MEM_RSRC_PRINTK_SIZE
Bjorn Helgaas28405372009-10-06 15:33:29 -0600460#define MEM_RSRC_PRINTK_SIZE 10
Linus Torvalds332d2e72008-10-20 15:07:34 +1100461#endif
Bjorn Helgaas4da0b662010-03-05 10:47:37 -0700462 static const struct printf_spec io_spec = {
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100463 .base = 16,
Bjorn Helgaas4da0b662010-03-05 10:47:37 -0700464 .field_width = IO_RSRC_PRINTK_SIZE,
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100465 .precision = -1,
466 .flags = SPECIAL | SMALL | ZEROPAD,
467 };
Bjorn Helgaas4da0b662010-03-05 10:47:37 -0700468 static const struct printf_spec mem_spec = {
469 .base = 16,
470 .field_width = MEM_RSRC_PRINTK_SIZE,
471 .precision = -1,
472 .flags = SPECIAL | SMALL | ZEROPAD,
473 };
Bjorn Helgaas0f4050c2010-03-05 10:47:42 -0700474 static const struct printf_spec bus_spec = {
475 .base = 16,
476 .field_width = 2,
477 .precision = -1,
478 .flags = SMALL | ZEROPAD,
479 };
Bjorn Helgaas4da0b662010-03-05 10:47:37 -0700480 static const struct printf_spec dec_spec = {
Bjorn Helgaasc91d3372009-10-06 15:33:34 -0600481 .base = 10,
482 .precision = -1,
483 .flags = 0,
484 };
Bjorn Helgaas4da0b662010-03-05 10:47:37 -0700485 static const struct printf_spec str_spec = {
Bjorn Helgaasfd955412009-10-06 15:33:39 -0600486 .field_width = -1,
487 .precision = 10,
488 .flags = LEFT,
489 };
Bjorn Helgaas4da0b662010-03-05 10:47:37 -0700490 static const struct printf_spec flag_spec = {
Bjorn Helgaasfd955412009-10-06 15:33:39 -0600491 .base = 16,
492 .precision = -1,
493 .flags = SPECIAL | SMALL,
494 };
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600495
496 /* 32-bit res (sizeof==4): 10 chars in dec, 10 in hex ("0x" + 8)
497 * 64-bit res (sizeof==8): 20 chars in dec, 18 in hex ("0x" + 16) */
498#define RSRC_BUF_SIZE ((2 * sizeof(resource_size_t)) + 4)
499#define FLAG_BUF_SIZE (2 * sizeof(res->flags))
Bjorn Helgaas9d7cca02010-03-05 10:47:47 -0700500#define DECODED_BUF_SIZE sizeof("[mem - 64bit pref window disabled]")
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600501#define RAW_BUF_SIZE sizeof("[mem - flags 0x]")
502 char sym[max(2*RSRC_BUF_SIZE + DECODED_BUF_SIZE,
503 2*RSRC_BUF_SIZE + FLAG_BUF_SIZE + RAW_BUF_SIZE)];
504
Linus Torvalds332d2e72008-10-20 15:07:34 +1100505 char *p = sym, *pend = sym + sizeof(sym);
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600506 int decode = (fmt[0] == 'R') ? 1 : 0;
Bjorn Helgaas4da0b662010-03-05 10:47:37 -0700507 const struct printf_spec *specp;
Linus Torvalds332d2e72008-10-20 15:07:34 +1100508
509 *p++ = '[';
Bjorn Helgaas4da0b662010-03-05 10:47:37 -0700510 if (res->flags & IORESOURCE_IO) {
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600511 p = string(p, pend, "io ", str_spec);
Bjorn Helgaas4da0b662010-03-05 10:47:37 -0700512 specp = &io_spec;
513 } else if (res->flags & IORESOURCE_MEM) {
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600514 p = string(p, pend, "mem ", str_spec);
Bjorn Helgaas4da0b662010-03-05 10:47:37 -0700515 specp = &mem_spec;
516 } else if (res->flags & IORESOURCE_IRQ) {
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600517 p = string(p, pend, "irq ", str_spec);
Bjorn Helgaas4da0b662010-03-05 10:47:37 -0700518 specp = &dec_spec;
519 } else if (res->flags & IORESOURCE_DMA) {
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600520 p = string(p, pend, "dma ", str_spec);
Bjorn Helgaas4da0b662010-03-05 10:47:37 -0700521 specp = &dec_spec;
Bjorn Helgaas0f4050c2010-03-05 10:47:42 -0700522 } else if (res->flags & IORESOURCE_BUS) {
523 p = string(p, pend, "bus ", str_spec);
524 specp = &bus_spec;
Bjorn Helgaas4da0b662010-03-05 10:47:37 -0700525 } else {
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600526 p = string(p, pend, "??? ", str_spec);
Bjorn Helgaas4da0b662010-03-05 10:47:37 -0700527 specp = &mem_spec;
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600528 decode = 0;
Bjorn Helgaasfd955412009-10-06 15:33:39 -0600529 }
Bjorn Helgaas4da0b662010-03-05 10:47:37 -0700530 p = number(p, pend, res->start, *specp);
Bjorn Helgaasc91d3372009-10-06 15:33:34 -0600531 if (res->start != res->end) {
532 *p++ = '-';
Bjorn Helgaas4da0b662010-03-05 10:47:37 -0700533 p = number(p, pend, res->end, *specp);
Bjorn Helgaasc91d3372009-10-06 15:33:34 -0600534 }
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600535 if (decode) {
Bjorn Helgaasfd955412009-10-06 15:33:39 -0600536 if (res->flags & IORESOURCE_MEM_64)
537 p = string(p, pend, " 64bit", str_spec);
538 if (res->flags & IORESOURCE_PREFETCH)
539 p = string(p, pend, " pref", str_spec);
Bjorn Helgaas9d7cca02010-03-05 10:47:47 -0700540 if (res->flags & IORESOURCE_WINDOW)
541 p = string(p, pend, " window", str_spec);
Bjorn Helgaasfd955412009-10-06 15:33:39 -0600542 if (res->flags & IORESOURCE_DISABLED)
543 p = string(p, pend, " disabled", str_spec);
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600544 } else {
545 p = string(p, pend, " flags ", str_spec);
546 p = number(p, pend, res->flags, flag_spec);
Bjorn Helgaasfd955412009-10-06 15:33:39 -0600547 }
Linus Torvalds332d2e72008-10-20 15:07:34 +1100548 *p++ = ']';
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600549 *p = '\0';
Linus Torvalds332d2e72008-10-20 15:07:34 +1100550
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100551 return string(buf, end, sym, spec);
Linus Torvalds332d2e72008-10-20 15:07:34 +1100552}
553
Joe Perchescf3b4292010-05-24 14:33:16 -0700554static noinline_for_stack
555char *mac_address_string(char *buf, char *end, u8 *addr,
556 struct printf_spec spec, const char *fmt)
Harvey Harrisondd45c9c2008-10-27 15:47:12 -0700557{
Joe Perches8a27f7c2009-08-17 12:29:44 +0000558 char mac_addr[sizeof("xx:xx:xx:xx:xx:xx")];
Harvey Harrisondd45c9c2008-10-27 15:47:12 -0700559 char *p = mac_addr;
560 int i;
Joe Perchesbc7259a2010-01-07 11:43:50 +0000561 char separator;
562
563 if (fmt[1] == 'F') { /* FDDI canonical format */
Joe Perchesbc7259a2010-01-07 11:43:50 +0000564 separator = '-';
565 } else {
Joe Perchesbc7259a2010-01-07 11:43:50 +0000566 separator = ':';
567 }
Harvey Harrisondd45c9c2008-10-27 15:47:12 -0700568
569 for (i = 0; i < 6; i++) {
Andy Shevchenko55036ba2011-10-31 17:12:41 -0700570 p = hex_byte_pack(p, addr[i]);
Joe Perches8a27f7c2009-08-17 12:29:44 +0000571 if (fmt[0] == 'M' && i != 5)
Joe Perchesbc7259a2010-01-07 11:43:50 +0000572 *p++ = separator;
Harvey Harrisondd45c9c2008-10-27 15:47:12 -0700573 }
574 *p = '\0';
575
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100576 return string(buf, end, mac_addr, spec);
Harvey Harrisondd45c9c2008-10-27 15:47:12 -0700577}
578
Joe Perchescf3b4292010-05-24 14:33:16 -0700579static noinline_for_stack
580char *ip4_string(char *p, const u8 *addr, const char *fmt)
Harvey Harrison689afa72008-10-28 16:04:44 -0700581{
Harvey Harrison689afa72008-10-28 16:04:44 -0700582 int i;
Joe Perches0159f242010-01-13 20:23:30 -0800583 bool leading_zeros = (fmt[0] == 'i');
584 int index;
585 int step;
Harvey Harrison689afa72008-10-28 16:04:44 -0700586
Joe Perches0159f242010-01-13 20:23:30 -0800587 switch (fmt[2]) {
588 case 'h':
589#ifdef __BIG_ENDIAN
590 index = 0;
591 step = 1;
592#else
593 index = 3;
594 step = -1;
595#endif
596 break;
597 case 'l':
598 index = 3;
599 step = -1;
600 break;
601 case 'n':
602 case 'b':
603 default:
604 index = 0;
605 step = 1;
606 break;
607 }
Joe Perches8a27f7c2009-08-17 12:29:44 +0000608 for (i = 0; i < 4; i++) {
609 char temp[3]; /* hold each IP quad in reverse order */
Joe Perches0159f242010-01-13 20:23:30 -0800610 int digits = put_dec_trunc(temp, addr[index]) - temp;
Joe Perches8a27f7c2009-08-17 12:29:44 +0000611 if (leading_zeros) {
612 if (digits < 3)
613 *p++ = '0';
614 if (digits < 2)
615 *p++ = '0';
616 }
617 /* reverse the digits in the quad */
618 while (digits--)
619 *p++ = temp[digits];
620 if (i < 3)
621 *p++ = '.';
Joe Perches0159f242010-01-13 20:23:30 -0800622 index += step;
Joe Perches8a27f7c2009-08-17 12:29:44 +0000623 }
Joe Perches8a27f7c2009-08-17 12:29:44 +0000624 *p = '\0';
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800625
Joe Perches8a27f7c2009-08-17 12:29:44 +0000626 return p;
627}
628
Joe Perchescf3b4292010-05-24 14:33:16 -0700629static noinline_for_stack
630char *ip6_compressed_string(char *p, const char *addr)
Joe Perches8a27f7c2009-08-17 12:29:44 +0000631{
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800632 int i, j, range;
Joe Perches8a27f7c2009-08-17 12:29:44 +0000633 unsigned char zerolength[8];
634 int longest = 1;
635 int colonpos = -1;
636 u16 word;
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800637 u8 hi, lo;
Joe Perches8a27f7c2009-08-17 12:29:44 +0000638 bool needcolon = false;
Joe Percheseb78cd22009-09-18 13:04:06 +0000639 bool useIPv4;
640 struct in6_addr in6;
641
642 memcpy(&in6, addr, sizeof(struct in6_addr));
643
644 useIPv4 = ipv6_addr_v4mapped(&in6) || ipv6_addr_is_isatap(&in6);
Joe Perches8a27f7c2009-08-17 12:29:44 +0000645
646 memset(zerolength, 0, sizeof(zerolength));
647
648 if (useIPv4)
649 range = 6;
650 else
651 range = 8;
652
653 /* find position of longest 0 run */
654 for (i = 0; i < range; i++) {
655 for (j = i; j < range; j++) {
Joe Percheseb78cd22009-09-18 13:04:06 +0000656 if (in6.s6_addr16[j] != 0)
Joe Perches8a27f7c2009-08-17 12:29:44 +0000657 break;
658 zerolength[i]++;
659 }
660 }
661 for (i = 0; i < range; i++) {
662 if (zerolength[i] > longest) {
663 longest = zerolength[i];
664 colonpos = i;
665 }
666 }
Joe Perches29cf5192011-06-09 11:23:37 -0700667 if (longest == 1) /* don't compress a single 0 */
668 colonpos = -1;
Joe Perches8a27f7c2009-08-17 12:29:44 +0000669
670 /* emit address */
671 for (i = 0; i < range; i++) {
672 if (i == colonpos) {
673 if (needcolon || i == 0)
674 *p++ = ':';
675 *p++ = ':';
676 needcolon = false;
677 i += longest - 1;
678 continue;
679 }
680 if (needcolon) {
681 *p++ = ':';
682 needcolon = false;
683 }
684 /* hex u16 without leading 0s */
Joe Percheseb78cd22009-09-18 13:04:06 +0000685 word = ntohs(in6.s6_addr16[i]);
Joe Perches8a27f7c2009-08-17 12:29:44 +0000686 hi = word >> 8;
687 lo = word & 0xff;
688 if (hi) {
689 if (hi > 0x0f)
Andy Shevchenko55036ba2011-10-31 17:12:41 -0700690 p = hex_byte_pack(p, hi);
Joe Perches8a27f7c2009-08-17 12:29:44 +0000691 else
692 *p++ = hex_asc_lo(hi);
Andy Shevchenko55036ba2011-10-31 17:12:41 -0700693 p = hex_byte_pack(p, lo);
Joe Perches8a27f7c2009-08-17 12:29:44 +0000694 }
André Goddard Rosab5ff9922009-12-14 18:00:59 -0800695 else if (lo > 0x0f)
Andy Shevchenko55036ba2011-10-31 17:12:41 -0700696 p = hex_byte_pack(p, lo);
Joe Perches8a27f7c2009-08-17 12:29:44 +0000697 else
698 *p++ = hex_asc_lo(lo);
699 needcolon = true;
700 }
701
702 if (useIPv4) {
703 if (needcolon)
704 *p++ = ':';
Joe Perches0159f242010-01-13 20:23:30 -0800705 p = ip4_string(p, &in6.s6_addr[12], "I4");
Joe Perches8a27f7c2009-08-17 12:29:44 +0000706 }
Joe Perches8a27f7c2009-08-17 12:29:44 +0000707 *p = '\0';
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800708
Joe Perches8a27f7c2009-08-17 12:29:44 +0000709 return p;
710}
711
Joe Perchescf3b4292010-05-24 14:33:16 -0700712static noinline_for_stack
713char *ip6_string(char *p, const char *addr, const char *fmt)
Joe Perches8a27f7c2009-08-17 12:29:44 +0000714{
715 int i;
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800716
Harvey Harrison689afa72008-10-28 16:04:44 -0700717 for (i = 0; i < 8; i++) {
Andy Shevchenko55036ba2011-10-31 17:12:41 -0700718 p = hex_byte_pack(p, *addr++);
719 p = hex_byte_pack(p, *addr++);
Joe Perches8a27f7c2009-08-17 12:29:44 +0000720 if (fmt[0] == 'I' && i != 7)
Harvey Harrison689afa72008-10-28 16:04:44 -0700721 *p++ = ':';
722 }
723 *p = '\0';
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800724
Joe Perches8a27f7c2009-08-17 12:29:44 +0000725 return p;
726}
727
Joe Perchescf3b4292010-05-24 14:33:16 -0700728static noinline_for_stack
729char *ip6_addr_string(char *buf, char *end, const u8 *addr,
730 struct printf_spec spec, const char *fmt)
Joe Perches8a27f7c2009-08-17 12:29:44 +0000731{
732 char ip6_addr[sizeof("xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:255.255.255.255")];
733
734 if (fmt[0] == 'I' && fmt[2] == 'c')
Joe Percheseb78cd22009-09-18 13:04:06 +0000735 ip6_compressed_string(ip6_addr, addr);
Joe Perches8a27f7c2009-08-17 12:29:44 +0000736 else
Joe Percheseb78cd22009-09-18 13:04:06 +0000737 ip6_string(ip6_addr, addr, fmt);
Harvey Harrison689afa72008-10-28 16:04:44 -0700738
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100739 return string(buf, end, ip6_addr, spec);
Harvey Harrison689afa72008-10-28 16:04:44 -0700740}
741
Joe Perchescf3b4292010-05-24 14:33:16 -0700742static noinline_for_stack
743char *ip4_addr_string(char *buf, char *end, const u8 *addr,
744 struct printf_spec spec, const char *fmt)
Harvey Harrison4aa99602008-10-29 12:49:58 -0700745{
Joe Perches8a27f7c2009-08-17 12:29:44 +0000746 char ip4_addr[sizeof("255.255.255.255")];
Harvey Harrison4aa99602008-10-29 12:49:58 -0700747
Joe Perches0159f242010-01-13 20:23:30 -0800748 ip4_string(ip4_addr, addr, fmt);
Harvey Harrison4aa99602008-10-29 12:49:58 -0700749
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100750 return string(buf, end, ip4_addr, spec);
Harvey Harrison4aa99602008-10-29 12:49:58 -0700751}
752
Joe Perchescf3b4292010-05-24 14:33:16 -0700753static noinline_for_stack
754char *uuid_string(char *buf, char *end, const u8 *addr,
755 struct printf_spec spec, const char *fmt)
Joe Perches9ac6e442009-12-14 18:01:09 -0800756{
757 char uuid[sizeof("xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx")];
758 char *p = uuid;
759 int i;
760 static const u8 be[16] = {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15};
761 static const u8 le[16] = {3,2,1,0,5,4,7,6,8,9,10,11,12,13,14,15};
762 const u8 *index = be;
763 bool uc = false;
764
765 switch (*(++fmt)) {
766 case 'L':
767 uc = true; /* fall-through */
768 case 'l':
769 index = le;
770 break;
771 case 'B':
772 uc = true;
773 break;
774 }
775
776 for (i = 0; i < 16; i++) {
Andy Shevchenko55036ba2011-10-31 17:12:41 -0700777 p = hex_byte_pack(p, addr[index[i]]);
Joe Perches9ac6e442009-12-14 18:01:09 -0800778 switch (i) {
779 case 3:
780 case 5:
781 case 7:
782 case 9:
783 *p++ = '-';
784 break;
785 }
786 }
787
788 *p = 0;
789
790 if (uc) {
791 p = uuid;
792 do {
793 *p = toupper(*p);
794 } while (*(++p));
795 }
796
797 return string(buf, end, uuid, spec);
798}
799
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000800static
801char *netdev_feature_string(char *buf, char *end, const u8 *addr,
802 struct printf_spec spec)
803{
804 spec.flags |= SPECIAL | SMALL | ZEROPAD;
805 if (spec.field_width == -1)
806 spec.field_width = 2 + 2 * sizeof(netdev_features_t);
807 spec.base = 16;
808
809 return number(buf, end, *(const netdev_features_t *)addr, spec);
810}
811
Ingo Molnar411f05f2011-05-12 23:00:28 +0200812int kptr_restrict __read_mostly;
Dan Rosenberg455cd5a2011-01-12 16:59:41 -0800813
Linus Torvalds4d8a7432008-07-06 16:24:57 -0700814/*
815 * Show a '%p' thing. A kernel extension is that the '%p' is followed
816 * by an extra set of alphanumeric characters that are extended format
817 * specifiers.
818 *
Linus Torvalds332d2e72008-10-20 15:07:34 +1100819 * Right now we handle:
Linus Torvalds0fe1ef22008-07-06 16:43:12 -0700820 *
Frederic Weisbecker0c8b9462009-04-15 17:48:18 +0200821 * - 'F' For symbolic function descriptor pointers with offset
822 * - 'f' For simple symbolic function names without offset
Steven Rostedt0efb4d22009-09-17 09:27:29 -0400823 * - 'S' For symbolic direct pointers with offset
824 * - 's' For symbolic direct pointers without offset
Namhyung Kim0f77a8d2011-03-24 11:42:29 +0900825 * - 'B' For backtraced symbolic direct pointers with offset
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600826 * - 'R' For decoded struct resource, e.g., [mem 0x0-0x1f 64bit pref]
827 * - 'r' For raw struct resource, e.g., [mem 0x0-0x1f flags 0x201]
Harvey Harrisondd45c9c2008-10-27 15:47:12 -0700828 * - 'M' For a 6-byte MAC address, it prints the address in the
829 * usual colon-separated hex notation
Joe Perches8a27f7c2009-08-17 12:29:44 +0000830 * - 'm' For a 6-byte MAC address, it prints the hex address without colons
Joe Perchesbc7259a2010-01-07 11:43:50 +0000831 * - 'MF' For a 6-byte MAC FDDI address, it prints the address
Joe Perchesc8e00062010-01-11 00:44:14 -0800832 * with a dash-separated hex notation
Joe Perches8a27f7c2009-08-17 12:29:44 +0000833 * - 'I' [46] for IPv4/IPv6 addresses printed in the usual way
834 * IPv4 uses dot-separated decimal without leading 0's (1.2.3.4)
835 * IPv6 uses colon separated network-order 16 bit hex with leading 0's
836 * - 'i' [46] for 'raw' IPv4/IPv6 addresses
837 * IPv6 omits the colons (01020304...0f)
838 * IPv4 uses dot-separated decimal with leading 0's (010.123.045.006)
Joe Perches0159f242010-01-13 20:23:30 -0800839 * - '[Ii]4[hnbl]' IPv4 addresses in host, network, big or little endian order
Joe Perches8a27f7c2009-08-17 12:29:44 +0000840 * - 'I6c' for IPv6 addresses printed as specified by
Joe Perches29cf5192011-06-09 11:23:37 -0700841 * http://tools.ietf.org/html/rfc5952
Joe Perches9ac6e442009-12-14 18:01:09 -0800842 * - 'U' For a 16 byte UUID/GUID, it prints the UUID/GUID in the form
843 * "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
844 * Options for %pU are:
845 * b big endian lower case hex (default)
846 * B big endian UPPER case hex
847 * l little endian lower case hex
848 * L little endian UPPER case hex
849 * big endian output byte order is:
850 * [0][1][2][3]-[4][5]-[6][7]-[8][9]-[10][11][12][13][14][15]
851 * little endian output byte order is:
852 * [3][2][1][0]-[5][4]-[7][6]-[8][9]-[10][11][12][13][14][15]
Joe Perches7db6f5f2010-06-27 01:02:33 +0000853 * - 'V' For a struct va_format which contains a format string * and va_list *,
854 * call vsnprintf(->format, *->va_list).
855 * Implements a "recursive vsnprintf".
856 * Do not use this feature without some mechanism to verify the
857 * correctness of the format string and va_list arguments.
Dan Rosenberg455cd5a2011-01-12 16:59:41 -0800858 * - 'K' For a kernel pointer that should be hidden from unprivileged users
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000859 * - 'NF' For a netdev_features_t
Stepan Moskovchenkoe9ba0642013-01-21 13:27:25 -0800860 * - 'a' For a phys_addr_t type and its derivative types (passed by reference)
Joe Perches9ac6e442009-12-14 18:01:09 -0800861 *
Linus Torvalds332d2e72008-10-20 15:07:34 +1100862 * Note: The difference between 'S' and 'F' is that on ia64 and ppc64
863 * function pointers are really function descriptors, which contain a
864 * pointer to the real address.
Linus Torvalds4d8a7432008-07-06 16:24:57 -0700865 */
Joe Perchescf3b4292010-05-24 14:33:16 -0700866static noinline_for_stack
867char *pointer(const char *fmt, char *buf, char *end, void *ptr,
868 struct printf_spec spec)
Linus Torvalds78a8bf62008-07-06 16:16:15 -0700869{
Kees Cook9f36e2c2011-03-22 16:34:22 -0700870 if (!ptr && *fmt != 'K') {
Joe Perches5e057982010-10-26 14:22:50 -0700871 /*
872 * Print (null) with the same width as a pointer so it makes
873 * tabular output look nice.
874 */
875 if (spec.field_width == -1)
876 spec.field_width = 2 * sizeof(void *);
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100877 return string(buf, end, "(null)", spec);
Joe Perches5e057982010-10-26 14:22:50 -0700878 }
Linus Torvaldsd97106a2009-01-03 11:46:17 -0800879
Linus Torvalds0fe1ef22008-07-06 16:43:12 -0700880 switch (*fmt) {
881 case 'F':
Frederic Weisbecker0c8b9462009-04-15 17:48:18 +0200882 case 'f':
Linus Torvalds0fe1ef22008-07-06 16:43:12 -0700883 ptr = dereference_function_descriptor(ptr);
884 /* Fallthrough */
885 case 'S':
Joe Perches9ac6e442009-12-14 18:01:09 -0800886 case 's':
Namhyung Kim0f77a8d2011-03-24 11:42:29 +0900887 case 'B':
Frederic Weisbecker0c8b9462009-04-15 17:48:18 +0200888 return symbol_string(buf, end, ptr, spec, *fmt);
Linus Torvalds332d2e72008-10-20 15:07:34 +1100889 case 'R':
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600890 case 'r':
Bjorn Helgaasfd955412009-10-06 15:33:39 -0600891 return resource_string(buf, end, ptr, spec, fmt);
Joe Perches8a27f7c2009-08-17 12:29:44 +0000892 case 'M': /* Colon separated: 00:01:02:03:04:05 */
893 case 'm': /* Contiguous: 000102030405 */
Joe Perchesbc7259a2010-01-07 11:43:50 +0000894 /* [mM]F (FDDI, bit reversed) */
Joe Perches8a27f7c2009-08-17 12:29:44 +0000895 return mac_address_string(buf, end, ptr, spec, fmt);
896 case 'I': /* Formatted IP supported
897 * 4: 1.2.3.4
898 * 6: 0001:0203:...:0708
899 * 6c: 1::708 or 1::1.2.3.4
900 */
901 case 'i': /* Contiguous:
902 * 4: 001.002.003.004
903 * 6: 000102...0f
904 */
905 switch (fmt[1]) {
906 case '6':
907 return ip6_addr_string(buf, end, ptr, spec, fmt);
908 case '4':
909 return ip4_addr_string(buf, end, ptr, spec, fmt);
910 }
Harvey Harrison4aa99602008-10-29 12:49:58 -0700911 break;
Joe Perches9ac6e442009-12-14 18:01:09 -0800912 case 'U':
913 return uuid_string(buf, end, ptr, spec, fmt);
Joe Perches7db6f5f2010-06-27 01:02:33 +0000914 case 'V':
Jan Beulich5756b762012-03-05 16:49:24 +0000915 {
916 va_list va;
917
918 va_copy(va, *((struct va_format *)ptr)->va);
919 buf += vsnprintf(buf, end > buf ? end - buf : 0,
920 ((struct va_format *)ptr)->fmt, va);
921 va_end(va);
922 return buf;
923 }
Dan Rosenberg455cd5a2011-01-12 16:59:41 -0800924 case 'K':
925 /*
926 * %pK cannot be used in IRQ context because its test
927 * for CAP_SYSLOG would be meaningless.
928 */
929 if (in_irq() || in_serving_softirq() || in_nmi()) {
930 if (spec.field_width == -1)
931 spec.field_width = 2 * sizeof(void *);
932 return string(buf, end, "pK-error", spec);
Dan Rosenberg455cd5a2011-01-12 16:59:41 -0800933 }
Joe Perches26297602011-03-22 16:34:19 -0700934 if (!((kptr_restrict == 0) ||
935 (kptr_restrict == 1 &&
936 has_capability_noaudit(current, CAP_SYSLOG))))
937 ptr = NULL;
938 break;
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000939 case 'N':
940 switch (fmt[1]) {
941 case 'F':
942 return netdev_feature_string(buf, end, ptr, spec);
943 }
944 break;
Stepan Moskovchenkoe9ba0642013-01-21 13:27:25 -0800945 case 'a':
946 spec.flags |= SPECIAL | SMALL | ZEROPAD;
947 spec.field_width = sizeof(phys_addr_t) * 2 + 2;
948 spec.base = 16;
949 return number(buf, end,
950 (unsigned long long) *((phys_addr_t *)ptr), spec);
Linus Torvalds0fe1ef22008-07-06 16:43:12 -0700951 }
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100952 spec.flags |= SMALL;
953 if (spec.field_width == -1) {
Joe Perches5e057982010-10-26 14:22:50 -0700954 spec.field_width = 2 * sizeof(void *);
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100955 spec.flags |= ZEROPAD;
Linus Torvalds78a8bf62008-07-06 16:16:15 -0700956 }
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100957 spec.base = 16;
958
959 return number(buf, end, (unsigned long) ptr, spec);
960}
961
962/*
963 * Helper function to decode printf style format.
964 * Each call decode a token from the format and return the
965 * number of characters read (or likely the delta where it wants
966 * to go on the next call).
967 * The decoded token is returned through the parameters
968 *
969 * 'h', 'l', or 'L' for integer fields
970 * 'z' support added 23/7/1999 S.H.
971 * 'z' changed to 'Z' --davidm 1/25/99
972 * 't' added for ptrdiff_t
973 *
974 * @fmt: the format string
975 * @type of the token returned
976 * @flags: various flags such as +, -, # tokens..
977 * @field_width: overwritten width
978 * @base: base of the number (octal, hex, ...)
979 * @precision: precision of a number
980 * @qualifier: qualifier of a number (long, size_t, ...)
981 */
Joe Perchescf3b4292010-05-24 14:33:16 -0700982static noinline_for_stack
983int format_decode(const char *fmt, struct printf_spec *spec)
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100984{
985 const char *start = fmt;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100986
987 /* we finished early by reading the field width */
Vegard Nossumed681a92009-03-14 12:08:50 +0100988 if (spec->type == FORMAT_TYPE_WIDTH) {
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100989 if (spec->field_width < 0) {
990 spec->field_width = -spec->field_width;
991 spec->flags |= LEFT;
992 }
993 spec->type = FORMAT_TYPE_NONE;
994 goto precision;
995 }
996
997 /* we finished early by reading the precision */
998 if (spec->type == FORMAT_TYPE_PRECISION) {
999 if (spec->precision < 0)
1000 spec->precision = 0;
1001
1002 spec->type = FORMAT_TYPE_NONE;
1003 goto qualifier;
1004 }
1005
1006 /* By default */
1007 spec->type = FORMAT_TYPE_NONE;
1008
1009 for (; *fmt ; ++fmt) {
1010 if (*fmt == '%')
1011 break;
1012 }
1013
1014 /* Return the current non-format string */
1015 if (fmt != start || !*fmt)
1016 return fmt - start;
1017
1018 /* Process flags */
1019 spec->flags = 0;
1020
1021 while (1) { /* this also skips first '%' */
1022 bool found = true;
1023
1024 ++fmt;
1025
1026 switch (*fmt) {
1027 case '-': spec->flags |= LEFT; break;
1028 case '+': spec->flags |= PLUS; break;
1029 case ' ': spec->flags |= SPACE; break;
1030 case '#': spec->flags |= SPECIAL; break;
1031 case '0': spec->flags |= ZEROPAD; break;
1032 default: found = false;
1033 }
1034
1035 if (!found)
1036 break;
1037 }
1038
1039 /* get field width */
1040 spec->field_width = -1;
1041
1042 if (isdigit(*fmt))
1043 spec->field_width = skip_atoi(&fmt);
1044 else if (*fmt == '*') {
1045 /* it's the next argument */
Vegard Nossumed681a92009-03-14 12:08:50 +01001046 spec->type = FORMAT_TYPE_WIDTH;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001047 return ++fmt - start;
1048 }
1049
1050precision:
1051 /* get the precision */
1052 spec->precision = -1;
1053 if (*fmt == '.') {
1054 ++fmt;
1055 if (isdigit(*fmt)) {
1056 spec->precision = skip_atoi(&fmt);
1057 if (spec->precision < 0)
1058 spec->precision = 0;
1059 } else if (*fmt == '*') {
1060 /* it's the next argument */
Vegard Nossumadf26f82009-03-14 12:08:50 +01001061 spec->type = FORMAT_TYPE_PRECISION;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001062 return ++fmt - start;
1063 }
1064 }
1065
1066qualifier:
1067 /* get the conversion qualifier */
1068 spec->qualifier = -1;
Andy Shevchenko75fb8f22011-07-25 17:13:20 -07001069 if (*fmt == 'h' || _tolower(*fmt) == 'l' ||
1070 _tolower(*fmt) == 'z' || *fmt == 't') {
Zhaoleia4e94ef2009-03-27 17:07:05 +08001071 spec->qualifier = *fmt++;
1072 if (unlikely(spec->qualifier == *fmt)) {
1073 if (spec->qualifier == 'l') {
1074 spec->qualifier = 'L';
1075 ++fmt;
1076 } else if (spec->qualifier == 'h') {
1077 spec->qualifier = 'H';
1078 ++fmt;
1079 }
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001080 }
1081 }
1082
1083 /* default base */
1084 spec->base = 10;
1085 switch (*fmt) {
1086 case 'c':
1087 spec->type = FORMAT_TYPE_CHAR;
1088 return ++fmt - start;
1089
1090 case 's':
1091 spec->type = FORMAT_TYPE_STR;
1092 return ++fmt - start;
1093
1094 case 'p':
1095 spec->type = FORMAT_TYPE_PTR;
1096 return fmt - start;
1097 /* skip alnum */
1098
1099 case 'n':
1100 spec->type = FORMAT_TYPE_NRCHARS;
1101 return ++fmt - start;
1102
1103 case '%':
1104 spec->type = FORMAT_TYPE_PERCENT_CHAR;
1105 return ++fmt - start;
1106
1107 /* integer number formats - set up the flags and "break" */
1108 case 'o':
1109 spec->base = 8;
1110 break;
1111
1112 case 'x':
1113 spec->flags |= SMALL;
1114
1115 case 'X':
1116 spec->base = 16;
1117 break;
1118
1119 case 'd':
1120 case 'i':
Frederic Weisbecker39e874f2009-03-09 21:15:04 +01001121 spec->flags |= SIGN;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001122 case 'u':
1123 break;
1124
1125 default:
1126 spec->type = FORMAT_TYPE_INVALID;
1127 return fmt - start;
1128 }
1129
1130 if (spec->qualifier == 'L')
1131 spec->type = FORMAT_TYPE_LONG_LONG;
1132 else if (spec->qualifier == 'l') {
Frederic Weisbecker39e874f2009-03-09 21:15:04 +01001133 if (spec->flags & SIGN)
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001134 spec->type = FORMAT_TYPE_LONG;
1135 else
1136 spec->type = FORMAT_TYPE_ULONG;
Andy Shevchenko75fb8f22011-07-25 17:13:20 -07001137 } else if (_tolower(spec->qualifier) == 'z') {
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001138 spec->type = FORMAT_TYPE_SIZE_T;
1139 } else if (spec->qualifier == 't') {
1140 spec->type = FORMAT_TYPE_PTRDIFF;
Zhaoleia4e94ef2009-03-27 17:07:05 +08001141 } else if (spec->qualifier == 'H') {
1142 if (spec->flags & SIGN)
1143 spec->type = FORMAT_TYPE_BYTE;
1144 else
1145 spec->type = FORMAT_TYPE_UBYTE;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001146 } else if (spec->qualifier == 'h') {
Frederic Weisbecker39e874f2009-03-09 21:15:04 +01001147 if (spec->flags & SIGN)
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001148 spec->type = FORMAT_TYPE_SHORT;
1149 else
1150 spec->type = FORMAT_TYPE_USHORT;
1151 } else {
Frederic Weisbecker39e874f2009-03-09 21:15:04 +01001152 if (spec->flags & SIGN)
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001153 spec->type = FORMAT_TYPE_INT;
1154 else
1155 spec->type = FORMAT_TYPE_UINT;
1156 }
1157
1158 return ++fmt - start;
Linus Torvalds78a8bf62008-07-06 16:16:15 -07001159}
1160
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161/**
1162 * vsnprintf - Format a string and place it in a buffer
1163 * @buf: The buffer to place the result into
1164 * @size: The size of the buffer, including the trailing null space
1165 * @fmt: The format string to use
1166 * @args: Arguments for the format string
1167 *
Andi Kleen20036fd2008-10-15 22:02:02 -07001168 * This function follows C99 vsnprintf, but has some extensions:
Steven Rostedt91adcd22009-09-16 20:03:06 -04001169 * %pS output the name of a text symbol with offset
1170 * %ps output the name of a text symbol without offset
Frederic Weisbecker0c8b9462009-04-15 17:48:18 +02001171 * %pF output the name of a function pointer with its offset
1172 * %pf output the name of a function pointer without its offset
Namhyung Kim0f77a8d2011-03-24 11:42:29 +09001173 * %pB output the name of a backtrace symbol with its offset
Uwe Kleine-König8a795032009-12-17 15:27:12 -08001174 * %pR output the address range in a struct resource with decoded flags
1175 * %pr output the address range in a struct resource with raw flags
1176 * %pM output a 6-byte MAC address with colons
1177 * %pm output a 6-byte MAC address without colons
1178 * %pI4 print an IPv4 address without leading zeros
1179 * %pi4 print an IPv4 address with leading zeros
1180 * %pI6 print an IPv6 address with colons
1181 * %pi6 print an IPv6 address without colons
Jan Engelhardtf996f202011-07-14 18:48:56 +02001182 * %pI6c print an IPv6 address as specified by RFC 5952
Uwe Kleine-König8a795032009-12-17 15:27:12 -08001183 * %pU[bBlL] print a UUID/GUID in big or little endian using lower or upper
1184 * case.
Steven Rostedt0efb4d22009-09-17 09:27:29 -04001185 * %n is ignored
Andi Kleen20036fd2008-10-15 22:02:02 -07001186 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 * The return value is the number of characters which would
1188 * be generated for the given input, excluding the trailing
1189 * '\0', as per ISO C99. If you want to have the exact
1190 * number of characters written into @buf as return value
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08001191 * (not including the trailing '\0'), use vscnprintf(). If the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 * return is greater than or equal to @size, the resulting
1193 * string is truncated.
1194 *
Uwe Kleine-Königba1835e2011-04-06 07:49:04 -07001195 * If you're not already dealing with a va_list consider using snprintf().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 */
1197int vsnprintf(char *buf, size_t size, const char *fmt, va_list args)
1198{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 unsigned long long num;
André Goddard Rosad4be1512009-12-14 18:00:59 -08001200 char *str, *end;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001201 struct printf_spec spec = {0};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -07001203 /* Reject out-of-range values early. Large positive sizes are
1204 used for unknown buffer sizes. */
Marcin Slusarz2f30b1f92009-09-21 17:04:29 -07001205 if (WARN_ON_ONCE((int) size < 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207
1208 str = buf;
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -07001209 end = buf + size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -07001211 /* Make sure end is always >= buf */
1212 if (end < buf) {
1213 end = ((void *)-1);
1214 size = end - buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 }
1216
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001217 while (*fmt) {
1218 const char *old_fmt = fmt;
André Goddard Rosad4be1512009-12-14 18:00:59 -08001219 int read = format_decode(fmt, &spec);
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001220
1221 fmt += read;
1222
1223 switch (spec.type) {
1224 case FORMAT_TYPE_NONE: {
1225 int copy = read;
1226 if (str < end) {
1227 if (copy > end - str)
1228 copy = end - str;
1229 memcpy(str, old_fmt, copy);
1230 }
1231 str += read;
1232 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 }
1234
Vegard Nossumed681a92009-03-14 12:08:50 +01001235 case FORMAT_TYPE_WIDTH:
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001236 spec.field_width = va_arg(args, int);
1237 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001239 case FORMAT_TYPE_PRECISION:
1240 spec.precision = va_arg(args, int);
1241 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242
André Goddard Rosad4be1512009-12-14 18:00:59 -08001243 case FORMAT_TYPE_CHAR: {
1244 char c;
1245
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001246 if (!(spec.flags & LEFT)) {
1247 while (--spec.field_width > 0) {
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -07001248 if (str < end)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 *str = ' ';
1250 ++str;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001251
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 }
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001253 }
1254 c = (unsigned char) va_arg(args, int);
1255 if (str < end)
1256 *str = c;
1257 ++str;
1258 while (--spec.field_width > 0) {
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -07001259 if (str < end)
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001260 *str = ' ';
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 ++str;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001262 }
1263 break;
André Goddard Rosad4be1512009-12-14 18:00:59 -08001264 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001266 case FORMAT_TYPE_STR:
1267 str = string(str, end, va_arg(args, char *), spec);
1268 break;
1269
1270 case FORMAT_TYPE_PTR:
1271 str = pointer(fmt+1, str, end, va_arg(args, void *),
1272 spec);
1273 while (isalnum(*fmt))
1274 fmt++;
1275 break;
1276
1277 case FORMAT_TYPE_PERCENT_CHAR:
1278 if (str < end)
1279 *str = '%';
1280 ++str;
1281 break;
1282
1283 case FORMAT_TYPE_INVALID:
1284 if (str < end)
1285 *str = '%';
1286 ++str;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001287 break;
1288
1289 case FORMAT_TYPE_NRCHARS: {
Kees Cook6aa14152013-11-14 14:31:58 -08001290 /*
1291 * Since %n poses a greater security risk than
1292 * utility, ignore %n and skip its argument.
1293 */
1294 void *skip_arg;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001295
Kees Cook6aa14152013-11-14 14:31:58 -08001296 WARN_ONCE(1, "Please remove ignored %%n in '%s'\n",
1297 old_fmt);
1298
1299 skip_arg = va_arg(args, void *);
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001300 break;
1301 }
1302
1303 default:
1304 switch (spec.type) {
1305 case FORMAT_TYPE_LONG_LONG:
1306 num = va_arg(args, long long);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 break;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001308 case FORMAT_TYPE_ULONG:
1309 num = va_arg(args, unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 break;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001311 case FORMAT_TYPE_LONG:
1312 num = va_arg(args, long);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 break;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001314 case FORMAT_TYPE_SIZE_T:
1315 num = va_arg(args, size_t);
1316 break;
1317 case FORMAT_TYPE_PTRDIFF:
1318 num = va_arg(args, ptrdiff_t);
1319 break;
Zhaoleia4e94ef2009-03-27 17:07:05 +08001320 case FORMAT_TYPE_UBYTE:
1321 num = (unsigned char) va_arg(args, int);
1322 break;
1323 case FORMAT_TYPE_BYTE:
1324 num = (signed char) va_arg(args, int);
1325 break;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001326 case FORMAT_TYPE_USHORT:
1327 num = (unsigned short) va_arg(args, int);
1328 break;
1329 case FORMAT_TYPE_SHORT:
1330 num = (short) va_arg(args, int);
1331 break;
Frederic Weisbecker39e874f2009-03-09 21:15:04 +01001332 case FORMAT_TYPE_INT:
1333 num = (int) va_arg(args, int);
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001334 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 default:
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001336 num = va_arg(args, unsigned int);
1337 }
1338
1339 str = number(str, end, num, spec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 }
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001342
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -07001343 if (size > 0) {
1344 if (str < end)
1345 *str = '\0';
1346 else
Linus Torvalds0a6047e2006-06-28 17:09:34 -07001347 end[-1] = '\0';
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -07001348 }
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001349
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -07001350 /* the trailing null byte doesn't count towards the total */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 return str-buf;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001352
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354EXPORT_SYMBOL(vsnprintf);
1355
1356/**
1357 * vscnprintf - Format a string and place it in a buffer
1358 * @buf: The buffer to place the result into
1359 * @size: The size of the buffer, including the trailing null space
1360 * @fmt: The format string to use
1361 * @args: Arguments for the format string
1362 *
1363 * The return value is the number of characters which have been written into
Anton Arapovb921c692011-01-12 16:59:49 -08001364 * the @buf not including the trailing '\0'. If @size is == 0 the function
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 * returns 0.
1366 *
Uwe Kleine-Königba1835e2011-04-06 07:49:04 -07001367 * If you're not already dealing with a va_list consider using scnprintf().
Andi Kleen20036fd2008-10-15 22:02:02 -07001368 *
1369 * See the vsnprintf() documentation for format string extensions over C99.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 */
1371int vscnprintf(char *buf, size_t size, const char *fmt, va_list args)
1372{
1373 int i;
1374
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001375 i = vsnprintf(buf, size, fmt, args);
1376
Anton Arapovb921c692011-01-12 16:59:49 -08001377 if (likely(i < size))
1378 return i;
1379 if (size != 0)
1380 return size - 1;
1381 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383EXPORT_SYMBOL(vscnprintf);
1384
1385/**
1386 * snprintf - Format a string and place it in a buffer
1387 * @buf: The buffer to place the result into
1388 * @size: The size of the buffer, including the trailing null space
1389 * @fmt: The format string to use
1390 * @...: Arguments for the format string
1391 *
1392 * The return value is the number of characters which would be
1393 * generated for the given input, excluding the trailing null,
1394 * as per ISO C99. If the return is greater than or equal to
1395 * @size, the resulting string is truncated.
Andi Kleen20036fd2008-10-15 22:02:02 -07001396 *
1397 * See the vsnprintf() documentation for format string extensions over C99.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 */
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001399int snprintf(char *buf, size_t size, const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400{
1401 va_list args;
1402 int i;
1403
1404 va_start(args, fmt);
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001405 i = vsnprintf(buf, size, fmt, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 va_end(args);
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001407
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 return i;
1409}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410EXPORT_SYMBOL(snprintf);
1411
1412/**
1413 * scnprintf - Format a string and place it in a buffer
1414 * @buf: The buffer to place the result into
1415 * @size: The size of the buffer, including the trailing null space
1416 * @fmt: The format string to use
1417 * @...: Arguments for the format string
1418 *
1419 * The return value is the number of characters written into @buf not including
Changli Gaob903c0b2010-10-26 14:22:50 -07001420 * the trailing '\0'. If @size is == 0 the function returns 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 */
1422
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001423int scnprintf(char *buf, size_t size, const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424{
1425 va_list args;
1426 int i;
1427
1428 va_start(args, fmt);
Anton Arapovb921c692011-01-12 16:59:49 -08001429 i = vscnprintf(buf, size, fmt, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 va_end(args);
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001431
Anton Arapovb921c692011-01-12 16:59:49 -08001432 return i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433}
1434EXPORT_SYMBOL(scnprintf);
1435
1436/**
1437 * vsprintf - Format a string and place it in a buffer
1438 * @buf: The buffer to place the result into
1439 * @fmt: The format string to use
1440 * @args: Arguments for the format string
1441 *
1442 * The function returns the number of characters written
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08001443 * into @buf. Use vsnprintf() or vscnprintf() in order to avoid
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 * buffer overflows.
1445 *
Uwe Kleine-Königba1835e2011-04-06 07:49:04 -07001446 * If you're not already dealing with a va_list consider using sprintf().
Andi Kleen20036fd2008-10-15 22:02:02 -07001447 *
1448 * See the vsnprintf() documentation for format string extensions over C99.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 */
1450int vsprintf(char *buf, const char *fmt, va_list args)
1451{
1452 return vsnprintf(buf, INT_MAX, fmt, args);
1453}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454EXPORT_SYMBOL(vsprintf);
1455
1456/**
1457 * sprintf - Format a string and place it in a buffer
1458 * @buf: The buffer to place the result into
1459 * @fmt: The format string to use
1460 * @...: Arguments for the format string
1461 *
1462 * The function returns the number of characters written
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08001463 * into @buf. Use snprintf() or scnprintf() in order to avoid
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 * buffer overflows.
Andi Kleen20036fd2008-10-15 22:02:02 -07001465 *
1466 * See the vsnprintf() documentation for format string extensions over C99.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 */
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001468int sprintf(char *buf, const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469{
1470 va_list args;
1471 int i;
1472
1473 va_start(args, fmt);
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001474 i = vsnprintf(buf, INT_MAX, fmt, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 va_end(args);
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001476
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 return i;
1478}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479EXPORT_SYMBOL(sprintf);
1480
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001481#ifdef CONFIG_BINARY_PRINTF
1482/*
1483 * bprintf service:
1484 * vbin_printf() - VA arguments to binary data
1485 * bstr_printf() - Binary data to text string
1486 */
1487
1488/**
1489 * vbin_printf - Parse a format string and place args' binary value in a buffer
1490 * @bin_buf: The buffer to place args' binary value
1491 * @size: The size of the buffer(by words(32bits), not characters)
1492 * @fmt: The format string to use
1493 * @args: Arguments for the format string
1494 *
1495 * The format follows C99 vsnprintf, except %n is ignored, and its argument
1496 * is skiped.
1497 *
1498 * The return value is the number of words(32bits) which would be generated for
1499 * the given input.
1500 *
1501 * NOTE:
1502 * If the return value is greater than @size, the resulting bin_buf is NOT
1503 * valid for bstr_printf().
1504 */
1505int vbin_printf(u32 *bin_buf, size_t size, const char *fmt, va_list args)
1506{
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001507 struct printf_spec spec = {0};
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001508 char *str, *end;
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001509
1510 str = (char *)bin_buf;
1511 end = (char *)(bin_buf + size);
1512
1513#define save_arg(type) \
1514do { \
1515 if (sizeof(type) == 8) { \
1516 unsigned long long value; \
1517 str = PTR_ALIGN(str, sizeof(u32)); \
1518 value = va_arg(args, unsigned long long); \
1519 if (str + sizeof(type) <= end) { \
1520 *(u32 *)str = *(u32 *)&value; \
1521 *(u32 *)(str + 4) = *((u32 *)&value + 1); \
1522 } \
1523 } else { \
1524 unsigned long value; \
1525 str = PTR_ALIGN(str, sizeof(type)); \
1526 value = va_arg(args, int); \
1527 if (str + sizeof(type) <= end) \
1528 *(typeof(type) *)str = (type)value; \
1529 } \
1530 str += sizeof(type); \
1531} while (0)
1532
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001533 while (*fmt) {
André Goddard Rosad4be1512009-12-14 18:00:59 -08001534 int read = format_decode(fmt, &spec);
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001535
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001536 fmt += read;
1537
1538 switch (spec.type) {
1539 case FORMAT_TYPE_NONE:
André Goddard Rosad4be1512009-12-14 18:00:59 -08001540 case FORMAT_TYPE_INVALID:
1541 case FORMAT_TYPE_PERCENT_CHAR:
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001542 break;
1543
Vegard Nossumed681a92009-03-14 12:08:50 +01001544 case FORMAT_TYPE_WIDTH:
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001545 case FORMAT_TYPE_PRECISION:
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001546 save_arg(int);
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001547 break;
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001548
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001549 case FORMAT_TYPE_CHAR:
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001550 save_arg(char);
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001551 break;
1552
1553 case FORMAT_TYPE_STR: {
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001554 const char *save_str = va_arg(args, char *);
1555 size_t len;
André Goddard Rosa6c356632009-12-14 18:00:56 -08001556
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001557 if ((unsigned long)save_str > (unsigned long)-PAGE_SIZE
1558 || (unsigned long)save_str < PAGE_SIZE)
André Goddard Rosa0f4f81d2009-12-14 18:00:55 -08001559 save_str = "(null)";
André Goddard Rosa6c356632009-12-14 18:00:56 -08001560 len = strlen(save_str) + 1;
1561 if (str + len < end)
1562 memcpy(str, save_str, len);
1563 str += len;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001564 break;
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001565 }
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001566
1567 case FORMAT_TYPE_PTR:
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001568 save_arg(void *);
1569 /* skip all alphanumeric pointer suffixes */
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001570 while (isalnum(*fmt))
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001571 fmt++;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001572 break;
1573
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001574 case FORMAT_TYPE_NRCHARS: {
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001575 /* skip %n 's argument */
Joe Perchesef0658f2010-03-06 17:10:14 -08001576 u8 qualifier = spec.qualifier;
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001577 void *skip_arg;
1578 if (qualifier == 'l')
1579 skip_arg = va_arg(args, long *);
Andy Shevchenko75fb8f22011-07-25 17:13:20 -07001580 else if (_tolower(qualifier) == 'z')
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001581 skip_arg = va_arg(args, size_t *);
1582 else
1583 skip_arg = va_arg(args, int *);
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001584 break;
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001585 }
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001586
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001587 default:
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001588 switch (spec.type) {
1589
1590 case FORMAT_TYPE_LONG_LONG:
1591 save_arg(long long);
1592 break;
1593 case FORMAT_TYPE_ULONG:
1594 case FORMAT_TYPE_LONG:
1595 save_arg(unsigned long);
1596 break;
1597 case FORMAT_TYPE_SIZE_T:
1598 save_arg(size_t);
1599 break;
1600 case FORMAT_TYPE_PTRDIFF:
1601 save_arg(ptrdiff_t);
1602 break;
Zhaoleia4e94ef2009-03-27 17:07:05 +08001603 case FORMAT_TYPE_UBYTE:
1604 case FORMAT_TYPE_BYTE:
1605 save_arg(char);
1606 break;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001607 case FORMAT_TYPE_USHORT:
1608 case FORMAT_TYPE_SHORT:
1609 save_arg(short);
1610 break;
1611 default:
1612 save_arg(int);
1613 }
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001614 }
1615 }
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001616
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001617 return (u32 *)(PTR_ALIGN(str, sizeof(u32))) - bin_buf;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001618#undef save_arg
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001619}
1620EXPORT_SYMBOL_GPL(vbin_printf);
1621
1622/**
1623 * bstr_printf - Format a string from binary arguments and place it in a buffer
1624 * @buf: The buffer to place the result into
1625 * @size: The size of the buffer, including the trailing null space
1626 * @fmt: The format string to use
1627 * @bin_buf: Binary arguments for the format string
1628 *
1629 * This function like C99 vsnprintf, but the difference is that vsnprintf gets
1630 * arguments from stack, and bstr_printf gets arguments from @bin_buf which is
1631 * a binary buffer that generated by vbin_printf.
1632 *
1633 * The format follows C99 vsnprintf, but has some extensions:
Steven Rostedt0efb4d22009-09-17 09:27:29 -04001634 * see vsnprintf comment for details.
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001635 *
1636 * The return value is the number of characters which would
1637 * be generated for the given input, excluding the trailing
1638 * '\0', as per ISO C99. If you want to have the exact
1639 * number of characters written into @buf as return value
1640 * (not including the trailing '\0'), use vscnprintf(). If the
1641 * return is greater than or equal to @size, the resulting
1642 * string is truncated.
1643 */
1644int bstr_printf(char *buf, size_t size, const char *fmt, const u32 *bin_buf)
1645{
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001646 struct printf_spec spec = {0};
André Goddard Rosad4be1512009-12-14 18:00:59 -08001647 char *str, *end;
1648 const char *args = (const char *)bin_buf;
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001649
Marcin Slusarz2f30b1f92009-09-21 17:04:29 -07001650 if (WARN_ON_ONCE((int) size < 0))
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001651 return 0;
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001652
1653 str = buf;
1654 end = buf + size;
1655
1656#define get_arg(type) \
1657({ \
1658 typeof(type) value; \
1659 if (sizeof(type) == 8) { \
1660 args = PTR_ALIGN(args, sizeof(u32)); \
1661 *(u32 *)&value = *(u32 *)args; \
1662 *((u32 *)&value + 1) = *(u32 *)(args + 4); \
1663 } else { \
1664 args = PTR_ALIGN(args, sizeof(type)); \
1665 value = *(typeof(type) *)args; \
1666 } \
1667 args += sizeof(type); \
1668 value; \
1669})
1670
1671 /* Make sure end is always >= buf */
1672 if (end < buf) {
1673 end = ((void *)-1);
1674 size = end - buf;
1675 }
1676
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001677 while (*fmt) {
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001678 const char *old_fmt = fmt;
André Goddard Rosad4be1512009-12-14 18:00:59 -08001679 int read = format_decode(fmt, &spec);
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001680
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001681 fmt += read;
1682
1683 switch (spec.type) {
1684 case FORMAT_TYPE_NONE: {
1685 int copy = read;
1686 if (str < end) {
1687 if (copy > end - str)
1688 copy = end - str;
1689 memcpy(str, old_fmt, copy);
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001690 }
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001691 str += read;
1692 break;
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001693 }
1694
Vegard Nossumed681a92009-03-14 12:08:50 +01001695 case FORMAT_TYPE_WIDTH:
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001696 spec.field_width = get_arg(int);
1697 break;
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001698
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001699 case FORMAT_TYPE_PRECISION:
1700 spec.precision = get_arg(int);
1701 break;
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001702
André Goddard Rosad4be1512009-12-14 18:00:59 -08001703 case FORMAT_TYPE_CHAR: {
1704 char c;
1705
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001706 if (!(spec.flags & LEFT)) {
1707 while (--spec.field_width > 0) {
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001708 if (str < end)
1709 *str = ' ';
1710 ++str;
1711 }
1712 }
1713 c = (unsigned char) get_arg(char);
1714 if (str < end)
1715 *str = c;
1716 ++str;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001717 while (--spec.field_width > 0) {
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001718 if (str < end)
1719 *str = ' ';
1720 ++str;
1721 }
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001722 break;
André Goddard Rosad4be1512009-12-14 18:00:59 -08001723 }
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001724
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001725 case FORMAT_TYPE_STR: {
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001726 const char *str_arg = args;
André Goddard Rosad4be1512009-12-14 18:00:59 -08001727 args += strlen(str_arg) + 1;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001728 str = string(str, end, (char *)str_arg, spec);
1729 break;
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001730 }
1731
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001732 case FORMAT_TYPE_PTR:
1733 str = pointer(fmt+1, str, end, get_arg(void *), spec);
1734 while (isalnum(*fmt))
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001735 fmt++;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001736 break;
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001737
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001738 case FORMAT_TYPE_PERCENT_CHAR:
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001739 case FORMAT_TYPE_INVALID:
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001740 if (str < end)
1741 *str = '%';
1742 ++str;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001743 break;
1744
1745 case FORMAT_TYPE_NRCHARS:
1746 /* skip */
1747 break;
1748
André Goddard Rosad4be1512009-12-14 18:00:59 -08001749 default: {
1750 unsigned long long num;
1751
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001752 switch (spec.type) {
1753
1754 case FORMAT_TYPE_LONG_LONG:
1755 num = get_arg(long long);
1756 break;
1757 case FORMAT_TYPE_ULONG:
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001758 case FORMAT_TYPE_LONG:
1759 num = get_arg(unsigned long);
1760 break;
1761 case FORMAT_TYPE_SIZE_T:
1762 num = get_arg(size_t);
1763 break;
1764 case FORMAT_TYPE_PTRDIFF:
1765 num = get_arg(ptrdiff_t);
1766 break;
Zhaoleia4e94ef2009-03-27 17:07:05 +08001767 case FORMAT_TYPE_UBYTE:
1768 num = get_arg(unsigned char);
1769 break;
1770 case FORMAT_TYPE_BYTE:
1771 num = get_arg(signed char);
1772 break;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001773 case FORMAT_TYPE_USHORT:
1774 num = get_arg(unsigned short);
1775 break;
1776 case FORMAT_TYPE_SHORT:
1777 num = get_arg(short);
1778 break;
1779 case FORMAT_TYPE_UINT:
1780 num = get_arg(unsigned int);
1781 break;
1782 default:
1783 num = get_arg(int);
1784 }
1785
1786 str = number(str, end, num, spec);
André Goddard Rosad4be1512009-12-14 18:00:59 -08001787 } /* default: */
1788 } /* switch(spec.type) */
1789 } /* while(*fmt) */
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001790
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001791 if (size > 0) {
1792 if (str < end)
1793 *str = '\0';
1794 else
1795 end[-1] = '\0';
1796 }
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001797
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001798#undef get_arg
1799
1800 /* the trailing null byte doesn't count towards the total */
1801 return str - buf;
1802}
1803EXPORT_SYMBOL_GPL(bstr_printf);
1804
1805/**
1806 * bprintf - Parse a format string and place args' binary value in a buffer
1807 * @bin_buf: The buffer to place args' binary value
1808 * @size: The size of the buffer(by words(32bits), not characters)
1809 * @fmt: The format string to use
1810 * @...: Arguments for the format string
1811 *
1812 * The function returns the number of words(u32) written
1813 * into @bin_buf.
1814 */
1815int bprintf(u32 *bin_buf, size_t size, const char *fmt, ...)
1816{
1817 va_list args;
1818 int ret;
1819
1820 va_start(args, fmt);
1821 ret = vbin_printf(bin_buf, size, fmt, args);
1822 va_end(args);
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001823
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001824 return ret;
1825}
1826EXPORT_SYMBOL_GPL(bprintf);
1827
1828#endif /* CONFIG_BINARY_PRINTF */
1829
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830/**
1831 * vsscanf - Unformat a buffer into a list of arguments
1832 * @buf: input buffer
1833 * @fmt: format of buffer
1834 * @args: arguments
1835 */
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001836int vsscanf(const char *buf, const char *fmt, va_list args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837{
1838 const char *str = buf;
1839 char *next;
1840 char digit;
1841 int num = 0;
Joe Perchesef0658f2010-03-06 17:10:14 -08001842 u8 qualifier;
1843 u8 base;
1844 s16 field_width;
André Goddard Rosad4be1512009-12-14 18:00:59 -08001845 bool is_sign;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001847 while (*fmt && *str) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848 /* skip any white space in format */
1849 /* white space in format matchs any amount of
1850 * white space, including none, in the input.
1851 */
1852 if (isspace(*fmt)) {
André Goddard Rosae7d28602009-12-14 18:01:06 -08001853 fmt = skip_spaces(++fmt);
1854 str = skip_spaces(str);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 }
1856
1857 /* anything that is not a conversion must match exactly */
1858 if (*fmt != '%' && *fmt) {
1859 if (*fmt++ != *str++)
1860 break;
1861 continue;
1862 }
1863
1864 if (!*fmt)
1865 break;
1866 ++fmt;
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001867
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868 /* skip this conversion.
1869 * advance both strings to next white space
1870 */
1871 if (*fmt == '*') {
Andy Spencer8fccae22009-10-01 15:44:27 -07001872 while (!isspace(*fmt) && *fmt != '%' && *fmt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873 fmt++;
1874 while (!isspace(*str) && *str)
1875 str++;
1876 continue;
1877 }
1878
1879 /* get field width */
1880 field_width = -1;
1881 if (isdigit(*fmt))
1882 field_width = skip_atoi(&fmt);
1883
1884 /* get conversion qualifier */
1885 qualifier = -1;
Andy Shevchenko75fb8f22011-07-25 17:13:20 -07001886 if (*fmt == 'h' || _tolower(*fmt) == 'l' ||
1887 _tolower(*fmt) == 'z') {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 qualifier = *fmt++;
1889 if (unlikely(qualifier == *fmt)) {
1890 if (qualifier == 'h') {
1891 qualifier = 'H';
1892 fmt++;
1893 } else if (qualifier == 'l') {
1894 qualifier = 'L';
1895 fmt++;
1896 }
1897 }
1898 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899
1900 if (!*fmt || !*str)
1901 break;
1902
André Goddard Rosad4be1512009-12-14 18:00:59 -08001903 base = 10;
1904 is_sign = 0;
1905
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001906 switch (*fmt++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907 case 'c':
1908 {
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001909 char *s = (char *)va_arg(args, char*);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910 if (field_width == -1)
1911 field_width = 1;
1912 do {
1913 *s++ = *str++;
1914 } while (--field_width > 0 && *str);
1915 num++;
1916 }
1917 continue;
1918 case 's':
1919 {
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001920 char *s = (char *)va_arg(args, char *);
1921 if (field_width == -1)
Alexey Dobriyan4be929b2010-05-24 14:33:03 -07001922 field_width = SHRT_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 /* first, skip leading white space in buffer */
André Goddard Rosae7d28602009-12-14 18:01:06 -08001924 str = skip_spaces(str);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925
1926 /* now copy until next white space */
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001927 while (*str && !isspace(*str) && field_width--)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 *s++ = *str++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929 *s = '\0';
1930 num++;
1931 }
1932 continue;
1933 case 'n':
1934 /* return number of characters read so far */
1935 {
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001936 int *i = (int *)va_arg(args, int*);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 *i = str - buf;
1938 }
1939 continue;
1940 case 'o':
1941 base = 8;
1942 break;
1943 case 'x':
1944 case 'X':
1945 base = 16;
1946 break;
1947 case 'i':
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001948 base = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 case 'd':
1950 is_sign = 1;
1951 case 'u':
1952 break;
1953 case '%':
1954 /* looking for '%' in str */
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001955 if (*str++ != '%')
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 return num;
1957 continue;
1958 default:
1959 /* invalid format; stop here */
1960 return num;
1961 }
1962
1963 /* have some sort of integer conversion.
1964 * first, skip white space in buffer.
1965 */
André Goddard Rosae7d28602009-12-14 18:01:06 -08001966 str = skip_spaces(str);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967
1968 digit = *str;
1969 if (is_sign && digit == '-')
1970 digit = *(str + 1);
1971
1972 if (!digit
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001973 || (base == 16 && !isxdigit(digit))
1974 || (base == 10 && !isdigit(digit))
1975 || (base == 8 && (!isdigit(digit) || digit > '7'))
1976 || (base == 0 && !isdigit(digit)))
1977 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001979 switch (qualifier) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 case 'H': /* that's 'hh' in format */
1981 if (is_sign) {
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001982 signed char *s = (signed char *)va_arg(args, signed char *);
1983 *s = (signed char)simple_strtol(str, &next, base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984 } else {
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001985 unsigned char *s = (unsigned char *)va_arg(args, unsigned char *);
1986 *s = (unsigned char)simple_strtoul(str, &next, base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 }
1988 break;
1989 case 'h':
1990 if (is_sign) {
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001991 short *s = (short *)va_arg(args, short *);
1992 *s = (short)simple_strtol(str, &next, base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993 } else {
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001994 unsigned short *s = (unsigned short *)va_arg(args, unsigned short *);
1995 *s = (unsigned short)simple_strtoul(str, &next, base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 }
1997 break;
1998 case 'l':
1999 if (is_sign) {
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08002000 long *l = (long *)va_arg(args, long *);
2001 *l = simple_strtol(str, &next, base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 } else {
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08002003 unsigned long *l = (unsigned long *)va_arg(args, unsigned long *);
2004 *l = simple_strtoul(str, &next, base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 }
2006 break;
2007 case 'L':
2008 if (is_sign) {
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08002009 long long *l = (long long *)va_arg(args, long long *);
2010 *l = simple_strtoll(str, &next, base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011 } else {
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08002012 unsigned long long *l = (unsigned long long *)va_arg(args, unsigned long long *);
2013 *l = simple_strtoull(str, &next, base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014 }
2015 break;
2016 case 'Z':
2017 case 'z':
2018 {
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08002019 size_t *s = (size_t *)va_arg(args, size_t *);
2020 *s = (size_t)simple_strtoul(str, &next, base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021 }
2022 break;
2023 default:
2024 if (is_sign) {
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08002025 int *i = (int *)va_arg(args, int *);
2026 *i = (int)simple_strtol(str, &next, base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 } else {
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08002028 unsigned int *i = (unsigned int *)va_arg(args, unsigned int*);
2029 *i = (unsigned int)simple_strtoul(str, &next, base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 }
2031 break;
2032 }
2033 num++;
2034
2035 if (!next)
2036 break;
2037 str = next;
2038 }
Johannes Bergc6b40d12007-05-08 00:27:20 -07002039
2040 /*
2041 * Now we've come all the way through so either the input string or the
2042 * format ended. In the former case, there can be a %n at the current
2043 * position in the format that needs to be filled.
2044 */
2045 if (*fmt == '%' && *(fmt + 1) == 'n') {
2046 int *p = (int *)va_arg(args, int *);
2047 *p = str - buf;
2048 }
2049
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 return num;
2051}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052EXPORT_SYMBOL(vsscanf);
2053
2054/**
2055 * sscanf - Unformat a buffer into a list of arguments
2056 * @buf: input buffer
2057 * @fmt: formatting of buffer
2058 * @...: resulting arguments
2059 */
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08002060int sscanf(const char *buf, const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061{
2062 va_list args;
2063 int i;
2064
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08002065 va_start(args, fmt);
2066 i = vsscanf(buf, fmt, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 va_end(args);
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08002068
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069 return i;
2070}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071EXPORT_SYMBOL(sscanf);