Skip to content

Commit 901df8e

Browse files
committed
chore(seccomp): add read syscall to vcpu filter
This is required by Secret Freedom to implement the userfault protocol. Signed-off-by: Nikita Kalyazin <[email protected]>
1 parent 3fc3c74 commit 901df8e

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

resources/seccomp/aarch64-unknown-linux-musl.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -743,6 +743,9 @@
743743
{
744744
"syscall": "exit_group"
745745
},
746+
{
747+
"syscall": "read"
748+
},
746749
{
747750
"syscall": "write"
748751
},

resources/seccomp/x86_64-unknown-linux-musl.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -755,6 +755,9 @@
755755
{
756756
"syscall": "exit_group"
757757
},
758+
{
759+
"syscall": "read"
760+
},
758761
{
759762
"syscall": "write"
760763
},

0 commit comments

Comments
 (0)