lib/vsprintf: Make strspec global
[linux-2.6-block.git] / lib / vsprintf.c
CommitLineData
1da177e4
LT
1/*
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
7b9186f5 12/*
1da177e4
LT
13 * 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>
0d1d7a55 20#include <linux/clk.h>
900cca29 21#include <linux/clk-provider.h>
8bc3bcc9 22#include <linux/module.h> /* for KSYM_SYMBOL_LEN */
1da177e4
LT
23#include <linux/types.h>
24#include <linux/string.h>
25#include <linux/ctype.h>
26#include <linux/kernel.h>
0fe1ef24 27#include <linux/kallsyms.h>
53809751 28#include <linux/math64.h>
0fe1ef24 29#include <linux/uaccess.h>
332d2e78 30#include <linux/ioport.h>
4b6ccca7 31#include <linux/dcache.h>
312b4e22 32#include <linux/cred.h>
2b1b0d66 33#include <linux/uuid.h>
ce4fecf1 34#include <linux/of.h>
8a27f7c9 35#include <net/addrconf.h>
ad67b74d
TH
36#include <linux/siphash.h>
37#include <linux/compiler.h>
1031bc58
DM
38#ifdef CONFIG_BLOCK
39#include <linux/blkdev.h>
40#endif
1da177e4 41
edf14cdb
VB
42#include "../mm/internal.h" /* For the trace_print_flags arrays */
43
4e57b681 44#include <asm/page.h> /* for PAGE_SIZE */
7c43d9a3 45#include <asm/byteorder.h> /* cpu_to_le16 */
1da177e4 46
71dca95d 47#include <linux/string_helpers.h>
1dff46d6 48#include "kstrtox.h"
aa46a63e 49
1da177e4 50/**
922ac25c 51 * simple_strtoull - convert a string to an unsigned long long
1da177e4
LT
52 * @cp: The start of the string
53 * @endp: A pointer to the end of the parsed string will be placed here
54 * @base: The number base to use
462e4711
EZ
55 *
56 * This function is obsolete. Please use kstrtoull instead.
1da177e4 57 */
922ac25c 58unsigned long long simple_strtoull(const char *cp, char **endp, unsigned int base)
1da177e4 59{
1dff46d6
AD
60 unsigned long long result;
61 unsigned int rv;
aa46a63e 62
1dff46d6
AD
63 cp = _parse_integer_fixup_radix(cp, &base);
64 rv = _parse_integer(cp, base, &result);
65 /* FIXME */
66 cp += (rv & ~KSTRTOX_OVERFLOW);
aa46a63e 67
1da177e4
LT
68 if (endp)
69 *endp = (char *)cp;
7b9186f5 70
1da177e4
LT
71 return result;
72}
922ac25c 73EXPORT_SYMBOL(simple_strtoull);
1da177e4
LT
74
75/**
922ac25c 76 * simple_strtoul - convert a string to an unsigned long
1da177e4
LT
77 * @cp: The start of the string
78 * @endp: A pointer to the end of the parsed string will be placed here
79 * @base: The number base to use
462e4711
EZ
80 *
81 * This function is obsolete. Please use kstrtoul instead.
1da177e4 82 */
922ac25c 83unsigned long simple_strtoul(const char *cp, char **endp, unsigned int base)
1da177e4 84{
922ac25c 85 return simple_strtoull(cp, endp, base);
1da177e4 86}
922ac25c 87EXPORT_SYMBOL(simple_strtoul);
1da177e4
LT
88
89/**
922ac25c 90 * simple_strtol - convert a string to a signed long
1da177e4
LT
91 * @cp: The start of the string
92 * @endp: A pointer to the end of the parsed string will be placed here
93 * @base: The number base to use
462e4711
EZ
94 *
95 * This function is obsolete. Please use kstrtol instead.
1da177e4 96 */
922ac25c 97long simple_strtol(const char *cp, char **endp, unsigned int base)
1da177e4 98{
922ac25c
AGR
99 if (*cp == '-')
100 return -simple_strtoul(cp + 1, endp, base);
7b9186f5 101
922ac25c 102 return simple_strtoul(cp, endp, base);
1da177e4 103}
922ac25c 104EXPORT_SYMBOL(simple_strtol);
1da177e4
LT
105
106/**
107 * simple_strtoll - convert a string to a signed long long
108 * @cp: The start of the string
109 * @endp: A pointer to the end of the parsed string will be placed here
110 * @base: The number base to use
462e4711
EZ
111 *
112 * This function is obsolete. Please use kstrtoll instead.
1da177e4 113 */
22d27051 114long long simple_strtoll(const char *cp, char **endp, unsigned int base)
1da177e4 115{
7b9186f5 116 if (*cp == '-')
22d27051 117 return -simple_strtoull(cp + 1, endp, base);
7b9186f5 118
22d27051 119 return simple_strtoull(cp, endp, base);
1da177e4 120}
98d5ce0d 121EXPORT_SYMBOL(simple_strtoll);
1da177e4 122
cf3b429b
JP
123static noinline_for_stack
124int skip_atoi(const char **s)
1da177e4 125{
7b9186f5 126 int i = 0;
1da177e4 127
43e5b666 128 do {
1da177e4 129 i = i*10 + *((*s)++) - '0';
43e5b666 130 } while (isdigit(**s));
7b9186f5 131
1da177e4
LT
132 return i;
133}
134
7c43d9a3
RV
135/*
136 * Decimal conversion is by far the most typical, and is used for
137 * /proc and /sys data. This directly impacts e.g. top performance
138 * with many processes running. We optimize it for speed by emitting
139 * two characters at a time, using a 200 byte lookup table. This
140 * roughly halves the number of multiplications compared to computing
141 * the digits one at a time. Implementation strongly inspired by the
142 * previous version, which in turn used ideas described at
143 * <http://www.cs.uiowa.edu/~jones/bcd/divide.html> (with permission
144 * from the author, Douglas W. Jones).
145 *
146 * It turns out there is precisely one 26 bit fixed-point
147 * approximation a of 64/100 for which x/100 == (x * (u64)a) >> 32
148 * holds for all x in [0, 10^8-1], namely a = 0x28f5c29. The actual
149 * range happens to be somewhat larger (x <= 1073741898), but that's
150 * irrelevant for our purpose.
151 *
152 * For dividing a number in the range [10^4, 10^6-1] by 100, we still
153 * need a 32x32->64 bit multiply, so we simply use the same constant.
154 *
155 * For dividing a number in the range [100, 10^4-1] by 100, there are
156 * several options. The simplest is (x * 0x147b) >> 19, which is valid
157 * for all x <= 43698.
133fd9f5 158 */
4277eedd 159
7c43d9a3
RV
160static const u16 decpair[100] = {
161#define _(x) (__force u16) cpu_to_le16(((x % 10) | ((x / 10) << 8)) + 0x3030)
162 _( 0), _( 1), _( 2), _( 3), _( 4), _( 5), _( 6), _( 7), _( 8), _( 9),
163 _(10), _(11), _(12), _(13), _(14), _(15), _(16), _(17), _(18), _(19),
164 _(20), _(21), _(22), _(23), _(24), _(25), _(26), _(27), _(28), _(29),
165 _(30), _(31), _(32), _(33), _(34), _(35), _(36), _(37), _(38), _(39),
166 _(40), _(41), _(42), _(43), _(44), _(45), _(46), _(47), _(48), _(49),
167 _(50), _(51), _(52), _(53), _(54), _(55), _(56), _(57), _(58), _(59),
168 _(60), _(61), _(62), _(63), _(64), _(65), _(66), _(67), _(68), _(69),
169 _(70), _(71), _(72), _(73), _(74), _(75), _(76), _(77), _(78), _(79),
170 _(80), _(81), _(82), _(83), _(84), _(85), _(86), _(87), _(88), _(89),
171 _(90), _(91), _(92), _(93), _(94), _(95), _(96), _(97), _(98), _(99),
172#undef _
173};
174
175/*
176 * This will print a single '0' even if r == 0, since we would
675cf53c
RV
177 * immediately jump to out_r where two 0s would be written but only
178 * one of them accounted for in buf. This is needed by ip4_string
179 * below. All other callers pass a non-zero value of r.
7c43d9a3 180*/
cf3b429b 181static noinline_for_stack
7c43d9a3 182char *put_dec_trunc8(char *buf, unsigned r)
4277eedd 183{
7c43d9a3
RV
184 unsigned q;
185
186 /* 1 <= r < 10^8 */
187 if (r < 100)
188 goto out_r;
189
190 /* 100 <= r < 10^8 */
191 q = (r * (u64)0x28f5c29) >> 32;
192 *((u16 *)buf) = decpair[r - 100*q];
193 buf += 2;
194
195 /* 1 <= q < 10^6 */
196 if (q < 100)
197 goto out_q;
198
199 /* 100 <= q < 10^6 */
200 r = (q * (u64)0x28f5c29) >> 32;
201 *((u16 *)buf) = decpair[q - 100*r];
202 buf += 2;
203
204 /* 1 <= r < 10^4 */
205 if (r < 100)
206 goto out_r;
207
208 /* 100 <= r < 10^4 */
209 q = (r * 0x147b) >> 19;
210 *((u16 *)buf) = decpair[r - 100*q];
211 buf += 2;
212out_q:
213 /* 1 <= q < 100 */
214 r = q;
215out_r:
216 /* 1 <= r < 100 */
217 *((u16 *)buf) = decpair[r];
675cf53c 218 buf += r < 10 ? 1 : 2;
4277eedd
DV
219 return buf;
220}
133fd9f5 221
7c43d9a3 222#if BITS_PER_LONG == 64 && BITS_PER_LONG_LONG == 64
cf3b429b 223static noinline_for_stack
7c43d9a3 224char *put_dec_full8(char *buf, unsigned r)
4277eedd 225{
133fd9f5
DV
226 unsigned q;
227
7c43d9a3
RV
228 /* 0 <= r < 10^8 */
229 q = (r * (u64)0x28f5c29) >> 32;
230 *((u16 *)buf) = decpair[r - 100*q];
231 buf += 2;
4277eedd 232
7c43d9a3
RV
233 /* 0 <= q < 10^6 */
234 r = (q * (u64)0x28f5c29) >> 32;
235 *((u16 *)buf) = decpair[q - 100*r];
236 buf += 2;
7b9186f5 237
7c43d9a3
RV
238 /* 0 <= r < 10^4 */
239 q = (r * 0x147b) >> 19;
240 *((u16 *)buf) = decpair[r - 100*q];
241 buf += 2;
133fd9f5 242
7c43d9a3
RV
243 /* 0 <= q < 100 */
244 *((u16 *)buf) = decpair[q];
245 buf += 2;
246 return buf;
247}
133fd9f5 248
7c43d9a3 249static noinline_for_stack
133fd9f5
DV
250char *put_dec(char *buf, unsigned long long n)
251{
7c43d9a3
RV
252 if (n >= 100*1000*1000)
253 buf = put_dec_full8(buf, do_div(n, 100*1000*1000));
254 /* 1 <= n <= 1.6e11 */
255 if (n >= 100*1000*1000)
256 buf = put_dec_full8(buf, do_div(n, 100*1000*1000));
257 /* 1 <= n < 1e8 */
133fd9f5 258 return put_dec_trunc8(buf, n);
4277eedd 259}
133fd9f5 260
7c43d9a3 261#elif BITS_PER_LONG == 32 && BITS_PER_LONG_LONG == 64
133fd9f5 262
7c43d9a3
RV
263static void
264put_dec_full4(char *buf, unsigned r)
4277eedd 265{
7c43d9a3
RV
266 unsigned q;
267
268 /* 0 <= r < 10^4 */
269 q = (r * 0x147b) >> 19;
270 *((u16 *)buf) = decpair[r - 100*q];
271 buf += 2;
272 /* 0 <= q < 100 */
273 *((u16 *)buf) = decpair[q];
2359172a
GS
274}
275
276/*
277 * Call put_dec_full4 on x % 10000, return x / 10000.
278 * The approximation x/10000 == (x * 0x346DC5D7) >> 43
279 * holds for all x < 1,128,869,999. The largest value this
280 * helper will ever be asked to convert is 1,125,520,955.
7c43d9a3 281 * (second call in the put_dec code, assuming n is all-ones).
2359172a 282 */
7c43d9a3 283static noinline_for_stack
2359172a
GS
284unsigned put_dec_helper4(char *buf, unsigned x)
285{
286 uint32_t q = (x * (uint64_t)0x346DC5D7) >> 43;
287
288 put_dec_full4(buf, x - q * 10000);
289 return q;
4277eedd
DV
290}
291
133fd9f5
DV
292/* Based on code by Douglas W. Jones found at
293 * <http://www.cs.uiowa.edu/~jones/bcd/decimal.html#sixtyfour>
294 * (with permission from the author).
295 * Performs no 64-bit division and hence should be fast on 32-bit machines.
296 */
297static
298char *put_dec(char *buf, unsigned long long n)
299{
300 uint32_t d3, d2, d1, q, h;
301
302 if (n < 100*1000*1000)
303 return put_dec_trunc8(buf, n);
304
305 d1 = ((uint32_t)n >> 16); /* implicit "& 0xffff" */
306 h = (n >> 32);
307 d2 = (h ) & 0xffff;
308 d3 = (h >> 16); /* implicit "& 0xffff" */
309
7c43d9a3
RV
310 /* n = 2^48 d3 + 2^32 d2 + 2^16 d1 + d0
311 = 281_4749_7671_0656 d3 + 42_9496_7296 d2 + 6_5536 d1 + d0 */
133fd9f5 312 q = 656 * d3 + 7296 * d2 + 5536 * d1 + ((uint32_t)n & 0xffff);
2359172a
GS
313 q = put_dec_helper4(buf, q);
314
315 q += 7671 * d3 + 9496 * d2 + 6 * d1;
316 q = put_dec_helper4(buf+4, q);
317
318 q += 4749 * d3 + 42 * d2;
319 q = put_dec_helper4(buf+8, q);
133fd9f5 320
2359172a
GS
321 q += 281 * d3;
322 buf += 12;
323 if (q)
324 buf = put_dec_trunc8(buf, q);
325 else while (buf[-1] == '0')
133fd9f5
DV
326 --buf;
327
328 return buf;
329}
330
331#endif
332
1ac101a5
KH
333/*
334 * Convert passed number to decimal string.
335 * Returns the length of string. On buffer overflow, returns 0.
336 *
337 * If speed is not important, use snprintf(). It's easy to read the code.
338 */
339int num_to_str(char *buf, int size, unsigned long long num)
340{
7c43d9a3
RV
341 /* put_dec requires 2-byte alignment of the buffer. */
342 char tmp[sizeof(num) * 3] __aligned(2);
1ac101a5
KH
343 int idx, len;
344
133fd9f5
DV
345 /* put_dec() may work incorrectly for num = 0 (generate "", not "0") */
346 if (num <= 9) {
347 tmp[0] = '0' + num;
348 len = 1;
349 } else {
350 len = put_dec(tmp, num) - tmp;
351 }
1ac101a5
KH
352
353 if (len > size)
354 return 0;
355 for (idx = 0; idx < len; ++idx)
356 buf[idx] = tmp[len - idx - 1];
133fd9f5 357 return len;
1ac101a5
KH
358}
359
51be17df 360#define SIGN 1 /* unsigned/signed, must be 1 */
d1c1b121 361#define LEFT 2 /* left justified */
1da177e4
LT
362#define PLUS 4 /* show plus */
363#define SPACE 8 /* space if plus */
d1c1b121 364#define ZEROPAD 16 /* pad with zero, must be 16 == '0' - ' ' */
b89dc5d6
BH
365#define SMALL 32 /* use lowercase in hex (must be 32 == 0x20) */
366#define SPECIAL 64 /* prefix hex with "0x", octal with "0" */
1da177e4 367
fef20d9c
FW
368enum format_type {
369 FORMAT_TYPE_NONE, /* Just a string part */
ed681a91 370 FORMAT_TYPE_WIDTH,
fef20d9c
FW
371 FORMAT_TYPE_PRECISION,
372 FORMAT_TYPE_CHAR,
373 FORMAT_TYPE_STR,
374 FORMAT_TYPE_PTR,
375 FORMAT_TYPE_PERCENT_CHAR,
376 FORMAT_TYPE_INVALID,
377 FORMAT_TYPE_LONG_LONG,
378 FORMAT_TYPE_ULONG,
379 FORMAT_TYPE_LONG,
a4e94ef0
Z
380 FORMAT_TYPE_UBYTE,
381 FORMAT_TYPE_BYTE,
fef20d9c
FW
382 FORMAT_TYPE_USHORT,
383 FORMAT_TYPE_SHORT,
384 FORMAT_TYPE_UINT,
385 FORMAT_TYPE_INT,
fef20d9c
FW
386 FORMAT_TYPE_SIZE_T,
387 FORMAT_TYPE_PTRDIFF
388};
389
390struct printf_spec {
d0484193
RV
391 unsigned int type:8; /* format_type enum */
392 signed int field_width:24; /* width of output field */
393 unsigned int flags:8; /* flags to number() */
394 unsigned int base:8; /* number base, 8, 10 or 16 only */
395 signed int precision:16; /* # of digits/chars */
396} __packed;
4d72ba01
RV
397#define FIELD_WIDTH_MAX ((1 << 23) - 1)
398#define PRECISION_MAX ((1 << 15) - 1)
fef20d9c 399
cf3b429b
JP
400static noinline_for_stack
401char *number(char *buf, char *end, unsigned long long num,
402 struct printf_spec spec)
1da177e4 403{
7c43d9a3
RV
404 /* put_dec requires 2-byte alignment of the buffer. */
405 char tmp[3 * sizeof(num)] __aligned(2);
9b706aee
DV
406 char sign;
407 char locase;
fef20d9c 408 int need_pfx = ((spec.flags & SPECIAL) && spec.base != 10);
1da177e4 409 int i;
7c203422 410 bool is_zero = num == 0LL;
1c7a8e62
RV
411 int field_width = spec.field_width;
412 int precision = spec.precision;
1da177e4 413
d0484193
RV
414 BUILD_BUG_ON(sizeof(struct printf_spec) != 8);
415
9b706aee
DV
416 /* locase = 0 or 0x20. ORing digits or letters with 'locase'
417 * produces same digits or (maybe lowercased) letters */
fef20d9c
FW
418 locase = (spec.flags & SMALL);
419 if (spec.flags & LEFT)
420 spec.flags &= ~ZEROPAD;
1da177e4 421 sign = 0;
fef20d9c 422 if (spec.flags & SIGN) {
7b9186f5 423 if ((signed long long)num < 0) {
1da177e4 424 sign = '-';
7b9186f5 425 num = -(signed long long)num;
1c7a8e62 426 field_width--;
fef20d9c 427 } else if (spec.flags & PLUS) {
1da177e4 428 sign = '+';
1c7a8e62 429 field_width--;
fef20d9c 430 } else if (spec.flags & SPACE) {
1da177e4 431 sign = ' ';
1c7a8e62 432 field_width--;
1da177e4
LT
433 }
434 }
b39a7340 435 if (need_pfx) {
fef20d9c 436 if (spec.base == 16)
1c7a8e62 437 field_width -= 2;
7c203422 438 else if (!is_zero)
1c7a8e62 439 field_width--;
1da177e4 440 }
b39a7340
DV
441
442 /* generate full string in tmp[], in reverse order */
1da177e4 443 i = 0;
133fd9f5 444 if (num < spec.base)
3ea8d440 445 tmp[i++] = hex_asc_upper[num] | locase;
fef20d9c
FW
446 else if (spec.base != 10) { /* 8 or 16 */
447 int mask = spec.base - 1;
b39a7340 448 int shift = 3;
7b9186f5
AGR
449
450 if (spec.base == 16)
451 shift = 4;
b39a7340 452 do {
3ea8d440 453 tmp[i++] = (hex_asc_upper[((unsigned char)num) & mask] | locase);
b39a7340
DV
454 num >>= shift;
455 } while (num);
4277eedd
DV
456 } else { /* base 10 */
457 i = put_dec(tmp, num) - tmp;
458 }
b39a7340
DV
459
460 /* printing 100 using %2d gives "100", not "00" */
1c7a8e62
RV
461 if (i > precision)
462 precision = i;
b39a7340 463 /* leading space padding */
1c7a8e62 464 field_width -= precision;
51be17df 465 if (!(spec.flags & (ZEROPAD | LEFT))) {
1c7a8e62 466 while (--field_width >= 0) {
f796937a 467 if (buf < end)
1da177e4
LT
468 *buf = ' ';
469 ++buf;
470 }
471 }
b39a7340 472 /* sign */
1da177e4 473 if (sign) {
f796937a 474 if (buf < end)
1da177e4
LT
475 *buf = sign;
476 ++buf;
477 }
b39a7340
DV
478 /* "0x" / "0" prefix */
479 if (need_pfx) {
7c203422
PC
480 if (spec.base == 16 || !is_zero) {
481 if (buf < end)
482 *buf = '0';
483 ++buf;
484 }
fef20d9c 485 if (spec.base == 16) {
f796937a 486 if (buf < end)
9b706aee 487 *buf = ('X' | locase);
1da177e4
LT
488 ++buf;
489 }
490 }
b39a7340 491 /* zero or space padding */
fef20d9c 492 if (!(spec.flags & LEFT)) {
d1c1b121
RV
493 char c = ' ' + (spec.flags & ZEROPAD);
494 BUILD_BUG_ON(' ' + ZEROPAD != '0');
1c7a8e62 495 while (--field_width >= 0) {
f796937a 496 if (buf < end)
1da177e4
LT
497 *buf = c;
498 ++buf;
499 }
500 }
b39a7340 501 /* hmm even more zero padding? */
1c7a8e62 502 while (i <= --precision) {
f796937a 503 if (buf < end)
1da177e4
LT
504 *buf = '0';
505 ++buf;
506 }
b39a7340
DV
507 /* actual digits of result */
508 while (--i >= 0) {
f796937a 509 if (buf < end)
1da177e4
LT
510 *buf = tmp[i];
511 ++buf;
512 }
b39a7340 513 /* trailing space padding */
1c7a8e62 514 while (--field_width >= 0) {
f796937a 515 if (buf < end)
1da177e4
LT
516 *buf = ' ';
517 ++buf;
518 }
7b9186f5 519
1da177e4
LT
520 return buf;
521}
522
3cab1e71
AS
523static noinline_for_stack
524char *special_hex_number(char *buf, char *end, unsigned long long num, int size)
525{
526 struct printf_spec spec;
527
528 spec.type = FORMAT_TYPE_PTR;
529 spec.field_width = 2 + 2 * size; /* 0x + hex */
530 spec.flags = SPECIAL | SMALL | ZEROPAD;
531 spec.base = 16;
532 spec.precision = -1;
533
534 return number(buf, end, num, spec);
535}
536
cfccde04 537static void move_right(char *buf, char *end, unsigned len, unsigned spaces)
4b6ccca7
AV
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
cfccde04
RV
555/*
556 * Handle field width padding for a string.
557 * @buf: current buffer position
558 * @n: length of string
559 * @end: end of output buffer
560 * @spec: for field width and flags
561 * Returns: new buffer position after padding.
562 */
563static noinline_for_stack
564char *widen_string(char *buf, int n, char *end, struct printf_spec spec)
565{
566 unsigned spaces;
567
568 if (likely(n >= spec.field_width))
569 return buf;
570 /* we want to pad the sucker */
571 spaces = spec.field_width - n;
572 if (!(spec.flags & LEFT)) {
573 move_right(buf - n, end, n, spaces);
574 return buf + spaces;
575 }
576 while (spaces--) {
577 if (buf < end)
578 *buf = ' ';
579 ++buf;
580 }
581 return buf;
582}
583
95508cfa
RV
584static noinline_for_stack
585char *string(char *buf, char *end, const char *s, struct printf_spec spec)
586{
34fc8b90
RV
587 int len = 0;
588 size_t lim = spec.precision;
95508cfa
RV
589
590 if ((unsigned long)s < PAGE_SIZE)
591 s = "(null)";
592
34fc8b90
RV
593 while (lim--) {
594 char c = *s++;
595 if (!c)
596 break;
95508cfa 597 if (buf < end)
34fc8b90 598 *buf = c;
95508cfa 599 ++buf;
34fc8b90 600 ++len;
95508cfa 601 }
34fc8b90 602 return widen_string(buf, len, end, spec);
95508cfa
RV
603}
604
4b6ccca7
AV
605static noinline_for_stack
606char *dentry_name(char *buf, char *end, const struct dentry *d, struct printf_spec spec,
607 const char *fmt)
608{
609 const char *array[4], *s;
610 const struct dentry *p;
611 int depth;
612 int i, n;
613
614 switch (fmt[1]) {
615 case '2': case '3': case '4':
616 depth = fmt[1] - '0';
617 break;
618 default:
619 depth = 1;
620 }
621
622 rcu_read_lock();
623 for (i = 0; i < depth; i++, d = p) {
6aa7de05
MR
624 p = READ_ONCE(d->d_parent);
625 array[i] = READ_ONCE(d->d_name.name);
4b6ccca7
AV
626 if (p == d) {
627 if (i)
628 array[i] = "";
629 i++;
630 break;
631 }
632 }
633 s = array[--i];
634 for (n = 0; n != spec.precision; n++, buf++) {
635 char c = *s++;
636 if (!c) {
637 if (!i)
638 break;
639 c = '/';
640 s = array[--i];
641 }
642 if (buf < end)
643 *buf = c;
644 }
645 rcu_read_unlock();
cfccde04 646 return widen_string(buf, n, end, spec);
4b6ccca7
AV
647}
648
1031bc58
DM
649#ifdef CONFIG_BLOCK
650static noinline_for_stack
651char *bdev_name(char *buf, char *end, struct block_device *bdev,
652 struct printf_spec spec, const char *fmt)
653{
654 struct gendisk *hd = bdev->bd_disk;
655
656 buf = string(buf, end, hd->disk_name, spec);
657 if (bdev->bd_part->partno) {
658 if (isdigit(hd->disk_name[strlen(hd->disk_name)-1])) {
659 if (buf < end)
660 *buf = 'p';
661 buf++;
662 }
663 buf = number(buf, end, bdev->bd_part->partno, spec);
664 }
665 return buf;
666}
667#endif
668
cf3b429b
JP
669static noinline_for_stack
670char *symbol_string(char *buf, char *end, void *ptr,
b0d33c2b 671 struct printf_spec spec, const char *fmt)
0fe1ef24 672{
b0d33c2b 673 unsigned long value;
0fe1ef24
LT
674#ifdef CONFIG_KALLSYMS
675 char sym[KSYM_SYMBOL_LEN];
b0d33c2b
JP
676#endif
677
678 if (fmt[1] == 'R')
679 ptr = __builtin_extract_return_addr(ptr);
680 value = (unsigned long)ptr;
681
682#ifdef CONFIG_KALLSYMS
683 if (*fmt == 'B')
0f77a8d3 684 sprint_backtrace(sym, value);
b0d33c2b 685 else if (*fmt != 'f' && *fmt != 's')
0c8b946e
FW
686 sprint_symbol(sym, value);
687 else
4796dd20 688 sprint_symbol_no_offset(sym, value);
7b9186f5 689
fef20d9c 690 return string(buf, end, sym, spec);
0fe1ef24 691#else
3cab1e71 692 return special_hex_number(buf, end, value, sizeof(void *));
0fe1ef24
LT
693#endif
694}
695
abd4fe62
AS
696static const struct printf_spec default_str_spec = {
697 .field_width = -1,
698 .precision = -1,
699};
700
ce0b4910
AS
701static const struct printf_spec default_dec_spec = {
702 .base = 10,
703 .precision = -1,
704};
705
cf3b429b
JP
706static noinline_for_stack
707char *resource_string(char *buf, char *end, struct resource *res,
708 struct printf_spec spec, const char *fmt)
332d2e78
LT
709{
710#ifndef IO_RSRC_PRINTK_SIZE
28405372 711#define IO_RSRC_PRINTK_SIZE 6
332d2e78
LT
712#endif
713
714#ifndef MEM_RSRC_PRINTK_SIZE
28405372 715#define MEM_RSRC_PRINTK_SIZE 10
332d2e78 716#endif
4da0b66c 717 static const struct printf_spec io_spec = {
fef20d9c 718 .base = 16,
4da0b66c 719 .field_width = IO_RSRC_PRINTK_SIZE,
fef20d9c
FW
720 .precision = -1,
721 .flags = SPECIAL | SMALL | ZEROPAD,
722 };
4da0b66c
BH
723 static const struct printf_spec mem_spec = {
724 .base = 16,
725 .field_width = MEM_RSRC_PRINTK_SIZE,
726 .precision = -1,
727 .flags = SPECIAL | SMALL | ZEROPAD,
728 };
0f4050c7
BH
729 static const struct printf_spec bus_spec = {
730 .base = 16,
731 .field_width = 2,
732 .precision = -1,
733 .flags = SMALL | ZEROPAD,
734 };
4da0b66c 735 static const struct printf_spec str_spec = {
fd95541e
BH
736 .field_width = -1,
737 .precision = 10,
738 .flags = LEFT,
739 };
4da0b66c 740 static const struct printf_spec flag_spec = {
fd95541e
BH
741 .base = 16,
742 .precision = -1,
743 .flags = SPECIAL | SMALL,
744 };
c7dabef8
BH
745
746 /* 32-bit res (sizeof==4): 10 chars in dec, 10 in hex ("0x" + 8)
747 * 64-bit res (sizeof==8): 20 chars in dec, 18 in hex ("0x" + 16) */
748#define RSRC_BUF_SIZE ((2 * sizeof(resource_size_t)) + 4)
749#define FLAG_BUF_SIZE (2 * sizeof(res->flags))
9d7cca04 750#define DECODED_BUF_SIZE sizeof("[mem - 64bit pref window disabled]")
c7dabef8
BH
751#define RAW_BUF_SIZE sizeof("[mem - flags 0x]")
752 char sym[max(2*RSRC_BUF_SIZE + DECODED_BUF_SIZE,
753 2*RSRC_BUF_SIZE + FLAG_BUF_SIZE + RAW_BUF_SIZE)];
754
332d2e78 755 char *p = sym, *pend = sym + sizeof(sym);
c7dabef8 756 int decode = (fmt[0] == 'R') ? 1 : 0;
4da0b66c 757 const struct printf_spec *specp;
332d2e78
LT
758
759 *p++ = '[';
4da0b66c 760 if (res->flags & IORESOURCE_IO) {
c7dabef8 761 p = string(p, pend, "io ", str_spec);
4da0b66c
BH
762 specp = &io_spec;
763 } else if (res->flags & IORESOURCE_MEM) {
c7dabef8 764 p = string(p, pend, "mem ", str_spec);
4da0b66c
BH
765 specp = &mem_spec;
766 } else if (res->flags & IORESOURCE_IRQ) {
c7dabef8 767 p = string(p, pend, "irq ", str_spec);
ce0b4910 768 specp = &default_dec_spec;
4da0b66c 769 } else if (res->flags & IORESOURCE_DMA) {
c7dabef8 770 p = string(p, pend, "dma ", str_spec);
ce0b4910 771 specp = &default_dec_spec;
0f4050c7
BH
772 } else if (res->flags & IORESOURCE_BUS) {
773 p = string(p, pend, "bus ", str_spec);
774 specp = &bus_spec;
4da0b66c 775 } else {
c7dabef8 776 p = string(p, pend, "??? ", str_spec);
4da0b66c 777 specp = &mem_spec;
c7dabef8 778 decode = 0;
fd95541e 779 }
d19cb803
BH
780 if (decode && res->flags & IORESOURCE_UNSET) {
781 p = string(p, pend, "size ", str_spec);
782 p = number(p, pend, resource_size(res), *specp);
783 } else {
784 p = number(p, pend, res->start, *specp);
785 if (res->start != res->end) {
786 *p++ = '-';
787 p = number(p, pend, res->end, *specp);
788 }
c91d3376 789 }
c7dabef8 790 if (decode) {
fd95541e
BH
791 if (res->flags & IORESOURCE_MEM_64)
792 p = string(p, pend, " 64bit", str_spec);
793 if (res->flags & IORESOURCE_PREFETCH)
794 p = string(p, pend, " pref", str_spec);
9d7cca04
BH
795 if (res->flags & IORESOURCE_WINDOW)
796 p = string(p, pend, " window", str_spec);
fd95541e
BH
797 if (res->flags & IORESOURCE_DISABLED)
798 p = string(p, pend, " disabled", str_spec);
c7dabef8
BH
799 } else {
800 p = string(p, pend, " flags ", str_spec);
801 p = number(p, pend, res->flags, flag_spec);
fd95541e 802 }
332d2e78 803 *p++ = ']';
c7dabef8 804 *p = '\0';
332d2e78 805
fef20d9c 806 return string(buf, end, sym, spec);
332d2e78
LT
807}
808
31550a16
AS
809static noinline_for_stack
810char *hex_string(char *buf, char *end, u8 *addr, struct printf_spec spec,
811 const char *fmt)
812{
360603a1 813 int i, len = 1; /* if we pass '%ph[CDN]', field width remains
31550a16
AS
814 negative value, fallback to the default */
815 char separator;
816
817 if (spec.field_width == 0)
818 /* nothing to print */
819 return buf;
820
821 if (ZERO_OR_NULL_PTR(addr))
822 /* NULL pointer */
823 return string(buf, end, NULL, spec);
824
825 switch (fmt[1]) {
826 case 'C':
827 separator = ':';
828 break;
829 case 'D':
830 separator = '-';
831 break;
832 case 'N':
833 separator = 0;
834 break;
835 default:
836 separator = ' ';
837 break;
838 }
839
840 if (spec.field_width > 0)
841 len = min_t(int, spec.field_width, 64);
842
9c98f235
RV
843 for (i = 0; i < len; ++i) {
844 if (buf < end)
845 *buf = hex_asc_hi(addr[i]);
846 ++buf;
847 if (buf < end)
848 *buf = hex_asc_lo(addr[i]);
849 ++buf;
31550a16 850
9c98f235
RV
851 if (separator && i != len - 1) {
852 if (buf < end)
853 *buf = separator;
854 ++buf;
855 }
31550a16
AS
856 }
857
858 return buf;
859}
860
dbc760bc
TH
861static noinline_for_stack
862char *bitmap_string(char *buf, char *end, unsigned long *bitmap,
863 struct printf_spec spec, const char *fmt)
864{
865 const int CHUNKSZ = 32;
866 int nr_bits = max_t(int, spec.field_width, 0);
867 int i, chunksz;
868 bool first = true;
869
870 /* reused to print numbers */
871 spec = (struct printf_spec){ .flags = SMALL | ZEROPAD, .base = 16 };
872
873 chunksz = nr_bits & (CHUNKSZ - 1);
874 if (chunksz == 0)
875 chunksz = CHUNKSZ;
876
877 i = ALIGN(nr_bits, CHUNKSZ) - CHUNKSZ;
878 for (; i >= 0; i -= CHUNKSZ) {
879 u32 chunkmask, val;
880 int word, bit;
881
882 chunkmask = ((1ULL << chunksz) - 1);
883 word = i / BITS_PER_LONG;
884 bit = i % BITS_PER_LONG;
885 val = (bitmap[word] >> bit) & chunkmask;
886
887 if (!first) {
888 if (buf < end)
889 *buf = ',';
890 buf++;
891 }
892 first = false;
893
894 spec.field_width = DIV_ROUND_UP(chunksz, 4);
895 buf = number(buf, end, val, spec);
896
897 chunksz = CHUNKSZ;
898 }
899 return buf;
900}
901
902static noinline_for_stack
903char *bitmap_list_string(char *buf, char *end, unsigned long *bitmap,
904 struct printf_spec spec, const char *fmt)
905{
906 int nr_bits = max_t(int, spec.field_width, 0);
907 /* current bit is 'cur', most recently seen range is [rbot, rtop] */
908 int cur, rbot, rtop;
909 bool first = true;
910
dbc760bc
TH
911 rbot = cur = find_first_bit(bitmap, nr_bits);
912 while (cur < nr_bits) {
913 rtop = cur;
914 cur = find_next_bit(bitmap, nr_bits, cur + 1);
915 if (cur < nr_bits && cur <= rtop + 1)
916 continue;
917
918 if (!first) {
919 if (buf < end)
920 *buf = ',';
921 buf++;
922 }
923 first = false;
924
ce0b4910 925 buf = number(buf, end, rbot, default_dec_spec);
dbc760bc
TH
926 if (rbot < rtop) {
927 if (buf < end)
928 *buf = '-';
929 buf++;
930
ce0b4910 931 buf = number(buf, end, rtop, default_dec_spec);
dbc760bc
TH
932 }
933
934 rbot = cur;
935 }
936 return buf;
937}
938
cf3b429b
JP
939static noinline_for_stack
940char *mac_address_string(char *buf, char *end, u8 *addr,
941 struct printf_spec spec, const char *fmt)
dd45c9cf 942{
8a27f7c9 943 char mac_addr[sizeof("xx:xx:xx:xx:xx:xx")];
dd45c9cf
HH
944 char *p = mac_addr;
945 int i;
bc7259a2 946 char separator;
76597ff9 947 bool reversed = false;
bc7259a2 948
76597ff9
AE
949 switch (fmt[1]) {
950 case 'F':
bc7259a2 951 separator = '-';
76597ff9
AE
952 break;
953
954 case 'R':
955 reversed = true;
956 /* fall through */
957
958 default:
bc7259a2 959 separator = ':';
76597ff9 960 break;
bc7259a2 961 }
dd45c9cf
HH
962
963 for (i = 0; i < 6; i++) {
76597ff9
AE
964 if (reversed)
965 p = hex_byte_pack(p, addr[5 - i]);
966 else
967 p = hex_byte_pack(p, addr[i]);
968
8a27f7c9 969 if (fmt[0] == 'M' && i != 5)
bc7259a2 970 *p++ = separator;
dd45c9cf
HH
971 }
972 *p = '\0';
973
fef20d9c 974 return string(buf, end, mac_addr, spec);
dd45c9cf
HH
975}
976
cf3b429b
JP
977static noinline_for_stack
978char *ip4_string(char *p, const u8 *addr, const char *fmt)
8a27f7c9
JP
979{
980 int i;
0159f24e
JP
981 bool leading_zeros = (fmt[0] == 'i');
982 int index;
983 int step;
984
985 switch (fmt[2]) {
986 case 'h':
987#ifdef __BIG_ENDIAN
988 index = 0;
989 step = 1;
990#else
991 index = 3;
992 step = -1;
993#endif
994 break;
995 case 'l':
996 index = 3;
997 step = -1;
998 break;
999 case 'n':
1000 case 'b':
1001 default:
1002 index = 0;
1003 step = 1;
1004 break;
1005 }
8a27f7c9 1006 for (i = 0; i < 4; i++) {
7c43d9a3 1007 char temp[4] __aligned(2); /* hold each IP quad in reverse order */
133fd9f5 1008 int digits = put_dec_trunc8(temp, addr[index]) - temp;
8a27f7c9
JP
1009 if (leading_zeros) {
1010 if (digits < 3)
1011 *p++ = '0';
1012 if (digits < 2)
1013 *p++ = '0';
1014 }
1015 /* reverse the digits in the quad */
1016 while (digits--)
1017 *p++ = temp[digits];
1018 if (i < 3)
1019 *p++ = '.';
0159f24e 1020 index += step;
8a27f7c9 1021 }
8a27f7c9 1022 *p = '\0';
7b9186f5 1023
8a27f7c9
JP
1024 return p;
1025}
1026
cf3b429b
JP
1027static noinline_for_stack
1028char *ip6_compressed_string(char *p, const char *addr)
689afa7d 1029{
7b9186f5 1030 int i, j, range;
8a27f7c9
JP
1031 unsigned char zerolength[8];
1032 int longest = 1;
1033 int colonpos = -1;
1034 u16 word;
7b9186f5 1035 u8 hi, lo;
8a27f7c9 1036 bool needcolon = false;
eb78cd26
JP
1037 bool useIPv4;
1038 struct in6_addr in6;
1039
1040 memcpy(&in6, addr, sizeof(struct in6_addr));
1041
1042 useIPv4 = ipv6_addr_v4mapped(&in6) || ipv6_addr_is_isatap(&in6);
8a27f7c9
JP
1043
1044 memset(zerolength, 0, sizeof(zerolength));
1045
1046 if (useIPv4)
1047 range = 6;
1048 else
1049 range = 8;
1050
1051 /* find position of longest 0 run */
1052 for (i = 0; i < range; i++) {
1053 for (j = i; j < range; j++) {
eb78cd26 1054 if (in6.s6_addr16[j] != 0)
8a27f7c9
JP
1055 break;
1056 zerolength[i]++;
1057 }
1058 }
1059 for (i = 0; i < range; i++) {
1060 if (zerolength[i] > longest) {
1061 longest = zerolength[i];
1062 colonpos = i;
1063 }
1064 }
29cf519e
JP
1065 if (longest == 1) /* don't compress a single 0 */
1066 colonpos = -1;
689afa7d 1067
8a27f7c9
JP
1068 /* emit address */
1069 for (i = 0; i < range; i++) {
1070 if (i == colonpos) {
1071 if (needcolon || i == 0)
1072 *p++ = ':';
1073 *p++ = ':';
1074 needcolon = false;
1075 i += longest - 1;
1076 continue;
1077 }
1078 if (needcolon) {
1079 *p++ = ':';
1080 needcolon = false;
1081 }
1082 /* hex u16 without leading 0s */
eb78cd26 1083 word = ntohs(in6.s6_addr16[i]);
8a27f7c9
JP
1084 hi = word >> 8;
1085 lo = word & 0xff;
1086 if (hi) {
1087 if (hi > 0x0f)
55036ba7 1088 p = hex_byte_pack(p, hi);
8a27f7c9
JP
1089 else
1090 *p++ = hex_asc_lo(hi);
55036ba7 1091 p = hex_byte_pack(p, lo);
8a27f7c9 1092 }
b5ff992b 1093 else if (lo > 0x0f)
55036ba7 1094 p = hex_byte_pack(p, lo);
8a27f7c9
JP
1095 else
1096 *p++ = hex_asc_lo(lo);
1097 needcolon = true;
1098 }
1099
1100 if (useIPv4) {
1101 if (needcolon)
1102 *p++ = ':';
0159f24e 1103 p = ip4_string(p, &in6.s6_addr[12], "I4");
8a27f7c9 1104 }
8a27f7c9 1105 *p = '\0';
7b9186f5 1106
8a27f7c9
JP
1107 return p;
1108}
1109
cf3b429b
JP
1110static noinline_for_stack
1111char *ip6_string(char *p, const char *addr, const char *fmt)
8a27f7c9
JP
1112{
1113 int i;
7b9186f5 1114
689afa7d 1115 for (i = 0; i < 8; i++) {
55036ba7
AS
1116 p = hex_byte_pack(p, *addr++);
1117 p = hex_byte_pack(p, *addr++);
8a27f7c9 1118 if (fmt[0] == 'I' && i != 7)
689afa7d
HH
1119 *p++ = ':';
1120 }
1121 *p = '\0';
7b9186f5 1122
8a27f7c9
JP
1123 return p;
1124}
1125
cf3b429b
JP
1126static noinline_for_stack
1127char *ip6_addr_string(char *buf, char *end, const u8 *addr,
1128 struct printf_spec spec, const char *fmt)
8a27f7c9
JP
1129{
1130 char ip6_addr[sizeof("xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:255.255.255.255")];
1131
1132 if (fmt[0] == 'I' && fmt[2] == 'c')
eb78cd26 1133 ip6_compressed_string(ip6_addr, addr);
8a27f7c9 1134 else
eb78cd26 1135 ip6_string(ip6_addr, addr, fmt);
689afa7d 1136
fef20d9c 1137 return string(buf, end, ip6_addr, spec);
689afa7d
HH
1138}
1139
cf3b429b
JP
1140static noinline_for_stack
1141char *ip4_addr_string(char *buf, char *end, const u8 *addr,
1142 struct printf_spec spec, const char *fmt)
4aa99606 1143{
8a27f7c9 1144 char ip4_addr[sizeof("255.255.255.255")];
4aa99606 1145
0159f24e 1146 ip4_string(ip4_addr, addr, fmt);
4aa99606 1147
fef20d9c 1148 return string(buf, end, ip4_addr, spec);
4aa99606
HH
1149}
1150
10679643
DB
1151static noinline_for_stack
1152char *ip6_addr_string_sa(char *buf, char *end, const struct sockaddr_in6 *sa,
1153 struct printf_spec spec, const char *fmt)
1154{
1155 bool have_p = false, have_s = false, have_f = false, have_c = false;
1156 char ip6_addr[sizeof("[xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:255.255.255.255]") +
1157 sizeof(":12345") + sizeof("/123456789") +
1158 sizeof("%1234567890")];
1159 char *p = ip6_addr, *pend = ip6_addr + sizeof(ip6_addr);
1160 const u8 *addr = (const u8 *) &sa->sin6_addr;
1161 char fmt6[2] = { fmt[0], '6' };
1162 u8 off = 0;
1163
1164 fmt++;
1165 while (isalpha(*++fmt)) {
1166 switch (*fmt) {
1167 case 'p':
1168 have_p = true;
1169 break;
1170 case 'f':
1171 have_f = true;
1172 break;
1173 case 's':
1174 have_s = true;
1175 break;
1176 case 'c':
1177 have_c = true;
1178 break;
1179 }
1180 }
1181
1182 if (have_p || have_s || have_f) {
1183 *p = '[';
1184 off = 1;
1185 }
1186
1187 if (fmt6[0] == 'I' && have_c)
1188 p = ip6_compressed_string(ip6_addr + off, addr);
1189 else
1190 p = ip6_string(ip6_addr + off, addr, fmt6);
1191
1192 if (have_p || have_s || have_f)
1193 *p++ = ']';
1194
1195 if (have_p) {
1196 *p++ = ':';
1197 p = number(p, pend, ntohs(sa->sin6_port), spec);
1198 }
1199 if (have_f) {
1200 *p++ = '/';
1201 p = number(p, pend, ntohl(sa->sin6_flowinfo &
1202 IPV6_FLOWINFO_MASK), spec);
1203 }
1204 if (have_s) {
1205 *p++ = '%';
1206 p = number(p, pend, sa->sin6_scope_id, spec);
1207 }
1208 *p = '\0';
1209
1210 return string(buf, end, ip6_addr, spec);
1211}
1212
1213static noinline_for_stack
1214char *ip4_addr_string_sa(char *buf, char *end, const struct sockaddr_in *sa,
1215 struct printf_spec spec, const char *fmt)
1216{
1217 bool have_p = false;
1218 char *p, ip4_addr[sizeof("255.255.255.255") + sizeof(":12345")];
1219 char *pend = ip4_addr + sizeof(ip4_addr);
1220 const u8 *addr = (const u8 *) &sa->sin_addr.s_addr;
1221 char fmt4[3] = { fmt[0], '4', 0 };
1222
1223 fmt++;
1224 while (isalpha(*++fmt)) {
1225 switch (*fmt) {
1226 case 'p':
1227 have_p = true;
1228 break;
1229 case 'h':
1230 case 'l':
1231 case 'n':
1232 case 'b':
1233 fmt4[2] = *fmt;
1234 break;
1235 }
1236 }
1237
1238 p = ip4_string(ip4_addr, addr, fmt4);
1239 if (have_p) {
1240 *p++ = ':';
1241 p = number(p, pend, ntohs(sa->sin_port), spec);
1242 }
1243 *p = '\0';
1244
1245 return string(buf, end, ip4_addr, spec);
1246}
1247
71dca95d
AS
1248static noinline_for_stack
1249char *escaped_string(char *buf, char *end, u8 *addr, struct printf_spec spec,
1250 const char *fmt)
1251{
1252 bool found = true;
1253 int count = 1;
1254 unsigned int flags = 0;
1255 int len;
1256
1257 if (spec.field_width == 0)
1258 return buf; /* nothing to print */
1259
1260 if (ZERO_OR_NULL_PTR(addr))
1261 return string(buf, end, NULL, spec); /* NULL pointer */
1262
1263
1264 do {
1265 switch (fmt[count++]) {
1266 case 'a':
1267 flags |= ESCAPE_ANY;
1268 break;
1269 case 'c':
1270 flags |= ESCAPE_SPECIAL;
1271 break;
1272 case 'h':
1273 flags |= ESCAPE_HEX;
1274 break;
1275 case 'n':
1276 flags |= ESCAPE_NULL;
1277 break;
1278 case 'o':
1279 flags |= ESCAPE_OCTAL;
1280 break;
1281 case 'p':
1282 flags |= ESCAPE_NP;
1283 break;
1284 case 's':
1285 flags |= ESCAPE_SPACE;
1286 break;
1287 default:
1288 found = false;
1289 break;
1290 }
1291 } while (found);
1292
1293 if (!flags)
1294 flags = ESCAPE_ANY_NP;
1295
1296 len = spec.field_width < 0 ? 1 : spec.field_width;
1297
41416f23
RV
1298 /*
1299 * string_escape_mem() writes as many characters as it can to
1300 * the given buffer, and returns the total size of the output
1301 * had the buffer been big enough.
1302 */
1303 buf += string_escape_mem(addr, len, buf, buf < end ? end - buf : 0, flags, NULL);
71dca95d
AS
1304
1305 return buf;
1306}
1307
cf3b429b
JP
1308static noinline_for_stack
1309char *uuid_string(char *buf, char *end, const u8 *addr,
1310 struct printf_spec spec, const char *fmt)
9ac6e44e 1311{
2b1b0d66 1312 char uuid[UUID_STRING_LEN + 1];
9ac6e44e
JP
1313 char *p = uuid;
1314 int i;
f9727a17 1315 const u8 *index = uuid_index;
9ac6e44e
JP
1316 bool uc = false;
1317
1318 switch (*(++fmt)) {
1319 case 'L':
1320 uc = true; /* fall-through */
1321 case 'l':
f9727a17 1322 index = guid_index;
9ac6e44e
JP
1323 break;
1324 case 'B':
1325 uc = true;
1326 break;
1327 }
1328
1329 for (i = 0; i < 16; i++) {
aa4ea1c3
AS
1330 if (uc)
1331 p = hex_byte_pack_upper(p, addr[index[i]]);
1332 else
1333 p = hex_byte_pack(p, addr[index[i]]);
9ac6e44e
JP
1334 switch (i) {
1335 case 3:
1336 case 5:
1337 case 7:
1338 case 9:
1339 *p++ = '-';
1340 break;
1341 }
1342 }
1343
1344 *p = 0;
1345
9ac6e44e
JP
1346 return string(buf, end, uuid, spec);
1347}
1348
57e73442
TH
1349int kptr_restrict __read_mostly;
1350
1351static noinline_for_stack
1352char *restricted_pointer(char *buf, char *end, const void *ptr,
1353 struct printf_spec spec)
1354{
1355 spec.base = 16;
1356 spec.flags |= SMALL;
1357 if (spec.field_width == -1) {
1358 spec.field_width = 2 * sizeof(ptr);
1359 spec.flags |= ZEROPAD;
1360 }
1361
1362 switch (kptr_restrict) {
1363 case 0:
1364 /* Always print %pK values */
1365 break;
1366 case 1: {
1367 const struct cred *cred;
1368
1369 /*
1370 * kptr_restrict==1 cannot be used in IRQ context
1371 * because its test for CAP_SYSLOG would be meaningless.
1372 */
1373 if (in_irq() || in_serving_softirq() || in_nmi())
1374 return string(buf, end, "pK-error", spec);
1375
1376 /*
1377 * Only print the real pointer value if the current
1378 * process has CAP_SYSLOG and is running with the
1379 * same credentials it started with. This is because
1380 * access to files is checked at open() time, but %pK
1381 * checks permission at read() time. We don't want to
1382 * leak pointer values if a binary opens a file using
1383 * %pK and then elevates privileges before reading it.
1384 */
1385 cred = current_cred();
1386 if (!has_capability_noaudit(current, CAP_SYSLOG) ||
1387 !uid_eq(cred->euid, cred->uid) ||
1388 !gid_eq(cred->egid, cred->gid))
1389 ptr = NULL;
1390 break;
1391 }
1392 case 2:
1393 default:
1394 /* Always print 0's for %pK */
1395 ptr = NULL;
1396 break;
1397 }
1398
1399 return number(buf, end, (unsigned long)ptr, spec);
1400}
1401
5b17aecf
AS
1402static noinline_for_stack
1403char *netdev_bits(char *buf, char *end, const void *addr, const char *fmt)
c8f44aff 1404{
5b17aecf
AS
1405 unsigned long long num;
1406 int size;
1407
1408 switch (fmt[1]) {
1409 case 'F':
1410 num = *(const netdev_features_t *)addr;
1411 size = sizeof(netdev_features_t);
1412 break;
1413 default:
1414 num = (unsigned long)addr;
1415 size = sizeof(unsigned long);
1416 break;
1417 }
c8f44aff 1418
3cab1e71 1419 return special_hex_number(buf, end, num, size);
c8f44aff
MM
1420}
1421
aaf07621 1422static noinline_for_stack
3cab1e71 1423char *address_val(char *buf, char *end, const void *addr, const char *fmt)
aaf07621
JP
1424{
1425 unsigned long long num;
3cab1e71 1426 int size;
aaf07621
JP
1427
1428 switch (fmt[1]) {
1429 case 'd':
1430 num = *(const dma_addr_t *)addr;
3cab1e71 1431 size = sizeof(dma_addr_t);
aaf07621
JP
1432 break;
1433 case 'p':
1434 default:
1435 num = *(const phys_addr_t *)addr;
3cab1e71 1436 size = sizeof(phys_addr_t);
aaf07621
JP
1437 break;
1438 }
1439
3cab1e71 1440 return special_hex_number(buf, end, num, size);
aaf07621
JP
1441}
1442
900cca29
GU
1443static noinline_for_stack
1444char *clock(char *buf, char *end, struct clk *clk, struct printf_spec spec,
1445 const char *fmt)
1446{
1447 if (!IS_ENABLED(CONFIG_HAVE_CLK) || !clk)
1448 return string(buf, end, NULL, spec);
1449
1450 switch (fmt[1]) {
1451 case 'r':
1452 return number(buf, end, clk_get_rate(clk), spec);
1453
1454 case 'n':
1455 default:
1456#ifdef CONFIG_COMMON_CLK
1457 return string(buf, end, __clk_get_name(clk), spec);
1458#else
3cab1e71 1459 return special_hex_number(buf, end, (unsigned long)clk, sizeof(unsigned long));
900cca29
GU
1460#endif
1461 }
1462}
1463
edf14cdb
VB
1464static
1465char *format_flags(char *buf, char *end, unsigned long flags,
1466 const struct trace_print_flags *names)
1467{
1468 unsigned long mask;
edf14cdb
VB
1469 const struct printf_spec numspec = {
1470 .flags = SPECIAL|SMALL,
1471 .field_width = -1,
1472 .precision = -1,
1473 .base = 16,
1474 };
1475
1476 for ( ; flags && names->name; names++) {
1477 mask = names->mask;
1478 if ((flags & mask) != mask)
1479 continue;
1480
abd4fe62 1481 buf = string(buf, end, names->name, default_str_spec);
edf14cdb
VB
1482
1483 flags &= ~mask;
1484 if (flags) {
1485 if (buf < end)
1486 *buf = '|';
1487 buf++;
1488 }
1489 }
1490
1491 if (flags)
1492 buf = number(buf, end, flags, numspec);
1493
1494 return buf;
1495}
1496
1497static noinline_for_stack
1498char *flags_string(char *buf, char *end, void *flags_ptr, const char *fmt)
1499{
1500 unsigned long flags;
1501 const struct trace_print_flags *names;
1502
1503 switch (fmt[1]) {
1504 case 'p':
1505 flags = *(unsigned long *)flags_ptr;
1506 /* Remove zone id */
1507 flags &= (1UL << NR_PAGEFLAGS) - 1;
1508 names = pageflag_names;
1509 break;
1510 case 'v':
1511 flags = *(unsigned long *)flags_ptr;
1512 names = vmaflag_names;
1513 break;
1514 case 'g':
1515 flags = *(gfp_t *)flags_ptr;
1516 names = gfpflag_names;
1517 break;
1518 default:
1519 WARN_ONCE(1, "Unsupported flags modifier: %c\n", fmt[1]);
1520 return buf;
1521 }
1522
1523 return format_flags(buf, end, flags, names);
1524}
1525
ce4fecf1
PA
1526static const char *device_node_name_for_depth(const struct device_node *np, int depth)
1527{
1528 for ( ; np && depth; depth--)
1529 np = np->parent;
1530
1531 return kbasename(np->full_name);
1532}
1533
1534static noinline_for_stack
1535char *device_node_gen_full_name(const struct device_node *np, char *buf, char *end)
1536{
1537 int depth;
1538 const struct device_node *parent = np->parent;
ce4fecf1
PA
1539
1540 /* special case for root node */
1541 if (!parent)
abd4fe62 1542 return string(buf, end, "/", default_str_spec);
ce4fecf1
PA
1543
1544 for (depth = 0; parent->parent; depth++)
1545 parent = parent->parent;
1546
1547 for ( ; depth >= 0; depth--) {
abd4fe62 1548 buf = string(buf, end, "/", default_str_spec);
ce4fecf1 1549 buf = string(buf, end, device_node_name_for_depth(np, depth),
abd4fe62 1550 default_str_spec);
ce4fecf1
PA
1551 }
1552 return buf;
1553}
1554
1555static noinline_for_stack
1556char *device_node_string(char *buf, char *end, struct device_node *dn,
1557 struct printf_spec spec, const char *fmt)
1558{
1559 char tbuf[sizeof("xxxx") + 1];
1560 const char *p;
1561 int ret;
1562 char *buf_start = buf;
1563 struct property *prop;
1564 bool has_mult, pass;
1565 static const struct printf_spec num_spec = {
1566 .flags = SMALL,
1567 .field_width = -1,
1568 .precision = -1,
1569 .base = 10,
1570 };
1571
1572 struct printf_spec str_spec = spec;
1573 str_spec.field_width = -1;
1574
1575 if (!IS_ENABLED(CONFIG_OF))
1576 return string(buf, end, "(!OF)", spec);
1577
1578 if ((unsigned long)dn < PAGE_SIZE)
1579 return string(buf, end, "(null)", spec);
1580
1581 /* simple case without anything any more format specifiers */
1582 fmt++;
1583 if (fmt[0] == '\0' || strcspn(fmt,"fnpPFcC") > 0)
1584 fmt = "f";
1585
1586 for (pass = false; strspn(fmt,"fnpPFcC"); fmt++, pass = true) {
1587 if (pass) {
1588 if (buf < end)
1589 *buf = ':';
1590 buf++;
1591 }
1592
1593 switch (*fmt) {
1594 case 'f': /* full_name */
1595 buf = device_node_gen_full_name(dn, buf, end);
1596 break;
1597 case 'n': /* name */
1598 buf = string(buf, end, dn->name, str_spec);
1599 break;
1600 case 'p': /* phandle */
1601 buf = number(buf, end, (unsigned int)dn->phandle, num_spec);
1602 break;
1603 case 'P': /* path-spec */
1604 p = kbasename(of_node_full_name(dn));
1605 if (!p[1])
1606 p = "/";
1607 buf = string(buf, end, p, str_spec);
1608 break;
1609 case 'F': /* flags */
1610 tbuf[0] = of_node_check_flag(dn, OF_DYNAMIC) ? 'D' : '-';
1611 tbuf[1] = of_node_check_flag(dn, OF_DETACHED) ? 'd' : '-';
1612 tbuf[2] = of_node_check_flag(dn, OF_POPULATED) ? 'P' : '-';
1613 tbuf[3] = of_node_check_flag(dn, OF_POPULATED_BUS) ? 'B' : '-';
1614 tbuf[4] = 0;
1615 buf = string(buf, end, tbuf, str_spec);
1616 break;
1617 case 'c': /* major compatible string */
1618 ret = of_property_read_string(dn, "compatible", &p);
1619 if (!ret)
1620 buf = string(buf, end, p, str_spec);
1621 break;
1622 case 'C': /* full compatible string */
1623 has_mult = false;
1624 of_property_for_each_string(dn, "compatible", prop, p) {
1625 if (has_mult)
1626 buf = string(buf, end, ",", str_spec);
1627 buf = string(buf, end, "\"", str_spec);
1628 buf = string(buf, end, p, str_spec);
1629 buf = string(buf, end, "\"", str_spec);
1630
1631 has_mult = true;
1632 }
1633 break;
1634 default:
1635 break;
1636 }
1637 }
1638
1639 return widen_string(buf, buf - buf_start, end, spec);
1640}
1641
7b1924a1
TH
1642static noinline_for_stack
1643char *pointer_string(char *buf, char *end, const void *ptr,
1644 struct printf_spec spec)
1645{
1646 spec.base = 16;
1647 spec.flags |= SMALL;
1648 if (spec.field_width == -1) {
1649 spec.field_width = 2 * sizeof(ptr);
1650 spec.flags |= ZEROPAD;
1651 }
1652
1653 return number(buf, end, (unsigned long int)ptr, spec);
1654}
1655
ad67b74d
TH
1656static bool have_filled_random_ptr_key __read_mostly;
1657static siphash_key_t ptr_key __read_mostly;
1658
1659static void fill_random_ptr_key(struct random_ready_callback *unused)
1660{
1661 get_random_bytes(&ptr_key, sizeof(ptr_key));
1662 /*
1663 * have_filled_random_ptr_key==true is dependent on get_random_bytes().
1664 * ptr_to_id() needs to see have_filled_random_ptr_key==true
1665 * after get_random_bytes() returns.
1666 */
1667 smp_mb();
1668 WRITE_ONCE(have_filled_random_ptr_key, true);
1669}
1670
1671static struct random_ready_callback random_ready = {
1672 .func = fill_random_ptr_key
1673};
1674
1675static int __init initialize_ptr_random(void)
1676{
1677 int ret = add_random_ready_callback(&random_ready);
1678
1679 if (!ret) {
1680 return 0;
1681 } else if (ret == -EALREADY) {
1682 fill_random_ptr_key(&random_ready);
1683 return 0;
1684 }
1685
1686 return ret;
1687}
1688early_initcall(initialize_ptr_random);
1689
1690/* Maps a pointer to a 32 bit unique identifier. */
1691static char *ptr_to_id(char *buf, char *end, void *ptr, struct printf_spec spec)
1692{
1693 unsigned long hashval;
1694 const int default_width = 2 * sizeof(ptr);
1695
1696 if (unlikely(!have_filled_random_ptr_key)) {
1697 spec.field_width = default_width;
1698 /* string length must be less than default_width */
1699 return string(buf, end, "(ptrval)", spec);
1700 }
1701
1702#ifdef CONFIG_64BIT
1703 hashval = (unsigned long)siphash_1u64((u64)ptr, &ptr_key);
1704 /*
1705 * Mask off the first 32 bits, this makes explicit that we have
1706 * modified the address (and 32 bits is plenty for a unique ID).
1707 */
1708 hashval = hashval & 0xffffffff;
1709#else
1710 hashval = (unsigned long)siphash_1u32((u32)ptr, &ptr_key);
1711#endif
1712
1713 spec.flags |= SMALL;
1714 if (spec.field_width == -1) {
1715 spec.field_width = default_width;
1716 spec.flags |= ZEROPAD;
1717 }
1718 spec.base = 16;
1719
1720 return number(buf, end, hashval, spec);
1721}
1722
4d8a743c
LT
1723/*
1724 * Show a '%p' thing. A kernel extension is that the '%p' is followed
1725 * by an extra set of alphanumeric characters that are extended format
1726 * specifiers.
1727 *
0b523769
JP
1728 * Please update scripts/checkpatch.pl when adding/removing conversion
1729 * characters. (Search for "check for vsprintf extension").
1730 *
332d2e78
LT
1731 * Right now we handle:
1732 *
0c8b946e
FW
1733 * - 'F' For symbolic function descriptor pointers with offset
1734 * - 'f' For simple symbolic function names without offset
0efb4d20
SR
1735 * - 'S' For symbolic direct pointers with offset
1736 * - 's' For symbolic direct pointers without offset
b0d33c2b 1737 * - '[FfSs]R' as above with __builtin_extract_return_addr() translation
0f77a8d3 1738 * - 'B' For backtraced symbolic direct pointers with offset
c7dabef8
BH
1739 * - 'R' For decoded struct resource, e.g., [mem 0x0-0x1f 64bit pref]
1740 * - 'r' For raw struct resource, e.g., [mem 0x0-0x1f flags 0x201]
dbc760bc
TH
1741 * - 'b[l]' For a bitmap, the number of bits is determined by the field
1742 * width which must be explicitly specified either as part of the
1743 * format string '%32b[l]' or through '%*b[l]', [l] selects
1744 * range-list format instead of hex format
dd45c9cf
HH
1745 * - 'M' For a 6-byte MAC address, it prints the address in the
1746 * usual colon-separated hex notation
8a27f7c9 1747 * - 'm' For a 6-byte MAC address, it prints the hex address without colons
bc7259a2 1748 * - 'MF' For a 6-byte MAC FDDI address, it prints the address
c8e00060 1749 * with a dash-separated hex notation
7c59154e 1750 * - '[mM]R' For a 6-byte MAC address, Reverse order (Bluetooth)
8a27f7c9
JP
1751 * - 'I' [46] for IPv4/IPv6 addresses printed in the usual way
1752 * IPv4 uses dot-separated decimal without leading 0's (1.2.3.4)
1753 * IPv6 uses colon separated network-order 16 bit hex with leading 0's
10679643
DB
1754 * [S][pfs]
1755 * Generic IPv4/IPv6 address (struct sockaddr *) that falls back to
1756 * [4] or [6] and is able to print port [p], flowinfo [f], scope [s]
8a27f7c9
JP
1757 * - 'i' [46] for 'raw' IPv4/IPv6 addresses
1758 * IPv6 omits the colons (01020304...0f)
1759 * IPv4 uses dot-separated decimal with leading 0's (010.123.045.006)
10679643
DB
1760 * [S][pfs]
1761 * Generic IPv4/IPv6 address (struct sockaddr *) that falls back to
1762 * [4] or [6] and is able to print port [p], flowinfo [f], scope [s]
1763 * - '[Ii][4S][hnbl]' IPv4 addresses in host, network, big or little endian order
1764 * - 'I[6S]c' for IPv6 addresses printed as specified by
29cf519e 1765 * http://tools.ietf.org/html/rfc5952
71dca95d
AS
1766 * - 'E[achnops]' For an escaped buffer, where rules are defined by combination
1767 * of the following flags (see string_escape_mem() for the
1768 * details):
1769 * a - ESCAPE_ANY
1770 * c - ESCAPE_SPECIAL
1771 * h - ESCAPE_HEX
1772 * n - ESCAPE_NULL
1773 * o - ESCAPE_OCTAL
1774 * p - ESCAPE_NP
1775 * s - ESCAPE_SPACE
1776 * By default ESCAPE_ANY_NP is used.
9ac6e44e
JP
1777 * - 'U' For a 16 byte UUID/GUID, it prints the UUID/GUID in the form
1778 * "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
1779 * Options for %pU are:
1780 * b big endian lower case hex (default)
1781 * B big endian UPPER case hex
1782 * l little endian lower case hex
1783 * L little endian UPPER case hex
1784 * big endian output byte order is:
1785 * [0][1][2][3]-[4][5]-[6][7]-[8][9]-[10][11][12][13][14][15]
1786 * little endian output byte order is:
1787 * [3][2][1][0]-[5][4]-[7][6]-[8][9]-[10][11][12][13][14][15]
7db6f5fb
JP
1788 * - 'V' For a struct va_format which contains a format string * and va_list *,
1789 * call vsnprintf(->format, *->va_list).
1790 * Implements a "recursive vsnprintf".
1791 * Do not use this feature without some mechanism to verify the
1792 * correctness of the format string and va_list arguments.
455cd5ab 1793 * - 'K' For a kernel pointer that should be hidden from unprivileged users
c8f44aff 1794 * - 'NF' For a netdev_features_t
31550a16
AS
1795 * - 'h[CDN]' For a variable-length buffer, it prints it as a hex string with
1796 * a certain separator (' ' by default):
1797 * C colon
1798 * D dash
1799 * N no separator
1800 * The maximum supported length is 64 bytes of the input. Consider
1801 * to use print_hex_dump() for the larger input.
aaf07621
JP
1802 * - 'a[pd]' For address types [p] phys_addr_t, [d] dma_addr_t and derivatives
1803 * (default assumed to be phys_addr_t, passed by reference)
c0d92a57
OJ
1804 * - 'd[234]' For a dentry name (optionally 2-4 last components)
1805 * - 'D[234]' Same as 'd' but for a struct file
1031bc58 1806 * - 'g' For block_device name (gendisk + partition number)
900cca29
GU
1807 * - 'C' For a clock, it prints the name (Common Clock Framework) or address
1808 * (legacy clock framework) of the clock
1809 * - 'Cn' For a clock, it prints the name (Common Clock Framework) or address
1810 * (legacy clock framework) of the clock
1811 * - 'Cr' For a clock, it prints the current rate of the clock
edf14cdb
VB
1812 * - 'G' For flags to be printed as a collection of symbolic strings that would
1813 * construct the specific value. Supported flags given by option:
1814 * p page flags (see struct page) given as pointer to unsigned long
1815 * g gfp flags (GFP_* and __GFP_*) given as pointer to gfp_t
1816 * v vma flags (VM_*) given as pointer to unsigned long
ce4fecf1
PA
1817 * - 'O' For a kobject based struct. Must be one of the following:
1818 * - 'OF[fnpPcCF]' For a device tree object
1819 * Without any optional arguments prints the full_name
1820 * f device node full_name
1821 * n device node name
1822 * p device node phandle
1823 * P device node path spec (name + @unit)
1824 * F device node flags
1825 * c major compatible string
1826 * C full compatible string
5e4ee7b1 1827 *
7b1924a1
TH
1828 * - 'x' For printing the address. Equivalent to "%lx".
1829 *
b3ed2321
TH
1830 * ** When making changes please also update:
1831 * Documentation/core-api/printk-formats.rst
9ac6e44e 1832 *
332d2e78
LT
1833 * Note: The difference between 'S' and 'F' is that on ia64 and ppc64
1834 * function pointers are really function descriptors, which contain a
1835 * pointer to the real address.
ad67b74d
TH
1836 *
1837 * Note: The default behaviour (unadorned %p) is to hash the address,
1838 * rendering it useful as a unique identifier.
4d8a743c 1839 */
cf3b429b
JP
1840static noinline_for_stack
1841char *pointer(const char *fmt, char *buf, char *end, void *ptr,
1842 struct printf_spec spec)
78a8bf69 1843{
80c9eb46 1844 const int default_width = 2 * sizeof(void *);
725fe002 1845
3a129cc2 1846 if (!ptr && *fmt != 'K' && *fmt != 'x') {
5e057981
JP
1847 /*
1848 * Print (null) with the same width as a pointer so it makes
1849 * tabular output look nice.
1850 */
1851 if (spec.field_width == -1)
725fe002 1852 spec.field_width = default_width;
fef20d9c 1853 return string(buf, end, "(null)", spec);
5e057981 1854 }
d97106ab 1855
0fe1ef24
LT
1856 switch (*fmt) {
1857 case 'F':
0c8b946e 1858 case 'f':
0fe1ef24 1859 case 'S':
9ac6e44e 1860 case 's':
04b8eb7a
SS
1861 ptr = dereference_symbol_descriptor(ptr);
1862 /* Fallthrough */
0f77a8d3 1863 case 'B':
b0d33c2b 1864 return symbol_string(buf, end, ptr, spec, fmt);
332d2e78 1865 case 'R':
c7dabef8 1866 case 'r':
fd95541e 1867 return resource_string(buf, end, ptr, spec, fmt);
31550a16
AS
1868 case 'h':
1869 return hex_string(buf, end, ptr, spec, fmt);
dbc760bc
TH
1870 case 'b':
1871 switch (fmt[1]) {
1872 case 'l':
1873 return bitmap_list_string(buf, end, ptr, spec, fmt);
1874 default:
1875 return bitmap_string(buf, end, ptr, spec, fmt);
1876 }
8a27f7c9
JP
1877 case 'M': /* Colon separated: 00:01:02:03:04:05 */
1878 case 'm': /* Contiguous: 000102030405 */
76597ff9
AE
1879 /* [mM]F (FDDI) */
1880 /* [mM]R (Reverse order; Bluetooth) */
8a27f7c9
JP
1881 return mac_address_string(buf, end, ptr, spec, fmt);
1882 case 'I': /* Formatted IP supported
1883 * 4: 1.2.3.4
1884 * 6: 0001:0203:...:0708
1885 * 6c: 1::708 or 1::1.2.3.4
1886 */
1887 case 'i': /* Contiguous:
1888 * 4: 001.002.003.004
1889 * 6: 000102...0f
1890 */
1891 switch (fmt[1]) {
1892 case '6':
1893 return ip6_addr_string(buf, end, ptr, spec, fmt);
1894 case '4':
1895 return ip4_addr_string(buf, end, ptr, spec, fmt);
10679643
DB
1896 case 'S': {
1897 const union {
1898 struct sockaddr raw;
1899 struct sockaddr_in v4;
1900 struct sockaddr_in6 v6;
1901 } *sa = ptr;
1902
1903 switch (sa->raw.sa_family) {
1904 case AF_INET:
1905 return ip4_addr_string_sa(buf, end, &sa->v4, spec, fmt);
1906 case AF_INET6:
1907 return ip6_addr_string_sa(buf, end, &sa->v6, spec, fmt);
1908 default:
1909 return string(buf, end, "(invalid address)", spec);
1910 }}
8a27f7c9 1911 }
fef20d9c 1912 break;
71dca95d
AS
1913 case 'E':
1914 return escaped_string(buf, end, ptr, spec, fmt);
9ac6e44e
JP
1915 case 'U':
1916 return uuid_string(buf, end, ptr, spec, fmt);
7db6f5fb 1917 case 'V':
5756b76e
JB
1918 {
1919 va_list va;
1920
1921 va_copy(va, *((struct va_format *)ptr)->va);
1922 buf += vsnprintf(buf, end > buf ? end - buf : 0,
1923 ((struct va_format *)ptr)->fmt, va);
1924 va_end(va);
1925 return buf;
1926 }
455cd5ab 1927 case 'K':
ef0010a3
LT
1928 if (!kptr_restrict)
1929 break;
57e73442 1930 return restricted_pointer(buf, end, ptr, spec);
c8f44aff 1931 case 'N':
5b17aecf 1932 return netdev_bits(buf, end, ptr, fmt);
7d799210 1933 case 'a':
3cab1e71 1934 return address_val(buf, end, ptr, fmt);
4b6ccca7
AV
1935 case 'd':
1936 return dentry_name(buf, end, ptr, spec, fmt);
900cca29
GU
1937 case 'C':
1938 return clock(buf, end, ptr, spec, fmt);
4b6ccca7
AV
1939 case 'D':
1940 return dentry_name(buf, end,
1941 ((const struct file *)ptr)->f_path.dentry,
1942 spec, fmt);
1031bc58
DM
1943#ifdef CONFIG_BLOCK
1944 case 'g':
1945 return bdev_name(buf, end, ptr, spec, fmt);
1946#endif
1947
edf14cdb
VB
1948 case 'G':
1949 return flags_string(buf, end, ptr, fmt);
ce4fecf1
PA
1950 case 'O':
1951 switch (fmt[1]) {
1952 case 'F':
1953 return device_node_string(buf, end, ptr, spec, fmt + 1);
1954 }
7b1924a1
TH
1955 case 'x':
1956 return pointer_string(buf, end, ptr, spec);
fef20d9c 1957 }
fef20d9c 1958
ad67b74d
TH
1959 /* default is to _not_ leak addresses, hash before printing */
1960 return ptr_to_id(buf, end, ptr, spec);
fef20d9c
FW
1961}
1962
1963/*
1964 * Helper function to decode printf style format.
1965 * Each call decode a token from the format and return the
1966 * number of characters read (or likely the delta where it wants
1967 * to go on the next call).
1968 * The decoded token is returned through the parameters
1969 *
1970 * 'h', 'l', or 'L' for integer fields
1971 * 'z' support added 23/7/1999 S.H.
1972 * 'z' changed to 'Z' --davidm 1/25/99
5b5e0928 1973 * 'Z' changed to 'z' --adobriyan 2017-01-25
fef20d9c
FW
1974 * 't' added for ptrdiff_t
1975 *
1976 * @fmt: the format string
1977 * @type of the token returned
1978 * @flags: various flags such as +, -, # tokens..
1979 * @field_width: overwritten width
1980 * @base: base of the number (octal, hex, ...)
1981 * @precision: precision of a number
1982 * @qualifier: qualifier of a number (long, size_t, ...)
1983 */
cf3b429b
JP
1984static noinline_for_stack
1985int format_decode(const char *fmt, struct printf_spec *spec)
fef20d9c
FW
1986{
1987 const char *start = fmt;
d0484193 1988 char qualifier;
fef20d9c
FW
1989
1990 /* we finished early by reading the field width */
ed681a91 1991 if (spec->type == FORMAT_TYPE_WIDTH) {
fef20d9c
FW
1992 if (spec->field_width < 0) {
1993 spec->field_width = -spec->field_width;
1994 spec->flags |= LEFT;
1995 }
1996 spec->type = FORMAT_TYPE_NONE;
1997 goto precision;
1998 }
1999
2000 /* we finished early by reading the precision */
2001 if (spec->type == FORMAT_TYPE_PRECISION) {
2002 if (spec->precision < 0)
2003 spec->precision = 0;
2004
2005 spec->type = FORMAT_TYPE_NONE;
2006 goto qualifier;
2007 }
2008
2009 /* By default */
2010 spec->type = FORMAT_TYPE_NONE;
2011
2012 for (; *fmt ; ++fmt) {
2013 if (*fmt == '%')
2014 break;
2015 }
2016
2017 /* Return the current non-format string */
2018 if (fmt != start || !*fmt)
2019 return fmt - start;
2020
2021 /* Process flags */
2022 spec->flags = 0;
2023
2024 while (1) { /* this also skips first '%' */
2025 bool found = true;
2026
2027 ++fmt;
2028
2029 switch (*fmt) {
2030 case '-': spec->flags |= LEFT; break;
2031 case '+': spec->flags |= PLUS; break;
2032 case ' ': spec->flags |= SPACE; break;
2033 case '#': spec->flags |= SPECIAL; break;
2034 case '0': spec->flags |= ZEROPAD; break;
2035 default: found = false;
2036 }
2037
2038 if (!found)
2039 break;
2040 }
2041
2042 /* get field width */
2043 spec->field_width = -1;
2044
2045 if (isdigit(*fmt))
2046 spec->field_width = skip_atoi(&fmt);
2047 else if (*fmt == '*') {
2048 /* it's the next argument */
ed681a91 2049 spec->type = FORMAT_TYPE_WIDTH;
fef20d9c
FW
2050 return ++fmt - start;
2051 }
2052
2053precision:
2054 /* get the precision */
2055 spec->precision = -1;
2056 if (*fmt == '.') {
2057 ++fmt;
2058 if (isdigit(*fmt)) {
2059 spec->precision = skip_atoi(&fmt);
2060 if (spec->precision < 0)
2061 spec->precision = 0;
2062 } else if (*fmt == '*') {
2063 /* it's the next argument */
adf26f84 2064 spec->type = FORMAT_TYPE_PRECISION;
fef20d9c
FW
2065 return ++fmt - start;
2066 }
2067 }
2068
2069qualifier:
2070 /* get the conversion qualifier */
d0484193 2071 qualifier = 0;
75fb8f26 2072 if (*fmt == 'h' || _tolower(*fmt) == 'l' ||
5b5e0928 2073 *fmt == 'z' || *fmt == 't') {
d0484193
RV
2074 qualifier = *fmt++;
2075 if (unlikely(qualifier == *fmt)) {
2076 if (qualifier == 'l') {
2077 qualifier = 'L';
a4e94ef0 2078 ++fmt;
d0484193
RV
2079 } else if (qualifier == 'h') {
2080 qualifier = 'H';
a4e94ef0
Z
2081 ++fmt;
2082 }
fef20d9c
FW
2083 }
2084 }
2085
2086 /* default base */
2087 spec->base = 10;
2088 switch (*fmt) {
2089 case 'c':
2090 spec->type = FORMAT_TYPE_CHAR;
2091 return ++fmt - start;
2092
2093 case 's':
2094 spec->type = FORMAT_TYPE_STR;
2095 return ++fmt - start;
2096
2097 case 'p':
2098 spec->type = FORMAT_TYPE_PTR;
ffbfed03 2099 return ++fmt - start;
fef20d9c 2100
fef20d9c
FW
2101 case '%':
2102 spec->type = FORMAT_TYPE_PERCENT_CHAR;
2103 return ++fmt - start;
2104
2105 /* integer number formats - set up the flags and "break" */
2106 case 'o':
2107 spec->base = 8;
2108 break;
2109
2110 case 'x':
2111 spec->flags |= SMALL;
2112
2113 case 'X':
2114 spec->base = 16;
2115 break;
2116
2117 case 'd':
2118 case 'i':
39e874f8 2119 spec->flags |= SIGN;
fef20d9c 2120 case 'u':
4aa99606 2121 break;
fef20d9c 2122
708d96fd
RM
2123 case 'n':
2124 /*
b006f19b
RV
2125 * Since %n poses a greater security risk than
2126 * utility, treat it as any other invalid or
2127 * unsupported format specifier.
708d96fd 2128 */
708d96fd
RM
2129 /* Fall-through */
2130
fef20d9c 2131 default:
b006f19b 2132 WARN_ONCE(1, "Please remove unsupported %%%c in format string\n", *fmt);
fef20d9c
FW
2133 spec->type = FORMAT_TYPE_INVALID;
2134 return fmt - start;
0fe1ef24 2135 }
fef20d9c 2136
d0484193 2137 if (qualifier == 'L')
fef20d9c 2138 spec->type = FORMAT_TYPE_LONG_LONG;
d0484193 2139 else if (qualifier == 'l') {
51be17df
RV
2140 BUILD_BUG_ON(FORMAT_TYPE_ULONG + SIGN != FORMAT_TYPE_LONG);
2141 spec->type = FORMAT_TYPE_ULONG + (spec->flags & SIGN);
5b5e0928 2142 } else if (qualifier == 'z') {
fef20d9c 2143 spec->type = FORMAT_TYPE_SIZE_T;
d0484193 2144 } else if (qualifier == 't') {
fef20d9c 2145 spec->type = FORMAT_TYPE_PTRDIFF;
d0484193 2146 } else if (qualifier == 'H') {
51be17df
RV
2147 BUILD_BUG_ON(FORMAT_TYPE_UBYTE + SIGN != FORMAT_TYPE_BYTE);
2148 spec->type = FORMAT_TYPE_UBYTE + (spec->flags & SIGN);
d0484193 2149 } else if (qualifier == 'h') {
51be17df
RV
2150 BUILD_BUG_ON(FORMAT_TYPE_USHORT + SIGN != FORMAT_TYPE_SHORT);
2151 spec->type = FORMAT_TYPE_USHORT + (spec->flags & SIGN);
fef20d9c 2152 } else {
51be17df
RV
2153 BUILD_BUG_ON(FORMAT_TYPE_UINT + SIGN != FORMAT_TYPE_INT);
2154 spec->type = FORMAT_TYPE_UINT + (spec->flags & SIGN);
78a8bf69 2155 }
fef20d9c
FW
2156
2157 return ++fmt - start;
78a8bf69
LT
2158}
2159
4d72ba01
RV
2160static void
2161set_field_width(struct printf_spec *spec, int width)
2162{
2163 spec->field_width = width;
2164 if (WARN_ONCE(spec->field_width != width, "field width %d too large", width)) {
2165 spec->field_width = clamp(width, -FIELD_WIDTH_MAX, FIELD_WIDTH_MAX);
2166 }
2167}
2168
2169static void
2170set_precision(struct printf_spec *spec, int prec)
2171{
2172 spec->precision = prec;
2173 if (WARN_ONCE(spec->precision != prec, "precision %d too large", prec)) {
2174 spec->precision = clamp(prec, 0, PRECISION_MAX);
2175 }
2176}
2177
1da177e4
LT
2178/**
2179 * vsnprintf - Format a string and place it in a buffer
2180 * @buf: The buffer to place the result into
2181 * @size: The size of the buffer, including the trailing null space
2182 * @fmt: The format string to use
2183 * @args: Arguments for the format string
2184 *
d7ec9a05
RV
2185 * This function generally follows C99 vsnprintf, but has some
2186 * extensions and a few limitations:
2187 *
6cc89134 2188 * - ``%n`` is unsupported
2189 * - ``%p*`` is handled by pointer()
5e4ee7b1 2190 *
27e7c0e8 2191 * See pointer() or Documentation/core-api/printk-formats.rst for more
5e4ee7b1 2192 * extensive description.
20036fdc 2193 *
6cc89134 2194 * **Please update the documentation in both places when making changes**
80f548e0 2195 *
1da177e4
LT
2196 * The return value is the number of characters which would
2197 * be generated for the given input, excluding the trailing
2198 * '\0', as per ISO C99. If you want to have the exact
2199 * number of characters written into @buf as return value
72fd4a35 2200 * (not including the trailing '\0'), use vscnprintf(). If the
1da177e4
LT
2201 * return is greater than or equal to @size, the resulting
2202 * string is truncated.
2203 *
ba1835eb 2204 * If you're not already dealing with a va_list consider using snprintf().
1da177e4
LT
2205 */
2206int vsnprintf(char *buf, size_t size, const char *fmt, va_list args)
2207{
1da177e4 2208 unsigned long long num;
d4be151b 2209 char *str, *end;
fef20d9c 2210 struct printf_spec spec = {0};
1da177e4 2211
f796937a
JF
2212 /* Reject out-of-range values early. Large positive sizes are
2213 used for unknown buffer sizes. */
2aa2f9e2 2214 if (WARN_ON_ONCE(size > INT_MAX))
1da177e4 2215 return 0;
1da177e4
LT
2216
2217 str = buf;
f796937a 2218 end = buf + size;
1da177e4 2219
f796937a
JF
2220 /* Make sure end is always >= buf */
2221 if (end < buf) {
2222 end = ((void *)-1);
2223 size = end - buf;
1da177e4
LT
2224 }
2225
fef20d9c
FW
2226 while (*fmt) {
2227 const char *old_fmt = fmt;
d4be151b 2228 int read = format_decode(fmt, &spec);
1da177e4 2229
fef20d9c 2230 fmt += read;
1da177e4 2231
fef20d9c
FW
2232 switch (spec.type) {
2233 case FORMAT_TYPE_NONE: {
2234 int copy = read;
2235 if (str < end) {
2236 if (copy > end - str)
2237 copy = end - str;
2238 memcpy(str, old_fmt, copy);
1da177e4 2239 }
fef20d9c
FW
2240 str += read;
2241 break;
1da177e4
LT
2242 }
2243
ed681a91 2244 case FORMAT_TYPE_WIDTH:
4d72ba01 2245 set_field_width(&spec, va_arg(args, int));
fef20d9c 2246 break;
1da177e4 2247
fef20d9c 2248 case FORMAT_TYPE_PRECISION:
4d72ba01 2249 set_precision(&spec, va_arg(args, int));
fef20d9c 2250 break;
1da177e4 2251
d4be151b
AGR
2252 case FORMAT_TYPE_CHAR: {
2253 char c;
2254
fef20d9c
FW
2255 if (!(spec.flags & LEFT)) {
2256 while (--spec.field_width > 0) {
f796937a 2257 if (str < end)
1da177e4
LT
2258 *str = ' ';
2259 ++str;
1da177e4 2260
fef20d9c
FW
2261 }
2262 }
2263 c = (unsigned char) va_arg(args, int);
2264 if (str < end)
2265 *str = c;
2266 ++str;
2267 while (--spec.field_width > 0) {
f796937a 2268 if (str < end)
fef20d9c 2269 *str = ' ';
1da177e4 2270 ++str;
fef20d9c
FW
2271 }
2272 break;
d4be151b 2273 }
1da177e4 2274
fef20d9c
FW
2275 case FORMAT_TYPE_STR:
2276 str = string(str, end, va_arg(args, char *), spec);
2277 break;
1da177e4 2278
fef20d9c 2279 case FORMAT_TYPE_PTR:
ffbfed03 2280 str = pointer(fmt, str, end, va_arg(args, void *),
fef20d9c
FW
2281 spec);
2282 while (isalnum(*fmt))
2283 fmt++;
2284 break;
1da177e4 2285
fef20d9c
FW
2286 case FORMAT_TYPE_PERCENT_CHAR:
2287 if (str < end)
2288 *str = '%';
2289 ++str;
2290 break;
1da177e4 2291
fef20d9c 2292 case FORMAT_TYPE_INVALID:
b006f19b
RV
2293 /*
2294 * Presumably the arguments passed gcc's type
2295 * checking, but there is no safe or sane way
2296 * for us to continue parsing the format and
2297 * fetching from the va_list; the remaining
2298 * specifiers and arguments would be out of
2299 * sync.
2300 */
2301 goto out;
fef20d9c 2302
fef20d9c
FW
2303 default:
2304 switch (spec.type) {
2305 case FORMAT_TYPE_LONG_LONG:
2306 num = va_arg(args, long long);
2307 break;
2308 case FORMAT_TYPE_ULONG:
2309 num = va_arg(args, unsigned long);
2310 break;
2311 case FORMAT_TYPE_LONG:
2312 num = va_arg(args, long);
2313 break;
2314 case FORMAT_TYPE_SIZE_T:
ef124960
JG
2315 if (spec.flags & SIGN)
2316 num = va_arg(args, ssize_t);
2317 else
2318 num = va_arg(args, size_t);
fef20d9c
FW
2319 break;
2320 case FORMAT_TYPE_PTRDIFF:
2321 num = va_arg(args, ptrdiff_t);
2322 break;
a4e94ef0
Z
2323 case FORMAT_TYPE_UBYTE:
2324 num = (unsigned char) va_arg(args, int);
2325 break;
2326 case FORMAT_TYPE_BYTE:
2327 num = (signed char) va_arg(args, int);
2328 break;
fef20d9c
FW
2329 case FORMAT_TYPE_USHORT:
2330 num = (unsigned short) va_arg(args, int);
2331 break;
2332 case FORMAT_TYPE_SHORT:
2333 num = (short) va_arg(args, int);
2334 break;
39e874f8
FW
2335 case FORMAT_TYPE_INT:
2336 num = (int) va_arg(args, int);
fef20d9c
FW
2337 break;
2338 default:
2339 num = va_arg(args, unsigned int);
2340 }
2341
2342 str = number(str, end, num, spec);
1da177e4 2343 }
1da177e4 2344 }
fef20d9c 2345
b006f19b 2346out:
f796937a
JF
2347 if (size > 0) {
2348 if (str < end)
2349 *str = '\0';
2350 else
0a6047ee 2351 end[-1] = '\0';
f796937a 2352 }
fef20d9c 2353
f796937a 2354 /* the trailing null byte doesn't count towards the total */
1da177e4 2355 return str-buf;
fef20d9c 2356
1da177e4 2357}
1da177e4
LT
2358EXPORT_SYMBOL(vsnprintf);
2359
2360/**
2361 * vscnprintf - Format a string and place it in a buffer
2362 * @buf: The buffer to place the result into
2363 * @size: The size of the buffer, including the trailing null space
2364 * @fmt: The format string to use
2365 * @args: Arguments for the format string
2366 *
2367 * The return value is the number of characters which have been written into
b921c69f 2368 * the @buf not including the trailing '\0'. If @size is == 0 the function
1da177e4
LT
2369 * returns 0.
2370 *
ba1835eb 2371 * If you're not already dealing with a va_list consider using scnprintf().
20036fdc
AK
2372 *
2373 * See the vsnprintf() documentation for format string extensions over C99.
1da177e4
LT
2374 */
2375int vscnprintf(char *buf, size_t size, const char *fmt, va_list args)
2376{
2377 int i;
2378
7b9186f5
AGR
2379 i = vsnprintf(buf, size, fmt, args);
2380
b921c69f
AA
2381 if (likely(i < size))
2382 return i;
2383 if (size != 0)
2384 return size - 1;
2385 return 0;
1da177e4 2386}
1da177e4
LT
2387EXPORT_SYMBOL(vscnprintf);
2388
2389/**
2390 * snprintf - Format a string and place it in a buffer
2391 * @buf: The buffer to place the result into
2392 * @size: The size of the buffer, including the trailing null space
2393 * @fmt: The format string to use
2394 * @...: Arguments for the format string
2395 *
2396 * The return value is the number of characters which would be
2397 * generated for the given input, excluding the trailing null,
2398 * as per ISO C99. If the return is greater than or equal to
2399 * @size, the resulting string is truncated.
20036fdc
AK
2400 *
2401 * See the vsnprintf() documentation for format string extensions over C99.
1da177e4 2402 */
7b9186f5 2403int snprintf(char *buf, size_t size, const char *fmt, ...)
1da177e4
LT
2404{
2405 va_list args;
2406 int i;
2407
2408 va_start(args, fmt);
7b9186f5 2409 i = vsnprintf(buf, size, fmt, args);
1da177e4 2410 va_end(args);
7b9186f5 2411
1da177e4
LT
2412 return i;
2413}
1da177e4
LT
2414EXPORT_SYMBOL(snprintf);
2415
2416/**
2417 * scnprintf - Format a string and place it in a buffer
2418 * @buf: The buffer to place the result into
2419 * @size: The size of the buffer, including the trailing null space
2420 * @fmt: The format string to use
2421 * @...: Arguments for the format string
2422 *
2423 * The return value is the number of characters written into @buf not including
b903c0b8 2424 * the trailing '\0'. If @size is == 0 the function returns 0.
1da177e4
LT
2425 */
2426
7b9186f5 2427int scnprintf(char *buf, size_t size, const char *fmt, ...)
1da177e4
LT
2428{
2429 va_list args;
2430 int i;
2431
2432 va_start(args, fmt);
b921c69f 2433 i = vscnprintf(buf, size, fmt, args);
1da177e4 2434 va_end(args);
7b9186f5 2435
b921c69f 2436 return i;
1da177e4
LT
2437}
2438EXPORT_SYMBOL(scnprintf);
2439
2440/**
2441 * vsprintf - Format a string and place it in a buffer
2442 * @buf: The buffer to place the result into
2443 * @fmt: The format string to use
2444 * @args: Arguments for the format string
2445 *
2446 * The function returns the number of characters written
72fd4a35 2447 * into @buf. Use vsnprintf() or vscnprintf() in order to avoid
1da177e4
LT
2448 * buffer overflows.
2449 *
ba1835eb 2450 * If you're not already dealing with a va_list consider using sprintf().
20036fdc
AK
2451 *
2452 * See the vsnprintf() documentation for format string extensions over C99.
1da177e4
LT
2453 */
2454int vsprintf(char *buf, const char *fmt, va_list args)
2455{
2456 return vsnprintf(buf, INT_MAX, fmt, args);
2457}
1da177e4
LT
2458EXPORT_SYMBOL(vsprintf);
2459
2460/**
2461 * sprintf - Format a string and place it in a buffer
2462 * @buf: The buffer to place the result into
2463 * @fmt: The format string to use
2464 * @...: Arguments for the format string
2465 *
2466 * The function returns the number of characters written
72fd4a35 2467 * into @buf. Use snprintf() or scnprintf() in order to avoid
1da177e4 2468 * buffer overflows.
20036fdc
AK
2469 *
2470 * See the vsnprintf() documentation for format string extensions over C99.
1da177e4 2471 */
7b9186f5 2472int sprintf(char *buf, const char *fmt, ...)
1da177e4
LT
2473{
2474 va_list args;
2475 int i;
2476
2477 va_start(args, fmt);
7b9186f5 2478 i = vsnprintf(buf, INT_MAX, fmt, args);
1da177e4 2479 va_end(args);
7b9186f5 2480
1da177e4
LT
2481 return i;
2482}
1da177e4
LT
2483EXPORT_SYMBOL(sprintf);
2484
4370aa4a
LJ
2485#ifdef CONFIG_BINARY_PRINTF
2486/*
2487 * bprintf service:
2488 * vbin_printf() - VA arguments to binary data
2489 * bstr_printf() - Binary data to text string
2490 */
2491
2492/**
2493 * vbin_printf - Parse a format string and place args' binary value in a buffer
2494 * @bin_buf: The buffer to place args' binary value
2495 * @size: The size of the buffer(by words(32bits), not characters)
2496 * @fmt: The format string to use
2497 * @args: Arguments for the format string
2498 *
2499 * The format follows C99 vsnprintf, except %n is ignored, and its argument
da3dae54 2500 * is skipped.
4370aa4a
LJ
2501 *
2502 * The return value is the number of words(32bits) which would be generated for
2503 * the given input.
2504 *
2505 * NOTE:
2506 * If the return value is greater than @size, the resulting bin_buf is NOT
2507 * valid for bstr_printf().
2508 */
2509int vbin_printf(u32 *bin_buf, size_t size, const char *fmt, va_list args)
2510{
fef20d9c 2511 struct printf_spec spec = {0};
4370aa4a 2512 char *str, *end;
841a915d 2513 int width;
4370aa4a
LJ
2514
2515 str = (char *)bin_buf;
2516 end = (char *)(bin_buf + size);
2517
2518#define save_arg(type) \
841a915d
SRV
2519({ \
2520 unsigned long long value; \
4370aa4a 2521 if (sizeof(type) == 8) { \
841a915d 2522 unsigned long long val8; \
4370aa4a 2523 str = PTR_ALIGN(str, sizeof(u32)); \
841a915d 2524 val8 = va_arg(args, unsigned long long); \
4370aa4a 2525 if (str + sizeof(type) <= end) { \
841a915d
SRV
2526 *(u32 *)str = *(u32 *)&val8; \
2527 *(u32 *)(str + 4) = *((u32 *)&val8 + 1); \
4370aa4a 2528 } \
841a915d 2529 value = val8; \
4370aa4a 2530 } else { \
841a915d 2531 unsigned int val4; \
4370aa4a 2532 str = PTR_ALIGN(str, sizeof(type)); \
841a915d 2533 val4 = va_arg(args, int); \
4370aa4a 2534 if (str + sizeof(type) <= end) \
841a915d
SRV
2535 *(typeof(type) *)str = (type)(long)val4; \
2536 value = (unsigned long long)val4; \
4370aa4a
LJ
2537 } \
2538 str += sizeof(type); \
841a915d
SRV
2539 value; \
2540})
4370aa4a 2541
fef20d9c 2542 while (*fmt) {
d4be151b 2543 int read = format_decode(fmt, &spec);
4370aa4a 2544
fef20d9c 2545 fmt += read;
4370aa4a 2546
fef20d9c
FW
2547 switch (spec.type) {
2548 case FORMAT_TYPE_NONE:
d4be151b 2549 case FORMAT_TYPE_PERCENT_CHAR:
fef20d9c 2550 break;
b006f19b
RV
2551 case FORMAT_TYPE_INVALID:
2552 goto out;
fef20d9c 2553
ed681a91 2554 case FORMAT_TYPE_WIDTH:
fef20d9c 2555 case FORMAT_TYPE_PRECISION:
841a915d
SRV
2556 width = (int)save_arg(int);
2557 /* Pointers may require the width */
2558 if (*fmt == 'p')
2559 set_field_width(&spec, width);
fef20d9c
FW
2560 break;
2561
2562 case FORMAT_TYPE_CHAR:
4370aa4a 2563 save_arg(char);
fef20d9c
FW
2564 break;
2565
2566 case FORMAT_TYPE_STR: {
4370aa4a
LJ
2567 const char *save_str = va_arg(args, char *);
2568 size_t len;
6c356634 2569
4370aa4a
LJ
2570 if ((unsigned long)save_str > (unsigned long)-PAGE_SIZE
2571 || (unsigned long)save_str < PAGE_SIZE)
0f4f81dc 2572 save_str = "(null)";
6c356634
AGR
2573 len = strlen(save_str) + 1;
2574 if (str + len < end)
2575 memcpy(str, save_str, len);
2576 str += len;
fef20d9c 2577 break;
4370aa4a 2578 }
fef20d9c
FW
2579
2580 case FORMAT_TYPE_PTR:
841a915d
SRV
2581 /* Dereferenced pointers must be done now */
2582 switch (*fmt) {
2583 /* Dereference of functions is still OK */
2584 case 'S':
2585 case 's':
2586 case 'F':
2587 case 'f':
2588 save_arg(void *);
2589 break;
2590 default:
2591 if (!isalnum(*fmt)) {
2592 save_arg(void *);
2593 break;
2594 }
2595 str = pointer(fmt, str, end, va_arg(args, void *),
2596 spec);
2597 if (str + 1 < end)
2598 *str++ = '\0';
2599 else
2600 end[-1] = '\0'; /* Must be nul terminated */
2601 }
4370aa4a 2602 /* skip all alphanumeric pointer suffixes */
fef20d9c 2603 while (isalnum(*fmt))
4370aa4a 2604 fmt++;
fef20d9c
FW
2605 break;
2606
fef20d9c
FW
2607 default:
2608 switch (spec.type) {
2609
2610 case FORMAT_TYPE_LONG_LONG:
4370aa4a 2611 save_arg(long long);
fef20d9c
FW
2612 break;
2613 case FORMAT_TYPE_ULONG:
2614 case FORMAT_TYPE_LONG:
4370aa4a 2615 save_arg(unsigned long);
fef20d9c
FW
2616 break;
2617 case FORMAT_TYPE_SIZE_T:
4370aa4a 2618 save_arg(size_t);
fef20d9c
FW
2619 break;
2620 case FORMAT_TYPE_PTRDIFF:
4370aa4a 2621 save_arg(ptrdiff_t);
fef20d9c 2622 break;
a4e94ef0
Z
2623 case FORMAT_TYPE_UBYTE:
2624 case FORMAT_TYPE_BYTE:
2625 save_arg(char);
2626 break;
fef20d9c
FW
2627 case FORMAT_TYPE_USHORT:
2628 case FORMAT_TYPE_SHORT:
4370aa4a 2629 save_arg(short);
fef20d9c
FW
2630 break;
2631 default:
4370aa4a 2632 save_arg(int);
fef20d9c 2633 }
4370aa4a
LJ
2634 }
2635 }
fef20d9c 2636
b006f19b 2637out:
7b9186f5 2638 return (u32 *)(PTR_ALIGN(str, sizeof(u32))) - bin_buf;
fef20d9c 2639#undef save_arg
4370aa4a
LJ
2640}
2641EXPORT_SYMBOL_GPL(vbin_printf);
2642
2643/**
2644 * bstr_printf - Format a string from binary arguments and place it in a buffer
2645 * @buf: The buffer to place the result into
2646 * @size: The size of the buffer, including the trailing null space
2647 * @fmt: The format string to use
2648 * @bin_buf: Binary arguments for the format string
2649 *
2650 * This function like C99 vsnprintf, but the difference is that vsnprintf gets
2651 * arguments from stack, and bstr_printf gets arguments from @bin_buf which is
2652 * a binary buffer that generated by vbin_printf.
2653 *
2654 * The format follows C99 vsnprintf, but has some extensions:
0efb4d20 2655 * see vsnprintf comment for details.
4370aa4a
LJ
2656 *
2657 * The return value is the number of characters which would
2658 * be generated for the given input, excluding the trailing
2659 * '\0', as per ISO C99. If you want to have the exact
2660 * number of characters written into @buf as return value
2661 * (not including the trailing '\0'), use vscnprintf(). If the
2662 * return is greater than or equal to @size, the resulting
2663 * string is truncated.
2664 */
2665int bstr_printf(char *buf, size_t size, const char *fmt, const u32 *bin_buf)
2666{
fef20d9c 2667 struct printf_spec spec = {0};
d4be151b
AGR
2668 char *str, *end;
2669 const char *args = (const char *)bin_buf;
4370aa4a 2670
762abb51 2671 if (WARN_ON_ONCE(size > INT_MAX))
4370aa4a 2672 return 0;
4370aa4a
LJ
2673
2674 str = buf;
2675 end = buf + size;
2676
2677#define get_arg(type) \
2678({ \
2679 typeof(type) value; \
2680 if (sizeof(type) == 8) { \
2681 args = PTR_ALIGN(args, sizeof(u32)); \
2682 *(u32 *)&value = *(u32 *)args; \
2683 *((u32 *)&value + 1) = *(u32 *)(args + 4); \
2684 } else { \
2685 args = PTR_ALIGN(args, sizeof(type)); \
2686 value = *(typeof(type) *)args; \
2687 } \
2688 args += sizeof(type); \
2689 value; \
2690})
2691
2692 /* Make sure end is always >= buf */
2693 if (end < buf) {
2694 end = ((void *)-1);
2695 size = end - buf;
2696 }
2697
fef20d9c 2698 while (*fmt) {
fef20d9c 2699 const char *old_fmt = fmt;
d4be151b 2700 int read = format_decode(fmt, &spec);
4370aa4a 2701
fef20d9c 2702 fmt += read;
4370aa4a 2703
fef20d9c
FW
2704 switch (spec.type) {
2705 case FORMAT_TYPE_NONE: {
2706 int copy = read;
2707 if (str < end) {
2708 if (copy > end - str)
2709 copy = end - str;
2710 memcpy(str, old_fmt, copy);
4370aa4a 2711 }
fef20d9c
FW
2712 str += read;
2713 break;
4370aa4a
LJ
2714 }
2715
ed681a91 2716 case FORMAT_TYPE_WIDTH:
4d72ba01 2717 set_field_width(&spec, get_arg(int));
fef20d9c 2718 break;
4370aa4a 2719
fef20d9c 2720 case FORMAT_TYPE_PRECISION:
4d72ba01 2721 set_precision(&spec, get_arg(int));
fef20d9c 2722 break;
4370aa4a 2723
d4be151b
AGR
2724 case FORMAT_TYPE_CHAR: {
2725 char c;
2726
fef20d9c
FW
2727 if (!(spec.flags & LEFT)) {
2728 while (--spec.field_width > 0) {
4370aa4a
LJ
2729 if (str < end)
2730 *str = ' ';
2731 ++str;
2732 }
2733 }
2734 c = (unsigned char) get_arg(char);
2735 if (str < end)
2736 *str = c;
2737 ++str;
fef20d9c 2738 while (--spec.field_width > 0) {
4370aa4a
LJ
2739 if (str < end)
2740 *str = ' ';
2741 ++str;
2742 }
fef20d9c 2743 break;
d4be151b 2744 }
4370aa4a 2745
fef20d9c 2746 case FORMAT_TYPE_STR: {
4370aa4a 2747 const char *str_arg = args;
d4be151b 2748 args += strlen(str_arg) + 1;
fef20d9c
FW
2749 str = string(str, end, (char *)str_arg, spec);
2750 break;
4370aa4a
LJ
2751 }
2752
841a915d
SRV
2753 case FORMAT_TYPE_PTR: {
2754 bool process = false;
2755 int copy, len;
2756 /* Non function dereferences were already done */
2757 switch (*fmt) {
2758 case 'S':
2759 case 's':
2760 case 'F':
2761 case 'f':
2762 process = true;
2763 break;
2764 default:
2765 if (!isalnum(*fmt)) {
2766 process = true;
2767 break;
2768 }
2769 /* Pointer dereference was already processed */
2770 if (str < end) {
2771 len = copy = strlen(args);
2772 if (copy > end - str)
2773 copy = end - str;
2774 memcpy(str, args, copy);
2775 str += len;
2776 args += len;
2777 }
2778 }
2779 if (process)
2780 str = pointer(fmt, str, end, get_arg(void *), spec);
2781
fef20d9c 2782 while (isalnum(*fmt))
4370aa4a 2783 fmt++;
fef20d9c 2784 break;
841a915d 2785 }
4370aa4a 2786
fef20d9c 2787 case FORMAT_TYPE_PERCENT_CHAR:
4370aa4a
LJ
2788 if (str < end)
2789 *str = '%';
2790 ++str;
fef20d9c
FW
2791 break;
2792
b006f19b
RV
2793 case FORMAT_TYPE_INVALID:
2794 goto out;
2795
d4be151b
AGR
2796 default: {
2797 unsigned long long num;
2798
fef20d9c
FW
2799 switch (spec.type) {
2800
2801 case FORMAT_TYPE_LONG_LONG:
2802 num = get_arg(long long);
2803 break;
2804 case FORMAT_TYPE_ULONG:
fef20d9c
FW
2805 case FORMAT_TYPE_LONG:
2806 num = get_arg(unsigned long);
2807 break;
2808 case FORMAT_TYPE_SIZE_T:
2809 num = get_arg(size_t);
2810 break;
2811 case FORMAT_TYPE_PTRDIFF:
2812 num = get_arg(ptrdiff_t);
2813 break;
a4e94ef0
Z
2814 case FORMAT_TYPE_UBYTE:
2815 num = get_arg(unsigned char);
2816 break;
2817 case FORMAT_TYPE_BYTE:
2818 num = get_arg(signed char);
2819 break;
fef20d9c
FW
2820 case FORMAT_TYPE_USHORT:
2821 num = get_arg(unsigned short);
2822 break;
2823 case FORMAT_TYPE_SHORT:
2824 num = get_arg(short);
2825 break;
2826 case FORMAT_TYPE_UINT:
2827 num = get_arg(unsigned int);
2828 break;
2829 default:
2830 num = get_arg(int);
2831 }
2832
2833 str = number(str, end, num, spec);
d4be151b
AGR
2834 } /* default: */
2835 } /* switch(spec.type) */
2836 } /* while(*fmt) */
fef20d9c 2837
b006f19b 2838out:
4370aa4a
LJ
2839 if (size > 0) {
2840 if (str < end)
2841 *str = '\0';
2842 else
2843 end[-1] = '\0';
2844 }
fef20d9c 2845
4370aa4a
LJ
2846#undef get_arg
2847
2848 /* the trailing null byte doesn't count towards the total */
2849 return str - buf;
2850}
2851EXPORT_SYMBOL_GPL(bstr_printf);
2852
2853/**
2854 * bprintf - Parse a format string and place args' binary value in a buffer
2855 * @bin_buf: The buffer to place args' binary value
2856 * @size: The size of the buffer(by words(32bits), not characters)
2857 * @fmt: The format string to use
2858 * @...: Arguments for the format string
2859 *
2860 * The function returns the number of words(u32) written
2861 * into @bin_buf.
2862 */
2863int bprintf(u32 *bin_buf, size_t size, const char *fmt, ...)
2864{
2865 va_list args;
2866 int ret;
2867
2868 va_start(args, fmt);
2869 ret = vbin_printf(bin_buf, size, fmt, args);
2870 va_end(args);
7b9186f5 2871
4370aa4a
LJ
2872 return ret;
2873}
2874EXPORT_SYMBOL_GPL(bprintf);
2875
2876#endif /* CONFIG_BINARY_PRINTF */
2877
1da177e4
LT
2878/**
2879 * vsscanf - Unformat a buffer into a list of arguments
2880 * @buf: input buffer
2881 * @fmt: format of buffer
2882 * @args: arguments
2883 */
7b9186f5 2884int vsscanf(const char *buf, const char *fmt, va_list args)
1da177e4
LT
2885{
2886 const char *str = buf;
2887 char *next;
2888 char digit;
2889 int num = 0;
ef0658f3 2890 u8 qualifier;
53809751
JB
2891 unsigned int base;
2892 union {
2893 long long s;
2894 unsigned long long u;
2895 } val;
ef0658f3 2896 s16 field_width;
d4be151b 2897 bool is_sign;
1da177e4 2898
da99075c 2899 while (*fmt) {
1da177e4
LT
2900 /* skip any white space in format */
2901 /* white space in format matchs any amount of
2902 * white space, including none, in the input.
2903 */
2904 if (isspace(*fmt)) {
e7d2860b
AGR
2905 fmt = skip_spaces(++fmt);
2906 str = skip_spaces(str);
1da177e4
LT
2907 }
2908
2909 /* anything that is not a conversion must match exactly */
2910 if (*fmt != '%' && *fmt) {
2911 if (*fmt++ != *str++)
2912 break;
2913 continue;
2914 }
2915
2916 if (!*fmt)
2917 break;
2918 ++fmt;
7b9186f5 2919
1da177e4
LT
2920 /* skip this conversion.
2921 * advance both strings to next white space
2922 */
2923 if (*fmt == '*') {
da99075c
JB
2924 if (!*str)
2925 break;
f9310b2f
JY
2926 while (!isspace(*fmt) && *fmt != '%' && *fmt) {
2927 /* '%*[' not yet supported, invalid format */
2928 if (*fmt == '[')
2929 return num;
1da177e4 2930 fmt++;
f9310b2f 2931 }
1da177e4
LT
2932 while (!isspace(*str) && *str)
2933 str++;
2934 continue;
2935 }
2936
2937 /* get field width */
2938 field_width = -1;
53809751 2939 if (isdigit(*fmt)) {
1da177e4 2940 field_width = skip_atoi(&fmt);
53809751
JB
2941 if (field_width <= 0)
2942 break;
2943 }
1da177e4
LT
2944
2945 /* get conversion qualifier */
2946 qualifier = -1;
75fb8f26 2947 if (*fmt == 'h' || _tolower(*fmt) == 'l' ||
5b5e0928 2948 *fmt == 'z') {
1da177e4
LT
2949 qualifier = *fmt++;
2950 if (unlikely(qualifier == *fmt)) {
2951 if (qualifier == 'h') {
2952 qualifier = 'H';
2953 fmt++;
2954 } else if (qualifier == 'l') {
2955 qualifier = 'L';
2956 fmt++;
2957 }
2958 }
2959 }
1da177e4 2960
da99075c
JB
2961 if (!*fmt)
2962 break;
2963
2964 if (*fmt == 'n') {
2965 /* return number of characters read so far */
2966 *va_arg(args, int *) = str - buf;
2967 ++fmt;
2968 continue;
2969 }
2970
2971 if (!*str)
1da177e4
LT
2972 break;
2973
d4be151b 2974 base = 10;
3f623eba 2975 is_sign = false;
d4be151b 2976
7b9186f5 2977 switch (*fmt++) {
1da177e4
LT
2978 case 'c':
2979 {
7b9186f5 2980 char *s = (char *)va_arg(args, char*);
1da177e4
LT
2981 if (field_width == -1)
2982 field_width = 1;
2983 do {
2984 *s++ = *str++;
2985 } while (--field_width > 0 && *str);
2986 num++;
2987 }
2988 continue;
2989 case 's':
2990 {
7b9186f5
AGR
2991 char *s = (char *)va_arg(args, char *);
2992 if (field_width == -1)
4be929be 2993 field_width = SHRT_MAX;
1da177e4 2994 /* first, skip leading white space in buffer */
e7d2860b 2995 str = skip_spaces(str);
1da177e4
LT
2996
2997 /* now copy until next white space */
7b9186f5 2998 while (*str && !isspace(*str) && field_width--)
1da177e4 2999 *s++ = *str++;
1da177e4
LT
3000 *s = '\0';
3001 num++;
3002 }
3003 continue;
f9310b2f
JY
3004 /*
3005 * Warning: This implementation of the '[' conversion specifier
3006 * deviates from its glibc counterpart in the following ways:
3007 * (1) It does NOT support ranges i.e. '-' is NOT a special
3008 * character
3009 * (2) It cannot match the closing bracket ']' itself
3010 * (3) A field width is required
3011 * (4) '%*[' (discard matching input) is currently not supported
3012 *
3013 * Example usage:
3014 * ret = sscanf("00:0a:95","%2[^:]:%2[^:]:%2[^:]",
3015 * buf1, buf2, buf3);
3016 * if (ret < 3)
3017 * // etc..
3018 */
3019 case '[':
3020 {
3021 char *s = (char *)va_arg(args, char *);
3022 DECLARE_BITMAP(set, 256) = {0};
3023 unsigned int len = 0;
3024 bool negate = (*fmt == '^');
3025
3026 /* field width is required */
3027 if (field_width == -1)
3028 return num;
3029
3030 if (negate)
3031 ++fmt;
3032
3033 for ( ; *fmt && *fmt != ']'; ++fmt, ++len)
3034 set_bit((u8)*fmt, set);
3035
3036 /* no ']' or no character set found */
3037 if (!*fmt || !len)
3038 return num;
3039 ++fmt;
3040
3041 if (negate) {
3042 bitmap_complement(set, set, 256);
3043 /* exclude null '\0' byte */
3044 clear_bit(0, set);
3045 }
3046
3047 /* match must be non-empty */
3048 if (!test_bit((u8)*str, set))
3049 return num;
3050
3051 while (test_bit((u8)*str, set) && field_width--)
3052 *s++ = *str++;
3053 *s = '\0';
3054 ++num;
3055 }
3056 continue;
1da177e4
LT
3057 case 'o':
3058 base = 8;
3059 break;
3060 case 'x':
3061 case 'X':
3062 base = 16;
3063 break;
3064 case 'i':
7b9186f5 3065 base = 0;
1da177e4 3066 case 'd':
3f623eba 3067 is_sign = true;
1da177e4
LT
3068 case 'u':
3069 break;
3070 case '%':
3071 /* looking for '%' in str */
7b9186f5 3072 if (*str++ != '%')
1da177e4
LT
3073 return num;
3074 continue;
3075 default:
3076 /* invalid format; stop here */
3077 return num;
3078 }
3079
3080 /* have some sort of integer conversion.
3081 * first, skip white space in buffer.
3082 */
e7d2860b 3083 str = skip_spaces(str);
1da177e4
LT
3084
3085 digit = *str;
3086 if (is_sign && digit == '-')
3087 digit = *(str + 1);
3088
3089 if (!digit
7b9186f5
AGR
3090 || (base == 16 && !isxdigit(digit))
3091 || (base == 10 && !isdigit(digit))
3092 || (base == 8 && (!isdigit(digit) || digit > '7'))
3093 || (base == 0 && !isdigit(digit)))
3094 break;
1da177e4 3095
53809751
JB
3096 if (is_sign)
3097 val.s = qualifier != 'L' ?
3098 simple_strtol(str, &next, base) :
3099 simple_strtoll(str, &next, base);
3100 else
3101 val.u = qualifier != 'L' ?
3102 simple_strtoul(str, &next, base) :
3103 simple_strtoull(str, &next, base);
3104
3105 if (field_width > 0 && next - str > field_width) {
3106 if (base == 0)
3107 _parse_integer_fixup_radix(str, &base);
3108 while (next - str > field_width) {
3109 if (is_sign)
3110 val.s = div_s64(val.s, base);
3111 else
3112 val.u = div_u64(val.u, base);
3113 --next;
3114 }
3115 }
3116
7b9186f5 3117 switch (qualifier) {
1da177e4 3118 case 'H': /* that's 'hh' in format */
53809751
JB
3119 if (is_sign)
3120 *va_arg(args, signed char *) = val.s;
3121 else
3122 *va_arg(args, unsigned char *) = val.u;
1da177e4
LT
3123 break;
3124 case 'h':
53809751
JB
3125 if (is_sign)
3126 *va_arg(args, short *) = val.s;
3127 else
3128 *va_arg(args, unsigned short *) = val.u;
1da177e4
LT
3129 break;
3130 case 'l':
53809751
JB
3131 if (is_sign)
3132 *va_arg(args, long *) = val.s;
3133 else
3134 *va_arg(args, unsigned long *) = val.u;
1da177e4
LT
3135 break;
3136 case 'L':
53809751
JB
3137 if (is_sign)
3138 *va_arg(args, long long *) = val.s;
3139 else
3140 *va_arg(args, unsigned long long *) = val.u;
1da177e4 3141 break;
1da177e4 3142 case 'z':
53809751
JB
3143 *va_arg(args, size_t *) = val.u;
3144 break;
1da177e4 3145 default:
53809751
JB
3146 if (is_sign)
3147 *va_arg(args, int *) = val.s;
3148 else
3149 *va_arg(args, unsigned int *) = val.u;
1da177e4
LT
3150 break;
3151 }
3152 num++;
3153
3154 if (!next)
3155 break;
3156 str = next;
3157 }
c6b40d16 3158
1da177e4
LT
3159 return num;
3160}
1da177e4
LT
3161EXPORT_SYMBOL(vsscanf);
3162
3163/**
3164 * sscanf - Unformat a buffer into a list of arguments
3165 * @buf: input buffer
3166 * @fmt: formatting of buffer
3167 * @...: resulting arguments
3168 */
7b9186f5 3169int sscanf(const char *buf, const char *fmt, ...)
1da177e4
LT
3170{
3171 va_list args;
3172 int i;
3173
7b9186f5
AGR
3174 va_start(args, fmt);
3175 i = vsscanf(buf, fmt, args);
1da177e4 3176 va_end(args);
7b9186f5 3177
1da177e4
LT
3178 return i;
3179}
1da177e4 3180EXPORT_SYMBOL(sscanf);