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