Fuzzing: utf8, pub, and sub checks.

pull/2756/head
Roger A. Light 3 years ago
parent 7adf77e966
commit 11cb25ee00

@ -5,6 +5,7 @@ all:
zip -r corpora/db_dump_seed_corpus.zip ../test/apps/db_dump/data/
$(MAKE) -C broker $@
$(MAKE) -C db_dump $@
$(MAKE) -C lib $@
clean:
-rm -rf corpora/broker corpora/client
@ -12,3 +13,4 @@ clean:
-rm -f corpora/db_dump_seed_corpus.zip
$(MAKE) -C broker $@
$(MAKE) -C db_dump $@
$(MAKE) -C lib $@

@ -0,0 +1,29 @@
R=../..
.PHONY: all clean
FUZZERS:= \
lib_fuzz_pub_topic_check2 \
lib_fuzz_sub_topic_check2 \
lib_fuzz_utf8
LOCAL_CPPFLAGS:=$(CPPFLAGS) -I${R}/include/
LOCAL_CXXFLAGS:=$(CXXFLAGS) -g -Wall -Werror -pthread
LOCAL_LDFLAGS:=$(LDFLAGS)
LOCAL_LIBADD:=$(LIBADD) $(LIB_FUZZING_ENGINE) ${R}/lib/libmosquitto.a -lssl -lcrypto
all: $(FUZZERS)
lib_fuzz_pub_topic_check2 : lib_fuzz_pub_topic_check2.cpp
$(CXX) $(LOCAL_CXXFLAGS) $(LOCAL_CPPFLAGS) $(LOCAL_LDFLAGS) -o $@ $^ $(LOCAL_LIBADD)
install $@ ${OUT}/$@
lib_fuzz_sub_topic_check2 : lib_fuzz_sub_topic_check2.cpp
$(CXX) $(LOCAL_CXXFLAGS) $(LOCAL_CPPFLAGS) $(LOCAL_LDFLAGS) -o $@ $^ $(LOCAL_LIBADD)
install $@ ${OUT}/$@
lib_fuzz_utf8 : lib_fuzz_utf8.cpp
$(CXX) $(LOCAL_CXXFLAGS) $(LOCAL_CPPFLAGS) $(LOCAL_LDFLAGS) -o $@ $^ $(LOCAL_LIBADD)
install $@ ${OUT}/$@
clean:
rm -f *.o $(FUZZERS)

@ -0,0 +1,24 @@
/*
Copyright (c) 2023 Cedalo GmbH
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Public License 2.0
and Eclipse Distribution License v1.0 which accompany this distribution.
The Eclipse Public License is available at
https://www.eclipse.org/legal/epl-2.0/
and the Eclipse Distribution License is available at
http://www.eclipse.org/org/documents/edl-v10.php.
SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
Contributors:
Roger Light - initial implementation and documentation.
*/
#include <mosquitto.h>
extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size)
{
mosquitto_pub_topic_check2((const char *)data, size);
return 0;
}

@ -0,0 +1,24 @@
/*
Copyright (c) 2023 Cedalo GmbH
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Public License 2.0
and Eclipse Distribution License v1.0 which accompany this distribution.
The Eclipse Public License is available at
https://www.eclipse.org/legal/epl-2.0/
and the Eclipse Distribution License is available at
http://www.eclipse.org/org/documents/edl-v10.php.
SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
Contributors:
Roger Light - initial implementation and documentation.
*/
#include <mosquitto.h>
extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size)
{
mosquitto_sub_topic_check2((const char *)data, size);
return 0;
}

@ -0,0 +1,24 @@
/*
Copyright (c) 2023 Cedalo GmbH
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Public License 2.0
and Eclipse Distribution License v1.0 which accompany this distribution.
The Eclipse Public License is available at
https://www.eclipse.org/legal/epl-2.0/
and the Eclipse Distribution License is available at
http://www.eclipse.org/org/documents/edl-v10.php.
SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
Contributors:
Roger Light - initial implementation and documentation.
*/
#include <mosquitto.h>
extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size)
{
mosquitto_validate_utf8((const char *)data, size);
return 0;
}
Loading…
Cancel
Save