qapi/monitor: allow VNC display id in set/expire_password
It is possible to specify more than one VNC server on the command line, either with an explicit ID or the auto-generated ones à la "default", "vnc2", "vnc3", ... It is not possible to change the password on one of these extra VNC displays though. Fix this by adding a "display" parameter to the "set_password" and "expire_password" QMP and HMP commands. For HMP, the display is specified using the "-d" value flag. For QMP, the schema is updated to explicitly express the supported variants of the commands with protocol-discriminated unions. Signed-off-by: Stefan Reiter <s.reiter@proxmox.com> [FE: update "Since: " from 6.2 to 7.0 make @connected a common member of @SetPasswordOptions] Signed-off-by: Fabian Ebner <f.ebner@proxmox.com> Message-Id: <20220225084949.35746-4-f.ebner@proxmox.com> Acked-by: Markus Armbruster <armbru@redhat.com> Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com> Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
This commit is contained in:
parent
7277db9103
commit
675fd3c96b
@ -1514,33 +1514,35 @@ ERST
|
|||||||
|
|
||||||
{
|
{
|
||||||
.name = "set_password",
|
.name = "set_password",
|
||||||
.args_type = "protocol:s,password:s,connected:s?",
|
.args_type = "protocol:s,password:s,display:-ds,connected:s?",
|
||||||
.params = "protocol password action-if-connected",
|
.params = "protocol password [-d display] [action-if-connected]",
|
||||||
.help = "set spice/vnc password",
|
.help = "set spice/vnc password",
|
||||||
.cmd = hmp_set_password,
|
.cmd = hmp_set_password,
|
||||||
},
|
},
|
||||||
|
|
||||||
SRST
|
SRST
|
||||||
``set_password [ vnc | spice ] password [ action-if-connected ]``
|
``set_password [ vnc | spice ] password [ -d display ] [ action-if-connected ]``
|
||||||
Change spice/vnc password. *action-if-connected* specifies what
|
Change spice/vnc password. *display* can be used with 'vnc' to specify
|
||||||
should happen in case a connection is established: *fail* makes the
|
which display to set the password on. *action-if-connected* specifies
|
||||||
password change fail. *disconnect* changes the password and
|
what should happen in case a connection is established: *fail* makes
|
||||||
|
the password change fail. *disconnect* changes the password and
|
||||||
disconnects the client. *keep* changes the password and keeps the
|
disconnects the client. *keep* changes the password and keeps the
|
||||||
connection up. *keep* is the default.
|
connection up. *keep* is the default.
|
||||||
ERST
|
ERST
|
||||||
|
|
||||||
{
|
{
|
||||||
.name = "expire_password",
|
.name = "expire_password",
|
||||||
.args_type = "protocol:s,time:s",
|
.args_type = "protocol:s,time:s,display:-ds",
|
||||||
.params = "protocol time",
|
.params = "protocol time [-d display]",
|
||||||
.help = "set spice/vnc password expire-time",
|
.help = "set spice/vnc password expire-time",
|
||||||
.cmd = hmp_expire_password,
|
.cmd = hmp_expire_password,
|
||||||
},
|
},
|
||||||
|
|
||||||
SRST
|
SRST
|
||||||
``expire_password [ vnc | spice ]`` *expire-time*
|
``expire_password [ vnc | spice ] expire-time [ -d display ]``
|
||||||
Specify when a password for spice/vnc becomes
|
Specify when a password for spice/vnc becomes invalid.
|
||||||
invalid. *expire-time* accepts:
|
*display* behaves the same as in ``set_password``.
|
||||||
|
*expire-time* accepts:
|
||||||
|
|
||||||
``now``
|
``now``
|
||||||
Invalidate password instantly.
|
Invalidate password instantly.
|
||||||
|
@ -1396,24 +1396,33 @@ void hmp_set_password(Monitor *mon, const QDict *qdict)
|
|||||||
{
|
{
|
||||||
const char *protocol = qdict_get_str(qdict, "protocol");
|
const char *protocol = qdict_get_str(qdict, "protocol");
|
||||||
const char *password = qdict_get_str(qdict, "password");
|
const char *password = qdict_get_str(qdict, "password");
|
||||||
|
const char *display = qdict_get_try_str(qdict, "display");
|
||||||
const char *connected = qdict_get_try_str(qdict, "connected");
|
const char *connected = qdict_get_try_str(qdict, "connected");
|
||||||
Error *err = NULL;
|
Error *err = NULL;
|
||||||
DisplayProtocol proto;
|
|
||||||
SetPasswordAction conn;
|
|
||||||
|
|
||||||
proto = qapi_enum_parse(&DisplayProtocol_lookup, protocol,
|
SetPasswordOptions opts = {
|
||||||
DISPLAY_PROTOCOL_VNC, &err);
|
.password = (char *)password,
|
||||||
|
.has_connected = !!connected,
|
||||||
|
};
|
||||||
|
|
||||||
|
opts.connected = qapi_enum_parse(&SetPasswordAction_lookup, connected,
|
||||||
|
SET_PASSWORD_ACTION_KEEP, &err);
|
||||||
if (err) {
|
if (err) {
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
||||||
conn = qapi_enum_parse(&SetPasswordAction_lookup, connected,
|
opts.protocol = qapi_enum_parse(&DisplayProtocol_lookup, protocol,
|
||||||
SET_PASSWORD_ACTION_KEEP, &err);
|
DISPLAY_PROTOCOL_VNC, &err);
|
||||||
if (err) {
|
if (err) {
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
||||||
qmp_set_password(proto, password, !!connected, conn, &err);
|
if (opts.protocol == DISPLAY_PROTOCOL_VNC) {
|
||||||
|
opts.u.vnc.has_display = !!display;
|
||||||
|
opts.u.vnc.display = (char *)display;
|
||||||
|
}
|
||||||
|
|
||||||
|
qmp_set_password(&opts, &err);
|
||||||
|
|
||||||
out:
|
out:
|
||||||
hmp_handle_error(mon, err);
|
hmp_handle_error(mon, err);
|
||||||
@ -1423,16 +1432,25 @@ void hmp_expire_password(Monitor *mon, const QDict *qdict)
|
|||||||
{
|
{
|
||||||
const char *protocol = qdict_get_str(qdict, "protocol");
|
const char *protocol = qdict_get_str(qdict, "protocol");
|
||||||
const char *whenstr = qdict_get_str(qdict, "time");
|
const char *whenstr = qdict_get_str(qdict, "time");
|
||||||
|
const char *display = qdict_get_try_str(qdict, "display");
|
||||||
Error *err = NULL;
|
Error *err = NULL;
|
||||||
DisplayProtocol proto;
|
|
||||||
|
|
||||||
proto = qapi_enum_parse(&DisplayProtocol_lookup, protocol,
|
ExpirePasswordOptions opts = {
|
||||||
DISPLAY_PROTOCOL_VNC, &err);
|
.time = (char *)whenstr,
|
||||||
|
};
|
||||||
|
|
||||||
|
opts.protocol = qapi_enum_parse(&DisplayProtocol_lookup, protocol,
|
||||||
|
DISPLAY_PROTOCOL_VNC, &err);
|
||||||
if (err) {
|
if (err) {
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
||||||
qmp_expire_password(proto, whenstr, &err);
|
if (opts.protocol == DISPLAY_PROTOCOL_VNC) {
|
||||||
|
opts.u.vnc.has_display = !!display;
|
||||||
|
opts.u.vnc.display = (char *)display;
|
||||||
|
}
|
||||||
|
|
||||||
|
qmp_expire_password(&opts, &err);
|
||||||
|
|
||||||
out:
|
out:
|
||||||
hmp_handle_error(mon, err);
|
hmp_handle_error(mon, err);
|
||||||
|
@ -168,35 +168,27 @@ void qmp_system_wakeup(Error **errp)
|
|||||||
qemu_system_wakeup_request(QEMU_WAKEUP_REASON_OTHER, errp);
|
qemu_system_wakeup_request(QEMU_WAKEUP_REASON_OTHER, errp);
|
||||||
}
|
}
|
||||||
|
|
||||||
void qmp_set_password(DisplayProtocol protocol, const char *password,
|
void qmp_set_password(SetPasswordOptions *opts, Error **errp)
|
||||||
bool has_connected, SetPasswordAction connected,
|
|
||||||
Error **errp)
|
|
||||||
{
|
{
|
||||||
int disconnect_if_connected = 0;
|
|
||||||
int fail_if_connected = 0;
|
|
||||||
int rc;
|
int rc;
|
||||||
|
|
||||||
if (has_connected) {
|
if (opts->protocol == DISPLAY_PROTOCOL_SPICE) {
|
||||||
fail_if_connected = connected == SET_PASSWORD_ACTION_FAIL;
|
|
||||||
disconnect_if_connected = connected == SET_PASSWORD_ACTION_DISCONNECT;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (protocol == DISPLAY_PROTOCOL_SPICE) {
|
|
||||||
if (!qemu_using_spice(errp)) {
|
if (!qemu_using_spice(errp)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
rc = qemu_spice.set_passwd(password, fail_if_connected,
|
rc = qemu_spice.set_passwd(opts->password,
|
||||||
disconnect_if_connected);
|
opts->connected == SET_PASSWORD_ACTION_FAIL,
|
||||||
|
opts->connected == SET_PASSWORD_ACTION_DISCONNECT);
|
||||||
} else {
|
} else {
|
||||||
assert(protocol == DISPLAY_PROTOCOL_VNC);
|
assert(opts->protocol == DISPLAY_PROTOCOL_VNC);
|
||||||
if (fail_if_connected || disconnect_if_connected) {
|
if (opts->connected != SET_PASSWORD_ACTION_KEEP) {
|
||||||
/* vnc supports "connected=keep" only */
|
/* vnc supports "connected=keep" only */
|
||||||
error_setg(errp, QERR_INVALID_PARAMETER, "connected");
|
error_setg(errp, QERR_INVALID_PARAMETER, "connected");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
/* Note that setting an empty password will not disable login through
|
/* Note that setting an empty password will not disable login through
|
||||||
* this interface. */
|
* this interface. */
|
||||||
rc = vnc_display_password(NULL, password);
|
rc = vnc_display_password(opts->u.vnc.display, opts->password);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (rc != 0) {
|
if (rc != 0) {
|
||||||
@ -204,11 +196,11 @@ void qmp_set_password(DisplayProtocol protocol, const char *password,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void qmp_expire_password(DisplayProtocol protocol, const char *whenstr,
|
void qmp_expire_password(ExpirePasswordOptions *opts, Error **errp)
|
||||||
Error **errp)
|
|
||||||
{
|
{
|
||||||
time_t when;
|
time_t when;
|
||||||
int rc;
|
int rc;
|
||||||
|
const char *whenstr = opts->time;
|
||||||
|
|
||||||
if (strcmp(whenstr, "now") == 0) {
|
if (strcmp(whenstr, "now") == 0) {
|
||||||
when = 0;
|
when = 0;
|
||||||
@ -220,14 +212,14 @@ void qmp_expire_password(DisplayProtocol protocol, const char *whenstr,
|
|||||||
when = strtoull(whenstr, NULL, 10);
|
when = strtoull(whenstr, NULL, 10);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (protocol == DISPLAY_PROTOCOL_SPICE) {
|
if (opts->protocol == DISPLAY_PROTOCOL_SPICE) {
|
||||||
if (!qemu_using_spice(errp)) {
|
if (!qemu_using_spice(errp)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
rc = qemu_spice.set_pw_expire(when);
|
rc = qemu_spice.set_pw_expire(when);
|
||||||
} else {
|
} else {
|
||||||
assert(protocol == DISPLAY_PROTOCOL_VNC);
|
assert(opts->protocol == DISPLAY_PROTOCOL_VNC);
|
||||||
rc = vnc_display_pw_expire(NULL, when);
|
rc = vnc_display_pw_expire(opts->u.vnc.display, when);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (rc != 0) {
|
if (rc != 0) {
|
||||||
|
96
qapi/ui.json
96
qapi/ui.json
@ -38,20 +38,47 @@
|
|||||||
'data': [ 'keep', 'fail', 'disconnect' ] }
|
'data': [ 'keep', 'fail', 'disconnect' ] }
|
||||||
|
|
||||||
##
|
##
|
||||||
# @set_password:
|
# @SetPasswordOptions:
|
||||||
#
|
#
|
||||||
# Sets the password of a remote display session.
|
# Options for set_password.
|
||||||
#
|
#
|
||||||
# @protocol: - 'vnc' to modify the VNC server password
|
# @protocol: - 'vnc' to modify the VNC server password
|
||||||
# - 'spice' to modify the Spice server password
|
# - 'spice' to modify the Spice server password
|
||||||
#
|
#
|
||||||
# @password: the new password
|
# @password: the new password
|
||||||
#
|
#
|
||||||
# @connected: how to handle existing clients when changing the
|
# @connected: How to handle existing clients when changing the
|
||||||
# password. If nothing is specified, defaults to 'keep'
|
# password. If nothing is specified, defaults to 'keep'.
|
||||||
# 'fail' to fail the command if clients are connected
|
# For VNC, only 'keep' is currently implemented.
|
||||||
# 'disconnect' to disconnect existing clients
|
#
|
||||||
# 'keep' to maintain existing clients
|
# Since: 7.0
|
||||||
|
#
|
||||||
|
##
|
||||||
|
{ 'union': 'SetPasswordOptions',
|
||||||
|
'base': { 'protocol': 'DisplayProtocol',
|
||||||
|
'password': 'str',
|
||||||
|
'*connected': 'SetPasswordAction' },
|
||||||
|
'discriminator': 'protocol',
|
||||||
|
'data': { 'vnc': 'SetPasswordOptionsVnc' } }
|
||||||
|
|
||||||
|
##
|
||||||
|
# @SetPasswordOptionsVnc:
|
||||||
|
#
|
||||||
|
# Options for set_password specific to the VNC procotol.
|
||||||
|
#
|
||||||
|
# @display: The id of the display where the password should be changed.
|
||||||
|
# Defaults to the first.
|
||||||
|
#
|
||||||
|
# Since: 7.0
|
||||||
|
#
|
||||||
|
##
|
||||||
|
{ 'struct': 'SetPasswordOptionsVnc',
|
||||||
|
'data': { '*display': 'str' } }
|
||||||
|
|
||||||
|
##
|
||||||
|
# @set_password:
|
||||||
|
#
|
||||||
|
# Set the password of a remote display server.
|
||||||
#
|
#
|
||||||
# Returns: - Nothing on success
|
# Returns: - Nothing on success
|
||||||
# - If Spice is not enabled, DeviceNotFound
|
# - If Spice is not enabled, DeviceNotFound
|
||||||
@ -65,17 +92,15 @@
|
|||||||
# <- { "return": {} }
|
# <- { "return": {} }
|
||||||
#
|
#
|
||||||
##
|
##
|
||||||
{ 'command': 'set_password',
|
{ 'command': 'set_password', 'boxed': true, 'data': 'SetPasswordOptions' }
|
||||||
'data': { 'protocol': 'DisplayProtocol',
|
|
||||||
'password': 'str',
|
|
||||||
'*connected': 'SetPasswordAction' } }
|
|
||||||
|
|
||||||
##
|
##
|
||||||
# @expire_password:
|
# @ExpirePasswordOptions:
|
||||||
#
|
#
|
||||||
# Expire the password of a remote display server.
|
# General options for expire_password.
|
||||||
#
|
#
|
||||||
# @protocol: the name of the remote display protocol 'vnc' or 'spice'
|
# @protocol: - 'vnc' to modify the VNC server expiration
|
||||||
|
# - 'spice' to modify the Spice server expiration
|
||||||
#
|
#
|
||||||
# @time: when to expire the password.
|
# @time: when to expire the password.
|
||||||
#
|
#
|
||||||
@ -84,16 +109,45 @@
|
|||||||
# - '+INT' where INT is the number of seconds from now (integer)
|
# - '+INT' where INT is the number of seconds from now (integer)
|
||||||
# - 'INT' where INT is the absolute time in seconds
|
# - 'INT' where INT is the absolute time in seconds
|
||||||
#
|
#
|
||||||
# Returns: - Nothing on success
|
|
||||||
# - If @protocol is 'spice' and Spice is not active, DeviceNotFound
|
|
||||||
#
|
|
||||||
# Since: 0.14
|
|
||||||
#
|
|
||||||
# Notes: Time is relative to the server and currently there is no way to
|
# Notes: Time is relative to the server and currently there is no way to
|
||||||
# coordinate server time with client time. It is not recommended to
|
# coordinate server time with client time. It is not recommended to
|
||||||
# use the absolute time version of the @time parameter unless you're
|
# use the absolute time version of the @time parameter unless you're
|
||||||
# sure you are on the same machine as the QEMU instance.
|
# sure you are on the same machine as the QEMU instance.
|
||||||
#
|
#
|
||||||
|
# Since: 7.0
|
||||||
|
#
|
||||||
|
##
|
||||||
|
{ 'union': 'ExpirePasswordOptions',
|
||||||
|
'base': { 'protocol': 'DisplayProtocol',
|
||||||
|
'time': 'str' },
|
||||||
|
'discriminator': 'protocol',
|
||||||
|
'data': { 'vnc': 'ExpirePasswordOptionsVnc' } }
|
||||||
|
|
||||||
|
##
|
||||||
|
# @ExpirePasswordOptionsVnc:
|
||||||
|
#
|
||||||
|
# Options for expire_password specific to the VNC procotol.
|
||||||
|
#
|
||||||
|
# @display: The id of the display where the expiration should be changed.
|
||||||
|
# Defaults to the first.
|
||||||
|
#
|
||||||
|
# Since: 7.0
|
||||||
|
#
|
||||||
|
##
|
||||||
|
|
||||||
|
{ 'struct': 'ExpirePasswordOptionsVnc',
|
||||||
|
'data': { '*display': 'str' } }
|
||||||
|
|
||||||
|
##
|
||||||
|
# @expire_password:
|
||||||
|
#
|
||||||
|
# Expire the password of a remote display server.
|
||||||
|
#
|
||||||
|
# Returns: - Nothing on success
|
||||||
|
# - If @protocol is 'spice' and Spice is not active, DeviceNotFound
|
||||||
|
#
|
||||||
|
# Since: 0.14
|
||||||
|
#
|
||||||
# Example:
|
# Example:
|
||||||
#
|
#
|
||||||
# -> { "execute": "expire_password", "arguments": { "protocol": "vnc",
|
# -> { "execute": "expire_password", "arguments": { "protocol": "vnc",
|
||||||
@ -101,9 +155,7 @@
|
|||||||
# <- { "return": {} }
|
# <- { "return": {} }
|
||||||
#
|
#
|
||||||
##
|
##
|
||||||
{ 'command': 'expire_password',
|
{ 'command': 'expire_password', 'boxed': true, 'data': 'ExpirePasswordOptions' }
|
||||||
'data': { 'protocol': 'DisplayProtocol',
|
|
||||||
'time': 'str' } }
|
|
||||||
|
|
||||||
##
|
##
|
||||||
# @screendump:
|
# @screendump:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user