2022-07-05 20:40:16 +00:00
|
|
|
/*
|
|
|
|
* qemu_nbdkit.c: helpers for using nbdkit
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* License along with this library. If not, see
|
|
|
|
* <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
#include <glib.h>
|
|
|
|
|
|
|
|
#include "vircommand.h"
|
|
|
|
#include "virerror.h"
|
|
|
|
#include "virlog.h"
|
|
|
|
#include "virpidfile.h"
|
2022-07-08 19:20:20 +00:00
|
|
|
#include "virsecureerase.h"
|
|
|
|
#include "virtime.h"
|
2022-07-05 20:40:16 +00:00
|
|
|
#include "virutil.h"
|
|
|
|
#include "qemu_block.h"
|
|
|
|
#include "qemu_conf.h"
|
|
|
|
#include "qemu_domain.h"
|
|
|
|
#include "qemu_extdevice.h"
|
|
|
|
#include "qemu_nbdkit.h"
|
|
|
|
#include "qemu_security.h"
|
|
|
|
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
|
|
|
#define VIR_FROM_THIS VIR_FROM_QEMU
|
|
|
|
|
|
|
|
VIR_LOG_INIT("qemu.nbdkit");
|
|
|
|
|
|
|
|
VIR_ENUM_IMPL(qemuNbdkitCaps,
|
|
|
|
QEMU_NBDKIT_CAPS_LAST,
|
|
|
|
/* 0 */
|
|
|
|
"plugin-curl", /* QEMU_NBDKIT_CAPS_PLUGIN_CURL */
|
|
|
|
"plugin-ssh", /* QEMU_NBDKIT_CAPS_PLUGIN_SSH */
|
|
|
|
"filter-readahead", /* QEMU_NBDKIT_CAPS_FILTER_READAHEAD */
|
|
|
|
);
|
|
|
|
|
|
|
|
struct _qemuNbdkitCaps {
|
|
|
|
GObject parent;
|
|
|
|
|
|
|
|
char *path;
|
|
|
|
char *version;
|
2022-12-09 16:29:25 +00:00
|
|
|
char *filterDir;
|
|
|
|
char *pluginDir;
|
|
|
|
|
2022-07-21 22:16:40 +00:00
|
|
|
time_t ctime;
|
|
|
|
time_t libvirtCtime;
|
|
|
|
time_t pluginDirMtime;
|
|
|
|
time_t filterDirMtime;
|
|
|
|
unsigned int libvirtVersion;
|
2022-07-05 20:40:16 +00:00
|
|
|
|
|
|
|
virBitmap *flags;
|
|
|
|
};
|
|
|
|
G_DEFINE_TYPE(qemuNbdkitCaps, qemu_nbdkit_caps, G_TYPE_OBJECT);
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
qemuNbdkitCheckCommandCap(qemuNbdkitCaps *nbdkit,
|
|
|
|
virCommand *cmd,
|
|
|
|
qemuNbdkitCapsFlags cap)
|
|
|
|
{
|
|
|
|
if (virCommandRun(cmd, NULL) != 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
VIR_DEBUG("Setting nbdkit capability %i", cap);
|
|
|
|
ignore_value(virBitmapSetBit(nbdkit->flags, cap));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
qemuNbdkitQueryFilter(qemuNbdkitCaps *nbdkit,
|
|
|
|
const char *filter,
|
|
|
|
qemuNbdkitCapsFlags cap)
|
|
|
|
{
|
|
|
|
g_autoptr(virCommand) cmd = virCommandNewArgList(nbdkit->path,
|
|
|
|
"--version",
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
virCommandAddArgPair(cmd, "--filter", filter);
|
|
|
|
|
|
|
|
/* use null plugin to check for filter */
|
|
|
|
virCommandAddArg(cmd, "null");
|
|
|
|
|
|
|
|
qemuNbdkitCheckCommandCap(nbdkit, cmd, cap);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
qemuNbdkitQueryPlugin(qemuNbdkitCaps *nbdkit,
|
|
|
|
const char *plugin,
|
|
|
|
qemuNbdkitCapsFlags cap)
|
|
|
|
{
|
|
|
|
g_autoptr(virCommand) cmd = virCommandNewArgList(nbdkit->path,
|
|
|
|
plugin,
|
|
|
|
"--version",
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
qemuNbdkitCheckCommandCap(nbdkit, cmd, cap);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
qemuNbdkitCapsQueryPlugins(qemuNbdkitCaps *nbdkit)
|
|
|
|
{
|
|
|
|
qemuNbdkitQueryPlugin(nbdkit, "curl", QEMU_NBDKIT_CAPS_PLUGIN_CURL);
|
|
|
|
qemuNbdkitQueryPlugin(nbdkit, "ssh", QEMU_NBDKIT_CAPS_PLUGIN_SSH);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
qemuNbdkitCapsQueryFilters(qemuNbdkitCaps *nbdkit)
|
|
|
|
{
|
|
|
|
qemuNbdkitQueryFilter(nbdkit, "readahead",
|
|
|
|
QEMU_NBDKIT_CAPS_FILTER_READAHEAD);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int
|
2022-12-09 16:29:25 +00:00
|
|
|
qemuNbdkitCapsQueryBuildConfig(qemuNbdkitCaps *nbdkit)
|
2022-07-05 20:40:16 +00:00
|
|
|
{
|
2022-12-09 16:29:25 +00:00
|
|
|
size_t i;
|
|
|
|
g_autofree char *output = NULL;
|
|
|
|
g_auto(GStrv) lines = NULL;
|
|
|
|
const char *line;
|
2022-07-05 20:40:16 +00:00
|
|
|
g_autoptr(virCommand) cmd = virCommandNewArgList(nbdkit->path,
|
2022-12-09 16:29:25 +00:00
|
|
|
"--dump-config",
|
2022-07-05 20:40:16 +00:00
|
|
|
NULL);
|
|
|
|
|
2022-12-09 16:29:25 +00:00
|
|
|
virCommandSetOutputBuffer(cmd, &output);
|
2022-07-05 20:40:16 +00:00
|
|
|
|
|
|
|
if (virCommandRun(cmd, NULL) != 0)
|
|
|
|
return -1;
|
|
|
|
|
2022-12-09 16:29:25 +00:00
|
|
|
lines = g_strsplit(output, "\n", 0);
|
|
|
|
if (!lines)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
for (i = 0; (line = lines[i]); i++) {
|
|
|
|
const char *key;
|
|
|
|
const char *val;
|
|
|
|
char *p;
|
|
|
|
|
|
|
|
p = strchr(line, '=');
|
|
|
|
if (!p)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
*p = '\0';
|
|
|
|
key = line;
|
|
|
|
val = p + 1;
|
|
|
|
|
|
|
|
VIR_DEBUG("Got nbdkit config value %s=%s", key, val);
|
|
|
|
|
|
|
|
if (STREQ(key, "version"))
|
|
|
|
nbdkit->version = g_strdup(val);
|
|
|
|
else if (STREQ(key, "filterdir"))
|
|
|
|
nbdkit->filterDir = g_strdup(val);
|
|
|
|
else if (STREQ(key, "plugindir"))
|
|
|
|
nbdkit->pluginDir = g_strdup(val);
|
|
|
|
}
|
2022-07-05 20:40:16 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
qemuNbdkitCapsFinalize(GObject *object)
|
|
|
|
{
|
|
|
|
qemuNbdkitCaps *nbdkit = QEMU_NBDKIT_CAPS(object);
|
|
|
|
|
|
|
|
g_clear_pointer(&nbdkit->path, g_free);
|
|
|
|
g_clear_pointer(&nbdkit->version, g_free);
|
2022-12-09 16:29:25 +00:00
|
|
|
g_clear_pointer(&nbdkit->filterDir, g_free);
|
|
|
|
g_clear_pointer(&nbdkit->pluginDir, g_free);
|
2022-07-05 20:40:16 +00:00
|
|
|
g_clear_pointer(&nbdkit->flags, virBitmapFree);
|
|
|
|
|
|
|
|
G_OBJECT_CLASS(qemu_nbdkit_caps_parent_class)->finalize(object);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
qemu_nbdkit_caps_init(qemuNbdkitCaps *caps)
|
|
|
|
{
|
|
|
|
caps->flags = virBitmapNew(QEMU_NBDKIT_CAPS_LAST);
|
|
|
|
caps->version = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
qemu_nbdkit_caps_class_init(qemuNbdkitCapsClass *klass)
|
|
|
|
{
|
|
|
|
GObjectClass *obj = G_OBJECT_CLASS(klass);
|
|
|
|
|
|
|
|
obj->finalize = qemuNbdkitCapsFinalize;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
qemuNbdkitCaps *
|
|
|
|
qemuNbdkitCapsNew(const char *path)
|
|
|
|
{
|
|
|
|
qemuNbdkitCaps *caps = g_object_new(QEMU_TYPE_NBDKIT_CAPS, NULL);
|
|
|
|
caps->path = g_strdup(path);
|
|
|
|
|
|
|
|
return caps;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-07-21 22:16:40 +00:00
|
|
|
static time_t
|
|
|
|
qemuNbdkitGetDirMtime(const char *moddir)
|
|
|
|
{
|
|
|
|
struct stat st;
|
|
|
|
|
|
|
|
if (stat(moddir, &st) < 0) {
|
|
|
|
VIR_DEBUG("Failed to stat nbdkit module directory '%s': %s",
|
|
|
|
moddir,
|
|
|
|
g_strerror(errno));
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return st.st_mtime;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-07-21 22:25:16 +00:00
|
|
|
static void
|
2022-07-05 20:40:16 +00:00
|
|
|
qemuNbdkitCapsQuery(qemuNbdkitCaps *caps)
|
|
|
|
{
|
2022-07-21 22:16:40 +00:00
|
|
|
struct stat st;
|
|
|
|
|
|
|
|
if (stat(caps->path, &st) < 0) {
|
|
|
|
VIR_DEBUG("Failed to stat nbdkit binary '%s': %s",
|
|
|
|
caps->path,
|
|
|
|
g_strerror(errno));
|
|
|
|
caps->ctime = 0;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-12-09 16:29:25 +00:00
|
|
|
qemuNbdkitCapsQueryBuildConfig(caps);
|
|
|
|
qemuNbdkitCapsQueryPlugins(caps);
|
|
|
|
qemuNbdkitCapsQueryFilters(caps);
|
|
|
|
|
2022-07-21 22:16:40 +00:00
|
|
|
caps->ctime = st.st_ctime;
|
2022-12-09 16:29:25 +00:00
|
|
|
caps->filterDirMtime = qemuNbdkitGetDirMtime(caps->filterDir);
|
|
|
|
caps->pluginDirMtime = qemuNbdkitGetDirMtime(caps->pluginDir);
|
2022-07-21 22:16:40 +00:00
|
|
|
caps->libvirtCtime = virGetSelfLastChanged();
|
|
|
|
caps->libvirtVersion = LIBVIR_VERSION_NUMBER;
|
2022-07-05 20:40:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool
|
|
|
|
qemuNbdkitCapsGet(qemuNbdkitCaps *nbdkitCaps,
|
|
|
|
qemuNbdkitCapsFlags flag)
|
|
|
|
{
|
|
|
|
return virBitmapIsBitSet(nbdkitCaps->flags, flag);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
qemuNbdkitCapsSet(qemuNbdkitCaps *nbdkitCaps,
|
|
|
|
qemuNbdkitCapsFlags flag)
|
|
|
|
{
|
|
|
|
ignore_value(virBitmapSetBit(nbdkitCaps->flags, flag));
|
|
|
|
}
|
2022-07-21 22:25:16 +00:00
|
|
|
|
|
|
|
|
|
|
|
static bool
|
|
|
|
virNbkditCapsCheckModdir(const char *moddir,
|
|
|
|
time_t expectedMtime)
|
|
|
|
{
|
|
|
|
time_t mtime = qemuNbdkitGetDirMtime(moddir);
|
|
|
|
|
|
|
|
if (mtime != expectedMtime) {
|
|
|
|
VIR_DEBUG("Outdated capabilities for nbdkit: module directory '%s' changed (%lld vs %lld)",
|
|
|
|
moddir, (long long)mtime, (long long)expectedMtime);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static bool
|
|
|
|
virNbdkitCapsIsValid(void *data,
|
|
|
|
void *privData G_GNUC_UNUSED)
|
|
|
|
{
|
|
|
|
qemuNbdkitCaps *nbdkitCaps = data;
|
|
|
|
struct stat st;
|
|
|
|
|
|
|
|
if (!nbdkitCaps->path)
|
|
|
|
return true;
|
|
|
|
|
2022-12-09 16:29:25 +00:00
|
|
|
if (!virNbkditCapsCheckModdir(nbdkitCaps->pluginDir, nbdkitCaps->pluginDirMtime))
|
2022-07-21 22:25:16 +00:00
|
|
|
return false;
|
2022-12-09 16:29:25 +00:00
|
|
|
if (!virNbkditCapsCheckModdir(nbdkitCaps->filterDir, nbdkitCaps->filterDirMtime))
|
2022-07-21 22:25:16 +00:00
|
|
|
return false;
|
|
|
|
|
|
|
|
if (nbdkitCaps->libvirtCtime != virGetSelfLastChanged() ||
|
|
|
|
nbdkitCaps->libvirtVersion != LIBVIR_VERSION_NUMBER) {
|
|
|
|
VIR_DEBUG("Outdated capabilities for '%s': libvirt changed (%lld vs %lld, %lu vs %lu)",
|
|
|
|
nbdkitCaps->path,
|
|
|
|
(long long)nbdkitCaps->libvirtCtime,
|
|
|
|
(long long)virGetSelfLastChanged(),
|
|
|
|
(unsigned long)nbdkitCaps->libvirtVersion,
|
|
|
|
(unsigned long)LIBVIR_VERSION_NUMBER);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (stat(nbdkitCaps->path, &st) < 0) {
|
|
|
|
VIR_DEBUG("Failed to stat nbdkit binary '%s': %s",
|
|
|
|
nbdkitCaps->path,
|
|
|
|
g_strerror(errno));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (st.st_ctime != nbdkitCaps->ctime) {
|
|
|
|
VIR_DEBUG("Outdated capabilities for '%s': nbdkit binary changed (%lld vs %lld)",
|
|
|
|
nbdkitCaps->path,
|
|
|
|
(long long)st.st_ctime, (long long)nbdkitCaps->ctime);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void*
|
|
|
|
virNbdkitCapsNewData(const char *binary,
|
|
|
|
void *privData G_GNUC_UNUSED)
|
|
|
|
{
|
|
|
|
qemuNbdkitCaps *caps = qemuNbdkitCapsNew(binary);
|
|
|
|
qemuNbdkitCapsQuery(caps);
|
|
|
|
|
|
|
|
return caps;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-08-05 20:24:08 +00:00
|
|
|
static int
|
|
|
|
qemuNbdkitCapsValidateBinary(qemuNbdkitCaps *nbdkitCaps,
|
|
|
|
xmlXPathContextPtr ctxt)
|
|
|
|
{
|
|
|
|
g_autofree char *str = NULL;
|
|
|
|
|
|
|
|
if (!(str = virXPathString("string(./path)", ctxt))) {
|
|
|
|
virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
|
|
|
|
_("missing path in nbdkit capabilities cache"));
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (STRNEQ(str, nbdkitCaps->path)) {
|
|
|
|
virReportError(VIR_ERR_INTERNAL_ERROR,
|
|
|
|
_("Expected caps for '%1$s' but saw '%2$s'"),
|
|
|
|
nbdkitCaps->path, str);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
qemuNbdkitCapsParseFlags(qemuNbdkitCaps *nbdkitCaps,
|
|
|
|
xmlXPathContextPtr ctxt)
|
|
|
|
{
|
|
|
|
g_autofree xmlNodePtr *nodes = NULL;
|
|
|
|
size_t i;
|
|
|
|
int n;
|
|
|
|
|
|
|
|
if ((n = virXPathNodeSet("./flag", ctxt, &nodes)) < 0) {
|
|
|
|
virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
|
|
|
|
_("failed to parse qemu capabilities flags"));
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
VIR_DEBUG("Got flags %d", n);
|
|
|
|
for (i = 0; i < n; i++) {
|
|
|
|
unsigned int flag;
|
|
|
|
|
|
|
|
if (virXMLPropEnum(nodes[i], "name", qemuNbdkitCapsTypeFromString,
|
|
|
|
VIR_XML_PROP_REQUIRED, &flag) < 0)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
qemuNbdkitCapsSet(nbdkitCaps, flag);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Parsing a doc that looks like
|
|
|
|
*
|
|
|
|
* <nbdkitCaps>
|
|
|
|
* <path>/some/path</path>
|
|
|
|
* <nbdkitctime>234235253</nbdkitctime>
|
|
|
|
* <plugindirmtime>234235253</plugindirmtime>
|
|
|
|
* <filterdirmtime>234235253</filterdirmtime>
|
|
|
|
* <selfctime>234235253</selfctime>
|
|
|
|
* <selfvers>1002016</selfvers>
|
|
|
|
* <flag name='foo'/>
|
|
|
|
* <flag name='bar'/>
|
|
|
|
* ...
|
|
|
|
* </nbdkitCaps>
|
|
|
|
*
|
|
|
|
* Returns 0 on success, 1 if outdated, -1 on error
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
qemuNbdkitCapsLoadCache(qemuNbdkitCaps *nbdkitCaps,
|
|
|
|
const char *filename)
|
|
|
|
{
|
|
|
|
g_autoptr(xmlDoc) doc = NULL;
|
|
|
|
g_autoptr(xmlXPathContext) ctxt = NULL;
|
|
|
|
long long int l;
|
|
|
|
|
|
|
|
if (!(doc = virXMLParse(filename, NULL, NULL, "nbdkitCaps", &ctxt, NULL, false)))
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
if (virXPathLongLong("string(./selfctime)", ctxt, &l) < 0) {
|
|
|
|
VIR_DEBUG("missing selfctime in nbdkit capabilities XML");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
nbdkitCaps->libvirtCtime = (time_t)l;
|
|
|
|
|
|
|
|
nbdkitCaps->libvirtVersion = 0;
|
|
|
|
virXPathUInt("string(./selfvers)", ctxt, &nbdkitCaps->libvirtVersion);
|
|
|
|
|
|
|
|
if (nbdkitCaps->libvirtCtime != virGetSelfLastChanged() ||
|
|
|
|
nbdkitCaps->libvirtVersion != LIBVIR_VERSION_NUMBER) {
|
|
|
|
VIR_DEBUG("Outdated capabilities in %s: libvirt changed (%lld vs %lld, %lu vs %lu), stopping load",
|
|
|
|
nbdkitCaps->path,
|
|
|
|
(long long)nbdkitCaps->libvirtCtime,
|
|
|
|
(long long)virGetSelfLastChanged(),
|
|
|
|
(unsigned long)nbdkitCaps->libvirtVersion,
|
|
|
|
(unsigned long)LIBVIR_VERSION_NUMBER);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (qemuNbdkitCapsValidateBinary(nbdkitCaps, ctxt) < 0)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
if (virXPathLongLong("string(./nbdkitctime)", ctxt, &l) < 0) {
|
|
|
|
VIR_DEBUG("missing nbdkitctime in nbdkit capabilities XML");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
nbdkitCaps->ctime = (time_t)l;
|
|
|
|
|
2022-12-09 16:29:25 +00:00
|
|
|
if ((nbdkitCaps->pluginDir = virXPathString("string(./plugindir)", ctxt)) == NULL) {
|
|
|
|
VIR_DEBUG("missing plugindir in nbdkit capabilities cache");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2022-08-05 20:24:08 +00:00
|
|
|
if (virXPathLongLong("string(./plugindirmtime)", ctxt, &l) < 0) {
|
|
|
|
VIR_DEBUG("missing plugindirmtime in nbdkit capabilities XML");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
nbdkitCaps->pluginDirMtime = (time_t)l;
|
|
|
|
|
2022-12-09 16:29:25 +00:00
|
|
|
if ((nbdkitCaps->filterDir = virXPathString("string(./filterdir)", ctxt)) == NULL) {
|
|
|
|
VIR_DEBUG("missing filterdir in nbdkit capabilities cache");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2022-08-05 20:24:08 +00:00
|
|
|
if (virXPathLongLong("string(./filterdirmtime)", ctxt, &l) < 0) {
|
|
|
|
VIR_DEBUG("missing filterdirmtime in nbdkit capabilities XML");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
nbdkitCaps->filterDirMtime = (time_t)l;
|
|
|
|
|
|
|
|
if (qemuNbdkitCapsParseFlags(nbdkitCaps, ctxt) < 0)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
if ((nbdkitCaps->version = virXPathString("string(./version)", ctxt)) == NULL) {
|
|
|
|
VIR_DEBUG("missing version in nbdkit capabilities cache");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void*
|
|
|
|
virNbdkitCapsLoadFile(const char *filename,
|
|
|
|
const char *binary,
|
|
|
|
void *privData G_GNUC_UNUSED,
|
|
|
|
bool *outdated)
|
|
|
|
{
|
|
|
|
g_autoptr(qemuNbdkitCaps) nbdkitCaps = qemuNbdkitCapsNew(binary);
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (!nbdkitCaps)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
ret = qemuNbdkitCapsLoadCache(nbdkitCaps, filename);
|
|
|
|
if (ret < 0)
|
|
|
|
return NULL;
|
|
|
|
if (ret == 1) {
|
|
|
|
*outdated = true;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return g_steal_pointer(&nbdkitCaps);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static char*
|
|
|
|
qemuNbdkitCapsFormatCache(qemuNbdkitCaps *nbdkitCaps)
|
|
|
|
{
|
|
|
|
g_auto(virBuffer) buf = VIR_BUFFER_INITIALIZER;
|
|
|
|
size_t i;
|
|
|
|
|
|
|
|
virBufferAddLit(&buf, "<nbdkitCaps>\n");
|
|
|
|
virBufferAdjustIndent(&buf, 2);
|
|
|
|
|
|
|
|
virBufferEscapeString(&buf, "<path>%s</path>\n",
|
|
|
|
nbdkitCaps->path);
|
|
|
|
virBufferAsprintf(&buf, "<nbdkitctime>%lu</nbdkitctime>\n",
|
|
|
|
nbdkitCaps->ctime);
|
2022-12-09 16:29:25 +00:00
|
|
|
virBufferEscapeString(&buf, "<plugindir>%s</plugindir>\n",
|
|
|
|
nbdkitCaps->pluginDir);
|
2022-08-05 20:24:08 +00:00
|
|
|
virBufferAsprintf(&buf, "<plugindirmtime>%lu</plugindirmtime>\n",
|
|
|
|
nbdkitCaps->pluginDirMtime);
|
2022-12-09 16:29:25 +00:00
|
|
|
virBufferEscapeString(&buf, "<filterdir>%s</filterdir>\n",
|
|
|
|
nbdkitCaps->filterDir);
|
2022-08-05 20:24:08 +00:00
|
|
|
virBufferAsprintf(&buf, "<filterdirmtime>%lu</filterdirmtime>\n",
|
|
|
|
nbdkitCaps->filterDirMtime);
|
|
|
|
virBufferAsprintf(&buf, "<selfctime>%lu</selfctime>\n",
|
|
|
|
nbdkitCaps->libvirtCtime);
|
|
|
|
virBufferAsprintf(&buf, "<selfvers>%u</selfvers>\n",
|
|
|
|
nbdkitCaps->libvirtVersion);
|
|
|
|
|
|
|
|
for (i = 0; i < QEMU_NBDKIT_CAPS_LAST; i++) {
|
|
|
|
if (qemuNbdkitCapsGet(nbdkitCaps, i)) {
|
|
|
|
virBufferAsprintf(&buf, "<flag name='%s'/>\n",
|
|
|
|
qemuNbdkitCapsTypeToString(i));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
virBufferAsprintf(&buf, "<version>%s</version>\n",
|
|
|
|
nbdkitCaps->version);
|
|
|
|
|
|
|
|
virBufferAdjustIndent(&buf, -2);
|
|
|
|
virBufferAddLit(&buf, "</nbdkitCaps>\n");
|
|
|
|
|
|
|
|
return virBufferContentAndReset(&buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
virNbdkitCapsSaveFile(void *data,
|
|
|
|
const char *filename,
|
|
|
|
void *privData G_GNUC_UNUSED)
|
|
|
|
{
|
|
|
|
qemuNbdkitCaps *nbdkitCaps = data;
|
|
|
|
g_autofree char *xml = NULL;
|
|
|
|
|
|
|
|
xml = qemuNbdkitCapsFormatCache(nbdkitCaps);
|
|
|
|
|
|
|
|
if (virFileWriteStr(filename, xml, 0600) < 0) {
|
|
|
|
virReportSystemError(errno,
|
|
|
|
_("Failed to save '%1$s' for '%2$s'"),
|
|
|
|
filename, nbdkitCaps->path);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
VIR_DEBUG("Saved caps '%s' for '%s' with (%lu, %lu)",
|
|
|
|
filename, nbdkitCaps->path,
|
|
|
|
nbdkitCaps->ctime,
|
|
|
|
nbdkitCaps->libvirtCtime);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-07-21 22:25:16 +00:00
|
|
|
virFileCacheHandlers nbdkitCapsCacheHandlers = {
|
|
|
|
.isValid = virNbdkitCapsIsValid,
|
|
|
|
.newData = virNbdkitCapsNewData,
|
2022-08-05 20:24:08 +00:00
|
|
|
.loadFile = virNbdkitCapsLoadFile,
|
|
|
|
.saveFile = virNbdkitCapsSaveFile,
|
2022-07-21 22:25:16 +00:00
|
|
|
.privFree = NULL,
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
virFileCache*
|
|
|
|
qemuNbdkitCapsCacheNew(const char *cachedir)
|
|
|
|
{
|
|
|
|
g_autofree char *dir = g_build_filename(cachedir, "nbdkitcapabilities", NULL);
|
|
|
|
return virFileCacheNew(dir, "xml", &nbdkitCapsCacheHandlers);
|
|
|
|
}
|
2022-07-05 22:00:11 +00:00
|
|
|
|
|
|
|
|
|
|
|
static qemuNbdkitProcess *
|
|
|
|
qemuNbdkitProcessNew(virStorageSource *source,
|
|
|
|
const char *pidfile,
|
|
|
|
const char *socketfile)
|
|
|
|
{
|
|
|
|
qemuNbdkitProcess *nbdkit = g_new0(qemuNbdkitProcess, 1);
|
|
|
|
/* weak reference -- source owns this object, so it will always outlive us */
|
|
|
|
nbdkit->source = source;
|
|
|
|
nbdkit->user = -1;
|
|
|
|
nbdkit->group = -1;
|
|
|
|
nbdkit->pid = -1;
|
|
|
|
nbdkit->pidfile = g_strdup(pidfile);
|
|
|
|
nbdkit->socketfile = g_strdup(socketfile);
|
|
|
|
|
|
|
|
return nbdkit;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool
|
|
|
|
qemuNbdkitInitStorageSource(qemuNbdkitCaps *caps,
|
|
|
|
virStorageSource *source,
|
|
|
|
char *statedir,
|
|
|
|
const char *alias,
|
|
|
|
uid_t user,
|
|
|
|
gid_t group)
|
|
|
|
{
|
|
|
|
qemuDomainStorageSourcePrivate *srcPriv = qemuDomainStorageSourcePrivateFetch(source);
|
|
|
|
g_autofree char *pidname = g_strdup_printf("nbdkit-%s.pid", alias);
|
|
|
|
g_autofree char *socketname = g_strdup_printf("nbdkit-%s.socket", alias);
|
|
|
|
g_autofree char *pidfile = g_build_filename(statedir, pidname, NULL);
|
|
|
|
g_autofree char *socketfile = g_build_filename(statedir, socketname, NULL);
|
|
|
|
qemuNbdkitProcess *proc;
|
|
|
|
|
|
|
|
if (srcPriv->nbdkitProcess)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
switch (source->protocol) {
|
|
|
|
case VIR_STORAGE_NET_PROTOCOL_HTTP:
|
|
|
|
case VIR_STORAGE_NET_PROTOCOL_HTTPS:
|
|
|
|
case VIR_STORAGE_NET_PROTOCOL_FTP:
|
|
|
|
case VIR_STORAGE_NET_PROTOCOL_FTPS:
|
|
|
|
case VIR_STORAGE_NET_PROTOCOL_TFTP:
|
|
|
|
if (!virBitmapIsBitSet(caps->flags, QEMU_NBDKIT_CAPS_PLUGIN_CURL))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
case VIR_STORAGE_NET_PROTOCOL_SSH:
|
|
|
|
if (!virBitmapIsBitSet(caps->flags, QEMU_NBDKIT_CAPS_PLUGIN_SSH))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
case VIR_STORAGE_NET_PROTOCOL_NONE:
|
|
|
|
case VIR_STORAGE_NET_PROTOCOL_NBD:
|
|
|
|
case VIR_STORAGE_NET_PROTOCOL_RBD:
|
|
|
|
case VIR_STORAGE_NET_PROTOCOL_SHEEPDOG:
|
|
|
|
case VIR_STORAGE_NET_PROTOCOL_GLUSTER:
|
|
|
|
case VIR_STORAGE_NET_PROTOCOL_ISCSI:
|
|
|
|
case VIR_STORAGE_NET_PROTOCOL_VXHS:
|
|
|
|
case VIR_STORAGE_NET_PROTOCOL_NFS:
|
|
|
|
case VIR_STORAGE_NET_PROTOCOL_LAST:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
proc = qemuNbdkitProcessNew(source, pidfile, socketfile);
|
|
|
|
proc->caps = g_object_ref(caps);
|
|
|
|
proc->user = user;
|
|
|
|
proc->group = group;
|
|
|
|
|
|
|
|
srcPriv->nbdkitProcess = proc;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-07-08 19:20:20 +00:00
|
|
|
static int
|
|
|
|
qemuNbdkitProcessBuildCommandCurl(qemuNbdkitProcess *proc,
|
|
|
|
virCommand *cmd)
|
|
|
|
{
|
|
|
|
g_autoptr(virURI) uri = qemuBlockStorageSourceGetURI(proc->source);
|
|
|
|
g_autofree char *uristring = virURIFormat(uri);
|
|
|
|
|
|
|
|
/* nbdkit plugin name */
|
|
|
|
virCommandAddArg(cmd, "curl");
|
|
|
|
if (proc->source->protocol == VIR_STORAGE_NET_PROTOCOL_HTTP) {
|
|
|
|
/* allow http to be upgraded to https via e.g. redirect */
|
|
|
|
virCommandAddArgPair(cmd, "protocols", "http,https");
|
|
|
|
} else {
|
|
|
|
virCommandAddArgPair(cmd, "protocols",
|
|
|
|
virStorageNetProtocolTypeToString(proc->source->protocol));
|
|
|
|
}
|
|
|
|
virCommandAddArgPair(cmd, "url", uristring);
|
|
|
|
|
|
|
|
if (proc->source->auth) {
|
|
|
|
g_autoptr(virConnect) conn = virGetConnectSecret();
|
|
|
|
g_autofree uint8_t *secret = NULL;
|
|
|
|
size_t secretlen = 0;
|
|
|
|
g_autofree char *password = NULL;
|
|
|
|
int secrettype;
|
|
|
|
virStorageAuthDef *authdef = proc->source->auth;
|
|
|
|
|
|
|
|
virCommandAddArgPair(cmd, "user",
|
|
|
|
proc->source->auth->username);
|
|
|
|
|
|
|
|
if ((secrettype = virSecretUsageTypeFromString(proc->source->auth->secrettype)) < 0) {
|
|
|
|
virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
|
|
|
|
_("invalid secret type %1$s"),
|
|
|
|
proc->source->auth->secrettype);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (virSecretGetSecretString(conn,
|
|
|
|
&authdef->seclookupdef,
|
|
|
|
secrettype,
|
|
|
|
&secret,
|
|
|
|
&secretlen) < 0) {
|
|
|
|
virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
|
|
|
|
_("failed to get auth secret for storage"));
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ensure that the secret is a NULL-terminated string */
|
|
|
|
password = g_strndup((char*)secret, secretlen);
|
|
|
|
virSecureErase(secret, secretlen);
|
|
|
|
|
|
|
|
/* for now, just report an error rather than passing the password in
|
|
|
|
* cleartext on the commandline */
|
|
|
|
virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
|
|
|
|
_("Password not yet supported for nbdkit sources"));
|
|
|
|
|
|
|
|
virSecureEraseString(password);
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (proc->source->ncookies > 0) {
|
|
|
|
/* for now, just report an error rather than passing cookies in
|
|
|
|
* cleartext on the commandline */
|
|
|
|
virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
|
|
|
|
_("Cookies not yet supported for nbdkit sources"));
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (proc->source->sslverify == VIR_TRISTATE_BOOL_NO) {
|
|
|
|
virCommandAddArgPair(cmd, "sslverify", "false");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (proc->source->timeout > 0) {
|
|
|
|
g_autofree char *timeout = g_strdup_printf("%llu", proc->source->timeout);
|
|
|
|
virCommandAddArgPair(cmd, "timeout", timeout);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
qemuNbdkitProcessBuildCommandSSH(qemuNbdkitProcess *proc,
|
|
|
|
virCommand *cmd)
|
|
|
|
{
|
|
|
|
const char *user = NULL;
|
|
|
|
virStorageNetHostDef *host = &proc->source->hosts[0];
|
|
|
|
g_autofree char *portstr = g_strdup_printf("%u", host->port);
|
|
|
|
|
|
|
|
/* nbdkit plugin name */
|
|
|
|
virCommandAddArg(cmd, "ssh");
|
|
|
|
|
|
|
|
virCommandAddArgPair(cmd, "host", host->name);
|
|
|
|
virCommandAddArgPair(cmd, "port", portstr);
|
|
|
|
virCommandAddArgPair(cmd, "path", proc->source->path);
|
|
|
|
|
|
|
|
if (proc->source->auth)
|
|
|
|
user = proc->source->auth->username;
|
|
|
|
else if (proc->source->ssh_user)
|
|
|
|
user = proc->source->ssh_user;
|
|
|
|
|
|
|
|
if (user)
|
|
|
|
virCommandAddArgPair(cmd, "user", user);
|
|
|
|
|
|
|
|
if (proc->source->ssh_host_key_check_disabled)
|
|
|
|
virCommandAddArgPair(cmd, "verify-remote-host", "false");
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static virCommand *
|
|
|
|
qemuNbdkitProcessBuildCommand(qemuNbdkitProcess *proc)
|
|
|
|
{
|
|
|
|
g_autoptr(virCommand) cmd = virCommandNewArgList(proc->caps->path,
|
|
|
|
"--unix",
|
|
|
|
proc->socketfile,
|
|
|
|
"--foreground",
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
if (proc->source->readonly)
|
|
|
|
virCommandAddArg(cmd, "--readonly");
|
|
|
|
|
|
|
|
if (qemuNbdkitCapsGet(proc->caps, QEMU_NBDKIT_CAPS_FILTER_READAHEAD) &&
|
|
|
|
proc->source->readahead > 0)
|
|
|
|
virCommandAddArgPair(cmd, "--filter", "readahead");
|
|
|
|
|
|
|
|
switch (proc->source->protocol) {
|
|
|
|
case VIR_STORAGE_NET_PROTOCOL_HTTP:
|
|
|
|
case VIR_STORAGE_NET_PROTOCOL_HTTPS:
|
|
|
|
case VIR_STORAGE_NET_PROTOCOL_FTP:
|
|
|
|
case VIR_STORAGE_NET_PROTOCOL_FTPS:
|
|
|
|
case VIR_STORAGE_NET_PROTOCOL_TFTP:
|
|
|
|
if (qemuNbdkitProcessBuildCommandCurl(proc, cmd) < 0)
|
|
|
|
return NULL;
|
|
|
|
break;
|
|
|
|
case VIR_STORAGE_NET_PROTOCOL_SSH:
|
|
|
|
if (qemuNbdkitProcessBuildCommandSSH(proc, cmd) < 0)
|
|
|
|
return NULL;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case VIR_STORAGE_NET_PROTOCOL_NONE:
|
|
|
|
case VIR_STORAGE_NET_PROTOCOL_NBD:
|
|
|
|
case VIR_STORAGE_NET_PROTOCOL_RBD:
|
|
|
|
case VIR_STORAGE_NET_PROTOCOL_SHEEPDOG:
|
|
|
|
case VIR_STORAGE_NET_PROTOCOL_GLUSTER:
|
|
|
|
case VIR_STORAGE_NET_PROTOCOL_ISCSI:
|
|
|
|
case VIR_STORAGE_NET_PROTOCOL_VXHS:
|
|
|
|
case VIR_STORAGE_NET_PROTOCOL_NFS:
|
|
|
|
case VIR_STORAGE_NET_PROTOCOL_LAST:
|
|
|
|
virReportError(VIR_ERR_NO_SUPPORT,
|
|
|
|
_("protocol '%1$s' is not supported by nbdkit"),
|
|
|
|
virStorageNetProtocolTypeToString(proc->source->protocol));
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
virCommandDaemonize(cmd);
|
|
|
|
|
|
|
|
return g_steal_pointer(&cmd);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-07-05 22:00:11 +00:00
|
|
|
void
|
|
|
|
qemuNbdkitProcessFree(qemuNbdkitProcess *proc)
|
|
|
|
{
|
|
|
|
g_clear_pointer(&proc->pidfile, g_free);
|
|
|
|
g_clear_pointer(&proc->socketfile, g_free);
|
|
|
|
g_clear_object(&proc->caps);
|
|
|
|
g_free(proc);
|
|
|
|
}
|
2022-07-08 19:20:20 +00:00
|
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
qemuNbdkitProcessStart(qemuNbdkitProcess *proc,
|
|
|
|
virDomainObj *vm,
|
|
|
|
virQEMUDriver *driver)
|
|
|
|
{
|
|
|
|
g_autoptr(virCommand) cmd = NULL;
|
|
|
|
int rc;
|
|
|
|
int exitstatus = 0;
|
|
|
|
g_autofree char *errbuf = NULL;
|
|
|
|
virTimeBackOffVar timebackoff;
|
|
|
|
g_autoptr(virURI) uri = NULL;
|
|
|
|
g_autofree char *uristring = NULL;
|
2022-12-12 21:12:33 +00:00
|
|
|
g_autofree char *basename = g_strdup_printf("%s-nbdkit-%i", vm->def->name, proc->source->id);
|
|
|
|
int logfd = -1;
|
|
|
|
g_autoptr(qemuLogContext) logContext = NULL;
|
2022-07-08 19:20:20 +00:00
|
|
|
|
|
|
|
if (!(cmd = qemuNbdkitProcessBuildCommand(proc)))
|
|
|
|
return -1;
|
|
|
|
|
2022-12-12 21:12:33 +00:00
|
|
|
if (!(logContext = qemuLogContextNew(driver, vm, basename))) {
|
|
|
|
virLastErrorPrefixMessage("%s", _("can't connect to virtlogd"));
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
logfd = qemuLogContextGetWriteFD(logContext);
|
|
|
|
|
2022-07-08 19:20:20 +00:00
|
|
|
VIR_DEBUG("starting nbdkit process for %s", proc->source->nodestorage);
|
2022-12-12 21:12:33 +00:00
|
|
|
virCommandSetErrorFD(cmd, &logfd);
|
|
|
|
virCommandSetOutputFD(cmd, &logfd);
|
2022-07-08 19:20:20 +00:00
|
|
|
virCommandSetPidFile(cmd, proc->pidfile);
|
|
|
|
|
|
|
|
if (qemuExtDeviceLogCommand(driver, vm, cmd, "nbdkit") < 0)
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
if (qemuSecurityCommandRun(driver, vm, cmd, proc->user, proc->group, true, &exitstatus) < 0)
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
if (exitstatus != 0) {
|
|
|
|
virReportError(VIR_ERR_INTERNAL_ERROR,
|
|
|
|
_("Could not start 'nbdkit'. exitstatus: %1$d"), exitstatus);
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((rc = virPidFileReadPath(proc->pidfile, &proc->pid)) < 0) {
|
|
|
|
virReportSystemError(-rc,
|
|
|
|
_("Failed to read pidfile %1$s"),
|
|
|
|
proc->pidfile);
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (virTimeBackOffStart(&timebackoff, 1, 1000) < 0)
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
while (virTimeBackOffWait(&timebackoff)) {
|
|
|
|
if (virFileExists(proc->socketfile))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (virProcessKill(proc->pid, 0) == 0)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
VIR_WARN("nbdkit died unexpectedly");
|
|
|
|
goto errorlog;
|
|
|
|
}
|
|
|
|
|
|
|
|
VIR_WARN("nbdkit socket did not show up");
|
|
|
|
|
|
|
|
errorlog:
|
|
|
|
if ((uri = qemuBlockStorageSourceGetURI(proc->source)))
|
|
|
|
uristring = virURIFormat(uri);
|
|
|
|
|
2022-12-12 21:12:33 +00:00
|
|
|
if (qemuLogContextReadFiltered(logContext, &errbuf, 1024) < 0)
|
|
|
|
VIR_WARN("Unable to read from nbdkit log");
|
|
|
|
|
2022-07-08 19:20:20 +00:00
|
|
|
virReportError(VIR_ERR_OPERATION_FAILED,
|
|
|
|
_("Failed to connect to nbdkit for '%1$s': %2$s"),
|
|
|
|
NULLSTR(uristring), NULLSTR(errbuf));
|
|
|
|
|
|
|
|
error:
|
|
|
|
qemuNbdkitProcessStop(proc);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
qemuNbdkitProcessStop(qemuNbdkitProcess *proc)
|
|
|
|
{
|
|
|
|
if (proc->pid < 0)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
VIR_DEBUG("Stopping nbdkit process %i", proc->pid);
|
|
|
|
virProcessKill(proc->pid, SIGTERM);
|
|
|
|
|
|
|
|
unlink(proc->pidfile);
|
|
|
|
unlink(proc->socketfile);
|
|
|
|
proc->pid = -1;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|