]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/libc/stdio/printf.3
MFV r323678: file 5.32
[FreeBSD/FreeBSD.git] / lib / libc / stdio / printf.3
1 .\" Copyright (c) 1990, 1991, 1993
2 .\"     The Regents of the University of California.  All rights reserved.
3 .\"
4 .\" This code is derived from software contributed to Berkeley by
5 .\" Chris Torek and the American National Standards Committee X3,
6 .\" on Information Processing Systems.
7 .\"
8 .\" Redistribution and use in source and binary forms, with or without
9 .\" modification, are permitted provided that the following conditions
10 .\" are met:
11 .\" 1. Redistributions of source code must retain the above copyright
12 .\"    notice, this list of conditions and the following disclaimer.
13 .\" 2. Redistributions in binary form must reproduce the above copyright
14 .\"    notice, this list of conditions and the following disclaimer in the
15 .\"    documentation and/or other materials provided with the distribution.
16 .\" 3. Neither the name of the University nor the names of its contributors
17 .\"    may be used to endorse or promote products derived from this software
18 .\"    without specific prior written permission.
19 .\"
20 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 .\" SUCH DAMAGE.
31 .\"
32 .\"     @(#)printf.3    8.1 (Berkeley) 6/4/93
33 .\" $FreeBSD$
34 .\"
35 .Dd July 30, 2016
36 .Dt PRINTF 3
37 .Os
38 .Sh NAME
39 .Nm printf , fprintf , sprintf , snprintf , asprintf , dprintf ,
40 .Nm vprintf , vfprintf, vsprintf , vsnprintf , vasprintf, vdprintf
41 .Nd formatted output conversion
42 .Sh LIBRARY
43 .Lb libc
44 .Sh SYNOPSIS
45 .In stdio.h
46 .Ft int
47 .Fn printf "const char * restrict format" ...
48 .Ft int
49 .Fn fprintf "FILE * restrict stream" "const char * restrict format" ...
50 .Ft int
51 .Fn sprintf "char * restrict str" "const char * restrict format" ...
52 .Ft int
53 .Fn snprintf "char * restrict str" "size_t size" "const char * restrict format" ...
54 .Ft int
55 .Fn asprintf "char **ret" "const char *format" ...
56 .Ft int
57 .Fn dprintf "int fd" "const char * restrict format" ...
58 .In stdarg.h
59 .Ft int
60 .Fn vprintf "const char * restrict format" "va_list ap"
61 .Ft int
62 .Fn vfprintf "FILE * restrict stream" "const char * restrict format" "va_list ap"
63 .Ft int
64 .Fn vsprintf "char * restrict str" "const char * restrict format" "va_list ap"
65 .Ft int
66 .Fn vsnprintf "char * restrict str" "size_t size" "const char * restrict format" "va_list ap"
67 .Ft int
68 .Fn vasprintf "char **ret" "const char *format" "va_list ap"
69 .Ft int
70 .Fn vdprintf "int fd" "const char * restrict format" "va_list ap"
71 .Sh DESCRIPTION
72 The
73 .Fn printf
74 family of functions produces output according to a
75 .Fa format
76 as described below.
77 The
78 .Fn printf
79 and
80 .Fn vprintf
81 functions
82 write output to
83 .Dv stdout ,
84 the standard output stream;
85 .Fn fprintf
86 and
87 .Fn vfprintf
88 write output to the given output
89 .Fa stream ;
90 .Fn dprintf
91 and
92 .Fn vdprintf
93 write output to the given file descriptor;
94 .Fn sprintf ,
95 .Fn snprintf ,
96 .Fn vsprintf ,
97 and
98 .Fn vsnprintf
99 write to the character string
100 .Fa str ;
101 and
102 .Fn asprintf
103 and
104 .Fn vasprintf
105 dynamically allocate a new string with
106 .Xr malloc 3 .
107 .Pp
108 These functions write the output under the control of a
109 .Fa format
110 string that specifies how subsequent arguments
111 (or arguments accessed via the variable-length argument facilities of
112 .Xr stdarg 3 )
113 are converted for output.
114 .Pp
115 The
116 .Fn asprintf
117 and
118 .Fn vasprintf
119 functions
120 set
121 .Fa *ret
122 to be a pointer to a buffer sufficiently large to hold the formatted string.
123 This pointer should be passed to
124 .Xr free 3
125 to release the allocated storage when it is no longer needed.
126 If sufficient space cannot be allocated,
127 .Fn asprintf
128 and
129 .Fn vasprintf
130 will return \-1 and set
131 .Fa ret
132 to be a
133 .Dv NULL
134 pointer.
135 .Pp
136 The
137 .Fn snprintf
138 and
139 .Fn vsnprintf
140 functions
141 will write at most
142 .Fa size Ns \-1
143 of the characters printed into the output string
144 (the
145 .Fa size Ns 'th
146 character then gets the terminating
147 .Ql \e0 ) ;
148 if the return value is greater than or equal to the
149 .Fa size
150 argument, the string was too short
151 and some of the printed characters were discarded.
152 The output is always null-terminated, unless
153 .Fa size
154 is 0.
155 .Pp
156 The
157 .Fn sprintf
158 and
159 .Fn vsprintf
160 functions
161 effectively assume a
162 .Fa size
163 of
164 .Dv INT_MAX + 1.
165 .Pp
166 The format string is composed of zero or more directives:
167 ordinary
168 .\" multibyte
169 characters (not
170 .Cm % ) ,
171 which are copied unchanged to the output stream;
172 and conversion specifications, each of which results
173 in fetching zero or more subsequent arguments.
174 Each conversion specification is introduced by
175 the
176 .Cm %
177 character.
178 The arguments must correspond properly (after type promotion)
179 with the conversion specifier.
180 After the
181 .Cm % ,
182 the following appear in sequence:
183 .Bl -bullet
184 .It
185 An optional field, consisting of a decimal digit string followed by a
186 .Cm $ ,
187 specifying the next argument to access.
188 If this field is not provided, the argument following the last
189 argument accessed will be used.
190 Arguments are numbered starting at
191 .Cm 1 .
192 If unaccessed arguments in the format string are interspersed with ones that
193 are accessed the results will be indeterminate.
194 .It
195 Zero or more of the following flags:
196 .Bl -tag -width ".So \  Sc (space)"
197 .It Sq Cm #
198 The value should be converted to an
199 .Dq alternate form .
200 For
201 .Cm c , d , i , n , p , s ,
202 and
203 .Cm u
204 conversions, this option has no effect.
205 For
206 .Cm o
207 conversions, the precision of the number is increased to force the first
208 character of the output string to a zero.
209 For
210 .Cm x
211 and
212 .Cm X
213 conversions, a non-zero result has the string
214 .Ql 0x
215 (or
216 .Ql 0X
217 for
218 .Cm X
219 conversions) prepended to it.
220 For
221 .Cm a , A , e , E , f , F , g ,
222 and
223 .Cm G
224 conversions, the result will always contain a decimal point, even if no
225 digits follow it (normally, a decimal point appears in the results of
226 those conversions only if a digit follows).
227 For
228 .Cm g
229 and
230 .Cm G
231 conversions, trailing zeros are not removed from the result as they
232 would otherwise be.
233 .It So Cm 0 Sc (zero)
234 Zero padding.
235 For all conversions except
236 .Cm n ,
237 the converted value is padded on the left with zeros rather than blanks.
238 If a precision is given with a numeric conversion
239 .Cm ( d , i , o , u , i , x ,
240 and
241 .Cm X ) ,
242 the
243 .Cm 0
244 flag is ignored.
245 .It Sq Cm \-
246 A negative field width flag;
247 the converted value is to be left adjusted on the field boundary.
248 Except for
249 .Cm n
250 conversions, the converted value is padded on the right with blanks,
251 rather than on the left with blanks or zeros.
252 A
253 .Cm \-
254 overrides a
255 .Cm 0
256 if both are given.
257 .It So "\ " Sc (space)
258 A blank should be left before a positive number
259 produced by a signed conversion
260 .Cm ( a , A , d , e , E , f , F , g , G ,
261 or
262 .Cm i ) .
263 .It Sq Cm +
264 A sign must always be placed before a
265 number produced by a signed conversion.
266 A
267 .Cm +
268 overrides a space if both are used.
269 .It So "'" Sc (apostrophe)
270 Decimal conversions
271 .Cm ( d , u ,
272 or
273 .Cm i )
274 or the integral portion of a floating point conversion
275 .Cm ( f
276 or
277 .Cm F )
278 should be grouped and separated by thousands using
279 the non-monetary separator returned by
280 .Xr localeconv 3 .
281 .El
282 .It
283 An optional decimal digit string specifying a minimum field width.
284 If the converted value has fewer characters than the field width, it will
285 be padded with spaces on the left (or right, if the left-adjustment
286 flag has been given) to fill out
287 the field width.
288 .It
289 An optional precision, in the form of a period
290 .Cm \&.
291 followed by an
292 optional digit string.
293 If the digit string is omitted, the precision is taken as zero.
294 This gives the minimum number of digits to appear for
295 .Cm d , i , o , u , x ,
296 and
297 .Cm X
298 conversions, the number of digits to appear after the decimal-point for
299 .Cm a , A , e , E , f ,
300 and
301 .Cm F
302 conversions, the maximum number of significant digits for
303 .Cm g
304 and
305 .Cm G
306 conversions, or the maximum number of characters to be printed from a
307 string for
308 .Cm s
309 conversions.
310 .It
311 An optional length modifier, that specifies the size of the argument.
312 The following length modifiers are valid for the
313 .Cm d , i , n , o , u , x ,
314 or
315 .Cm X
316 conversion:
317 .Bl -column ".Cm q Em (deprecated)" ".Vt signed char" ".Vt unsigned long long" ".Vt long long *"
318 .It Sy Modifier Ta Cm d , i Ta Cm o , u , x , X Ta Cm n
319 .It Cm hh Ta Vt "signed char" Ta Vt "unsigned char" Ta Vt "signed char *"
320 .It Cm h Ta Vt short Ta Vt "unsigned short" Ta Vt "short *"
321 .It Cm l No (ell) Ta Vt long Ta Vt "unsigned long" Ta Vt "long *"
322 .It Cm ll No (ell ell) Ta Vt "long long" Ta Vt "unsigned long long" Ta Vt "long long *"
323 .It Cm j Ta Vt intmax_t Ta Vt uintmax_t Ta Vt "intmax_t *"
324 .It Cm t Ta Vt ptrdiff_t Ta (see note) Ta Vt "ptrdiff_t *"
325 .It Cm z Ta (see note) Ta Vt size_t Ta (see note)
326 .It Cm q Em (deprecated) Ta Vt quad_t Ta Vt u_quad_t Ta Vt "quad_t *"
327 .El
328 .Pp
329 Note:
330 the
331 .Cm t
332 modifier, when applied to a
333 .Cm o , u , x ,
334 or
335 .Cm X
336 conversion, indicates that the argument is of an unsigned type
337 equivalent in size to a
338 .Vt ptrdiff_t .
339 The
340 .Cm z
341 modifier, when applied to a
342 .Cm d
343 or
344 .Cm i
345 conversion, indicates that the argument is of a signed type equivalent in
346 size to a
347 .Vt size_t .
348 Similarly, when applied to an
349 .Cm n
350 conversion, it indicates that the argument is a pointer to a signed type
351 equivalent in size to a
352 .Vt size_t .
353 .Pp
354 The following length modifier is valid for the
355 .Cm a , A , e , E , f , F , g ,
356 or
357 .Cm G
358 conversion:
359 .Bl -column ".Sy Modifier" ".Cm a , A , e , E , f , F , g , G"
360 .It Sy Modifier Ta Cm a , A , e , E , f , F , g , G
361 .It Cm l No (ell) Ta Vt double
362 (ignored, same behavior as without it)
363 .It Cm L Ta Vt "long double"
364 .El
365 .Pp
366 The following length modifier is valid for the
367 .Cm c
368 or
369 .Cm s
370 conversion:
371 .Bl -column ".Sy Modifier" ".Vt wint_t" ".Vt wchar_t *"
372 .It Sy Modifier Ta Cm c Ta Cm s
373 .It Cm l No (ell) Ta Vt wint_t Ta Vt "wchar_t *"
374 .El
375 .It
376 A character that specifies the type of conversion to be applied.
377 .El
378 .Pp
379 A field width or precision, or both, may be indicated by
380 an asterisk
381 .Ql *
382 or an asterisk followed by one or more decimal digits and a
383 .Ql $
384 instead of a
385 digit string.
386 In this case, an
387 .Vt int
388 argument supplies the field width or precision.
389 A negative field width is treated as a left adjustment flag followed by a
390 positive field width; a negative precision is treated as though it were
391 missing.
392 If a single format directive mixes positional
393 .Pq Li nn$
394 and non-positional arguments, the results are undefined.
395 .Pp
396 The conversion specifiers and their meanings are:
397 .Bl -tag -width ".Cm diouxX"
398 .It Cm diouxX
399 The
400 .Vt int
401 (or appropriate variant) argument is converted to signed decimal
402 .Cm ( d
403 and
404 .Cm i ) ,
405 unsigned octal
406 .Pq Cm o ,
407 unsigned decimal
408 .Pq Cm u ,
409 or unsigned hexadecimal
410 .Cm ( x
411 and
412 .Cm X )
413 notation.
414 The letters
415 .Dq Li abcdef
416 are used for
417 .Cm x
418 conversions; the letters
419 .Dq Li ABCDEF
420 are used for
421 .Cm X
422 conversions.
423 The precision, if any, gives the minimum number of digits that must
424 appear; if the converted value requires fewer digits, it is padded on
425 the left with zeros.
426 .It Cm DOU
427 The
428 .Vt "long int"
429 argument is converted to signed decimal, unsigned octal, or unsigned
430 decimal, as if the format had been
431 .Cm ld , lo ,
432 or
433 .Cm lu
434 respectively.
435 These conversion characters are deprecated, and will eventually disappear.
436 .It Cm eE
437 The
438 .Vt double
439 argument is rounded and converted in the style
440 .Sm off
441 .Oo \- Oc Ar d Li \&. Ar ddd Li e \(+- Ar dd
442 .Sm on
443 where there is one digit before the
444 decimal-point character
445 and the number of digits after it is equal to the precision;
446 if the precision is missing,
447 it is taken as 6; if the precision is
448 zero, no decimal-point character appears.
449 An
450 .Cm E
451 conversion uses the letter
452 .Ql E
453 (rather than
454 .Ql e )
455 to introduce the exponent.
456 The exponent always contains at least two digits; if the value is zero,
457 the exponent is 00.
458 .Pp
459 For
460 .Cm a , A , e , E , f , F , g ,
461 and
462 .Cm G
463 conversions, positive and negative infinity are represented as
464 .Li inf
465 and
466 .Li -inf
467 respectively when using the lowercase conversion character, and
468 .Li INF
469 and
470 .Li -INF
471 respectively when using the uppercase conversion character.
472 Similarly, NaN is represented as
473 .Li nan
474 when using the lowercase conversion, and
475 .Li NAN
476 when using the uppercase conversion.
477 .It Cm fF
478 The
479 .Vt double
480 argument is rounded and converted to decimal notation in the style
481 .Sm off
482 .Oo \- Oc Ar ddd Li \&. Ar ddd ,
483 .Sm on
484 where the number of digits after the decimal-point character
485 is equal to the precision specification.
486 If the precision is missing, it is taken as 6; if the precision is
487 explicitly zero, no decimal-point character appears.
488 If a decimal point appears, at least one digit appears before it.
489 .It Cm gG
490 The
491 .Vt double
492 argument is converted in style
493 .Cm f
494 or
495 .Cm e
496 (or
497 .Cm F
498 or
499 .Cm E
500 for
501 .Cm G
502 conversions).
503 The precision specifies the number of significant digits.
504 If the precision is missing, 6 digits are given; if the precision is zero,
505 it is treated as 1.
506 Style
507 .Cm e
508 is used if the exponent from its conversion is less than \-4 or greater than
509 or equal to the precision.
510 Trailing zeros are removed from the fractional part of the result; a
511 decimal point appears only if it is followed by at least one digit.
512 .It Cm aA
513 The
514 .Vt double
515 argument is rounded and converted to hexadecimal notation in the style
516 .Sm off
517 .Oo \- Oc Li 0x Ar h Li \&. Ar hhhp Oo \(+- Oc Ar d ,
518 .Sm on
519 where the number of digits after the hexadecimal-point character
520 is equal to the precision specification.
521 If the precision is missing, it is taken as enough to represent
522 the floating-point number exactly, and no rounding occurs.
523 If the precision is zero, no hexadecimal-point character appears.
524 The
525 .Cm p
526 is a literal character
527 .Ql p ,
528 and the exponent consists of a positive or negative sign
529 followed by a decimal number representing an exponent of 2.
530 The
531 .Cm A
532 conversion uses the prefix
533 .Dq Li 0X
534 (rather than
535 .Dq Li 0x ) ,
536 the letters
537 .Dq Li ABCDEF
538 (rather than
539 .Dq Li abcdef )
540 to represent the hex digits, and the letter
541 .Ql P
542 (rather than
543 .Ql p )
544 to separate the mantissa and exponent.
545 .Pp
546 Note that there may be multiple valid ways to represent floating-point
547 numbers in this hexadecimal format.
548 For example,
549 .Li 0x1.92p+1 , 0x3.24p+0 , 0x6.48p-1 ,
550 and
551 .Li 0xc.9p-2
552 are all equivalent.
553 .Fx 8.0
554 and later always prints finite non-zero numbers using
555 .Ql 1
556 as the digit before the hexadecimal point.
557 Zeroes are always represented with a mantissa of 0 (preceded by a
558 .Ql -
559 if appropriate) and an exponent of
560 .Li +0 .
561 .It Cm C
562 Treated as
563 .Cm c
564 with the
565 .Cm l
566 (ell) modifier.
567 .It Cm c
568 The
569 .Vt int
570 argument is converted to an
571 .Vt "unsigned char" ,
572 and the resulting character is written.
573 .Pp
574 If the
575 .Cm l
576 (ell) modifier is used, the
577 .Vt wint_t
578 argument shall be converted to a
579 .Vt wchar_t ,
580 and the (potentially multi-byte) sequence representing the
581 single wide character is written, including any shift sequences.
582 If a shift sequence is used, the shift state is also restored
583 to the original state after the character.
584 .It Cm S
585 Treated as
586 .Cm s
587 with the
588 .Cm l
589 (ell) modifier.
590 .It Cm s
591 The
592 .Vt "char *"
593 argument is expected to be a pointer to an array of character type (pointer
594 to a string).
595 Characters from the array are written up to (but not including)
596 a terminating
597 .Dv NUL
598 character;
599 if a precision is specified, no more than the number specified are
600 written.
601 If a precision is given, no null character
602 need be present; if the precision is not specified, or is greater than
603 the size of the array, the array must contain a terminating
604 .Dv NUL
605 character.
606 .Pp
607 If the
608 .Cm l
609 (ell) modifier is used, the
610 .Vt "wchar_t *"
611 argument is expected to be a pointer to an array of wide characters
612 (pointer to a wide string).
613 For each wide character in the string, the (potentially multi-byte)
614 sequence representing the
615 wide character is written, including any shift sequences.
616 If any shift sequence is used, the shift state is also restored
617 to the original state after the string.
618 Wide characters from the array are written up to (but not including)
619 a terminating wide
620 .Dv NUL
621 character;
622 if a precision is specified, no more than the number of bytes specified are
623 written (including shift sequences).
624 Partial characters are never written.
625 If a precision is given, no null character
626 need be present; if the precision is not specified, or is greater than
627 the number of bytes required to render the multibyte representation of
628 the string, the array must contain a terminating wide
629 .Dv NUL
630 character.
631 .It Cm p
632 The
633 .Vt "void *"
634 pointer argument is printed in hexadecimal (as if by
635 .Ql %#x
636 or
637 .Ql %#lx ) .
638 .It Cm n
639 The number of characters written so far is stored into the
640 integer indicated by the
641 .Vt "int *"
642 (or variant) pointer argument.
643 No argument is converted.
644 .It Cm %
645 A
646 .Ql %
647 is written.
648 No argument is converted.
649 The complete conversion specification
650 is
651 .Ql %% .
652 .El
653 .Pp
654 The decimal point
655 character is defined in the program's locale (category
656 .Dv LC_NUMERIC ) .
657 .Pp
658 In no case does a non-existent or small field width cause truncation of
659 a numeric field; if the result of a conversion is wider than the field
660 width, the
661 field is expanded to contain the conversion result.
662 .Sh RETURN VALUES
663 These functions return the number of characters printed
664 (not including the trailing
665 .Ql \e0
666 used to end output to strings),
667 except for
668 .Fn snprintf
669 and
670 .Fn vsnprintf ,
671 which return the number of characters that would have been printed if the
672 .Fa size
673 were unlimited
674 (again, not including the final
675 .Ql \e0 ) .
676 These functions return a negative value if an error occurs.
677 .Sh EXAMPLES
678 To print a date and time in the form
679 .Dq Li "Sunday, July 3, 10:02" ,
680 where
681 .Fa weekday
682 and
683 .Fa month
684 are pointers to strings:
685 .Bd -literal -offset indent
686 #include <stdio.h>
687 fprintf(stdout, "%s, %s %d, %.2d:%.2d\en",
688         weekday, month, day, hour, min);
689 .Ed
690 .Pp
691 To print \*(Pi
692 to five decimal places:
693 .Bd -literal -offset indent
694 #include <math.h>
695 #include <stdio.h>
696 fprintf(stdout, "pi = %.5f\en", 4 * atan(1.0));
697 .Ed
698 .Pp
699 To allocate a 128 byte string and print into it:
700 .Bd -literal -offset indent
701 #include <stdio.h>
702 #include <stdlib.h>
703 #include <stdarg.h>
704 char *newfmt(const char *fmt, ...)
705 {
706         char *p;
707         va_list ap;
708         if ((p = malloc(128)) == NULL)
709                 return (NULL);
710         va_start(ap, fmt);
711         (void) vsnprintf(p, 128, fmt, ap);
712         va_end(ap);
713         return (p);
714 }
715 .Ed
716 .Sh COMPATIBILITY
717 The conversion formats
718 .Cm \&%D , \&%O ,
719 and
720 .Cm \&%U
721 are not standard and
722 are provided only for backward compatibility.
723 The effect of padding the
724 .Cm %p
725 format with zeros (either by the
726 .Cm 0
727 flag or by specifying a precision), and the benign effect (i.e., none)
728 of the
729 .Cm #
730 flag on
731 .Cm %n
732 and
733 .Cm %p
734 conversions, as well as other
735 nonsensical combinations such as
736 .Cm %Ld ,
737 are not standard; such combinations
738 should be avoided.
739 .Sh ERRORS
740 In addition to the errors documented for the
741 .Xr write 2
742 system call, the
743 .Fn printf
744 family of functions may fail if:
745 .Bl -tag -width Er
746 .It Bq Er EILSEQ
747 An invalid wide character code was encountered.
748 .It Bq Er ENOMEM
749 Insufficient storage space is available.
750 .It Bq Er EOVERFLOW
751 The
752 .Fa size
753 argument exceeds
754 .Dv INT_MAX + 1 ,
755 or the return value would be too large to be represented by an
756 .Vt int .
757 .El
758 .Sh SEE ALSO
759 .Xr printf 1 ,
760 .Xr fmtcheck 3 ,
761 .Xr scanf 3 ,
762 .Xr setlocale 3 ,
763 .Xr wprintf 3
764 .Sh STANDARDS
765 Subject to the caveats noted in the
766 .Sx BUGS
767 section below, the
768 .Fn fprintf ,
769 .Fn printf ,
770 .Fn sprintf ,
771 .Fn vprintf ,
772 .Fn vfprintf ,
773 and
774 .Fn vsprintf
775 functions
776 conform to
777 .St -ansiC
778 and
779 .St -isoC-99 .
780 With the same reservation, the
781 .Fn snprintf
782 and
783 .Fn vsnprintf
784 functions conform to
785 .St -isoC-99 ,
786 while
787 .Fn dprintf
788 and
789 .Fn vdprintf
790 conform to
791 .St -p1003.1-2008 .
792 .Sh HISTORY
793 The functions
794 .Fn asprintf
795 and
796 .Fn vasprintf
797 first appeared in the
798 .Tn GNU C
799 library.
800 These were implemented by
801 .An Peter Wemm Aq Mt peter@FreeBSD.org
802 in
803 .Fx 2.2 ,
804 but were later replaced with a different implementation
805 from
806 .Ox 2.3
807 by
808 .An Todd C. Miller Aq Mt Todd.Miller@courtesan.com .
809 The
810 .Fn dprintf
811 and
812 .Fn vdprintf
813 functions were added in
814 .Fx 8.0 .
815 .Sh BUGS
816 The
817 .Nm
818 family of functions do not correctly handle multibyte characters in the
819 .Fa format
820 argument.
821 .Sh SECURITY CONSIDERATIONS
822 The
823 .Fn sprintf
824 and
825 .Fn vsprintf
826 functions are easily misused in a manner which enables malicious users
827 to arbitrarily change a running program's functionality through
828 a buffer overflow attack.
829 Because
830 .Fn sprintf
831 and
832 .Fn vsprintf
833 assume an infinitely long string,
834 callers must be careful not to overflow the actual space;
835 this is often hard to assure.
836 For safety, programmers should use the
837 .Fn snprintf
838 interface instead.
839 For example:
840 .Bd -literal
841 void
842 foo(const char *arbitrary_string, const char *and_another)
843 {
844         char onstack[8];
845
846 #ifdef BAD
847         /*
848          * This first sprintf is bad behavior.  Do not use sprintf!
849          */
850         sprintf(onstack, "%s, %s", arbitrary_string, and_another);
851 #else
852         /*
853          * The following two lines demonstrate better use of
854          * snprintf().
855          */
856         snprintf(onstack, sizeof(onstack), "%s, %s", arbitrary_string,
857             and_another);
858 #endif
859 }
860 .Ed
861 .Pp
862 The
863 .Fn printf
864 and
865 .Fn sprintf
866 family of functions are also easily misused in a manner
867 allowing malicious users to arbitrarily change a running program's
868 functionality by either causing the program
869 to print potentially sensitive data
870 .Dq "left on the stack" ,
871 or causing it to generate a memory fault or bus error
872 by dereferencing an invalid pointer.
873 .Pp
874 .Cm %n
875 can be used to write arbitrary data to potentially carefully-selected
876 addresses.
877 Programmers are therefore strongly advised to never pass untrusted strings
878 as the
879 .Fa format
880 argument, as an attacker can put format specifiers in the string
881 to mangle your stack,
882 leading to a possible security hole.
883 This holds true even if the string was built using a function like
884 .Fn snprintf ,
885 as the resulting string may still contain user-supplied conversion specifiers
886 for later interpolation by
887 .Fn printf .
888 .Pp
889 Always use the proper secure idiom:
890 .Pp
891 .Dl "snprintf(buffer, sizeof(buffer), \*q%s\*q, string);"