2011-10-23 13:07:43 +02:00
|
|
|
/*
|
|
|
|
* Cppcheck - A tool for static C/C++ code analysis
|
2022-02-05 11:45:17 +01:00
|
|
|
* Copyright (C) 2007-2022 Cppcheck team.
|
2011-10-23 13:07:43 +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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "checkboost.h"
|
2017-05-27 04:33:47 +02:00
|
|
|
|
2022-01-27 19:03:20 +01:00
|
|
|
#include "errortypes.h"
|
2012-10-13 11:16:48 +02:00
|
|
|
#include "symboldatabase.h"
|
2017-05-27 04:33:47 +02:00
|
|
|
#include "token.h"
|
|
|
|
|
2022-01-27 19:03:20 +01:00
|
|
|
#include <vector>
|
|
|
|
|
2011-10-23 13:07:43 +02:00
|
|
|
// Register this check class (by creating a static instance of it)
|
|
|
|
namespace {
|
|
|
|
CheckBoost instance;
|
|
|
|
}
|
|
|
|
|
2016-01-25 20:01:48 +01:00
|
|
|
static const CWE CWE664(664);
|
|
|
|
|
2011-10-23 13:07:43 +02:00
|
|
|
void CheckBoost::checkBoostForeachModification()
|
|
|
|
{
|
2018-06-16 16:10:28 +02:00
|
|
|
const SymbolDatabase *symbolDatabase = mTokenizer->getSymbolDatabase();
|
2018-04-24 21:18:36 +02:00
|
|
|
for (const Scope * scope : symbolDatabase->functionScopes) {
|
2018-04-27 22:36:30 +02:00
|
|
|
for (const Token *tok = scope->bodyStart->next(); tok && tok != scope->bodyEnd; tok = tok->next()) {
|
2012-10-13 11:16:48 +02:00
|
|
|
if (!Token::simpleMatch(tok, "BOOST_FOREACH ("))
|
|
|
|
continue;
|
2011-10-23 13:07:43 +02:00
|
|
|
|
2014-12-01 16:22:56 +01:00
|
|
|
const Token *containerTok = tok->next()->link()->previous();
|
|
|
|
if (!Token::Match(containerTok, "%var% ) {"))
|
2012-10-13 11:16:48 +02:00
|
|
|
continue;
|
2011-10-23 13:07:43 +02:00
|
|
|
|
2014-12-01 16:22:56 +01:00
|
|
|
const Token *tok2 = containerTok->tokAt(2);
|
2012-10-13 11:16:48 +02:00
|
|
|
const Token *end = tok2->link();
|
|
|
|
for (; tok2 != end; tok2 = tok2->next()) {
|
2015-01-31 10:50:39 +01:00
|
|
|
if (Token::Match(tok2, "%varid% . insert|erase|push_back|push_front|pop_front|pop_back|clear|swap|resize|assign|merge|remove|remove_if|reverse|sort|splice|unique|pop|push", containerTok->varId())) {
|
2014-08-31 20:40:52 +02:00
|
|
|
const Token* nextStatement = Token::findsimplematch(tok2->linkAt(3), ";", end);
|
|
|
|
if (!Token::Match(nextStatement, "; break|return|throw"))
|
|
|
|
boostForeachError(tok2);
|
2012-10-13 11:16:48 +02:00
|
|
|
break;
|
|
|
|
}
|
2011-10-23 13:07:43 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CheckBoost::boostForeachError(const Token *tok)
|
|
|
|
{
|
|
|
|
reportError(tok, Severity::error, "boostForeachError",
|
2021-02-24 22:00:06 +01:00
|
|
|
"BOOST_FOREACH caches the end() iterator. It's undefined behavior if you modify the container inside.", CWE664, Certainty::normal
|
2021-08-07 20:51:18 +02:00
|
|
|
);
|
2011-10-23 13:07:43 +02:00
|
|
|
}
|