1 #include "config-host.h"
3 #include "ui/qemu-spice.h"
4 #include "sysemu/char.h"
6 #include <spice-experimental.h>
7 #include <spice/protocol.h>
9 #include "qemu/osdep.h"
11 typedef struct SpiceCharDriver
{
13 SpiceCharDeviceInstance sin
;
17 const uint8_t *datapos
;
19 QLIST_ENTRY(SpiceCharDriver
) next
;
22 typedef struct SpiceCharSource
{
27 static QLIST_HEAD(, SpiceCharDriver
) spice_chars
=
28 QLIST_HEAD_INITIALIZER(spice_chars
);
30 static int vmc_write(SpiceCharDeviceInstance
*sin
, const uint8_t *buf
, int len
)
32 SpiceCharDriver
*scd
= container_of(sin
, SpiceCharDriver
, sin
);
35 uint8_t* p
= (uint8_t*)buf
;
38 int can_write
= qemu_chr_be_can_write(scd
->chr
);
39 last_out
= MIN(len
, can_write
);
43 qemu_chr_be_write(scd
->chr
, p
, last_out
);
49 trace_spice_vmc_write(out
, len
+ out
);
53 static int vmc_read(SpiceCharDeviceInstance
*sin
, uint8_t *buf
, int len
)
55 SpiceCharDriver
*scd
= container_of(sin
, SpiceCharDriver
, sin
);
56 int bytes
= MIN(len
, scd
->datalen
);
59 memcpy(buf
, scd
->datapos
, bytes
);
60 scd
->datapos
+= bytes
;
61 scd
->datalen
-= bytes
;
62 assert(scd
->datalen
>= 0);
64 if (scd
->datalen
== 0) {
68 trace_spice_vmc_read(bytes
, len
);
72 #if SPICE_SERVER_VERSION >= 0x000c02
73 static void vmc_event(SpiceCharDeviceInstance
*sin
, uint8_t event
)
75 SpiceCharDriver
*scd
= container_of(sin
, SpiceCharDriver
, sin
);
79 case SPICE_PORT_EVENT_BREAK
:
80 chr_event
= CHR_EVENT_BREAK
;
86 trace_spice_vmc_event(chr_event
);
87 qemu_chr_be_event(scd
->chr
, chr_event
);
91 static void vmc_state(SpiceCharDeviceInstance
*sin
, int connected
)
93 SpiceCharDriver
*scd
= container_of(sin
, SpiceCharDriver
, sin
);
95 if ((scd
->chr
->be_open
&& connected
) ||
96 (!scd
->chr
->be_open
&& !connected
)) {
100 qemu_chr_be_event(scd
->chr
,
101 connected
? CHR_EVENT_OPENED
: CHR_EVENT_CLOSED
);
104 static SpiceCharDeviceInterface vmc_interface
= {
105 .base
.type
= SPICE_INTERFACE_CHAR_DEVICE
,
106 .base
.description
= "spice virtual channel char device",
107 .base
.major_version
= SPICE_INTERFACE_CHAR_DEVICE_MAJOR
,
108 .base
.minor_version
= SPICE_INTERFACE_CHAR_DEVICE_MINOR
,
112 #if SPICE_SERVER_VERSION >= 0x000c02
118 static void vmc_register_interface(SpiceCharDriver
*scd
)
123 scd
->sin
.base
.sif
= &vmc_interface
.base
;
124 qemu_spice_add_interface(&scd
->sin
.base
);
126 trace_spice_vmc_register_interface(scd
);
129 static void vmc_unregister_interface(SpiceCharDriver
*scd
)
134 spice_server_remove_interface(&scd
->sin
.base
);
136 trace_spice_vmc_unregister_interface(scd
);
139 static gboolean
spice_char_source_prepare(GSource
*source
, gint
*timeout
)
141 SpiceCharSource
*src
= (SpiceCharSource
*)source
;
145 return !src
->scd
->blocked
;
148 static gboolean
spice_char_source_check(GSource
*source
)
150 SpiceCharSource
*src
= (SpiceCharSource
*)source
;
152 return !src
->scd
->blocked
;
155 static gboolean
spice_char_source_dispatch(GSource
*source
,
156 GSourceFunc callback
, gpointer user_data
)
158 GIOFunc func
= (GIOFunc
)callback
;
160 return func(NULL
, G_IO_OUT
, user_data
);
163 GSourceFuncs SpiceCharSourceFuncs
= {
164 .prepare
= spice_char_source_prepare
,
165 .check
= spice_char_source_check
,
166 .dispatch
= spice_char_source_dispatch
,
169 static GSource
*spice_chr_add_watch(CharDriverState
*chr
, GIOCondition cond
)
171 SpiceCharDriver
*scd
= chr
->opaque
;
172 SpiceCharSource
*src
;
174 assert(cond
== G_IO_OUT
);
176 src
= (SpiceCharSource
*)g_source_new(&SpiceCharSourceFuncs
,
177 sizeof(SpiceCharSource
));
180 return (GSource
*)src
;
183 static int spice_chr_write(CharDriverState
*chr
, const uint8_t *buf
, int len
)
185 SpiceCharDriver
*s
= chr
->opaque
;
188 assert(s
->datalen
== 0);
191 spice_server_char_device_wakeup(&s
->sin
);
192 read_bytes
= len
- s
->datalen
;
193 if (read_bytes
!= len
) {
194 /* We'll get passed in the unconsumed data with the next call */
202 static void spice_chr_close(struct CharDriverState
*chr
)
204 SpiceCharDriver
*s
= chr
->opaque
;
206 vmc_unregister_interface(s
);
207 QLIST_REMOVE(s
, next
);
209 g_free((char *)s
->sin
.subtype
);
210 #if SPICE_SERVER_VERSION >= 0x000c02
211 g_free((char *)s
->sin
.portname
);
216 static void spice_chr_set_fe_open(struct CharDriverState
*chr
, int fe_open
)
218 SpiceCharDriver
*s
= chr
->opaque
;
220 vmc_register_interface(s
);
222 vmc_unregister_interface(s
);
226 static void print_allowed_subtypes(void)
228 const char** psubtype
;
231 fprintf(stderr
, "allowed names: ");
232 for(i
=0, psubtype
= spice_server_char_device_recognized_subtypes();
233 *psubtype
!= NULL
; ++psubtype
, ++i
) {
235 fprintf(stderr
, "%s", *psubtype
);
237 fprintf(stderr
, ", %s", *psubtype
);
240 fprintf(stderr
, "\n");
243 static CharDriverState
*chr_open(const char *subtype
)
245 CharDriverState
*chr
;
248 chr
= g_malloc0(sizeof(CharDriverState
));
249 s
= g_malloc0(sizeof(SpiceCharDriver
));
252 s
->sin
.subtype
= g_strdup(subtype
);
254 chr
->chr_write
= spice_chr_write
;
255 chr
->chr_add_watch
= spice_chr_add_watch
;
256 chr
->chr_close
= spice_chr_close
;
257 chr
->chr_set_fe_open
= spice_chr_set_fe_open
;
259 QLIST_INSERT_HEAD(&spice_chars
, s
, next
);
264 CharDriverState
*qemu_chr_open_spice_vmc(const char *type
)
266 const char **psubtype
= spice_server_char_device_recognized_subtypes();
269 fprintf(stderr
, "spice-qemu-char: missing name parameter\n");
270 print_allowed_subtypes();
273 for (; *psubtype
!= NULL
; ++psubtype
) {
274 if (strcmp(type
, *psubtype
) == 0) {
278 if (*psubtype
== NULL
) {
279 fprintf(stderr
, "spice-qemu-char: unsupported type: %s\n", type
);
280 print_allowed_subtypes();
284 return chr_open(type
);
287 #if SPICE_SERVER_VERSION >= 0x000c02
288 CharDriverState
*qemu_chr_open_spice_port(const char *name
)
290 CharDriverState
*chr
;
294 fprintf(stderr
, "spice-qemu-char: missing name parameter\n");
298 chr
= chr_open("port");
300 s
->sin
.portname
= g_strdup(name
);
305 void qemu_spice_register_ports(void)
309 QLIST_FOREACH(s
, &spice_chars
, next
) {
310 if (s
->sin
.portname
== NULL
) {
313 vmc_register_interface(s
);
318 static void qemu_chr_parse_spice_vmc(QemuOpts
*opts
, ChardevBackend
*backend
,
321 const char *name
= qemu_opt_get(opts
, "name");
324 error_setg(errp
, "chardev: spice channel: no name given");
327 backend
->spicevmc
= g_new0(ChardevSpiceChannel
, 1);
328 backend
->spicevmc
->type
= g_strdup(name
);
331 static void qemu_chr_parse_spice_port(QemuOpts
*opts
, ChardevBackend
*backend
,
334 const char *name
= qemu_opt_get(opts
, "name");
337 error_setg(errp
, "chardev: spice port: no name given");
340 backend
->spiceport
= g_new0(ChardevSpicePort
, 1);
341 backend
->spiceport
->fqdn
= g_strdup(name
);
344 static void register_types(void)
346 register_char_driver_qapi("spicevmc", CHARDEV_BACKEND_KIND_SPICEVMC
,
347 qemu_chr_parse_spice_vmc
);
348 register_char_driver_qapi("spiceport", CHARDEV_BACKEND_KIND_SPICEPORT
,
349 qemu_chr_parse_spice_port
);
352 type_init(register_types
);