blob: c3cb8ad8aa51cbd8512edc4c321305f5a35b9aa3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
#!/bin/sh
# Copyright (C) 2017 Red Hat, Inc.
#
# This file is part of GnuTLS.
#
# This file is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# This file is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>
srcdir="${srcdir:-.}"
export LD_LIBRARY_PATH=${srcdir}/../lib/.libs/
cat ${srcdir}/../config.log|grep afl-gcc >/dev/null 2>&1
if test $? != 0;then
echo "compile first library as:"
echo "CC=afl-gcc ./configure"
exit 1
else
fuzz=afl-gcc
fi
if test -z "$1";then
echo "Usage: $0 test-case"
echo "Example: $0 gnutls_x509_parser_fuzzer"
exit 1
fi
TEST=$1
rm -f ${TEST}
export LD_LIBRARY_PATH=$(pwd)/../lib/.libs/
export CFLAGS="-g -O2 -I/usr/local/include -I../lib/includes -I.."
${fuzz} ${CFLAGS} -o ${TEST} main.c ${TEST}.c -L../lib/.libs/ -lgnutls || exit 1
TMPOUT=${TEST}.$$.out
mkdir -p ${TMPOUT}
afl-fuzz -i ${TEST}.in -o ${TMPOUT} -- ./${TEST}
echo "output was stored in $TMPOUT"
exit 0
|