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