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;
|
2011-11-10 21:49:14 +01:00
|
|
|
class Function;
|
2009-03-20 18:16:21 +01:00
|
|
|
|
2009-07-17 10:49:01 +02:00
|
|
|
/// @addtogroup Checks
|
|
|
|
/// @{
|
|
|
|
|
2010-03-14 19:11:03 +01:00
|
|
|
|
|
|
|
/** @brief Various small checks */
|
|
|
|
|
2011-10-13 20:53:06 +02: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 */
|
2011-10-13 20:53:06 +02: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();
|
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-10-28 22:06:55 +02:00
|
|
|
checkOther.checkSizeofForStrncmpSize();
|
2011-05-16 21:16:25 +02:00
|
|
|
checkOther.checkSizeofForNumericParameter();
|
2011-02-04 20:55:38 +01:00
|
|
|
checkOther.checkSelfAssignment();
|
2011-04-09 21:14:01 +02:00
|
|
|
checkOther.checkDuplicateIf();
|
2011-04-09 23:05:27 +02:00
|
|
|
checkOther.checkDuplicateBranch();
|
2011-04-10 16:25:02 +02:00
|
|
|
checkOther.checkDuplicateExpression();
|
2011-12-03 11:43:23 +01:00
|
|
|
checkOther.checkUnreachableCode();
|
2011-10-11 08:41:39 +02:00
|
|
|
checkOther.checkSuspiciousSemicolon();
|
2011-04-09 21:14:01 +02:00
|
|
|
|
|
|
|
// information checks
|
|
|
|
checkOther.checkVariableScope();
|
2011-03-09 22:29:50 +01:00
|
|
|
|
2011-03-13 12:16:55 +01:00
|
|
|
checkOther.clarifyCondition(); // not simplified because ifAssign
|
2011-10-10 19:11:17 +02:00
|
|
|
checkOther.checkComparisonOfBoolExpressionWithInt();
|
2009-03-21 07:53:23 +01:00
|
|
|
}
|
|
|
|
|
2010-03-14 19:11:03 +01:00
|
|
|
/** @brief Run checks against the simplified token list */
|
2011-10-13 20:53:06 +02: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();
|
2011-11-17 16:31:16 +01:00
|
|
|
checkOther.checkCCTypeFunctions();
|
2010-05-04 08:14:45 +02:00
|
|
|
checkOther.checkFflushOnInputStream();
|
2010-08-14 15:15:12 +02:00
|
|
|
checkOther.invalidScanf();
|
2011-11-05 07:29:53 +01:00
|
|
|
checkOther.checkWrongPrintfScanfArguments();
|
2009-12-06 18:41:28 +01:00
|
|
|
|
2011-10-22 17:12:52 +02:00
|
|
|
checkOther.checkCoutCerrMisusage();
|
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();
|
2011-02-11 23:38:23 +01:00
|
|
|
checkOther.checkIncrementBoolean();
|
2011-02-27 21:30:22 +01:00
|
|
|
checkOther.checkComparisonOfBoolWithInt();
|
2011-02-19 20:02:28 +01:00
|
|
|
checkOther.checkSwitchCaseFallThrough();
|
2011-04-26 07:45:27 +02:00
|
|
|
checkOther.checkAlwaysTrueOrFalseStringCompare();
|
2011-07-28 08:12:21 +02:00
|
|
|
|
2011-07-28 07:28:24 +02:00
|
|
|
checkOther.checkAssignBoolToPointer();
|
2011-08-07 01:23:09 +02:00
|
|
|
checkOther.checkSignOfUnsignedVariable();
|
2011-10-06 22:01:48 +02:00
|
|
|
checkOther.checkBitwiseOnBoolean();
|
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();
|
2011-04-03 22:12:22 +02:00
|
|
|
void clarifyCalculationError(const Token *tok, const std::string &op);
|
2011-01-24 21:40:49 +01:00
|
|
|
|
2011-03-09 22:20:14 +01:00
|
|
|
/** @brief Suspicious condition (assignment+comparison) */
|
|
|
|
void clarifyCondition();
|
2011-08-19 13:40:54 +02:00
|
|
|
void clarifyConditionError(const Token *tok, bool assign, bool boolop);
|
2011-03-09 22:20:14 +01:00
|
|
|
|
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 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 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
|
|
|
|
2011-11-17 16:31:16 +01:00
|
|
|
/** @brief %Check for parameters given to cctype function that do make error*/
|
|
|
|
void checkCCTypeFunctions();
|
|
|
|
|
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);
|
|
|
|
|
2011-11-05 07:29:53 +01:00
|
|
|
/** @brief %Checks type and number of arguments given to functions like printf or scanf*/
|
|
|
|
void checkWrongPrintfScanfArguments();
|
|
|
|
void wrongPrintfScanfArgumentsError(const Token* tok,
|
|
|
|
const std::string &function,
|
|
|
|
unsigned int numFormat,
|
|
|
|
unsigned int numFunction);
|
|
|
|
|
2010-06-30 09:10:30 +02:00
|
|
|
/** @brief %Check for assigning to the same variable twice in a switch statement*/
|
|
|
|
void checkRedundantAssignmentInSwitch();
|
|
|
|
|
2011-02-19 09:33:29 +01:00
|
|
|
/** @brief %Check for switch case fall through without comment */
|
|
|
|
void checkSwitchCaseFallThrough();
|
|
|
|
|
2011-10-22 17:12:52 +02:00
|
|
|
/** @brief %Check for missusage of std::cout */
|
|
|
|
void checkCoutCerrMisusage();
|
|
|
|
|
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-10-28 22:06:55 +02:00
|
|
|
/** @brief %Check for using sizeof with a char pointer */
|
|
|
|
void checkSizeofForStrncmpSize();
|
|
|
|
|
2011-05-16 21:16:25 +02:00
|
|
|
/** @brief %Check for using sizeof with numeric given as function argument */
|
|
|
|
void checkSizeofForNumericParameter();
|
|
|
|
|
2011-02-08 19:49:29 +01:00
|
|
|
/** @brief %Check for using bad usage of strncmp and substr */
|
|
|
|
void checkIncorrectStringCompare();
|
|
|
|
|
2011-02-11 23:38:23 +01:00
|
|
|
/** @brief %Check for using postfix increment on bool */
|
|
|
|
void checkIncrementBoolean();
|
|
|
|
|
2011-02-27 21:30:22 +01:00
|
|
|
/** @brief %Check for suspicious comparison of a bool and a non-zero (and non-one) value (e.g. "if (!x==4)") */
|
|
|
|
void checkComparisonOfBoolWithInt();
|
|
|
|
|
2011-04-09 21:14:01 +02:00
|
|
|
/** @brief %Check for suspicious code where multiple if have the same expression (e.g "if (a) { } else if (a) { }") */
|
|
|
|
void checkDuplicateIf();
|
|
|
|
|
2011-04-09 23:05:27 +02:00
|
|
|
/** @brief %Check for suspicious code where if and else branch are the same (e.g "if (a) b = true; else b = true;") */
|
|
|
|
void checkDuplicateBranch();
|
|
|
|
|
2011-04-10 16:25:02 +02:00
|
|
|
/** @brief %Check for suspicious code with the same expression on both sides of operator (e.g "if (a && a)") */
|
|
|
|
void checkDuplicateExpression();
|
|
|
|
|
2011-04-26 07:45:27 +02:00
|
|
|
/** @brief %Check for suspicious code that compares string literals for equality */
|
|
|
|
void checkAlwaysTrueOrFalseStringCompare();
|
|
|
|
|
2011-12-03 11:43:23 +01:00
|
|
|
/** @brief %Check for code that gets never executed, such as duplicate break statements */
|
|
|
|
void checkUnreachableCode();
|
2011-07-15 02:12:56 +02:00
|
|
|
|
2011-07-28 07:28:24 +02:00
|
|
|
/** @brief assigning bool to pointer */
|
|
|
|
void checkAssignBoolToPointer();
|
|
|
|
|
2011-08-07 01:23:09 +02:00
|
|
|
/** @brief %Check for testing sign of unsigned variable */
|
|
|
|
void checkSignOfUnsignedVariable();
|
|
|
|
|
2011-10-06 22:01:48 +02:00
|
|
|
/** @brief %Check for using bool in bitwise expression */
|
|
|
|
void checkBitwiseOnBoolean();
|
|
|
|
|
2011-10-10 19:11:17 +02:00
|
|
|
/** @brief %Check for comparing a bool expression with an integer other than 0 or 1 */
|
|
|
|
void checkComparisonOfBoolExpressionWithInt();
|
|
|
|
|
2011-10-11 08:41:39 +02:00
|
|
|
/** @brief %Check for suspicious use of semicolon */
|
|
|
|
void checkSuspiciousSemicolon();
|
|
|
|
|
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 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);
|
2011-08-19 17:53:43 +02:00
|
|
|
void strPlusCharError(const Token *tok);
|
2009-03-29 18:47:05 +02:00
|
|
|
void zerodivError(const Token *tok);
|
2011-10-22 17:12:52 +02:00
|
|
|
void coutCerrMisusageError(const Token* tok, const std::string& streamName);
|
2010-04-05 19:57:54 +02:00
|
|
|
void mathfunctionCallError(const Token *tok, const unsigned int numParam = 1);
|
2011-11-17 16:31:16 +01:00
|
|
|
void cctypefunctionCallError(const Token *tok, const std::string &functionName, const std::string &value);
|
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);
|
2011-10-13 10:27:22 +02:00
|
|
|
void redundantStrcpyInSwitchError(const Token *tok, const std::string &varname);
|
2011-02-19 09:33:29 +01:00
|
|
|
void switchCaseFallThrough(const Token *tok);
|
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);
|
2011-07-17 04:06:23 +02:00
|
|
|
void incorrectLogicOperatorError(const Token *tok, bool always);
|
2011-08-19 19:28:37 +02:00
|
|
|
void secondAlwaysTrueFalseWhenFirstTrueError(const Token *tok, const std::string &truefalse);
|
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-10-28 22:06:55 +02:00
|
|
|
void sizeofForStrncmpError(const Token *tok);
|
2011-05-16 21:16:25 +02:00
|
|
|
void sizeofForNumericParameterError(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);
|
2011-10-18 21:37:03 +02:00
|
|
|
void incorrectStringBooleanError(const Token *tok, const std::string& string);
|
2011-02-11 23:38:23 +01:00
|
|
|
void incrementBooleanError(const Token *tok);
|
2011-10-05 20:30:36 +02:00
|
|
|
void comparisonOfBoolWithIntError(const Token *tok, const std::string &expression);
|
2011-04-09 21:14:01 +02:00
|
|
|
void duplicateIfError(const Token *tok1, const Token *tok2);
|
2011-04-09 23:05:27 +02:00
|
|
|
void duplicateBranchError(const Token *tok1, const Token *tok2);
|
2011-04-10 16:25:02 +02:00
|
|
|
void duplicateExpressionError(const Token *tok1, const Token *tok2, const std::string &op);
|
2011-08-19 17:53:43 +02:00
|
|
|
void alwaysTrueFalseStringCompareError(const Token *tok, const std::string& str1, const std::string& str2);
|
2011-10-28 22:05:11 +02:00
|
|
|
void alwaysTrueStringVariableCompareError(const Token *tok, const std::string& str1, const std::string& str2);
|
2011-07-15 02:12:56 +02:00
|
|
|
void duplicateBreakError(const Token *tok);
|
2011-12-03 11:43:23 +01:00
|
|
|
void unreachableCodeError(const Token* tok);
|
2011-07-28 07:28:24 +02:00
|
|
|
void assignBoolToPointerError(const Token *tok);
|
2011-11-06 18:24:37 +01:00
|
|
|
void unsignedLessThanZeroError(const Token *tok, const std::string &varname, bool inconclusive);
|
|
|
|
void unsignedPositiveError(const Token *tok, const std::string &varname, bool inconclusive);
|
2011-10-06 22:01:48 +02:00
|
|
|
void bitwiseOnBooleanError(const Token *tok, const std::string &varname, const std::string &op);
|
2011-10-10 19:11:17 +02:00
|
|
|
void comparisonOfBoolExpressionWithIntError(const Token *tok);
|
2011-10-11 08:41:39 +02:00
|
|
|
void SuspiciousSemicolonError(const Token *tok);
|
2009-03-21 17:58:13 +01:00
|
|
|
|
2011-10-13 20:53:06 +02:00
|
|
|
void getErrorMessages(ErrorLogger *errorLogger, const Settings *settings) {
|
2010-12-29 12:43:29 +01:00
|
|
|
CheckOther c(0, settings, errorLogger);
|
|
|
|
|
2009-10-04 13:46:37 +02:00
|
|
|
// error
|
2011-07-28 07:28:24 +02:00
|
|
|
c.assignBoolToPointerError(0);
|
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);
|
2011-10-28 22:06:55 +02:00
|
|
|
c.sizeofForStrncmpError(0);
|
2011-05-16 21:16:25 +02:00
|
|
|
c.sizeofForNumericParameterError(0);
|
2011-10-22 17:12:52 +02:00
|
|
|
c.coutCerrMisusageError(0, "cout");
|
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.passedByValueError(0, "parametername");
|
|
|
|
c.constStatementError(0, "type");
|
|
|
|
c.charArrayIndexError(0);
|
|
|
|
c.charBitOpError(0);
|
|
|
|
c.variableScopeError(0, "varname");
|
2011-08-19 17:53:43 +02:00
|
|
|
c.strPlusCharError(0);
|
2010-12-29 12:43:29 +01:00
|
|
|
c.sizeofsizeofError(0);
|
|
|
|
c.sizeofCalculationError(0);
|
|
|
|
c.redundantAssignmentInSwitchError(0, "varname");
|
2011-02-19 09:33:29 +01:00
|
|
|
c.switchCaseFallThrough(0);
|
2010-12-29 12:43:29 +01:00
|
|
|
c.selfAssignmentError(0, "varname");
|
|
|
|
c.assignmentInAssertError(0, "varname");
|
|
|
|
c.invalidScanfError(0);
|
2011-07-17 04:06:23 +02:00
|
|
|
c.incorrectLogicOperatorError(0, true);
|
2011-08-19 19:28:37 +02:00
|
|
|
c.secondAlwaysTrueFalseWhenFirstTrueError(0, "when first comparison is true, the 2nd comparison is always true");
|
2010-12-31 12:01:38 +01:00
|
|
|
c.catchExceptionByValueError(0);
|
2011-01-06 11:31:58 +01:00
|
|
|
c.memsetZeroBytesError(0, "varname");
|
2011-04-03 22:12:22 +02:00
|
|
|
c.clarifyCalculationError(0, "+");
|
2011-08-19 13:40:54 +02:00
|
|
|
c.clarifyConditionError(0, true, false);
|
2011-02-08 19:49:29 +01:00
|
|
|
c.incorrectStringCompareError(0, "substr", "\"Hello World\"", "12");
|
2011-10-18 21:37:03 +02:00
|
|
|
c.incorrectStringBooleanError(0, "\"Hello World\"");
|
2011-02-11 23:38:23 +01:00
|
|
|
c.incrementBooleanError(0);
|
2011-02-27 21:30:22 +01:00
|
|
|
c.comparisonOfBoolWithIntError(0, "varname");
|
2011-04-09 21:14:01 +02:00
|
|
|
c.duplicateIfError(0, 0);
|
2011-04-09 23:05:27 +02:00
|
|
|
c.duplicateBranchError(0, 0);
|
2011-04-10 16:25:02 +02:00
|
|
|
c.duplicateExpressionError(0, 0, "&&");
|
2011-08-19 17:53:43 +02:00
|
|
|
c.alwaysTrueFalseStringCompareError(0, "str1", "str2");
|
2011-10-28 22:05:11 +02:00
|
|
|
c.alwaysTrueStringVariableCompareError(0, "varname1", "varname2");
|
2011-07-15 02:12:56 +02:00
|
|
|
c.duplicateBreakError(0);
|
2011-12-03 11:43:23 +01:00
|
|
|
c.unreachableCodeError(0);
|
2011-11-06 18:24:37 +01:00
|
|
|
c.unsignedLessThanZeroError(0, "varname", false);
|
|
|
|
c.unsignedPositiveError(0, "varname", false);
|
2011-10-06 22:01:48 +02:00
|
|
|
c.bitwiseOnBooleanError(0, "varname", "&&");
|
2011-10-10 19:11:17 +02:00
|
|
|
c.comparisonOfBoolExpressionWithIntError(0);
|
2011-10-11 08:41:39 +02:00
|
|
|
c.SuspiciousSemicolonError(0);
|
2011-11-27 07:29:09 +01:00
|
|
|
c.wrongPrintfScanfArgumentsError(0,"printf",3,2);
|
2011-11-17 16:31:16 +01:00
|
|
|
c.cctypefunctionCallError(0, "funname", "value");
|
2009-03-22 08:20:15 +01:00
|
|
|
}
|
|
|
|
|
2011-10-13 20:53:06 +02:00
|
|
|
std::string myName() const {
|
2009-06-12 15:20:08 +02:00
|
|
|
return "Other";
|
|
|
|
}
|
|
|
|
|
2011-10-13 20:53:06 +02:00
|
|
|
std::string classInfo() const {
|
2009-06-12 12:19:37 +02:00
|
|
|
return "Other checks\n"
|
2009-10-04 13:46:37 +02:00
|
|
|
|
|
|
|
// error
|
2011-10-27 10:50:40 +02:00
|
|
|
"* Assigning bool value to pointer (converting bool value to address)\n"
|
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-05-16 21:16:25 +02:00
|
|
|
"* sizeof for numeric given as function argument\n"
|
2011-02-08 19:49:29 +01:00
|
|
|
"* incorrect length arguments for 'substr' and 'strncmp'\n"
|
2011-10-22 17:12:52 +02:00
|
|
|
"* invalid usage of output stream. For example: std::cout << std::cout;'\n"
|
2011-11-27 07:29:09 +01:00
|
|
|
"* wrong number of arguments given to 'printf' or 'scanf;'\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
|
|
|
"* 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"
|
2011-10-13 10:27:22 +02:00
|
|
|
"* redundant strcpy 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-03-30 16:44:16 +02:00
|
|
|
"* Clarify calculation with parentheses\n"
|
2011-02-11 23:38:23 +01:00
|
|
|
"* using increment on boolean\n"
|
2011-02-27 21:30:22 +01:00
|
|
|
"* comparison of a boolean with a non-zero integer\n"
|
2011-10-10 19:11:17 +02:00
|
|
|
"* comparison of a boolean expression with an integer other than 0 or 1\n"
|
2011-04-26 07:45:27 +02:00
|
|
|
"* suspicious condition (assignment+comparison)\n"
|
|
|
|
"* suspicious condition (runtime comparison of string literals)\n"
|
2011-10-18 21:37:03 +02:00
|
|
|
"* suspicious condition (string literals as boolean)\n"
|
2011-07-15 02:12:56 +02:00
|
|
|
"* duplicate break statement\n"
|
2011-12-03 11:43:23 +01:00
|
|
|
"* unreachable code\n"
|
2011-08-07 01:23:09 +02:00
|
|
|
"* testing if unsigned variable is negative\n"
|
|
|
|
"* testing is unsigned variable is positive\n"
|
2011-10-06 22:01:48 +02:00
|
|
|
"* using bool in bitwise expression\n"
|
2011-10-11 08:41:39 +02:00
|
|
|
"* Suspicious use of ; at the end of 'if/for/while' statement.\n"
|
2011-11-17 16:31:16 +01:00
|
|
|
"* incorrect usage of functions from ctype library.\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.
|
|
|
|
*/
|
2011-10-13 20:53:06 +02:00
|
|
|
std::string concatNames(const Token **tok) const {
|
2010-04-22 10:21:54 +02:00
|
|
|
std::string varname;
|
2011-10-13 20:53:06 +02:00
|
|
|
while (Token::Match(*tok, "%var% ::|.")) {
|
2010-04-22 10:21:54 +02:00
|
|
|
varname.append((*tok)->str());
|
|
|
|
varname.append((*tok)->next()->str());
|
|
|
|
*tok = (*tok)->tokAt(2);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Token::Match(*tok, "%var%"))
|
|
|
|
varname.append((*tok)->str());
|
|
|
|
|
|
|
|
return varname;
|
|
|
|
}
|
2011-11-08 21:22:31 +01:00
|
|
|
|
2011-11-10 21:49:14 +01:00
|
|
|
void checkExpressionRange(const std::list<Function> &constFunctions,
|
|
|
|
const Token *start,
|
|
|
|
const Token *end,
|
|
|
|
const std::string &toCheck);
|
|
|
|
|
|
|
|
void complexDuplicateExpressionCheck(const std::list<Function> &constFunctions,
|
|
|
|
const Token *classStart,
|
2011-11-08 21:22:31 +01:00
|
|
|
const std::string &toCheck,
|
|
|
|
const std::string &alt);
|
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
|
|
|
|
|