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>
24 #include "qemu-common.h"
25 #include "qemu-spice.h"
26 #include "qemu-timer.h"
27 #include "qemu-queue.h"
28 #include "qemu-x509.h"
29 #include "qemu_socket.h"
35 #include "migration.h"
41 static SpiceServer
*spice_server
;
42 static Notifier migration_state
;
43 static const char *auth
= "spice";
44 static char *auth_passwd
;
45 static time_t auth_expires
= TIME_MAX
;
52 QTAILQ_ENTRY(SpiceTimer
) next
;
54 static QTAILQ_HEAD(, SpiceTimer
) timers
= QTAILQ_HEAD_INITIALIZER(timers
);
56 static SpiceTimer
*timer_add(SpiceTimerFunc func
, void *opaque
)
60 timer
= g_malloc0(sizeof(*timer
));
61 timer
->timer
= qemu_new_timer_ms(rt_clock
, func
, opaque
);
62 QTAILQ_INSERT_TAIL(&timers
, timer
, next
);
66 static void timer_start(SpiceTimer
*timer
, uint32_t ms
)
68 qemu_mod_timer(timer
->timer
, qemu_get_clock_ms(rt_clock
) + ms
);
71 static void timer_cancel(SpiceTimer
*timer
)
73 qemu_del_timer(timer
->timer
);
76 static void timer_remove(SpiceTimer
*timer
)
78 qemu_del_timer(timer
->timer
);
79 qemu_free_timer(timer
->timer
);
80 QTAILQ_REMOVE(&timers
, timer
, next
);
89 QTAILQ_ENTRY(SpiceWatch
) next
;
91 static QTAILQ_HEAD(, SpiceWatch
) watches
= QTAILQ_HEAD_INITIALIZER(watches
);
93 static void watch_read(void *opaque
)
95 SpiceWatch
*watch
= opaque
;
96 watch
->func(watch
->fd
, SPICE_WATCH_EVENT_READ
, watch
->opaque
);
99 static void watch_write(void *opaque
)
101 SpiceWatch
*watch
= opaque
;
102 watch
->func(watch
->fd
, SPICE_WATCH_EVENT_WRITE
, watch
->opaque
);
105 static void watch_update_mask(SpiceWatch
*watch
, int event_mask
)
107 IOHandler
*on_read
= NULL
;
108 IOHandler
*on_write
= NULL
;
110 watch
->event_mask
= event_mask
;
111 if (watch
->event_mask
& SPICE_WATCH_EVENT_READ
) {
112 on_read
= watch_read
;
114 if (watch
->event_mask
& SPICE_WATCH_EVENT_WRITE
) {
115 on_write
= watch_write
;
117 qemu_set_fd_handler(watch
->fd
, on_read
, on_write
, watch
);
120 static SpiceWatch
*watch_add(int fd
, int event_mask
, SpiceWatchFunc func
, void *opaque
)
124 watch
= g_malloc0(sizeof(*watch
));
127 watch
->opaque
= opaque
;
128 QTAILQ_INSERT_TAIL(&watches
, watch
, next
);
130 watch_update_mask(watch
, event_mask
);
134 static void watch_remove(SpiceWatch
*watch
)
136 watch_update_mask(watch
, 0);
137 QTAILQ_REMOVE(&watches
, watch
, next
);
141 #if SPICE_INTERFACE_CORE_MINOR >= 3
143 typedef struct ChannelList ChannelList
;
145 SpiceChannelEventInfo
*info
;
146 QTAILQ_ENTRY(ChannelList
) link
;
148 static QTAILQ_HEAD(, ChannelList
) channel_list
= QTAILQ_HEAD_INITIALIZER(channel_list
);
150 static void channel_list_add(SpiceChannelEventInfo
*info
)
154 item
= g_malloc0(sizeof(*item
));
156 QTAILQ_INSERT_TAIL(&channel_list
, item
, link
);
159 static void channel_list_del(SpiceChannelEventInfo
*info
)
163 QTAILQ_FOREACH(item
, &channel_list
, link
) {
164 if (item
->info
!= info
) {
167 QTAILQ_REMOVE(&channel_list
, item
, link
);
173 static void add_addr_info(QDict
*dict
, struct sockaddr
*addr
, int len
)
175 char host
[NI_MAXHOST
], port
[NI_MAXSERV
];
178 getnameinfo(addr
, len
, host
, sizeof(host
), port
, sizeof(port
),
179 NI_NUMERICHOST
| NI_NUMERICSERV
);
180 family
= inet_strfamily(addr
->sa_family
);
182 qdict_put(dict
, "host", qstring_from_str(host
));
183 qdict_put(dict
, "port", qstring_from_str(port
));
184 qdict_put(dict
, "family", qstring_from_str(family
));
187 static void add_channel_info(QDict
*dict
, SpiceChannelEventInfo
*info
)
189 int tls
= info
->flags
& SPICE_CHANNEL_EVENT_FLAG_TLS
;
191 qdict_put(dict
, "connection-id", qint_from_int(info
->connection_id
));
192 qdict_put(dict
, "channel-type", qint_from_int(info
->type
));
193 qdict_put(dict
, "channel-id", qint_from_int(info
->id
));
194 qdict_put(dict
, "tls", qbool_from_int(tls
));
197 static QList
*channel_list_get(void)
204 QTAILQ_FOREACH(item
, &channel_list
, link
) {
206 add_addr_info(dict
, &item
->info
->paddr
, item
->info
->plen
);
207 add_channel_info(dict
, item
->info
);
208 qlist_append(list
, dict
);
213 static void channel_event(int event
, SpiceChannelEventInfo
*info
)
215 static const int qevent
[] = {
216 [ SPICE_CHANNEL_EVENT_CONNECTED
] = QEVENT_SPICE_CONNECTED
,
217 [ SPICE_CHANNEL_EVENT_INITIALIZED
] = QEVENT_SPICE_INITIALIZED
,
218 [ SPICE_CHANNEL_EVENT_DISCONNECTED
] = QEVENT_SPICE_DISCONNECTED
,
220 QDict
*server
, *client
;
224 * Spice server might have called us from spice worker thread
225 * context (happens on display channel disconnects). Spice should
226 * not do that. It isn't that easy to fix it in spice and even
227 * when it is fixed we still should cover the already released
228 * spice versions. So detect that we've been called from another
229 * thread and grab the iothread lock if so before calling qemu
232 bool need_lock
= !pthread_equal(me
, pthread_self());
234 qemu_mutex_lock_iothread();
237 client
= qdict_new();
238 add_addr_info(client
, &info
->paddr
, info
->plen
);
240 server
= qdict_new();
241 add_addr_info(server
, &info
->laddr
, info
->llen
);
243 if (event
== SPICE_CHANNEL_EVENT_INITIALIZED
) {
244 qdict_put(server
, "auth", qstring_from_str(auth
));
245 add_channel_info(client
, info
);
246 channel_list_add(info
);
248 if (event
== SPICE_CHANNEL_EVENT_DISCONNECTED
) {
249 channel_list_del(info
);
252 data
= qobject_from_jsonf("{ 'client': %p, 'server': %p }",
253 QOBJECT(client
), QOBJECT(server
));
254 monitor_protocol_event(qevent
[event
], data
);
255 qobject_decref(data
);
258 qemu_mutex_unlock_iothread();
262 #else /* SPICE_INTERFACE_CORE_MINOR >= 3 */
264 static QList
*channel_list_get(void)
269 #endif /* SPICE_INTERFACE_CORE_MINOR >= 3 */
271 static SpiceCoreInterface core_interface
= {
272 .base
.type
= SPICE_INTERFACE_CORE
,
273 .base
.description
= "qemu core services",
274 .base
.major_version
= SPICE_INTERFACE_CORE_MAJOR
,
275 .base
.minor_version
= SPICE_INTERFACE_CORE_MINOR
,
277 .timer_add
= timer_add
,
278 .timer_start
= timer_start
,
279 .timer_cancel
= timer_cancel
,
280 .timer_remove
= timer_remove
,
282 .watch_add
= watch_add
,
283 .watch_update_mask
= watch_update_mask
,
284 .watch_remove
= watch_remove
,
286 #if SPICE_INTERFACE_CORE_MINOR >= 3
287 .channel_event
= channel_event
,
291 /* config string parsing */
293 static int name2enum(const char *string
, const char *table
[], int entries
)
298 for (i
= 0; i
< entries
; i
++) {
302 if (strcmp(string
, table
[i
]) != 0) {
311 static int parse_name(const char *string
, const char *optname
,
312 const char *table
[], int entries
)
314 int value
= name2enum(string
, table
, entries
);
319 fprintf(stderr
, "spice: invalid %s: %s\n", optname
, string
);
323 static const char *stream_video_names
[] = {
324 [ SPICE_STREAM_VIDEO_OFF
] = "off",
325 [ SPICE_STREAM_VIDEO_ALL
] = "all",
326 [ SPICE_STREAM_VIDEO_FILTER
] = "filter",
328 #define parse_stream_video(_name) \
329 name2enum(_name, stream_video_names, ARRAY_SIZE(stream_video_names))
331 static const char *compression_names
[] = {
332 [ SPICE_IMAGE_COMPRESS_OFF
] = "off",
333 [ SPICE_IMAGE_COMPRESS_AUTO_GLZ
] = "auto_glz",
334 [ SPICE_IMAGE_COMPRESS_AUTO_LZ
] = "auto_lz",
335 [ SPICE_IMAGE_COMPRESS_QUIC
] = "quic",
336 [ SPICE_IMAGE_COMPRESS_GLZ
] = "glz",
337 [ SPICE_IMAGE_COMPRESS_LZ
] = "lz",
339 #define parse_compression(_name) \
340 parse_name(_name, "image compression", \
341 compression_names, ARRAY_SIZE(compression_names))
343 static const char *wan_compression_names
[] = {
344 [ SPICE_WAN_COMPRESSION_AUTO
] = "auto",
345 [ SPICE_WAN_COMPRESSION_NEVER
] = "never",
346 [ SPICE_WAN_COMPRESSION_ALWAYS
] = "always",
348 #define parse_wan_compression(_name) \
349 parse_name(_name, "wan compression", \
350 wan_compression_names, ARRAY_SIZE(wan_compression_names))
352 /* functions for the rest of qemu */
354 static void info_spice_iter(QObject
*obj
, void *opaque
)
357 Monitor
*mon
= opaque
;
359 client
= qobject_to_qdict(obj
);
360 monitor_printf(mon
, "Channel:\n");
361 monitor_printf(mon
, " address: %s:%s%s\n",
362 qdict_get_str(client
, "host"),
363 qdict_get_str(client
, "port"),
364 qdict_get_bool(client
, "tls") ? " [tls]" : "");
365 monitor_printf(mon
, " session: %" PRId64
"\n",
366 qdict_get_int(client
, "connection-id"));
367 monitor_printf(mon
, " channel: %d:%d\n",
368 (int)qdict_get_int(client
, "channel-type"),
369 (int)qdict_get_int(client
, "channel-id"));
372 void do_info_spice_print(Monitor
*mon
, const QObject
*data
)
379 server
= qobject_to_qdict(data
);
380 if (qdict_get_bool(server
, "enabled") == 0) {
381 monitor_printf(mon
, "Server: disabled\n");
385 monitor_printf(mon
, "Server:\n");
386 host
= qdict_get_str(server
, "host");
387 port
= qdict_get_try_int(server
, "port", -1);
389 monitor_printf(mon
, " address: %s:%d\n", host
, port
);
391 port
= qdict_get_try_int(server
, "tls-port", -1);
393 monitor_printf(mon
, " address: %s:%d [tls]\n", host
, port
);
395 monitor_printf(mon
, " auth: %s\n", qdict_get_str(server
, "auth"));
396 monitor_printf(mon
, " compiled: %s\n",
397 qdict_get_str(server
, "compiled-version"));
399 channels
= qdict_get_qlist(server
, "channels");
400 if (qlist_empty(channels
)) {
401 monitor_printf(mon
, "Channels: none\n");
403 qlist_iter(channels
, info_spice_iter
, mon
);
407 void do_info_spice(Monitor
*mon
, QObject
**ret_data
)
409 QemuOpts
*opts
= QTAILQ_FIRST(&qemu_spice_opts
.head
);
414 char version_string
[20]; /* 12 = |255.255.255\0| is the max */
417 *ret_data
= qobject_from_jsonf("{ 'enabled': false }");
421 addr
= qemu_opt_get(opts
, "addr");
422 port
= qemu_opt_get_number(opts
, "port", 0);
423 tls_port
= qemu_opt_get_number(opts
, "tls-port", 0);
424 clist
= channel_list_get();
426 server
= qdict_new();
427 qdict_put(server
, "enabled", qbool_from_int(true));
428 qdict_put(server
, "auth", qstring_from_str(auth
));
429 qdict_put(server
, "host", qstring_from_str(addr
? addr
: "0.0.0.0"));
430 snprintf(version_string
, sizeof(version_string
), "%d.%d.%d",
431 (SPICE_SERVER_VERSION
& 0xff0000) >> 16,
432 (SPICE_SERVER_VERSION
& 0xff00) >> 8,
433 SPICE_SERVER_VERSION
& 0xff);
434 qdict_put(server
, "compiled-version", qstring_from_str(version_string
));
436 qdict_put(server
, "port", qint_from_int(port
));
439 qdict_put(server
, "tls-port", qint_from_int(tls_port
));
442 qdict_put(server
, "channels", clist
);
445 *ret_data
= QOBJECT(server
);
448 static void migration_state_notifier(Notifier
*notifier
, void *data
)
450 int state
= get_migration_state();
452 if (state
== MIG_STATE_COMPLETED
) {
453 #if SPICE_SERVER_VERSION >= 0x000701 /* 0.7.1 */
454 spice_server_migrate_switch(spice_server
);
459 int qemu_spice_migrate_info(const char *hostname
, int port
, int tls_port
,
462 return spice_server_migrate_info(spice_server
, hostname
,
463 port
, tls_port
, subject
);
466 static int add_channel(const char *name
, const char *value
, void *opaque
)
471 if (strcmp(name
, "tls-channel") == 0) {
472 security
= SPICE_CHANNEL_SECURITY_SSL
;
474 if (strcmp(name
, "plaintext-channel") == 0) {
475 security
= SPICE_CHANNEL_SECURITY_NONE
;
480 if (strcmp(value
, "default") == 0) {
481 rc
= spice_server_set_channel_security(spice_server
, NULL
, security
);
483 rc
= spice_server_set_channel_security(spice_server
, value
, security
);
486 fprintf(stderr
, "spice: failed to set channel security for %s\n", value
);
492 void qemu_spice_init(void)
494 QemuOpts
*opts
= QTAILQ_FIRST(&qemu_spice_opts
.head
);
495 const char *password
, *str
, *x509_dir
, *addr
,
496 *x509_key_password
= NULL
,
497 *x509_dh_file
= NULL
,
499 char *x509_key_file
= NULL
,
500 *x509_cert_file
= NULL
,
501 *x509_cacert_file
= NULL
;
502 int port
, tls_port
, len
, addr_flags
;
503 spice_image_compression_t compression
;
504 spice_wan_compression_t wan_compr
;
511 port
= qemu_opt_get_number(opts
, "port", 0);
512 tls_port
= qemu_opt_get_number(opts
, "tls-port", 0);
513 if (!port
&& !tls_port
) {
514 fprintf(stderr
, "neither port nor tls-port specified for spice.");
517 if (port
< 0 || port
> 65535) {
518 fprintf(stderr
, "spice port is out of range");
521 if (tls_port
< 0 || tls_port
> 65535) {
522 fprintf(stderr
, "spice tls-port is out of range");
525 password
= qemu_opt_get(opts
, "password");
528 x509_dir
= qemu_opt_get(opts
, "x509-dir");
529 if (NULL
== x509_dir
) {
532 len
= strlen(x509_dir
) + 32;
534 str
= qemu_opt_get(opts
, "x509-key-file");
536 x509_key_file
= g_strdup(str
);
538 x509_key_file
= g_malloc(len
);
539 snprintf(x509_key_file
, len
, "%s/%s", x509_dir
, X509_SERVER_KEY_FILE
);
542 str
= qemu_opt_get(opts
, "x509-cert-file");
544 x509_cert_file
= g_strdup(str
);
546 x509_cert_file
= g_malloc(len
);
547 snprintf(x509_cert_file
, len
, "%s/%s", x509_dir
, X509_SERVER_CERT_FILE
);
550 str
= qemu_opt_get(opts
, "x509-cacert-file");
552 x509_cacert_file
= g_strdup(str
);
554 x509_cacert_file
= g_malloc(len
);
555 snprintf(x509_cacert_file
, len
, "%s/%s", x509_dir
, X509_CA_CERT_FILE
);
558 x509_key_password
= qemu_opt_get(opts
, "x509-key-password");
559 x509_dh_file
= qemu_opt_get(opts
, "x509-dh-file");
560 tls_ciphers
= qemu_opt_get(opts
, "tls-ciphers");
563 addr
= qemu_opt_get(opts
, "addr");
565 if (qemu_opt_get_bool(opts
, "ipv4", 0)) {
566 addr_flags
|= SPICE_ADDR_FLAG_IPV4_ONLY
;
567 } else if (qemu_opt_get_bool(opts
, "ipv6", 0)) {
568 addr_flags
|= SPICE_ADDR_FLAG_IPV6_ONLY
;
571 spice_server
= spice_server_new();
572 spice_server_set_addr(spice_server
, addr
? addr
: "", addr_flags
);
574 spice_server_set_port(spice_server
, port
);
577 spice_server_set_tls(spice_server
, tls_port
,
586 spice_server_set_ticket(spice_server
, password
, 0, 0, 0);
588 if (qemu_opt_get_bool(opts
, "sasl", 0)) {
589 #if SPICE_SERVER_VERSION >= 0x000900 /* 0.9.0 */
590 if (spice_server_set_sasl_appname(spice_server
, "qemu") == -1 ||
591 spice_server_set_sasl(spice_server
, 1) == -1) {
592 fprintf(stderr
, "spice: failed to enable sasl\n");
596 fprintf(stderr
, "spice: sasl is not available (spice >= 0.9 required)\n");
600 if (qemu_opt_get_bool(opts
, "disable-ticketing", 0)) {
602 spice_server_set_noauth(spice_server
);
605 #if SPICE_SERVER_VERSION >= 0x000801
606 if (qemu_opt_get_bool(opts
, "disable-copy-paste", 0)) {
607 spice_server_set_agent_copypaste(spice_server
, false);
611 compression
= SPICE_IMAGE_COMPRESS_AUTO_GLZ
;
612 str
= qemu_opt_get(opts
, "image-compression");
614 compression
= parse_compression(str
);
616 spice_server_set_image_compression(spice_server
, compression
);
618 wan_compr
= SPICE_WAN_COMPRESSION_AUTO
;
619 str
= qemu_opt_get(opts
, "jpeg-wan-compression");
621 wan_compr
= parse_wan_compression(str
);
623 spice_server_set_jpeg_compression(spice_server
, wan_compr
);
625 wan_compr
= SPICE_WAN_COMPRESSION_AUTO
;
626 str
= qemu_opt_get(opts
, "zlib-glz-wan-compression");
628 wan_compr
= parse_wan_compression(str
);
630 spice_server_set_zlib_glz_compression(spice_server
, wan_compr
);
632 str
= qemu_opt_get(opts
, "streaming-video");
634 int streaming_video
= parse_stream_video(str
);
635 spice_server_set_streaming_video(spice_server
, streaming_video
);
638 spice_server_set_agent_mouse
639 (spice_server
, qemu_opt_get_bool(opts
, "agent-mouse", 1));
640 spice_server_set_playback_compression
641 (spice_server
, qemu_opt_get_bool(opts
, "playback-compression", 1));
643 qemu_opt_foreach(opts
, add_channel
, NULL
, 0);
645 if (0 != spice_server_init(spice_server
, &core_interface
)) {
646 fprintf(stderr
, "failed to initialize spice server");
651 migration_state
.notify
= migration_state_notifier
;
652 add_migration_state_change_notifier(&migration_state
);
654 qemu_spice_input_init();
655 qemu_spice_audio_init();
657 g_free(x509_key_file
);
658 g_free(x509_cert_file
);
659 g_free(x509_cacert_file
);
662 int qemu_spice_add_interface(SpiceBaseInstance
*sin
)
665 if (QTAILQ_FIRST(&qemu_spice_opts
.head
) != NULL
) {
666 fprintf(stderr
, "Oops: spice configured but not active\n");
670 * Create a spice server instance.
671 * It does *not* listen on the network.
672 * It handles QXL local rendering only.
674 * With a command line like '-vnc :0 -vga qxl' you'll end up here.
676 spice_server
= spice_server_new();
677 spice_server_init(spice_server
, &core_interface
);
679 return spice_server_add_interface(spice_server
, sin
);
682 static int qemu_spice_set_ticket(bool fail_if_conn
, bool disconnect_if_conn
)
684 time_t lifetime
, now
= time(NULL
);
687 if (now
< auth_expires
) {
688 passwd
= auth_passwd
;
689 lifetime
= (auth_expires
- now
);
690 if (lifetime
> INT_MAX
) {
697 return spice_server_set_ticket(spice_server
, passwd
, lifetime
,
698 fail_if_conn
, disconnect_if_conn
);
701 int qemu_spice_set_passwd(const char *passwd
,
702 bool fail_if_conn
, bool disconnect_if_conn
)
705 auth_passwd
= strdup(passwd
);
706 return qemu_spice_set_ticket(fail_if_conn
, disconnect_if_conn
);
709 int qemu_spice_set_pw_expire(time_t expires
)
711 auth_expires
= expires
;
712 return qemu_spice_set_ticket(false, false);
715 static void spice_register_config(void)
717 qemu_add_opts(&qemu_spice_opts
);
719 machine_init(spice_register_config
);
721 static void spice_initialize(void)
725 device_init(spice_initialize
);