2014-05-23 14:17:39 +02:00
|
|
|
/*
|
|
|
|
* Cppcheck - A tool for static C/C++ code analysis
|
2023-01-28 10:16:34 +01:00
|
|
|
* Copyright (C) 2007-2023 Cppcheck team.
|
2014-05-23 14:17:39 +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 "check.h"
|
2020-05-23 07:16:49 +02:00
|
|
|
|
|
|
|
#include "errorlogger.h"
|
2020-04-13 13:44:48 +02:00
|
|
|
#include "settings.h"
|
2022-01-27 19:03:20 +01:00
|
|
|
#include "token.h"
|
2020-05-23 07:16:49 +02:00
|
|
|
#include "tokenize.h"
|
2023-01-26 22:23:22 +01:00
|
|
|
#include "vfvalue.h"
|
2014-05-23 14:17:39 +02:00
|
|
|
|
2023-03-02 21:50:14 +01:00
|
|
|
#include <algorithm>
|
2021-04-03 21:30:50 +02:00
|
|
|
#include <cctype>
|
2014-05-23 14:17:39 +02:00
|
|
|
#include <iostream>
|
2023-03-02 21:50:14 +01:00
|
|
|
#include <stdexcept>
|
2022-09-16 07:15:49 +02:00
|
|
|
#include <utility>
|
2014-05-23 14:17:39 +02:00
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
Check::Check(const std::string &aname)
|
2023-08-08 11:05:02 +02:00
|
|
|
: mName(aname)
|
2014-05-23 14:17:39 +02:00
|
|
|
{
|
2023-01-29 17:23:03 +01:00
|
|
|
{
|
|
|
|
const auto it = std::find_if(instances().begin(), instances().end(), [&](const Check *i) {
|
|
|
|
return i->name() == aname;
|
|
|
|
});
|
|
|
|
if (it != instances().end())
|
|
|
|
throw std::runtime_error("'" + aname + "' instance already exists");
|
|
|
|
}
|
|
|
|
|
|
|
|
// make sure the instances are sorted
|
|
|
|
const auto it = std::find_if(instances().begin(), instances().end(), [&](const Check* i) {
|
2022-10-16 13:46:26 +02:00
|
|
|
return i->name() > aname;
|
|
|
|
});
|
|
|
|
if (it == instances().end())
|
|
|
|
instances().push_back(this);
|
|
|
|
else
|
|
|
|
instances().insert(it, this);
|
2014-05-23 14:17:39 +02:00
|
|
|
}
|
|
|
|
|
2020-05-23 07:16:49 +02:00
|
|
|
void Check::reportError(const ErrorMessage &errmsg)
|
2014-05-23 14:17:39 +02:00
|
|
|
{
|
2017-07-29 18:56:22 +02:00
|
|
|
std::cout << errmsg.toXML() << std::endl;
|
2014-05-23 14:17:39 +02:00
|
|
|
}
|
2014-11-26 16:13:40 +01:00
|
|
|
|
2020-05-23 07:16:49 +02:00
|
|
|
|
2023-01-08 19:31:54 +01:00
|
|
|
void Check::reportError(const std::list<const Token *> &callstack, Severity::SeverityType severity, const std::string &id, const std::string &msg, const CWE &cwe, Certainty certainty)
|
2020-05-23 07:16:49 +02:00
|
|
|
{
|
2022-04-11 07:30:55 +02:00
|
|
|
const ErrorMessage errmsg(callstack, mTokenizer ? &mTokenizer->list : nullptr, severity, id, msg, cwe, certainty);
|
2020-05-23 07:16:49 +02:00
|
|
|
if (mErrorLogger)
|
|
|
|
mErrorLogger->reportErr(errmsg);
|
|
|
|
else
|
|
|
|
reportError(errmsg);
|
|
|
|
}
|
|
|
|
|
2023-01-08 19:31:54 +01:00
|
|
|
void Check::reportError(const ErrorPath &errorPath, Severity::SeverityType severity, const char id[], const std::string &msg, const CWE &cwe, Certainty certainty)
|
2020-05-23 07:16:49 +02:00
|
|
|
{
|
2022-04-11 07:30:55 +02:00
|
|
|
const ErrorMessage errmsg(errorPath, mTokenizer ? &mTokenizer->list : nullptr, severity, id, msg, cwe, certainty);
|
2020-05-23 07:16:49 +02:00
|
|
|
if (mErrorLogger)
|
|
|
|
mErrorLogger->reportErr(errmsg);
|
|
|
|
else
|
|
|
|
reportError(errmsg);
|
|
|
|
}
|
|
|
|
|
2020-10-03 15:35:00 +02:00
|
|
|
bool Check::wrongData(const Token *tok, const char *str)
|
2017-06-05 18:41:15 +02:00
|
|
|
{
|
2020-10-03 15:35:00 +02:00
|
|
|
if (mSettings->daca)
|
2017-06-05 18:41:15 +02:00
|
|
|
reportError(tok, Severity::debug, "DacaWrongData", "Wrong data detected by condition " + std::string(str));
|
2020-10-03 15:35:00 +02:00
|
|
|
return true;
|
2017-06-05 18:41:15 +02:00
|
|
|
}
|
|
|
|
|
2014-11-26 16:13:57 +01:00
|
|
|
std::list<Check *> &Check::instances()
|
|
|
|
{
|
2014-11-26 16:13:40 +01:00
|
|
|
#ifdef __SVR4
|
2014-11-26 16:13:57 +01:00
|
|
|
// Under Solaris, destructors are called in wrong order which causes a segmentation fault.
|
|
|
|
// This fix ensures pointer remains valid and reachable until program terminates.
|
|
|
|
static std::list<Check *> *_instances= new std::list<Check *>;
|
|
|
|
return *_instances;
|
2014-11-26 16:13:40 +01:00
|
|
|
#else
|
2014-11-26 16:13:57 +01:00
|
|
|
static std::list<Check *> _instances;
|
|
|
|
return _instances;
|
2014-11-26 16:13:40 +01:00
|
|
|
#endif
|
2014-11-26 16:13:57 +01:00
|
|
|
}
|
2019-07-25 17:19:51 +02:00
|
|
|
|
|
|
|
std::string Check::getMessageId(const ValueFlow::Value &value, const char id[])
|
|
|
|
{
|
|
|
|
if (value.condition != nullptr)
|
|
|
|
return id + std::string("Cond");
|
|
|
|
if (value.safe)
|
|
|
|
return std::string("safe") + (char)std::toupper(id[0]) + (id + 1);
|
|
|
|
return id;
|
|
|
|
}
|
2019-12-21 11:54:47 +01:00
|
|
|
|
2022-09-10 11:25:15 +02:00
|
|
|
ErrorPath Check::getErrorPath(const Token* errtok, const ValueFlow::Value* value, std::string bug) const
|
2019-12-21 11:54:47 +01:00
|
|
|
{
|
|
|
|
ErrorPath errorPath;
|
|
|
|
if (!value) {
|
2022-09-10 11:25:15 +02:00
|
|
|
errorPath.emplace_back(errtok, std::move(bug));
|
2019-12-21 11:54:47 +01:00
|
|
|
} else if (mSettings->verbose || mSettings->xml || !mSettings->templateLocation.empty()) {
|
|
|
|
errorPath = value->errorPath;
|
2022-09-10 11:25:15 +02:00
|
|
|
errorPath.emplace_back(errtok, std::move(bug));
|
2019-12-21 11:54:47 +01:00
|
|
|
} else {
|
|
|
|
if (value->condition)
|
|
|
|
errorPath.emplace_back(value->condition, "condition '" + value->condition->expressionString() + "'");
|
|
|
|
//else if (!value->isKnown() || value->defaultArg)
|
|
|
|
// errorPath = value->callstack;
|
2022-09-10 11:25:15 +02:00
|
|
|
errorPath.emplace_back(errtok, std::move(bug));
|
2019-12-21 11:54:47 +01:00
|
|
|
}
|
|
|
|
return errorPath;
|
2020-10-03 15:35:00 +02:00
|
|
|
}
|