* [PATCH v2 0/3] VNC-related HMP/QMP fixes @ 2021-09-01 15:17 Stefan Reiter 2021-09-01 15:17 ` [PATCH v2 1/3] monitor/hmp: correctly invert password argument detection again Stefan Reiter ` (2 more replies) 0 siblings, 3 replies; 6+ messages in thread From: Stefan Reiter @ 2021-09-01 15:17 UTC (permalink / raw) To: Marc-André Lureau, Marc-André Lureau, Dr. David Alan Gilbert, Markus Armbruster, Paolo Bonzini, Eric Blake, Gerd Hoffmann, Wolfgang Bumiller, Thomas Lamprecht Cc: qemu-devel Since the removal of the generic 'qmp_change' command, one can no longer replace the 'default' VNC display listen address at runtime (AFAIK). For our users who need to set up a secondary VNC access port, this means configuring a second VNC display (in addition to our standard one for web-access), but it turns out one cannot set a password on this second display at the moment, as the 'set_password' call only operates on the 'default' display. Additionally, using secret objects, the password is only read once at startup. This could be considered a bug too, but is not touched in this series and left for a later date. v1 -> v2: * add Marc-André's R-b on patch 1 * use '-d' flag as suggested by Eric Blake and Gerd Hoffmann * I didn't see a way to do this yet, so I added a "flags with values" arg type Stefan Reiter (3): monitor/hmp: correctly invert password argument detection again monitor/hmp: add support for flag argument with value monitor: allow VNC related QMP and HMP commands to take a display ID hmp-commands.hx | 29 +++++++++++++++-------------- monitor/hmp-cmds.c | 9 ++++++--- monitor/hmp.c | 17 ++++++++++++++++- monitor/qmp-cmds.c | 9 +++++---- qapi/ui.json | 12 ++++++++++-- 5 files changed, 52 insertions(+), 24 deletions(-) -- 2.30.2 ^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH v2 1/3] monitor/hmp: correctly invert password argument detection again 2021-09-01 15:17 [PATCH v2 0/3] VNC-related HMP/QMP fixes Stefan Reiter @ 2021-09-01 15:17 ` Stefan Reiter 2021-09-01 15:17 ` [PATCH v2 2/3] monitor/hmp: add support for flag argument with value Stefan Reiter 2021-09-01 15:17 ` [PATCH v2 3/3] monitor: allow VNC related QMP and HMP commands to take a display ID Stefan Reiter 2 siblings, 0 replies; 6+ messages in thread From: Stefan Reiter @ 2021-09-01 15:17 UTC (permalink / raw) To: Marc-André Lureau, Marc-André Lureau, Dr. David Alan Gilbert, Markus Armbruster, Paolo Bonzini, Eric Blake, Gerd Hoffmann, Wolfgang Bumiller, Thomas Lamprecht Cc: qemu-devel Commit cfb5387a1d 'hmp: remove "change vnc TARGET" command' claims to remove the HMP "change vnc" command, but doesn't actually do that. Instead it rewires it to use 'qmp_change_vnc_password', and in the process inverts the argument detection - ignoring the first issue, this inversion is wrong, as this will now ask the user for a password if one is already provided, and simply fail if none is given. Fixes: cfb5387a1d ("hmp: remove "change vnc TARGET" command") Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com> Signed-off-by: Stefan Reiter <s.reiter@proxmox.com> --- monitor/hmp-cmds.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/monitor/hmp-cmds.c b/monitor/hmp-cmds.c index e00255f7ee..a7e197a90b 100644 --- a/monitor/hmp-cmds.c +++ b/monitor/hmp-cmds.c @@ -1496,7 +1496,7 @@ void hmp_change(Monitor *mon, const QDict *qdict) } if (strcmp(target, "passwd") == 0 || strcmp(target, "password") == 0) { - if (arg) { + if (!arg) { MonitorHMP *hmp_mon = container_of(mon, MonitorHMP, common); monitor_read_password(hmp_mon, hmp_change_read_arg, NULL); return; -- 2.30.2 ^ permalink raw reply related [flat|nested] 6+ messages in thread
* [PATCH v2 2/3] monitor/hmp: add support for flag argument with value 2021-09-01 15:17 [PATCH v2 0/3] VNC-related HMP/QMP fixes Stefan Reiter 2021-09-01 15:17 ` [PATCH v2 1/3] monitor/hmp: correctly invert password argument detection again Stefan Reiter @ 2021-09-01 15:17 ` Stefan Reiter 2021-09-01 15:17 ` [PATCH v2 3/3] monitor: allow VNC related QMP and HMP commands to take a display ID Stefan Reiter 2 siblings, 0 replies; 6+ messages in thread From: Stefan Reiter @ 2021-09-01 15:17 UTC (permalink / raw) To: Marc-André Lureau, Marc-André Lureau, Dr. David Alan Gilbert, Markus Armbruster, Paolo Bonzini, Eric Blake, Gerd Hoffmann, Wolfgang Bumiller, Thomas Lamprecht Cc: qemu-devel Adds support for the "-xS" parameter type, where "-x" denotes a flag name and the "S" suffix indicates that this flag is supposed to take an arbitrary string parameter. These parameters are always optional, the entry in the qdict will be omitted if the flag is not given. Signed-off-by: Stefan Reiter <s.reiter@proxmox.com> --- monitor/hmp.c | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/monitor/hmp.c b/monitor/hmp.c index d50c3124e1..a32dce7a35 100644 --- a/monitor/hmp.c +++ b/monitor/hmp.c @@ -980,6 +980,7 @@ static QDict *monitor_parse_arguments(Monitor *mon, { const char *tmp = p; int skip_key = 0; + int ret; /* option */ c = *typestr++; @@ -1002,8 +1003,22 @@ static QDict *monitor_parse_arguments(Monitor *mon, } if (skip_key) { p = tmp; + } else if (*typestr == 'S') { + /* has option with string value */ + typestr++; + tmp = p++; + while (qemu_isspace(*p)) { + p++; + } + ret = get_str(buf, sizeof(buf), &p); + if (ret < 0) { + monitor_printf(mon, "%s: value expected for -%c\n", + cmd->name, *tmp); + goto fail; + } + qdict_put_str(qdict, key, buf); } else { - /* has option */ + /* has boolean option */ p++; qdict_put_bool(qdict, key, true); } -- 2.30.2 ^ permalink raw reply related [flat|nested] 6+ messages in thread
* [PATCH v2 3/3] monitor: allow VNC related QMP and HMP commands to take a display ID 2021-09-01 15:17 [PATCH v2 0/3] VNC-related HMP/QMP fixes Stefan Reiter 2021-09-01 15:17 ` [PATCH v2 1/3] monitor/hmp: correctly invert password argument detection again Stefan Reiter 2021-09-01 15:17 ` [PATCH v2 2/3] monitor/hmp: add support for flag argument with value Stefan Reiter @ 2021-09-01 15:17 ` Stefan Reiter 2021-09-03 19:02 ` Eric Blake 2 siblings, 1 reply; 6+ messages in thread From: Stefan Reiter @ 2021-09-01 15:17 UTC (permalink / raw) To: Marc-André Lureau, Marc-André Lureau, Dr. David Alan Gilbert, Markus Armbruster, Paolo Bonzini, Eric Blake, Gerd Hoffmann, Wolfgang Bumiller, Thomas Lamprecht Cc: qemu-devel 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. Signed-off-by: Stefan Reiter <s.reiter@proxmox.com> --- hmp-commands.hx | 29 +++++++++++++++-------------- monitor/hmp-cmds.c | 7 +++++-- monitor/qmp-cmds.c | 9 +++++---- qapi/ui.json | 12 ++++++++++-- 4 files changed, 35 insertions(+), 22 deletions(-) diff --git a/hmp-commands.hx b/hmp-commands.hx index 8e45bce2cd..d78e4cfc47 100644 --- a/hmp-commands.hx +++ b/hmp-commands.hx @@ -1514,34 +1514,35 @@ ERST { .name = "set_password", - .args_type = "protocol:s,password:s,connected:s?", - .params = "protocol password action-if-connected", + .args_type = "protocol:s,password:s,display:-dS,connected:s?", + .params = "protocol password [-d display] [action-if-connected]", .help = "set spice/vnc password", .cmd = hmp_set_password, }, SRST -``set_password [ vnc | spice ] password [ action-if-connected ]`` - Change spice/vnc password. Use zero to make the password stay valid - forever. *action-if-connected* specifies 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 connection up. - *keep* is the default. +``set_password [ vnc | spice ] password [ -d display ] [ action-if-connected ]`` + Change spice/vnc password. *display* can be used with 'vnc' to specify + which display to set the password on. *action-if-connected* specifies + 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 + connection up. *keep* is the default. ERST { .name = "expire_password", - .args_type = "protocol:s,time:s", - .params = "protocol time", + .args_type = "protocol:s,time:s,display:-dS", + .params = "protocol time [-d display]", .help = "set spice/vnc password expire-time", .cmd = hmp_expire_password, }, SRST -``expire_password [ vnc | spice ]`` *expire-time* - Specify when a password for spice/vnc becomes - invalid. *expire-time* accepts: +``expire_password [ vnc | spice ] expire-time [ -d display ]`` + Specify when a password for spice/vnc becomes invalid. + *display* behaves the same as in ``set_password``. + *expire-time* accepts: ``now`` Invalidate password instantly. diff --git a/monitor/hmp-cmds.c b/monitor/hmp-cmds.c index a7e197a90b..168ca62371 100644 --- a/monitor/hmp-cmds.c +++ b/monitor/hmp-cmds.c @@ -1451,10 +1451,12 @@ void hmp_set_password(Monitor *mon, const QDict *qdict) { const char *protocol = qdict_get_str(qdict, "protocol"); 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"); Error *err = NULL; - qmp_set_password(protocol, password, !!connected, connected, &err); + qmp_set_password(protocol, password, !!connected, connected, !!display, + display, &err); hmp_handle_error(mon, err); } @@ -1462,9 +1464,10 @@ void hmp_expire_password(Monitor *mon, const QDict *qdict) { const char *protocol = qdict_get_str(qdict, "protocol"); const char *whenstr = qdict_get_str(qdict, "time"); + const char *display = qdict_get_try_str(qdict, "display"); Error *err = NULL; - qmp_expire_password(protocol, whenstr, &err); + qmp_expire_password(protocol, whenstr, !!display, display, &err); hmp_handle_error(mon, err); } diff --git a/monitor/qmp-cmds.c b/monitor/qmp-cmds.c index 5c0d5e116b..b53869d10c 100644 --- a/monitor/qmp-cmds.c +++ b/monitor/qmp-cmds.c @@ -164,7 +164,8 @@ void qmp_system_wakeup(Error **errp) } void qmp_set_password(const char *protocol, const char *password, - bool has_connected, const char *connected, Error **errp) + bool has_connected, const char *connected, + bool has_display, const char *display, Error **errp) { int disconnect_if_connected = 0; int fail_if_connected = 0; @@ -197,7 +198,7 @@ void qmp_set_password(const char *protocol, const char *password, } /* Note that setting an empty password will not disable login through * this interface. */ - rc = vnc_display_password(NULL, password); + rc = vnc_display_password(has_display ? display : NULL, password); } else { error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "protocol", "'vnc' or 'spice'"); @@ -210,7 +211,7 @@ void qmp_set_password(const char *protocol, const char *password, } void qmp_expire_password(const char *protocol, const char *whenstr, - Error **errp) + bool has_display, const char *display, Error **errp) { time_t when; int rc; @@ -231,7 +232,7 @@ void qmp_expire_password(const char *protocol, const char *whenstr, } rc = qemu_spice.set_pw_expire(when); } else if (strcmp(protocol, "vnc") == 0) { - rc = vnc_display_pw_expire(NULL, when); + rc = vnc_display_pw_expire(has_display ? display : NULL, when); } else { error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "protocol", "'vnc' or 'spice'"); diff --git a/qapi/ui.json b/qapi/ui.json index b2cf7a6759..fa84df9a70 100644 --- a/qapi/ui.json +++ b/qapi/ui.json @@ -25,6 +25,9 @@ # 'disconnect' to disconnect existing clients # 'keep' to maintain existing clients # +# @display: In case of VNC, the id of the display where the password +# should be changed. Defaults to the first. +# # Returns: - Nothing on success # - If Spice is not enabled, DeviceNotFound # @@ -38,7 +41,8 @@ # ## { 'command': 'set_password', - 'data': {'protocol': 'str', 'password': 'str', '*connected': 'str'} } + 'data': {'protocol': 'str', 'password': 'str', '*connected': 'str', + '*display': 'str'} } ## # @expire_password: @@ -54,6 +58,9 @@ # - '+INT' where INT is the number of seconds from now (integer) # - 'INT' where INT is the absolute time in seconds # +# @display: In case of VNC, the id of the display where the password +# should be set to expire. Defaults to the first. +# # Returns: - Nothing on success # - If @protocol is 'spice' and Spice is not active, DeviceNotFound # @@ -71,7 +78,8 @@ # <- { "return": {} } # ## -{ 'command': 'expire_password', 'data': {'protocol': 'str', 'time': 'str'} } +{ 'command': 'expire_password', + 'data': {'protocol': 'str', 'time': 'str', '*display': 'str'} } ## # @screendump: -- 2.30.2 ^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH v2 3/3] monitor: allow VNC related QMP and HMP commands to take a display ID 2021-09-01 15:17 ` [PATCH v2 3/3] monitor: allow VNC related QMP and HMP commands to take a display ID Stefan Reiter @ 2021-09-03 19:02 ` Eric Blake 2021-09-04 6:08 ` Markus Armbruster 0 siblings, 1 reply; 6+ messages in thread From: Eric Blake @ 2021-09-03 19:02 UTC (permalink / raw) To: Stefan Reiter Cc: Wolfgang Bumiller, qemu-devel, Dr. David Alan Gilbert, Markus Armbruster, Marc-André Lureau, Gerd Hoffmann, Paolo Bonzini, Marc-André Lureau, Thomas Lamprecht On Wed, Sep 01, 2021 at 05:17:48PM +0200, Stefan Reiter wrote: > 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. > > Signed-off-by: Stefan Reiter <s.reiter@proxmox.com> > --- QMP review: > +++ b/qapi/ui.json > @@ -25,6 +25,9 @@ > # 'disconnect' to disconnect existing clients > # 'keep' to maintain existing clients > # > +# @display: In case of VNC, the id of the display where the password > +# should be changed. Defaults to the first. > +# > # Returns: - Nothing on success > # - If Spice is not enabled, DeviceNotFound > # > @@ -38,7 +41,8 @@ > # > ## > { 'command': 'set_password', > - 'data': {'protocol': 'str', 'password': 'str', '*connected': 'str'} } > + 'data': {'protocol': 'str', 'password': 'str', '*connected': 'str', Pre-existing, but given the documentation that protocol is either 'vnc' or 'spice', this feels like set_password should take a discriminated union type with 'protocol' as an enum type,... > + '*display': 'str'} } ...so that you only add the optional 'display' member to 'vnc'. This would keep the status quo of rejecting it as invalid when protocol is 'spice', and make it easier to introspect that no other protocols are supported. Markus may have better advice on whether cleaning this up is worth it. > > ## > # @expire_password: > @@ -54,6 +58,9 @@ > # - '+INT' where INT is the number of seconds from now (integer) > # - 'INT' where INT is the absolute time in seconds > # > +# @display: In case of VNC, the id of the display where the password > +# should be set to expire. Defaults to the first. > +# > # Returns: - Nothing on success > # - If @protocol is 'spice' and Spice is not active, DeviceNotFound > # > @@ -71,7 +78,8 @@ > # <- { "return": {} } > # > ## > -{ 'command': 'expire_password', 'data': {'protocol': 'str', 'time': 'str'} } > +{ 'command': 'expire_password', > + 'data': {'protocol': 'str', 'time': 'str', '*display': 'str'} } This would benefit from the same treatment, if we decide to use a QAPI enum type and discriminated union. -- Eric Blake, Principal Software Engineer Red Hat, Inc. +1-919-301-3266 Virtualization: qemu.org | libvirt.org ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH v2 3/3] monitor: allow VNC related QMP and HMP commands to take a display ID 2021-09-03 19:02 ` Eric Blake @ 2021-09-04 6:08 ` Markus Armbruster 0 siblings, 0 replies; 6+ messages in thread From: Markus Armbruster @ 2021-09-04 6:08 UTC (permalink / raw) To: Eric Blake Cc: Wolfgang Bumiller, Stefan Reiter, Dr. David Alan Gilbert, qemu-devel, Marc-André Lureau, Gerd Hoffmann, Paolo Bonzini, Marc-André Lureau, Thomas Lamprecht Eric Blake <eblake@redhat.com> writes: > On Wed, Sep 01, 2021 at 05:17:48PM +0200, Stefan Reiter wrote: >> 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. >> >> Signed-off-by: Stefan Reiter <s.reiter@proxmox.com> >> --- > > QMP review: > >> +++ b/qapi/ui.json >> @@ -25,6 +25,9 @@ >> # 'disconnect' to disconnect existing clients >> # 'keep' to maintain existing clients >> # >> +# @display: In case of VNC, the id of the display where the password >> +# should be changed. Defaults to the first. >> +# >> # Returns: - Nothing on success >> # - If Spice is not enabled, DeviceNotFound >> # >> @@ -38,7 +41,8 @@ >> # >> ## >> { 'command': 'set_password', >> - 'data': {'protocol': 'str', 'password': 'str', '*connected': 'str'} } >> + 'data': {'protocol': 'str', 'password': 'str', '*connected': 'str', > > Pre-existing, but given the documentation that protocol is either > 'vnc' or 'spice', this feels like set_password should take a > discriminated union type with 'protocol' as an enum type,... > >> + '*display': 'str'} } > > ...so that you only add the optional 'display' member to 'vnc'. This > would keep the status quo of rejecting it as invalid when protocol is > 'spice', and make it easier to introspect that no other protocols are > supported. > > Markus may have better advice on whether cleaning this up is worth it. Changing @protocol from str to enum is straightforward, and backward compatible. qmp_set_password() becomes simpler (we lose a failure mode). If we ever add another protocol, introspection will show it. It also reflects CONFIG_VNC and CONFIG_SPICE, which is perhaps less useful than it was before modularization, but still nice. Yes, please. Same for @connected. We may have more 'str' parameters that should be enum elsewhere. I'm not demanding you hunt them down :) Adding the new parameter only to the protocol that actually supports it is more complicated. Untested: { 'command': 'set_password', 'boxed': true, 'data': 'SetPasswordOptions' } { 'union': 'SetPasswordOptions', 'base': { 'protocol: 'PasswordProtocol', 'connected': 'FailDisconnectKeep' }, 'discriminator': protocol', 'data': { 'vnc': 'SetPasswordOptionsVnc' } } { 'enum': 'PasswordProtocol' 'data': [ { 'name': 'vnc', 'if': 'CONFIG_VNC' }, { 'name': 'spice', 'if': 'CONFIG_SPICE } ] } { 'enum': 'FailDisconnectKeep', 'data': [ 'fail', 'disconnect', 'keep' ] } { 'struct': 'SetPasswordOptionsVnc', 'data': { '*display': 'str } } Advangages are similar: qmp_set_password() doesn't have to reject @display for protocols other than 'vnc', and introspection is more accurate. Please give it a try. >> >> ## >> # @expire_password: >> @@ -54,6 +58,9 @@ >> # - '+INT' where INT is the number of seconds from now (integer) >> # - 'INT' where INT is the absolute time in seconds >> # >> +# @display: In case of VNC, the id of the display where the password >> +# should be set to expire. Defaults to the first. >> +# >> # Returns: - Nothing on success >> # - If @protocol is 'spice' and Spice is not active, DeviceNotFound >> # >> @@ -71,7 +78,8 @@ >> # <- { "return": {} } >> # >> ## >> -{ 'command': 'expire_password', 'data': {'protocol': 'str', 'time': 'str'} } >> +{ 'command': 'expire_password', >> + 'data': {'protocol': 'str', 'time': 'str', '*display': 'str'} } > > This would benefit from the same treatment, if we decide to use a QAPI > enum type and discriminated union. Either both or neither. ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2021-09-04 6:11 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2021-09-01 15:17 [PATCH v2 0/3] VNC-related HMP/QMP fixes Stefan Reiter 2021-09-01 15:17 ` [PATCH v2 1/3] monitor/hmp: correctly invert password argument detection again Stefan Reiter 2021-09-01 15:17 ` [PATCH v2 2/3] monitor/hmp: add support for flag argument with value Stefan Reiter 2021-09-01 15:17 ` [PATCH v2 3/3] monitor: allow VNC related QMP and HMP commands to take a display ID Stefan Reiter 2021-09-03 19:02 ` Eric Blake 2021-09-04 6:08 ` Markus Armbruster
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).