blob: 76f59fda19956b6fa7a23134164fee54656e8501 [file] [log] [blame]
Ted Kremenekcdc3a892012-08-24 20:39:55 +00001// RUN: %clang_cc1 -analyze -analyzer-checker=core,alpha.deadcode.UnreachableCode,alpha.core.CastSize,unix.Malloc,debug.ExprInspection -analyzer-store=region -verify %s
NAKAMURA Takumi7a290702012-11-19 10:00:59 +00002
Chandler Carruth1b22cec2012-09-12 01:11:10 +00003#include "Inputs/system-header-simulator.h"
Anna Zaks15d0ae12012-02-11 23:46:36 +00004
Anna Zaksadccc3f2012-06-08 00:04:40 +00005void clang_analyzer_eval(int);
6
Eli Friedman2f005522009-11-14 04:23:25 +00007typedef __typeof(sizeof(int)) size_t;
Ted Kremenekc3607752009-11-13 20:03:22 +00008void *malloc(size_t);
Anna Zaksb16ce452012-02-15 00:11:22 +00009void *valloc(size_t);
Ted Kremenekc3607752009-11-13 20:03:22 +000010void free(void *);
Zhongxing Xud9c84c82009-12-12 12:29:38 +000011void *realloc(void *ptr, size_t size);
Anna Zaks40add292012-02-15 00:11:25 +000012void *reallocf(void *ptr, size_t size);
Zhongxing Xud9c84c82009-12-12 12:29:38 +000013void *calloc(size_t nmemb, size_t size);
Anna Zaks14345182012-05-18 01:16:10 +000014char *strdup(const char *s);
15char *strndup(const char *s, size_t n);
Anna Zaks233e26a2013-02-07 23:05:43 +000016int memcmp(const void *s1, const void *s2, size_t n);
Ted Kremenekdd0e4902010-07-31 01:52:11 +000017
Anna Zaks91c2a112012-02-08 23:16:56 +000018void myfoo(int *p);
19void myfooint(int p);
Anna Zaksebc1d322012-02-15 00:11:28 +000020char *fooRetPtr();
Zhongxing Xufc7ac8f2009-11-13 07:48:11 +000021
22void f1() {
Zhongxing Xuab280992010-05-25 04:59:19 +000023 int *p = malloc(12);
Anna Zaks68eb4c22013-04-06 00:41:36 +000024 return; // expected-warning{{Potential leak of memory pointed to by 'p'}}
Zhongxing Xufc7ac8f2009-11-13 07:48:11 +000025}
26
Zhongxing Xufc7ac8f2009-11-13 07:48:11 +000027void f2() {
Zhongxing Xuab280992010-05-25 04:59:19 +000028 int *p = malloc(12);
Zhongxing Xufc7ac8f2009-11-13 07:48:11 +000029 free(p);
Anna Zaksfebdc322012-02-16 22:26:12 +000030 free(p); // expected-warning{{Attempt to free released memory}}
Zhongxing Xufc7ac8f2009-11-13 07:48:11 +000031}
Ted Kremenekc764d4b2009-11-13 20:00:28 +000032
Lenny Maiorani4d8d8032011-04-27 14:49:29 +000033void f2_realloc_0() {
34 int *p = malloc(12);
35 realloc(p,0);
Anna Zaksfebdc322012-02-16 22:26:12 +000036 realloc(p,0); // expected-warning{{Attempt to free released memory}}
Lenny Maiorani4d8d8032011-04-27 14:49:29 +000037}
38
39void f2_realloc_1() {
40 int *p = malloc(12);
Zhongxing Xud56763f2011-09-01 04:53:59 +000041 int *q = realloc(p,0); // no-warning
Lenny Maiorani4d8d8032011-04-27 14:49:29 +000042}
43
Anna Zaksc8bb3be2012-02-13 18:05:39 +000044void reallocNotNullPtr(unsigned sizeIn) {
45 unsigned size = 12;
46 char *p = (char*)malloc(size);
47 if (p) {
48 char *q = (char*)realloc(p, sizeIn);
Anna Zaks68eb4c22013-04-06 00:41:36 +000049 char x = *q; // expected-warning {{Potential leak of memory pointed to by 'q'}}
Anna Zaksc8bb3be2012-02-13 18:05:39 +000050 }
51}
52
53int *realloctest1() {
54 int *q = malloc(12);
55 q = realloc(q, 20);
56 return q; // no warning - returning the allocated value
57}
58
59// p should be freed if realloc fails.
60void reallocFails() {
61 char *p = malloc(12);
62 char *r = realloc(p, 12+1);
63 if (!r) {
64 free(p);
65 } else {
66 free(r);
67 }
68}
69
Anna Zaks30838b92012-02-13 20:57:07 +000070void reallocSizeZero1() {
71 char *p = malloc(12);
72 char *r = realloc(p, 0);
73 if (!r) {
Anna Zaksede875b2012-08-03 18:30:18 +000074 free(p); // expected-warning {{Attempt to free released memory}}
Anna Zaks30838b92012-02-13 20:57:07 +000075 } else {
76 free(r);
77 }
78}
79
80void reallocSizeZero2() {
81 char *p = malloc(12);
82 char *r = realloc(p, 0);
83 if (!r) {
Anna Zaksede875b2012-08-03 18:30:18 +000084 free(p); // expected-warning {{Attempt to free released memory}}
Anna Zaks30838b92012-02-13 20:57:07 +000085 } else {
86 free(r);
87 }
Anna Zaksfebdc322012-02-16 22:26:12 +000088 free(p); // expected-warning {{Attempt to free released memory}}
Anna Zaks30838b92012-02-13 20:57:07 +000089}
90
91void reallocSizeZero3() {
92 char *p = malloc(12);
93 char *r = realloc(p, 0);
94 free(r);
95}
96
97void reallocSizeZero4() {
98 char *r = realloc(0, 0);
99 free(r);
100}
101
102void reallocSizeZero5() {
103 char *r = realloc(0, 0);
104}
105
106void reallocPtrZero1() {
Jordan Rose63bc1862012-11-15 19:11:43 +0000107 char *r = realloc(0, 12);
Anna Zaks68eb4c22013-04-06 00:41:36 +0000108} // expected-warning {{Potential leak of memory pointed to by 'r'}}
Anna Zaks30838b92012-02-13 20:57:07 +0000109
110void reallocPtrZero2() {
111 char *r = realloc(0, 12);
112 if (r)
113 free(r);
114}
115
116void reallocPtrZero3() {
117 char *r = realloc(0, 12);
118 free(r);
119}
120
Anna Zaksb276bd92012-02-14 00:26:13 +0000121void reallocRadar6337483_1() {
122 char *buf = malloc(100);
123 buf = (char*)realloc(buf, 0x1000000);
124 if (!buf) {
Anna Zaks68eb4c22013-04-06 00:41:36 +0000125 return;// expected-warning {{Potential leak of memory pointed to by}}
Anna Zaksb276bd92012-02-14 00:26:13 +0000126 }
127 free(buf);
128}
129
130void reallocRadar6337483_2() {
131 char *buf = malloc(100);
132 char *buf2 = (char*)realloc(buf, 0x1000000);
Jordan Rose63bc1862012-11-15 19:11:43 +0000133 if (!buf2) {
Anna Zaksb276bd92012-02-14 00:26:13 +0000134 ;
135 } else {
136 free(buf2);
137 }
Anna Zaks68eb4c22013-04-06 00:41:36 +0000138} // expected-warning {{Potential leak of memory pointed to by}}
Anna Zaksb276bd92012-02-14 00:26:13 +0000139
140void reallocRadar6337483_3() {
141 char * buf = malloc(100);
142 char * tmp;
143 tmp = (char*)realloc(buf, 0x1000000);
144 if (!tmp) {
145 free(buf);
146 return;
147 }
148 buf = tmp;
149 free(buf);
150}
151
152void reallocRadar6337483_4() {
153 char *buf = malloc(100);
154 char *buf2 = (char*)realloc(buf, 0x1000000);
155 if (!buf2) {
Anna Zaks68eb4c22013-04-06 00:41:36 +0000156 return; // expected-warning {{Potential leak of memory pointed to by}}
Anna Zaksb276bd92012-02-14 00:26:13 +0000157 } else {
158 free(buf2);
159 }
160}
161
Anna Zaks40add292012-02-15 00:11:25 +0000162int *reallocfTest1() {
163 int *q = malloc(12);
164 q = reallocf(q, 20);
165 return q; // no warning - returning the allocated value
166}
167
168void reallocfRadar6337483_4() {
169 char *buf = malloc(100);
170 char *buf2 = (char*)reallocf(buf, 0x1000000);
171 if (!buf2) {
172 return; // no warning - reallocf frees even on failure
173 } else {
174 free(buf2);
175 }
176}
177
178void reallocfRadar6337483_3() {
179 char * buf = malloc(100);
180 char * tmp;
181 tmp = (char*)reallocf(buf, 0x1000000);
182 if (!tmp) {
Anna Zaksfebdc322012-02-16 22:26:12 +0000183 free(buf); // expected-warning {{Attempt to free released memory}}
Anna Zaks40add292012-02-15 00:11:25 +0000184 return;
185 }
186 buf = tmp;
187 free(buf);
188}
189
190void reallocfPtrZero1() {
Jordan Rose63bc1862012-11-15 19:11:43 +0000191 char *r = reallocf(0, 12);
Anna Zaks68eb4c22013-04-06 00:41:36 +0000192} // expected-warning {{Potential leak of memory pointed to by}}
Anna Zaks40add292012-02-15 00:11:25 +0000193
194
Zhongxing Xu243fde92009-11-17 07:54:15 +0000195// This case tests that storing malloc'ed memory to a static variable which is
196// then returned is not leaked. In the absence of known contracts for functions
197// or inter-procedural analysis, this is a conservative answer.
Ted Kremenekc764d4b2009-11-13 20:00:28 +0000198int *f3() {
199 static int *p = 0;
Zhongxing Xuab280992010-05-25 04:59:19 +0000200 p = malloc(12);
Zhongxing Xu4985e3e2009-11-17 08:58:18 +0000201 return p; // no-warning
Ted Kremenekc764d4b2009-11-13 20:00:28 +0000202}
203
Zhongxing Xu243fde92009-11-17 07:54:15 +0000204// This case tests that storing malloc'ed memory to a static global variable
205// which is then returned is not leaked. In the absence of known contracts for
206// functions or inter-procedural analysis, this is a conservative answer.
Ted Kremenekc764d4b2009-11-13 20:00:28 +0000207static int *p_f4 = 0;
208int *f4() {
Zhongxing Xuab280992010-05-25 04:59:19 +0000209 p_f4 = malloc(12);
Zhongxing Xu4985e3e2009-11-17 08:58:18 +0000210 return p_f4; // no-warning
Ted Kremenekc764d4b2009-11-13 20:00:28 +0000211}
Zhongxing Xud9c84c82009-12-12 12:29:38 +0000212
213int *f5() {
Zhongxing Xuab280992010-05-25 04:59:19 +0000214 int *q = malloc(12);
Zhongxing Xud9c84c82009-12-12 12:29:38 +0000215 q = realloc(q, 20);
216 return q; // no-warning
217}
Zhongxing Xub94b81a2009-12-31 06:13:07 +0000218
219void f6() {
Zhongxing Xuab280992010-05-25 04:59:19 +0000220 int *p = malloc(12);
Zhongxing Xub94b81a2009-12-31 06:13:07 +0000221 if (!p)
222 return; // no-warning
223 else
224 free(p);
225}
Zhongxing Xu425c7ed2010-01-18 04:01:40 +0000226
Lenny Maiorani4d8d8032011-04-27 14:49:29 +0000227void f6_realloc() {
228 int *p = malloc(12);
229 if (!p)
230 return; // no-warning
231 else
232 realloc(p,0);
233}
234
235
Zhongxing Xu425c7ed2010-01-18 04:01:40 +0000236char *doit2();
237void pr6069() {
238 char *buf = doit2();
239 free(buf);
240}
Zhongxing Xu181cc3d2010-02-14 06:49:48 +0000241
242void pr6293() {
243 free(0);
244}
Zhongxing Xuc8023782010-03-10 04:58:55 +0000245
246void f7() {
247 char *x = (char*) malloc(4);
248 free(x);
Anna Zaksfebdc322012-02-16 22:26:12 +0000249 x[0] = 'a'; // expected-warning{{Use of memory after it is freed}}
Zhongxing Xuc8023782010-03-10 04:58:55 +0000250}
Zhongxing Xuab280992010-05-25 04:59:19 +0000251
Anna Zaks14345182012-05-18 01:16:10 +0000252void f8() {
253 char *x = (char*) malloc(4);
254 free(x);
255 char *y = strndup(x, 4); // expected-warning{{Use of memory after it is freed}}
256}
257
Lenny Maiorani4d8d8032011-04-27 14:49:29 +0000258void f7_realloc() {
259 char *x = (char*) malloc(4);
260 realloc(x,0);
Anna Zaksfebdc322012-02-16 22:26:12 +0000261 x[0] = 'a'; // expected-warning{{Use of memory after it is freed}}
Lenny Maiorani4d8d8032011-04-27 14:49:29 +0000262}
263
Zhongxing Xuab280992010-05-25 04:59:19 +0000264void PR6123() {
Ted Kremenekc4bac8e2012-08-16 17:45:23 +0000265 int *x = malloc(11); // expected-warning{{Cast a region whose size is not a multiple of the destination type size}}
Zhongxing Xuab280992010-05-25 04:59:19 +0000266}
267
268void PR7217() {
Ted Kremenekc4bac8e2012-08-16 17:45:23 +0000269 int *buf = malloc(2); // expected-warning{{Cast a region whose size is not a multiple of the destination type size}}
Zhongxing Xuab280992010-05-25 04:59:19 +0000270 buf[1] = 'c'; // not crash
Zhongxing Xuab280992010-05-25 04:59:19 +0000271}
Jordy Rosec580f2e2010-06-20 04:30:57 +0000272
273void mallocCastToVoid() {
274 void *p = malloc(2);
275 const void *cp = p; // not crash
276 free(p);
277}
278
279void mallocCastToFP() {
280 void *p = malloc(2);
281 void (*fp)() = p; // not crash
282 free(p);
283}
284
Zhongxing Xua5ce9662010-06-01 03:01:33 +0000285// This tests that malloc() buffers are undefined by default
286char mallocGarbage () {
287 char *buf = malloc(2);
288 char result = buf[1]; // expected-warning{{undefined}}
289 free(buf);
290 return result;
291}
292
293// This tests that calloc() buffers need to be freed
294void callocNoFree () {
295 char *buf = calloc(2,2);
Anna Zaks68eb4c22013-04-06 00:41:36 +0000296 return; // expected-warning{{Potential leak of memory pointed to by 'buf'}}
Zhongxing Xua5ce9662010-06-01 03:01:33 +0000297}
298
299// These test that calloc() buffers are zeroed by default
300char callocZeroesGood () {
301 char *buf = calloc(2,2);
302 char result = buf[3]; // no-warning
303 if (buf[1] == 0) {
304 free(buf);
305 }
306 return result; // no-warning
307}
308
309char callocZeroesBad () {
310 char *buf = calloc(2,2);
311 char result = buf[3]; // no-warning
312 if (buf[1] != 0) {
Tom Carec4b5bd82010-07-23 23:04:53 +0000313 free(buf); // expected-warning{{never executed}}
Zhongxing Xua5ce9662010-06-01 03:01:33 +0000314 }
Anna Zaks68eb4c22013-04-06 00:41:36 +0000315 return result; // expected-warning{{Potential leak of memory pointed to by 'buf'}}
Zhongxing Xua5ce9662010-06-01 03:01:33 +0000316}
Anna Zaks91c2a112012-02-08 23:16:56 +0000317
318void nullFree() {
319 int *p = 0;
320 free(p); // no warning - a nop
321}
322
323void paramFree(int *p) {
324 myfoo(p);
325 free(p); // no warning
Anna Zaksede875b2012-08-03 18:30:18 +0000326 myfoo(p); // expected-warning {{Use of memory after it is freed}}
Anna Zaks91c2a112012-02-08 23:16:56 +0000327}
328
329int* mallocEscapeRet() {
330 int *p = malloc(12);
331 return p; // no warning
332}
333
334void mallocEscapeFoo() {
335 int *p = malloc(12);
336 myfoo(p);
337 return; // no warning
338}
339
340void mallocEscapeFree() {
341 int *p = malloc(12);
342 myfoo(p);
343 free(p);
344}
345
346void mallocEscapeFreeFree() {
347 int *p = malloc(12);
348 myfoo(p);
349 free(p);
Anna Zaksfebdc322012-02-16 22:26:12 +0000350 free(p); // expected-warning{{Attempt to free released memory}}
Anna Zaks91c2a112012-02-08 23:16:56 +0000351}
352
353void mallocEscapeFreeUse() {
354 int *p = malloc(12);
355 myfoo(p);
356 free(p);
Anna Zaksfebdc322012-02-16 22:26:12 +0000357 myfoo(p); // expected-warning{{Use of memory after it is freed}}
Anna Zaks91c2a112012-02-08 23:16:56 +0000358}
359
360int *myalloc();
361void myalloc2(int **p);
362
363void mallocEscapeFreeCustomAlloc() {
364 int *p = malloc(12);
365 myfoo(p);
366 free(p);
367 p = myalloc();
368 free(p); // no warning
369}
370
371void mallocEscapeFreeCustomAlloc2() {
372 int *p = malloc(12);
373 myfoo(p);
374 free(p);
375 myalloc2(&p);
376 free(p); // no warning
377}
378
379void mallocBindFreeUse() {
380 int *x = malloc(12);
381 int *y = x;
382 free(y);
Anna Zaksfebdc322012-02-16 22:26:12 +0000383 myfoo(x); // expected-warning{{Use of memory after it is freed}}
Anna Zaks91c2a112012-02-08 23:16:56 +0000384}
385
386void mallocEscapeMalloc() {
387 int *p = malloc(12);
388 myfoo(p);
Jordan Rose63bc1862012-11-15 19:11:43 +0000389 p = malloc(12);
Anna Zaks68eb4c22013-04-06 00:41:36 +0000390} // expected-warning{{Potential leak of memory pointed to by}}
Anna Zaks91c2a112012-02-08 23:16:56 +0000391
392void mallocMalloc() {
393 int *p = malloc(12);
Jordan Rose63bc1862012-11-15 19:11:43 +0000394 p = malloc(12);
Anna Zaks68eb4c22013-04-06 00:41:36 +0000395} // expected-warning {{Potential leak of memory pointed to by}}
Anna Zaks91c2a112012-02-08 23:16:56 +0000396
397void mallocFreeMalloc() {
398 int *p = malloc(12);
399 free(p);
400 p = malloc(12);
401 free(p);
402}
403
Anna Zakscdfec5e2012-02-09 06:25:47 +0000404void mallocFreeUse_params() {
Anna Zaks91c2a112012-02-08 23:16:56 +0000405 int *p = malloc(12);
406 free(p);
Anna Zaksfebdc322012-02-16 22:26:12 +0000407 myfoo(p); //expected-warning{{Use of memory after it is freed}}
Anna Zaks15d0ae12012-02-11 23:46:36 +0000408}
409
410void mallocFreeUse_params2() {
411 int *p = malloc(12);
412 free(p);
Anna Zaksfebdc322012-02-16 22:26:12 +0000413 myfooint(*p); //expected-warning{{Use of memory after it is freed}}
Anna Zaks91c2a112012-02-08 23:16:56 +0000414}
415
Anna Zaksff3b9fd2012-02-09 06:25:51 +0000416void mallocFailedOrNot() {
417 int *p = malloc(12);
418 if (!p)
419 free(p);
420 else
421 free(p);
422}
423
Anna Zakse9ef5622012-02-10 01:11:00 +0000424struct StructWithInt {
425 int g;
426};
Anna Zaks0860cd02012-02-11 21:44:39 +0000427
428int *mallocReturnFreed() {
429 int *p = malloc(12);
430 free(p);
Anna Zaksfebdc322012-02-16 22:26:12 +0000431 return p; // expected-warning {{Use of memory after it is freed}}
Anna Zaks0860cd02012-02-11 21:44:39 +0000432}
433
434int useAfterFreeStruct() {
435 struct StructWithInt *px= malloc(sizeof(struct StructWithInt));
436 px->g = 5;
437 free(px);
Anna Zaksfebdc322012-02-16 22:26:12 +0000438 return px->g; // expected-warning {{Use of memory after it is freed}}
Anna Zaks0860cd02012-02-11 21:44:39 +0000439}
440
Anna Zakse9ef5622012-02-10 01:11:00 +0000441void nonSymbolAsFirstArg(int *pp, struct StructWithInt *p);
442
443void mallocEscapeFooNonSymbolArg() {
444 struct StructWithInt *p = malloc(sizeof(struct StructWithInt));
445 nonSymbolAsFirstArg(&p->g, p);
446 return; // no warning
447}
448
Anna Zaks4fb54872012-02-11 21:02:35 +0000449void mallocFailedOrNotLeak() {
450 int *p = malloc(12);
451 if (p == 0)
452 return; // no warning
453 else
Anna Zaks68eb4c22013-04-06 00:41:36 +0000454 return; // expected-warning {{Potential leak of memory pointed to by}}
Anna Zaks4fb54872012-02-11 21:02:35 +0000455}
Anna Zakse9ef5622012-02-10 01:11:00 +0000456
Anna Zaksebc1d322012-02-15 00:11:28 +0000457void mallocAssignment() {
458 char *p = malloc(12);
Jordan Rose63bc1862012-11-15 19:11:43 +0000459 p = fooRetPtr();
460} // expected-warning {{leak}}
Anna Zaksebc1d322012-02-15 00:11:28 +0000461
Anna Zaksb16ce452012-02-15 00:11:22 +0000462int vallocTest() {
463 char *mem = valloc(12);
Anna Zaks68eb4c22013-04-06 00:41:36 +0000464 return 0; // expected-warning {{Potential leak of memory pointed to by}}
Anna Zaksb16ce452012-02-15 00:11:22 +0000465}
466
467void vallocEscapeFreeUse() {
468 int *p = valloc(12);
469 myfoo(p);
470 free(p);
Anna Zaksfebdc322012-02-16 22:26:12 +0000471 myfoo(p); // expected-warning{{Use of memory after it is freed}}
Anna Zaksb16ce452012-02-15 00:11:22 +0000472}
473
Anna Zakscdfec5e2012-02-09 06:25:47 +0000474int *Gl;
475struct GlStTy {
476 int *x;
477};
478
479struct GlStTy GlS = {0};
480
481void GlobalFree() {
482 free(Gl);
483}
484
485void GlobalMalloc() {
486 Gl = malloc(12);
487}
488
489void GlobalStructMalloc() {
490 int *a = malloc(12);
491 GlS.x = a;
492}
493
494void GlobalStructMallocFree() {
495 int *a = malloc(12);
496 GlS.x = a;
497 free(GlS.x);
498}
Anna Zaksf8b1c312012-02-10 01:11:03 +0000499
Anna Zaksad901a62012-02-16 22:26:15 +0000500char *ArrayG[12];
501
502void globalArrayTest() {
503 char *p = (char*)malloc(12);
504 ArrayG[0] = p;
505}
506
Anna Zaksac593002012-02-16 03:40:57 +0000507// Make sure that we properly handle a pointer stored into a local struct/array.
508typedef struct _StructWithPtr {
509 int *memP;
510} StructWithPtr;
511
512static StructWithPtr arrOfStructs[10];
513
514void testMalloc() {
515 int *x = malloc(12);
516 StructWithPtr St;
517 St.memP = x;
Jordan Rose0d53ab42012-08-08 18:23:31 +0000518 arrOfStructs[0] = St; // no-warning
Anna Zaksac593002012-02-16 03:40:57 +0000519}
520
521StructWithPtr testMalloc2() {
522 int *x = malloc(12);
523 StructWithPtr St;
524 St.memP = x;
Jordan Rose0d53ab42012-08-08 18:23:31 +0000525 return St; // no-warning
Anna Zaksac593002012-02-16 03:40:57 +0000526}
527
528int *testMalloc3() {
529 int *x = malloc(12);
530 int *y = x;
Jordan Rose0d53ab42012-08-08 18:23:31 +0000531 return y; // no-warning
Anna Zaksac593002012-02-16 03:40:57 +0000532}
533
Jordan Rose74f69822013-03-20 20:35:57 +0000534void testStructLeak() {
535 StructWithPtr St;
536 St.memP = malloc(12);
Anna Zaks68eb4c22013-04-06 00:41:36 +0000537 return; // expected-warning {{Potential leak of memory pointed to by 'St.memP'}}
Jordan Rose74f69822013-03-20 20:35:57 +0000538}
539
Anna Zaksd8a8a3b2012-02-17 22:35:34 +0000540void testElemRegion1() {
541 char *x = (void*)malloc(2);
542 int *ix = (int*)x;
543 free(&(x[0]));
544}
545
546void testElemRegion2(int **pp) {
547 int *p = malloc(12);
548 *pp = p;
549 free(pp[0]);
550}
551
552void testElemRegion3(int **pp) {
553 int *p = malloc(12);
554 *pp = p;
555 free(*pp);
556}
Anna Zaks4fb54872012-02-11 21:02:35 +0000557// Region escape testing.
558
559unsigned takePtrToPtr(int **p);
560void PassTheAddrOfAllocatedData(int f) {
561 int *p = malloc(12);
562 // We don't know what happens after the call. Should stop tracking here.
563 if (takePtrToPtr(&p))
564 f++;
565 free(p); // no warning
566}
567
568struct X {
569 int *p;
570};
571unsigned takePtrToStruct(struct X *s);
572int ** foo2(int *g, int f) {
573 int *p = malloc(12);
574 struct X *px= malloc(sizeof(struct X));
575 px->p = p;
576 // We don't know what happens after this call. Should not track px nor p.
577 if (takePtrToStruct(px))
578 f++;
579 free(p);
580 return 0;
581}
582
583struct X* RegInvalidationDetect1(struct X *s2) {
584 struct X *px= malloc(sizeof(struct X));
585 px->p = 0;
586 px = s2;
Anna Zaks68eb4c22013-04-06 00:41:36 +0000587 return px; // expected-warning {{Potential leak of memory pointed to by}}
Anna Zaks4fb54872012-02-11 21:02:35 +0000588}
589
590struct X* RegInvalidationGiveUp1() {
591 int *p = malloc(12);
592 struct X *px= malloc(sizeof(struct X));
593 px->p = p;
594 return px;
595}
596
597int **RegInvalidationDetect2(int **pp) {
598 int *p = malloc(12);
599 pp = &p;
600 pp++;
Anna Zaks68eb4c22013-04-06 00:41:36 +0000601 return 0;// expected-warning {{Potential leak of memory pointed to by}}
Anna Zaks4fb54872012-02-11 21:02:35 +0000602}
Anna Zaksf8b1c312012-02-10 01:11:03 +0000603
Anna Zaksf8b1c312012-02-10 01:11:03 +0000604extern void exit(int) __attribute__ ((__noreturn__));
605void mallocExit(int *g) {
606 struct xx *p = malloc(12);
Anna Zaksda046772012-02-11 21:02:40 +0000607 if (g != 0)
608 exit(1);
Anna Zaksf8b1c312012-02-10 01:11:03 +0000609 free(p);
610 return;
611}
612
Anna Zaksf8b1c312012-02-10 01:11:03 +0000613extern void __assert_fail (__const char *__assertion, __const char *__file,
614 unsigned int __line, __const char *__function)
615 __attribute__ ((__noreturn__));
616#define assert(expr) \
617 ((expr) ? (void)(0) : __assert_fail (#expr, __FILE__, __LINE__, __func__))
618void mallocAssert(int *g) {
619 struct xx *p = malloc(12);
620
Anna Zaksda046772012-02-11 21:02:40 +0000621 assert(g != 0);
Anna Zaksf8b1c312012-02-10 01:11:03 +0000622 free(p);
623 return;
624}
625
Anna Zaks15d0ae12012-02-11 23:46:36 +0000626void doNotInvalidateWhenPassedToSystemCalls(char *s) {
627 char *p = malloc(12);
628 strlen(p);
Jordan Rose63bc1862012-11-15 19:11:43 +0000629 strcpy(p, s);
630} // expected-warning {{leak}}
Anna Zaks15d0ae12012-02-11 23:46:36 +0000631
Anna Zaksf0dfc9c2012-02-17 22:35:31 +0000632// Rely on the CString checker evaluation of the strcpy API to convey that the result of strcpy is equal to p.
633void symbolLostWithStrcpy(char *s) {
634 char *p = malloc(12);
635 p = strcpy(p, s);
636 free(p);
637}
638
639
640// The same test as the one above, but with what is actually generated on a mac.
641static __inline char *
642__inline_strcpy_chk (char *restrict __dest, const char *restrict __src)
643{
644 return __builtin___strcpy_chk (__dest, __src, __builtin_object_size (__dest, 2 > 1));
645}
646
647void symbolLostWithStrcpy_InlineStrcpyVersion(char *s) {
648 char *p = malloc(12);
649 p = ((__builtin_object_size (p, 0) != (size_t) -1) ? __builtin___strcpy_chk (p, s, __builtin_object_size (p, 2 > 1)) : __inline_strcpy_chk (p, s));
650 free(p);
651}
Anna Zaksd9ab7bb2012-02-22 02:36:01 +0000652
653// Here we are returning a pointer one past the allocated value. An idiom which
654// can be used for implementing special malloc. The correct uses of this might
655// be rare enough so that we could keep this as a warning.
656static void *specialMalloc(int n){
657 int *p;
658 p = malloc( n+8 );
659 if( p ){
660 p[0] = n;
661 p++;
662 }
663 return p;
664}
665
666// Potentially, the user could free the struct by performing pointer arithmetic on the return value.
667// This is a variation of the specialMalloc issue, though probably would be more rare in correct code.
668int *specialMallocWithStruct() {
669 struct StructWithInt *px= malloc(sizeof(struct StructWithInt));
670 return &(px->g);
671}
672
Anna Zaks60a1fa42012-02-22 03:14:20 +0000673// Test various allocation/deallocation functions.
Anna Zaks60a1fa42012-02-22 03:14:20 +0000674void testStrdup(const char *s, unsigned validIndex) {
675 char *s2 = strdup(s);
Jordan Rose63bc1862012-11-15 19:11:43 +0000676 s2[validIndex + 1] = 'b';
Anna Zaks68eb4c22013-04-06 00:41:36 +0000677} // expected-warning {{Potential leak of memory pointed to by}}
Anna Zaks60a1fa42012-02-22 03:14:20 +0000678
679int testStrndup(const char *s, unsigned validIndex, unsigned size) {
680 char *s2 = strndup(s, size);
681 s2 [validIndex + 1] = 'b';
682 if (s2[validIndex] != 'a')
Anna Zaksca8e36e2012-02-23 21:38:21 +0000683 return 0;
Anna Zaks60a1fa42012-02-22 03:14:20 +0000684 else
Anna Zaks68eb4c22013-04-06 00:41:36 +0000685 return 1;// expected-warning {{Potential leak of memory pointed to by}}
Anna Zaks60a1fa42012-02-22 03:14:20 +0000686}
687
Anna Zaks87cb5be2012-02-22 19:24:52 +0000688void testStrdupContentIsDefined(const char *s, unsigned validIndex) {
689 char *s2 = strdup(s);
690 char result = s2[1];// no warning
691 free(s2);
692}
693
Anna Zaksca23eb22012-02-29 18:42:47 +0000694// ----------------------------------------------------------------------------
Anna Zaks0d389b82012-02-23 01:05:27 +0000695// Test the system library functions to which the pointer can escape.
Anna Zaksca23eb22012-02-29 18:42:47 +0000696// This tests false positive suppression.
Anna Zaks0d389b82012-02-23 01:05:27 +0000697
698// For now, we assume memory passed to pthread_specific escapes.
699// TODO: We could check that if a new pthread binding is set, the existing
700// binding must be freed; otherwise, a memory leak can occur.
701void testPthereadSpecificEscape(pthread_key_t key) {
702 void *buf = malloc(12);
703 pthread_setspecific(key, buf); // no warning
704}
705
Anna Zaksca23eb22012-02-29 18:42:47 +0000706// PR12101: Test funopen().
707static int releasePtr(void *_ctx) {
708 free(_ctx);
709 return 0;
710}
711FILE *useFunOpen() {
712 void *ctx = malloc(sizeof(int));
713 FILE *f = funopen(ctx, 0, 0, 0, releasePtr); // no warning
714 if (f == 0) {
715 free(ctx);
716 }
717 return f;
718}
719FILE *useFunOpenNoReleaseFunction() {
720 void *ctx = malloc(sizeof(int));
721 FILE *f = funopen(ctx, 0, 0, 0, 0);
722 if (f == 0) {
723 free(ctx);
724 }
725 return f; // expected-warning{{leak}}
726}
727
Jordan Rose85d7e012012-07-02 19:27:51 +0000728static int readNothing(void *_ctx, char *buf, int size) {
729 return 0;
730}
731FILE *useFunOpenReadNoRelease() {
732 void *ctx = malloc(sizeof(int));
733 FILE *f = funopen(ctx, readNothing, 0, 0, 0);
734 if (f == 0) {
735 free(ctx);
736 }
737 return f; // expected-warning{{leak}}
738}
739
Anna Zaksca23eb22012-02-29 18:42:47 +0000740// Test setbuf, setvbuf.
741int my_main_no_warning() {
742 char *p = malloc(100);
743 setvbuf(stdout, p, 0, 100);
744 return 0;
745}
746int my_main_no_warning2() {
747 char *p = malloc(100);
748 setbuf(__stdoutp, p);
749 return 0;
750}
751int my_main_warn(FILE *f) {
752 char *p = malloc(100);
753 setvbuf(f, p, 0, 100);
754 return 0;// expected-warning {{leak}}
755}
756
Ted Kremeneka99f8742012-03-05 23:06:19 +0000757// <rdar://problem/10978247>.
758// some people use stack allocated memory as an optimization to avoid
759// a heap allocation for small work sizes. This tests the analyzer's
760// understanding that the malloc'ed memory is not the same as stackBuffer.
761void radar10978247(int myValueSize) {
762 char stackBuffer[128];
763 char *buffer;
764
765 if (myValueSize <= sizeof(stackBuffer))
766 buffer = stackBuffer;
767 else
768 buffer = malloc(myValueSize);
769
770 // do stuff with the buffer
771 if (buffer != stackBuffer)
772 free(buffer);
773}
774
775void radar10978247_positive(int myValueSize) {
776 char stackBuffer[128];
777 char *buffer;
778
779 if (myValueSize <= sizeof(stackBuffer))
780 buffer = stackBuffer;
781 else
782 buffer = malloc(myValueSize);
783
784 // do stuff with the buffer
Jordan Rose63bc1862012-11-15 19:11:43 +0000785 if (buffer == stackBuffer)
Ted Kremeneka99f8742012-03-05 23:06:19 +0000786 return;
Jordan Rose63bc1862012-11-15 19:11:43 +0000787 else
788 return; // expected-warning {{leak}}
789}
Ted Kremenek8f40afb2012-04-26 05:08:26 +0000790// <rdar://problem/11269741> Previously this triggered a false positive
791// because malloc() is known to return uninitialized memory and the binding
792// of 'o' to 'p->n' was not getting propertly handled. Now we report a leak.
793struct rdar11269741_a_t {
794 struct rdar11269741_b_t {
795 int m;
796 } n;
797};
798
799int rdar11269741(struct rdar11269741_b_t o)
800{
801 struct rdar11269741_a_t *p = (struct rdar11269741_a_t *) malloc(sizeof(*p));
802 p->n = o;
803 return p->n.m; // expected-warning {{leak}}
804}
805
Anna Zakse55a14a2012-05-03 02:13:56 +0000806// Pointer arithmetic, returning an ElementRegion.
807void *radar11329382(unsigned bl) {
808 void *ptr = malloc (16);
809 ptr = ptr + (2 - bl);
810 return ptr; // no warning
811}
812
Anna Zaks33e4a1d2012-05-01 21:10:29 +0000813void __assert_rtn(const char *, const char *, int, const char *) __attribute__((__noreturn__));
814int strcmp(const char *, const char *);
815char *a (void);
816void radar11270219(void) {
817 char *x = a(), *y = a();
818 (__builtin_expect(!(x && y), 0) ? __assert_rtn(__func__, "/Users/zaks/tmp/ex.c", 24, "x && y") : (void)0);
819 strcmp(x, y); // no warning
820}
821
Anna Zaks93c5a242012-05-02 00:05:20 +0000822void radar_11358224_test_double_assign_ints_positive_2()
823{
824 void *ptr = malloc(16);
Jordan Rose63bc1862012-11-15 19:11:43 +0000825 ptr = ptr;
826} // expected-warning {{leak}}
Anna Zaks93c5a242012-05-02 00:05:20 +0000827
Anna Zaksaca0ac52012-05-03 23:50:28 +0000828// Assume that functions which take a function pointer can free memory even if
829// they are defined in system headers and take the const pointer to the
830// allocated memory. (radar://11160612)
831int const_ptr_and_callback(int, const char*, int n, void(*)(void*));
832void r11160612_1() {
833 char *x = malloc(12);
834 const_ptr_and_callback(0, x, 12, free); // no - warning
835}
836
837// Null is passed as callback.
838void r11160612_2() {
839 char *x = malloc(12);
Jordan Rose63bc1862012-11-15 19:11:43 +0000840 const_ptr_and_callback(0, x, 12, 0);
841} // expected-warning {{leak}}
Anna Zaksaca0ac52012-05-03 23:50:28 +0000842
843// Callback is passed to a function defined in a system header.
844void r11160612_4() {
845 char *x = malloc(12);
846 sqlite3_bind_text_my(0, x, 12, free); // no - warning
847}
848
Anna Zaksb79d8622012-05-03 23:50:33 +0000849// Passing callbacks in a struct.
850void r11160612_5(StWithCallback St) {
851 void *x = malloc(12);
852 dealocateMemWhenDoneByVal(x, St);
853}
854void r11160612_6(StWithCallback St) {
855 void *x = malloc(12);
856 dealocateMemWhenDoneByRef(&St, x);
857}
858
Anna Zaks84d43842012-05-04 17:37:16 +0000859int mySub(int, int);
860int myAdd(int, int);
861int fPtr(unsigned cond, int x) {
862 return (cond ? mySub : myAdd)(x, x);
863}
864
Anna Zakse17fdb22012-06-07 03:57:32 +0000865// Test anti-aliasing.
Anna Zaksda046772012-02-11 21:02:40 +0000866
Anna Zaksf8b1c312012-02-10 01:11:03 +0000867void dependsOnValueOfPtr(int *g, unsigned f) {
868 int *p;
869
870 if (f) {
871 p = g;
872 } else {
873 p = malloc(12);
874 }
875
876 if (p != g)
877 free(p);
878 else
Anna Zakse17fdb22012-06-07 03:57:32 +0000879 return; // no warning
Anna Zaksf8b1c312012-02-10 01:11:03 +0000880 return;
881}
882
Anna Zakse17fdb22012-06-07 03:57:32 +0000883int CMPRegionHeapToStack() {
884 int x = 0;
885 int *x1 = malloc(8);
886 int *x2 = &x;
Anna Zaksadccc3f2012-06-08 00:04:40 +0000887 clang_analyzer_eval(x1 == x2); // expected-warning{{FALSE}}
Anna Zakse17fdb22012-06-07 03:57:32 +0000888 free(x1);
889 return x;
890}
891
892int CMPRegionHeapToHeap2() {
893 int x = 0;
894 int *x1 = malloc(8);
895 int *x2 = malloc(8);
896 int *x4 = x1;
897 int *x5 = x2;
Anna Zaksadccc3f2012-06-08 00:04:40 +0000898 clang_analyzer_eval(x4 == x5); // expected-warning{{FALSE}}
Anna Zakse17fdb22012-06-07 03:57:32 +0000899 free(x1);
900 free(x2);
901 return x;
902}
903
904int CMPRegionHeapToHeap() {
905 int x = 0;
906 int *x1 = malloc(8);
907 int *x4 = x1;
908 if (x1 == x4) {
909 free(x1);
910 return 5/x; // expected-warning{{Division by zero}}
911 }
912 return x;// expected-warning{{This statement is never executed}}
913}
914
915int HeapAssignment() {
916 int m = 0;
917 int *x = malloc(4);
918 int *y = x;
919 *x = 5;
Anna Zaksadccc3f2012-06-08 00:04:40 +0000920 clang_analyzer_eval(*x != *y); // expected-warning{{FALSE}}
Anna Zakse17fdb22012-06-07 03:57:32 +0000921 free(x);
922 return 0;
923}
924
Anna Zaks783f0082012-06-07 20:18:08 +0000925int *retPtr();
926int *retPtrMightAlias(int *x);
927int cmpHeapAllocationToUnknown() {
928 int zero = 0;
929 int *yBefore = retPtr();
930 int *m = malloc(8);
931 int *yAfter = retPtrMightAlias(m);
Anna Zaksadccc3f2012-06-08 00:04:40 +0000932 clang_analyzer_eval(yBefore == m); // expected-warning{{FALSE}}
933 clang_analyzer_eval(yAfter == m); // expected-warning{{FALSE}}
Anna Zaks783f0082012-06-07 20:18:08 +0000934 free(m);
935 return 0;
936}
937
Jordan Rose74f69822013-03-20 20:35:57 +0000938void localArrayTest() {
939 char *p = (char*)malloc(12);
940 char *ArrayL[12];
941 ArrayL[0] = p;
942} // expected-warning {{leak}}
943
944void localStructTest() {
945 StructWithPtr St;
946 StructWithPtr *pSt = &St;
947 pSt->memP = malloc(12);
Anna Zaks68eb4c22013-04-06 00:41:36 +0000948} // expected-warning{{Potential leak of memory pointed to by}}
Jordan Rose74f69822013-03-20 20:35:57 +0000949
Jordan Rose6e99f9f2012-11-27 02:37:49 +0000950#ifdef __INTPTR_TYPE__
Ted Kremenek140d0c62012-05-01 21:58:29 +0000951// Test double assignment through integers.
Jordan Rose6e99f9f2012-11-27 02:37:49 +0000952typedef __INTPTR_TYPE__ intptr_t;
953typedef unsigned __INTPTR_TYPE__ uintptr_t;
954
955static intptr_t glob;
Ted Kremenek140d0c62012-05-01 21:58:29 +0000956void test_double_assign_ints()
957{
958 void *ptr = malloc (16); // no-warning
Jordan Rose6e99f9f2012-11-27 02:37:49 +0000959 glob = (intptr_t)(uintptr_t)ptr;
Ted Kremenek140d0c62012-05-01 21:58:29 +0000960}
961
962void test_double_assign_ints_positive()
963{
964 void *ptr = malloc(16);
Jordan Rose6e99f9f2012-11-27 02:37:49 +0000965 (void*)(intptr_t)(uintptr_t)ptr; // expected-warning {{unused}}
Jordan Rose63bc1862012-11-15 19:11:43 +0000966} // expected-warning {{leak}}
Jordan Rose6e99f9f2012-11-27 02:37:49 +0000967#endif
Jordan Rose1bf908d2012-06-16 00:09:20 +0000968
969void testCGContextNoLeak()
970{
971 void *ptr = malloc(16);
972 CGContextRef context = CGBitmapContextCreate(ptr);
973
974 // Because you can get the data back out like this, even much later,
975 // CGBitmapContextCreate is one of our "stop-tracking" exceptions.
976 free(CGBitmapContextGetData(context));
977}
978
979void testCGContextLeak()
980{
981 void *ptr = malloc(16);
982 CGContextRef context = CGBitmapContextCreate(ptr);
983 // However, this time we're just leaking the data, because the context
984 // object doesn't escape and it hasn't been freed in this function.
985}
986
Anna Zaks52a04812012-06-20 23:35:57 +0000987// Allow xpc context to escape. radar://11635258
988// TODO: Would be great if we checked that the finalize_connection_context actually releases it.
989static void finalize_connection_context(void *ctx) {
990 int *context = ctx;
991 free(context);
992}
993void foo (xpc_connection_t peer) {
994 int *ctx = calloc(1, sizeof(int));
995 xpc_connection_set_context(peer, ctx);
996 xpc_connection_set_finalizer_f(peer, finalize_connection_context);
997 xpc_connection_resume(peer);
998}
999
Anna Zaksede875b2012-08-03 18:30:18 +00001000// Make sure we catch errors when we free in a function which does not allocate memory.
1001void freeButNoMalloc(int *p, int x){
1002 if (x) {
1003 free(p);
1004 //user forgot a return here.
1005 }
1006 free(p); // expected-warning {{Attempt to free released memory}}
1007}
Anna Zaks4d332862012-08-04 02:04:27 +00001008
1009struct HasPtr {
Anna Zaks55dd9562012-08-24 02:28:20 +00001010 char *p;
Anna Zaks4d332862012-08-04 02:04:27 +00001011};
1012
Anna Zaks55dd9562012-08-24 02:28:20 +00001013char* reallocButNoMalloc(struct HasPtr *a, int c, int size) {
Anna Zaks4d332862012-08-04 02:04:27 +00001014 int *s;
Anna Zaks55dd9562012-08-24 02:28:20 +00001015 char *b = realloc(a->p, size);
1016 char *m = realloc(a->p, size); // expected-warning {{Attempt to free released memory}}
Anna Zaks4d332862012-08-04 02:04:27 +00001017 return a->p;
1018}
Jordan Rose0d53ab42012-08-08 18:23:31 +00001019
Anna Zaks55dd9562012-08-24 02:28:20 +00001020// We should not warn in this case since the caller will presumably free a->p in all cases.
1021int reallocButNoMallocPR13674(struct HasPtr *a, int c, int size) {
1022 int *s;
1023 char *b = realloc(a->p, size);
1024 if (b == 0)
1025 return -1;
1026 a->p = b;
1027 return 0;
1028}
1029
Anna Zaks9dc298b2012-09-12 22:57:34 +00001030// Test realloc with no visible malloc.
1031void *test(void *ptr) {
1032 void *newPtr = realloc(ptr, 4);
1033 if (newPtr == 0) {
1034 if (ptr)
1035 free(ptr); // no-warning
1036 }
1037 return newPtr;
1038}
1039
Jordan Rose84c48452012-11-15 19:11:27 +00001040
1041char *testLeakWithinReturn(char *str) {
1042 return strdup(strdup(str)); // expected-warning{{leak}}
1043}
1044
Anna Zaks233e26a2013-02-07 23:05:43 +00001045void passConstPtr(const char * ptr);
1046
1047void testPassConstPointer() {
1048 char * string = malloc(sizeof(char)*10);
1049 passConstPtr(string);
1050 return; // expected-warning {{leak}}
1051}
1052
1053void testPassConstPointerIndirectly() {
1054 char *p = malloc(1);
1055 p++;
1056 memcmp(p, p, sizeof(&p));
1057 return; // expected-warning {{leak}}
1058}
1059
Anna Zaks233e26a2013-02-07 23:05:43 +00001060void testPassConstPointerIndirectlyStruct() {
1061 struct HasPtr hp;
1062 hp.p = malloc(10);
1063 memcmp(&hp, &hp, sizeof(hp));
Anna Zaks68eb4c22013-04-06 00:41:36 +00001064 return; // expected-warning {{Potential leak of memory pointed to by 'hp.p'}}
Anna Zaks233e26a2013-02-07 23:05:43 +00001065}
1066
1067void testPassToSystemHeaderFunctionIndirectlyStruct() {
1068 SomeStruct ss;
1069 ss.p = malloc(1);
Jordan Rose374ae322013-05-10 17:07:16 +00001070 fakeSystemHeaderCall(&ss); // invalidates ss, making ss.p unreachable
1071 // Technically a false negative here -- we know the system function won't free
1072 // ss.p, but nothing else will either!
1073} // no-warning
1074
1075void testPassToSystemHeaderFunctionIndirectlyStructFree() {
1076 SomeStruct ss;
1077 ss.p = malloc(1);
1078 fakeSystemHeaderCall(&ss); // invalidates ss, making ss.p unreachable
1079 free(ss.p);
1080} // no-warning
1081
1082void testPassToSystemHeaderFunctionIndirectlyArray() {
1083 int *p[1];
1084 p[0] = malloc(sizeof(int));
1085 fakeSystemHeaderCallIntPtr(p); // invalidates p, making p[0] unreachable
1086 // Technically a false negative here -- we know the system function won't free
1087 // p[0], but nothing else will either!
1088} // no-warning
1089
1090void testPassToSystemHeaderFunctionIndirectlyArrayFree() {
1091 int *p[1];
1092 p[0] = malloc(sizeof(int));
1093 fakeSystemHeaderCallIntPtr(p); // invalidates p, making p[0] unreachable
1094 free(p[0]);
1095} // no-warning
Anna Zaksb98c6fe2013-02-06 00:01:14 +00001096
Anna Zaks118aa752013-02-07 23:05:47 +00001097int *testOffsetAllocate(size_t size) {
1098 int *memoryBlock = (int *)malloc(size + sizeof(int));
1099 return &memoryBlock[1]; // no-warning
1100}
1101
1102void testOffsetDeallocate(int *memoryBlock) {
1103 free(&memoryBlock[-1]); // no-warning
1104}
1105
1106void testOffsetOfRegionFreed() {
1107 __int64_t * array = malloc(sizeof(__int64_t)*2);
1108 array += 1;
1109 free(&array[0]); // expected-warning{{Argument to free() is offset by 8 bytes from the start of memory allocated by malloc()}}
1110}
1111
1112void testOffsetOfRegionFreed2() {
1113 __int64_t *p = malloc(sizeof(__int64_t)*2);
1114 p += 1;
1115 free(p); // expected-warning{{Argument to free() is offset by 8 bytes from the start of memory allocated by malloc()}}
1116}
1117
1118void testOffsetOfRegionFreed3() {
1119 char *r = malloc(sizeof(char));
1120 r = r - 10;
1121 free(r); // expected-warning {{Argument to free() is offset by -10 bytes from the start of memory allocated by malloc()}}
1122}
1123
1124void testOffsetOfRegionFreedAfterFunctionCall() {
1125 int *p = malloc(sizeof(int)*2);
1126 p += 1;
1127 myfoo(p);
Anna Zaks04130232013-04-09 00:30:28 +00001128 free(p); // expected-warning{{Argument to free() is offset by 4 bytes from the start of memory allocated by malloc()}}
Anna Zaks118aa752013-02-07 23:05:47 +00001129}
1130
1131void testFixManipulatedPointerBeforeFree() {
1132 int * array = malloc(sizeof(int)*2);
1133 array += 1;
1134 free(&array[-1]); // no-warning
1135}
1136
1137void testFixManipulatedPointerBeforeFree2() {
1138 char *r = malloc(sizeof(char));
1139 r = r + 10;
1140 free(r-10); // no-warning
1141}
1142
1143void freeOffsetPointerPassedToFunction() {
1144 __int64_t *p = malloc(sizeof(__int64_t)*2);
1145 p[1] = 0;
1146 p += 1;
1147 myfooint(*p); // not passing the pointer, only a value pointed by pointer
1148 free(p); // expected-warning {{Argument to free() is offset by 8 bytes from the start of memory allocated by malloc()}}
1149}
1150
1151int arbitraryInt();
1152void freeUnknownOffsetPointer() {
1153 char *r = malloc(sizeof(char));
1154 r = r + arbitraryInt(); // unable to reason about what the offset might be
1155 free(r); // no-warning
1156}
1157
1158void testFreeNonMallocPointerWithNoOffset() {
1159 char c;
1160 char *r = &c;
1161 r = r + 10;
1162 free(r-10); // expected-warning {{Argument to free() is the address of the local variable 'c', which is not memory allocated by malloc()}}
1163}
1164
1165void testFreeNonMallocPointerWithOffset() {
1166 char c;
1167 char *r = &c;
1168 free(r+1); // expected-warning {{Argument to free() is the address of the local variable 'c', which is not memory allocated by malloc()}}
1169}
1170
1171void testOffsetZeroDoubleFree() {
1172 int *array = malloc(sizeof(int)*2);
1173 int *p = &array[0];
1174 free(p);
1175 free(&array[0]); // expected-warning{{Attempt to free released memory}}
1176}
1177
1178void testOffsetPassedToStrlen() {
1179 char * string = malloc(sizeof(char)*10);
1180 string += 1;
Anna Zaks68eb4c22013-04-06 00:41:36 +00001181 int length = strlen(string); // expected-warning {{Potential leak of memory pointed to by 'string'}}
Anna Zaks118aa752013-02-07 23:05:47 +00001182}
1183
1184void testOffsetPassedToStrlenThenFree() {
1185 char * string = malloc(sizeof(char)*10);
1186 string += 1;
1187 int length = strlen(string);
1188 free(string); // expected-warning {{Argument to free() is offset by 1 byte from the start of memory allocated by malloc()}}
1189}
1190
1191void testOffsetPassedAsConst() {
1192 char * string = malloc(sizeof(char)*10);
1193 string += 1;
1194 passConstPtr(string);
1195 free(string); // expected-warning {{Argument to free() is offset by 1 byte from the start of memory allocated by malloc()}}
1196}
Anna Zaksb98c6fe2013-02-06 00:01:14 +00001197
Anna Zaks74c0d692013-03-15 23:34:29 +00001198char **_vectorSegments;
1199int _nVectorSegments;
1200
1201void poolFreeC(void* s) {
1202 free(s); // no-warning
1203}
1204void freeMemory() {
1205 while (_nVectorSegments) {
1206 poolFreeC(_vectorSegments[_nVectorSegments++]);
1207 }
1208}
Jordan Rose74f69822013-03-20 20:35:57 +00001209
1210// ----------------------------------------------------------------------------
1211// False negatives.
1212
1213void testMallocWithParam(int **p) {
1214 *p = (int*) malloc(sizeof(int));
1215 *p = 0; // FIXME: should warn here
1216}
1217
1218void testMallocWithParam_2(int **p) {
1219 *p = (int*) malloc(sizeof(int)); // no-warning
1220}
Jordan Rose374ae322013-05-10 17:07:16 +00001221
1222void testPassToSystemHeaderFunctionIndirectly() {
1223 int *p = malloc(4);
1224 p++;
1225 fakeSystemHeaderCallInt(p);
1226 // FIXME: This is a leak: if we think a system function won't free p, it
1227 // won't free (p-1) either.
1228}