2022-01-28 15:56:11 +01:00
|
|
|
/*
|
|
|
|
* Cppcheck - A tool for static C/C++ code analysis
|
2022-02-05 11:45:17 +01:00
|
|
|
* Copyright (C) 2007-2022 Cppcheck team.
|
2022-01-28 15:56:11 +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/>.
|
|
|
|
*/
|
2019-03-29 21:07:01 +01:00
|
|
|
|
2021-07-08 21:21:35 +02:00
|
|
|
#include "color.h"
|
2019-03-29 21:07:01 +01:00
|
|
|
#include "cppcheck.h"
|
2019-03-29 22:58:56 +01:00
|
|
|
#include "type2.h"
|
2019-03-29 21:07:01 +01:00
|
|
|
|
|
|
|
|
|
|
|
class CppcheckExecutor : public ErrorLogger {
|
|
|
|
private:
|
|
|
|
CppCheck cppcheck;
|
|
|
|
|
|
|
|
public:
|
|
|
|
CppcheckExecutor()
|
|
|
|
: ErrorLogger()
|
2020-05-20 17:05:10 +02:00
|
|
|
, cppcheck(*this, false, nullptr) {
|
2019-03-29 21:07:01 +01:00
|
|
|
cppcheck.settings().addEnabled("all");
|
2021-02-25 12:21:44 +01:00
|
|
|
cppcheck.settings().certainty.setEnabled(Certainty::inconclusive, true);
|
2019-03-29 21:07:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void run(const std::string &code) {
|
|
|
|
cppcheck.check("test.cpp", code);
|
|
|
|
}
|
|
|
|
|
2022-02-10 23:02:24 +01:00
|
|
|
void reportOut(const std::string &outmsg, Color) override {
|
2020-04-04 10:31:38 +02:00
|
|
|
(void)outmsg;
|
2020-03-31 09:33:58 +02:00
|
|
|
}
|
2022-02-10 23:02:24 +01:00
|
|
|
void reportErr(const ErrorMessage &msg) override {
|
2020-04-04 10:31:38 +02:00
|
|
|
(void)msg;
|
2020-03-31 09:33:58 +02:00
|
|
|
}
|
2019-03-29 21:07:01 +01:00
|
|
|
void reportProgress(const std::string& filename,
|
|
|
|
const char stage[],
|
2022-02-10 23:02:24 +01:00
|
|
|
const std::size_t value) override {
|
2020-04-04 10:31:38 +02:00
|
|
|
(void)filename;
|
|
|
|
(void)stage;
|
|
|
|
(void)value;
|
2020-03-31 09:33:58 +02:00
|
|
|
}
|
2022-02-10 23:02:24 +01:00
|
|
|
void bughuntingReport(const std::string &str) override {
|
2020-04-04 10:31:38 +02:00
|
|
|
(void)str;
|
2020-03-31 09:33:58 +02:00
|
|
|
}
|
2019-03-29 21:07:01 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2019-03-30 11:40:30 +01:00
|
|
|
extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t dataSize)
|
|
|
|
{
|
|
|
|
if (dataSize < 10000) {
|
2019-04-11 09:03:29 +02:00
|
|
|
const std::string code = generateCode2(data, dataSize);
|
|
|
|
//std::ofstream fout("code.cpp");
|
|
|
|
//fout << code;
|
|
|
|
//fout.close();
|
|
|
|
|
2019-03-30 11:40:30 +01:00
|
|
|
CppcheckExecutor cppcheckExecutor;
|
2019-04-11 09:03:29 +02:00
|
|
|
cppcheckExecutor.run(code);
|
2019-03-30 11:40:30 +01:00
|
|
|
}
|
2019-03-29 21:07:01 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|