|
@@ -4017,20 +4017,26 @@ Old param mode (ARM only).
|
|
ETEXI
|
|
ETEXI
|
|
|
|
|
|
DEF("sandbox", HAS_ARG, QEMU_OPTION_sandbox, \
|
|
DEF("sandbox", HAS_ARG, QEMU_OPTION_sandbox, \
|
|
- "-sandbox on[,obsolete=allow|deny]\n" \
|
|
|
|
|
|
+ "-sandbox on[,obsolete=allow|deny][,elevateprivileges=allow|deny|children]\n" \
|
|
" Enable seccomp mode 2 system call filter (default 'off').\n" \
|
|
" Enable seccomp mode 2 system call filter (default 'off').\n" \
|
|
" use 'obsolete' to allow obsolete system calls that are provided\n" \
|
|
" use 'obsolete' to allow obsolete system calls that are provided\n" \
|
|
" by the kernel, but typically no longer used by modern\n" \
|
|
" by the kernel, but typically no longer used by modern\n" \
|
|
- " C library implementations.\n",
|
|
|
|
|
|
+ " C library implementations.\n" \
|
|
|
|
+ " use 'elevateprivileges' to allow or deny QEMU process to elevate\n" \
|
|
|
|
+ " its privileges by blacklisting all set*uid|gid system calls.\n" \
|
|
|
|
+ " The value 'children' will deny set*uid|gid system calls for\n" \
|
|
|
|
+ " main QEMU process but will allow forks and execves to run unprivileged\n",
|
|
QEMU_ARCH_ALL)
|
|
QEMU_ARCH_ALL)
|
|
STEXI
|
|
STEXI
|
|
-@item -sandbox @var{arg}[,obsolete=@var{string}]
|
|
|
|
|
|
+@item -sandbox @var{arg}[,obsolete=@var{string}][,elevateprivileges=@var{string}]
|
|
@findex -sandbox
|
|
@findex -sandbox
|
|
Enable Seccomp mode 2 system call filter. 'on' will enable syscall filtering and 'off' will
|
|
Enable Seccomp mode 2 system call filter. 'on' will enable syscall filtering and 'off' will
|
|
disable it. The default is 'off'.
|
|
disable it. The default is 'off'.
|
|
@table @option
|
|
@table @option
|
|
@item obsolete=@var{string}
|
|
@item obsolete=@var{string}
|
|
Enable Obsolete system calls
|
|
Enable Obsolete system calls
|
|
|
|
+@item elevateprivileges=@var{string}
|
|
|
|
+Disable set*uid|gid system calls
|
|
@end table
|
|
@end table
|
|
ETEXI
|
|
ETEXI
|
|
|
|
|