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