2012-04-04 12:09:09 +00:00
|
|
|
/*
|
2018-02-20 13:16:28 +00:00
|
|
|
* remote_daemon_config.c: libvirtd config file handling
|
2012-04-04 12:09:09 +00:00
|
|
|
*
|
2018-02-20 13:16:28 +00:00
|
|
|
* Copyright (C) 2006-2018 Red Hat, Inc.
|
2012-04-04 12:09:09 +00:00
|
|
|
* Copyright (C) 2006 Daniel P. Berrange
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2012-09-20 22:30:55 +00:00
|
|
|
* License along with this library. If not, see
|
2012-07-21 10:06:23 +00:00
|
|
|
* <http://www.gnu.org/licenses/>.
|
2012-04-04 12:09:09 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
2018-02-20 13:16:28 +00:00
|
|
|
#include "remote_daemon_config.h"
|
2012-12-12 16:35:35 +00:00
|
|
|
#include "virconf.h"
|
2012-12-12 18:06:53 +00:00
|
|
|
#include "viralloc.h"
|
2012-12-13 18:21:53 +00:00
|
|
|
#include "virerror.h"
|
2012-12-12 17:59:27 +00:00
|
|
|
#include "virlog.h"
|
2012-04-04 14:00:17 +00:00
|
|
|
#include "rpc/virnetserver.h"
|
2012-04-04 12:09:09 +00:00
|
|
|
#include "configmake.h"
|
2018-02-20 13:16:28 +00:00
|
|
|
#include "remote_protocol.h"
|
|
|
|
#include "remote_driver.h"
|
2017-02-07 15:16:42 +00:00
|
|
|
#include "util/virnetdevopenvswitch.h"
|
2013-04-03 10:36:23 +00:00
|
|
|
#include "virstring.h"
|
|
|
|
#include "virutil.h"
|
2012-04-04 12:09:09 +00:00
|
|
|
|
|
|
|
#define VIR_FROM_THIS VIR_FROM_CONF
|
|
|
|
|
2014-02-28 12:16:17 +00:00
|
|
|
VIR_LOG_INIT("daemon.libvirtd-config");
|
|
|
|
|
2012-04-04 12:09:09 +00:00
|
|
|
|
2014-03-18 08:19:33 +00:00
|
|
|
static int
|
|
|
|
remoteConfigGetAuth(virConfPtr conf,
|
2016-07-08 10:37:40 +00:00
|
|
|
const char *filename,
|
2014-03-18 08:19:33 +00:00
|
|
|
const char *key,
|
2016-07-08 10:37:40 +00:00
|
|
|
int *auth)
|
2014-03-18 08:19:33 +00:00
|
|
|
{
|
2016-07-08 10:37:40 +00:00
|
|
|
char *authstr = NULL;
|
2012-04-04 12:09:09 +00:00
|
|
|
|
2016-07-08 10:37:40 +00:00
|
|
|
if (virConfGetValueString(conf, key, &authstr) < 0)
|
2012-04-04 12:09:09 +00:00
|
|
|
return -1;
|
|
|
|
|
2016-07-08 10:37:40 +00:00
|
|
|
if (!authstr)
|
2012-04-04 12:09:09 +00:00
|
|
|
return 0;
|
|
|
|
|
2016-07-08 10:37:40 +00:00
|
|
|
if (STREQ(authstr, "none")) {
|
2012-04-04 12:09:09 +00:00
|
|
|
*auth = VIR_NET_SERVER_SERVICE_AUTH_NONE;
|
2012-09-20 11:58:29 +00:00
|
|
|
#if WITH_SASL
|
2016-07-08 10:37:40 +00:00
|
|
|
} else if (STREQ(authstr, "sasl")) {
|
2012-04-04 12:09:09 +00:00
|
|
|
*auth = VIR_NET_SERVER_SERVICE_AUTH_SASL;
|
|
|
|
#endif
|
2016-07-08 10:37:40 +00:00
|
|
|
} else if (STREQ(authstr, "polkit")) {
|
2012-04-04 12:09:09 +00:00
|
|
|
*auth = VIR_NET_SERVER_SERVICE_AUTH_POLKIT;
|
|
|
|
} else {
|
2012-07-18 18:26:35 +00:00
|
|
|
virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
|
2016-07-08 10:37:40 +00:00
|
|
|
_("%s: %s: unsupported auth %s"),
|
|
|
|
filename, key, authstr);
|
|
|
|
VIR_FREE(authstr);
|
2012-04-04 12:09:09 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2016-07-08 10:37:40 +00:00
|
|
|
VIR_FREE(authstr);
|
2012-04-04 12:09:09 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
daemonConfigFilePath(bool privileged, char **configfile)
|
|
|
|
{
|
|
|
|
if (privileged) {
|
2019-06-21 16:19:11 +00:00
|
|
|
if (VIR_STRDUP(*configfile,
|
|
|
|
SYSCONFDIR "/libvirt/" DAEMON_NAME ".conf") < 0)
|
2013-05-03 12:39:39 +00:00
|
|
|
goto error;
|
2012-04-04 12:09:09 +00:00
|
|
|
} else {
|
2012-05-03 16:36:27 +00:00
|
|
|
char *configdir = NULL;
|
2012-04-04 12:09:09 +00:00
|
|
|
|
2012-05-24 12:29:42 +00:00
|
|
|
if (!(configdir = virGetUserConfigDirectory()))
|
2012-04-04 12:09:09 +00:00
|
|
|
goto error;
|
|
|
|
|
2019-06-21 16:19:11 +00:00
|
|
|
if (virAsprintf(configfile, "%s/%s.conf", configdir, DAEMON_NAME) < 0) {
|
2012-05-03 16:36:27 +00:00
|
|
|
VIR_FREE(configdir);
|
2013-07-04 09:58:18 +00:00
|
|
|
goto error;
|
2012-04-04 12:09:09 +00:00
|
|
|
}
|
2012-05-03 16:36:27 +00:00
|
|
|
VIR_FREE(configdir);
|
2012-04-04 12:09:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
2014-03-25 06:45:38 +00:00
|
|
|
error:
|
2012-04-04 12:09:09 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct daemonConfig*
|
|
|
|
daemonConfigNew(bool privileged ATTRIBUTE_UNUSED)
|
|
|
|
{
|
|
|
|
struct daemonConfig *data;
|
|
|
|
|
2013-07-04 09:58:18 +00:00
|
|
|
if (VIR_ALLOC(data) < 0)
|
2012-04-04 12:09:09 +00:00
|
|
|
return NULL;
|
|
|
|
|
2019-06-21 16:19:11 +00:00
|
|
|
#ifdef WITH_IP
|
remote: introduce virtproxyd daemon to handle IP connectivity
The libvirtd daemon provides the traditional libvirt experience where
all the drivers are in a single daemon, and is accessible over both
local UNIX sockets and remote IP sockets.
In the new world we're having a set of per-driver daemons which will
primarily be accessed locally via their own UNIX sockets.
We still, however, need to allow for case of applications which will
connect to libvirt remotely. These remote connections can be done as
TCP/TLS sockets, or by SSH tunnelling to the UNIX socket.
In the later case, the old libvirt.so clients will only know about
the path to the old libvirtd socket /var/run/libvirt/libvirt-sock,
and not the new driver sockets /var/run/libvirt/virtqemud-sock.
It is also not desirable to expose the main driver specific daemons
over IP directly to minimize their attack service.
Thus the virtproxyd daemon steps into place, to provide TCP/TLS sockets,
and back compat for the old libvirtd UNIX socket path(s). It will then
forward all RPC calls made to the appropriate driver specific daemon.
Essentially it is equivalent to the old libvirtd with absolutely no
drivers registered except for the remote driver (and other stateless
drivers in libvirt.so).
We could have modified libvirtd so none of the drivers are registed
to get the same end result. We could even add a libvirtd.conf parameter
to control whether the drivers are loaded to enable users to switch back
to the old world if we discover bugs in the split-daemon model. Using a
new daemon though has some advantages
- We can make virtproxyd and the virtXXXd per-driver daemons all
have "Conflicts: libvirtd.service" in their systemd unit files.
This will guarantee that libvirtd is never started at the same
time, as this would result in two daemons running the same driver.
Fortunately drivers use locking to protect themselves, but it is
better to avoid starting a daemon we know will conflict.
- It allows us to break CLI compat to remove the --listen parameter.
Both listen_tcp and listen_tls parameters in /etc/libvirtd/virtd.conf
will default to zero. Either TLS or TCP can be enabled exclusively
though virtd.conf without requiring the extra step of adding --listen.
- It allows us to set a strict SELinux policy over virtproxyd. For
back compat the libvirtd policy must continue to allow all drivers
to run. We can't easily give a second policy to libvirtd which
locks it down. By introducing a new virtproxyd we can set a strict
policy for that daemon only.
- It gets rid of the weird naming of having a daemon with "lib" in
its name. Now all normal daemons libvirt ships will have "virt"
as their prefix not "libvirt".
- Distros can more easily choose their upgrade path. They can
ship both sets of daemons in their packages, and choose to
either enable libvirtd, or enable the per-driver daemons and
virtproxyd out of the box. Users can easily override this if
desired by just tweaking which systemd units are active.
After some time we can deprecate use of libvirtd and after some more
time delete it entirely, leaving us in a pretty world filled with
prancing unicorns.
The main downside with introducing a new daemon, and with the
per-driver daemons in general, is figuring out the correct upgrade
path.
The conservative option is to leave libvirtd running if it was
an existing installation. Only use the new daemons & virtproxyd
on completely new installs.
The aggressive option is to disable libvirtd if already running
and activate all the new daemons.
Reviewed-by: Andrea Bolognani <abologna@redhat.com>
Reviewed-by: Christophe de Dinechin <dinechin@redhat.com>
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
2019-07-04 11:33:23 +00:00
|
|
|
# ifdef LIBVIRTD
|
|
|
|
data->listen_tls = 1; /* Only honoured if --listen is set */
|
|
|
|
# else /* ! LIBVIRTD */
|
|
|
|
data->listen_tls = 0; /* Always honoured, --listen doesn't exist. */
|
|
|
|
# endif /* ! LIBVIRTD */
|
2012-04-04 12:09:09 +00:00
|
|
|
data->listen_tcp = 0;
|
|
|
|
|
2013-05-03 12:39:39 +00:00
|
|
|
if (VIR_STRDUP(data->tls_port, LIBVIRTD_TLS_PORT) < 0 ||
|
|
|
|
VIR_STRDUP(data->tcp_port, LIBVIRTD_TCP_PORT) < 0)
|
|
|
|
goto error;
|
2019-06-21 16:19:11 +00:00
|
|
|
#endif /* !WITH_IP */
|
2012-04-04 12:09:09 +00:00
|
|
|
|
|
|
|
/* Only default to PolicyKit if running as root */
|
2013-01-08 22:19:00 +00:00
|
|
|
#if WITH_POLKIT
|
2012-04-04 12:09:09 +00:00
|
|
|
if (privileged) {
|
|
|
|
data->auth_unix_rw = REMOTE_AUTH_POLKIT;
|
|
|
|
data->auth_unix_ro = REMOTE_AUTH_POLKIT;
|
|
|
|
} else {
|
|
|
|
#endif
|
|
|
|
data->auth_unix_rw = REMOTE_AUTH_NONE;
|
|
|
|
data->auth_unix_ro = REMOTE_AUTH_NONE;
|
2013-01-08 22:19:00 +00:00
|
|
|
#if WITH_POLKIT
|
2012-04-04 12:09:09 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2013-05-03 12:39:39 +00:00
|
|
|
if (VIR_STRDUP(data->unix_sock_rw_perms,
|
|
|
|
data->auth_unix_rw == REMOTE_AUTH_POLKIT ? "0777" : "0700") < 0 ||
|
2015-04-13 14:05:46 +00:00
|
|
|
VIR_STRDUP(data->unix_sock_ro_perms, "0777") < 0 ||
|
|
|
|
VIR_STRDUP(data->unix_sock_admin_perms, "0700") < 0)
|
2013-05-03 12:39:39 +00:00
|
|
|
goto error;
|
2012-04-04 12:09:09 +00:00
|
|
|
|
2019-06-21 16:19:11 +00:00
|
|
|
#ifdef WITH_IP
|
|
|
|
# if WITH_SASL
|
2012-04-04 12:09:09 +00:00
|
|
|
data->auth_tcp = REMOTE_AUTH_SASL;
|
2019-06-21 16:19:11 +00:00
|
|
|
# else
|
2012-04-04 12:09:09 +00:00
|
|
|
data->auth_tcp = REMOTE_AUTH_NONE;
|
2019-06-21 16:19:11 +00:00
|
|
|
# endif
|
2012-04-04 12:09:09 +00:00
|
|
|
data->auth_tls = REMOTE_AUTH_NONE;
|
2019-06-21 16:19:11 +00:00
|
|
|
#endif /* ! WITH_IP */
|
2012-04-04 12:09:09 +00:00
|
|
|
|
|
|
|
data->min_workers = 5;
|
|
|
|
data->max_workers = 20;
|
2014-03-04 17:55:24 +00:00
|
|
|
data->max_clients = 5000;
|
2016-02-29 13:33:20 +00:00
|
|
|
data->max_queued_clients = 1000;
|
2014-03-04 17:55:24 +00:00
|
|
|
data->max_anonymous_clients = 20;
|
2012-04-04 12:09:09 +00:00
|
|
|
|
|
|
|
data->prio_workers = 5;
|
|
|
|
|
|
|
|
data->max_client_requests = 5;
|
|
|
|
|
|
|
|
data->audit_level = 1;
|
|
|
|
data->audit_logging = 0;
|
|
|
|
|
|
|
|
data->keepalive_interval = 5;
|
|
|
|
data->keepalive_count = 5;
|
|
|
|
|
2015-04-13 14:05:46 +00:00
|
|
|
data->admin_min_workers = 5;
|
|
|
|
data->admin_max_workers = 20;
|
|
|
|
data->admin_max_clients = 5000;
|
|
|
|
data->admin_max_queued_clients = 20;
|
|
|
|
data->admin_max_client_requests = 5;
|
|
|
|
|
|
|
|
data->admin_keepalive_interval = 5;
|
|
|
|
data->admin_keepalive_count = 5;
|
|
|
|
|
2017-02-07 15:16:42 +00:00
|
|
|
data->ovs_timeout = VIR_NETDEV_OVS_DEFAULT_TIMEOUT;
|
|
|
|
|
2012-04-04 12:09:09 +00:00
|
|
|
return data;
|
|
|
|
|
2014-03-25 06:45:38 +00:00
|
|
|
error:
|
2012-04-04 12:09:09 +00:00
|
|
|
daemonConfigFree(data);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
daemonConfigFree(struct daemonConfig *data)
|
|
|
|
{
|
|
|
|
char **tmp;
|
|
|
|
|
|
|
|
if (!data)
|
|
|
|
return;
|
|
|
|
|
2019-06-21 16:19:11 +00:00
|
|
|
#ifdef WITH_IP
|
2012-04-04 12:09:09 +00:00
|
|
|
VIR_FREE(data->listen_addr);
|
|
|
|
VIR_FREE(data->tls_port);
|
|
|
|
VIR_FREE(data->tcp_port);
|
2019-06-21 16:19:11 +00:00
|
|
|
#endif /* ! WITH_IP */
|
|
|
|
|
2013-06-28 17:10:10 +00:00
|
|
|
tmp = data->access_drivers;
|
|
|
|
while (tmp && *tmp) {
|
|
|
|
VIR_FREE(*tmp);
|
|
|
|
tmp++;
|
|
|
|
}
|
|
|
|
VIR_FREE(data->access_drivers);
|
2012-04-04 12:09:09 +00:00
|
|
|
|
2015-04-13 14:05:46 +00:00
|
|
|
VIR_FREE(data->unix_sock_admin_perms);
|
2012-04-04 12:09:09 +00:00
|
|
|
VIR_FREE(data->unix_sock_ro_perms);
|
|
|
|
VIR_FREE(data->unix_sock_rw_perms);
|
|
|
|
VIR_FREE(data->unix_sock_group);
|
|
|
|
VIR_FREE(data->unix_sock_dir);
|
|
|
|
|
2019-06-21 16:19:11 +00:00
|
|
|
tmp = data->sasl_allowed_username_list;
|
2012-04-04 12:09:09 +00:00
|
|
|
while (tmp && *tmp) {
|
|
|
|
VIR_FREE(*tmp);
|
|
|
|
tmp++;
|
|
|
|
}
|
2019-06-21 16:19:11 +00:00
|
|
|
VIR_FREE(data->sasl_allowed_username_list);
|
2012-04-04 12:09:09 +00:00
|
|
|
|
2019-06-21 16:19:11 +00:00
|
|
|
#ifdef WITH_IP
|
|
|
|
tmp = data->tls_allowed_dn_list;
|
2012-04-04 12:09:09 +00:00
|
|
|
while (tmp && *tmp) {
|
|
|
|
VIR_FREE(*tmp);
|
|
|
|
tmp++;
|
|
|
|
}
|
2019-06-21 16:19:11 +00:00
|
|
|
VIR_FREE(data->tls_allowed_dn_list);
|
|
|
|
|
2016-06-03 16:53:18 +00:00
|
|
|
VIR_FREE(data->tls_priority);
|
2012-04-04 12:09:09 +00:00
|
|
|
|
|
|
|
VIR_FREE(data->key_file);
|
|
|
|
VIR_FREE(data->ca_file);
|
|
|
|
VIR_FREE(data->cert_file);
|
|
|
|
VIR_FREE(data->crl_file);
|
2019-06-21 16:19:11 +00:00
|
|
|
#endif /* ! WITH_IP */
|
2012-04-04 12:09:09 +00:00
|
|
|
|
2012-04-12 09:10:42 +00:00
|
|
|
VIR_FREE(data->host_uuid);
|
2016-05-03 09:12:41 +00:00
|
|
|
VIR_FREE(data->host_uuid_source);
|
2012-04-04 12:09:09 +00:00
|
|
|
VIR_FREE(data->log_filters);
|
|
|
|
VIR_FREE(data->log_outputs);
|
|
|
|
|
|
|
|
VIR_FREE(data);
|
|
|
|
}
|
|
|
|
|
2012-04-04 12:14:19 +00:00
|
|
|
static int
|
|
|
|
daemonConfigLoadOptions(struct daemonConfig *data,
|
|
|
|
const char *filename,
|
|
|
|
virConfPtr conf)
|
2012-04-04 12:09:09 +00:00
|
|
|
{
|
2019-06-21 16:19:11 +00:00
|
|
|
#ifdef WITH_IP
|
2016-07-08 10:37:40 +00:00
|
|
|
if (virConfGetValueBool(conf, "listen_tcp", &data->listen_tcp) < 0)
|
|
|
|
goto error;
|
|
|
|
if (virConfGetValueBool(conf, "listen_tls", &data->listen_tls) < 0)
|
|
|
|
goto error;
|
|
|
|
if (virConfGetValueString(conf, "tls_port", &data->tls_port) < 0)
|
|
|
|
goto error;
|
|
|
|
if (virConfGetValueString(conf, "tcp_port", &data->tcp_port) < 0)
|
|
|
|
goto error;
|
|
|
|
if (virConfGetValueString(conf, "listen_addr", &data->listen_addr) < 0)
|
|
|
|
goto error;
|
2019-06-21 16:19:11 +00:00
|
|
|
#endif /* !WITH_IP */
|
2012-04-04 12:09:09 +00:00
|
|
|
|
2016-07-08 10:37:40 +00:00
|
|
|
if (remoteConfigGetAuth(conf, filename, "auth_unix_rw", &data->auth_unix_rw) < 0)
|
2012-04-04 12:09:09 +00:00
|
|
|
goto error;
|
2013-01-08 22:19:00 +00:00
|
|
|
#if WITH_POLKIT
|
2012-04-04 12:09:09 +00:00
|
|
|
/* Change default perms to be wide-open if PolicyKit is enabled.
|
|
|
|
* Admin can always override in config file
|
|
|
|
*/
|
|
|
|
if (data->auth_unix_rw == REMOTE_AUTH_POLKIT) {
|
|
|
|
VIR_FREE(data->unix_sock_rw_perms);
|
2013-05-03 12:39:39 +00:00
|
|
|
if (VIR_STRDUP(data->unix_sock_rw_perms, "0777") < 0)
|
2012-04-04 12:09:09 +00:00
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
#endif
|
2016-07-08 10:37:40 +00:00
|
|
|
if (remoteConfigGetAuth(conf, filename, "auth_unix_ro", &data->auth_unix_ro) < 0)
|
2012-04-04 12:09:09 +00:00
|
|
|
goto error;
|
2019-06-21 16:19:11 +00:00
|
|
|
|
|
|
|
#ifdef WITH_IP
|
2016-07-08 10:37:40 +00:00
|
|
|
if (remoteConfigGetAuth(conf, filename, "auth_tcp", &data->auth_tcp) < 0)
|
2012-04-04 12:09:09 +00:00
|
|
|
goto error;
|
2016-07-08 10:37:40 +00:00
|
|
|
if (remoteConfigGetAuth(conf, filename, "auth_tls", &data->auth_tls) < 0)
|
2012-04-04 12:09:09 +00:00
|
|
|
goto error;
|
2019-06-21 16:19:11 +00:00
|
|
|
#endif /* ! WITH_IP */
|
2012-04-04 12:09:09 +00:00
|
|
|
|
2016-07-08 10:37:40 +00:00
|
|
|
if (virConfGetValueStringList(conf, "access_drivers", false,
|
|
|
|
&data->access_drivers) < 0)
|
2013-04-17 11:01:24 +00:00
|
|
|
goto error;
|
|
|
|
|
2016-07-08 10:37:40 +00:00
|
|
|
if (virConfGetValueString(conf, "unix_sock_group", &data->unix_sock_group) < 0)
|
|
|
|
goto error;
|
|
|
|
if (virConfGetValueString(conf, "unix_sock_admin_perms", &data->unix_sock_admin_perms) < 0)
|
|
|
|
goto error;
|
|
|
|
if (virConfGetValueString(conf, "unix_sock_ro_perms", &data->unix_sock_ro_perms) < 0)
|
|
|
|
goto error;
|
|
|
|
if (virConfGetValueString(conf, "unix_sock_rw_perms", &data->unix_sock_rw_perms) < 0)
|
|
|
|
goto error;
|
2012-04-04 12:09:09 +00:00
|
|
|
|
2016-07-08 10:37:40 +00:00
|
|
|
if (virConfGetValueString(conf, "unix_sock_dir", &data->unix_sock_dir) < 0)
|
|
|
|
goto error;
|
2012-04-04 12:09:09 +00:00
|
|
|
|
2019-06-21 16:19:11 +00:00
|
|
|
#ifdef WITH_IP
|
2016-07-08 10:37:40 +00:00
|
|
|
if (virConfGetValueBool(conf, "tls_no_sanity_certificate", &data->tls_no_sanity_certificate) < 0)
|
|
|
|
goto error;
|
|
|
|
if (virConfGetValueBool(conf, "tls_no_verify_certificate", &data->tls_no_verify_certificate) < 0)
|
|
|
|
goto error;
|
2012-04-04 12:09:09 +00:00
|
|
|
|
2016-07-08 10:37:40 +00:00
|
|
|
if (virConfGetValueString(conf, "key_file", &data->key_file) < 0)
|
|
|
|
goto error;
|
|
|
|
if (virConfGetValueString(conf, "cert_file", &data->cert_file) < 0)
|
|
|
|
goto error;
|
|
|
|
if (virConfGetValueString(conf, "ca_file", &data->ca_file) < 0)
|
|
|
|
goto error;
|
|
|
|
if (virConfGetValueString(conf, "crl_file", &data->crl_file) < 0)
|
|
|
|
goto error;
|
2012-04-04 12:09:09 +00:00
|
|
|
|
2016-07-08 10:37:40 +00:00
|
|
|
if (virConfGetValueStringList(conf, "tls_allowed_dn_list", false,
|
|
|
|
&data->tls_allowed_dn_list) < 0)
|
2012-04-04 12:09:09 +00:00
|
|
|
goto error;
|
|
|
|
|
2019-06-21 16:19:11 +00:00
|
|
|
if (virConfGetValueString(conf, "tls_priority", &data->tls_priority) < 0)
|
|
|
|
goto error;
|
|
|
|
#endif /* ! WITH_IP */
|
2012-04-04 12:09:09 +00:00
|
|
|
|
2016-07-08 10:37:40 +00:00
|
|
|
if (virConfGetValueStringList(conf, "sasl_allowed_username_list", false,
|
|
|
|
&data->sasl_allowed_username_list) < 0)
|
2012-04-04 12:09:09 +00:00
|
|
|
goto error;
|
|
|
|
|
2016-07-08 10:37:40 +00:00
|
|
|
if (virConfGetValueUInt(conf, "min_workers", &data->min_workers) < 0)
|
|
|
|
goto error;
|
|
|
|
if (virConfGetValueUInt(conf, "max_workers", &data->max_workers) < 0)
|
|
|
|
goto error;
|
2018-07-03 11:37:36 +00:00
|
|
|
if (data->max_workers < 1) {
|
|
|
|
virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
|
|
|
|
_("'max_workers' must be greater than 0"));
|
|
|
|
goto error;
|
|
|
|
}
|
2016-07-08 10:37:40 +00:00
|
|
|
if (virConfGetValueUInt(conf, "max_clients", &data->max_clients) < 0)
|
|
|
|
goto error;
|
|
|
|
if (virConfGetValueUInt(conf, "max_queued_clients", &data->max_queued_clients) < 0)
|
|
|
|
goto error;
|
|
|
|
if (virConfGetValueUInt(conf, "max_anonymous_clients", &data->max_anonymous_clients) < 0)
|
|
|
|
goto error;
|
2012-04-04 12:09:09 +00:00
|
|
|
|
2016-07-08 10:37:40 +00:00
|
|
|
if (virConfGetValueUInt(conf, "prio_workers", &data->prio_workers) < 0)
|
|
|
|
goto error;
|
2012-04-04 12:09:09 +00:00
|
|
|
|
2016-07-08 10:37:40 +00:00
|
|
|
if (virConfGetValueUInt(conf, "max_client_requests", &data->max_client_requests) < 0)
|
|
|
|
goto error;
|
2012-04-04 12:09:09 +00:00
|
|
|
|
2016-07-08 10:37:40 +00:00
|
|
|
if (virConfGetValueUInt(conf, "admin_min_workers", &data->admin_min_workers) < 0)
|
|
|
|
goto error;
|
|
|
|
if (virConfGetValueUInt(conf, "admin_max_workers", &data->admin_max_workers) < 0)
|
|
|
|
goto error;
|
|
|
|
if (virConfGetValueUInt(conf, "admin_max_clients", &data->admin_max_clients) < 0)
|
|
|
|
goto error;
|
|
|
|
if (virConfGetValueUInt(conf, "admin_max_queued_clients", &data->admin_max_queued_clients) < 0)
|
|
|
|
goto error;
|
|
|
|
if (virConfGetValueUInt(conf, "admin_max_client_requests", &data->admin_max_client_requests) < 0)
|
|
|
|
goto error;
|
2015-04-13 14:05:46 +00:00
|
|
|
|
2016-07-08 10:37:40 +00:00
|
|
|
if (virConfGetValueUInt(conf, "audit_level", &data->audit_level) < 0)
|
|
|
|
goto error;
|
|
|
|
if (virConfGetValueBool(conf, "audit_logging", &data->audit_logging) < 0)
|
|
|
|
goto error;
|
2012-04-04 12:09:09 +00:00
|
|
|
|
2016-07-08 10:37:40 +00:00
|
|
|
if (virConfGetValueString(conf, "host_uuid", &data->host_uuid) < 0)
|
|
|
|
goto error;
|
|
|
|
if (virConfGetValueString(conf, "host_uuid_source", &data->host_uuid_source) < 0)
|
|
|
|
goto error;
|
2012-04-04 12:09:09 +00:00
|
|
|
|
2016-07-08 10:37:40 +00:00
|
|
|
if (virConfGetValueUInt(conf, "log_level", &data->log_level) < 0)
|
|
|
|
goto error;
|
|
|
|
if (virConfGetValueString(conf, "log_filters", &data->log_filters) < 0)
|
|
|
|
goto error;
|
|
|
|
if (virConfGetValueString(conf, "log_outputs", &data->log_outputs) < 0)
|
|
|
|
goto error;
|
2012-04-04 12:09:09 +00:00
|
|
|
|
2016-07-08 10:37:40 +00:00
|
|
|
if (virConfGetValueInt(conf, "keepalive_interval", &data->keepalive_interval) < 0)
|
|
|
|
goto error;
|
|
|
|
if (virConfGetValueUInt(conf, "keepalive_count", &data->keepalive_count) < 0)
|
|
|
|
goto error;
|
2012-04-04 12:09:09 +00:00
|
|
|
|
2016-07-08 10:37:40 +00:00
|
|
|
if (virConfGetValueInt(conf, "admin_keepalive_interval", &data->admin_keepalive_interval) < 0)
|
|
|
|
goto error;
|
|
|
|
if (virConfGetValueUInt(conf, "admin_keepalive_count", &data->admin_keepalive_count) < 0)
|
|
|
|
goto error;
|
2015-04-13 14:05:46 +00:00
|
|
|
|
2017-02-07 15:16:42 +00:00
|
|
|
if (virConfGetValueUInt(conf, "ovs_timeout", &data->ovs_timeout) < 0)
|
|
|
|
goto error;
|
|
|
|
|
2012-04-04 12:09:09 +00:00
|
|
|
return 0;
|
|
|
|
|
2014-03-25 06:45:38 +00:00
|
|
|
error:
|
2012-04-04 12:09:09 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2012-04-04 12:14:19 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* Read the config file if it exists.
|
|
|
|
* Only used in the remote case, hence the name.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
daemonConfigLoadFile(struct daemonConfig *data,
|
|
|
|
const char *filename,
|
|
|
|
bool allow_missing)
|
|
|
|
{
|
2019-09-09 15:56:26 +00:00
|
|
|
VIR_AUTOPTR(virConf) conf = NULL;
|
2012-04-04 12:14:19 +00:00
|
|
|
|
|
|
|
if (allow_missing &&
|
|
|
|
access(filename, R_OK) == -1 &&
|
|
|
|
errno == ENOENT)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
conf = virConfReadFile(filename, 0);
|
|
|
|
if (!conf)
|
|
|
|
return -1;
|
|
|
|
|
2019-09-09 15:56:26 +00:00
|
|
|
return daemonConfigLoadOptions(data, filename, conf);
|
2012-04-04 12:14:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int daemonConfigLoadData(struct daemonConfig *data,
|
|
|
|
const char *filename,
|
|
|
|
const char *filedata)
|
|
|
|
{
|
2019-09-09 15:56:26 +00:00
|
|
|
VIR_AUTOPTR(virConf) conf = NULL;
|
2012-04-04 12:14:19 +00:00
|
|
|
|
2017-08-07 15:12:02 +00:00
|
|
|
conf = virConfReadString(filedata, 0);
|
2012-04-04 12:14:19 +00:00
|
|
|
if (!conf)
|
|
|
|
return -1;
|
|
|
|
|
2019-09-09 15:56:26 +00:00
|
|
|
return daemonConfigLoadOptions(data, filename, conf);
|
2012-04-04 12:14:19 +00:00
|
|
|
}
|