2012-07-23 06:18:51 +00:00
|
|
|
/*
|
|
|
|
* virsh-secret.c: Commands to manage secret
|
|
|
|
*
|
2016-01-09 13:36:29 +00:00
|
|
|
* Copyright (C) 2005, 2007-2016 Red Hat, Inc.
|
2012-07-23 06:18:51 +00:00
|
|
|
*
|
|
|
|
* 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-23 06:18:51 +00:00
|
|
|
* <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2012-08-20 23:14:37 +00:00
|
|
|
#include <config.h>
|
|
|
|
#include "virsh-secret.h"
|
2020-01-24 14:24:49 +00:00
|
|
|
#include "virsh-util.h"
|
2012-08-20 23:14:37 +00:00
|
|
|
|
|
|
|
#include "internal.h"
|
2012-12-04 12:04:07 +00:00
|
|
|
#include "virbuffer.h"
|
2012-12-12 18:06:53 +00:00
|
|
|
#include "viralloc.h"
|
2013-05-09 18:59:04 +00:00
|
|
|
#include "virfile.h"
|
2012-12-13 17:44:57 +00:00
|
|
|
#include "virutil.h"
|
2017-09-15 18:55:46 +00:00
|
|
|
#include "virsecret.h"
|
2016-12-22 16:39:43 +00:00
|
|
|
#include "virtime.h"
|
2018-09-21 14:17:14 +00:00
|
|
|
#include "vsh-table.h"
|
2019-04-01 10:14:26 +00:00
|
|
|
#include "virenum.h"
|
2021-02-01 13:01:57 +00:00
|
|
|
#include "virsecureerase.h"
|
2012-08-20 23:14:37 +00:00
|
|
|
|
2012-07-23 06:18:51 +00:00
|
|
|
static virSecretPtr
|
2015-06-15 16:53:58 +00:00
|
|
|
virshCommandOptSecret(vshControl *ctl, const vshCmd *cmd, const char **name)
|
2012-07-23 06:18:51 +00:00
|
|
|
{
|
|
|
|
virSecretPtr secret = NULL;
|
|
|
|
const char *n = NULL;
|
|
|
|
const char *optname = "secret";
|
2021-03-11 07:16:13 +00:00
|
|
|
virshControl *priv = ctl->privData;
|
2012-07-23 06:18:51 +00:00
|
|
|
|
2013-01-21 17:28:47 +00:00
|
|
|
if (vshCommandOptStringReq(ctl, cmd, optname, &n) < 0)
|
2012-07-23 06:18:51 +00:00
|
|
|
return NULL;
|
|
|
|
|
|
|
|
vshDebug(ctl, VSH_ERR_DEBUG,
|
|
|
|
"%s: found option <%s>: %s\n", cmd->def->name, optname, n);
|
|
|
|
|
|
|
|
if (name != NULL)
|
|
|
|
*name = n;
|
|
|
|
|
2015-06-15 16:53:58 +00:00
|
|
|
secret = virSecretLookupByUUIDString(priv->conn, n);
|
2012-07-23 06:18:51 +00:00
|
|
|
|
|
|
|
if (secret == NULL)
|
2023-03-09 14:54:58 +00:00
|
|
|
vshError(ctl, _("failed to get secret '%1$s'"), n);
|
2012-07-23 06:18:51 +00:00
|
|
|
|
|
|
|
return secret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* "secret-define" command
|
|
|
|
*/
|
|
|
|
static const vshCmdInfo info_secret_define[] = {
|
2013-02-07 15:25:10 +00:00
|
|
|
{.name = "help",
|
|
|
|
.data = N_("define or modify a secret from an XML file")
|
|
|
|
},
|
|
|
|
{.name = "desc",
|
|
|
|
.data = N_("Define or modify a secret.")
|
|
|
|
},
|
|
|
|
{.name = NULL}
|
2012-07-23 06:18:51 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static const vshCmdOptDef opts_secret_define[] = {
|
2016-01-09 13:36:29 +00:00
|
|
|
VIRSH_COMMON_OPT_FILE(N_("file containing secret attributes in XML")),
|
2021-08-20 12:30:40 +00:00
|
|
|
{.name = "validate",
|
|
|
|
.type = VSH_OT_BOOL,
|
|
|
|
.help = N_("validate the XML against the schema")
|
|
|
|
},
|
2013-01-14 14:38:52 +00:00
|
|
|
{.name = NULL}
|
2012-07-23 06:18:51 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static bool
|
|
|
|
cmdSecretDefine(vshControl *ctl, const vshCmd *cmd)
|
|
|
|
{
|
|
|
|
const char *from = NULL;
|
2021-08-11 13:25:15 +00:00
|
|
|
g_autofree char *buffer = NULL;
|
2012-07-23 06:18:51 +00:00
|
|
|
virSecretPtr res;
|
|
|
|
char uuid[VIR_UUID_STRING_BUFLEN];
|
2013-01-21 17:28:47 +00:00
|
|
|
bool ret = false;
|
2021-08-20 12:30:40 +00:00
|
|
|
unsigned int flags = 0;
|
2021-03-11 07:16:13 +00:00
|
|
|
virshControl *priv = ctl->privData;
|
2012-07-23 06:18:51 +00:00
|
|
|
|
2013-01-21 17:28:47 +00:00
|
|
|
if (vshCommandOptStringReq(ctl, cmd, "file", &from) < 0)
|
2012-07-23 06:18:51 +00:00
|
|
|
return false;
|
|
|
|
|
2021-08-20 12:30:40 +00:00
|
|
|
if (vshCommandOptBool(cmd, "validate"))
|
|
|
|
flags |= VIR_SECRET_DEFINE_VALIDATE;
|
|
|
|
|
virsh: use common namespacing
Convert the exported items in virsh.h to use a common 'vsh' prefix.
* tools/virsh.h (VIRSH_MAX_XML_FILE): Rename...
(VSH_MAX_XML_FILE): ...and parenthesize.
(DIFF_MSEC, CTRL_CLOSE_BRACKET): Delete.
(vshUsage, vshInit, vshDeinit, vshParseArgv): Remove prototype.
(editWriteToTempFile, editFile, editReadBackFile, prettyCapacity)
(virshReportError): Rename...
(vshEditWriteToTempFile, vshEditFile, vshEditReadBackFile)
(vshPrettyCapacity, vshReportError): ...into vsh namespace.
(jobWatchTimeoutFunc): Move to virsh-domain.c.
* tools/virsh.c (vshCommandRun): Inline former DIFF_MSEC.
(main): Inline former CTRL_CLOSE_BRACKET.
(vshUsage, vshInit, vshDeinit, vshParseArgv): Make static.
(prettyCapacity, virshReportError, editWriteToTempFile, editFile):
Fix naming, and adjust usage.
(vshAskReedit, vshCommandRun, vshEventLoop, vshInit): Adjust
usage.
* tools/virsh-domain.c (cmdAttachDevice, cmdCPUCompare)
(cmdCPUBaseline, cmdCreate, cmdDefine, cmdDetachDevice)
(cmdUpdateDevice, cmdDesc, cmdUndefine, cmdStart, cmdVcpucount)
(cmdAttachDevice, cmdDomjobinfo): Likewise.
* tools/virsh-edit.c (do): Likewise.
* tools/virsh-interface.c (cmdInterfaceDefine): Likewise.
* tools/virsh-network.c (cmdNetworkCreate, cmdNetworkDefine):
Likewise.
* tools/virsh-nodedev.c (cmdNodeDeviceCreate): Likewise.
* tools/virsh-nwfilter.c (cmdNWFilterDefine): Likewise.
* tools/virsh-pool.c (cmdPoolCreate, cmdPoolDefine)
(cmdPoolDiscoverSources, cmdPoolList): Likewise.
* tools/virsh-secret.c (cmdSecretDefine): Likewise.
* tools/virsh-snapshot.c (cmdSnapshotCreate, vshSnapshotCreate)
(vshLookupSnapshot, cmdSnapshotEdit, cmdSnapshotCurrent)
(vshGetSnapshotParent): Likewise.
* tools/virsh-volume.c (cmdVolCreate, cmdVolCreateFrom)
(cmdVolInfo, cmdVolList): Likewise.
2012-08-19 04:10:17 +00:00
|
|
|
if (virFileReadAll(from, VSH_MAX_XML_FILE, &buffer) < 0)
|
2012-07-23 06:18:51 +00:00
|
|
|
return false;
|
|
|
|
|
2021-08-20 12:30:40 +00:00
|
|
|
if (!(res = virSecretDefineXML(priv->conn, buffer, flags))) {
|
2023-03-09 14:54:58 +00:00
|
|
|
vshError(ctl, _("Failed to set attributes from %1$s"), from);
|
2013-01-21 17:28:47 +00:00
|
|
|
goto cleanup;
|
2012-07-23 06:18:51 +00:00
|
|
|
}
|
2013-01-21 17:28:47 +00:00
|
|
|
|
2012-07-23 06:18:51 +00:00
|
|
|
if (virSecretGetUUIDString(res, &(uuid[0])) < 0) {
|
|
|
|
vshError(ctl, "%s", _("Failed to get UUID of created secret"));
|
2013-01-21 17:28:47 +00:00
|
|
|
goto cleanup;
|
2012-07-23 06:18:51 +00:00
|
|
|
}
|
2013-01-21 17:28:47 +00:00
|
|
|
|
2023-03-09 14:54:58 +00:00
|
|
|
vshPrintExtra(ctl, _("Secret %1$s created\n"), uuid);
|
2013-01-21 17:28:47 +00:00
|
|
|
ret = true;
|
|
|
|
|
2014-03-25 06:53:59 +00:00
|
|
|
cleanup:
|
2020-01-24 14:24:49 +00:00
|
|
|
virshSecretFree(res);
|
2013-01-21 17:28:47 +00:00
|
|
|
return ret;
|
2012-07-23 06:18:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* "secret-dumpxml" command
|
|
|
|
*/
|
|
|
|
static const vshCmdInfo info_secret_dumpxml[] = {
|
2013-02-07 15:25:10 +00:00
|
|
|
{.name = "help",
|
|
|
|
.data = N_("secret attributes in XML")
|
|
|
|
},
|
|
|
|
{.name = "desc",
|
|
|
|
.data = N_("Output attributes of a secret as an XML dump to stdout.")
|
|
|
|
},
|
|
|
|
{.name = NULL}
|
2012-07-23 06:18:51 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static const vshCmdOptDef opts_secret_dumpxml[] = {
|
2013-01-14 14:38:52 +00:00
|
|
|
{.name = "secret",
|
|
|
|
.type = VSH_OT_DATA,
|
|
|
|
.flags = VSH_OFLAG_REQ,
|
2018-01-12 14:00:40 +00:00
|
|
|
.help = N_("secret UUID"),
|
|
|
|
.completer = virshSecretUUIDCompleter,
|
2013-01-14 14:38:52 +00:00
|
|
|
},
|
2022-06-16 15:29:54 +00:00
|
|
|
{.name = "xpath",
|
|
|
|
.type = VSH_OT_STRING,
|
virsh: Require --xpath for *dumpxml
Historically, the dumpxml command reject any unknown arguments,
for instance:
virsh dumpxml fedora xxx
However, after v8.5.0-rc1~31 the second argument ('xxx') is
treated as an XPath, but it's not that clearly visible.
Therefore, require the --xpath switch, like this:
virsh dumpxml fedora --xpath xxx
Yes, this breaks already released virsh, but I think we can argue
that the pool of users of this particular function is very small.
We also document the argument being mandatory:
dumpxml [--inactive] [--security-info] [--update-cpu] [--migratable]
[--xpath EXPRESSION] [--wrap] domain
The sooner we do this change, the better.
The same applies for other *dumpxml functions (net-dumpxml,
pool-dumpxml, vol-dumpxl to name a few).
Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=2103524
Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
Reviewed-by: Peter Krempa <pkrempa@redhat.com>
2022-07-08 10:45:42 +00:00
|
|
|
.flags = VSH_OFLAG_REQ_OPT,
|
2022-06-16 15:29:54 +00:00
|
|
|
.completer = virshCompleteEmpty,
|
|
|
|
.help = N_("xpath expression to filter the XML document")
|
|
|
|
},
|
|
|
|
{.name = "wrap",
|
|
|
|
.type = VSH_OT_BOOL,
|
|
|
|
.help = N_("wrap xpath results in an common root element"),
|
|
|
|
},
|
2013-01-14 14:38:52 +00:00
|
|
|
{.name = NULL}
|
2012-07-23 06:18:51 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static bool
|
|
|
|
cmdSecretDumpXML(vshControl *ctl, const vshCmd *cmd)
|
|
|
|
{
|
|
|
|
virSecretPtr secret;
|
|
|
|
bool ret = false;
|
2021-08-11 13:25:15 +00:00
|
|
|
g_autofree char *xml = NULL;
|
2022-06-16 15:29:54 +00:00
|
|
|
bool wrap = vshCommandOptBool(cmd, "wrap");
|
|
|
|
const char *xpath = NULL;
|
2012-07-23 06:18:51 +00:00
|
|
|
|
2015-06-15 16:53:58 +00:00
|
|
|
secret = virshCommandOptSecret(ctl, cmd, NULL);
|
2012-07-23 06:18:51 +00:00
|
|
|
if (secret == NULL)
|
|
|
|
return false;
|
|
|
|
|
2022-06-16 15:29:54 +00:00
|
|
|
if (vshCommandOptStringQuiet(ctl, cmd, "xpath", &xpath) < 0)
|
|
|
|
return false;
|
|
|
|
|
2012-07-23 06:18:51 +00:00
|
|
|
xml = virSecretGetXMLDesc(secret, 0);
|
|
|
|
if (xml == NULL)
|
|
|
|
goto cleanup;
|
2022-06-16 15:29:54 +00:00
|
|
|
|
|
|
|
ret = virshDumpXML(ctl, xml, "secret", xpath, wrap);
|
2012-07-23 06:18:51 +00:00
|
|
|
|
2014-03-25 06:53:59 +00:00
|
|
|
cleanup:
|
2020-01-24 14:24:49 +00:00
|
|
|
virshSecretFree(secret);
|
2012-07-23 06:18:51 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* "secret-set-value" command
|
|
|
|
*/
|
|
|
|
static const vshCmdInfo info_secret_set_value[] = {
|
2013-02-07 15:25:10 +00:00
|
|
|
{.name = "help",
|
|
|
|
.data = N_("set a secret value")
|
|
|
|
},
|
|
|
|
{.name = "desc",
|
|
|
|
.data = N_("Set a secret value.")
|
|
|
|
},
|
|
|
|
{.name = NULL}
|
2012-07-23 06:18:51 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static const vshCmdOptDef opts_secret_set_value[] = {
|
2013-01-14 14:38:52 +00:00
|
|
|
{.name = "secret",
|
|
|
|
.type = VSH_OT_DATA,
|
|
|
|
.flags = VSH_OFLAG_REQ,
|
2018-01-12 14:00:40 +00:00
|
|
|
.help = N_("secret UUID"),
|
|
|
|
.completer = virshSecretUUIDCompleter,
|
2013-01-14 14:38:52 +00:00
|
|
|
},
|
2020-01-10 14:54:05 +00:00
|
|
|
{.name = "file",
|
|
|
|
.type = VSH_OT_STRING,
|
|
|
|
.flags = VSH_OFLAG_REQ_OPT,
|
2021-09-15 15:26:35 +00:00
|
|
|
.completer = virshCompletePathLocalExisting,
|
2020-01-10 14:54:05 +00:00
|
|
|
.help = N_("read secret from file"),
|
|
|
|
},
|
2020-01-24 15:28:19 +00:00
|
|
|
{.name = "plain",
|
|
|
|
.type = VSH_OT_BOOL,
|
|
|
|
.help = N_("read the secret from file without converting from base64")
|
|
|
|
},
|
2020-01-24 15:37:27 +00:00
|
|
|
{.name = "interactive",
|
|
|
|
.type = VSH_OT_BOOL,
|
|
|
|
.help = N_("read the secret from the terminal")
|
|
|
|
},
|
2013-01-14 14:38:52 +00:00
|
|
|
{.name = "base64",
|
2020-01-10 14:54:05 +00:00
|
|
|
.type = VSH_OT_STRING,
|
2021-09-15 15:42:08 +00:00
|
|
|
.completer = virshCompleteEmpty,
|
2013-01-14 14:38:52 +00:00
|
|
|
.help = N_("base64-encoded secret value")
|
|
|
|
},
|
|
|
|
{.name = NULL}
|
2012-07-23 06:18:51 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static bool
|
|
|
|
cmdSecretSetValue(vshControl *ctl, const vshCmd *cmd)
|
|
|
|
{
|
2020-01-24 14:42:02 +00:00
|
|
|
g_autoptr(virshSecret) secret = NULL;
|
2012-07-23 06:18:51 +00:00
|
|
|
const char *base64 = NULL;
|
2020-01-10 14:54:05 +00:00
|
|
|
const char *filename = NULL;
|
2021-02-01 13:01:57 +00:00
|
|
|
g_autofree char *secret_val = NULL;
|
|
|
|
size_t secret_len = 0;
|
2020-01-24 15:28:19 +00:00
|
|
|
bool plain = vshCommandOptBool(cmd, "plain");
|
2020-01-24 15:37:27 +00:00
|
|
|
bool interactive = vshCommandOptBool(cmd, "interactive");
|
2012-07-23 06:18:51 +00:00
|
|
|
int res;
|
|
|
|
|
2020-01-10 14:54:05 +00:00
|
|
|
VSH_EXCLUSIVE_OPTIONS("file", "base64");
|
2020-01-24 15:28:19 +00:00
|
|
|
VSH_EXCLUSIVE_OPTIONS("plain", "base64");
|
2020-01-24 15:37:27 +00:00
|
|
|
VSH_EXCLUSIVE_OPTIONS("interactive", "base64");
|
|
|
|
VSH_EXCLUSIVE_OPTIONS("interactive", "plain");
|
|
|
|
VSH_EXCLUSIVE_OPTIONS("interactive", "file");
|
2020-01-10 14:54:05 +00:00
|
|
|
|
2015-06-15 16:53:58 +00:00
|
|
|
if (!(secret = virshCommandOptSecret(ctl, cmd, NULL)))
|
2012-07-23 06:18:51 +00:00
|
|
|
return false;
|
|
|
|
|
2013-01-21 17:28:47 +00:00
|
|
|
if (vshCommandOptStringReq(ctl, cmd, "base64", &base64) < 0)
|
2020-01-24 14:42:02 +00:00
|
|
|
return false;
|
2012-07-23 06:18:51 +00:00
|
|
|
|
2020-01-10 14:54:05 +00:00
|
|
|
if (vshCommandOptStringReq(ctl, cmd, "file", &filename) < 0)
|
|
|
|
return false;
|
|
|
|
|
2021-02-01 12:10:59 +00:00
|
|
|
if (base64) {
|
|
|
|
/* warn users that the --base64 option passed from command line is wrong */
|
2020-01-24 15:16:27 +00:00
|
|
|
vshError(ctl, _("Passing secret value as command-line argument is insecure!"));
|
2021-02-01 13:01:57 +00:00
|
|
|
secret_val = g_strdup(base64);
|
|
|
|
secret_len = strlen(secret_val);
|
2021-02-01 12:10:59 +00:00
|
|
|
} else if (filename) {
|
2020-01-10 14:54:05 +00:00
|
|
|
ssize_t read_ret;
|
2021-02-01 13:01:57 +00:00
|
|
|
if ((read_ret = virFileReadAll(filename, 1024, &secret_val)) < 0) {
|
2020-01-10 14:54:05 +00:00
|
|
|
vshSaveLibvirtError();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-02-01 13:01:57 +00:00
|
|
|
secret_len = read_ret;
|
2021-02-01 12:10:59 +00:00
|
|
|
} else if (interactive) {
|
2020-01-24 15:37:27 +00:00
|
|
|
vshPrint(ctl, "%s", _("Enter new value for secret:"));
|
|
|
|
fflush(stdout);
|
|
|
|
|
2021-02-01 13:01:57 +00:00
|
|
|
if (!(secret_val = virGetPassword())) {
|
2020-01-24 15:37:27 +00:00
|
|
|
vshError(ctl, "%s", _("Failed to read secret"));
|
|
|
|
return false;
|
|
|
|
}
|
2021-02-01 13:01:57 +00:00
|
|
|
secret_len = strlen(secret_val);
|
2020-01-24 15:37:27 +00:00
|
|
|
plain = true;
|
2021-02-01 12:10:59 +00:00
|
|
|
} else {
|
|
|
|
vshError(ctl, _("Input secret value is missing"));
|
|
|
|
return false;
|
2020-01-24 15:37:27 +00:00
|
|
|
}
|
|
|
|
|
2021-02-01 13:01:57 +00:00
|
|
|
if (!plain) {
|
|
|
|
g_autofree char *tmp = g_steal_pointer(&secret_val);
|
|
|
|
size_t tmp_len = secret_len;
|
|
|
|
|
|
|
|
secret_val = (char *) g_base64_decode(tmp, &secret_len);
|
|
|
|
virSecureErase(tmp, tmp_len);
|
2020-01-24 15:28:19 +00:00
|
|
|
}
|
2012-07-23 06:18:51 +00:00
|
|
|
|
2021-02-01 13:01:57 +00:00
|
|
|
res = virSecretSetValue(secret, (unsigned char *) secret_val, secret_len, 0);
|
|
|
|
virSecureErase(secret_val, secret_len);
|
2012-07-23 06:18:51 +00:00
|
|
|
|
|
|
|
if (res != 0) {
|
|
|
|
vshError(ctl, "%s", _("Failed to set secret value"));
|
2020-01-24 14:42:02 +00:00
|
|
|
return false;
|
2012-07-23 06:18:51 +00:00
|
|
|
}
|
2016-08-24 14:14:23 +00:00
|
|
|
vshPrintExtra(ctl, "%s", _("Secret value set\n"));
|
2020-01-24 14:42:02 +00:00
|
|
|
return true;
|
2012-07-23 06:18:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* "secret-get-value" command
|
|
|
|
*/
|
|
|
|
static const vshCmdInfo info_secret_get_value[] = {
|
2013-02-07 15:25:10 +00:00
|
|
|
{.name = "help",
|
|
|
|
.data = N_("Output a secret value")
|
|
|
|
},
|
|
|
|
{.name = "desc",
|
|
|
|
.data = N_("Output a secret value to stdout.")
|
|
|
|
},
|
|
|
|
{.name = NULL}
|
2012-07-23 06:18:51 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static const vshCmdOptDef opts_secret_get_value[] = {
|
2013-01-14 14:38:52 +00:00
|
|
|
{.name = "secret",
|
|
|
|
.type = VSH_OT_DATA,
|
|
|
|
.flags = VSH_OFLAG_REQ,
|
2018-01-12 14:00:40 +00:00
|
|
|
.help = N_("secret UUID"),
|
|
|
|
.completer = virshSecretUUIDCompleter,
|
2013-01-14 14:38:52 +00:00
|
|
|
},
|
2020-01-10 14:12:16 +00:00
|
|
|
{.name = "plain",
|
|
|
|
.type = VSH_OT_BOOL,
|
|
|
|
.help = N_("get value without converting to base64")
|
|
|
|
},
|
2013-01-14 14:38:52 +00:00
|
|
|
{.name = NULL}
|
2012-07-23 06:18:51 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static bool
|
|
|
|
cmdSecretGetValue(vshControl *ctl, const vshCmd *cmd)
|
|
|
|
{
|
2020-01-24 14:42:02 +00:00
|
|
|
g_autoptr(virshSecret) secret = NULL;
|
2021-02-01 13:09:01 +00:00
|
|
|
g_autofree unsigned char *value = NULL;
|
2012-07-23 06:18:51 +00:00
|
|
|
size_t value_size;
|
2020-01-10 14:12:16 +00:00
|
|
|
bool plain = vshCommandOptBool(cmd, "plain");
|
2012-07-23 06:18:51 +00:00
|
|
|
|
2020-01-24 14:42:02 +00:00
|
|
|
if (!(secret = virshCommandOptSecret(ctl, cmd, NULL)))
|
2012-07-23 06:18:51 +00:00
|
|
|
return false;
|
|
|
|
|
2020-01-24 14:42:02 +00:00
|
|
|
if (!(value = virSecretGetValue(secret, &value_size, 0)))
|
|
|
|
return false;
|
2012-07-23 06:18:51 +00:00
|
|
|
|
2020-01-10 14:12:16 +00:00
|
|
|
if (plain) {
|
|
|
|
if (fwrite(value, 1, value_size, stdout) != value_size) {
|
2021-02-01 13:09:01 +00:00
|
|
|
virSecureErase(value, value_size);
|
2020-01-10 14:12:16 +00:00
|
|
|
vshError(ctl, "failed to write secret");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
} else {
|
2021-02-02 16:05:23 +00:00
|
|
|
g_autofree char *base64 = g_base64_encode(value, value_size);
|
2016-05-13 11:15:15 +00:00
|
|
|
|
2020-01-10 14:12:16 +00:00
|
|
|
vshPrint(ctl, "%s", base64);
|
2021-02-02 16:05:23 +00:00
|
|
|
virSecureEraseString(base64);
|
2020-01-10 14:12:16 +00:00
|
|
|
}
|
2012-07-23 06:18:51 +00:00
|
|
|
|
2021-02-01 13:09:01 +00:00
|
|
|
virSecureErase(value, value_size);
|
2020-01-24 14:42:02 +00:00
|
|
|
return true;
|
2012-07-23 06:18:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* "secret-undefine" command
|
|
|
|
*/
|
|
|
|
static const vshCmdInfo info_secret_undefine[] = {
|
2013-02-07 15:25:10 +00:00
|
|
|
{.name = "help",
|
|
|
|
.data = N_("undefine a secret")
|
|
|
|
},
|
|
|
|
{.name = "desc",
|
|
|
|
.data = N_("Undefine a secret.")
|
|
|
|
},
|
|
|
|
{.name = NULL}
|
2012-07-23 06:18:51 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static const vshCmdOptDef opts_secret_undefine[] = {
|
2013-01-14 14:38:52 +00:00
|
|
|
{.name = "secret",
|
|
|
|
.type = VSH_OT_DATA,
|
|
|
|
.flags = VSH_OFLAG_REQ,
|
2018-01-12 14:00:40 +00:00
|
|
|
.help = N_("secret UUID"),
|
|
|
|
.completer = virshSecretUUIDCompleter,
|
2013-01-14 14:38:52 +00:00
|
|
|
},
|
|
|
|
{.name = NULL}
|
2012-07-23 06:18:51 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static bool
|
|
|
|
cmdSecretUndefine(vshControl *ctl, const vshCmd *cmd)
|
|
|
|
{
|
|
|
|
virSecretPtr secret;
|
|
|
|
bool ret = false;
|
|
|
|
const char *uuid;
|
|
|
|
|
2015-06-15 16:53:58 +00:00
|
|
|
secret = virshCommandOptSecret(ctl, cmd, &uuid);
|
2012-07-23 06:18:51 +00:00
|
|
|
if (secret == NULL)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (virSecretUndefine(secret) < 0) {
|
2023-03-09 14:54:58 +00:00
|
|
|
vshError(ctl, _("Failed to delete secret %1$s"), uuid);
|
2012-07-23 06:18:51 +00:00
|
|
|
goto cleanup;
|
|
|
|
}
|
2023-03-09 14:54:58 +00:00
|
|
|
vshPrintExtra(ctl, _("Secret %1$s deleted\n"), uuid);
|
2012-07-23 06:18:51 +00:00
|
|
|
ret = true;
|
|
|
|
|
2014-03-25 06:53:59 +00:00
|
|
|
cleanup:
|
2020-01-24 14:24:49 +00:00
|
|
|
virshSecretFree(secret);
|
2012-07-23 06:18:51 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2012-09-14 08:38:52 +00:00
|
|
|
static int
|
lib: Replace qsort() with g_qsort_with_data()
While glibc provides qsort(), which usually is just a mergesort,
until sorting arrays so huge that temporary array used by
mergesort would not fit into physical memory (which in our case
is never), we are not guaranteed it'll use mergesort. The
advantage of mergesort is clear - it's stable. IOW, if we have an
array of values parsed from XML, qsort() it and produce some
output based on those values, we can then compare the output with
some expected output, line by line.
But with newer glibc this is all history. After [1], qsort() is
no longer mergesort but introsort instead, which is not stable.
This is suboptimal, because in some cases we want to preserve
order of equal items. For instance, in ebiptablesApplyNewRules(),
nwfilter rules are sorted by their priority. But if two rules
have the same priority, we want to keep them in the order they
appear in the XML. Since it's hard/needless work to identify
places where stable or unstable sorting is needed, let's just
play it safe and use stable sorting everywhere.
Fortunately, glib provides g_qsort_with_data() which indeed
implement mergesort and it's a drop in replacement for qsort(),
almost. It accepts fifth argument (pointer to opaque data), that
is passed to comparator function, which then accepts three
arguments.
We have to keep one occurance of qsort() though - in NSS module
which deliberately does not link with glib.
1: https://sourceware.org/git/?p=glibc.git;a=commitdiff;h=03bf8357e8291857a435afcc3048e0b697b6cc04
Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
Reviewed-by: Martin Kletzander <mkletzan@redhat.com>
2023-11-22 13:58:49 +00:00
|
|
|
virshSecretSorter(const void *a,
|
|
|
|
const void *b,
|
|
|
|
void *opaque G_GNUC_UNUSED)
|
2012-09-14 08:38:52 +00:00
|
|
|
{
|
|
|
|
virSecretPtr *sa = (virSecretPtr *) a;
|
|
|
|
virSecretPtr *sb = (virSecretPtr *) b;
|
|
|
|
char uuid_sa[VIR_UUID_STRING_BUFLEN];
|
|
|
|
char uuid_sb[VIR_UUID_STRING_BUFLEN];
|
|
|
|
|
|
|
|
if (*sa && !*sb)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
if (!*sa)
|
|
|
|
return *sb != NULL;
|
|
|
|
|
|
|
|
virSecretGetUUIDString(*sa, uuid_sa);
|
|
|
|
virSecretGetUUIDString(*sb, uuid_sb);
|
|
|
|
|
|
|
|
return vshStrcasecmp(uuid_sa, uuid_sb);
|
|
|
|
}
|
|
|
|
|
2015-06-15 16:53:58 +00:00
|
|
|
struct virshSecretList {
|
2012-09-14 08:38:52 +00:00
|
|
|
virSecretPtr *secrets;
|
|
|
|
size_t nsecrets;
|
|
|
|
};
|
|
|
|
|
|
|
|
static void
|
2021-03-11 07:16:13 +00:00
|
|
|
virshSecretListFree(struct virshSecretList *list)
|
2012-09-14 08:38:52 +00:00
|
|
|
{
|
Convert 'int i' to 'size_t i' in tools/ files
Convert the type of loop iterators named 'i', 'j', k',
'ii', 'jj', 'kk', to be 'size_t' instead of 'int' or
'unsigned int', also santizing 'ii', 'jj', 'kk' to use
the normal 'i', 'j', 'k' naming
Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
2013-07-08 14:09:33 +00:00
|
|
|
size_t i;
|
2012-09-14 08:38:52 +00:00
|
|
|
|
2013-08-27 11:27:50 +00:00
|
|
|
if (list && list->secrets) {
|
2020-01-24 14:24:49 +00:00
|
|
|
for (i = 0; i < list->nsecrets; i++)
|
|
|
|
virshSecretFree(list->secrets[i]);
|
|
|
|
|
2021-02-03 19:32:55 +00:00
|
|
|
g_free(list->secrets);
|
2012-09-14 08:38:52 +00:00
|
|
|
}
|
2021-02-03 19:32:55 +00:00
|
|
|
g_free(list);
|
2012-09-14 08:38:52 +00:00
|
|
|
}
|
|
|
|
|
2021-03-11 07:16:13 +00:00
|
|
|
static struct virshSecretList *
|
2015-06-15 16:53:58 +00:00
|
|
|
virshSecretListCollect(vshControl *ctl,
|
|
|
|
unsigned int flags)
|
2012-09-14 08:38:52 +00:00
|
|
|
{
|
2021-03-11 07:16:13 +00:00
|
|
|
struct virshSecretList *list = g_new0(struct virshSecretList, 1);
|
Convert 'int i' to 'size_t i' in tools/ files
Convert the type of loop iterators named 'i', 'j', k',
'ii', 'jj', 'kk', to be 'size_t' instead of 'int' or
'unsigned int', also santizing 'ii', 'jj', 'kk' to use
the normal 'i', 'j', 'k' naming
Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
2013-07-08 14:09:33 +00:00
|
|
|
size_t i;
|
2012-09-14 08:38:52 +00:00
|
|
|
int ret;
|
|
|
|
virSecretPtr secret;
|
|
|
|
bool success = false;
|
|
|
|
size_t deleted = 0;
|
|
|
|
int nsecrets = 0;
|
|
|
|
char **uuids = NULL;
|
2021-03-11 07:16:13 +00:00
|
|
|
virshControl *priv = ctl->privData;
|
2012-09-14 08:38:52 +00:00
|
|
|
|
|
|
|
/* try the list with flags support (0.10.2 and later) */
|
2015-06-15 16:53:58 +00:00
|
|
|
if ((ret = virConnectListAllSecrets(priv->conn,
|
2012-09-14 08:38:52 +00:00
|
|
|
&list->secrets,
|
|
|
|
flags)) >= 0) {
|
|
|
|
list->nsecrets = ret;
|
|
|
|
goto finished;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* check if the command is actually supported */
|
|
|
|
if (last_error && last_error->code == VIR_ERR_NO_SUPPORT)
|
|
|
|
goto fallback;
|
|
|
|
|
|
|
|
/* there was an error during the call */
|
|
|
|
vshError(ctl, "%s", _("Failed to list node secrets"));
|
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
|
2014-03-25 06:53:59 +00:00
|
|
|
fallback:
|
2012-09-14 08:38:52 +00:00
|
|
|
/* fall back to old method (0.10.1 and older) */
|
|
|
|
vshResetLibvirtError();
|
|
|
|
|
|
|
|
if (flags) {
|
|
|
|
vshError(ctl, "%s", _("Filtering is not supported by this libvirt"));
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
2015-06-15 16:53:58 +00:00
|
|
|
nsecrets = virConnectNumOfSecrets(priv->conn);
|
2012-09-14 08:38:52 +00:00
|
|
|
if (nsecrets < 0) {
|
|
|
|
vshError(ctl, "%s", _("Failed to count secrets"));
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (nsecrets == 0)
|
|
|
|
return list;
|
|
|
|
|
2020-10-05 16:50:09 +00:00
|
|
|
uuids = g_new0(char *, nsecrets);
|
2012-09-14 08:38:52 +00:00
|
|
|
|
2015-06-15 16:53:58 +00:00
|
|
|
nsecrets = virConnectListSecrets(priv->conn, uuids, nsecrets);
|
2012-09-14 08:38:52 +00:00
|
|
|
if (nsecrets < 0) {
|
|
|
|
vshError(ctl, "%s", _("Failed to list secrets"));
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
2020-10-05 16:50:09 +00:00
|
|
|
list->secrets = g_new0(virSecretPtr, nsecrets);
|
2012-09-14 08:38:52 +00:00
|
|
|
list->nsecrets = 0;
|
|
|
|
|
|
|
|
/* get the secrets */
|
2013-05-21 07:44:53 +00:00
|
|
|
for (i = 0; i < nsecrets; i++) {
|
2015-06-15 16:53:58 +00:00
|
|
|
if (!(secret = virSecretLookupByUUIDString(priv->conn, uuids[i])))
|
2012-09-14 08:38:52 +00:00
|
|
|
continue;
|
|
|
|
list->secrets[list->nsecrets++] = secret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* truncate secrets that weren't found */
|
|
|
|
deleted = nsecrets - list->nsecrets;
|
|
|
|
|
2014-03-25 06:53:59 +00:00
|
|
|
finished:
|
2012-09-14 08:38:52 +00:00
|
|
|
/* sort the list */
|
lib: Replace qsort() with g_qsort_with_data()
While glibc provides qsort(), which usually is just a mergesort,
until sorting arrays so huge that temporary array used by
mergesort would not fit into physical memory (which in our case
is never), we are not guaranteed it'll use mergesort. The
advantage of mergesort is clear - it's stable. IOW, if we have an
array of values parsed from XML, qsort() it and produce some
output based on those values, we can then compare the output with
some expected output, line by line.
But with newer glibc this is all history. After [1], qsort() is
no longer mergesort but introsort instead, which is not stable.
This is suboptimal, because in some cases we want to preserve
order of equal items. For instance, in ebiptablesApplyNewRules(),
nwfilter rules are sorted by their priority. But if two rules
have the same priority, we want to keep them in the order they
appear in the XML. Since it's hard/needless work to identify
places where stable or unstable sorting is needed, let's just
play it safe and use stable sorting everywhere.
Fortunately, glib provides g_qsort_with_data() which indeed
implement mergesort and it's a drop in replacement for qsort(),
almost. It accepts fifth argument (pointer to opaque data), that
is passed to comparator function, which then accepts three
arguments.
We have to keep one occurance of qsort() though - in NSS module
which deliberately does not link with glib.
1: https://sourceware.org/git/?p=glibc.git;a=commitdiff;h=03bf8357e8291857a435afcc3048e0b697b6cc04
Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
Reviewed-by: Martin Kletzander <mkletzan@redhat.com>
2023-11-22 13:58:49 +00:00
|
|
|
if (list->secrets && list->nsecrets) {
|
|
|
|
g_qsort_with_data(list->secrets, list->nsecrets,
|
|
|
|
sizeof(*list->secrets), virshSecretSorter, NULL);
|
|
|
|
}
|
2012-09-14 08:38:52 +00:00
|
|
|
|
|
|
|
/* truncate the list for not found secret objects */
|
|
|
|
if (deleted)
|
|
|
|
VIR_SHRINK_N(list->secrets, list->nsecrets, deleted);
|
|
|
|
|
|
|
|
success = true;
|
|
|
|
|
2014-03-25 06:53:59 +00:00
|
|
|
cleanup:
|
Convert 'int i' to 'size_t i' in tools/ files
Convert the type of loop iterators named 'i', 'j', k',
'ii', 'jj', 'kk', to be 'size_t' instead of 'int' or
'unsigned int', also santizing 'ii', 'jj', 'kk' to use
the normal 'i', 'j', 'k' naming
Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
2013-07-08 14:09:33 +00:00
|
|
|
if (nsecrets > 0) {
|
|
|
|
for (i = 0; i < nsecrets; i++)
|
|
|
|
VIR_FREE(uuids[i]);
|
|
|
|
VIR_FREE(uuids);
|
|
|
|
}
|
2012-09-14 08:38:52 +00:00
|
|
|
|
|
|
|
if (!success) {
|
2022-01-28 17:42:45 +00:00
|
|
|
g_clear_pointer(&list, virshSecretListFree);
|
2012-09-14 08:38:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return list;
|
|
|
|
}
|
|
|
|
|
2012-07-23 06:18:51 +00:00
|
|
|
/*
|
|
|
|
* "secret-list" command
|
|
|
|
*/
|
|
|
|
static const vshCmdInfo info_secret_list[] = {
|
2013-02-07 15:25:10 +00:00
|
|
|
{.name = "help",
|
|
|
|
.data = N_("list secrets")
|
|
|
|
},
|
|
|
|
{.name = "desc",
|
|
|
|
.data = N_("Returns a list of secrets")
|
|
|
|
},
|
|
|
|
{.name = NULL}
|
2012-07-23 06:18:51 +00:00
|
|
|
};
|
|
|
|
|
2012-09-14 08:38:52 +00:00
|
|
|
static const vshCmdOptDef opts_secret_list[] = {
|
2013-01-14 14:38:52 +00:00
|
|
|
{.name = "ephemeral",
|
|
|
|
.type = VSH_OT_BOOL,
|
|
|
|
.help = N_("list ephemeral secrets")
|
|
|
|
},
|
|
|
|
{.name = "no-ephemeral",
|
|
|
|
.type = VSH_OT_BOOL,
|
|
|
|
.help = N_("list non-ephemeral secrets")
|
|
|
|
},
|
|
|
|
{.name = "private",
|
|
|
|
.type = VSH_OT_BOOL,
|
|
|
|
.help = N_("list private secrets")
|
|
|
|
},
|
|
|
|
{.name = "no-private",
|
|
|
|
.type = VSH_OT_BOOL,
|
|
|
|
.help = N_("list non-private secrets")
|
|
|
|
},
|
|
|
|
{.name = NULL}
|
2012-09-14 08:38:52 +00:00
|
|
|
};
|
|
|
|
|
2012-07-23 06:18:51 +00:00
|
|
|
static bool
|
2019-10-14 12:44:29 +00:00
|
|
|
cmdSecretList(vshControl *ctl, const vshCmd *cmd G_GNUC_UNUSED)
|
2012-07-23 06:18:51 +00:00
|
|
|
{
|
Convert 'int i' to 'size_t i' in tools/ files
Convert the type of loop iterators named 'i', 'j', k',
'ii', 'jj', 'kk', to be 'size_t' instead of 'int' or
'unsigned int', also santizing 'ii', 'jj', 'kk' to use
the normal 'i', 'j', 'k' naming
Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
2013-07-08 14:09:33 +00:00
|
|
|
size_t i;
|
2021-03-11 07:16:13 +00:00
|
|
|
struct virshSecretList *list = NULL;
|
2012-09-14 08:38:52 +00:00
|
|
|
bool ret = false;
|
|
|
|
unsigned int flags = 0;
|
2021-08-11 13:12:02 +00:00
|
|
|
g_autoptr(vshTable) table = NULL;
|
2012-07-23 06:18:51 +00:00
|
|
|
|
2012-09-14 08:38:52 +00:00
|
|
|
if (vshCommandOptBool(cmd, "ephemeral"))
|
|
|
|
flags |= VIR_CONNECT_LIST_SECRETS_EPHEMERAL;
|
2012-07-23 06:18:51 +00:00
|
|
|
|
2012-09-14 08:38:52 +00:00
|
|
|
if (vshCommandOptBool(cmd, "no-ephemeral"))
|
|
|
|
flags |= VIR_CONNECT_LIST_SECRETS_NO_EPHEMERAL;
|
|
|
|
|
|
|
|
if (vshCommandOptBool(cmd, "private"))
|
|
|
|
flags |= VIR_CONNECT_LIST_SECRETS_PRIVATE;
|
2012-07-23 06:18:51 +00:00
|
|
|
|
2012-09-14 08:38:52 +00:00
|
|
|
if (vshCommandOptBool(cmd, "no-private"))
|
|
|
|
flags |= VIR_CONNECT_LIST_SECRETS_NO_PRIVATE;
|
|
|
|
|
2015-06-15 16:53:58 +00:00
|
|
|
if (!(list = virshSecretListCollect(ctl, flags)))
|
2012-09-14 08:38:52 +00:00
|
|
|
return false;
|
2012-07-23 06:18:51 +00:00
|
|
|
|
2018-09-21 14:17:14 +00:00
|
|
|
table = vshTableNew(_("UUID"), _("Usage"), NULL);
|
|
|
|
if (!table)
|
|
|
|
goto cleanup;
|
2012-07-23 06:18:51 +00:00
|
|
|
|
2012-09-14 08:38:52 +00:00
|
|
|
for (i = 0; i < list->nsecrets; i++) {
|
|
|
|
virSecretPtr sec = list->secrets[i];
|
2013-08-06 11:49:23 +00:00
|
|
|
int usageType = virSecretGetUsageType(sec);
|
2014-05-14 19:48:15 +00:00
|
|
|
const char *usageStr = virSecretUsageTypeToString(usageType);
|
2012-09-14 08:38:52 +00:00
|
|
|
char uuid[VIR_UUID_STRING_BUFLEN];
|
2020-07-02 23:40:16 +00:00
|
|
|
g_auto(virBuffer) buf = VIR_BUFFER_INITIALIZER;
|
2019-10-15 13:16:31 +00:00
|
|
|
g_autofree char *usage = NULL;
|
2013-08-06 11:49:23 +00:00
|
|
|
|
2014-04-29 02:10:18 +00:00
|
|
|
if (virSecretGetUUIDString(sec, uuid) < 0) {
|
2012-09-14 08:38:52 +00:00
|
|
|
vshError(ctl, "%s", _("Failed to get uuid of secret"));
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
2012-07-23 06:18:51 +00:00
|
|
|
if (usageType) {
|
2018-09-21 14:17:14 +00:00
|
|
|
virBufferStrcat(&buf, usageStr, " ",
|
|
|
|
virSecretGetUsageID(sec), NULL);
|
|
|
|
usage = virBufferContentAndReset(&buf);
|
|
|
|
if (!usage)
|
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
if (vshTableRowAppend(table, uuid, usage, NULL) < 0)
|
|
|
|
goto cleanup;
|
2012-07-23 06:18:51 +00:00
|
|
|
} else {
|
2018-09-21 14:17:14 +00:00
|
|
|
if (vshTableRowAppend(table, uuid, _("Unused"), NULL) < 0)
|
|
|
|
goto cleanup;
|
2012-07-23 06:18:51 +00:00
|
|
|
}
|
|
|
|
}
|
2012-09-14 08:38:52 +00:00
|
|
|
|
2018-09-21 14:17:14 +00:00
|
|
|
vshTablePrintToStdout(table, ctl);
|
|
|
|
|
2012-09-14 08:38:52 +00:00
|
|
|
ret = true;
|
|
|
|
|
2014-03-25 06:53:59 +00:00
|
|
|
cleanup:
|
2015-06-15 16:53:58 +00:00
|
|
|
virshSecretListFree(list);
|
2012-09-14 08:38:52 +00:00
|
|
|
return ret;
|
2012-07-23 06:18:51 +00:00
|
|
|
}
|
2012-07-23 07:19:04 +00:00
|
|
|
|
2016-12-22 16:39:43 +00:00
|
|
|
/*
|
|
|
|
* "Secret-event" command
|
|
|
|
*/
|
2019-01-20 16:04:56 +00:00
|
|
|
VIR_ENUM_DECL(virshSecretEvent);
|
2016-12-22 16:39:43 +00:00
|
|
|
VIR_ENUM_IMPL(virshSecretEvent,
|
|
|
|
VIR_SECRET_EVENT_LAST,
|
|
|
|
N_("Defined"),
|
2019-01-20 16:30:15 +00:00
|
|
|
N_("Undefined"));
|
2016-12-22 16:39:43 +00:00
|
|
|
|
|
|
|
static const char *
|
|
|
|
virshSecretEventToString(int event)
|
|
|
|
{
|
|
|
|
const char *str = virshSecretEventTypeToString(event);
|
|
|
|
return str ? _(str) : _("unknown");
|
|
|
|
}
|
|
|
|
|
|
|
|
struct virshSecretEventData {
|
|
|
|
vshControl *ctl;
|
|
|
|
bool loop;
|
|
|
|
bool timestamp;
|
|
|
|
int count;
|
2018-05-23 06:32:39 +00:00
|
|
|
virshSecretEventCallback *cb;
|
2016-12-22 16:39:43 +00:00
|
|
|
};
|
|
|
|
typedef struct virshSecretEventData virshSecretEventData;
|
|
|
|
|
|
|
|
static void
|
2019-10-14 12:44:29 +00:00
|
|
|
vshEventLifecyclePrint(virConnectPtr conn G_GNUC_UNUSED,
|
2016-12-22 16:39:43 +00:00
|
|
|
virSecretPtr secret,
|
|
|
|
int event,
|
2019-10-14 12:44:29 +00:00
|
|
|
int detail G_GNUC_UNUSED,
|
2016-12-22 16:39:43 +00:00
|
|
|
void *opaque)
|
|
|
|
{
|
|
|
|
virshSecretEventData *data = opaque;
|
|
|
|
char uuid[VIR_UUID_STRING_BUFLEN];
|
|
|
|
|
|
|
|
if (!data->loop && data->count)
|
|
|
|
return;
|
|
|
|
|
|
|
|
virSecretGetUUIDString(secret, uuid);
|
|
|
|
if (data->timestamp) {
|
|
|
|
char timestamp[VIR_TIME_STRING_BUFLEN];
|
|
|
|
|
|
|
|
if (virTimeStringNowRaw(timestamp) < 0)
|
|
|
|
timestamp[0] = '\0';
|
|
|
|
|
2023-03-09 14:54:58 +00:00
|
|
|
vshPrint(data->ctl, _("%1$s: event 'lifecycle' for secret %2$s: %3$s\n"),
|
2016-12-22 16:39:43 +00:00
|
|
|
timestamp, uuid, virshSecretEventToString(event));
|
|
|
|
} else {
|
2023-03-09 14:54:58 +00:00
|
|
|
vshPrint(data->ctl, _("event 'lifecycle' for secret %1$s: %2$s\n"),
|
2016-12-22 16:39:43 +00:00
|
|
|
uuid, virshSecretEventToString(event));
|
|
|
|
}
|
|
|
|
|
|
|
|
data->count++;
|
|
|
|
if (!data->loop)
|
|
|
|
vshEventDone(data->ctl);
|
|
|
|
}
|
|
|
|
|
2017-01-05 13:51:07 +00:00
|
|
|
static void
|
2019-10-14 12:44:29 +00:00
|
|
|
vshEventGenericPrint(virConnectPtr conn G_GNUC_UNUSED,
|
2017-01-05 13:51:07 +00:00
|
|
|
virSecretPtr secret,
|
|
|
|
void *opaque)
|
|
|
|
{
|
|
|
|
virshSecretEventData *data = opaque;
|
|
|
|
char uuid[VIR_UUID_STRING_BUFLEN];
|
|
|
|
|
|
|
|
if (!data->loop && data->count)
|
|
|
|
return;
|
|
|
|
|
|
|
|
virSecretGetUUIDString(secret, uuid);
|
|
|
|
|
|
|
|
if (data->timestamp) {
|
|
|
|
char timestamp[VIR_TIME_STRING_BUFLEN];
|
|
|
|
|
|
|
|
if (virTimeStringNowRaw(timestamp) < 0)
|
|
|
|
timestamp[0] = '\0';
|
|
|
|
|
2023-03-09 14:54:58 +00:00
|
|
|
vshPrint(data->ctl, _("%1$s: event '%2$s' for secret %3$s\n"),
|
2017-01-05 13:51:07 +00:00
|
|
|
timestamp,
|
|
|
|
data->cb->name,
|
|
|
|
uuid);
|
|
|
|
} else {
|
2023-03-09 14:54:58 +00:00
|
|
|
vshPrint(data->ctl, _("event '%1$s' for secret %2$s\n"),
|
2017-01-05 13:51:07 +00:00
|
|
|
data->cb->name,
|
|
|
|
uuid);
|
|
|
|
}
|
|
|
|
|
|
|
|
data->count++;
|
|
|
|
if (!data->loop)
|
|
|
|
vshEventDone(data->ctl);
|
|
|
|
}
|
|
|
|
|
2018-05-23 06:32:39 +00:00
|
|
|
virshSecretEventCallback virshSecretEventCallbacks[] = {
|
2016-12-22 16:39:43 +00:00
|
|
|
{ "lifecycle",
|
|
|
|
VIR_SECRET_EVENT_CALLBACK(vshEventLifecyclePrint), },
|
2017-01-05 13:51:07 +00:00
|
|
|
{ "value-changed", vshEventGenericPrint, },
|
2016-12-22 16:39:43 +00:00
|
|
|
};
|
2020-01-09 10:39:55 +00:00
|
|
|
G_STATIC_ASSERT(VIR_SECRET_EVENT_ID_LAST == G_N_ELEMENTS(virshSecretEventCallbacks));
|
2016-12-22 16:39:43 +00:00
|
|
|
|
|
|
|
static const vshCmdInfo info_secret_event[] = {
|
|
|
|
{.name = "help",
|
|
|
|
.data = N_("Secret Events")
|
|
|
|
},
|
|
|
|
{.name = "desc",
|
|
|
|
.data = N_("List event types, or wait for secret events to occur")
|
|
|
|
},
|
|
|
|
{.name = NULL}
|
|
|
|
};
|
|
|
|
|
|
|
|
static const vshCmdOptDef opts_secret_event[] = {
|
|
|
|
{.name = "secret",
|
|
|
|
.type = VSH_OT_STRING,
|
2018-01-12 14:00:40 +00:00
|
|
|
.help = N_("filter by secret name or uuid"),
|
|
|
|
.completer = virshSecretUUIDCompleter,
|
2016-12-22 16:39:43 +00:00
|
|
|
},
|
|
|
|
{.name = "event",
|
|
|
|
.type = VSH_OT_STRING,
|
2018-05-23 06:32:40 +00:00
|
|
|
.completer = virshSecretEventNameCompleter,
|
2016-12-22 16:39:43 +00:00
|
|
|
.help = N_("which event type to wait for")
|
|
|
|
},
|
|
|
|
{.name = "loop",
|
|
|
|
.type = VSH_OT_BOOL,
|
|
|
|
.help = N_("loop until timeout or interrupt, rather than one-shot")
|
|
|
|
},
|
|
|
|
{.name = "timeout",
|
|
|
|
.type = VSH_OT_INT,
|
|
|
|
.help = N_("timeout seconds")
|
|
|
|
},
|
|
|
|
{.name = "list",
|
|
|
|
.type = VSH_OT_BOOL,
|
|
|
|
.help = N_("list valid event types")
|
|
|
|
},
|
|
|
|
{.name = "timestamp",
|
|
|
|
.type = VSH_OT_BOOL,
|
|
|
|
.help = N_("show timestamp for each printed event")
|
|
|
|
},
|
|
|
|
{.name = NULL}
|
|
|
|
};
|
|
|
|
|
|
|
|
static bool
|
|
|
|
cmdSecretEvent(vshControl *ctl, const vshCmd *cmd)
|
|
|
|
{
|
|
|
|
virSecretPtr secret = NULL;
|
|
|
|
bool ret = false;
|
|
|
|
int eventId = -1;
|
|
|
|
int timeout = 0;
|
|
|
|
virshSecretEventData data;
|
|
|
|
const char *eventName = NULL;
|
|
|
|
int event;
|
2021-03-11 07:16:13 +00:00
|
|
|
virshControl *priv = ctl->privData;
|
2016-12-22 16:39:43 +00:00
|
|
|
|
|
|
|
if (vshCommandOptBool(cmd, "list")) {
|
|
|
|
size_t i;
|
|
|
|
|
|
|
|
for (i = 0; i < VIR_SECRET_EVENT_ID_LAST; i++)
|
2018-05-23 06:32:39 +00:00
|
|
|
vshPrint(ctl, "%s\n", virshSecretEventCallbacks[i].name);
|
2016-12-22 16:39:43 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (vshCommandOptStringReq(ctl, cmd, "event", &eventName) < 0)
|
|
|
|
return false;
|
|
|
|
if (!eventName) {
|
|
|
|
vshError(ctl, "%s", _("either --list or --event <type> is required"));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
for (event = 0; event < VIR_SECRET_EVENT_ID_LAST; event++)
|
2018-05-23 06:32:39 +00:00
|
|
|
if (STREQ(eventName, virshSecretEventCallbacks[event].name))
|
2016-12-22 16:39:43 +00:00
|
|
|
break;
|
|
|
|
if (event == VIR_SECRET_EVENT_ID_LAST) {
|
2023-03-09 14:54:58 +00:00
|
|
|
vshError(ctl, _("unknown event type %1$s"), eventName);
|
2016-12-22 16:39:43 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
data.ctl = ctl;
|
|
|
|
data.loop = vshCommandOptBool(cmd, "loop");
|
|
|
|
data.timestamp = vshCommandOptBool(cmd, "timestamp");
|
|
|
|
data.count = 0;
|
2018-05-23 06:32:39 +00:00
|
|
|
data.cb = &virshSecretEventCallbacks[event];
|
2016-12-22 16:39:43 +00:00
|
|
|
if (vshCommandOptTimeoutToMs(ctl, cmd, &timeout) < 0)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (vshCommandOptBool(cmd, "secret"))
|
|
|
|
secret = virshCommandOptSecret(ctl, cmd, NULL);
|
|
|
|
if (vshEventStart(ctl, timeout) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
if ((eventId = virConnectSecretEventRegisterAny(priv->conn, secret, event,
|
|
|
|
data.cb->cb,
|
|
|
|
&data, NULL)) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
switch (vshEventWait(ctl)) {
|
|
|
|
case VSH_EVENT_INTERRUPT:
|
|
|
|
vshPrint(ctl, "%s", _("event loop interrupted\n"));
|
|
|
|
break;
|
|
|
|
case VSH_EVENT_TIMEOUT:
|
|
|
|
vshPrint(ctl, "%s", _("event loop timed out\n"));
|
|
|
|
break;
|
|
|
|
case VSH_EVENT_DONE:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
goto cleanup;
|
|
|
|
}
|
2023-03-09 14:54:58 +00:00
|
|
|
vshPrint(ctl, _("events received: %1$d\n"), data.count);
|
2016-12-22 16:39:43 +00:00
|
|
|
if (data.count)
|
|
|
|
ret = true;
|
|
|
|
|
|
|
|
cleanup:
|
|
|
|
vshEventCleanup(ctl);
|
|
|
|
if (eventId >= 0 &&
|
|
|
|
virConnectSecretEventDeregisterAny(priv->conn, eventId) < 0)
|
|
|
|
ret = false;
|
2020-01-24 14:24:49 +00:00
|
|
|
virshSecretFree(secret);
|
2016-12-22 16:39:43 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2012-08-20 23:14:37 +00:00
|
|
|
const vshCmdDef secretCmds[] = {
|
2013-02-07 15:25:10 +00:00
|
|
|
{.name = "secret-define",
|
|
|
|
.handler = cmdSecretDefine,
|
|
|
|
.opts = opts_secret_define,
|
|
|
|
.info = info_secret_define,
|
|
|
|
.flags = 0
|
|
|
|
},
|
|
|
|
{.name = "secret-dumpxml",
|
|
|
|
.handler = cmdSecretDumpXML,
|
|
|
|
.opts = opts_secret_dumpxml,
|
|
|
|
.info = info_secret_dumpxml,
|
|
|
|
.flags = 0
|
|
|
|
},
|
2016-12-22 16:39:43 +00:00
|
|
|
{.name = "secret-event",
|
|
|
|
.handler = cmdSecretEvent,
|
|
|
|
.opts = opts_secret_event,
|
|
|
|
.info = info_secret_event,
|
|
|
|
.flags = 0
|
|
|
|
},
|
2013-02-07 15:25:10 +00:00
|
|
|
{.name = "secret-get-value",
|
|
|
|
.handler = cmdSecretGetValue,
|
|
|
|
.opts = opts_secret_get_value,
|
|
|
|
.info = info_secret_get_value,
|
|
|
|
.flags = 0
|
|
|
|
},
|
|
|
|
{.name = "secret-list",
|
|
|
|
.handler = cmdSecretList,
|
|
|
|
.opts = opts_secret_list,
|
|
|
|
.info = info_secret_list,
|
|
|
|
.flags = 0
|
|
|
|
},
|
|
|
|
{.name = "secret-set-value",
|
|
|
|
.handler = cmdSecretSetValue,
|
|
|
|
.opts = opts_secret_set_value,
|
|
|
|
.info = info_secret_set_value,
|
|
|
|
.flags = 0
|
|
|
|
},
|
|
|
|
{.name = "secret-undefine",
|
|
|
|
.handler = cmdSecretUndefine,
|
|
|
|
.opts = opts_secret_undefine,
|
|
|
|
.info = info_secret_undefine,
|
|
|
|
.flags = 0
|
|
|
|
},
|
|
|
|
{.name = NULL}
|
2012-07-23 07:19:04 +00:00
|
|
|
};
|