2009-02-10 20:40:21 +01:00
|
|
|
/*
|
|
|
|
* Cppcheck - A tool for static C/C++ code analysis
|
2009-05-30 07:48:12 +02:00
|
|
|
* Copyright (C) 2007-2009 Daniel Marjamäki and Cppcheck team.
|
2009-02-10 20:40:21 +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/
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "checkstl.h"
|
2009-02-11 06:08:29 +01:00
|
|
|
#include "tokenize.h"
|
2009-03-18 22:40:38 +01:00
|
|
|
#include "token.h"
|
2009-02-10 20:40:21 +01:00
|
|
|
|
|
|
|
|
2009-03-19 21:20:08 +01:00
|
|
|
// Register this check class (by creating a static instance of it)
|
|
|
|
namespace
|
|
|
|
{
|
2009-03-20 17:15:51 +01:00
|
|
|
CheckStl instance;
|
2009-03-19 21:20:08 +01:00
|
|
|
}
|
2009-03-19 19:24:13 +01:00
|
|
|
|
2009-03-20 20:09:44 +01:00
|
|
|
|
|
|
|
// Error message for bad iterator usage..
|
|
|
|
void CheckStl::iteratorsError(const Token *tok, const std::string &container1, const std::string &container2)
|
|
|
|
{
|
2009-03-20 20:21:54 +01:00
|
|
|
reportError(tok, "error", "iterators", "Same iterator is used with both " + container1 + " and " + container2);
|
2009-03-20 20:09:44 +01:00
|
|
|
}
|
|
|
|
|
2009-05-03 07:37:39 +02:00
|
|
|
// Error message used when dereferencing an iterator that has been erased..
|
|
|
|
void CheckStl::dereferenceErasedError(const Token *tok, const std::string &itername)
|
|
|
|
{
|
|
|
|
reportError(tok, "error", "eraseDereference", "Dereferenced iterator '" + itername + "' has been erased");
|
|
|
|
}
|
2009-03-20 20:09:44 +01:00
|
|
|
|
2009-02-10 20:40:21 +01:00
|
|
|
void CheckStl::iterators()
|
|
|
|
{
|
|
|
|
for (const Token *tok = _tokenizer->tokens(); tok; tok = tok->next())
|
|
|
|
{
|
2009-05-03 07:37:39 +02:00
|
|
|
if (Token::Match(tok, "%var% = %var% . begin ( ) ;|+"))
|
2009-02-10 20:40:21 +01:00
|
|
|
{
|
2009-04-29 20:16:04 +02:00
|
|
|
const unsigned int iteratorId(tok->varId());
|
|
|
|
const unsigned int containerId(tok->tokAt(2)->varId());
|
|
|
|
if (iteratorId == 0 || containerId == 0)
|
2009-02-10 20:40:21 +01:00
|
|
|
continue;
|
2009-02-10 21:01:39 +01:00
|
|
|
|
2009-05-03 07:37:39 +02:00
|
|
|
bool validIterator = true;
|
2009-04-29 20:16:04 +02:00
|
|
|
for (const Token *tok2 = tok->tokAt(6); tok2; tok2 = tok2->next())
|
|
|
|
{
|
|
|
|
if (tok2->str() == "}")
|
|
|
|
break;
|
|
|
|
if (tok2->varId() == iteratorId)
|
|
|
|
{
|
|
|
|
if (Token::Match(tok2->next(), "!= %var% . end ( )") && tok2->tokAt(2)->varId() != containerId)
|
|
|
|
iteratorsError(tok2, tok->strAt(2), tok2->strAt(2));
|
|
|
|
}
|
|
|
|
else if (Token::Match(tok2, "%var% . insert|erase ( %varid%", iteratorId))
|
|
|
|
{
|
|
|
|
if (tok2->varId() != containerId)
|
|
|
|
iteratorsError(tok2, tok->strAt(2), tok2->str());
|
2009-05-03 07:37:39 +02:00
|
|
|
else if (tok2->strAt(2) == std::string("erase"))
|
|
|
|
validIterator = false;
|
|
|
|
}
|
|
|
|
else if (!validIterator && tok2->Match(tok2, "* %varid%", iteratorId))
|
|
|
|
{
|
|
|
|
dereferenceErasedError(tok2, tok2->strAt(1));
|
2009-04-29 20:16:04 +02:00
|
|
|
}
|
|
|
|
}
|
2009-02-10 21:01:39 +01:00
|
|
|
}
|
2009-02-10 20:40:21 +01:00
|
|
|
}
|
|
|
|
}
|
2009-02-10 20:56:00 +01:00
|
|
|
|
|
|
|
|
|
|
|
void CheckStl::stlOutOfBounds()
|
|
|
|
{
|
|
|
|
for (const Token *tok = _tokenizer->tokens(); tok; tok = tok->next())
|
|
|
|
{
|
|
|
|
if (!Token::simpleMatch(tok, "for ("))
|
|
|
|
continue;
|
|
|
|
|
2009-05-06 21:55:04 +02:00
|
|
|
unsigned int indent = 0;
|
|
|
|
for (const Token *tok2 = tok; tok2; tok2 = tok2->next())
|
2009-02-10 20:56:00 +01:00
|
|
|
{
|
|
|
|
|
2009-05-06 21:55:04 +02:00
|
|
|
if (tok2->str() == "(")
|
2009-02-10 20:56:00 +01:00
|
|
|
++indent;
|
|
|
|
|
2009-05-06 21:55:04 +02:00
|
|
|
else if (tok2->str() == ")")
|
2009-02-10 20:56:00 +01:00
|
|
|
{
|
|
|
|
if (indent == 0)
|
|
|
|
break;
|
2009-05-06 21:55:04 +02:00
|
|
|
--indent;
|
2009-02-10 20:56:00 +01:00
|
|
|
}
|
|
|
|
|
2009-05-06 21:55:04 +02:00
|
|
|
if (Token::Match(tok2, "; %var% <= %var% . size ( ) ;"))
|
2009-02-10 20:56:00 +01:00
|
|
|
{
|
2009-05-06 21:55:04 +02:00
|
|
|
indent = 0;
|
|
|
|
const std::string num(tok2->strAt(1));
|
|
|
|
const std::string varname(tok2->strAt(3));
|
|
|
|
for (const Token *tok3 = tok2->tokAt(8); tok3; tok3 = tok3->next())
|
|
|
|
{
|
|
|
|
if (tok3->str() == "{")
|
|
|
|
++indent;
|
|
|
|
else if (tok3->str() == "}")
|
|
|
|
{
|
|
|
|
if (indent == 0)
|
|
|
|
break;
|
|
|
|
--indent;
|
|
|
|
}
|
|
|
|
else if (tok3->str() == varname)
|
|
|
|
{
|
|
|
|
if (Token::simpleMatch(tok3->next(), ". size ( )"))
|
|
|
|
break;
|
|
|
|
else if (Token::simpleMatch(tok3->next(), ("[ " + num + " ]").c_str()))
|
|
|
|
stlOutOfBoundsError(tok3, num, varname);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2009-02-10 20:56:00 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-03-21 14:20:10 +01:00
|
|
|
}
|
2009-02-10 20:56:00 +01:00
|
|
|
|
2009-03-21 14:20:10 +01:00
|
|
|
// Error message for bad iterator usage..
|
|
|
|
void CheckStl::stlOutOfBoundsError(const Token *tok, const std::string &num, const std::string &var)
|
|
|
|
{
|
|
|
|
reportError(tok, "error", "stlOutOfBounds", "When " + num + "==" + var + ".size(), " + var + "[" + num + "] is out of bounds");
|
2009-02-10 20:56:00 +01:00
|
|
|
}
|
2009-02-11 06:08:29 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void CheckStl::erase()
|
|
|
|
{
|
|
|
|
for (const Token *tok = _tokenizer->tokens(); tok; tok = tok->next())
|
|
|
|
{
|
2009-05-21 17:55:52 +02:00
|
|
|
if (Token::simpleMatch(tok, "for ("))
|
2009-02-11 06:08:29 +01:00
|
|
|
{
|
|
|
|
for (const Token *tok2 = tok->tokAt(2); tok2 && tok2->str() != ";"; tok2 = tok2->next())
|
|
|
|
{
|
|
|
|
if (Token::Match(tok2, "%var% = %var% . begin ( ) ; %var% != %var% . end ( ) ") &&
|
|
|
|
tok2->str() == tok2->tokAt(8)->str() &&
|
|
|
|
tok2->tokAt(2)->str() == tok2->tokAt(10)->str())
|
|
|
|
{
|
|
|
|
eraseCheckLoop(tok2);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Token::Match(tok, "while ( %var% != %var% . end ( )"))
|
|
|
|
{
|
|
|
|
eraseCheckLoop(tok->tokAt(2));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CheckStl::eraseCheckLoop(const Token *it)
|
|
|
|
{
|
|
|
|
const Token *tok = it;
|
|
|
|
|
|
|
|
// Search for the start of the loop body..
|
|
|
|
int indentlevel = 1;
|
|
|
|
while (indentlevel > 0 && 0 != (tok = tok->next()))
|
|
|
|
{
|
|
|
|
if (tok->str() == "(")
|
|
|
|
++indentlevel;
|
|
|
|
else if (tok->str() == ")")
|
|
|
|
--indentlevel;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (! Token::simpleMatch(tok, ") {"))
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Parse loop..
|
|
|
|
// Error if it contains "erase(it)" but neither "break;" nor "it="
|
|
|
|
indentlevel = 0;
|
|
|
|
const Token *tok2 = 0;
|
|
|
|
while (0 != (tok = tok->next()))
|
|
|
|
{
|
|
|
|
if (tok->str() == "{")
|
|
|
|
++indentlevel;
|
|
|
|
else if (tok->str() == "}")
|
|
|
|
{
|
|
|
|
--indentlevel;
|
2009-04-10 13:27:36 +02:00
|
|
|
if (indentlevel <= 0)
|
2009-02-11 06:08:29 +01:00
|
|
|
break;
|
|
|
|
}
|
2009-02-11 17:20:32 +01:00
|
|
|
else if (Token::Match(tok, "break|return|goto") || Token::simpleMatch(tok, (it->str() + " =").c_str()))
|
2009-02-11 06:08:29 +01:00
|
|
|
{
|
|
|
|
tok2 = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else if (Token::simpleMatch(tok, ("erase ( " + it->str() + " )").c_str()))
|
|
|
|
tok2 = tok;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Write error message..
|
|
|
|
if (tok2)
|
2009-03-21 17:58:13 +01:00
|
|
|
eraseError(tok2);
|
2009-02-11 06:08:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-03-21 17:58:13 +01:00
|
|
|
// Error message for bad iterator usage..
|
|
|
|
void CheckStl::eraseError(const Token *tok)
|
|
|
|
{
|
|
|
|
reportError(tok, "error", "erase", "Dangerous usage of erase");
|
|
|
|
}
|
2009-02-18 20:57:43 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void CheckStl::pushback()
|
|
|
|
{
|
2009-04-28 21:18:02 +02:00
|
|
|
// Pointer can become invalid after push_back or push_front..
|
|
|
|
for (const Token *tok = _tokenizer->tokens(); tok; tok = tok->next())
|
|
|
|
{
|
|
|
|
if (Token::Match(tok, "%var% = & %var% ["))
|
|
|
|
{
|
|
|
|
const unsigned int pointerId(tok->varId());
|
|
|
|
const unsigned int containerId(tok->tokAt(3)->varId());
|
|
|
|
if (pointerId == 0 || containerId == 0)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
int indent = 0;
|
|
|
|
bool invalidPointer = false;
|
|
|
|
for (const Token *tok2 = tok; indent >= 0 && tok2; tok2 = tok2->next())
|
|
|
|
{
|
|
|
|
if (tok2->str() == "{" || tok2->str() == "(")
|
|
|
|
++indent;
|
|
|
|
else if (tok2->str() == "}" || tok2->str() == ")")
|
|
|
|
{
|
|
|
|
if (indent == 0 && Token::simpleMatch(tok2, ") {"))
|
|
|
|
tok2 = tok2->next();
|
|
|
|
else
|
|
|
|
--indent;
|
|
|
|
}
|
|
|
|
|
|
|
|
// push_back on vector..
|
|
|
|
if (Token::Match(tok2, "%varid% . push_front|push_back", containerId))
|
|
|
|
invalidPointer = true;
|
|
|
|
|
|
|
|
// Using invalid pointer..
|
|
|
|
if (invalidPointer && tok2->varId() == pointerId)
|
|
|
|
{
|
|
|
|
if (Token::simpleMatch(tok2->previous(), "*"))
|
|
|
|
invalidPointerError(tok2, tok2->str());
|
|
|
|
else if (Token::simpleMatch(tok2->next(), "."))
|
|
|
|
invalidPointerError(tok2, tok2->str());
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Iterator becomes invalid after push_back or push_front..
|
2009-02-18 20:57:43 +01:00
|
|
|
for (const Token *tok = _tokenizer->tokens(); tok; tok = tok->next())
|
|
|
|
{
|
2009-05-21 17:55:52 +02:00
|
|
|
if (Token::simpleMatch(tok, "vector <"))
|
2009-02-18 20:57:43 +01:00
|
|
|
{
|
|
|
|
while (tok && tok->str() != ">")
|
|
|
|
tok = tok->next();
|
|
|
|
if (!tok)
|
|
|
|
break;
|
|
|
|
if (Token::Match(tok, "> :: iterator|const_iterator %var% =|;"))
|
|
|
|
{
|
2009-04-25 17:14:02 +02:00
|
|
|
const unsigned int iteratorid(tok->tokAt(3)->varId());
|
|
|
|
if (iteratorid == 0)
|
|
|
|
continue;
|
|
|
|
|
2009-02-18 20:57:43 +01:00
|
|
|
std::string vectorname;
|
|
|
|
int indent = 0;
|
|
|
|
bool invalidIterator = false;
|
|
|
|
for (const Token *tok2 = tok;indent >= 0 && tok2; tok2 = tok2->next())
|
|
|
|
{
|
|
|
|
if (tok2->str() == "{" || tok2->str() == "(")
|
|
|
|
++indent;
|
|
|
|
else if (tok2->str() == "}" || tok2->str() == ")")
|
|
|
|
{
|
|
|
|
if (indent == 0 && Token::simpleMatch(tok2, ") {"))
|
|
|
|
tok2 = tok2->next();
|
|
|
|
else
|
|
|
|
--indent;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Assigning iterator..
|
2009-04-25 17:14:02 +02:00
|
|
|
if (Token::Match(tok2, "%varid% = %var% . begin ( )", iteratorid))
|
2009-02-18 20:57:43 +01:00
|
|
|
{
|
|
|
|
vectorname = tok2->strAt(2);
|
|
|
|
invalidIterator = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// push_back on vector..
|
|
|
|
if (vectorname.size() && Token::Match(tok2, (vectorname + " . push_front|push_back").c_str()))
|
|
|
|
invalidIterator = true;
|
|
|
|
|
|
|
|
// Using invalid iterator..
|
|
|
|
if (invalidIterator)
|
|
|
|
{
|
2009-04-25 17:14:02 +02:00
|
|
|
if (Token::Match(tok2, "++|--|*|+|-|(|, %varid%", iteratorid))
|
|
|
|
pushbackError(tok2, tok2->strAt(1));
|
|
|
|
if (Token::Match(tok2, "%varid% ++|--|+|-", iteratorid))
|
|
|
|
pushbackError(tok2, tok2->str());
|
2009-02-18 20:57:43 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-03-21 17:58:13 +01:00
|
|
|
// Error message for bad iterator usage..
|
|
|
|
void CheckStl::pushbackError(const Token *tok, const std::string &iterator_name)
|
|
|
|
{
|
|
|
|
reportError(tok, "error", "pushback", "After push_back or push_front, the iterator '" + iterator_name + "' may be invalid");
|
|
|
|
}
|
|
|
|
|
2009-03-18 22:40:38 +01:00
|
|
|
|
2009-04-28 21:18:02 +02:00
|
|
|
// Error message for bad iterator usage..
|
|
|
|
void CheckStl::invalidPointerError(const Token *tok, const std::string &pointer_name)
|
|
|
|
{
|
|
|
|
reportError(tok, "error", "pushback", "Invalid pointer '" + pointer_name + "' after push_back / push_front");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-04-13 17:48:13 +02:00
|
|
|
|
|
|
|
|
|
|
|
void CheckStl::stlBoundries()
|
|
|
|
{
|
|
|
|
for (const Token *tok = _tokenizer->tokens(); tok; tok = tok->next())
|
|
|
|
{
|
2009-05-17 18:58:32 +02:00
|
|
|
// Declaring iterator..
|
2009-05-21 17:55:52 +02:00
|
|
|
if (Token::simpleMatch(tok, "list <"))
|
2009-04-13 17:48:13 +02:00
|
|
|
{
|
2009-05-17 18:58:32 +02:00
|
|
|
while (tok && tok->str() != ">")
|
|
|
|
tok = tok->next();
|
|
|
|
if (!tok)
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (Token::Match(tok, "> :: iterator|const_iterator %var% =|;"))
|
2009-04-13 17:48:13 +02:00
|
|
|
{
|
2009-05-17 18:58:32 +02:00
|
|
|
const unsigned int iteratorid(tok->tokAt(3)->varId());
|
|
|
|
if (iteratorid == 0)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
// Using "iterator < ..." is not allowed
|
|
|
|
unsigned int indentlevel = 0;
|
|
|
|
for (const Token *tok2 = tok; tok2; tok2 = tok2->next())
|
2009-04-13 17:48:13 +02:00
|
|
|
{
|
2009-05-17 18:58:32 +02:00
|
|
|
if (tok2->str() == "{")
|
|
|
|
++indentlevel;
|
|
|
|
else if (tok2->str() == "}")
|
|
|
|
{
|
|
|
|
if (indentlevel == 0)
|
|
|
|
break;
|
|
|
|
--indentlevel;
|
|
|
|
}
|
|
|
|
else if (tok2->varId() == iteratorid && tok2->next() && tok2->next()->str() == "<")
|
|
|
|
{
|
|
|
|
stlBoundriesError(tok2);
|
|
|
|
break;
|
|
|
|
}
|
2009-04-13 17:48:13 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Error message for bad boundry usage..
|
|
|
|
void CheckStl::stlBoundriesError(const Token *tok)
|
|
|
|
{
|
|
|
|
reportError(tok, "error", "stlBoundries", "STL range check should be using != and not < since the order of the pointers isn't guaranteed");
|
|
|
|
}
|