2014-09-11 18:10:19 +02:00
|
|
|
/*
|
|
|
|
* Cppcheck - A tool for static C/C++ code analysis
|
2023-01-28 10:16:34 +01:00
|
|
|
* Copyright (C) 2007-2023 Cppcheck team.
|
2014-09-11 18:10:19 +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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
#ifndef checktypeH
|
|
|
|
#define checktypeH
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#include "check.h"
|
2017-05-27 04:33:47 +02:00
|
|
|
#include "config.h"
|
2023-08-18 12:03:50 +02:00
|
|
|
#include "tokenize.h"
|
2023-01-26 22:23:22 +01:00
|
|
|
#include "vfvalue.h"
|
2017-05-27 04:33:47 +02:00
|
|
|
|
2022-01-27 19:03:20 +01:00
|
|
|
#include <list>
|
|
|
|
#include <string>
|
|
|
|
|
2017-05-27 04:33:47 +02:00
|
|
|
class ErrorLogger;
|
|
|
|
class Settings;
|
|
|
|
class Token;
|
2022-01-27 19:03:20 +01:00
|
|
|
class ValueType;
|
2014-09-11 18:10:19 +02:00
|
|
|
|
|
|
|
/// @addtogroup Checks
|
|
|
|
/// @{
|
|
|
|
|
|
|
|
|
|
|
|
/** @brief Various small checks */
|
|
|
|
|
|
|
|
class CPPCHECKLIB CheckType : public Check {
|
|
|
|
public:
|
|
|
|
/** @brief This constructor is used when registering the CheckClass */
|
2021-08-07 20:51:18 +02:00
|
|
|
CheckType() : Check(myName()) {}
|
2014-09-11 18:10:19 +02:00
|
|
|
|
2023-09-11 11:12:42 +02:00
|
|
|
private:
|
2014-09-11 18:10:19 +02:00
|
|
|
/** @brief This constructor is used when running checks. */
|
|
|
|
CheckType(const Tokenizer *tokenizer, const Settings *settings, ErrorLogger *errorLogger)
|
2021-08-07 20:51:18 +02:00
|
|
|
: Check(myName(), tokenizer, settings, errorLogger) {}
|
2014-09-11 18:10:19 +02:00
|
|
|
|
|
|
|
/** @brief Run checks against the normal token list */
|
2023-08-18 12:03:50 +02:00
|
|
|
void runChecks(const Tokenizer &tokenizer, ErrorLogger *errorLogger) override {
|
2014-09-12 06:45:45 +02:00
|
|
|
// These are not "simplified" because casts can't be ignored
|
2023-08-18 12:03:50 +02:00
|
|
|
CheckType checkType(&tokenizer, tokenizer.getSettings(), errorLogger);
|
2014-09-11 18:10:19 +02:00
|
|
|
checkType.checkTooBigBitwiseShift();
|
|
|
|
checkType.checkIntegerOverflow();
|
|
|
|
checkType.checkSignConversion();
|
2015-05-25 10:02:17 +02:00
|
|
|
checkType.checkLongCast();
|
2016-11-22 22:37:13 +01:00
|
|
|
checkType.checkFloatToIntegerOverflow();
|
2014-09-11 18:10:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/** @brief %Check for bitwise shift with too big right operand */
|
|
|
|
void checkTooBigBitwiseShift();
|
|
|
|
|
|
|
|
/** @brief %Check for integer overflow */
|
|
|
|
void checkIntegerOverflow();
|
2014-09-11 19:45:52 +02:00
|
|
|
|
2014-09-11 18:10:19 +02:00
|
|
|
/** @brief %Check for dangerous sign conversion */
|
|
|
|
void checkSignConversion();
|
|
|
|
|
2015-05-25 10:02:17 +02:00
|
|
|
/** @brief %Check for implicit long cast of int result */
|
|
|
|
void checkLongCast();
|
2016-11-22 22:37:13 +01:00
|
|
|
|
|
|
|
/** @brief %Check for float to integer overflow */
|
|
|
|
void checkFloatToIntegerOverflow();
|
2023-03-02 22:05:41 +01:00
|
|
|
void checkFloatToIntegerOverflow(const Token *tok, const ValueType *vtint, const ValueType *vtfloat, const std::list<ValueFlow::Value> &floatValues);
|
2019-07-24 16:17:52 +02:00
|
|
|
|
2014-09-11 18:10:19 +02:00
|
|
|
// Error messages..
|
|
|
|
void tooBigBitwiseShiftError(const Token *tok, int lhsbits, const ValueFlow::Value &rhsbits);
|
2017-09-19 09:21:20 +02:00
|
|
|
void tooBigSignedBitwiseShiftError(const Token *tok, int lhsbits, const ValueFlow::Value &rhsbits);
|
2014-09-11 18:10:19 +02:00
|
|
|
void integerOverflowError(const Token *tok, const ValueFlow::Value &value);
|
2019-08-05 12:41:08 +02:00
|
|
|
void signConversionError(const Token *tok, const ValueFlow::Value *negativeValue, const bool constvalue);
|
2023-08-02 12:27:29 +02:00
|
|
|
void longCastAssignError(const Token *tok, const ValueType* src = nullptr, const ValueType* tgt = nullptr);
|
|
|
|
void longCastReturnError(const Token *tok, const ValueType* src = nullptr, const ValueType* tgt = nullptr);
|
2016-11-22 22:37:13 +01:00
|
|
|
void floatToIntegerOverflowError(const Token *tok, const ValueFlow::Value &value);
|
2014-09-11 18:10:19 +02:00
|
|
|
|
2022-02-10 23:02:24 +01:00
|
|
|
void getErrorMessages(ErrorLogger *errorLogger, const Settings *settings) const override {
|
2016-05-07 16:30:54 +02:00
|
|
|
CheckType c(nullptr, settings, errorLogger);
|
|
|
|
c.tooBigBitwiseShiftError(nullptr, 32, ValueFlow::Value(64));
|
2017-09-19 09:21:20 +02:00
|
|
|
c.tooBigSignedBitwiseShiftError(nullptr, 31, ValueFlow::Value(31));
|
2016-05-07 16:30:54 +02:00
|
|
|
c.integerOverflowError(nullptr, ValueFlow::Value(1LL<<32));
|
2019-08-05 12:41:08 +02:00
|
|
|
c.signConversionError(nullptr, nullptr, false);
|
2016-05-07 16:30:54 +02:00
|
|
|
c.longCastAssignError(nullptr);
|
|
|
|
c.longCastReturnError(nullptr);
|
2016-11-22 22:37:13 +01:00
|
|
|
ValueFlow::Value f;
|
2019-07-10 14:04:56 +02:00
|
|
|
f.valueType = ValueFlow::Value::ValueType::FLOAT;
|
2016-11-22 22:37:13 +01:00
|
|
|
f.floatValue = 1E100;
|
|
|
|
c.floatToIntegerOverflowError(nullptr, f);
|
2014-09-11 18:10:19 +02:00
|
|
|
}
|
|
|
|
|
2014-11-20 14:20:09 +01:00
|
|
|
static std::string myName() {
|
2014-09-11 18:10:19 +02:00
|
|
|
return "Type";
|
|
|
|
}
|
|
|
|
|
2022-02-10 23:02:24 +01:00
|
|
|
std::string classInfo() const override {
|
2014-09-11 18:10:19 +02:00
|
|
|
return "Type checks\n"
|
2014-09-30 14:56:12 +02:00
|
|
|
"- bitwise shift by too many bits (only enabled when --platform is used)\n"
|
|
|
|
"- signed integer overflow (only enabled when --platform is used)\n"
|
2015-05-25 10:02:17 +02:00
|
|
|
"- dangerous sign conversion, when signed value can be negative\n"
|
|
|
|
"- possible loss of information when assigning int result to long variable\n"
|
2016-11-22 22:37:13 +01:00
|
|
|
"- possible loss of information when returning int result as long return value\n"
|
|
|
|
"- float conversion overflow\n";
|
2014-09-11 18:10:19 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
/// @}
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
#endif // checktypeH
|