]> git.proxmox.com Git - mirror_qemu.git/blame - ui/spice-core.c
Drop superfluous includes of qapi-types.h and test-qapi-types.h
[mirror_qemu.git] / ui / spice-core.c
CommitLineData
29b0040b
GH
1/*
2 * Copyright (C) 2010 Red Hat, Inc.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License as
6 * published by the Free Software Foundation; either version 2 or
7 * (at your option) version 3 of the License.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, see <http://www.gnu.org/licenses/>.
16 */
17
e16f4c87 18#include "qemu/osdep.h"
29b0040b 19#include <spice.h>
29b0040b 20
6f8c63fb 21#include <netdb.h>
9c17d615 22#include "sysemu/sysemu.h"
6f8c63fb 23
29b0040b 24#include "qemu-common.h"
28ecbaee 25#include "ui/qemu-spice.h"
d49b6836 26#include "qemu/error-report.h"
1de7afc9
PB
27#include "qemu/thread.h"
28#include "qemu/timer.h"
29#include "qemu/queue.h"
c448e855 30#include "qemu-x509.h"
1de7afc9 31#include "qemu/sockets.h"
d1f29646 32#include "qmp-commands.h"
7b1b5d19
PB
33#include "qapi/qmp/qbool.h"
34#include "qapi/qmp/qstring.h"
35#include "qapi/qmp/qjson.h"
1de7afc9 36#include "qemu/notify.h"
c4b63b7c 37#include "migration/misc.h"
e866e239 38#include "hw/hw.h"
28ecbaee 39#include "ui/spice-display.h"
7cfadb6b 40#include "qapi-event.h"
29b0040b
GH
41
42/* core bits */
43
44static SpiceServer *spice_server;
e866e239 45static Notifier migration_state;
6f8c63fb 46static const char *auth = "spice";
7572150c
GH
47static char *auth_passwd;
48static time_t auth_expires = TIME_MAX;
61c4efe2 49static int spice_migration_completed;
7cc6a25f 50static int spice_display_is_running;
a76a2f72 51static int spice_have_target_host;
29b0040b
GH
52int using_spice = 0;
53
f9ab6091 54static QemuThread me;
22b626e2 55
29b0040b
GH
56struct SpiceTimer {
57 QEMUTimer *timer;
29b0040b 58};
29b0040b
GH
59
60static SpiceTimer *timer_add(SpiceTimerFunc func, void *opaque)
61{
62 SpiceTimer *timer;
63
7267c094 64 timer = g_malloc0(sizeof(*timer));
bc72ad67 65 timer->timer = timer_new_ms(QEMU_CLOCK_REALTIME, func, opaque);
29b0040b
GH
66 return timer;
67}
68
69static void timer_start(SpiceTimer *timer, uint32_t ms)
70{
bc72ad67 71 timer_mod(timer->timer, qemu_clock_get_ms(QEMU_CLOCK_REALTIME) + ms);
29b0040b
GH
72}
73
74static void timer_cancel(SpiceTimer *timer)
75{
bc72ad67 76 timer_del(timer->timer);
29b0040b
GH
77}
78
79static void timer_remove(SpiceTimer *timer)
80{
bc72ad67
AB
81 timer_del(timer->timer);
82 timer_free(timer->timer);
7267c094 83 g_free(timer);
29b0040b
GH
84}
85
86struct SpiceWatch {
87 int fd;
29b0040b
GH
88 SpiceWatchFunc func;
89 void *opaque;
29b0040b 90};
29b0040b
GH
91
92static void watch_read(void *opaque)
93{
94 SpiceWatch *watch = opaque;
95 watch->func(watch->fd, SPICE_WATCH_EVENT_READ, watch->opaque);
96}
97
98static void watch_write(void *opaque)
99{
100 SpiceWatch *watch = opaque;
101 watch->func(watch->fd, SPICE_WATCH_EVENT_WRITE, watch->opaque);
102}
103
104static void watch_update_mask(SpiceWatch *watch, int event_mask)
105{
106 IOHandler *on_read = NULL;
107 IOHandler *on_write = NULL;
108
58a5d33a 109 if (event_mask & SPICE_WATCH_EVENT_READ) {
29b0040b
GH
110 on_read = watch_read;
111 }
58a5d33a 112 if (event_mask & SPICE_WATCH_EVENT_WRITE) {
3d6d306c 113 on_write = watch_write;
29b0040b
GH
114 }
115 qemu_set_fd_handler(watch->fd, on_read, on_write, watch);
116}
117
118static SpiceWatch *watch_add(int fd, int event_mask, SpiceWatchFunc func, void *opaque)
119{
120 SpiceWatch *watch;
121
7267c094 122 watch = g_malloc0(sizeof(*watch));
29b0040b
GH
123 watch->fd = fd;
124 watch->func = func;
125 watch->opaque = opaque;
29b0040b
GH
126
127 watch_update_mask(watch, event_mask);
128 return watch;
129}
130
131static void watch_remove(SpiceWatch *watch)
132{
08cc67f3 133 qemu_set_fd_handler(watch->fd, NULL, NULL, NULL);
7267c094 134 g_free(watch);
29b0040b
GH
135}
136
cb42a870
GH
137typedef struct ChannelList ChannelList;
138struct ChannelList {
139 SpiceChannelEventInfo *info;
140 QTAILQ_ENTRY(ChannelList) link;
141};
142static QTAILQ_HEAD(, ChannelList) channel_list = QTAILQ_HEAD_INITIALIZER(channel_list);
143
144static void channel_list_add(SpiceChannelEventInfo *info)
145{
146 ChannelList *item;
147
7267c094 148 item = g_malloc0(sizeof(*item));
cb42a870
GH
149 item->info = info;
150 QTAILQ_INSERT_TAIL(&channel_list, item, link);
151}
152
153static void channel_list_del(SpiceChannelEventInfo *info)
154{
155 ChannelList *item;
156
157 QTAILQ_FOREACH(item, &channel_list, link) {
158 if (item->info != info) {
159 continue;
160 }
161 QTAILQ_REMOVE(&channel_list, item, link);
7267c094 162 g_free(item);
cb42a870
GH
163 return;
164 }
165}
166
7cfadb6b 167static void add_addr_info(SpiceBasicInfo *info, struct sockaddr *addr, int len)
6f8c63fb
GH
168{
169 char host[NI_MAXHOST], port[NI_MAXSERV];
6f8c63fb
GH
170
171 getnameinfo(addr, len, host, sizeof(host), port, sizeof(port),
172 NI_NUMERICHOST | NI_NUMERICSERV);
6f8c63fb 173
7cfadb6b
WX
174 info->host = g_strdup(host);
175 info->port = g_strdup(port);
176 info->family = inet_netfamily(addr->sa_family);
6f8c63fb
GH
177}
178
7cfadb6b 179static void add_channel_info(SpiceChannel *sc, SpiceChannelEventInfo *info)
6f8c63fb
GH
180{
181 int tls = info->flags & SPICE_CHANNEL_EVENT_FLAG_TLS;
182
7cfadb6b
WX
183 sc->connection_id = info->connection_id;
184 sc->channel_type = info->type;
185 sc->channel_id = info->id;
186 sc->tls = !!tls;
6f8c63fb
GH
187}
188
189static void channel_event(int event, SpiceChannelEventInfo *info)
190{
7cfadb6b
WX
191 SpiceServerInfo *server = g_malloc0(sizeof(*server));
192 SpiceChannel *client = g_malloc0(sizeof(*client));
6f8c63fb 193
22b626e2
GH
194 /*
195 * Spice server might have called us from spice worker thread
196 * context (happens on display channel disconnects). Spice should
197 * not do that. It isn't that easy to fix it in spice and even
198 * when it is fixed we still should cover the already released
199 * spice versions. So detect that we've been called from another
200 * thread and grab the iothread lock if so before calling qemu
201 * functions.
202 */
f9ab6091 203 bool need_lock = !qemu_thread_is_self(&me);
22b626e2
GH
204 if (need_lock) {
205 qemu_mutex_lock_iothread();
206 }
207
faa98223 208 if (info->flags & SPICE_CHANNEL_EVENT_FLAG_ADDR_EXT) {
ddf21908
EB
209 add_addr_info(qapi_SpiceChannel_base(client),
210 (struct sockaddr *)&info->paddr_ext,
faa98223 211 info->plen_ext);
ddf21908
EB
212 add_addr_info(qapi_SpiceServerInfo_base(server),
213 (struct sockaddr *)&info->laddr_ext,
faa98223
YH
214 info->llen_ext);
215 } else {
339a475f
CF
216 error_report("spice: %s, extended address is expected",
217 __func__);
faa98223 218 }
6f8c63fb 219
7cfadb6b
WX
220 switch (event) {
221 case SPICE_CHANNEL_EVENT_CONNECTED:
ddf21908
EB
222 qapi_event_send_spice_connected(qapi_SpiceServerInfo_base(server),
223 qapi_SpiceChannel_base(client),
224 &error_abort);
7cfadb6b
WX
225 break;
226 case SPICE_CHANNEL_EVENT_INITIALIZED:
227 if (auth) {
228 server->has_auth = true;
229 server->auth = g_strdup(auth);
230 }
6f8c63fb 231 add_channel_info(client, info);
cb42a870 232 channel_list_add(info);
7cfadb6b
WX
233 qapi_event_send_spice_initialized(server, client, &error_abort);
234 break;
235 case SPICE_CHANNEL_EVENT_DISCONNECTED:
cb42a870 236 channel_list_del(info);
ddf21908
EB
237 qapi_event_send_spice_disconnected(qapi_SpiceServerInfo_base(server),
238 qapi_SpiceChannel_base(client),
239 &error_abort);
7cfadb6b
WX
240 break;
241 default:
242 break;
6f8c63fb
GH
243 }
244
22b626e2
GH
245 if (need_lock) {
246 qemu_mutex_unlock_iothread();
247 }
7cfadb6b
WX
248
249 qapi_free_SpiceServerInfo(server);
250 qapi_free_SpiceChannel(client);
6f8c63fb
GH
251}
252
29b0040b
GH
253static SpiceCoreInterface core_interface = {
254 .base.type = SPICE_INTERFACE_CORE,
255 .base.description = "qemu core services",
256 .base.major_version = SPICE_INTERFACE_CORE_MAJOR,
257 .base.minor_version = SPICE_INTERFACE_CORE_MINOR,
258
259 .timer_add = timer_add,
260 .timer_start = timer_start,
261 .timer_cancel = timer_cancel,
262 .timer_remove = timer_remove,
263
264 .watch_add = watch_add,
265 .watch_update_mask = watch_update_mask,
266 .watch_remove = watch_remove,
6f8c63fb 267
6f8c63fb 268 .channel_event = channel_event,
29b0040b
GH
269};
270
026f773f 271static void migrate_connect_complete_cb(SpiceMigrateInstance *sin);
2fdd16e2 272static void migrate_end_complete_cb(SpiceMigrateInstance *sin);
026f773f
YH
273
274static const SpiceMigrateInterface migrate_interface = {
275 .base.type = SPICE_INTERFACE_MIGRATION,
276 .base.description = "migration",
277 .base.major_version = SPICE_INTERFACE_MIGRATION_MAJOR,
278 .base.minor_version = SPICE_INTERFACE_MIGRATION_MINOR,
279 .migrate_connect_complete = migrate_connect_complete_cb,
2fdd16e2 280 .migrate_end_complete = migrate_end_complete_cb,
026f773f
YH
281};
282
3b5704b2 283static SpiceMigrateInstance spice_migrate;
026f773f
YH
284
285static void migrate_connect_complete_cb(SpiceMigrateInstance *sin)
286{
3b5704b2 287 /* nothing, but libspice-server expects this cb being present. */
026f773f 288}
2fdd16e2
YH
289
290static void migrate_end_complete_cb(SpiceMigrateInstance *sin)
291{
7cfadb6b 292 qapi_event_send_spice_migrate_completed(&error_abort);
61c4efe2 293 spice_migration_completed = true;
2fdd16e2 294}
026f773f 295
9f04e09e
YH
296/* config string parsing */
297
298static int name2enum(const char *string, const char *table[], int entries)
299{
300 int i;
301
302 if (string) {
303 for (i = 0; i < entries; i++) {
304 if (!table[i]) {
305 continue;
306 }
307 if (strcmp(string, table[i]) != 0) {
308 continue;
309 }
310 return i;
311 }
312 }
313 return -1;
314}
315
316static int parse_name(const char *string, const char *optname,
317 const char *table[], int entries)
318{
319 int value = name2enum(string, table, entries);
320
321 if (value != -1) {
322 return value;
323 }
339a475f 324 error_report("spice: invalid %s: %s", optname, string);
9f04e09e
YH
325 exit(1);
326}
327
84a23f25
GH
328static const char *stream_video_names[] = {
329 [ SPICE_STREAM_VIDEO_OFF ] = "off",
330 [ SPICE_STREAM_VIDEO_ALL ] = "all",
331 [ SPICE_STREAM_VIDEO_FILTER ] = "filter",
332};
333#define parse_stream_video(_name) \
835cab85
CF
334 parse_name(_name, "stream video control", \
335 stream_video_names, ARRAY_SIZE(stream_video_names))
84a23f25 336
9f04e09e
YH
337static const char *compression_names[] = {
338 [ SPICE_IMAGE_COMPRESS_OFF ] = "off",
339 [ SPICE_IMAGE_COMPRESS_AUTO_GLZ ] = "auto_glz",
340 [ SPICE_IMAGE_COMPRESS_AUTO_LZ ] = "auto_lz",
341 [ SPICE_IMAGE_COMPRESS_QUIC ] = "quic",
342 [ SPICE_IMAGE_COMPRESS_GLZ ] = "glz",
343 [ SPICE_IMAGE_COMPRESS_LZ ] = "lz",
344};
345#define parse_compression(_name) \
346 parse_name(_name, "image compression", \
347 compression_names, ARRAY_SIZE(compression_names))
348
349static const char *wan_compression_names[] = {
350 [ SPICE_WAN_COMPRESSION_AUTO ] = "auto",
351 [ SPICE_WAN_COMPRESSION_NEVER ] = "never",
352 [ SPICE_WAN_COMPRESSION_ALWAYS ] = "always",
353};
354#define parse_wan_compression(_name) \
355 parse_name(_name, "wan compression", \
356 wan_compression_names, ARRAY_SIZE(wan_compression_names))
357
29b0040b
GH
358/* functions for the rest of qemu */
359
d1f29646 360static SpiceChannelList *qmp_query_spice_channels(void)
cb42a870 361{
d1f29646
LC
362 SpiceChannelList *cur_item = NULL, *head = NULL;
363 ChannelList *item;
cb42a870 364
d1f29646
LC
365 QTAILQ_FOREACH(item, &channel_list, link) {
366 SpiceChannelList *chan;
367 char host[NI_MAXHOST], port[NI_MAXSERV];
faa98223
YH
368 struct sockaddr *paddr;
369 socklen_t plen;
d1f29646 370
a4164270 371 assert(item->info->flags & SPICE_CHANNEL_EVENT_FLAG_ADDR_EXT);
26defe81 372
d1f29646
LC
373 chan = g_malloc0(sizeof(*chan));
374 chan->value = g_malloc0(sizeof(*chan->value));
375
26defe81
MAL
376 paddr = (struct sockaddr *)&item->info->paddr_ext;
377 plen = item->info->plen_ext;
faa98223 378 getnameinfo(paddr, plen,
d1f29646
LC
379 host, sizeof(host), port, sizeof(port),
380 NI_NUMERICHOST | NI_NUMERICSERV);
ddf21908
EB
381 chan->value->host = g_strdup(host);
382 chan->value->port = g_strdup(port);
383 chan->value->family = inet_netfamily(paddr->sa_family);
d1f29646
LC
384
385 chan->value->connection_id = item->info->connection_id;
386 chan->value->channel_type = item->info->type;
387 chan->value->channel_id = item->info->id;
388 chan->value->tls = item->info->flags & SPICE_CHANNEL_EVENT_FLAG_TLS;
389
390 /* XXX: waiting for the qapi to support GSList */
391 if (!cur_item) {
392 head = cur_item = chan;
393 } else {
394 cur_item->next = chan;
395 cur_item = chan;
396 }
cb42a870
GH
397 }
398
d1f29646 399 return head;
cb42a870
GH
400}
401
4d454574
PB
402static QemuOptsList qemu_spice_opts = {
403 .name = "spice",
404 .head = QTAILQ_HEAD_INITIALIZER(qemu_spice_opts.head),
405 .desc = {
406 {
407 .name = "port",
408 .type = QEMU_OPT_NUMBER,
409 },{
410 .name = "tls-port",
411 .type = QEMU_OPT_NUMBER,
412 },{
413 .name = "addr",
414 .type = QEMU_OPT_STRING,
415 },{
416 .name = "ipv4",
417 .type = QEMU_OPT_BOOL,
418 },{
419 .name = "ipv6",
420 .type = QEMU_OPT_BOOL,
fe4831b1
MAL
421#ifdef SPICE_ADDR_FLAG_UNIX_ONLY
422 },{
423 .name = "unix",
424 .type = QEMU_OPT_BOOL,
425#endif
4d454574
PB
426 },{
427 .name = "password",
428 .type = QEMU_OPT_STRING,
429 },{
430 .name = "disable-ticketing",
431 .type = QEMU_OPT_BOOL,
432 },{
433 .name = "disable-copy-paste",
434 .type = QEMU_OPT_BOOL,
5ad24e5f
HG
435 },{
436 .name = "disable-agent-file-xfer",
437 .type = QEMU_OPT_BOOL,
4d454574
PB
438 },{
439 .name = "sasl",
440 .type = QEMU_OPT_BOOL,
441 },{
442 .name = "x509-dir",
443 .type = QEMU_OPT_STRING,
444 },{
445 .name = "x509-key-file",
446 .type = QEMU_OPT_STRING,
447 },{
448 .name = "x509-key-password",
449 .type = QEMU_OPT_STRING,
450 },{
451 .name = "x509-cert-file",
452 .type = QEMU_OPT_STRING,
453 },{
454 .name = "x509-cacert-file",
455 .type = QEMU_OPT_STRING,
456 },{
457 .name = "x509-dh-key-file",
458 .type = QEMU_OPT_STRING,
459 },{
460 .name = "tls-ciphers",
461 .type = QEMU_OPT_STRING,
462 },{
463 .name = "tls-channel",
464 .type = QEMU_OPT_STRING,
465 },{
466 .name = "plaintext-channel",
467 .type = QEMU_OPT_STRING,
468 },{
469 .name = "image-compression",
470 .type = QEMU_OPT_STRING,
471 },{
472 .name = "jpeg-wan-compression",
473 .type = QEMU_OPT_STRING,
474 },{
475 .name = "zlib-glz-wan-compression",
476 .type = QEMU_OPT_STRING,
477 },{
478 .name = "streaming-video",
479 .type = QEMU_OPT_STRING,
480 },{
481 .name = "agent-mouse",
482 .type = QEMU_OPT_BOOL,
483 },{
484 .name = "playback-compression",
485 .type = QEMU_OPT_BOOL,
474114b7 486 },{
4d454574
PB
487 .name = "seamless-migration",
488 .type = QEMU_OPT_BOOL,
8bf69b49
GH
489 },{
490 .name = "display",
491 .type = QEMU_OPT_STRING,
492 },{
493 .name = "head",
494 .type = QEMU_OPT_NUMBER,
474114b7
GH
495#ifdef HAVE_SPICE_GL
496 },{
497 .name = "gl",
498 .type = QEMU_OPT_BOOL,
7b525508
MAL
499 },{
500 .name = "rendernode",
501 .type = QEMU_OPT_STRING,
474114b7 502#endif
4d454574
PB
503 },
504 { /* end of list */ }
505 },
506};
507
d1f29646 508SpiceInfo *qmp_query_spice(Error **errp)
cb42a870
GH
509{
510 QemuOpts *opts = QTAILQ_FIRST(&qemu_spice_opts.head);
cb42a870 511 int port, tls_port;
d1f29646
LC
512 const char *addr;
513 SpiceInfo *info;
6735aa99
CF
514 unsigned int major;
515 unsigned int minor;
516 unsigned int micro;
cb42a870 517
d1f29646
LC
518 info = g_malloc0(sizeof(*info));
519
3bb781f3 520 if (!spice_server || !opts) {
d1f29646
LC
521 info->enabled = false;
522 return info;
cb42a870
GH
523 }
524
d1f29646 525 info->enabled = true;
61c4efe2 526 info->migrated = spice_migration_completed;
d1f29646 527
cb42a870
GH
528 addr = qemu_opt_get(opts, "addr");
529 port = qemu_opt_get_number(opts, "port", 0);
530 tls_port = qemu_opt_get_number(opts, "tls-port", 0);
cb42a870 531
d1f29646
LC
532 info->has_auth = true;
533 info->auth = g_strdup(auth);
534
535 info->has_host = true;
4f60af9a 536 info->host = g_strdup(addr ? addr : "*");
d1f29646
LC
537
538 info->has_compiled_version = true;
6735aa99
CF
539 major = (SPICE_SERVER_VERSION & 0xff0000) >> 16;
540 minor = (SPICE_SERVER_VERSION & 0xff00) >> 8;
541 micro = SPICE_SERVER_VERSION & 0xff;
542 info->compiled_version = g_strdup_printf("%d.%d.%d", major, minor, micro);
d1f29646 543
cb42a870 544 if (port) {
d1f29646
LC
545 info->has_port = true;
546 info->port = port;
cb42a870
GH
547 }
548 if (tls_port) {
d1f29646
LC
549 info->has_tls_port = true;
550 info->tls_port = tls_port;
cb42a870
GH
551 }
552
4efee029
AL
553 info->mouse_mode = spice_server_is_server_mouse(spice_server) ?
554 SPICE_QUERY_MOUSE_MODE_SERVER :
555 SPICE_QUERY_MOUSE_MODE_CLIENT;
67be6726 556
d1f29646
LC
557 /* for compatibility with the original command */
558 info->has_channels = true;
559 info->channels = qmp_query_spice_channels();
560
561 return info;
cb42a870
GH
562}
563
9e8dd451 564static void migration_state_notifier(Notifier *notifier, void *data)
e866e239 565{
7073693b 566 MigrationState *s = data;
e866e239 567
a76a2f72
GH
568 if (!spice_have_target_host) {
569 return;
570 }
571
02edd2e7 572 if (migration_in_setup(s)) {
026f773f 573 spice_server_migrate_start(spice_server);
b82fc321
DDAG
574 } else if (migration_has_finished(s) ||
575 migration_in_postcopy_after_devices(s)) {
026f773f 576 spice_server_migrate_end(spice_server, true);
a76a2f72 577 spice_have_target_host = false;
026f773f
YH
578 } else if (migration_has_failed(s)) {
579 spice_server_migrate_end(spice_server, false);
a76a2f72 580 spice_have_target_host = false;
e866e239
GH
581 }
582}
583
584int qemu_spice_migrate_info(const char *hostname, int port, int tls_port,
3b5704b2 585 const char *subject)
e866e239 586{
edc5cb1a 587 int ret;
67be6726 588
026f773f
YH
589 ret = spice_server_migrate_connect(spice_server, hostname,
590 port, tls_port, subject);
a76a2f72 591 spice_have_target_host = true;
edc5cb1a 592 return ret;
e866e239
GH
593}
594
71df1d83
MA
595static int add_channel(void *opaque, const char *name, const char *value,
596 Error **errp)
17b6dea0
GH
597{
598 int security = 0;
599 int rc;
600
601 if (strcmp(name, "tls-channel") == 0) {
35c63329
CF
602 int *tls_port = opaque;
603 if (!*tls_port) {
604 error_report("spice: tried to setup tls-channel"
605 " without specifying a TLS port");
606 exit(1);
607 }
17b6dea0
GH
608 security = SPICE_CHANNEL_SECURITY_SSL;
609 }
610 if (strcmp(name, "plaintext-channel") == 0) {
611 security = SPICE_CHANNEL_SECURITY_NONE;
612 }
613 if (security == 0) {
614 return 0;
615 }
616 if (strcmp(value, "default") == 0) {
617 rc = spice_server_set_channel_security(spice_server, NULL, security);
618 } else {
619 rc = spice_server_set_channel_security(spice_server, value, security);
620 }
621 if (rc != 0) {
339a475f 622 error_report("spice: failed to set channel security for %s", value);
17b6dea0
GH
623 exit(1);
624 }
625 return 0;
626}
627
f5bb039c
YH
628static void vm_change_state_handler(void *opaque, int running,
629 RunState state)
630{
f5bb039c 631 if (running) {
71d388d4 632 qemu_spice_display_start();
f5bb039c 633 } else {
71d388d4 634 qemu_spice_display_stop();
f5bb039c 635 }
f5bb039c
YH
636}
637
29b0040b
GH
638void qemu_spice_init(void)
639{
640 QemuOpts *opts = QTAILQ_FIRST(&qemu_spice_opts.head);
333b0eeb 641 const char *password, *str, *x509_dir, *addr,
c448e855
GH
642 *x509_key_password = NULL,
643 *x509_dh_file = NULL,
644 *tls_ciphers = NULL;
645 char *x509_key_file = NULL,
646 *x509_cert_file = NULL,
647 *x509_cacert_file = NULL;
6735aa99 648 int port, tls_port, addr_flags;
9f04e09e
YH
649 spice_image_compression_t compression;
650 spice_wan_compression_t wan_compr;
8c957053 651 bool seamless_migration;
29b0040b 652
f9ab6091 653 qemu_thread_get_self(&me);
22b626e2 654
ad1be899 655 if (!opts) {
29b0040b
GH
656 return;
657 }
658 port = qemu_opt_get_number(opts, "port", 0);
c448e855 659 tls_port = qemu_opt_get_number(opts, "tls-port", 0);
df9cb669 660 if (port < 0 || port > 65535) {
339a475f 661 error_report("spice port is out of range");
df9cb669
GH
662 exit(1);
663 }
664 if (tls_port < 0 || tls_port > 65535) {
339a475f 665 error_report("spice tls-port is out of range");
df9cb669 666 exit(1);
29b0040b
GH
667 }
668 password = qemu_opt_get(opts, "password");
669
c448e855
GH
670 if (tls_port) {
671 x509_dir = qemu_opt_get(opts, "x509-dir");
fe8e8327 672 if (!x509_dir) {
c448e855
GH
673 x509_dir = ".";
674 }
c448e855
GH
675
676 str = qemu_opt_get(opts, "x509-key-file");
677 if (str) {
7267c094 678 x509_key_file = g_strdup(str);
c448e855 679 } else {
6735aa99
CF
680 x509_key_file = g_strdup_printf("%s/%s", x509_dir,
681 X509_SERVER_KEY_FILE);
c448e855
GH
682 }
683
684 str = qemu_opt_get(opts, "x509-cert-file");
685 if (str) {
7267c094 686 x509_cert_file = g_strdup(str);
c448e855 687 } else {
6735aa99
CF
688 x509_cert_file = g_strdup_printf("%s/%s", x509_dir,
689 X509_SERVER_CERT_FILE);
c448e855
GH
690 }
691
692 str = qemu_opt_get(opts, "x509-cacert-file");
693 if (str) {
7267c094 694 x509_cacert_file = g_strdup(str);
c448e855 695 } else {
6735aa99
CF
696 x509_cacert_file = g_strdup_printf("%s/%s", x509_dir,
697 X509_CA_CERT_FILE);
c448e855
GH
698 }
699
700 x509_key_password = qemu_opt_get(opts, "x509-key-password");
9995c0b7 701 x509_dh_file = qemu_opt_get(opts, "x509-dh-key-file");
c448e855
GH
702 tls_ciphers = qemu_opt_get(opts, "tls-ciphers");
703 }
704
333b0eeb
GH
705 addr = qemu_opt_get(opts, "addr");
706 addr_flags = 0;
707 if (qemu_opt_get_bool(opts, "ipv4", 0)) {
708 addr_flags |= SPICE_ADDR_FLAG_IPV4_ONLY;
709 } else if (qemu_opt_get_bool(opts, "ipv6", 0)) {
710 addr_flags |= SPICE_ADDR_FLAG_IPV6_ONLY;
fe4831b1
MAL
711#ifdef SPICE_ADDR_FLAG_UNIX_ONLY
712 } else if (qemu_opt_get_bool(opts, "unix", 0)) {
713 addr_flags |= SPICE_ADDR_FLAG_UNIX_ONLY;
714#endif
333b0eeb
GH
715 }
716
29b0040b 717 spice_server = spice_server_new();
333b0eeb 718 spice_server_set_addr(spice_server, addr ? addr : "", addr_flags);
c448e855
GH
719 if (port) {
720 spice_server_set_port(spice_server, port);
721 }
722 if (tls_port) {
723 spice_server_set_tls(spice_server, tls_port,
724 x509_cacert_file,
725 x509_cert_file,
726 x509_key_file,
727 x509_key_password,
728 x509_dh_file,
729 tls_ciphers);
730 }
29b0040b 731 if (password) {
07d49a53 732 qemu_spice_set_passwd(password, false, false);
29b0040b 733 }
48b3ed0a 734 if (qemu_opt_get_bool(opts, "sasl", 0)) {
06bb8814 735 if (spice_server_set_sasl(spice_server, 1) == -1) {
339a475f 736 error_report("spice: failed to enable sasl");
48b3ed0a
MAL
737 exit(1);
738 }
b1ea7b79 739 auth = "sasl";
48b3ed0a 740 }
29b0040b 741 if (qemu_opt_get_bool(opts, "disable-ticketing", 0)) {
6f8c63fb 742 auth = "none";
29b0040b
GH
743 spice_server_set_noauth(spice_server);
744 }
745
d4970b07
HG
746 if (qemu_opt_get_bool(opts, "disable-copy-paste", 0)) {
747 spice_server_set_agent_copypaste(spice_server, false);
748 }
d4970b07 749
5ad24e5f
HG
750 if (qemu_opt_get_bool(opts, "disable-agent-file-xfer", 0)) {
751#if SPICE_SERVER_VERSION >= 0x000c04
752 spice_server_set_agent_file_xfer(spice_server, false);
753#else
754 error_report("this qemu build does not support the "
755 "\"disable-agent-file-xfer\" option");
756 exit(1);
757#endif
758 }
759
9f04e09e
YH
760 compression = SPICE_IMAGE_COMPRESS_AUTO_GLZ;
761 str = qemu_opt_get(opts, "image-compression");
762 if (str) {
763 compression = parse_compression(str);
764 }
765 spice_server_set_image_compression(spice_server, compression);
766
767 wan_compr = SPICE_WAN_COMPRESSION_AUTO;
768 str = qemu_opt_get(opts, "jpeg-wan-compression");
769 if (str) {
770 wan_compr = parse_wan_compression(str);
771 }
772 spice_server_set_jpeg_compression(spice_server, wan_compr);
773
774 wan_compr = SPICE_WAN_COMPRESSION_AUTO;
775 str = qemu_opt_get(opts, "zlib-glz-wan-compression");
776 if (str) {
777 wan_compr = parse_wan_compression(str);
778 }
779 spice_server_set_zlib_glz_compression(spice_server, wan_compr);
29b0040b 780
84a23f25
GH
781 str = qemu_opt_get(opts, "streaming-video");
782 if (str) {
f61d6960 783 int streaming_video = parse_stream_video(str);
84a23f25 784 spice_server_set_streaming_video(spice_server, streaming_video);
f1d3e586
GH
785 } else {
786 spice_server_set_streaming_video(spice_server, SPICE_STREAM_VIDEO_OFF);
84a23f25
GH
787 }
788
789 spice_server_set_agent_mouse
790 (spice_server, qemu_opt_get_bool(opts, "agent-mouse", 1));
791 spice_server_set_playback_compression
792 (spice_server, qemu_opt_get_bool(opts, "playback-compression", 1));
793
71df1d83 794 qemu_opt_foreach(opts, add_channel, &tls_port, NULL);
17b6dea0 795
d0638b18 796 spice_server_set_name(spice_server, qemu_name);
9c5ce8db 797 spice_server_set_uuid(spice_server, (unsigned char *)&qemu_uuid);
d0638b18 798
8c957053
YH
799 seamless_migration = qemu_opt_get_bool(opts, "seamless-migration", 0);
800 spice_server_set_seamless_migration(spice_server, seamless_migration);
06bb8814 801 spice_server_set_sasl_appname(spice_server, "qemu");
fe8e8327 802 if (spice_server_init(spice_server, &core_interface) != 0) {
339a475f 803 error_report("failed to initialize spice server");
fba810f1
GH
804 exit(1);
805 };
29b0040b 806 using_spice = 1;
864401c2 807
e866e239
GH
808 migration_state.notify = migration_state_notifier;
809 add_migration_state_change_notifier(&migration_state);
3b5704b2
MA
810 spice_migrate.base.sif = &migrate_interface.base;
811 qemu_spice_add_interface(&spice_migrate.base);
e866e239 812
864401c2 813 qemu_spice_input_init();
3e313753 814 qemu_spice_audio_init();
c448e855 815
bfb82a28 816 qemu_add_vm_change_state_handler(vm_change_state_handler, NULL);
641381c1 817 qemu_spice_display_stop();
f5bb039c 818
7267c094
AL
819 g_free(x509_key_file);
820 g_free(x509_cert_file);
821 g_free(x509_cacert_file);
afd0b409
MAL
822
823#if SPICE_SERVER_VERSION >= 0x000c02
824 qemu_spice_register_ports();
825#endif
474114b7
GH
826
827#ifdef HAVE_SPICE_GL
828 if (qemu_opt_get_bool(opts, "gl", 0)) {
569a93cb
CF
829 if ((port != 0) || (tls_port != 0)) {
830 error_report("SPICE GL support is local-only for now and "
831 "incompatible with -spice port/tls-port");
832 exit(1);
833 }
7b525508 834 if (egl_rendernode_init(qemu_opt_get(opts, "rendernode")) != 0) {
daafc661
CR
835 error_report("Failed to initialize EGL render node for SPICE GL");
836 exit(1);
474114b7 837 }
daafc661 838 display_opengl = 1;
fe5c44f9 839 spice_opengl = 1;
474114b7
GH
840 }
841#endif
29b0040b
GH
842}
843
844int qemu_spice_add_interface(SpiceBaseInstance *sin)
845{
a19cbfb3
GH
846 if (!spice_server) {
847 if (QTAILQ_FIRST(&qemu_spice_opts.head) != NULL) {
339a475f 848 error_report("Oops: spice configured but not active");
a19cbfb3
GH
849 exit(1);
850 }
851 /*
852 * Create a spice server instance.
853 * It does *not* listen on the network.
854 * It handles QXL local rendering only.
855 *
856 * With a command line like '-vnc :0 -vga qxl' you'll end up here.
857 */
858 spice_server = spice_server_new();
764eb39d 859 spice_server_set_sasl_appname(spice_server, "qemu");
a19cbfb3 860 spice_server_init(spice_server, &core_interface);
bfb82a28 861 qemu_add_vm_change_state_handler(vm_change_state_handler, NULL);
a19cbfb3 862 }
71d388d4 863
9fa03286
GH
864 return spice_server_add_interface(spice_server, sin);
865}
866
867static GSList *spice_consoles;
9fa03286
GH
868
869bool qemu_spice_have_display_interface(QemuConsole *con)
870{
871 if (g_slist_find(spice_consoles, con)) {
872 return true;
58ae52a8 873 }
9fa03286
GH
874 return false;
875}
58ae52a8 876
9fa03286
GH
877int qemu_spice_add_display_interface(QXLInstance *qxlin, QemuConsole *con)
878{
879 if (g_slist_find(spice_consoles, con)) {
880 return -1;
881 }
cd56cc6b 882 qxlin->id = qemu_console_get_index(con);
9fa03286
GH
883 spice_consoles = g_slist_append(spice_consoles, con);
884 return qemu_spice_add_interface(&qxlin->base);
29b0040b
GH
885}
886
7572150c
GH
887static int qemu_spice_set_ticket(bool fail_if_conn, bool disconnect_if_conn)
888{
889 time_t lifetime, now = time(NULL);
890 char *passwd;
891
892 if (now < auth_expires) {
893 passwd = auth_passwd;
894 lifetime = (auth_expires - now);
895 if (lifetime > INT_MAX) {
896 lifetime = INT_MAX;
897 }
898 } else {
899 passwd = NULL;
900 lifetime = 1;
901 }
902 return spice_server_set_ticket(spice_server, passwd, lifetime,
903 fail_if_conn, disconnect_if_conn);
904}
905
906int qemu_spice_set_passwd(const char *passwd,
907 bool fail_if_conn, bool disconnect_if_conn)
908{
b1ea7b79
GH
909 if (strcmp(auth, "spice") != 0) {
910 return -1;
911 }
912
fd3bea3f
MA
913 g_free(auth_passwd);
914 auth_passwd = g_strdup(passwd);
7572150c
GH
915 return qemu_spice_set_ticket(fail_if_conn, disconnect_if_conn);
916}
917
918int qemu_spice_set_pw_expire(time_t expires)
919{
920 auth_expires = expires;
921 return qemu_spice_set_ticket(false, false);
922}
923
f1f5f407
DB
924int qemu_spice_display_add_client(int csock, int skipauth, int tls)
925{
f1f5f407
DB
926 if (tls) {
927 return spice_server_add_ssl_client(spice_server, csock, skipauth);
928 } else {
929 return spice_server_add_client(spice_server, csock, skipauth);
930 }
f1f5f407
DB
931}
932
7cc6a25f
GH
933void qemu_spice_display_start(void)
934{
935 spice_display_is_running = true;
b50f3e42 936 spice_server_vm_start(spice_server);
7cc6a25f
GH
937}
938
939void qemu_spice_display_stop(void)
940{
b50f3e42 941 spice_server_vm_stop(spice_server);
7cc6a25f
GH
942 spice_display_is_running = false;
943}
944
945int qemu_spice_display_is_running(SimpleSpiceDisplay *ssd)
946{
947 return spice_display_is_running;
948}
949
29b0040b
GH
950static void spice_register_config(void)
951{
952 qemu_add_opts(&qemu_spice_opts);
953}
34294e2f 954opts_init(spice_register_config);