Blame SPECS/strace.spec

d4bfbf
%{?scl:%{?scl_package:%scl_package strace}}
d4bfbf
d4bfbf
Summary: Tracks and displays system calls associated with a running process
d4bfbf
Name: %{?scl_prefix}strace
d4bfbf
Version: 4.24
d4bfbf
Release: 4%{?dist}
d4bfbf
License: BSD
d4bfbf
Group: Development/Debuggers
d4bfbf
URL: https://strace.io
d4bfbf
Source: https://strace.io/files/%{version}/strace-%{version}.tar.xz
d4bfbf
d4bfbf
Patch0: strace-provide-O_TMPFILE-fallback-definition.patch
d4bfbf
Patch1: strace-rhbz1610774-0000-strace.c-introduce-struct-tcb_wait_data.patch
d4bfbf
Patch2: strace-rhbz1610774-0001-tests-check-tracing-of-looping-threads.patch
d4bfbf
Patch3: strace-rhbz1610774-0002-Add-a-generic-list-implementation.patch
d4bfbf
Patch4: strace-rhbz1610774-0003-Implement-queueing-of-threads-before-dispatching-the.patch
d4bfbf
d4bfbf
%define alternatives_cmd %{!?scl:%{_sbindir}}%{?scl:%{_root_sbindir}}/alternatives
d4bfbf
%define alternatives_cmdline %{alternatives_cmd}%{?scl: --altdir %{_sysconfdir}/alternatives --admindir %{_scl_root}/var/lib/alternatives}
d4bfbf
d4bfbf
BuildRequires: libacl-devel, time
d4bfbf
%{?scl:Requires:%scl_runtime}
d4bfbf
d4bfbf
BuildRequires: gcc gzip
d4bfbf
d4bfbf
# Install Bluetooth headers for AF_BLUETOOTH sockets decoding.
d4bfbf
%if 0%{?fedora} >= 18 || 0%{?centos} >= 8 || 0%{?rhel} >= 8 || 0%{?suse_version} >= 1200
d4bfbf
BuildRequires: pkgconfig(bluez)
d4bfbf
%endif
d4bfbf
d4bfbf
BuildRequires: %{?scl_prefix}elfutils-devel, %{?scl_prefix}binutils-devel
d4bfbf
%{?!buildroot:BuildRoot: %_tmppath/buildroot-%name-%version-%release}
d4bfbf
d4bfbf
# OBS compatibility
d4bfbf
%{?!buildroot:BuildRoot: %_tmppath/buildroot-%name-%version-%release}
d4bfbf
%define maybe_use_defattr %{?suse_version:%%defattr(-,root,root)}
d4bfbf
d4bfbf
%description
d4bfbf
The strace program intercepts and records the system calls called and
d4bfbf
received by a running process.  Strace can print a record of each
d4bfbf
system call, its arguments and its return value.  Strace is useful for
d4bfbf
diagnosing problems and debugging, as well as for instructional
d4bfbf
purposes.
d4bfbf
d4bfbf
Install strace if you need a tool to track the system calls made and
d4bfbf
received by a process.
d4bfbf
d4bfbf
%prep
d4bfbf
%setup -q -n strace-%{version}
d4bfbf
d4bfbf
%patch0 -p1
d4bfbf
%patch1 -p1
d4bfbf
%patch2 -p1
d4bfbf
%patch3 -p1
d4bfbf
%patch4 -p1
d4bfbf
d4bfbf
chmod a+x tests/*.test
d4bfbf
d4bfbf
echo -n %version-%release > .tarball-version
d4bfbf
echo -n 2018 > .year
d4bfbf
echo -n 2018-07-07 > .strace.1.in.date
d4bfbf
d4bfbf
%build
d4bfbf
echo 'BEGIN OF BUILD ENVIRONMENT INFORMATION'
d4bfbf
uname -a |head -1
d4bfbf
libc="$(ldd /bin/sh |sed -n 's|^[^/]*\(/[^ ]*/libc\.so[^ ]*\).*|\1|p' |head -1)"
d4bfbf
$libc |head -1
d4bfbf
file -L /bin/sh
d4bfbf
gcc --version |head -1
d4bfbf
ld --version |head -1
d4bfbf
kver="$(printf '%%s\n%%s\n' '#include <linux/version.h>' 'LINUX_VERSION_CODE' | gcc -E -P -)"
d4bfbf
printf 'kernel-headers %%s.%%s.%%s\n' $(($kver/65536)) $(($kver/256%%256)) $(($kver%%256))
d4bfbf
echo 'END OF BUILD ENVIRONMENT INFORMATION'
d4bfbf
d4bfbf
LDFLAGS="-L%{_libdir} -L%{_libdir}/elfutils"
d4bfbf
export LDLFAGS
d4bfbf
d4bfbf
# -DHAVE_S390_COMPAT_REGS is needed due to lack of v3.10-rc1~201^2~11
d4bfbf
CFLAGS="$RPM_OPT_FLAGS $LDFLAGS"
d4bfbf
# Removing explicit -m64 as it breaks mpers
d4bfbf
[ "x${CFLAGS#*-m64}" = "x${CFLAGS}" ] || CFLAGS=$(echo "$CFLAGS" | sed 's/-m64//g')
d4bfbf
export CFLAGS
d4bfbf
d4bfbf
CPPFLAGS="-I%{_includedir} %{optflags}"
d4bfbf
# Removing explicit -m64 as it breaks mpers
d4bfbf
[ "x${CPPFLAGS#*-m64}" = "x${CPPFLAGS}" ] || CPPFLAGS=$(echo "$CPPFLAGS" | sed 's/-m64//g')
d4bfbf
export CPPFLAGS
d4bfbf
d4bfbf
CFLAGS_FOR_BUILD="$RPM_OPT_FLAGS"; export CFLAGS_FOR_BUILD
d4bfbf
# ac_cv_member_struct_perf_event_attr_context_switch=no is due to
d4bfbf
# https://bugzilla.redhat.com/show_bug.cgi?id=1404539
d4bfbf
%configure --enable-mpers=check ac_cv_member_struct_perf_event_attr_context_switch=no
d4bfbf
make %{?_smp_mflags}
d4bfbf
d4bfbf
%install
d4bfbf
make DESTDIR=%{buildroot} install
d4bfbf
d4bfbf
# remove unpackaged files from the buildroot
d4bfbf
rm -f %{buildroot}%{_bindir}/strace-graph
d4bfbf
d4bfbf
# some say uncompressed changelog files are too big
d4bfbf
for f in ChangeLog ChangeLog-CVS; do
d4bfbf
	gzip -9n < "$f" > "$f".gz &
d4bfbf
done
d4bfbf
wait
d4bfbf
d4bfbf
%check
d4bfbf
%{buildroot}%{_bindir}/strace -V
d4bfbf
# Temporary until we dig deeper into the failures
d4bfbf
%ifnarch s390x ppc64
d4bfbf
make %{?_smp_mflags} -k check VERBOSE=1 TIMEOUT_DURATION=1800
d4bfbf
echo 'BEGIN OF TEST SUITE INFORMATION'
d4bfbf
tail -n 99999 -- tests*/test-suite.log tests*/ksysent.log
d4bfbf
find tests* -type f -name '*.log' -print0 |
d4bfbf
	xargs -r0 grep -H '^KERNEL BUG:' -- ||:
d4bfbf
echo 'END OF TEST SUITE INFORMATION'
d4bfbf
%endif
d4bfbf
d4bfbf
%files
d4bfbf
%maybe_use_defattr
d4bfbf
%doc CREDITS ChangeLog.gz ChangeLog-CVS.gz COPYING NEWS README
d4bfbf
%{_bindir}/strace
d4bfbf
%{_bindir}/strace-log-merge
d4bfbf
%{_mandir}/man1/*
d4bfbf
d4bfbf
%changelog
d4bfbf
* Wed Sep 12 2018 Eugene Syromiatnikov <esyr@redhat.com> - 4.24-4
d4bfbf
- Add current version of the thread handling unfairness fix.
d4bfbf
- Resolves #1610774.
d4bfbf
d4bfbf
* Thu Aug 23 2018 Eugene Syromiatnikov <esyr@redhat.com> - 4.24-3
d4bfbf
- Provide a fallback definition for the O_TMPFILE flag.
d4bfbf
- Resolves #1609741.
d4bfbf
d4bfbf
* Tue Aug 14 2018 Eugene Syromiatnikov <esyr@redhat.com> - 4.24-2
d4bfbf
- Remove -DHAVE_S390_COMPAT_REGS=1 from CFLAGS.
d4bfbf
d4bfbf
* Tue Aug 14 2018 Eugene Syromiatnikov <esyr@redhat.com> - 4.24-1
d4bfbf
- Rebase to v4.24.
d4bfbf
d4bfbf
* Mon Aug 06 2018 Eugene Syromiatnikov <esyr@redhat.com> - 4.23-5
d4bfbf
- Provide open mode flags fallback definitions.
d4bfbf
- Resolves #1609741.
d4bfbf
d4bfbf
* Sun Aug 05 2018 Eugene Syromiatnikov <esyr@redhat.com> - 4.23-4
d4bfbf
- Enable stack unwinding using DTS version of libelfutils.
d4bfbf
d4bfbf
* Wed Jul 18 2018 Eugene Syromiatnikov <esyr@redhat.com> - 4.23-3
d4bfbf
- Add SCL-specific modifications in order to build for DTS 8.0.
d4bfbf
- Resolves #1602841.
d4bfbf
d4bfbf
* Mon Jun 18 2018 Eugene Syromiatnikov <esyr@redhat.com> - 4.23-2
d4bfbf
- Increase test timeout duration.
d4bfbf
d4bfbf
* Thu Jun 14 2018 Dmitry V. Levin <ldv@altlinux.org> - 4.23-1
d4bfbf
- v4.22 -> v4.23.
d4bfbf
- Enabled libdw backend for -k option (#1568647).
d4bfbf
d4bfbf
* Thu Apr 05 2018 Dmitry V. Levin <ldv@altlinux.org> - 4.22-1
d4bfbf
- v4.21 -> v4.22.
d4bfbf
d4bfbf
* Tue Feb 13 2018 Dmitry V. Levin <ldv@altlinux.org> - 4.21-1
d4bfbf
- v4.20 -> v4.21.
d4bfbf
d4bfbf
* Mon Nov 13 2017 Dmitry V. Levin <ldv@altlinux.org> - 4.20-1
d4bfbf
- v4.19 -> v4.20.
d4bfbf
d4bfbf
* Tue Sep 05 2017 Dmitry V. Levin <ldv@altlinux.org> - 4.19-1
d4bfbf
- v4.18 -> v4.19.
d4bfbf
d4bfbf
* Wed Jul 05 2017 Dmitry V. Levin <ldv@altlinux.org> - 4.18-1
d4bfbf
- v4.17 -> v4.18.
d4bfbf
d4bfbf
* Wed May 24 2017 Dmitry V. Levin <ldv@altlinux.org> - 4.17-1
d4bfbf
- v4.16 -> v4.17.
d4bfbf
d4bfbf
* Tue Feb 14 2017 Dmitry V. Levin <ldv@altlinux.org> - 4.16-1
d4bfbf
- v4.15 -> v4.16.
d4bfbf
d4bfbf
* Wed Dec 14 2016 Dmitry V. Levin <ldv@altlinux.org> - 4.15-1
d4bfbf
- v4.14-100-g622af42 -> v4.15.
d4bfbf
d4bfbf
* Wed Nov 16 2016 Dmitry V. Levin <ldv@altlinux.org> - 4.14.0.100.622a-1
d4bfbf
- v4.14 -> v4.14-100-g622af42:
d4bfbf
  + implemented syscall fault injection.
d4bfbf
d4bfbf
* Tue Oct 04 2016 Dmitry V. Levin <ldv@altlinux.org> - 4.14-1
d4bfbf
- v4.13 -> v4.14:
d4bfbf
  + added printing of the mode argument of open and openat syscalls
d4bfbf
    when O_TMPFILE flag is set (#1377846).
d4bfbf
d4bfbf
* Tue Jul 26 2016 Dmitry V. Levin <ldv@altlinux.org> - 4.13-1
d4bfbf
- v4.12 -> v4.13.
d4bfbf
d4bfbf
* Tue May 31 2016 Dmitry V. Levin <ldv@altlinux.org> - 4.12-1
d4bfbf
- v4.11-163-g972018f -> v4.12.
d4bfbf
d4bfbf
* Fri Feb 05 2016 Fedora Release Engineering <releng@fedoraproject.org> - 4.11.0.163.9720-2
d4bfbf
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
d4bfbf
d4bfbf
* Fri Jan 15 2016 Dmitry V. Levin <ldv@altlinux.org> - 4.11.0.163.9720-1
d4bfbf
- New upstream snapshot v4.11-163-g972018f:
d4bfbf
  + fixed decoding of syscalls unknown to the kernel on s390/s390x (#1298294).
d4bfbf
d4bfbf
* Wed Dec 23 2015 Dmitry V. Levin <ldv@altlinux.org> - 4.11-2
d4bfbf
- Enabled experimental -k option on x86_64 (#1170296).
d4bfbf
d4bfbf
* Mon Dec 21 2015 Dmitry V. Levin <ldv@altlinux.org> - 4.11-1
d4bfbf
- New upstream release:
d4bfbf
  + print nanoseconds along with seconds in stat family syscalls (#1251176).
d4bfbf
d4bfbf
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.10-3
d4bfbf
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
d4bfbf
d4bfbf
* Mon May 11 2015 Marcin Juszkiewicz <mjuszkiewicz@redhat.com> - 4.10-2
d4bfbf
- Backport set of upstream patches to get it buildable on AArch64
d4bfbf
d4bfbf
* Fri Mar 06 2015 Dmitry V. Levin <ldv@altlinux.org> - 4.10-1
d4bfbf
- New upstream release:
d4bfbf
  + enhanced ioctl decoding (#902788).
d4bfbf
d4bfbf
* Mon Nov 03 2014 Lubomir Rintel <lkundrak@v3.sk> - 4.9-3
d4bfbf
- Regenerate ioctl entries with proper kernel headers
d4bfbf
d4bfbf
* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.9-2
d4bfbf
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
d4bfbf
d4bfbf
* Fri Aug 15 2014 Dmitry V. Levin <ldv@altlinux.org> - 4.9-1
d4bfbf
- New upstream release:
d4bfbf
  + fixed build when <sys/ptrace.h> and <linux/ptrace.h> conflict (#993384);
d4bfbf
  + updated CLOCK_* constants (#1088455);
d4bfbf
  + enabled ppc64le support (#1122323);
d4bfbf
  + fixed attach to a process on ppc64le (#1129569).
d4bfbf
d4bfbf
* Fri Jul 25 2014 Dan Horák <dan[at]danny.cz> - 4.8-5
d4bfbf
- update for ppc64
d4bfbf
d4bfbf
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.8-4
d4bfbf
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
d4bfbf
d4bfbf
* Fri Dec  6 2013 Peter Robinson <pbrobinson@fedoraproject.org> 4.8-3
d4bfbf
- Fix FTBFS
d4bfbf
d4bfbf
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.8-2
d4bfbf
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
d4bfbf
d4bfbf
* Mon Jun 03 2013 Dmitry V. Levin <ldv@altlinux.org> - 4.8-1
d4bfbf
- New upstream release:
d4bfbf
  + fixed ERESTARTNOINTR leaking to userspace on ancient kernels (#659382);
d4bfbf
  + fixed decoding of *xattr syscalls (#885233);
d4bfbf
  + fixed handling of files with 64-bit inode numbers by 32-bit strace (#912790);
d4bfbf
  + added aarch64 support (#969858).
d4bfbf
d4bfbf
* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.7-3
d4bfbf
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
d4bfbf
d4bfbf
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.7-2
d4bfbf
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
d4bfbf
d4bfbf
* Wed May 02 2012 Dmitry V. Levin <ldv@altlinux.org> 4.7-1
d4bfbf
- New upstream release.
d4bfbf
  + implemented proper handling of real SIGTRAPs (#162774).
d4bfbf
d4bfbf
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.6-2
d4bfbf
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
d4bfbf
d4bfbf
* Mon Mar 14 2011 Dmitry V. Levin <ldv@altlinux.org> - 4.6-1
d4bfbf
- New upstream release.
d4bfbf
  + fixed a corner case in waitpid handling (#663547).
d4bfbf
d4bfbf
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.5.20-2
d4bfbf
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
d4bfbf
d4bfbf
* Tue Apr 13 2010 Roland McGrath <roland@redhat.com> - 4.5.20-1
d4bfbf
- New upstream release, work mostly by Andreas Schwab and Dmitry V. Levin.
d4bfbf
  + fixed potential stack buffer overflow in select decoder (#556678);
d4bfbf
  + fixed FTBFS (#539044).
d4bfbf
d4bfbf
* Wed Oct 21 2009 Roland McGrath <roland@redhat.com> - 4.5.19-1
d4bfbf
- New upstream release, work mostly by Dmitry V. Levin <ldv@altlinux.org>
d4bfbf
  + exit/kill strace with traced process exitcode/signal (#105371);
d4bfbf
  + fixed build on ARM EABI (#507576);
d4bfbf
  + fixed display of 32-bit argv array on 64-bit architectures (#519480);
d4bfbf
  + fixed display of 32-bit fcntl(F_SETLK) on 64-bit architectures (#471169);
d4bfbf
  + fixed several bugs in strings decoder, including potential heap
d4bfbf
    memory corruption (#470529, #478324, #511035).
d4bfbf
d4bfbf
* Thu Aug 28 2008 Roland McGrath <roland@redhat.com> - 4.5.18-1
d4bfbf
- build fix for newer kernel headers (#457291)
d4bfbf
- fix CLONE_VFORK handling (#455078)
d4bfbf
- Support new Linux/PPC system call subpage_prot and PROT_SAO flag.
d4bfbf
- In sigaction system call, display sa_flags value along with SIG_DFL/SIG_IGN.
d4bfbf
d4bfbf
* Mon Jul 21 2008 Roland McGrath <roland@redhat.com> - 4.5.17-1
d4bfbf
- handle O_CLOEXEC, MSG_CMSG_CLOEXEC (#365781)
d4bfbf
- fix biarch stat64 decoding (#222275)
d4bfbf
- fix spurious "..." in printing of environment strings (#358241)
d4bfbf
- improve prctl decoding (#364401)
d4bfbf
- fix hang wait on exited child with exited child (#354261)
d4bfbf
- fix biarch fork/vfork (-f) tracing (#447475)
d4bfbf
- fix biarch printing of negative argument kill (#430585)
d4bfbf
- fix biarch decoding of error return values (#447587)
d4bfbf
- fix -f tracing of CLONE_VFORK (#455078)
d4bfbf
- fix ia64 register clobberation in -f tracing (#453438)
d4bfbf
- print SO_NODEFER, SA_RESETHAND instead of SA_NOMASK, SA_ONESHOT (#455821)
d4bfbf
- fix futex argument decoding (#448628, #448629)
d4bfbf
d4bfbf
* Fri Aug  3 2007 Roland McGrath <roland@redhat.com> - 4.5.16-1
d4bfbf
- fix multithread issues (#240962, #240961, #247907)
d4bfbf
- fix spurious SIGSTOP on early interrupt (#240986)
d4bfbf
- fix utime for biarch (#247185)
d4bfbf
- fix -u error message (#247170)
d4bfbf
- better futex syscall printing (##241467)
d4bfbf
- fix argv/envp printing with small -s settings, and for biarch
d4bfbf
- new syscalls: getcpu, eventfd, timerfd, signalfd, epoll_pwait,
d4bfbf
  move_pages, utimensat
d4bfbf
d4bfbf
* Tue Jan 16 2007 Roland McGrath <roland@redhat.com> - 4.5.15-1
d4bfbf
- biarch fixes (#179740, #192193, #171626, #173050, #218433, #218043)
d4bfbf
- fix -ff -o behavior (#204950, #218435, #193808, #219423)
d4bfbf
- better quotactl printing (#118696)
d4bfbf
- *at, inotify*, pselect6, ppoll and unshare syscalls (#178633, #191275)
d4bfbf
- glibc-2.5 build fixes (#209856)
d4bfbf
- memory corruption fixes (#200621
d4bfbf
- fix race in child setup under -f (#180293)
d4bfbf
- show ipc key values in hex (#198179, #192182)
d4bfbf
- disallow -c with -ff (#187847)
d4bfbf
- Resolves: RHBZ #179740, RHBZ #192193, RHBZ #204950, RHBZ #218435
d4bfbf
- Resolves: RHBZ #193808, RHBZ #219423, RHBZ #171626, RHBZ #173050
d4bfbf
- Resolves: RHBZ #218433, RHBZ #218043, RHBZ #118696, RHBZ #178633
d4bfbf
- Resolves: RHBZ #191275, RHBZ #209856, RHBZ #200621, RHBZ #180293
d4bfbf
- Resolves: RHBZ #198179, RHBZ #198182, RHBZ #187847
d4bfbf
d4bfbf
* Mon Nov 20 2006 Jakub Jelinek <jakub@redhat.com> - 4.5.14-4
d4bfbf
- Fix ia64 syscall decoding (#206768)
d4bfbf
- Fix build with glibc-2.4.90-33 and up on all arches but ia64
d4bfbf
- Fix build against 2.6.18+ headers
d4bfbf
d4bfbf
* Tue Aug 22 2006 Roland McGrath <roland@redhat.com> - 4.5.14-3
d4bfbf
- Fix bogus decoding of syscalls >= 300 (#201462, #202620).
d4bfbf
d4bfbf
* Fri Jul 14 2006 Jesse Keating <jkeating@redhat.com> - 4.5.14-2
d4bfbf
- rebuild
d4bfbf
d4bfbf
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 4.5.14-1.2
d4bfbf
- bump again for long double bug on ppc{,64}
d4bfbf
d4bfbf
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 4.5.14-1.1
d4bfbf
- rebuilt for new gcc4.1 snapshot and glibc changes
d4bfbf
d4bfbf
* Mon Jan 16 2006 Roland McGrath <roland@redhat.com> - 4.5.14-1
d4bfbf
- Fix biarch decoding of socket syscalls (#174354).
d4bfbf
- Fix biarch -e support (#173986).
d4bfbf
- Accept numeric syscalls in -e (#174798).
d4bfbf
- Fix ipc syscall decoding (#164755).
d4bfbf
- Improve msgrcv printing (#164757).
d4bfbf
- Man page updates (#165375).
d4bfbf
- Improve mount syscall printing (#165377).
d4bfbf
- Correct printing of restarting syscalls (#165469).
d4bfbf
d4bfbf
* Wed Aug  3 2005 Roland McGrath <roland@redhat.com> - 4.5.13-1
d4bfbf
- Fix setsockopt decoding on 64-bit (#162449).
d4bfbf
- Fix typos in socket option name strings (#161578).
d4bfbf
- Display more IPV6 socket options by name (#162450).
d4bfbf
- Don't display inappropriate syscalls for -e trace=file (#159340).
d4bfbf
- New selector type -e trace=desc for file-descriptor using calls (#159400).
d4bfbf
- Fix 32-bit old_mmap syscall decoding on x86-64 (#162467, #164215).
d4bfbf
- Fix errors detaching from multithreaded process on interrupt (#161919).
d4bfbf
- Note 4.5.12 fix for crash handling bad signal numbers (#162739).
d4bfbf
d4bfbf
* Wed Jun  8 2005 Roland McGrath <roland@redhat.com> - 4.5.12-1
d4bfbf
- Fix known syscall recognition for IA32 processes on x86-64 (#158934).
d4bfbf
- Fix bad output for ptrace on x86-64 (#159787).
d4bfbf
- Fix potential buffer overruns (#151570, #159196).
d4bfbf
- Make some diagnostics more consistent (#159308).
d4bfbf
- Update PowerPC system calls.
d4bfbf
- Better printing for Linux aio system calls.
d4bfbf
- Don't truncate statfs64 fields to 32 bits in output (#158243).
d4bfbf
- Cosmetic code cleanups (#159688).
d4bfbf
d4bfbf
* Tue Mar 22 2005 Roland McGrath <roland@redhat.com> - 4.5.11-1
d4bfbf
- Build tweaks.
d4bfbf
- Note 4.5.10 select fix (#151570).
d4bfbf
d4bfbf
* Mon Mar 14 2005 Roland McGrath <roland@redhat.com> - 4.5.10-1
d4bfbf
- Fix select handling on nonstandard fd_set sizes.
d4bfbf
- Don't print errors for null file name pointers.
d4bfbf
- Fix initial execve output with -i (#143365).
d4bfbf
d4bfbf
* Fri Feb  4 2005 Roland McGrath <roland@redhat.com> - 4.5.9-2
d4bfbf
- update ia64 syscall list (#146245)
d4bfbf
- fix x86_64 syscall argument extraction for 32-bit processes (#146093)
d4bfbf
- fix -e signal=NAME parsing (#143362)
d4bfbf
- fix x86_64 exit_group syscall handling
d4bfbf
- improve socket ioctl printing (#138223)
d4bfbf
- code cleanups (#143369, #143370)
d4bfbf
- improve mount flags printing (#141932)
d4bfbf
- support symbolic printing of x86_64 arch_prctl parameters (#142667)
d4bfbf
- fix potential crash in getxattr printing
d4bfbf
d4bfbf
* Tue Oct 19 2004 Roland McGrath <roland@redhat.com> - 4.5.8-1
d4bfbf
- fix multithreaded exit handling (#132150, #135254)
d4bfbf
- fix ioctl name matching (#129808)
d4bfbf
- print RTC_* ioctl structure contents (#58606)
d4bfbf
- grok epoll_* syscalls (#134463)
d4bfbf
- grok new RLIMIT_* values (#133594)
d4bfbf
- print struct cmsghdr contents for sendmsg (#131689)
d4bfbf
- fix clock_* and timer_* argument output (#131420)
d4bfbf
d4bfbf
* Tue Aug 31 2004 Roland McGrath <roland@redhat.com> - 4.5.7-2
d4bfbf
- new upstream version, misc fixes and updates (#128091, #129166, #128391, #129378, #130965, #131177)
d4bfbf
d4bfbf
* Mon Jul 12 2004 Roland McGrath <roland@redhat.com> 4.5.6-1
d4bfbf
- new upstream version, updates ioctl lists (#127398), fixes quotactl (#127393), more ioctl decoding (#126917)
d4bfbf
d4bfbf
* Sun Jun 27 2004 Roland McGrath <roland@redhat.com> 4.5.5-1
d4bfbf
- new upstream version, fixes x86-64 biarch support (#126547)
d4bfbf
d4bfbf
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com> 4.5.4-2
d4bfbf
- rebuilt
d4bfbf
d4bfbf
* Thu Jun  3 2004 Roland McGrath <roland@redhat.com> 4.5.4-0.FC1
d4bfbf
- rebuilt for FC1 update
d4bfbf
d4bfbf
* Thu Jun  3 2004 Roland McGrath <roland@redhat.com> 4.5.4-1
d4bfbf
- new upstream version, more ioctls (#122257), minor fixes
d4bfbf
d4bfbf
* Fri Apr 16 2004 Roland McGrath <roland@redhat.com> 4.5.3-1
d4bfbf
- new upstream version, mq_* calls (#120701), -p vs NPTL (#120462), more fixes (#118694, #120541, #118685)
d4bfbf
d4bfbf
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com> 4.5.2-1.1
d4bfbf
- rebuilt
d4bfbf
d4bfbf
* Mon Mar  1 2004 Roland McGrath <roland@redhat.com> 4.5.2-1
d4bfbf
- new upstream version, sched_* calls (#116990), show core flag (#112117)
d4bfbf
d4bfbf
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
d4bfbf
- rebuilt
d4bfbf
d4bfbf
* Thu Nov 13 2003 Roland McGrath <roland@redhat.com> 4.5.1-1
d4bfbf
- new upstream version, more fixes (#108012, #105366, #105359, #105358)
d4bfbf
d4bfbf
* Tue Sep 30 2003 Roland McGrath <roland@redhat.com> 4.5-3
d4bfbf
- revert bogus s390 fix
d4bfbf
d4bfbf
* Thu Sep 25 2003 Roland McGrath <roland@redhat.com> 4.5-1.2.1AS
d4bfbf
- rebuilt for 2.1AS erratum
d4bfbf
d4bfbf
* Wed Sep 24 2003 Roland McGrath <roland@redhat.com> 4.5-2
d4bfbf
- rebuilt
d4bfbf
d4bfbf
* Wed Sep 24 2003 Roland McGrath <roland@redhat.com> 4.5-1
d4bfbf
- new upstream version, more fixes (#101499, #104365)
d4bfbf
d4bfbf
* Thu Jul 17 2003 Roland McGrath <roland@redhat.com> 4.4.99-2
d4bfbf
- rebuilt
d4bfbf
d4bfbf
* Thu Jul 17 2003 Roland McGrath <roland@redhat.com> 4.4.99-1
d4bfbf
- new upstream version, groks more new system calls, PF_INET6 sockets
d4bfbf
d4bfbf
* Tue Jun 10 2003 Roland McGrath <roland@redhat.com> 4.4.98-1
d4bfbf
- new upstream version, more fixes (#90754, #91085)
d4bfbf
d4bfbf
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
d4bfbf
- rebuilt
d4bfbf
d4bfbf
* Sun Mar 30 2003 Roland McGrath <roland@redhat.com> 4.4.96-1
d4bfbf
- new upstream version, handles yet more 2.5 syscalls, x86_64 & ia64 fixes
d4bfbf
d4bfbf
* Mon Feb 24 2003 Elliot Lee <sopwith@redhat.com> 4.4.95-2
d4bfbf
- rebuilt
d4bfbf
d4bfbf
* Mon Feb 24 2003 Roland McGrath <roland@redhat.com> 4.4.95-1
d4bfbf
- new upstream version, fixed getresuid/getresgid (#84959)
d4bfbf
d4bfbf
* Wed Feb 19 2003 Roland McGrath <roland@redhat.com> 4.4.94-1
d4bfbf
- new upstream version, new option -E to set environment variables (#82392)
d4bfbf
d4bfbf
* Wed Jan 22 2003 Tim Powers <timp@redhat.com> 4.4.93-2
d4bfbf
- rebuilt
d4bfbf
d4bfbf
* Tue Jan 21 2003 Roland McGrath <roland@redhat.com> 4.4.93-1
d4bfbf
- new upstream version, fixes ppc and s390 bugs, adds missing ptrace requests
d4bfbf
d4bfbf
* Fri Jan 10 2003 Roland McGrath <roland@redhat.com> 4.4.91-1
d4bfbf
- new upstream version, fixes -f on x86-64
d4bfbf
d4bfbf
* Fri Jan 10 2003 Roland McGrath <roland@redhat.com> 4.4.90-1
d4bfbf
- new upstream version, fixes all known bugs modulo ia64 and s390 issues
d4bfbf
d4bfbf
* Fri Jan 03 2003 Florian La Roche <Florian.LaRoche@redhat.de> 4.4-11
d4bfbf
- add further s390 patch from IBM
d4bfbf
d4bfbf
* Wed Nov 27 2002 Tim Powers <timp@redhat.com> 4.4-10
d4bfbf
- remove unpackaged files from the buildroot
d4bfbf
d4bfbf
* Mon Oct 07 2002 Phil Knirsch <pknirsch@redhat.com> 4.4-9.1
d4bfbf
- Added latest s390(x) patch.
d4bfbf
d4bfbf
* Fri Sep 06 2002 Karsten Hopp <karsten@redhat.de> 4.4-9
d4bfbf
- preliminary x86_64 support with an ugly patch to help
d4bfbf
  debugging. Needs cleanup!
d4bfbf
d4bfbf
* Mon Sep  2 2002 Jakub Jelinek <jakub@redhat.com> 4.4-8
d4bfbf
- newer version of the clone fixing patch (Roland McGrath)
d4bfbf
- aio syscalls for i386/ia64/ppc (Ben LaHaise)
d4bfbf
d4bfbf
* Wed Aug 28 2002 Jakub Jelinek <jakub@redhat.com> 4.4-7
d4bfbf
- fix strace -f (Roland McGrath, #68994)
d4bfbf
- handle ?et_thread_area, SA_RESTORER (Ulrich Drepper)
d4bfbf
d4bfbf
* Fri Jun 21 2002 Jakub Jelinek <jakub@redhat.com> 4.4-6
d4bfbf
- handle futexes, *xattr, sendfile64, etc. (Ulrich Drepper)
d4bfbf
- handle modify_ldt (#66894)
d4bfbf
d4bfbf
* Thu May 23 2002 Tim Powers <timp@redhat.com>
d4bfbf
- automated rebuild
d4bfbf
d4bfbf
* Tue Apr 16 2002 Jakub Jelinek <jakub@redhat.com> 4.4-4
d4bfbf
- fix for the last patch by Jeff Law (#62591)
d4bfbf
d4bfbf
* Mon Mar  4 2002 Preston Brown <pbrown@redhat.com> 4.4-3
d4bfbf
- integrate patch from Jeff Law to eliminate hang tracing threads
d4bfbf
d4bfbf
* Sat Feb 23 2002 Florian La Roche <Florian.LaRoche@redhat.de>
d4bfbf
- minor update from debian tar-ball
d4bfbf
d4bfbf
* Wed Jan 02 2002 Florian La Roche <Florian.LaRoche@redhat.de>
d4bfbf
- update to 4.4
d4bfbf
d4bfbf
* Sun Jul 22 2001 Florian La Roche <Florian.LaRoche@redhat.de>
d4bfbf
- disable s390 patches, they are already included
d4bfbf
d4bfbf
* Wed Jul 18 2001 Preston Brown <pbrown@redhat.com> 4.3-1
d4bfbf
- new upstream version.  Seems to have integrated most new syscalls
d4bfbf
- tracing threaded programs is now functional.
d4bfbf
d4bfbf
* Mon Jun 11 2001 Than Ngo <than@redhat.com>
d4bfbf
- port s390 patches from IBM
d4bfbf
d4bfbf
* Wed May 16 2001 Nalin Dahyabhai <nalin@redhat.com>
d4bfbf
- modify new syscall patch to allocate enough heap space in setgroups32()
d4bfbf
d4bfbf
* Wed Feb 14 2001 Jakub Jelinek <jakub@redhat.com>
d4bfbf
- #include <time.h> in addition to <sys/time.h>
d4bfbf
d4bfbf
* Fri Jan 26 2001 Karsten Hopp <karsten@redhat.com>
d4bfbf
- clean up conflicting patches. This happened only
d4bfbf
  when building on S390
d4bfbf
d4bfbf
* Fri Jan 19 2001 Bill Nottingham <notting@redhat.com>
d4bfbf
- update to CVS, reintegrate ia64 support
d4bfbf
d4bfbf
* Fri Dec  8 2000 Bernhard Rosenkraenzer <bero@redhat.com>
d4bfbf
- Get S/390 support into the normal package
d4bfbf
d4bfbf
* Sat Nov 18 2000 Florian La Roche <Florian.LaRoche@redhat.de>
d4bfbf
- added S/390 patch from IBM, adapting it to not conflict with
d4bfbf
  IA64 patch
d4bfbf
d4bfbf
* Sat Aug 19 2000 Jakub Jelinek <jakub@redhat.com>
d4bfbf
- doh, actually apply the 2.4 syscalls patch
d4bfbf
- make it compile with 2.4.0-test7-pre4+ headers, add
d4bfbf
  getdents64 and fcntl64
d4bfbf
d4bfbf
* Thu Aug  3 2000 Jakub Jelinek <jakub@redhat.com>
d4bfbf
- add a bunch of new 2.4 syscalls (#14036)
d4bfbf
d4bfbf
* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
d4bfbf
- automatic rebuild
d4bfbf
- excludearch ia64
d4bfbf
d4bfbf
* Fri Jun  2 2000 Matt Wilson <msw@redhat.com>
d4bfbf
- use buildinstall for FHS
d4bfbf
d4bfbf
* Wed May 24 2000 Jakub Jelinek <jakub@redhat.com>
d4bfbf
- make things compile on sparc
d4bfbf
- fix sigreturn on sparc
d4bfbf
d4bfbf
* Fri Mar 31 2000 Bill Nottingham <notting@redhat.com>
d4bfbf
- fix stat64 misdef (#10485)
d4bfbf
d4bfbf
* Tue Mar 21 2000 Michael K. Johnson <johnsonm@redhat.com>
d4bfbf
- added ia64 patch
d4bfbf
d4bfbf
* Thu Feb 03 2000 Cristian Gafton <gafton@redhat.com>
d4bfbf
- man pages are compressed
d4bfbf
- version 4.2 (why are we keeping all these patches around?)
d4bfbf
d4bfbf
* Sat Nov 27 1999 Jeff Johnson <jbj@redhat.com>
d4bfbf
- update to 4.1 (with sparc socketcall patch).
d4bfbf
d4bfbf
* Fri Nov 12 1999 Jakub Jelinek <jakub@redhat.com>
d4bfbf
- fix socketcall on sparc.
d4bfbf
d4bfbf
* Thu Sep 02 1999 Cristian Gafton <gafton@redhat.com>
d4bfbf
- fix KERN_SECURELVL compile problem
d4bfbf
d4bfbf
* Tue Aug 31 1999 Cristian Gafton <gafton@redhat.com>
d4bfbf
- added alpha patch from HJLu to fix the osf_sigprocmask interpretation
d4bfbf
d4bfbf
* Sat Jun 12 1999 Jeff Johnson <jbj@redhat.com>
d4bfbf
- update to 3.99.1.
d4bfbf
d4bfbf
* Wed Jun  2 1999 Jeff Johnson <jbj@redhat.com>
d4bfbf
- add (the other :-) jj's sparc patch.
d4bfbf
d4bfbf
* Wed May 26 1999 Jeff Johnson <jbj@redhat.com>
d4bfbf
- upgrade to 3.99 in order to
d4bfbf
-    add new 2.2.x open flags (#2955).
d4bfbf
-    add new 2.2.x syscalls (#2866).
d4bfbf
- strace 3.1 patches carried along for now.
d4bfbf
d4bfbf
* Sun May 16 1999 Jeff Johnson <jbj@redhat.com>
d4bfbf
- don't rely on (broken!) rpm %%patch (#2735)
d4bfbf
d4bfbf
* Tue Apr 06 1999 Preston Brown <pbrown@redhat.com>
d4bfbf
- strip binary
d4bfbf
d4bfbf
* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com>
d4bfbf
- auto rebuild in the new build environment (release 16)
d4bfbf
d4bfbf
* Tue Feb  9 1999 Jeff Johnson <jbj@redhat.com>
d4bfbf
- vfork est arrive!
d4bfbf
d4bfbf
* Tue Feb  9 1999 Christopher Blizzard <blizzard@redhat.com>
d4bfbf
- Add patch to follow clone() syscalls, too.
d4bfbf
d4bfbf
* Sun Jan 17 1999 Jeff Johnson <jbj@redhat.com>
d4bfbf
- patch to build alpha/sparc with glibc 2.1.
d4bfbf
d4bfbf
* Thu Dec 03 1998 Cristian Gafton <gafton@redhat.com>
d4bfbf
- patch to build on ARM
d4bfbf
d4bfbf
* Wed Sep 30 1998 Jeff Johnson <jbj@redhat.com>
d4bfbf
- fix typo (printf, not tprintf).
d4bfbf
d4bfbf
* Sat Sep 19 1998 Jeff Johnson <jbj@redhat.com>
d4bfbf
- fix compile problem on sparc.
d4bfbf
d4bfbf
* Tue Aug 18 1998 Cristian Gafton <gafton@redhat.com>
d4bfbf
- buildroot
d4bfbf
d4bfbf
* Mon Jul 20 1998 Cristian Gafton <gafton@redhat.com>
d4bfbf
- added the umoven patch from James Youngman <jay@gnu.org>
d4bfbf
- fixed build problems on newer glibc releases
d4bfbf
d4bfbf
* Mon Jun 08 1998 Prospector System <bugs@redhat.com>
d4bfbf
- translations modified for de, fr, tr