Skip to content

Commit 2a5c976

Browse files
committed
seccomp: Allow syscalls needed for cloning EventFD
Signed-off-by: Adam Jensen <[email protected]>
1 parent 1d1d916 commit 2a5c976

File tree

2 files changed

+24
-0
lines changed

2 files changed

+24
-0
lines changed

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

+12
Original file line numberDiff line numberDiff line change
@@ -1041,6 +1041,18 @@
10411041
{
10421042
"syscall": "sendmsg",
10431043
"comment": "Used by vhost-user frontend to communicate with the backend"
1044+
},
1045+
{
1046+
"syscall": "dup",
1047+
"comment": "Used when resetting VirtIO devices"
1048+
},
1049+
{
1050+
"syscall": "fcntl",
1051+
"comment": "Used when resetting VirtIO devices"
1052+
},
1053+
{
1054+
"syscall": "readlink",
1055+
"comment": "Used when resetting VirtIO devices"
10441056
}
10451057
]
10461058
}

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

+12
Original file line numberDiff line numberDiff line change
@@ -1245,6 +1245,18 @@
12451245
{
12461246
"syscall": "sendmsg",
12471247
"comment": "Used by vhost-user frontend to communicate with the backend"
1248+
},
1249+
{
1250+
"syscall": "dup",
1251+
"comment": "Used when resetting VirtIO devices"
1252+
},
1253+
{
1254+
"syscall": "fcntl",
1255+
"comment": "Used when resetting VirtIO devices"
1256+
},
1257+
{
1258+
"syscall": "readlink",
1259+
"comment": "Used when resetting VirtIO devices"
12481260
}
12491261
]
12501262
}

0 commit comments

Comments
 (0)