blob: f475fee1b4768b92aed1d4b5e228ca449d1ba079 [file] [log] [blame]
Ted Kremenek033a07e2011-08-03 23:14:55 +00001// RUN: %clang_cc1 -analyze -analyzer-checker=core,experimental.deadcode.UnreachableCode,experimental.core.CastSize,experimental.unix.Malloc -analyzer-store=region -verify %s
Anna Zaks15d0ae12012-02-11 23:46:36 +00002#include "system-header-simulator.h"
3
Eli Friedman2f005522009-11-14 04:23:25 +00004typedef __typeof(sizeof(int)) size_t;
Ted Kremenekc3607752009-11-13 20:03:22 +00005void *malloc(size_t);
Anna Zaksb16ce452012-02-15 00:11:22 +00006void *valloc(size_t);
Ted Kremenekc3607752009-11-13 20:03:22 +00007void free(void *);
Zhongxing Xud9c84c82009-12-12 12:29:38 +00008void *realloc(void *ptr, size_t size);
Anna Zaks40add292012-02-15 00:11:25 +00009void *reallocf(void *ptr, size_t size);
Zhongxing Xud9c84c82009-12-12 12:29:38 +000010void *calloc(size_t nmemb, size_t size);
Ted Kremenekdd0e4902010-07-31 01:52:11 +000011
Anna Zaks91c2a112012-02-08 23:16:56 +000012void myfoo(int *p);
13void myfooint(int p);
Anna Zaksebc1d322012-02-15 00:11:28 +000014char *fooRetPtr();
Zhongxing Xufc7ac8f2009-11-13 07:48:11 +000015
16void f1() {
Zhongxing Xuab280992010-05-25 04:59:19 +000017 int *p = malloc(12);
Anna Zaksfebdc322012-02-16 22:26:12 +000018 return; // expected-warning{{Memory is never released; potential memory leak}}
Zhongxing Xufc7ac8f2009-11-13 07:48:11 +000019}
20
Zhongxing Xufc7ac8f2009-11-13 07:48:11 +000021void f2() {
Zhongxing Xuab280992010-05-25 04:59:19 +000022 int *p = malloc(12);
Zhongxing Xufc7ac8f2009-11-13 07:48:11 +000023 free(p);
Anna Zaksfebdc322012-02-16 22:26:12 +000024 free(p); // expected-warning{{Attempt to free released memory}}
Zhongxing Xufc7ac8f2009-11-13 07:48:11 +000025}
Ted Kremenekc764d4b2009-11-13 20:00:28 +000026
Lenny Maiorani4d8d8032011-04-27 14:49:29 +000027void f2_realloc_0() {
28 int *p = malloc(12);
29 realloc(p,0);
Anna Zaksfebdc322012-02-16 22:26:12 +000030 realloc(p,0); // expected-warning{{Attempt to free released memory}}
Lenny Maiorani4d8d8032011-04-27 14:49:29 +000031}
32
33void f2_realloc_1() {
34 int *p = malloc(12);
Zhongxing Xud56763f2011-09-01 04:53:59 +000035 int *q = realloc(p,0); // no-warning
Lenny Maiorani4d8d8032011-04-27 14:49:29 +000036}
37
Anna Zaksc8bb3be2012-02-13 18:05:39 +000038void reallocNotNullPtr(unsigned sizeIn) {
39 unsigned size = 12;
40 char *p = (char*)malloc(size);
41 if (p) {
42 char *q = (char*)realloc(p, sizeIn);
Anna Zaksfebdc322012-02-16 22:26:12 +000043 char x = *q; // expected-warning {{Memory is never released; potential memory leak}}
Anna Zaksc8bb3be2012-02-13 18:05:39 +000044 }
45}
46
47int *realloctest1() {
48 int *q = malloc(12);
49 q = realloc(q, 20);
50 return q; // no warning - returning the allocated value
51}
52
53// p should be freed if realloc fails.
54void reallocFails() {
55 char *p = malloc(12);
56 char *r = realloc(p, 12+1);
57 if (!r) {
58 free(p);
59 } else {
60 free(r);
61 }
62}
63
Anna Zaks30838b92012-02-13 20:57:07 +000064void reallocSizeZero1() {
65 char *p = malloc(12);
66 char *r = realloc(p, 0);
67 if (!r) {
68 free(p);
69 } else {
70 free(r);
71 }
72}
73
74void reallocSizeZero2() {
75 char *p = malloc(12);
76 char *r = realloc(p, 0);
77 if (!r) {
78 free(p);
79 } else {
80 free(r);
81 }
Anna Zaksfebdc322012-02-16 22:26:12 +000082 free(p); // expected-warning {{Attempt to free released memory}}
Anna Zaks30838b92012-02-13 20:57:07 +000083}
84
85void reallocSizeZero3() {
86 char *p = malloc(12);
87 char *r = realloc(p, 0);
88 free(r);
89}
90
91void reallocSizeZero4() {
92 char *r = realloc(0, 0);
93 free(r);
94}
95
96void reallocSizeZero5() {
97 char *r = realloc(0, 0);
98}
99
100void reallocPtrZero1() {
Anna Zaksfebdc322012-02-16 22:26:12 +0000101 char *r = realloc(0, 12); // expected-warning {{Memory is never released; potential memory leak}}
Anna Zaks30838b92012-02-13 20:57:07 +0000102}
103
104void reallocPtrZero2() {
105 char *r = realloc(0, 12);
106 if (r)
107 free(r);
108}
109
110void reallocPtrZero3() {
111 char *r = realloc(0, 12);
112 free(r);
113}
114
Anna Zaksb276bd92012-02-14 00:26:13 +0000115void reallocRadar6337483_1() {
116 char *buf = malloc(100);
117 buf = (char*)realloc(buf, 0x1000000);
118 if (!buf) {
Anna Zaksfebdc322012-02-16 22:26:12 +0000119 return;// expected-warning {{Memory is never released; potential memory leak}}
Anna Zaksb276bd92012-02-14 00:26:13 +0000120 }
121 free(buf);
122}
123
124void reallocRadar6337483_2() {
125 char *buf = malloc(100);
126 char *buf2 = (char*)realloc(buf, 0x1000000);
Anna Zaksfebdc322012-02-16 22:26:12 +0000127 if (!buf2) { // expected-warning {{Memory is never released; potential memory leak}}
Anna Zaksb276bd92012-02-14 00:26:13 +0000128 ;
129 } else {
130 free(buf2);
131 }
132}
133
134void reallocRadar6337483_3() {
135 char * buf = malloc(100);
136 char * tmp;
137 tmp = (char*)realloc(buf, 0x1000000);
138 if (!tmp) {
139 free(buf);
140 return;
141 }
142 buf = tmp;
143 free(buf);
144}
145
146void reallocRadar6337483_4() {
147 char *buf = malloc(100);
148 char *buf2 = (char*)realloc(buf, 0x1000000);
149 if (!buf2) {
Anna Zaksfebdc322012-02-16 22:26:12 +0000150 return; // expected-warning {{Memory is never released; potential memory leak}}
Anna Zaksb276bd92012-02-14 00:26:13 +0000151 } else {
152 free(buf2);
153 }
154}
155
Anna Zaks40add292012-02-15 00:11:25 +0000156int *reallocfTest1() {
157 int *q = malloc(12);
158 q = reallocf(q, 20);
159 return q; // no warning - returning the allocated value
160}
161
162void reallocfRadar6337483_4() {
163 char *buf = malloc(100);
164 char *buf2 = (char*)reallocf(buf, 0x1000000);
165 if (!buf2) {
166 return; // no warning - reallocf frees even on failure
167 } else {
168 free(buf2);
169 }
170}
171
172void reallocfRadar6337483_3() {
173 char * buf = malloc(100);
174 char * tmp;
175 tmp = (char*)reallocf(buf, 0x1000000);
176 if (!tmp) {
Anna Zaksfebdc322012-02-16 22:26:12 +0000177 free(buf); // expected-warning {{Attempt to free released memory}}
Anna Zaks40add292012-02-15 00:11:25 +0000178 return;
179 }
180 buf = tmp;
181 free(buf);
182}
183
184void reallocfPtrZero1() {
Anna Zaksfebdc322012-02-16 22:26:12 +0000185 char *r = reallocf(0, 12); // expected-warning {{Memory is never released; potential memory leak}}
Anna Zaks40add292012-02-15 00:11:25 +0000186}
187
188
Zhongxing Xu243fde92009-11-17 07:54:15 +0000189// This case tests that storing malloc'ed memory to a static variable which is
190// then returned is not leaked. In the absence of known contracts for functions
191// or inter-procedural analysis, this is a conservative answer.
Ted Kremenekc764d4b2009-11-13 20:00:28 +0000192int *f3() {
193 static int *p = 0;
Zhongxing Xuab280992010-05-25 04:59:19 +0000194 p = malloc(12);
Zhongxing Xu4985e3e2009-11-17 08:58:18 +0000195 return p; // no-warning
Ted Kremenekc764d4b2009-11-13 20:00:28 +0000196}
197
Zhongxing Xu243fde92009-11-17 07:54:15 +0000198// This case tests that storing malloc'ed memory to a static global variable
199// which is then returned is not leaked. In the absence of known contracts for
200// functions or inter-procedural analysis, this is a conservative answer.
Ted Kremenekc764d4b2009-11-13 20:00:28 +0000201static int *p_f4 = 0;
202int *f4() {
Zhongxing Xuab280992010-05-25 04:59:19 +0000203 p_f4 = malloc(12);
Zhongxing Xu4985e3e2009-11-17 08:58:18 +0000204 return p_f4; // no-warning
Ted Kremenekc764d4b2009-11-13 20:00:28 +0000205}
Zhongxing Xud9c84c82009-12-12 12:29:38 +0000206
207int *f5() {
Zhongxing Xuab280992010-05-25 04:59:19 +0000208 int *q = malloc(12);
Zhongxing Xud9c84c82009-12-12 12:29:38 +0000209 q = realloc(q, 20);
210 return q; // no-warning
211}
Zhongxing Xub94b81a2009-12-31 06:13:07 +0000212
213void f6() {
Zhongxing Xuab280992010-05-25 04:59:19 +0000214 int *p = malloc(12);
Zhongxing Xub94b81a2009-12-31 06:13:07 +0000215 if (!p)
216 return; // no-warning
217 else
218 free(p);
219}
Zhongxing Xu425c7ed2010-01-18 04:01:40 +0000220
Lenny Maiorani4d8d8032011-04-27 14:49:29 +0000221void f6_realloc() {
222 int *p = malloc(12);
223 if (!p)
224 return; // no-warning
225 else
226 realloc(p,0);
227}
228
229
Zhongxing Xu425c7ed2010-01-18 04:01:40 +0000230char *doit2();
231void pr6069() {
232 char *buf = doit2();
233 free(buf);
234}
Zhongxing Xu181cc3d2010-02-14 06:49:48 +0000235
236void pr6293() {
237 free(0);
238}
Zhongxing Xuc8023782010-03-10 04:58:55 +0000239
240void f7() {
241 char *x = (char*) malloc(4);
242 free(x);
Anna Zaksfebdc322012-02-16 22:26:12 +0000243 x[0] = 'a'; // expected-warning{{Use of memory after it is freed}}
Zhongxing Xuc8023782010-03-10 04:58:55 +0000244}
Zhongxing Xuab280992010-05-25 04:59:19 +0000245
Lenny Maiorani4d8d8032011-04-27 14:49:29 +0000246void f7_realloc() {
247 char *x = (char*) malloc(4);
248 realloc(x,0);
Anna Zaksfebdc322012-02-16 22:26:12 +0000249 x[0] = 'a'; // expected-warning{{Use of memory after it is freed}}
Lenny Maiorani4d8d8032011-04-27 14:49:29 +0000250}
251
Zhongxing Xuab280992010-05-25 04:59:19 +0000252void PR6123() {
253 int *x = malloc(11); // expected-warning{{Cast a region whose size is not a multiple of the destination type size.}}
254}
255
256void PR7217() {
257 int *buf = malloc(2); // expected-warning{{Cast a region whose size is not a multiple of the destination type size.}}
258 buf[1] = 'c'; // not crash
Zhongxing Xuab280992010-05-25 04:59:19 +0000259}
Jordy Rosec580f2e2010-06-20 04:30:57 +0000260
261void mallocCastToVoid() {
262 void *p = malloc(2);
263 const void *cp = p; // not crash
264 free(p);
265}
266
267void mallocCastToFP() {
268 void *p = malloc(2);
269 void (*fp)() = p; // not crash
270 free(p);
271}
272
Zhongxing Xua5ce9662010-06-01 03:01:33 +0000273// This tests that malloc() buffers are undefined by default
274char mallocGarbage () {
275 char *buf = malloc(2);
276 char result = buf[1]; // expected-warning{{undefined}}
277 free(buf);
278 return result;
279}
280
281// This tests that calloc() buffers need to be freed
282void callocNoFree () {
283 char *buf = calloc(2,2);
284 return; // expected-warning{{never released}}
285}
286
287// These test that calloc() buffers are zeroed by default
288char callocZeroesGood () {
289 char *buf = calloc(2,2);
290 char result = buf[3]; // no-warning
291 if (buf[1] == 0) {
292 free(buf);
293 }
294 return result; // no-warning
295}
296
297char callocZeroesBad () {
298 char *buf = calloc(2,2);
299 char result = buf[3]; // no-warning
300 if (buf[1] != 0) {
Tom Carec4b5bd82010-07-23 23:04:53 +0000301 free(buf); // expected-warning{{never executed}}
Zhongxing Xua5ce9662010-06-01 03:01:33 +0000302 }
303 return result; // expected-warning{{never released}}
304}
Anna Zaks91c2a112012-02-08 23:16:56 +0000305
306void nullFree() {
307 int *p = 0;
308 free(p); // no warning - a nop
309}
310
311void paramFree(int *p) {
312 myfoo(p);
313 free(p); // no warning
314 myfoo(p); // TODO: This should be a warning.
315}
316
317int* mallocEscapeRet() {
318 int *p = malloc(12);
319 return p; // no warning
320}
321
322void mallocEscapeFoo() {
323 int *p = malloc(12);
324 myfoo(p);
325 return; // no warning
326}
327
328void mallocEscapeFree() {
329 int *p = malloc(12);
330 myfoo(p);
331 free(p);
332}
333
334void mallocEscapeFreeFree() {
335 int *p = malloc(12);
336 myfoo(p);
337 free(p);
Anna Zaksfebdc322012-02-16 22:26:12 +0000338 free(p); // expected-warning{{Attempt to free released memory}}
Anna Zaks91c2a112012-02-08 23:16:56 +0000339}
340
341void mallocEscapeFreeUse() {
342 int *p = malloc(12);
343 myfoo(p);
344 free(p);
Anna Zaksfebdc322012-02-16 22:26:12 +0000345 myfoo(p); // expected-warning{{Use of memory after it is freed}}
Anna Zaks91c2a112012-02-08 23:16:56 +0000346}
347
348int *myalloc();
349void myalloc2(int **p);
350
351void mallocEscapeFreeCustomAlloc() {
352 int *p = malloc(12);
353 myfoo(p);
354 free(p);
355 p = myalloc();
356 free(p); // no warning
357}
358
359void mallocEscapeFreeCustomAlloc2() {
360 int *p = malloc(12);
361 myfoo(p);
362 free(p);
363 myalloc2(&p);
364 free(p); // no warning
365}
366
367void mallocBindFreeUse() {
368 int *x = malloc(12);
369 int *y = x;
370 free(y);
Anna Zaksfebdc322012-02-16 22:26:12 +0000371 myfoo(x); // expected-warning{{Use of memory after it is freed}}
Anna Zaks91c2a112012-02-08 23:16:56 +0000372}
373
374void mallocEscapeMalloc() {
375 int *p = malloc(12);
376 myfoo(p);
Anna Zaksfebdc322012-02-16 22:26:12 +0000377 p = malloc(12); // expected-warning{{Memory is never released; potential memory leak}}
Anna Zaks91c2a112012-02-08 23:16:56 +0000378}
379
380void mallocMalloc() {
381 int *p = malloc(12);
Anna Zaksfebdc322012-02-16 22:26:12 +0000382 p = malloc(12); // expected-warning{{Memory is never released; potential memory leak}}
Anna Zaks91c2a112012-02-08 23:16:56 +0000383}
384
385void mallocFreeMalloc() {
386 int *p = malloc(12);
387 free(p);
388 p = malloc(12);
389 free(p);
390}
391
Anna Zakscdfec5e2012-02-09 06:25:47 +0000392void mallocFreeUse_params() {
Anna Zaks91c2a112012-02-08 23:16:56 +0000393 int *p = malloc(12);
394 free(p);
Anna Zaksfebdc322012-02-16 22:26:12 +0000395 myfoo(p); //expected-warning{{Use of memory after it is freed}}
Anna Zaks15d0ae12012-02-11 23:46:36 +0000396}
397
398void mallocFreeUse_params2() {
399 int *p = malloc(12);
400 free(p);
Anna Zaksfebdc322012-02-16 22:26:12 +0000401 myfooint(*p); //expected-warning{{Use of memory after it is freed}}
Anna Zaks91c2a112012-02-08 23:16:56 +0000402}
403
Anna Zaksff3b9fd2012-02-09 06:25:51 +0000404void mallocFailedOrNot() {
405 int *p = malloc(12);
406 if (!p)
407 free(p);
408 else
409 free(p);
410}
411
Anna Zakse9ef5622012-02-10 01:11:00 +0000412struct StructWithInt {
413 int g;
414};
Anna Zaks0860cd02012-02-11 21:44:39 +0000415
416int *mallocReturnFreed() {
417 int *p = malloc(12);
418 free(p);
Anna Zaksfebdc322012-02-16 22:26:12 +0000419 return p; // expected-warning {{Use of memory after it is freed}}
Anna Zaks0860cd02012-02-11 21:44:39 +0000420}
421
422int useAfterFreeStruct() {
423 struct StructWithInt *px= malloc(sizeof(struct StructWithInt));
424 px->g = 5;
425 free(px);
Anna Zaksfebdc322012-02-16 22:26:12 +0000426 return px->g; // expected-warning {{Use of memory after it is freed}}
Anna Zaks0860cd02012-02-11 21:44:39 +0000427}
428
Anna Zakse9ef5622012-02-10 01:11:00 +0000429void nonSymbolAsFirstArg(int *pp, struct StructWithInt *p);
430
431void mallocEscapeFooNonSymbolArg() {
432 struct StructWithInt *p = malloc(sizeof(struct StructWithInt));
433 nonSymbolAsFirstArg(&p->g, p);
434 return; // no warning
435}
436
Anna Zaks4fb54872012-02-11 21:02:35 +0000437void mallocFailedOrNotLeak() {
438 int *p = malloc(12);
439 if (p == 0)
440 return; // no warning
441 else
Anna Zaksfebdc322012-02-16 22:26:12 +0000442 return; // expected-warning {{Memory is never released; potential memory leak}}
Anna Zaks4fb54872012-02-11 21:02:35 +0000443}
Anna Zakse9ef5622012-02-10 01:11:00 +0000444
Anna Zaksebc1d322012-02-15 00:11:28 +0000445void mallocAssignment() {
446 char *p = malloc(12);
447 p = fooRetPtr(); // expected-warning {{leak}}
448}
449
Anna Zaksb16ce452012-02-15 00:11:22 +0000450int vallocTest() {
451 char *mem = valloc(12);
Anna Zaksfebdc322012-02-16 22:26:12 +0000452 return 0; // expected-warning {{Memory is never released; potential memory leak}}
Anna Zaksb16ce452012-02-15 00:11:22 +0000453}
454
455void vallocEscapeFreeUse() {
456 int *p = valloc(12);
457 myfoo(p);
458 free(p);
Anna Zaksfebdc322012-02-16 22:26:12 +0000459 myfoo(p); // expected-warning{{Use of memory after it is freed}}
Anna Zaksb16ce452012-02-15 00:11:22 +0000460}
461
Anna Zakscdfec5e2012-02-09 06:25:47 +0000462int *Gl;
463struct GlStTy {
464 int *x;
465};
466
467struct GlStTy GlS = {0};
468
469void GlobalFree() {
470 free(Gl);
471}
472
473void GlobalMalloc() {
474 Gl = malloc(12);
475}
476
477void GlobalStructMalloc() {
478 int *a = malloc(12);
479 GlS.x = a;
480}
481
482void GlobalStructMallocFree() {
483 int *a = malloc(12);
484 GlS.x = a;
485 free(GlS.x);
486}
Anna Zaksf8b1c312012-02-10 01:11:03 +0000487
Anna Zaksad901a62012-02-16 22:26:15 +0000488char *ArrayG[12];
489
490void globalArrayTest() {
491 char *p = (char*)malloc(12);
492 ArrayG[0] = p;
493}
494
Anna Zaksac593002012-02-16 03:40:57 +0000495// Make sure that we properly handle a pointer stored into a local struct/array.
496typedef struct _StructWithPtr {
497 int *memP;
498} StructWithPtr;
499
500static StructWithPtr arrOfStructs[10];
501
502void testMalloc() {
503 int *x = malloc(12);
504 StructWithPtr St;
505 St.memP = x;
506 arrOfStructs[0] = St;
507}
508
509StructWithPtr testMalloc2() {
510 int *x = malloc(12);
511 StructWithPtr St;
512 St.memP = x;
513 return St;
514}
515
516int *testMalloc3() {
517 int *x = malloc(12);
518 int *y = x;
519 return y;
520}
521
Anna Zaks4fb54872012-02-11 21:02:35 +0000522// Region escape testing.
523
524unsigned takePtrToPtr(int **p);
525void PassTheAddrOfAllocatedData(int f) {
526 int *p = malloc(12);
527 // We don't know what happens after the call. Should stop tracking here.
528 if (takePtrToPtr(&p))
529 f++;
530 free(p); // no warning
531}
532
533struct X {
534 int *p;
535};
536unsigned takePtrToStruct(struct X *s);
537int ** foo2(int *g, int f) {
538 int *p = malloc(12);
539 struct X *px= malloc(sizeof(struct X));
540 px->p = p;
541 // We don't know what happens after this call. Should not track px nor p.
542 if (takePtrToStruct(px))
543 f++;
544 free(p);
545 return 0;
546}
547
548struct X* RegInvalidationDetect1(struct X *s2) {
549 struct X *px= malloc(sizeof(struct X));
550 px->p = 0;
551 px = s2;
Anna Zaksfebdc322012-02-16 22:26:12 +0000552 return px; // expected-warning {{Memory is never released; potential memory leak}}
Anna Zaks4fb54872012-02-11 21:02:35 +0000553}
554
555struct X* RegInvalidationGiveUp1() {
556 int *p = malloc(12);
557 struct X *px= malloc(sizeof(struct X));
558 px->p = p;
559 return px;
560}
561
562int **RegInvalidationDetect2(int **pp) {
563 int *p = malloc(12);
564 pp = &p;
565 pp++;
Anna Zaksfebdc322012-02-16 22:26:12 +0000566 return 0;// expected-warning {{Memory is never released; potential memory leak}}
Anna Zaks4fb54872012-02-11 21:02:35 +0000567}
Anna Zaksf8b1c312012-02-10 01:11:03 +0000568
Anna Zaksf8b1c312012-02-10 01:11:03 +0000569extern void exit(int) __attribute__ ((__noreturn__));
570void mallocExit(int *g) {
571 struct xx *p = malloc(12);
Anna Zaksda046772012-02-11 21:02:40 +0000572 if (g != 0)
573 exit(1);
Anna Zaksf8b1c312012-02-10 01:11:03 +0000574 free(p);
575 return;
576}
577
Anna Zaksf8b1c312012-02-10 01:11:03 +0000578extern void __assert_fail (__const char *__assertion, __const char *__file,
579 unsigned int __line, __const char *__function)
580 __attribute__ ((__noreturn__));
581#define assert(expr) \
582 ((expr) ? (void)(0) : __assert_fail (#expr, __FILE__, __LINE__, __func__))
583void mallocAssert(int *g) {
584 struct xx *p = malloc(12);
585
Anna Zaksda046772012-02-11 21:02:40 +0000586 assert(g != 0);
Anna Zaksf8b1c312012-02-10 01:11:03 +0000587 free(p);
588 return;
589}
590
Anna Zaks15d0ae12012-02-11 23:46:36 +0000591void doNotInvalidateWhenPassedToSystemCalls(char *s) {
592 char *p = malloc(12);
593 strlen(p);
594 strcpy(p, s); // expected-warning {{leak}}
595}
596
Anna Zaksda046772012-02-11 21:02:40 +0000597// Below are the known false positives.
598
Anna Zaksf8b1c312012-02-10 01:11:03 +0000599// TODO: There should be no warning here. This one might be difficult to get rid of.
600void dependsOnValueOfPtr(int *g, unsigned f) {
601 int *p;
602
603 if (f) {
604 p = g;
605 } else {
606 p = malloc(12);
607 }
608
609 if (p != g)
610 free(p);
611 else
Anna Zaksfebdc322012-02-16 22:26:12 +0000612 return; // expected-warning{{Memory is never released; potential memory leak}}
Anna Zaksf8b1c312012-02-10 01:11:03 +0000613 return;
614}
615
616// TODO: Should this be a warning?
617// Here we are returning a pointer one past the allocated value. An idiom which
618// can be used for implementing special malloc. The correct uses of this might
619// be rare enough so that we could keep this as a warning.
620static void *specialMalloc(int n){
621 int *p;
622 p = malloc( n+8 );
623 if( p ){
624 p[0] = n;
625 p++;
626 }
Anna Zaksfebdc322012-02-16 22:26:12 +0000627 return p;// expected-warning {{Memory is never released; potential memory leak}}
Anna Zaksf8b1c312012-02-10 01:11:03 +0000628}
Anna Zaksebc1d322012-02-15 00:11:28 +0000629
630// TODO: This is a false positve that should be fixed by making CString checker smarter.
631void symbolLostWithStrcpy(char *s) {
632 char *p = malloc(12);
633 p = strcpy(p, s);
634 free(p);// expected-warning {{leak}}
635}
636
Anna Zaksac593002012-02-16 03:40:57 +0000637// False negatives.
638
639// TODO: This requires tracking symbols stored inside the structs/arrays.
640void testMalloc5() {
641 StructWithPtr St;
642 StructWithPtr *pSt = &St;
643 pSt->memP = malloc(12);
644}
Anna Zaksad901a62012-02-16 22:26:15 +0000645
646// TODO: This should produce a warning, similar to the previous issue.
647void localArrayTest() {
648 char *p = (char*)malloc(12);
649 char *ArrayL[12];
650 ArrayL[0] = p;
651}
652