]>
Commit | Line | Data |
---|---|---|
7536ee4b TH |
1 | /* |
2 | * QEMU VNC display driver: Websockets support | |
3 | * | |
4 | * Copyright (C) 2010 Joel Martin | |
5 | * Copyright (C) 2012 Tim Hardeck | |
6 | * | |
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. | |
11 | * | |
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. | |
16 | * | |
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/>. | |
19 | */ | |
20 | ||
e16f4c87 | 21 | #include "qemu/osdep.h" |
da34e65c | 22 | #include "qapi/error.h" |
7536ee4b | 23 | #include "vnc.h" |
d5f04223 | 24 | #include "io/channel-websock.h" |
58369e22 | 25 | #include "qemu/bswap.h" |
ad6374c4 | 26 | #include "trace.h" |
0057a0d5 | 27 | |
60e705c5 | 28 | static void vncws_tls_handshake_done(QIOTask *task, |
2cc45228 DB |
29 | gpointer user_data) |
30 | { | |
31 | VncState *vs = user_data; | |
60e705c5 | 32 | Error *err = NULL; |
4a48aaa9 | 33 | |
60e705c5 | 34 | if (qio_task_propagate_error(task, &err)) { |
2cc45228 DB |
35 | VNC_DEBUG("Handshake failed %s\n", error_get_pretty(err)); |
36 | vnc_client_error(vs); | |
60e705c5 | 37 | error_free(err); |
2cc45228 | 38 | } else { |
d5f04223 | 39 | VNC_DEBUG("TLS handshake complete, starting websocket handshake\n"); |
a75d6f07 BC |
40 | if (vs->ioc_tag) { |
41 | g_source_remove(vs->ioc_tag); | |
42 | } | |
04d2529d | 43 | vs->ioc_tag = qio_channel_add_watch( |
2cc45228 | 44 | QIO_CHANNEL(vs->ioc), G_IO_IN, vncws_handshake_io, vs, NULL); |
3e305e4a | 45 | } |
0057a0d5 TH |
46 | } |
47 | ||
2cc45228 | 48 | |
04d2529d DB |
49 | gboolean vncws_tls_handshake_io(QIOChannel *ioc G_GNUC_UNUSED, |
50 | GIOCondition condition G_GNUC_UNUSED, | |
51 | void *opaque) | |
0057a0d5 | 52 | { |
2cc45228 DB |
53 | VncState *vs = opaque; |
54 | QIOChannelTLS *tls; | |
3e305e4a | 55 | Error *err = NULL; |
0057a0d5 | 56 | |
2cc45228 DB |
57 | if (vs->ioc_tag) { |
58 | g_source_remove(vs->ioc_tag); | |
59 | vs->ioc_tag = 0; | |
60 | } | |
61 | ||
62 | tls = qio_channel_tls_new_server( | |
63 | vs->ioc, | |
64 | vs->vd->tlscreds, | |
b76806d4 | 65 | vs->vd->tlsauthzid, |
2cc45228 DB |
66 | &err); |
67 | if (!tls) { | |
68 | VNC_DEBUG("Failed to setup TLS %s\n", error_get_pretty(err)); | |
3e305e4a DB |
69 | error_free(err); |
70 | vnc_client_error(vs); | |
04d2529d | 71 | return TRUE; |
0057a0d5 | 72 | } |
3e305e4a | 73 | |
10bcfe58 DB |
74 | qio_channel_set_name(QIO_CHANNEL(tls), "vnc-ws-server-tls"); |
75 | ||
2cc45228 DB |
76 | object_unref(OBJECT(vs->ioc)); |
77 | vs->ioc = QIO_CHANNEL(tls); | |
ad6374c4 | 78 | trace_vnc_client_io_wrap(vs, vs->ioc, "tls"); |
2cc45228 DB |
79 | vs->tls = qio_channel_tls_get_session(tls); |
80 | ||
81 | qio_channel_tls_handshake(tls, | |
82 | vncws_tls_handshake_done, | |
83 | vs, | |
1939ccda | 84 | NULL, |
2cc45228 DB |
85 | NULL); |
86 | ||
04d2529d | 87 | return TRUE; |
0057a0d5 | 88 | } |
0057a0d5 | 89 | |
7536ee4b | 90 | |
60e705c5 | 91 | static void vncws_handshake_done(QIOTask *task, |
d5f04223 DB |
92 | gpointer user_data) |
93 | { | |
94 | VncState *vs = user_data; | |
60e705c5 | 95 | Error *err = NULL; |
7536ee4b | 96 | |
60e705c5 | 97 | if (qio_task_propagate_error(task, &err)) { |
d5f04223 DB |
98 | VNC_DEBUG("Websock handshake failed %s\n", error_get_pretty(err)); |
99 | vnc_client_error(vs); | |
60e705c5 | 100 | error_free(err); |
d5f04223 DB |
101 | } else { |
102 | VNC_DEBUG("Websock handshake complete, starting VNC protocol\n"); | |
dbee9897 | 103 | vnc_start_protocol(vs); |
a75d6f07 BC |
104 | if (vs->ioc_tag) { |
105 | g_source_remove(vs->ioc_tag); | |
106 | } | |
04d2529d DB |
107 | vs->ioc_tag = qio_channel_add_watch( |
108 | vs->ioc, G_IO_IN, vnc_client_io, vs, NULL); | |
7536ee4b TH |
109 | } |
110 | } | |
111 | ||
112 | ||
04d2529d DB |
113 | gboolean vncws_handshake_io(QIOChannel *ioc G_GNUC_UNUSED, |
114 | GIOCondition condition G_GNUC_UNUSED, | |
115 | void *opaque) | |
116 | { | |
117 | VncState *vs = opaque; | |
d5f04223 | 118 | QIOChannelWebsock *wioc; |
7536ee4b | 119 | |
d5f04223 DB |
120 | if (vs->ioc_tag) { |
121 | g_source_remove(vs->ioc_tag); | |
122 | vs->ioc_tag = 0; | |
7536ee4b TH |
123 | } |
124 | ||
d5f04223 | 125 | wioc = qio_channel_websock_new_server(vs->ioc); |
10bcfe58 | 126 | qio_channel_set_name(QIO_CHANNEL(wioc), "vnc-ws-server-websock"); |
7536ee4b | 127 | |
d5f04223 DB |
128 | object_unref(OBJECT(vs->ioc)); |
129 | vs->ioc = QIO_CHANNEL(wioc); | |
ad6374c4 | 130 | trace_vnc_client_io_wrap(vs, vs->ioc, "websock"); |
7536ee4b | 131 | |
d5f04223 DB |
132 | qio_channel_websock_handshake(wioc, |
133 | vncws_handshake_done, | |
134 | vs, | |
135 | NULL); | |
7536ee4b | 136 | |
d5f04223 | 137 | return TRUE; |
7536ee4b | 138 | } |