blob: e6c1faf33613446eea5aee9a36b7fc18428ef368 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "stdint.h"
#include <log4cxx/logstring.h>
#include <log4cxx/ndc.h>
#include <log4cxx/helpers/stringhelper.h>
#include <fuzzer/FuzzedDataProvider.h>
#include <log4cxx/mdc.h>
#include <log4cxx/jsonlayout.h>
#include <log4cxx/helpers/transcoder.h>
namespace
{
const int MaxKeyLength = 50;
const int MaxValueLength = 500;
const int MaxMessageLength = 2000;
}
using namespace log4cxx;
using namespace log4cxx::helpers;
using namespace log4cxx::spi;
extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
// Setup JSONLayout
JSONLayout layout;
FuzzedDataProvider fdp(data, size);
// Optional locationinfo
if (fdp.ConsumeBool()) {
layout.setOption(LOG4CXX_STR("LOCATIONINFO"), LOG4CXX_STR("true"));
}
// Optional threadinfo
if (fdp.ConsumeBool()) {
layout.setOption(LOG4CXX_STR("THREADINFO"), LOG4CXX_STR("true"));
}
// Optional prettyprint
if (fdp.ConsumeBool()) {
layout.setOption(LOG4CXX_STR("PRETTYPRINT"), LOG4CXX_STR("true"));
}
// Create random strings we need later
std::string key1Str = fdp.ConsumeRandomLengthString(MaxKeyLength);
std::string val1Str = fdp.ConsumeRandomLengthString(MaxValueLength);
std::string key2Str = fdp.ConsumeRandomLengthString(MaxKeyLength);
std::string val2Str = fdp.ConsumeRandomLengthString(MaxValueLength);
std::string key3Str = fdp.ConsumeRandomLengthString(MaxKeyLength);
std::string val3Str = fdp.ConsumeRandomLengthString(MaxValueLength);
std::string key4Str = fdp.ConsumeRandomLengthString(MaxKeyLength);
std::string val4Str = fdp.ConsumeRandomLengthString(MaxValueLength);
std::string ndcMessageStr = fdp.ConsumeRandomLengthString(MaxMessageLength);
std::string loggerStr = fdp.ConsumeRandomLengthString(MaxKeyLength);
std::string contentStr = fdp.ConsumeRandomLengthString(MaxMessageLength);
LogString key1, val1, key2, val2, key3, val3, key4, val4, ndcMessage, logger, content;
Transcoder::decode(key1Str, key1);
Transcoder::decode(val1Str, val1);
Transcoder::decode(key2Str, key2);
Transcoder::decode(val2Str, val2);
Transcoder::decode(key3Str, key3);
Transcoder::decode(val3Str, val3);
Transcoder::decode(key4Str, key4);
Transcoder::decode(val4Str, val4);
Transcoder::decode(ndcMessageStr, ndcMessage);
Transcoder::decode(loggerStr, logger);
Transcoder::decode(contentStr, content);
log4cxx::LevelPtr level = log4cxx::Level::getInfo();
log4cxx::NDC::push(ndcMessage);
log4cxx::spi::LoggingEventPtr event = log4cxx::spi::LoggingEventPtr(
new log4cxx::spi::LoggingEvent(
logger, level, content, LOG4CXX_LOCATION));
// Set properties
event->setProperty(key1, val1);
event->setProperty(key2, val2);
// Set MDC
log4cxx::MDC::put(key3, val3);
log4cxx::MDC::put(key4, val4);
// Call the target API
log4cxx::helpers::Pool p;
log4cxx::LogString result;
layout.format(result, event, p);
// Clean up
log4cxx::NDC::clear();
log4cxx::MDC::clear();
return 0;
}