Import a very trimmed-down set of libtasn1 files: curl -L -O https://ftp.gnu.org/gnu/libtasn1/libtasn1-4.19.0.tar.gz tar xvzf libtasn1-4.19.0.tar.gz rm -rf grub-core/lib/libtasn1 mkdir -p grub-core/lib/libtasn1/lib mkdir -p grub-core/lib/libtasn1/tests cp libtasn1-4.19.0/{README.md,COPYING} grub-core/lib/libtasn1 cp libtasn1-4.19.0/lib/{coding.c,decoding.c,element.c,element.h,errors.c,gstr.c,gstr.h,int.h,parser_aux.c,parser_aux.h,structure.c,structure.h} grub-core/libtasn1/lib cp libtasn1-4.19.0/lib/includes/libtasn1.h grub-core/lib/libtasn1 cp libtasn1-4.19.0/tests/{CVE-2018-1000654-1_asn1_tab.h,CVE-2018-1000654-2_asn1_tab.h,CVE-2018-1000654.c,object-id-decoding.c,object-id-encoding.c,octet-string.c,reproducers.c,Test_overflow.c,Test_simple.c,Test_strings.c} grub-core/lib/libtasn1/tests rm -rf libtasn1-4.19.0* Signed-off-by: Daniel Axtens <dja@axtens.net> Signed-off-by: Gary Lin <glin@suse.com> Reviewed-by: Vladimir Serbinenko <phcoder@gmail.com> Reviewed-by: Daniel Kiper <daniel.kiper@oracle.com> Tested-by: Stefan Berger <stefanb@linux.ibm.com>
73 lines
1.9 KiB
C
73 lines
1.9 KiB
C
/*
|
|
* Copyright (C) 2002-2022 Free Software Foundation, Inc.
|
|
*
|
|
* This file is part of LIBTASN1.
|
|
*
|
|
* This program 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 program 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 General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
|
|
/****************************************************************/
|
|
/* Description: reproducer for CVE-2018-1000654 */
|
|
/****************************************************************/
|
|
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
#include "CVE-2018-1000654-1_asn1_tab.h"
|
|
#include "CVE-2018-1000654-2_asn1_tab.h"
|
|
|
|
int
|
|
main (int argc, char *argv[])
|
|
{
|
|
int result, verbose = 0;
|
|
asn1_node definitions = NULL;
|
|
char errorDescription[ASN1_MAX_ERROR_DESCRIPTION_SIZE];
|
|
|
|
if (argc > 1)
|
|
verbose = 1;
|
|
|
|
printf ("Test 1\n");
|
|
|
|
result =
|
|
asn1_array2tree (CVE_2018_1000654_1_asn1_tab, &definitions,
|
|
errorDescription);
|
|
if (result != ASN1_RECURSION)
|
|
{
|
|
asn1_perror (result);
|
|
printf ("ErrorDescription = %s\n\n", errorDescription);
|
|
exit (1);
|
|
}
|
|
|
|
asn1_delete_structure (&definitions);
|
|
|
|
printf ("Test 2\n");
|
|
|
|
result =
|
|
asn1_array2tree (CVE_2018_1000654_2_asn1_tab, &definitions,
|
|
errorDescription);
|
|
if (result != ASN1_RECURSION)
|
|
{
|
|
asn1_perror (result);
|
|
printf ("ErrorDescription = %s\n\n", errorDescription);
|
|
exit (1);
|
|
}
|
|
|
|
asn1_delete_structure (&definitions);
|
|
|
|
if (verbose)
|
|
printf ("Success\n");
|
|
exit (0);
|
|
}
|