commit 436b34f2dce604165eb7a78d3b7104143847a2d5 Author: CentOS Sources Date: Wed Nov 3 18:53:32 2021 -0400 import raptor2-2.0.15-30.el9 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..6c9ea52 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/raptor2-2.0.15.tar.gz diff --git a/.raptor2.metadata b/.raptor2.metadata new file mode 100644 index 0000000..a06cb48 --- /dev/null +++ b/.raptor2.metadata @@ -0,0 +1 @@ +504231f87024df9aceb90eb957196b557b4b8e38 SOURCES/raptor2-2.0.15.tar.gz diff --git a/SOURCES/0001-CVE-2020-25713-raptor2-malformed-input-file-can-lead.patch b/SOURCES/0001-CVE-2020-25713-raptor2-malformed-input-file-can-lead.patch new file mode 100644 index 0000000..1fb279d --- /dev/null +++ b/SOURCES/0001-CVE-2020-25713-raptor2-malformed-input-file-can-lead.patch @@ -0,0 +1,33 @@ +From a549457461874157c8c8e8e8a6e0eec06da4fbd0 Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Caol=C3=A1n=20McNamara?= +Date: Tue, 24 Nov 2020 10:30:20 +0000 +Subject: [PATCH] CVE-2020-25713 raptor2: malformed input file can lead to a + segfault + +due to an out of bounds array access in +raptor_xml_writer_start_element_common + +See: +https://bugs.mageia.org/show_bug.cgi?id=27605 +https://www.openwall.com/lists/oss-security/2020/11/13/1 +https://gerrit.libreoffice.org/c/core/+/106249 +--- + src/raptor_xml_writer.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/raptor_xml_writer.c b/src/raptor_xml_writer.c +index 56993dc3..4426d38c 100644 +--- a/src/raptor_xml_writer.c ++++ b/src/raptor_xml_writer.c +@@ -227,7 +227,7 @@ raptor_xml_writer_start_element_common(raptor_xml_writer* xml_writer, + + /* check it wasn't an earlier declaration too */ + for(j = 0; j < nspace_declarations_count; j++) +- if(nspace_declarations[j].nspace == element->attributes[j]->nspace) { ++ if(nspace_declarations[j].nspace == element->attributes[i]->nspace) { + declare_me = 0; + break; + } +-- +2.28.0 + diff --git a/SOURCES/0001-Calcualte-max-nspace-declarations-correctly-for-XML-.patch b/SOURCES/0001-Calcualte-max-nspace-declarations-correctly-for-XML-.patch new file mode 100644 index 0000000..6fa726c --- /dev/null +++ b/SOURCES/0001-Calcualte-max-nspace-declarations-correctly-for-XML-.patch @@ -0,0 +1,43 @@ +From 590681e546cd9aa18d57dc2ea1858cb734a3863f Mon Sep 17 00:00:00 2001 +From: Dave Beckett +Date: Sun, 16 Apr 2017 23:15:12 +0100 +Subject: [PATCH] Calcualte max nspace declarations correctly for XML writer + +(raptor_xml_writer_start_element_common): Calculate max including for +each attribute a potential name and value. + +Fixes Issues #0000617 http://bugs.librdf.org/mantis/view.php?id=617 +and #0000618 http://bugs.librdf.org/mantis/view.php?id=618 +--- + src/raptor_xml_writer.c | 7 ++++--- + 1 file changed, 4 insertions(+), 3 deletions(-) + +diff --git a/src/raptor_xml_writer.c b/src/raptor_xml_writer.c +index 693b946..0d3a36a 100644 +--- a/src/raptor_xml_writer.c ++++ b/src/raptor_xml_writer.c +@@ -181,9 +181,10 @@ raptor_xml_writer_start_element_common(raptor_xml_writer* xml_writer, + size_t nspace_declarations_count = 0; + unsigned int i; + +- /* max is 1 per element and 1 for each attribute + size of declared */ + if(nstack) { +- int nspace_max_count = element->attribute_count+1; ++ int nspace_max_count = element->attribute_count * 2; /* attr and value */ ++ if(element->name->nspace) ++ nspace_max_count++; + if(element->declared_nspaces) + nspace_max_count += raptor_sequence_size(element->declared_nspaces); + if(element->xml_language) +@@ -237,7 +238,7 @@ raptor_xml_writer_start_element_common(raptor_xml_writer* xml_writer, + } + } + +- /* Add the attribute + value */ ++ /* Add the attribute's value */ + nspace_declarations[nspace_declarations_count].declaration= + raptor_qname_format_as_xml(element->attributes[i], + &nspace_declarations[nspace_declarations_count].length); +-- +2.9.3 + diff --git a/SPECS/raptor2.spec b/SPECS/raptor2.spec new file mode 100644 index 0000000..91611ff --- /dev/null +++ b/SPECS/raptor2.spec @@ -0,0 +1,260 @@ + +Summary: RDF Parser Toolkit for Redland +Name: raptor2 +Version: 2.0.15 +Release: 30%{?dist} + +License: GPLv2+ or LGPLv2+ or ASL 2.0 +Source: http://download.librdf.org/source/raptor2-%{version}.tar.gz +URL: http://librdf.org/raptor/ + +## upstream patches +# https://github.com/dajobe/raptor/commit/590681e546cd9aa18d57dc2ea1858cb734a3863f +Patch1: 0001-Calcualte-max-nspace-declarations-correctly-for-XML-.patch +# https://bugs.librdf.org/mantis/view.php?id=650 +Patch2: 0001-CVE-2020-25713-raptor2-malformed-input-file-can-lead.patch + +## upstreamable patches + +BuildRequires: make +BuildRequires: gcc-c++ +BuildRequires: curl-devel +BuildRequires: gtk-doc +BuildRequires: libicu-devel +BuildRequires: pkgconfig(libxslt) +%if ! 0%{?rhel} +BuildRequires: yajl-devel +%endif + +# when /usr/bin/rappor moved here -- rex +Conflicts: raptor < 1.4.21-10 + +%description +Raptor is the RDF Parser Toolkit for Redland that provides +a set of standalone RDF parsers, generating triples from RDF/XML +or N-Triples. + +%package devel +Summary: Development files for %{name} +Requires: %{name}%{?_isa} = %{version}-%{release} +%description devel +%{summary}. + + +%prep +%autosetup -p1 + +# hack to nuke rpaths +%if "%{_libdir}" != "/usr/lib" +sed -i -e 's|"/lib /usr/lib|"/%{_lib} %{_libdir}|' configure +%endif + + +%build + +%if 0%{?rhel} +%define distrooptions --with-yajl=no +%else +%define distrooptions --with-yajl=yes +%endif + +%configure \ + --disable-static \ + --enable-release \ + --with-icu-config=/usr/bin/icu-config \ + %{distrooptions} + +%make_build + + +%install +%make_install + +## unpackaged files +rm -fv %{buildroot}%{_libdir}/lib*.la + + +%check +export PKG_CONFIG_PATH=%{buildroot}%{_datadir}/pkgconfig:%{buildroot}%{_libdir}/pkgconfig +test "$(pkg-config --modversion raptor2)" = "%{version}" +make check + + +%ldconfig_scriptlets + +%files +%doc AUTHORS ChangeLog NEWS README +%license COPYING* LICENSE.txt LICENSE-2.0.txt +%{_libdir}/libraptor2.so.0* +%{_bindir}/rapper +%{_mandir}/man1/rapper* + +%files devel +%doc UPGRADING.html +%{_includedir}/raptor2/ +%{_libdir}/libraptor2.so +%{_libdir}/pkgconfig/raptor2.pc +%{_mandir}/man3/libraptor2* +%dir %{_datadir}/gtk-doc +%dir %{_datadir}/gtk-doc/html/ +%{_datadir}/gtk-doc/html/raptor2/ + + +%changelog +* Tue Aug 10 2021 Mohan Boddu - 2.0.15-30 +- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags + Related: rhbz#1991688 + +* Fri Apr 16 2021 Mohan Boddu - 2.0.15-29 +- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937 + +* Wed Jan 27 2021 Fedora Release Engineering - 2.0.15-28 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + +* Mon Jan 11 2021 Caolán McNamara - 2.0.15-27 +- Resolves: rhbz#1900686 CVE-2020-25713 malformed input file can lead to a segfault + +* Mon Aug 10 2020 Caolán McNamara - 2.0.15-26 +- Resolves: rhbz#1560206 drop requirement on yajl + +* Sat Aug 01 2020 Fedora Release Engineering - 2.0.15-25 +- Second attempt - Rebuilt for + https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Wed Jul 29 2020 Fedora Release Engineering - 2.0.15-24 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Fri May 15 2020 Pete Walter - 2.0.15-23 +- Rebuild for ICU 67 + +* Mon Feb 17 2020 Rex Dieter - 2.0.15-22 +- backport crash fix + +* Thu Jan 30 2020 Fedora Release Engineering - 2.0.15-21 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + +* Fri Nov 01 2019 Pete Walter - 2.0.15-20 +- Rebuild for ICU 65 + +* Fri Jul 26 2019 Fedora Release Engineering - 2.0.15-19 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + +* Sat Feb 02 2019 Fedora Release Engineering - 2.0.15-18 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Wed Jan 23 2019 Pete Walter - 2.0.15-17 +- Rebuild for ICU 63 + +* Sat Jul 14 2018 Fedora Release Engineering - 2.0.15-16 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + +* Tue Jul 10 2018 Pete Walter - 2.0.15-15 +- Rebuild for ICU 62 + +* Mon Apr 30 2018 Pete Walter - 2.0.15-14 +- Rebuild for ICU 61.1 + +* Wed Mar 07 2018 Rex Dieter - 2.0.15-13 +- BR: gcc-c++, use %%make_build %%make_install %%license %%ldconfig_scriptlets + +* Fri Feb 09 2018 Fedora Release Engineering - 2.0.15-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Thu Nov 30 2017 Pete Walter - 2.0.15-11 +- Rebuild for ICU 60.1 + +* Thu Aug 03 2017 Fedora Release Engineering - 2.0.15-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + +* Thu Jul 27 2017 Fedora Release Engineering - 2.0.15-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Sat Feb 11 2017 Fedora Release Engineering - 2.0.15-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Fri Apr 15 2016 David Tardon - 2.0.15-7 +- rebuild for ICU 57.1 + +* Thu Feb 04 2016 Fedora Release Engineering - 2.0.15-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Wed Oct 28 2015 David Tardon - 2.0.15-5 +- rebuild for ICU 56.1 + +* Thu Jun 18 2015 Fedora Release Engineering - 2.0.15-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + +* Wed Feb 18 2015 Rex Dieter 2.0.15-3 +- rebuild (gcc5) + +* Mon Jan 26 2015 David Tardon - 2.0.15-2 +- rebuild for ICU 54.1 + +* Mon Nov 03 2014 Rex Dieter 2.0.15-1 +- 2.0.15 (#1159636) + +* Tue Aug 26 2014 David Tardon - 2.0.14-4 +- rebuild for ICU 53.1 + +* Sun Aug 17 2014 Fedora Release Engineering - 2.0.14-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + +* Sun Jun 08 2014 Fedora Release Engineering - 2.0.14-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + +* Tue May 06 2014 Rex Dieter 2.0.14-1 +- 2.0.14 (#1094721) + +* Tue Mar 04 2014 Rex Dieter 2.0.13-1 +- 2.0.13 + +* Wed Feb 12 2014 Rex Dieter 2.0.9-3 +- rebuild (libicu) + +* Sun Aug 04 2013 Fedora Release Engineering - 2.0.9-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + +* Tue Mar 26 2013 Rex Dieter 2.0.9-1 +- 2.0.9 +- BR: libicu-devel + +* Tue Feb 19 2013 Rex Dieter 2.0.8-1 +- 2.0.8 + +* Thu Feb 14 2013 Fedora Release Engineering - 2.0.7-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + +* Sat Jul 21 2012 Fedora Release Engineering - 2.0.7-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Fri Mar 23 2012 Rex Dieter 2.0.7-1 +- 2.0.7 + +* Mon Mar 05 2012 Rex Dieter 2.0.6-1 +- 2.0.6 + +* Sat Jan 14 2012 Fedora Release Engineering - 2.0.4-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + +* Thu Nov 10 2011 Rex Dieter 2.0.4-3 +- rebuild (yajl) +- pkgconfig-style deps + +* Sun Jul 31 2011 Rex Dieter 2.0.4-2 +- include rapper here + +* Fri Jul 29 2011 Rex Dieter 2.0.4-1 +- 2.0.4 + +* Fri Jul 29 2011 Rex Dieter 2.0.3-3 +- upstream patch to fix build against newer libcurl + +* Tue Jul 26 2011 Rex Dieter 2.0.3-2 +- -devel: drop Group: tag +- add lot's of %%doc's +- License: GPLv2+ or LGPLv2+ or ASL 2.0 (or newer) + +* Sat Jul 23 2011 Rex Dieter 2.0.3-1 +- first try + +