Displaying 1 result from an estimated 1 matches for "nr_socket".
Did you mean:
ng_socket
2025 Jan 04
0
Update sandbox to allow afalg
...d and attempting
ssh. The second that the security sandbox was blocking the socket call to
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...