blob: 0c23b006b4958714c3dd4045210296c81c23242e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/lib/vsprintf.c
3 *
4 * Copyright (C) 1991, 1992 Linus Torvalds
5 */
6
7/* vsprintf.c -- Lars Wirzenius & Linus Torvalds. */
8/*
9 * Wirzenius wrote this portably, Torvalds fucked it up :-)
10 */
11
André Goddard Rosa7b9186f2009-12-14 18:00:57 -080012/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 * Fri Jul 13 2001 Crutcher Dunnavant <crutcher+kernel@datastacks.com>
14 * - changed to provide snprintf and vsnprintf functions
15 * So Feb 1 16:51:32 CET 2004 Juergen Quade <quade@hsnr.de>
16 * - scnprintf and vscnprintf
17 */
18
19#include <stdarg.h>
Stephen Boyd0d1d7a52015-06-19 15:00:46 -070020#include <linux/clk.h>
Geert Uytterhoeven900cca22015-04-15 16:17:20 -070021#include <linux/clk-provider.h>
Paul Gortmaker8bc3bcc2011-11-16 21:29:17 -050022#include <linux/module.h> /* for KSYM_SYMBOL_LEN */
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/types.h>
24#include <linux/string.h>
25#include <linux/ctype.h>
26#include <linux/kernel.h>
Linus Torvalds0fe1ef22008-07-06 16:43:12 -070027#include <linux/kallsyms.h>
Jan Beulich53809752012-12-17 16:01:31 -080028#include <linux/math64.h>
Linus Torvalds0fe1ef22008-07-06 16:43:12 -070029#include <linux/uaccess.h>
Linus Torvalds332d2e72008-10-20 15:07:34 +110030#include <linux/ioport.h>
Al Viro4b6ccca2013-09-03 12:00:44 -040031#include <linux/dcache.h>
Ryan Mallon312b4e22013-11-12 15:08:51 -080032#include <linux/cred.h>
Andy Shevchenko2b1b0d62016-05-20 17:01:04 -070033#include <linux/uuid.h>
Pantelis Antoniouce4fecf2015-01-21 19:06:14 +020034#include <linux/of.h>
Joe Perches8a27f7c2009-08-17 12:29:44 +000035#include <net/addrconf.h>
Tobin C. Hardingad67b742017-11-01 15:32:23 +110036#include <linux/siphash.h>
37#include <linux/compiler.h>
Dmitry Monakhov1031bc52015-04-13 16:31:35 +040038#ifdef CONFIG_BLOCK
39#include <linux/blkdev.h>
40#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Vlastimil Babkaedf14cd2016-03-15 14:55:56 -070042#include "../mm/internal.h" /* For the trace_print_flags arrays */
43
Tim Schmielau4e57b682005-10-30 15:03:48 -080044#include <asm/page.h> /* for PAGE_SIZE */
Rasmus Villemoes7c43d9a2015-04-16 12:43:22 -070045#include <asm/byteorder.h> /* cpu_to_le16 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
Andy Shevchenko71dca952014-10-13 15:55:18 -070047#include <linux/string_helpers.h>
Alexey Dobriyan1dff46d2011-10-31 17:12:28 -070048#include "kstrtox.h"
Harvey Harrisonaa46a632008-10-16 13:40:34 -070049
Linus Torvalds1da177e2005-04-16 15:20:36 -070050/**
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 * simple_strtoull - convert a string to an unsigned long long
52 * @cp: The start of the string
53 * @endp: A pointer to the end of the parsed string will be placed here
54 * @base: The number base to use
Eldad Zack462e4712012-12-17 16:03:05 -080055 *
56 * This function is obsolete. Please use kstrtoull instead.
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 */
Harvey Harrison22d27052008-10-16 13:40:35 -070058unsigned long long simple_strtoull(const char *cp, char **endp, unsigned int base)
Linus Torvalds1da177e2005-04-16 15:20:36 -070059{
Alexey Dobriyan1dff46d2011-10-31 17:12:28 -070060 unsigned long long result;
61 unsigned int rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
Alexey Dobriyan1dff46d2011-10-31 17:12:28 -070063 cp = _parse_integer_fixup_radix(cp, &base);
64 rv = _parse_integer(cp, base, &result);
65 /* FIXME */
66 cp += (rv & ~KSTRTOX_OVERFLOW);
Harvey Harrisonaa46a632008-10-16 13:40:34 -070067
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 if (endp)
69 *endp = (char *)cp;
André Goddard Rosa7b9186f2009-12-14 18:00:57 -080070
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 return result;
72}
Linus Torvalds1da177e2005-04-16 15:20:36 -070073EXPORT_SYMBOL(simple_strtoull);
74
75/**
André Goddard Rosa922ac252009-12-14 18:01:01 -080076 * simple_strtoul - convert a string to an unsigned long
77 * @cp: The start of the string
78 * @endp: A pointer to the end of the parsed string will be placed here
79 * @base: The number base to use
Eldad Zack462e4712012-12-17 16:03:05 -080080 *
81 * This function is obsolete. Please use kstrtoul instead.
André Goddard Rosa922ac252009-12-14 18:01:01 -080082 */
83unsigned long simple_strtoul(const char *cp, char **endp, unsigned int base)
84{
85 return simple_strtoull(cp, endp, base);
86}
87EXPORT_SYMBOL(simple_strtoul);
88
89/**
90 * simple_strtol - convert a string to a signed long
91 * @cp: The start of the string
92 * @endp: A pointer to the end of the parsed string will be placed here
93 * @base: The number base to use
Eldad Zack462e4712012-12-17 16:03:05 -080094 *
95 * This function is obsolete. Please use kstrtol instead.
André Goddard Rosa922ac252009-12-14 18:01:01 -080096 */
97long simple_strtol(const char *cp, char **endp, unsigned int base)
98{
99 if (*cp == '-')
100 return -simple_strtoul(cp + 1, endp, base);
101
102 return simple_strtoul(cp, endp, base);
103}
104EXPORT_SYMBOL(simple_strtol);
105
106/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 * simple_strtoll - convert a string to a signed long long
108 * @cp: The start of the string
109 * @endp: A pointer to the end of the parsed string will be placed here
110 * @base: The number base to use
Eldad Zack462e4712012-12-17 16:03:05 -0800111 *
112 * This function is obsolete. Please use kstrtoll instead.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 */
Harvey Harrison22d27052008-10-16 13:40:35 -0700114long long simple_strtoll(const char *cp, char **endp, unsigned int base)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115{
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800116 if (*cp == '-')
Harvey Harrison22d27052008-10-16 13:40:35 -0700117 return -simple_strtoull(cp + 1, endp, base);
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800118
Harvey Harrison22d27052008-10-16 13:40:35 -0700119 return simple_strtoull(cp, endp, base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120}
Hans Verkuil98d5ce02010-04-23 13:18:04 -0400121EXPORT_SYMBOL(simple_strtoll);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
Joe Perchescf3b4292010-05-24 14:33:16 -0700123static noinline_for_stack
124int skip_atoi(const char **s)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125{
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800126 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
Rasmus Villemoes43e5b662015-02-12 15:01:42 -0800128 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 i = i*10 + *((*s)++) - '0';
Rasmus Villemoes43e5b662015-02-12 15:01:42 -0800130 } while (isdigit(**s));
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800131
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 return i;
133}
134
Rasmus Villemoes7c43d9a2015-04-16 12:43:22 -0700135/*
136 * Decimal conversion is by far the most typical, and is used for
137 * /proc and /sys data. This directly impacts e.g. top performance
138 * with many processes running. We optimize it for speed by emitting
139 * two characters at a time, using a 200 byte lookup table. This
140 * roughly halves the number of multiplications compared to computing
141 * the digits one at a time. Implementation strongly inspired by the
142 * previous version, which in turn used ideas described at
143 * <http://www.cs.uiowa.edu/~jones/bcd/divide.html> (with permission
144 * from the author, Douglas W. Jones).
145 *
146 * It turns out there is precisely one 26 bit fixed-point
147 * approximation a of 64/100 for which x/100 == (x * (u64)a) >> 32
148 * holds for all x in [0, 10^8-1], namely a = 0x28f5c29. The actual
149 * range happens to be somewhat larger (x <= 1073741898), but that's
150 * irrelevant for our purpose.
151 *
152 * For dividing a number in the range [10^4, 10^6-1] by 100, we still
153 * need a 32x32->64 bit multiply, so we simply use the same constant.
154 *
155 * For dividing a number in the range [100, 10^4-1] by 100, there are
156 * several options. The simplest is (x * 0x147b) >> 19, which is valid
157 * for all x <= 43698.
Denys Vlasenko133fd9f2012-05-31 16:26:08 -0700158 */
Denis Vlasenko4277eed2007-07-15 23:41:56 -0700159
Rasmus Villemoes7c43d9a2015-04-16 12:43:22 -0700160static const u16 decpair[100] = {
161#define _(x) (__force u16) cpu_to_le16(((x % 10) | ((x / 10) << 8)) + 0x3030)
162 _( 0), _( 1), _( 2), _( 3), _( 4), _( 5), _( 6), _( 7), _( 8), _( 9),
163 _(10), _(11), _(12), _(13), _(14), _(15), _(16), _(17), _(18), _(19),
164 _(20), _(21), _(22), _(23), _(24), _(25), _(26), _(27), _(28), _(29),
165 _(30), _(31), _(32), _(33), _(34), _(35), _(36), _(37), _(38), _(39),
166 _(40), _(41), _(42), _(43), _(44), _(45), _(46), _(47), _(48), _(49),
167 _(50), _(51), _(52), _(53), _(54), _(55), _(56), _(57), _(58), _(59),
168 _(60), _(61), _(62), _(63), _(64), _(65), _(66), _(67), _(68), _(69),
169 _(70), _(71), _(72), _(73), _(74), _(75), _(76), _(77), _(78), _(79),
170 _(80), _(81), _(82), _(83), _(84), _(85), _(86), _(87), _(88), _(89),
171 _(90), _(91), _(92), _(93), _(94), _(95), _(96), _(97), _(98), _(99),
172#undef _
173};
Denis Vlasenko4277eed2007-07-15 23:41:56 -0700174
Rasmus Villemoes7c43d9a2015-04-16 12:43:22 -0700175/*
176 * This will print a single '0' even if r == 0, since we would
Rasmus Villemoes675cf532015-04-16 12:43:42 -0700177 * immediately jump to out_r where two 0s would be written but only
178 * one of them accounted for in buf. This is needed by ip4_string
179 * below. All other callers pass a non-zero value of r.
Rasmus Villemoes7c43d9a2015-04-16 12:43:22 -0700180*/
Denys Vlasenko133fd9f2012-05-31 16:26:08 -0700181static noinline_for_stack
182char *put_dec_trunc8(char *buf, unsigned r)
183{
184 unsigned q;
Denis Vlasenko4277eed2007-07-15 23:41:56 -0700185
Rasmus Villemoes7c43d9a2015-04-16 12:43:22 -0700186 /* 1 <= r < 10^8 */
187 if (r < 100)
188 goto out_r;
George Spelvincb239d02012-10-04 17:12:30 -0700189
Rasmus Villemoes7c43d9a2015-04-16 12:43:22 -0700190 /* 100 <= r < 10^8 */
191 q = (r * (u64)0x28f5c29) >> 32;
192 *((u16 *)buf) = decpair[r - 100*q];
193 buf += 2;
194
195 /* 1 <= q < 10^6 */
196 if (q < 100)
197 goto out_q;
198
199 /* 100 <= q < 10^6 */
200 r = (q * (u64)0x28f5c29) >> 32;
201 *((u16 *)buf) = decpair[q - 100*r];
202 buf += 2;
203
204 /* 1 <= r < 10^4 */
205 if (r < 100)
206 goto out_r;
207
208 /* 100 <= r < 10^4 */
209 q = (r * 0x147b) >> 19;
210 *((u16 *)buf) = decpair[r - 100*q];
211 buf += 2;
212out_q:
213 /* 1 <= q < 100 */
214 r = q;
215out_r:
216 /* 1 <= r < 100 */
217 *((u16 *)buf) = decpair[r];
Rasmus Villemoes675cf532015-04-16 12:43:42 -0700218 buf += r < 10 ? 1 : 2;
Denys Vlasenko133fd9f2012-05-31 16:26:08 -0700219 return buf;
220}
221
Rasmus Villemoes7c43d9a2015-04-16 12:43:22 -0700222#if BITS_PER_LONG == 64 && BITS_PER_LONG_LONG == 64
223static noinline_for_stack
224char *put_dec_full8(char *buf, unsigned r)
225{
226 unsigned q;
Denys Vlasenko133fd9f2012-05-31 16:26:08 -0700227
Rasmus Villemoes7c43d9a2015-04-16 12:43:22 -0700228 /* 0 <= r < 10^8 */
229 q = (r * (u64)0x28f5c29) >> 32;
230 *((u16 *)buf) = decpair[r - 100*q];
231 buf += 2;
Denys Vlasenko133fd9f2012-05-31 16:26:08 -0700232
Rasmus Villemoes7c43d9a2015-04-16 12:43:22 -0700233 /* 0 <= q < 10^6 */
234 r = (q * (u64)0x28f5c29) >> 32;
235 *((u16 *)buf) = decpair[q - 100*r];
236 buf += 2;
Denys Vlasenko133fd9f2012-05-31 16:26:08 -0700237
Rasmus Villemoes7c43d9a2015-04-16 12:43:22 -0700238 /* 0 <= r < 10^4 */
239 q = (r * 0x147b) >> 19;
240 *((u16 *)buf) = decpair[r - 100*q];
241 buf += 2;
242
243 /* 0 <= q < 100 */
244 *((u16 *)buf) = decpair[q];
245 buf += 2;
246 return buf;
247}
248
249static noinline_for_stack
Denys Vlasenko133fd9f2012-05-31 16:26:08 -0700250char *put_dec(char *buf, unsigned long long n)
251{
Rasmus Villemoes7c43d9a2015-04-16 12:43:22 -0700252 if (n >= 100*1000*1000)
253 buf = put_dec_full8(buf, do_div(n, 100*1000*1000));
254 /* 1 <= n <= 1.6e11 */
255 if (n >= 100*1000*1000)
256 buf = put_dec_full8(buf, do_div(n, 100*1000*1000));
257 /* 1 <= n < 1e8 */
Denys Vlasenko133fd9f2012-05-31 16:26:08 -0700258 return put_dec_trunc8(buf, n);
259}
260
Rasmus Villemoes7c43d9a2015-04-16 12:43:22 -0700261#elif BITS_PER_LONG == 32 && BITS_PER_LONG_LONG == 64
Denys Vlasenko133fd9f2012-05-31 16:26:08 -0700262
Rasmus Villemoes7c43d9a2015-04-16 12:43:22 -0700263static void
264put_dec_full4(char *buf, unsigned r)
Denys Vlasenko133fd9f2012-05-31 16:26:08 -0700265{
Rasmus Villemoes7c43d9a2015-04-16 12:43:22 -0700266 unsigned q;
267
268 /* 0 <= r < 10^4 */
269 q = (r * 0x147b) >> 19;
270 *((u16 *)buf) = decpair[r - 100*q];
271 buf += 2;
272 /* 0 <= q < 100 */
273 *((u16 *)buf) = decpair[q];
George Spelvin23591722012-10-04 17:12:29 -0700274}
275
276/*
277 * Call put_dec_full4 on x % 10000, return x / 10000.
278 * The approximation x/10000 == (x * 0x346DC5D7) >> 43
279 * holds for all x < 1,128,869,999. The largest value this
280 * helper will ever be asked to convert is 1,125,520,955.
Rasmus Villemoes7c43d9a2015-04-16 12:43:22 -0700281 * (second call in the put_dec code, assuming n is all-ones).
George Spelvin23591722012-10-04 17:12:29 -0700282 */
Rasmus Villemoes7c43d9a2015-04-16 12:43:22 -0700283static noinline_for_stack
George Spelvin23591722012-10-04 17:12:29 -0700284unsigned put_dec_helper4(char *buf, unsigned x)
285{
286 uint32_t q = (x * (uint64_t)0x346DC5D7) >> 43;
287
288 put_dec_full4(buf, x - q * 10000);
289 return q;
Denys Vlasenko133fd9f2012-05-31 16:26:08 -0700290}
291
292/* Based on code by Douglas W. Jones found at
293 * <http://www.cs.uiowa.edu/~jones/bcd/decimal.html#sixtyfour>
294 * (with permission from the author).
295 * Performs no 64-bit division and hence should be fast on 32-bit machines.
296 */
297static
298char *put_dec(char *buf, unsigned long long n)
299{
300 uint32_t d3, d2, d1, q, h;
301
302 if (n < 100*1000*1000)
303 return put_dec_trunc8(buf, n);
304
305 d1 = ((uint32_t)n >> 16); /* implicit "& 0xffff" */
306 h = (n >> 32);
307 d2 = (h ) & 0xffff;
308 d3 = (h >> 16); /* implicit "& 0xffff" */
309
Rasmus Villemoes7c43d9a2015-04-16 12:43:22 -0700310 /* n = 2^48 d3 + 2^32 d2 + 2^16 d1 + d0
311 = 281_4749_7671_0656 d3 + 42_9496_7296 d2 + 6_5536 d1 + d0 */
Denys Vlasenko133fd9f2012-05-31 16:26:08 -0700312 q = 656 * d3 + 7296 * d2 + 5536 * d1 + ((uint32_t)n & 0xffff);
George Spelvin23591722012-10-04 17:12:29 -0700313 q = put_dec_helper4(buf, q);
Denys Vlasenko133fd9f2012-05-31 16:26:08 -0700314
George Spelvin23591722012-10-04 17:12:29 -0700315 q += 7671 * d3 + 9496 * d2 + 6 * d1;
316 q = put_dec_helper4(buf+4, q);
Denys Vlasenko133fd9f2012-05-31 16:26:08 -0700317
George Spelvin23591722012-10-04 17:12:29 -0700318 q += 4749 * d3 + 42 * d2;
319 q = put_dec_helper4(buf+8, q);
Denys Vlasenko133fd9f2012-05-31 16:26:08 -0700320
George Spelvin23591722012-10-04 17:12:29 -0700321 q += 281 * d3;
322 buf += 12;
323 if (q)
324 buf = put_dec_trunc8(buf, q);
325 else while (buf[-1] == '0')
Denys Vlasenko133fd9f2012-05-31 16:26:08 -0700326 --buf;
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800327
Denis Vlasenko4277eed2007-07-15 23:41:56 -0700328 return buf;
329}
Denys Vlasenko133fd9f2012-05-31 16:26:08 -0700330
331#endif
Denis Vlasenko4277eed2007-07-15 23:41:56 -0700332
KAMEZAWA Hiroyuki1ac101a2012-03-23 15:02:54 -0700333/*
334 * Convert passed number to decimal string.
335 * Returns the length of string. On buffer overflow, returns 0.
336 *
337 * If speed is not important, use snprintf(). It's easy to read the code.
338 */
339int num_to_str(char *buf, int size, unsigned long long num)
340{
Rasmus Villemoes7c43d9a2015-04-16 12:43:22 -0700341 /* put_dec requires 2-byte alignment of the buffer. */
342 char tmp[sizeof(num) * 3] __aligned(2);
KAMEZAWA Hiroyuki1ac101a2012-03-23 15:02:54 -0700343 int idx, len;
344
Denys Vlasenko133fd9f2012-05-31 16:26:08 -0700345 /* put_dec() may work incorrectly for num = 0 (generate "", not "0") */
346 if (num <= 9) {
347 tmp[0] = '0' + num;
348 len = 1;
349 } else {
350 len = put_dec(tmp, num) - tmp;
351 }
KAMEZAWA Hiroyuki1ac101a2012-03-23 15:02:54 -0700352
353 if (len > size)
354 return 0;
355 for (idx = 0; idx < len; ++idx)
356 buf[idx] = tmp[len - idx - 1];
Denys Vlasenko133fd9f2012-05-31 16:26:08 -0700357 return len;
KAMEZAWA Hiroyuki1ac101a2012-03-23 15:02:54 -0700358}
359
Rasmus Villemoes51be17d2015-04-15 16:17:02 -0700360#define SIGN 1 /* unsigned/signed, must be 1 */
Rasmus Villemoesd1c1b122015-04-15 16:17:11 -0700361#define LEFT 2 /* left justified */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362#define PLUS 4 /* show plus */
363#define SPACE 8 /* space if plus */
Rasmus Villemoesd1c1b122015-04-15 16:17:11 -0700364#define ZEROPAD 16 /* pad with zero, must be 16 == '0' - ' ' */
Bjorn Helgaasb89dc5d2010-03-05 10:47:31 -0700365#define SMALL 32 /* use lowercase in hex (must be 32 == 0x20) */
366#define SPECIAL 64 /* prefix hex with "0x", octal with "0" */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +0100368enum format_type {
369 FORMAT_TYPE_NONE, /* Just a string part */
Vegard Nossumed681a92009-03-14 12:08:50 +0100370 FORMAT_TYPE_WIDTH,
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +0100371 FORMAT_TYPE_PRECISION,
372 FORMAT_TYPE_CHAR,
373 FORMAT_TYPE_STR,
374 FORMAT_TYPE_PTR,
375 FORMAT_TYPE_PERCENT_CHAR,
376 FORMAT_TYPE_INVALID,
377 FORMAT_TYPE_LONG_LONG,
378 FORMAT_TYPE_ULONG,
379 FORMAT_TYPE_LONG,
Zhaoleia4e94ef2009-03-27 17:07:05 +0800380 FORMAT_TYPE_UBYTE,
381 FORMAT_TYPE_BYTE,
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +0100382 FORMAT_TYPE_USHORT,
383 FORMAT_TYPE_SHORT,
384 FORMAT_TYPE_UINT,
385 FORMAT_TYPE_INT,
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +0100386 FORMAT_TYPE_SIZE_T,
387 FORMAT_TYPE_PTRDIFF
388};
389
390struct printf_spec {
Rasmus Villemoesd0484192016-01-15 16:58:37 -0800391 unsigned int type:8; /* format_type enum */
392 signed int field_width:24; /* width of output field */
393 unsigned int flags:8; /* flags to number() */
394 unsigned int base:8; /* number base, 8, 10 or 16 only */
395 signed int precision:16; /* # of digits/chars */
396} __packed;
Rasmus Villemoes4d72ba02016-01-15 16:58:44 -0800397#define FIELD_WIDTH_MAX ((1 << 23) - 1)
398#define PRECISION_MAX ((1 << 15) - 1)
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +0100399
Joe Perchescf3b4292010-05-24 14:33:16 -0700400static noinline_for_stack
401char *number(char *buf, char *end, unsigned long long num,
402 struct printf_spec spec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403{
Rasmus Villemoes7c43d9a2015-04-16 12:43:22 -0700404 /* put_dec requires 2-byte alignment of the buffer. */
405 char tmp[3 * sizeof(num)] __aligned(2);
Denys Vlasenko9b706ae2008-02-09 23:24:09 +0100406 char sign;
407 char locase;
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +0100408 int need_pfx = ((spec.flags & SPECIAL) && spec.base != 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 int i;
Pierre Carrier7c203422012-05-29 15:07:35 -0700410 bool is_zero = num == 0LL;
Rasmus Villemoes1c7a8e62016-01-15 16:58:41 -0800411 int field_width = spec.field_width;
412 int precision = spec.precision;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
Rasmus Villemoesd0484192016-01-15 16:58:37 -0800414 BUILD_BUG_ON(sizeof(struct printf_spec) != 8);
415
Denys Vlasenko9b706ae2008-02-09 23:24:09 +0100416 /* locase = 0 or 0x20. ORing digits or letters with 'locase'
417 * produces same digits or (maybe lowercased) letters */
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +0100418 locase = (spec.flags & SMALL);
419 if (spec.flags & LEFT)
420 spec.flags &= ~ZEROPAD;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 sign = 0;
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +0100422 if (spec.flags & SIGN) {
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800423 if ((signed long long)num < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 sign = '-';
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800425 num = -(signed long long)num;
Rasmus Villemoes1c7a8e62016-01-15 16:58:41 -0800426 field_width--;
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +0100427 } else if (spec.flags & PLUS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 sign = '+';
Rasmus Villemoes1c7a8e62016-01-15 16:58:41 -0800429 field_width--;
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +0100430 } else if (spec.flags & SPACE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 sign = ' ';
Rasmus Villemoes1c7a8e62016-01-15 16:58:41 -0800432 field_width--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 }
434 }
Denis Vlasenkob39a7342007-07-15 23:41:54 -0700435 if (need_pfx) {
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +0100436 if (spec.base == 16)
Rasmus Villemoes1c7a8e62016-01-15 16:58:41 -0800437 field_width -= 2;
Pierre Carrier7c203422012-05-29 15:07:35 -0700438 else if (!is_zero)
Rasmus Villemoes1c7a8e62016-01-15 16:58:41 -0800439 field_width--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 }
Denis Vlasenkob39a7342007-07-15 23:41:54 -0700441
442 /* generate full string in tmp[], in reverse order */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 i = 0;
Denys Vlasenko133fd9f2012-05-31 16:26:08 -0700444 if (num < spec.base)
Rasmus Villemoes3ea8d442015-04-15 16:17:08 -0700445 tmp[i++] = hex_asc_upper[num] | locase;
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +0100446 else if (spec.base != 10) { /* 8 or 16 */
447 int mask = spec.base - 1;
Denis Vlasenkob39a7342007-07-15 23:41:54 -0700448 int shift = 3;
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800449
450 if (spec.base == 16)
451 shift = 4;
Denis Vlasenkob39a7342007-07-15 23:41:54 -0700452 do {
Rasmus Villemoes3ea8d442015-04-15 16:17:08 -0700453 tmp[i++] = (hex_asc_upper[((unsigned char)num) & mask] | locase);
Denis Vlasenkob39a7342007-07-15 23:41:54 -0700454 num >>= shift;
455 } while (num);
Denis Vlasenko4277eed2007-07-15 23:41:56 -0700456 } else { /* base 10 */
457 i = put_dec(tmp, num) - tmp;
458 }
Denis Vlasenkob39a7342007-07-15 23:41:54 -0700459
460 /* printing 100 using %2d gives "100", not "00" */
Rasmus Villemoes1c7a8e62016-01-15 16:58:41 -0800461 if (i > precision)
462 precision = i;
Denis Vlasenkob39a7342007-07-15 23:41:54 -0700463 /* leading space padding */
Rasmus Villemoes1c7a8e62016-01-15 16:58:41 -0800464 field_width -= precision;
Rasmus Villemoes51be17d2015-04-15 16:17:02 -0700465 if (!(spec.flags & (ZEROPAD | LEFT))) {
Rasmus Villemoes1c7a8e62016-01-15 16:58:41 -0800466 while (--field_width >= 0) {
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -0700467 if (buf < end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 *buf = ' ';
469 ++buf;
470 }
471 }
Denis Vlasenkob39a7342007-07-15 23:41:54 -0700472 /* sign */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 if (sign) {
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -0700474 if (buf < end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 *buf = sign;
476 ++buf;
477 }
Denis Vlasenkob39a7342007-07-15 23:41:54 -0700478 /* "0x" / "0" prefix */
479 if (need_pfx) {
Pierre Carrier7c203422012-05-29 15:07:35 -0700480 if (spec.base == 16 || !is_zero) {
481 if (buf < end)
482 *buf = '0';
483 ++buf;
484 }
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +0100485 if (spec.base == 16) {
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -0700486 if (buf < end)
Denys Vlasenko9b706ae2008-02-09 23:24:09 +0100487 *buf = ('X' | locase);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 ++buf;
489 }
490 }
Denis Vlasenkob39a7342007-07-15 23:41:54 -0700491 /* zero or space padding */
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +0100492 if (!(spec.flags & LEFT)) {
Rasmus Villemoesd1c1b122015-04-15 16:17:11 -0700493 char c = ' ' + (spec.flags & ZEROPAD);
494 BUILD_BUG_ON(' ' + ZEROPAD != '0');
Rasmus Villemoes1c7a8e62016-01-15 16:58:41 -0800495 while (--field_width >= 0) {
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -0700496 if (buf < end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 *buf = c;
498 ++buf;
499 }
500 }
Denis Vlasenkob39a7342007-07-15 23:41:54 -0700501 /* hmm even more zero padding? */
Rasmus Villemoes1c7a8e62016-01-15 16:58:41 -0800502 while (i <= --precision) {
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -0700503 if (buf < end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 *buf = '0';
505 ++buf;
506 }
Denis Vlasenkob39a7342007-07-15 23:41:54 -0700507 /* actual digits of result */
508 while (--i >= 0) {
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -0700509 if (buf < end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 *buf = tmp[i];
511 ++buf;
512 }
Denis Vlasenkob39a7342007-07-15 23:41:54 -0700513 /* trailing space padding */
Rasmus Villemoes1c7a8e62016-01-15 16:58:41 -0800514 while (--field_width >= 0) {
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -0700515 if (buf < end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 *buf = ' ';
517 ++buf;
518 }
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800519
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 return buf;
521}
522
Andy Shevchenko3cab1e72016-01-15 16:59:18 -0800523static noinline_for_stack
524char *special_hex_number(char *buf, char *end, unsigned long long num, int size)
525{
526 struct printf_spec spec;
527
528 spec.type = FORMAT_TYPE_PTR;
529 spec.field_width = 2 + 2 * size; /* 0x + hex */
530 spec.flags = SPECIAL | SMALL | ZEROPAD;
531 spec.base = 16;
532 spec.precision = -1;
533
534 return number(buf, end, num, spec);
535}
536
Rasmus Villemoescfccde02016-01-15 16:58:28 -0800537static void move_right(char *buf, char *end, unsigned len, unsigned spaces)
Al Viro4b6ccca2013-09-03 12:00:44 -0400538{
539 size_t size;
540 if (buf >= end) /* nowhere to put anything */
541 return;
542 size = end - buf;
543 if (size <= spaces) {
544 memset(buf, ' ', size);
545 return;
546 }
547 if (len) {
548 if (len > size - spaces)
549 len = size - spaces;
550 memmove(buf + spaces, buf, len);
551 }
552 memset(buf, ' ', spaces);
553}
554
Rasmus Villemoescfccde02016-01-15 16:58:28 -0800555/*
556 * Handle field width padding for a string.
557 * @buf: current buffer position
558 * @n: length of string
559 * @end: end of output buffer
560 * @spec: for field width and flags
561 * Returns: new buffer position after padding.
562 */
563static noinline_for_stack
564char *widen_string(char *buf, int n, char *end, struct printf_spec spec)
565{
566 unsigned spaces;
567
568 if (likely(n >= spec.field_width))
569 return buf;
570 /* we want to pad the sucker */
571 spaces = spec.field_width - n;
572 if (!(spec.flags & LEFT)) {
573 move_right(buf - n, end, n, spaces);
574 return buf + spaces;
575 }
576 while (spaces--) {
577 if (buf < end)
578 *buf = ' ';
579 ++buf;
580 }
581 return buf;
582}
583
Al Viro4b6ccca2013-09-03 12:00:44 -0400584static noinline_for_stack
Rasmus Villemoes95508cf2016-01-15 16:58:31 -0800585char *string(char *buf, char *end, const char *s, struct printf_spec spec)
586{
Rasmus Villemoes34fc8b92016-01-15 16:58:34 -0800587 int len = 0;
588 size_t lim = spec.precision;
Rasmus Villemoes95508cf2016-01-15 16:58:31 -0800589
590 if ((unsigned long)s < PAGE_SIZE)
591 s = "(null)";
592
Rasmus Villemoes34fc8b92016-01-15 16:58:34 -0800593 while (lim--) {
594 char c = *s++;
595 if (!c)
596 break;
Rasmus Villemoes95508cf2016-01-15 16:58:31 -0800597 if (buf < end)
Rasmus Villemoes34fc8b92016-01-15 16:58:34 -0800598 *buf = c;
Rasmus Villemoes95508cf2016-01-15 16:58:31 -0800599 ++buf;
Rasmus Villemoes34fc8b92016-01-15 16:58:34 -0800600 ++len;
Rasmus Villemoes95508cf2016-01-15 16:58:31 -0800601 }
Rasmus Villemoes34fc8b92016-01-15 16:58:34 -0800602 return widen_string(buf, len, end, spec);
Rasmus Villemoes95508cf2016-01-15 16:58:31 -0800603}
604
605static noinline_for_stack
Al Viro4b6ccca2013-09-03 12:00:44 -0400606char *dentry_name(char *buf, char *end, const struct dentry *d, struct printf_spec spec,
607 const char *fmt)
608{
609 const char *array[4], *s;
610 const struct dentry *p;
611 int depth;
612 int i, n;
613
614 switch (fmt[1]) {
615 case '2': case '3': case '4':
616 depth = fmt[1] - '0';
617 break;
618 default:
619 depth = 1;
620 }
621
622 rcu_read_lock();
623 for (i = 0; i < depth; i++, d = p) {
Mark Rutland6aa7de02017-10-23 14:07:29 -0700624 p = READ_ONCE(d->d_parent);
625 array[i] = READ_ONCE(d->d_name.name);
Al Viro4b6ccca2013-09-03 12:00:44 -0400626 if (p == d) {
627 if (i)
628 array[i] = "";
629 i++;
630 break;
631 }
632 }
633 s = array[--i];
634 for (n = 0; n != spec.precision; n++, buf++) {
635 char c = *s++;
636 if (!c) {
637 if (!i)
638 break;
639 c = '/';
640 s = array[--i];
641 }
642 if (buf < end)
643 *buf = c;
644 }
645 rcu_read_unlock();
Rasmus Villemoescfccde02016-01-15 16:58:28 -0800646 return widen_string(buf, n, end, spec);
Al Viro4b6ccca2013-09-03 12:00:44 -0400647}
648
Dmitry Monakhov1031bc52015-04-13 16:31:35 +0400649#ifdef CONFIG_BLOCK
650static noinline_for_stack
651char *bdev_name(char *buf, char *end, struct block_device *bdev,
652 struct printf_spec spec, const char *fmt)
653{
654 struct gendisk *hd = bdev->bd_disk;
655
656 buf = string(buf, end, hd->disk_name, spec);
657 if (bdev->bd_part->partno) {
658 if (isdigit(hd->disk_name[strlen(hd->disk_name)-1])) {
659 if (buf < end)
660 *buf = 'p';
661 buf++;
662 }
663 buf = number(buf, end, bdev->bd_part->partno, spec);
664 }
665 return buf;
666}
667#endif
668
Joe Perchescf3b4292010-05-24 14:33:16 -0700669static noinline_for_stack
670char *symbol_string(char *buf, char *end, void *ptr,
Joe Perchesb0d33c22012-12-12 10:18:50 -0800671 struct printf_spec spec, const char *fmt)
Linus Torvalds0fe1ef22008-07-06 16:43:12 -0700672{
Joe Perchesb0d33c22012-12-12 10:18:50 -0800673 unsigned long value;
Linus Torvalds0fe1ef22008-07-06 16:43:12 -0700674#ifdef CONFIG_KALLSYMS
675 char sym[KSYM_SYMBOL_LEN];
Joe Perchesb0d33c22012-12-12 10:18:50 -0800676#endif
677
678 if (fmt[1] == 'R')
679 ptr = __builtin_extract_return_addr(ptr);
680 value = (unsigned long)ptr;
681
682#ifdef CONFIG_KALLSYMS
683 if (*fmt == 'B')
Namhyung Kim0f77a8d2011-03-24 11:42:29 +0900684 sprint_backtrace(sym, value);
Joe Perchesb0d33c22012-12-12 10:18:50 -0800685 else if (*fmt != 'f' && *fmt != 's')
Frederic Weisbecker0c8b9462009-04-15 17:48:18 +0200686 sprint_symbol(sym, value);
687 else
Stephen Boyd4796dd22012-05-29 15:07:33 -0700688 sprint_symbol_no_offset(sym, value);
André Goddard Rosa7b9186f2009-12-14 18:00:57 -0800689
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +0100690 return string(buf, end, sym, spec);
Linus Torvalds0fe1ef22008-07-06 16:43:12 -0700691#else
Andy Shevchenko3cab1e72016-01-15 16:59:18 -0800692 return special_hex_number(buf, end, value, sizeof(void *));
Linus Torvalds0fe1ef22008-07-06 16:43:12 -0700693#endif
694}
695
Andy Shevchenkoabd4fe62018-02-16 23:07:05 +0200696static const struct printf_spec default_str_spec = {
697 .field_width = -1,
698 .precision = -1,
699};
700
Andy Shevchenkoce0b4912018-02-16 23:07:04 +0200701static const struct printf_spec default_dec_spec = {
702 .base = 10,
703 .precision = -1,
704};
705
Joe Perchescf3b4292010-05-24 14:33:16 -0700706static noinline_for_stack
707char *resource_string(char *buf, char *end, struct resource *res,
708 struct printf_spec spec, const char *fmt)
Linus Torvalds332d2e72008-10-20 15:07:34 +1100709{
710#ifndef IO_RSRC_PRINTK_SIZE
Bjorn Helgaas28405372009-10-06 15:33:29 -0600711#define IO_RSRC_PRINTK_SIZE 6
Linus Torvalds332d2e72008-10-20 15:07:34 +1100712#endif
713
714#ifndef MEM_RSRC_PRINTK_SIZE
Bjorn Helgaas28405372009-10-06 15:33:29 -0600715#define MEM_RSRC_PRINTK_SIZE 10
Linus Torvalds332d2e72008-10-20 15:07:34 +1100716#endif
Bjorn Helgaas4da0b662010-03-05 10:47:37 -0700717 static const struct printf_spec io_spec = {
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +0100718 .base = 16,
Bjorn Helgaas4da0b662010-03-05 10:47:37 -0700719 .field_width = IO_RSRC_PRINTK_SIZE,
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +0100720 .precision = -1,
721 .flags = SPECIAL | SMALL | ZEROPAD,
722 };
Bjorn Helgaas4da0b662010-03-05 10:47:37 -0700723 static const struct printf_spec mem_spec = {
724 .base = 16,
725 .field_width = MEM_RSRC_PRINTK_SIZE,
726 .precision = -1,
727 .flags = SPECIAL | SMALL | ZEROPAD,
728 };
Bjorn Helgaas0f4050c2010-03-05 10:47:42 -0700729 static const struct printf_spec bus_spec = {
730 .base = 16,
731 .field_width = 2,
732 .precision = -1,
733 .flags = SMALL | ZEROPAD,
734 };
Bjorn Helgaas4da0b662010-03-05 10:47:37 -0700735 static const struct printf_spec str_spec = {
Bjorn Helgaasfd955412009-10-06 15:33:39 -0600736 .field_width = -1,
737 .precision = 10,
738 .flags = LEFT,
739 };
Bjorn Helgaas4da0b662010-03-05 10:47:37 -0700740 static const struct printf_spec flag_spec = {
Bjorn Helgaasfd955412009-10-06 15:33:39 -0600741 .base = 16,
742 .precision = -1,
743 .flags = SPECIAL | SMALL,
744 };
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600745
746 /* 32-bit res (sizeof==4): 10 chars in dec, 10 in hex ("0x" + 8)
747 * 64-bit res (sizeof==8): 20 chars in dec, 18 in hex ("0x" + 16) */
748#define RSRC_BUF_SIZE ((2 * sizeof(resource_size_t)) + 4)
749#define FLAG_BUF_SIZE (2 * sizeof(res->flags))
Bjorn Helgaas9d7cca02010-03-05 10:47:47 -0700750#define DECODED_BUF_SIZE sizeof("[mem - 64bit pref window disabled]")
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600751#define RAW_BUF_SIZE sizeof("[mem - flags 0x]")
752 char sym[max(2*RSRC_BUF_SIZE + DECODED_BUF_SIZE,
753 2*RSRC_BUF_SIZE + FLAG_BUF_SIZE + RAW_BUF_SIZE)];
754
Linus Torvalds332d2e72008-10-20 15:07:34 +1100755 char *p = sym, *pend = sym + sizeof(sym);
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600756 int decode = (fmt[0] == 'R') ? 1 : 0;
Bjorn Helgaas4da0b662010-03-05 10:47:37 -0700757 const struct printf_spec *specp;
Linus Torvalds332d2e72008-10-20 15:07:34 +1100758
759 *p++ = '[';
Bjorn Helgaas4da0b662010-03-05 10:47:37 -0700760 if (res->flags & IORESOURCE_IO) {
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600761 p = string(p, pend, "io ", str_spec);
Bjorn Helgaas4da0b662010-03-05 10:47:37 -0700762 specp = &io_spec;
763 } else if (res->flags & IORESOURCE_MEM) {
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600764 p = string(p, pend, "mem ", str_spec);
Bjorn Helgaas4da0b662010-03-05 10:47:37 -0700765 specp = &mem_spec;
766 } else if (res->flags & IORESOURCE_IRQ) {
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600767 p = string(p, pend, "irq ", str_spec);
Andy Shevchenkoce0b4912018-02-16 23:07:04 +0200768 specp = &default_dec_spec;
Bjorn Helgaas4da0b662010-03-05 10:47:37 -0700769 } else if (res->flags & IORESOURCE_DMA) {
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600770 p = string(p, pend, "dma ", str_spec);
Andy Shevchenkoce0b4912018-02-16 23:07:04 +0200771 specp = &default_dec_spec;
Bjorn Helgaas0f4050c2010-03-05 10:47:42 -0700772 } else if (res->flags & IORESOURCE_BUS) {
773 p = string(p, pend, "bus ", str_spec);
774 specp = &bus_spec;
Bjorn Helgaas4da0b662010-03-05 10:47:37 -0700775 } else {
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600776 p = string(p, pend, "??? ", str_spec);
Bjorn Helgaas4da0b662010-03-05 10:47:37 -0700777 specp = &mem_spec;
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600778 decode = 0;
Bjorn Helgaasfd955412009-10-06 15:33:39 -0600779 }
Bjorn Helgaasd19cb802014-02-26 11:25:56 -0700780 if (decode && res->flags & IORESOURCE_UNSET) {
781 p = string(p, pend, "size ", str_spec);
782 p = number(p, pend, resource_size(res), *specp);
783 } else {
784 p = number(p, pend, res->start, *specp);
785 if (res->start != res->end) {
786 *p++ = '-';
787 p = number(p, pend, res->end, *specp);
788 }
Bjorn Helgaasc91d3372009-10-06 15:33:34 -0600789 }
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600790 if (decode) {
Bjorn Helgaasfd955412009-10-06 15:33:39 -0600791 if (res->flags & IORESOURCE_MEM_64)
792 p = string(p, pend, " 64bit", str_spec);
793 if (res->flags & IORESOURCE_PREFETCH)
794 p = string(p, pend, " pref", str_spec);
Bjorn Helgaas9d7cca02010-03-05 10:47:47 -0700795 if (res->flags & IORESOURCE_WINDOW)
796 p = string(p, pend, " window", str_spec);
Bjorn Helgaasfd955412009-10-06 15:33:39 -0600797 if (res->flags & IORESOURCE_DISABLED)
798 p = string(p, pend, " disabled", str_spec);
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600799 } else {
800 p = string(p, pend, " flags ", str_spec);
801 p = number(p, pend, res->flags, flag_spec);
Bjorn Helgaasfd955412009-10-06 15:33:39 -0600802 }
Linus Torvalds332d2e72008-10-20 15:07:34 +1100803 *p++ = ']';
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600804 *p = '\0';
Linus Torvalds332d2e72008-10-20 15:07:34 +1100805
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +0100806 return string(buf, end, sym, spec);
Linus Torvalds332d2e72008-10-20 15:07:34 +1100807}
808
Joe Perchescf3b4292010-05-24 14:33:16 -0700809static noinline_for_stack
Andy Shevchenko31550a12012-07-30 14:40:27 -0700810char *hex_string(char *buf, char *end, u8 *addr, struct printf_spec spec,
811 const char *fmt)
812{
Steven Rostedt360603a2013-05-28 15:47:39 -0400813 int i, len = 1; /* if we pass '%ph[CDN]', field width remains
Andy Shevchenko31550a12012-07-30 14:40:27 -0700814 negative value, fallback to the default */
815 char separator;
816
817 if (spec.field_width == 0)
818 /* nothing to print */
819 return buf;
820
821 if (ZERO_OR_NULL_PTR(addr))
822 /* NULL pointer */
823 return string(buf, end, NULL, spec);
824
825 switch (fmt[1]) {
826 case 'C':
827 separator = ':';
828 break;
829 case 'D':
830 separator = '-';
831 break;
832 case 'N':
833 separator = 0;
834 break;
835 default:
836 separator = ' ';
837 break;
838 }
839
840 if (spec.field_width > 0)
841 len = min_t(int, spec.field_width, 64);
842
Rasmus Villemoes9c98f232015-04-15 16:17:23 -0700843 for (i = 0; i < len; ++i) {
844 if (buf < end)
845 *buf = hex_asc_hi(addr[i]);
846 ++buf;
847 if (buf < end)
848 *buf = hex_asc_lo(addr[i]);
849 ++buf;
Andy Shevchenko31550a12012-07-30 14:40:27 -0700850
Rasmus Villemoes9c98f232015-04-15 16:17:23 -0700851 if (separator && i != len - 1) {
852 if (buf < end)
853 *buf = separator;
854 ++buf;
855 }
Andy Shevchenko31550a12012-07-30 14:40:27 -0700856 }
857
858 return buf;
859}
860
861static noinline_for_stack
Tejun Heodbc760b2015-02-13 14:36:53 -0800862char *bitmap_string(char *buf, char *end, unsigned long *bitmap,
863 struct printf_spec spec, const char *fmt)
864{
865 const int CHUNKSZ = 32;
866 int nr_bits = max_t(int, spec.field_width, 0);
867 int i, chunksz;
868 bool first = true;
869
870 /* reused to print numbers */
871 spec = (struct printf_spec){ .flags = SMALL | ZEROPAD, .base = 16 };
872
873 chunksz = nr_bits & (CHUNKSZ - 1);
874 if (chunksz == 0)
875 chunksz = CHUNKSZ;
876
877 i = ALIGN(nr_bits, CHUNKSZ) - CHUNKSZ;
878 for (; i >= 0; i -= CHUNKSZ) {
879 u32 chunkmask, val;
880 int word, bit;
881
882 chunkmask = ((1ULL << chunksz) - 1);
883 word = i / BITS_PER_LONG;
884 bit = i % BITS_PER_LONG;
885 val = (bitmap[word] >> bit) & chunkmask;
886
887 if (!first) {
888 if (buf < end)
889 *buf = ',';
890 buf++;
891 }
892 first = false;
893
894 spec.field_width = DIV_ROUND_UP(chunksz, 4);
895 buf = number(buf, end, val, spec);
896
897 chunksz = CHUNKSZ;
898 }
899 return buf;
900}
901
902static noinline_for_stack
903char *bitmap_list_string(char *buf, char *end, unsigned long *bitmap,
904 struct printf_spec spec, const char *fmt)
905{
906 int nr_bits = max_t(int, spec.field_width, 0);
907 /* current bit is 'cur', most recently seen range is [rbot, rtop] */
908 int cur, rbot, rtop;
909 bool first = true;
910
Tejun Heodbc760b2015-02-13 14:36:53 -0800911 rbot = cur = find_first_bit(bitmap, nr_bits);
912 while (cur < nr_bits) {
913 rtop = cur;
914 cur = find_next_bit(bitmap, nr_bits, cur + 1);
915 if (cur < nr_bits && cur <= rtop + 1)
916 continue;
917
918 if (!first) {
919 if (buf < end)
920 *buf = ',';
921 buf++;
922 }
923 first = false;
924
Andy Shevchenkoce0b4912018-02-16 23:07:04 +0200925 buf = number(buf, end, rbot, default_dec_spec);
Tejun Heodbc760b2015-02-13 14:36:53 -0800926 if (rbot < rtop) {
927 if (buf < end)
928 *buf = '-';
929 buf++;
930
Andy Shevchenkoce0b4912018-02-16 23:07:04 +0200931 buf = number(buf, end, rtop, default_dec_spec);
Tejun Heodbc760b2015-02-13 14:36:53 -0800932 }
933
934 rbot = cur;
935 }
936 return buf;
937}
938
939static noinline_for_stack
Joe Perchescf3b4292010-05-24 14:33:16 -0700940char *mac_address_string(char *buf, char *end, u8 *addr,
941 struct printf_spec spec, const char *fmt)
Harvey Harrisondd45c9c2008-10-27 15:47:12 -0700942{
Joe Perches8a27f7c2009-08-17 12:29:44 +0000943 char mac_addr[sizeof("xx:xx:xx:xx:xx:xx")];
Harvey Harrisondd45c9c2008-10-27 15:47:12 -0700944 char *p = mac_addr;
945 int i;
Joe Perchesbc7259a2010-01-07 11:43:50 +0000946 char separator;
Andrei Emeltchenko76597ff92012-07-30 14:40:23 -0700947 bool reversed = false;
Joe Perchesbc7259a2010-01-07 11:43:50 +0000948
Andrei Emeltchenko76597ff92012-07-30 14:40:23 -0700949 switch (fmt[1]) {
950 case 'F':
Joe Perchesbc7259a2010-01-07 11:43:50 +0000951 separator = '-';
Andrei Emeltchenko76597ff92012-07-30 14:40:23 -0700952 break;
953
954 case 'R':
955 reversed = true;
956 /* fall through */
957
958 default:
Joe Perchesbc7259a2010-01-07 11:43:50 +0000959 separator = ':';
Andrei Emeltchenko76597ff92012-07-30 14:40:23 -0700960 break;
Joe Perchesbc7259a2010-01-07 11:43:50 +0000961 }
Harvey Harrisondd45c9c2008-10-27 15:47:12 -0700962
963 for (i = 0; i < 6; i++) {
Andrei Emeltchenko76597ff92012-07-30 14:40:23 -0700964 if (reversed)
965 p = hex_byte_pack(p, addr[5 - i]);
966 else
967 p = hex_byte_pack(p, addr[i]);
968
Joe Perches8a27f7c2009-08-17 12:29:44 +0000969 if (fmt[0] == 'M' && i != 5)
Joe Perchesbc7259a2010-01-07 11:43:50 +0000970 *p++ = separator;
Harvey Harrisondd45c9c2008-10-27 15:47:12 -0700971 }
972 *p = '\0';
973
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +0100974 return string(buf, end, mac_addr, spec);
Harvey Harrisondd45c9c2008-10-27 15:47:12 -0700975}
976
Joe Perchescf3b4292010-05-24 14:33:16 -0700977static noinline_for_stack
978char *ip4_string(char *p, const u8 *addr, const char *fmt)
Harvey Harrison689afa72008-10-28 16:04:44 -0700979{
Harvey Harrison689afa72008-10-28 16:04:44 -0700980 int i;
Joe Perches0159f242010-01-13 20:23:30 -0800981 bool leading_zeros = (fmt[0] == 'i');
982 int index;
983 int step;
Harvey Harrison689afa72008-10-28 16:04:44 -0700984
Joe Perches0159f242010-01-13 20:23:30 -0800985 switch (fmt[2]) {
986 case 'h':
987#ifdef __BIG_ENDIAN
988 index = 0;
989 step = 1;
990#else
991 index = 3;
992 step = -1;
993#endif
994 break;
995 case 'l':
996 index = 3;
997 step = -1;
998 break;
999 case 'n':
1000 case 'b':
1001 default:
1002 index = 0;
1003 step = 1;
1004 break;
1005 }
Joe Perches8a27f7c2009-08-17 12:29:44 +00001006 for (i = 0; i < 4; i++) {
Rasmus Villemoes7c43d9a2015-04-16 12:43:22 -07001007 char temp[4] __aligned(2); /* hold each IP quad in reverse order */
Denys Vlasenko133fd9f2012-05-31 16:26:08 -07001008 int digits = put_dec_trunc8(temp, addr[index]) - temp;
Joe Perches8a27f7c2009-08-17 12:29:44 +00001009 if (leading_zeros) {
1010 if (digits < 3)
1011 *p++ = '0';
1012 if (digits < 2)
1013 *p++ = '0';
1014 }
1015 /* reverse the digits in the quad */
1016 while (digits--)
1017 *p++ = temp[digits];
1018 if (i < 3)
1019 *p++ = '.';
Joe Perches0159f242010-01-13 20:23:30 -08001020 index += step;
Joe Perches8a27f7c2009-08-17 12:29:44 +00001021 }
Joe Perches8a27f7c2009-08-17 12:29:44 +00001022 *p = '\0';
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001023
Joe Perches8a27f7c2009-08-17 12:29:44 +00001024 return p;
1025}
1026
Joe Perchescf3b4292010-05-24 14:33:16 -07001027static noinline_for_stack
1028char *ip6_compressed_string(char *p, const char *addr)
Joe Perches8a27f7c2009-08-17 12:29:44 +00001029{
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001030 int i, j, range;
Joe Perches8a27f7c2009-08-17 12:29:44 +00001031 unsigned char zerolength[8];
1032 int longest = 1;
1033 int colonpos = -1;
1034 u16 word;
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001035 u8 hi, lo;
Joe Perches8a27f7c2009-08-17 12:29:44 +00001036 bool needcolon = false;
Joe Percheseb78cd22009-09-18 13:04:06 +00001037 bool useIPv4;
1038 struct in6_addr in6;
1039
1040 memcpy(&in6, addr, sizeof(struct in6_addr));
1041
1042 useIPv4 = ipv6_addr_v4mapped(&in6) || ipv6_addr_is_isatap(&in6);
Joe Perches8a27f7c2009-08-17 12:29:44 +00001043
1044 memset(zerolength, 0, sizeof(zerolength));
1045
1046 if (useIPv4)
1047 range = 6;
1048 else
1049 range = 8;
1050
1051 /* find position of longest 0 run */
1052 for (i = 0; i < range; i++) {
1053 for (j = i; j < range; j++) {
Joe Percheseb78cd22009-09-18 13:04:06 +00001054 if (in6.s6_addr16[j] != 0)
Joe Perches8a27f7c2009-08-17 12:29:44 +00001055 break;
1056 zerolength[i]++;
1057 }
1058 }
1059 for (i = 0; i < range; i++) {
1060 if (zerolength[i] > longest) {
1061 longest = zerolength[i];
1062 colonpos = i;
1063 }
1064 }
Joe Perches29cf5192011-06-09 11:23:37 -07001065 if (longest == 1) /* don't compress a single 0 */
1066 colonpos = -1;
Joe Perches8a27f7c2009-08-17 12:29:44 +00001067
1068 /* emit address */
1069 for (i = 0; i < range; i++) {
1070 if (i == colonpos) {
1071 if (needcolon || i == 0)
1072 *p++ = ':';
1073 *p++ = ':';
1074 needcolon = false;
1075 i += longest - 1;
1076 continue;
1077 }
1078 if (needcolon) {
1079 *p++ = ':';
1080 needcolon = false;
1081 }
1082 /* hex u16 without leading 0s */
Joe Percheseb78cd22009-09-18 13:04:06 +00001083 word = ntohs(in6.s6_addr16[i]);
Joe Perches8a27f7c2009-08-17 12:29:44 +00001084 hi = word >> 8;
1085 lo = word & 0xff;
1086 if (hi) {
1087 if (hi > 0x0f)
Andy Shevchenko55036ba2011-10-31 17:12:41 -07001088 p = hex_byte_pack(p, hi);
Joe Perches8a27f7c2009-08-17 12:29:44 +00001089 else
1090 *p++ = hex_asc_lo(hi);
Andy Shevchenko55036ba2011-10-31 17:12:41 -07001091 p = hex_byte_pack(p, lo);
Joe Perches8a27f7c2009-08-17 12:29:44 +00001092 }
André Goddard Rosab5ff9922009-12-14 18:00:59 -08001093 else if (lo > 0x0f)
Andy Shevchenko55036ba2011-10-31 17:12:41 -07001094 p = hex_byte_pack(p, lo);
Joe Perches8a27f7c2009-08-17 12:29:44 +00001095 else
1096 *p++ = hex_asc_lo(lo);
1097 needcolon = true;
1098 }
1099
1100 if (useIPv4) {
1101 if (needcolon)
1102 *p++ = ':';
Joe Perches0159f242010-01-13 20:23:30 -08001103 p = ip4_string(p, &in6.s6_addr[12], "I4");
Joe Perches8a27f7c2009-08-17 12:29:44 +00001104 }
Joe Perches8a27f7c2009-08-17 12:29:44 +00001105 *p = '\0';
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001106
Joe Perches8a27f7c2009-08-17 12:29:44 +00001107 return p;
1108}
1109
Joe Perchescf3b4292010-05-24 14:33:16 -07001110static noinline_for_stack
1111char *ip6_string(char *p, const char *addr, const char *fmt)
Joe Perches8a27f7c2009-08-17 12:29:44 +00001112{
1113 int i;
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001114
Harvey Harrison689afa72008-10-28 16:04:44 -07001115 for (i = 0; i < 8; i++) {
Andy Shevchenko55036ba2011-10-31 17:12:41 -07001116 p = hex_byte_pack(p, *addr++);
1117 p = hex_byte_pack(p, *addr++);
Joe Perches8a27f7c2009-08-17 12:29:44 +00001118 if (fmt[0] == 'I' && i != 7)
Harvey Harrison689afa72008-10-28 16:04:44 -07001119 *p++ = ':';
1120 }
1121 *p = '\0';
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08001122
Joe Perches8a27f7c2009-08-17 12:29:44 +00001123 return p;
1124}
1125
Joe Perchescf3b4292010-05-24 14:33:16 -07001126static noinline_for_stack
1127char *ip6_addr_string(char *buf, char *end, const u8 *addr,
1128 struct printf_spec spec, const char *fmt)
Joe Perches8a27f7c2009-08-17 12:29:44 +00001129{
1130 char ip6_addr[sizeof("xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:255.255.255.255")];
1131
1132 if (fmt[0] == 'I' && fmt[2] == 'c')
Joe Percheseb78cd22009-09-18 13:04:06 +00001133 ip6_compressed_string(ip6_addr, addr);
Joe Perches8a27f7c2009-08-17 12:29:44 +00001134 else
Joe Percheseb78cd22009-09-18 13:04:06 +00001135 ip6_string(ip6_addr, addr, fmt);
Harvey Harrison689afa72008-10-28 16:04:44 -07001136
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +01001137 return string(buf, end, ip6_addr, spec);
Harvey Harrison689afa72008-10-28 16:04:44 -07001138}
1139
Joe Perchescf3b4292010-05-24 14:33:16 -07001140static noinline_for_stack
1141char *ip4_addr_string(char *buf, char *end, const u8 *addr,
1142 struct printf_spec spec, const char *fmt)
Harvey Harrison4aa99602008-10-29 12:49:58 -07001143{
Joe Perches8a27f7c2009-08-17 12:29:44 +00001144 char ip4_addr[sizeof("255.255.255.255")];
Harvey Harrison4aa99602008-10-29 12:49:58 -07001145
Joe Perches0159f242010-01-13 20:23:30 -08001146 ip4_string(ip4_addr, addr, fmt);
Harvey Harrison4aa99602008-10-29 12:49:58 -07001147
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +01001148 return string(buf, end, ip4_addr, spec);
Harvey Harrison4aa99602008-10-29 12:49:58 -07001149}
1150
Joe Perchescf3b4292010-05-24 14:33:16 -07001151static noinline_for_stack
Daniel Borkmann10679642013-06-28 19:49:39 +02001152char *ip6_addr_string_sa(char *buf, char *end, const struct sockaddr_in6 *sa,
1153 struct printf_spec spec, const char *fmt)
1154{
1155 bool have_p = false, have_s = false, have_f = false, have_c = false;
1156 char ip6_addr[sizeof("[xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:255.255.255.255]") +
1157 sizeof(":12345") + sizeof("/123456789") +
1158 sizeof("%1234567890")];
1159 char *p = ip6_addr, *pend = ip6_addr + sizeof(ip6_addr);
1160 const u8 *addr = (const u8 *) &sa->sin6_addr;
1161 char fmt6[2] = { fmt[0], '6' };
1162 u8 off = 0;
1163
1164 fmt++;
1165 while (isalpha(*++fmt)) {
1166 switch (*fmt) {
1167 case 'p':
1168 have_p = true;
1169 break;
1170 case 'f':
1171 have_f = true;
1172 break;
1173 case 's':
1174 have_s = true;
1175 break;
1176 case 'c':
1177 have_c = true;
1178 break;
1179 }
1180 }
1181
1182 if (have_p || have_s || have_f) {
1183 *p = '[';
1184 off = 1;
1185 }
1186
1187 if (fmt6[0] == 'I' && have_c)
1188 p = ip6_compressed_string(ip6_addr + off, addr);
1189 else
1190 p = ip6_string(ip6_addr + off, addr, fmt6);
1191
1192 if (have_p || have_s || have_f)
1193 *p++ = ']';
1194
1195 if (have_p) {
1196 *p++ = ':';
1197 p = number(p, pend, ntohs(sa->sin6_port), spec);
1198 }
1199 if (have_f) {
1200 *p++ = '/';
1201 p = number(p, pend, ntohl(sa->sin6_flowinfo &
1202 IPV6_FLOWINFO_MASK), spec);
1203 }
1204 if (have_s) {
1205 *p++ = '%';
1206 p = number(p, pend, sa->sin6_scope_id, spec);
1207 }
1208 *p = '\0';
1209
1210 return string(buf, end, ip6_addr, spec);
1211}
1212
1213static noinline_for_stack
1214char *ip4_addr_string_sa(char *buf, char *end, const struct sockaddr_in *sa,
1215 struct printf_spec spec, const char *fmt)
1216{
1217 bool have_p = false;
1218 char *p, ip4_addr[sizeof("255.255.255.255") + sizeof(":12345")];
1219 char *pend = ip4_addr + sizeof(ip4_addr);
1220 const u8 *addr = (const u8 *) &sa->sin_addr.s_addr;
1221 char fmt4[3] = { fmt[0], '4', 0 };
1222
1223 fmt++;
1224 while (isalpha(*++fmt)) {
1225 switch (*fmt) {
1226 case 'p':
1227 have_p = true;
1228 break;
1229 case 'h':
1230 case 'l':
1231 case 'n':
1232 case 'b':
1233 fmt4[2] = *fmt;
1234 break;
1235 }
1236 }
1237
1238 p = ip4_string(ip4_addr, addr, fmt4);
1239 if (have_p) {
1240 *p++ = ':';
1241 p = number(p, pend, ntohs(sa->sin_port), spec);
1242 }
1243 *p = '\0';
1244
1245 return string(buf, end, ip4_addr, spec);
1246}
1247
1248static noinline_for_stack
Andy Shevchenko71dca952014-10-13 15:55:18 -07001249char *escaped_string(char *buf, char *end, u8 *addr, struct printf_spec spec,
1250 const char *fmt)
1251{
1252 bool found = true;
1253 int count = 1;
1254 unsigned int flags = 0;
1255 int len;
1256
1257 if (spec.field_width == 0)
1258 return buf; /* nothing to print */
1259
1260 if (ZERO_OR_NULL_PTR(addr))
1261 return string(buf, end, NULL, spec); /* NULL pointer */
1262
1263
1264 do {
1265 switch (fmt[count++]) {
1266 case 'a':
1267 flags |= ESCAPE_ANY;
1268 break;
1269 case 'c':
1270 flags |= ESCAPE_SPECIAL;
1271 break;
1272 case 'h':
1273 flags |= ESCAPE_HEX;
1274 break;
1275 case 'n':
1276 flags |= ESCAPE_NULL;
1277 break;
1278 case 'o':
1279 flags |= ESCAPE_OCTAL;
1280 break;
1281 case 'p':
1282 flags |= ESCAPE_NP;
1283 break;
1284 case 's':
1285 flags |= ESCAPE_SPACE;
1286 break;
1287 default:
1288 found = false;
1289 break;
1290 }
1291 } while (found);
1292
1293 if (!flags)
1294 flags = ESCAPE_ANY_NP;
1295
1296 len = spec.field_width < 0 ? 1 : spec.field_width;
1297
Rasmus Villemoes41416f22015-04-15 16:17:28 -07001298 /*
1299 * string_escape_mem() writes as many characters as it can to
1300 * the given buffer, and returns the total size of the output
1301 * had the buffer been big enough.
1302 */
1303 buf += string_escape_mem(addr, len, buf, buf < end ? end - buf : 0, flags, NULL);
Andy Shevchenko71dca952014-10-13 15:55:18 -07001304
1305 return buf;
1306}
1307
1308static noinline_for_stack
Joe Perchescf3b4292010-05-24 14:33:16 -07001309char *uuid_string(char *buf, char *end, const u8 *addr,
1310 struct printf_spec spec, const char *fmt)
Joe Perches9ac6e442009-12-14 18:01:09 -08001311{
Andy Shevchenko2b1b0d62016-05-20 17:01:04 -07001312 char uuid[UUID_STRING_LEN + 1];
Joe Perches9ac6e442009-12-14 18:01:09 -08001313 char *p = uuid;
1314 int i;
Christoph Hellwigf9727a12017-05-17 10:02:48 +02001315 const u8 *index = uuid_index;
Joe Perches9ac6e442009-12-14 18:01:09 -08001316 bool uc = false;
1317
1318 switch (*(++fmt)) {
1319 case 'L':
1320 uc = true; /* fall-through */
1321 case 'l':
Christoph Hellwigf9727a12017-05-17 10:02:48 +02001322 index = guid_index;
Joe Perches9ac6e442009-12-14 18:01:09 -08001323 break;
1324 case 'B':
1325 uc = true;
1326 break;
1327 }
1328
1329 for (i = 0; i < 16; i++) {
Andy Shevchenkoaa4ea1c2016-05-20 17:00:54 -07001330 if (uc)
1331 p = hex_byte_pack_upper(p, addr[index[i]]);
1332 else
1333 p = hex_byte_pack(p, addr[index[i]]);
Joe Perches9ac6e442009-12-14 18:01:09 -08001334 switch (i) {
1335 case 3:
1336 case 5:
1337 case 7:
1338 case 9:
1339 *p++ = '-';
1340 break;
1341 }
1342 }
1343
1344 *p = 0;
1345
Joe Perches9ac6e442009-12-14 18:01:09 -08001346 return string(buf, end, uuid, spec);
1347}
1348
Tobin C. Harding57e73442017-11-23 10:56:39 +11001349int kptr_restrict __read_mostly;
1350
1351static noinline_for_stack
1352char *restricted_pointer(char *buf, char *end, const void *ptr,
1353 struct printf_spec spec)
1354{
1355 spec.base = 16;
1356 spec.flags |= SMALL;
1357 if (spec.field_width == -1) {
1358 spec.field_width = 2 * sizeof(ptr);
1359 spec.flags |= ZEROPAD;
1360 }
1361
1362 switch (kptr_restrict) {
1363 case 0:
1364 /* Always print %pK values */
1365 break;
1366 case 1: {
1367 const struct cred *cred;
1368
1369 /*
1370 * kptr_restrict==1 cannot be used in IRQ context
1371 * because its test for CAP_SYSLOG would be meaningless.
1372 */
1373 if (in_irq() || in_serving_softirq() || in_nmi())
1374 return string(buf, end, "pK-error", spec);
1375
1376 /*
1377 * Only print the real pointer value if the current
1378 * process has CAP_SYSLOG and is running with the
1379 * same credentials it started with. This is because
1380 * access to files is checked at open() time, but %pK
1381 * checks permission at read() time. We don't want to
1382 * leak pointer values if a binary opens a file using
1383 * %pK and then elevates privileges before reading it.
1384 */
1385 cred = current_cred();
1386 if (!has_capability_noaudit(current, CAP_SYSLOG) ||
1387 !uid_eq(cred->euid, cred->uid) ||
1388 !gid_eq(cred->egid, cred->gid))
1389 ptr = NULL;
1390 break;
1391 }
1392 case 2:
1393 default:
1394 /* Always print 0's for %pK */
1395 ptr = NULL;
1396 break;
1397 }
1398
1399 return number(buf, end, (unsigned long)ptr, spec);
1400}
1401
Andy Shevchenko5b17aec2016-01-15 16:59:20 -08001402static noinline_for_stack
1403char *netdev_bits(char *buf, char *end, const void *addr, const char *fmt)
Michał Mirosławc8f44af2011-11-15 15:29:55 +00001404{
Andy Shevchenko5b17aec2016-01-15 16:59:20 -08001405 unsigned long long num;
1406 int size;
1407
1408 switch (fmt[1]) {
1409 case 'F':
1410 num = *(const netdev_features_t *)addr;
1411 size = sizeof(netdev_features_t);
1412 break;
1413 default:
1414 num = (unsigned long)addr;
1415 size = sizeof(unsigned long);
1416 break;
1417 }
Michał Mirosławc8f44af2011-11-15 15:29:55 +00001418
Andy Shevchenko3cab1e72016-01-15 16:59:18 -08001419 return special_hex_number(buf, end, num, size);
Michał Mirosławc8f44af2011-11-15 15:29:55 +00001420}
1421
Joe Perchesaaf07622014-01-23 15:54:17 -08001422static noinline_for_stack
Andy Shevchenko3cab1e72016-01-15 16:59:18 -08001423char *address_val(char *buf, char *end, const void *addr, const char *fmt)
Joe Perchesaaf07622014-01-23 15:54:17 -08001424{
1425 unsigned long long num;
Andy Shevchenko3cab1e72016-01-15 16:59:18 -08001426 int size;
Joe Perchesaaf07622014-01-23 15:54:17 -08001427
1428 switch (fmt[1]) {
1429 case 'd':
1430 num = *(const dma_addr_t *)addr;
Andy Shevchenko3cab1e72016-01-15 16:59:18 -08001431 size = sizeof(dma_addr_t);
Joe Perchesaaf07622014-01-23 15:54:17 -08001432 break;
1433 case 'p':
1434 default:
1435 num = *(const phys_addr_t *)addr;
Andy Shevchenko3cab1e72016-01-15 16:59:18 -08001436 size = sizeof(phys_addr_t);
Joe Perchesaaf07622014-01-23 15:54:17 -08001437 break;
1438 }
1439
Andy Shevchenko3cab1e72016-01-15 16:59:18 -08001440 return special_hex_number(buf, end, num, size);
Joe Perchesaaf07622014-01-23 15:54:17 -08001441}
1442
Geert Uytterhoeven900cca22015-04-15 16:17:20 -07001443static noinline_for_stack
1444char *clock(char *buf, char *end, struct clk *clk, struct printf_spec spec,
1445 const char *fmt)
1446{
1447 if (!IS_ENABLED(CONFIG_HAVE_CLK) || !clk)
1448 return string(buf, end, NULL, spec);
1449
1450 switch (fmt[1]) {
1451 case 'r':
1452 return number(buf, end, clk_get_rate(clk), spec);
1453
1454 case 'n':
1455 default:
1456#ifdef CONFIG_COMMON_CLK
1457 return string(buf, end, __clk_get_name(clk), spec);
1458#else
Andy Shevchenko3cab1e72016-01-15 16:59:18 -08001459 return special_hex_number(buf, end, (unsigned long)clk, sizeof(unsigned long));
Geert Uytterhoeven900cca22015-04-15 16:17:20 -07001460#endif
1461 }
1462}
1463
Vlastimil Babkaedf14cd2016-03-15 14:55:56 -07001464static
1465char *format_flags(char *buf, char *end, unsigned long flags,
1466 const struct trace_print_flags *names)
1467{
1468 unsigned long mask;
Vlastimil Babkaedf14cd2016-03-15 14:55:56 -07001469 const struct printf_spec numspec = {
1470 .flags = SPECIAL|SMALL,
1471 .field_width = -1,
1472 .precision = -1,
1473 .base = 16,
1474 };
1475
1476 for ( ; flags && names->name; names++) {
1477 mask = names->mask;
1478 if ((flags & mask) != mask)
1479 continue;
1480
Andy Shevchenkoabd4fe62018-02-16 23:07:05 +02001481 buf = string(buf, end, names->name, default_str_spec);
Vlastimil Babkaedf14cd2016-03-15 14:55:56 -07001482
1483 flags &= ~mask;
1484 if (flags) {
1485 if (buf < end)
1486 *buf = '|';
1487 buf++;
1488 }
1489 }
1490
1491 if (flags)
1492 buf = number(buf, end, flags, numspec);
1493
1494 return buf;
1495}
1496
1497static noinline_for_stack
1498char *flags_string(char *buf, char *end, void *flags_ptr, const char *fmt)
1499{
1500 unsigned long flags;
1501 const struct trace_print_flags *names;
1502
1503 switch (fmt[1]) {
1504 case 'p':
1505 flags = *(unsigned long *)flags_ptr;
1506 /* Remove zone id */
1507 flags &= (1UL << NR_PAGEFLAGS) - 1;
1508 names = pageflag_names;
1509 break;
1510 case 'v':
1511 flags = *(unsigned long *)flags_ptr;
1512 names = vmaflag_names;
1513 break;
1514 case 'g':
1515 flags = *(gfp_t *)flags_ptr;
1516 names = gfpflag_names;
1517 break;
1518 default:
1519 WARN_ONCE(1, "Unsupported flags modifier: %c\n", fmt[1]);
1520 return buf;
1521 }
1522
1523 return format_flags(buf, end, flags, names);
1524}
1525
Pantelis Antoniouce4fecf2015-01-21 19:06:14 +02001526static const char *device_node_name_for_depth(const struct device_node *np, int depth)
1527{
1528 for ( ; np && depth; depth--)
1529 np = np->parent;
1530
1531 return kbasename(np->full_name);
1532}
1533
1534static noinline_for_stack
1535char *device_node_gen_full_name(const struct device_node *np, char *buf, char *end)
1536{
1537 int depth;
1538 const struct device_node *parent = np->parent;
Pantelis Antoniouce4fecf2015-01-21 19:06:14 +02001539
1540 /* special case for root node */
1541 if (!parent)
Andy Shevchenkoabd4fe62018-02-16 23:07:05 +02001542 return string(buf, end, "/", default_str_spec);
Pantelis Antoniouce4fecf2015-01-21 19:06:14 +02001543
1544 for (depth = 0; parent->parent; depth++)
1545 parent = parent->parent;
1546
1547 for ( ; depth >= 0; depth--) {
Andy Shevchenkoabd4fe62018-02-16 23:07:05 +02001548 buf = string(buf, end, "/", default_str_spec);
Pantelis Antoniouce4fecf2015-01-21 19:06:14 +02001549 buf = string(buf, end, device_node_name_for_depth(np, depth),
Andy Shevchenkoabd4fe62018-02-16 23:07:05 +02001550 default_str_spec);
Pantelis Antoniouce4fecf2015-01-21 19:06:14 +02001551 }
1552 return buf;
1553}
1554
1555static noinline_for_stack
1556char *device_node_string(char *buf, char *end, struct device_node *dn,
1557 struct printf_spec spec, const char *fmt)
1558{
1559 char tbuf[sizeof("xxxx") + 1];
1560 const char *p;
1561 int ret;
1562 char *buf_start = buf;
1563 struct property *prop;
1564 bool has_mult, pass;
1565 static const struct printf_spec num_spec = {
1566 .flags = SMALL,
1567 .field_width = -1,
1568 .precision = -1,
1569 .base = 10,
1570 };
1571
1572 struct printf_spec str_spec = spec;
1573 str_spec.field_width = -1;
1574
1575 if (!IS_ENABLED(CONFIG_OF))
1576 return string(buf, end, "(!OF)", spec);
1577
1578 if ((unsigned long)dn < PAGE_SIZE)
1579 return string(buf, end, "(null)", spec);
1580
1581 /* simple case without anything any more format specifiers */
1582 fmt++;
1583 if (fmt[0] == '\0' || strcspn(fmt,"fnpPFcC") > 0)
1584 fmt = "f";
1585
1586 for (pass = false; strspn(fmt,"fnpPFcC"); fmt++, pass = true) {
1587 if (pass) {
1588 if (buf < end)
1589 *buf = ':';
1590 buf++;
1591 }
1592
1593 switch (*fmt) {
1594 case 'f': /* full_name */
1595 buf = device_node_gen_full_name(dn, buf, end);
1596 break;
1597 case 'n': /* name */
1598 buf = string(buf, end, dn->name, str_spec);
1599 break;
1600 case 'p': /* phandle */
1601 buf = number(buf, end, (unsigned int)dn->phandle, num_spec);
1602 break;
1603 case 'P': /* path-spec */
1604 p = kbasename(of_node_full_name(dn));
1605 if (!p[1])
1606 p = "/";
1607 buf = string(buf, end, p, str_spec);
1608 break;
1609 case 'F': /* flags */
1610 tbuf[0] = of_node_check_flag(dn, OF_DYNAMIC) ? 'D' : '-';
1611 tbuf[1] = of_node_check_flag(dn, OF_DETACHED) ? 'd' : '-';
1612 tbuf[2] = of_node_check_flag(dn, OF_POPULATED) ? 'P' : '-';
1613 tbuf[3] = of_node_check_flag(dn, OF_POPULATED_BUS) ? 'B' : '-';
1614 tbuf[4] = 0;
1615 buf = string(buf, end, tbuf, str_spec);
1616 break;
1617 case 'c': /* major compatible string */
1618 ret = of_property_read_string(dn, "compatible", &p);
1619 if (!ret)
1620 buf = string(buf, end, p, str_spec);
1621 break;
1622 case 'C': /* full compatible string */
1623 has_mult = false;
1624 of_property_for_each_string(dn, "compatible", prop, p) {
1625 if (has_mult)
1626 buf = string(buf, end, ",", str_spec);
1627 buf = string(buf, end, "\"", str_spec);
1628 buf = string(buf, end, p, str_spec);
1629 buf = string(buf, end, "\"", str_spec);
1630
1631 has_mult = true;
1632 }
1633 break;
1634 default:
1635 break;
1636 }
1637 }
1638
1639 return widen_string(buf, buf - buf_start, end, spec);
1640}
1641
Tobin C. Harding7b1924a2017-11-23 10:59:45 +11001642static noinline_for_stack
1643char *pointer_string(char *buf, char *end, const void *ptr,
1644 struct printf_spec spec)
1645{
1646 spec.base = 16;
1647 spec.flags |= SMALL;
1648 if (spec.field_width == -1) {
1649 spec.field_width = 2 * sizeof(ptr);
1650 spec.flags |= ZEROPAD;
1651 }
1652
1653 return number(buf, end, (unsigned long int)ptr, spec);
1654}
1655
Tobin C. Hardingad67b742017-11-01 15:32:23 +11001656static bool have_filled_random_ptr_key __read_mostly;
1657static siphash_key_t ptr_key __read_mostly;
1658
1659static void fill_random_ptr_key(struct random_ready_callback *unused)
1660{
1661 get_random_bytes(&ptr_key, sizeof(ptr_key));
1662 /*
1663 * have_filled_random_ptr_key==true is dependent on get_random_bytes().
1664 * ptr_to_id() needs to see have_filled_random_ptr_key==true
1665 * after get_random_bytes() returns.
1666 */
1667 smp_mb();
1668 WRITE_ONCE(have_filled_random_ptr_key, true);
1669}
1670
1671static struct random_ready_callback random_ready = {
1672 .func = fill_random_ptr_key
1673};
1674
1675static int __init initialize_ptr_random(void)
1676{
1677 int ret = add_random_ready_callback(&random_ready);
1678
1679 if (!ret) {
1680 return 0;
1681 } else if (ret == -EALREADY) {
1682 fill_random_ptr_key(&random_ready);
1683 return 0;
1684 }
1685
1686 return ret;
1687}
1688early_initcall(initialize_ptr_random);
1689
1690/* Maps a pointer to a 32 bit unique identifier. */
1691static char *ptr_to_id(char *buf, char *end, void *ptr, struct printf_spec spec)
1692{
1693 unsigned long hashval;
1694 const int default_width = 2 * sizeof(ptr);
1695
1696 if (unlikely(!have_filled_random_ptr_key)) {
1697 spec.field_width = default_width;
1698 /* string length must be less than default_width */
1699 return string(buf, end, "(ptrval)", spec);
1700 }
1701
1702#ifdef CONFIG_64BIT
1703 hashval = (unsigned long)siphash_1u64((u64)ptr, &ptr_key);
1704 /*
1705 * Mask off the first 32 bits, this makes explicit that we have
1706 * modified the address (and 32 bits is plenty for a unique ID).
1707 */
1708 hashval = hashval & 0xffffffff;
1709#else
1710 hashval = (unsigned long)siphash_1u32((u32)ptr, &ptr_key);
1711#endif
1712
1713 spec.flags |= SMALL;
1714 if (spec.field_width == -1) {
1715 spec.field_width = default_width;
1716 spec.flags |= ZEROPAD;
1717 }
1718 spec.base = 16;
1719
1720 return number(buf, end, hashval, spec);
1721}
1722
Linus Torvalds4d8a7432008-07-06 16:24:57 -07001723/*
1724 * Show a '%p' thing. A kernel extension is that the '%p' is followed
1725 * by an extra set of alphanumeric characters that are extended format
1726 * specifiers.
1727 *
Joe Perches0b523762017-05-08 15:55:36 -07001728 * Please update scripts/checkpatch.pl when adding/removing conversion
1729 * characters. (Search for "check for vsprintf extension").
1730 *
Linus Torvalds332d2e72008-10-20 15:07:34 +11001731 * Right now we handle:
Linus Torvalds0fe1ef22008-07-06 16:43:12 -07001732 *
Frederic Weisbecker0c8b9462009-04-15 17:48:18 +02001733 * - 'F' For symbolic function descriptor pointers with offset
1734 * - 'f' For simple symbolic function names without offset
Steven Rostedt0efb4d22009-09-17 09:27:29 -04001735 * - 'S' For symbolic direct pointers with offset
1736 * - 's' For symbolic direct pointers without offset
Joe Perchesb0d33c22012-12-12 10:18:50 -08001737 * - '[FfSs]R' as above with __builtin_extract_return_addr() translation
Namhyung Kim0f77a8d2011-03-24 11:42:29 +09001738 * - 'B' For backtraced symbolic direct pointers with offset
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -06001739 * - 'R' For decoded struct resource, e.g., [mem 0x0-0x1f 64bit pref]
1740 * - 'r' For raw struct resource, e.g., [mem 0x0-0x1f flags 0x201]
Tejun Heodbc760b2015-02-13 14:36:53 -08001741 * - 'b[l]' For a bitmap, the number of bits is determined by the field
1742 * width which must be explicitly specified either as part of the
1743 * format string '%32b[l]' or through '%*b[l]', [l] selects
1744 * range-list format instead of hex format
Harvey Harrisondd45c9c2008-10-27 15:47:12 -07001745 * - 'M' For a 6-byte MAC address, it prints the address in the
1746 * usual colon-separated hex notation
Joe Perches8a27f7c2009-08-17 12:29:44 +00001747 * - 'm' For a 6-byte MAC address, it prints the hex address without colons
Joe Perchesbc7259a2010-01-07 11:43:50 +00001748 * - 'MF' For a 6-byte MAC FDDI address, it prints the address
Joe Perchesc8e00062010-01-11 00:44:14 -08001749 * with a dash-separated hex notation
Andy Shevchenko7c591542012-10-04 17:12:33 -07001750 * - '[mM]R' For a 6-byte MAC address, Reverse order (Bluetooth)
Joe Perches8a27f7c2009-08-17 12:29:44 +00001751 * - 'I' [46] for IPv4/IPv6 addresses printed in the usual way
1752 * IPv4 uses dot-separated decimal without leading 0's (1.2.3.4)
1753 * IPv6 uses colon separated network-order 16 bit hex with leading 0's
Daniel Borkmann10679642013-06-28 19:49:39 +02001754 * [S][pfs]
1755 * Generic IPv4/IPv6 address (struct sockaddr *) that falls back to
1756 * [4] or [6] and is able to print port [p], flowinfo [f], scope [s]
Joe Perches8a27f7c2009-08-17 12:29:44 +00001757 * - 'i' [46] for 'raw' IPv4/IPv6 addresses
1758 * IPv6 omits the colons (01020304...0f)
1759 * IPv4 uses dot-separated decimal with leading 0's (010.123.045.006)
Daniel Borkmann10679642013-06-28 19:49:39 +02001760 * [S][pfs]
1761 * Generic IPv4/IPv6 address (struct sockaddr *) that falls back to
1762 * [4] or [6] and is able to print port [p], flowinfo [f], scope [s]
1763 * - '[Ii][4S][hnbl]' IPv4 addresses in host, network, big or little endian order
1764 * - 'I[6S]c' for IPv6 addresses printed as specified by
Joe Perches29cf5192011-06-09 11:23:37 -07001765 * http://tools.ietf.org/html/rfc5952
Andy Shevchenko71dca952014-10-13 15:55:18 -07001766 * - 'E[achnops]' For an escaped buffer, where rules are defined by combination
1767 * of the following flags (see string_escape_mem() for the
1768 * details):
1769 * a - ESCAPE_ANY
1770 * c - ESCAPE_SPECIAL
1771 * h - ESCAPE_HEX
1772 * n - ESCAPE_NULL
1773 * o - ESCAPE_OCTAL
1774 * p - ESCAPE_NP
1775 * s - ESCAPE_SPACE
1776 * By default ESCAPE_ANY_NP is used.
Joe Perches9ac6e442009-12-14 18:01:09 -08001777 * - 'U' For a 16 byte UUID/GUID, it prints the UUID/GUID in the form
1778 * "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
1779 * Options for %pU are:
1780 * b big endian lower case hex (default)
1781 * B big endian UPPER case hex
1782 * l little endian lower case hex
1783 * L little endian UPPER case hex
1784 * big endian output byte order is:
1785 * [0][1][2][3]-[4][5]-[6][7]-[8][9]-[10][11][12][13][14][15]
1786 * little endian output byte order is:
1787 * [3][2][1][0]-[5][4]-[7][6]-[8][9]-[10][11][12][13][14][15]
Joe Perches7db6f5f2010-06-27 01:02:33 +00001788 * - 'V' For a struct va_format which contains a format string * and va_list *,
1789 * call vsnprintf(->format, *->va_list).
1790 * Implements a "recursive vsnprintf".
1791 * Do not use this feature without some mechanism to verify the
1792 * correctness of the format string and va_list arguments.
Dan Rosenberg455cd5a2011-01-12 16:59:41 -08001793 * - 'K' For a kernel pointer that should be hidden from unprivileged users
Michał Mirosławc8f44af2011-11-15 15:29:55 +00001794 * - 'NF' For a netdev_features_t
Andy Shevchenko31550a12012-07-30 14:40:27 -07001795 * - 'h[CDN]' For a variable-length buffer, it prints it as a hex string with
1796 * a certain separator (' ' by default):
1797 * C colon
1798 * D dash
1799 * N no separator
1800 * The maximum supported length is 64 bytes of the input. Consider
1801 * to use print_hex_dump() for the larger input.
Joe Perchesaaf07622014-01-23 15:54:17 -08001802 * - 'a[pd]' For address types [p] phys_addr_t, [d] dma_addr_t and derivatives
1803 * (default assumed to be phys_addr_t, passed by reference)
Olof Johanssonc0d92a52013-11-12 15:09:50 -08001804 * - 'd[234]' For a dentry name (optionally 2-4 last components)
1805 * - 'D[234]' Same as 'd' but for a struct file
Dmitry Monakhov1031bc52015-04-13 16:31:35 +04001806 * - 'g' For block_device name (gendisk + partition number)
Geert Uytterhoeven900cca22015-04-15 16:17:20 -07001807 * - 'C' For a clock, it prints the name (Common Clock Framework) or address
1808 * (legacy clock framework) of the clock
1809 * - 'Cn' For a clock, it prints the name (Common Clock Framework) or address
1810 * (legacy clock framework) of the clock
1811 * - 'Cr' For a clock, it prints the current rate of the clock
Vlastimil Babkaedf14cd2016-03-15 14:55:56 -07001812 * - 'G' For flags to be printed as a collection of symbolic strings that would
1813 * construct the specific value. Supported flags given by option:
1814 * p page flags (see struct page) given as pointer to unsigned long
1815 * g gfp flags (GFP_* and __GFP_*) given as pointer to gfp_t
1816 * v vma flags (VM_*) given as pointer to unsigned long
Pantelis Antoniouce4fecf2015-01-21 19:06:14 +02001817 * - 'O' For a kobject based struct. Must be one of the following:
1818 * - 'OF[fnpPcCF]' For a device tree object
1819 * Without any optional arguments prints the full_name
1820 * f device node full_name
1821 * n device node name
1822 * p device node phandle
1823 * P device node path spec (name + @unit)
1824 * F device node flags
1825 * c major compatible string
1826 * C full compatible string
Martin Kletzander5e4ee7b2015-11-06 16:30:17 -08001827 *
Tobin C. Harding7b1924a2017-11-23 10:59:45 +11001828 * - 'x' For printing the address. Equivalent to "%lx".
1829 *
Tobin C. Hardingb3ed2322017-12-20 08:17:15 +11001830 * ** When making changes please also update:
1831 * Documentation/core-api/printk-formats.rst
Joe Perches9ac6e442009-12-14 18:01:09 -08001832 *
Linus Torvalds332d2e72008-10-20 15:07:34 +11001833 * Note: The difference between 'S' and 'F' is that on ia64 and ppc64
1834 * function pointers are really function descriptors, which contain a
1835 * pointer to the real address.
Tobin C. Hardingad67b742017-11-01 15:32:23 +11001836 *
1837 * Note: The default behaviour (unadorned %p) is to hash the address,
1838 * rendering it useful as a unique identifier.
Linus Torvalds4d8a7432008-07-06 16:24:57 -07001839 */
Joe Perchescf3b4292010-05-24 14:33:16 -07001840static noinline_for_stack
1841char *pointer(const char *fmt, char *buf, char *end, void *ptr,
1842 struct printf_spec spec)
Linus Torvalds78a8bf62008-07-06 16:16:15 -07001843{
Rasmus Villemoes80c9eb42015-11-06 16:30:26 -08001844 const int default_width = 2 * sizeof(void *);
Grant Likely725fe002012-05-31 16:26:08 -07001845
Adam Borowski3a129cc2018-02-04 18:45:21 +01001846 if (!ptr && *fmt != 'K' && *fmt != 'x') {
Joe Perches5e057982010-10-26 14:22:50 -07001847 /*
1848 * Print (null) with the same width as a pointer so it makes
1849 * tabular output look nice.
1850 */
1851 if (spec.field_width == -1)
Grant Likely725fe002012-05-31 16:26:08 -07001852 spec.field_width = default_width;
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +01001853 return string(buf, end, "(null)", spec);
Joe Perches5e057982010-10-26 14:22:50 -07001854 }
Linus Torvaldsd97106a2009-01-03 11:46:17 -08001855
Linus Torvalds0fe1ef22008-07-06 16:43:12 -07001856 switch (*fmt) {
1857 case 'F':
Frederic Weisbecker0c8b9462009-04-15 17:48:18 +02001858 case 'f':
Linus Torvalds0fe1ef22008-07-06 16:43:12 -07001859 case 'S':
Joe Perches9ac6e442009-12-14 18:01:09 -08001860 case 's':
Sergey Senozhatsky04b8eb72017-12-06 13:36:49 +09001861 ptr = dereference_symbol_descriptor(ptr);
1862 /* Fallthrough */
Namhyung Kim0f77a8d2011-03-24 11:42:29 +09001863 case 'B':
Joe Perchesb0d33c22012-12-12 10:18:50 -08001864 return symbol_string(buf, end, ptr, spec, fmt);
Linus Torvalds332d2e72008-10-20 15:07:34 +11001865 case 'R':
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -06001866 case 'r':
Bjorn Helgaasfd955412009-10-06 15:33:39 -06001867 return resource_string(buf, end, ptr, spec, fmt);
Andy Shevchenko31550a12012-07-30 14:40:27 -07001868 case 'h':
1869 return hex_string(buf, end, ptr, spec, fmt);
Tejun Heodbc760b2015-02-13 14:36:53 -08001870 case 'b':
1871 switch (fmt[1]) {
1872 case 'l':
1873 return bitmap_list_string(buf, end, ptr, spec, fmt);
1874 default:
1875 return bitmap_string(buf, end, ptr, spec, fmt);
1876 }
Joe Perches8a27f7c2009-08-17 12:29:44 +00001877 case 'M': /* Colon separated: 00:01:02:03:04:05 */
1878 case 'm': /* Contiguous: 000102030405 */
Andrei Emeltchenko76597ff92012-07-30 14:40:23 -07001879 /* [mM]F (FDDI) */
1880 /* [mM]R (Reverse order; Bluetooth) */
Joe Perches8a27f7c2009-08-17 12:29:44 +00001881 return mac_address_string(buf, end, ptr, spec, fmt);
1882 case 'I': /* Formatted IP supported
1883 * 4: 1.2.3.4
1884 * 6: 0001:0203:...:0708
1885 * 6c: 1::708 or 1::1.2.3.4
1886 */
1887 case 'i': /* Contiguous:
1888 * 4: 001.002.003.004
1889 * 6: 000102...0f
1890 */
1891 switch (fmt[1]) {
1892 case '6':
1893 return ip6_addr_string(buf, end, ptr, spec, fmt);
1894 case '4':
1895 return ip4_addr_string(buf, end, ptr, spec, fmt);
Daniel Borkmann10679642013-06-28 19:49:39 +02001896 case 'S': {
1897 const union {
1898 struct sockaddr raw;
1899 struct sockaddr_in v4;
1900 struct sockaddr_in6 v6;
1901 } *sa = ptr;
1902
1903 switch (sa->raw.sa_family) {
1904 case AF_INET:
1905 return ip4_addr_string_sa(buf, end, &sa->v4, spec, fmt);
1906 case AF_INET6:
1907 return ip6_addr_string_sa(buf, end, &sa->v6, spec, fmt);
1908 default:
1909 return string(buf, end, "(invalid address)", spec);
1910 }}
Joe Perches8a27f7c2009-08-17 12:29:44 +00001911 }
Harvey Harrison4aa99602008-10-29 12:49:58 -07001912 break;
Andy Shevchenko71dca952014-10-13 15:55:18 -07001913 case 'E':
1914 return escaped_string(buf, end, ptr, spec, fmt);
Joe Perches9ac6e442009-12-14 18:01:09 -08001915 case 'U':
1916 return uuid_string(buf, end, ptr, spec, fmt);
Joe Perches7db6f5f2010-06-27 01:02:33 +00001917 case 'V':
Jan Beulich5756b762012-03-05 16:49:24 +00001918 {
1919 va_list va;
1920
1921 va_copy(va, *((struct va_format *)ptr)->va);
1922 buf += vsnprintf(buf, end > buf ? end - buf : 0,
1923 ((struct va_format *)ptr)->fmt, va);
1924 va_end(va);
1925 return buf;
1926 }
Dan Rosenberg455cd5a2011-01-12 16:59:41 -08001927 case 'K':
Linus Torvaldsef0010a2017-11-29 11:28:09 -08001928 if (!kptr_restrict)
1929 break;
Tobin C. Harding57e73442017-11-23 10:56:39 +11001930 return restricted_pointer(buf, end, ptr, spec);
Michał Mirosławc8f44af2011-11-15 15:29:55 +00001931 case 'N':
Andy Shevchenko5b17aec2016-01-15 16:59:20 -08001932 return netdev_bits(buf, end, ptr, fmt);
Stepan Moskovchenko7d799212013-02-21 16:43:09 -08001933 case 'a':
Andy Shevchenko3cab1e72016-01-15 16:59:18 -08001934 return address_val(buf, end, ptr, fmt);
Al Viro4b6ccca2013-09-03 12:00:44 -04001935 case 'd':
1936 return dentry_name(buf, end, ptr, spec, fmt);
Geert Uytterhoeven900cca22015-04-15 16:17:20 -07001937 case 'C':
1938 return clock(buf, end, ptr, spec, fmt);
Al Viro4b6ccca2013-09-03 12:00:44 -04001939 case 'D':
1940 return dentry_name(buf, end,
1941 ((const struct file *)ptr)->f_path.dentry,
1942 spec, fmt);
Dmitry Monakhov1031bc52015-04-13 16:31:35 +04001943#ifdef CONFIG_BLOCK
1944 case 'g':
1945 return bdev_name(buf, end, ptr, spec, fmt);
1946#endif
1947
Vlastimil Babkaedf14cd2016-03-15 14:55:56 -07001948 case 'G':
1949 return flags_string(buf, end, ptr, fmt);
Pantelis Antoniouce4fecf2015-01-21 19:06:14 +02001950 case 'O':
1951 switch (fmt[1]) {
1952 case 'F':
1953 return device_node_string(buf, end, ptr, spec, fmt + 1);
1954 }
Tobin C. Harding7b1924a2017-11-23 10:59:45 +11001955 case 'x':
1956 return pointer_string(buf, end, ptr, spec);
Linus Torvalds0fe1ef22008-07-06 16:43:12 -07001957 }
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +01001958
Tobin C. Hardingad67b742017-11-01 15:32:23 +11001959 /* default is to _not_ leak addresses, hash before printing */
1960 return ptr_to_id(buf, end, ptr, spec);
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +01001961}
1962
1963/*
1964 * Helper function to decode printf style format.
1965 * Each call decode a token from the format and return the
1966 * number of characters read (or likely the delta where it wants
1967 * to go on the next call).
1968 * The decoded token is returned through the parameters
1969 *
1970 * 'h', 'l', or 'L' for integer fields
1971 * 'z' support added 23/7/1999 S.H.
1972 * 'z' changed to 'Z' --davidm 1/25/99
Alexey Dobriyan5b5e0922017-02-27 14:30:02 -08001973 * 'Z' changed to 'z' --adobriyan 2017-01-25
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +01001974 * 't' added for ptrdiff_t
1975 *
1976 * @fmt: the format string
1977 * @type of the token returned
1978 * @flags: various flags such as +, -, # tokens..
1979 * @field_width: overwritten width
1980 * @base: base of the number (octal, hex, ...)
1981 * @precision: precision of a number
1982 * @qualifier: qualifier of a number (long, size_t, ...)
1983 */
Joe Perchescf3b4292010-05-24 14:33:16 -07001984static noinline_for_stack
1985int format_decode(const char *fmt, struct printf_spec *spec)
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +01001986{
1987 const char *start = fmt;
Rasmus Villemoesd0484192016-01-15 16:58:37 -08001988 char qualifier;
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +01001989
1990 /* we finished early by reading the field width */
Vegard Nossumed681a92009-03-14 12:08:50 +01001991 if (spec->type == FORMAT_TYPE_WIDTH) {
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +01001992 if (spec->field_width < 0) {
1993 spec->field_width = -spec->field_width;
1994 spec->flags |= LEFT;
1995 }
1996 spec->type = FORMAT_TYPE_NONE;
1997 goto precision;
1998 }
1999
2000 /* we finished early by reading the precision */
2001 if (spec->type == FORMAT_TYPE_PRECISION) {
2002 if (spec->precision < 0)
2003 spec->precision = 0;
2004
2005 spec->type = FORMAT_TYPE_NONE;
2006 goto qualifier;
2007 }
2008
2009 /* By default */
2010 spec->type = FORMAT_TYPE_NONE;
2011
2012 for (; *fmt ; ++fmt) {
2013 if (*fmt == '%')
2014 break;
2015 }
2016
2017 /* Return the current non-format string */
2018 if (fmt != start || !*fmt)
2019 return fmt - start;
2020
2021 /* Process flags */
2022 spec->flags = 0;
2023
2024 while (1) { /* this also skips first '%' */
2025 bool found = true;
2026
2027 ++fmt;
2028
2029 switch (*fmt) {
2030 case '-': spec->flags |= LEFT; break;
2031 case '+': spec->flags |= PLUS; break;
2032 case ' ': spec->flags |= SPACE; break;
2033 case '#': spec->flags |= SPECIAL; break;
2034 case '0': spec->flags |= ZEROPAD; break;
2035 default: found = false;
2036 }
2037
2038 if (!found)
2039 break;
2040 }
2041
2042 /* get field width */
2043 spec->field_width = -1;
2044
2045 if (isdigit(*fmt))
2046 spec->field_width = skip_atoi(&fmt);
2047 else if (*fmt == '*') {
2048 /* it's the next argument */
Vegard Nossumed681a92009-03-14 12:08:50 +01002049 spec->type = FORMAT_TYPE_WIDTH;
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +01002050 return ++fmt - start;
2051 }
2052
2053precision:
2054 /* get the precision */
2055 spec->precision = -1;
2056 if (*fmt == '.') {
2057 ++fmt;
2058 if (isdigit(*fmt)) {
2059 spec->precision = skip_atoi(&fmt);
2060 if (spec->precision < 0)
2061 spec->precision = 0;
2062 } else if (*fmt == '*') {
2063 /* it's the next argument */
Vegard Nossumadf26f82009-03-14 12:08:50 +01002064 spec->type = FORMAT_TYPE_PRECISION;
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +01002065 return ++fmt - start;
2066 }
2067 }
2068
2069qualifier:
2070 /* get the conversion qualifier */
Rasmus Villemoesd0484192016-01-15 16:58:37 -08002071 qualifier = 0;
Andy Shevchenko75fb8f22011-07-25 17:13:20 -07002072 if (*fmt == 'h' || _tolower(*fmt) == 'l' ||
Alexey Dobriyan5b5e0922017-02-27 14:30:02 -08002073 *fmt == 'z' || *fmt == 't') {
Rasmus Villemoesd0484192016-01-15 16:58:37 -08002074 qualifier = *fmt++;
2075 if (unlikely(qualifier == *fmt)) {
2076 if (qualifier == 'l') {
2077 qualifier = 'L';
Zhaoleia4e94ef2009-03-27 17:07:05 +08002078 ++fmt;
Rasmus Villemoesd0484192016-01-15 16:58:37 -08002079 } else if (qualifier == 'h') {
2080 qualifier = 'H';
Zhaoleia4e94ef2009-03-27 17:07:05 +08002081 ++fmt;
2082 }
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +01002083 }
2084 }
2085
2086 /* default base */
2087 spec->base = 10;
2088 switch (*fmt) {
2089 case 'c':
2090 spec->type = FORMAT_TYPE_CHAR;
2091 return ++fmt - start;
2092
2093 case 's':
2094 spec->type = FORMAT_TYPE_STR;
2095 return ++fmt - start;
2096
2097 case 'p':
2098 spec->type = FORMAT_TYPE_PTR;
Rasmus Villemoesffbfed02015-02-12 15:01:37 -08002099 return ++fmt - start;
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +01002100
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +01002101 case '%':
2102 spec->type = FORMAT_TYPE_PERCENT_CHAR;
2103 return ++fmt - start;
2104
2105 /* integer number formats - set up the flags and "break" */
2106 case 'o':
2107 spec->base = 8;
2108 break;
2109
2110 case 'x':
2111 spec->flags |= SMALL;
2112
2113 case 'X':
2114 spec->base = 16;
2115 break;
2116
2117 case 'd':
2118 case 'i':
Frederic Weisbecker39e874f2009-03-09 21:15:04 +01002119 spec->flags |= SIGN;
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +01002120 case 'u':
2121 break;
2122
Ryan Mallon708d96fd2014-04-03 14:48:37 -07002123 case 'n':
2124 /*
Rasmus Villemoesb006f192015-11-06 16:30:20 -08002125 * Since %n poses a greater security risk than
2126 * utility, treat it as any other invalid or
2127 * unsupported format specifier.
Ryan Mallon708d96fd2014-04-03 14:48:37 -07002128 */
Ryan Mallon708d96fd2014-04-03 14:48:37 -07002129 /* Fall-through */
2130
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +01002131 default:
Rasmus Villemoesb006f192015-11-06 16:30:20 -08002132 WARN_ONCE(1, "Please remove unsupported %%%c in format string\n", *fmt);
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +01002133 spec->type = FORMAT_TYPE_INVALID;
2134 return fmt - start;
2135 }
2136
Rasmus Villemoesd0484192016-01-15 16:58:37 -08002137 if (qualifier == 'L')
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +01002138 spec->type = FORMAT_TYPE_LONG_LONG;
Rasmus Villemoesd0484192016-01-15 16:58:37 -08002139 else if (qualifier == 'l') {
Rasmus Villemoes51be17d2015-04-15 16:17:02 -07002140 BUILD_BUG_ON(FORMAT_TYPE_ULONG + SIGN != FORMAT_TYPE_LONG);
2141 spec->type = FORMAT_TYPE_ULONG + (spec->flags & SIGN);
Alexey Dobriyan5b5e0922017-02-27 14:30:02 -08002142 } else if (qualifier == 'z') {
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +01002143 spec->type = FORMAT_TYPE_SIZE_T;
Rasmus Villemoesd0484192016-01-15 16:58:37 -08002144 } else if (qualifier == 't') {
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +01002145 spec->type = FORMAT_TYPE_PTRDIFF;
Rasmus Villemoesd0484192016-01-15 16:58:37 -08002146 } else if (qualifier == 'H') {
Rasmus Villemoes51be17d2015-04-15 16:17:02 -07002147 BUILD_BUG_ON(FORMAT_TYPE_UBYTE + SIGN != FORMAT_TYPE_BYTE);
2148 spec->type = FORMAT_TYPE_UBYTE + (spec->flags & SIGN);
Rasmus Villemoesd0484192016-01-15 16:58:37 -08002149 } else if (qualifier == 'h') {
Rasmus Villemoes51be17d2015-04-15 16:17:02 -07002150 BUILD_BUG_ON(FORMAT_TYPE_USHORT + SIGN != FORMAT_TYPE_SHORT);
2151 spec->type = FORMAT_TYPE_USHORT + (spec->flags & SIGN);
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +01002152 } else {
Rasmus Villemoes51be17d2015-04-15 16:17:02 -07002153 BUILD_BUG_ON(FORMAT_TYPE_UINT + SIGN != FORMAT_TYPE_INT);
2154 spec->type = FORMAT_TYPE_UINT + (spec->flags & SIGN);
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +01002155 }
2156
2157 return ++fmt - start;
Linus Torvalds78a8bf62008-07-06 16:16:15 -07002158}
2159
Rasmus Villemoes4d72ba02016-01-15 16:58:44 -08002160static void
2161set_field_width(struct printf_spec *spec, int width)
2162{
2163 spec->field_width = width;
2164 if (WARN_ONCE(spec->field_width != width, "field width %d too large", width)) {
2165 spec->field_width = clamp(width, -FIELD_WIDTH_MAX, FIELD_WIDTH_MAX);
2166 }
2167}
2168
2169static void
2170set_precision(struct printf_spec *spec, int prec)
2171{
2172 spec->precision = prec;
2173 if (WARN_ONCE(spec->precision != prec, "precision %d too large", prec)) {
2174 spec->precision = clamp(prec, 0, PRECISION_MAX);
2175 }
2176}
2177
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178/**
2179 * vsnprintf - Format a string and place it in a buffer
2180 * @buf: The buffer to place the result into
2181 * @size: The size of the buffer, including the trailing null space
2182 * @fmt: The format string to use
2183 * @args: Arguments for the format string
2184 *
Rasmus Villemoesd7ec9a02015-11-06 16:30:35 -08002185 * This function generally follows C99 vsnprintf, but has some
2186 * extensions and a few limitations:
2187 *
mchehab@s-opensource.com6cc89132017-03-30 17:11:33 -03002188 * - ``%n`` is unsupported
2189 * - ``%p*`` is handled by pointer()
Andi Kleen20036fd2008-10-15 22:02:02 -07002190 *
Jonathan Corbet27e7c0e2017-12-21 12:39:45 -07002191 * See pointer() or Documentation/core-api/printk-formats.rst for more
Martin Kletzander5e4ee7b2015-11-06 16:30:17 -08002192 * extensive description.
2193 *
mchehab@s-opensource.com6cc89132017-03-30 17:11:33 -03002194 * **Please update the documentation in both places when making changes**
Andrew Morton80f548e2012-07-30 14:40:25 -07002195 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196 * The return value is the number of characters which would
2197 * be generated for the given input, excluding the trailing
2198 * '\0', as per ISO C99. If you want to have the exact
2199 * number of characters written into @buf as return value
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08002200 * (not including the trailing '\0'), use vscnprintf(). If the
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201 * return is greater than or equal to @size, the resulting
2202 * string is truncated.
2203 *
Uwe Kleine-Königba1835e2011-04-06 07:49:04 -07002204 * If you're not already dealing with a va_list consider using snprintf().
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 */
2206int vsnprintf(char *buf, size_t size, const char *fmt, va_list args)
2207{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 unsigned long long num;
André Goddard Rosad4be1512009-12-14 18:00:59 -08002209 char *str, *end;
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +01002210 struct printf_spec spec = {0};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -07002212 /* Reject out-of-range values early. Large positive sizes are
2213 used for unknown buffer sizes. */
Rasmus Villemoes2aa2f9e2015-02-12 15:01:39 -08002214 if (WARN_ON_ONCE(size > INT_MAX))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216
2217 str = buf;
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -07002218 end = buf + size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -07002220 /* Make sure end is always >= buf */
2221 if (end < buf) {
2222 end = ((void *)-1);
2223 size = end - buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224 }
2225
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +01002226 while (*fmt) {
2227 const char *old_fmt = fmt;
André Goddard Rosad4be1512009-12-14 18:00:59 -08002228 int read = format_decode(fmt, &spec);
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +01002229
2230 fmt += read;
2231
2232 switch (spec.type) {
2233 case FORMAT_TYPE_NONE: {
2234 int copy = read;
2235 if (str < end) {
2236 if (copy > end - str)
2237 copy = end - str;
2238 memcpy(str, old_fmt, copy);
2239 }
2240 str += read;
2241 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242 }
2243
Vegard Nossumed681a92009-03-14 12:08:50 +01002244 case FORMAT_TYPE_WIDTH:
Rasmus Villemoes4d72ba02016-01-15 16:58:44 -08002245 set_field_width(&spec, va_arg(args, int));
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +01002246 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +01002248 case FORMAT_TYPE_PRECISION:
Rasmus Villemoes4d72ba02016-01-15 16:58:44 -08002249 set_precision(&spec, va_arg(args, int));
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +01002250 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251
André Goddard Rosad4be1512009-12-14 18:00:59 -08002252 case FORMAT_TYPE_CHAR: {
2253 char c;
2254
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +01002255 if (!(spec.flags & LEFT)) {
2256 while (--spec.field_width > 0) {
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -07002257 if (str < end)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258 *str = ' ';
2259 ++str;
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +01002260
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261 }
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +01002262 }
2263 c = (unsigned char) va_arg(args, int);
2264 if (str < end)
2265 *str = c;
2266 ++str;
2267 while (--spec.field_width > 0) {
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -07002268 if (str < end)
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +01002269 *str = ' ';
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270 ++str;
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +01002271 }
2272 break;
André Goddard Rosad4be1512009-12-14 18:00:59 -08002273 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +01002275 case FORMAT_TYPE_STR:
2276 str = string(str, end, va_arg(args, char *), spec);
2277 break;
2278
2279 case FORMAT_TYPE_PTR:
Rasmus Villemoesffbfed02015-02-12 15:01:37 -08002280 str = pointer(fmt, str, end, va_arg(args, void *),
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +01002281 spec);
2282 while (isalnum(*fmt))
2283 fmt++;
2284 break;
2285
2286 case FORMAT_TYPE_PERCENT_CHAR:
2287 if (str < end)
2288 *str = '%';
2289 ++str;
2290 break;
2291
2292 case FORMAT_TYPE_INVALID:
Rasmus Villemoesb006f192015-11-06 16:30:20 -08002293 /*
2294 * Presumably the arguments passed gcc's type
2295 * checking, but there is no safe or sane way
2296 * for us to continue parsing the format and
2297 * fetching from the va_list; the remaining
2298 * specifiers and arguments would be out of
2299 * sync.
2300 */
2301 goto out;
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +01002302
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +01002303 default:
2304 switch (spec.type) {
2305 case FORMAT_TYPE_LONG_LONG:
2306 num = va_arg(args, long long);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307 break;
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +01002308 case FORMAT_TYPE_ULONG:
2309 num = va_arg(args, unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310 break;
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +01002311 case FORMAT_TYPE_LONG:
2312 num = va_arg(args, long);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313 break;
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +01002314 case FORMAT_TYPE_SIZE_T:
Jason Gunthorpeef124962012-12-17 15:59:58 -08002315 if (spec.flags & SIGN)
2316 num = va_arg(args, ssize_t);
2317 else
2318 num = va_arg(args, size_t);
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +01002319 break;
2320 case FORMAT_TYPE_PTRDIFF:
2321 num = va_arg(args, ptrdiff_t);
2322 break;
Zhaoleia4e94ef2009-03-27 17:07:05 +08002323 case FORMAT_TYPE_UBYTE:
2324 num = (unsigned char) va_arg(args, int);
2325 break;
2326 case FORMAT_TYPE_BYTE:
2327 num = (signed char) va_arg(args, int);
2328 break;
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +01002329 case FORMAT_TYPE_USHORT:
2330 num = (unsigned short) va_arg(args, int);
2331 break;
2332 case FORMAT_TYPE_SHORT:
2333 num = (short) va_arg(args, int);
2334 break;
Frederic Weisbecker39e874f2009-03-09 21:15:04 +01002335 case FORMAT_TYPE_INT:
2336 num = (int) va_arg(args, int);
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +01002337 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338 default:
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +01002339 num = va_arg(args, unsigned int);
2340 }
2341
2342 str = number(str, end, num, spec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344 }
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +01002345
Rasmus Villemoesb006f192015-11-06 16:30:20 -08002346out:
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -07002347 if (size > 0) {
2348 if (str < end)
2349 *str = '\0';
2350 else
Linus Torvalds0a6047e2006-06-28 17:09:34 -07002351 end[-1] = '\0';
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -07002352 }
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +01002353
Jeremy Fitzhardingef7969372006-06-25 05:49:17 -07002354 /* the trailing null byte doesn't count towards the total */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355 return str-buf;
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +01002356
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358EXPORT_SYMBOL(vsnprintf);
2359
2360/**
2361 * vscnprintf - Format a string and place it in a buffer
2362 * @buf: The buffer to place the result into
2363 * @size: The size of the buffer, including the trailing null space
2364 * @fmt: The format string to use
2365 * @args: Arguments for the format string
2366 *
2367 * The return value is the number of characters which have been written into
Anton Arapovb921c692011-01-12 16:59:49 -08002368 * the @buf not including the trailing '\0'. If @size is == 0 the function
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369 * returns 0.
2370 *
Uwe Kleine-Königba1835e2011-04-06 07:49:04 -07002371 * If you're not already dealing with a va_list consider using scnprintf().
Andi Kleen20036fd2008-10-15 22:02:02 -07002372 *
2373 * See the vsnprintf() documentation for format string extensions over C99.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374 */
2375int vscnprintf(char *buf, size_t size, const char *fmt, va_list args)
2376{
2377 int i;
2378
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08002379 i = vsnprintf(buf, size, fmt, args);
2380
Anton Arapovb921c692011-01-12 16:59:49 -08002381 if (likely(i < size))
2382 return i;
2383 if (size != 0)
2384 return size - 1;
2385 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387EXPORT_SYMBOL(vscnprintf);
2388
2389/**
2390 * snprintf - Format a string and place it in a buffer
2391 * @buf: The buffer to place the result into
2392 * @size: The size of the buffer, including the trailing null space
2393 * @fmt: The format string to use
2394 * @...: Arguments for the format string
2395 *
2396 * The return value is the number of characters which would be
2397 * generated for the given input, excluding the trailing null,
2398 * as per ISO C99. If the return is greater than or equal to
2399 * @size, the resulting string is truncated.
Andi Kleen20036fd2008-10-15 22:02:02 -07002400 *
2401 * See the vsnprintf() documentation for format string extensions over C99.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402 */
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08002403int snprintf(char *buf, size_t size, const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404{
2405 va_list args;
2406 int i;
2407
2408 va_start(args, fmt);
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08002409 i = vsnprintf(buf, size, fmt, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410 va_end(args);
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08002411
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412 return i;
2413}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414EXPORT_SYMBOL(snprintf);
2415
2416/**
2417 * scnprintf - Format a string and place it in a buffer
2418 * @buf: The buffer to place the result into
2419 * @size: The size of the buffer, including the trailing null space
2420 * @fmt: The format string to use
2421 * @...: Arguments for the format string
2422 *
2423 * The return value is the number of characters written into @buf not including
Changli Gaob903c0b2010-10-26 14:22:50 -07002424 * the trailing '\0'. If @size is == 0 the function returns 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425 */
2426
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08002427int scnprintf(char *buf, size_t size, const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002428{
2429 va_list args;
2430 int i;
2431
2432 va_start(args, fmt);
Anton Arapovb921c692011-01-12 16:59:49 -08002433 i = vscnprintf(buf, size, fmt, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434 va_end(args);
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08002435
Anton Arapovb921c692011-01-12 16:59:49 -08002436 return i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437}
2438EXPORT_SYMBOL(scnprintf);
2439
2440/**
2441 * vsprintf - Format a string and place it in a buffer
2442 * @buf: The buffer to place the result into
2443 * @fmt: The format string to use
2444 * @args: Arguments for the format string
2445 *
2446 * The function returns the number of characters written
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08002447 * into @buf. Use vsnprintf() or vscnprintf() in order to avoid
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448 * buffer overflows.
2449 *
Uwe Kleine-Königba1835e2011-04-06 07:49:04 -07002450 * If you're not already dealing with a va_list consider using sprintf().
Andi Kleen20036fd2008-10-15 22:02:02 -07002451 *
2452 * See the vsnprintf() documentation for format string extensions over C99.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453 */
2454int vsprintf(char *buf, const char *fmt, va_list args)
2455{
2456 return vsnprintf(buf, INT_MAX, fmt, args);
2457}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458EXPORT_SYMBOL(vsprintf);
2459
2460/**
2461 * sprintf - Format a string and place it in a buffer
2462 * @buf: The buffer to place the result into
2463 * @fmt: The format string to use
2464 * @...: Arguments for the format string
2465 *
2466 * The function returns the number of characters written
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08002467 * into @buf. Use snprintf() or scnprintf() in order to avoid
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468 * buffer overflows.
Andi Kleen20036fd2008-10-15 22:02:02 -07002469 *
2470 * See the vsnprintf() documentation for format string extensions over C99.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471 */
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08002472int sprintf(char *buf, const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473{
2474 va_list args;
2475 int i;
2476
2477 va_start(args, fmt);
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08002478 i = vsnprintf(buf, INT_MAX, fmt, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479 va_end(args);
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08002480
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481 return i;
2482}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483EXPORT_SYMBOL(sprintf);
2484
Lai Jiangshan4370aa42009-03-06 17:21:46 +01002485#ifdef CONFIG_BINARY_PRINTF
2486/*
2487 * bprintf service:
2488 * vbin_printf() - VA arguments to binary data
2489 * bstr_printf() - Binary data to text string
2490 */
2491
2492/**
2493 * vbin_printf - Parse a format string and place args' binary value in a buffer
2494 * @bin_buf: The buffer to place args' binary value
2495 * @size: The size of the buffer(by words(32bits), not characters)
2496 * @fmt: The format string to use
2497 * @args: Arguments for the format string
2498 *
2499 * The format follows C99 vsnprintf, except %n is ignored, and its argument
Masanari Iidada3dae52014-09-09 01:27:23 +09002500 * is skipped.
Lai Jiangshan4370aa42009-03-06 17:21:46 +01002501 *
2502 * The return value is the number of words(32bits) which would be generated for
2503 * the given input.
2504 *
2505 * NOTE:
2506 * If the return value is greater than @size, the resulting bin_buf is NOT
2507 * valid for bstr_printf().
2508 */
2509int vbin_printf(u32 *bin_buf, size_t size, const char *fmt, va_list args)
2510{
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +01002511 struct printf_spec spec = {0};
Lai Jiangshan4370aa42009-03-06 17:21:46 +01002512 char *str, *end;
Steven Rostedt (VMware)841a9152017-12-28 20:40:25 -05002513 int width;
Lai Jiangshan4370aa42009-03-06 17:21:46 +01002514
2515 str = (char *)bin_buf;
2516 end = (char *)(bin_buf + size);
2517
2518#define save_arg(type) \
Steven Rostedt (VMware)841a9152017-12-28 20:40:25 -05002519({ \
2520 unsigned long long value; \
Lai Jiangshan4370aa42009-03-06 17:21:46 +01002521 if (sizeof(type) == 8) { \
Steven Rostedt (VMware)841a9152017-12-28 20:40:25 -05002522 unsigned long long val8; \
Lai Jiangshan4370aa42009-03-06 17:21:46 +01002523 str = PTR_ALIGN(str, sizeof(u32)); \
Steven Rostedt (VMware)841a9152017-12-28 20:40:25 -05002524 val8 = va_arg(args, unsigned long long); \
Lai Jiangshan4370aa42009-03-06 17:21:46 +01002525 if (str + sizeof(type) <= end) { \
Steven Rostedt (VMware)841a9152017-12-28 20:40:25 -05002526 *(u32 *)str = *(u32 *)&val8; \
2527 *(u32 *)(str + 4) = *((u32 *)&val8 + 1); \
Lai Jiangshan4370aa42009-03-06 17:21:46 +01002528 } \
Steven Rostedt (VMware)841a9152017-12-28 20:40:25 -05002529 value = val8; \
Lai Jiangshan4370aa42009-03-06 17:21:46 +01002530 } else { \
Steven Rostedt (VMware)841a9152017-12-28 20:40:25 -05002531 unsigned int val4; \
Lai Jiangshan4370aa42009-03-06 17:21:46 +01002532 str = PTR_ALIGN(str, sizeof(type)); \
Steven Rostedt (VMware)841a9152017-12-28 20:40:25 -05002533 val4 = va_arg(args, int); \
Lai Jiangshan4370aa42009-03-06 17:21:46 +01002534 if (str + sizeof(type) <= end) \
Steven Rostedt (VMware)841a9152017-12-28 20:40:25 -05002535 *(typeof(type) *)str = (type)(long)val4; \
2536 value = (unsigned long long)val4; \
Lai Jiangshan4370aa42009-03-06 17:21:46 +01002537 } \
2538 str += sizeof(type); \
Steven Rostedt (VMware)841a9152017-12-28 20:40:25 -05002539 value; \
2540})
Lai Jiangshan4370aa42009-03-06 17:21:46 +01002541
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +01002542 while (*fmt) {
André Goddard Rosad4be1512009-12-14 18:00:59 -08002543 int read = format_decode(fmt, &spec);
Lai Jiangshan4370aa42009-03-06 17:21:46 +01002544
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +01002545 fmt += read;
2546
2547 switch (spec.type) {
2548 case FORMAT_TYPE_NONE:
André Goddard Rosad4be1512009-12-14 18:00:59 -08002549 case FORMAT_TYPE_PERCENT_CHAR:
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +01002550 break;
Rasmus Villemoesb006f192015-11-06 16:30:20 -08002551 case FORMAT_TYPE_INVALID:
2552 goto out;
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +01002553
Vegard Nossumed681a92009-03-14 12:08:50 +01002554 case FORMAT_TYPE_WIDTH:
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +01002555 case FORMAT_TYPE_PRECISION:
Steven Rostedt (VMware)841a9152017-12-28 20:40:25 -05002556 width = (int)save_arg(int);
2557 /* Pointers may require the width */
2558 if (*fmt == 'p')
2559 set_field_width(&spec, width);
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +01002560 break;
Lai Jiangshan4370aa42009-03-06 17:21:46 +01002561
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +01002562 case FORMAT_TYPE_CHAR:
Lai Jiangshan4370aa42009-03-06 17:21:46 +01002563 save_arg(char);
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +01002564 break;
2565
2566 case FORMAT_TYPE_STR: {
Lai Jiangshan4370aa42009-03-06 17:21:46 +01002567 const char *save_str = va_arg(args, char *);
2568 size_t len;
André Goddard Rosa6c356632009-12-14 18:00:56 -08002569
Lai Jiangshan4370aa42009-03-06 17:21:46 +01002570 if ((unsigned long)save_str > (unsigned long)-PAGE_SIZE
2571 || (unsigned long)save_str < PAGE_SIZE)
André Goddard Rosa0f4f81d2009-12-14 18:00:55 -08002572 save_str = "(null)";
André Goddard Rosa6c356632009-12-14 18:00:56 -08002573 len = strlen(save_str) + 1;
2574 if (str + len < end)
2575 memcpy(str, save_str, len);
2576 str += len;
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +01002577 break;
Lai Jiangshan4370aa42009-03-06 17:21:46 +01002578 }
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +01002579
2580 case FORMAT_TYPE_PTR:
Steven Rostedt (VMware)841a9152017-12-28 20:40:25 -05002581 /* Dereferenced pointers must be done now */
2582 switch (*fmt) {
2583 /* Dereference of functions is still OK */
2584 case 'S':
2585 case 's':
2586 case 'F':
2587 case 'f':
2588 save_arg(void *);
2589 break;
2590 default:
2591 if (!isalnum(*fmt)) {
2592 save_arg(void *);
2593 break;
2594 }
2595 str = pointer(fmt, str, end, va_arg(args, void *),
2596 spec);
2597 if (str + 1 < end)
2598 *str++ = '\0';
2599 else
2600 end[-1] = '\0'; /* Must be nul terminated */
2601 }
Lai Jiangshan4370aa42009-03-06 17:21:46 +01002602 /* skip all alphanumeric pointer suffixes */
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +01002603 while (isalnum(*fmt))
Lai Jiangshan4370aa42009-03-06 17:21:46 +01002604 fmt++;
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +01002605 break;
2606
Lai Jiangshan4370aa42009-03-06 17:21:46 +01002607 default:
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +01002608 switch (spec.type) {
2609
2610 case FORMAT_TYPE_LONG_LONG:
2611 save_arg(long long);
2612 break;
2613 case FORMAT_TYPE_ULONG:
2614 case FORMAT_TYPE_LONG:
2615 save_arg(unsigned long);
2616 break;
2617 case FORMAT_TYPE_SIZE_T:
2618 save_arg(size_t);
2619 break;
2620 case FORMAT_TYPE_PTRDIFF:
2621 save_arg(ptrdiff_t);
2622 break;
Zhaoleia4e94ef2009-03-27 17:07:05 +08002623 case FORMAT_TYPE_UBYTE:
2624 case FORMAT_TYPE_BYTE:
2625 save_arg(char);
2626 break;
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +01002627 case FORMAT_TYPE_USHORT:
2628 case FORMAT_TYPE_SHORT:
2629 save_arg(short);
2630 break;
2631 default:
2632 save_arg(int);
2633 }
Lai Jiangshan4370aa42009-03-06 17:21:46 +01002634 }
2635 }
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +01002636
Rasmus Villemoesb006f192015-11-06 16:30:20 -08002637out:
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08002638 return (u32 *)(PTR_ALIGN(str, sizeof(u32))) - bin_buf;
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +01002639#undef save_arg
Lai Jiangshan4370aa42009-03-06 17:21:46 +01002640}
2641EXPORT_SYMBOL_GPL(vbin_printf);
2642
2643/**
2644 * bstr_printf - Format a string from binary arguments and place it in a buffer
2645 * @buf: The buffer to place the result into
2646 * @size: The size of the buffer, including the trailing null space
2647 * @fmt: The format string to use
2648 * @bin_buf: Binary arguments for the format string
2649 *
2650 * This function like C99 vsnprintf, but the difference is that vsnprintf gets
2651 * arguments from stack, and bstr_printf gets arguments from @bin_buf which is
2652 * a binary buffer that generated by vbin_printf.
2653 *
2654 * The format follows C99 vsnprintf, but has some extensions:
Steven Rostedt0efb4d22009-09-17 09:27:29 -04002655 * see vsnprintf comment for details.
Lai Jiangshan4370aa42009-03-06 17:21:46 +01002656 *
2657 * The return value is the number of characters which would
2658 * be generated for the given input, excluding the trailing
2659 * '\0', as per ISO C99. If you want to have the exact
2660 * number of characters written into @buf as return value
2661 * (not including the trailing '\0'), use vscnprintf(). If the
2662 * return is greater than or equal to @size, the resulting
2663 * string is truncated.
2664 */
2665int bstr_printf(char *buf, size_t size, const char *fmt, const u32 *bin_buf)
2666{
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +01002667 struct printf_spec spec = {0};
André Goddard Rosad4be1512009-12-14 18:00:59 -08002668 char *str, *end;
2669 const char *args = (const char *)bin_buf;
Lai Jiangshan4370aa42009-03-06 17:21:46 +01002670
Rasmus Villemoes762abb52015-11-06 16:30:23 -08002671 if (WARN_ON_ONCE(size > INT_MAX))
Lai Jiangshan4370aa42009-03-06 17:21:46 +01002672 return 0;
Lai Jiangshan4370aa42009-03-06 17:21:46 +01002673
2674 str = buf;
2675 end = buf + size;
2676
2677#define get_arg(type) \
2678({ \
2679 typeof(type) value; \
2680 if (sizeof(type) == 8) { \
2681 args = PTR_ALIGN(args, sizeof(u32)); \
2682 *(u32 *)&value = *(u32 *)args; \
2683 *((u32 *)&value + 1) = *(u32 *)(args + 4); \
2684 } else { \
2685 args = PTR_ALIGN(args, sizeof(type)); \
2686 value = *(typeof(type) *)args; \
2687 } \
2688 args += sizeof(type); \
2689 value; \
2690})
2691
2692 /* Make sure end is always >= buf */
2693 if (end < buf) {
2694 end = ((void *)-1);
2695 size = end - buf;
2696 }
2697
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +01002698 while (*fmt) {
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +01002699 const char *old_fmt = fmt;
André Goddard Rosad4be1512009-12-14 18:00:59 -08002700 int read = format_decode(fmt, &spec);
Lai Jiangshan4370aa42009-03-06 17:21:46 +01002701
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +01002702 fmt += read;
2703
2704 switch (spec.type) {
2705 case FORMAT_TYPE_NONE: {
2706 int copy = read;
2707 if (str < end) {
2708 if (copy > end - str)
2709 copy = end - str;
2710 memcpy(str, old_fmt, copy);
Lai Jiangshan4370aa42009-03-06 17:21:46 +01002711 }
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +01002712 str += read;
2713 break;
Lai Jiangshan4370aa42009-03-06 17:21:46 +01002714 }
2715
Vegard Nossumed681a92009-03-14 12:08:50 +01002716 case FORMAT_TYPE_WIDTH:
Rasmus Villemoes4d72ba02016-01-15 16:58:44 -08002717 set_field_width(&spec, get_arg(int));
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +01002718 break;
Lai Jiangshan4370aa42009-03-06 17:21:46 +01002719
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +01002720 case FORMAT_TYPE_PRECISION:
Rasmus Villemoes4d72ba02016-01-15 16:58:44 -08002721 set_precision(&spec, get_arg(int));
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +01002722 break;
Lai Jiangshan4370aa42009-03-06 17:21:46 +01002723
André Goddard Rosad4be1512009-12-14 18:00:59 -08002724 case FORMAT_TYPE_CHAR: {
2725 char c;
2726
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +01002727 if (!(spec.flags & LEFT)) {
2728 while (--spec.field_width > 0) {
Lai Jiangshan4370aa42009-03-06 17:21:46 +01002729 if (str < end)
2730 *str = ' ';
2731 ++str;
2732 }
2733 }
2734 c = (unsigned char) get_arg(char);
2735 if (str < end)
2736 *str = c;
2737 ++str;
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +01002738 while (--spec.field_width > 0) {
Lai Jiangshan4370aa42009-03-06 17:21:46 +01002739 if (str < end)
2740 *str = ' ';
2741 ++str;
2742 }
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +01002743 break;
André Goddard Rosad4be1512009-12-14 18:00:59 -08002744 }
Lai Jiangshan4370aa42009-03-06 17:21:46 +01002745
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +01002746 case FORMAT_TYPE_STR: {
Lai Jiangshan4370aa42009-03-06 17:21:46 +01002747 const char *str_arg = args;
André Goddard Rosad4be1512009-12-14 18:00:59 -08002748 args += strlen(str_arg) + 1;
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +01002749 str = string(str, end, (char *)str_arg, spec);
2750 break;
Lai Jiangshan4370aa42009-03-06 17:21:46 +01002751 }
2752
Steven Rostedt (VMware)841a9152017-12-28 20:40:25 -05002753 case FORMAT_TYPE_PTR: {
2754 bool process = false;
2755 int copy, len;
2756 /* Non function dereferences were already done */
2757 switch (*fmt) {
2758 case 'S':
2759 case 's':
2760 case 'F':
2761 case 'f':
2762 process = true;
2763 break;
2764 default:
2765 if (!isalnum(*fmt)) {
2766 process = true;
2767 break;
2768 }
2769 /* Pointer dereference was already processed */
2770 if (str < end) {
2771 len = copy = strlen(args);
2772 if (copy > end - str)
2773 copy = end - str;
2774 memcpy(str, args, copy);
2775 str += len;
2776 args += len;
2777 }
2778 }
2779 if (process)
2780 str = pointer(fmt, str, end, get_arg(void *), spec);
2781
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +01002782 while (isalnum(*fmt))
Lai Jiangshan4370aa42009-03-06 17:21:46 +01002783 fmt++;
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +01002784 break;
Steven Rostedt (VMware)841a9152017-12-28 20:40:25 -05002785 }
Lai Jiangshan4370aa42009-03-06 17:21:46 +01002786
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +01002787 case FORMAT_TYPE_PERCENT_CHAR:
Lai Jiangshan4370aa42009-03-06 17:21:46 +01002788 if (str < end)
2789 *str = '%';
2790 ++str;
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +01002791 break;
2792
Rasmus Villemoesb006f192015-11-06 16:30:20 -08002793 case FORMAT_TYPE_INVALID:
2794 goto out;
2795
André Goddard Rosad4be1512009-12-14 18:00:59 -08002796 default: {
2797 unsigned long long num;
2798
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +01002799 switch (spec.type) {
2800
2801 case FORMAT_TYPE_LONG_LONG:
2802 num = get_arg(long long);
2803 break;
2804 case FORMAT_TYPE_ULONG:
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +01002805 case FORMAT_TYPE_LONG:
2806 num = get_arg(unsigned long);
2807 break;
2808 case FORMAT_TYPE_SIZE_T:
2809 num = get_arg(size_t);
2810 break;
2811 case FORMAT_TYPE_PTRDIFF:
2812 num = get_arg(ptrdiff_t);
2813 break;
Zhaoleia4e94ef2009-03-27 17:07:05 +08002814 case FORMAT_TYPE_UBYTE:
2815 num = get_arg(unsigned char);
2816 break;
2817 case FORMAT_TYPE_BYTE:
2818 num = get_arg(signed char);
2819 break;
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +01002820 case FORMAT_TYPE_USHORT:
2821 num = get_arg(unsigned short);
2822 break;
2823 case FORMAT_TYPE_SHORT:
2824 num = get_arg(short);
2825 break;
2826 case FORMAT_TYPE_UINT:
2827 num = get_arg(unsigned int);
2828 break;
2829 default:
2830 num = get_arg(int);
2831 }
2832
2833 str = number(str, end, num, spec);
André Goddard Rosad4be1512009-12-14 18:00:59 -08002834 } /* default: */
2835 } /* switch(spec.type) */
2836 } /* while(*fmt) */
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +01002837
Rasmus Villemoesb006f192015-11-06 16:30:20 -08002838out:
Lai Jiangshan4370aa42009-03-06 17:21:46 +01002839 if (size > 0) {
2840 if (str < end)
2841 *str = '\0';
2842 else
2843 end[-1] = '\0';
2844 }
Frederic Weisbeckerfef20d9c2009-03-06 17:21:50 +01002845
Lai Jiangshan4370aa42009-03-06 17:21:46 +01002846#undef get_arg
2847
2848 /* the trailing null byte doesn't count towards the total */
2849 return str - buf;
2850}
2851EXPORT_SYMBOL_GPL(bstr_printf);
2852
2853/**
2854 * bprintf - Parse a format string and place args' binary value in a buffer
2855 * @bin_buf: The buffer to place args' binary value
2856 * @size: The size of the buffer(by words(32bits), not characters)
2857 * @fmt: The format string to use
2858 * @...: Arguments for the format string
2859 *
2860 * The function returns the number of words(u32) written
2861 * into @bin_buf.
2862 */
2863int bprintf(u32 *bin_buf, size_t size, const char *fmt, ...)
2864{
2865 va_list args;
2866 int ret;
2867
2868 va_start(args, fmt);
2869 ret = vbin_printf(bin_buf, size, fmt, args);
2870 va_end(args);
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08002871
Lai Jiangshan4370aa42009-03-06 17:21:46 +01002872 return ret;
2873}
2874EXPORT_SYMBOL_GPL(bprintf);
2875
2876#endif /* CONFIG_BINARY_PRINTF */
2877
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878/**
2879 * vsscanf - Unformat a buffer into a list of arguments
2880 * @buf: input buffer
2881 * @fmt: format of buffer
2882 * @args: arguments
2883 */
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08002884int vsscanf(const char *buf, const char *fmt, va_list args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885{
2886 const char *str = buf;
2887 char *next;
2888 char digit;
2889 int num = 0;
Joe Perchesef0658f2010-03-06 17:10:14 -08002890 u8 qualifier;
Jan Beulich53809752012-12-17 16:01:31 -08002891 unsigned int base;
2892 union {
2893 long long s;
2894 unsigned long long u;
2895 } val;
Joe Perchesef0658f2010-03-06 17:10:14 -08002896 s16 field_width;
André Goddard Rosad4be1512009-12-14 18:00:59 -08002897 bool is_sign;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898
Jan Beulichda990752012-10-04 17:13:24 -07002899 while (*fmt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900 /* skip any white space in format */
2901 /* white space in format matchs any amount of
2902 * white space, including none, in the input.
2903 */
2904 if (isspace(*fmt)) {
André Goddard Rosae7d28602009-12-14 18:01:06 -08002905 fmt = skip_spaces(++fmt);
2906 str = skip_spaces(str);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907 }
2908
2909 /* anything that is not a conversion must match exactly */
2910 if (*fmt != '%' && *fmt) {
2911 if (*fmt++ != *str++)
2912 break;
2913 continue;
2914 }
2915
2916 if (!*fmt)
2917 break;
2918 ++fmt;
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08002919
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920 /* skip this conversion.
2921 * advance both strings to next white space
2922 */
2923 if (*fmt == '*') {
Jan Beulichda990752012-10-04 17:13:24 -07002924 if (!*str)
2925 break;
Jessica Yuf9310b22016-03-17 14:23:07 -07002926 while (!isspace(*fmt) && *fmt != '%' && *fmt) {
2927 /* '%*[' not yet supported, invalid format */
2928 if (*fmt == '[')
2929 return num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002930 fmt++;
Jessica Yuf9310b22016-03-17 14:23:07 -07002931 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932 while (!isspace(*str) && *str)
2933 str++;
2934 continue;
2935 }
2936
2937 /* get field width */
2938 field_width = -1;
Jan Beulich53809752012-12-17 16:01:31 -08002939 if (isdigit(*fmt)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940 field_width = skip_atoi(&fmt);
Jan Beulich53809752012-12-17 16:01:31 -08002941 if (field_width <= 0)
2942 break;
2943 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002944
2945 /* get conversion qualifier */
2946 qualifier = -1;
Andy Shevchenko75fb8f22011-07-25 17:13:20 -07002947 if (*fmt == 'h' || _tolower(*fmt) == 'l' ||
Alexey Dobriyan5b5e0922017-02-27 14:30:02 -08002948 *fmt == 'z') {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002949 qualifier = *fmt++;
2950 if (unlikely(qualifier == *fmt)) {
2951 if (qualifier == 'h') {
2952 qualifier = 'H';
2953 fmt++;
2954 } else if (qualifier == 'l') {
2955 qualifier = 'L';
2956 fmt++;
2957 }
2958 }
2959 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002960
Jan Beulichda990752012-10-04 17:13:24 -07002961 if (!*fmt)
2962 break;
2963
2964 if (*fmt == 'n') {
2965 /* return number of characters read so far */
2966 *va_arg(args, int *) = str - buf;
2967 ++fmt;
2968 continue;
2969 }
2970
2971 if (!*str)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002972 break;
2973
André Goddard Rosad4be1512009-12-14 18:00:59 -08002974 base = 10;
Fabian Frederick3f623eb2014-06-04 16:11:52 -07002975 is_sign = false;
André Goddard Rosad4be1512009-12-14 18:00:59 -08002976
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08002977 switch (*fmt++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002978 case 'c':
2979 {
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08002980 char *s = (char *)va_arg(args, char*);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002981 if (field_width == -1)
2982 field_width = 1;
2983 do {
2984 *s++ = *str++;
2985 } while (--field_width > 0 && *str);
2986 num++;
2987 }
2988 continue;
2989 case 's':
2990 {
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08002991 char *s = (char *)va_arg(args, char *);
2992 if (field_width == -1)
Alexey Dobriyan4be929b2010-05-24 14:33:03 -07002993 field_width = SHRT_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002994 /* first, skip leading white space in buffer */
André Goddard Rosae7d28602009-12-14 18:01:06 -08002995 str = skip_spaces(str);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996
2997 /* now copy until next white space */
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08002998 while (*str && !isspace(*str) && field_width--)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999 *s++ = *str++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003000 *s = '\0';
3001 num++;
3002 }
3003 continue;
Jessica Yuf9310b22016-03-17 14:23:07 -07003004 /*
3005 * Warning: This implementation of the '[' conversion specifier
3006 * deviates from its glibc counterpart in the following ways:
3007 * (1) It does NOT support ranges i.e. '-' is NOT a special
3008 * character
3009 * (2) It cannot match the closing bracket ']' itself
3010 * (3) A field width is required
3011 * (4) '%*[' (discard matching input) is currently not supported
3012 *
3013 * Example usage:
3014 * ret = sscanf("00:0a:95","%2[^:]:%2[^:]:%2[^:]",
3015 * buf1, buf2, buf3);
3016 * if (ret < 3)
3017 * // etc..
3018 */
3019 case '[':
3020 {
3021 char *s = (char *)va_arg(args, char *);
3022 DECLARE_BITMAP(set, 256) = {0};
3023 unsigned int len = 0;
3024 bool negate = (*fmt == '^');
3025
3026 /* field width is required */
3027 if (field_width == -1)
3028 return num;
3029
3030 if (negate)
3031 ++fmt;
3032
3033 for ( ; *fmt && *fmt != ']'; ++fmt, ++len)
3034 set_bit((u8)*fmt, set);
3035
3036 /* no ']' or no character set found */
3037 if (!*fmt || !len)
3038 return num;
3039 ++fmt;
3040
3041 if (negate) {
3042 bitmap_complement(set, set, 256);
3043 /* exclude null '\0' byte */
3044 clear_bit(0, set);
3045 }
3046
3047 /* match must be non-empty */
3048 if (!test_bit((u8)*str, set))
3049 return num;
3050
3051 while (test_bit((u8)*str, set) && field_width--)
3052 *s++ = *str++;
3053 *s = '\0';
3054 ++num;
3055 }
3056 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003057 case 'o':
3058 base = 8;
3059 break;
3060 case 'x':
3061 case 'X':
3062 base = 16;
3063 break;
3064 case 'i':
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08003065 base = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003066 case 'd':
Fabian Frederick3f623eb2014-06-04 16:11:52 -07003067 is_sign = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003068 case 'u':
3069 break;
3070 case '%':
3071 /* looking for '%' in str */
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08003072 if (*str++ != '%')
Linus Torvalds1da177e2005-04-16 15:20:36 -07003073 return num;
3074 continue;
3075 default:
3076 /* invalid format; stop here */
3077 return num;
3078 }
3079
3080 /* have some sort of integer conversion.
3081 * first, skip white space in buffer.
3082 */
André Goddard Rosae7d28602009-12-14 18:01:06 -08003083 str = skip_spaces(str);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003084
3085 digit = *str;
3086 if (is_sign && digit == '-')
3087 digit = *(str + 1);
3088
3089 if (!digit
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08003090 || (base == 16 && !isxdigit(digit))
3091 || (base == 10 && !isdigit(digit))
3092 || (base == 8 && (!isdigit(digit) || digit > '7'))
3093 || (base == 0 && !isdigit(digit)))
3094 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003095
Jan Beulich53809752012-12-17 16:01:31 -08003096 if (is_sign)
3097 val.s = qualifier != 'L' ?
3098 simple_strtol(str, &next, base) :
3099 simple_strtoll(str, &next, base);
3100 else
3101 val.u = qualifier != 'L' ?
3102 simple_strtoul(str, &next, base) :
3103 simple_strtoull(str, &next, base);
3104
3105 if (field_width > 0 && next - str > field_width) {
3106 if (base == 0)
3107 _parse_integer_fixup_radix(str, &base);
3108 while (next - str > field_width) {
3109 if (is_sign)
3110 val.s = div_s64(val.s, base);
3111 else
3112 val.u = div_u64(val.u, base);
3113 --next;
3114 }
3115 }
3116
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08003117 switch (qualifier) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003118 case 'H': /* that's 'hh' in format */
Jan Beulich53809752012-12-17 16:01:31 -08003119 if (is_sign)
3120 *va_arg(args, signed char *) = val.s;
3121 else
3122 *va_arg(args, unsigned char *) = val.u;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003123 break;
3124 case 'h':
Jan Beulich53809752012-12-17 16:01:31 -08003125 if (is_sign)
3126 *va_arg(args, short *) = val.s;
3127 else
3128 *va_arg(args, unsigned short *) = val.u;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003129 break;
3130 case 'l':
Jan Beulich53809752012-12-17 16:01:31 -08003131 if (is_sign)
3132 *va_arg(args, long *) = val.s;
3133 else
3134 *va_arg(args, unsigned long *) = val.u;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003135 break;
3136 case 'L':
Jan Beulich53809752012-12-17 16:01:31 -08003137 if (is_sign)
3138 *va_arg(args, long long *) = val.s;
3139 else
3140 *va_arg(args, unsigned long long *) = val.u;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003141 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003142 case 'z':
Jan Beulich53809752012-12-17 16:01:31 -08003143 *va_arg(args, size_t *) = val.u;
3144 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003145 default:
Jan Beulich53809752012-12-17 16:01:31 -08003146 if (is_sign)
3147 *va_arg(args, int *) = val.s;
3148 else
3149 *va_arg(args, unsigned int *) = val.u;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003150 break;
3151 }
3152 num++;
3153
3154 if (!next)
3155 break;
3156 str = next;
3157 }
Johannes Bergc6b40d12007-05-08 00:27:20 -07003158
Linus Torvalds1da177e2005-04-16 15:20:36 -07003159 return num;
3160}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003161EXPORT_SYMBOL(vsscanf);
3162
3163/**
3164 * sscanf - Unformat a buffer into a list of arguments
3165 * @buf: input buffer
3166 * @fmt: formatting of buffer
3167 * @...: resulting arguments
3168 */
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08003169int sscanf(const char *buf, const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003170{
3171 va_list args;
3172 int i;
3173
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08003174 va_start(args, fmt);
3175 i = vsscanf(buf, fmt, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003176 va_end(args);
André Goddard Rosa7b9186f2009-12-14 18:00:57 -08003177
Linus Torvalds1da177e2005-04-16 15:20:36 -07003178 return i;
3179}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003180EXPORT_SYMBOL(sscanf);