Sync from SUSE:ALP:Source:Standard:1.0 ltrace revision 388af793701f7ac0b674aa85910e4243
This commit is contained in:
commit
a08136d856
23
.gitattributes
vendored
Normal file
23
.gitattributes
vendored
Normal file
@ -0,0 +1,23 @@
|
||||
## Default LFS
|
||||
*.7z filter=lfs diff=lfs merge=lfs -text
|
||||
*.bsp filter=lfs diff=lfs merge=lfs -text
|
||||
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
||||
*.gem filter=lfs diff=lfs merge=lfs -text
|
||||
*.gz filter=lfs diff=lfs merge=lfs -text
|
||||
*.jar filter=lfs diff=lfs merge=lfs -text
|
||||
*.lz filter=lfs diff=lfs merge=lfs -text
|
||||
*.lzma filter=lfs diff=lfs merge=lfs -text
|
||||
*.obscpio filter=lfs diff=lfs merge=lfs -text
|
||||
*.oxt filter=lfs diff=lfs merge=lfs -text
|
||||
*.pdf filter=lfs diff=lfs merge=lfs -text
|
||||
*.png filter=lfs diff=lfs merge=lfs -text
|
||||
*.rpm filter=lfs diff=lfs merge=lfs -text
|
||||
*.tbz filter=lfs diff=lfs merge=lfs -text
|
||||
*.tbz2 filter=lfs diff=lfs merge=lfs -text
|
||||
*.tgz filter=lfs diff=lfs merge=lfs -text
|
||||
*.ttf filter=lfs diff=lfs merge=lfs -text
|
||||
*.txz filter=lfs diff=lfs merge=lfs -text
|
||||
*.whl filter=lfs diff=lfs merge=lfs -text
|
||||
*.xz filter=lfs diff=lfs merge=lfs -text
|
||||
*.zip filter=lfs diff=lfs merge=lfs -text
|
||||
*.zst filter=lfs diff=lfs merge=lfs -text
|
15
_service
Normal file
15
_service
Normal file
@ -0,0 +1,15 @@
|
||||
<services>
|
||||
<service name="tar_scm" mode="manual">
|
||||
<param name="version">0.7.91</param>
|
||||
<param name="versionformat">0.7.91+git%cd.%h</param>
|
||||
<param name="url">https://gitlab.com/cespedes/ltrace.git</param>
|
||||
<param name="scm">git</param>
|
||||
<param name="revision">main</param>
|
||||
<param name="changesgenerate">enable</param>
|
||||
</service>
|
||||
<service name="recompress" mode="manual">
|
||||
<param name="file">*.tar</param>
|
||||
<param name="compression">bz2</param>
|
||||
</service>
|
||||
<service name="set_version" mode="manual"/>
|
||||
</services>
|
4
_servicedata
Normal file
4
_servicedata
Normal file
@ -0,0 +1,4 @@
|
||||
<servicedata>
|
||||
<service name="tar_scm">
|
||||
<param name="url">https://gitlab.com/cespedes/ltrace.git</param>
|
||||
<param name="changesrevision">8eabf684ba6b11ae7a1a843aca3c0657c6329d73</param></service></servicedata>
|
2
baselibs.conf
Normal file
2
baselibs.conf
Normal file
@ -0,0 +1,2 @@
|
||||
ltrace
|
||||
+/usr/bin/ltrace -> /usr/bin/ltrace<extension>
|
26
gcc9-Wlto-type-mismatch.patch
Normal file
26
gcc9-Wlto-type-mismatch.patch
Normal file
@ -0,0 +1,26 @@
|
||||
Index: ltrace-0.7.91+git20230705.8eabf68/filter.c
|
||||
===================================================================
|
||||
--- ltrace-0.7.91+git20230705.8eabf68.orig/filter.c
|
||||
+++ ltrace-0.7.91+git20230705.8eabf68/filter.c
|
||||
@@ -18,6 +18,8 @@
|
||||
* 02110-1301 USA
|
||||
*/
|
||||
|
||||
+#include "config.h"
|
||||
+
|
||||
#include <stdlib.h>
|
||||
#include <assert.h>
|
||||
#include <stdio.h>
|
||||
Index: ltrace-0.7.91+git20230705.8eabf68/options.h
|
||||
===================================================================
|
||||
--- ltrace-0.7.91+git20230705.8eabf68.orig/options.h
|
||||
+++ ltrace-0.7.91+git20230705.8eabf68/options.h
|
||||
@@ -25,6 +25,8 @@
|
||||
#ifndef OPTIONS_H
|
||||
#define OPTIONS_H
|
||||
|
||||
+#include "config.h"
|
||||
+
|
||||
#include <stdio.h>
|
||||
#include <sys/types.h>
|
||||
#include <sys/time.h>
|
13
gcc9-printf-s-null-argument.patch
Normal file
13
gcc9-printf-s-null-argument.patch
Normal file
@ -0,0 +1,13 @@
|
||||
Index: output.c
|
||||
===================================================================
|
||||
--- output.c.orig
|
||||
+++ output.c
|
||||
@@ -659,7 +659,7 @@ frame_callback (Dwfl_Frame *state, void
|
||||
|
||||
/* This mimics the output produced by libunwind below. */
|
||||
fprintf(options.output, " > %s(%s+0x%" PRIx64 ") [%" PRIx64 "]\n",
|
||||
- modname, symname, off, pc);
|
||||
+ modname ?: "(null)", symname ?: "(null)", off, pc);
|
||||
|
||||
/* See if we can extract the source line too and print it on
|
||||
the next line if we can find it. */
|
17
lens-double-free.patch
Normal file
17
lens-double-free.patch
Normal file
@ -0,0 +1,17 @@
|
||||
Index: ltrace-0.7.91+git20230705.8eabf68/dwarf_prototypes.c
|
||||
===================================================================
|
||||
--- ltrace-0.7.91+git20230705.8eabf68.orig/dwarf_prototypes.c
|
||||
+++ ltrace-0.7.91+git20230705.8eabf68/dwarf_prototypes.c
|
||||
@@ -301,11 +301,8 @@ static struct arg_type_info *get_enum(Dw
|
||||
value_destroy(value); \
|
||||
free(value); \
|
||||
} \
|
||||
- if (lens != NULL) { \
|
||||
- lens_destroy(&lens->super); \
|
||||
- free(lens); \
|
||||
- } \
|
||||
if (result != NULL) { \
|
||||
+ /* This also frees lens. */ \
|
||||
type_destroy(result); \
|
||||
free(result); \
|
||||
} \
|
BIN
ltrace-0.7.91+git20230705.8eabf68.tar.bz2
(Stored with Git LFS)
Normal file
BIN
ltrace-0.7.91+git20230705.8eabf68.tar.bz2
(Stored with Git LFS)
Normal file
Binary file not shown.
598
ltrace.changes
Normal file
598
ltrace.changes
Normal file
@ -0,0 +1,598 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 11 13:01:23 UTC 2023 - schwab@suse.de
|
||||
|
||||
- Update to version 0.7.91+git20230705.8eabf68:
|
||||
* Add missing semi-colon
|
||||
* ./autogen.sh is needed before ./configure
|
||||
* sysdeps: x86: update syscall tables
|
||||
* testsuite: system_calls: recognize statx
|
||||
* testsuite: system_calls: recognize newfstatat
|
||||
* PowerPC Fix HFA FP/GPR parameter logic typo
|
||||
* Add -Wno-psabi to avoid compilation warning/failure
|
||||
* Avoid infinite loop when single stepping into PLT
|
||||
* PowerPC ltrace-elf handle LEP/GEP offset
|
||||
* riscv64: add initial riscv64 support
|
||||
- arm-trace.patch, ltrace-0.7.91-ppc64le-scv.patch, readdir.patch: remove
|
||||
- Rediff remaining patches
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Apr 11 10:59:57 UTC 2023 - Andreas Schwab <schwab@suse.de>
|
||||
|
||||
- ppc64le-use-after-free.patch: fix use after free
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Apr 9 12:27:01 UTC 2021 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
- add ltrace-0.7.91-ppc64le-scv.patch from Fedora
|
||||
- spec-cleaner
|
||||
- add timeout to testsuite run, it is non-fatal anyway
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 14 17:01:27 UTC 2020 - Sarah Julia Kriesch <sarah.kriesch@ibm.com>
|
||||
|
||||
- Added s390x-ptrace.patch and remove 2 unused functions to fix 'expr_clone' error from latest release
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Nov 11 13:40:08 UTC 2020 - Jan Engelhardt <jengelh@inai.de>
|
||||
|
||||
- Fix rpmlint warning make-check-outside-check-section
|
||||
by moving check code to %check section.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 13 11:30:05 UTC 2020 - Andreas Schwab <schwab@suse.de>
|
||||
|
||||
- Package latest available sources
|
||||
- ltrace-fix-build.patch: remove
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Sep 17 14:49:50 UTC 2019 - Andreas Schwab <schwab@suse.de>
|
||||
|
||||
- Fix last change
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Sep 13 12:55:57 UTC 2019 - Jan Engelhardt <jengelh@inai.de>
|
||||
|
||||
- Use noun phrase in summary.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Apr 30 10:35:37 UTC 2019 - Martin Liška <mliska@suse.cz>
|
||||
|
||||
- Add gcc9-Wlto-type-mismatch.patch in order to address LTO warnings
|
||||
(boo#1133256).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 28 11:18:58 UTC 2019 - Andreas Schwab <schwab@suse.de>
|
||||
|
||||
- lens-double-free.patch: fix double free of memory (bsc#1130664)
|
||||
- Use %license
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 4 14:24:14 UTC 2019 - Martin Liška <mliska@suse.cz>
|
||||
|
||||
- Add gcc9-printf-s-null-argument.patch: boo#1120789.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 7 09:55:11 UTC 2018 - schwab@suse.de
|
||||
|
||||
- ppc-ptrace.patch: include <asm/ptrace.h> on ppc
|
||||
- arm-trace.patch: remove unreachable assignment
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Nov 30 15:07:59 UTC 2017 - bwiedemann@suse.com
|
||||
|
||||
- Do not store test results in the package to make build reproducible
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Nov 24 16:28:46 UTC 2017 - matz@suse.com
|
||||
|
||||
- Fix overactive post-build-checks tripping over some testsuite
|
||||
compile warnings. Adds ltrace-fix-build.patch .
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jul 13 10:00:22 UTC 2016 - schwab@suse.de
|
||||
|
||||
- readdir.patch: Remove use of deprecated readdir_r
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Sep 2 17:35:50 UTC 2014 - schwab@linux-m68k.org
|
||||
|
||||
- Update to git rev 6c6bcc3
|
||||
** Prototype libraries
|
||||
- Each DSO can now ship an ltrace config file (called prototype
|
||||
library) that ltrace will open when that DSO is loaded to process
|
||||
image. See ltrace(1) for details.
|
||||
|
||||
- ltrace.conf is no longer part of installation tarball. Instead,
|
||||
we now ship libc.so.conf, libm.so.conf, libacl.so.conf, and
|
||||
syscalls.conf. Those are now istalled to /usr/share/ltrace by
|
||||
default. /etc/ltrace.conf and $HOME/.ltrace.conf are still
|
||||
loaded if present, and can contain arbitrary user configuration.
|
||||
|
||||
- The option -F was retrofitted to be a colon-separated list of
|
||||
prototype libraries, and directories to look for prototype
|
||||
libraries in. On Linux, ltrace looks into XDG_CONFIG_HOME,
|
||||
XDG_CONFIG_DIRS, and /usr/share/ltrace as well.
|
||||
|
||||
- Wide character strings are supported in prototypes. Use "string"
|
||||
lens as usual, but use array of integers as underlying type.
|
||||
libc.so.conf now contains prototypes of wide character functions.
|
||||
|
||||
- Sole void function parameter such as in the following example, is
|
||||
now considered obsolete:
|
||||
|
||||
| int fork(void); |
|
||||
|
||||
This use is still accepted, taken to mean "hide(int)", but
|
||||
produces a warning, and will be removed in future.
|
||||
|
||||
- Prototypes are now read from DWARF debug info, if available. This
|
||||
complements the data available in config files
|
||||
|
||||
** Architectural support
|
||||
- MIPS and MIPSel are now handled by the same backend.
|
||||
- ARMv6, ARMv7 and ARMv8 (AArch64) are supported, including full
|
||||
fetch backend. ARMv8 backend doesn't support tracing of 32-bit
|
||||
binaries, as currently there's no 32-bit userspace available for
|
||||
ARM64 processors.
|
||||
- Imagination Technologies Meta is now supported.
|
||||
- PowerPC64 ELFv2 little-endian ABI is now supported including full
|
||||
fetch backend.
|
||||
|
||||
- On Linux, tracing of IFUNC symbols is supported. On i386,
|
||||
x86_64, ppc32 with secure PLT and ppc64, IRELATIVE PLT slots are
|
||||
traced as well.
|
||||
|
||||
** -w output now shows full library path
|
||||
The output format is similar to glibc's backtrace_symbols, e.g.:
|
||||
> /bin/ls(_init+0x19be) [0x40398e]
|
||||
> /lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xed) [0x7f50cbc3676d]
|
||||
> /bin/ls(_init+0x25fd) [0x4045cd]
|
||||
- Enable for ppc64le and aarch64
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 13 15:26:16 UTC 2013 - schwab@linux-m68k.org
|
||||
|
||||
- Enable for m68k
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jun 18 17:26:48 UTC 2013 - schwab@linux-m68k.org
|
||||
|
||||
- Don't warn about unused local typedefs
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 10 21:18:56 UTC 2012 - schwab@linux-m68k.org
|
||||
|
||||
- Update to 0.7.2
|
||||
** Bugfixes
|
||||
*** (Again) detect VDSO entry in r_debug linkmap with non-empty name
|
||||
*** Fix building with libunwind 1.1
|
||||
*** Fix prototype lookup for -x symbols from shared libraries
|
||||
- Remove upstreamed patch ltrace.vdso.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Nov 30 13:51:04 UTC 2012 - schwab@linux-m68k.org
|
||||
|
||||
- Update to 0.7.1
|
||||
* Version 0.7.1
|
||||
** Bugfixes
|
||||
*** ltrace.conf.5 is now installed to man5 as it should be
|
||||
*** [PowerPC] A header file necessary for building is now shipped
|
||||
*** [MIPS] Work around duplicate symbol request bug
|
||||
*** Detect VDSO entry in r_debug linkmap with non-empty name
|
||||
*** Temporary files are wiped properly after the test suite has been run
|
||||
*** Parsing typedefs with common prefix now works as it should
|
||||
** Cofiguration Files
|
||||
*** The following prototypes in ltrace.conf were added or updated
|
||||
*** Duplicate typedefs are now guarded against
|
||||
*** It's now possible to define recursive structures
|
||||
*** New lens "bitvec" is available
|
||||
*** Octal lens renamed to "oct"
|
||||
*** The hex lens can now format floating point arguments
|
||||
|
||||
* Version 0.7.0
|
||||
** Tracing
|
||||
*** Full support for tracing multi-threaded processes
|
||||
*** Support for tracing inter-library calls
|
||||
*** Better support for parameter passing ("fetch backend")
|
||||
*** Awareness of deny_ptrace SELinux boolean
|
||||
*** Limited support for tracing returns from tail call functions
|
||||
*** -e, -x and -l selectors now allow using globs and regular expressions
|
||||
*** -g command line option dropped
|
||||
*** Test suite can now be run under valgrind
|
||||
*** [ppc] Support both BSS and secure PLTs for 32-bit processes
|
||||
*** [mips] Implement software singlestepping
|
||||
*** [mips] Add support for CPIC main programs
|
||||
*** Support tracing PIE binaries
|
||||
** Configuration Files
|
||||
*** New abstraction: parameter pack
|
||||
*** New expression: zero
|
||||
*** Lenses: change the way that underlying type is rendered
|
||||
*** Misspelling of "int" as "itn" temporarily accepted, but deprecated
|
||||
*** Using void as top-level function argument now deprecated
|
||||
*** Using void to hide one argument is now obsolete
|
||||
** Documentation
|
||||
*** New manual page ltrace.conf(5)
|
||||
*** README, INSTALL brought up to date
|
||||
*** New file CREDITS with a list of contributors
|
||||
** Bugfixes
|
||||
*** Fix detaching from a process
|
||||
*** Argument to -n is now checked for validity
|
||||
*** Fix tracing across exec in a stripped binary
|
||||
*** [x86] ORIG_RAX/ORIG_EAX may not contain original syscall number
|
||||
*** [ppc] Fix races in tracing -e events in 64-bit processes
|
||||
*** [ppc] Allow stepping over lwarx instruction
|
||||
** Known bugs
|
||||
*** [arm] Tracing is not supported at all on ARM
|
||||
|
||||
* Version 0.6.0
|
||||
|
||||
** General Features
|
||||
*** Use autotools for building
|
||||
*** New option -b: disables output of signals received by the tracee
|
||||
*** New option -w: print stack trace of events
|
||||
*** Support tracing of symbols from libraries opened with dlopen
|
||||
** Architecture-specific Changes
|
||||
*** Various fixes for MIPS and PowerPC
|
||||
*** Support for ARM Thumb mode
|
||||
*** Implement fetching of 5th and further function arguments on s390
|
||||
*** Support fork/exec syscalls on 31-bit s390
|
||||
*** Support for float and double arguments on x86_64
|
||||
*** Fixes for return arguments (after '+') in nested calls on x86_64
|
||||
|
||||
- removed upstreamed patches:
|
||||
ltrace.ppc.patch
|
||||
ltrace.s390-more-arguments.patch
|
||||
ltrace.demangle-lib.cstdlib.patch
|
||||
|
||||
- ltrace.vdso.patch: allow more VDSO names.
|
||||
-------------------------------------------------------------------
|
||||
Thu May 31 11:09:55 UTC 2012 - sweet_f_a@gmx.de
|
||||
|
||||
- update to 0.5.3 (bug and build fixes)
|
||||
- autoreconf is not required
|
||||
- add ppc patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 21 13:48:59 CET 2012 - snwint@suse.de
|
||||
|
||||
- build with libelf1 instead of libelf0
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 1 15:56:54 UTC 2011 - coolo@suse.com
|
||||
|
||||
- add automake as buildrequire to avoid implicit dependency
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jul 9 20:08:06 UTC 2010 - jengelh@medozas.de
|
||||
|
||||
- Kernel commit v2.6.28-5383-g192eee8 removed
|
||||
arch/sparc/include/asm/reg.h, so deactivate SPARC building
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 1 12:47:42 UTC 2010 - jengelh@medozas.de
|
||||
|
||||
- enable SPARC building
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 1 12:00:39 UTC 2010 - jengelh@medozas.de
|
||||
|
||||
- package baselibs.conf
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri May 22 20:34:09 CEST 2009 - pbaudis@suse.cz
|
||||
|
||||
- Update version from 0.4-svn to 0.5.2
|
||||
* Huge amount of bugfixes, arm support, etc. ...
|
||||
* Fix ctrl-c sometimes crashing ltrace [bnc#474534]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 12:34:56 CET 2008 - olh@suse.de
|
||||
|
||||
- use Obsoletes: -XXbit only for ppc64 to help solver during distupgrade
|
||||
(bnc#437293)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 9 15:04:10 CET 2008 - olh@suse.de
|
||||
|
||||
- remove ltrace -c patch from bnc#201272 (bnc#439498)
|
||||
- include cstdlib in demangle-lib test (bnc#439498)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 30 12:34:56 CET 2008 - olh@suse.de
|
||||
|
||||
- obsolete old -XXbit packages (bnc#437293)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Apr 10 12:54:45 CEST 2008 - ro@suse.de
|
||||
|
||||
- added baselibs.conf file to build xxbit packages
|
||||
for multilib support
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 29 11:48:51 CET 2008 - olh@suse.de
|
||||
|
||||
- update last patch to not use global variables
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 27 14:23:24 CET 2008 - olh@suse.de
|
||||
|
||||
- more complete powerpc ABI handling (bnc#364988 - LTC41151)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 3 13:28:17 CET 2008 - olh@suse.de
|
||||
|
||||
- handle more than 4 args on s390 (349987 - LTC41171)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Oct 19 15:02:27 CEST 2007 - olh@suse.de
|
||||
|
||||
- allow build with old distributions, libelf0-devel is new in 10.3
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Oct 8 16:03:44 CEST 2007 - olh@suse.de
|
||||
|
||||
- update to ltrace mainline r80
|
||||
added more system calls
|
||||
add sleep to clone testcase to avoid earlier termination of process
|
||||
disable breakpoints before doing fork()
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Oct 5 16:26:55 CEST 2007 - olh@suse.de
|
||||
|
||||
- fix build with sles9 (329163 - LTC38963)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jul 2 16:53:18 CEST 2007 - tiwai@suse.de
|
||||
|
||||
- changed from libelf to libelf0-devel in buildrequires.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Apr 17 22:39:40 CEST 2007 - schwab@suse.de
|
||||
|
||||
- Fix argument decoding.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 26 12:02:55 CET 2007 - olh@suse.de
|
||||
|
||||
- update to ltrace mainline r75
|
||||
fix -p behavior: wait for process to stop after PTRACE_ATTACH
|
||||
fix -L behavior: always initialize the breakpoint dictionary,
|
||||
and thus aviod NULL dereference.
|
||||
- rename patch numbers in %prep section to match commit ids
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 25 12:01:52 CET 2007 - olh@suse.de
|
||||
|
||||
- fix ltrace -c on ppc32 (201272 - LTC24809)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Nov 20 15:05:19 CET 2006 - olh@suse.de
|
||||
|
||||
- add ltrace.trace_exec.patch (201282 - LTC25640)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 12 20:57:50 CEST 2006 - olh@suse.de
|
||||
|
||||
- better opd handling
|
||||
add arch name to mack check results
|
||||
use /etc/ltrace.conf (211921)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Sep 20 22:55:05 CEST 2006 - olh@suse.de
|
||||
|
||||
- add more ia64 fixes from Steve Fink
|
||||
keep make check results in the package
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Sep 15 08:16:04 CEST 2006 - olh@suse.de
|
||||
|
||||
- provide elf_gnu_hash, current glibc defines SHT_GNU_HASH
|
||||
remove merge acl entries for ltrace.conf
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 14 19:41:39 CEST 2006 - olh@suse.de
|
||||
|
||||
- fix opd2addr to return the value at addr, not addr itself
|
||||
revert a regex handling change in the testsuite to fix make check
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 14 14:21:03 CEST 2006 - olh@suse.de
|
||||
|
||||
- run make check, do not abort the build if it fails
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 14 12:36:31 CEST 2006 - olh@suse.de
|
||||
|
||||
- update to ltrace mainline r65 (201272)
|
||||
implement ignored arguments, pointer parameters, enumerated parameters
|
||||
short, ushort and float types, typedefs, array arguments and struct support
|
||||
improve string handling
|
||||
add .gnu.hash ELF support
|
||||
add -F option to read in config files
|
||||
add secure-plt support
|
||||
update syscall list to 2.6.17
|
||||
use e_entry instead of _start if the binary is stripped
|
||||
fix the -x processing to get rid of bad warning.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jun 13 18:23:28 CEST 2006 - schwab@suse.de
|
||||
|
||||
- Update to ltrace 0.4 to get support for ia64.
|
||||
- Don't build as root.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue May 30 19:12:11 CEST 2006 - bk@suse.de
|
||||
|
||||
- fix crash of every process traced with -p on ltrace exit (138568)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu May 18 13:02:44 CEST 2006 - olh@suse.de
|
||||
|
||||
- update man page to ltrace 0.4 version (176209 - LTC23913)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue May 2 13:33:30 CEST 2006 - olh@suse.de
|
||||
|
||||
- add handling for secure PLT on powerpc (154472 - LTC21994)
|
||||
fix segfault when following forks (155754 - LTC22229)
|
||||
configure does checks for c++ features, add c++ to Buildrequires
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 20 19:08:40 CET 2006 - pth@suse.de
|
||||
|
||||
- Add patch from IBM that fixes segfaults when using -x (#150487)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 2 13:44:11 CET 2006 - hare@suse.de
|
||||
|
||||
- biarch support for S/390.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 25 21:38:04 CET 2006 - mls@suse.de
|
||||
|
||||
- converted neededforbuild to BuildRequires
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jun 28 18:34:35 CEST 2005 - uli@suse.de
|
||||
|
||||
- ported s390x support from 0.3.10
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue May 10 16:10:04 CEST 2005 - pth@suse.de
|
||||
|
||||
- Incorporate RH patch for biarch support
|
||||
- Incorporate all pathches from IBM for biarch ltrace on ppc64
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Apr 21 16:50:35 CEST 2005 - pth@suse.de
|
||||
|
||||
- Fix warnings in the ppc specific parts.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Apr 14 12:17:20 CEST 2005 - pth@suse.de
|
||||
|
||||
- Don't use elfutils because of their unacceptable license,
|
||||
use libelf instead.
|
||||
- Fix the check for gelf.h
|
||||
- Really use the include path for gelf.h that configure found.
|
||||
- Use version number from config.h
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Apr 4 12:24:09 CEST 2005 - pth@suse.de
|
||||
|
||||
- Update to ltrace 0.3.36:
|
||||
- All SUSE patches integrated
|
||||
- Alpha support,
|
||||
- Uses elfutils.
|
||||
- list of functions expanded.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 24 14:14:30 CET 2005 - pth@suse.de
|
||||
|
||||
- Adapt patch from Jakub Jellinek to make ltrace handle long/ulong
|
||||
values and thus work on AMD64 (#74374).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri May 7 16:41:16 CEST 2004 - bk@suse.de
|
||||
|
||||
- fix assert in call summary if ltrace was tracing nothing(#39642)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Apr 1 16:44:17 CEST 2004 - bk@suse.de
|
||||
|
||||
- use new path for changelog file, fixes stale symlink (Bug #36383)
|
||||
- update manual page regarding bugs fixed with the applied patches
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 31 20:09:29 CEST 2004 - bk@suse.de
|
||||
|
||||
- calculate PLT table function address if missing in symtab(#36212)
|
||||
(this makes ltrace work again on i386, otherwise it does nothing)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 23 20:44:28 CET 2004 - bk@suse.de
|
||||
|
||||
- Update to ltrace 0.3.31: More functions in ltrace.conf, options
|
||||
to show time spent inside each call and summary of calls at end
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 9 15:55:40 CET 2004 - bk@suse.de
|
||||
|
||||
- fix ExclusiveArch: Include s390 and s390x for 32- and 64-bit arch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jun 13 12:38:20 CEST 2003 - mmj@suse.de
|
||||
|
||||
- Use BuildRoot
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jun 2 00:32:43 CEST 2003 - ro@suse.de
|
||||
|
||||
- remove unpackaged files from buildroot
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Sep 20 20:39:54 CEST 2002 - agruen@suse.de
|
||||
|
||||
- Update syscall table definitions for supported architectures to
|
||||
current 8.1/UL/SLES kernel.
|
||||
- Add declarations for extended attribute syscalls and
|
||||
for libacl functions (POSIX ACL library).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jul 12 21:30:27 CEST 2002 - kukuk@suse.de
|
||||
|
||||
- Fix ExclusiveArch for x86.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jun 27 17:19:27 CEST 2002 - mludvig@suse.cz
|
||||
|
||||
- Added support for Elf64 binaries.
|
||||
- Fixed x86-64 port.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jun 7 11:09:45 CEST 2002 - aj@suse.de
|
||||
|
||||
- Update to ltrace 0.3.26:
|
||||
* Added support for s390 and powerpc
|
||||
- Add initial support for x86-64.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Nov 26 15:25:36 CET 2001 - uli@suse.de
|
||||
|
||||
- added armv4l to ExclusiveArch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jul 19 19:24:45 CEST 2001 - uli@suse.de
|
||||
|
||||
- added PPC port by Anton Blanchard
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Apr 3 09:32:11 CEST 2001 - bk@suse.de
|
||||
|
||||
- added S/390 patch from IBM Linux Technology Center
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 10 10:58:03 CET 2000 - kukuk@suse.de
|
||||
|
||||
- Update to ltrace 0.3.10
|
||||
- Add patch for SPARC
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Oct 23 19:29:18 CEST 1999 - bk@suse.de
|
||||
|
||||
- updated to ltrace-0.3.8
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 13 17:23:57 CEST 1999 - bs@suse.de
|
||||
|
||||
- ran old prepare_spec on spec file to switch to new prepare_spec.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Aug 4 12:19:06 MEST 1999 - bs@suse.de
|
||||
|
||||
- added call of Check
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 29 00:35:59 MEST 1999 - bk@suse.de
|
||||
|
||||
- new package
|
105
ltrace.spec
Normal file
105
ltrace.spec
Normal file
@ -0,0 +1,105 @@
|
||||
#
|
||||
# spec file for package ltrace
|
||||
#
|
||||
# Copyright (c) 2023 SUSE LLC
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
# upon. The license for this file, and modifications and additions to the
|
||||
# file, is the same license as for the pristine package itself (unless the
|
||||
# license for the pristine package is not an Open Source License, in which
|
||||
# case the license is the MIT License). An "Open Source License" is a
|
||||
# license that conforms to the Open Source Definition (Version 1.9)
|
||||
# published by the Open Source Initiative.
|
||||
|
||||
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
|
||||
Name: ltrace
|
||||
Version: 0.7.91+git20230705.8eabf68
|
||||
Release: 0
|
||||
Summary: Library and system call tracer for programs
|
||||
License: GPL-2.0-or-later
|
||||
Group: Development/Tools/Debuggers
|
||||
URL: https://ltrace.org/
|
||||
Source: ltrace-%{version}.tar.bz2
|
||||
Source2: baselibs.conf
|
||||
Patch3: ppc-ptrace.patch
|
||||
Patch5: gcc9-printf-s-null-argument.patch
|
||||
Patch6: lens-double-free.patch
|
||||
Patch7: gcc9-Wlto-type-mismatch.patch
|
||||
Patch8: s390x-ptrace.patch
|
||||
Patch9: ppc64le-use-after-free.patch
|
||||
BuildRequires: autoconf
|
||||
BuildRequires: automake
|
||||
BuildRequires: binutils-devel
|
||||
BuildRequires: dejagnu
|
||||
BuildRequires: gcc-c++
|
||||
BuildRequires: libdw-devel
|
||||
BuildRequires: libelf-devel
|
||||
BuildRequires: libtool
|
||||
ExclusiveArch: %{ix86} s390x ppc ppc64 ppc64le %{arm} x86_64 alpha ia64 m68k aarch64 riscv64
|
||||
|
||||
%description
|
||||
Ltrace is a program that runs the specified command until it exits. It
|
||||
intercepts and records the dynamic library calls that are called by the
|
||||
executed process and the signals that are received by that process. It
|
||||
can also intercept and print the system calls executed by the program.
|
||||
|
||||
The program to trace need not be recompiled for this, so ltrace can be
|
||||
used on binaries for which no source is available.
|
||||
|
||||
This is still a work in progress, so, for example, the tracking to
|
||||
child processes may fail or some things may not work as expected.
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
%patch3 -p1
|
||||
%patch5
|
||||
%patch6 -p1
|
||||
%patch7 -p1
|
||||
%patch8 -p1
|
||||
%patch9 -p1
|
||||
|
||||
%build
|
||||
./autogen.sh
|
||||
export CFLAGS="%{optflags} -Wall -Wno-unused-local-typedefs"
|
||||
%configure --disable-shared
|
||||
%make_build
|
||||
|
||||
%check
|
||||
%if !0%{?qemu_user_space_build}
|
||||
if timeout 180 make check
|
||||
then
|
||||
echo 'no make check errors' > testresults.txt
|
||||
else
|
||||
for file in `find testsuite -name "*.ltrace"`
|
||||
do
|
||||
echo
|
||||
echo $file
|
||||
echo
|
||||
cat $file
|
||||
echo
|
||||
done >> testresults.txt
|
||||
fi
|
||||
mv testresults.txt %{_target_cpu}-testresults.txt
|
||||
ln testsuite/testrun.sum testsuite/%{_target_cpu}-testrun.sum
|
||||
%else
|
||||
echo no make check > %{_target_cpu}-testresults.txt
|
||||
echo no make check > testsuite/%{_target_cpu}-testrun.sum
|
||||
%endif
|
||||
|
||||
%install
|
||||
%make_install
|
||||
rm -rf %{buildroot}%{_datadir}/doc/ltrace
|
||||
|
||||
%files
|
||||
%doc README
|
||||
%license COPYING
|
||||
%{_bindir}/ltrace
|
||||
%{_datadir}/ltrace
|
||||
%{_mandir}/man1/ltrace.1%{?ext_man}
|
||||
%{_mandir}/man5/ltrace.conf.5%{?ext_man}
|
||||
|
||||
%changelog
|
9
ppc-ptrace.patch
Normal file
9
ppc-ptrace.patch
Normal file
@ -0,0 +1,9 @@
|
||||
Index: ltrace-0.7.91+git20230705.8eabf68/sysdeps/linux-gnu/ppc/ptrace.h
|
||||
===================================================================
|
||||
--- ltrace-0.7.91+git20230705.8eabf68.orig/sysdeps/linux-gnu/ppc/ptrace.h
|
||||
+++ ltrace-0.7.91+git20230705.8eabf68/sysdeps/linux-gnu/ppc/ptrace.h
|
||||
@@ -19,3 +19,4 @@
|
||||
*/
|
||||
|
||||
#include <sys/ptrace.h>
|
||||
+#include <asm/ptrace.h>
|
16
ppc64le-use-after-free.patch
Normal file
16
ppc64le-use-after-free.patch
Normal file
@ -0,0 +1,16 @@
|
||||
Index: ltrace-0.7.91+git20230705.8eabf68/sysdeps/linux-gnu/ppc/plt.c
|
||||
===================================================================
|
||||
--- ltrace-0.7.91+git20230705.8eabf68.orig/sysdeps/linux-gnu/ppc/plt.c
|
||||
+++ ltrace-0.7.91+git20230705.8eabf68/sysdeps/linux-gnu/ppc/plt.c
|
||||
@@ -688,10 +688,10 @@ arch_elf_add_func_entry(struct process *
|
||||
|| library_symbol_init(libsym, addr, full_name, 1,
|
||||
LS_TOPLT_NONE) < 0) {
|
||||
delete_symbol_chain(libsym);
|
||||
- free(libsym);
|
||||
libsym = NULL;
|
||||
fprintf(stderr, "Couldn't add symbol %s"
|
||||
"for tracing.\n", name);
|
||||
+ return PLT_FAIL;
|
||||
}
|
||||
full_name = NULL;
|
||||
libsym->next = *ret;
|
108
s390x-ptrace.patch
Normal file
108
s390x-ptrace.patch
Normal file
@ -0,0 +1,108 @@
|
||||
Index: ltrace-0.7.91+git20230705.8eabf68/expr.c
|
||||
===================================================================
|
||||
--- ltrace-0.7.91+git20230705.8eabf68.orig/expr.c
|
||||
+++ ltrace-0.7.91+git20230705.8eabf68/expr.c
|
||||
@@ -171,89 +171,6 @@ expr_destroy(struct expr_node *node)
|
||||
abort();
|
||||
}
|
||||
|
||||
-static int
|
||||
-expr_alloc_and_clone(struct expr_node **retpp, struct expr_node *node, int own)
|
||||
-{
|
||||
- *retpp = node;
|
||||
- if (own) {
|
||||
- *retpp = malloc(sizeof **retpp);
|
||||
- if (*retpp == NULL || expr_clone(*retpp, node) < 0) {
|
||||
- free(*retpp);
|
||||
- return -1;
|
||||
- }
|
||||
- }
|
||||
- return 0;
|
||||
-}
|
||||
-
|
||||
-int
|
||||
-expr_clone(struct expr_node *retp, const struct expr_node *node)
|
||||
-{
|
||||
- struct expr_node *nlhs;
|
||||
- /* Must be a known value to distinguish EXPR_OP_CALL2
|
||||
- from EXPR_OP_CALL1 or EXPR_OP_UP. */
|
||||
- struct expr_node *nrhs = NULL;
|
||||
-
|
||||
- *retp = *node;
|
||||
-
|
||||
- switch (node->kind) {
|
||||
-
|
||||
- case EXPR_OP_ARGNO:
|
||||
- case EXPR_OP_SELF:
|
||||
- return 0;
|
||||
-
|
||||
- case EXPR_OP_CONST:
|
||||
- return value_clone(&retp->u.value, &node->u.value);
|
||||
-
|
||||
- case EXPR_OP_NAMED:
|
||||
- if (node->u.name.own
|
||||
- && (retp->u.name.s = strdup(node->u.name.s)) == NULL)
|
||||
- return -1;
|
||||
- return 0;
|
||||
-
|
||||
- case EXPR_OP_INDEX:
|
||||
- if (expr_alloc_and_clone(&nlhs, node->lhs, node->own_lhs) < 0)
|
||||
- return -1;
|
||||
-
|
||||
- if (expr_alloc_and_clone(&nrhs, node->u.node.n,
|
||||
- node->u.node.own) < 0) {
|
||||
- if (nlhs != node->lhs) {
|
||||
- expr_destroy(nlhs);
|
||||
- free(nlhs);
|
||||
- }
|
||||
- return -1;
|
||||
- }
|
||||
-
|
||||
- retp->lhs = nlhs;
|
||||
- retp->u.node.n = nrhs;
|
||||
- return 0;
|
||||
-
|
||||
- case EXPR_OP_CALL2:
|
||||
- if (expr_alloc_and_clone(&nrhs, node->u.call.rhs,
|
||||
- node->u.call.own_rhs) < 0)
|
||||
- return -1;
|
||||
- retp->u.call.rhs = nrhs;
|
||||
- /* Fall through. */
|
||||
-
|
||||
- case EXPR_OP_UP:
|
||||
- case EXPR_OP_CALL1:
|
||||
- if (expr_alloc_and_clone(&nlhs, node->lhs, node->own_lhs) < 0) {
|
||||
- if (node->kind == EXPR_OP_CALL2
|
||||
- && node->u.call.own_rhs
|
||||
- && nrhs != NULL) {
|
||||
- expr_destroy(nrhs);
|
||||
- free(nrhs);
|
||||
- return -1;
|
||||
- }
|
||||
- }
|
||||
-
|
||||
- retp->lhs = nlhs;
|
||||
- return 0;
|
||||
- }
|
||||
-
|
||||
- assert(!"Invalid value of node kind");
|
||||
- abort();
|
||||
-}
|
||||
-
|
||||
int
|
||||
expr_is_compile_constant(struct expr_node *node)
|
||||
{
|
||||
Index: ltrace-0.7.91+git20230705.8eabf68/expr.h
|
||||
===================================================================
|
||||
--- ltrace-0.7.91+git20230705.8eabf68.orig/expr.h
|
||||
+++ ltrace-0.7.91+git20230705.8eabf68/expr.h
|
||||
@@ -125,9 +125,6 @@ void expr_init_cb2(struct expr_node *nod
|
||||
/* Release the data inside NODE. Doesn't free NODE itself. */
|
||||
void expr_destroy(struct expr_node *node);
|
||||
|
||||
-/* Copy expression NODE into the area pointed to by RETP. Return 0 on
|
||||
- * success or a negative value on failure. */
|
||||
-int expr_clone(struct expr_node *retp, const struct expr_node *node);
|
||||
|
||||
/* Evaluate the expression NODE in context of VALUE. ARGUMENTS is a
|
||||
* dictionary of named and numbered values that NODE may use. Returns
|
Loading…
Reference in New Issue
Block a user