transmission: add copy_file_range syscall to seccomp
authorMarius Dinu <m95d+git@psihoexpert.ro>
Sun, 23 Jul 2023 17:36:02 +0000 (20:36 +0300)
committerJosef Schlehofer <pepe.schlehofer@gmail.com>
Fri, 16 Feb 2024 18:14:29 +0000 (19:14 +0100)
Fixes this crash:

root@RPi3OpenWrt:/# grep -i seccomp /var/log/audit/audit.log
type=SECCOMP msg=audit(1689503903.597:16): auid=4294967295 uid=224 gid=1012 ses=4294967295 pid=1752 comm="transmission-da" exe="/usr/bin/transmission-daemon" sig=31 arch=c00000b7 syscall=285 compat=0 ip=0x7fa3b0eefc code=0x80000000
root@RPi3OpenWrt:/# ausyscall 285
copy_file_range
root@RPi3OpenWrt:/#

Signed-off-by: Marius Dinu <m95d+git@psihoexpert.ro>
(cherry picked from commit f0926b44f48fa04401c660b0818e74f6b654e5bc)

net/transmission/Makefile
net/transmission/files/transmission-daemon.json

index dd75860a907a7a60e12313a78edf3745d5fd6e75..ec8ec7cd896e6041068a88f431783f06df385764 100644 (file)
@@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
 
 PKG_NAME:=transmission
 PKG_VERSION:=3.00
-PKG_RELEASE:=19
+PKG_RELEASE:=20
 
 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
 PKG_SOURCE_URL:=@GITHUB/transmission/transmission-releases/master
index 3c42264b71d4c52dc244f2180a0e4f11f42c202b..92c930cd62d8cf34b010617459a6771c96f919f8 100644 (file)
@@ -14,6 +14,7 @@
                                "clone",
                                "close",
                                "connect",
+                               "copy_file_range",
                                "epoll_create1",
                                "epoll_ctl",
                                "epoll_pwait",