blob: 7a8585fa84422830d2eaaf617625e81cec240159 [file] [log] [blame]
Anna Zaksca115102012-05-07 23:30:29 +00001// RUN: %clang_cc1 -analyze -analyzer-checker=unix.MallocSizeof -verify %s
Peter Collingbournedc309672011-12-08 08:31:14 +00002
3#include <stddef.h>
4
5void *malloc(size_t size);
6void *calloc(size_t nmemb, size_t size);
7void *realloc(void *ptr, size_t size);
Ted Kremenek88db6a22012-05-01 00:10:19 +00008void free(void *ptr);
Peter Collingbournedc309672011-12-08 08:31:14 +00009
10struct A {};
11struct B {};
12
Anna Zaks2e336ac2012-06-08 18:44:43 +000013void foo(unsigned int unsignedInt, unsigned int readSize) {
Peter Collingbournedc309672011-12-08 08:31:14 +000014 int *ip1 = malloc(sizeof(1));
15 int *ip2 = malloc(4 * sizeof(int));
16
Anna Zaksca115102012-05-07 23:30:29 +000017 long *lp1 = malloc(sizeof(short)); // expected-warning {{Result of 'malloc' is converted to a pointer of type 'long', which is incompatible with sizeof operand type 'short'}}
18 long *lp2 = malloc(5 * sizeof(double)); // expected-warning {{Result of 'malloc' is converted to a pointer of type 'long', which is incompatible with sizeof operand type 'double'}}
Anna Zaks2e336ac2012-06-08 18:44:43 +000019 char *cp3 = malloc(5 * sizeof(char) + 2); // no warning
20 unsigned char *buf = malloc(readSize + sizeof(unsignedInt)); // no warning
Peter Collingbournedc309672011-12-08 08:31:14 +000021
22 struct A *ap1 = calloc(1, sizeof(struct A));
23 struct A *ap2 = calloc(2, sizeof(*ap1));
Anna Zaksca115102012-05-07 23:30:29 +000024 struct A *ap3 = calloc(2, sizeof(ap1)); // expected-warning {{Result of 'calloc' is converted to a pointer of type 'struct A', which is incompatible with sizeof operand type 'struct A *'}}
25 struct A *ap4 = calloc(3, sizeof(struct A*)); // expected-warning {{Result of 'calloc' is converted to a pointer of type 'struct A', which is incompatible with sizeof operand type 'struct A *'}}
26 struct A *ap5 = calloc(4, sizeof(struct B)); // expected-warning {{Result of 'calloc' is converted to a pointer of type 'struct A', which is incompatible with sizeof operand type 'struct B'}}
Peter Collingbournedc309672011-12-08 08:31:14 +000027 struct A *ap6 = realloc(ap5, sizeof(struct A));
Anna Zaksca115102012-05-07 23:30:29 +000028 struct A *ap7 = realloc(ap5, sizeof(struct B)); // expected-warning {{Result of 'realloc' is converted to a pointer of type 'struct A', which is incompatible with sizeof operand type 'struct B'}}
Peter Collingbournedc309672011-12-08 08:31:14 +000029}
Ted Kremenek88db6a22012-05-01 00:10:19 +000030
31// Don't warn when the types differ only by constness.
32void ignore_const() {
33 const char **x = (const char **)malloc(1 * sizeof(char *)); // no-warning
Anna Zaksca115102012-05-07 23:30:29 +000034 const char ***y = (const char ***)malloc(1 * sizeof(char *)); // expected-warning {{Result of 'malloc' is converted to a pointer of type 'const char **', which is incompatible with sizeof operand type 'char *'}}
Ted Kremenek88db6a22012-05-01 00:10:19 +000035 free(x);
36}
Anna Zaks258bd592012-09-07 19:20:13 +000037
38int *mallocArraySize() {
39 static const int sTable[10];
Anna Zaks9f6ec822012-09-08 00:09:02 +000040 static const int nestedTable[10][2];
Anna Zaks258bd592012-09-07 19:20:13 +000041 int *table = malloc(sizeof sTable);
42 int *table1 = malloc(sizeof nestedTable);
Anna Zaks9f6ec822012-09-08 00:09:02 +000043 int (*table2)[2] = malloc(sizeof nestedTable);
44 int (*table3)[10][2] = malloc(sizeof nestedTable);
Anna Zaks258bd592012-09-07 19:20:13 +000045 return table;
46}
47
48int *mallocWrongArraySize() {
49 static const double sTable[10];
50 int *table = malloc(sizeof sTable); // expected-warning {{Result of 'malloc' is converted to a pointer of type 'int', which is incompatible with sizeof operand type 'const double [10]'}}
51 return table;
52}