strace: Update to version 6.10

Message ID 20240813162000.1113995-13-adolf.belka@ipfire.org
State Staged
Commit 534fc350113d7b69987d05cfbf9bbcdd627adbbb
Headers
Series strace: Update to version 6.10 |

Commit Message

Adolf Belka Aug. 13, 2024, 4:19 p.m. UTC
  - Update from version 6.6 to 6.10
- Update of rootfile not required
- Changelog
    6.10
	* Improvements
	  * Implemented --decode-fds=eventfd option to retrieve eventfd object details
	    associated with eventfd file descriptors.
	  * Implemented decoding of NETLINK_GENERIC nlctrl protocol.
	  * Implemented decoding of F_DUPFD_QUERY fcntl.
	  * Implemented decoding of mseal syscall.
	  * Updated decoding of statx and prctl syscalls.
	  * Updated decoding of BPF_RAW_TRACEPOINT_OPEN bpf command.
	  * Updated lists of BPF_*, IORING_*, KEXEC_*, KEY_*, LANDLOCK_*, PR_*, STATX_*,
	    TCP_*, TEE_*, V4L2_*, and *_MAGIC constants.
	  * Updated lists of ioctl commands from Linux 6.10.
	* Bug fixes
	  * Worked around a bug introduced in Linux 6.5 that affected system call
	    tampering on riscv64.
    6.9
	* Improvements
	  * Implemented --always-show-pid option.
	  * The --user|-u option has learned to recognize numeric UID:GID pair, allowing
	    e.g. statically-built strace to be used without invoking nss plugins.
	  * Implemented decoding of IORING_REGISTER_SYNC_CANCEL,
	    IORING_REGISTER_FILE_ALLOC_RANGE, IORING_REGISTER_PBUF_STATUS,
	    IORING_REGISTER_NAPI, and IORING_UNREGISTER_NAPI opcodes of
	    io_uring_register syscall.
	  * Implemented decoding of BPF_TOKEN_CREATE bpf syscall command.
	  * Updated decoding of io_uring_register and pidfd_send_signal syscalls.
	  * Updated lists of BPF_*, CAN_*, IORING_*, KEY_*, LSM_*, MPOL_*, NT_*, RWF_*,
	    PIDFD_*, PTP_*, TCP_*, and *_MAGIC constants.
	  * Updated lists of ioctl commands from Linux 6.9.
    6.8
	* Improvements
	  * Renamed --stack-traces to --stack-trace for consistency.
	    Old option is retained for backwards compatibility.
	  * Implemented --stack-trace-frame-limit=N option for configuring the limit
	    of the number of printed backtrace frames.
	  * Implemented decoding of statmount, listmount, lsm_get_self_attr,
	    lsm_set_self_attr, and lsm_list_modules syscalls.
	  * Implemented decoding of setsockopt(TCP_AO_ADD_KEY).
	  * Updated decoding of landlock_create_ruleset and landlock_add_rule syscalls.
	  * Updated decoding of SMC_DIAG_DMBINFO netlink attribute.
	  * Updated decoding of UBI_IOCATT ioctl command.
	  * Enhanced decoding of mount attributes of fsmount and mount_setattr syscalls.
	  * Updated lists of BPF_*, KEXEC_*, KVM_*, PERF_*, SOL_*, STATX_*, UFFD_*,
	    and V4L2_* constants.
	  * Updated lists of ioctl commands from Linux 6.8.
    6.7
	* Improvements
	  * Implemented -kk/--stack-traces=source option for libdw-based stack tracing.
	  * Implemented decoding of futex_wake, futex_wait, and sys_futex_requeue
	    syscalls.
	  * Updated lists of BPF_*, BTRFS_*, IORING_*, KVM_*, LANDLOCK_*, PR_*,
	    and TCP_* constants.
	  * Updated lists of ioctl commands from Linux 6.7.
	* Bug fixes
	  * Fix strace -r during the first second after booting to show correct relative
	    timestamps.
	  * Fix strace -f entering deadlock on exit if there are tracee processes
	    spawned using vfork semantics.

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
 lfs/strace | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)
  

Patch

diff --git a/lfs/strace b/lfs/strace
index 97253340a..48c9180b1 100644
--- a/lfs/strace
+++ b/lfs/strace
@@ -26,7 +26,7 @@  include Config
 
 SUMMARY    = A utility to trace the system calls of a program
 
-VER        = 6.6
+VER        = 6.10
 # SUP_ARCHES = x86_64 aarch64
 
 THISAPP    = strace-$(VER)
@@ -35,7 +35,7 @@  DL_FROM    = $(URL_IPFIRE)
 DIR_APP    = $(DIR_SRC)/$(THISAPP)
 TARGET     = $(DIR_INFO)/$(THISAPP)
 PROG       = strace
-PAK_VER    = 11
+PAK_VER    = 12
 
 DEPS       =
 
@@ -49,7 +49,7 @@  objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = f1465fec58ac20ccce6a88441a34b1402e5c51f0bb4b7963f69b5ab5019a8c8722e3406c6f93c10c1eea11d17de7f9874895d6f4df24cf9ec42a18f36267687b
+$(DL_FILE)_BLAKE2 = acb26ed66fbfcb1bc6403441b632df2f7af018345e52120b8715e2bbfa578fc80af8e3844cba3e131601285f9e72b15c8b4ea56025c5efae846d2d36960f6c04
 
 install : $(TARGET)
 
@@ -82,7 +82,9 @@  $(subst %,%_BLAKE2,$(objects)) :
 $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
 	@$(PREBUILD)
 	@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE)
-	cd $(DIR_APP) && ./configure --prefix=/usr --enable-mpers=check
+	cd $(DIR_APP) && ./configure \
+				--prefix=/usr \
+				--enable-mpers=check
 	cd $(DIR_APP) && make $(MAKETUNING)
 	cd $(DIR_APP) && make install
 	@rm -rf $(DIR_APP)