vmm: seccomp: allow http-server to use sendto
Fixes: https://github.com/cloud-hypervisor/cloud-hypervisor/issues/7449 Signed-off-by: Alyssa Ross <hi@alyssa.is>
This commit is contained in:
parent
9158c36dbf
commit
d59dfdf8b6
1 changed files with 1 additions and 0 deletions
|
|
@ -859,6 +859,7 @@ fn http_api_thread_rules() -> Result<Vec<(i64, Vec<SeccompRule>)>, BackendError>
|
|||
(libc::SYS_recvfrom, vec![]),
|
||||
(libc::SYS_recvmsg, vec![]),
|
||||
(libc::SYS_sched_yield, vec![]),
|
||||
(libc::SYS_sendto, vec![]),
|
||||
(libc::SYS_sigaltstack, vec![]),
|
||||
(libc::SYS_write, vec![]),
|
||||
(libc::SYS_rt_sigprocmask, vec![]),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue