1
0
mirror of https://gitlab.com/libvirt/libvirt.git synced 2025-03-07 17:28:15 +00:00

remote: use SocketMode=0600 when polkit is not compiled

The systemd .socket unit files we ship for libvirt daemons use
SocketMode=0666 on the assumption that libvirt is built with
polkit which provides access control.

Some people, however, may have explicitly turned off polkit at
build time and not realize that leaves them insecure unless
they also change the SocketMode.  This addresses that problem
by making the SocketMode default to 0600 when polkit is
disabled at compile time.

Note we cannot automatically fix the case where the user
compiles polkit, but then overrides the libvirtd.conf defaults
to disable polkit. This is what lead to CVE-2020-15708 in
Ubuntu 20.10.  We can at least improve the inline comments
in the config file to give a clearer warning though, which
may have helped avoid the mistaken config.

Reviewed-by: Jiri Denemark <jdenemar@redhat.com>
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
This commit is contained in:
Daniel P. Berrangé 2020-08-07 13:37:05 +01:00
parent e6285f84fa
commit b196f8fcdd
3 changed files with 43 additions and 12 deletions

View File

@ -713,6 +713,12 @@ foreach data : virt_daemon_confs
daemon_conf.set('DAEMON_NAME_UC', name_uc) daemon_conf.set('DAEMON_NAME_UC', name_uc)
# to silence meson warning about missing 'CONFIG' in the configuration_data # to silence meson warning about missing 'CONFIG' in the configuration_data
daemon_conf.set('CONFIG', '@CONFIG@') daemon_conf.set('CONFIG', '@CONFIG@')
if conf.has('WITH_POLKIT')
daemon_conf.set('default_auth', 'polkit')
else
daemon_conf.set('default_auth', 'none')
endif
if data.get('with_ip', false) if data.get('with_ip', false)
conf_in = libvirtd_conf_tmp conf_in = libvirtd_conf_tmp
@ -792,6 +798,11 @@ if conf.has('WITH_LIBVIRTD')
unit_conf.set('service', unit['service']) unit_conf.set('service', unit['service'])
unit_conf.set('sockprefix', unit['sockprefix']) unit_conf.set('sockprefix', unit['sockprefix'])
unit_conf.set('deps', unit.get('deps', '')) unit_conf.set('deps', unit.get('deps', ''))
if conf.has('WITH_POLKIT')
unit_conf.set('mode', '0666')
else
unit_conf.set('mode', '0600')
endif
configure_file( configure_file(
input: unit['service_in'], input: unit['service_in'],

View File

@ -127,6 +127,8 @@
# #
# Authentication. # Authentication.
# #
# There are the following choices available:
#
# - none: do not perform auth checks. If you can connect to the # - none: do not perform auth checks. If you can connect to the
# socket you are allowed. This is suitable if there are # socket you are allowed. This is suitable if there are
# restrictions on connecting to the socket (eg, UNIX # restrictions on connecting to the socket (eg, UNIX
@ -144,21 +146,39 @@
# full read/write access (aka sudo like), while anyone # full read/write access (aka sudo like), while anyone
# is allowed read/only access. # is allowed read/only access.
# #
# Set an authentication scheme for UNIX read-only sockets # Set an authentication scheme for UNIX read-only sockets
#
# By default socket permissions allow anyone to connect # By default socket permissions allow anyone to connect
# #
# To restrict monitoring of domains you may wish to enable # If libvirt was compiled without support for 'polkit', then
# an authentication mechanism here # no access control checks are done, but libvirt still only
#auth_unix_ro = "none" # allows execution of APIs which don't change state.
# Set an authentication scheme for UNIX read-write sockets
# By default socket permissions only allow root. If PolicyKit
# support was compiled into libvirt, the default will be to
# use 'polkit' auth.
# #
# If the unix_sock_rw_perms are changed you may wish to enable # If libvirt was compiled with support for 'polkit', then
# an authentication mechanism here # the libvirt socket will perform a check with polkit after
#auth_unix_rw = "none" # connections. The default policy still allows any local
# user access.
#
# To restrict monitoring of domains you may wish to either
# enable 'sasl' here, or change the polkit policy definition.
#auth_unix_ro = "@default_auth@"
# Set an authentication scheme for UNIX read-write sockets.
#
# If libvirt was compiled without support for 'polkit', then
# the systemd .socket files will use SocketMode=0600 by default
# thus only allowing root user to connect, and 'auth_unix_rw'
# will default to 'none'.
#
# If libvirt was compiled with support for 'polkit', then
# the systemd .socket files will use SocketMode=0666 which
# allows any user to connect and 'auth_iunix_rw' will default
# to 'polkit'. If you disable use of 'polkit' here, then it
# is essential to change the systemd SocketMode parameter
# back to 0600, to avoid an insecure configuration.
#
#auth_unix_rw = "@default_auth@"
@CUT_ENABLE_IP@ @CUT_ENABLE_IP@
# Change the authentication scheme for TCP sockets. # Change the authentication scheme for TCP sockets.

View File

@ -8,7 +8,7 @@ Before=@service@.service
# when using systemd version < 227 # when using systemd version < 227
ListenStream=@runstatedir@/libvirt/@sockprefix@-sock ListenStream=@runstatedir@/libvirt/@sockprefix@-sock
Service=@service@.service Service=@service@.service
SocketMode=0666 SocketMode=@mode@
[Install] [Install]
WantedBy=sockets.target WantedBy=sockets.target