Ted Kremenek | cdc3a89 | 2012-08-24 20:39:55 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 -analyze -analyzer-checker=core,alpha.deadcode.UnreachableCode,alpha.core.CastSize,unix.Malloc -analyzer-store=region -verify %s |
Anna Zaks | 4b81e74 | 2012-03-29 23:26:54 +0000 | [diff] [blame] | 2 | |
| 3 | typedef __typeof(sizeof(int)) size_t; |
| 4 | void *malloc(size_t); |
| 5 | void free(void *); |
| 6 | void *realloc(void *ptr, size_t size); |
| 7 | void *calloc(size_t nmemb, size_t size); |
Anna Zaks | 658a284 | 2013-04-02 01:28:24 +0000 | [diff] [blame] | 8 | char *strdup(const char *s); |
Jordan Rose | 5a1ffe9 | 2012-09-05 22:55:23 +0000 | [diff] [blame] | 9 | |
| 10 | void checkThatMallocCheckerIsRunning() { |
Jordan Rose | 63bc186 | 2012-11-15 19:11:43 +0000 | [diff] [blame] | 11 | malloc(4); |
| 12 | } // expected-warning{{leak}} |
Jordan Rose | 5a1ffe9 | 2012-09-05 22:55:23 +0000 | [diff] [blame] | 13 | |
Anna Zaks | 4b81e74 | 2012-03-29 23:26:54 +0000 | [diff] [blame] | 14 | // Test for radar://11110132. |
| 15 | struct Foo { |
| 16 | mutable void* m_data; |
| 17 | Foo(void* data) : m_data(data) {} |
| 18 | }; |
| 19 | Foo aFunction() { |
| 20 | return malloc(10); |
| 21 | } |
Anna Zaks | aca0ac5 | 2012-05-03 23:50:28 +0000 | [diff] [blame] | 22 | |
| 23 | // Assume that functions which take a function pointer can free memory even if |
| 24 | // they are defined in system headers and take the const pointer to the |
| 25 | // allocated memory. (radar://11160612) |
| 26 | // Test default parameter. |
| 27 | int const_ptr_and_callback_def_param(int, const char*, int n, void(*)(void*) = 0); |
| 28 | void r11160612_3() { |
| 29 | char *x = (char*)malloc(12); |
| 30 | const_ptr_and_callback_def_param(0, x, 12); |
| 31 | } |
Anna Zaks | f132ba8 | 2012-05-04 22:18:36 +0000 | [diff] [blame] | 32 | |
| 33 | // Test member function pointer. |
| 34 | struct CanFreeMemory { |
| 35 | static void myFree(void*); |
| 36 | }; |
| 37 | //This is handled because we look at the type of the parameter(not argument). |
| 38 | void r11160612_3(CanFreeMemory* p) { |
| 39 | char *x = (char*)malloc(12); |
| 40 | const_ptr_and_callback_def_param(0, x, 12, p->myFree); |
| 41 | } |
| 42 | |
Jordan Rose | 5a1ffe9 | 2012-09-05 22:55:23 +0000 | [diff] [blame] | 43 | |
| 44 | namespace PR13751 { |
| 45 | class OwningVector { |
| 46 | void **storage; |
| 47 | size_t length; |
| 48 | public: |
| 49 | OwningVector(); |
| 50 | ~OwningVector(); |
| 51 | void push_back(void *Item) { |
| 52 | storage[length++] = Item; |
| 53 | } |
| 54 | }; |
| 55 | |
| 56 | void testDestructors() { |
| 57 | OwningVector v; |
| 58 | v.push_back(malloc(4)); |
| 59 | // no leak warning; freed in destructor |
| 60 | } |
| 61 | } |
| 62 | |
Anna Zaks | b98c6fe | 2013-02-06 00:01:14 +0000 | [diff] [blame] | 63 | struct X { void *a; }; |
| 64 | |
| 65 | struct X get() { |
| 66 | struct X result; |
| 67 | result.a = malloc(4); |
| 68 | return result; // no-warning |
| 69 | } |
Anna Zaks | 658a284 | 2013-04-02 01:28:24 +0000 | [diff] [blame] | 70 | |
| 71 | // Ensure that regions accessible through a LazyCompoundVal trigger region escape. |
| 72 | // Malloc checker used to report leaks for the following two test cases. |
| 73 | struct Property { |
| 74 | char* getterName; |
| 75 | Property(char* n) |
| 76 | : getterName(n) {} |
| 77 | |
| 78 | }; |
| 79 | void append(Property x); |
| 80 | |
| 81 | void appendWrapper(char *getterName) { |
| 82 | append(Property(getterName)); |
| 83 | } |
| 84 | void foo(const char* name) { |
| 85 | char* getterName = strdup(name); |
| 86 | appendWrapper(getterName); // no-warning |
| 87 | } |
| 88 | |
| 89 | struct NestedProperty { |
| 90 | Property prop; |
| 91 | NestedProperty(Property p) |
| 92 | : prop(p) {} |
| 93 | }; |
| 94 | void appendNested(NestedProperty x); |
| 95 | |
| 96 | void appendWrapperNested(char *getterName) { |
| 97 | appendNested(NestedProperty(Property(getterName))); |
| 98 | } |
| 99 | void fooNested(const char* name) { |
| 100 | char* getterName = strdup(name); |
| 101 | appendWrapperNested(getterName); // no-warning |
| 102 | } |