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