-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpattern_match_freebsd.cocci
609 lines (546 loc) · 11.3 KB
/
pattern_match_freebsd.cocci
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
//define global variable
@script:python@
count << virtual.count;
@@
#-----------------------------Post Matching Process------------------------------
def print_and_log(filename,first,second,count):
print "No. ", count, " file: ", filename
print "--first fetch: line ",first
print "--second fetch: line ",second
print "------------------------------------\n"
logfile = open('result.txt','a')
logfile.write("No." + count + " File: \n" + str(filename) + "\n")
logfile.write("--first fetch: line " + str(first) + "\n")
logfile.write("--second fetch: line " + str(second) + "\n")
logfile.write("-------------------------------\n")
logfile.close()
def post_match_process(p1,p2,src,ptr,count):
filename = p1[0].file
first = p1[0].line
second = p2[0].line
src_str = str(src)
ptr_str = str(ptr)
#print "src1:", src_str
#print "src2:", ptr_str
#print "first:", first
#print "second:", second
# remove loop case, first and second fetch are not supposed to be in the same line.
if first == second:
return
# remove reverse loop case, where first fetch behand second fetch but in last loop .
if int(first) > int(second):
return
# remove case of get_user(a, src++) or get_user(a, src + 4)
if src_str.find("+") != -1 or ptr_str.find("+") != -1:
return
# remove case of get_user(a, src[i])
if src_str.find("[") != -1 or ptr_str.find("[") != -1:
return
# remove case of get_user(a, src--) or get_user(a, src - 4)
if src_str.find("-") != -1 and src_str.find("->") == -1:
return
if ptr_str.find("-") != -1 and ptr_str.find("->") == -1:
return
# remove false matching of src ===> (int*)src , but leave function call like u64_to_uptr(ctl_sccb.sccb)
if src_str.find("(") == 0 or ptr_str.find("(") == 0:
return
if count:
count = str(int(count) + 1)
else:
count = "1"
print_and_log(filename, first, second, count)
return count
//---------------------Pattern Matching Rules-----------------------------------
//----------------------------------- case 1: normal case without src assignment
@ rule1 disable drop_cast exists @
expression done,addr,exp1,exp2,src,size1,size2,offset;
position p1,p2;
identifier func;
type T1,T2;
@@
func(...){
...
(
get_user(exp1, (T1)src)@p1
|
get_user(exp1, src)@p1
|
__get_user(exp1, (T1)src)@p1
|
__get_user(exp1, src)@p1
|
copyin_nofault((T1)src, exp1, size1)@p1
|
copyin_nofault(src, exp1, size1)@p1
|
copyin((T1)src, exp1, size1)@p1
|
copyin(src, exp1, size1)@p1
|
copyinstr(src, exp1, size1, done)@p1
|
copyinstr((T1)src, exp1, size1, done)@p1
)
... when any
when != src += offset
when != src = src + offset
when != src++
when != src -=offset
when != src = src - offset
when != src--
when != src = addr
(
get_user(exp2, (T2)src)@p2
|
get_user(exp2, src)@p2
|
__get_user(exp2,(T2)src)@p2
|
__get_user(exp2, src)@p2
|
copyin((T2)src, exp2,size2)@p2
|
copyin(src, exp2, size2)@p2
|
copyin_nofault((T2)src, exp2, size2)@p2
|
copyin_nofault(src, exp2, size2)@p2
|
copyinstr((T2)src, exp2,size2, done)@p2
|
copyinstr(src, exp2, size2, done)@p2
)
...
}
@script:python@
p11 << rule1.p1;
p12 << rule1.p2;
s1 << rule1.src;
@@
print "src1:", str(s1)
if p11 and p12:
coccilib.report.print_report(p11[0],"rule1 First fetch")
coccilib.report.print_report(p12[0],"rule1 Second fetch")
ret = post_match_process(p11, p12, s1, s1, count)
if ret:
count = ret
//--------------------------------------- case 2: ptr = src at beginning, ptr first
@ rule2 disable drop_cast exists @
identifier func;
expression done,addr,exp1,exp2,src,ptr,size1,size2,offset;
position p0,p1,p2;
type T0,T1,T2;
@@
func(...){
...
(
ptr = (T0)src@p0 // potential assignment case
|
ptr = src@p0
)
...
(
get_user(exp1, (T1)ptr)@p1
|
get_user(exp1, ptr)@p1
|
__get_user(exp1, (T1)ptr)@p1
|
__get_user(exp1, ptr)@p1
|
copyin_nofault((T1)ptr, exp1, size1)@p1
|
copyin_nofault(ptr, exp1, size1)@p1
|
copyin((T1)ptr, exp1, size1)@p1
|
copyin(ptr, exp1, size1)@p1
|
copyinstr(src, exp1, size1, done)@p1
|
copyinstr((T1)src, exp1, size1, done)@p1
)
...
when != src += offset
when != src = src + offset
when != src++
when != src -=offset
when != src = src - offset
when != src--
when != src = addr
(
get_user(exp2, (T2)src)@p2
|
get_user(exp2, src)@p2
|
__get_user(exp2,(T2)src)@p2
|
__get_user(exp2, src)@p2
|
copyin((T2)src, exp2, size2)@p2
|
copyin(src, exp2, size2)@p2
|
copyin_nofault((T2)src, exp2, size2)@p2
|
copyin_nofault(src, exp2, size2)@p2
|
copyinstr((T2)src, exp2,size2, done)@p2
|
copyinstr(src, exp2, size2, done)@p2
)
...
}
@script:python@
p21 << rule2.p1;
p22 << rule2.p2;
p2 << rule2.ptr;
s2 << rule2.src;
@@
print "src2:", str(s2)
print "ptr2:", str(p2)
if p21 and p22:
coccilib.report.print_report(p21[0],"rule2 First fetch")
coccilib.report.print_report(p22[0],"rule2 Second fetch")
ret = post_match_process(p21, p22, s2, p2, count)
if ret:
count = ret
//--------------------------------------- case 3: ptr = src at beginning, src first
@ rule3 disable drop_cast exists @
identifier func;
expression done,addr,exp1,exp2,src,ptr,size1,size2,offset;
position p0,p1,p2;
type T0,T1,T2;
@@
func(...){
...
(
ptr = (T0)src@p0 // potential assignment case
|
ptr = src@p0
)
...
(
get_user(exp1, (T1)src)@p1
|
get_user(exp1, src)@p1
|
__get_user(exp1, (T1)src)@p1
|
__get_user(exp1, src)@p1
|
copyin_nofault((T1)src, exp1, size1)@p1
|
copyin_nofault(src, exp1, size1)@p1
|
copyin((T1)src, exp1, size1)@p1
|
copyin(src, exp1, size1)@p1
|
copyinstr(src, exp1, size1, done)@p1
|
copyinstr((T1)src, exp1, size1, done)@p1
)
...
when != ptr += offset
when != ptr = ptr + offset
when != ptr++
when != ptr -=offset
when != ptr = ptr - offset
when != ptr--
when != ptr = addr
(
get_user(exp2, (T2)ptr)@p2
|
get_user(exp2, ptr)@p2
|
__get_user(exp2,(T2)ptr)@p2
|
__get_user(exp2, ptr)@p2
|
copyin((T2)ptr, exp2, size2)@p2
|
copyin( ptr, exp2, size2)@p2
|
copyin_nofault((T2)ptr, exp2, size2)@p2
|
copyin_nofault(ptr, exp2, size2)@p2
|
copyinstr((T2)src, exp2,size2, done)@p2
|
copyinstr(src, exp2, size2, done)@p2
)
...
}
@script:python@
p31 << rule3.p1;
p32 << rule3.p2;
p3 << rule3.ptr;
s3 << rule3.src;
@@
print "src3:", str(s3)
print "ptr3:", str(p3)
if p31 and p32:
coccilib.report.print_report(p31[0],"rule3 First fetch")
coccilib.report.print_report(p32[0],"rule3 Second fetch")
ret = post_match_process(p31, p32, s3, p3, count)
if ret:
count = ret
//----------------------------------- case 4: ptr = src at middle
@ rule4 disable drop_cast exists @
identifier func;
expression done,addr,exp1,exp2,src,ptr,size1,size2,offset;
position p0,p1,p2;
type T0,T1,T2;
@@
func(...){
...
(
get_user(exp1, (T1)src)@p1
|
get_user(exp1, src)@p1
|
__get_user(exp1, (T1)src)@p1
|
__get_user(exp1, src)@p1
|
copyin_nofault((T1)src, exp1, size1)@p1
|
copyin_nofault(src, exp1, size1)@p1
|
copyin((T1)src, exp1, size1)@p1
|
copyin(src, exp1, size1)@p1
|
copyinstr(src, exp1, size1, done)@p1
|
copyinstr((T1)src, exp1, size1, done)@p1
)
...
when != src += offset
when != src = src + offset
when != src++
when != src -=offset
when != src = src - offset
when != src--
when != src = addr
(
ptr = (T0)src@p0 // potential assignment case
|
ptr = src@p0
)
...
when != ptr += offset
when != ptr = ptr + offset
when != ptr++
when != ptr -=offset
when != ptr = ptr - offset
when != ptr--
when != ptr = addr
(
get_user(exp2, (T2)ptr)@p2
|
get_user(exp2, ptr)@p2
|
__get_user(exp2,(T2)ptr)@p2
|
__get_user(exp2, ptr)@p2
|
copyin((T2)ptr, exp2,size2)@p2
|
copyin(ptr, exp2, size2)@p2
|
copyin_nofault((T2)ptr, exp2, size2)@p2
|
copyin_nofault(ptr, exp2, size2)@p2
|
copyinstr((T2)src, exp2,size2, done)@p2
|
copyinstr(src, exp2, size2, done)@p2
)
...
}
@script:python@
p41 << rule4.p1;
p42 << rule4.p2;
p4 << rule4.ptr;
s4 << rule4.src;
@@
print "src4:", str(s4)
print "ptr4:", str(p4)
if p41 and p42:
coccilib.report.print_report(p41[0],"rule4 First fetch")
coccilib.report.print_report(p42[0],"rule4 Second fetch")
ret = post_match_process(p41, p42, s4, p4, count)
if ret:
count = ret
//----------------------------------- case 5: first element, then ptr, copy from structure
@ rule5 disable drop_cast exists @
identifier func, e1;
expression done,addr,exp1,exp2,src,size1,size2,offset;
position p1,p2;
type T1,T2;
@@
func(...){
...
(
get_user(exp1, (T1)src->e1)@p1
|
get_user(exp1, src->e1)@p1
|
get_user(exp1, &(src->e1))@p1
|
__get_user(exp1, (T1)src->e1)@p1
|
__get_user(exp1, src->e1)@p1
|
__get_user(exp1, &(src->e1))@p1
|
copyin_nofault((T1)src->e1, exp1, size1)@p1
|
copyin_nofault(src->e1, exp1, size1)@p1
|
copyin_nofault(&(src->e1), exp1, size1)@p1
|
copyin((T1)src->e1, exp1, size1)@p1
|
copyin(src->e1, exp1, size1)@p1
|
copyin(&(src->e1), exp1, size1)@p1
|
copyinstr((T1)src->e1, exp1, size1, done)@p1
|
copyinstr(src->e1, exp1, size1, done)@p1
|
copyinstr(&(src->e1), exp1, size1, done)@p1
)
...
when != src += offset
when != src = src + offset
when != src++
when != src -=offset
when != src = src - offset
when != src--
when != src = addr
(
get_user(exp2,(T2)src)@p2
|
get_user(exp2,src)@p2
|
__get_user(exp2,(T2)src)@p2
|
__get_user(exp2,src)@p2
|
copyin((T2)src, exp2, size2)@p2
|
copyin(src, exp2, size2)@p2
|
copyin_nofault((T2)src, exp2, size2)@p2
|
copyin_nofault(src, exp2, size2)@p2
|
copyinstr((T2)src, exp2,size2, done)@p2
|
copyinstr(src, exp2, size2, done)@p2
)
...
}
@script:python@
p51 << rule5.p1;
p52 << rule5.p2;
s5 << rule5.src;
e5 << rule5.e1;
@@
print "src5:", str(s5)
print "e5:", str(e5)
if p51 and p52:
coccilib.report.print_report(p51[0],"rule5 First fetch")
coccilib.report.print_report(p52[0],"rule5 Second fetch")
ret = post_match_process(p51, p52, s5, e5, count)
if ret:
count = ret
//----------------------------------- case 6: first element, then ptr, copy from pointer
@ rule6 disable drop_cast exists @
identifier func, e1;
expression done,addr,exp1,exp2,src,size1,size2,offset;
position p1,p2;
type T1,T2;
@@
func(...){
...
(
get_user(exp1, (T1)src.e1)@p1
|
get_user(exp1, src.e1)@p1
|
get_user(exp1, &(src.e1))@p1
|
__get_user(exp1, (T1)src.e1)@p1
|
__get_user(exp1, src.e1)@p1
|
__get_user(exp1, &(src.e1))@p1
|
copyin_nofault((T1)src.e1, exp1, size1)@p1
|
copyin_nofault(src.e1, exp1, size1)@p1
|
copyin_nofault(&(src.e1), exp1, size1)@p1
|
copyin((T1)src.e1, exp1, size1)@p1
|
copyin(src.e1, exp1, size1)@p1
|
copyin(&(src.e1), exp1, size1)@p1
|
copyinstr((T1)src.e1, exp1, size1, done)@p1
|
copyinstr(src.e1, exp1, size1, done)@p1
|
copyinstr(&(src.e1), exp1, size1, done)@p1
)
...
when != &src += offset
when != &src = &src + offset
when != &src++
when != &src -=offset
when != &src = &src - offset
when != &src--
when != &src = &addr
(
get_user(exp2,(T2)&src)@p2
|
get_user(exp2,&src)@p2
|
__get_user(exp2,(T2)&src)@p2
|
__get_user(exp2,&src)@p2
|
copyin((T2)&src, exp2, size2)@p2
|
copyin(&src, exp2, size2)@p2
|
copyin_nofault((T2)&src, exp2, size2)@p2
|
copyin_nofault(&src, exp2, size2)@p2
|
copyinstr((T2)&src, exp2, size2, done)@p2
|
copyinstr(&src, exp2, size2, done)@p2
)
...
}
@script:python@
p61 << rule6.p1;
p62 << rule6.p2;
s6 << rule6.src;
e6 << rule6.e1;
@@
print "src6:", str(s6)
print "e6:", str(e6)
if p61 and p62:
coccilib.report.print_report(p61[0],"rule6 First fetch")
coccilib.report.print_report(p62[0],"rule6 Second fetch")
ret = post_match_process(p61, p62, s6, e6, count)
if ret:
count = ret