aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/validation/byte-count-max.c
blob: 0555a505369ee43089dba683784fff30d7994ec2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
typedef unsigned long int size_t;
typedef unsigned long ulong;

extern void *memset(void *s, int c, size_t n);
extern void *memcpy(void *dest, void *src, size_t n);
extern ulong copy_to_user(void *to, const void *from, ulong count);
extern ulong copy_from_user(void *to, const void *from, ulong count);

static void func (char *s)
{
	char d[250000];

	memset(d, 0, 250000);
	memcpy(d, s, 250000);
	copy_to_user(s, d, 250000);
	copy_from_user(d, s, 250000);
}

/*
 * check-name: byte-count-max
 *
 * check-error-start
byte-count-max.c:13:15: warning: memset with byte count of 250000
byte-count-max.c:14:15: warning: memcpy with byte count of 250000
byte-count-max.c:15:21: warning: copy_to_user with byte count of 250000
byte-count-max.c:16:23: warning: copy_from_user with byte count of 250000
 * check-error-end
 */