Ted Kremenek | 033a07e | 2011-08-03 23:14:55 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 -analyze -analyzer-checker=core,experimental.unix.CString,experimental.deadcode.UnreachableCode -analyzer-store=region -Wno-null-dereference -verify %s |
| 2 | // RUN: %clang_cc1 -analyze -DUSE_BUILTINS -analyzer-checker=core,experimental.unix.CString,experimental.deadcode.UnreachableCode -analyzer-store=region -Wno-null-dereference -verify %s |
| 3 | // RUN: %clang_cc1 -analyze -DVARIANT -analyzer-checker=core,experimental.unix.CString,experimental.deadcode.UnreachableCode -analyzer-store=region -Wno-null-dereference -verify %s |
| 4 | // RUN: %clang_cc1 -analyze -DUSE_BUILTINS -DVARIANT -analyzer-checker=core,experimental.unix.CString,experimental.deadcode.UnreachableCode -analyzer-store=region -Wno-null-dereference -verify %s |
Jordy Rose | 19c5dd1 | 2010-07-27 01:37:31 +0000 | [diff] [blame] | 5 | |
| 6 | //===----------------------------------------------------------------------=== |
| 7 | // Declarations |
| 8 | //===----------------------------------------------------------------------=== |
| 9 | |
| 10 | // Some functions are so similar to each other that they follow the same code |
| 11 | // path, such as memcpy and __memcpy_chk, or memcmp and bcmp. If VARIANT is |
| 12 | // defined, make sure to use the variants instead to make sure they are still |
| 13 | // checked by the analyzer. |
| 14 | |
| 15 | // Some functions are implemented as builtins. These should be #defined as |
| 16 | // BUILTIN(f), which will prepend "__builtin_" if USE_BUILTINS is defined. |
| 17 | |
Chris Lattner | fc8f0e1 | 2011-04-15 05:22:18 +0000 | [diff] [blame] | 18 | // Functions that have variants and are also available as builtins should be |
Jordy Rose | 19c5dd1 | 2010-07-27 01:37:31 +0000 | [diff] [blame] | 19 | // declared carefully! See memcpy() for an example. |
| 20 | |
| 21 | #ifdef USE_BUILTINS |
| 22 | # define BUILTIN(f) __builtin_ ## f |
| 23 | #else /* USE_BUILTINS */ |
| 24 | # define BUILTIN(f) f |
| 25 | #endif /* USE_BUILTINS */ |
| 26 | |
Jordy Rose | e64f311 | 2010-08-16 07:51:42 +0000 | [diff] [blame] | 27 | #define NULL 0 |
Jordy Rose | 19c5dd1 | 2010-07-27 01:37:31 +0000 | [diff] [blame] | 28 | typedef typeof(sizeof(int)) size_t; |
| 29 | |
| 30 | //===----------------------------------------------------------------------=== |
| 31 | // strlen() |
| 32 | //===----------------------------------------------------------------------=== |
| 33 | |
| 34 | #define strlen BUILTIN(strlen) |
| 35 | size_t strlen(const char *s); |
| 36 | |
| 37 | void strlen_constant0() { |
| 38 | if (strlen("123") != 3) |
Jordy Rose | a526154 | 2010-08-14 21:02:52 +0000 | [diff] [blame] | 39 | (void)*(char*)0; // no-warning |
Jordy Rose | 19c5dd1 | 2010-07-27 01:37:31 +0000 | [diff] [blame] | 40 | } |
| 41 | |
| 42 | void strlen_constant1() { |
| 43 | const char *a = "123"; |
| 44 | if (strlen(a) != 3) |
Jordy Rose | a526154 | 2010-08-14 21:02:52 +0000 | [diff] [blame] | 45 | (void)*(char*)0; // no-warning |
Jordy Rose | 19c5dd1 | 2010-07-27 01:37:31 +0000 | [diff] [blame] | 46 | } |
| 47 | |
| 48 | void strlen_constant2(char x) { |
| 49 | char a[] = "123"; |
Jordy Rose | a526154 | 2010-08-14 21:02:52 +0000 | [diff] [blame] | 50 | if (strlen(a) != 3) |
| 51 | (void)*(char*)0; // no-warning |
Jordy Rose | 19c5dd1 | 2010-07-27 01:37:31 +0000 | [diff] [blame] | 52 | a[0] = x; |
| 53 | if (strlen(a) != 3) |
| 54 | (void)*(char*)0; // expected-warning{{null}} |
| 55 | } |
| 56 | |
| 57 | size_t strlen_null() { |
Jordy Rose | 9e49d9f | 2011-06-20 02:06:40 +0000 | [diff] [blame] | 58 | return strlen(0); // expected-warning{{Null pointer argument in call to string length function}} |
Jordy Rose | 19c5dd1 | 2010-07-27 01:37:31 +0000 | [diff] [blame] | 59 | } |
| 60 | |
| 61 | size_t strlen_fn() { |
Jordy Rose | 9e49d9f | 2011-06-20 02:06:40 +0000 | [diff] [blame] | 62 | return strlen((char*)&strlen_fn); // expected-warning{{Argument to string length function is the address of the function 'strlen_fn', which is not a null-terminated string}} |
Jordy Rose | 19c5dd1 | 2010-07-27 01:37:31 +0000 | [diff] [blame] | 63 | } |
| 64 | |
| 65 | size_t strlen_nonloc() { |
| 66 | label: |
Jordy Rose | 9e49d9f | 2011-06-20 02:06:40 +0000 | [diff] [blame] | 67 | return strlen((char*)&&label); // expected-warning{{Argument to string length function is the address of the label 'label', which is not a null-terminated string}} |
Jordy Rose | 19c5dd1 | 2010-07-27 01:37:31 +0000 | [diff] [blame] | 68 | } |
Jordy Rose | a526154 | 2010-08-14 21:02:52 +0000 | [diff] [blame] | 69 | |
| 70 | void strlen_subregion() { |
Carl Norum | e224ba7 | 2011-03-07 22:57:45 +0000 | [diff] [blame] | 71 | struct two_strings { char a[2], b[2]; }; |
Jordy Rose | a526154 | 2010-08-14 21:02:52 +0000 | [diff] [blame] | 72 | extern void use_two_strings(struct two_strings *); |
| 73 | |
| 74 | struct two_strings z; |
| 75 | use_two_strings(&z); |
| 76 | |
| 77 | size_t a = strlen(z.a); |
| 78 | z.b[0] = 5; |
| 79 | size_t b = strlen(z.a); |
| 80 | if (a == 0 && b != 0) |
| 81 | (void)*(char*)0; // expected-warning{{never executed}} |
| 82 | |
| 83 | use_two_strings(&z); |
| 84 | |
| 85 | size_t c = strlen(z.a); |
| 86 | if (a == 0 && c != 0) |
| 87 | (void)*(char*)0; // expected-warning{{null}} |
| 88 | } |
| 89 | |
| 90 | extern void use_string(char *); |
| 91 | void strlen_argument(char *x) { |
| 92 | size_t a = strlen(x); |
| 93 | size_t b = strlen(x); |
| 94 | if (a == 0 && b != 0) |
| 95 | (void)*(char*)0; // expected-warning{{never executed}} |
| 96 | |
| 97 | use_string(x); |
| 98 | |
| 99 | size_t c = strlen(x); |
| 100 | if (a == 0 && c != 0) |
| 101 | (void)*(char*)0; // expected-warning{{null}} |
| 102 | } |
| 103 | |
| 104 | extern char global_str[]; |
| 105 | void strlen_global() { |
| 106 | size_t a = strlen(global_str); |
| 107 | size_t b = strlen(global_str); |
| 108 | if (a == 0 && b != 0) |
| 109 | (void)*(char*)0; // expected-warning{{never executed}} |
| 110 | |
| 111 | // Call a function with unknown effects, which should invalidate globals. |
| 112 | use_string(0); |
| 113 | |
| 114 | size_t c = strlen(global_str); |
| 115 | if (a == 0 && c != 0) |
| 116 | (void)*(char*)0; // expected-warning{{null}} |
| 117 | } |
| 118 | |
| 119 | void strlen_indirect(char *x) { |
| 120 | size_t a = strlen(x); |
| 121 | char *p = x; |
| 122 | char **p2 = &p; |
| 123 | size_t b = strlen(x); |
| 124 | if (a == 0 && b != 0) |
| 125 | (void)*(char*)0; // expected-warning{{never executed}} |
| 126 | |
| 127 | extern void use_string_ptr(char*const*); |
| 128 | use_string_ptr(p2); |
| 129 | |
| 130 | size_t c = strlen(x); |
| 131 | if (a == 0 && c != 0) |
| 132 | (void)*(char*)0; // expected-warning{{null}} |
| 133 | } |
| 134 | |
| 135 | void strlen_liveness(const char *x) { |
| 136 | if (strlen(x) < 5) |
| 137 | return; |
| 138 | if (strlen(x) < 5) |
| 139 | (void)*(char*)0; // no-warning |
| 140 | } |
Jordy Rose | e64f311 | 2010-08-16 07:51:42 +0000 | [diff] [blame] | 141 | |
| 142 | //===----------------------------------------------------------------------=== |
Ted Kremenek | be4242c | 2011-02-22 04:55:05 +0000 | [diff] [blame] | 143 | // strnlen() |
| 144 | //===----------------------------------------------------------------------=== |
| 145 | |
Ted Kremenek | be4242c | 2011-02-22 04:55:05 +0000 | [diff] [blame] | 146 | size_t strnlen(const char *s, size_t maxlen); |
| 147 | |
| 148 | void strnlen_constant0() { |
| 149 | if (strnlen("123", 10) != 3) |
Jordy Rose | 0fa6bf7 | 2011-06-28 05:34:40 +0000 | [diff] [blame] | 150 | (void)*(char*)0; // expected-warning{{never executed}} |
Ted Kremenek | be4242c | 2011-02-22 04:55:05 +0000 | [diff] [blame] | 151 | } |
| 152 | |
| 153 | void strnlen_constant1() { |
| 154 | const char *a = "123"; |
| 155 | if (strnlen(a, 10) != 3) |
Jordy Rose | 0fa6bf7 | 2011-06-28 05:34:40 +0000 | [diff] [blame] | 156 | (void)*(char*)0; // expected-warning{{never executed}} |
Ted Kremenek | be4242c | 2011-02-22 04:55:05 +0000 | [diff] [blame] | 157 | } |
| 158 | |
| 159 | void strnlen_constant2(char x) { |
| 160 | char a[] = "123"; |
| 161 | if (strnlen(a, 10) != 3) |
Jordy Rose | 0fa6bf7 | 2011-06-28 05:34:40 +0000 | [diff] [blame] | 162 | (void)*(char*)0; // expected-warning{{never executed}} |
Ted Kremenek | be4242c | 2011-02-22 04:55:05 +0000 | [diff] [blame] | 163 | a[0] = x; |
| 164 | if (strnlen(a, 10) != 3) |
| 165 | (void)*(char*)0; // expected-warning{{null}} |
| 166 | } |
| 167 | |
| 168 | void strnlen_constant4() { |
| 169 | if (strnlen("123456", 3) != 3) |
Jordy Rose | 0fa6bf7 | 2011-06-28 05:34:40 +0000 | [diff] [blame] | 170 | (void)*(char*)0; // expected-warning{{never executed}} |
Ted Kremenek | be4242c | 2011-02-22 04:55:05 +0000 | [diff] [blame] | 171 | } |
| 172 | |
| 173 | void strnlen_constant5() { |
| 174 | const char *a = "123456"; |
| 175 | if (strnlen(a, 3) != 3) |
Jordy Rose | 0fa6bf7 | 2011-06-28 05:34:40 +0000 | [diff] [blame] | 176 | (void)*(char*)0; // expected-warning{{never executed}} |
Ted Kremenek | be4242c | 2011-02-22 04:55:05 +0000 | [diff] [blame] | 177 | } |
| 178 | |
| 179 | void strnlen_constant6(char x) { |
| 180 | char a[] = "123456"; |
| 181 | if (strnlen(a, 3) != 3) |
Jordy Rose | 0fa6bf7 | 2011-06-28 05:34:40 +0000 | [diff] [blame] | 182 | (void)*(char*)0; // expected-warning{{never executed}} |
Ted Kremenek | be4242c | 2011-02-22 04:55:05 +0000 | [diff] [blame] | 183 | a[0] = x; |
| 184 | if (strnlen(a, 3) != 3) |
| 185 | (void)*(char*)0; // expected-warning{{null}} |
| 186 | } |
| 187 | |
| 188 | size_t strnlen_null() { |
Jordy Rose | 9e49d9f | 2011-06-20 02:06:40 +0000 | [diff] [blame] | 189 | return strnlen(0, 3); // expected-warning{{Null pointer argument in call to string length function}} |
Ted Kremenek | be4242c | 2011-02-22 04:55:05 +0000 | [diff] [blame] | 190 | } |
| 191 | |
| 192 | size_t strnlen_fn() { |
Jordy Rose | 9e49d9f | 2011-06-20 02:06:40 +0000 | [diff] [blame] | 193 | return strnlen((char*)&strlen_fn, 3); // expected-warning{{Argument to string length function is the address of the function 'strlen_fn', which is not a null-terminated string}} |
Ted Kremenek | be4242c | 2011-02-22 04:55:05 +0000 | [diff] [blame] | 194 | } |
| 195 | |
| 196 | size_t strnlen_nonloc() { |
| 197 | label: |
Jordy Rose | 9e49d9f | 2011-06-20 02:06:40 +0000 | [diff] [blame] | 198 | return strnlen((char*)&&label, 3); // expected-warning{{Argument to string length function is the address of the label 'label', which is not a null-terminated string}} |
Ted Kremenek | be4242c | 2011-02-22 04:55:05 +0000 | [diff] [blame] | 199 | } |
| 200 | |
Jordy Rose | 793bff3 | 2011-06-14 01:15:31 +0000 | [diff] [blame] | 201 | void strnlen_zero() { |
| 202 | if (strnlen("abc", 0) != 0) |
Jordy Rose | 0fa6bf7 | 2011-06-28 05:34:40 +0000 | [diff] [blame] | 203 | (void)*(char*)0; // expected-warning{{never executed}} |
Jordy Rose | 793bff3 | 2011-06-14 01:15:31 +0000 | [diff] [blame] | 204 | if (strnlen(NULL, 0) != 0) // no-warning |
| 205 | (void)*(char*)0; // no-warning |
| 206 | } |
| 207 | |
| 208 | size_t strnlen_compound_literal() { |
| 209 | // This used to crash because we don't model the string lengths of |
| 210 | // compound literals. |
| 211 | return strnlen((char[]) { 'a', 'b', 0 }, 1); |
| 212 | } |
| 213 | |
| 214 | size_t strnlen_unknown_limit(float f) { |
| 215 | // This used to crash because we don't model the integer values of floats. |
| 216 | return strnlen("abc", (int)f); |
| 217 | } |
| 218 | |
| 219 | void strnlen_is_not_strlen(char *x) { |
| 220 | if (strnlen(x, 10) != strlen(x)) |
| 221 | (void)*(char*)0; // expected-warning{{null}} |
| 222 | } |
| 223 | |
| 224 | void strnlen_at_limit(char *x) { |
| 225 | size_t len = strnlen(x, 10); |
| 226 | if (len > 10) |
| 227 | (void)*(char*)0; // expected-warning{{never executed}} |
| 228 | if (len == 10) |
| 229 | (void)*(char*)0; // expected-warning{{null}} |
| 230 | } |
| 231 | |
| 232 | void strnlen_less_than_limit(char *x) { |
| 233 | size_t len = strnlen(x, 10); |
| 234 | if (len > 10) |
| 235 | (void)*(char*)0; // expected-warning{{never executed}} |
| 236 | if (len < 10) |
| 237 | (void)*(char*)0; // expected-warning{{null}} |
| 238 | } |
| 239 | |
| 240 | void strnlen_at_actual(size_t limit) { |
| 241 | size_t len = strnlen("abc", limit); |
| 242 | if (len > 3) |
| 243 | (void)*(char*)0; // expected-warning{{never executed}} |
| 244 | if (len == 3) |
| 245 | (void)*(char*)0; // expected-warning{{null}} |
| 246 | } |
| 247 | |
| 248 | void strnlen_less_than_actual(size_t limit) { |
| 249 | size_t len = strnlen("abc", limit); |
| 250 | if (len > 3) |
| 251 | (void)*(char*)0; // expected-warning{{never executed}} |
| 252 | if (len < 3) |
| 253 | (void)*(char*)0; // expected-warning{{null}} |
Ted Kremenek | be4242c | 2011-02-22 04:55:05 +0000 | [diff] [blame] | 254 | } |
| 255 | |
| 256 | //===----------------------------------------------------------------------=== |
Jordy Rose | e64f311 | 2010-08-16 07:51:42 +0000 | [diff] [blame] | 257 | // strcpy() |
| 258 | //===----------------------------------------------------------------------=== |
| 259 | |
| 260 | #ifdef VARIANT |
| 261 | |
| 262 | #define __strcpy_chk BUILTIN(__strcpy_chk) |
| 263 | char *__strcpy_chk(char *restrict s1, const char *restrict s2, size_t destlen); |
| 264 | |
| 265 | #define strcpy(a,b) __strcpy_chk(a,b,(size_t)-1) |
| 266 | |
| 267 | #else /* VARIANT */ |
| 268 | |
| 269 | #define strcpy BUILTIN(strcpy) |
| 270 | char *strcpy(char *restrict s1, const char *restrict s2); |
| 271 | |
| 272 | #endif /* VARIANT */ |
| 273 | |
| 274 | |
| 275 | void strcpy_null_dst(char *x) { |
Jordy Rose | 9e49d9f | 2011-06-20 02:06:40 +0000 | [diff] [blame] | 276 | strcpy(NULL, x); // expected-warning{{Null pointer argument in call to string copy function}} |
Jordy Rose | e64f311 | 2010-08-16 07:51:42 +0000 | [diff] [blame] | 277 | } |
| 278 | |
| 279 | void strcpy_null_src(char *x) { |
Jordy Rose | 9e49d9f | 2011-06-20 02:06:40 +0000 | [diff] [blame] | 280 | strcpy(x, NULL); // expected-warning{{Null pointer argument in call to string copy function}} |
Jordy Rose | e64f311 | 2010-08-16 07:51:42 +0000 | [diff] [blame] | 281 | } |
| 282 | |
| 283 | void strcpy_fn(char *x) { |
Jordy Rose | 9e49d9f | 2011-06-20 02:06:40 +0000 | [diff] [blame] | 284 | strcpy(x, (char*)&strcpy_fn); // expected-warning{{Argument to string copy function is the address of the function 'strcpy_fn', which is not a null-terminated string}} |
Jordy Rose | e64f311 | 2010-08-16 07:51:42 +0000 | [diff] [blame] | 285 | } |
| 286 | |
| 287 | void strcpy_effects(char *x, char *y) { |
| 288 | char a = x[0]; |
| 289 | |
| 290 | if (strcpy(x, y) != x) |
| 291 | (void)*(char*)0; // no-warning |
| 292 | |
| 293 | if (strlen(x) != strlen(y)) |
| 294 | (void)*(char*)0; // no-warning |
| 295 | |
| 296 | if (a != x[0]) |
| 297 | (void)*(char*)0; // expected-warning{{null}} |
| 298 | } |
| 299 | |
| 300 | void strcpy_overflow(char *y) { |
| 301 | char x[4]; |
| 302 | if (strlen(y) == 4) |
Jordy Rose | 9e49d9f | 2011-06-20 02:06:40 +0000 | [diff] [blame] | 303 | strcpy(x, y); // expected-warning{{String copy function overflows destination buffer}} |
Jordy Rose | e64f311 | 2010-08-16 07:51:42 +0000 | [diff] [blame] | 304 | } |
| 305 | |
| 306 | void strcpy_no_overflow(char *y) { |
| 307 | char x[4]; |
| 308 | if (strlen(y) == 3) |
| 309 | strcpy(x, y); // no-warning |
| 310 | } |
| 311 | |
| 312 | //===----------------------------------------------------------------------=== |
| 313 | // stpcpy() |
| 314 | //===----------------------------------------------------------------------=== |
| 315 | |
| 316 | #ifdef VARIANT |
| 317 | |
| 318 | #define __stpcpy_chk BUILTIN(__stpcpy_chk) |
| 319 | char *__stpcpy_chk(char *restrict s1, const char *restrict s2, size_t destlen); |
| 320 | |
| 321 | #define stpcpy(a,b) __stpcpy_chk(a,b,(size_t)-1) |
| 322 | |
| 323 | #else /* VARIANT */ |
| 324 | |
| 325 | #define stpcpy BUILTIN(stpcpy) |
| 326 | char *stpcpy(char *restrict s1, const char *restrict s2); |
| 327 | |
| 328 | #endif /* VARIANT */ |
| 329 | |
| 330 | |
| 331 | void stpcpy_effect(char *x, char *y) { |
| 332 | char a = x[0]; |
| 333 | |
| 334 | if (stpcpy(x, y) != &x[strlen(y)]) |
| 335 | (void)*(char*)0; // no-warning |
| 336 | |
| 337 | if (strlen(x) != strlen(y)) |
| 338 | (void)*(char*)0; // no-warning |
| 339 | |
| 340 | if (a != x[0]) |
| 341 | (void)*(char*)0; // expected-warning{{null}} |
| 342 | } |
| 343 | |
| 344 | void stpcpy_overflow(char *y) { |
| 345 | char x[4]; |
| 346 | if (strlen(y) == 4) |
Jordy Rose | 9e49d9f | 2011-06-20 02:06:40 +0000 | [diff] [blame] | 347 | stpcpy(x, y); // expected-warning{{String copy function overflows destination buffer}} |
Jordy Rose | e64f311 | 2010-08-16 07:51:42 +0000 | [diff] [blame] | 348 | } |
| 349 | |
| 350 | void stpcpy_no_overflow(char *y) { |
| 351 | char x[4]; |
| 352 | if (strlen(y) == 3) |
| 353 | stpcpy(x, y); // no-warning |
| 354 | } |
Lenny Maiorani | 067bbd0 | 2011-04-09 15:12:58 +0000 | [diff] [blame] | 355 | |
| 356 | //===----------------------------------------------------------------------=== |
| 357 | // strcat() |
| 358 | //===----------------------------------------------------------------------=== |
| 359 | |
| 360 | #ifdef VARIANT |
| 361 | |
| 362 | #define __strcat_chk BUILTIN(__strcat_chk) |
| 363 | char *__strcat_chk(char *restrict s1, const char *restrict s2, size_t destlen); |
| 364 | |
| 365 | #define strcat(a,b) __strcat_chk(a,b,(size_t)-1) |
| 366 | |
| 367 | #else /* VARIANT */ |
| 368 | |
| 369 | #define strcat BUILTIN(strcat) |
| 370 | char *strcat(char *restrict s1, const char *restrict s2); |
| 371 | |
| 372 | #endif /* VARIANT */ |
| 373 | |
| 374 | |
| 375 | void strcat_null_dst(char *x) { |
Jordy Rose | 9e49d9f | 2011-06-20 02:06:40 +0000 | [diff] [blame] | 376 | strcat(NULL, x); // expected-warning{{Null pointer argument in call to string copy function}} |
Lenny Maiorani | 067bbd0 | 2011-04-09 15:12:58 +0000 | [diff] [blame] | 377 | } |
| 378 | |
| 379 | void strcat_null_src(char *x) { |
Jordy Rose | 9e49d9f | 2011-06-20 02:06:40 +0000 | [diff] [blame] | 380 | strcat(x, NULL); // expected-warning{{Null pointer argument in call to string copy function}} |
Lenny Maiorani | 067bbd0 | 2011-04-09 15:12:58 +0000 | [diff] [blame] | 381 | } |
| 382 | |
| 383 | void strcat_fn(char *x) { |
Jordy Rose | 9e49d9f | 2011-06-20 02:06:40 +0000 | [diff] [blame] | 384 | strcat(x, (char*)&strcat_fn); // expected-warning{{Argument to string copy function is the address of the function 'strcat_fn', which is not a null-terminated string}} |
Lenny Maiorani | 067bbd0 | 2011-04-09 15:12:58 +0000 | [diff] [blame] | 385 | } |
| 386 | |
| 387 | void strcat_effects(char *y) { |
| 388 | char x[8] = "123"; |
| 389 | size_t orig_len = strlen(x); |
| 390 | char a = x[0]; |
| 391 | |
| 392 | if (strlen(y) != 4) |
| 393 | return; |
| 394 | |
| 395 | if (strcat(x, y) != x) |
| 396 | (void)*(char*)0; // no-warning |
| 397 | |
| 398 | if ((int)strlen(x) != (orig_len + strlen(y))) |
| 399 | (void)*(char*)0; // no-warning |
Lenny Maiorani | 067bbd0 | 2011-04-09 15:12:58 +0000 | [diff] [blame] | 400 | } |
| 401 | |
| 402 | void strcat_overflow_0(char *y) { |
| 403 | char x[4] = "12"; |
| 404 | if (strlen(y) == 4) |
Jordy Rose | 9e49d9f | 2011-06-20 02:06:40 +0000 | [diff] [blame] | 405 | strcat(x, y); // expected-warning{{String copy function overflows destination buffer}} |
Lenny Maiorani | 067bbd0 | 2011-04-09 15:12:58 +0000 | [diff] [blame] | 406 | } |
| 407 | |
| 408 | void strcat_overflow_1(char *y) { |
| 409 | char x[4] = "12"; |
| 410 | if (strlen(y) == 3) |
Jordy Rose | 9e49d9f | 2011-06-20 02:06:40 +0000 | [diff] [blame] | 411 | strcat(x, y); // expected-warning{{String copy function overflows destination buffer}} |
Lenny Maiorani | 067bbd0 | 2011-04-09 15:12:58 +0000 | [diff] [blame] | 412 | } |
| 413 | |
| 414 | void strcat_overflow_2(char *y) { |
| 415 | char x[4] = "12"; |
| 416 | if (strlen(y) == 2) |
Jordy Rose | 9e49d9f | 2011-06-20 02:06:40 +0000 | [diff] [blame] | 417 | strcat(x, y); // expected-warning{{String copy function overflows destination buffer}} |
Lenny Maiorani | 067bbd0 | 2011-04-09 15:12:58 +0000 | [diff] [blame] | 418 | } |
| 419 | |
| 420 | void strcat_no_overflow(char *y) { |
| 421 | char x[5] = "12"; |
| 422 | if (strlen(y) == 2) |
| 423 | strcat(x, y); // no-warning |
| 424 | } |
| 425 | |
Jordy Rose | d5af0e1 | 2011-06-15 05:52:56 +0000 | [diff] [blame] | 426 | void strcat_symbolic_dst_length(char *dst) { |
| 427 | strcat(dst, "1234"); |
| 428 | if (strlen(dst) < 4) |
| 429 | (void)*(char*)0; // no-warning |
| 430 | } |
| 431 | |
| 432 | void strcat_symbolic_src_length(char *src) { |
| 433 | char dst[8] = "1234"; |
| 434 | strcat(dst, src); |
| 435 | if (strlen(dst) < 4) |
| 436 | (void)*(char*)0; // no-warning |
| 437 | } |
| 438 | |
| 439 | void strcat_unknown_src_length(char *src, int offset) { |
| 440 | char dst[8] = "1234"; |
| 441 | strcat(dst, &src[offset]); |
| 442 | if (strlen(dst) < 4) |
| 443 | (void)*(char*)0; // no-warning |
| 444 | } |
| 445 | |
| 446 | // There is no strcat_unknown_dst_length because if we can't get a symbolic |
| 447 | // length for the "before" strlen, we won't be able to set one for "after". |
| 448 | |
| 449 | void strcat_too_big(char *dst, char *src) { |
| 450 | if (strlen(dst) != (((size_t)0) - 2)) |
| 451 | return; |
| 452 | if (strlen(src) != 2) |
| 453 | return; |
| 454 | strcat(dst, src); // expected-warning{{This expression will create a string whose length is too big to be represented as a size_t}} |
| 455 | } |
| 456 | |
Lenny Maiorani | 067bbd0 | 2011-04-09 15:12:58 +0000 | [diff] [blame] | 457 | |
| 458 | //===----------------------------------------------------------------------=== |
Jordy Rose | 5e5f150 | 2011-06-20 03:49:16 +0000 | [diff] [blame] | 459 | // strncpy() |
| 460 | //===----------------------------------------------------------------------=== |
| 461 | |
| 462 | #ifdef VARIANT |
| 463 | |
| 464 | #define __strncpy_chk BUILTIN(__strncpy_chk) |
| 465 | char *__strncpy_chk(char *restrict s1, const char *restrict s2, size_t n, size_t destlen); |
| 466 | |
| 467 | #define strncpy(a,b,n) __strncpy_chk(a,b,n,(size_t)-1) |
| 468 | |
| 469 | #else /* VARIANT */ |
| 470 | |
| 471 | #define strncpy BUILTIN(strncpy) |
| 472 | char *strncpy(char *restrict s1, const char *restrict s2, size_t n); |
| 473 | |
| 474 | #endif /* VARIANT */ |
| 475 | |
| 476 | |
| 477 | void strncpy_null_dst(char *x) { |
| 478 | strncpy(NULL, x, 5); // expected-warning{{Null pointer argument in call to string copy function}} |
| 479 | } |
| 480 | |
| 481 | void strncpy_null_src(char *x) { |
| 482 | strncpy(x, NULL, 5); // expected-warning{{Null pointer argument in call to string copy function}} |
| 483 | } |
| 484 | |
| 485 | void strncpy_fn(char *x) { |
| 486 | strncpy(x, (char*)&strcpy_fn, 5); // expected-warning{{Argument to string copy function is the address of the function 'strcpy_fn', which is not a null-terminated string}} |
| 487 | } |
| 488 | |
| 489 | void strncpy_effects(char *x, char *y) { |
| 490 | char a = x[0]; |
| 491 | |
| 492 | if (strncpy(x, y, 5) != x) |
| 493 | (void)*(char*)0; // no-warning |
| 494 | |
| 495 | if (strlen(x) != strlen(y)) |
| 496 | (void)*(char*)0; // expected-warning{{null}} |
| 497 | |
| 498 | if (a != x[0]) |
| 499 | (void)*(char*)0; // expected-warning{{null}} |
| 500 | } |
| 501 | |
| 502 | void strncpy_overflow(char *y) { |
| 503 | char x[4]; |
| 504 | if (strlen(y) == 4) |
| 505 | strncpy(x, y, 5); // expected-warning{{Size argument is greater than the length of the destination buffer}} |
| 506 | } |
| 507 | |
| 508 | void strncpy_no_overflow(char *y) { |
| 509 | char x[4]; |
| 510 | if (strlen(y) == 3) |
| 511 | strncpy(x, y, 5); // expected-warning{{Size argument is greater than the length of the destination buffer}} |
| 512 | } |
| 513 | |
| 514 | void strncpy_no_overflow2(char *y, int n) { |
| 515 | if (n <= 4) |
| 516 | return; |
| 517 | |
| 518 | char x[4]; |
| 519 | if (strlen(y) == 3) |
| 520 | strncpy(x, y, n); // expected-warning{{Size argument is greater than the length of the destination buffer}} |
| 521 | } |
| 522 | |
| 523 | void strncpy_truncate(char *y) { |
| 524 | char x[4]; |
| 525 | if (strlen(y) == 4) |
| 526 | strncpy(x, y, 3); // no-warning |
| 527 | } |
| 528 | |
| 529 | void strncpy_no_truncate(char *y) { |
| 530 | char x[4]; |
| 531 | if (strlen(y) == 3) |
| 532 | strncpy(x, y, 3); // no-warning |
| 533 | } |
| 534 | |
| 535 | void strncpy_exactly_matching_buffer(char *y) { |
| 536 | char x[4]; |
| 537 | strncpy(x, y, 4); // no-warning |
| 538 | |
| 539 | // strncpy does not null-terminate, so we have no idea what the strlen is |
| 540 | // after this. |
| 541 | if (strlen(x) > 4) |
| 542 | (void)*(int*)0; // expected-warning{{null}} |
| 543 | } |
| 544 | |
| 545 | void strncpy_exactly_matching_buffer2(char *y) { |
| 546 | if (strlen(y) >= 4) |
| 547 | return; |
| 548 | |
| 549 | char x[4]; |
| 550 | strncpy(x, y, 4); // no-warning |
| 551 | |
| 552 | // This time, we know that y fits in x anyway. |
| 553 | if (strlen(x) > 3) |
| 554 | (void)*(int*)0; // no-warning |
| 555 | } |
| 556 | |
| 557 | //===----------------------------------------------------------------------=== |
Lenny Maiorani | 067bbd0 | 2011-04-09 15:12:58 +0000 | [diff] [blame] | 558 | // strncat() |
| 559 | //===----------------------------------------------------------------------=== |
| 560 | |
| 561 | #ifdef VARIANT |
| 562 | |
| 563 | #define __strncat_chk BUILTIN(__strncat_chk) |
| 564 | char *__strncat_chk(char *restrict s1, const char *restrict s2, size_t n, size_t destlen); |
| 565 | |
| 566 | #define strncat(a,b,c) __strncat_chk(a,b,c, (size_t)-1) |
| 567 | |
| 568 | #else /* VARIANT */ |
| 569 | |
| 570 | #define strncat BUILTIN(strncat) |
| 571 | char *strncat(char *restrict s1, const char *restrict s2, size_t n); |
| 572 | |
| 573 | #endif /* VARIANT */ |
| 574 | |
| 575 | |
| 576 | void strncat_null_dst(char *x) { |
Jordy Rose | 9e49d9f | 2011-06-20 02:06:40 +0000 | [diff] [blame] | 577 | strncat(NULL, x, 4); // expected-warning{{Null pointer argument in call to string copy function}} |
Lenny Maiorani | 067bbd0 | 2011-04-09 15:12:58 +0000 | [diff] [blame] | 578 | } |
| 579 | |
| 580 | void strncat_null_src(char *x) { |
Jordy Rose | 9e49d9f | 2011-06-20 02:06:40 +0000 | [diff] [blame] | 581 | strncat(x, NULL, 4); // expected-warning{{Null pointer argument in call to string copy function}} |
Lenny Maiorani | 067bbd0 | 2011-04-09 15:12:58 +0000 | [diff] [blame] | 582 | } |
| 583 | |
| 584 | void strncat_fn(char *x) { |
Jordy Rose | 9e49d9f | 2011-06-20 02:06:40 +0000 | [diff] [blame] | 585 | strncat(x, (char*)&strncat_fn, 4); // expected-warning{{Argument to string copy function is the address of the function 'strncat_fn', which is not a null-terminated string}} |
Lenny Maiorani | 067bbd0 | 2011-04-09 15:12:58 +0000 | [diff] [blame] | 586 | } |
| 587 | |
| 588 | void strncat_effects(char *y) { |
| 589 | char x[8] = "123"; |
| 590 | size_t orig_len = strlen(x); |
| 591 | char a = x[0]; |
| 592 | |
| 593 | if (strlen(y) != 4) |
| 594 | return; |
| 595 | |
| 596 | if (strncat(x, y, strlen(y)) != x) |
| 597 | (void)*(char*)0; // no-warning |
| 598 | |
| 599 | if (strlen(x) != orig_len + strlen(y)) |
| 600 | (void)*(char*)0; // no-warning |
Lenny Maiorani | 067bbd0 | 2011-04-09 15:12:58 +0000 | [diff] [blame] | 601 | } |
| 602 | |
| 603 | void strncat_overflow_0(char *y) { |
| 604 | char x[4] = "12"; |
| 605 | if (strlen(y) == 4) |
Jordy Rose | 8912aae | 2011-06-20 21:55:40 +0000 | [diff] [blame] | 606 | strncat(x, y, strlen(y)); // expected-warning{{Size argument is greater than the free space in the destination buffer}} |
Lenny Maiorani | 067bbd0 | 2011-04-09 15:12:58 +0000 | [diff] [blame] | 607 | } |
| 608 | |
| 609 | void strncat_overflow_1(char *y) { |
| 610 | char x[4] = "12"; |
| 611 | if (strlen(y) == 3) |
Jordy Rose | 8912aae | 2011-06-20 21:55:40 +0000 | [diff] [blame] | 612 | strncat(x, y, strlen(y)); // expected-warning{{Size argument is greater than the free space in the destination buffer}} |
Lenny Maiorani | 067bbd0 | 2011-04-09 15:12:58 +0000 | [diff] [blame] | 613 | } |
| 614 | |
| 615 | void strncat_overflow_2(char *y) { |
| 616 | char x[4] = "12"; |
| 617 | if (strlen(y) == 2) |
Jordy Rose | 8912aae | 2011-06-20 21:55:40 +0000 | [diff] [blame] | 618 | strncat(x, y, strlen(y)); // expected-warning{{Size argument is greater than the free space in the destination buffer}} |
Lenny Maiorani | 067bbd0 | 2011-04-09 15:12:58 +0000 | [diff] [blame] | 619 | } |
| 620 | |
| 621 | void strncat_overflow_3(char *y) { |
| 622 | char x[4] = "12"; |
| 623 | if (strlen(y) == 4) |
Jordy Rose | 8912aae | 2011-06-20 21:55:40 +0000 | [diff] [blame] | 624 | strncat(x, y, 2); // expected-warning{{Size argument is greater than the free space in the destination buffer}} |
Lenny Maiorani | 067bbd0 | 2011-04-09 15:12:58 +0000 | [diff] [blame] | 625 | } |
| 626 | void strncat_no_overflow_1(char *y) { |
| 627 | char x[5] = "12"; |
| 628 | if (strlen(y) == 2) |
| 629 | strncat(x, y, strlen(y)); // no-warning |
| 630 | } |
| 631 | |
| 632 | void strncat_no_overflow_2(char *y) { |
| 633 | char x[4] = "12"; |
| 634 | if (strlen(y) == 4) |
| 635 | strncat(x, y, 1); // no-warning |
| 636 | } |
Lenny Maiorani | 318dd92 | 2011-04-12 17:08:43 +0000 | [diff] [blame] | 637 | |
Jordy Rose | 8912aae | 2011-06-20 21:55:40 +0000 | [diff] [blame] | 638 | void strncat_symbolic_dst_length(char *dst) { |
| 639 | strncat(dst, "1234", 5); |
| 640 | if (strlen(dst) < 4) |
| 641 | (void)*(char*)0; // no-warning |
| 642 | } |
| 643 | |
| 644 | void strncat_symbolic_src_length(char *src) { |
| 645 | char dst[8] = "1234"; |
| 646 | strncat(dst, src, 3); |
| 647 | if (strlen(dst) < 4) |
| 648 | (void)*(char*)0; // no-warning |
| 649 | |
| 650 | char dst2[8] = "1234"; |
| 651 | strncat(dst2, src, 4); // expected-warning{{Size argument is greater than the free space in the destination buffer}} |
| 652 | } |
| 653 | |
| 654 | void strncat_unknown_src_length(char *src, int offset) { |
| 655 | char dst[8] = "1234"; |
| 656 | strncat(dst, &src[offset], 3); |
| 657 | if (strlen(dst) < 4) |
| 658 | (void)*(char*)0; // no-warning |
| 659 | |
| 660 | char dst2[8] = "1234"; |
| 661 | strncat(dst2, &src[offset], 4); // expected-warning{{Size argument is greater than the free space in the destination buffer}} |
| 662 | } |
| 663 | |
| 664 | // There is no strncat_unknown_dst_length because if we can't get a symbolic |
| 665 | // length for the "before" strlen, we won't be able to set one for "after". |
| 666 | |
| 667 | void strncat_symbolic_limit(unsigned limit) { |
| 668 | char dst[6] = "1234"; |
| 669 | char src[] = "567"; |
| 670 | strncat(dst, src, limit); // no-warning |
| 671 | if (strlen(dst) < 4) |
| 672 | (void)*(char*)0; // no-warning |
| 673 | if (strlen(dst) == 4) |
| 674 | (void)*(char*)0; // expected-warning{{null}} |
| 675 | } |
| 676 | |
| 677 | void strncat_unknown_limit(float limit) { |
| 678 | char dst[6] = "1234"; |
| 679 | char src[] = "567"; |
| 680 | strncat(dst, src, (size_t)limit); // no-warning |
| 681 | if (strlen(dst) < 4) |
| 682 | (void)*(char*)0; // no-warning |
| 683 | if (strlen(dst) == 4) |
| 684 | (void)*(char*)0; // expected-warning{{null}} |
| 685 | } |
| 686 | |
| 687 | void strncat_too_big(char *dst, char *src) { |
| 688 | if (strlen(dst) != (((size_t)0) - 2)) |
| 689 | return; |
| 690 | if (strlen(src) != 2) |
| 691 | return; |
| 692 | strncat(dst, src, 2); // expected-warning{{This expression will create a string whose length is too big to be represented as a size_t}} |
| 693 | } |
| 694 | |
Lenny Maiorani | 318dd92 | 2011-04-12 17:08:43 +0000 | [diff] [blame] | 695 | //===----------------------------------------------------------------------=== |
| 696 | // strcmp() |
| 697 | //===----------------------------------------------------------------------=== |
| 698 | |
| 699 | #define strcmp BUILTIN(strcmp) |
Jordy Rose | adc42d4 | 2011-06-16 07:13:34 +0000 | [diff] [blame] | 700 | int strcmp(const char * s1, const char * s2); |
Lenny Maiorani | 318dd92 | 2011-04-12 17:08:43 +0000 | [diff] [blame] | 701 | |
| 702 | void strcmp_constant0() { |
| 703 | if (strcmp("123", "123") != 0) |
| 704 | (void)*(char*)0; // no-warning |
| 705 | } |
| 706 | |
| 707 | void strcmp_constant_and_var_0() { |
| 708 | char *x = "123"; |
| 709 | if (strcmp(x, "123") != 0) |
| 710 | (void)*(char*)0; // no-warning |
| 711 | } |
| 712 | |
| 713 | void strcmp_constant_and_var_1() { |
| 714 | char *x = "123"; |
| 715 | if (strcmp("123", x) != 0) |
| 716 | (void)*(char*)0; // no-warning |
| 717 | } |
| 718 | |
| 719 | void strcmp_0() { |
| 720 | char *x = "123"; |
| 721 | char *y = "123"; |
| 722 | if (strcmp(x, y) != 0) |
| 723 | (void)*(char*)0; // no-warning |
| 724 | } |
| 725 | |
| 726 | void strcmp_1() { |
| 727 | char *x = "234"; |
| 728 | char *y = "123"; |
| 729 | if (strcmp(x, y) != 1) |
| 730 | (void)*(char*)0; // no-warning |
| 731 | } |
| 732 | |
| 733 | void strcmp_2() { |
| 734 | char *x = "123"; |
| 735 | char *y = "234"; |
| 736 | if (strcmp(x, y) != -1) |
| 737 | (void)*(char*)0; // no-warning |
| 738 | } |
| 739 | |
| 740 | void strcmp_null_0() { |
| 741 | char *x = NULL; |
| 742 | char *y = "123"; |
Jordy Rose | 9e49d9f | 2011-06-20 02:06:40 +0000 | [diff] [blame] | 743 | strcmp(x, y); // expected-warning{{Null pointer argument in call to string comparison function}} |
Lenny Maiorani | 318dd92 | 2011-04-12 17:08:43 +0000 | [diff] [blame] | 744 | } |
| 745 | |
| 746 | void strcmp_null_1() { |
| 747 | char *x = "123"; |
| 748 | char *y = NULL; |
Jordy Rose | 9e49d9f | 2011-06-20 02:06:40 +0000 | [diff] [blame] | 749 | strcmp(x, y); // expected-warning{{Null pointer argument in call to string comparison function}} |
Lenny Maiorani | 318dd92 | 2011-04-12 17:08:43 +0000 | [diff] [blame] | 750 | } |
| 751 | |
| 752 | void strcmp_diff_length_0() { |
| 753 | char *x = "12345"; |
| 754 | char *y = "234"; |
| 755 | if (strcmp(x, y) != -1) |
| 756 | (void)*(char*)0; // no-warning |
| 757 | } |
| 758 | |
| 759 | void strcmp_diff_length_1() { |
| 760 | char *x = "123"; |
| 761 | char *y = "23456"; |
| 762 | if (strcmp(x, y) != -1) |
| 763 | (void)*(char*)0; // no-warning |
| 764 | } |
| 765 | |
| 766 | void strcmp_diff_length_2() { |
| 767 | char *x = "12345"; |
| 768 | char *y = "123"; |
| 769 | if (strcmp(x, y) != 1) |
| 770 | (void)*(char*)0; // no-warning |
| 771 | } |
| 772 | |
| 773 | void strcmp_diff_length_3() { |
| 774 | char *x = "123"; |
| 775 | char *y = "12345"; |
| 776 | if (strcmp(x, y) != -1) |
| 777 | (void)*(char*)0; // no-warning |
| 778 | } |
| 779 | |
Jordy Rose | adc42d4 | 2011-06-16 07:13:34 +0000 | [diff] [blame] | 780 | void strcmp_embedded_null () { |
| 781 | if (strcmp("\0z", "\0y") != 0) |
| 782 | (void)*(char*)0; // no-warning |
| 783 | } |
| 784 | |
| 785 | void strcmp_unknown_arg (char *unknown) { |
| 786 | if (strcmp(unknown, unknown) != 0) |
| 787 | (void)*(char*)0; // no-warning |
| 788 | } |
| 789 | |
Lenny Maiorani | 357f6ee | 2011-04-25 22:21:00 +0000 | [diff] [blame] | 790 | //===----------------------------------------------------------------------=== |
| 791 | // strncmp() |
| 792 | //===----------------------------------------------------------------------=== |
| 793 | |
| 794 | #define strncmp BUILTIN(strncmp) |
Jordy Rose | adc42d4 | 2011-06-16 07:13:34 +0000 | [diff] [blame] | 795 | int strncmp(const char *s1, const char *s2, size_t n); |
Lenny Maiorani | 357f6ee | 2011-04-25 22:21:00 +0000 | [diff] [blame] | 796 | |
| 797 | void strncmp_constant0() { |
| 798 | if (strncmp("123", "123", 3) != 0) |
| 799 | (void)*(char*)0; // no-warning |
| 800 | } |
| 801 | |
| 802 | void strncmp_constant_and_var_0() { |
| 803 | char *x = "123"; |
| 804 | if (strncmp(x, "123", 3) != 0) |
| 805 | (void)*(char*)0; // no-warning |
| 806 | } |
| 807 | |
| 808 | void strncmp_constant_and_var_1() { |
| 809 | char *x = "123"; |
| 810 | if (strncmp("123", x, 3) != 0) |
| 811 | (void)*(char*)0; // no-warning |
| 812 | } |
| 813 | |
| 814 | void strncmp_0() { |
| 815 | char *x = "123"; |
| 816 | char *y = "123"; |
| 817 | if (strncmp(x, y, 3) != 0) |
| 818 | (void)*(char*)0; // no-warning |
| 819 | } |
| 820 | |
| 821 | void strncmp_1() { |
| 822 | char *x = "234"; |
| 823 | char *y = "123"; |
| 824 | if (strncmp(x, y, 3) != 1) |
| 825 | (void)*(char*)0; // no-warning |
| 826 | } |
| 827 | |
| 828 | void strncmp_2() { |
| 829 | char *x = "123"; |
| 830 | char *y = "234"; |
| 831 | if (strncmp(x, y, 3) != -1) |
| 832 | (void)*(char*)0; // no-warning |
| 833 | } |
| 834 | |
| 835 | void strncmp_null_0() { |
| 836 | char *x = NULL; |
| 837 | char *y = "123"; |
Jordy Rose | 9e49d9f | 2011-06-20 02:06:40 +0000 | [diff] [blame] | 838 | strncmp(x, y, 3); // expected-warning{{Null pointer argument in call to string comparison function}} |
Lenny Maiorani | 357f6ee | 2011-04-25 22:21:00 +0000 | [diff] [blame] | 839 | } |
| 840 | |
| 841 | void strncmp_null_1() { |
| 842 | char *x = "123"; |
| 843 | char *y = NULL; |
Jordy Rose | 9e49d9f | 2011-06-20 02:06:40 +0000 | [diff] [blame] | 844 | strncmp(x, y, 3); // expected-warning{{Null pointer argument in call to string comparison function}} |
Lenny Maiorani | 357f6ee | 2011-04-25 22:21:00 +0000 | [diff] [blame] | 845 | } |
| 846 | |
| 847 | void strncmp_diff_length_0() { |
| 848 | char *x = "12345"; |
| 849 | char *y = "234"; |
| 850 | if (strncmp(x, y, 5) != -1) |
| 851 | (void)*(char*)0; // no-warning |
| 852 | } |
| 853 | |
| 854 | void strncmp_diff_length_1() { |
| 855 | char *x = "123"; |
| 856 | char *y = "23456"; |
| 857 | if (strncmp(x, y, 5) != -1) |
| 858 | (void)*(char*)0; // no-warning |
| 859 | } |
| 860 | |
| 861 | void strncmp_diff_length_2() { |
| 862 | char *x = "12345"; |
| 863 | char *y = "123"; |
| 864 | if (strncmp(x, y, 5) != 1) |
| 865 | (void)*(char*)0; // no-warning |
| 866 | } |
| 867 | |
| 868 | void strncmp_diff_length_3() { |
| 869 | char *x = "123"; |
| 870 | char *y = "12345"; |
| 871 | if (strncmp(x, y, 5) != -1) |
| 872 | (void)*(char*)0; // no-warning |
| 873 | } |
| 874 | |
| 875 | void strncmp_diff_length_4() { |
| 876 | char *x = "123"; |
| 877 | char *y = "12345"; |
| 878 | if (strncmp(x, y, 3) != 0) |
| 879 | (void)*(char*)0; // no-warning |
| 880 | } |
| 881 | |
| 882 | void strncmp_diff_length_5() { |
| 883 | char *x = "012"; |
| 884 | char *y = "12345"; |
| 885 | if (strncmp(x, y, 3) != -1) |
| 886 | (void)*(char*)0; // no-warning |
| 887 | } |
| 888 | |
| 889 | void strncmp_diff_length_6() { |
| 890 | char *x = "234"; |
| 891 | char *y = "12345"; |
| 892 | if (strncmp(x, y, 3) != 1) |
| 893 | (void)*(char*)0; // no-warning |
| 894 | } |
| 895 | |
Jordy Rose | adc42d4 | 2011-06-16 07:13:34 +0000 | [diff] [blame] | 896 | void strncmp_embedded_null () { |
| 897 | if (strncmp("ab\0zz", "ab\0yy", 4) != 0) |
| 898 | (void)*(char*)0; // no-warning |
| 899 | } |
| 900 | |
Lenny Maiorani | bd1d16a | 2011-04-28 15:09:11 +0000 | [diff] [blame] | 901 | //===----------------------------------------------------------------------=== |
| 902 | // strcasecmp() |
| 903 | //===----------------------------------------------------------------------=== |
| 904 | |
| 905 | #define strcasecmp BUILTIN(strcasecmp) |
Jordy Rose | adc42d4 | 2011-06-16 07:13:34 +0000 | [diff] [blame] | 906 | int strcasecmp(const char *s1, const char *s2); |
Lenny Maiorani | bd1d16a | 2011-04-28 15:09:11 +0000 | [diff] [blame] | 907 | |
| 908 | void strcasecmp_constant0() { |
| 909 | if (strcasecmp("abc", "Abc") != 0) |
| 910 | (void)*(char*)0; // no-warning |
| 911 | } |
| 912 | |
| 913 | void strcasecmp_constant_and_var_0() { |
| 914 | char *x = "abc"; |
| 915 | if (strcasecmp(x, "Abc") != 0) |
| 916 | (void)*(char*)0; // no-warning |
| 917 | } |
| 918 | |
| 919 | void strcasecmp_constant_and_var_1() { |
| 920 | char *x = "abc"; |
| 921 | if (strcasecmp("Abc", x) != 0) |
| 922 | (void)*(char*)0; // no-warning |
| 923 | } |
| 924 | |
| 925 | void strcasecmp_0() { |
| 926 | char *x = "abc"; |
| 927 | char *y = "Abc"; |
| 928 | if (strcasecmp(x, y) != 0) |
| 929 | (void)*(char*)0; // no-warning |
| 930 | } |
| 931 | |
| 932 | void strcasecmp_1() { |
| 933 | char *x = "Bcd"; |
| 934 | char *y = "abc"; |
| 935 | if (strcasecmp(x, y) != 1) |
| 936 | (void)*(char*)0; // no-warning |
| 937 | } |
| 938 | |
| 939 | void strcasecmp_2() { |
| 940 | char *x = "abc"; |
| 941 | char *y = "Bcd"; |
| 942 | if (strcasecmp(x, y) != -1) |
| 943 | (void)*(char*)0; // no-warning |
| 944 | } |
| 945 | |
| 946 | void strcasecmp_null_0() { |
| 947 | char *x = NULL; |
| 948 | char *y = "123"; |
Jordy Rose | 9e49d9f | 2011-06-20 02:06:40 +0000 | [diff] [blame] | 949 | strcasecmp(x, y); // expected-warning{{Null pointer argument in call to string comparison function}} |
Lenny Maiorani | bd1d16a | 2011-04-28 15:09:11 +0000 | [diff] [blame] | 950 | } |
| 951 | |
| 952 | void strcasecmp_null_1() { |
| 953 | char *x = "123"; |
| 954 | char *y = NULL; |
Jordy Rose | 9e49d9f | 2011-06-20 02:06:40 +0000 | [diff] [blame] | 955 | strcasecmp(x, y); // expected-warning{{Null pointer argument in call to string comparison function}} |
Lenny Maiorani | bd1d16a | 2011-04-28 15:09:11 +0000 | [diff] [blame] | 956 | } |
| 957 | |
| 958 | void strcasecmp_diff_length_0() { |
| 959 | char *x = "abcde"; |
| 960 | char *y = "aBd"; |
| 961 | if (strcasecmp(x, y) != -1) |
| 962 | (void)*(char*)0; // no-warning |
| 963 | } |
| 964 | |
| 965 | void strcasecmp_diff_length_1() { |
| 966 | char *x = "abc"; |
| 967 | char *y = "aBdef"; |
| 968 | if (strcasecmp(x, y) != -1) |
| 969 | (void)*(char*)0; // no-warning |
| 970 | } |
| 971 | |
| 972 | void strcasecmp_diff_length_2() { |
| 973 | char *x = "aBcDe"; |
| 974 | char *y = "abc"; |
| 975 | if (strcasecmp(x, y) != 1) |
| 976 | (void)*(char*)0; // no-warning |
| 977 | } |
| 978 | |
| 979 | void strcasecmp_diff_length_3() { |
| 980 | char *x = "aBc"; |
| 981 | char *y = "abcde"; |
| 982 | if (strcasecmp(x, y) != -1) |
| 983 | (void)*(char*)0; // no-warning |
| 984 | } |
Lenny Maiorani | 454fd2d | 2011-05-02 19:05:49 +0000 | [diff] [blame] | 985 | |
Jordy Rose | adc42d4 | 2011-06-16 07:13:34 +0000 | [diff] [blame] | 986 | void strcasecmp_embedded_null () { |
| 987 | if (strcasecmp("ab\0zz", "ab\0yy") != 0) |
| 988 | (void)*(char*)0; // no-warning |
| 989 | } |
| 990 | |
Lenny Maiorani | 454fd2d | 2011-05-02 19:05:49 +0000 | [diff] [blame] | 991 | //===----------------------------------------------------------------------=== |
| 992 | // strncasecmp() |
| 993 | //===----------------------------------------------------------------------=== |
| 994 | |
| 995 | #define strncasecmp BUILTIN(strncasecmp) |
Jordy Rose | adc42d4 | 2011-06-16 07:13:34 +0000 | [diff] [blame] | 996 | int strncasecmp(const char *s1, const char *s2, size_t n); |
Lenny Maiorani | 454fd2d | 2011-05-02 19:05:49 +0000 | [diff] [blame] | 997 | |
| 998 | void strncasecmp_constant0() { |
| 999 | if (strncasecmp("abc", "Abc", 3) != 0) |
| 1000 | (void)*(char*)0; // no-warning |
| 1001 | } |
| 1002 | |
| 1003 | void strncasecmp_constant_and_var_0() { |
| 1004 | char *x = "abc"; |
| 1005 | if (strncasecmp(x, "Abc", 3) != 0) |
| 1006 | (void)*(char*)0; // no-warning |
| 1007 | } |
| 1008 | |
| 1009 | void strncasecmp_constant_and_var_1() { |
| 1010 | char *x = "abc"; |
| 1011 | if (strncasecmp("Abc", x, 3) != 0) |
| 1012 | (void)*(char*)0; // no-warning |
| 1013 | } |
| 1014 | |
| 1015 | void strncasecmp_0() { |
| 1016 | char *x = "abc"; |
| 1017 | char *y = "Abc"; |
| 1018 | if (strncasecmp(x, y, 3) != 0) |
| 1019 | (void)*(char*)0; // no-warning |
| 1020 | } |
| 1021 | |
| 1022 | void strncasecmp_1() { |
| 1023 | char *x = "Bcd"; |
| 1024 | char *y = "abc"; |
| 1025 | if (strncasecmp(x, y, 3) != 1) |
| 1026 | (void)*(char*)0; // no-warning |
| 1027 | } |
| 1028 | |
| 1029 | void strncasecmp_2() { |
| 1030 | char *x = "abc"; |
| 1031 | char *y = "Bcd"; |
| 1032 | if (strncasecmp(x, y, 3) != -1) |
| 1033 | (void)*(char*)0; // no-warning |
| 1034 | } |
| 1035 | |
| 1036 | void strncasecmp_null_0() { |
| 1037 | char *x = NULL; |
| 1038 | char *y = "123"; |
Jordy Rose | 9e49d9f | 2011-06-20 02:06:40 +0000 | [diff] [blame] | 1039 | strncasecmp(x, y, 3); // expected-warning{{Null pointer argument in call to string comparison function}} |
Lenny Maiorani | 454fd2d | 2011-05-02 19:05:49 +0000 | [diff] [blame] | 1040 | } |
| 1041 | |
| 1042 | void strncasecmp_null_1() { |
| 1043 | char *x = "123"; |
| 1044 | char *y = NULL; |
Jordy Rose | 9e49d9f | 2011-06-20 02:06:40 +0000 | [diff] [blame] | 1045 | strncasecmp(x, y, 3); // expected-warning{{Null pointer argument in call to string comparison function}} |
Lenny Maiorani | 454fd2d | 2011-05-02 19:05:49 +0000 | [diff] [blame] | 1046 | } |
| 1047 | |
| 1048 | void strncasecmp_diff_length_0() { |
| 1049 | char *x = "abcde"; |
| 1050 | char *y = "aBd"; |
| 1051 | if (strncasecmp(x, y, 5) != -1) |
| 1052 | (void)*(char*)0; // no-warning |
| 1053 | } |
| 1054 | |
| 1055 | void strncasecmp_diff_length_1() { |
| 1056 | char *x = "abc"; |
| 1057 | char *y = "aBdef"; |
| 1058 | if (strncasecmp(x, y, 5) != -1) |
| 1059 | (void)*(char*)0; // no-warning |
| 1060 | } |
| 1061 | |
| 1062 | void strncasecmp_diff_length_2() { |
| 1063 | char *x = "aBcDe"; |
| 1064 | char *y = "abc"; |
| 1065 | if (strncasecmp(x, y, 5) != 1) |
| 1066 | (void)*(char*)0; // no-warning |
| 1067 | } |
| 1068 | |
| 1069 | void strncasecmp_diff_length_3() { |
| 1070 | char *x = "aBc"; |
| 1071 | char *y = "abcde"; |
| 1072 | if (strncasecmp(x, y, 5) != -1) |
| 1073 | (void)*(char*)0; // no-warning |
| 1074 | } |
| 1075 | |
| 1076 | void strncasecmp_diff_length_4() { |
| 1077 | char *x = "abcde"; |
| 1078 | char *y = "aBc"; |
| 1079 | if (strncasecmp(x, y, 3) != 0) |
| 1080 | (void)*(char*)0; // no-warning |
| 1081 | } |
| 1082 | |
| 1083 | void strncasecmp_diff_length_5() { |
| 1084 | char *x = "abcde"; |
| 1085 | char *y = "aBd"; |
| 1086 | if (strncasecmp(x, y, 3) != -1) |
| 1087 | (void)*(char*)0; // no-warning |
| 1088 | } |
| 1089 | |
| 1090 | void strncasecmp_diff_length_6() { |
| 1091 | char *x = "aBDe"; |
| 1092 | char *y = "abc"; |
| 1093 | if (strncasecmp(x, y, 3) != 1) |
| 1094 | (void)*(char*)0; // no-warning |
| 1095 | } |
Jordy Rose | adc42d4 | 2011-06-16 07:13:34 +0000 | [diff] [blame] | 1096 | |
| 1097 | void strncasecmp_embedded_null () { |
| 1098 | if (strncasecmp("ab\0zz", "ab\0yy", 4) != 0) |
| 1099 | (void)*(char*)0; // no-warning |
| 1100 | } |