You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs: add io_uring_* syscalls to seccomp significant syscalls table
The io_uring_enter, io_uring_register, and io_uring_setup syscalls were
removed from Docker's default seccomp allowlist in moby/moby#46762 due
to security vulnerabilities that can be exploited to escape containers.
Add them to the significant blocked syscalls table.
Fixes#23784
Copy file name to clipboardExpand all lines: content/manuals/engine/security/seccomp.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -71,6 +71,9 @@ the reason each syscall is blocked rather than white-listed.
71
71
|`init_module`| Deny manipulation and functions on kernel modules. Also gated by `CAP_SYS_MODULE`. |
72
72
|`ioperm`| Prevent containers from modifying kernel I/O privilege levels. Already gated by `CAP_SYS_RAWIO`. |
73
73
|`iopl`| Prevent containers from modifying kernel I/O privilege levels. Already gated by `CAP_SYS_RAWIO`. |
74
+
|`io_uring_enter`| Blocked due to security vulnerabilities that can be exploited to break out of containers. See [moby/moby#46762](https://github.com/moby/moby/pull/46762). |
75
+
|`io_uring_register`| Blocked due to security vulnerabilities that can be exploited to break out of containers. See [moby/moby#46762](https://github.com/moby/moby/pull/46762). |
76
+
|`io_uring_setup`| Blocked due to security vulnerabilities that can be exploited to break out of containers. See [moby/moby#46762](https://github.com/moby/moby/pull/46762). |
74
77
|`kcmp`| Restrict process inspection capabilities, already blocked by dropping `CAP_SYS_PTRACE`. |
75
78
|`kexec_file_load`| Sister syscall of `kexec_load` that does the same thing, slightly different arguments. Also gated by `CAP_SYS_BOOT`. |
76
79
|`kexec_load`| Deny loading a new kernel for later execution. Also gated by `CAP_SYS_BOOT`. |
0 commit comments