public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
From: Adolf Belka <adolf.belka@ipfire.org>
To: development@lists.ipfire.org
Subject: [PATCH] strace: Update to version 6.10
Date: Tue, 13 Aug 2024 18:19:48 +0200	[thread overview]
Message-ID: <20240813162000.1113995-13-adolf.belka@ipfire.org> (raw)
In-Reply-To: <20240813162000.1113995-1-adolf.belka@ipfire.org>

[-- Attachment #1: Type: text/plain, Size: 4611 bytes --]

- 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(a)ipfire.org>
---
 lfs/strace | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

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)
-- 
2.46.0


      parent reply	other threads:[~2024-08-13 16:19 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-08-13 16:19 [PATCH] bash: Update to include patches 27 to 32 Adolf Belka
2024-08-13 16:19 ` [PATCH 1/2] cups-filters: Ship due to sobump in poppler-24.08.0 Adolf Belka
2024-08-13 16:25   ` Adolf Belka
2024-08-13 16:19 ` [PATCH] curl: Update to version 8.9.1 Adolf Belka
2024-08-13 16:19 ` [PATCH] exfatprogs: Update to version 1.2.5 Adolf Belka
2024-08-13 16:19 ` [PATCH] git: Update to version 2.46.0 Adolf Belka
2024-08-13 16:19 ` [PATCH] hwdata: Update to the latest versions of pci.ids & usb.ids Adolf Belka
2024-08-13 16:19 ` [PATCH] iproute2: Update to version 6.10.0 Adolf Belka
2024-08-13 16:19 ` [PATCH] knot: Update to version 3.3.8 Adolf Belka
2024-08-13 16:19 ` [PATCH] lz4: Update to version 1.10.0 Adolf Belka
2024-08-13 16:19 ` [PATCH 1/2] ncdu: Update to version 1.20 Adolf Belka
2024-08-13 16:24   ` Adolf Belka
2024-08-13 16:19 ` [PATCH] readline: Update patches to include 11 - 13 Adolf Belka
2024-08-13 16:19 ` [PATCH] sdl2: Update to version 2.30.6 Adolf Belka
2024-08-13 16:19 ` Adolf Belka [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20240813162000.1113995-13-adolf.belka@ipfire.org \
    --to=adolf.belka@ipfire.org \
    --cc=development@lists.ipfire.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox