1 .\" $NetBSD: fmtcheck.3,v 1.7 2009/03/09 19:24:26 joerg Exp $
3 .\" Copyright (c) 2000 The NetBSD Foundation, Inc.
4 .\" All rights reserved.
6 .\" This file was contributed to The NetBSD Foundation by Allen Briggs.
8 .\" Redistribution and use in source and binary forms, with or without
9 .\" modification, are permitted provided that the following conditions
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.
17 .\" THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
18 .\" ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
19 .\" TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
20 .\" PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
21 .\" BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
22 .\" CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23 .\" SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24 .\" INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
25 .\" CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26 .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27 .\" POSSIBILITY OF SUCH DAMAGE.
34 .Nd sanitizes user-supplied printf(3)-style format string
40 .Fn fmtcheck "const char *fmt_suspect" "const char *fmt_default"
50 will consume the same argument types as
54 is a valid format string.
58 family of functions can not verify the types of arguments that they are
62 it is useful or necessary to use a user-supplied format string with no
63 guarantee that the format string matches the specified parameters.
67 function was designed to be used in these cases, as in:
68 .Bd -literal -offset indent
69 printf(fmtcheck(user_format, standard_format), arg1, arg2);
72 In the check, field widths, fillers, precisions, etc. are ignored (unless
73 the field width or precision is an asterisk
75 instead of a digit string).
76 Also, any text other than the format specifiers is completely ignored.
78 Note that the formats may be quite different as long as they accept the
80 For example, "%p %o %30s %#llx %-10.*e %n" is
81 compatible with "This number %lu %d%% and string %s has %qd numbers
82 and %.*g floats (%n)."
83 However, "%o" is not equivalent to "%lx" because
84 the first requires an integer and the second requires a long.
88 is a valid format and consumes the same argument types as
94 Otherwise, it will return