2010-10-31 12:31:11 +01:00
|
|
|
/*
|
|
|
|
* Cppcheck - A tool for static C/C++ code analysis
|
2012-01-01 00:05:37 +01:00
|
|
|
* Copyright (C) 2007-2012 Daniel Marjamäki and Cppcheck team.
|
2010-10-31 12:31:11 +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
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
#ifndef checkuninitvarH
|
|
|
|
#define checkuninitvarH
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#include "check.h"
|
|
|
|
#include "settings.h"
|
|
|
|
|
|
|
|
class Token;
|
|
|
|
|
|
|
|
/// @addtogroup Checks
|
|
|
|
/// @{
|
|
|
|
|
|
|
|
|
|
|
|
/** @brief Checking for uninitialized variables */
|
|
|
|
|
2011-10-13 20:53:06 +02:00
|
|
|
class CheckUninitVar : public Check {
|
2010-10-31 12:31:11 +01:00
|
|
|
public:
|
|
|
|
/** @brief This constructor is used when registering the CheckUninitVar */
|
2011-02-02 10:29:10 +01:00
|
|
|
CheckUninitVar() : Check(myName())
|
2010-10-31 12:31:11 +01:00
|
|
|
{ }
|
|
|
|
|
|
|
|
/** @brief This constructor is used when running checks. */
|
|
|
|
CheckUninitVar(const Tokenizer *tokenizer, const Settings *settings, ErrorLogger *errorLogger)
|
2011-02-02 10:29:10 +01:00
|
|
|
: Check(myName(), tokenizer, settings, errorLogger)
|
2010-10-31 12:31:11 +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) {
|
2010-10-31 12:31:11 +01:00
|
|
|
(void)tokenizer;
|
|
|
|
(void)settings;
|
|
|
|
(void)errorLogger;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** @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) {
|
2010-10-31 12:31:11 +01:00
|
|
|
CheckUninitVar checkUninitVar(tokenizer, settings, errorLogger);
|
|
|
|
checkUninitVar.executionPaths();
|
2011-12-13 21:57:27 +01:00
|
|
|
checkUninitVar.check();
|
2010-10-31 12:31:11 +01:00
|
|
|
}
|
|
|
|
|
2011-12-13 21:57:27 +01:00
|
|
|
/** Check for uninitialized variables */
|
|
|
|
void check();
|
2011-12-26 14:01:46 +01:00
|
|
|
bool checkScopeForVariable(const Token *tok, const unsigned int varid, bool ispointer, bool * const possibleInit);
|
2011-12-26 18:56:40 +01:00
|
|
|
bool checkIfForWhileHead(const Token *startparanthesis, unsigned int varid, bool ispointer, bool suppressErrors, bool isuninit);
|
2011-12-26 14:01:46 +01:00
|
|
|
bool isVariableUsage(const Token *vartok, bool ispointer) const;
|
2011-12-13 21:57:27 +01:00
|
|
|
|
2011-12-26 18:32:42 +01:00
|
|
|
|
2010-10-31 12:31:11 +01:00
|
|
|
/**
|
|
|
|
* @brief Uninitialized variables: analyse functions to see how they work with uninitialized variables
|
|
|
|
* @param tokens [in] the token list
|
|
|
|
* @param func [out] names of functions that don't handle uninitialized variables well. the function names are added to the set. No clearing is made.
|
|
|
|
*/
|
|
|
|
void analyse(const Token * tokens, std::set<std::string> &func) const;
|
|
|
|
|
|
|
|
/** Save analysis results */
|
|
|
|
void saveAnalysisData(const std::set<std::string> &data) const;
|
|
|
|
|
|
|
|
/** @brief new type of check: check execution paths */
|
|
|
|
void executionPaths();
|
|
|
|
|
2011-09-05 19:42:48 +02:00
|
|
|
void uninitstringError(const Token *tok, const std::string &varname, bool strncpy_);
|
2010-10-31 12:31:11 +01:00
|
|
|
void uninitdataError(const Token *tok, const std::string &varname);
|
|
|
|
void uninitvarError(const Token *tok, const std::string &varname);
|
|
|
|
|
2012-03-27 19:40:39 +02:00
|
|
|
private:
|
2012-02-18 23:43:51 +01:00
|
|
|
void getErrorMessages(ErrorLogger *errorLogger, const Settings *settings) const {
|
2010-12-29 12:43:29 +01:00
|
|
|
CheckUninitVar c(0, settings, errorLogger);
|
|
|
|
|
2010-10-31 12:31:11 +01:00
|
|
|
// error
|
2011-09-05 19:42:48 +02:00
|
|
|
c.uninitstringError(0, "varname", true);
|
2010-12-29 12:43:29 +01:00
|
|
|
c.uninitdataError(0, "varname");
|
|
|
|
c.uninitvarError(0, "varname");
|
2010-10-31 12:31:11 +01:00
|
|
|
}
|
|
|
|
|
2011-10-13 20:53:06 +02:00
|
|
|
std::string myName() const {
|
2010-10-31 12:31:11 +01:00
|
|
|
return "Uninitialized variables";
|
|
|
|
}
|
|
|
|
|
2011-10-13 20:53:06 +02:00
|
|
|
std::string classInfo() const {
|
2010-10-31 12:31:11 +01:00
|
|
|
return "Uninitialized variables\n"
|
|
|
|
"* using uninitialized variables and data\n";
|
|
|
|
}
|
|
|
|
};
|
|
|
|
/// @}
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
#endif
|
|
|
|
|