diff options
author | Caolán McNamara <caolanm@redhat.com> | 2017-01-12 10:49:50 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2017-01-12 12:25:39 +0000 |
commit | 0f6d5638c7da8b3a682d1c9b9115290768094ddf (patch) | |
tree | 00480b0e9dcc810e15c2dd4890083c8de5756b26 /vcl | |
parent | a3dfe938ef0be9af3c37f9302bb7dc296362a1e3 (diff) |
add dxf fuzzer
Change-Id: Ibf3d42ef0e0b0698309e567a92d0c5c45cc2ef94
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/Executable_dxffuzzer.mk | 47 | ||||
-rw-r--r-- | vcl/Module_vcl.mk | 1 | ||||
-rw-r--r-- | vcl/workben/dxffuzzer.cxx | 24 |
3 files changed, 72 insertions, 0 deletions
diff --git a/vcl/Executable_dxffuzzer.mk b/vcl/Executable_dxffuzzer.mk new file mode 100644 index 000000000000..059ebd3aaf1e --- /dev/null +++ b/vcl/Executable_dxffuzzer.mk @@ -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,dxffuzzer)) + +$(eval $(call gb_Executable_use_api,dxffuzzer,\ + offapi \ + udkapi \ +)) + +$(eval $(call gb_Executable_use_externals,dxffuzzer,\ + $(fuzzer_externals) \ +)) + +$(eval $(call gb_Executable_set_include,dxffuzzer,\ + $$(INCLUDE) \ + -I$(SRCDIR)/vcl/inc \ +)) + +$(eval $(call gb_Executable_use_libraries,dxffuzzer,\ + $(fuzzer_libraries) \ +)) + +$(eval $(call gb_Executable_use_static_libraries,dxffuzzer,\ + findsofficepath \ + ulingu \ + fuzzer \ +)) + +$(eval $(call gb_Executable_add_exception_objects,dxffuzzer,\ + vcl/workben/dxffuzzer \ +)) + +$(eval $(call gb_Executable_add_libs,dxffuzzer,\ + -lFuzzingEngine \ +)) + +# vim: set noet sw=4 ts=4: diff --git a/vcl/Module_vcl.mk b/vcl/Module_vcl.mk index 4afb8424e09c..63786dd1e52b 100644 --- a/vcl/Module_vcl.mk +++ b/vcl/Module_vcl.mk @@ -115,6 +115,7 @@ $(eval $(call gb_Module_add_targets,vcl,\ Executable_bmpfuzzer \ Executable_svmfuzzer \ Executable_pcdfuzzer \ + Executable_dxffuzzer \ )) endif diff --git a/vcl/workben/dxffuzzer.cxx b/vcl/workben/dxffuzzer.cxx new file mode 100644 index 000000000000..a6e9fadad1b6 --- /dev/null +++ b/vcl/workben/dxffuzzer.cxx @@ -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 idxGraphicImport(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)idxGraphicImport(aStream, aGraphic, nullptr); + return 0; +} + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |