From 683ea90f6434a70a09e2db670aa5eb979f4d339a Mon Sep 17 00:00:00 2001 From: Jimmy Domagala-Tang Date: Thu, 4 Apr 2024 09:21:02 -0400 Subject: [PATCH] Merge pull request #17299 from overleaf/jdt-clsi-allow-getrandom Allow getrandom calls in CLSI GitOrigin-RevId: 3fcb9239422e25456ef5211248aad4bcd2ec786f --- services/clsi/seccomp/clsi-profile.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/services/clsi/seccomp/clsi-profile.json b/services/clsi/seccomp/clsi-profile.json index e7e9dd010b..084354b15c 100644 --- a/services/clsi/seccomp/clsi-profile.json +++ b/services/clsi/seccomp/clsi-profile.json @@ -6,6 +6,11 @@ "SCMP_ARCH_X32" ], "syscalls": [ + { + "name": "getrandom", + "action": "SCMP_ACT_ALLOW", + "args": [] + }, { "name": "access", "action": "SCMP_ACT_ALLOW",