2 * Copyright (C) 2010 Red Hat, Inc.
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.
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.
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/>.
19 #include <spice-experimental.h>
22 #include "sysemu/sysemu.h"
24 #include "qemu-common.h"
25 #include "ui/qemu-spice.h"
26 #include "qemu/thread.h"
27 #include "qemu/timer.h"
28 #include "qemu/queue.h"
29 #include "qemu-x509.h"
30 #include "qemu/sockets.h"
31 #include "qmp-commands.h"
32 #include "qapi/qmp/qint.h"
33 #include "qapi/qmp/qbool.h"
34 #include "qapi/qmp/qstring.h"
35 #include "qapi/qmp/qjson.h"
36 #include "qemu/notify.h"
37 #include "migration/migration.h"
38 #include "monitor/monitor.h"
40 #include "ui/spice-display.h"
44 static SpiceServer
*spice_server
;
45 static Notifier migration_state
;
46 static const char *auth
= "spice";
47 static char *auth_passwd
;
48 static time_t auth_expires
= TIME_MAX
;
49 static int spice_migration_completed
;
56 QTAILQ_ENTRY(SpiceTimer
) next
;
58 static QTAILQ_HEAD(, SpiceTimer
) timers
= QTAILQ_HEAD_INITIALIZER(timers
);
60 static SpiceTimer
*timer_add(SpiceTimerFunc func
, void *opaque
)
64 timer
= g_malloc0(sizeof(*timer
));
65 timer
->timer
= timer_new_ms(QEMU_CLOCK_REALTIME
, func
, opaque
);
66 QTAILQ_INSERT_TAIL(&timers
, timer
, next
);
70 static void timer_start(SpiceTimer
*timer
, uint32_t ms
)
72 timer_mod(timer
->timer
, qemu_clock_get_ms(QEMU_CLOCK_REALTIME
) + ms
);
75 static void timer_cancel(SpiceTimer
*timer
)
77 timer_del(timer
->timer
);
80 static void timer_remove(SpiceTimer
*timer
)
82 timer_del(timer
->timer
);
83 timer_free(timer
->timer
);
84 QTAILQ_REMOVE(&timers
, timer
, next
);
93 QTAILQ_ENTRY(SpiceWatch
) next
;
95 static QTAILQ_HEAD(, SpiceWatch
) watches
= QTAILQ_HEAD_INITIALIZER(watches
);
97 static void watch_read(void *opaque
)
99 SpiceWatch
*watch
= opaque
;
100 watch
->func(watch
->fd
, SPICE_WATCH_EVENT_READ
, watch
->opaque
);
103 static void watch_write(void *opaque
)
105 SpiceWatch
*watch
= opaque
;
106 watch
->func(watch
->fd
, SPICE_WATCH_EVENT_WRITE
, watch
->opaque
);
109 static void watch_update_mask(SpiceWatch
*watch
, int event_mask
)
111 IOHandler
*on_read
= NULL
;
112 IOHandler
*on_write
= NULL
;
114 watch
->event_mask
= event_mask
;
115 if (watch
->event_mask
& SPICE_WATCH_EVENT_READ
) {
116 on_read
= watch_read
;
118 if (watch
->event_mask
& SPICE_WATCH_EVENT_WRITE
) {
119 on_write
= watch_write
;
121 qemu_set_fd_handler(watch
->fd
, on_read
, on_write
, watch
);
124 static SpiceWatch
*watch_add(int fd
, int event_mask
, SpiceWatchFunc func
, void *opaque
)
128 watch
= g_malloc0(sizeof(*watch
));
131 watch
->opaque
= opaque
;
132 QTAILQ_INSERT_TAIL(&watches
, watch
, next
);
134 watch_update_mask(watch
, event_mask
);
138 static void watch_remove(SpiceWatch
*watch
)
140 qemu_set_fd_handler(watch
->fd
, NULL
, NULL
, NULL
);
141 QTAILQ_REMOVE(&watches
, watch
, next
);
145 typedef struct ChannelList ChannelList
;
147 SpiceChannelEventInfo
*info
;
148 QTAILQ_ENTRY(ChannelList
) link
;
150 static QTAILQ_HEAD(, ChannelList
) channel_list
= QTAILQ_HEAD_INITIALIZER(channel_list
);
152 static void channel_list_add(SpiceChannelEventInfo
*info
)
156 item
= g_malloc0(sizeof(*item
));
158 QTAILQ_INSERT_TAIL(&channel_list
, item
, link
);
161 static void channel_list_del(SpiceChannelEventInfo
*info
)
165 QTAILQ_FOREACH(item
, &channel_list
, link
) {
166 if (item
->info
!= info
) {
169 QTAILQ_REMOVE(&channel_list
, item
, link
);
175 static void add_addr_info(QDict
*dict
, struct sockaddr
*addr
, int len
)
177 char host
[NI_MAXHOST
], port
[NI_MAXSERV
];
180 getnameinfo(addr
, len
, host
, sizeof(host
), port
, sizeof(port
),
181 NI_NUMERICHOST
| NI_NUMERICSERV
);
182 family
= inet_strfamily(addr
->sa_family
);
184 qdict_put(dict
, "host", qstring_from_str(host
));
185 qdict_put(dict
, "port", qstring_from_str(port
));
186 qdict_put(dict
, "family", qstring_from_str(family
));
189 static void add_channel_info(QDict
*dict
, SpiceChannelEventInfo
*info
)
191 int tls
= info
->flags
& SPICE_CHANNEL_EVENT_FLAG_TLS
;
193 qdict_put(dict
, "connection-id", qint_from_int(info
->connection_id
));
194 qdict_put(dict
, "channel-type", qint_from_int(info
->type
));
195 qdict_put(dict
, "channel-id", qint_from_int(info
->id
));
196 qdict_put(dict
, "tls", qbool_from_int(tls
));
199 static void channel_event(int event
, SpiceChannelEventInfo
*info
)
201 static const int qevent
[] = {
202 [ SPICE_CHANNEL_EVENT_CONNECTED
] = QEVENT_SPICE_CONNECTED
,
203 [ SPICE_CHANNEL_EVENT_INITIALIZED
] = QEVENT_SPICE_INITIALIZED
,
204 [ SPICE_CHANNEL_EVENT_DISCONNECTED
] = QEVENT_SPICE_DISCONNECTED
,
206 QDict
*server
, *client
;
210 * Spice server might have called us from spice worker thread
211 * context (happens on display channel disconnects). Spice should
212 * not do that. It isn't that easy to fix it in spice and even
213 * when it is fixed we still should cover the already released
214 * spice versions. So detect that we've been called from another
215 * thread and grab the iothread lock if so before calling qemu
218 bool need_lock
= !qemu_thread_is_self(&me
);
220 qemu_mutex_lock_iothread();
223 client
= qdict_new();
224 server
= qdict_new();
226 if (info
->flags
& SPICE_CHANNEL_EVENT_FLAG_ADDR_EXT
) {
227 add_addr_info(client
, (struct sockaddr
*)&info
->paddr_ext
,
229 add_addr_info(server
, (struct sockaddr
*)&info
->laddr_ext
,
232 error_report("spice: %s, extended address is expected",
236 if (event
== SPICE_CHANNEL_EVENT_INITIALIZED
) {
237 qdict_put(server
, "auth", qstring_from_str(auth
));
238 add_channel_info(client
, info
);
239 channel_list_add(info
);
241 if (event
== SPICE_CHANNEL_EVENT_DISCONNECTED
) {
242 channel_list_del(info
);
245 data
= qobject_from_jsonf("{ 'client': %p, 'server': %p }",
246 QOBJECT(client
), QOBJECT(server
));
247 monitor_protocol_event(qevent
[event
], data
);
248 qobject_decref(data
);
251 qemu_mutex_unlock_iothread();
255 static SpiceCoreInterface core_interface
= {
256 .base
.type
= SPICE_INTERFACE_CORE
,
257 .base
.description
= "qemu core services",
258 .base
.major_version
= SPICE_INTERFACE_CORE_MAJOR
,
259 .base
.minor_version
= SPICE_INTERFACE_CORE_MINOR
,
261 .timer_add
= timer_add
,
262 .timer_start
= timer_start
,
263 .timer_cancel
= timer_cancel
,
264 .timer_remove
= timer_remove
,
266 .watch_add
= watch_add
,
267 .watch_update_mask
= watch_update_mask
,
268 .watch_remove
= watch_remove
,
270 .channel_event
= channel_event
,
273 typedef struct SpiceMigration
{
274 SpiceMigrateInstance sin
;
276 MonitorCompletion
*cb
;
281 static void migrate_connect_complete_cb(SpiceMigrateInstance
*sin
);
282 static void migrate_end_complete_cb(SpiceMigrateInstance
*sin
);
284 static const SpiceMigrateInterface migrate_interface
= {
285 .base
.type
= SPICE_INTERFACE_MIGRATION
,
286 .base
.description
= "migration",
287 .base
.major_version
= SPICE_INTERFACE_MIGRATION_MAJOR
,
288 .base
.minor_version
= SPICE_INTERFACE_MIGRATION_MINOR
,
289 .migrate_connect_complete
= migrate_connect_complete_cb
,
290 .migrate_end_complete
= migrate_end_complete_cb
,
293 static SpiceMigration spice_migrate
;
295 static void migrate_connect_complete_cb(SpiceMigrateInstance
*sin
)
297 SpiceMigration
*sm
= container_of(sin
, SpiceMigration
, sin
);
298 if (sm
->connect_complete
.cb
) {
299 sm
->connect_complete
.cb(sm
->connect_complete
.opaque
, NULL
);
301 sm
->connect_complete
.cb
= NULL
;
304 static void migrate_end_complete_cb(SpiceMigrateInstance
*sin
)
306 monitor_protocol_event(QEVENT_SPICE_MIGRATE_COMPLETED
, NULL
);
307 spice_migration_completed
= true;
310 /* config string parsing */
312 static int name2enum(const char *string
, const char *table
[], int entries
)
317 for (i
= 0; i
< entries
; i
++) {
321 if (strcmp(string
, table
[i
]) != 0) {
330 static int parse_name(const char *string
, const char *optname
,
331 const char *table
[], int entries
)
333 int value
= name2enum(string
, table
, entries
);
338 error_report("spice: invalid %s: %s", optname
, string
);
342 static const char *stream_video_names
[] = {
343 [ SPICE_STREAM_VIDEO_OFF
] = "off",
344 [ SPICE_STREAM_VIDEO_ALL
] = "all",
345 [ SPICE_STREAM_VIDEO_FILTER
] = "filter",
347 #define parse_stream_video(_name) \
348 parse_name(_name, "stream video control", \
349 stream_video_names, ARRAY_SIZE(stream_video_names))
351 static const char *compression_names
[] = {
352 [ SPICE_IMAGE_COMPRESS_OFF
] = "off",
353 [ SPICE_IMAGE_COMPRESS_AUTO_GLZ
] = "auto_glz",
354 [ SPICE_IMAGE_COMPRESS_AUTO_LZ
] = "auto_lz",
355 [ SPICE_IMAGE_COMPRESS_QUIC
] = "quic",
356 [ SPICE_IMAGE_COMPRESS_GLZ
] = "glz",
357 [ SPICE_IMAGE_COMPRESS_LZ
] = "lz",
359 #define parse_compression(_name) \
360 parse_name(_name, "image compression", \
361 compression_names, ARRAY_SIZE(compression_names))
363 static const char *wan_compression_names
[] = {
364 [ SPICE_WAN_COMPRESSION_AUTO
] = "auto",
365 [ SPICE_WAN_COMPRESSION_NEVER
] = "never",
366 [ SPICE_WAN_COMPRESSION_ALWAYS
] = "always",
368 #define parse_wan_compression(_name) \
369 parse_name(_name, "wan compression", \
370 wan_compression_names, ARRAY_SIZE(wan_compression_names))
372 /* functions for the rest of qemu */
374 static SpiceChannelList
*qmp_query_spice_channels(void)
376 SpiceChannelList
*cur_item
= NULL
, *head
= NULL
;
379 QTAILQ_FOREACH(item
, &channel_list
, link
) {
380 SpiceChannelList
*chan
;
381 char host
[NI_MAXHOST
], port
[NI_MAXSERV
];
382 struct sockaddr
*paddr
;
385 if (!(item
->info
->flags
& SPICE_CHANNEL_EVENT_FLAG_ADDR_EXT
)) {
386 error_report("invalid channel event");
390 chan
= g_malloc0(sizeof(*chan
));
391 chan
->value
= g_malloc0(sizeof(*chan
->value
));
393 paddr
= (struct sockaddr
*)&item
->info
->paddr_ext
;
394 plen
= item
->info
->plen_ext
;
395 getnameinfo(paddr
, plen
,
396 host
, sizeof(host
), port
, sizeof(port
),
397 NI_NUMERICHOST
| NI_NUMERICSERV
);
398 chan
->value
->host
= g_strdup(host
);
399 chan
->value
->port
= g_strdup(port
);
400 chan
->value
->family
= g_strdup(inet_strfamily(paddr
->sa_family
));
402 chan
->value
->connection_id
= item
->info
->connection_id
;
403 chan
->value
->channel_type
= item
->info
->type
;
404 chan
->value
->channel_id
= item
->info
->id
;
405 chan
->value
->tls
= item
->info
->flags
& SPICE_CHANNEL_EVENT_FLAG_TLS
;
407 /* XXX: waiting for the qapi to support GSList */
409 head
= cur_item
= chan
;
411 cur_item
->next
= chan
;
419 static QemuOptsList qemu_spice_opts
= {
421 .head
= QTAILQ_HEAD_INITIALIZER(qemu_spice_opts
.head
),
425 .type
= QEMU_OPT_NUMBER
,
428 .type
= QEMU_OPT_NUMBER
,
431 .type
= QEMU_OPT_STRING
,
434 .type
= QEMU_OPT_BOOL
,
437 .type
= QEMU_OPT_BOOL
,
440 .type
= QEMU_OPT_STRING
,
442 .name
= "disable-ticketing",
443 .type
= QEMU_OPT_BOOL
,
445 .name
= "disable-copy-paste",
446 .type
= QEMU_OPT_BOOL
,
448 .name
= "disable-agent-file-xfer",
449 .type
= QEMU_OPT_BOOL
,
452 .type
= QEMU_OPT_BOOL
,
455 .type
= QEMU_OPT_STRING
,
457 .name
= "x509-key-file",
458 .type
= QEMU_OPT_STRING
,
460 .name
= "x509-key-password",
461 .type
= QEMU_OPT_STRING
,
463 .name
= "x509-cert-file",
464 .type
= QEMU_OPT_STRING
,
466 .name
= "x509-cacert-file",
467 .type
= QEMU_OPT_STRING
,
469 .name
= "x509-dh-key-file",
470 .type
= QEMU_OPT_STRING
,
472 .name
= "tls-ciphers",
473 .type
= QEMU_OPT_STRING
,
475 .name
= "tls-channel",
476 .type
= QEMU_OPT_STRING
,
478 .name
= "plaintext-channel",
479 .type
= QEMU_OPT_STRING
,
481 .name
= "image-compression",
482 .type
= QEMU_OPT_STRING
,
484 .name
= "jpeg-wan-compression",
485 .type
= QEMU_OPT_STRING
,
487 .name
= "zlib-glz-wan-compression",
488 .type
= QEMU_OPT_STRING
,
490 .name
= "streaming-video",
491 .type
= QEMU_OPT_STRING
,
493 .name
= "agent-mouse",
494 .type
= QEMU_OPT_BOOL
,
496 .name
= "playback-compression",
497 .type
= QEMU_OPT_BOOL
,
499 .name
= "seamless-migration",
500 .type
= QEMU_OPT_BOOL
,
502 { /* end of list */ }
506 SpiceInfo
*qmp_query_spice(Error
**errp
)
508 QemuOpts
*opts
= QTAILQ_FIRST(&qemu_spice_opts
.head
);
516 info
= g_malloc0(sizeof(*info
));
518 if (!spice_server
|| !opts
) {
519 info
->enabled
= false;
523 info
->enabled
= true;
524 info
->migrated
= spice_migration_completed
;
526 addr
= qemu_opt_get(opts
, "addr");
527 port
= qemu_opt_get_number(opts
, "port", 0);
528 tls_port
= qemu_opt_get_number(opts
, "tls-port", 0);
530 info
->has_auth
= true;
531 info
->auth
= g_strdup(auth
);
533 info
->has_host
= true;
534 info
->host
= g_strdup(addr
? addr
: "0.0.0.0");
536 info
->has_compiled_version
= true;
537 major
= (SPICE_SERVER_VERSION
& 0xff0000) >> 16;
538 minor
= (SPICE_SERVER_VERSION
& 0xff00) >> 8;
539 micro
= SPICE_SERVER_VERSION
& 0xff;
540 info
->compiled_version
= g_strdup_printf("%d.%d.%d", major
, minor
, micro
);
543 info
->has_port
= true;
547 info
->has_tls_port
= true;
548 info
->tls_port
= tls_port
;
551 info
->mouse_mode
= spice_server_is_server_mouse(spice_server
) ?
552 SPICE_QUERY_MOUSE_MODE_SERVER
:
553 SPICE_QUERY_MOUSE_MODE_CLIENT
;
555 /* for compatibility with the original command */
556 info
->has_channels
= true;
557 info
->channels
= qmp_query_spice_channels();
562 static void migration_state_notifier(Notifier
*notifier
, void *data
)
564 MigrationState
*s
= data
;
566 if (migration_in_setup(s
)) {
567 spice_server_migrate_start(spice_server
);
568 } else if (migration_has_finished(s
)) {
569 spice_server_migrate_end(spice_server
, true);
570 } else if (migration_has_failed(s
)) {
571 spice_server_migrate_end(spice_server
, false);
575 int qemu_spice_migrate_info(const char *hostname
, int port
, int tls_port
,
577 MonitorCompletion
*cb
, void *opaque
)
581 spice_migrate
.connect_complete
.cb
= cb
;
582 spice_migrate
.connect_complete
.opaque
= opaque
;
583 ret
= spice_server_migrate_connect(spice_server
, hostname
,
584 port
, tls_port
, subject
);
588 static int add_channel(const char *name
, const char *value
, void *opaque
)
593 if (strcmp(name
, "tls-channel") == 0) {
594 int *tls_port
= opaque
;
596 error_report("spice: tried to setup tls-channel"
597 " without specifying a TLS port");
600 security
= SPICE_CHANNEL_SECURITY_SSL
;
602 if (strcmp(name
, "plaintext-channel") == 0) {
603 security
= SPICE_CHANNEL_SECURITY_NONE
;
608 if (strcmp(value
, "default") == 0) {
609 rc
= spice_server_set_channel_security(spice_server
, NULL
, security
);
611 rc
= spice_server_set_channel_security(spice_server
, value
, security
);
614 error_report("spice: failed to set channel security for %s", value
);
620 static void vm_change_state_handler(void *opaque
, int running
,
624 qemu_spice_display_start();
625 spice_server_vm_start(spice_server
);
627 spice_server_vm_stop(spice_server
);
628 qemu_spice_display_stop();
632 void qemu_spice_init(void)
634 QemuOpts
*opts
= QTAILQ_FIRST(&qemu_spice_opts
.head
);
635 const char *password
, *str
, *x509_dir
, *addr
,
636 *x509_key_password
= NULL
,
637 *x509_dh_file
= NULL
,
639 char *x509_key_file
= NULL
,
640 *x509_cert_file
= NULL
,
641 *x509_cacert_file
= NULL
;
642 int port
, tls_port
, addr_flags
;
643 spice_image_compression_t compression
;
644 spice_wan_compression_t wan_compr
;
645 bool seamless_migration
;
647 qemu_thread_get_self(&me
);
652 port
= qemu_opt_get_number(opts
, "port", 0);
653 tls_port
= qemu_opt_get_number(opts
, "tls-port", 0);
654 if (!port
&& !tls_port
) {
655 error_report("neither port nor tls-port specified for spice");
658 if (port
< 0 || port
> 65535) {
659 error_report("spice port is out of range");
662 if (tls_port
< 0 || tls_port
> 65535) {
663 error_report("spice tls-port is out of range");
666 password
= qemu_opt_get(opts
, "password");
669 x509_dir
= qemu_opt_get(opts
, "x509-dir");
670 if (NULL
== x509_dir
) {
674 str
= qemu_opt_get(opts
, "x509-key-file");
676 x509_key_file
= g_strdup(str
);
678 x509_key_file
= g_strdup_printf("%s/%s", x509_dir
,
679 X509_SERVER_KEY_FILE
);
682 str
= qemu_opt_get(opts
, "x509-cert-file");
684 x509_cert_file
= g_strdup(str
);
686 x509_cert_file
= g_strdup_printf("%s/%s", x509_dir
,
687 X509_SERVER_CERT_FILE
);
690 str
= qemu_opt_get(opts
, "x509-cacert-file");
692 x509_cacert_file
= g_strdup(str
);
694 x509_cacert_file
= g_strdup_printf("%s/%s", x509_dir
,
698 x509_key_password
= qemu_opt_get(opts
, "x509-key-password");
699 x509_dh_file
= qemu_opt_get(opts
, "x509-dh-key-file");
700 tls_ciphers
= qemu_opt_get(opts
, "tls-ciphers");
703 addr
= qemu_opt_get(opts
, "addr");
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
;
711 spice_server
= spice_server_new();
712 spice_server_set_addr(spice_server
, addr
? addr
: "", addr_flags
);
714 spice_server_set_port(spice_server
, port
);
717 spice_server_set_tls(spice_server
, tls_port
,
726 spice_server_set_ticket(spice_server
, password
, 0, 0, 0);
728 if (qemu_opt_get_bool(opts
, "sasl", 0)) {
729 if (spice_server_set_sasl_appname(spice_server
, "qemu") == -1 ||
730 spice_server_set_sasl(spice_server
, 1) == -1) {
731 error_report("spice: failed to enable sasl");
735 if (qemu_opt_get_bool(opts
, "disable-ticketing", 0)) {
737 spice_server_set_noauth(spice_server
);
740 if (qemu_opt_get_bool(opts
, "disable-copy-paste", 0)) {
741 spice_server_set_agent_copypaste(spice_server
, false);
744 if (qemu_opt_get_bool(opts
, "disable-agent-file-xfer", 0)) {
745 #if SPICE_SERVER_VERSION >= 0x000c04
746 spice_server_set_agent_file_xfer(spice_server
, false);
748 error_report("this qemu build does not support the "
749 "\"disable-agent-file-xfer\" option");
754 compression
= SPICE_IMAGE_COMPRESS_AUTO_GLZ
;
755 str
= qemu_opt_get(opts
, "image-compression");
757 compression
= parse_compression(str
);
759 spice_server_set_image_compression(spice_server
, compression
);
761 wan_compr
= SPICE_WAN_COMPRESSION_AUTO
;
762 str
= qemu_opt_get(opts
, "jpeg-wan-compression");
764 wan_compr
= parse_wan_compression(str
);
766 spice_server_set_jpeg_compression(spice_server
, wan_compr
);
768 wan_compr
= SPICE_WAN_COMPRESSION_AUTO
;
769 str
= qemu_opt_get(opts
, "zlib-glz-wan-compression");
771 wan_compr
= parse_wan_compression(str
);
773 spice_server_set_zlib_glz_compression(spice_server
, wan_compr
);
775 str
= qemu_opt_get(opts
, "streaming-video");
777 int streaming_video
= parse_stream_video(str
);
778 spice_server_set_streaming_video(spice_server
, streaming_video
);
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));
786 qemu_opt_foreach(opts
, add_channel
, &tls_port
, 0);
788 spice_server_set_name(spice_server
, qemu_name
);
789 spice_server_set_uuid(spice_server
, qemu_uuid
);
791 seamless_migration
= qemu_opt_get_bool(opts
, "seamless-migration", 0);
792 spice_server_set_seamless_migration(spice_server
, seamless_migration
);
793 if (0 != spice_server_init(spice_server
, &core_interface
)) {
794 error_report("failed to initialize spice server");
799 migration_state
.notify
= migration_state_notifier
;
800 add_migration_state_change_notifier(&migration_state
);
801 spice_migrate
.sin
.base
.sif
= &migrate_interface
.base
;
802 spice_migrate
.connect_complete
.cb
= NULL
;
803 qemu_spice_add_interface(&spice_migrate
.sin
.base
);
805 qemu_spice_input_init();
806 qemu_spice_audio_init();
808 qemu_add_vm_change_state_handler(vm_change_state_handler
, NULL
);
810 g_free(x509_key_file
);
811 g_free(x509_cert_file
);
812 g_free(x509_cacert_file
);
814 #if SPICE_SERVER_VERSION >= 0x000c02
815 qemu_spice_register_ports();
819 int qemu_spice_add_interface(SpiceBaseInstance
*sin
)
822 if (QTAILQ_FIRST(&qemu_spice_opts
.head
) != NULL
) {
823 error_report("Oops: spice configured but not active");
827 * Create a spice server instance.
828 * It does *not* listen on the network.
829 * It handles QXL local rendering only.
831 * With a command line like '-vnc :0 -vga qxl' you'll end up here.
833 spice_server
= spice_server_new();
834 spice_server_set_sasl_appname(spice_server
, "qemu");
835 spice_server_init(spice_server
, &core_interface
);
836 qemu_add_vm_change_state_handler(vm_change_state_handler
, NULL
);
839 return spice_server_add_interface(spice_server
, sin
);
842 static GSList
*spice_consoles
;
843 static int display_id
;
845 bool qemu_spice_have_display_interface(QemuConsole
*con
)
847 if (g_slist_find(spice_consoles
, con
)) {
853 int qemu_spice_add_display_interface(QXLInstance
*qxlin
, QemuConsole
*con
)
855 if (g_slist_find(spice_consoles
, con
)) {
858 qxlin
->id
= display_id
++;
859 spice_consoles
= g_slist_append(spice_consoles
, con
);
860 return qemu_spice_add_interface(&qxlin
->base
);
863 static int qemu_spice_set_ticket(bool fail_if_conn
, bool disconnect_if_conn
)
865 time_t lifetime
, now
= time(NULL
);
868 if (now
< auth_expires
) {
869 passwd
= auth_passwd
;
870 lifetime
= (auth_expires
- now
);
871 if (lifetime
> INT_MAX
) {
878 return spice_server_set_ticket(spice_server
, passwd
, lifetime
,
879 fail_if_conn
, disconnect_if_conn
);
882 int qemu_spice_set_passwd(const char *passwd
,
883 bool fail_if_conn
, bool disconnect_if_conn
)
886 auth_passwd
= g_strdup(passwd
);
887 return qemu_spice_set_ticket(fail_if_conn
, disconnect_if_conn
);
890 int qemu_spice_set_pw_expire(time_t expires
)
892 auth_expires
= expires
;
893 return qemu_spice_set_ticket(false, false);
896 int qemu_spice_display_add_client(int csock
, int skipauth
, int tls
)
899 return spice_server_add_ssl_client(spice_server
, csock
, skipauth
);
901 return spice_server_add_client(spice_server
, csock
, skipauth
);
905 static void spice_register_config(void)
907 qemu_add_opts(&qemu_spice_opts
);
909 machine_init(spice_register_config
);