2 * QEMU VNC display driver: Websockets support
4 * Copyright (C) 2010 Joel Martin
5 * Copyright (C) 2012 Tim Hardeck
7 * This is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This software is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this software; if not, see <http://www.gnu.org/licenses/>.
21 #include "qemu/osdep.h"
22 #include "qapi/error.h"
24 #include "io/channel-websock.h"
25 #include "qemu/bswap.h"
28 static void vncws_tls_handshake_done(QIOTask *task,
31 VncState *vs = user_data;
34 if (qio_task_propagate_error(task, &err)) {
35 VNC_DEBUG("Handshake failed %s\n", error_get_pretty(err));
39 VNC_DEBUG("TLS handshake complete, starting websocket handshake\n");
41 g_source_remove(vs->ioc_tag);
43 vs->ioc_tag = qio_channel_add_watch(
44 QIO_CHANNEL(vs->ioc), G_IO_IN | G_IO_HUP | G_IO_ERR,
45 vncws_handshake_io, vs, NULL);
50 gboolean vncws_tls_handshake_io(QIOChannel *ioc G_GNUC_UNUSED,
51 GIOCondition condition,
54 VncState *vs = opaque;
59 g_source_remove(vs->ioc_tag);
63 if (condition & (G_IO_HUP | G_IO_ERR)) {
68 tls = qio_channel_tls_new_server(
74 VNC_DEBUG("Failed to setup TLS %s\n", error_get_pretty(err));
80 qio_channel_set_name(QIO_CHANNEL(tls), "vnc-ws-server-tls");
82 object_unref(OBJECT(vs->ioc));
83 vs->ioc = QIO_CHANNEL(tls);
84 trace_vnc_client_io_wrap(vs, vs->ioc, "tls");
85 vs->tls = qio_channel_tls_get_session(tls);
87 qio_channel_tls_handshake(tls,
88 vncws_tls_handshake_done,
97 static void vncws_handshake_done(QIOTask *task,
100 VncState *vs = user_data;
103 if (qio_task_propagate_error(task, &err)) {
104 VNC_DEBUG("Websock handshake failed %s\n", error_get_pretty(err));
105 vnc_client_error(vs);
108 VNC_DEBUG("Websock handshake complete, starting VNC protocol\n");
109 vnc_start_protocol(vs);
111 g_source_remove(vs->ioc_tag);
113 vs->ioc_tag = qio_channel_add_watch(
114 vs->ioc, G_IO_IN | G_IO_HUP | G_IO_ERR,
115 vnc_client_io, vs, NULL);
120 gboolean vncws_handshake_io(QIOChannel *ioc G_GNUC_UNUSED,
121 GIOCondition condition,
124 VncState *vs = opaque;
125 QIOChannelWebsock *wioc;
128 g_source_remove(vs->ioc_tag);
132 if (condition & (G_IO_HUP | G_IO_ERR)) {
133 vnc_client_error(vs);
137 wioc = qio_channel_websock_new_server(vs->ioc);
138 qio_channel_set_name(QIO_CHANNEL(wioc), "vnc-ws-server-websock");
140 object_unref(OBJECT(vs->ioc));
141 vs->ioc = QIO_CHANNEL(wioc);
142 trace_vnc_client_io_wrap(vs, vs->ioc, "websock");
144 qio_channel_websock_handshake(wioc,
145 vncws_handshake_done,