2011-07-30 21:43:21 +02:00
|
|
|
/*
|
|
|
|
* Cppcheck - A tool for static C/C++ code analysis
|
2016-01-01 14:34:45 +01:00
|
|
|
* Copyright (C) 2007-2016 Cppcheck team.
|
2011-07-30 21:43:21 +02: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
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
2014-08-29 17:06:46 +02:00
|
|
|
#ifndef checkconditionH
|
|
|
|
#define checkconditionH
|
2011-07-30 21:43:21 +02:00
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
2012-06-10 14:19:09 +02:00
|
|
|
#include "config.h"
|
2011-07-30 21:43:21 +02:00
|
|
|
#include "check.h"
|
2011-12-01 18:32:14 +01:00
|
|
|
#include "mathlib.h"
|
2011-07-30 21:43:21 +02:00
|
|
|
|
|
|
|
/// @addtogroup Checks
|
|
|
|
/// @{
|
|
|
|
|
|
|
|
/**
|
2014-08-29 17:06:46 +02:00
|
|
|
* @brief Check for condition mismatches
|
2011-07-30 21:43:21 +02:00
|
|
|
*/
|
|
|
|
|
2014-08-29 17:06:46 +02:00
|
|
|
class CPPCHECKLIB CheckCondition : public Check {
|
2011-07-30 21:43:21 +02:00
|
|
|
public:
|
|
|
|
/** This constructor is used when registering the CheckAssignIf */
|
2014-11-20 14:20:09 +01:00
|
|
|
CheckCondition() : Check(myName()) {
|
2011-07-30 21:43:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/** This constructor is used when running checks. */
|
2014-08-29 17:06:46 +02:00
|
|
|
CheckCondition(const Tokenizer *tokenizer, const Settings *settings, ErrorLogger *errorLogger)
|
2014-11-20 14:20:09 +01:00
|
|
|
: Check(myName(), tokenizer, settings, errorLogger) {
|
2011-07-30 21:43:21 +02:00
|
|
|
}
|
|
|
|
|
2014-11-20 14:20:09 +01:00
|
|
|
void runChecks(const Tokenizer *tokenizer, const Settings *settings, ErrorLogger *errorLogger) {
|
2014-08-29 17:06:46 +02:00
|
|
|
CheckCondition checkCondition(tokenizer, settings, errorLogger);
|
|
|
|
checkCondition.multiCondition();
|
|
|
|
checkCondition.clarifyCondition(); // not simplified because ifAssign
|
2015-07-27 10:43:52 +02:00
|
|
|
checkCondition.oppositeInnerCondition();
|
2015-07-30 10:30:30 +02:00
|
|
|
checkCondition.checkIncorrectLogicOperator();
|
2015-11-30 08:51:15 +01:00
|
|
|
checkCondition.checkInvalidTestForOverflow();
|
2016-01-26 10:08:21 +01:00
|
|
|
checkCondition.alwaysTrueFalse();
|
2014-07-30 11:23:09 +02:00
|
|
|
}
|
|
|
|
|
2011-07-30 21:43:21 +02:00
|
|
|
/** @brief Run checks against the simplified token list */
|
2014-11-20 14:20:09 +01:00
|
|
|
void runSimplifiedChecks(const Tokenizer *tokenizer, const Settings *settings, ErrorLogger *errorLogger) {
|
2014-08-29 17:06:46 +02:00
|
|
|
CheckCondition checkCondition(tokenizer, settings, errorLogger);
|
|
|
|
checkCondition.assignIf();
|
2015-02-22 13:09:39 +01:00
|
|
|
checkCondition.checkBadBitmaskCheck();
|
2014-08-29 17:06:46 +02:00
|
|
|
checkCondition.comparison();
|
|
|
|
checkCondition.checkModuloAlwaysTrueFalse();
|
2011-07-30 21:43:21 +02:00
|
|
|
}
|
|
|
|
|
2011-07-31 11:23:38 +02:00
|
|
|
/** mismatching assignment / comparison */
|
|
|
|
void assignIf();
|
|
|
|
|
2012-09-29 10:33:54 +02:00
|
|
|
/** parse scopes recursively */
|
|
|
|
bool assignIfParseScope(const Token * const assignTok,
|
|
|
|
const Token * const startTok,
|
|
|
|
const unsigned int varid,
|
2012-09-29 10:54:09 +02:00
|
|
|
const bool islocal,
|
2012-09-29 10:33:54 +02:00
|
|
|
const char bitop,
|
|
|
|
const MathLib::bigint num);
|
|
|
|
|
2015-02-22 13:09:39 +01:00
|
|
|
/** check bitmask using | instead of & */
|
|
|
|
void checkBadBitmaskCheck();
|
|
|
|
|
2011-07-31 11:23:38 +02:00
|
|
|
/** mismatching lhs and rhs in comparison */
|
|
|
|
void comparison();
|
2011-07-30 21:43:21 +02:00
|
|
|
|
2011-08-01 09:35:48 +02:00
|
|
|
/** match 'if' and 'else if' conditions */
|
2011-08-01 11:33:09 +02:00
|
|
|
void multiCondition();
|
2011-08-01 09:35:48 +02:00
|
|
|
|
2014-08-29 17:06:46 +02:00
|
|
|
/** To check the dead code in a program, which is inaccessible due to the counter-conditions check in nested-if statements **/
|
|
|
|
void oppositeInnerCondition();
|
|
|
|
|
|
|
|
/** @brief %Check for testing for mutual exclusion over ||*/
|
|
|
|
void checkIncorrectLogicOperator();
|
|
|
|
|
|
|
|
/** @brief %Check for suspicious usage of modulo (e.g. "if(var % 4 == 4)") */
|
|
|
|
void checkModuloAlwaysTrueFalse();
|
|
|
|
|
|
|
|
/** @brief Suspicious condition (assignment+comparison) */
|
|
|
|
void clarifyCondition();
|
|
|
|
|
2015-07-17 15:30:23 +02:00
|
|
|
/** @brief Condition is always true/false */
|
|
|
|
void alwaysTrueFalse();
|
|
|
|
|
2015-11-30 08:51:15 +01:00
|
|
|
/** @brief %Check for invalid test for overflow 'x+100 < x' */
|
|
|
|
void checkInvalidTestForOverflow();
|
|
|
|
|
2011-07-30 21:43:21 +02:00
|
|
|
private:
|
|
|
|
|
2015-06-28 12:34:08 +02:00
|
|
|
bool isOverlappingCond(const Token * const cond1, const Token * const cond2, const std::set<std::string> &constFunctions) const;
|
2012-09-28 17:03:16 +02:00
|
|
|
void assignIfError(const Token *tok1, const Token *tok2, const std::string &condition, bool result);
|
2013-01-21 19:59:34 +01:00
|
|
|
void mismatchingBitAndError(const Token *tok1, const MathLib::bigint num1, const Token *tok2, const MathLib::bigint num2);
|
2015-02-22 13:09:39 +01:00
|
|
|
void badBitmaskCheckError(const Token *tok);
|
2011-11-18 20:07:42 +01:00
|
|
|
void comparisonError(const Token *tok,
|
2012-09-14 19:13:44 +02:00
|
|
|
const std::string &bitop,
|
2011-12-01 18:32:14 +01:00
|
|
|
MathLib::bigint value1,
|
2011-11-18 20:07:42 +01:00
|
|
|
const std::string &op,
|
2011-12-01 18:32:14 +01:00
|
|
|
MathLib::bigint value2,
|
2011-11-18 20:07:42 +01:00
|
|
|
bool result);
|
2011-08-01 11:33:09 +02:00
|
|
|
void multiConditionError(const Token *tok, unsigned int line1);
|
2011-07-30 21:43:21 +02:00
|
|
|
|
2014-08-29 17:06:46 +02:00
|
|
|
void oppositeInnerConditionError(const Token *tok1, const Token* tok2);
|
|
|
|
|
2016-05-24 15:08:07 +02:00
|
|
|
void incorrectLogicOperatorError(const Token *tok, const std::string &condition, bool always, bool inconclusive);
|
|
|
|
void redundantConditionError(const Token *tok, const std::string &text, bool inconclusive);
|
2014-08-29 17:06:46 +02:00
|
|
|
|
|
|
|
void moduloAlwaysTrueFalseError(const Token* tok, const std::string& maxVal);
|
|
|
|
|
|
|
|
void clarifyConditionError(const Token *tok, bool assign, bool boolop);
|
|
|
|
|
2015-07-17 15:30:23 +02:00
|
|
|
void alwaysTrueFalseError(const Token *tok, bool knownResult);
|
|
|
|
|
2015-11-30 11:12:51 +01:00
|
|
|
void invalidTestForOverflow(const Token* tok, bool result);
|
2015-11-30 08:51:15 +01:00
|
|
|
|
2014-11-20 14:20:09 +01:00
|
|
|
void getErrorMessages(ErrorLogger *errorLogger, const Settings *settings) const {
|
2016-05-07 16:30:54 +02:00
|
|
|
CheckCondition c(nullptr, settings, errorLogger);
|
|
|
|
|
|
|
|
c.assignIfError(nullptr, 0, "", false);
|
|
|
|
c.badBitmaskCheckError(nullptr);
|
|
|
|
c.comparisonError(nullptr, "&", 6, "==", 1, false);
|
|
|
|
c.multiConditionError(nullptr,1);
|
|
|
|
c.mismatchingBitAndError(nullptr, 0xf0, 0, 1);
|
|
|
|
c.oppositeInnerConditionError(nullptr, 0);
|
2016-05-24 15:08:07 +02:00
|
|
|
c.incorrectLogicOperatorError(nullptr, "foo > 3 && foo < 4", true, false);
|
|
|
|
c.redundantConditionError(nullptr, "If x > 11 the condition x > 10 is always true.", false);
|
2016-05-07 16:30:54 +02:00
|
|
|
c.moduloAlwaysTrueFalseError(nullptr, "1");
|
|
|
|
c.clarifyConditionError(nullptr, true, false);
|
|
|
|
c.alwaysTrueFalseError(nullptr, true);
|
|
|
|
c.invalidTestForOverflow(nullptr, false);
|
2011-07-30 21:43:21 +02:00
|
|
|
}
|
|
|
|
|
2014-11-20 14:20:09 +01:00
|
|
|
static std::string myName() {
|
2014-08-29 17:06:46 +02:00
|
|
|
return "Condition";
|
2011-07-30 21:43:21 +02:00
|
|
|
}
|
|
|
|
|
2014-11-20 14:20:09 +01:00
|
|
|
std::string classInfo() const {
|
2014-08-29 17:06:46 +02:00
|
|
|
return "Match conditions with assignments and other conditions:\n"
|
2014-09-30 14:56:12 +02:00
|
|
|
"- Mismatching assignment and comparison => comparison is always true/false\n"
|
|
|
|
"- Mismatching lhs and rhs in comparison => comparison is always true/false\n"
|
2015-02-22 13:09:39 +01:00
|
|
|
"- Detect usage of | where & should be used\n"
|
2014-09-30 14:56:12 +02:00
|
|
|
"- Detect matching 'if' and 'else if' conditions\n"
|
|
|
|
"- Mismatching bitand (a &= 0xf0; a &= 1; => a = 0)\n"
|
|
|
|
"- Find dead code which is inaccessible due to the counter-conditions check in nested if statements\n"
|
2015-11-30 08:51:15 +01:00
|
|
|
"- Condition that is always true/false\n"
|
|
|
|
"- Mutual exclusion over || always evaluating to true\n"
|
2015-07-17 15:30:23 +02:00
|
|
|
"- Comparisons of modulo results that are always true/false.\n"
|
2015-11-30 08:51:15 +01:00
|
|
|
"- Known variable values => condition is always true/false\n"
|
|
|
|
"- Invalid test for overflow (for example 'ptr+u < ptr'). Condition is always false unless there is overflow, and overflow is UB.\n";
|
2011-07-30 21:43:21 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
/// @}
|
|
|
|
//---------------------------------------------------------------------------
|
2014-08-29 17:06:46 +02:00
|
|
|
#endif // checkconditionH
|