blob: 166e8888e2cfc403a2791667cd846ea372b9c450 [file] [log] [blame]
Daniel Dunbar8fbe78f2009-12-15 20:14:24 +00001// RUN: %clang_cc1 -fsyntax-only -verify -Wformat-nonliteral %s
Chris Lattnerb87b1b32007-08-10 20:18:51 +00002
Chris Lattnerb87b1b32007-08-10 20:18:51 +00003#include <stdarg.h>
Daniel Dunbarfeedba62009-11-17 08:57:36 +00004typedef __typeof(sizeof(int)) size_t;
5typedef struct _FILE FILE;
6int fprintf(FILE *, const char *restrict, ...);
7int printf(const char *restrict, ...);
8int snprintf(char *restrict, size_t, const char *restrict, ...);
9int sprintf(char *restrict, const char *restrict, ...);
10int vasprintf(char **, const char *, va_list);
Chris Lattnerf9895c42010-01-09 20:43:19 +000011int asprintf(char **, const char *, ...);
Daniel Dunbarfeedba62009-11-17 08:57:36 +000012int vfprintf(FILE *, const char *restrict, va_list);
13int vprintf(const char *restrict, va_list);
14int vsnprintf(char *, size_t, const char *, va_list);
15int vsprintf(char *restrict, const char *restrict, va_list);
Chris Lattnerb87b1b32007-08-10 20:18:51 +000016
Ted Kremenek3fbeaea2007-12-17 19:03:13 +000017char * global_fmt;
18
Chris Lattnerb87b1b32007-08-10 20:18:51 +000019void check_string_literal( FILE* fp, const char* s, char *buf, ... ) {
20
21 char * b;
22 va_list ap;
23 va_start(ap,buf);
24
25 printf(s); // expected-warning {{format string is not a string literal}}
Ted Kremenek3fbeaea2007-12-17 19:03:13 +000026 vprintf(s,ap); // // no-warning
Chris Lattnerb87b1b32007-08-10 20:18:51 +000027 fprintf(fp,s); // expected-warning {{format string is not a string literal}}
Ted Kremenek3fbeaea2007-12-17 19:03:13 +000028 vfprintf(fp,s,ap); // no-warning
Chris Lattnerb87b1b32007-08-10 20:18:51 +000029 asprintf(&b,s); // expected-warning {{format string is not a string lit}}
Ted Kremenek3fbeaea2007-12-17 19:03:13 +000030 vasprintf(&b,s,ap); // no-warning
Chris Lattnerb87b1b32007-08-10 20:18:51 +000031 sprintf(buf,s); // expected-warning {{format string is not a string literal}}
32 snprintf(buf,2,s); // expected-warning {{format string is not a string lit}}
Daniel Dunbardd9b2d12008-10-02 18:44:07 +000033 __builtin___sprintf_chk(buf,0,-1,s); // expected-warning {{format string is not a string literal}}
34 __builtin___snprintf_chk(buf,2,0,-1,s); // expected-warning {{format string is not a string lit}}
Ted Kremenek3fbeaea2007-12-17 19:03:13 +000035 vsprintf(buf,s,ap); // no-warning
36 vsnprintf(buf,2,s,ap); // no-warning
37 vsnprintf(buf,2,global_fmt,ap); // expected-warning {{format string is not a string literal}}
Daniel Dunbardd9b2d12008-10-02 18:44:07 +000038 __builtin___vsnprintf_chk(buf,2,0,-1,s,ap); // no-warning
39 __builtin___vsnprintf_chk(buf,2,0,-1,global_fmt,ap); // expected-warning {{format string is not a string literal}}
Chris Lattnerdf18c6a2009-02-18 18:25:31 +000040
Chris Lattnerf638b972009-02-18 18:34:12 +000041 // rdar://6079877
42 printf("abc"
43 "%*d", (unsigned) 1, 1); // expected-warning {{field width should have type 'int'}}
44 printf("abc\
45def"
46 "%*d", (unsigned) 1, 1); // expected-warning {{field width should have type 'int'}}
47
Chris Lattnerb87b1b32007-08-10 20:18:51 +000048}
49
Ted Kremenek6dfeb552009-01-12 23:09:09 +000050void check_conditional_literal(const char* s, int i) {
51 printf(i == 1 ? "yes" : "no"); // no-warning
52 printf(i == 0 ? (i == 1 ? "yes" : "no") : "dont know"); // no-warning
Ted Kremenek94a5f6f2009-01-12 23:09:55 +000053 printf(i == 0 ? (i == 1 ? s : "no") : "dont know"); // expected-warning{{format string is not a string literal}}
Ted Kremenek8d9842d2010-01-29 20:55:36 +000054 printf("yes" ?: "no %d", 1); // expected-warning{{more data arguments than format specifiers}}
Ted Kremenek6dfeb552009-01-12 23:09:09 +000055}
56
Ted Kremeneke68f1aa2007-08-14 17:39:48 +000057void check_writeback_specifier()
58{
59 int x;
60 char *b;
61
62 printf("%n",&x); // expected-warning {{'%n' in format string discouraged}}
63 sprintf(b,"%d%%%n",1, &x); // expected-warning {{'%n' in format string dis}}
64}
65
66void check_invalid_specifier(FILE* fp, char *buf)
67{
Ted Kremenek8d9842d2010-01-29 20:55:36 +000068 printf("%s%lb%d","unix",10,20); // expected-warning {{invalid conversion specifier 'b'}}
69 fprintf(fp,"%%%l"); // expected-warning {{incomplete format specifier}}
Ted Kremeneke68f1aa2007-08-14 17:39:48 +000070 sprintf(buf,"%%%%%ld%d%d", 1, 2, 3); // no-warning
Ted Kremenek8d9842d2010-01-29 20:55:36 +000071 snprintf(buf, 2, "%%%%%ld%;%d", 1, 2, 3); // expected-warning {{invalid conversion specifier ';'}}
Ted Kremeneke68f1aa2007-08-14 17:39:48 +000072}
73
74void check_null_char_string(char* b)
75{
76 printf("\0this is bogus%d",1); // expected-warning {{string contains '\0'}}
77 snprintf(b,10,"%%%%%d\0%d",1,2); // expected-warning {{string contains '\0'}}
78 printf("%\0d",1); // expected-warning {{string contains '\0'}}
79}
80
Anders Carlsson431ef632007-10-12 17:48:41 +000081void check_empty_format_string(char* buf, ...)
Ted Kremeneke68f1aa2007-08-14 17:39:48 +000082{
83 va_list ap;
84 va_start(ap,buf);
85 vprintf("",ap); // expected-warning {{format string is empty}}
86 sprintf(buf,""); // expected-warning {{format string is empty}}
87}
88
Anders Carlsson431ef632007-10-12 17:48:41 +000089void check_wide_string(char* b, ...)
Ted Kremeneke68f1aa2007-08-14 17:39:48 +000090{
Ted Kremeneke68f1aa2007-08-14 17:39:48 +000091 va_list ap;
92 va_start(ap,b);
93
Daniel Dunbar81f7f292008-08-05 00:07:51 +000094 printf(L"foo %d",2); // expected-warning {{incompatible pointer types}}, expected-warning {{should not be a wide string}}
John Thompsone413e882009-10-29 00:10:42 +000095 vsprintf(b,L"bar %d",ap); // expected-warning {{incompatible pointer types}}, expected-warning {{should not be a wide string}}
Ted Kremeneke68f1aa2007-08-14 17:39:48 +000096}
Ted Kremenek41362ce2007-10-12 20:51:52 +000097
98void check_asterisk_precision_width(int x) {
99 printf("%*d"); // expected-warning {{'*' specified field width is missing a matching 'int' argument}}
100 printf("%.*d"); // expected-warning {{'.*' specified field precision is missing a matching 'int' argument}}
101 printf("%*d",12,x); // no-warning
102 printf("%*d","foo",x); // expected-warning {{field width should have type 'int', but argument has type 'char *'}}
103 printf("%.*d","foo",x); // expected-warning {{field precision should have type 'int', but argument has type 'char *'}}
Daniel Dunbar81f7f292008-08-05 00:07:51 +0000104}
Douglas Gregore711f702009-02-14 18:57:46 +0000105
106void __attribute__((format(printf,1,3))) myprintf(const char*, int blah, ...);
107
108void test_myprintf() {
109 myprintf("%d", 17, 18); // okay
110}
Ted Kremenekdfd72c22009-03-20 21:35:28 +0000111
112void test_constant_bindings(void) {
113 const char * const s1 = "hello";
114 const char s2[] = "hello";
115 const char *s3 = "hello";
116 char * const s4 = "hello";
117 extern const char s5[];
118
119 printf(s1); // no-warning
120 printf(s2); // no-warning
121 printf(s3); // expected-warning{{not a string literal}}
122 printf(s4); // expected-warning{{not a string literal}}
123 printf(s5); // expected-warning{{not a string literal}}
124}
Chris Lattnercc5d1c22009-04-29 04:59:47 +0000125
126
127// Test what happens when -Wformat-security only.
128#pragma GCC diagnostic ignored "-Wformat-nonliteral"
129#pragma GCC diagnostic warning "-Wformat-security"
130
131void test9(char *P) {
132 int x;
133 printf(P); // expected-warning {{format string is not a string literal (potentially insecure)}}
134 printf(P, 42);
135 printf("%n", &x); // expected-warning {{use of '%n' in format string discouraged }}
136}
Ted Kremenek4554f9b2009-05-13 16:06:05 +0000137
138void torture(va_list v8) {
139 vprintf ("%*.*d", v8); // no-warning
140}
141
Ted Kremenek8d9842d2010-01-29 20:55:36 +0000142void test10(int x, float f, int i) {
143 printf("%@", 12); // expected-warning{{invalid conversion specifier '@'}}
144 printf("\0"); // expected-warning{{format string contains '\0' within the string body}}
145 printf("xs\0"); // expected-warning{{format string contains '\0' within the string body}}
146 printf("%*d\n"); // expected-warning{{'*' specified field width is missing a matching 'int' argument}}
147 printf("%*.*d\n", x); // expected-warning{{'.*' specified field precision is missing a matching 'int' argument}}
148 printf("%*d\n", f, x); // expected-warning{{field width should have type 'int', but argument has type 'double'}}
149 printf("%*.*d\n", x, f, x); // expected-warning{{field precision should have type 'int', but argument has type 'double'}}
150 printf("%**\n"); // expected-warning{{invalid conversion specifier '*'}}
151 printf("%n", &i); // expected-warning{{use of '%n' in format string discouraged (potentially insecure)}}
152 printf("%d%d\n", x); // expected-warning{{more '%' conversions than data arguments}}
153 printf("%d\n", x, x); // expected-warning{{more data arguments than format specifiers}}
154 printf("%W%d%Z\n", x, x, x); // expected-warning{{invalid conversion specifier 'W'}} expected-warning{{invalid conversion specifier 'Z'}}
155 printf("%"); // expected-warning{{incomplete format specifier}}
156 printf("%.d", x); // no-warning
157 printf("%.", x); // expected-warning{{incomplete format specifier}}
158}
159