/* * Cppcheck - A tool for static C/C++ code analysis * Copyright (C) 2007-2010 Daniel Marjamäki and Cppcheck team. * * 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 . */ //--------------------------------------------------------------------------- #ifndef checkmemoryleakH #define checkmemoryleakH //--------------------------------------------------------------------------- /** * @file * * %Check for memory leaks * * The checking is split up into two specialized classes. * - CheckMemoryLeakInFunction can detect when a function variable is allocated but not deallocated properly. * - CheckMemoryLeakInClass can detect when a class variable is allocated but not deallocated properly. * - CheckMemoryLeakStructMember checks allocation/deallocation of structs and struct members */ #include "check.h" #include #include #include class Token; /// @addtogroup Core /// @{ /** @brief Base class for memory leaks checking */ class CheckMemoryLeak { private: /** For access to the tokens */ const Tokenizer * const tokenizer; /** ErrorLogger used to report errors */ ErrorLogger * const errorLogger; /** Disable the default constructors */ CheckMemoryLeak(); /** Disable the default constructors */ CheckMemoryLeak(const CheckMemoryLeak &); /** disable assignment operator */ void operator=(const CheckMemoryLeak &); /** * Report error. Similar with the function Check::reportError * @param location the token where the error occurs * @param severity the severity of the bug * @param id type of message * @param msg text */ void reportErr(const Token *location, Severity::e severity, const std::string &id, const std::string &msg) const; /** * Report error. Similar with the function Check::reportError * @param callstack callstack of error * @param severity the severity of the bug * @param id type of message * @param msg text */ void reportErr(const std::list &callstack, Severity::e severity, const std::string &id, const std::string &msg) const; public: CheckMemoryLeak(const Tokenizer *t, ErrorLogger *e) : tokenizer(t), errorLogger(e) { } /** @brief What type of allocation are used.. the "Many" means that several types of allocation and deallocation are used */ enum AllocType { No, Malloc, gMalloc, New, NewArray, File, Fd, Pipe, Dir, Many }; void memoryLeak(const Token *tok, const std::string &varname, AllocType alloctype); /** * @brief Get type of deallocation at given position * @param tok position * @param varnames variable names * @return type of deallocation */ AllocType getDeallocationType(const Token *tok, const char *varnames[]) const; /** * @brief Get type of deallocation at given position * @param tok position * @param varid variable id * @return type of deallocation */ AllocType getDeallocationType(const Token *tok, unsigned int varid) const; /** * @brief Get type of allocation at given position */ AllocType getAllocationType(const Token *tok2, unsigned int varid) const; /** * @brief Get type of reallocation at given position */ AllocType getReallocationType(const Token *tok2, unsigned int varid) const; /** * @brief Is a typename the name of a class? * @param _tokenizer tokenizer * @param typestr type name * @return true if the type name is the name of a class */ bool isclass(const Tokenizer *_tokenizer, const Token *typestr) const; void memleakError(const Token *tok, const std::string &varname); void resourceLeakError(const Token *tok, const std::string &varname); /** * @brief Report error: deallocating a deallocated pointer * @param tok token where error occurs * @param varname name of variable */ void deallocDeallocError(const Token *tok, const std::string &varname); void deallocuseError(const Token *tok, const std::string &varname); void mismatchSizeError(const Token *tok, const std::string &sz); void mismatchAllocDealloc(const std::list &callstack, const std::string &varname); void memleakUponReallocFailureError(const Token *tok, const std::string &varname); /** What type of allocated memory does the given function return? */ AllocType functionReturnType(const Token *tok) const; }; /// @} /// @addtogroup Checks /// @{ /** * @brief %CheckMemoryLeakInFunction detects when a function variable is allocated but not deallocated properly. * * The checking is done by looking at each function variable separately. By repeating these 4 steps over and over: * -# locate a function variable * -# create a simple token list that describes the usage of the function variable. * -# simplify the token list. * -# finally, check if the simplified token list contain any leaks. */ class CheckMemoryLeakInFunction : private Check, public CheckMemoryLeak { public: /** @brief This constructor is used when registering this class */ CheckMemoryLeakInFunction() : Check(), CheckMemoryLeak(0, 0) { } /** @brief This constructor is used when running checks */ CheckMemoryLeakInFunction(const Tokenizer *tokenizr, const Settings *settings, ErrorLogger *errLog) : Check(tokenizr, settings, errLog), CheckMemoryLeak(tokenizr, errLog) { } /** @brief run all simplified checks */ void runSimplifiedChecks(const Tokenizer *tokenizr, const Settings *settings, ErrorLogger *errLog) { CheckMemoryLeakInFunction checkMemoryLeak(tokenizr, settings, errLog); checkMemoryLeak.checkReallocUsage(); checkMemoryLeak.check(); } /** @brief Unit testing : testing the white list */ static bool test_white_list(const std::string &funcname); /** @brief Perform checking */ void check(); /** @brief experimental: checking via ExecutionPath */ void localleaks(); /** * Checking for a memory leak caused by improper realloc usage. */ void checkReallocUsage(); /** * @brief %Check all variables in function scope * @param tok The first '{' token of the function body * @param tok1 The '(' token in the function declaration * @param classmember Is this function a class member? */ void parseFunctionScope(const Token *tok, const Token *tok1, const bool classmember); /** * @brief %Check if there is a "p = foo(p, .." and foo returns the argument (p) * @param tok token to the ";" before the statement * @param varid varid to check */ bool matchFunctionsThatReturnArg(const Token *tok, unsigned int varid) const; /** * @brief %Check if there is a "!var" match inside a condition * @param tok first token to match * @param varid variabla id * @param endpar if this is true the "!var" must be followed by ")" * @return true if match */ bool notvar(const Token *tok, unsigned int varid, bool endpar = false) const; /** * Inspect a function call. the call_func and getcode are recursive * @param tok token where the function call occurs * @param callstack callstack * @param varid variable id to check * @param alloctype if memory is allocated, this indicates the type of allocation * @param dealloctype if memory is deallocated, this indicates the type of deallocation * @param sz not used by call_func - see getcode * @return These are the possible return values: * - NULL : no significant code * - "recursive" : recursive function * - "alloc" : the function returns allocated memory * - "dealloc" : the function deallocates the variable * - "dealloc_" * - "use" : the variable is used (unknown usage of the variable => the checking bails out) * - "callfunc" : a function call with unknown side effects * - "&use" */ const char * call_func(const Token *tok, std::list callstack, const unsigned int varid, AllocType &alloctype, AllocType &dealloctype, unsigned int sz); /** * Extract a new tokens list that is easier to parse than the "_tokenizer->tokens()", the * extracted tokens list describes how the given variable is used. * The getcode and call_func are recursive * @param tok start parse token * @param callstack callstack * @param varid variable id * @param alloctype keep track of what type of allocation is used * @param dealloctype keeps track of what type of deallocation is used * @param classmember should be set if the inspected function is a class member * @param sz size of type, used to check for mismatching size of allocation. for example "int *a;" => the sz is "sizeof(int)" * @return Newly allocated token array. Caller needs to release reserved * memory by calling Tokenizer::deleteTokens(returnValue); * Returned tokens: * - alloc : the variable is allocated * - assign : the variable is assigned a new value * - break : corresponds to "break" * - callfunc : a function call with unknown side effects * - continue : corresponds to "continue" * - dealloc : the variable is deallocated * - goto : corresponds to a "goto" * - if : there is an "if" * - if(var) : corresponds with "if ( var != 0 )" * - if(!var) : corresponds with "if ( var == 0 )" * - ifv : the variable is used in some way in a "if" * - loop : corresponds to either a "for" or a "while" * - realloc : the variable is reallocated * - return : corresponds to a "return" * - use : unknown usage -> bail out checking of this execution path * - &use : the address of the variable is taken * - ::use : calling member function of class */ Token *getcode(const Token *tok, std::list callstack, const unsigned int varid, AllocType &alloctype, AllocType &dealloctype, bool classmember, unsigned int sz); /** * Simplify code e.g. by replacing empty "{ }" with ";" * @param tok first token. The tokens list can be modified. */ void simplifycode(Token *tok); static const Token *findleak(const Token *tokens); /** * Checking the variable varname * @param Tok1 start token * @param varname name of variable (for error messages) * @param varid variable id * @param classmember is the scope inside a class member function * @param sz size of type.. if the variable is a "int *" then sz should be "sizeof(int)" */ void checkScope(const Token *Tok1, const std::string &varname, unsigned int varid, bool classmember, unsigned int sz); /** Report all possible errors (for the --errorlist) */ void getErrorMessages() { memleakError(0, "varname"); resourceLeakError(0, "varname"); deallocDeallocError(0, "varname"); deallocuseError(0, "varname"); mismatchSizeError(0, "sz"); std::list callstack; mismatchAllocDealloc(callstack, "varname"); memleakUponReallocFailureError(0, "varname"); } /** * Get name of class (--doc) * @return name of class */ std::string name() const { return "Memory leaks (function variables)"; } /** * Get class information (--doc) * @return Wiki formatted information about this class */ std::string classInfo() const { return "Is there any allocated memory when a function goes out of scope"; } /** parse tokens to see what functions are "noreturn" */ void parse_noreturn(); /** Function names for functions that are "noreturn" */ std::set noreturn; }; /** * @brief %Check class variables, variables that are allocated in the constructor should be deallocated in the destructor */ class CheckMemoryLeakInClass : private Check, private CheckMemoryLeak { public: CheckMemoryLeakInClass() : Check(), CheckMemoryLeak(0, 0) { } CheckMemoryLeakInClass(const Tokenizer *tokenizr, const Settings *settings, ErrorLogger *errLog) : Check(tokenizr, settings, errLog), CheckMemoryLeak(tokenizr, errLog) { } void runSimplifiedChecks(const Tokenizer *tokenizr, const Settings *settings, ErrorLogger *errLog) { CheckMemoryLeakInClass checkMemoryLeak(tokenizr, settings, errLog); checkMemoryLeak.check(); } void check(); private: void parseClass(const Token *tok1, std::vector &classname); void variable(const std::string &classname, const Token *tokVarname); /** Public functions: possible double-allocation */ void checkPublicFunctions(const Token *classtok, const unsigned int varid); void publicAllocationError(const Token *tok, const std::string &varname); void getErrorMessages() { } std::string name() const { return "Memory leaks (class variables)"; } std::string classInfo() const { return "If the constructor allocate memory then the destructor must deallocate it."; } }; /** @brief detect simple memory leaks for struct members */ class CheckMemoryLeakStructMember : private Check, private CheckMemoryLeak { public: CheckMemoryLeakStructMember() : Check(), CheckMemoryLeak(0, 0) { } CheckMemoryLeakStructMember(const Tokenizer *tokenizr, const Settings *settings, ErrorLogger *errLog) : Check(tokenizr, settings, errLog), CheckMemoryLeak(tokenizr, errLog) { } void runSimplifiedChecks(const Tokenizer *tokenizr, const Settings *settings, ErrorLogger *errLog) { CheckMemoryLeakStructMember checkMemoryLeak(tokenizr, settings, errLog); checkMemoryLeak.check(); } void check(); private: void getErrorMessages() { } std::string name() const { return "Memory leaks (struct members)"; } std::string classInfo() const { return "Don't forget to deallocate struct members"; } }; /// @} //--------------------------------------------------------------------------- #endif