1 // RUN: %clang_analyze_cc1 -analyzer-checker=core,unix.Malloc,debug.ExprInspection -analyzer-store region -std=c++11 -verify %s 2 // RUN: %clang_analyze_cc1 -analyzer-checker=core,unix.Malloc,debug.ExprInspection -analyzer-store region -std=c++11 -DTEST_INLINABLE_ALLOCATORS -verify %s 3 #include "Inputs/system-header-simulator-cxx.h" 4 5 void clang_analyzer_eval(bool); 6 7 typedef __typeof__(sizeof(int)) size_t; 8 extern "C" void *malloc(size_t); 9 extern "C" void free(void *); 10 11 int someGlobal; 12 13 class SomeClass { 14 public: 15 void f(int *p); 16 }; 17 18 void testImplicitlyDeclaredGlobalNew() { 19 if (someGlobal != 0) 20 return; 21 22 // This used to crash because the global operator new is being implicitly 23 // declared and it does not have a valid source location. (PR13090) 24 void *x = ::operator new(0); 25 ::operator delete(x); 26 27 // Check that the new/delete did not invalidate someGlobal; 28 clang_analyzer_eval(someGlobal == 0); // expected-warning{{TRUE}} 29 } 30 31 void *testPlacementNew() { 32 int *x = (int *)malloc(sizeof(int)); 33 *x = 1; 34 clang_analyzer_eval(*x == 1); // expected-warning{{TRUE}}; 35 36 void *y = new (x) int; 37 clang_analyzer_eval(x == y); // expected-warning{{TRUE}}; 38 clang_analyzer_eval(*x == 1); // expected-warning{{TRUE}}; 39 40 return y; 41 } 42 43 void *operator new(size_t, size_t, int *); 44 void *testCustomNew() { 45 int x[1] = {1}; 46 clang_analyzer_eval(*x == 1); // expected-warning{{TRUE}}; 47 48 void *y = new (0, x) int; 49 clang_analyzer_eval(*x == 1); // expected-warning{{UNKNOWN}}; 50 51 return y; // no-warning 52 } 53 54 void *operator new(size_t, void *, void *); 55 void *testCustomNewMalloc() { 56 int *x = (int *)malloc(sizeof(int)); 57 58 // Should be no-warning (the custom allocator could have freed x). 59 void *y = new (0, x) int; // no-warning 60 61 return y; 62 } 63 64 void testScalarInitialization() { 65 int *n = new int(3); 66 clang_analyzer_eval(*n == 3); // expected-warning{{TRUE}} 67 68 new (n) int(); 69 clang_analyzer_eval(*n == 0); // expected-warning{{TRUE}} 70 71 new (n) int{3}; 72 clang_analyzer_eval(*n == 3); // expected-warning{{TRUE}} 73 74 new (n) int{}; 75 clang_analyzer_eval(*n == 0); // expected-warning{{TRUE}} 76 } 77 78 struct PtrWrapper { 79 int *x; 80 81 PtrWrapper(int *input) : x(input) {} 82 }; 83 84 PtrWrapper *testNewInvalidation() { 85 // Ensure that we don't consider this a leak. 86 return new PtrWrapper(static_cast<int *>(malloc(4))); // no-warning 87 } 88 89 void testNewInvalidationPlacement(PtrWrapper *w) { 90 // Ensure that we don't consider this a leak. 91 new (w) PtrWrapper(static_cast<int *>(malloc(4))); // no-warning 92 } 93 94 int **testNewInvalidationScalar() { 95 // Ensure that we don't consider this a leak. 96 return new (int *)(static_cast<int *>(malloc(4))); // no-warning 97 } 98 99 void testNewInvalidationScalarPlacement(int **p) { 100 // Ensure that we don't consider this a leak. 101 new (p) (int *)(static_cast<int *>(malloc(4))); // no-warning 102 } 103 104 void testCacheOut(PtrWrapper w) { 105 extern bool coin(); 106 if (coin()) 107 w.x = 0; 108 new (&w.x) (int*)(0); // we cache out here; don't crash 109 } 110 111 void testUseAfter(int *p) { 112 SomeClass *c = new SomeClass; 113 free(p); 114 c->f(p); // expected-warning{{Use of memory after it is freed}} 115 delete c; 116 } 117 118 //-------------------------------------------------------------------- 119 // Check for intersection with other checkers from MallocChecker.cpp 120 // bounded with unix.Malloc 121 //-------------------------------------------------------------------- 122 123 // new/delete oparators are subjects of cplusplus.NewDelete. 124 void testNewDeleteNoWarn() { 125 int i; 126 delete &i; // no-warning 127 128 int *p1 = new int; 129 delete ++p1; // no-warning 130 131 int *p2 = new int; 132 delete p2; 133 delete p2; // no-warning 134 135 int *p3 = new int; // no-warning 136 } 137 138 // unix.Malloc does not know about operators new/delete. 139 void testDeleteMallocked() { 140 int *x = (int *)malloc(sizeof(int)); 141 delete x; // FIXME: Shoud detect pointer escape and keep silent after 'delete' is modeled properly. 142 } // expected-warning{{Potential leak of memory pointed to by 'x'}} 143 144 void testDeleteOpAfterFree() { 145 int *p = (int *)malloc(sizeof(int)); 146 free(p); 147 operator delete(p); // expected-warning{{Use of memory after it is freed}} 148 } 149 150 void testDeleteAfterFree() { 151 int *p = (int *)malloc(sizeof(int)); 152 free(p); 153 delete p; // expected-warning{{Use of memory after it is freed}} 154 } 155 156 void testStandardPlacementNewAfterFree() { 157 int *p = (int *)malloc(sizeof(int)); 158 free(p); 159 p = new(p) int; // expected-warning{{Use of memory after it is freed}} 160 } 161 162 void testCustomPlacementNewAfterFree() { 163 int *p = (int *)malloc(sizeof(int)); 164 free(p); 165 p = new(0, p) int; // expected-warning{{Use of memory after it is freed}} 166 } 167 168 void testUsingThisAfterDelete() { 169 SomeClass *c = new SomeClass; 170 delete c; 171 c->f(0); // no-warning 172 } 173 174 void testAggregateNew() { 175 struct Point { int x, y; }; 176 new Point{1, 2}; // no crash 177 178 Point p; 179 new (&p) Point{1, 2}; // no crash 180 clang_analyzer_eval(p.x == 1); // expected-warning{{TRUE}} 181 clang_analyzer_eval(p.y == 2); // expected-warning{{TRUE}} 182 } 183 184 //-------------------------------- 185 // Incorrectly-modelled behavior 186 //-------------------------------- 187 188 int testNoInitialization() { 189 int *n = new int; 190 191 // Should warn that *n is uninitialized. 192 if (*n) { // no-warning 193 delete n; 194 return 0; 195 } 196 delete n; 197 return 1; 198 } 199 200 int testNoInitializationPlacement() { 201 int n; 202 new (&n) int; 203 204 if (n) { // expected-warning{{Branch condition evaluates to a garbage value}} 205 return 0; 206 } 207 return 1; 208 } 209 210 // Test modelling destructor call on call to delete 211 class IntPair{ 212 public: 213 int x; 214 int y; 215 IntPair() {}; 216 ~IntPair() {x = x/y;}; //expected-warning {{Division by zero}} 217 }; 218 219 void testCallToDestructor() { 220 IntPair *b = new IntPair(); 221 b->x = 1; 222 b->y = 0; 223 delete b; // This results in divide by zero in destructor 224 } 225 226 // Test Deleting a value that's passed as an argument. 227 class DerefClass{ 228 public: 229 int *x; 230 DerefClass() {}; 231 ~DerefClass() {*x = 1;}; //expected-warning {{Dereference of null pointer (loaded from field 'x')}} 232 }; 233 234 void testDestCall(DerefClass *arg) { 235 delete arg; 236 } 237 238 void test_delete_dtor_Arg() { 239 DerefClass *pair = new DerefClass(); 240 pair->x = 0; 241 testDestCall(pair); 242 } 243 244 //Deleting the address of a local variable, null pointer 245 void abort(void) __attribute__((noreturn)); 246 247 class NoReturnDtor { 248 public: 249 NoReturnDtor() {} 250 ~NoReturnDtor() {abort();} 251 }; 252 253 void test_delete_dtor_LocalVar() { 254 NoReturnDtor test; 255 delete &test; // no warn or crash 256 } 257 258 class DerivedNoReturn:public NoReturnDtor { 259 public: 260 DerivedNoReturn() {}; 261 ~DerivedNoReturn() {}; 262 }; 263 264 void testNullDtorDerived() { 265 DerivedNoReturn *p = new DerivedNoReturn(); 266 delete p; // Calls the base destructor which aborts, checked below 267 clang_analyzer_eval(true); // no warn 268 } 269 270 //Deleting a non-class pointer should not crash/warn 271 void test_var_delete() { 272 int *v = new int; 273 delete v; // no crash/warn 274 clang_analyzer_eval(true); // expected-warning{{TRUE}} 275 } 276 277 void testDeleteNull() { 278 NoReturnDtor *foo = 0; 279 delete foo; // should not call destructor, checked below 280 clang_analyzer_eval(true); // expected-warning{{TRUE}} 281 } 282 283 void testNullAssigneddtor() { 284 NoReturnDtor *p = 0; 285 NoReturnDtor *s = p; 286 delete s; // should not call destructor, checked below 287 clang_analyzer_eval(true); // expected-warning{{TRUE}} 288 } 289 290 void deleteArg(NoReturnDtor *test) { 291 delete test; 292 } 293 294 void testNulldtorArg() { 295 NoReturnDtor *p = 0; 296 deleteArg(p); 297 clang_analyzer_eval(true); // expected-warning{{TRUE}} 298 } 299 300 void testDeleteUnknown(NoReturnDtor *foo) { 301 delete foo; // should assume non-null and call noreturn destructor 302 clang_analyzer_eval(true); // no-warning 303 } 304 305 void testArrayNull() { 306 NoReturnDtor *fooArray = 0; 307 delete[] fooArray; // should not call destructor, checked below 308 clang_analyzer_eval(true); // expected-warning{{TRUE}} 309 } 310 311 void testArrayDestr() { 312 NoReturnDtor *p = new NoReturnDtor[2]; 313 delete[] p; // Calls the base destructor which aborts, checked below 314 //TODO: clang_analyzer_eval should not be called 315 clang_analyzer_eval(true); // expected-warning{{TRUE}} 316 } 317 318 // Invalidate Region even in case of default destructor 319 class InvalidateDestTest { 320 public: 321 int x; 322 int *y; 323 ~InvalidateDestTest(); 324 }; 325 326 int test_member_invalidation() { 327 328 //test invalidation of member variable 329 InvalidateDestTest *test = new InvalidateDestTest(); 330 test->x = 5; 331 int *k = &(test->x); 332 clang_analyzer_eval(*k == 5); // expected-warning{{TRUE}} 333 delete test; 334 clang_analyzer_eval(*k == 5); // expected-warning{{UNKNOWN}} 335 336 //test invalidation of member pointer 337 int localVar = 5; 338 test = new InvalidateDestTest(); 339 test->y = &localVar; 340 delete test; 341 clang_analyzer_eval(localVar == 5); // expected-warning{{UNKNOWN}} 342 343 // Test aray elements are invalidated. 344 int Var1 = 5; 345 int Var2 = 5; 346 InvalidateDestTest *a = new InvalidateDestTest[2]; 347 a[0].y = &Var1; 348 a[1].y = &Var2; 349 delete[] a; 350 clang_analyzer_eval(Var1 == 5); // expected-warning{{UNKNOWN}} 351 clang_analyzer_eval(Var2 == 5); // expected-warning{{UNKNOWN}} 352 return 0; 353 } 354