Nova provides remote console with password authentication¶
https://blueprints.launchpad.net/nova/+spec/nova-support-webvnc-with-password-authentication
The feature aims at providing a safer remote console with password
authentication. End users can set console password for their instances.
Any user trying to access the password-encrypted console of instance
will get a locked window from web console prompting for password
input, and this provides almost the same experience as using VNC clients
(e.g vncviewer) to access vnc servers that require password authentication.
Problem description¶
There is only a token authentication against nova novncproxy, with the
token
parameter appended to the request access_url. While this is
convenient, anyone who (e.g. A cloud administrator with too much curiosity
about tenants’ business) gets the access_url info will have access to
operating the instance by the web console directly, which is not that safe.
Now an implementation for remote console with password authentication will prevent malicious users from using the instance when failing to pass password authentication, even if they had got the access_url.
Use Cases¶
The end user can set a remote console password to avoid the console access url stolen by other user. And end user can reset console password when he forgets.
Proposed change¶
Changes will be patched to python-novaclient (
nova get-*-console
subcommand) and equivalent in python-openstackclient to provide--password
for reseting remote console password.Changes will be patched to nova-api when creating remote console: Extra logic will be added to handle both cases(console password provided, and not). If password is not provided, we see it as the existing
Create Remote Console
operation, then it jumps to old logic. Or we know it’s a request to reset password forRemote Console
, and RPC call will be sent to compute service to reset console password.Changes will be patched to nova-compute and virt driver to handle
Reset Remote Console Password
request. And this’s only implment for libvirt driver. For other virt drivers, NotImplement will raise.Changes will be patched to nova-novncproxy: auth schemes(e.g:rfb.VNC) will be added. For the fact that project
noVNC
has already provided native support for password authentication(RFB version negotiation, handshakes and password authentication), so rfb.VNC can escape from these jobs.
Alternatives¶
New booting parameter console_password
will be added to launch instances.
And the password will be used to assemble graphics
tag in libvirt XML.
In this way, password-encrypted remote console will be implemented.
The shortcoming of this implement is that no API provided to reset console
password after instance is booted.
Data model impact¶
None
REST API impact¶
New microversion will be added to provide extra password
parameter
for the Create Remote Console API.
URL: /servers/{server_id}/remote-consoles
Request method: POST(update password for remote console) Add
password
param to the request bodyUpdate the Create-Remote-Console API:
{ "remote_console": { "protocol": "vnc", "type": "novnc", "password": "newpass" } }
The
password
is in common password format. Thepassword
parameter is optional:If
password
is present, console password will be updated while getting new access_url.Only vnc and spice console protocols/types support reseting password. If both
password
and (protocol
,type
) are provided, and protocol/type not in support listHttpBadRequest 400
will be returned.And for unsupported virt driver, HttpNotImplemented 501 will be returned.
Security impact¶
Surely it will make web console safer. And note that console password will
only be securely kept by libvirtd and won’t be displayed in the result
of virsh dumpxml <instance UUID>
or definition XMLs managed by libvirt
/qemu in local filesystem except. Briefly speaking, no potential security
risks will be introduced.
Notifications impact¶
None
Other end user impact¶
It does have impacts on end users:
Web GUI benefiting this feature allow end users to set/reset console passwords for their instances.
When end users access password-encryted console of instances via Web GUI, input for console password will be prompted from web console.
New get-*-console CLIs may look like this(using nova command):
$ nova get-vnc-console --vnc-password='newpasswd' <VM UUID> ... $ nova get-spice-console --vnc-password='newpasswd' <VM UUID> ...
Performance Impact¶
None
Other deployer impact¶
New option vnc
is added to auth_schemes list in vnc
segment in nova.conf
. This allows nova-novncproxy to
detect and load rfb.VNC auth scheme.
[vnc]
auth_schemes = none,vnc,vencrypt
Developer impact¶
None
Upgrade impact¶
We should bump service object version and rpc version for the ‘get_*_console’ rpc call. Then only when the cluster fully upgrade to Ussuri release, the call can be success. otherwise return failure for the request.
Implementation¶
Assignee(s)¶
- Primary assignee:
pandatt
- Other contributors:
brinzhang
Feature Liaison¶
- Feature liaison:
Alex Xu
Work Items¶
python-novaclient(and openstackclient as well): new
--password
option will be added toget-*-console
commands and some codes processing this value shall be added.nova-api: some codes to judge whether to call legacy
get-*-console
API or to call remote compute service to reset remote console password.nova-compute: some codes to handle the request to reset console password: reassemble graphics tag with password and update it to libvirt XML.
nova-novncproxy: some codes to implement rfb auth schemes, security type negotiation (in current version, novncproxy tells tenant_sock to use hardcoded
vnc.AuthType.NONE
when serving as mediator between client and vnc server, though noVNC client provides native support forvnc.AuthType.VNC
with password security handshake handle) andsecurity handshake
(no-ops, leave noVNC/websockify to do the stuff).
Dependencies¶
None
Testing¶
Add releated unit test
Documentation Impact¶
Operation Guide needs some updates, in #User-Facing Operations# section.The
nova get-*-console
(or equivalent with openstack CLI) provides--vnc-password
option to user to reset console console password.API Guides needs no updates. However, some texts should be posted to notify developers about how to benefit from this feature.
Configuration Reference & Deployment Guides need some updates. A change in nova.conf to enable rfb.VNC auth scheme is added (nova -novncproxy cares).
References¶
History¶
Release Name |
Description |
---|---|
Ussuri |
Introduced |