summaryrefslogtreecommitdiffstats
path: root/fuzz/oplist_fuzzer.cc
diff options
context:
space:
mode:
authorGravatar Nikias Bassen2023-01-08 21:29:57 +0100
committerGravatar Nikias Bassen2023-01-08 21:29:57 +0100
commite212eb6ed1b1a6fb4d71c1ac8a687ea017d60ad5 (patch)
treea14e66ad7e24f7382cfbc0eedc95ef6ef22c396b /fuzz/oplist_fuzzer.cc
parent395ecda5679a0cce253e64d1ada3ce1936a02ac8 (diff)
downloadlibplist-e212eb6ed1b1a6fb4d71c1ac8a687ea017d60ad5.tar.gz
libplist-e212eb6ed1b1a6fb4d71c1ac8a687ea017d60ad5.tar.bz2
fuzz: Add OpenStep plist fuzzer
Diffstat (limited to 'fuzz/oplist_fuzzer.cc')
-rw-r--r--fuzz/oplist_fuzzer.cc32
1 files changed, 32 insertions, 0 deletions
diff --git a/fuzz/oplist_fuzzer.cc b/fuzz/oplist_fuzzer.cc
new file mode 100644
index 0000000..0fabed8
--- /dev/null
+++ b/fuzz/oplist_fuzzer.cc
@@ -0,0 +1,32 @@
1/*
2 * oplist_fuzzer.cc
3 * OpenStep plist fuzz target for libFuzzer
4 *
5 * Copyright (c) 2023 Nikias Bassen All Rights Reserved.
6 *
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 */
21
22#include <plist/plist.h>
23#include <stdio.h>
24
25extern "C" int LLVMFuzzerTestOneInput(const unsigned char* data, size_t size)
26{
27 plist_t root_node = NULL;
28 plist_from_openstep(reinterpret_cast<const char*>(data), size, &root_node);
29 plist_free(root_node);
30
31 return 0;
32}