]> git.proxmox.com Git - mirror_qemu.git/blame - ui/spice-core.c
modules: add ui module annotations
[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"
54d31236 22#include "sysemu/runstate.h"
28ecbaee 23#include "ui/qemu-spice.h"
d49b6836 24#include "qemu/error-report.h"
db725815 25#include "qemu/main-loop.h"
0b8fa32f 26#include "qemu/module.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"
e688df6b 32#include "qapi/error.h"
9af23989
MA
33#include "qapi/qapi-commands-ui.h"
34#include "qapi/qapi-events-ui.h"
1de7afc9 35#include "qemu/notify.h"
922a01a0 36#include "qemu/option.h"
99522f69 37#include "crypto/secret_common.h"
c4b63b7c 38#include "migration/misc.h"
be812c0a 39#include "hw/pci/pci_bus.h"
28ecbaee 40#include "ui/spice-display.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 52
f9ab6091 53static QemuThread me;
22b626e2 54
29b0040b
GH
55struct SpiceTimer {
56 QEMUTimer *timer;
29b0040b 57};
29b0040b
GH
58
59static SpiceTimer *timer_add(SpiceTimerFunc func, void *opaque)
60{
61 SpiceTimer *timer;
62
7267c094 63 timer = g_malloc0(sizeof(*timer));
bc72ad67 64 timer->timer = timer_new_ms(QEMU_CLOCK_REALTIME, func, opaque);
29b0040b
GH
65 return timer;
66}
67
68static void timer_start(SpiceTimer *timer, uint32_t ms)
69{
bc72ad67 70 timer_mod(timer->timer, qemu_clock_get_ms(QEMU_CLOCK_REALTIME) + ms);
29b0040b
GH
71}
72
73static void timer_cancel(SpiceTimer *timer)
74{
bc72ad67 75 timer_del(timer->timer);
29b0040b
GH
76}
77
78static void timer_remove(SpiceTimer *timer)
79{
bc72ad67 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{
95b3a8c8 358 SpiceChannelList *head = NULL, **tail = &head;
d1f29646 359 ChannelList *item;
cb42a870 360
d1f29646 361 QTAILQ_FOREACH(item, &channel_list, link) {
95b3a8c8 362 SpiceChannel *chan;
d1f29646 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 369 chan = g_malloc0(sizeof(*chan));
d1f29646 370
26defe81
MAL
371 paddr = (struct sockaddr *)&item->info->paddr_ext;
372 plen = item->info->plen_ext;
faa98223 373 getnameinfo(paddr, plen,
d1f29646
LC
374 host, sizeof(host), port, sizeof(port),
375 NI_NUMERICHOST | NI_NUMERICSERV);
95b3a8c8
EB
376 chan->host = g_strdup(host);
377 chan->port = g_strdup(port);
378 chan->family = inet_netfamily(paddr->sa_family);
379
380 chan->connection_id = item->info->connection_id;
381 chan->channel_type = item->info->type;
382 chan->channel_id = item->info->id;
383 chan->tls = item->info->flags & SPICE_CHANNEL_EVENT_FLAG_TLS;
384
385 QAPI_LIST_APPEND(tail, chan);
cb42a870
GH
386 }
387
d1f29646 388 return head;
cb42a870
GH
389}
390
4d454574
PB
391static QemuOptsList qemu_spice_opts = {
392 .name = "spice",
393 .head = QTAILQ_HEAD_INITIALIZER(qemu_spice_opts.head),
79216718 394 .merge_lists = true,
4d454574
PB
395 .desc = {
396 {
397 .name = "port",
398 .type = QEMU_OPT_NUMBER,
399 },{
400 .name = "tls-port",
401 .type = QEMU_OPT_NUMBER,
402 },{
403 .name = "addr",
404 .type = QEMU_OPT_STRING,
405 },{
406 .name = "ipv4",
407 .type = QEMU_OPT_BOOL,
408 },{
409 .name = "ipv6",
410 .type = QEMU_OPT_BOOL,
fe4831b1
MAL
411#ifdef SPICE_ADDR_FLAG_UNIX_ONLY
412 },{
413 .name = "unix",
414 .type = QEMU_OPT_BOOL,
415#endif
4d454574
PB
416 },{
417 .name = "password",
418 .type = QEMU_OPT_STRING,
99522f69
DB
419 },{
420 .name = "password-secret",
421 .type = QEMU_OPT_STRING,
4d454574
PB
422 },{
423 .name = "disable-ticketing",
424 .type = QEMU_OPT_BOOL,
425 },{
426 .name = "disable-copy-paste",
427 .type = QEMU_OPT_BOOL,
5ad24e5f
HG
428 },{
429 .name = "disable-agent-file-xfer",
430 .type = QEMU_OPT_BOOL,
4d454574
PB
431 },{
432 .name = "sasl",
433 .type = QEMU_OPT_BOOL,
434 },{
435 .name = "x509-dir",
436 .type = QEMU_OPT_STRING,
437 },{
438 .name = "x509-key-file",
439 .type = QEMU_OPT_STRING,
440 },{
441 .name = "x509-key-password",
442 .type = QEMU_OPT_STRING,
443 },{
444 .name = "x509-cert-file",
445 .type = QEMU_OPT_STRING,
446 },{
447 .name = "x509-cacert-file",
448 .type = QEMU_OPT_STRING,
449 },{
450 .name = "x509-dh-key-file",
451 .type = QEMU_OPT_STRING,
452 },{
453 .name = "tls-ciphers",
454 .type = QEMU_OPT_STRING,
455 },{
456 .name = "tls-channel",
457 .type = QEMU_OPT_STRING,
458 },{
459 .name = "plaintext-channel",
460 .type = QEMU_OPT_STRING,
461 },{
462 .name = "image-compression",
463 .type = QEMU_OPT_STRING,
464 },{
465 .name = "jpeg-wan-compression",
466 .type = QEMU_OPT_STRING,
467 },{
468 .name = "zlib-glz-wan-compression",
469 .type = QEMU_OPT_STRING,
470 },{
471 .name = "streaming-video",
472 .type = QEMU_OPT_STRING,
473 },{
474 .name = "agent-mouse",
475 .type = QEMU_OPT_BOOL,
476 },{
477 .name = "playback-compression",
478 .type = QEMU_OPT_BOOL,
474114b7 479 },{
4d454574
PB
480 .name = "seamless-migration",
481 .type = QEMU_OPT_BOOL,
8bf69b49
GH
482 },{
483 .name = "display",
484 .type = QEMU_OPT_STRING,
485 },{
486 .name = "head",
487 .type = QEMU_OPT_NUMBER,
474114b7
GH
488#ifdef HAVE_SPICE_GL
489 },{
490 .name = "gl",
491 .type = QEMU_OPT_BOOL,
7b525508
MAL
492 },{
493 .name = "rendernode",
494 .type = QEMU_OPT_STRING,
474114b7 495#endif
4d454574
PB
496 },
497 { /* end of list */ }
498 },
499};
500
db5732c9 501static SpiceInfo *qmp_query_spice_real(Error **errp)
cb42a870
GH
502{
503 QemuOpts *opts = QTAILQ_FIRST(&qemu_spice_opts.head);
cb42a870 504 int port, tls_port;
d1f29646
LC
505 const char *addr;
506 SpiceInfo *info;
6735aa99
CF
507 unsigned int major;
508 unsigned int minor;
509 unsigned int micro;
cb42a870 510
d1f29646
LC
511 info = g_malloc0(sizeof(*info));
512
3bb781f3 513 if (!spice_server || !opts) {
d1f29646
LC
514 info->enabled = false;
515 return info;
cb42a870
GH
516 }
517
d1f29646 518 info->enabled = true;
61c4efe2 519 info->migrated = spice_migration_completed;
d1f29646 520
cb42a870
GH
521 addr = qemu_opt_get(opts, "addr");
522 port = qemu_opt_get_number(opts, "port", 0);
523 tls_port = qemu_opt_get_number(opts, "tls-port", 0);
cb42a870 524
d1f29646
LC
525 info->has_auth = true;
526 info->auth = g_strdup(auth);
527
528 info->has_host = true;
4f60af9a 529 info->host = g_strdup(addr ? addr : "*");
d1f29646
LC
530
531 info->has_compiled_version = true;
6735aa99
CF
532 major = (SPICE_SERVER_VERSION & 0xff0000) >> 16;
533 minor = (SPICE_SERVER_VERSION & 0xff00) >> 8;
534 micro = SPICE_SERVER_VERSION & 0xff;
535 info->compiled_version = g_strdup_printf("%d.%d.%d", major, minor, micro);
d1f29646 536
cb42a870 537 if (port) {
d1f29646
LC
538 info->has_port = true;
539 info->port = port;
cb42a870
GH
540 }
541 if (tls_port) {
d1f29646
LC
542 info->has_tls_port = true;
543 info->tls_port = tls_port;
cb42a870
GH
544 }
545
4efee029
AL
546 info->mouse_mode = spice_server_is_server_mouse(spice_server) ?
547 SPICE_QUERY_MOUSE_MODE_SERVER :
548 SPICE_QUERY_MOUSE_MODE_CLIENT;
67be6726 549
d1f29646
LC
550 /* for compatibility with the original command */
551 info->has_channels = true;
552 info->channels = qmp_query_spice_channels();
553
554 return info;
cb42a870
GH
555}
556
9e8dd451 557static void migration_state_notifier(Notifier *notifier, void *data)
e866e239 558{
7073693b 559 MigrationState *s = data;
e866e239 560
a76a2f72
GH
561 if (!spice_have_target_host) {
562 return;
563 }
564
02edd2e7 565 if (migration_in_setup(s)) {
026f773f 566 spice_server_migrate_start(spice_server);
b82fc321
DDAG
567 } else if (migration_has_finished(s) ||
568 migration_in_postcopy_after_devices(s)) {
026f773f 569 spice_server_migrate_end(spice_server, true);
a76a2f72 570 spice_have_target_host = false;
026f773f
YH
571 } else if (migration_has_failed(s)) {
572 spice_server_migrate_end(spice_server, false);
a76a2f72 573 spice_have_target_host = false;
e866e239
GH
574 }
575}
576
577int qemu_spice_migrate_info(const char *hostname, int port, int tls_port,
3b5704b2 578 const char *subject)
e866e239 579{
edc5cb1a 580 int ret;
67be6726 581
026f773f
YH
582 ret = spice_server_migrate_connect(spice_server, hostname,
583 port, tls_port, subject);
a76a2f72 584 spice_have_target_host = true;
edc5cb1a 585 return ret;
e866e239
GH
586}
587
71df1d83
MA
588static int add_channel(void *opaque, const char *name, const char *value,
589 Error **errp)
17b6dea0
GH
590{
591 int security = 0;
592 int rc;
593
594 if (strcmp(name, "tls-channel") == 0) {
35c63329
CF
595 int *tls_port = opaque;
596 if (!*tls_port) {
9338570b
MA
597 error_setg(errp, "spice: tried to setup tls-channel"
598 " without specifying a TLS port");
599 return -1;
35c63329 600 }
17b6dea0
GH
601 security = SPICE_CHANNEL_SECURITY_SSL;
602 }
603 if (strcmp(name, "plaintext-channel") == 0) {
604 security = SPICE_CHANNEL_SECURITY_NONE;
605 }
606 if (security == 0) {
607 return 0;
608 }
609 if (strcmp(value, "default") == 0) {
610 rc = spice_server_set_channel_security(spice_server, NULL, security);
611 } else {
612 rc = spice_server_set_channel_security(spice_server, value, security);
613 }
614 if (rc != 0) {
9338570b
MA
615 error_setg(errp, "spice: failed to set channel security for %s",
616 value);
617 return -1;
17b6dea0
GH
618 }
619 return 0;
620}
621
538f0497 622static void vm_change_state_handler(void *opaque, bool running,
f5bb039c
YH
623 RunState state)
624{
f5bb039c 625 if (running) {
71d388d4 626 qemu_spice_display_start();
5b1638bc 627 } else if (state != RUN_STATE_PAUSED) {
71d388d4 628 qemu_spice_display_stop();
f5bb039c 629 }
f5bb039c
YH
630}
631
a652b120
MAL
632void qemu_spice_display_init_done(void)
633{
634 if (runstate_is_running()) {
635 qemu_spice_display_start();
636 }
637 qemu_add_vm_change_state_handler(vm_change_state_handler, NULL);
638}
639
63be30e6 640static void qemu_spice_init(void)
29b0040b
GH
641{
642 QemuOpts *opts = QTAILQ_FIRST(&qemu_spice_opts.head);
99522f69
DB
643 char *password = NULL;
644 const char *passwordSecret;
645 const char *str, *x509_dir, *addr,
c448e855
GH
646 *x509_key_password = NULL,
647 *x509_dh_file = NULL,
648 *tls_ciphers = NULL;
649 char *x509_key_file = NULL,
650 *x509_cert_file = NULL,
651 *x509_cacert_file = NULL;
6735aa99 652 int port, tls_port, addr_flags;
9f04e09e
YH
653 spice_image_compression_t compression;
654 spice_wan_compression_t wan_compr;
8c957053 655 bool seamless_migration;
29b0040b 656
f9ab6091 657 qemu_thread_get_self(&me);
22b626e2 658
ad1be899 659 if (!opts) {
29b0040b
GH
660 return;
661 }
662 port = qemu_opt_get_number(opts, "port", 0);
c448e855 663 tls_port = qemu_opt_get_number(opts, "tls-port", 0);
df9cb669 664 if (port < 0 || port > 65535) {
339a475f 665 error_report("spice port is out of range");
df9cb669
GH
666 exit(1);
667 }
668 if (tls_port < 0 || tls_port > 65535) {
339a475f 669 error_report("spice tls-port is out of range");
df9cb669 670 exit(1);
29b0040b 671 }
99522f69
DB
672 passwordSecret = qemu_opt_get(opts, "password-secret");
673 if (passwordSecret) {
674 Error *local_err = NULL;
675 if (qemu_opt_get(opts, "password")) {
676 error_report("'password' option is mutually exclusive with "
677 "'password-secret'");
678 exit(1);
679 }
680 password = qcrypto_secret_lookup_as_utf8(passwordSecret,
681 &local_err);
682 if (!password) {
683 error_report_err(local_err);
684 exit(1);
685 }
686 } else {
687 str = qemu_opt_get(opts, "password");
688 if (str) {
c47c0bcb
DB
689 warn_report("'password' option is deprecated and insecure, "
690 "use 'password-secret' instead");
99522f69
DB
691 password = g_strdup(str);
692 }
693 }
29b0040b 694
c448e855
GH
695 if (tls_port) {
696 x509_dir = qemu_opt_get(opts, "x509-dir");
fe8e8327 697 if (!x509_dir) {
c448e855
GH
698 x509_dir = ".";
699 }
c448e855
GH
700
701 str = qemu_opt_get(opts, "x509-key-file");
702 if (str) {
7267c094 703 x509_key_file = g_strdup(str);
c448e855 704 } else {
6735aa99
CF
705 x509_key_file = g_strdup_printf("%s/%s", x509_dir,
706 X509_SERVER_KEY_FILE);
c448e855
GH
707 }
708
709 str = qemu_opt_get(opts, "x509-cert-file");
710 if (str) {
7267c094 711 x509_cert_file = g_strdup(str);
c448e855 712 } else {
6735aa99
CF
713 x509_cert_file = g_strdup_printf("%s/%s", x509_dir,
714 X509_SERVER_CERT_FILE);
c448e855
GH
715 }
716
717 str = qemu_opt_get(opts, "x509-cacert-file");
718 if (str) {
7267c094 719 x509_cacert_file = g_strdup(str);
c448e855 720 } else {
6735aa99
CF
721 x509_cacert_file = g_strdup_printf("%s/%s", x509_dir,
722 X509_CA_CERT_FILE);
c448e855
GH
723 }
724
725 x509_key_password = qemu_opt_get(opts, "x509-key-password");
9995c0b7 726 x509_dh_file = qemu_opt_get(opts, "x509-dh-key-file");
c448e855
GH
727 tls_ciphers = qemu_opt_get(opts, "tls-ciphers");
728 }
729
333b0eeb
GH
730 addr = qemu_opt_get(opts, "addr");
731 addr_flags = 0;
732 if (qemu_opt_get_bool(opts, "ipv4", 0)) {
733 addr_flags |= SPICE_ADDR_FLAG_IPV4_ONLY;
734 } else if (qemu_opt_get_bool(opts, "ipv6", 0)) {
735 addr_flags |= SPICE_ADDR_FLAG_IPV6_ONLY;
fe4831b1
MAL
736#ifdef SPICE_ADDR_FLAG_UNIX_ONLY
737 } else if (qemu_opt_get_bool(opts, "unix", 0)) {
738 addr_flags |= SPICE_ADDR_FLAG_UNIX_ONLY;
739#endif
333b0eeb
GH
740 }
741
29b0040b 742 spice_server = spice_server_new();
333b0eeb 743 spice_server_set_addr(spice_server, addr ? addr : "", addr_flags);
c448e855
GH
744 if (port) {
745 spice_server_set_port(spice_server, port);
746 }
747 if (tls_port) {
748 spice_server_set_tls(spice_server, tls_port,
749 x509_cacert_file,
750 x509_cert_file,
751 x509_key_file,
752 x509_key_password,
753 x509_dh_file,
754 tls_ciphers);
755 }
29b0040b 756 if (password) {
08ad2626 757 qemu_spice.set_passwd(password, false, false);
29b0040b 758 }
48b3ed0a 759 if (qemu_opt_get_bool(opts, "sasl", 0)) {
06bb8814 760 if (spice_server_set_sasl(spice_server, 1) == -1) {
339a475f 761 error_report("spice: failed to enable sasl");
48b3ed0a
MAL
762 exit(1);
763 }
b1ea7b79 764 auth = "sasl";
48b3ed0a 765 }
29b0040b 766 if (qemu_opt_get_bool(opts, "disable-ticketing", 0)) {
6f8c63fb 767 auth = "none";
29b0040b
GH
768 spice_server_set_noauth(spice_server);
769 }
770
d4970b07
HG
771 if (qemu_opt_get_bool(opts, "disable-copy-paste", 0)) {
772 spice_server_set_agent_copypaste(spice_server, false);
773 }
d4970b07 774
5ad24e5f 775 if (qemu_opt_get_bool(opts, "disable-agent-file-xfer", 0)) {
5ad24e5f 776 spice_server_set_agent_file_xfer(spice_server, false);
5ad24e5f
HG
777 }
778
9f04e09e
YH
779 compression = SPICE_IMAGE_COMPRESS_AUTO_GLZ;
780 str = qemu_opt_get(opts, "image-compression");
781 if (str) {
782 compression = parse_compression(str);
783 }
784 spice_server_set_image_compression(spice_server, compression);
785
786 wan_compr = SPICE_WAN_COMPRESSION_AUTO;
787 str = qemu_opt_get(opts, "jpeg-wan-compression");
788 if (str) {
789 wan_compr = parse_wan_compression(str);
790 }
791 spice_server_set_jpeg_compression(spice_server, wan_compr);
792
793 wan_compr = SPICE_WAN_COMPRESSION_AUTO;
794 str = qemu_opt_get(opts, "zlib-glz-wan-compression");
795 if (str) {
796 wan_compr = parse_wan_compression(str);
797 }
798 spice_server_set_zlib_glz_compression(spice_server, wan_compr);
29b0040b 799
84a23f25
GH
800 str = qemu_opt_get(opts, "streaming-video");
801 if (str) {
f61d6960 802 int streaming_video = parse_stream_video(str);
84a23f25 803 spice_server_set_streaming_video(spice_server, streaming_video);
f1d3e586
GH
804 } else {
805 spice_server_set_streaming_video(spice_server, SPICE_STREAM_VIDEO_OFF);
84a23f25
GH
806 }
807
808 spice_server_set_agent_mouse
809 (spice_server, qemu_opt_get_bool(opts, "agent-mouse", 1));
810 spice_server_set_playback_compression
811 (spice_server, qemu_opt_get_bool(opts, "playback-compression", 1));
812
9338570b 813 qemu_opt_foreach(opts, add_channel, &tls_port, &error_fatal);
17b6dea0 814
4c77ee12 815 spice_server_set_name(spice_server, qemu_name ?: "QEMU " QEMU_VERSION);
9c5ce8db 816 spice_server_set_uuid(spice_server, (unsigned char *)&qemu_uuid);
d0638b18 817
8c957053
YH
818 seamless_migration = qemu_opt_get_bool(opts, "seamless-migration", 0);
819 spice_server_set_seamless_migration(spice_server, seamless_migration);
06bb8814 820 spice_server_set_sasl_appname(spice_server, "qemu");
fe8e8327 821 if (spice_server_init(spice_server, &core_interface) != 0) {
339a475f 822 error_report("failed to initialize spice server");
fba810f1
GH
823 exit(1);
824 };
29b0040b 825 using_spice = 1;
864401c2 826
e866e239
GH
827 migration_state.notify = migration_state_notifier;
828 add_migration_state_change_notifier(&migration_state);
3b5704b2 829 spice_migrate.base.sif = &migrate_interface.base;
05b53636 830 qemu_spice.add_interface(&spice_migrate.base);
e866e239 831
864401c2 832 qemu_spice_input_init();
c448e855 833
641381c1 834 qemu_spice_display_stop();
f5bb039c 835
7267c094
AL
836 g_free(x509_key_file);
837 g_free(x509_cert_file);
838 g_free(x509_cacert_file);
99522f69 839 g_free(password);
afd0b409 840
474114b7
GH
841#ifdef HAVE_SPICE_GL
842 if (qemu_opt_get_bool(opts, "gl", 0)) {
569a93cb
CF
843 if ((port != 0) || (tls_port != 0)) {
844 error_report("SPICE GL support is local-only for now and "
845 "incompatible with -spice port/tls-port");
846 exit(1);
847 }
54d208ff
GH
848 if (egl_rendernode_init(qemu_opt_get(opts, "rendernode"),
849 DISPLAYGL_MODE_ON) != 0) {
daafc661
CR
850 error_report("Failed to initialize EGL render node for SPICE GL");
851 exit(1);
474114b7 852 }
daafc661 853 display_opengl = 1;
fe5c44f9 854 spice_opengl = 1;
474114b7
GH
855 }
856#endif
29b0040b
GH
857}
858
05b53636 859static int qemu_spice_add_interface(SpiceBaseInstance *sin)
29b0040b 860{
a19cbfb3
GH
861 if (!spice_server) {
862 if (QTAILQ_FIRST(&qemu_spice_opts.head) != NULL) {
339a475f 863 error_report("Oops: spice configured but not active");
a19cbfb3
GH
864 exit(1);
865 }
866 /*
867 * Create a spice server instance.
868 * It does *not* listen on the network.
869 * It handles QXL local rendering only.
870 *
871 * With a command line like '-vnc :0 -vga qxl' you'll end up here.
872 */
873 spice_server = spice_server_new();
764eb39d 874 spice_server_set_sasl_appname(spice_server, "qemu");
a19cbfb3 875 spice_server_init(spice_server, &core_interface);
bfb82a28 876 qemu_add_vm_change_state_handler(vm_change_state_handler, NULL);
a19cbfb3 877 }
71d388d4 878
9fa03286
GH
879 return spice_server_add_interface(spice_server, sin);
880}
881
882static GSList *spice_consoles;
9fa03286
GH
883
884bool qemu_spice_have_display_interface(QemuConsole *con)
885{
886 if (g_slist_find(spice_consoles, con)) {
887 return true;
58ae52a8 888 }
9fa03286
GH
889 return false;
890}
58ae52a8 891
be812c0a
LH
892/*
893 * Recursively (in reverse order) appends addresses of PCI devices as it moves
894 * up in the PCI hierarchy.
895 *
896 * @returns true on success, false when the buffer wasn't large enough
897 */
898static bool append_pci_address(char *buf, size_t buf_size, const PCIDevice *pci)
899{
900 PCIBus *bus = pci_get_bus(pci);
901 /*
902 * equivalent to if (!pci_bus_is_root(bus)), but the function is not built
903 * with PCI_CONFIG=n, avoid using an #ifdef by checking directly
904 */
905 if (bus->parent_dev != NULL) {
906 append_pci_address(buf, buf_size, bus->parent_dev);
907 }
908
909 size_t len = strlen(buf);
910 ssize_t written = snprintf(buf + len, buf_size - len, "/%02x.%x",
911 PCI_SLOT(pci->devfn), PCI_FUNC(pci->devfn));
912
913 return written > 0 && written < buf_size - len;
914}
915
916bool qemu_spice_fill_device_address(QemuConsole *con,
917 char *device_address,
918 size_t size)
919{
920 DeviceState *dev = DEVICE(object_property_get_link(OBJECT(con),
921 "device",
922 &error_abort));
923 PCIDevice *pci = (PCIDevice *) object_dynamic_cast(OBJECT(dev),
924 TYPE_PCI_DEVICE);
925
926 if (pci == NULL) {
927 warn_report("Setting device address of a display device to SPICE: "
928 "Not a PCI device.");
929 return false;
930 }
931
932 strncpy(device_address, "pci/0000", size);
933 if (!append_pci_address(device_address, size, pci)) {
934 warn_report("Setting device address of a display device to SPICE: "
935 "Too many PCI devices in the chain.");
936 return false;
937 }
938
939 return true;
940}
941
9fa03286
GH
942int qemu_spice_add_display_interface(QXLInstance *qxlin, QemuConsole *con)
943{
944 if (g_slist_find(spice_consoles, con)) {
945 return -1;
946 }
cd56cc6b 947 qxlin->id = qemu_console_get_index(con);
9fa03286
GH
948 spice_consoles = g_slist_append(spice_consoles, con);
949 return qemu_spice_add_interface(&qxlin->base);
29b0040b
GH
950}
951
7572150c
GH
952static int qemu_spice_set_ticket(bool fail_if_conn, bool disconnect_if_conn)
953{
954 time_t lifetime, now = time(NULL);
955 char *passwd;
956
957 if (now < auth_expires) {
958 passwd = auth_passwd;
959 lifetime = (auth_expires - now);
960 if (lifetime > INT_MAX) {
961 lifetime = INT_MAX;
962 }
963 } else {
964 passwd = NULL;
965 lifetime = 1;
966 }
967 return spice_server_set_ticket(spice_server, passwd, lifetime,
968 fail_if_conn, disconnect_if_conn);
969}
970
08ad2626
GH
971static int qemu_spice_set_passwd(const char *passwd,
972 bool fail_if_conn, bool disconnect_if_conn)
7572150c 973{
b1ea7b79
GH
974 if (strcmp(auth, "spice") != 0) {
975 return -1;
976 }
977
fd3bea3f
MA
978 g_free(auth_passwd);
979 auth_passwd = g_strdup(passwd);
7572150c
GH
980 return qemu_spice_set_ticket(fail_if_conn, disconnect_if_conn);
981}
982
08ad2626 983static int qemu_spice_set_pw_expire(time_t expires)
7572150c
GH
984{
985 auth_expires = expires;
986 return qemu_spice_set_ticket(false, false);
987}
988
864a024c 989static int qemu_spice_display_add_client(int csock, int skipauth, int tls)
f1f5f407 990{
f1f5f407
DB
991 if (tls) {
992 return spice_server_add_ssl_client(spice_server, csock, skipauth);
993 } else {
994 return spice_server_add_client(spice_server, csock, skipauth);
995 }
f1f5f407
DB
996}
997
7cc6a25f
GH
998void qemu_spice_display_start(void)
999{
83f71802
MAL
1000 if (spice_display_is_running) {
1001 return;
1002 }
1003
7cc6a25f 1004 spice_display_is_running = true;
b50f3e42 1005 spice_server_vm_start(spice_server);
7cc6a25f
GH
1006}
1007
1008void qemu_spice_display_stop(void)
1009{
83f71802
MAL
1010 if (!spice_display_is_running) {
1011 return;
1012 }
1013
b50f3e42 1014 spice_server_vm_stop(spice_server);
7cc6a25f
GH
1015 spice_display_is_running = false;
1016}
1017
1018int qemu_spice_display_is_running(SimpleSpiceDisplay *ssd)
1019{
1020 return spice_display_is_running;
1021}
1022
7477477c 1023static struct QemuSpiceOps real_spice_ops = {
63be30e6 1024 .init = qemu_spice_init,
b192cd1e 1025 .display_init = qemu_spice_display_init,
7477477c 1026 .migrate_info = qemu_spice_migrate_info,
08ad2626
GH
1027 .set_passwd = qemu_spice_set_passwd,
1028 .set_pw_expire = qemu_spice_set_pw_expire,
864a024c 1029 .display_add_client = qemu_spice_display_add_client,
05b53636 1030 .add_interface = qemu_spice_add_interface,
db5732c9 1031 .qmp_query = qmp_query_spice_real,
7477477c
GH
1032};
1033
29b0040b
GH
1034static void spice_register_config(void)
1035{
7477477c 1036 qemu_spice = real_spice_ops;
29b0040b
GH
1037 qemu_add_opts(&qemu_spice_opts);
1038}
34294e2f 1039opts_init(spice_register_config);
b36ae1c1
GH
1040module_opts("spice");
1041
1042#ifdef CONFIG_OPENGL
1043module_dep("ui-opengl");
1044#endif