Fix CVE-2017-6891 in minitasn1 code
[platform/upstream/gnutls.git] / tests / cert-tests / crq
1 #!/bin/sh
2
3 # Copyright (C) 2014 Red Hat, Inc.
4 #
5 # Author: Nikos Mavrogiannopoulos
6 #
7 # This file is part of GnuTLS.
8 #
9 # GnuTLS is free software; you can redistribute it and/or modify it
10 # under the terms of the GNU General Public License as published by the
11 # Free Software Foundation; either version 3 of the License, or (at
12 # your option) any later version.
13 #
14 # GnuTLS is distributed in the hope that it will be useful, but
15 # WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17 # General Public License for more details.
18 #
19 # You should have received a copy of the GNU General Public License
20 # along with GnuTLS; if not, write to the Free Software Foundation,
21 # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
22
23 #set -e
24
25 srcdir=${srcdir:-.}
26 CERTTOOL=${CERTTOOL:-../../src/certtool$EXEEXT}
27 DIFF=${DIFF:-diff}
28 if ! test -z "${VALGRIND}";then
29 VALGRIND="${LIBTOOL:-libtool} --mode=execute ${VALGRIND} --error-exitcode=15"
30 fi
31 OUTFILE=out.tmp
32
33 $VALGRIND $CERTTOOL --inder --crq-info --infile $srcdir/csr-invalid.der >$OUTFILE 2>&1
34 rc=$?
35
36 # We're done.
37 if test "$rc" != "0"; then
38   echo "Invalid crq decoding failed"
39   exit $rc
40 fi
41
42 grep "error: get_key_id" $OUTFILE >/dev/null 2>&1
43 if test "$?" != "0"; then
44   echo "crq decoding didn't fail as expected"
45   exit 1
46 fi
47
48 rm -f $OUTFILE
49
50 exit 0