1 // SPDX-License-Identifier: GPL-2.0-only
2 /* -*- linux-c -*- ------------------------------------------------------- *
4 * Copyright (C) 1991, 1992 Linus Torvalds
5 * Copyright 2007 rPath, Inc. - All Rights Reserved
7 * ----------------------------------------------------------------------- */
10 * Oh, it's a waste of space, but oh-so-yummy for debugging.
13 #include <linux/stdarg.h>
15 #include <linux/compiler.h>
16 #include <linux/ctype.h>
17 #include <linux/kernel.h>
18 #include <linux/limits.h>
19 #include <linux/string.h>
20 #include <linux/types.h>
23 int skip_atoi(const char **s
)
28 i
= i
* 10 + *((*s
)++) - '0';
33 * put_dec_full4 handles numbers in the range 0 <= r < 10000.
34 * The multiplier 0xccd is round(2^15/10), and the approximation
35 * r/10 == (r * 0xccd) >> 15 is exact for all r < 16389.
38 void put_dec_full4(char *end
, unsigned int r
)
42 for (i
= 0; i
< 3; i
++) {
43 unsigned int q
= (r
* 0xccd) >> 15;
44 *--end
= '0' + (r
- q
* 10);
50 /* put_dec is copied from lib/vsprintf.c with small modifications */
53 * Call put_dec_full4 on x % 10000, return x / 10000.
54 * The approximation x/10000 == (x * 0x346DC5D7) >> 43
55 * holds for all x < 1,128,869,999. The largest value this
56 * helper will ever be asked to convert is 1,125,520,955.
57 * (second call in the put_dec code, assuming n is all-ones).
60 unsigned int put_dec_helper4(char *end
, unsigned int x
)
62 unsigned int q
= (x
* 0x346DC5D7ULL
) >> 43;
64 put_dec_full4(end
, x
- q
* 10000);
68 /* Based on code by Douglas W. Jones found at
69 * <http://www.cs.uiowa.edu/~jones/bcd/decimal.html#sixtyfour>
70 * (with permission from the author).
71 * Performs no 64-bit division and hence should be fast on 32-bit machines.
74 char *put_dec(char *end
, unsigned long long n
)
76 unsigned int d3
, d2
, d1
, q
, h
;
79 d1
= ((unsigned int)n
>> 16); /* implicit "& 0xffff" */
82 d3
= (h
>> 16); /* implicit "& 0xffff" */
84 /* n = 2^48 d3 + 2^32 d2 + 2^16 d1 + d0
85 = 281_4749_7671_0656 d3 + 42_9496_7296 d2 + 6_5536 d1 + d0 */
86 q
= 656 * d3
+ 7296 * d2
+ 5536 * d1
+ ((unsigned int)n
& 0xffff);
87 q
= put_dec_helper4(p
, q
);
90 q
+= 7671 * d3
+ 9496 * d2
+ 6 * d1
;
91 q
= put_dec_helper4(p
, q
);
94 q
+= 4749 * d3
+ 42 * d2
;
95 q
= put_dec_helper4(p
, q
);
99 q
= put_dec_helper4(p
, q
);
105 /* strip off the extra 0's we printed */
106 while (p
< end
&& *p
== '0')
113 char *number(char *end
, unsigned long long num
, int base
, char locase
)
116 * locase = 0 or 0x20. ORing digits or letters with 'locase'
117 * produces same digits or (maybe lowercased) letters
120 /* we are called with base 8, 10 or 16, only, thus don't need "G..." */
121 static const char digits
[16] = "0123456789ABCDEF"; /* "GHIJKLMNOPQRSTUVWXYZ"; */
126 end
= put_dec(end
, num
);
129 for (; num
!= 0; num
>>= 3)
130 *--end
= '0' + (num
& 07);
133 for (; num
!= 0; num
>>= 4)
134 *--end
= digits
[num
& 0xf] | locase
;
143 #define ZEROPAD 1 /* pad with zero */
144 #define SIGN 2 /* unsigned/signed long */
145 #define PLUS 4 /* show plus */
146 #define SPACE 8 /* space if plus */
147 #define LEFT 16 /* left justified */
148 #define SMALL 32 /* Must be 32 == 0x20 */
149 #define SPECIAL 64 /* 0x */
150 #define WIDE 128 /* UTF-16 string */
153 int get_flags(const char **fmt
)
182 int get_int(const char **fmt
, va_list *ap
)
185 return skip_atoi(fmt
);
188 /* it's the next argument */
189 return va_arg(*ap
, int);
195 unsigned long long get_number(int sign
, int qualifier
, va_list *ap
)
200 return va_arg(*ap
, long long);
202 return va_arg(*ap
, long);
204 return (short)va_arg(*ap
, int);
206 return (signed char)va_arg(*ap
, int);
208 return va_arg(*ap
, int);
213 return va_arg(*ap
, unsigned long long);
215 return va_arg(*ap
, unsigned long);
217 return (unsigned short)va_arg(*ap
, int);
219 return (unsigned char)va_arg(*ap
, int);
221 return va_arg(*ap
, unsigned int);
227 char get_sign(long long *num
, int flags
)
243 size_t utf16s_utf8nlen(const u16
*s16
, size_t maxlen
)
247 for (len
= 0; len
< maxlen
&& *s16
; len
+= clen
) {
250 /* First, get the length for a BMP character */
251 clen
= 1 + (c0
>= 0x80) + (c0
>= 0x800);
252 if (len
+ clen
> maxlen
)
255 * If this is a high surrogate, and we're already at maxlen, we
256 * can't include the character if it's a valid surrogate pair.
257 * Avoid accessing one extra word just to check if it's valid
260 if ((c0
& 0xfc00) == 0xd800) {
261 if (len
+ clen
== maxlen
)
263 if ((*s16
& 0xfc00) == 0xdc00) {
274 u32
utf16_to_utf32(const u16
**s16
)
279 /* not a surrogate */
280 if ((c0
& 0xf800) != 0xd800)
282 /* invalid: low surrogate instead of high */
286 /* invalid: missing low surrogate */
287 if ((c1
& 0xfc00) != 0xdc00)
289 /* valid surrogate pair */
291 return (0x10000 - (0xd800 << 10) - 0xdc00) + (c0
<< 10) + c1
;
301 int vsnprintf(char *buf
, size_t size
, const char *fmt
, va_list ap
)
303 /* The maximum space required is to print a 64-bit number in octal */
304 char tmp
[(sizeof(unsigned long long) * 8 + 2) / 3];
305 char *tmp_end
= &tmp
[ARRAY_SIZE(tmp
)];
312 int flags
; /* flags to number() */
314 int field_width
; /* width of output field */
315 int precision
; /* min. # of digits for integers; max
316 number of chars for from string */
317 int qualifier
; /* 'h', 'hh', 'l' or 'll' for integer fields */
322 * We want to pass our input va_list to helper functions by reference,
323 * but there's an annoying edge case. If va_list was originally passed
324 * to us by value, we could just pass &ap down to the helpers. This is
325 * the case on, for example, X86_32.
326 * However, on X86_64 (and possibly others), va_list is actually a
327 * size-1 array containing a structure. Our function parameter ap has
328 * decayed from T[1] to T*, and &ap has type T** rather than T(*)[1],
329 * which is what will be expected by a function taking a va_list *
331 * One standard way to solve this mess is by creating a copy in a local
332 * variable of type va_list and then passing a pointer to that local
333 * copy instead, which is what we do here.
337 for (pos
= 0; *fmt
; ++fmt
) {
338 if (*fmt
!= '%' || *++fmt
== '%') {
344 flags
= get_flags(&fmt
);
346 /* get field width */
347 field_width
= get_int(&fmt
, &args
);
348 if (field_width
< 0) {
349 field_width
= -field_width
;
356 /* get the precision */
360 precision
= get_int(&fmt
, &args
);
365 /* get the conversion qualifier */
367 if (*fmt
== 'h' || *fmt
== 'l') {
370 if (qualifier
== *fmt
) {
371 qualifier
-= 'a'-'A';
382 if (qualifier
== 'l') {
383 ((u16
*)tmp
)[0] = (u16
)va_arg(args
, unsigned int);
384 ((u16
*)tmp
)[1] = L
'\0';
388 tmp
[0] = (unsigned char)va_arg(args
, int);
397 s
= va_arg(args
, void *);
399 s
= precision
< 6 ? "" : "(null)";
400 else if (qualifier
== 'l') {
403 precision
= len
= utf16s_utf8nlen((const u16
*)s
, precision
);
406 precision
= len
= strnlen(s
, precision
);
409 /* integer number formats - set up the flags and "break" */
416 precision
= 2 * sizeof(void *);
436 * Bail out if the conversion specifier is invalid.
437 * There's probably a typo in the format string and the
438 * remaining specifiers are unlikely to match up with
444 num
= (unsigned long)va_arg(args
, void *);
446 num
= get_number(flags
& SIGN
, qualifier
, &args
);
449 sign
= get_sign(&num
, flags
);
453 s
= number(tmp_end
, num
, base
, flags
& SMALL
);
455 /* default precision is 1 */
458 /* precision is minimum number of digits to print */
461 if (flags
& SPECIAL
) {
463 * For octal, a leading 0 is printed only if necessary,
464 * i.e. if it's not already there because of the
467 if (base
== 8 && precision
== len
)
470 * For hexadecimal, the leading 0x is skipped if the
471 * output is empty, i.e. both the number and the
474 if (base
== 16 && precision
> 0)
480 * For zero padding, increase the precision to fill the field
483 if ((flags
& ZEROPAD
) && field_width
> precision
)
484 precision
= field_width
;
487 /* Calculate the padding necessary */
488 field_width
-= precision
;
489 /* Leading padding with ' ' */
491 while (field_width
-- > 0)
496 /* 0x/0X for hexadecimal */
497 if (flags
& SPECIAL
) {
499 PUTC( 'X' | (flags
& SMALL
));
501 /* Zero padding and excess precision */
502 while (precision
-- > len
)
506 const u16
*ws
= (const u16
*)s
;
509 u32 c32
= utf16_to_utf32(&ws
);
518 /* Number of trailing octets */
519 clen
= 1 + (c32
>= 0x800) + (c32
>= 0x10000);
522 s8
= (u8
*)&buf
[pos
];
524 /* Avoid writing partial character */
530 /* Set high bits of leading octet */
531 *s8
= (0xf00 >> 1) >> clen
;
532 /* Write trailing octets in reverse order */
533 for (s8
+= clen
; clen
; --clen
, c32
>>= 6)
534 *s8
-- = 0x80 | (c32
& 0x3f);
535 /* Set low bits of leading octet */
542 /* Trailing padding with ' ' */
543 while (field_width
-- > 0)
550 buf
[min(pos
, size
-1)] = '\0';
555 int snprintf(char *buf
, size_t size
, const char *fmt
, ...)
561 i
= vsnprintf(buf
, size
, fmt
, args
);