2019-05-07 09:48:11 +00:00
|
|
|
%global _hardened_build 1
|
|
|
|
|
|
|
|
Summary: Random number generator related utilities
|
|
|
|
Name: rng-tools
|
2022-11-08 06:55:38 +00:00
|
|
|
Version: 6.15
|
|
|
|
Release: 1%{?dist}
|
2019-05-07 09:48:11 +00:00
|
|
|
Group: System Environment/Base
|
|
|
|
License: GPLv2+
|
|
|
|
URL: https://github.com/nhorman/rng-tools
|
2021-11-09 10:06:24 +00:00
|
|
|
Source0: %{url}/archive/v%{version}/%{name}-%{version}.tar.gz
|
2019-05-07 09:48:11 +00:00
|
|
|
Source1: rngd.service
|
2022-11-08 06:55:38 +00:00
|
|
|
Source2: rngd.sysconfig
|
|
|
|
Source3: jitterentropy-library-3.4.0.tar.gz
|
2021-11-09 10:06:24 +00:00
|
|
|
|
2022-08-02 07:01:21 +00:00
|
|
|
BuildRequires: gcc make binutils
|
2021-09-21 07:14:53 +00:00
|
|
|
BuildRequires: gettext
|
2021-11-09 10:06:24 +00:00
|
|
|
BuildRequires: systemd systemd-rpm-macros
|
2019-05-07 09:48:11 +00:00
|
|
|
BuildRequires: autoconf automake
|
2021-11-09 10:06:24 +00:00
|
|
|
BuildRequires: libgcrypt-devel libcurl-devel
|
2019-05-07 09:48:11 +00:00
|
|
|
BuildRequires: libxml2-devel openssl-devel
|
2022-08-02 07:01:21 +00:00
|
|
|
BuildRequires: jansson-devel
|
2022-11-08 06:55:38 +00:00
|
|
|
BuildRequires: libcap-devel
|
|
|
|
|
2021-11-09 10:06:24 +00:00
|
|
|
Requires(post): systemd
|
|
|
|
Requires(preun): systemd
|
|
|
|
Requires(postun): systemd
|
2022-11-08 06:55:38 +00:00
|
|
|
Requires: selinux-policy >= 3.14.3-98
|
|
|
|
|
|
|
|
Patch0: 1-je-rh-makefile.patch
|
|
|
|
Patch1: 2-je-remove-install.patch
|
|
|
|
Patch2: 3-rt-use-jitter-static.patch
|
|
|
|
Patch3: 4-rt-revert-build-randstat.patch
|
|
|
|
Patch4: 5-rt-comment-out-have-aesni.patch
|
|
|
|
Patch5: 6-rt-fix-jent-define.patch
|
2019-05-07 09:48:11 +00:00
|
|
|
|
|
|
|
%description
|
2021-11-09 10:06:24 +00:00
|
|
|
This is a random number generator daemon and its tools. It monitors
|
|
|
|
a set of entropy sources present on a system (like /dev/hwrng, RDRAND,
|
|
|
|
TPM, jitter) and supplies entropy from them to a kernel entropy pool.
|
2019-05-07 09:48:11 +00:00
|
|
|
|
2021-09-21 07:14:53 +00:00
|
|
|
%prep
|
2021-11-09 10:06:24 +00:00
|
|
|
%setup -q
|
2022-11-08 06:55:38 +00:00
|
|
|
tar xf %{SOURCE3}
|
|
|
|
mv jitterentropy-library-3.4.0 jitterentropy-library
|
|
|
|
%autopatch -p0
|
2019-05-07 09:48:11 +00:00
|
|
|
|
|
|
|
%build
|
|
|
|
./autogen.sh
|
2022-11-08 06:55:38 +00:00
|
|
|
# a dirty hack so libdarn_impl_a_CFLAGS overrides common CFLAGS
|
|
|
|
sed -i -e 's/$(libdarn_impl_a_CFLAGS) $(CFLAGS)/$(CFLAGS) $(libdarn_impl_a_CFLAGS)/' Makefile.in
|
2021-11-09 10:06:24 +00:00
|
|
|
%configure --without-pkcs11 --without-rtlsdr
|
2019-05-07 09:48:11 +00:00
|
|
|
%make_build
|
|
|
|
|
|
|
|
%install
|
|
|
|
%make_install
|
|
|
|
|
2022-11-08 06:55:38 +00:00
|
|
|
# install systemd unit file
|
2019-05-07 09:48:11 +00:00
|
|
|
install -Dt %{buildroot}%{_unitdir} -m0644 %{SOURCE1}
|
2022-05-10 07:17:15 +00:00
|
|
|
# install sysconfig file
|
2022-11-08 06:55:38 +00:00
|
|
|
install -D %{SOURCE2} -m0644 %{buildroot}%{_sysconfdir}/sysconfig/rngd
|
2019-05-07 09:48:11 +00:00
|
|
|
|
|
|
|
%post
|
2022-11-08 06:55:38 +00:00
|
|
|
%systemd_post rngd.service
|
2019-05-07 09:48:11 +00:00
|
|
|
|
|
|
|
%preun
|
2022-11-08 06:55:38 +00:00
|
|
|
%systemd_preun rngd.service
|
2019-05-07 09:48:11 +00:00
|
|
|
|
|
|
|
%postun
|
2022-11-08 06:55:38 +00:00
|
|
|
%systemd_postun_with_restart rngd.service
|
2019-05-07 09:48:11 +00:00
|
|
|
|
|
|
|
%files
|
|
|
|
%{!?_licensedir:%global license %%doc}
|
|
|
|
%license COPYING
|
2021-11-09 10:06:24 +00:00
|
|
|
%doc AUTHORS README
|
2019-05-07 09:48:11 +00:00
|
|
|
%{_bindir}/rngtest
|
|
|
|
%{_sbindir}/rngd
|
|
|
|
%{_mandir}/man1/rngtest.1.*
|
|
|
|
%{_mandir}/man8/rngd.8.*
|
2022-11-08 06:55:38 +00:00
|
|
|
%attr(0644,root,root) %{_unitdir}/rngd.service
|
|
|
|
%config(noreplace) %attr(0644,root,root) %{_sysconfdir}/sysconfig/rngd
|
2019-05-07 09:48:11 +00:00
|
|
|
|
|
|
|
%changelog
|
2022-11-08 06:55:38 +00:00
|
|
|
* Sat Apr 16 2022 Vladis Dronov <vdronov@redhat.com> - 6.15-1
|
|
|
|
- Update rng-tools to v6.15 @ 172bf0e3 (bz 2075974)
|
|
|
|
- Update jitterentropy library to v3.4.0 @ 887c9871
|
|
|
|
- Allow rngd process to drop privileges with "-D user:group"
|
|
|
|
- Fix an error building with jitterentropy-3.4.0
|
|
|
|
- Add a requirement for selinux-policy of a certain version
|
|
|
|
- Fix a build failure on ppc64
|
|
|
|
- Small edits in test scripts
|
2022-08-02 07:01:21 +00:00
|
|
|
|
2022-05-10 07:17:15 +00:00
|
|
|
* Mon Nov 22 2021 Vladis Dronov <vdronov@redhat.com> - 6.14-4.git.b2b7934e
|
|
|
|
- Update rng-tools to v6.14 @ b2b7934e (bz 2015570)
|
|
|
|
- Update jitterentropy library to v3.3.1 @ 887c9871
|
|
|
|
- Add a config file for storing rngd options
|
|
|
|
- Fix a security issue found by a covscan in jitterentropy library
|
|
|
|
|
2021-11-09 10:06:24 +00:00
|
|
|
* Thu Jul 22 2021 Vladis Dronov <vdronov@redhat.com> - 6.13-1.git.d207e0b6
|
|
|
|
- Update to the upstream v6.13 + tip of origin/master + onecpu
|
|
|
|
branch + revert of 2ce93190
|
|
|
|
- Rebuild rng-tools against the latest jitterentropy library
|
|
|
|
3.0.2-2.git.409828cf with fixes for an important issue
|
|
|
|
- Fix a number of issues (bz 1974103, bz 1980421, bz 1859154)
|
|
|
|
|
|
|
|
* Mon Jul 05 2021 Vladis Dronov <vdronov@redhat.com> - 6.8-6
|
|
|
|
- Adjust rngd-wake-threshold.service and post section so udevadm is not
|
|
|
|
run in a container (bz 1975554)
|
|
|
|
|
|
|
|
* Thu May 27 2021 Vladis Dronov <vdronov@redhat.com> - 6.8-5
|
|
|
|
- Fix /dev/hwrng permissions issue at boot time (bz 1955522)
|
|
|
|
|
2021-09-21 07:14:53 +00:00
|
|
|
* Mon May 24 2021 Vladis Dronov <vdronov@redhat.com> - 6.8-4
|
2021-11-09 10:06:24 +00:00
|
|
|
- There is no need to hardcode _sbindir anymore, also the old value is
|
|
|
|
incorrect
|
2021-09-21 07:14:53 +00:00
|
|
|
- Update the rngd.service file
|
|
|
|
- Fix a busyloop bug (bz 1956248)
|
|
|
|
- Fix /dev/hwrng permission issue (bz 1955522)
|
|
|
|
|
2020-04-28 09:39:23 +00:00
|
|
|
* Tue Feb 18 2020 Neil Horman <nhorman@redhat.com> - 6.8-3
|
|
|
|
- Fix coarse clock time on Azure (bz 180155)
|
2021-09-21 07:14:53 +00:00
|
|
|
|
2020-04-28 09:39:23 +00:00
|
|
|
* Mon Dec 02 2019 Neil Horman <nhorman@redhat.com> - 6.8-2
|
|
|
|
- Fix erroneous message due to bad errno check (bz 1776710)
|
|
|
|
- Enable addition of 0 value for fill-watermark (bz 1776710)
|
|
|
|
|
|
|
|
* Fri Nov 15 2019 Neil Horman <nhorman@redhat.com> - 6.8-1
|
|
|
|
- Update to latest upstream (bz 1769916)
|
|
|
|
|
|
|
|
* Wed Oct 09 2019 Neil Horman <nhorman@redhat.com> 6.6-5
|
|
|
|
- Fix group typo in rngd.service (bz 1751810)
|
|
|
|
|
|
|
|
* Fri Oct 04 2019 Neil Horman <nhorman@redhat.com> 6.6-4
|
|
|
|
- Revision bump to rebuild for new CI runs
|
|
|
|
|
|
|
|
* Mon Mar 25 2019 Neil Horman <nhorman@redhat.com> 6.2-3
|
|
|
|
- Allow rngd to run as non-privledged user (bz 1692435)
|
|
|
|
|
2019-05-07 09:48:11 +00:00
|
|
|
* Mon Dec 17 2018 Neil Horman <nhorman@redhat.com> 6.2-2
|
|
|
|
- default to 1 thread on cpu 0 if getaffinty returns error (bz 1658855)
|
|
|
|
|
|
|
|
* Thu May 17 2018 Neil Horman <nhorman@redhat.com> 6.2-1
|
2021-09-21 07:14:53 +00:00
|
|
|
- Update to latest upstream
|
2019-05-07 09:48:11 +00:00
|
|
|
- Add CI self tests
|
|
|
|
|
|
|
|
* Thu Feb 15 2018 Adam Williamson <awilliam@redhat.com> - 6.1-4
|
|
|
|
- Drop all attempts to 'fix' #1490632, revert spec to same as 6.1-1
|
|
|
|
|
|
|
|
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 6.1-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
|
|
|
|
* Thu Nov 02 2017 Neil Horman <nhorman@redhat.com> - 6.1-2
|
|
|
|
- Enable rngd on entropy src availability (bz 1490632)
|
|
|
|
|
|
|
|
* Tue Oct 10 2017 Neil Horman <nhorman@redhat.com> - 6.1-1
|
|
|
|
- update to latest upstream
|
|
|
|
|
|
|
|
* Fri Jul 28 2017 Neil Horman <nhorman@redhat.com> - 6-1
|
|
|
|
- Update to latest upstream
|
|
|
|
|
|
|
|
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 5-10
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
|
|
|
|
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 5-9
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
|
|
|
|
* Tue Oct 18 2016 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 5-8
|
|
|
|
- If device is not found exit immediately (#892178)
|
|
|
|
|
|
|
|
* Sun Mar 6 2016 Peter Robinson <pbrobinson@fedoraproject.org> 5-7
|
|
|
|
- Use %%license
|
|
|
|
|
|
|
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 5-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
|
|
|
|
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
|
|
|
|
* Wed Dec 10 2014 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 5-4
|
|
|
|
- Build with hardening flags (#1051344)
|
|
|
|
- Fail nicely if no hardware generator is found (#892178)
|
|
|
|
- Drop unneeded dependency
|
|
|
|
|
|
|
|
* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
|
|
|
|
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
|
|
|
* Wed Apr 23 2014 Luke Macken <lmacken@redhat.com> - 5-1
|
|
|
|
- Update to release version 5.
|
|
|
|
- Remove rng-tools-man.patch
|
|
|
|
|
|
|
|
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
|
|
|
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
|
|
|
|
* Tue Sep 25 2012 Jaromir Capik <jcapik@redhat.com> - 4-2
|
|
|
|
- Migration to new systemd macros
|
|
|
|
|
|
|
|
* Mon Aug 6 2012 Jeff Garzik <jgarzik@redhat.com> - 4-1
|
|
|
|
- Update to release version 4.
|
|
|
|
|
|
|
|
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
|
|
|
* Thu Jan 12 2012 Jiri Popelka <jpopelka@redhat.com> - 3-4
|
|
|
|
- 2 patches from RHEL-6
|
|
|
|
- systemd service
|
|
|
|
- man page fixes
|
|
|
|
- modernize spec file
|
|
|
|
|
|
|
|
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
|
|
|
* Sat Jul 3 2010 Jeff Garzik <jgarzik@redhat.com> - 3-2
|
|
|
|
- comply with renaming guidelines, by Providing rng-utils = 1:2.0-4.2
|
|
|
|
|
|
|
|
* Sat Jul 3 2010 Jeff Garzik <jgarzik@redhat.com> - 3-1
|
|
|
|
- Update to release version 3.
|
|
|
|
|
|
|
|
* Fri Mar 26 2010 Jeff Garzik <jgarzik@redhat.com> - 2-3
|
|
|
|
- more minor updates for package review
|
|
|
|
|
|
|
|
* Thu Mar 25 2010 Jeff Garzik <jgarzik@redhat.com> - 2-2
|
|
|
|
- several minor updates for package review
|
|
|
|
|
|
|
|
* Wed Mar 24 2010 Jeff Garzik <jgarzik@redhat.com> - 2-1
|
|
|
|
- initial revision (as rng-tools)
|