2009-03-07 00:44:29 +01:00
|
|
|
/*
|
|
|
|
* QEMU VNC display driver: VeNCrypt authentication setup
|
|
|
|
*
|
|
|
|
* Copyright (C) 2006 Anthony Liguori <anthony@codemonkey.ws>
|
|
|
|
* Copyright (C) 2006 Fabrice Bellard
|
|
|
|
* Copyright (C) 2009 Red Hat, Inc
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
2016-01-29 18:49:51 +01:00
|
|
|
#include "qemu/osdep.h"
|
2009-03-07 00:44:29 +01:00
|
|
|
#include "vnc.h"
|
include/qemu/osdep.h: Don't include qapi/error.h
Commit 57cb38b included qapi/error.h into qemu/osdep.h to get the
Error typedef. Since then, we've moved to include qemu/osdep.h
everywhere. Its file comment explains: "To avoid getting into
possible circular include dependencies, this file should not include
any other QEMU headers, with the exceptions of config-host.h,
compiler.h, os-posix.h and os-win32.h, all of which are doing a
similar job to this file and are under similar constraints."
qapi/error.h doesn't do a similar job, and it doesn't adhere to
similar constraints: it includes qapi-types.h. That's in excess of
100KiB of crap most .c files don't actually need.
Add the typedef to qemu/typedefs.h, and include that instead of
qapi/error.h. Include qapi/error.h in .c files that need it and don't
get it now. Include qapi-types.h in qom/object.h for uint16List.
Update scripts/clean-includes accordingly. Update it further to match
reality: replace config.h by config-target.h, add sysemu/os-posix.h,
sysemu/os-win32.h. Update the list of includes in the qemu/osdep.h
comment quoted above similarly.
This reduces the number of objects depending on qapi/error.h from "all
of them" to less than a third. Unfortunately, the number depending on
qapi-types.h shrinks only a little. More work is needed for that one.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
[Fix compilation without the spice devel packages. - Paolo]
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
2016-03-14 09:01:28 +01:00
|
|
|
#include "qapi/error.h"
|
2013-08-21 17:02:47 +02:00
|
|
|
#include "qemu/main-loop.h"
|
2009-03-07 00:44:29 +01:00
|
|
|
|
|
|
|
static void start_auth_vencrypt_subauth(VncState *vs)
|
|
|
|
{
|
2011-06-23 14:31:41 +02:00
|
|
|
switch (vs->subauth) {
|
2009-03-07 00:44:29 +01:00
|
|
|
case VNC_AUTH_VENCRYPT_TLSNONE:
|
|
|
|
case VNC_AUTH_VENCRYPT_X509NONE:
|
|
|
|
VNC_DEBUG("Accept TLS auth none\n");
|
|
|
|
vnc_write_u32(vs, 0); /* Accept auth completion */
|
|
|
|
start_client_init(vs);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case VNC_AUTH_VENCRYPT_TLSVNC:
|
|
|
|
case VNC_AUTH_VENCRYPT_X509VNC:
|
|
|
|
VNC_DEBUG("Start TLS auth VNC\n");
|
|
|
|
start_auth_vnc(vs);
|
|
|
|
break;
|
|
|
|
|
|
|
|
#ifdef CONFIG_VNC_SASL
|
|
|
|
case VNC_AUTH_VENCRYPT_TLSSASL:
|
|
|
|
case VNC_AUTH_VENCRYPT_X509SASL:
|
|
|
|
VNC_DEBUG("Start TLS auth SASL\n");
|
2012-07-08 08:56:53 +02:00
|
|
|
start_auth_sasl(vs);
|
|
|
|
break;
|
2009-03-07 00:44:29 +01:00
|
|
|
#endif /* CONFIG_VNC_SASL */
|
|
|
|
|
|
|
|
default: /* Should not be possible, but just in case */
|
2011-06-23 14:31:41 +02:00
|
|
|
VNC_DEBUG("Reject subauth %d server bug\n", vs->auth);
|
2009-03-07 00:44:29 +01:00
|
|
|
vnc_write_u8(vs, 1);
|
|
|
|
if (vs->minor >= 8) {
|
|
|
|
static const char err[] = "Unsupported authentication type";
|
|
|
|
vnc_write_u32(vs, sizeof(err));
|
|
|
|
vnc_write(vs, err, sizeof(err));
|
|
|
|
}
|
|
|
|
vnc_client_error(vs);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-02 20:01:05 +01:00
|
|
|
static void vnc_tls_handshake_done(Object *source,
|
|
|
|
Error *err,
|
|
|
|
gpointer user_data)
|
2015-04-08 20:04:11 +02:00
|
|
|
{
|
2015-03-02 20:01:05 +01:00
|
|
|
VncState *vs = user_data;
|
2009-03-07 00:44:29 +01:00
|
|
|
|
2015-03-02 20:01:05 +01:00
|
|
|
if (err) {
|
|
|
|
VNC_DEBUG("Handshake failed %s\n",
|
|
|
|
error_get_pretty(err));
|
|
|
|
vnc_client_error(vs);
|
|
|
|
} else {
|
2015-02-27 17:20:57 +01:00
|
|
|
vs->ioc_tag = qio_channel_add_watch(
|
|
|
|
vs->ioc, G_IO_IN | G_IO_OUT, vnc_client_io, vs, NULL);
|
ui: convert VNC server to use QCryptoTLSSession
Switch VNC server over to using the QCryptoTLSSession object
for the TLS session. This removes the direct use of gnutls
from the VNC server code. It also removes most knowledge
about TLS certificate handling from the VNC server code.
This has the nice effect that all the CONFIG_VNC_TLS
conditionals go away and the user gets an actual error
message when requesting TLS instead of it being silently
ignored.
With this change, the existing configuration options for
enabling TLS with -vnc are deprecated.
Old syntax for anon-DH credentials:
-vnc hostname:0,tls
New syntax:
-object tls-creds-anon,id=tls0,endpoint=server \
-vnc hostname:0,tls-creds=tls0
Old syntax for x509 credentials, no client certs:
-vnc hostname:0,tls,x509=/path/to/certs
New syntax:
-object tls-creds-x509,id=tls0,dir=/path/to/certs,endpoint=server,verify-peer=no \
-vnc hostname:0,tls-creds=tls0
Old syntax for x509 credentials, requiring client certs:
-vnc hostname:0,tls,x509verify=/path/to/certs
New syntax:
-object tls-creds-x509,id=tls0,dir=/path/to/certs,endpoint=server,verify-peer=yes \
-vnc hostname:0,tls-creds=tls0
This aligns VNC with the way TLS credentials are to be
configured in the future for chardev, nbd and migration
backends. It also has the benefit that the same TLS
credentials can be shared across multiple VNC server
instances, if desired.
If someone uses the deprecated syntax, it will internally
result in the creation of a 'tls-creds' object with an ID
based on the VNC server ID. This allows backwards compat
with the CLI syntax, while still deleting all the original
TLS code from the VNC server.
Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
2015-08-06 15:39:32 +02:00
|
|
|
start_auth_vencrypt_subauth(vs);
|
|
|
|
}
|
2009-03-07 00:44:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int protocol_client_vencrypt_auth(VncState *vs, uint8_t *data, size_t len)
|
|
|
|
{
|
|
|
|
int auth = read_u32(data, 0);
|
|
|
|
|
2011-06-23 14:31:41 +02:00
|
|
|
if (auth != vs->subauth) {
|
2009-03-07 00:44:29 +01:00
|
|
|
VNC_DEBUG("Rejecting auth %d\n", auth);
|
|
|
|
vnc_write_u8(vs, 0); /* Reject auth */
|
|
|
|
vnc_flush(vs);
|
|
|
|
vnc_client_error(vs);
|
|
|
|
} else {
|
ui: convert VNC server to use QCryptoTLSSession
Switch VNC server over to using the QCryptoTLSSession object
for the TLS session. This removes the direct use of gnutls
from the VNC server code. It also removes most knowledge
about TLS certificate handling from the VNC server code.
This has the nice effect that all the CONFIG_VNC_TLS
conditionals go away and the user gets an actual error
message when requesting TLS instead of it being silently
ignored.
With this change, the existing configuration options for
enabling TLS with -vnc are deprecated.
Old syntax for anon-DH credentials:
-vnc hostname:0,tls
New syntax:
-object tls-creds-anon,id=tls0,endpoint=server \
-vnc hostname:0,tls-creds=tls0
Old syntax for x509 credentials, no client certs:
-vnc hostname:0,tls,x509=/path/to/certs
New syntax:
-object tls-creds-x509,id=tls0,dir=/path/to/certs,endpoint=server,verify-peer=no \
-vnc hostname:0,tls-creds=tls0
Old syntax for x509 credentials, requiring client certs:
-vnc hostname:0,tls,x509verify=/path/to/certs
New syntax:
-object tls-creds-x509,id=tls0,dir=/path/to/certs,endpoint=server,verify-peer=yes \
-vnc hostname:0,tls-creds=tls0
This aligns VNC with the way TLS credentials are to be
configured in the future for chardev, nbd and migration
backends. It also has the benefit that the same TLS
credentials can be shared across multiple VNC server
instances, if desired.
If someone uses the deprecated syntax, it will internally
result in the creation of a 'tls-creds' object with an ID
based on the VNC server ID. This allows backwards compat
with the CLI syntax, while still deleting all the original
TLS code from the VNC server.
Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
2015-08-06 15:39:32 +02:00
|
|
|
Error *err = NULL;
|
2015-03-02 20:01:05 +01:00
|
|
|
QIOChannelTLS *tls;
|
2009-03-07 00:44:29 +01:00
|
|
|
VNC_DEBUG("Accepting auth %d, setting up TLS for handshake\n", auth);
|
|
|
|
vnc_write_u8(vs, 1); /* Accept auth */
|
|
|
|
vnc_flush(vs);
|
|
|
|
|
2015-03-02 20:01:05 +01:00
|
|
|
if (vs->ioc_tag) {
|
|
|
|
g_source_remove(vs->ioc_tag);
|
|
|
|
vs->ioc_tag = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
tls = qio_channel_tls_new_server(
|
|
|
|
vs->ioc,
|
|
|
|
vs->vd->tlscreds,
|
|
|
|
vs->vd->tlsaclname,
|
|
|
|
&err);
|
|
|
|
if (!tls) {
|
|
|
|
VNC_DEBUG("Failed to setup TLS %s\n", error_get_pretty(err));
|
ui: convert VNC server to use QCryptoTLSSession
Switch VNC server over to using the QCryptoTLSSession object
for the TLS session. This removes the direct use of gnutls
from the VNC server code. It also removes most knowledge
about TLS certificate handling from the VNC server code.
This has the nice effect that all the CONFIG_VNC_TLS
conditionals go away and the user gets an actual error
message when requesting TLS instead of it being silently
ignored.
With this change, the existing configuration options for
enabling TLS with -vnc are deprecated.
Old syntax for anon-DH credentials:
-vnc hostname:0,tls
New syntax:
-object tls-creds-anon,id=tls0,endpoint=server \
-vnc hostname:0,tls-creds=tls0
Old syntax for x509 credentials, no client certs:
-vnc hostname:0,tls,x509=/path/to/certs
New syntax:
-object tls-creds-x509,id=tls0,dir=/path/to/certs,endpoint=server,verify-peer=no \
-vnc hostname:0,tls-creds=tls0
Old syntax for x509 credentials, requiring client certs:
-vnc hostname:0,tls,x509verify=/path/to/certs
New syntax:
-object tls-creds-x509,id=tls0,dir=/path/to/certs,endpoint=server,verify-peer=yes \
-vnc hostname:0,tls-creds=tls0
This aligns VNC with the way TLS credentials are to be
configured in the future for chardev, nbd and migration
backends. It also has the benefit that the same TLS
credentials can be shared across multiple VNC server
instances, if desired.
If someone uses the deprecated syntax, it will internally
result in the creation of a 'tls-creds' object with an ID
based on the VNC server ID. This allows backwards compat
with the CLI syntax, while still deleting all the original
TLS code from the VNC server.
Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
2015-08-06 15:39:32 +02:00
|
|
|
error_free(err);
|
|
|
|
vnc_client_error(vs);
|
2009-03-07 00:44:29 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
VNC_DEBUG("Start TLS VeNCrypt handshake process\n");
|
2015-03-02 20:01:05 +01:00
|
|
|
object_unref(OBJECT(vs->ioc));
|
|
|
|
vs->ioc = QIO_CHANNEL(tls);
|
|
|
|
vs->tls = qio_channel_tls_get_session(tls);
|
|
|
|
|
|
|
|
qio_channel_tls_handshake(tls,
|
|
|
|
vnc_tls_handshake_done,
|
|
|
|
vs,
|
|
|
|
NULL);
|
2009-03-07 00:44:29 +01:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int protocol_client_vencrypt_init(VncState *vs, uint8_t *data, size_t len)
|
|
|
|
{
|
|
|
|
if (data[0] != 0 ||
|
|
|
|
data[1] != 2) {
|
|
|
|
VNC_DEBUG("Unsupported VeNCrypt protocol %d.%d\n", (int)data[0], (int)data[1]);
|
|
|
|
vnc_write_u8(vs, 1); /* Reject version */
|
|
|
|
vnc_flush(vs);
|
|
|
|
vnc_client_error(vs);
|
|
|
|
} else {
|
2011-06-23 14:31:41 +02:00
|
|
|
VNC_DEBUG("Sending allowed auth %d\n", vs->subauth);
|
2009-03-07 00:44:29 +01:00
|
|
|
vnc_write_u8(vs, 0); /* Accept version */
|
|
|
|
vnc_write_u8(vs, 1); /* Number of sub-auths */
|
2011-06-23 14:31:41 +02:00
|
|
|
vnc_write_u32(vs, vs->subauth); /* The supported auth */
|
2009-03-07 00:44:29 +01:00
|
|
|
vnc_flush(vs);
|
|
|
|
vnc_read_when(vs, protocol_client_vencrypt_auth, 4);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void start_auth_vencrypt(VncState *vs)
|
|
|
|
{
|
|
|
|
/* Send VeNCrypt version 0.2 */
|
|
|
|
vnc_write_u8(vs, 0);
|
|
|
|
vnc_write_u8(vs, 2);
|
|
|
|
|
|
|
|
vnc_read_when(vs, protocol_client_vencrypt_init, 2);
|
|
|
|
}
|
|
|
|
|