Displaying 1 result from an estimated 1 matches for "alfag".
Did you mean:
alfa
2025 Jan 04
0
Update sandbox to allow afalg
...--- ../../openssh-orig/openssh-9.9p1/sandbox-seccomp-filter.c 2024-09-19
18:20:48.000000000 -0400
+++ sandbox-seccomp-filter.c 2025-01-03 18:20:19.803149104 -0500
@@ -402,6 +402,12 @@
SC_ALLOW_ARG(__NR_socketcall, 0, SYS_SHUTDOWN),
SC_DENY(__NR_socketcall, EACCES),
#endif
+
+ /* Kurlon testing alfag */
+#ifdef __NR_socket
+ SC_ALLOW_ARG(__NR_socket, 0, AF_ALG),
+#endif
+
#if defined(__NR_ioctl) && defined(__s390__)
/* Allow ioctls for ICA crypto card on s390 */
SC_ALLOW_ARG(__NR_ioctl, 1, Z90STAT_STATUS_MASK),
This satisfies the sandbox. Looking at OpenSSL's code, I think the...