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");
|
|
|
|
cppcheck.settings().inconclusive = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void run(const std::string &code) {
|
|
|
|
cppcheck.check("test.cpp", code);
|
|
|
|
}
|
|
|
|
|
2020-03-31 09:33:58 +02:00
|
|
|
void reportOut(const std::string &outmsg) OVERRIDE {
|
2020-04-04 10:31:38 +02:00
|
|
|
(void)outmsg;
|
2020-03-31 09:33:58 +02:00
|
|
|
}
|
2020-05-23 07:16:49 +02: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[],
|
2020-03-31 09:33:58 +02: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
|
|
|
}
|
2020-04-04 10:31:38 +02:00
|
|
|
void bughuntingReport(const std::string &str) OVERRIDE {
|
|
|
|
(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;
|
|
|
|
}
|
|
|
|
|
|
|
|
|