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