Blame SPECS/iputils.spec

fb0f9b
%global _hardened_build 1
fb0f9b
fb0f9b
Summary: Network monitoring tools including ping
fb0f9b
Name: iputils
fb0f9b
Version: 20210202
fb0f9b
Release: 7%{?dist}
fb0f9b
# some parts are under the original BSD (ping.c)
fb0f9b
# some are under GPLv2+ (tracepath.c)
fb0f9b
License: BSD and GPLv2+
fb0f9b
URL: https://github.com/iputils/iputils
fb0f9b
fb0f9b
Source0: https://github.com/iputils/iputils/archive/%{version}/%{name}-%{version}.tar.gz
fb0f9b
# ifenslave.tar.gz was taken from kernel 3.10 source at: https://elixir.bootlin.com/linux/v3.10/source/Documentation/networking/ifenslave.c
fb0f9b
Source1: ifenslave.tar.gz
fb0f9b
Source2: rdisc.service
fb0f9b
Source3: ninfod.service
fb0f9b
# Taken from ping.c on 2014-07-12
fb0f9b
Source4: bsd.txt
fb0f9b
Source5: https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt
fb0f9b
fb0f9b
Patch100: iputils-ifenslave.patch
fb0f9b
Patch101: iputils-ifenslave-CWE-170.patch
fb0f9b
Patch102: iputils-ifenslave-CWE-170-2.patch
fb0f9b
fb0f9b
BuildRequires: gcc
fb0f9b
BuildRequires: meson
fb0f9b
BuildRequires: gettext
fb0f9b
BuildRequires: glibc-kernheaders >= 2.4-8.19
fb0f9b
BuildRequires: libidn2-devel
fb0f9b
BuildRequires: openssl-devel
fb0f9b
BuildRequires: libcap-devel
fb0f9b
BuildRequires: libxslt docbook5-style-xsl
fb0f9b
BuildRequires: systemd
fb0f9b
%{?systemd_ordering}
fb0f9b
Provides: /bin/ping
fb0f9b
Provides: /bin/ping6
fb0f9b
Provides: /sbin/arping
fb0f9b
Provides: /sbin/rdisc
fb0f9b
fb0f9b
%description
fb0f9b
The iputils package contains basic utilities for monitoring a network,
fb0f9b
including ping. The ping command sends a series of ICMP protocol
fb0f9b
ECHO_REQUEST packets to a specified network host to discover whether
fb0f9b
the target machine is alive and receiving network traffic.
fb0f9b
fb0f9b
%package ninfod
fb0f9b
Summary: Node Information Query Daemon
fb0f9b
Requires: %{name} = %{version}-%{release}
fb0f9b
Provides: %{_sbindir}/ninfod
fb0f9b
fb0f9b
%description ninfod
fb0f9b
Node Information Query (RFC4620) daemon. Responds to IPv6 Node Information
fb0f9b
Queries.
fb0f9b
fb0f9b
%prep
fb0f9b
%setup -q -a 1 -n %{name}-%{version}
fb0f9b
cp %{SOURCE4} %{SOURCE5} .
fb0f9b
fb0f9b
%patch100 -p1
fb0f9b
%patch101 -p1
fb0f9b
%patch102 -p1
fb0f9b
fb0f9b
%build
fb0f9b
%ifarch s390 s390x
fb0f9b
  export CFLAGS="-fPIE"
fb0f9b
%else
fb0f9b
  export CFLAGS="-fpie"
fb0f9b
%endif
fb0f9b
export LDFLAGS="-pie -Wl,-z,relro,-z,now"
fb0f9b
fb0f9b
%meson -DBUILD_TFTPD=false
fb0f9b
%meson_build
fb0f9b
gcc -Wall $RPM_OPT_FLAGS $CFLAGS $RPM_LD_FLAGS $LDFLAGS ifenslave.c -o ifenslave
fb0f9b
fb0f9b
%install
fb0f9b
%meson_install
fb0f9b
%find_lang %{name}
fb0f9b
fb0f9b
mkdir -p ${RPM_BUILD_ROOT}%{_bindir}
fb0f9b
ln -sf ../bin/ping ${RPM_BUILD_ROOT}%{_sbindir}/ping
fb0f9b
ln -sf ../bin/ping ${RPM_BUILD_ROOT}%{_sbindir}/ping6
fb0f9b
ln -sf ../bin/tracepath ${RPM_BUILD_ROOT}%{_sbindir}/tracepath
fb0f9b
ln -sf ../bin/tracepath ${RPM_BUILD_ROOT}%{_sbindir}/tracepath6
fb0f9b
ln -sf ../bin/arping ${RPM_BUILD_ROOT}%{_sbindir}/arping
fb0f9b
ln -sf ping.8.gz ${RPM_BUILD_ROOT}%{_mandir}/man8/ping6.8.gz
fb0f9b
ln -sf tracepath.8.gz ${RPM_BUILD_ROOT}%{_mandir}/man8/tracepath6.8.gz
fb0f9b
install -cp ifenslave ${RPM_BUILD_ROOT}%{_sbindir}/
fb0f9b
install -cp ifenslave.8 ${RPM_BUILD_ROOT}%{_mandir}/man8/
fb0f9b
fb0f9b
%post
fb0f9b
%systemd_post rdisc.service
fb0f9b
fb0f9b
%preun
fb0f9b
%systemd_preun rdisc.service
fb0f9b
fb0f9b
%postun
fb0f9b
%systemd_postun_with_restart rdisc.service
fb0f9b
fb0f9b
%post ninfod
fb0f9b
%systemd_post ninfod.service
fb0f9b
fb0f9b
%preun ninfod
fb0f9b
%systemd_preun ninfod.service
fb0f9b
fb0f9b
%postun ninfod
fb0f9b
%systemd_postun_with_restart ninfod.service
fb0f9b
fb0f9b
%files -f %{name}.lang
fb0f9b
%doc README.bonding
fb0f9b
%license bsd.txt gpl-2.0.txt
fb0f9b
%{_unitdir}/rdisc.service
fb0f9b
%attr(0755,root,root) %caps(cap_net_raw=p) %{_bindir}/clockdiff
fb0f9b
%attr(0755,root,root) %caps(cap_net_raw=p) %{_bindir}/arping
fb0f9b
%attr(0755,root,root) %{_bindir}/ping
fb0f9b
%{_sbindir}/ifenslave
fb0f9b
%{_sbindir}/rdisc
fb0f9b
%{_bindir}/tracepath
fb0f9b
%{_sbindir}/ping
fb0f9b
%{_sbindir}/ping6
fb0f9b
%{_sbindir}/tracepath
fb0f9b
%{_sbindir}/tracepath6
fb0f9b
%{_sbindir}/arping
fb0f9b
%attr(644,root,root) %{_mandir}/man8/clockdiff.8.gz
fb0f9b
%attr(644,root,root) %{_mandir}/man8/arping.8.gz
fb0f9b
%attr(644,root,root) %{_mandir}/man8/ping.8.gz
fb0f9b
%{_mandir}/man8/ping6.8.gz
fb0f9b
%attr(644,root,root) %{_mandir}/man8/rdisc.8.gz
fb0f9b
%attr(644,root,root) %{_mandir}/man8/tracepath.8.gz
fb0f9b
%{_mandir}/man8/tracepath6.8.gz
fb0f9b
%attr(644,root,root) %{_mandir}/man8/ifenslave.8.gz
fb0f9b
fb0f9b
%files ninfod
fb0f9b
%attr(0755,root,root) %caps(cap_net_raw=ep) %{_sbindir}/ninfod
fb0f9b
%{_unitdir}/ninfod.service
fb0f9b
%attr(644,root,root) %{_mandir}/man8/ninfod.8.gz
fb0f9b
fb0f9b
%changelog
fb0f9b
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 20210202-7
fb0f9b
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
fb0f9b
  Related: rhbz#1991688
fb0f9b
fb0f9b
* Tue Jun 22 2021 Mohan Boddu <mboddu@redhat.com> - 20210202-6
fb0f9b
- Rebuilt for RHEL 9 BETA for openssl 3.0
fb0f9b
  Related: rhbz#1971065
fb0f9b
fb0f9b
* Mon Jun 14 2021 Jan Macku <jamacku@redhat.com> - 20210202-5
fb0f9b
- spec: Add note about source of ifenslave code (rhbz#1938746)
fb0f9b
fb0f9b
* Wed Jun 09 2021 Jan Macku <jamacku@redhat.com> - 20210202-4
fb0f9b
- ifenslave: fix CWE-170 (rhbz#1938746)
fb0f9b
fb0f9b
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 20210202-3
fb0f9b
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
fb0f9b
fb0f9b
* Tue Mar 23 2021 Jan Macku <jamacku@redhat.com> - 20210202-2
fb0f9b
- ifenslave: fix CWE-170 (related to rhbz#1938746)
fb0f9b
fb0f9b
* Tue Feb 02 2021 Kevin Fenzi <kevin@scrye.com> - 20210202-1
fb0f9b
- Update to 20210202. Fixes rhbz#1923917
fb0f9b
fb0f9b
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 20200821-2
fb0f9b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
fb0f9b
fb0f9b
* Sat Oct 31 2020 Kevin Fenzi <kevin@scrye.com> - 20200821-1
fb0f9b
- Update to 20200821 release. Fixes bug #1871310
fb0f9b
fb0f9b
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 20190515-8
fb0f9b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
fb0f9b
fb0f9b
* Mon May 18 2020 Jan Synáček <jsynacek@redhat.com> - 20190515-7
fb0f9b
- arping exits with error when should not (#1836607)
fb0f9b
fb0f9b
* Mon Mar  2 2020 Jan Synáček <jsynacek@redhat.com> - 20190515-6
fb0f9b
- Make ping unprivileged (#1699497)
fb0f9b
fb0f9b
* Mon Feb  3 2020 Jan Synáček <jsynacek@redhat.com> - 20190515-5
fb0f9b
- Symlink arping to /usr/sbin/arping to maintain backward compatibility (#1797525)
fb0f9b
fb0f9b
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 20190515-4
fb0f9b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
fb0f9b
fb0f9b
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 20190515-3
fb0f9b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
fb0f9b
fb0f9b
* Wed May 22 2019 Jan Synáček <jsynacek@redhat.com> - 20190515-2
fb0f9b
- Mark localization files correctly (#1712514)
fb0f9b
fb0f9b
* Wed May 22 2019 Jan Synáček <jsynacek@redhat.com> - 20190515-1
fb0f9b
- Update to s20190515 (#1710647)
fb0f9b
fb0f9b
* Thu Mar 28 2019 Jan Synáček <jsynacek@redhat.com> - 20190324-1
fb0f9b
- Update to s20190324 (#1692136)
fb0f9b
fb0f9b
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 20180629-4
fb0f9b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
fb0f9b
fb0f9b
* Wed Jan 23 2019 Bogdan Dobrelya <bdobreli@redhat.com> - 20180629-3
fb0f9b
- Use systemd_ordering macro
fb0f9b
fb0f9b
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 20180629-2
fb0f9b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
fb0f9b
fb0f9b
* Tue Jul  3 2018 Jan Synáček <jsynacek@redhat.com> - 20180629-1
fb0f9b
- update to s20180629 (#1596893)
fb0f9b
fb0f9b
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 20161105-9
fb0f9b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
fb0f9b
fb0f9b
* Fri Nov 24 2017 Jan Synáček <jsynacek@redhat.com> - 20161105-8
fb0f9b
- switch to libidn2 (#1449149)
fb0f9b
fb0f9b
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 20161105-7
fb0f9b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
fb0f9b
fb0f9b
* Sun Jul 30 2017 Florian Weimer <fweimer@redhat.com> - 20161105-6
fb0f9b
- Rebuild with binutils fix for ppc64le (#1475636)
fb0f9b
fb0f9b
* Thu Jul 27 2017 Jan Synáček <jsynacek@redhat.com> - 20161105-5
fb0f9b
- ping does not work in dkr images (#1350019)
fb0f9b
fb0f9b
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 20161105-4
fb0f9b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
fb0f9b
fb0f9b
* Fri May 12 2017 Karsten Hopp <karsten@redhat.com> - 20161105-3
fb0f9b
- don't build docs for module builds to limit dependencies
fb0f9b
fb0f9b
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 20161105-2
fb0f9b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
fb0f9b
fb0f9b
* Tue Nov  8 2016 Jan Synáček <jsynacek@redhat.com> - 20161105-1
fb0f9b
- Update to s20161105 (#1392759)
fb0f9b
fb0f9b
* Thu Oct 13 2016 Tomáš Mráz <tmraz@redhat.com> -  20160308-4
fb0f9b
- rebuild with OpenSSL 1.1.0
fb0f9b
fb0f9b
* Wed Jun 22 2016 Jan Synáček <jsynacek@redhat.com> - 20160308-3
fb0f9b
- Fix: Failed to bind to device (#1348934)
fb0f9b
fb0f9b
* Wed Mar  9 2016 Jan Synáček <jsynacek@redhat.com> - 20160308-2
fb0f9b
- Don't build against libnettle
fb0f9b
fb0f9b
* Wed Mar  9 2016 Jan Synáček <jsynacek@redhat.com> - 20160308-1
fb0f9b
- Update to s20160308 (#1315975)
fb0f9b
fb0f9b
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 20150815-3
fb0f9b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
fb0f9b
fb0f9b
* Thu Nov 19 2015 Jan Synáček <jsynacek@redhat.com> - 20150815-2
fb0f9b
- Fix: Always use POSIX locale when parsing -i (#1283277)
fb0f9b
fb0f9b
* Thu Sep 24 2015 Jan Synáček <jsynacek@redhat.com> - 20150815-1
fb0f9b
- Update to s20150815 (#617934)
fb0f9b
fb0f9b
* Sun Aug 23 2015 Peter Robinson <pbrobinson@fedoraproject.org> 20140519-6
fb0f9b
- Don't depend on chkconfig, uses systemctl now
fb0f9b
fb0f9b
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 20140519-5
fb0f9b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
fb0f9b
fb0f9b
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 20140519-4
fb0f9b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
fb0f9b
fb0f9b
* Sat Jul 12 2014 Tom Callaway <spot@fedoraproject.org> - 2040519-3
fb0f9b
- fix license handling
fb0f9b
fb0f9b
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 20140519-2
fb0f9b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
fb0f9b
fb0f9b
* Tue May 20 2014 Jan Synáček <jsynacek@redhat.com> - 20140519-1
fb0f9b
- Update to iputils-s20140519 (#1096617)
fb0f9b
fb0f9b
* Fri Apr 11 2014 Jan Synáček <jsynacek@redhat.com> - 20121221-10
fb0f9b
- Fix arping hang if SIGALRM is blocked (#1085971)
fb0f9b
fb0f9b
* Wed Mar 26 2014 Jan Synáček <jsynacek@redhat.com> - 20121221-9
fb0f9b
- Fix message flood when EPERM is encountered in ping (#1061867)
fb0f9b
fb0f9b
* Mon Feb  3 2014 Jan Synáček <jsynacek@redhat.com> - 20121221-8
fb0f9b
- reference documentation in the service files
fb0f9b
- remove redundant sysconfig-related stuff
fb0f9b
- remove sysvinit script
fb0f9b
fb0f9b
* Tue Jan 21 2014 Jan Synáček <jsynacek@redhat.com> - 20121221-7
fb0f9b
- Build with pie/full RELRO (#1055742)
fb0f9b
fb0f9b
* Sun Jan 19 2014 Ville Skyttä <ville.skytta@iki.fi> - 20121221-6
fb0f9b
- Don't order services after syslog.target.
fb0f9b
fb0f9b
* Thu Oct 31 2013 Jan Synáček <jsynacek@redhat.com> - 20121221-5
fb0f9b
- Harden the package even more (full RELRO)
fb0f9b
fb0f9b
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 20121221-4
fb0f9b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
fb0f9b
fb0f9b
* Mon Jul 15 2013 Jan Synáček <jsynacek@redhat.com> - 20121221-3
fb0f9b
- Harden the package
fb0f9b
fb0f9b
* Fri Feb 01 2013 Jan Synáček <jsynacek@redhat.com> - 20121221-2
fb0f9b
- Always use posix locale when reading -i (#905840)
fb0f9b
- Set correct ninfod capabilities
fb0f9b
fb0f9b
* Mon Jan 07 2013 Jan Synáček <jsynacek@redhat.com> - 20121221-1
fb0f9b
- Update to iputils-s20121207 (#890397) and remove unnecessary patches
fb0f9b
fb0f9b
* Fri Dec 07 2012 Jan Synáček <jsynacek@redhat.com> - 20121207-1
fb0f9b
- Update to iputils-s20121207 (#884983) - fixes a ping segfault introduced
fb0f9b
  by the previous update
fb0f9b
- Update ninfod-minor patch
fb0f9b
- Renumber patches
fb0f9b
- Fix -F switch (flowlabel patch)
fb0f9b
fb0f9b
* Thu Dec 06 2012 Jan Synáček <jsynacek@redhat.com> - 20121205-1
fb0f9b
- Update to iputils-s20121205 (#884436) and remove unnecessary patches
fb0f9b
fb0f9b
* Thu Dec 06 2012 Jan Synáček <jsynacek@redhat.com> - 20121125-3
fb0f9b
- Package ninfod (#877530)
fb0f9b
- Update systemd requirements
fb0f9b
fb0f9b
* Mon Nov 26 2012 Jan Synáček <jsynacek@redhat.com> - 20121125-2
fb0f9b
- Comment patches and cleanup
fb0f9b
- Update ifaddrs patch
fb0f9b
- Call usage() before limiting capabilities
fb0f9b
- Correct ifaddrs patch
fb0f9b
- Drop corr_type patch (gcc 4.4 build hack)
fb0f9b
- Fix missing end tags in sgml documentation
fb0f9b
fb0f9b
* Mon Nov 26 2012 Jan Synáček <jsynacek@redhat.com> - 20121125-1
fb0f9b
- Update to iputils-s20121125 (#879952)
fb0f9b
fb0f9b
* Mon Nov 26 2012 Jan Synáček <jsynacek@redhat.com> - 20121121-2
fb0f9b
- Re-fix arping's default device search logic (#879807)
fb0f9b
fb0f9b
* Thu Nov 22 2012 Jan Synáček <jsynacek@redhat.com> - 20121121-1
fb0f9b
- Update to iputils-s20121121, drop unnecessary patches
fb0f9b
- Add capabilities to clockdiff and arping
fb0f9b
- Renumber patches
fb0f9b
- Fix arping's default device search logic
fb0f9b
fb0f9b
* Mon Nov 19 2012 Jan Synáček <jsynacek@redhat.com> - 20121112-2
fb0f9b
- Update License field
fb0f9b
fb0f9b
* Tue Nov 13 2012 Jan Synáček <jsynacek@redhat.com> - 20121112-1
fb0f9b
- Update to iputils-s20121112 (#875767)
fb0f9b
  + drop unnecessary patches
fb0f9b
  + update patches
fb0f9b
  + wrap SO_BINDTODEVICE with the correct capability
fb0f9b
  + fix incorrect free (hits when -lidn is used)
fb0f9b
fb0f9b
* Thu Nov 08 2012 Jan Synáček <jsynacek@redhat.com> - 20121106-2
fb0f9b
- Update ifenslave tarball (#859182)
fb0f9b
fb0f9b
* Tue Nov 06 2012 Jan Synáček <jsynacek@redhat.com> - 20121106-1
fb0f9b
- Update to iputils-s20121106 (#873571) and update patches
fb0f9b
fb0f9b
* Mon Oct 15 2012 Jan Synáček <jsynacek@redhat.com> - 20121011-1
fb0f9b
- Update to iputils-s20121011
fb0f9b
  + drop unnecessary patches
fb0f9b
  + update patches
fb0f9b
  + improve spec
fb0f9b
fb0f9b
* Wed Aug 22 2012 Jan Synáček <jsynacek@redhat.com> - 20101006-18
fb0f9b
- Improve spec for fedora
fb0f9b
- Add systemd-rpm macros (#850167)
fb0f9b
fb0f9b
* Mon Jul 23 2012 Jan Synáček <jsynacek@redhat.com> 20101006-17
fb0f9b
- Minor update: capabilities patch
fb0f9b
fb0f9b
* Fri Jul 20 2012 Jan Synáček <jsynacek@redhat.com> 20101006-16
fb0f9b
- Make fedora-review friendly
fb0f9b
fb0f9b
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 20101006-16
fb0f9b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
fb0f9b
fb0f9b
* Mon Jun 25 2012 Jan Synáček <jsynacek@redhat.com> 20101006-15
fb0f9b
- Ping fixes:
fb0f9b
  + enable marking packets when the correct capabilities are set (#802197)
fb0f9b
  + integer overflow (#834661)
fb0f9b
  + Fallback to numeric addresses while exiting (#834661)
fb0f9b
fb0f9b
* Wed Jan 25 2012 Harald Hoyer <harald@redhat.com> 20101006-14
fb0f9b
- install everything in /usr
fb0f9b
  https://fedoraproject.org/wiki/Features/UsrMove
fb0f9b
fb0f9b
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 20101006-13
fb0f9b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
fb0f9b
fb0f9b
* Thu Nov 24 2011 Jiri Skala <jskala@redhat.com> - 20101006-12
fb0f9b
- fixes #756439 - ping Record Route report incorrect (same route)
fb0f9b
fb0f9b
* Thu Nov 10 2011 Jiri Skala <jskala@redhat.com> - 20101006-11
fb0f9b
- fixes #752397 - arping uses eth0 as default interface
fb0f9b
fb0f9b
* Mon Aug 01 2011 Jiri Skala <jskala@redhat.com> - 20101006-10
fb0f9b
- rebuild for libcap
fb0f9b
fb0f9b
* Mon Jun 27 2011 Jiri Skala <jskala@redhat.com> - 20101006-9
fb0f9b
- fixes #697532 - The SysV initscript should be packaged into subpackage
fb0f9b
fb0f9b
* Tue Mar 29 2011 Jiri Skala <jskala@redhat.com> - 20101006-8
fb0f9b
- fixes #663734 - ping/ping6 man page fixes
fb0f9b
- fixes #673831 - tracepath/tracepath6 manpage fixes
fb0f9b
fb0f9b
* Wed Feb 09 2011 Jiri Skala <jskala@redhat.com> - 20101006-7
fb0f9b
- fixes build errors due to unused variables
fb0f9b
fb0f9b
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 20101006-6
fb0f9b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
fb0f9b
fb0f9b
* Wed Jan 19 2011 Jiri Skala <jskala@redhat.com> - 20101006-5
fb0f9b
- fixes #670380 - added /etc/sysconfig/rdisc, modified initscript
fb0f9b
- initscript moved to git
fb0f9b
fb0f9b
* Wed Dec 15 2010 Jiri Skala <jskala@redhat.com> - 20101006-4
fb0f9b
- fixes #662720 - Providing native systemd file
fb0f9b
- freeing memory when capabilities are dropped
fb0f9b
fb0f9b
* Mon Nov 08 2010 Jiri Skala <jskala@redhat.com> - 20101006-3
fb0f9b
- applied patch dropping capabilities of Ludwig Nussel
fb0f9b
- fixes building ping, pinpg6 with -pie option
fb0f9b
- moves most CFLAGS options from spec to Makefile
fb0f9b
fb0f9b
* Wed Oct 27 2010 Jiri Skala <jskala@redhat.com> - 20101006-2
fb0f9b
- fixes #646444 - Replace SETUID in spec file with the correct file capabilities
fb0f9b
fb0f9b
* Mon Oct 11 2010 Jiri Skala <jskala@redhat.com> - 20101006-1
fb0f9b
- update to latest upstream
fb0f9b
fb0f9b
* Tue Jul 13 2010 Jiri Skala <jskala@redhat.com> - 20100418-3
fb0f9b
- applied patch preventing ping against dos attack
fb0f9b
fb0f9b
* Wed May 19 2010 Jiri Skala <jskala@redhat.com> - 20100418-2
fb0f9b
- fixes #593641 - update bonding files (updated ifenslave tarball)
fb0f9b
fb0f9b
* Tue Apr 20 2010 Jiri Skala <jskala@redhat.com> - 20100418-1
fb0f9b
- update to latest upstream
fb0f9b
- enables flowlabel feature (-F option)
fb0f9b
fb0f9b
* Fri Mar 05 2010 Jiri Skala <jskala@redhat.com> - 20071127-10
fb0f9b
- fixes #557308 - arping ignores the deadline option
fb0f9b
fb0f9b
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 20071127-9
fb0f9b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
fb0f9b
fb0f9b
* Wed Feb 25 2009 Jiri Skala <jskala@redhat.com> - 20071127-8
fb0f9b
- remake type conversions to gcc4.4 requirements
fb0f9b
fb0f9b
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 20071127-7
fb0f9b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
fb0f9b
fb0f9b
* Fri Sep 26 2008 Jiri Skala <jskala@redhat.com> - 20071127-6
fb0f9b
- #455713 not accepted - suid is back
fb0f9b
fb0f9b
* Fri Aug 15 2008 Jiri Skala <jskala@redhat.com> - 20071127-5
fb0f9b
- removed a dependency on libsysfs library in arping
fb0f9b
fb0f9b
* Wed Aug 06 2008 Jiri Skala <jskala@redhat.com> - 20071127-4
fb0f9b
- Resolves: #455713 remove suid from ping
fb0f9b
- corrected typing error in man
fb0f9b
fb0f9b
* Tue Jun 03 2008 Martin Nagy <mnagy@redhat.com> - 20071127-3
fb0f9b
- major patch cleanup so it will be easier to get patches upstream
fb0f9b
- fix for #68212, previous fix actually didn't work for ping6
fb0f9b
- renewed the ia64 align patches
fb0f9b
- update README.bonding
fb0f9b
- clear up the code from warnings
fb0f9b
- spec file cleanup
fb0f9b
fb0f9b
* Tue Mar 25 2008 Martin Nagy <mnagy@redhat.com> - 20071127-2
fb0f9b
- fix inconsistent behaviour of ping (#360881)
fb0f9b
fb0f9b
* Mon Feb 25 2008 Martin Nagy <mnagy@redhat.com> - 20071127-1
fb0f9b
- update to new upstream version
fb0f9b
fb0f9b
* Mon Feb 18 2008 Martin Nagy <mnagy@redhat.com> - 20070202-9
fb0f9b
- rebuild
fb0f9b
fb0f9b
* Mon Feb 18 2008 Martin Nagy <mnagy@redhat.com> - 20070202-8
fb0f9b
- correctly fix the -w option and return code of arping (#387881)
fb0f9b
fb0f9b
* Fri Feb 01 2008 Martin Nagy <mnagy@redhat.com> - 20070202-7
fb0f9b
- fix -Q option of ping6 (#213544)
fb0f9b
fb0f9b
* Mon Jan 14 2008 Martin Nagy <mnagy@redhat.com> - 20070202-6
fb0f9b
- fix absolute symlinks and character encoding for RELNOTES (#225909)
fb0f9b
- preserve file timestamps (#225909)
fb0f9b
- use %%{?_smp_mflags} (#225909)
fb0f9b
- fix service rdisc stop removing of lock file
fb0f9b
fb0f9b
* Fri Sep 14 2007 Martin Bacovsky <mbacovsk@redhat.com> - 20070202-5
fb0f9b
- rebuild
fb0f9b
fb0f9b
* Fri Aug  3 2007 Martin Bacovsky <mbacovsk@redhat.com> - 20070202-4
fb0f9b
- resolves: #236725: ping does not work for subsecond intervals for ordinary user
fb0f9b
- resolves: #243197: RFE: Please sync ifenslave with current kernel
fb0f9b
- resolves: #246954: Initscript Review
fb0f9b
- resolves: #251124: can't build rdisc - OPEN_MAX undeclared
fb0f9b
fb0f9b
* Fri Apr  6 2007 Martin Bacovsky <mbacovsk@redhat.com> - 20070202-3
fb0f9b
- resolves: #235374: Update of iputils starts rdisc, breaking connectivity 
fb0f9b
fb0f9b
* Tue Mar 27 2007 Martin Bacovsky <mbacovsk@redhat.com> - 20070202-2
fb0f9b
- Resolves: #234060: [PATCH] IDN (umlaut domains) support for ping and ping6
fb0f9b
  patch provided by Robert Scheck <redhat@linuxnetz.de>
fb0f9b
fb0f9b
* Thu Mar 15 2007 Martin Bacovsky <mbacovsk@redhat.com> - 20070202-1
fb0f9b
- upgarde to new upstream iputils-s20070202
fb0f9b
- Resolves: #229995
fb0f9b
- Resolves: #225909 - Merge Review: iputils
fb0f9b
- patches revision
fb0f9b
fb0f9b
* Thu Feb 22 2007 Martin Bacovsky <mbacovsk@redhat.com>- 20020927-42
fb0f9b
- Resolves: #218706 - now defines the destination address along RFC3484
fb0f9b
- Resolves: #229630 - ifenslave(8) man page added
fb0f9b
- Resolves: #213716 - arping doesn't work on InfiniBand ipoib interfaces
fb0f9b
 
fb0f9b
* Wed Sep 13 2006 Radek Vokal <rvokal@redhat.com> - 20020927-41
fb0f9b
- new ifenslave/bonding documentation
fb0f9b
fb0f9b
* Mon Aug 21 2006 Martin Bacovsky <mbacovsk@redhat.com> - 20020927-40 
fb0f9b
- tracepath doesn't continue past destination host (#174032) 
fb0f9b
  previous patch replaced by new one provided by <mildew@gmail.com>
fb0f9b
  option -c added
fb0f9b
fb0f9b
* Mon Jul 17 2006 Radek Vokal <rvokal@redhat.com> - 20020927-39
fb0f9b
- rebuilt
fb0f9b
fb0f9b
* Mon Jul 10 2006 Radek Vokal <rvokal@redhat.com> - 20020927-38
fb0f9b
- tracepath doesn't continue past destination host (#174032) <mildew@gmail.com>
fb0f9b
fb0f9b
* Wed Mar 29 2006 Radek Vokál <rvokal@redhat.com> - 20020927-37
fb0f9b
- fix ifenslave, shows interface addresses
fb0f9b
- add RPM_OPT_FLAGS to ifenslave
fb0f9b
 
fb0f9b
* Sun Mar 12 2006 Radek Vokál <rvokal@redhat.com> - 20020927-36
fb0f9b
- fix ifenslave man page (#185223)
fb0f9b
fb0f9b
* Fri Feb 24 2006 Radek Vokál <rvokal@redhat.com> - 20020927-35
fb0f9b
- add PreReq: chkconfig (#182799,#182798)
fb0f9b
fb0f9b
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 20020927-34.2
fb0f9b
- bump again for double-long bug on ppc(64)
fb0f9b
fb0f9b
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 20020927-34.1
fb0f9b
- rebuilt for new gcc4.1 snapshot and glibc changes
fb0f9b
fb0f9b
* Mon Feb 06 2006 Radek Vokál <rvokal@redhat.com> 20020927-34
fb0f9b
- ping clean-up, added new ICMP warning messages
fb0f9b
fb0f9b
* Wed Jan 25 2006 Radek Vokál <rvokal@redhat.com> 20020927-33
fb0f9b
- gcc patch, warnings cleaned-up
fb0f9b
fb0f9b
* Tue Dec 13 2005 Radek Vokal <rvokal@redhat.com> 20020927-32
fb0f9b
- fix HOPLIMIT option for setsockopt() (#175471)
fb0f9b
fb0f9b
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
fb0f9b
- rebuilt
fb0f9b
fb0f9b
* Mon Dec 05 2005 Radek Vokal <rvokal@redhat.com> 20020927-31
fb0f9b
- ifenslave.8 from debian.org
fb0f9b
- separate ifenslave to its own tarball
fb0f9b
fb0f9b
* Tue Nov 08 2005 Radek Vokal <rvokal@redhat.com> 20020927-30
fb0f9b
- don't ship traceroute6, now part of traceroute package
fb0f9b
fb0f9b
* Wed Oct 05 2005 Radek Vokal <rvokal@redhat.com> 20020927-29
fb0f9b
- add ping6 and tracepath6 manpages, fix attributes. 
fb0f9b
fb0f9b
* Fri Sep 30 2005 Radek Vokal <rvokal@redhat.com> 20020927-28
fb0f9b
- memset structure before using it (#168166)
fb0f9b
fb0f9b
* Mon Sep 26 2005 Radek Vokal <rvokal@redhat.com> 20020927-27
fb0f9b
- fixed ping -f, flooding works again (#134859,#169141)
fb0f9b
fb0f9b
* Thu Sep 08 2005 Radek Vokal <rvokal@redhat.com> 20020927-26
fb0f9b
- tracepath6 and tracepath fix, use getaddrinfo instead of gethostbyname(2) 
fb0f9b
  (#100778,#167735)
fb0f9b
fb0f9b
* Fri Aug 12 2005 Radek Vokal <rvokal@redhat.com> 20020927-25
fb0f9b
- fixed arping timeout (#165715)
fb0f9b
fb0f9b
* Mon Jul 18 2005 Radek Vokal <rvokal@redhat.com> 20020927-24
fb0f9b
- fixed arping buffer overflow (#163383)
fb0f9b
fb0f9b
* Fri May 27 2005 Radek Vokal <rvokal@redhat.com> 20020927-23
fb0f9b
- fixed un-initialized "device" (#158914)
fb0f9b
fb0f9b
* Thu Apr 07 2005 Radek Vokal <rvokal@redhat.com> 20020927-22
fb0f9b
- don't start rdisc as default (#154075)
fb0f9b
fb0f9b
* Tue Apr 05 2005 Radek Vokal <rvokal@redhat.com> 20020927-21
fb0f9b
- rdisc init script added (#151614)
fb0f9b
fb0f9b
* Fri Mar 04 2005 Radek Vokal <rvokal@redhat.com> 20020927-20
fb0f9b
- arping fix for infiniband (#150156)
fb0f9b
fb0f9b
* Tue Dec 07 2004 Radek Vokal <rvokal@redhat.com> 20020927-19
fb0f9b
- return values fixed - patch from suse.de
fb0f9b
fb0f9b
* Mon Oct 18 2004 Radek Vokal <rvokal@redhat.com>
fb0f9b
- ifenslave.c and README.bonding updated from kernel-2.6.8-1.521 (#136059)
fb0f9b
fb0f9b
* Mon Oct 11 2004 Radek Vokal <rvokal@redhat.com>
fb0f9b
- spec file updated, source fixed (#135193)
fb0f9b
fb0f9b
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
fb0f9b
- rebuilt
fb0f9b
fb0f9b
* Wed May 12 2004 Phil Knirsch <pknirsch@redhat.com> 20020927-15
fb0f9b
- Updated rh patch to enable PIE build of binaries.
fb0f9b
fb0f9b
* Thu Apr 22 2004 Phil Knirsch <pknirsch@redhat.com> 20020927-14
fb0f9b
- Fixed bug with wrong return code check of inet_pton() in traceroute6 (#100684)
fb0f9b
fb0f9b
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
fb0f9b
- rebuilt
fb0f9b
fb0f9b
* Thu Oct 02 2003 Phil Knirsch <pknirsch@redhat.com> 20020927-12
fb0f9b
- Fixed unaligned access problem on ia64 (#101417)
fb0f9b
fb0f9b
* Wed Sep 10 2003 Phil Knirsch <pknirsch@redhat.com> 20020927-11
fb0f9b
- Don't use own headers, use glibc and kernheaders.
fb0f9b
fb0f9b
* Thu Sep 04 2003 Bill Nottingham <notting@redhat.com> 20020927-10
fb0f9b
- fix build with new glibc-kernheaders
fb0f9b
fb0f9b
* Wed Sep 03 2003 Phil Knirsch <pknirsch@redhat.com> 20020927-9.1
fb0f9b
- rebuilt
fb0f9b
fb0f9b
* Wed Sep 03 2003 Phil Knirsch <pknirsch@redhat.com> 20020927-9
fb0f9b
- Start icmp_seq from 0 instead of 1 (Conform with debian and Solaris #100609).
fb0f9b
fb0f9b
* Thu Jul 31 2003 Phil Knirsch <pknirsch@redhat.com> 20020927-8
fb0f9b
- One more update to ifenslave.c
fb0f9b
fb0f9b
* Mon Jun 16 2003 Phil Knirsch <pknirsch@redhat.com> 20020927-7
fb0f9b
- Updated ifenslave.c and README.bonding to latest version.
fb0f9b
fb0f9b
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
fb0f9b
- rebuilt
fb0f9b
fb0f9b
* Thu May 15 2003 Phil Knirsch <pknirsch@redhat.com> 20020927-5
fb0f9b
- Bumped release and rebuilt
fb0f9b
fb0f9b
* Thu May 15 2003 Phil Knirsch <pknirsch@redhat.com> 20020927-4
fb0f9b
- Fixed DNS lookup problems (#68212).
fb0f9b
- Added warning if binding problem failed on subinterface (#81640).
fb0f9b
fb0f9b
* Tue May 13 2003 Phil Knirsch <pknirsch@redhat.com> 20020927-3
fb0f9b
- Removed bonding tarball and replaced it with ifenslave.c and README
fb0f9b
- FHS compliance for all tools, now to be found in /bin with compat symlinks to
fb0f9b
  old places.
fb0f9b
fb0f9b
* Wed Jan 22 2003 Tim Powers <timp@redhat.com> 20020927-2
fb0f9b
- rebuilt
fb0f9b
fb0f9b
* Fri Nov 29 2002 Phil Knirsch <pknirsch@redhat.com> 20020927-1
fb0f9b
- Updated to latest upstream version.
fb0f9b
fb0f9b
* Fri Jun 21 2002 Tim Powers <timp@redhat.com> 20020124-8
fb0f9b
- automated rebuild
fb0f9b
fb0f9b
* Tue Jun 18 2002 Phil Knirsch <pknirsch@redhat.com> 20020124-7
fb0f9b
- Added new BuildPreReqs for docbook-utils and perl-SGMLSpm (#66661)
fb0f9b
- Fixed ipv6 error printing problem (#66659).
fb0f9b
fb0f9b
* Sun May 26 2002 Tim Powers <timp@redhat.com>
fb0f9b
- automated rebuild
fb0f9b
fb0f9b
* Tue May 21 2002 Phil Knirsch <pknirsch@redhat.com>
fb0f9b
- Added a patch to activate the rdisc server (#64270).
fb0f9b
- Display the countermeasures warning only in verbose (#55236)
fb0f9b
fb0f9b
* Thu Apr 18 2002 Bill Nottingham <notting@redhat.com>
fb0f9b
- quit trying to build HTML versions of the man pages
fb0f9b
fb0f9b
* Thu Mar 14 2002 Phil Knirsch <pknirsch@redhat.com>
fb0f9b
- Added fix by Tom "spot" Callaway to fix buffer overflow problems in stats.
fb0f9b
fb0f9b
* Wed Feb 27 2002 Phil Knirsch <pknirsch@redhat.com>
fb0f9b
- Update to iputils-ss020124.
fb0f9b
fb0f9b
* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
fb0f9b
- automated rebuild
fb0f9b
fb0f9b
* Mon Aug 27 2001 Philipp Knirsch <pknirsch@redhat.de> 20001110-6
fb0f9b
- Fixed buffer overflow problem in traceroute6.c (#51135)
fb0f9b
fb0f9b
* Mon Jul 02 2001 Philipp Knirsch <pknirsch@redhat.de>
fb0f9b
- Made ping6 and traceroute6 setuid (safe as they drop it VERY early) (#46769)
fb0f9b
fb0f9b
* Thu Jun 28 2001 Philipp Knirsch <pknirsch@redhat.de>
fb0f9b
- Fixed ping statistics overflow bug (#43801)
fb0f9b
fb0f9b
* Tue Jun 26 2001 Philipp Knirsch <pknirsch@redhat.de>
fb0f9b
- Fixed a bunch of compiler warnings (#37131)
fb0f9b
- Fixed wrong exit code for no packets and deadline (#40323)
fb0f9b
- Moved arping to /sbin from /usr/sbin due to ifup call (#45785). Symlink from
fb0f9b
  /usr/sbin/ provided for backwards compatibility.
fb0f9b
fb0f9b
* Mon Apr 30 2001 Preston Brown <pbrown@redhat.com>
fb0f9b
- install in.rdisc.8c as rdisc.8
fb0f9b
fb0f9b
* Tue Jan 16 2001 Jeff Johnson <jbj@redhat.com>
fb0f9b
- update to ss001110
fb0f9b
- doco fixes (#23844).
fb0f9b
fb0f9b
* Sun Oct  8 2000 Jeff Johnson <jbj@redhat.com>
fb0f9b
- update to ss001007.
fb0f9b
fb0f9b
* Tue Aug  8 2000 Tim Waugh <twaugh@redhat.com>
fb0f9b
- fix spelling mistake (#15714).
fb0f9b
fb0f9b
* Tue Aug  8 2000 Tim Waugh <twaugh@redhat.com>
fb0f9b
- turn on -U on machines without TSC (#15223).
fb0f9b
fb0f9b
* Tue Aug  1 2000 Jeff Johnson <jbj@redhat.com>
fb0f9b
- better doco patch (#15050).
fb0f9b
fb0f9b
* Tue Jul 25 2000 Jakub Jelinek <jakub@redhat.com>
fb0f9b
- fix include-glibc/ to work with new glibc 2.2 resolver headers
fb0f9b
fb0f9b
* Thu Jul 13 2000 Prospector <bugzilla@redhat.com>
fb0f9b
- automatic rebuild
fb0f9b
fb0f9b
* Sun Jun 18 2000 Jeff Johnson <jbj@redhat.com>
fb0f9b
- FHS packaging.
fb0f9b
- update to ss000418.
fb0f9b
- perform reverse DNS lookup only once for same input.
fb0f9b
fb0f9b
* Sun Mar  5 2000 Jeff Johnson <jbj@redhat.com>
fb0f9b
- include README.ifenslave doco.
fb0f9b
- "ping -i N" was broke for N >= 3 (#9929).
fb0f9b
- update to ss000121:
fb0f9b
-- clockdiff: preserve raw socket errno.
fb0f9b
-- ping: change error exit code to 1 (used to be 92,93, ...)
fb0f9b
-- ping,ping6: if -w specified, transmit until -c limit is reached.
fb0f9b
-- ping,ping6: exit code non-zero if some packets not received within deadline.
fb0f9b
fb0f9b
* Tue Feb 22 2000 Jeff Johnson <jbj@redhat.com>
fb0f9b
- man page corrections (#9690).
fb0f9b
fb0f9b
* Wed Feb  9 2000 Jeff Johnson <jbj@jbj.org>
fb0f9b
- add ifenslave.
fb0f9b
fb0f9b
* Thu Feb  3 2000 Elliot Lee <sopwith@redhat.com>
fb0f9b
- List /usr/sbin/rdisc in %%files list.
fb0f9b
fb0f9b
* Thu Jan 27 2000 Jeff Johnson <jbj@redhat.com>
fb0f9b
- add remaining binaries.
fb0f9b
- casts to remove compilation warnings.
fb0f9b
- terminate if -w deadline is reached exactly (#8724).
fb0f9b
fb0f9b
* Fri Dec 24 1999 Jeff Johnson <jbj@redhat.com>
fb0f9b
- create (only ping for now, traceroute et al soon).