2012-05-26 08:53:46 +02:00
|
|
|
/*
|
|
|
|
* Cppcheck - A tool for static C/C++ code analysis
|
2019-02-09 07:24:06 +01:00
|
|
|
* Copyright (C) 2007-2019 Cppcheck team.
|
2012-05-26 08:53:46 +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 checkleakautovarH
|
|
|
|
#define checkleakautovarH
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#include "check.h"
|
2017-05-27 04:33:47 +02:00
|
|
|
#include "config.h"
|
|
|
|
#include "library.h"
|
2012-05-26 08:53:46 +02:00
|
|
|
|
2014-05-23 14:09:34 +02:00
|
|
|
#include <map>
|
|
|
|
#include <set>
|
2017-05-27 04:33:47 +02:00
|
|
|
#include <string>
|
|
|
|
|
|
|
|
class ErrorLogger;
|
|
|
|
class Settings;
|
|
|
|
class Token;
|
|
|
|
class Tokenizer;
|
2014-05-23 14:09:34 +02:00
|
|
|
|
2012-05-26 08:53:46 +02:00
|
|
|
|
2012-06-10 14:19:09 +02:00
|
|
|
class CPPCHECKLIB VarInfo {
|
2012-05-26 08:53:46 +02:00
|
|
|
public:
|
2018-04-16 11:11:13 +02:00
|
|
|
enum AllocStatus { OWNED = -2, DEALLOC = -1, NOALLOC = 0, ALLOC = 1 };
|
2015-01-28 13:45:40 +01:00
|
|
|
struct AllocInfo {
|
|
|
|
AllocStatus status;
|
2018-04-15 01:53:00 +02:00
|
|
|
/** Allocation type. If it is a positive value then it corresponds to
|
|
|
|
* a Library allocation id. A negative value is a builtin
|
|
|
|
* checkleakautovar allocation type.
|
|
|
|
*/
|
2015-01-28 13:45:40 +01:00
|
|
|
int type;
|
|
|
|
AllocInfo(int type_ = 0, AllocStatus status_ = NOALLOC) : status(status_), type(type_) {}
|
2018-04-16 11:11:13 +02:00
|
|
|
|
2018-04-16 12:55:37 +02:00
|
|
|
bool managed() const {
|
2018-04-16 11:11:13 +02:00
|
|
|
return status < 0;
|
|
|
|
}
|
2015-01-28 13:45:40 +01:00
|
|
|
};
|
2019-07-16 08:54:21 +02:00
|
|
|
std::map<int, AllocInfo> alloctype;
|
|
|
|
std::map<int, std::string> possibleUsage;
|
|
|
|
std::set<int> conditionalAlloc;
|
|
|
|
std::set<int> referenced;
|
2012-05-26 08:53:46 +02:00
|
|
|
|
2014-11-20 14:20:09 +01:00
|
|
|
void clear() {
|
2012-05-26 08:53:46 +02:00
|
|
|
alloctype.clear();
|
|
|
|
possibleUsage.clear();
|
|
|
|
conditionalAlloc.clear();
|
2012-10-27 16:36:14 +02:00
|
|
|
referenced.clear();
|
2012-05-26 08:53:46 +02:00
|
|
|
}
|
|
|
|
|
2019-07-16 08:54:21 +02:00
|
|
|
void erase(nonneg int varid) {
|
2012-05-26 08:53:46 +02:00
|
|
|
alloctype.erase(varid);
|
|
|
|
possibleUsage.erase(varid);
|
|
|
|
conditionalAlloc.erase(varid);
|
2016-02-07 19:54:32 +01:00
|
|
|
referenced.erase(varid);
|
2012-05-26 08:53:46 +02:00
|
|
|
}
|
|
|
|
|
2014-11-20 14:20:09 +01:00
|
|
|
void swap(VarInfo &other) {
|
2012-05-26 08:53:46 +02:00
|
|
|
alloctype.swap(other.alloctype);
|
|
|
|
possibleUsage.swap(other.possibleUsage);
|
|
|
|
conditionalAlloc.swap(other.conditionalAlloc);
|
2012-10-27 16:36:14 +02:00
|
|
|
referenced.swap(other.referenced);
|
2012-05-26 08:53:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/** set possible usage for all variables */
|
|
|
|
void possibleUsageAll(const std::string &functionName);
|
|
|
|
|
|
|
|
void print();
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/// @addtogroup Checks
|
|
|
|
/// @{
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Check for leaks
|
|
|
|
*/
|
|
|
|
|
2012-06-10 14:19:09 +02:00
|
|
|
class CPPCHECKLIB CheckLeakAutoVar : public Check {
|
2012-05-26 08:53:46 +02:00
|
|
|
public:
|
|
|
|
/** This constructor is used when registering the CheckLeakAutoVar */
|
2019-07-13 07:40:24 +02:00
|
|
|
CheckLeakAutoVar() : Check(myName()) {
|
2012-05-26 08:53:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/** This constructor is used when running checks. */
|
|
|
|
CheckLeakAutoVar(const Tokenizer *tokenizer, const Settings *settings, ErrorLogger *errorLogger)
|
2019-07-13 07:40:24 +02:00
|
|
|
: Check(myName(), tokenizer, settings, errorLogger) {
|
2012-05-26 08:53:46 +02:00
|
|
|
}
|
|
|
|
|
2019-03-16 09:17:50 +01:00
|
|
|
void runChecks(const Tokenizer *tokenizer, const Settings *settings, ErrorLogger *errorLogger) OVERRIDE {
|
2012-05-26 08:53:46 +02:00
|
|
|
CheckLeakAutoVar checkLeakAutoVar(tokenizer, settings, errorLogger);
|
|
|
|
checkLeakAutoVar.check();
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
/** check for leaks in all scopes */
|
|
|
|
void check();
|
|
|
|
|
|
|
|
/** check for leaks in a function scope */
|
|
|
|
void checkScope(const Token * const startToken,
|
|
|
|
VarInfo *varInfo,
|
2019-07-16 08:54:21 +02:00
|
|
|
std::set<int> notzero,
|
|
|
|
nonneg int recursiveCount);
|
2012-05-26 08:53:46 +02:00
|
|
|
|
2018-05-25 08:35:37 +02:00
|
|
|
/** Check token inside expression.
|
|
|
|
* @param tok token inside expression.
|
|
|
|
* @param varInfo Variable info
|
|
|
|
* @return next token to process (if no other checks needed for this token). NULL if other checks could be performed.
|
|
|
|
*/
|
2018-05-22 09:08:23 +02:00
|
|
|
const Token * checkTokenInsideExpression(const Token * const tok, VarInfo *varInfo);
|
|
|
|
|
2012-05-26 08:53:46 +02:00
|
|
|
/** parse function call */
|
2018-05-22 09:08:23 +02:00
|
|
|
void functionCall(const Token *tokName, const Token *tokOpeningPar, VarInfo *varInfo, const VarInfo::AllocInfo& allocation, const Library::AllocFunc* af);
|
2015-01-28 13:45:40 +01:00
|
|
|
|
|
|
|
/** parse changes in allocation status */
|
|
|
|
void changeAllocStatus(VarInfo *varInfo, const VarInfo::AllocInfo& allocation, const Token* tok, const Token* arg);
|
2012-05-26 08:53:46 +02:00
|
|
|
|
2019-07-05 12:44:52 +02:00
|
|
|
/** update allocation status if reallocation function */
|
2019-07-16 08:54:21 +02:00
|
|
|
void changeAllocStatusIfRealloc(std::map<int, VarInfo::AllocInfo> &alloctype, const Token *fTok, const Token *retTok);
|
2019-07-05 12:44:52 +02:00
|
|
|
|
2012-05-26 08:53:46 +02:00
|
|
|
/** return. either "return" or end of variable scope is seen */
|
|
|
|
void ret(const Token *tok, const VarInfo &varInfo);
|
|
|
|
|
|
|
|
/** if variable is allocated then there is a leak */
|
|
|
|
void leakIfAllocated(const Token *vartok, const VarInfo &varInfo);
|
|
|
|
|
2013-07-02 07:18:19 +02:00
|
|
|
void leakError(const Token* tok, const std::string &varname, int type);
|
2012-05-26 08:53:46 +02:00
|
|
|
void mismatchError(const Token* tok, const std::string &varname);
|
|
|
|
void deallocUseError(const Token *tok, const std::string &varname);
|
2012-06-11 18:28:31 +02:00
|
|
|
void deallocReturnError(const Token *tok, const std::string &varname);
|
2015-01-28 13:45:40 +01:00
|
|
|
void doubleFreeError(const Token *tok, const std::string &varname, int type);
|
2012-05-26 08:53:46 +02:00
|
|
|
|
|
|
|
/** message: user configuration is needed to complete analysis */
|
|
|
|
void configurationInfo(const Token* tok, const std::string &functionName);
|
|
|
|
|
2019-01-12 07:37:42 +01:00
|
|
|
void getErrorMessages(ErrorLogger *errorLogger, const Settings *settings) const OVERRIDE {
|
2016-05-07 16:30:54 +02:00
|
|
|
CheckLeakAutoVar c(nullptr, settings, errorLogger);
|
|
|
|
c.deallocReturnError(nullptr, "p");
|
|
|
|
c.configurationInfo(nullptr, "f"); // user configuration is needed to complete analysis
|
|
|
|
c.doubleFreeError(nullptr, "varname", 0);
|
2012-05-26 08:53:46 +02:00
|
|
|
}
|
|
|
|
|
2014-11-20 14:20:09 +01:00
|
|
|
static std::string myName() {
|
2012-06-30 17:44:05 +02:00
|
|
|
return "Leaks (auto variables)";
|
2012-05-26 08:53:46 +02:00
|
|
|
}
|
|
|
|
|
2019-01-12 07:37:42 +01:00
|
|
|
std::string classInfo() const OVERRIDE {
|
2015-01-28 13:45:40 +01:00
|
|
|
return "Detect when a auto variable is allocated but not deallocated or deallocated twice.\n";
|
2012-05-26 08:53:46 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
/// @}
|
|
|
|
//---------------------------------------------------------------------------
|
2013-09-04 20:59:49 +02:00
|
|
|
#endif // checkleakautovarH
|