add pcd fuzzer
Change-Id: Id21659687952ec5e868733fbca12353dd71b8153 Reviewed-on: https://gerrit.libreoffice.org/32902 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
This commit is contained in:
parent
855fbe4edc
commit
4fcf17f89b
5 changed files with 74 additions and 1 deletions
|
@ -424,7 +424,7 @@ $(foreach ide,\
|
|||
eclipsecdt,\
|
||||
$(eval $(call gb_Top_GbuildToIdeIntegration,$(ide))))
|
||||
|
||||
fuzzers: Library_sal Library_salhelper Library_reg Library_store Library_unoidl codemaker Library_cppu Library_i18nlangtag Library_cppuhelper Library_comphelper StaticLibrary_ulingu StaticLibrary_jpeg StaticLibrary_findsofficepath Library_tl Rdb_services udkapi offapi Library_clew Library_gie Library_reflection Library_invocadapt Library_bootstrap Library_introspection Library_stocservices Library_xmlreader Library_gcc3_uno instsetoo_native more_fonts StaticLibrary_fuzzer Executable_wmffuzzer Executable_jpgfuzzer Executable_giffuzzer Executable_xbmfuzzer Executable_xpmfuzzer Executable_pngfuzzer Executable_bmpfuzzer Executable_svmfuzzer
|
||||
fuzzers: Library_sal Library_salhelper Library_reg Library_store Library_unoidl codemaker Library_cppu Library_i18nlangtag Library_cppuhelper Library_comphelper StaticLibrary_ulingu StaticLibrary_jpeg StaticLibrary_findsofficepath Library_tl Rdb_services udkapi offapi Library_clew Library_gie Library_reflection Library_invocadapt Library_bootstrap Library_introspection Library_stocservices Library_xmlreader Library_gcc3_uno instsetoo_native more_fonts StaticLibrary_fuzzer Executable_wmffuzzer Executable_jpgfuzzer Executable_giffuzzer Executable_xbmfuzzer Executable_xpmfuzzer Executable_pngfuzzer Executable_bmpfuzzer Executable_svmfuzzer Executable_pcdfuzzer
|
||||
|
||||
endif # MAKE_RESTARTS
|
||||
|
||||
|
|
|
@ -101,6 +101,7 @@ $(eval $(call gb_Helper_register_executables_for_install,OOO,brand, \
|
|||
$(call gb_Helper_optional,FUZZERS,pngfuzzer) \
|
||||
$(call gb_Helper_optional,FUZZERS,bmpfuzzer) \
|
||||
$(call gb_Helper_optional,FUZZERS,svmfuzzer) \
|
||||
$(call gb_Helper_optional,FUZZERS,pcdfuzzer) \
|
||||
$(if $(filter-out ANDROID IOS MACOSX WNT,$(OS)),oosplash) \
|
||||
soffice_bin \
|
||||
$(if $(filter DESKTOP,$(BUILD_TYPE)),unopkg_bin) \
|
||||
|
|
47
vcl/Executable_pcdfuzzer.mk
Normal file
47
vcl/Executable_pcdfuzzer.mk
Normal file
|
@ -0,0 +1,47 @@
|
|||
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
|
||||
#
|
||||
#
|
||||
# This file is part of the LibreOffice project.
|
||||
#
|
||||
# This Source Code Form is subject to the terms of the Mozilla Public
|
||||
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||
#
|
||||
|
||||
include $(SRCDIR)/vcl/commonfuzzer.mk
|
||||
|
||||
$(eval $(call gb_Executable_Executable,pcdfuzzer))
|
||||
|
||||
$(eval $(call gb_Executable_use_api,pcdfuzzer,\
|
||||
offapi \
|
||||
udkapi \
|
||||
))
|
||||
|
||||
$(eval $(call gb_Executable_use_externals,pcdfuzzer,\
|
||||
$(fuzzer_externals) \
|
||||
))
|
||||
|
||||
$(eval $(call gb_Executable_set_include,pcdfuzzer,\
|
||||
$$(INCLUDE) \
|
||||
-I$(SRCDIR)/vcl/inc \
|
||||
))
|
||||
|
||||
$(eval $(call gb_Executable_use_libraries,pcdfuzzer,\
|
||||
$(fuzzer_libraries) \
|
||||
))
|
||||
|
||||
$(eval $(call gb_Executable_use_static_libraries,pcdfuzzer,\
|
||||
findsofficepath \
|
||||
ulingu \
|
||||
fuzzer \
|
||||
))
|
||||
|
||||
$(eval $(call gb_Executable_add_exception_objects,pcdfuzzer,\
|
||||
vcl/workben/pcdfuzzer \
|
||||
))
|
||||
|
||||
$(eval $(call gb_Executable_add_libs,pcdfuzzer,\
|
||||
-lFuzzingEngine \
|
||||
))
|
||||
|
||||
# vim: set noet sw=4 ts=4:
|
|
@ -114,6 +114,7 @@ $(eval $(call gb_Module_add_targets,vcl,\
|
|||
Executable_pngfuzzer \
|
||||
Executable_bmpfuzzer \
|
||||
Executable_svmfuzzer \
|
||||
Executable_pcdfuzzer \
|
||||
))
|
||||
endif
|
||||
|
||||
|
|
24
vcl/workben/pcdfuzzer.cxx
Normal file
24
vcl/workben/pcdfuzzer.cxx
Normal file
|
@ -0,0 +1,24 @@
|
|||
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
||||
/*
|
||||
* This file is part of the LibreOffice project.
|
||||
*
|
||||
* This Source Code Form is subject to the terms of the Mozilla Public
|
||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||
*/
|
||||
|
||||
#include <tools/stream.hxx>
|
||||
#include <vcl/FilterConfigItem.hxx>
|
||||
#include "commonfuzzer.hxx"
|
||||
|
||||
extern "C" bool icdGraphicImport(SvStream& rStream, Graphic& rGraphic, FilterConfigItem* pConfigItem);
|
||||
|
||||
extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size)
|
||||
{
|
||||
SvMemoryStream aStream(const_cast<uint8_t*>(data), size, StreamMode::READ);
|
||||
Graphic aGraphic;
|
||||
(void)icdGraphicImport(aStream, aGraphic, nullptr);
|
||||
return 0;
|
||||
}
|
||||
|
||||
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|
Loading…
Reference in a new issue