2011-07-28 23:29:16 +02: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.
|
2011-07-28 23:29:16 +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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
// Find non reentrant functions
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#include "checknonreentrantfunctions.h"
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
// Register this check class (by creating a static instance of it)
|
2011-10-13 20:53:06 +02:00
|
|
|
namespace {
|
|
|
|
CheckNonReentrantFunctions instance;
|
2011-07-28 23:29:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void CheckNonReentrantFunctions::nonReentrantFunctions()
|
|
|
|
{
|
2011-10-22 09:45:48 +02:00
|
|
|
if (!_settings->standards.posix || !_settings->isEnabled("portability"))
|
2011-07-28 23:29:16 +02:00
|
|
|
return;
|
|
|
|
|
|
|
|
// Don't check C# and Java code
|
|
|
|
if (_tokenizer->isJavaOrCSharp())
|
|
|
|
return;
|
|
|
|
|
2011-10-22 11:54:52 +02:00
|
|
|
std::map<std::string,std::string>::const_iterator nonReentrant_end = _nonReentrantFunctions.end();
|
2011-10-13 20:53:06 +02:00
|
|
|
for (const Token *tok = _tokenizer->tokens(); tok; tok = tok->next()) {
|
2011-10-22 11:54:52 +02:00
|
|
|
// Look for function invocations
|
|
|
|
if (!tok->isName() || tok->strAt(1) != "(" || tok->varId() != 0)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
// Check for non-reentrant function name
|
|
|
|
std::map<std::string,std::string>::const_iterator it = _nonReentrantFunctions.find(tok->str());
|
|
|
|
if (it == nonReentrant_end)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
const Token *prev = tok->previous();
|
2011-10-22 12:31:47 +02:00
|
|
|
if (prev) {
|
2011-10-22 11:54:52 +02:00
|
|
|
// Ignore function definitions, class members or class definitions
|
|
|
|
if (prev->isName() || Token::Match(prev, ".|:"))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
// Check for "std" or global namespace, ignore other namespaces
|
|
|
|
if (prev->str() == "::" && prev->previous() && prev->previous()->str() != "std" && prev->previous()->isName())
|
|
|
|
continue;
|
2011-07-28 23:29:16 +02:00
|
|
|
}
|
2011-10-22 11:54:52 +02:00
|
|
|
|
|
|
|
// Only affecting multi threaded code, therefore this is "portability"
|
|
|
|
reportError(tok, Severity::portability, "nonreentrantFunctions"+it->first, it->second);
|
2011-07-28 23:29:16 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|