summaryrefslogtreecommitdiffstats
path: root/fuzz/bplist_fuzzer.cc
diff options
context:
space:
mode:
authorGravatar Nikias Bassen2017-04-25 14:54:59 +0200
committerGravatar Nikias Bassen2017-04-25 14:54:59 +0200
commit5c6e695ca942f9a417d24e58f14d51f3e8e1885d (patch)
tree7eef70ace704c440baea74fff06cc623f800d303 /fuzz/bplist_fuzzer.cc
parent62ec804736435fa34e37e66e228e17e2aacee1d7 (diff)
downloadlibplist-5c6e695ca942f9a417d24e58f14d51f3e8e1885d.tar.gz
libplist-5c6e695ca942f9a417d24e58f14d51f3e8e1885d.tar.bz2
Add fuzzing targets for libFuzzer used by Google's OSS-Fuzz
Diffstat (limited to 'fuzz/bplist_fuzzer.cc')
-rw-r--r--fuzz/bplist_fuzzer.cc32
1 files changed, 32 insertions, 0 deletions
diff --git a/fuzz/bplist_fuzzer.cc b/fuzz/bplist_fuzzer.cc
new file mode 100644
index 0000000..17d0649
--- /dev/null
+++ b/fuzz/bplist_fuzzer.cc
@@ -0,0 +1,32 @@
1/*
2 * bplist_fuzzer.cc
3 * binary plist fuzz target for libFuzzer
4 *
5 * Copyright (c) 2017 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_bin(reinterpret_cast<const char*>(data), size, &root_node);
29 plist_free(root_node);
30
31 return 0;
32}