aboutsummaryrefslogtreecommitdiffstats
path: root/framework/src/suricata/qa/coccinelle/size_t.cocci
blob: 4bd5b9f26c9e5a0159709b1278bd2de4a7b51f8d (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
@sizet@
size_t p;
identifier func =~ "^(sprintf|printf|SCLog.*)$";
identifier funcn =~ "^.*nprintf$";
position p1;
typedef uint16_t;
typedef uint32_t;
typedef uint64_t;
expression E1, E2;
@@

(
func(..., p, ...)@p1;
|
func(..., (int) p, ...)@p1;
|
func(..., (unsigned int) p, ...)@p1;
|
func(..., (uint16_t) p, ...)@p1;
|
func(..., (uint32_t) p, ...)@p1;
|
func(..., (uint64_t) p, ...)@p1;
|
funcn(E1, E2,..., p, ...)@p1;
|
funcn(E1, E2,..., (int) p, ...)@p1;
|
funcn(E1, E2,..., (unsigned int) p, ...)@p1;
|
funcn(E1, E2,..., (uint16_t) p, ...)@p1;
|
funcn(E1, E2,..., (uint32_t) p, ...)@p1;
|
funcn(E1, E2,..., (uint64_t) p, ...)@p1;
)

@ script:python @
p1 << sizet.p1;
@@

print "Invalid printf with size_t (not casted to uintmax_t) at %s:%s" % (p1[0].file, p1[0].line)
import sys
sys.exit(1)