blob: d76555c45ff42dd27b158bef10fa4593e8676ea1 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/lib/vsprintf.c
3 *
4 * Copyright (C) 1991, 1992 Linus Torvalds
5 */
6
7/* vsprintf.c -- Lars Wirzenius & Linus Torvalds. */
8/*
9 * Wirzenius wrote this portably, Torvalds fucked it up :-)
10 */
11
André Goddard Rosa7b9186f2009-12-14 18:00:57 -080012/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 * Fri Jul 13 2001 Crutcher Dunnavant <crutcher+kernel@datastacks.com>
14 * - changed to provide snprintf and vsnprintf functions
15 * So Feb 1 16:51:32 CET 2004 Juergen Quade <quade@hsnr.de>
16 * - scnprintf and vscnprintf
17 */
18
19#include <stdarg.h>
Paul Gortmaker8bc3bcc2011-11-16 21:29:17 -050020#include <linux/module.h> /* for KSYM_SYMBOL_LEN */
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/types.h>
22#include <linux/string.h>
23#include <linux/ctype.h>
24#include <linux/kernel.h>
Linus Torvalds0fe1ef22008-07-06 16:43:12 -070025#include <linux/kallsyms.h>
Jan Beulich53809752012-12-17 16:01:31 -080026#include <linux/math64.h>
Linus Torvalds0fe1ef22008-07-06 16:43:12 -070027#include <linux/uaccess.h>
Linus Torvalds332d2e72008-10-20 15:07:34 +110028#include <linux/ioport.h>
Al Viro4b6ccca2013-09-03 12:00:44 -040029#include <linux/dcache.h>
Ryan Mallon312b4e22013-11-12 15:08:51 -080030#include <linux/cred.h>
Joe Perches8a27f7c2009-08-17 12:29:44 +000031#include <net/addrconf.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
Tim Schmielau4e57b682005-10-30 15:03:48 -080033#include <asm/page.h> /* for PAGE_SIZE */
James Bottomleydeac93d2008-09-03 20:43:36 -050034#include <asm/sections.h> /* for dereference_function_descriptor() */
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Alexey Dobriyan1dff46d2011-10-31 17:12:28 -070036#include "kstrtox.h"
Harvey Harrisonaa46a632008-10-16 13:40:34 -070037
Linus Torvalds1da177e2005-04-16 15:20:36 -070038/**
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 * simple_strtoull - convert a string to an unsigned long long
40 * @cp: The start of the string
41 * @endp: A pointer to the end of the parsed string will be placed here
42 * @base: The number base to use
Eldad Zack462e4712012-12-17 16:03:05 -080043 *
44 * This function is obsolete. Please use kstrtoull instead.
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 */
Harvey Harrison22d27052008-10-16 13:40:35 -070046unsigned long long simple_strtoull(const char *cp, char **endp, unsigned int base)
Linus Torvalds1da177e2005-04-16 15:20:36 -070047{
Alexey Dobriyan1dff46d2011-10-31 17:12:28 -070048 unsigned long long result;
49 unsigned int rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
Alexey Dobriyan1dff46d2011-10-31 17:12:28 -070051 cp = _parse_integer_fixup_radix(cp, &base);
52 rv = _parse_integer(cp, base, &result);
53 /* FIXME */
54 cp += (rv & ~KSTRTOX_OVERFLOW);
Harvey Harrisonaa46a632008-10-16 13:40:34 -070055
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 if (endp)
57 *endp = (char *)cp;
André Goddard Rosa7b9186f2009-12-14 18:00:57 -080058
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 return result;
60}
Linus Torvalds1da177e2005-04-16 15:20:36 -070061EXPORT_SYMBOL(simple_strtoull);
62
63/**
André Goddard Rosa922ac252009-12-14 18:01:01 -080064 * simple_strtoul - convert a string to an unsigned long
65 * @cp: The start of the string
66 * @endp: A pointer to the end of the parsed string will be placed here
67 * @base: The number base to use
Eldad Zack462e4712012-12-17 16:03:05 -080068 *
69 * This function is obsolete. Please use kstrtoul instead.
André Goddard Rosa922ac252009-12-14 18:01:01 -080070 */
71unsigned long simple_strtoul(const char *cp, char **endp, unsigned int base)
72{
73 return simple_strtoull(cp, endp, base);
74}
75EXPORT_SYMBOL(simple_strtoul);
76
77/**
78 * simple_strtol - convert a string to a signed long
79 * @cp: The start of the string
80 * @endp: A pointer to the end of the parsed string will be placed here
81 * @base: The number base to use
Eldad Zack462e4712012-12-17 16:03:05 -080082 *
83 * This function is obsolete. Please use kstrtol instead.
André Goddard Rosa922ac252009-12-14 18:01:01 -080084 */
85long simple_strtol(const char *cp, char **endp, unsigned int base)
86{
87 if (*cp == '-')
88 return -simple_strtoul(cp + 1, endp, base);
89
90 return simple_strtoul(cp, endp, base);
91}
92EXPORT_SYMBOL(simple_strtol);
93
94/**
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 * simple_strtoll - convert a string to a signed long long
96 * @cp: The start of the string
97 * @endp: A pointer to the end of the parsed string will be placed here
98 * @base: The number base to use
Eldad Zack462e4712012-12-17 16:03:05 -080099 *
100 * This function is obsolete. Please use kstrtoll instead.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 */
Harvey Harrison22d27052008-10-16 13:40:35 -0700102long long simple_strtoll(const char *cp, char **endp, unsigned int base)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103{
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800104 if (*cp == '-')
Harvey Harrison22d27052008-10-16 13:40:35 -0700105 return -simple_strtoull(cp + 1, endp, base);
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800106
Harvey Harrison22d27052008-10-16 13:40:35 -0700107 return simple_strtoull(cp, endp, base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108}
Hans Verkuil98d5ce02010-04-23 13:18:04 -0400109EXPORT_SYMBOL(simple_strtoll);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
Joe Perchescf3b4292010-05-24 14:33:16 -0700111static noinline_for_stack
112int skip_atoi(const char **s)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113{
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800114 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
116 while (isdigit(**s))
117 i = i*10 + *((*s)++) - '0';
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800118
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 return i;
120}
121
Denis Vlasenko4277eed2007-07-15 23:41:56 -0700122/* Decimal conversion is by far the most typical, and is used
123 * for /proc and /sys data. This directly impacts e.g. top performance
124 * with many processes running. We optimize it for speed
Denys Vlasenko133fd9f2012-05-31 16:26:08 -0700125 * using ideas described at <http://www.cs.uiowa.edu/~jones/bcd/divide.html>
126 * (with permission from the author, Douglas W. Jones).
127 */
Denis Vlasenko4277eed2007-07-15 23:41:56 -0700128
Denys Vlasenko133fd9f2012-05-31 16:26:08 -0700129#if BITS_PER_LONG != 32 || BITS_PER_LONG_LONG != 64
130/* Formats correctly any integer in [0, 999999999] */
Joe Perchescf3b4292010-05-24 14:33:16 -0700131static noinline_for_stack
Denys Vlasenko133fd9f2012-05-31 16:26:08 -0700132char *put_dec_full9(char *buf, unsigned q)
Denis Vlasenko4277eed2007-07-15 23:41:56 -0700133{
Denys Vlasenko133fd9f2012-05-31 16:26:08 -0700134 unsigned r;
Denis Vlasenko4277eed2007-07-15 23:41:56 -0700135
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800136 /*
137 * Possible ways to approx. divide by 10
Denys Vlasenko133fd9f2012-05-31 16:26:08 -0700138 * (x * 0x1999999a) >> 32 x < 1073741829 (multiply must be 64-bit)
139 * (x * 0xcccd) >> 19 x < 81920 (x < 262149 when 64-bit mul)
140 * (x * 0x6667) >> 18 x < 43699
141 * (x * 0x3334) >> 17 x < 16389
142 * (x * 0x199a) >> 16 x < 16389
143 * (x * 0x0ccd) >> 15 x < 16389
144 * (x * 0x0667) >> 14 x < 2739
145 * (x * 0x0334) >> 13 x < 1029
146 * (x * 0x019a) >> 12 x < 1029
147 * (x * 0x00cd) >> 11 x < 1029 shorter code than * 0x67 (on i386)
148 * (x * 0x0067) >> 10 x < 179
149 * (x * 0x0034) >> 9 x < 69 same
150 * (x * 0x001a) >> 8 x < 69 same
151 * (x * 0x000d) >> 7 x < 69 same, shortest code (on i386)
152 * (x * 0x0007) >> 6 x < 19
153 * See <http://www.cs.uiowa.edu/~jones/bcd/divide.html>
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800154 */
Denys Vlasenko133fd9f2012-05-31 16:26:08 -0700155 r = (q * (uint64_t)0x1999999a) >> 32;
156 *buf++ = (q - 10 * r) + '0'; /* 1 */
157 q = (r * (uint64_t)0x1999999a) >> 32;
158 *buf++ = (r - 10 * q) + '0'; /* 2 */
159 r = (q * (uint64_t)0x1999999a) >> 32;
160 *buf++ = (q - 10 * r) + '0'; /* 3 */
161 q = (r * (uint64_t)0x1999999a) >> 32;
162 *buf++ = (r - 10 * q) + '0'; /* 4 */
163 r = (q * (uint64_t)0x1999999a) >> 32;
164 *buf++ = (q - 10 * r) + '0'; /* 5 */
165 /* Now value is under 10000, can avoid 64-bit multiply */
166 q = (r * 0x199a) >> 16;
167 *buf++ = (r - 10 * q) + '0'; /* 6 */
168 r = (q * 0xcd) >> 11;
169 *buf++ = (q - 10 * r) + '0'; /* 7 */
170 q = (r * 0xcd) >> 11;
171 *buf++ = (r - 10 * q) + '0'; /* 8 */
172 *buf++ = q + '0'; /* 9 */
173 return buf;
174}
175#endif
Denis Vlasenko4277eed2007-07-15 23:41:56 -0700176
Denys Vlasenko133fd9f2012-05-31 16:26:08 -0700177/* Similar to above but do not pad with zeros.
178 * Code can be easily arranged to print 9 digits too, but our callers
179 * always call put_dec_full9() instead when the number has 9 decimal digits.
180 */
181static noinline_for_stack
182char *put_dec_trunc8(char *buf, unsigned r)
183{
184 unsigned q;
Denis Vlasenko4277eed2007-07-15 23:41:56 -0700185
Denys Vlasenko133fd9f2012-05-31 16:26:08 -0700186 /* Copy of previous function's body with added early returns */
George Spelvincb239d02012-10-04 17:12:30 -0700187 while (r >= 10000) {
188 q = r + '0';
189 r = (r * (uint64_t)0x1999999a) >> 32;
190 *buf++ = q - 10*r;
191 }
192
George Spelvinf4000512012-10-04 17:12:32 -0700193 q = (r * 0x199a) >> 16; /* r <= 9999 */
194 *buf++ = (r - 10 * q) + '0';
Denys Vlasenko133fd9f2012-05-31 16:26:08 -0700195 if (q == 0)
196 return buf;
George Spelvinf4000512012-10-04 17:12:32 -0700197 r = (q * 0xcd) >> 11; /* q <= 999 */
198 *buf++ = (q - 10 * r) + '0';
Denys Vlasenko133fd9f2012-05-31 16:26:08 -0700199 if (r == 0)
200 return buf;
George Spelvinf4000512012-10-04 17:12:32 -0700201 q = (r * 0xcd) >> 11; /* r <= 99 */
202 *buf++ = (r - 10 * q) + '0';
Denys Vlasenko133fd9f2012-05-31 16:26:08 -0700203 if (q == 0)
204 return buf;
George Spelvinf4000512012-10-04 17:12:32 -0700205 *buf++ = q + '0'; /* q <= 9 */
Denys Vlasenko133fd9f2012-05-31 16:26:08 -0700206 return buf;
207}
208
209/* There are two algorithms to print larger numbers.
210 * One is generic: divide by 1000000000 and repeatedly print
211 * groups of (up to) 9 digits. It's conceptually simple,
212 * but requires a (unsigned long long) / 1000000000 division.
213 *
214 * Second algorithm splits 64-bit unsigned long long into 16-bit chunks,
215 * manipulates them cleverly and generates groups of 4 decimal digits.
216 * It so happens that it does NOT require long long division.
217 *
218 * If long is > 32 bits, division of 64-bit values is relatively easy,
219 * and we will use the first algorithm.
220 * If long long is > 64 bits (strange architecture with VERY large long long),
221 * second algorithm can't be used, and we again use the first one.
222 *
223 * Else (if long is 32 bits and long long is 64 bits) we use second one.
224 */
225
226#if BITS_PER_LONG != 32 || BITS_PER_LONG_LONG != 64
227
228/* First algorithm: generic */
229
230static
231char *put_dec(char *buf, unsigned long long n)
232{
233 if (n >= 100*1000*1000) {
234 while (n >= 1000*1000*1000)
235 buf = put_dec_full9(buf, do_div(n, 1000*1000*1000));
236 if (n >= 100*1000*1000)
237 return put_dec_full9(buf, n);
238 }
239 return put_dec_trunc8(buf, n);
240}
241
242#else
243
244/* Second algorithm: valid only for 64-bit long longs */
245
George Spelvine49317d2012-10-04 17:12:27 -0700246/* See comment in put_dec_full9 for choice of constants */
Denys Vlasenko133fd9f2012-05-31 16:26:08 -0700247static noinline_for_stack
George Spelvin23591722012-10-04 17:12:29 -0700248void put_dec_full4(char *buf, unsigned q)
Denys Vlasenko133fd9f2012-05-31 16:26:08 -0700249{
250 unsigned r;
George Spelvine49317d2012-10-04 17:12:27 -0700251 r = (q * 0xccd) >> 15;
George Spelvin23591722012-10-04 17:12:29 -0700252 buf[0] = (q - 10 * r) + '0';
George Spelvine49317d2012-10-04 17:12:27 -0700253 q = (r * 0xcd) >> 11;
George Spelvin23591722012-10-04 17:12:29 -0700254 buf[1] = (r - 10 * q) + '0';
Denys Vlasenko133fd9f2012-05-31 16:26:08 -0700255 r = (q * 0xcd) >> 11;
George Spelvin23591722012-10-04 17:12:29 -0700256 buf[2] = (q - 10 * r) + '0';
257 buf[3] = r + '0';
258}
259
260/*
261 * Call put_dec_full4 on x % 10000, return x / 10000.
262 * The approximation x/10000 == (x * 0x346DC5D7) >> 43
263 * holds for all x < 1,128,869,999. The largest value this
264 * helper will ever be asked to convert is 1,125,520,955.
265 * (d1 in the put_dec code, assuming n is all-ones).
266 */
267static
268unsigned put_dec_helper4(char *buf, unsigned x)
269{
270 uint32_t q = (x * (uint64_t)0x346DC5D7) >> 43;
271
272 put_dec_full4(buf, x - q * 10000);
273 return q;
Denys Vlasenko133fd9f2012-05-31 16:26:08 -0700274}
275
276/* Based on code by Douglas W. Jones found at
277 * <http://www.cs.uiowa.edu/~jones/bcd/decimal.html#sixtyfour>
278 * (with permission from the author).
279 * Performs no 64-bit division and hence should be fast on 32-bit machines.
280 */
281static
282char *put_dec(char *buf, unsigned long long n)
283{
284 uint32_t d3, d2, d1, q, h;
285
286 if (n < 100*1000*1000)
287 return put_dec_trunc8(buf, n);
288
289 d1 = ((uint32_t)n >> 16); /* implicit "& 0xffff" */
290 h = (n >> 32);
291 d2 = (h ) & 0xffff;
292 d3 = (h >> 16); /* implicit "& 0xffff" */
293
294 q = 656 * d3 + 7296 * d2 + 5536 * d1 + ((uint32_t)n & 0xffff);
George Spelvin23591722012-10-04 17:12:29 -0700295 q = put_dec_helper4(buf, q);
Denys Vlasenko133fd9f2012-05-31 16:26:08 -0700296
George Spelvin23591722012-10-04 17:12:29 -0700297 q += 7671 * d3 + 9496 * d2 + 6 * d1;
298 q = put_dec_helper4(buf+4, q);
Denys Vlasenko133fd9f2012-05-31 16:26:08 -0700299
George Spelvin23591722012-10-04 17:12:29 -0700300 q += 4749 * d3 + 42 * d2;
301 q = put_dec_helper4(buf+8, q);
Denys Vlasenko133fd9f2012-05-31 16:26:08 -0700302
George Spelvin23591722012-10-04 17:12:29 -0700303 q += 281 * d3;
304 buf += 12;
305 if (q)
306 buf = put_dec_trunc8(buf, q);
307 else while (buf[-1] == '0')
Denys Vlasenko133fd9f2012-05-31 16:26:08 -0700308 --buf;
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800309
Denis Vlasenko4277eed2007-07-15 23:41:56 -0700310 return buf;
311}
Denys Vlasenko133fd9f2012-05-31 16:26:08 -0700312
313#endif
Denis Vlasenko4277eed2007-07-15 23:41:56 -0700314
KAMEZAWA Hiroyuki1ac101a2012-03-23 15:02:54 -0700315/*
316 * Convert passed number to decimal string.
317 * Returns the length of string. On buffer overflow, returns 0.
318 *
319 * If speed is not important, use snprintf(). It's easy to read the code.
320 */
321int num_to_str(char *buf, int size, unsigned long long num)
322{
Denys Vlasenko133fd9f2012-05-31 16:26:08 -0700323 char tmp[sizeof(num) * 3];
KAMEZAWA Hiroyuki1ac101a2012-03-23 15:02:54 -0700324 int idx, len;
325
Denys Vlasenko133fd9f2012-05-31 16:26:08 -0700326 /* put_dec() may work incorrectly for num = 0 (generate "", not "0") */
327 if (num <= 9) {
328 tmp[0] = '0' + num;
329 len = 1;
330 } else {
331 len = put_dec(tmp, num) - tmp;
332 }
KAMEZAWA Hiroyuki1ac101a2012-03-23 15:02:54 -0700333
334 if (len > size)
335 return 0;
336 for (idx = 0; idx < len; ++idx)
337 buf[idx] = tmp[len - idx - 1];
Denys Vlasenko133fd9f2012-05-31 16:26:08 -0700338 return len;
KAMEZAWA Hiroyuki1ac101a2012-03-23 15:02:54 -0700339}
340
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341#define ZEROPAD 1 /* pad with zero */
342#define SIGN 2 /* unsigned/signed long */
343#define PLUS 4 /* show plus */
344#define SPACE 8 /* space if plus */
345#define LEFT 16 /* left justified */
Bjorn Helgaasb89dc5d2010-03-05 10:47:31 -0700346#define SMALL 32 /* use lowercase in hex (must be 32 == 0x20) */
347#define SPECIAL 64 /* prefix hex with "0x", octal with "0" */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100349enum format_type {
350 FORMAT_TYPE_NONE, /* Just a string part */
Vegard Nossumed681a92009-03-14 12:08:50 +0100351 FORMAT_TYPE_WIDTH,
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100352 FORMAT_TYPE_PRECISION,
353 FORMAT_TYPE_CHAR,
354 FORMAT_TYPE_STR,
355 FORMAT_TYPE_PTR,
356 FORMAT_TYPE_PERCENT_CHAR,
357 FORMAT_TYPE_INVALID,
358 FORMAT_TYPE_LONG_LONG,
359 FORMAT_TYPE_ULONG,
360 FORMAT_TYPE_LONG,
Zhaoleia4e94ef2009-03-27 17:07:05 +0800361 FORMAT_TYPE_UBYTE,
362 FORMAT_TYPE_BYTE,
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100363 FORMAT_TYPE_USHORT,
364 FORMAT_TYPE_SHORT,
365 FORMAT_TYPE_UINT,
366 FORMAT_TYPE_INT,
367 FORMAT_TYPE_NRCHARS,
368 FORMAT_TYPE_SIZE_T,
369 FORMAT_TYPE_PTRDIFF
370};
371
372struct printf_spec {
Joe Perches4e310fd2010-04-14 09:27:40 -0700373 u8 type; /* format_type enum */
Joe Perchesef0658f2010-03-06 17:10:14 -0800374 u8 flags; /* flags to number() */
Joe Perches4e310fd2010-04-14 09:27:40 -0700375 u8 base; /* number base, 8, 10 or 16 only */
376 u8 qualifier; /* number qualifier, one of 'hHlLtzZ' */
377 s16 field_width; /* width of output field */
378 s16 precision; /* # of digits/chars */
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100379};
380
Joe Perchescf3b4292010-05-24 14:33:16 -0700381static noinline_for_stack
382char *number(char *buf, char *end, unsigned long long num,
383 struct printf_spec spec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384{
Denys Vlasenko9b706ae2008-02-09 23:24:09 +0100385 /* we are called with base 8, 10 or 16, only, thus don't need "G..." */
386 static const char digits[16] = "0123456789ABCDEF"; /* "GHIJKLMNOPQRSTUVWXYZ"; */
387
388 char tmp[66];
389 char sign;
390 char locase;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100391 int need_pfx = ((spec.flags & SPECIAL) && spec.base != 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 int i;
Pierre Carrier7c203422012-05-29 15:07:35 -0700393 bool is_zero = num == 0LL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
Denys Vlasenko9b706ae2008-02-09 23:24:09 +0100395 /* locase = 0 or 0x20. ORing digits or letters with 'locase'
396 * produces same digits or (maybe lowercased) letters */
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100397 locase = (spec.flags & SMALL);
398 if (spec.flags & LEFT)
399 spec.flags &= ~ZEROPAD;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 sign = 0;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100401 if (spec.flags & SIGN) {
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800402 if ((signed long long)num < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 sign = '-';
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800404 num = -(signed long long)num;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100405 spec.field_width--;
406 } else if (spec.flags & PLUS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 sign = '+';
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100408 spec.field_width--;
409 } else if (spec.flags & SPACE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 sign = ' ';
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100411 spec.field_width--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 }
413 }
Denis Vlasenkob39a7342007-07-15 23:41:54 -0700414 if (need_pfx) {
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100415 if (spec.base == 16)
Pierre Carrier7c203422012-05-29 15:07:35 -0700416 spec.field_width -= 2;
417 else if (!is_zero)
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100418 spec.field_width--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 }
Denis Vlasenkob39a7342007-07-15 23:41:54 -0700420
421 /* generate full string in tmp[], in reverse order */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 i = 0;
Denys Vlasenko133fd9f2012-05-31 16:26:08 -0700423 if (num < spec.base)
424 tmp[i++] = digits[num] | locase;
Denis Vlasenko4277eed2007-07-15 23:41:56 -0700425 /* Generic code, for any base:
426 else do {
Denys Vlasenko9b706ae2008-02-09 23:24:09 +0100427 tmp[i++] = (digits[do_div(num,base)] | locase);
Denis Vlasenko4277eed2007-07-15 23:41:56 -0700428 } while (num != 0);
429 */
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100430 else if (spec.base != 10) { /* 8 or 16 */
431 int mask = spec.base - 1;
Denis Vlasenkob39a7342007-07-15 23:41:54 -0700432 int shift = 3;
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800433
434 if (spec.base == 16)
435 shift = 4;
Denis Vlasenkob39a7342007-07-15 23:41:54 -0700436 do {
Denys Vlasenko9b706ae2008-02-09 23:24:09 +0100437 tmp[i++] = (digits[((unsigned char)num) & mask] | locase);
Denis Vlasenkob39a7342007-07-15 23:41:54 -0700438 num >>= shift;
439 } while (num);
Denis Vlasenko4277eed2007-07-15 23:41:56 -0700440 } else { /* base 10 */
441 i = put_dec(tmp, num) - tmp;
442 }
Denis Vlasenkob39a7342007-07-15 23:41:54 -0700443
444 /* printing 100 using %2d gives "100", not "00" */
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100445 if (i > spec.precision)
446 spec.precision = i;
Denis Vlasenkob39a7342007-07-15 23:41:54 -0700447 /* leading space padding */
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100448 spec.field_width -= spec.precision;
449 if (!(spec.flags & (ZEROPAD+LEFT))) {
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800450 while (--spec.field_width >= 0) {
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -0700451 if (buf < end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 *buf = ' ';
453 ++buf;
454 }
455 }
Denis Vlasenkob39a7342007-07-15 23:41:54 -0700456 /* sign */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 if (sign) {
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -0700458 if (buf < end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 *buf = sign;
460 ++buf;
461 }
Denis Vlasenkob39a7342007-07-15 23:41:54 -0700462 /* "0x" / "0" prefix */
463 if (need_pfx) {
Pierre Carrier7c203422012-05-29 15:07:35 -0700464 if (spec.base == 16 || !is_zero) {
465 if (buf < end)
466 *buf = '0';
467 ++buf;
468 }
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100469 if (spec.base == 16) {
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -0700470 if (buf < end)
Denys Vlasenko9b706ae2008-02-09 23:24:09 +0100471 *buf = ('X' | locase);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 ++buf;
473 }
474 }
Denis Vlasenkob39a7342007-07-15 23:41:54 -0700475 /* zero or space padding */
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100476 if (!(spec.flags & LEFT)) {
477 char c = (spec.flags & ZEROPAD) ? '0' : ' ';
478 while (--spec.field_width >= 0) {
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -0700479 if (buf < end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 *buf = c;
481 ++buf;
482 }
483 }
Denis Vlasenkob39a7342007-07-15 23:41:54 -0700484 /* hmm even more zero padding? */
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100485 while (i <= --spec.precision) {
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -0700486 if (buf < end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 *buf = '0';
488 ++buf;
489 }
Denis Vlasenkob39a7342007-07-15 23:41:54 -0700490 /* actual digits of result */
491 while (--i >= 0) {
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -0700492 if (buf < end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 *buf = tmp[i];
494 ++buf;
495 }
Denis Vlasenkob39a7342007-07-15 23:41:54 -0700496 /* trailing space padding */
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100497 while (--spec.field_width >= 0) {
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -0700498 if (buf < end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 *buf = ' ';
500 ++buf;
501 }
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800502
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 return buf;
504}
505
Joe Perchescf3b4292010-05-24 14:33:16 -0700506static noinline_for_stack
507char *string(char *buf, char *end, const char *s, struct printf_spec spec)
Linus Torvalds0f9bfa52008-07-06 16:06:25 -0700508{
509 int len, i;
510
511 if ((unsigned long)s < PAGE_SIZE)
André Goddard Rosa0f4f81d2009-12-14 18:00:55 -0800512 s = "(null)";
Linus Torvalds0f9bfa52008-07-06 16:06:25 -0700513
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100514 len = strnlen(s, spec.precision);
Linus Torvalds0f9bfa52008-07-06 16:06:25 -0700515
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100516 if (!(spec.flags & LEFT)) {
517 while (len < spec.field_width--) {
Linus Torvalds0f9bfa52008-07-06 16:06:25 -0700518 if (buf < end)
519 *buf = ' ';
520 ++buf;
521 }
522 }
523 for (i = 0; i < len; ++i) {
524 if (buf < end)
525 *buf = *s;
526 ++buf; ++s;
527 }
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100528 while (len < spec.field_width--) {
Linus Torvalds0f9bfa52008-07-06 16:06:25 -0700529 if (buf < end)
530 *buf = ' ';
531 ++buf;
532 }
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800533
Linus Torvalds0f9bfa52008-07-06 16:06:25 -0700534 return buf;
535}
536
Al Viro4b6ccca2013-09-03 12:00:44 -0400537static void widen(char *buf, char *end, unsigned len, unsigned spaces)
538{
539 size_t size;
540 if (buf >= end) /* nowhere to put anything */
541 return;
542 size = end - buf;
543 if (size <= spaces) {
544 memset(buf, ' ', size);
545 return;
546 }
547 if (len) {
548 if (len > size - spaces)
549 len = size - spaces;
550 memmove(buf + spaces, buf, len);
551 }
552 memset(buf, ' ', spaces);
553}
554
555static noinline_for_stack
556char *dentry_name(char *buf, char *end, const struct dentry *d, struct printf_spec spec,
557 const char *fmt)
558{
559 const char *array[4], *s;
560 const struct dentry *p;
561 int depth;
562 int i, n;
563
564 switch (fmt[1]) {
565 case '2': case '3': case '4':
566 depth = fmt[1] - '0';
567 break;
568 default:
569 depth = 1;
570 }
571
572 rcu_read_lock();
573 for (i = 0; i < depth; i++, d = p) {
574 p = ACCESS_ONCE(d->d_parent);
575 array[i] = ACCESS_ONCE(d->d_name.name);
576 if (p == d) {
577 if (i)
578 array[i] = "";
579 i++;
580 break;
581 }
582 }
583 s = array[--i];
584 for (n = 0; n != spec.precision; n++, buf++) {
585 char c = *s++;
586 if (!c) {
587 if (!i)
588 break;
589 c = '/';
590 s = array[--i];
591 }
592 if (buf < end)
593 *buf = c;
594 }
595 rcu_read_unlock();
596 if (n < spec.field_width) {
597 /* we want to pad the sucker */
598 unsigned spaces = spec.field_width - n;
599 if (!(spec.flags & LEFT)) {
600 widen(buf - n, end, n, spaces);
601 return buf + spaces;
602 }
603 while (spaces--) {
604 if (buf < end)
605 *buf = ' ';
606 ++buf;
607 }
608 }
609 return buf;
610}
611
Joe Perchescf3b4292010-05-24 14:33:16 -0700612static noinline_for_stack
613char *symbol_string(char *buf, char *end, void *ptr,
Joe Perchesb0d33c22012-12-12 10:18:50 -0800614 struct printf_spec spec, const char *fmt)
Linus Torvalds0fe1ef22008-07-06 16:43:12 -0700615{
Joe Perchesb0d33c22012-12-12 10:18:50 -0800616 unsigned long value;
Linus Torvalds0fe1ef22008-07-06 16:43:12 -0700617#ifdef CONFIG_KALLSYMS
618 char sym[KSYM_SYMBOL_LEN];
Joe Perchesb0d33c22012-12-12 10:18:50 -0800619#endif
620
621 if (fmt[1] == 'R')
622 ptr = __builtin_extract_return_addr(ptr);
623 value = (unsigned long)ptr;
624
625#ifdef CONFIG_KALLSYMS
626 if (*fmt == 'B')
Namhyung Kim0f77a8d2011-03-24 11:42:29 +0900627 sprint_backtrace(sym, value);
Joe Perchesb0d33c22012-12-12 10:18:50 -0800628 else if (*fmt != 'f' && *fmt != 's')
Frederic Weisbecker0c8b9462009-04-15 17:48:18 +0200629 sprint_symbol(sym, value);
630 else
Stephen Boyd4796dd22012-05-29 15:07:33 -0700631 sprint_symbol_no_offset(sym, value);
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800632
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100633 return string(buf, end, sym, spec);
Linus Torvalds0fe1ef22008-07-06 16:43:12 -0700634#else
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800635 spec.field_width = 2 * sizeof(void *);
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100636 spec.flags |= SPECIAL | SMALL | ZEROPAD;
637 spec.base = 16;
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800638
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100639 return number(buf, end, value, spec);
Linus Torvalds0fe1ef22008-07-06 16:43:12 -0700640#endif
641}
642
Joe Perchescf3b4292010-05-24 14:33:16 -0700643static noinline_for_stack
644char *resource_string(char *buf, char *end, struct resource *res,
645 struct printf_spec spec, const char *fmt)
Linus Torvalds332d2e72008-10-20 15:07:34 +1100646{
647#ifndef IO_RSRC_PRINTK_SIZE
Bjorn Helgaas28405372009-10-06 15:33:29 -0600648#define IO_RSRC_PRINTK_SIZE 6
Linus Torvalds332d2e72008-10-20 15:07:34 +1100649#endif
650
651#ifndef MEM_RSRC_PRINTK_SIZE
Bjorn Helgaas28405372009-10-06 15:33:29 -0600652#define MEM_RSRC_PRINTK_SIZE 10
Linus Torvalds332d2e72008-10-20 15:07:34 +1100653#endif
Bjorn Helgaas4da0b662010-03-05 10:47:37 -0700654 static const struct printf_spec io_spec = {
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100655 .base = 16,
Bjorn Helgaas4da0b662010-03-05 10:47:37 -0700656 .field_width = IO_RSRC_PRINTK_SIZE,
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100657 .precision = -1,
658 .flags = SPECIAL | SMALL | ZEROPAD,
659 };
Bjorn Helgaas4da0b662010-03-05 10:47:37 -0700660 static const struct printf_spec mem_spec = {
661 .base = 16,
662 .field_width = MEM_RSRC_PRINTK_SIZE,
663 .precision = -1,
664 .flags = SPECIAL | SMALL | ZEROPAD,
665 };
Bjorn Helgaas0f4050c2010-03-05 10:47:42 -0700666 static const struct printf_spec bus_spec = {
667 .base = 16,
668 .field_width = 2,
669 .precision = -1,
670 .flags = SMALL | ZEROPAD,
671 };
Bjorn Helgaas4da0b662010-03-05 10:47:37 -0700672 static const struct printf_spec dec_spec = {
Bjorn Helgaasc91d3372009-10-06 15:33:34 -0600673 .base = 10,
674 .precision = -1,
675 .flags = 0,
676 };
Bjorn Helgaas4da0b662010-03-05 10:47:37 -0700677 static const struct printf_spec str_spec = {
Bjorn Helgaasfd955412009-10-06 15:33:39 -0600678 .field_width = -1,
679 .precision = 10,
680 .flags = LEFT,
681 };
Bjorn Helgaas4da0b662010-03-05 10:47:37 -0700682 static const struct printf_spec flag_spec = {
Bjorn Helgaasfd955412009-10-06 15:33:39 -0600683 .base = 16,
684 .precision = -1,
685 .flags = SPECIAL | SMALL,
686 };
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600687
688 /* 32-bit res (sizeof==4): 10 chars in dec, 10 in hex ("0x" + 8)
689 * 64-bit res (sizeof==8): 20 chars in dec, 18 in hex ("0x" + 16) */
690#define RSRC_BUF_SIZE ((2 * sizeof(resource_size_t)) + 4)
691#define FLAG_BUF_SIZE (2 * sizeof(res->flags))
Bjorn Helgaas9d7cca02010-03-05 10:47:47 -0700692#define DECODED_BUF_SIZE sizeof("[mem - 64bit pref window disabled]")
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600693#define RAW_BUF_SIZE sizeof("[mem - flags 0x]")
694 char sym[max(2*RSRC_BUF_SIZE + DECODED_BUF_SIZE,
695 2*RSRC_BUF_SIZE + FLAG_BUF_SIZE + RAW_BUF_SIZE)];
696
Linus Torvalds332d2e72008-10-20 15:07:34 +1100697 char *p = sym, *pend = sym + sizeof(sym);
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600698 int decode = (fmt[0] == 'R') ? 1 : 0;
Bjorn Helgaas4da0b662010-03-05 10:47:37 -0700699 const struct printf_spec *specp;
Linus Torvalds332d2e72008-10-20 15:07:34 +1100700
701 *p++ = '[';
Bjorn Helgaas4da0b662010-03-05 10:47:37 -0700702 if (res->flags & IORESOURCE_IO) {
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600703 p = string(p, pend, "io ", str_spec);
Bjorn Helgaas4da0b662010-03-05 10:47:37 -0700704 specp = &io_spec;
705 } else if (res->flags & IORESOURCE_MEM) {
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600706 p = string(p, pend, "mem ", str_spec);
Bjorn Helgaas4da0b662010-03-05 10:47:37 -0700707 specp = &mem_spec;
708 } else if (res->flags & IORESOURCE_IRQ) {
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600709 p = string(p, pend, "irq ", str_spec);
Bjorn Helgaas4da0b662010-03-05 10:47:37 -0700710 specp = &dec_spec;
711 } else if (res->flags & IORESOURCE_DMA) {
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600712 p = string(p, pend, "dma ", str_spec);
Bjorn Helgaas4da0b662010-03-05 10:47:37 -0700713 specp = &dec_spec;
Bjorn Helgaas0f4050c2010-03-05 10:47:42 -0700714 } else if (res->flags & IORESOURCE_BUS) {
715 p = string(p, pend, "bus ", str_spec);
716 specp = &bus_spec;
Bjorn Helgaas4da0b662010-03-05 10:47:37 -0700717 } else {
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600718 p = string(p, pend, "??? ", str_spec);
Bjorn Helgaas4da0b662010-03-05 10:47:37 -0700719 specp = &mem_spec;
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600720 decode = 0;
Bjorn Helgaasfd955412009-10-06 15:33:39 -0600721 }
Bjorn Helgaas4da0b662010-03-05 10:47:37 -0700722 p = number(p, pend, res->start, *specp);
Bjorn Helgaasc91d3372009-10-06 15:33:34 -0600723 if (res->start != res->end) {
724 *p++ = '-';
Bjorn Helgaas4da0b662010-03-05 10:47:37 -0700725 p = number(p, pend, res->end, *specp);
Bjorn Helgaasc91d3372009-10-06 15:33:34 -0600726 }
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600727 if (decode) {
Bjorn Helgaasfd955412009-10-06 15:33:39 -0600728 if (res->flags & IORESOURCE_MEM_64)
729 p = string(p, pend, " 64bit", str_spec);
730 if (res->flags & IORESOURCE_PREFETCH)
731 p = string(p, pend, " pref", str_spec);
Bjorn Helgaas9d7cca02010-03-05 10:47:47 -0700732 if (res->flags & IORESOURCE_WINDOW)
733 p = string(p, pend, " window", str_spec);
Bjorn Helgaasfd955412009-10-06 15:33:39 -0600734 if (res->flags & IORESOURCE_DISABLED)
735 p = string(p, pend, " disabled", str_spec);
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600736 } else {
737 p = string(p, pend, " flags ", str_spec);
738 p = number(p, pend, res->flags, flag_spec);
Bjorn Helgaasfd955412009-10-06 15:33:39 -0600739 }
Linus Torvalds332d2e72008-10-20 15:07:34 +1100740 *p++ = ']';
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600741 *p = '\0';
Linus Torvalds332d2e72008-10-20 15:07:34 +1100742
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100743 return string(buf, end, sym, spec);
Linus Torvalds332d2e72008-10-20 15:07:34 +1100744}
745
Joe Perchescf3b4292010-05-24 14:33:16 -0700746static noinline_for_stack
Andy Shevchenko31550a12012-07-30 14:40:27 -0700747char *hex_string(char *buf, char *end, u8 *addr, struct printf_spec spec,
748 const char *fmt)
749{
Steven Rostedt360603a2013-05-28 15:47:39 -0400750 int i, len = 1; /* if we pass '%ph[CDN]', field width remains
Andy Shevchenko31550a12012-07-30 14:40:27 -0700751 negative value, fallback to the default */
752 char separator;
753
754 if (spec.field_width == 0)
755 /* nothing to print */
756 return buf;
757
758 if (ZERO_OR_NULL_PTR(addr))
759 /* NULL pointer */
760 return string(buf, end, NULL, spec);
761
762 switch (fmt[1]) {
763 case 'C':
764 separator = ':';
765 break;
766 case 'D':
767 separator = '-';
768 break;
769 case 'N':
770 separator = 0;
771 break;
772 default:
773 separator = ' ';
774 break;
775 }
776
777 if (spec.field_width > 0)
778 len = min_t(int, spec.field_width, 64);
779
780 for (i = 0; i < len && buf < end - 1; i++) {
781 buf = hex_byte_pack(buf, addr[i]);
782
783 if (buf < end && separator && i != len - 1)
784 *buf++ = separator;
785 }
786
787 return buf;
788}
789
790static noinline_for_stack
Joe Perchescf3b4292010-05-24 14:33:16 -0700791char *mac_address_string(char *buf, char *end, u8 *addr,
792 struct printf_spec spec, const char *fmt)
Harvey Harrisondd45c9c2008-10-27 15:47:12 -0700793{
Joe Perches8a27f7c2009-08-17 12:29:44 +0000794 char mac_addr[sizeof("xx:xx:xx:xx:xx:xx")];
Harvey Harrisondd45c9c2008-10-27 15:47:12 -0700795 char *p = mac_addr;
796 int i;
Joe Perchesbc7259a2010-01-07 11:43:50 +0000797 char separator;
Andrei Emeltchenko76597ff92012-07-30 14:40:23 -0700798 bool reversed = false;
Joe Perchesbc7259a2010-01-07 11:43:50 +0000799
Andrei Emeltchenko76597ff92012-07-30 14:40:23 -0700800 switch (fmt[1]) {
801 case 'F':
Joe Perchesbc7259a2010-01-07 11:43:50 +0000802 separator = '-';
Andrei Emeltchenko76597ff92012-07-30 14:40:23 -0700803 break;
804
805 case 'R':
806 reversed = true;
807 /* fall through */
808
809 default:
Joe Perchesbc7259a2010-01-07 11:43:50 +0000810 separator = ':';
Andrei Emeltchenko76597ff92012-07-30 14:40:23 -0700811 break;
Joe Perchesbc7259a2010-01-07 11:43:50 +0000812 }
Harvey Harrisondd45c9c2008-10-27 15:47:12 -0700813
814 for (i = 0; i < 6; i++) {
Andrei Emeltchenko76597ff92012-07-30 14:40:23 -0700815 if (reversed)
816 p = hex_byte_pack(p, addr[5 - i]);
817 else
818 p = hex_byte_pack(p, addr[i]);
819
Joe Perches8a27f7c2009-08-17 12:29:44 +0000820 if (fmt[0] == 'M' && i != 5)
Joe Perchesbc7259a2010-01-07 11:43:50 +0000821 *p++ = separator;
Harvey Harrisondd45c9c2008-10-27 15:47:12 -0700822 }
823 *p = '\0';
824
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100825 return string(buf, end, mac_addr, spec);
Harvey Harrisondd45c9c2008-10-27 15:47:12 -0700826}
827
Joe Perchescf3b4292010-05-24 14:33:16 -0700828static noinline_for_stack
829char *ip4_string(char *p, const u8 *addr, const char *fmt)
Harvey Harrison689afa72008-10-28 16:04:44 -0700830{
Harvey Harrison689afa72008-10-28 16:04:44 -0700831 int i;
Joe Perches0159f242010-01-13 20:23:30 -0800832 bool leading_zeros = (fmt[0] == 'i');
833 int index;
834 int step;
Harvey Harrison689afa72008-10-28 16:04:44 -0700835
Joe Perches0159f242010-01-13 20:23:30 -0800836 switch (fmt[2]) {
837 case 'h':
838#ifdef __BIG_ENDIAN
839 index = 0;
840 step = 1;
841#else
842 index = 3;
843 step = -1;
844#endif
845 break;
846 case 'l':
847 index = 3;
848 step = -1;
849 break;
850 case 'n':
851 case 'b':
852 default:
853 index = 0;
854 step = 1;
855 break;
856 }
Joe Perches8a27f7c2009-08-17 12:29:44 +0000857 for (i = 0; i < 4; i++) {
858 char temp[3]; /* hold each IP quad in reverse order */
Denys Vlasenko133fd9f2012-05-31 16:26:08 -0700859 int digits = put_dec_trunc8(temp, addr[index]) - temp;
Joe Perches8a27f7c2009-08-17 12:29:44 +0000860 if (leading_zeros) {
861 if (digits < 3)
862 *p++ = '0';
863 if (digits < 2)
864 *p++ = '0';
865 }
866 /* reverse the digits in the quad */
867 while (digits--)
868 *p++ = temp[digits];
869 if (i < 3)
870 *p++ = '.';
Joe Perches0159f242010-01-13 20:23:30 -0800871 index += step;
Joe Perches8a27f7c2009-08-17 12:29:44 +0000872 }
Joe Perches8a27f7c2009-08-17 12:29:44 +0000873 *p = '\0';
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800874
Joe Perches8a27f7c2009-08-17 12:29:44 +0000875 return p;
876}
877
Joe Perchescf3b4292010-05-24 14:33:16 -0700878static noinline_for_stack
879char *ip6_compressed_string(char *p, const char *addr)
Joe Perches8a27f7c2009-08-17 12:29:44 +0000880{
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800881 int i, j, range;
Joe Perches8a27f7c2009-08-17 12:29:44 +0000882 unsigned char zerolength[8];
883 int longest = 1;
884 int colonpos = -1;
885 u16 word;
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800886 u8 hi, lo;
Joe Perches8a27f7c2009-08-17 12:29:44 +0000887 bool needcolon = false;
Joe Percheseb78cd22009-09-18 13:04:06 +0000888 bool useIPv4;
889 struct in6_addr in6;
890
891 memcpy(&in6, addr, sizeof(struct in6_addr));
892
893 useIPv4 = ipv6_addr_v4mapped(&in6) || ipv6_addr_is_isatap(&in6);
Joe Perches8a27f7c2009-08-17 12:29:44 +0000894
895 memset(zerolength, 0, sizeof(zerolength));
896
897 if (useIPv4)
898 range = 6;
899 else
900 range = 8;
901
902 /* find position of longest 0 run */
903 for (i = 0; i < range; i++) {
904 for (j = i; j < range; j++) {
Joe Percheseb78cd22009-09-18 13:04:06 +0000905 if (in6.s6_addr16[j] != 0)
Joe Perches8a27f7c2009-08-17 12:29:44 +0000906 break;
907 zerolength[i]++;
908 }
909 }
910 for (i = 0; i < range; i++) {
911 if (zerolength[i] > longest) {
912 longest = zerolength[i];
913 colonpos = i;
914 }
915 }
Joe Perches29cf5192011-06-09 11:23:37 -0700916 if (longest == 1) /* don't compress a single 0 */
917 colonpos = -1;
Joe Perches8a27f7c2009-08-17 12:29:44 +0000918
919 /* emit address */
920 for (i = 0; i < range; i++) {
921 if (i == colonpos) {
922 if (needcolon || i == 0)
923 *p++ = ':';
924 *p++ = ':';
925 needcolon = false;
926 i += longest - 1;
927 continue;
928 }
929 if (needcolon) {
930 *p++ = ':';
931 needcolon = false;
932 }
933 /* hex u16 without leading 0s */
Joe Percheseb78cd22009-09-18 13:04:06 +0000934 word = ntohs(in6.s6_addr16[i]);
Joe Perches8a27f7c2009-08-17 12:29:44 +0000935 hi = word >> 8;
936 lo = word & 0xff;
937 if (hi) {
938 if (hi > 0x0f)
Andy Shevchenko55036ba2011-10-31 17:12:41 -0700939 p = hex_byte_pack(p, hi);
Joe Perches8a27f7c2009-08-17 12:29:44 +0000940 else
941 *p++ = hex_asc_lo(hi);
Andy Shevchenko55036ba2011-10-31 17:12:41 -0700942 p = hex_byte_pack(p, lo);
Joe Perches8a27f7c2009-08-17 12:29:44 +0000943 }
André Goddard Rosab5ff9922009-12-14 18:00:59 -0800944 else if (lo > 0x0f)
Andy Shevchenko55036ba2011-10-31 17:12:41 -0700945 p = hex_byte_pack(p, lo);
Joe Perches8a27f7c2009-08-17 12:29:44 +0000946 else
947 *p++ = hex_asc_lo(lo);
948 needcolon = true;
949 }
950
951 if (useIPv4) {
952 if (needcolon)
953 *p++ = ':';
Joe Perches0159f242010-01-13 20:23:30 -0800954 p = ip4_string(p, &in6.s6_addr[12], "I4");
Joe Perches8a27f7c2009-08-17 12:29:44 +0000955 }
Joe Perches8a27f7c2009-08-17 12:29:44 +0000956 *p = '\0';
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800957
Joe Perches8a27f7c2009-08-17 12:29:44 +0000958 return p;
959}
960
Joe Perchescf3b4292010-05-24 14:33:16 -0700961static noinline_for_stack
962char *ip6_string(char *p, const char *addr, const char *fmt)
Joe Perches8a27f7c2009-08-17 12:29:44 +0000963{
964 int i;
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800965
Harvey Harrison689afa72008-10-28 16:04:44 -0700966 for (i = 0; i < 8; i++) {
Andy Shevchenko55036ba2011-10-31 17:12:41 -0700967 p = hex_byte_pack(p, *addr++);
968 p = hex_byte_pack(p, *addr++);
Joe Perches8a27f7c2009-08-17 12:29:44 +0000969 if (fmt[0] == 'I' && i != 7)
Harvey Harrison689afa72008-10-28 16:04:44 -0700970 *p++ = ':';
971 }
972 *p = '\0';
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800973
Joe Perches8a27f7c2009-08-17 12:29:44 +0000974 return p;
975}
976
Joe Perchescf3b4292010-05-24 14:33:16 -0700977static noinline_for_stack
978char *ip6_addr_string(char *buf, char *end, const u8 *addr,
979 struct printf_spec spec, const char *fmt)
Joe Perches8a27f7c2009-08-17 12:29:44 +0000980{
981 char ip6_addr[sizeof("xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:255.255.255.255")];
982
983 if (fmt[0] == 'I' && fmt[2] == 'c')
Joe Percheseb78cd22009-09-18 13:04:06 +0000984 ip6_compressed_string(ip6_addr, addr);
Joe Perches8a27f7c2009-08-17 12:29:44 +0000985 else
Joe Percheseb78cd22009-09-18 13:04:06 +0000986 ip6_string(ip6_addr, addr, fmt);
Harvey Harrison689afa72008-10-28 16:04:44 -0700987
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100988 return string(buf, end, ip6_addr, spec);
Harvey Harrison689afa72008-10-28 16:04:44 -0700989}
990
Joe Perchescf3b4292010-05-24 14:33:16 -0700991static noinline_for_stack
992char *ip4_addr_string(char *buf, char *end, const u8 *addr,
993 struct printf_spec spec, const char *fmt)
Harvey Harrison4aa99602008-10-29 12:49:58 -0700994{
Joe Perches8a27f7c2009-08-17 12:29:44 +0000995 char ip4_addr[sizeof("255.255.255.255")];
Harvey Harrison4aa99602008-10-29 12:49:58 -0700996
Joe Perches0159f242010-01-13 20:23:30 -0800997 ip4_string(ip4_addr, addr, fmt);
Harvey Harrison4aa99602008-10-29 12:49:58 -0700998
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +0100999 return string(buf, end, ip4_addr, spec);
Harvey Harrison4aa99602008-10-29 12:49:58 -07001000}
1001
Joe Perchescf3b4292010-05-24 14:33:16 -07001002static noinline_for_stack
Daniel Borkmann10679642013-06-28 19:49:39 +02001003char *ip6_addr_string_sa(char *buf, char *end, const struct sockaddr_in6 *sa,
1004 struct printf_spec spec, const char *fmt)
1005{
1006 bool have_p = false, have_s = false, have_f = false, have_c = false;
1007 char ip6_addr[sizeof("[xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:255.255.255.255]") +
1008 sizeof(":12345") + sizeof("/123456789") +
1009 sizeof("%1234567890")];
1010 char *p = ip6_addr, *pend = ip6_addr + sizeof(ip6_addr);
1011 const u8 *addr = (const u8 *) &sa->sin6_addr;
1012 char fmt6[2] = { fmt[0], '6' };
1013 u8 off = 0;
1014
1015 fmt++;
1016 while (isalpha(*++fmt)) {
1017 switch (*fmt) {
1018 case 'p':
1019 have_p = true;
1020 break;
1021 case 'f':
1022 have_f = true;
1023 break;
1024 case 's':
1025 have_s = true;
1026 break;
1027 case 'c':
1028 have_c = true;
1029 break;
1030 }
1031 }
1032
1033 if (have_p || have_s || have_f) {
1034 *p = '[';
1035 off = 1;
1036 }
1037
1038 if (fmt6[0] == 'I' && have_c)
1039 p = ip6_compressed_string(ip6_addr + off, addr);
1040 else
1041 p = ip6_string(ip6_addr + off, addr, fmt6);
1042
1043 if (have_p || have_s || have_f)
1044 *p++ = ']';
1045
1046 if (have_p) {
1047 *p++ = ':';
1048 p = number(p, pend, ntohs(sa->sin6_port), spec);
1049 }
1050 if (have_f) {
1051 *p++ = '/';
1052 p = number(p, pend, ntohl(sa->sin6_flowinfo &
1053 IPV6_FLOWINFO_MASK), spec);
1054 }
1055 if (have_s) {
1056 *p++ = '%';
1057 p = number(p, pend, sa->sin6_scope_id, spec);
1058 }
1059 *p = '\0';
1060
1061 return string(buf, end, ip6_addr, spec);
1062}
1063
1064static noinline_for_stack
1065char *ip4_addr_string_sa(char *buf, char *end, const struct sockaddr_in *sa,
1066 struct printf_spec spec, const char *fmt)
1067{
1068 bool have_p = false;
1069 char *p, ip4_addr[sizeof("255.255.255.255") + sizeof(":12345")];
1070 char *pend = ip4_addr + sizeof(ip4_addr);
1071 const u8 *addr = (const u8 *) &sa->sin_addr.s_addr;
1072 char fmt4[3] = { fmt[0], '4', 0 };
1073
1074 fmt++;
1075 while (isalpha(*++fmt)) {
1076 switch (*fmt) {
1077 case 'p':
1078 have_p = true;
1079 break;
1080 case 'h':
1081 case 'l':
1082 case 'n':
1083 case 'b':
1084 fmt4[2] = *fmt;
1085 break;
1086 }
1087 }
1088
1089 p = ip4_string(ip4_addr, addr, fmt4);
1090 if (have_p) {
1091 *p++ = ':';
1092 p = number(p, pend, ntohs(sa->sin_port), spec);
1093 }
1094 *p = '\0';
1095
1096 return string(buf, end, ip4_addr, spec);
1097}
1098
1099static noinline_for_stack
Joe Perchescf3b4292010-05-24 14:33:16 -07001100char *uuid_string(char *buf, char *end, const u8 *addr,
1101 struct printf_spec spec, const char *fmt)
Joe Perches9ac6e442009-12-14 18:01:09 -08001102{
1103 char uuid[sizeof("xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx")];
1104 char *p = uuid;
1105 int i;
1106 static const u8 be[16] = {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15};
1107 static const u8 le[16] = {3,2,1,0,5,4,7,6,8,9,10,11,12,13,14,15};
1108 const u8 *index = be;
1109 bool uc = false;
1110
1111 switch (*(++fmt)) {
1112 case 'L':
1113 uc = true; /* fall-through */
1114 case 'l':
1115 index = le;
1116 break;
1117 case 'B':
1118 uc = true;
1119 break;
1120 }
1121
1122 for (i = 0; i < 16; i++) {
Andy Shevchenko55036ba2011-10-31 17:12:41 -07001123 p = hex_byte_pack(p, addr[index[i]]);
Joe Perches9ac6e442009-12-14 18:01:09 -08001124 switch (i) {
1125 case 3:
1126 case 5:
1127 case 7:
1128 case 9:
1129 *p++ = '-';
1130 break;
1131 }
1132 }
1133
1134 *p = 0;
1135
1136 if (uc) {
1137 p = uuid;
1138 do {
1139 *p = toupper(*p);
1140 } while (*(++p));
1141 }
1142
1143 return string(buf, end, uuid, spec);
1144}
1145
Michał Mirosławc8f44af2011-11-15 15:29:55 +00001146static
1147char *netdev_feature_string(char *buf, char *end, const u8 *addr,
1148 struct printf_spec spec)
1149{
1150 spec.flags |= SPECIAL | SMALL | ZEROPAD;
1151 if (spec.field_width == -1)
1152 spec.field_width = 2 + 2 * sizeof(netdev_features_t);
1153 spec.base = 16;
1154
1155 return number(buf, end, *(const netdev_features_t *)addr, spec);
1156}
1157
Ingo Molnar411f05f2011-05-12 23:00:28 +02001158int kptr_restrict __read_mostly;
Dan Rosenberg455cd5a2011-01-12 16:59:41 -08001159
Linus Torvalds4d8a7432008-07-06 16:24:57 -07001160/*
1161 * Show a '%p' thing. A kernel extension is that the '%p' is followed
1162 * by an extra set of alphanumeric characters that are extended format
1163 * specifiers.
1164 *
Linus Torvalds332d2e72008-10-20 15:07:34 +11001165 * Right now we handle:
Linus Torvalds0fe1ef22008-07-06 16:43:12 -07001166 *
Frederic Weisbecker0c8b9462009-04-15 17:48:18 +02001167 * - 'F' For symbolic function descriptor pointers with offset
1168 * - 'f' For simple symbolic function names without offset
Steven Rostedt0efb4d22009-09-17 09:27:29 -04001169 * - 'S' For symbolic direct pointers with offset
1170 * - 's' For symbolic direct pointers without offset
Joe Perchesb0d33c22012-12-12 10:18:50 -08001171 * - '[FfSs]R' as above with __builtin_extract_return_addr() translation
Namhyung Kim0f77a8d2011-03-24 11:42:29 +09001172 * - 'B' For backtraced symbolic direct pointers with offset
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -06001173 * - 'R' For decoded struct resource, e.g., [mem 0x0-0x1f 64bit pref]
1174 * - 'r' For raw struct resource, e.g., [mem 0x0-0x1f flags 0x201]
Harvey Harrisondd45c9c2008-10-27 15:47:12 -07001175 * - 'M' For a 6-byte MAC address, it prints the address in the
1176 * usual colon-separated hex notation
Joe Perches8a27f7c2009-08-17 12:29:44 +00001177 * - 'm' For a 6-byte MAC address, it prints the hex address without colons
Joe Perchesbc7259a2010-01-07 11:43:50 +00001178 * - 'MF' For a 6-byte MAC FDDI address, it prints the address
Joe Perchesc8e00062010-01-11 00:44:14 -08001179 * with a dash-separated hex notation
Andy Shevchenko7c591542012-10-04 17:12:33 -07001180 * - '[mM]R' For a 6-byte MAC address, Reverse order (Bluetooth)
Joe Perches8a27f7c2009-08-17 12:29:44 +00001181 * - 'I' [46] for IPv4/IPv6 addresses printed in the usual way
1182 * IPv4 uses dot-separated decimal without leading 0's (1.2.3.4)
1183 * IPv6 uses colon separated network-order 16 bit hex with leading 0's
Daniel Borkmann10679642013-06-28 19:49:39 +02001184 * [S][pfs]
1185 * Generic IPv4/IPv6 address (struct sockaddr *) that falls back to
1186 * [4] or [6] and is able to print port [p], flowinfo [f], scope [s]
Joe Perches8a27f7c2009-08-17 12:29:44 +00001187 * - 'i' [46] for 'raw' IPv4/IPv6 addresses
1188 * IPv6 omits the colons (01020304...0f)
1189 * IPv4 uses dot-separated decimal with leading 0's (010.123.045.006)
Daniel Borkmann10679642013-06-28 19:49:39 +02001190 * [S][pfs]
1191 * Generic IPv4/IPv6 address (struct sockaddr *) that falls back to
1192 * [4] or [6] and is able to print port [p], flowinfo [f], scope [s]
1193 * - '[Ii][4S][hnbl]' IPv4 addresses in host, network, big or little endian order
1194 * - 'I[6S]c' for IPv6 addresses printed as specified by
Joe Perches29cf5192011-06-09 11:23:37 -07001195 * http://tools.ietf.org/html/rfc5952
Joe Perches9ac6e442009-12-14 18:01:09 -08001196 * - 'U' For a 16 byte UUID/GUID, it prints the UUID/GUID in the form
1197 * "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
1198 * Options for %pU are:
1199 * b big endian lower case hex (default)
1200 * B big endian UPPER case hex
1201 * l little endian lower case hex
1202 * L little endian UPPER case hex
1203 * big endian output byte order is:
1204 * [0][1][2][3]-[4][5]-[6][7]-[8][9]-[10][11][12][13][14][15]
1205 * little endian output byte order is:
1206 * [3][2][1][0]-[5][4]-[7][6]-[8][9]-[10][11][12][13][14][15]
Joe Perches7db6f5f2010-06-27 01:02:33 +00001207 * - 'V' For a struct va_format which contains a format string * and va_list *,
1208 * call vsnprintf(->format, *->va_list).
1209 * Implements a "recursive vsnprintf".
1210 * Do not use this feature without some mechanism to verify the
1211 * correctness of the format string and va_list arguments.
Dan Rosenberg455cd5a2011-01-12 16:59:41 -08001212 * - 'K' For a kernel pointer that should be hidden from unprivileged users
Michał Mirosławc8f44af2011-11-15 15:29:55 +00001213 * - 'NF' For a netdev_features_t
Andy Shevchenko31550a12012-07-30 14:40:27 -07001214 * - 'h[CDN]' For a variable-length buffer, it prints it as a hex string with
1215 * a certain separator (' ' by default):
1216 * C colon
1217 * D dash
1218 * N no separator
1219 * The maximum supported length is 64 bytes of the input. Consider
1220 * to use print_hex_dump() for the larger input.
Stepan Moskovchenko7d799212013-02-21 16:43:09 -08001221 * - 'a' For a phys_addr_t type and its derivative types (passed by reference)
Joe Perches9ac6e442009-12-14 18:01:09 -08001222 *
Linus Torvalds332d2e72008-10-20 15:07:34 +11001223 * Note: The difference between 'S' and 'F' is that on ia64 and ppc64
1224 * function pointers are really function descriptors, which contain a
1225 * pointer to the real address.
Linus Torvalds4d8a7432008-07-06 16:24:57 -07001226 */
Joe Perchescf3b4292010-05-24 14:33:16 -07001227static noinline_for_stack
1228char *pointer(const char *fmt, char *buf, char *end, void *ptr,
1229 struct printf_spec spec)
Linus Torvalds78a8bf62008-07-06 16:16:15 -07001230{
Grant Likely725fe002012-05-31 16:26:08 -07001231 int default_width = 2 * sizeof(void *) + (spec.flags & SPECIAL ? 2 : 0);
1232
Kees Cook9f36e2c2011-03-22 16:34:22 -07001233 if (!ptr && *fmt != 'K') {
Joe Perches5e057982010-10-26 14:22:50 -07001234 /*
1235 * Print (null) with the same width as a pointer so it makes
1236 * tabular output look nice.
1237 */
1238 if (spec.field_width == -1)
Grant Likely725fe002012-05-31 16:26:08 -07001239 spec.field_width = default_width;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001240 return string(buf, end, "(null)", spec);
Joe Perches5e057982010-10-26 14:22:50 -07001241 }
Linus Torvaldsd97106a2009-01-03 11:46:17 -08001242
Linus Torvalds0fe1ef22008-07-06 16:43:12 -07001243 switch (*fmt) {
1244 case 'F':
Frederic Weisbecker0c8b9462009-04-15 17:48:18 +02001245 case 'f':
Linus Torvalds0fe1ef22008-07-06 16:43:12 -07001246 ptr = dereference_function_descriptor(ptr);
1247 /* Fallthrough */
1248 case 'S':
Joe Perches9ac6e442009-12-14 18:01:09 -08001249 case 's':
Namhyung Kim0f77a8d2011-03-24 11:42:29 +09001250 case 'B':
Joe Perchesb0d33c22012-12-12 10:18:50 -08001251 return symbol_string(buf, end, ptr, spec, fmt);
Linus Torvalds332d2e72008-10-20 15:07:34 +11001252 case 'R':
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -06001253 case 'r':
Bjorn Helgaasfd955412009-10-06 15:33:39 -06001254 return resource_string(buf, end, ptr, spec, fmt);
Andy Shevchenko31550a12012-07-30 14:40:27 -07001255 case 'h':
1256 return hex_string(buf, end, ptr, spec, fmt);
Joe Perches8a27f7c2009-08-17 12:29:44 +00001257 case 'M': /* Colon separated: 00:01:02:03:04:05 */
1258 case 'm': /* Contiguous: 000102030405 */
Andrei Emeltchenko76597ff92012-07-30 14:40:23 -07001259 /* [mM]F (FDDI) */
1260 /* [mM]R (Reverse order; Bluetooth) */
Joe Perches8a27f7c2009-08-17 12:29:44 +00001261 return mac_address_string(buf, end, ptr, spec, fmt);
1262 case 'I': /* Formatted IP supported
1263 * 4: 1.2.3.4
1264 * 6: 0001:0203:...:0708
1265 * 6c: 1::708 or 1::1.2.3.4
1266 */
1267 case 'i': /* Contiguous:
1268 * 4: 001.002.003.004
1269 * 6: 000102...0f
1270 */
1271 switch (fmt[1]) {
1272 case '6':
1273 return ip6_addr_string(buf, end, ptr, spec, fmt);
1274 case '4':
1275 return ip4_addr_string(buf, end, ptr, spec, fmt);
Daniel Borkmann10679642013-06-28 19:49:39 +02001276 case 'S': {
1277 const union {
1278 struct sockaddr raw;
1279 struct sockaddr_in v4;
1280 struct sockaddr_in6 v6;
1281 } *sa = ptr;
1282
1283 switch (sa->raw.sa_family) {
1284 case AF_INET:
1285 return ip4_addr_string_sa(buf, end, &sa->v4, spec, fmt);
1286 case AF_INET6:
1287 return ip6_addr_string_sa(buf, end, &sa->v6, spec, fmt);
1288 default:
1289 return string(buf, end, "(invalid address)", spec);
1290 }}
Joe Perches8a27f7c2009-08-17 12:29:44 +00001291 }
Harvey Harrison4aa99602008-10-29 12:49:58 -07001292 break;
Joe Perches9ac6e442009-12-14 18:01:09 -08001293 case 'U':
1294 return uuid_string(buf, end, ptr, spec, fmt);
Joe Perches7db6f5f2010-06-27 01:02:33 +00001295 case 'V':
Jan Beulich5756b762012-03-05 16:49:24 +00001296 {
1297 va_list va;
1298
1299 va_copy(va, *((struct va_format *)ptr)->va);
1300 buf += vsnprintf(buf, end > buf ? end - buf : 0,
1301 ((struct va_format *)ptr)->fmt, va);
1302 va_end(va);
1303 return buf;
1304 }
Dan Rosenberg455cd5a2011-01-12 16:59:41 -08001305 case 'K':
1306 /*
1307 * %pK cannot be used in IRQ context because its test
1308 * for CAP_SYSLOG would be meaningless.
1309 */
Dan Rosenberg3715c5302012-07-30 14:40:26 -07001310 if (kptr_restrict && (in_irq() || in_serving_softirq() ||
1311 in_nmi())) {
Dan Rosenberg455cd5a2011-01-12 16:59:41 -08001312 if (spec.field_width == -1)
Grant Likely725fe002012-05-31 16:26:08 -07001313 spec.field_width = default_width;
Dan Rosenberg455cd5a2011-01-12 16:59:41 -08001314 return string(buf, end, "pK-error", spec);
Dan Rosenberg455cd5a2011-01-12 16:59:41 -08001315 }
Ryan Mallon312b4e22013-11-12 15:08:51 -08001316
1317 switch (kptr_restrict) {
1318 case 0:
1319 /* Always print %pK values */
1320 break;
1321 case 1: {
1322 /*
1323 * Only print the real pointer value if the current
1324 * process has CAP_SYSLOG and is running with the
1325 * same credentials it started with. This is because
1326 * access to files is checked at open() time, but %pK
1327 * checks permission at read() time. We don't want to
1328 * leak pointer values if a binary opens a file using
1329 * %pK and then elevates privileges before reading it.
1330 */
1331 const struct cred *cred = current_cred();
1332
1333 if (!has_capability_noaudit(current, CAP_SYSLOG) ||
1334 !uid_eq(cred->euid, cred->uid) ||
1335 !gid_eq(cred->egid, cred->gid))
1336 ptr = NULL;
1337 break;
1338 }
1339 case 2:
1340 default:
1341 /* Always print 0's for %pK */
Joe Perches26297602011-03-22 16:34:19 -07001342 ptr = NULL;
Ryan Mallon312b4e22013-11-12 15:08:51 -08001343 break;
1344 }
Joe Perches26297602011-03-22 16:34:19 -07001345 break;
Ryan Mallon312b4e22013-11-12 15:08:51 -08001346
Michał Mirosławc8f44af2011-11-15 15:29:55 +00001347 case 'N':
1348 switch (fmt[1]) {
1349 case 'F':
1350 return netdev_feature_string(buf, end, ptr, spec);
1351 }
1352 break;
Stepan Moskovchenko7d799212013-02-21 16:43:09 -08001353 case 'a':
1354 spec.flags |= SPECIAL | SMALL | ZEROPAD;
1355 spec.field_width = sizeof(phys_addr_t) * 2 + 2;
1356 spec.base = 16;
1357 return number(buf, end,
1358 (unsigned long long) *((phys_addr_t *)ptr), spec);
Al Viro4b6ccca2013-09-03 12:00:44 -04001359 case 'd':
1360 return dentry_name(buf, end, ptr, spec, fmt);
1361 case 'D':
1362 return dentry_name(buf, end,
1363 ((const struct file *)ptr)->f_path.dentry,
1364 spec, fmt);
Linus Torvalds0fe1ef22008-07-06 16:43:12 -07001365 }
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001366 spec.flags |= SMALL;
1367 if (spec.field_width == -1) {
Grant Likely725fe002012-05-31 16:26:08 -07001368 spec.field_width = default_width;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001369 spec.flags |= ZEROPAD;
Linus Torvalds78a8bf62008-07-06 16:16:15 -07001370 }
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001371 spec.base = 16;
1372
1373 return number(buf, end, (unsigned long) ptr, spec);
1374}
1375
1376/*
1377 * Helper function to decode printf style format.
1378 * Each call decode a token from the format and return the
1379 * number of characters read (or likely the delta where it wants
1380 * to go on the next call).
1381 * The decoded token is returned through the parameters
1382 *
1383 * 'h', 'l', or 'L' for integer fields
1384 * 'z' support added 23/7/1999 S.H.
1385 * 'z' changed to 'Z' --davidm 1/25/99
1386 * 't' added for ptrdiff_t
1387 *
1388 * @fmt: the format string
1389 * @type of the token returned
1390 * @flags: various flags such as +, -, # tokens..
1391 * @field_width: overwritten width
1392 * @base: base of the number (octal, hex, ...)
1393 * @precision: precision of a number
1394 * @qualifier: qualifier of a number (long, size_t, ...)
1395 */
Joe Perchescf3b4292010-05-24 14:33:16 -07001396static noinline_for_stack
1397int format_decode(const char *fmt, struct printf_spec *spec)
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001398{
1399 const char *start = fmt;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001400
1401 /* we finished early by reading the field width */
Vegard Nossumed681a92009-03-14 12:08:50 +01001402 if (spec->type == FORMAT_TYPE_WIDTH) {
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001403 if (spec->field_width < 0) {
1404 spec->field_width = -spec->field_width;
1405 spec->flags |= LEFT;
1406 }
1407 spec->type = FORMAT_TYPE_NONE;
1408 goto precision;
1409 }
1410
1411 /* we finished early by reading the precision */
1412 if (spec->type == FORMAT_TYPE_PRECISION) {
1413 if (spec->precision < 0)
1414 spec->precision = 0;
1415
1416 spec->type = FORMAT_TYPE_NONE;
1417 goto qualifier;
1418 }
1419
1420 /* By default */
1421 spec->type = FORMAT_TYPE_NONE;
1422
1423 for (; *fmt ; ++fmt) {
1424 if (*fmt == '%')
1425 break;
1426 }
1427
1428 /* Return the current non-format string */
1429 if (fmt != start || !*fmt)
1430 return fmt - start;
1431
1432 /* Process flags */
1433 spec->flags = 0;
1434
1435 while (1) { /* this also skips first '%' */
1436 bool found = true;
1437
1438 ++fmt;
1439
1440 switch (*fmt) {
1441 case '-': spec->flags |= LEFT; break;
1442 case '+': spec->flags |= PLUS; break;
1443 case ' ': spec->flags |= SPACE; break;
1444 case '#': spec->flags |= SPECIAL; break;
1445 case '0': spec->flags |= ZEROPAD; break;
1446 default: found = false;
1447 }
1448
1449 if (!found)
1450 break;
1451 }
1452
1453 /* get field width */
1454 spec->field_width = -1;
1455
1456 if (isdigit(*fmt))
1457 spec->field_width = skip_atoi(&fmt);
1458 else if (*fmt == '*') {
1459 /* it's the next argument */
Vegard Nossumed681a92009-03-14 12:08:50 +01001460 spec->type = FORMAT_TYPE_WIDTH;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001461 return ++fmt - start;
1462 }
1463
1464precision:
1465 /* get the precision */
1466 spec->precision = -1;
1467 if (*fmt == '.') {
1468 ++fmt;
1469 if (isdigit(*fmt)) {
1470 spec->precision = skip_atoi(&fmt);
1471 if (spec->precision < 0)
1472 spec->precision = 0;
1473 } else if (*fmt == '*') {
1474 /* it's the next argument */
Vegard Nossumadf26f82009-03-14 12:08:50 +01001475 spec->type = FORMAT_TYPE_PRECISION;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001476 return ++fmt - start;
1477 }
1478 }
1479
1480qualifier:
1481 /* get the conversion qualifier */
1482 spec->qualifier = -1;
Andy Shevchenko75fb8f22011-07-25 17:13:20 -07001483 if (*fmt == 'h' || _tolower(*fmt) == 'l' ||
1484 _tolower(*fmt) == 'z' || *fmt == 't') {
Zhaoleia4e94ef2009-03-27 17:07:05 +08001485 spec->qualifier = *fmt++;
1486 if (unlikely(spec->qualifier == *fmt)) {
1487 if (spec->qualifier == 'l') {
1488 spec->qualifier = 'L';
1489 ++fmt;
1490 } else if (spec->qualifier == 'h') {
1491 spec->qualifier = 'H';
1492 ++fmt;
1493 }
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001494 }
1495 }
1496
1497 /* default base */
1498 spec->base = 10;
1499 switch (*fmt) {
1500 case 'c':
1501 spec->type = FORMAT_TYPE_CHAR;
1502 return ++fmt - start;
1503
1504 case 's':
1505 spec->type = FORMAT_TYPE_STR;
1506 return ++fmt - start;
1507
1508 case 'p':
1509 spec->type = FORMAT_TYPE_PTR;
1510 return fmt - start;
1511 /* skip alnum */
1512
1513 case 'n':
1514 spec->type = FORMAT_TYPE_NRCHARS;
1515 return ++fmt - start;
1516
1517 case '%':
1518 spec->type = FORMAT_TYPE_PERCENT_CHAR;
1519 return ++fmt - start;
1520
1521 /* integer number formats - set up the flags and "break" */
1522 case 'o':
1523 spec->base = 8;
1524 break;
1525
1526 case 'x':
1527 spec->flags |= SMALL;
1528
1529 case 'X':
1530 spec->base = 16;
1531 break;
1532
1533 case 'd':
1534 case 'i':
Frederic Weisbecker39e874f2009-03-09 21:15:04 +01001535 spec->flags |= SIGN;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001536 case 'u':
1537 break;
1538
1539 default:
1540 spec->type = FORMAT_TYPE_INVALID;
1541 return fmt - start;
1542 }
1543
1544 if (spec->qualifier == 'L')
1545 spec->type = FORMAT_TYPE_LONG_LONG;
1546 else if (spec->qualifier == 'l') {
Frederic Weisbecker39e874f2009-03-09 21:15:04 +01001547 if (spec->flags & SIGN)
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001548 spec->type = FORMAT_TYPE_LONG;
1549 else
1550 spec->type = FORMAT_TYPE_ULONG;
Andy Shevchenko75fb8f22011-07-25 17:13:20 -07001551 } else if (_tolower(spec->qualifier) == 'z') {
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001552 spec->type = FORMAT_TYPE_SIZE_T;
1553 } else if (spec->qualifier == 't') {
1554 spec->type = FORMAT_TYPE_PTRDIFF;
Zhaoleia4e94ef2009-03-27 17:07:05 +08001555 } else if (spec->qualifier == 'H') {
1556 if (spec->flags & SIGN)
1557 spec->type = FORMAT_TYPE_BYTE;
1558 else
1559 spec->type = FORMAT_TYPE_UBYTE;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001560 } else if (spec->qualifier == 'h') {
Frederic Weisbecker39e874f2009-03-09 21:15:04 +01001561 if (spec->flags & SIGN)
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001562 spec->type = FORMAT_TYPE_SHORT;
1563 else
1564 spec->type = FORMAT_TYPE_USHORT;
1565 } else {
Frederic Weisbecker39e874f2009-03-09 21:15:04 +01001566 if (spec->flags & SIGN)
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001567 spec->type = FORMAT_TYPE_INT;
1568 else
1569 spec->type = FORMAT_TYPE_UINT;
1570 }
1571
1572 return ++fmt - start;
Linus Torvalds78a8bf62008-07-06 16:16:15 -07001573}
1574
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575/**
1576 * vsnprintf - Format a string and place it in a buffer
1577 * @buf: The buffer to place the result into
1578 * @size: The size of the buffer, including the trailing null space
1579 * @fmt: The format string to use
1580 * @args: Arguments for the format string
1581 *
Andi Kleen20036fd2008-10-15 22:02:02 -07001582 * This function follows C99 vsnprintf, but has some extensions:
Steven Rostedt91adcd22009-09-16 20:03:06 -04001583 * %pS output the name of a text symbol with offset
1584 * %ps output the name of a text symbol without offset
Frederic Weisbecker0c8b9462009-04-15 17:48:18 +02001585 * %pF output the name of a function pointer with its offset
1586 * %pf output the name of a function pointer without its offset
Namhyung Kim0f77a8d2011-03-24 11:42:29 +09001587 * %pB output the name of a backtrace symbol with its offset
Uwe Kleine-König8a795032009-12-17 15:27:12 -08001588 * %pR output the address range in a struct resource with decoded flags
1589 * %pr output the address range in a struct resource with raw flags
1590 * %pM output a 6-byte MAC address with colons
Andy Shevchenko7c591542012-10-04 17:12:33 -07001591 * %pMR output a 6-byte MAC address with colons in reversed order
1592 * %pMF output a 6-byte MAC address with dashes
Uwe Kleine-König8a795032009-12-17 15:27:12 -08001593 * %pm output a 6-byte MAC address without colons
Andy Shevchenko7c591542012-10-04 17:12:33 -07001594 * %pmR output a 6-byte MAC address without colons in reversed order
Uwe Kleine-König8a795032009-12-17 15:27:12 -08001595 * %pI4 print an IPv4 address without leading zeros
1596 * %pi4 print an IPv4 address with leading zeros
1597 * %pI6 print an IPv6 address with colons
1598 * %pi6 print an IPv6 address without colons
Jan Engelhardtf996f202011-07-14 18:48:56 +02001599 * %pI6c print an IPv6 address as specified by RFC 5952
Daniel Borkmann10679642013-06-28 19:49:39 +02001600 * %pIS depending on sa_family of 'struct sockaddr *' print IPv4/IPv6 address
1601 * %piS depending on sa_family of 'struct sockaddr *' print IPv4/IPv6 address
Uwe Kleine-König8a795032009-12-17 15:27:12 -08001602 * %pU[bBlL] print a UUID/GUID in big or little endian using lower or upper
1603 * case.
Andy Shevchenko31550a12012-07-30 14:40:27 -07001604 * %*ph[CDN] a variable-length hex string with a separator (supports up to 64
1605 * bytes of the input)
Steven Rostedt0efb4d22009-09-17 09:27:29 -04001606 * %n is ignored
Andi Kleen20036fd2008-10-15 22:02:02 -07001607 *
Andrew Morton80f548e2012-07-30 14:40:25 -07001608 * ** Please update Documentation/printk-formats.txt when making changes **
1609 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 * The return value is the number of characters which would
1611 * be generated for the given input, excluding the trailing
1612 * '\0', as per ISO C99. If you want to have the exact
1613 * number of characters written into @buf as return value
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08001614 * (not including the trailing '\0'), use vscnprintf(). If the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 * return is greater than or equal to @size, the resulting
1616 * string is truncated.
1617 *
Uwe Kleine-Königba1835e2011-04-06 07:49:04 -07001618 * If you're not already dealing with a va_list consider using snprintf().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 */
1620int vsnprintf(char *buf, size_t size, const char *fmt, va_list args)
1621{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 unsigned long long num;
André Goddard Rosad4be1512009-12-14 18:00:59 -08001623 char *str, *end;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001624 struct printf_spec spec = {0};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -07001626 /* Reject out-of-range values early. Large positive sizes are
1627 used for unknown buffer sizes. */
Marcin Slusarz2f30b1f92009-09-21 17:04:29 -07001628 if (WARN_ON_ONCE((int) size < 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630
1631 str = buf;
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -07001632 end = buf + size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -07001634 /* Make sure end is always >= buf */
1635 if (end < buf) {
1636 end = ((void *)-1);
1637 size = end - buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 }
1639
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001640 while (*fmt) {
1641 const char *old_fmt = fmt;
André Goddard Rosad4be1512009-12-14 18:00:59 -08001642 int read = format_decode(fmt, &spec);
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001643
1644 fmt += read;
1645
1646 switch (spec.type) {
1647 case FORMAT_TYPE_NONE: {
1648 int copy = read;
1649 if (str < end) {
1650 if (copy > end - str)
1651 copy = end - str;
1652 memcpy(str, old_fmt, copy);
1653 }
1654 str += read;
1655 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 }
1657
Vegard Nossumed681a92009-03-14 12:08:50 +01001658 case FORMAT_TYPE_WIDTH:
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001659 spec.field_width = va_arg(args, int);
1660 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001662 case FORMAT_TYPE_PRECISION:
1663 spec.precision = va_arg(args, int);
1664 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665
André Goddard Rosad4be1512009-12-14 18:00:59 -08001666 case FORMAT_TYPE_CHAR: {
1667 char c;
1668
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001669 if (!(spec.flags & LEFT)) {
1670 while (--spec.field_width > 0) {
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -07001671 if (str < end)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 *str = ' ';
1673 ++str;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001674
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 }
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001676 }
1677 c = (unsigned char) va_arg(args, int);
1678 if (str < end)
1679 *str = c;
1680 ++str;
1681 while (--spec.field_width > 0) {
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -07001682 if (str < end)
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001683 *str = ' ';
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 ++str;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001685 }
1686 break;
André Goddard Rosad4be1512009-12-14 18:00:59 -08001687 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001689 case FORMAT_TYPE_STR:
1690 str = string(str, end, va_arg(args, char *), spec);
1691 break;
1692
1693 case FORMAT_TYPE_PTR:
1694 str = pointer(fmt+1, str, end, va_arg(args, void *),
1695 spec);
1696 while (isalnum(*fmt))
1697 fmt++;
1698 break;
1699
1700 case FORMAT_TYPE_PERCENT_CHAR:
1701 if (str < end)
1702 *str = '%';
1703 ++str;
1704 break;
1705
1706 case FORMAT_TYPE_INVALID:
1707 if (str < end)
1708 *str = '%';
1709 ++str;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001710 break;
1711
1712 case FORMAT_TYPE_NRCHARS: {
Joe Perchesef0658f2010-03-06 17:10:14 -08001713 u8 qualifier = spec.qualifier;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001714
1715 if (qualifier == 'l') {
1716 long *ip = va_arg(args, long *);
1717 *ip = (str - buf);
Andy Shevchenko75fb8f22011-07-25 17:13:20 -07001718 } else if (_tolower(qualifier) == 'z') {
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001719 size_t *ip = va_arg(args, size_t *);
1720 *ip = (str - buf);
1721 } else {
1722 int *ip = va_arg(args, int *);
1723 *ip = (str - buf);
1724 }
1725 break;
1726 }
1727
1728 default:
1729 switch (spec.type) {
1730 case FORMAT_TYPE_LONG_LONG:
1731 num = va_arg(args, long long);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 break;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001733 case FORMAT_TYPE_ULONG:
1734 num = va_arg(args, unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 break;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001736 case FORMAT_TYPE_LONG:
1737 num = va_arg(args, long);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 break;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001739 case FORMAT_TYPE_SIZE_T:
Jason Gunthorpeef124962012-12-17 15:59:58 -08001740 if (spec.flags & SIGN)
1741 num = va_arg(args, ssize_t);
1742 else
1743 num = va_arg(args, size_t);
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001744 break;
1745 case FORMAT_TYPE_PTRDIFF:
1746 num = va_arg(args, ptrdiff_t);
1747 break;
Zhaoleia4e94ef2009-03-27 17:07:05 +08001748 case FORMAT_TYPE_UBYTE:
1749 num = (unsigned char) va_arg(args, int);
1750 break;
1751 case FORMAT_TYPE_BYTE:
1752 num = (signed char) va_arg(args, int);
1753 break;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001754 case FORMAT_TYPE_USHORT:
1755 num = (unsigned short) va_arg(args, int);
1756 break;
1757 case FORMAT_TYPE_SHORT:
1758 num = (short) va_arg(args, int);
1759 break;
Frederic Weisbecker39e874f2009-03-09 21:15:04 +01001760 case FORMAT_TYPE_INT:
1761 num = (int) va_arg(args, int);
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001762 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 default:
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001764 num = va_arg(args, unsigned int);
1765 }
1766
1767 str = number(str, end, num, spec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 }
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001770
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -07001771 if (size > 0) {
1772 if (str < end)
1773 *str = '\0';
1774 else
Linus Torvalds0a6047e2006-06-28 17:09:34 -07001775 end[-1] = '\0';
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -07001776 }
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001777
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -07001778 /* the trailing null byte doesn't count towards the total */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 return str-buf;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001780
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782EXPORT_SYMBOL(vsnprintf);
1783
1784/**
1785 * vscnprintf - Format a string and place it in a buffer
1786 * @buf: The buffer to place the result into
1787 * @size: The size of the buffer, including the trailing null space
1788 * @fmt: The format string to use
1789 * @args: Arguments for the format string
1790 *
1791 * The return value is the number of characters which have been written into
Anton Arapovb921c692011-01-12 16:59:49 -08001792 * the @buf not including the trailing '\0'. If @size is == 0 the function
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 * returns 0.
1794 *
Uwe Kleine-Königba1835e2011-04-06 07:49:04 -07001795 * If you're not already dealing with a va_list consider using scnprintf().
Andi Kleen20036fd2008-10-15 22:02:02 -07001796 *
1797 * See the vsnprintf() documentation for format string extensions over C99.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 */
1799int vscnprintf(char *buf, size_t size, const char *fmt, va_list args)
1800{
1801 int i;
1802
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001803 i = vsnprintf(buf, size, fmt, args);
1804
Anton Arapovb921c692011-01-12 16:59:49 -08001805 if (likely(i < size))
1806 return i;
1807 if (size != 0)
1808 return size - 1;
1809 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811EXPORT_SYMBOL(vscnprintf);
1812
1813/**
1814 * snprintf - Format a string and place it in a buffer
1815 * @buf: The buffer to place the result into
1816 * @size: The size of the buffer, including the trailing null space
1817 * @fmt: The format string to use
1818 * @...: Arguments for the format string
1819 *
1820 * The return value is the number of characters which would be
1821 * generated for the given input, excluding the trailing null,
1822 * as per ISO C99. If the return is greater than or equal to
1823 * @size, the resulting string is truncated.
Andi Kleen20036fd2008-10-15 22:02:02 -07001824 *
1825 * See the vsnprintf() documentation for format string extensions over C99.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 */
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001827int snprintf(char *buf, size_t size, const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828{
1829 va_list args;
1830 int i;
1831
1832 va_start(args, fmt);
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001833 i = vsnprintf(buf, size, fmt, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 va_end(args);
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001835
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 return i;
1837}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838EXPORT_SYMBOL(snprintf);
1839
1840/**
1841 * scnprintf - Format a string and place it in a buffer
1842 * @buf: The buffer to place the result into
1843 * @size: The size of the buffer, including the trailing null space
1844 * @fmt: The format string to use
1845 * @...: Arguments for the format string
1846 *
1847 * The return value is the number of characters written into @buf not including
Changli Gaob903c0b2010-10-26 14:22:50 -07001848 * the trailing '\0'. If @size is == 0 the function returns 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 */
1850
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001851int scnprintf(char *buf, size_t size, const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852{
1853 va_list args;
1854 int i;
1855
1856 va_start(args, fmt);
Anton Arapovb921c692011-01-12 16:59:49 -08001857 i = vscnprintf(buf, size, fmt, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 va_end(args);
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001859
Anton Arapovb921c692011-01-12 16:59:49 -08001860 return i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861}
1862EXPORT_SYMBOL(scnprintf);
1863
1864/**
1865 * vsprintf - Format a string and place it in a buffer
1866 * @buf: The buffer to place the result into
1867 * @fmt: The format string to use
1868 * @args: Arguments for the format string
1869 *
1870 * The function returns the number of characters written
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08001871 * into @buf. Use vsnprintf() or vscnprintf() in order to avoid
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 * buffer overflows.
1873 *
Uwe Kleine-Königba1835e2011-04-06 07:49:04 -07001874 * If you're not already dealing with a va_list consider using sprintf().
Andi Kleen20036fd2008-10-15 22:02:02 -07001875 *
1876 * See the vsnprintf() documentation for format string extensions over C99.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 */
1878int vsprintf(char *buf, const char *fmt, va_list args)
1879{
1880 return vsnprintf(buf, INT_MAX, fmt, args);
1881}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882EXPORT_SYMBOL(vsprintf);
1883
1884/**
1885 * sprintf - Format a string and place it in a buffer
1886 * @buf: The buffer to place the result into
1887 * @fmt: The format string to use
1888 * @...: Arguments for the format string
1889 *
1890 * The function returns the number of characters written
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08001891 * into @buf. Use snprintf() or scnprintf() in order to avoid
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 * buffer overflows.
Andi Kleen20036fd2008-10-15 22:02:02 -07001893 *
1894 * See the vsnprintf() documentation for format string extensions over C99.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 */
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001896int sprintf(char *buf, const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897{
1898 va_list args;
1899 int i;
1900
1901 va_start(args, fmt);
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001902 i = vsnprintf(buf, INT_MAX, fmt, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903 va_end(args);
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001904
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 return i;
1906}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907EXPORT_SYMBOL(sprintf);
1908
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001909#ifdef CONFIG_BINARY_PRINTF
1910/*
1911 * bprintf service:
1912 * vbin_printf() - VA arguments to binary data
1913 * bstr_printf() - Binary data to text string
1914 */
1915
1916/**
1917 * vbin_printf - Parse a format string and place args' binary value in a buffer
1918 * @bin_buf: The buffer to place args' binary value
1919 * @size: The size of the buffer(by words(32bits), not characters)
1920 * @fmt: The format string to use
1921 * @args: Arguments for the format string
1922 *
1923 * The format follows C99 vsnprintf, except %n is ignored, and its argument
1924 * is skiped.
1925 *
1926 * The return value is the number of words(32bits) which would be generated for
1927 * the given input.
1928 *
1929 * NOTE:
1930 * If the return value is greater than @size, the resulting bin_buf is NOT
1931 * valid for bstr_printf().
1932 */
1933int vbin_printf(u32 *bin_buf, size_t size, const char *fmt, va_list args)
1934{
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001935 struct printf_spec spec = {0};
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001936 char *str, *end;
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001937
1938 str = (char *)bin_buf;
1939 end = (char *)(bin_buf + size);
1940
1941#define save_arg(type) \
1942do { \
1943 if (sizeof(type) == 8) { \
1944 unsigned long long value; \
1945 str = PTR_ALIGN(str, sizeof(u32)); \
1946 value = va_arg(args, unsigned long long); \
1947 if (str + sizeof(type) <= end) { \
1948 *(u32 *)str = *(u32 *)&value; \
1949 *(u32 *)(str + 4) = *((u32 *)&value + 1); \
1950 } \
1951 } else { \
1952 unsigned long value; \
1953 str = PTR_ALIGN(str, sizeof(type)); \
1954 value = va_arg(args, int); \
1955 if (str + sizeof(type) <= end) \
1956 *(typeof(type) *)str = (type)value; \
1957 } \
1958 str += sizeof(type); \
1959} while (0)
1960
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001961 while (*fmt) {
André Goddard Rosad4be1512009-12-14 18:00:59 -08001962 int read = format_decode(fmt, &spec);
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001963
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001964 fmt += read;
1965
1966 switch (spec.type) {
1967 case FORMAT_TYPE_NONE:
André Goddard Rosad4be1512009-12-14 18:00:59 -08001968 case FORMAT_TYPE_INVALID:
1969 case FORMAT_TYPE_PERCENT_CHAR:
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001970 break;
1971
Vegard Nossumed681a92009-03-14 12:08:50 +01001972 case FORMAT_TYPE_WIDTH:
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001973 case FORMAT_TYPE_PRECISION:
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001974 save_arg(int);
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001975 break;
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001976
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001977 case FORMAT_TYPE_CHAR:
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001978 save_arg(char);
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001979 break;
1980
1981 case FORMAT_TYPE_STR: {
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001982 const char *save_str = va_arg(args, char *);
1983 size_t len;
André Goddard Rosa6c356632009-12-14 18:00:56 -08001984
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001985 if ((unsigned long)save_str > (unsigned long)-PAGE_SIZE
1986 || (unsigned long)save_str < PAGE_SIZE)
André Goddard Rosa0f4f81d2009-12-14 18:00:55 -08001987 save_str = "(null)";
André Goddard Rosa6c356632009-12-14 18:00:56 -08001988 len = strlen(save_str) + 1;
1989 if (str + len < end)
1990 memcpy(str, save_str, len);
1991 str += len;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001992 break;
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001993 }
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001994
1995 case FORMAT_TYPE_PTR:
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001996 save_arg(void *);
1997 /* skip all alphanumeric pointer suffixes */
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01001998 while (isalnum(*fmt))
Lai Jiangshan4370aa42009-03-06 17:21:46 +01001999 fmt++;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01002000 break;
2001
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01002002 case FORMAT_TYPE_NRCHARS: {
Lai Jiangshan4370aa42009-03-06 17:21:46 +01002003 /* skip %n 's argument */
Joe Perchesef0658f2010-03-06 17:10:14 -08002004 u8 qualifier = spec.qualifier;
Lai Jiangshan4370aa42009-03-06 17:21:46 +01002005 void *skip_arg;
2006 if (qualifier == 'l')
2007 skip_arg = va_arg(args, long *);
Andy Shevchenko75fb8f22011-07-25 17:13:20 -07002008 else if (_tolower(qualifier) == 'z')
Lai Jiangshan4370aa42009-03-06 17:21:46 +01002009 skip_arg = va_arg(args, size_t *);
2010 else
2011 skip_arg = va_arg(args, int *);
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01002012 break;
Lai Jiangshan4370aa42009-03-06 17:21:46 +01002013 }
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01002014
Lai Jiangshan4370aa42009-03-06 17:21:46 +01002015 default:
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01002016 switch (spec.type) {
2017
2018 case FORMAT_TYPE_LONG_LONG:
2019 save_arg(long long);
2020 break;
2021 case FORMAT_TYPE_ULONG:
2022 case FORMAT_TYPE_LONG:
2023 save_arg(unsigned long);
2024 break;
2025 case FORMAT_TYPE_SIZE_T:
2026 save_arg(size_t);
2027 break;
2028 case FORMAT_TYPE_PTRDIFF:
2029 save_arg(ptrdiff_t);
2030 break;
Zhaoleia4e94ef2009-03-27 17:07:05 +08002031 case FORMAT_TYPE_UBYTE:
2032 case FORMAT_TYPE_BYTE:
2033 save_arg(char);
2034 break;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01002035 case FORMAT_TYPE_USHORT:
2036 case FORMAT_TYPE_SHORT:
2037 save_arg(short);
2038 break;
2039 default:
2040 save_arg(int);
2041 }
Lai Jiangshan4370aa42009-03-06 17:21:46 +01002042 }
2043 }
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01002044
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08002045 return (u32 *)(PTR_ALIGN(str, sizeof(u32))) - bin_buf;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01002046#undef save_arg
Lai Jiangshan4370aa42009-03-06 17:21:46 +01002047}
2048EXPORT_SYMBOL_GPL(vbin_printf);
2049
2050/**
2051 * bstr_printf - Format a string from binary arguments and place it in a buffer
2052 * @buf: The buffer to place the result into
2053 * @size: The size of the buffer, including the trailing null space
2054 * @fmt: The format string to use
2055 * @bin_buf: Binary arguments for the format string
2056 *
2057 * This function like C99 vsnprintf, but the difference is that vsnprintf gets
2058 * arguments from stack, and bstr_printf gets arguments from @bin_buf which is
2059 * a binary buffer that generated by vbin_printf.
2060 *
2061 * The format follows C99 vsnprintf, but has some extensions:
Steven Rostedt0efb4d22009-09-17 09:27:29 -04002062 * see vsnprintf comment for details.
Lai Jiangshan4370aa42009-03-06 17:21:46 +01002063 *
2064 * The return value is the number of characters which would
2065 * be generated for the given input, excluding the trailing
2066 * '\0', as per ISO C99. If you want to have the exact
2067 * number of characters written into @buf as return value
2068 * (not including the trailing '\0'), use vscnprintf(). If the
2069 * return is greater than or equal to @size, the resulting
2070 * string is truncated.
2071 */
2072int bstr_printf(char *buf, size_t size, const char *fmt, const u32 *bin_buf)
2073{
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01002074 struct printf_spec spec = {0};
André Goddard Rosad4be1512009-12-14 18:00:59 -08002075 char *str, *end;
2076 const char *args = (const char *)bin_buf;
Lai Jiangshan4370aa42009-03-06 17:21:46 +01002077
Marcin Slusarz2f30b1f92009-09-21 17:04:29 -07002078 if (WARN_ON_ONCE((int) size < 0))
Lai Jiangshan4370aa42009-03-06 17:21:46 +01002079 return 0;
Lai Jiangshan4370aa42009-03-06 17:21:46 +01002080
2081 str = buf;
2082 end = buf + size;
2083
2084#define get_arg(type) \
2085({ \
2086 typeof(type) value; \
2087 if (sizeof(type) == 8) { \
2088 args = PTR_ALIGN(args, sizeof(u32)); \
2089 *(u32 *)&value = *(u32 *)args; \
2090 *((u32 *)&value + 1) = *(u32 *)(args + 4); \
2091 } else { \
2092 args = PTR_ALIGN(args, sizeof(type)); \
2093 value = *(typeof(type) *)args; \
2094 } \
2095 args += sizeof(type); \
2096 value; \
2097})
2098
2099 /* Make sure end is always >= buf */
2100 if (end < buf) {
2101 end = ((void *)-1);
2102 size = end - buf;
2103 }
2104
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01002105 while (*fmt) {
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01002106 const char *old_fmt = fmt;
André Goddard Rosad4be1512009-12-14 18:00:59 -08002107 int read = format_decode(fmt, &spec);
Lai Jiangshan4370aa42009-03-06 17:21:46 +01002108
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01002109 fmt += read;
2110
2111 switch (spec.type) {
2112 case FORMAT_TYPE_NONE: {
2113 int copy = read;
2114 if (str < end) {
2115 if (copy > end - str)
2116 copy = end - str;
2117 memcpy(str, old_fmt, copy);
Lai Jiangshan4370aa42009-03-06 17:21:46 +01002118 }
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01002119 str += read;
2120 break;
Lai Jiangshan4370aa42009-03-06 17:21:46 +01002121 }
2122
Vegard Nossumed681a92009-03-14 12:08:50 +01002123 case FORMAT_TYPE_WIDTH:
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01002124 spec.field_width = get_arg(int);
2125 break;
Lai Jiangshan4370aa42009-03-06 17:21:46 +01002126
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01002127 case FORMAT_TYPE_PRECISION:
2128 spec.precision = get_arg(int);
2129 break;
Lai Jiangshan4370aa42009-03-06 17:21:46 +01002130
André Goddard Rosad4be1512009-12-14 18:00:59 -08002131 case FORMAT_TYPE_CHAR: {
2132 char c;
2133
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01002134 if (!(spec.flags & LEFT)) {
2135 while (--spec.field_width > 0) {
Lai Jiangshan4370aa42009-03-06 17:21:46 +01002136 if (str < end)
2137 *str = ' ';
2138 ++str;
2139 }
2140 }
2141 c = (unsigned char) get_arg(char);
2142 if (str < end)
2143 *str = c;
2144 ++str;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01002145 while (--spec.field_width > 0) {
Lai Jiangshan4370aa42009-03-06 17:21:46 +01002146 if (str < end)
2147 *str = ' ';
2148 ++str;
2149 }
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01002150 break;
André Goddard Rosad4be1512009-12-14 18:00:59 -08002151 }
Lai Jiangshan4370aa42009-03-06 17:21:46 +01002152
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01002153 case FORMAT_TYPE_STR: {
Lai Jiangshan4370aa42009-03-06 17:21:46 +01002154 const char *str_arg = args;
André Goddard Rosad4be1512009-12-14 18:00:59 -08002155 args += strlen(str_arg) + 1;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01002156 str = string(str, end, (char *)str_arg, spec);
2157 break;
Lai Jiangshan4370aa42009-03-06 17:21:46 +01002158 }
2159
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01002160 case FORMAT_TYPE_PTR:
2161 str = pointer(fmt+1, str, end, get_arg(void *), spec);
2162 while (isalnum(*fmt))
Lai Jiangshan4370aa42009-03-06 17:21:46 +01002163 fmt++;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01002164 break;
Lai Jiangshan4370aa42009-03-06 17:21:46 +01002165
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01002166 case FORMAT_TYPE_PERCENT_CHAR:
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01002167 case FORMAT_TYPE_INVALID:
Lai Jiangshan4370aa42009-03-06 17:21:46 +01002168 if (str < end)
2169 *str = '%';
2170 ++str;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01002171 break;
2172
2173 case FORMAT_TYPE_NRCHARS:
2174 /* skip */
2175 break;
2176
André Goddard Rosad4be1512009-12-14 18:00:59 -08002177 default: {
2178 unsigned long long num;
2179
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01002180 switch (spec.type) {
2181
2182 case FORMAT_TYPE_LONG_LONG:
2183 num = get_arg(long long);
2184 break;
2185 case FORMAT_TYPE_ULONG:
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01002186 case FORMAT_TYPE_LONG:
2187 num = get_arg(unsigned long);
2188 break;
2189 case FORMAT_TYPE_SIZE_T:
2190 num = get_arg(size_t);
2191 break;
2192 case FORMAT_TYPE_PTRDIFF:
2193 num = get_arg(ptrdiff_t);
2194 break;
Zhaoleia4e94ef2009-03-27 17:07:05 +08002195 case FORMAT_TYPE_UBYTE:
2196 num = get_arg(unsigned char);
2197 break;
2198 case FORMAT_TYPE_BYTE:
2199 num = get_arg(signed char);
2200 break;
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01002201 case FORMAT_TYPE_USHORT:
2202 num = get_arg(unsigned short);
2203 break;
2204 case FORMAT_TYPE_SHORT:
2205 num = get_arg(short);
2206 break;
2207 case FORMAT_TYPE_UINT:
2208 num = get_arg(unsigned int);
2209 break;
2210 default:
2211 num = get_arg(int);
2212 }
2213
2214 str = number(str, end, num, spec);
André Goddard Rosad4be1512009-12-14 18:00:59 -08002215 } /* default: */
2216 } /* switch(spec.type) */
2217 } /* while(*fmt) */
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01002218
Lai Jiangshan4370aa42009-03-06 17:21:46 +01002219 if (size > 0) {
2220 if (str < end)
2221 *str = '\0';
2222 else
2223 end[-1] = '\0';
2224 }
Frederic Weisbeckerfef20d92009-03-06 17:21:50 +01002225
Lai Jiangshan4370aa42009-03-06 17:21:46 +01002226#undef get_arg
2227
2228 /* the trailing null byte doesn't count towards the total */
2229 return str - buf;
2230}
2231EXPORT_SYMBOL_GPL(bstr_printf);
2232
2233/**
2234 * bprintf - Parse a format string and place args' binary value in a buffer
2235 * @bin_buf: The buffer to place args' binary value
2236 * @size: The size of the buffer(by words(32bits), not characters)
2237 * @fmt: The format string to use
2238 * @...: Arguments for the format string
2239 *
2240 * The function returns the number of words(u32) written
2241 * into @bin_buf.
2242 */
2243int bprintf(u32 *bin_buf, size_t size, const char *fmt, ...)
2244{
2245 va_list args;
2246 int ret;
2247
2248 va_start(args, fmt);
2249 ret = vbin_printf(bin_buf, size, fmt, args);
2250 va_end(args);
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08002251
Lai Jiangshan4370aa42009-03-06 17:21:46 +01002252 return ret;
2253}
2254EXPORT_SYMBOL_GPL(bprintf);
2255
2256#endif /* CONFIG_BINARY_PRINTF */
2257
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258/**
2259 * vsscanf - Unformat a buffer into a list of arguments
2260 * @buf: input buffer
2261 * @fmt: format of buffer
2262 * @args: arguments
2263 */
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08002264int vsscanf(const char *buf, const char *fmt, va_list args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265{
2266 const char *str = buf;
2267 char *next;
2268 char digit;
2269 int num = 0;
Joe Perchesef0658f2010-03-06 17:10:14 -08002270 u8 qualifier;
Jan Beulich53809752012-12-17 16:01:31 -08002271 unsigned int base;
2272 union {
2273 long long s;
2274 unsigned long long u;
2275 } val;
Joe Perchesef0658f2010-03-06 17:10:14 -08002276 s16 field_width;
André Goddard Rosad4be1512009-12-14 18:00:59 -08002277 bool is_sign;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278
Jan Beulichda990752012-10-04 17:13:24 -07002279 while (*fmt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280 /* skip any white space in format */
2281 /* white space in format matchs any amount of
2282 * white space, including none, in the input.
2283 */
2284 if (isspace(*fmt)) {
André Goddard Rosae7d28602009-12-14 18:01:06 -08002285 fmt = skip_spaces(++fmt);
2286 str = skip_spaces(str);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287 }
2288
2289 /* anything that is not a conversion must match exactly */
2290 if (*fmt != '%' && *fmt) {
2291 if (*fmt++ != *str++)
2292 break;
2293 continue;
2294 }
2295
2296 if (!*fmt)
2297 break;
2298 ++fmt;
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08002299
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300 /* skip this conversion.
2301 * advance both strings to next white space
2302 */
2303 if (*fmt == '*') {
Jan Beulichda990752012-10-04 17:13:24 -07002304 if (!*str)
2305 break;
Andy Spencer8fccae22009-10-01 15:44:27 -07002306 while (!isspace(*fmt) && *fmt != '%' && *fmt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307 fmt++;
2308 while (!isspace(*str) && *str)
2309 str++;
2310 continue;
2311 }
2312
2313 /* get field width */
2314 field_width = -1;
Jan Beulich53809752012-12-17 16:01:31 -08002315 if (isdigit(*fmt)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316 field_width = skip_atoi(&fmt);
Jan Beulich53809752012-12-17 16:01:31 -08002317 if (field_width <= 0)
2318 break;
2319 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320
2321 /* get conversion qualifier */
2322 qualifier = -1;
Andy Shevchenko75fb8f22011-07-25 17:13:20 -07002323 if (*fmt == 'h' || _tolower(*fmt) == 'l' ||
2324 _tolower(*fmt) == 'z') {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325 qualifier = *fmt++;
2326 if (unlikely(qualifier == *fmt)) {
2327 if (qualifier == 'h') {
2328 qualifier = 'H';
2329 fmt++;
2330 } else if (qualifier == 'l') {
2331 qualifier = 'L';
2332 fmt++;
2333 }
2334 }
2335 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336
Jan Beulichda990752012-10-04 17:13:24 -07002337 if (!*fmt)
2338 break;
2339
2340 if (*fmt == 'n') {
2341 /* return number of characters read so far */
2342 *va_arg(args, int *) = str - buf;
2343 ++fmt;
2344 continue;
2345 }
2346
2347 if (!*str)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348 break;
2349
André Goddard Rosad4be1512009-12-14 18:00:59 -08002350 base = 10;
2351 is_sign = 0;
2352
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08002353 switch (*fmt++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354 case 'c':
2355 {
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08002356 char *s = (char *)va_arg(args, char*);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357 if (field_width == -1)
2358 field_width = 1;
2359 do {
2360 *s++ = *str++;
2361 } while (--field_width > 0 && *str);
2362 num++;
2363 }
2364 continue;
2365 case 's':
2366 {
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08002367 char *s = (char *)va_arg(args, char *);
2368 if (field_width == -1)
Alexey Dobriyan4be929b2010-05-24 14:33:03 -07002369 field_width = SHRT_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370 /* first, skip leading white space in buffer */
André Goddard Rosae7d28602009-12-14 18:01:06 -08002371 str = skip_spaces(str);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372
2373 /* now copy until next white space */
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08002374 while (*str && !isspace(*str) && field_width--)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375 *s++ = *str++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376 *s = '\0';
2377 num++;
2378 }
2379 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380 case 'o':
2381 base = 8;
2382 break;
2383 case 'x':
2384 case 'X':
2385 base = 16;
2386 break;
2387 case 'i':
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08002388 base = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389 case 'd':
2390 is_sign = 1;
2391 case 'u':
2392 break;
2393 case '%':
2394 /* looking for '%' in str */
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08002395 if (*str++ != '%')
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396 return num;
2397 continue;
2398 default:
2399 /* invalid format; stop here */
2400 return num;
2401 }
2402
2403 /* have some sort of integer conversion.
2404 * first, skip white space in buffer.
2405 */
André Goddard Rosae7d28602009-12-14 18:01:06 -08002406 str = skip_spaces(str);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407
2408 digit = *str;
2409 if (is_sign && digit == '-')
2410 digit = *(str + 1);
2411
2412 if (!digit
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08002413 || (base == 16 && !isxdigit(digit))
2414 || (base == 10 && !isdigit(digit))
2415 || (base == 8 && (!isdigit(digit) || digit > '7'))
2416 || (base == 0 && !isdigit(digit)))
2417 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418
Jan Beulich53809752012-12-17 16:01:31 -08002419 if (is_sign)
2420 val.s = qualifier != 'L' ?
2421 simple_strtol(str, &next, base) :
2422 simple_strtoll(str, &next, base);
2423 else
2424 val.u = qualifier != 'L' ?
2425 simple_strtoul(str, &next, base) :
2426 simple_strtoull(str, &next, base);
2427
2428 if (field_width > 0 && next - str > field_width) {
2429 if (base == 0)
2430 _parse_integer_fixup_radix(str, &base);
2431 while (next - str > field_width) {
2432 if (is_sign)
2433 val.s = div_s64(val.s, base);
2434 else
2435 val.u = div_u64(val.u, base);
2436 --next;
2437 }
2438 }
2439
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08002440 switch (qualifier) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441 case 'H': /* that's 'hh' in format */
Jan Beulich53809752012-12-17 16:01:31 -08002442 if (is_sign)
2443 *va_arg(args, signed char *) = val.s;
2444 else
2445 *va_arg(args, unsigned char *) = val.u;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446 break;
2447 case 'h':
Jan Beulich53809752012-12-17 16:01:31 -08002448 if (is_sign)
2449 *va_arg(args, short *) = val.s;
2450 else
2451 *va_arg(args, unsigned short *) = val.u;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452 break;
2453 case 'l':
Jan Beulich53809752012-12-17 16:01:31 -08002454 if (is_sign)
2455 *va_arg(args, long *) = val.s;
2456 else
2457 *va_arg(args, unsigned long *) = val.u;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458 break;
2459 case 'L':
Jan Beulich53809752012-12-17 16:01:31 -08002460 if (is_sign)
2461 *va_arg(args, long long *) = val.s;
2462 else
2463 *va_arg(args, unsigned long long *) = val.u;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464 break;
2465 case 'Z':
2466 case 'z':
Jan Beulich53809752012-12-17 16:01:31 -08002467 *va_arg(args, size_t *) = val.u;
2468 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469 default:
Jan Beulich53809752012-12-17 16:01:31 -08002470 if (is_sign)
2471 *va_arg(args, int *) = val.s;
2472 else
2473 *va_arg(args, unsigned int *) = val.u;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474 break;
2475 }
2476 num++;
2477
2478 if (!next)
2479 break;
2480 str = next;
2481 }
Johannes Bergc6b40d12007-05-08 00:27:20 -07002482
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483 return num;
2484}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485EXPORT_SYMBOL(vsscanf);
2486
2487/**
2488 * sscanf - Unformat a buffer into a list of arguments
2489 * @buf: input buffer
2490 * @fmt: formatting of buffer
2491 * @...: resulting arguments
2492 */
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08002493int sscanf(const char *buf, const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494{
2495 va_list args;
2496 int i;
2497
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08002498 va_start(args, fmt);
2499 i = vsscanf(buf, fmt, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500 va_end(args);
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08002501
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502 return i;
2503}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504EXPORT_SYMBOL(sscanf);