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"
39 #include "ui/spice-display.h"
40 #include "qapi-event.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;
50 static int spice_display_is_running;
51 static int spice_have_target_host;
58 QTAILQ_ENTRY(SpiceTimer) next;
60 static QTAILQ_HEAD(, SpiceTimer) timers = QTAILQ_HEAD_INITIALIZER(timers);
62 static SpiceTimer *timer_add(SpiceTimerFunc func, void *opaque)
66 timer = g_malloc0(sizeof(*timer));
67 timer->timer = timer_new_ms(QEMU_CLOCK_REALTIME, func, opaque);
68 QTAILQ_INSERT_TAIL(&timers, timer, next);
72 static void timer_start(SpiceTimer *timer, uint32_t ms)
74 timer_mod(timer->timer, qemu_clock_get_ms(QEMU_CLOCK_REALTIME) + ms);
77 static void timer_cancel(SpiceTimer *timer)
79 timer_del(timer->timer);
82 static void timer_remove(SpiceTimer *timer)
84 timer_del(timer->timer);
85 timer_free(timer->timer);
86 QTAILQ_REMOVE(&timers, timer, next);
95 QTAILQ_ENTRY(SpiceWatch) next;
97 static QTAILQ_HEAD(, SpiceWatch) watches = QTAILQ_HEAD_INITIALIZER(watches);
99 static void watch_read(void *opaque)
101 SpiceWatch *watch = opaque;
102 watch->func(watch->fd, SPICE_WATCH_EVENT_READ, watch->opaque);
105 static void watch_write(void *opaque)
107 SpiceWatch *watch = opaque;
108 watch->func(watch->fd, SPICE_WATCH_EVENT_WRITE, watch->opaque);
111 static void watch_update_mask(SpiceWatch *watch, int event_mask)
113 IOHandler *on_read = NULL;
114 IOHandler *on_write = NULL;
116 watch->event_mask = event_mask;
117 if (watch->event_mask & SPICE_WATCH_EVENT_READ) {
118 on_read = watch_read;
120 if (watch->event_mask & SPICE_WATCH_EVENT_WRITE) {
121 on_write = watch_write;
123 qemu_set_fd_handler(watch->fd, on_read, on_write, watch);
126 static SpiceWatch *watch_add(int fd, int event_mask, SpiceWatchFunc func, void *opaque)
130 watch = g_malloc0(sizeof(*watch));
133 watch->opaque = opaque;
134 QTAILQ_INSERT_TAIL(&watches, watch, next);
136 watch_update_mask(watch, event_mask);
140 static void watch_remove(SpiceWatch *watch)
142 qemu_set_fd_handler(watch->fd, NULL, NULL, NULL);
143 QTAILQ_REMOVE(&watches, watch, next);
147 typedef struct ChannelList ChannelList;
149 SpiceChannelEventInfo *info;
150 QTAILQ_ENTRY(ChannelList) link;
152 static QTAILQ_HEAD(, ChannelList) channel_list = QTAILQ_HEAD_INITIALIZER(channel_list);
154 static void channel_list_add(SpiceChannelEventInfo *info)
158 item = g_malloc0(sizeof(*item));
160 QTAILQ_INSERT_TAIL(&channel_list, item, link);
163 static void channel_list_del(SpiceChannelEventInfo *info)
167 QTAILQ_FOREACH(item, &channel_list, link) {
168 if (item->info != info) {
171 QTAILQ_REMOVE(&channel_list, item, link);
177 static void add_addr_info(SpiceBasicInfo *info, struct sockaddr *addr, int len)
179 char host[NI_MAXHOST], port[NI_MAXSERV];
181 getnameinfo(addr, len, host, sizeof(host), port, sizeof(port),
182 NI_NUMERICHOST | NI_NUMERICSERV);
184 info->host = g_strdup(host);
185 info->port = g_strdup(port);
186 info->family = inet_netfamily(addr->sa_family);
189 static void add_channel_info(SpiceChannel *sc, SpiceChannelEventInfo *info)
191 int tls = info->flags & SPICE_CHANNEL_EVENT_FLAG_TLS;
193 sc->connection_id = info->connection_id;
194 sc->channel_type = info->type;
195 sc->channel_id = info->id;
199 static void channel_event(int event, SpiceChannelEventInfo *info)
201 SpiceServerInfo *server = g_malloc0(sizeof(*server));
202 SpiceChannel *client = g_malloc0(sizeof(*client));
203 server->base = g_malloc0(sizeof(*server->base));
204 client->base = g_malloc0(sizeof(*client->base));
207 * Spice server might have called us from spice worker thread
208 * context (happens on display channel disconnects). Spice should
209 * not do that. It isn't that easy to fix it in spice and even
210 * when it is fixed we still should cover the already released
211 * spice versions. So detect that we've been called from another
212 * thread and grab the iothread lock if so before calling qemu
215 bool need_lock = !qemu_thread_is_self(&me);
217 qemu_mutex_lock_iothread();
220 if (info->flags & SPICE_CHANNEL_EVENT_FLAG_ADDR_EXT) {
221 add_addr_info(client->base, (struct sockaddr *)&info->paddr_ext,
223 add_addr_info(server->base, (struct sockaddr *)&info->laddr_ext,
226 error_report("spice: %s, extended address is expected",
231 case SPICE_CHANNEL_EVENT_CONNECTED:
232 qapi_event_send_spice_connected(server->base, client->base, &error_abort);
234 case SPICE_CHANNEL_EVENT_INITIALIZED:
236 server->has_auth = true;
237 server->auth = g_strdup(auth);
239 add_channel_info(client, info);
240 channel_list_add(info);
241 qapi_event_send_spice_initialized(server, client, &error_abort);
243 case SPICE_CHANNEL_EVENT_DISCONNECTED:
244 channel_list_del(info);
245 qapi_event_send_spice_disconnected(server->base, client->base, &error_abort);
252 qemu_mutex_unlock_iothread();
255 qapi_free_SpiceServerInfo(server);
256 qapi_free_SpiceChannel(client);
259 static SpiceCoreInterface core_interface = {
260 .base.type = SPICE_INTERFACE_CORE,
261 .base.description = "qemu core services",
262 .base.major_version = SPICE_INTERFACE_CORE_MAJOR,
263 .base.minor_version = SPICE_INTERFACE_CORE_MINOR,
265 .timer_add = timer_add,
266 .timer_start = timer_start,
267 .timer_cancel = timer_cancel,
268 .timer_remove = timer_remove,
270 .watch_add = watch_add,
271 .watch_update_mask = watch_update_mask,
272 .watch_remove = watch_remove,
274 .channel_event = channel_event,
277 typedef struct SpiceMigration {
278 SpiceMigrateInstance sin;
280 MonitorCompletion *cb;
285 static void migrate_connect_complete_cb(SpiceMigrateInstance *sin);
286 static void migrate_end_complete_cb(SpiceMigrateInstance *sin);
288 static const SpiceMigrateInterface migrate_interface = {
289 .base.type = SPICE_INTERFACE_MIGRATION,
290 .base.description = "migration",
291 .base.major_version = SPICE_INTERFACE_MIGRATION_MAJOR,
292 .base.minor_version = SPICE_INTERFACE_MIGRATION_MINOR,
293 .migrate_connect_complete = migrate_connect_complete_cb,
294 .migrate_end_complete = migrate_end_complete_cb,
297 static SpiceMigration spice_migrate;
299 static void migrate_connect_complete_cb(SpiceMigrateInstance *sin)
301 SpiceMigration *sm = container_of(sin, SpiceMigration, sin);
302 if (sm->connect_complete.cb) {
303 sm->connect_complete.cb(sm->connect_complete.opaque, NULL);
305 sm->connect_complete.cb = NULL;
308 static void migrate_end_complete_cb(SpiceMigrateInstance *sin)
310 qapi_event_send_spice_migrate_completed(&error_abort);
311 spice_migration_completed = true;
314 /* config string parsing */
316 static int name2enum(const char *string, const char *table[], int entries)
321 for (i = 0; i < entries; i++) {
325 if (strcmp(string, table[i]) != 0) {
334 static int parse_name(const char *string, const char *optname,
335 const char *table[], int entries)
337 int value = name2enum(string, table, entries);
342 error_report("spice: invalid %s: %s", optname, string);
346 static const char *stream_video_names[] = {
347 [ SPICE_STREAM_VIDEO_OFF ] = "off",
348 [ SPICE_STREAM_VIDEO_ALL ] = "all",
349 [ SPICE_STREAM_VIDEO_FILTER ] = "filter",
351 #define parse_stream_video(_name) \
352 parse_name(_name, "stream video control", \
353 stream_video_names, ARRAY_SIZE(stream_video_names))
355 static const char *compression_names[] = {
356 [ SPICE_IMAGE_COMPRESS_OFF ] = "off",
357 [ SPICE_IMAGE_COMPRESS_AUTO_GLZ ] = "auto_glz",
358 [ SPICE_IMAGE_COMPRESS_AUTO_LZ ] = "auto_lz",
359 [ SPICE_IMAGE_COMPRESS_QUIC ] = "quic",
360 [ SPICE_IMAGE_COMPRESS_GLZ ] = "glz",
361 [ SPICE_IMAGE_COMPRESS_LZ ] = "lz",
363 #define parse_compression(_name) \
364 parse_name(_name, "image compression", \
365 compression_names, ARRAY_SIZE(compression_names))
367 static const char *wan_compression_names[] = {
368 [ SPICE_WAN_COMPRESSION_AUTO ] = "auto",
369 [ SPICE_WAN_COMPRESSION_NEVER ] = "never",
370 [ SPICE_WAN_COMPRESSION_ALWAYS ] = "always",
372 #define parse_wan_compression(_name) \
373 parse_name(_name, "wan compression", \
374 wan_compression_names, ARRAY_SIZE(wan_compression_names))
376 /* functions for the rest of qemu */
378 static SpiceChannelList *qmp_query_spice_channels(void)
380 SpiceChannelList *cur_item = NULL, *head = NULL;
383 QTAILQ_FOREACH(item, &channel_list, link) {
384 SpiceChannelList *chan;
385 char host[NI_MAXHOST], port[NI_MAXSERV];
386 struct sockaddr *paddr;
389 if (!(item->info->flags & SPICE_CHANNEL_EVENT_FLAG_ADDR_EXT)) {
390 error_report("invalid channel event");
394 chan = g_malloc0(sizeof(*chan));
395 chan->value = g_malloc0(sizeof(*chan->value));
396 chan->value->base = g_malloc0(sizeof(*chan->value->base));
398 paddr = (struct sockaddr *)&item->info->paddr_ext;
399 plen = item->info->plen_ext;
400 getnameinfo(paddr, plen,
401 host, sizeof(host), port, sizeof(port),
402 NI_NUMERICHOST | NI_NUMERICSERV);
403 chan->value->base->host = g_strdup(host);
404 chan->value->base->port = g_strdup(port);
405 chan->value->base->family = inet_netfamily(paddr->sa_family);
407 chan->value->connection_id = item->info->connection_id;
408 chan->value->channel_type = item->info->type;
409 chan->value->channel_id = item->info->id;
410 chan->value->tls = item->info->flags & SPICE_CHANNEL_EVENT_FLAG_TLS;
412 /* XXX: waiting for the qapi to support GSList */
414 head = cur_item = chan;
416 cur_item->next = chan;
424 static QemuOptsList qemu_spice_opts = {
426 .head = QTAILQ_HEAD_INITIALIZER(qemu_spice_opts.head),
430 .type = QEMU_OPT_NUMBER,
433 .type = QEMU_OPT_NUMBER,
436 .type = QEMU_OPT_STRING,
439 .type = QEMU_OPT_BOOL,
442 .type = QEMU_OPT_BOOL,
445 .type = QEMU_OPT_STRING,
447 .name = "disable-ticketing",
448 .type = QEMU_OPT_BOOL,
450 .name = "disable-copy-paste",
451 .type = QEMU_OPT_BOOL,
453 .name = "disable-agent-file-xfer",
454 .type = QEMU_OPT_BOOL,
457 .type = QEMU_OPT_BOOL,
460 .type = QEMU_OPT_STRING,
462 .name = "x509-key-file",
463 .type = QEMU_OPT_STRING,
465 .name = "x509-key-password",
466 .type = QEMU_OPT_STRING,
468 .name = "x509-cert-file",
469 .type = QEMU_OPT_STRING,
471 .name = "x509-cacert-file",
472 .type = QEMU_OPT_STRING,
474 .name = "x509-dh-key-file",
475 .type = QEMU_OPT_STRING,
477 .name = "tls-ciphers",
478 .type = QEMU_OPT_STRING,
480 .name = "tls-channel",
481 .type = QEMU_OPT_STRING,
483 .name = "plaintext-channel",
484 .type = QEMU_OPT_STRING,
486 .name = "image-compression",
487 .type = QEMU_OPT_STRING,
489 .name = "jpeg-wan-compression",
490 .type = QEMU_OPT_STRING,
492 .name = "zlib-glz-wan-compression",
493 .type = QEMU_OPT_STRING,
495 .name = "streaming-video",
496 .type = QEMU_OPT_STRING,
498 .name = "agent-mouse",
499 .type = QEMU_OPT_BOOL,
501 .name = "playback-compression",
502 .type = QEMU_OPT_BOOL,
504 .name = "seamless-migration",
505 .type = QEMU_OPT_BOOL,
507 { /* end of list */ }
511 SpiceInfo *qmp_query_spice(Error **errp)
513 QemuOpts *opts = QTAILQ_FIRST(&qemu_spice_opts.head);
521 info = g_malloc0(sizeof(*info));
523 if (!spice_server || !opts) {
524 info->enabled = false;
528 info->enabled = true;
529 info->migrated = spice_migration_completed;
531 addr = qemu_opt_get(opts, "addr");
532 port = qemu_opt_get_number(opts, "port", 0);
533 tls_port = qemu_opt_get_number(opts, "tls-port", 0);
535 info->has_auth = true;
536 info->auth = g_strdup(auth);
538 info->has_host = true;
539 info->host = g_strdup(addr ? addr : "*");
541 info->has_compiled_version = true;
542 major = (SPICE_SERVER_VERSION & 0xff0000) >> 16;
543 minor = (SPICE_SERVER_VERSION & 0xff00) >> 8;
544 micro = SPICE_SERVER_VERSION & 0xff;
545 info->compiled_version = g_strdup_printf("%d.%d.%d", major, minor, micro);
548 info->has_port = true;
552 info->has_tls_port = true;
553 info->tls_port = tls_port;
556 info->mouse_mode = spice_server_is_server_mouse(spice_server) ?
557 SPICE_QUERY_MOUSE_MODE_SERVER :
558 SPICE_QUERY_MOUSE_MODE_CLIENT;
560 /* for compatibility with the original command */
561 info->has_channels = true;
562 info->channels = qmp_query_spice_channels();
567 static void migration_state_notifier(Notifier *notifier, void *data)
569 MigrationState *s = data;
571 if (!spice_have_target_host) {
575 if (migration_in_setup(s)) {
576 spice_server_migrate_start(spice_server);
577 } else if (migration_has_finished(s)) {
578 spice_server_migrate_end(spice_server, true);
579 spice_have_target_host = false;
580 } else if (migration_has_failed(s)) {
581 spice_server_migrate_end(spice_server, false);
582 spice_have_target_host = false;
586 int qemu_spice_migrate_info(const char *hostname, int port, int tls_port,
588 MonitorCompletion *cb, void *opaque)
592 spice_migrate.connect_complete.cb = cb;
593 spice_migrate.connect_complete.opaque = opaque;
594 ret = spice_server_migrate_connect(spice_server, hostname,
595 port, tls_port, subject);
596 spice_have_target_host = true;
600 static int add_channel(const char *name, const char *value, void *opaque)
605 if (strcmp(name, "tls-channel") == 0) {
606 int *tls_port = opaque;
608 error_report("spice: tried to setup tls-channel"
609 " without specifying a TLS port");
612 security = SPICE_CHANNEL_SECURITY_SSL;
614 if (strcmp(name, "plaintext-channel") == 0) {
615 security = SPICE_CHANNEL_SECURITY_NONE;
620 if (strcmp(value, "default") == 0) {
621 rc = spice_server_set_channel_security(spice_server, NULL, security);
623 rc = spice_server_set_channel_security(spice_server, value, security);
626 error_report("spice: failed to set channel security for %s", value);
632 static void vm_change_state_handler(void *opaque, int running,
636 qemu_spice_display_start();
638 qemu_spice_display_stop();
642 void qemu_spice_init(void)
644 QemuOpts *opts = QTAILQ_FIRST(&qemu_spice_opts.head);
645 const char *password, *str, *x509_dir, *addr,
646 *x509_key_password = NULL,
647 *x509_dh_file = NULL,
649 char *x509_key_file = NULL,
650 *x509_cert_file = NULL,
651 *x509_cacert_file = NULL;
652 int port, tls_port, addr_flags;
653 spice_image_compression_t compression;
654 spice_wan_compression_t wan_compr;
655 bool seamless_migration;
657 qemu_thread_get_self(&me);
662 port = qemu_opt_get_number(opts, "port", 0);
663 tls_port = qemu_opt_get_number(opts, "tls-port", 0);
664 if (port < 0 || port > 65535) {
665 error_report("spice port is out of range");
668 if (tls_port < 0 || tls_port > 65535) {
669 error_report("spice tls-port is out of range");
672 password = qemu_opt_get(opts, "password");
675 x509_dir = qemu_opt_get(opts, "x509-dir");
680 str = qemu_opt_get(opts, "x509-key-file");
682 x509_key_file = g_strdup(str);
684 x509_key_file = g_strdup_printf("%s/%s", x509_dir,
685 X509_SERVER_KEY_FILE);
688 str = qemu_opt_get(opts, "x509-cert-file");
690 x509_cert_file = g_strdup(str);
692 x509_cert_file = g_strdup_printf("%s/%s", x509_dir,
693 X509_SERVER_CERT_FILE);
696 str = qemu_opt_get(opts, "x509-cacert-file");
698 x509_cacert_file = g_strdup(str);
700 x509_cacert_file = g_strdup_printf("%s/%s", x509_dir,
704 x509_key_password = qemu_opt_get(opts, "x509-key-password");
705 x509_dh_file = qemu_opt_get(opts, "x509-dh-key-file");
706 tls_ciphers = qemu_opt_get(opts, "tls-ciphers");
709 addr = qemu_opt_get(opts, "addr");
711 if (qemu_opt_get_bool(opts, "ipv4", 0)) {
712 addr_flags |= SPICE_ADDR_FLAG_IPV4_ONLY;
713 } else if (qemu_opt_get_bool(opts, "ipv6", 0)) {
714 addr_flags |= SPICE_ADDR_FLAG_IPV6_ONLY;
717 spice_server = spice_server_new();
718 spice_server_set_addr(spice_server, addr ? addr : "", addr_flags);
720 spice_server_set_port(spice_server, port);
723 spice_server_set_tls(spice_server, tls_port,
732 qemu_spice_set_passwd(password, false, false);
734 if (qemu_opt_get_bool(opts, "sasl", 0)) {
735 if (spice_server_set_sasl_appname(spice_server, "qemu") == -1 ||
736 spice_server_set_sasl(spice_server, 1) == -1) {
737 error_report("spice: failed to enable sasl");
742 if (qemu_opt_get_bool(opts, "disable-ticketing", 0)) {
744 spice_server_set_noauth(spice_server);
747 if (qemu_opt_get_bool(opts, "disable-copy-paste", 0)) {
748 spice_server_set_agent_copypaste(spice_server, false);
751 if (qemu_opt_get_bool(opts, "disable-agent-file-xfer", 0)) {
752 #if SPICE_SERVER_VERSION >= 0x000c04
753 spice_server_set_agent_file_xfer(spice_server, false);
755 error_report("this qemu build does not support the "
756 "\"disable-agent-file-xfer\" option");
761 compression = SPICE_IMAGE_COMPRESS_AUTO_GLZ;
762 str = qemu_opt_get(opts, "image-compression");
764 compression = parse_compression(str);
766 spice_server_set_image_compression(spice_server, compression);
768 wan_compr = SPICE_WAN_COMPRESSION_AUTO;
769 str = qemu_opt_get(opts, "jpeg-wan-compression");
771 wan_compr = parse_wan_compression(str);
773 spice_server_set_jpeg_compression(spice_server, wan_compr);
775 wan_compr = SPICE_WAN_COMPRESSION_AUTO;
776 str = qemu_opt_get(opts, "zlib-glz-wan-compression");
778 wan_compr = parse_wan_compression(str);
780 spice_server_set_zlib_glz_compression(spice_server, wan_compr);
782 str = qemu_opt_get(opts, "streaming-video");
784 int streaming_video = parse_stream_video(str);
785 spice_server_set_streaming_video(spice_server, streaming_video);
787 spice_server_set_streaming_video(spice_server, SPICE_STREAM_VIDEO_OFF);
790 spice_server_set_agent_mouse
791 (spice_server, qemu_opt_get_bool(opts, "agent-mouse", 1));
792 spice_server_set_playback_compression
793 (spice_server, qemu_opt_get_bool(opts, "playback-compression", 1));
795 qemu_opt_foreach(opts, add_channel, &tls_port, 0);
797 spice_server_set_name(spice_server, qemu_name);
798 spice_server_set_uuid(spice_server, qemu_uuid);
800 seamless_migration = qemu_opt_get_bool(opts, "seamless-migration", 0);
801 spice_server_set_seamless_migration(spice_server, seamless_migration);
802 if (spice_server_init(spice_server, &core_interface) != 0) {
803 error_report("failed to initialize spice server");
808 migration_state.notify = migration_state_notifier;
809 add_migration_state_change_notifier(&migration_state);
810 spice_migrate.sin.base.sif = &migrate_interface.base;
811 spice_migrate.connect_complete.cb = NULL;
812 qemu_spice_add_interface(&spice_migrate.sin.base);
814 qemu_spice_input_init();
815 qemu_spice_audio_init();
817 qemu_add_vm_change_state_handler(vm_change_state_handler, NULL);
819 g_free(x509_key_file);
820 g_free(x509_cert_file);
821 g_free(x509_cacert_file);
823 #if SPICE_SERVER_VERSION >= 0x000c02
824 qemu_spice_register_ports();
828 int qemu_spice_add_interface(SpiceBaseInstance *sin)
831 if (QTAILQ_FIRST(&qemu_spice_opts.head) != NULL) {
832 error_report("Oops: spice configured but not active");
836 * Create a spice server instance.
837 * It does *not* listen on the network.
838 * It handles QXL local rendering only.
840 * With a command line like '-vnc :0 -vga qxl' you'll end up here.
842 spice_server = spice_server_new();
843 spice_server_set_sasl_appname(spice_server, "qemu");
844 spice_server_init(spice_server, &core_interface);
845 qemu_add_vm_change_state_handler(vm_change_state_handler, NULL);
848 return spice_server_add_interface(spice_server, sin);
851 static GSList *spice_consoles;
853 bool qemu_spice_have_display_interface(QemuConsole *con)
855 if (g_slist_find(spice_consoles, con)) {
861 int qemu_spice_add_display_interface(QXLInstance *qxlin, QemuConsole *con)
863 if (g_slist_find(spice_consoles, con)) {
866 qxlin->id = qemu_console_get_index(con);
867 spice_consoles = g_slist_append(spice_consoles, con);
868 return qemu_spice_add_interface(&qxlin->base);
871 static int qemu_spice_set_ticket(bool fail_if_conn, bool disconnect_if_conn)
873 time_t lifetime, now = time(NULL);
876 if (now < auth_expires) {
877 passwd = auth_passwd;
878 lifetime = (auth_expires - now);
879 if (lifetime > INT_MAX) {
886 return spice_server_set_ticket(spice_server, passwd, lifetime,
887 fail_if_conn, disconnect_if_conn);
890 int qemu_spice_set_passwd(const char *passwd,
891 bool fail_if_conn, bool disconnect_if_conn)
893 if (strcmp(auth, "spice") != 0) {
898 auth_passwd = g_strdup(passwd);
899 return qemu_spice_set_ticket(fail_if_conn, disconnect_if_conn);
902 int qemu_spice_set_pw_expire(time_t expires)
904 auth_expires = expires;
905 return qemu_spice_set_ticket(false, false);
908 int qemu_spice_display_add_client(int csock, int skipauth, int tls)
911 return spice_server_add_ssl_client(spice_server, csock, skipauth);
913 return spice_server_add_client(spice_server, csock, skipauth);
917 void qemu_spice_display_start(void)
919 spice_display_is_running = true;
920 spice_server_vm_start(spice_server);
923 void qemu_spice_display_stop(void)
925 spice_server_vm_stop(spice_server);
926 spice_display_is_running = false;
929 int qemu_spice_display_is_running(SimpleSpiceDisplay *ssd)
931 return spice_display_is_running;
934 static void spice_register_config(void)
936 qemu_add_opts(&qemu_spice_opts);
938 machine_init(spice_register_config);