From 79d44429e35e874c6b8c0c81bd0ec42b3bd77a40 Mon Sep 17 00:00:00 2001 From: CentOS Sources Date: Tue, 17 May 2022 06:43:08 -0400 Subject: [PATCH] import libtasn1-4.16.0-7.el9 --- .gitignore | 2 + .libtasn1.metadata | 2 + SOURCES/libtasn1-3.4-rpath.patch | 12 + SOURCES/libtasn1-4.16-coverity.patch | 70 +++++ SOURCES/libtasn1-4.16.0.tar.gz.sig | 11 + SPECS/libtasn1.spec | 376 +++++++++++++++++++++++++++ 6 files changed, 473 insertions(+) create mode 100644 .gitignore create mode 100644 .libtasn1.metadata create mode 100644 SOURCES/libtasn1-3.4-rpath.patch create mode 100644 SOURCES/libtasn1-4.16-coverity.patch create mode 100644 SOURCES/libtasn1-4.16.0.tar.gz.sig create mode 100644 SPECS/libtasn1.spec diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1f0c11b --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +SOURCES/gpgkey-1F42418905D8206AA754CCDC29EE58B996865171.gpg +SOURCES/libtasn1-4.16.0.tar.gz diff --git a/.libtasn1.metadata b/.libtasn1.metadata new file mode 100644 index 0000000..45a08fb --- /dev/null +++ b/.libtasn1.metadata @@ -0,0 +1,2 @@ +90f7b4d994c81d1debc13aa0c6c105c9a682921a SOURCES/gpgkey-1F42418905D8206AA754CCDC29EE58B996865171.gpg +f4f1fc301c0835389d9db7754815e48f4f57937a SOURCES/libtasn1-4.16.0.tar.gz diff --git a/SOURCES/libtasn1-3.4-rpath.patch b/SOURCES/libtasn1-3.4-rpath.patch new file mode 100644 index 0000000..91d44e2 --- /dev/null +++ b/SOURCES/libtasn1-3.4-rpath.patch @@ -0,0 +1,12 @@ +diff -ur libtasn1-3.4.orig/configure libtasn1-3.4/configure +--- libtasn1-3.4.orig/configure 2013-11-25 20:24:23.000000000 +0100 ++++ libtasn1-3.4/configure 2013-11-27 14:08:42.872612379 +0100 +@@ -12376,7 +12376,7 @@ + shlibpath_overrides_runpath=unknown + version_type=none + dynamic_linker="$host_os ld.so" +-sys_lib_dlsearch_path_spec="/lib /usr/lib" ++sys_lib_dlsearch_path_spec="/lib /usr/lib /lib64 /usr/lib64" + need_lib_prefix=unknown + hardcode_into_libs=no + diff --git a/SOURCES/libtasn1-4.16-coverity.patch b/SOURCES/libtasn1-4.16-coverity.patch new file mode 100644 index 0000000..6ce90f4 --- /dev/null +++ b/SOURCES/libtasn1-4.16-coverity.patch @@ -0,0 +1,70 @@ +diff -up libtasn1-4.16.0/lib/coding.c.coverity libtasn1-4.16.0/lib/coding.c +--- libtasn1-4.16.0/lib/coding.c.coverity 2020-02-01 23:22:04.000000000 +0100 ++++ libtasn1-4.16.0/lib/coding.c 2021-04-13 17:34:34.101819976 +0200 +@@ -1103,7 +1103,10 @@ asn1_der_coding (asn1_node_const element + max_len = *len; + + if (der == NULL && max_len > 0) +- return ASN1_VALUE_NOT_VALID; ++ { ++ err = ASN1_VALUE_NOT_VALID; ++ goto error; ++ } + + counter = 0; + move = DOWN; +diff -up libtasn1-4.16.0/lib/element.c.coverity libtasn1-4.16.0/lib/element.c +--- libtasn1-4.16.0/lib/element.c.coverity 2020-01-03 23:20:17.000000000 +0100 ++++ libtasn1-4.16.0/lib/element.c 2021-04-13 18:05:21.054820798 +0200 +@@ -142,7 +142,7 @@ int + _asn1_append_sequence_set (asn1_node node, struct node_tail_cache_st *pcache) + { + asn1_node p, p2; +- char temp[LTOSTR_MAX_SIZE]; ++ char temp[LTOSTR_MAX_SIZE+1]; + long n; + + if (!node || !(node->down)) +@@ -183,7 +183,12 @@ _asn1_append_sequence_set (asn1_node nod + n = strtol (p->name + 1, NULL, 0); + n++; + temp[0] = '?'; ++ if (n < 0) ++ return ASN1_GENERIC_ERROR; ++ /* assuming non-negative n, we have enough space in buffer */ + _asn1_ltostr (n, temp + 1); ++ if (strlen(temp) >= LTOSTR_MAX_SIZE) ++ return ASN1_GENERIC_ERROR; + } + _asn1_set_name (p2, temp); + /* p2->type |= CONST_OPTION; */ +diff -up libtasn1-4.16.0/lib/int.h.coverity libtasn1-4.16.0/lib/int.h +--- libtasn1-4.16.0/lib/int.h.coverity 2020-01-03 23:20:17.000000000 +0100 ++++ libtasn1-4.16.0/lib/int.h 2021-04-13 17:34:34.101819976 +0200 +@@ -213,6 +213,7 @@ void *_asn1_realloc(void *ptr, size_t si + ret = realloc(ptr, size); + if (ret == NULL) + { ++ /* cppcheck-suppress doubleFree */ + free(ptr); + } + return ret; +diff -up libtasn1-4.16.0/src/asn1Coding.c.coverity libtasn1-4.16.0/src/asn1Coding.c +--- libtasn1-4.16.0/src/asn1Coding.c.coverity 2019-07-19 19:55:08.000000000 +0200 ++++ libtasn1-4.16.0/src/asn1Coding.c 2021-04-13 17:34:34.102819982 +0200 +@@ -72,13 +72,13 @@ readAssignment (FILE * file, char *varNa + + int ret; + +- ret = fscanf (file, "%s", varName); ++ ret = fscanf (file, "%1023s", varName); + if (ret == EOF) + return ASSIGNMENT_EOF; + if (!strcmp (varName, "''")) + varName[0] = 0; + +- ret = fscanf (file, "%s", value); ++ ret = fscanf (file, "%1023s", value); + if (ret == EOF) + return ASSIGNMENT_ERROR; + diff --git a/SOURCES/libtasn1-4.16.0.tar.gz.sig b/SOURCES/libtasn1-4.16.0.tar.gz.sig new file mode 100644 index 0000000..5b85760 --- /dev/null +++ b/SOURCES/libtasn1-4.16.0.tar.gz.sig @@ -0,0 +1,11 @@ +-----BEGIN PGP SIGNATURE----- + +iQEzBAABCAAdFiEEWfu1XKfzqKsMUDdz2BxIh/FnmmUFAl42AF0ACgkQ2BxIh/Fn +mmVm8Qf9GroRQ/D3f8crSv/HWZJ/EGDKAcSc+s0Gc5bfPQK7CrEUJpoCRt+kZzhO +9RWcod3jot3/W26v1R6lCruQwUDbXmoPOYUMJ5cJuP8oHSs3+6m96e6aadWhpNxh +8FGsnSvLNJ1zeCtsuvf9Zyi1NVicBGoeeCRgkJIkAE1TnCsbpo+QascmXJHlfDc2 +lueMzRexFzy7t03ySsRdiKpfzG1pyTWvU7lVhX8ysf2+31wi9kgvg71bPJhsA794 +FBIkpHcJXBkxxmlIvI/O65pRNX+13GmZjcPij5qth6Cr1fVQcN4hzEEKzyzf2RoP +xqzVc6yNRh8pj+A44vwZ4sm7S+o0tQ== +=czTt +-----END PGP SIGNATURE----- diff --git a/SPECS/libtasn1.spec b/SPECS/libtasn1.spec new file mode 100644 index 0000000..1243acd --- /dev/null +++ b/SPECS/libtasn1.spec @@ -0,0 +1,376 @@ +Summary: The ASN.1 library used in GNUTLS +Name: libtasn1 +Version: 4.16.0 +Release: 7%{?dist} + +# The libtasn1 library is LGPLv2+, utilities are GPLv3+ +License: GPLv3+ and LGPLv2+ +URL: http://www.gnu.org/software/libtasn1/ +Source0: http://ftp.gnu.org/gnu/libtasn1/%name-%version.tar.gz +Source1: http://ftp.gnu.org/gnu/libtasn1/%name-%version.tar.gz.sig +Source2: gpgkey-1F42418905D8206AA754CCDC29EE58B996865171.gpg +Patch1: libtasn1-3.4-rpath.patch +Patch200: libtasn1-4.16-coverity.patch + +BuildRequires: gnupg2 +BuildRequires: gcc +BuildRequires: bison, pkgconfig, help2man +BuildRequires: autoconf, automake, libtool +BuildRequires: valgrind-devel +BuildRequires: make +# Wildcard bundling exception https://fedorahosted.org/fpc/ticket/174 +Provides: bundled(gnulib) = 20130324 + +%package devel +Summary: Files for development of applications which will use libtasn1 +Requires: %{name}%{?_isa} = %{version}-%{release} + +Requires: %name = %version-%release +Requires: %{name}-tools = %{version}-%{release} +Requires: pkgconfig + + +%package tools +Summary: Some ASN.1 tools +License: GPLv3+ +Requires: %{name}%{?_isa} = %{version}-%{release} + + +%description +A library that provides Abstract Syntax Notation One (ASN.1, as specified +by the X.680 ITU-T recommendation) parsing and structures management, and +Distinguished Encoding Rules (DER, as per X.690) encoding and decoding functions. + +%description devel +This package contains files for development of applications which will +use libtasn1. + + +%description tools +This package contains simple tools that can decode and encode ASN.1 +data. + + +%prep +gpgv2 --keyring %{SOURCE2} %{SOURCE1} %{SOURCE0} +%setup -q + +%patch1 -p1 -b .rpath +%patch200 -p1 -b .coverity + +%build +autoreconf -v -f --install +%configure --disable-static --disable-silent-rules +# libtasn1 likes to regenerate docs +touch doc/stamp_docs + +%make_build + + +%install +%make_install + +rm -f $RPM_BUILD_ROOT{%_libdir/*.la,%_infodir/dir} + + +%check +make check + +%files +%license LICENSE doc/COPYING* +%doc AUTHORS NEWS README.md +%{_libdir}/*.so.6* + +%files tools +%{_bindir}/asn1* +%{_mandir}/man1/asn1* + +%files devel +%doc doc/TODO doc/*.pdf +%{_libdir}/*.so +%{_libdir}/pkgconfig/*.pc +%{_includedir}/* +%{_infodir}/*.info.* +%{_mandir}/man3/*asn1* + + +%changelog +* Mon Aug 09 2021 Mohan Boddu - 4.16.0-7 +- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags + Related: rhbz#1991688 + +* Fri Apr 16 2021 Mohan Boddu - 4.16.0-6 +- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937 + +* Mon Apr 12 2021 Dmitry Belyavskiy - 4.16.0-5 +- Coverity-related fixes (#1938797) + +* Tue Jan 26 2021 Fedora Release Engineering - 4.16.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + +* Tue Jul 28 2020 Fedora Release Engineering - 4.16.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Mon Jul 13 2020 Tom Stellard - 4.16.0-2 +- Use make macros +- https://fedoraproject.org/wiki/Changes/UseMakeBuildInstallMacro + +* Sun Feb 02 2020 Nikos Mavrogiannopoulos - 4.16.0-1 +- Update to 4.14 (#1621973) + +* Wed Jan 29 2020 Fedora Release Engineering - 4.15.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + +* Thu Nov 21 2019 Simo Sorce - 4.15.0-1 +- Update to 4.15.0 (#1775065) + +* Thu Jul 25 2019 Fedora Release Engineering - 4.14-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + +* Mon Jul 22 2019 Nikos Mavrogiannopoulos - 4.14-1 +- Update to 4.14 (#1621973) + +* Fri Feb 01 2019 Fedora Release Engineering - 4.13-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Mon Oct 29 2018 James Antill - 4.13-6 +- Remove ldconfig scriptlet, now done via. transfiletrigger in glibc. + +* Mon Oct 22 2018 Nikos Mavrogiannopoulos - 4.13-5 +- libtasn1-devel requires the tools subpackage; it is necessary for + development. + +* Sat Jul 21 2018 Peter Robinson 4.13-4 +- Add missing gcc/gnupg2 deps, spec cleanups + +* Fri Jul 13 2018 Fedora Release Engineering - 4.13-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + +* Wed Feb 07 2018 Fedora Release Engineering - 4.13-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Wed Jan 17 2018 Nikos Mavrogiannopoulos - 4.13-1 +- Update to 4.13 (#1535261) + +* Thu Aug 03 2017 Fedora Release Engineering - 4.12-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + +* Wed Jul 26 2017 Fedora Release Engineering - 4.12-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Mon May 29 2017 Nikos Mavrogiannopoulos - 4.12-1 +- Update to 4.12 (#1456190) + +* Fri Feb 10 2017 Fedora Release Engineering - 4.10-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Tue Jan 17 2017 Nikos Mavrogiannopoulos - 4.10-1 +- Update to 4.10 (#1413792) + +* Mon Nov 7 2016 Peter Robinson 4.9-2 +- Move development related docs to devel sub package +- Cleanup spec and macros +- Update valgrind ExclusiveArch + +* Fri Aug 26 2016 Nikos Mavrogiannopoulos - 4.9-1 +- Update to 4.9 (#1360315) + +* Fri Jul 8 2016 Nikos Mavrogiannopoulos - 4.8-2 +- Resolve issue which prevented the decoding of long OIDs (#1353838) + +* Mon Apr 11 2016 Nikos Mavrogiannopoulos - 4.8-1 +- Update to 4.8 +- Resolves infinite loop recursion in the decode of certain BER structures. + +* Thu Feb 04 2016 Fedora Release Engineering - 4.7-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Tue Sep 15 2015 Nikos Mavrogiannopoulos - 4.7-1 +- Update to 4.7 (#1260325) + +* Wed Jun 17 2015 Fedora Release Engineering - 4.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + +* Thu Apr 30 2015 Nikos Mavrogiannopoulos - 4.5-1 +- Update to 4.5 (#1217282) + +* Mon Mar 30 2015 Nikos Mavrogiannopoulos - 4.4-1 +- new upstream release (#1206968) +- fixes stack overflow in DER decoder + +* Tue Mar 10 2015 Nikos Mavrogiannopoulos - 4.3-1 +- new upstream release + +* Tue Sep 16 2014 Nikos Mavrogiannopoulos - 4.2-1 +- new upstream release + +* Mon Aug 25 2014 Nikos Mavrogiannopoulos - 4.1-2 +- added bug fix for octet string decoding (#1138218) + +* Mon Aug 25 2014 Nikos Mavrogiannopoulos - 4.1-1 +- new upstream release + +* Sun Aug 17 2014 Fedora Release Engineering - 4.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + +* Fri Jul 18 2014 Tom Callaway - 4.0-2 +- fix license handling + +* Mon Jun 30 2014 Nikos Mavrogiannopoulos - 4.0-1 +- new upstream release + +* Sat Jun 07 2014 Fedora Release Engineering - 3.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + +* Mon May 26 2014 Nikos Mavrogiannopoulos - 3.6-1 +- new upstream release + +* Fri May 02 2014 Nikos Mavrogiannopoulos - 3.5-1 +- new upstream release + +* Wed Nov 27 2013 Nikos Mavrogiannopoulos - 3.4-1 +- new upstream release + +* Sat Aug 03 2013 Fedora Release Engineering - 3.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + +* Mon Mar 25 2013 Tomáš Mráz - 3.3-1 +- new upstream release +- improved description + +* Thu Mar 7 2013 Tomas Mraz - 3.2-3 +- drop the temporary compat libtasn1 + +* Tue Feb 5 2013 Tomas Mraz - 3.2-2 +- now with temporary compat libtasn1 taken from old build + +* Tue Feb 5 2013 Tomas Mraz - 3.2-1 +- new upstream release +- SONAME bumped + +* Fri Nov 9 2012 Tomas Mraz - 2.14-1 +- new upstream release + +* Thu Jul 19 2012 Fedora Release Engineering - 2.13-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Mon Jun 18 2012 Tomas Mraz - 2.13-1 +- new upstream release + +* Tue Mar 20 2012 Tomas Mraz - 2.12-1 +- new upstream release + +* Fri Jan 13 2012 Fedora Release Engineering - 2.7-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + +* Tue Feb 08 2011 Fedora Release Engineering - 2.7-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + +* Tue Aug 3 2010 Tomas Mraz - 2.7-1 +- new upstream release + +* Thu Jan 28 2010 Tomas Mraz - 2.4-2 +- drop superfluous rpath + +* Mon Jan 18 2010 Tomas Mraz - 2.4-1 +- new upstream release + +* Mon Jan 11 2010 Tomas Mraz - 2.3-2 +- no longer ignore make check result on ppc64 + +* Tue Aug 11 2009 Tomas Mraz - 2.3-1 +- updated to new upstream version +- fix warnings when installed with --excludedocs (#515950) + +* Sat Jul 25 2009 Fedora Release Engineering - 2.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Fri May 29 2009 Tomas Mraz - 2.2-1 +- updated to new upstream version +- SMP build should work now +- drop fix for spurious rpath - no longer necessary + +* Wed Feb 25 2009 Fedora Release Engineering - 1.8-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Tue Jan 27 2009 Enrico Scholz - 1.8-1 +- updated to 1.8 +- updated URLs +- disabled SMP builds for now + +* Fri Dec 12 2008 Caolán McNamara - 1.7-2 +- rebuild to get provides pkgconfig(libtasn1) + +* Fri Nov 21 2008 Tomas Mraz - 1.7-1 +- updated to new upstream version + +* Tue Sep 30 2008 Tomas Mraz - 1.5-1 +- updated to new upstream version +- fix license tag +- fix spurious rpath in the tool binaries + +* Thu Aug 7 2008 Tom "spot" Callaway - 1.4-2 +- fix license tag + +* Thu Jun 5 2008 Tomas Mraz - 1.4-1 +- updated to new upstream version + +* Wed Feb 13 2008 Enrico Scholz - 1.3-1 +- updated to 1.3 (#426488, #431334) +- use wrapper around libtasn1-config which should make it multilib + safe (#342411); this implies an untagged 'Requires: pkgconfig' for + -devel now +- conditionalized BR of valgrind (#401041) + +* Mon Sep 3 2007 Enrico Scholz - 1.1-1 +- updated to 1.1 +- workaround 'make check' errors on ppc64 + +* Thu Jun 14 2007 Enrico Scholz - 0.3.10-1 +- updated to 0.3.10 + +* Fri Mar 2 2007 Enrico Scholz - 0.3.9-1 +- updated to 0.3.9 + +* Sat Feb 3 2007 Enrico Scholz - 0.3.8-1 +- updated to 0.3.8 + +* Sun Nov 5 2006 Enrico Scholz - 0.3.6-1 +- updated to 0.3.6 +- BR valgrind + +* Fri Sep 15 2006 Enrico Scholz - 0.3.5-1 +- updated to 0.3.5 + +* Sat Jun 3 2006 Enrico Scholz - 0.3.4-1 +- updated to 0.3.4 + +* Sun Mar 26 2006 Enrico Scholz - 0.3.2-1 +- updated to 0.3.2 +- added -tools subpackage + +* Wed Mar 8 2006 Enrico Scholz - 0.3.1-1 +- updated to 0.3.1 + +* Mon Mar 6 2006 Enrico Scholz - 0.3.0-1 +- updated to 0.3.0 +- removed unneeded curlies +- created -devel subpackage + +* Sun May 22 2005 Jeremy Katz - 0.2.6-3 +- rebuild on all arches + +* Thu Apr 7 2005 Michael Schwendt +- rebuilt + +* Tue Nov 18 2003 Enrico Scholz - 0:0.2.6-0.fdr.1 +- updated to 0.2.6 + +* Mon Aug 4 2003 Enrico Scholz 0:0.2.5-0.fdr.1 +- updated to 0.2.5 +- changed license to LGPL +- rearranged %%check to reflect execution order +- minor cosmetical changes + +* Tue Jun 10 2003 Enrico Scholz 0:0.2.4-0.fdr.1 +- Initial build.