]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - lib/libc/gen/fmtcheck.3
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / lib / libc / gen / fmtcheck.3
1 .\" Copyright (c) 2000 The NetBSD Foundation, Inc.
2 .\" All rights reserved.
3 .\"
4 .\" This file was contributed to The NetBSD Foundation by Allen Briggs.
5 .\"
6 .\" Redistribution and use in source and binary forms, with or without
7 .\" modification, are permitted provided that the following conditions
8 .\" are met:
9 .\" 1. Redistributions of source code must retain the above copyright
10 .\"    notice, this list of conditions and the following disclaimer.
11 .\" 2. Redistributions in binary form must reproduce the above copyright
12 .\"    notice, this list of conditions and the following disclaimer in the
13 .\"    documentation and/or other materials provided with the distribution.
14 .\"
15 .\" THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
16 .\" ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
17 .\" TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
18 .\" PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
19 .\" BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
20 .\" CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
21 .\" SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
22 .\" INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
23 .\" CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
24 .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
25 .\" POSSIBILITY OF SUCH DAMAGE.
26 .\"
27 .\" $FreeBSD$
28 .Dd October 16, 2002
29 .Dt FMTCHECK 3
30 .Os
31 .Sh NAME
32 .Nm fmtcheck
33 .Nd sanitizes user-supplied
34 .Xr printf 3 Ns -style
35 format string
36 .Sh LIBRARY
37 .Lb libc
38 .Sh SYNOPSIS
39 .In stdio.h
40 .Ft const char *
41 .Fn fmtcheck "const char *fmt_suspect" "const char *fmt_default"
42 .Sh DESCRIPTION
43 The
44 .Fn fmtcheck
45 scans
46 .Fa fmt_suspect
47 and
48 .Fa fmt_default
49 to determine if
50 .Fa fmt_suspect
51 will consume the same argument types as
52 .Fa fmt_default
53 and to ensure that
54 .Fa fmt_suspect
55 is a valid format string.
56 .Pp
57 The
58 .Xr printf 3
59 family of functions cannot verify the types of arguments that they are
60 passed at run-time.
61 In some cases, like
62 .Xr catgets 3 ,
63 it is useful or necessary to use a user-supplied format string with no
64 guarantee that the format string matches the specified arguments.
65 .Pp
66 The
67 .Fn fmtcheck
68 was designed to be used in these cases, as in:
69 .Bd -literal -offset indent
70 printf(fmtcheck(user_format, standard_format), arg1, arg2);
71 .Ed
72 .Pp
73 In the check, field widths, fillers, precisions, etc.\& are ignored (unless
74 the field width or precision is an asterisk
75 .Ql *
76 instead of a digit string).
77 Also, any text other than the format specifiers
78 is completely ignored.
79 .Sh RETURN VALUES
80 If
81 .Fa fmt_suspect
82 is a valid format and consumes the same argument types as
83 .Fa fmt_default ,
84 then the
85 .Fn fmtcheck
86 will return
87 .Fa fmt_suspect .
88 Otherwise, it will return
89 .Fa fmt_default .
90 .Sh SEE ALSO
91 .Xr printf 3
92 .Sh BUGS
93 The
94 .Fn fmtcheck
95 function does not recognize positional parameters.
96 .Sh SECURITY CONSIDERATIONS
97 Note that the formats may be quite different as long as they accept the
98 same arguments.
99 For example,
100 .Qq Li "%p %o %30s %#llx %-10.*e %n"
101 is compatible with
102 .Qq Li "This number %lu %d%% and string %s has %qd numbers and %.*g floats (%n)" .
103 However,
104 .Qq Li %o
105 is not equivalent to
106 .Qq Li %lx
107 because
108 the first requires an integer and the second requires a long.