2009-01-31 20:29:27 +01:00
|
|
|
/*
|
|
|
|
* Cppcheck - A tool for static C/C++ code analysis
|
2011-01-09 20:33:36 +01:00
|
|
|
* Copyright (C) 2007-2011 Daniel Marjamäki and Cppcheck team.
|
2009-01-31 20:29:27 +01:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2009-09-27 17:08:31 +02:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2009-01-31 20:29:27 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
#ifndef CheckOtherH
|
|
|
|
#define CheckOtherH
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
2009-03-20 18:16:21 +01:00
|
|
|
#include "check.h"
|
|
|
|
#include "settings.h"
|
2009-01-31 20:29:27 +01:00
|
|
|
|
2009-03-20 18:16:21 +01:00
|
|
|
class Token;
|
|
|
|
|
2009-07-17 10:49:01 +02:00
|
|
|
/// @addtogroup Checks
|
|
|
|
/// @{
|
|
|
|
|
2010-03-14 19:11:03 +01:00
|
|
|
|
|
|
|
/** @brief Various small checks */
|
|
|
|
|
2009-03-20 18:16:21 +01:00
|
|
|
class CheckOther : public Check
|
2009-01-31 20:29:27 +01:00
|
|
|
{
|
|
|
|
public:
|
2010-03-14 19:11:03 +01:00
|
|
|
/** @brief This constructor is used when registering the CheckClass */
|
2011-02-02 10:29:10 +01:00
|
|
|
CheckOther() : Check(myName())
|
2009-03-20 18:16:21 +01:00
|
|
|
{ }
|
|
|
|
|
2010-03-17 22:16:18 +01:00
|
|
|
/** @brief This constructor is used when running checks. */
|
2009-03-20 18:16:21 +01:00
|
|
|
CheckOther(const Tokenizer *tokenizer, const Settings *settings, ErrorLogger *errorLogger)
|
2011-02-02 10:29:10 +01:00
|
|
|
: Check(myName(), tokenizer, settings, errorLogger)
|
2009-03-20 18:16:21 +01:00
|
|
|
{ }
|
|
|
|
|
2010-03-14 19:11:03 +01:00
|
|
|
/** @brief Run checks against the normal token list */
|
2009-03-20 18:16:21 +01:00
|
|
|
void runChecks(const Tokenizer *tokenizer, const Settings *settings, ErrorLogger *errorLogger)
|
2009-03-21 07:53:23 +01:00
|
|
|
{
|
|
|
|
CheckOther checkOther(tokenizer, settings, errorLogger);
|
2009-03-27 15:55:14 +01:00
|
|
|
|
2010-04-21 08:38:25 +02:00
|
|
|
// Coding style checks
|
|
|
|
checkOther.warningOldStylePointerCast();
|
|
|
|
checkOther.checkUnsignedDivision();
|
|
|
|
checkOther.checkCharVariable();
|
|
|
|
checkOther.functionVariableUsage();
|
|
|
|
checkOther.checkVariableScope();
|
|
|
|
checkOther.checkStructMemberUsage();
|
2010-04-26 21:43:01 +02:00
|
|
|
checkOther.strPlusChar();
|
2010-05-15 14:06:45 +02:00
|
|
|
checkOther.sizeofsizeof();
|
2010-08-06 22:57:10 +02:00
|
|
|
checkOther.sizeofCalculation();
|
2010-06-30 09:10:30 +02:00
|
|
|
checkOther.checkRedundantAssignmentInSwitch();
|
2010-10-10 22:05:06 +02:00
|
|
|
checkOther.checkAssignmentInAssert();
|
2011-01-22 19:21:56 +01:00
|
|
|
checkOther.checkSizeofForArrayParameter();
|
2011-02-04 20:55:38 +01:00
|
|
|
checkOther.checkSelfAssignment();
|
2009-03-21 07:53:23 +01:00
|
|
|
}
|
|
|
|
|
2010-03-14 19:11:03 +01:00
|
|
|
/** @brief Run checks against the simplified token list */
|
2009-03-21 07:53:23 +01:00
|
|
|
void runSimplifiedChecks(const Tokenizer *tokenizer, const Settings *settings, ErrorLogger *errorLogger)
|
2009-03-20 18:16:21 +01:00
|
|
|
{
|
|
|
|
CheckOther checkOther(tokenizer, settings, errorLogger);
|
|
|
|
|
2011-01-24 21:40:49 +01:00
|
|
|
checkOther.clarifyCalculation();
|
|
|
|
|
2010-04-21 08:38:25 +02:00
|
|
|
// Coding style checks
|
|
|
|
checkOther.checkConstantFunctionParameter();
|
|
|
|
checkOther.checkIncompleteStatement();
|
2009-03-20 18:16:21 +01:00
|
|
|
|
2009-07-05 22:16:43 +02:00
|
|
|
checkOther.invalidFunctionUsage();
|
|
|
|
checkOther.checkZeroDivision();
|
2010-04-02 07:32:03 +02:00
|
|
|
checkOther.checkMathFunctions();
|
2010-05-04 08:14:45 +02:00
|
|
|
checkOther.checkFflushOnInputStream();
|
2010-08-14 15:15:12 +02:00
|
|
|
checkOther.invalidScanf();
|
2009-12-06 18:41:28 +01:00
|
|
|
|
2010-10-25 03:14:21 +02:00
|
|
|
checkOther.checkIncorrectLogicOperator();
|
2010-10-01 17:23:22 +02:00
|
|
|
checkOther.checkMisusedScopedObject();
|
2010-12-31 12:01:38 +01:00
|
|
|
checkOther.checkCatchExceptionByValue();
|
2011-01-06 11:31:58 +01:00
|
|
|
checkOther.checkMemsetZeroBytes();
|
2011-02-08 19:49:29 +01:00
|
|
|
checkOther.checkIncorrectStringCompare();
|
2009-03-20 18:16:21 +01:00
|
|
|
}
|
2009-01-31 20:29:27 +01:00
|
|
|
|
2011-01-24 21:40:49 +01:00
|
|
|
/** @brief Clarify calculation for ".. a * b ? .." */
|
|
|
|
void clarifyCalculation();
|
|
|
|
void clarifyCalculationError(const Token *tok);
|
|
|
|
|
2010-03-18 18:59:55 +01:00
|
|
|
/** @brief Are there C-style pointer casts in a c++ file? */
|
2009-07-05 22:16:43 +02:00
|
|
|
void warningOldStylePointerCast();
|
2009-01-31 20:29:27 +01:00
|
|
|
|
2010-03-19 16:12:51 +01:00
|
|
|
/**
|
2010-03-18 18:59:55 +01:00
|
|
|
* @brief Invalid function usage (invalid radix / overlapping data)
|
2010-03-19 16:12:51 +01:00
|
|
|
*
|
2010-03-18 18:59:55 +01:00
|
|
|
* %Check that given function parameters are valid according to the standard
|
|
|
|
* - wrong radix given for strtol/strtoul
|
2010-03-19 16:12:51 +01:00
|
|
|
* - overlapping data when using sprintf/snprintf
|
2010-03-18 18:59:55 +01:00
|
|
|
*/
|
2009-07-05 22:16:43 +02:00
|
|
|
void invalidFunctionUsage();
|
2009-01-31 20:29:27 +01:00
|
|
|
|
2010-03-18 18:59:55 +01:00
|
|
|
/** @brief %Check for unsigned division */
|
2009-07-05 22:16:43 +02:00
|
|
|
void checkUnsignedDivision();
|
2009-01-31 20:29:27 +01:00
|
|
|
|
2010-03-18 18:59:55 +01:00
|
|
|
/** @brief %Check for unused function variables */
|
2010-02-18 18:45:13 +01:00
|
|
|
void functionVariableUsage();
|
|
|
|
void unusedVariableError(const Token *tok, const std::string &varname);
|
2010-11-15 02:37:36 +01:00
|
|
|
void allocatedButUnusedVariableError(const Token *tok, const std::string &varname);
|
2010-02-18 18:45:13 +01:00
|
|
|
void unreadVariableError(const Token *tok, const std::string &varname);
|
|
|
|
void unassignedVariableError(const Token *tok, const std::string &varname);
|
|
|
|
|
2010-03-18 18:59:55 +01:00
|
|
|
/** @brief %Check scope of variables */
|
2009-07-05 22:16:43 +02:00
|
|
|
void checkVariableScope();
|
2009-01-31 20:29:27 +01:00
|
|
|
|
2010-03-18 18:59:55 +01:00
|
|
|
/** @brief %Check for constant function parameter */
|
2009-07-05 22:16:43 +02:00
|
|
|
void checkConstantFunctionParameter();
|
2009-01-31 20:29:27 +01:00
|
|
|
|
2010-03-18 18:59:55 +01:00
|
|
|
/** @brief %Check that all struct members are used */
|
2009-07-05 22:16:43 +02:00
|
|
|
void checkStructMemberUsage();
|
2009-01-31 20:29:27 +01:00
|
|
|
|
2010-03-18 18:59:55 +01:00
|
|
|
/** @brief Using char variable as array index / as operand in bit operation */
|
2009-07-05 22:16:43 +02:00
|
|
|
void checkCharVariable();
|
2009-01-31 20:29:27 +01:00
|
|
|
|
2010-03-18 18:59:55 +01:00
|
|
|
/** @brief Incomplete statement. A statement that only contains a constant or variable */
|
2009-07-05 22:16:43 +02:00
|
|
|
void checkIncompleteStatement();
|
2009-01-31 20:29:27 +01:00
|
|
|
|
2010-03-18 18:59:55 +01:00
|
|
|
/** @brief str plus char (unusual pointer arithmetic) */
|
2009-01-31 20:29:27 +01:00
|
|
|
void strPlusChar();
|
|
|
|
|
2010-03-18 18:59:55 +01:00
|
|
|
/** @brief %Check zero division*/
|
2009-07-05 22:16:43 +02:00
|
|
|
void checkZeroDivision();
|
2009-03-28 07:49:47 +01:00
|
|
|
|
2010-04-02 07:32:03 +02:00
|
|
|
/** @brief %Check for parameters given to math function that do not make sense*/
|
|
|
|
void checkMathFunctions();
|
2010-04-02 02:19:38 +02:00
|
|
|
|
2010-02-14 19:58:17 +01:00
|
|
|
void lookupVar(const Token *tok1, const std::string &varname);
|
2009-01-31 20:29:27 +01:00
|
|
|
|
2010-05-04 08:14:45 +02:00
|
|
|
/** @brief %Check for using fflush() on an input stream*/
|
|
|
|
void checkFflushOnInputStream();
|
|
|
|
|
2010-05-15 14:06:45 +02:00
|
|
|
/** @brief %Check for 'sizeof sizeof ..' */
|
|
|
|
void sizeofsizeof();
|
|
|
|
void sizeofsizeofError(const Token *tok);
|
|
|
|
|
2010-08-06 22:57:10 +02:00
|
|
|
/** @brief %Check for calculations inside sizeof */
|
|
|
|
void sizeofCalculation();
|
|
|
|
void sizeofCalculationError(const Token *tok);
|
|
|
|
|
2010-08-14 15:15:12 +02:00
|
|
|
/** @brief scanf can crash if width specifiers are not used */
|
|
|
|
void invalidScanf();
|
|
|
|
void invalidScanfError(const Token *tok);
|
|
|
|
|
2010-06-30 09:10:30 +02:00
|
|
|
/** @brief %Check for assigning to the same variable twice in a switch statement*/
|
|
|
|
void checkRedundantAssignmentInSwitch();
|
|
|
|
|
2010-08-15 06:28:22 +02:00
|
|
|
/** @brief %Check for assigning a variable to itself*/
|
|
|
|
void checkSelfAssignment();
|
|
|
|
|
2010-10-10 22:05:06 +02:00
|
|
|
/** @brief %Check for assignment to a variable in an assert test*/
|
|
|
|
void checkAssignmentInAssert();
|
|
|
|
|
2010-10-25 03:14:21 +02:00
|
|
|
/** @brief %Check for testing for mutual exclusion over ||*/
|
|
|
|
void checkIncorrectLogicOperator();
|
|
|
|
|
2010-10-01 17:23:22 +02:00
|
|
|
/** @brief %Check for objects that are destroyed immediately */
|
|
|
|
void checkMisusedScopedObject();
|
|
|
|
|
2010-12-31 12:01:38 +01:00
|
|
|
/** @brief %Check for exceptions that are caught by value instead of by reference */
|
|
|
|
void checkCatchExceptionByValue();
|
|
|
|
|
2011-01-06 11:31:58 +01:00
|
|
|
/** @brief %Check for filling zero bytes with memset() */
|
|
|
|
void checkMemsetZeroBytes();
|
|
|
|
|
2011-01-22 19:21:56 +01:00
|
|
|
/** @brief %Check for using sizeof with array given as function argument */
|
|
|
|
void checkSizeofForArrayParameter();
|
|
|
|
|
2011-02-08 19:49:29 +01:00
|
|
|
/** @brief %Check for using bad usage of strncmp and substr */
|
|
|
|
void checkIncorrectStringCompare();
|
|
|
|
|
2009-03-21 17:58:13 +01:00
|
|
|
// Error messages..
|
|
|
|
void cstyleCastError(const Token *tok);
|
|
|
|
void dangerousUsageStrtolError(const Token *tok);
|
|
|
|
void sprintfOverlappingDataError(const Token *tok, const std::string &varname);
|
|
|
|
void udivError(const Token *tok);
|
|
|
|
void unusedStructMemberError(const Token *tok, const std::string &structname, const std::string &varname);
|
|
|
|
void passedByValueError(const Token *tok, const std::string &parname);
|
|
|
|
void constStatementError(const Token *tok, const std::string &type);
|
|
|
|
void charArrayIndexError(const Token *tok);
|
|
|
|
void charBitOpError(const Token *tok);
|
|
|
|
void variableScopeError(const Token *tok, const std::string &varname);
|
|
|
|
void conditionAlwaysTrueFalse(const Token *tok, const std::string &truefalse);
|
|
|
|
void strPlusChar(const Token *tok);
|
2009-03-29 18:47:05 +02:00
|
|
|
void zerodivError(const Token *tok);
|
2010-04-05 19:57:54 +02:00
|
|
|
void mathfunctionCallError(const Token *tok, const unsigned int numParam = 1);
|
2010-05-04 08:14:45 +02:00
|
|
|
void fflushOnInputStreamError(const Token *tok, const std::string &varname);
|
2010-06-30 09:10:30 +02:00
|
|
|
void redundantAssignmentInSwitchError(const Token *tok, const std::string &varname);
|
2010-08-15 06:28:22 +02:00
|
|
|
void selfAssignmentError(const Token *tok, const std::string &varname);
|
2010-10-10 22:05:06 +02:00
|
|
|
void assignmentInAssertError(const Token *tok, const std::string &varname);
|
2010-10-25 03:14:21 +02:00
|
|
|
void incorrectLogicOperatorError(const Token *tok);
|
2010-10-01 17:23:22 +02:00
|
|
|
void misusedScopeObjectError(const Token *tok, const std::string &varname);
|
2010-12-31 12:01:38 +01:00
|
|
|
void catchExceptionByValueError(const Token *tok);
|
2011-01-06 11:31:58 +01:00
|
|
|
void memsetZeroBytesError(const Token *tok, const std::string &varname);
|
2011-01-22 19:21:56 +01:00
|
|
|
void sizeofForArrayParameterError(const Token *tok);
|
2011-02-08 19:49:29 +01:00
|
|
|
void incorrectStringCompareError(const Token *tok, const std::string& func, const std::string &string, const std::string &len);
|
2009-03-21 17:58:13 +01:00
|
|
|
|
2010-12-29 12:43:29 +01:00
|
|
|
void getErrorMessages(ErrorLogger *errorLogger, const Settings *settings)
|
2009-03-22 08:20:15 +01:00
|
|
|
{
|
2010-12-29 12:43:29 +01:00
|
|
|
CheckOther c(0, settings, errorLogger);
|
|
|
|
|
2009-10-04 13:46:37 +02:00
|
|
|
// error
|
2010-12-29 12:43:29 +01:00
|
|
|
c.sprintfOverlappingDataError(0, "varname");
|
|
|
|
c.udivError(0);
|
|
|
|
c.zerodivError(0);
|
|
|
|
c.mathfunctionCallError(0);
|
|
|
|
c.fflushOnInputStreamError(0, "stdin");
|
|
|
|
c.misusedScopeObjectError(NULL, "varname");
|
2011-01-22 19:21:56 +01:00
|
|
|
c.sizeofForArrayParameterError(0);
|
2009-10-04 13:46:37 +02:00
|
|
|
|
2010-10-31 10:07:35 +01:00
|
|
|
// style/warning
|
2010-12-29 12:43:29 +01:00
|
|
|
c.cstyleCastError(0);
|
|
|
|
c.dangerousUsageStrtolError(0);
|
|
|
|
c.unusedStructMemberError(0, "structname", "variable");
|
|
|
|
c.passedByValueError(0, "parametername");
|
|
|
|
c.constStatementError(0, "type");
|
|
|
|
c.charArrayIndexError(0);
|
|
|
|
c.charBitOpError(0);
|
|
|
|
c.variableScopeError(0, "varname");
|
|
|
|
c.conditionAlwaysTrueFalse(0, "true/false");
|
|
|
|
c.strPlusChar(0);
|
|
|
|
c.sizeofsizeofError(0);
|
|
|
|
c.sizeofCalculationError(0);
|
|
|
|
c.redundantAssignmentInSwitchError(0, "varname");
|
|
|
|
c.selfAssignmentError(0, "varname");
|
|
|
|
c.assignmentInAssertError(0, "varname");
|
|
|
|
c.invalidScanfError(0);
|
|
|
|
c.incorrectLogicOperatorError(0);
|
|
|
|
c.unusedVariableError(0, "varname");
|
|
|
|
c.allocatedButUnusedVariableError(0, "varname");
|
|
|
|
c.unreadVariableError(0, "varname");
|
|
|
|
c.unassignedVariableError(0, "varname");
|
2010-12-31 12:01:38 +01:00
|
|
|
c.catchExceptionByValueError(0);
|
2011-01-06 11:31:58 +01:00
|
|
|
c.memsetZeroBytesError(0, "varname");
|
2011-01-24 21:40:49 +01:00
|
|
|
c.clarifyCalculationError(0);
|
2011-02-08 19:49:29 +01:00
|
|
|
c.incorrectStringCompareError(0, "substr", "\"Hello World\"", "12");
|
2009-03-22 08:20:15 +01:00
|
|
|
}
|
|
|
|
|
2011-02-02 10:29:10 +01:00
|
|
|
std::string myName() const
|
2009-06-12 15:20:08 +02:00
|
|
|
{
|
|
|
|
return "Other";
|
|
|
|
}
|
|
|
|
|
2009-06-12 12:19:37 +02:00
|
|
|
std::string classInfo() const
|
|
|
|
{
|
|
|
|
return "Other checks\n"
|
2009-10-04 13:46:37 +02:00
|
|
|
|
|
|
|
// error
|
2010-01-17 14:56:56 +01:00
|
|
|
"* [[OverlappingData|bad usage of the function 'sprintf' (overlapping data)]]\n"
|
|
|
|
"* division with zero\n"
|
2010-05-04 08:14:45 +02:00
|
|
|
"* using fflush() on an input stream\n"
|
2010-10-03 23:54:19 +02:00
|
|
|
"* scoped object destroyed immediately after construction\n"
|
2010-10-10 22:05:06 +02:00
|
|
|
"* assignment in an assert statement\n"
|
2011-01-22 19:21:56 +01:00
|
|
|
"* sizeof for array given as function argument\n"
|
2011-02-08 19:49:29 +01:00
|
|
|
"* incorrect length arguments for 'substr' and 'strncmp'\n"
|
2010-05-04 08:14:45 +02:00
|
|
|
|
2009-10-29 21:34:43 +01:00
|
|
|
// style
|
2010-01-17 14:56:56 +01:00
|
|
|
"* C-style pointer cast in cpp file\n"
|
|
|
|
"* redundant if\n"
|
|
|
|
"* bad usage of the function 'strtol'\n"
|
|
|
|
"* [[CheckUnsignedDivision|unsigned division]]\n"
|
2010-08-14 15:15:12 +02:00
|
|
|
"* Dangerous usage of 'scanf'\n"
|
2010-01-17 14:56:56 +01:00
|
|
|
"* unused struct member\n"
|
|
|
|
"* passing parameter by value\n"
|
|
|
|
"* [[IncompleteStatement|Incomplete statement]]\n"
|
|
|
|
"* [[charvar|check how signed char variables are used]]\n"
|
|
|
|
"* variable scope can be limited\n"
|
|
|
|
"* condition that is always true/false\n"
|
|
|
|
"* unusal pointer arithmetic. For example: \"abc\" + 'd'\n"
|
2010-06-30 09:10:30 +02:00
|
|
|
"* redundant assignment in a switch statement\n"
|
2010-08-06 22:57:10 +02:00
|
|
|
"* look for 'sizeof sizeof ..'\n"
|
|
|
|
"* look for calculations inside sizeof()\n"
|
2010-08-15 06:28:22 +02:00
|
|
|
"* assignment of a variable to itself\n"
|
2010-11-21 09:06:43 +01:00
|
|
|
"* mutual exclusion over || always evaluating to true\n"
|
2010-12-31 12:01:38 +01:00
|
|
|
"* exception caught by value instead of by reference\n"
|
2011-01-24 21:40:49 +01:00
|
|
|
"* Clarify calculation with parantheses\n"
|
2009-10-04 13:46:37 +02:00
|
|
|
|
|
|
|
// optimisations
|
2010-11-03 17:56:14 +01:00
|
|
|
"* optimisation: detect post increment/decrement\n";
|
2009-06-12 12:19:37 +02:00
|
|
|
}
|
2009-10-11 17:10:20 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
2010-04-22 10:21:54 +02:00
|
|
|
/**
|
|
|
|
* @brief Used in warningRedundantCode()
|
|
|
|
* Iterates through the %var% tokens in a fully qualified name and concatenates them.
|
|
|
|
*/
|
|
|
|
std::string concatNames(const Token **tok) const
|
|
|
|
{
|
|
|
|
std::string varname;
|
|
|
|
while (Token::Match(*tok, "%var% ::|."))
|
|
|
|
{
|
|
|
|
varname.append((*tok)->str());
|
|
|
|
varname.append((*tok)->next()->str());
|
|
|
|
*tok = (*tok)->tokAt(2);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Token::Match(*tok, "%var%"))
|
|
|
|
varname.append((*tok)->str());
|
|
|
|
|
|
|
|
return varname;
|
|
|
|
}
|
2009-01-31 20:29:27 +01:00
|
|
|
};
|
2009-07-17 10:49:01 +02:00
|
|
|
/// @}
|
2009-01-31 20:29:27 +01:00
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
#endif
|
|
|
|
|