Ted Kremenek | 565e465 | 2010-02-05 02:06:54 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 -analyze -analyzer-experimental-internal-checks -analyzer-experimental-checks -analyzer-check-objc-mem -analyzer-store=region -verify %s |
Zhongxing Xu | 3ed04d3 | 2010-01-18 08:54:31 +0000 | [diff] [blame] | 2 | |
| 3 | typedef __typeof(sizeof(int)) size_t; |
| 4 | void *malloc(size_t); |
Zhongxing Xu | a5ce966 | 2010-06-01 03:01:33 +0000 | [diff] [blame] | 5 | void *calloc(size_t, size_t); |
Zhongxing Xu | 20f0178 | 2008-11-24 02:19:49 +0000 | [diff] [blame] | 6 | |
| 7 | char f1() { |
| 8 | char* s = "abcd"; |
Ted Kremenek | f9e9684 | 2009-01-22 20:36:33 +0000 | [diff] [blame] | 9 | char c = s[4]; // no-warning |
Zhongxing Xu | 58e689f | 2009-11-11 12:33:27 +0000 | [diff] [blame] | 10 | return s[5] + c; // expected-warning{{Access out-of-bound array element (buffer overflow)}} |
Zhongxing Xu | 20f0178 | 2008-11-24 02:19:49 +0000 | [diff] [blame] | 11 | } |
Zhongxing Xu | 3ed04d3 | 2010-01-18 08:54:31 +0000 | [diff] [blame] | 12 | |
| 13 | void f2() { |
| 14 | int *p = malloc(12); |
| 15 | p[3] = 4; // expected-warning{{Access out-of-bound array element (buffer overflow)}} |
| 16 | } |
Zhongxing Xu | 9618b85 | 2010-04-01 08:20:27 +0000 | [diff] [blame] | 17 | |
| 18 | struct three_words { |
| 19 | int c[3]; |
| 20 | }; |
| 21 | |
| 22 | struct seven_words { |
| 23 | int c[7]; |
| 24 | }; |
| 25 | |
| 26 | void f3() { |
| 27 | struct three_words a, *p; |
| 28 | p = &a; |
| 29 | p[0] = a; // no-warning |
| 30 | p[1] = a; // expected-warning{{Access out-of-bound array element (buffer overflow)}} |
| 31 | } |
| 32 | |
| 33 | void f4() { |
| 34 | struct seven_words c; |
| 35 | struct three_words a, *p = (struct three_words *)&c; |
| 36 | p[0] = a; // no-warning |
| 37 | p[1] = a; // no-warning |
| 38 | p[2] = a; // expected-warning{{Access out-of-bound array element (buffer overflow)}} |
| 39 | } |
Zhongxing Xu | a5ce966 | 2010-06-01 03:01:33 +0000 | [diff] [blame] | 40 | |
| 41 | void f5() { |
| 42 | char *p = calloc(2,2); |
| 43 | p[3] = '.'; // no-warning |
| 44 | p[4] = '!'; // expected-warning{{out-of-bound}} |
| 45 | } |
Jordy Rose | 4d912b2 | 2010-06-25 23:23:04 +0000 | [diff] [blame^] | 46 | |
| 47 | void f6() { |
| 48 | char a[2]; |
| 49 | int *b = (int*)a; |
| 50 | b[1] = 3; // expected-warning{{out-of-bound}} |
| 51 | } |