cppcheck/addons/cert.py

67 lines
2.1 KiB
Python
Raw Normal View History

2015-08-18 16:14:53 +02:00
#/usr/bin/python
#
# Cert: Some extra CERT checkers
#
# Cppcheck itself handles many CERT rules. Cppcheck warns when there is undefined behaviour.
#
# Example usage of this addon (scan a sourcefile main.cpp)
# cppcheck --dump main.cpp
# python cert.py main.cpp.dump
import cppcheckdata
import sys
2015-08-21 10:55:19 +02:00
2015-08-18 16:14:53 +02:00
def reportError(token, severity, msg):
2015-08-21 10:55:19 +02:00
sys.stderr.write('[' + token.file + ':' + str(token.linenr) + '] (' + severity + ') cert.py: ' + msg + '\n')
2015-08-18 16:14:53 +02:00
def isLocalStruct(arg):
if arg and arg.str == '&' and not arg.astOperand2:
arg = arg.astOperand1
return arg and arg.variable and arg.variable.isClass and (arg.variable.isLocal or arg.variable.isArgument)
2015-08-21 10:55:19 +02:00
2015-08-18 16:14:53 +02:00
def isBitwiseOp(token):
return token and (token.str in ['&', '|', '^'])
2015-08-21 10:55:19 +02:00
2015-08-18 16:14:53 +02:00
def isComparisonOp(token):
return token and (token.str in ['==', '!=', '>', '>=', '<', '<='])
# EXP42-C
# do not compare padding data
def exp42(data):
for token in data.tokenlist:
if token.str != '(' or not token.astOperand1:
continue
arg1 = None
arg2 = None
if token.astOperand2 and token.astOperand2.str == ',':
if token.astOperand2.astOperand1 and token.astOperand2.astOperand1.str == ',':
arg1 = token.astOperand2.astOperand1.astOperand1
arg2 = token.astOperand2.astOperand1.astOperand2
if token.astOperand1.str == 'memcmp' and (isLocalStruct(arg1) or isLocalStruct(arg2)):
reportError(token, 'style', 'EXP42-C Comparison of struct padding data')
2015-08-21 10:55:19 +02:00
if (token.astOperand1.str in ['memcpy', 'memmove']) and isLocalStruct(arg2):
reportError(token, 'style', 'EXP42-C Reading struct padding data')
2015-08-18 16:14:53 +02:00
# EXP46-C
# Do not use a bitwise operator with a Boolean-like operand
# int x = (a == b) & c;
2015-08-21 10:55:19 +02:00
2015-08-18 16:14:53 +02:00
def exp46(data):
for token in data.tokenlist:
if isBitwiseOp(token) and (isComparisonOp(token.astOperand1) or isComparisonOp(token.astOperand2)):
reportError(token, 'style', 'EXP46-C Bitwise operator is used with a Boolean-like operand')
for arg in sys.argv[1:]:
2015-08-21 10:55:19 +02:00
print('Checking ' + arg + '...')
data = cppcheckdata.parsedump(arg)
exp42(data)
exp46(data)