1
0
mirror of https://github.com/systemd/systemd.git synced 2025-02-02 13:47:27 +03:00

seccomp-util: add getxattrat and friends

The new syscalls are added in kernel-6.13:
6140be90ec
This commit is contained in:
Yu Watanabe 2024-12-10 11:16:40 +09:00
parent 896b53ef4e
commit fb35d775a7

View File

@ -502,6 +502,7 @@ const SyscallFilterSet syscall_filter_sets[_SYSCALL_FILTER_SET_MAX] = {
"getdents\0"
"getdents64\0"
"getxattr\0"
"getxattrat\0"
"inotify_add_watch\0"
"inotify_init\0"
"inotify_init1\0"
@ -511,6 +512,7 @@ const SyscallFilterSet syscall_filter_sets[_SYSCALL_FILTER_SET_MAX] = {
"linkat\0"
"listmount\0"
"listxattr\0"
"listxattrat\0"
"llistxattr\0"
"lremovexattr\0"
"lsetxattr\0"
@ -531,11 +533,13 @@ const SyscallFilterSet syscall_filter_sets[_SYSCALL_FILTER_SET_MAX] = {
"readlink\0"
"readlinkat\0"
"removexattr\0"
"removexattrat\0"
"rename\0"
"renameat\0"
"renameat2\0"
"rmdir\0"
"setxattr\0"
"setxattrat\0"
"stat\0"
"stat64\0"
"statfs\0"