1 #include "qemu/osdep.h"
3 #include "ui/qemu-spice.h"
4 #include "chardev/char.h"
5 #include "chardev/spice.h"
6 #include "qapi/error.h"
7 #include "qemu/error-report.h"
8 #include "qemu/module.h"
9 #include "qemu/option.h"
10 #include <spice/protocol.h>
12 typedef struct SpiceCharSource
{
17 static QLIST_HEAD(, SpiceChardev
) spice_chars
=
18 QLIST_HEAD_INITIALIZER(spice_chars
);
20 static int vmc_write(SpiceCharDeviceInstance
*sin
, const uint8_t *buf
, int len
)
22 SpiceChardev
*scd
= container_of(sin
, SpiceChardev
, sin
);
23 Chardev
*chr
= CHARDEV(scd
);
26 uint8_t* p
= (uint8_t*)buf
;
29 int can_write
= qemu_chr_be_can_write(chr
);
30 last_out
= MIN(len
, can_write
);
34 qemu_chr_be_write(chr
, p
, last_out
);
40 trace_spice_vmc_write(out
, len
+ out
);
44 static int vmc_read(SpiceCharDeviceInstance
*sin
, uint8_t *buf
, int len
)
46 SpiceChardev
*scd
= container_of(sin
, SpiceChardev
, sin
);
47 int bytes
= MIN(len
, scd
->datalen
);
50 memcpy(buf
, scd
->datapos
, bytes
);
51 scd
->datapos
+= bytes
;
52 scd
->datalen
-= bytes
;
53 assert(scd
->datalen
>= 0);
55 if (scd
->datalen
== 0) {
59 trace_spice_vmc_read(bytes
, len
);
63 static void vmc_event(SpiceCharDeviceInstance
*sin
, uint8_t event
)
65 SpiceChardev
*scd
= container_of(sin
, SpiceChardev
, sin
);
66 Chardev
*chr
= CHARDEV(scd
);
70 case SPICE_PORT_EVENT_BREAK
:
71 chr_event
= CHR_EVENT_BREAK
;
77 trace_spice_vmc_event(chr_event
);
78 qemu_chr_be_event(chr
, chr_event
);
81 static void vmc_state(SpiceCharDeviceInstance
*sin
, int connected
)
83 SpiceChardev
*scd
= container_of(sin
, SpiceChardev
, sin
);
84 Chardev
*chr
= CHARDEV(scd
);
86 if ((chr
->be_open
&& connected
) ||
87 (!chr
->be_open
&& !connected
)) {
91 qemu_chr_be_event(chr
,
92 connected
? CHR_EVENT_OPENED
: CHR_EVENT_CLOSED
);
95 static SpiceCharDeviceInterface vmc_interface
= {
96 .base
.type
= SPICE_INTERFACE_CHAR_DEVICE
,
97 .base
.description
= "spice virtual channel char device",
98 .base
.major_version
= SPICE_INTERFACE_CHAR_DEVICE_MAJOR
,
99 .base
.minor_version
= SPICE_INTERFACE_CHAR_DEVICE_MINOR
,
104 #if SPICE_SERVER_VERSION >= 0x000c06
105 .flags
= SPICE_CHAR_DEVICE_NOTIFY_WRITABLE
,
110 static void vmc_register_interface(SpiceChardev
*scd
)
115 scd
->sin
.base
.sif
= &vmc_interface
.base
;
116 qemu_spice_add_interface(&scd
->sin
.base
);
118 trace_spice_vmc_register_interface(scd
);
121 static void vmc_unregister_interface(SpiceChardev
*scd
)
126 spice_server_remove_interface(&scd
->sin
.base
);
128 trace_spice_vmc_unregister_interface(scd
);
131 static gboolean
spice_char_source_prepare(GSource
*source
, gint
*timeout
)
133 SpiceCharSource
*src
= (SpiceCharSource
*)source
;
134 Chardev
*chr
= CHARDEV(src
->scd
);
142 return !src
->scd
->blocked
;
145 static gboolean
spice_char_source_check(GSource
*source
)
147 SpiceCharSource
*src
= (SpiceCharSource
*)source
;
148 Chardev
*chr
= CHARDEV(src
->scd
);
154 return !src
->scd
->blocked
;
157 static gboolean
spice_char_source_dispatch(GSource
*source
,
158 GSourceFunc callback
, gpointer user_data
)
160 SpiceCharSource
*src
= (SpiceCharSource
*)source
;
161 Chardev
*chr
= CHARDEV(src
->scd
);
162 GIOFunc func
= (GIOFunc
)callback
;
163 GIOCondition cond
= chr
->be_open
? G_IO_OUT
: G_IO_HUP
;
165 return func(NULL
, cond
, user_data
);
168 static GSourceFuncs SpiceCharSourceFuncs
= {
169 .prepare
= spice_char_source_prepare
,
170 .check
= spice_char_source_check
,
171 .dispatch
= spice_char_source_dispatch
,
174 static GSource
*spice_chr_add_watch(Chardev
*chr
, GIOCondition cond
)
176 SpiceChardev
*scd
= SPICE_CHARDEV(chr
);
177 SpiceCharSource
*src
;
179 assert(cond
& G_IO_OUT
);
181 src
= (SpiceCharSource
*)g_source_new(&SpiceCharSourceFuncs
,
182 sizeof(SpiceCharSource
));
185 return (GSource
*)src
;
188 static int spice_chr_write(Chardev
*chr
, const uint8_t *buf
, int len
)
190 SpiceChardev
*s
= SPICE_CHARDEV(chr
);
193 assert(s
->datalen
== 0);
196 trace_spice_chr_discard_write(len
);
202 spice_server_char_device_wakeup(&s
->sin
);
203 read_bytes
= len
- s
->datalen
;
204 if (read_bytes
!= len
) {
205 /* We'll get passed in the unconsumed data with the next call */
213 static void char_spice_finalize(Object
*obj
)
215 SpiceChardev
*s
= SPICE_CHARDEV(obj
);
217 vmc_unregister_interface(s
);
219 QLIST_SAFE_REMOVE(s
, next
);
221 g_free((char *)s
->sin
.subtype
);
222 g_free((char *)s
->sin
.portname
);
225 static void spice_vmc_set_fe_open(struct Chardev
*chr
, int fe_open
)
227 SpiceChardev
*s
= SPICE_CHARDEV(chr
);
229 vmc_register_interface(s
);
231 vmc_unregister_interface(s
);
235 static void spice_port_set_fe_open(struct Chardev
*chr
, int fe_open
)
237 SpiceChardev
*s
= SPICE_CHARDEV(chr
);
240 spice_server_port_event(&s
->sin
, SPICE_PORT_EVENT_OPENED
);
242 spice_server_port_event(&s
->sin
, SPICE_PORT_EVENT_CLOSED
);
246 static void spice_chr_accept_input(struct Chardev
*chr
)
248 SpiceChardev
*s
= SPICE_CHARDEV(chr
);
250 spice_server_char_device_wakeup(&s
->sin
);
253 static void chr_open(Chardev
*chr
, const char *subtype
)
255 SpiceChardev
*s
= SPICE_CHARDEV(chr
);
258 s
->sin
.subtype
= g_strdup(subtype
);
260 QLIST_INSERT_HEAD(&spice_chars
, s
, next
);
263 static void qemu_chr_open_spice_vmc(Chardev
*chr
,
264 ChardevBackend
*backend
,
268 ChardevSpiceChannel
*spicevmc
= backend
->u
.spicevmc
.data
;
269 const char *type
= spicevmc
->type
;
270 const char **psubtype
= spice_server_char_device_recognized_subtypes();
272 for (; *psubtype
!= NULL
; ++psubtype
) {
273 if (strcmp(type
, *psubtype
) == 0) {
277 if (*psubtype
== NULL
) {
278 char *subtypes
= g_strjoinv(", ",
279 (gchar
**)spice_server_char_device_recognized_subtypes());
281 error_setg(errp
, "unsupported type name: %s", type
);
282 error_append_hint(errp
, "allowed spice char type names: %s\n",
290 #if SPICE_SERVER_VERSION < 0x000e02
291 /* Spice < 0.14.2 doesn't explicitly open smartcard chardev */
292 if (strcmp(type
, "smartcard") == 0) {
299 void qemu_chr_open_spice_port(Chardev
*chr
,
300 ChardevBackend
*backend
,
304 ChardevSpicePort
*spiceport
= backend
->u
.spiceport
.data
;
305 const char *name
= spiceport
->fqdn
;
309 error_setg(errp
, "missing name parameter");
313 chr_open(chr
, "port");
316 s
= SPICE_CHARDEV(chr
);
317 s
->sin
.portname
= g_strdup(name
);
320 /* spice server already created */
321 vmc_register_interface(s
);
325 void qemu_spice_register_ports(void)
329 QLIST_FOREACH(s
, &spice_chars
, next
) {
330 if (s
->sin
.portname
== NULL
) {
333 vmc_register_interface(s
);
337 static void qemu_chr_parse_spice_vmc(QemuOpts
*opts
, ChardevBackend
*backend
,
340 const char *name
= qemu_opt_get(opts
, "name");
341 ChardevSpiceChannel
*spicevmc
;
344 error_setg(errp
, "chardev: spice channel: no name given");
347 backend
->type
= CHARDEV_BACKEND_KIND_SPICEVMC
;
348 spicevmc
= backend
->u
.spicevmc
.data
= g_new0(ChardevSpiceChannel
, 1);
349 qemu_chr_parse_common(opts
, qapi_ChardevSpiceChannel_base(spicevmc
));
350 spicevmc
->type
= g_strdup(name
);
353 static void qemu_chr_parse_spice_port(QemuOpts
*opts
, ChardevBackend
*backend
,
356 const char *name
= qemu_opt_get(opts
, "name");
357 ChardevSpicePort
*spiceport
;
360 error_setg(errp
, "chardev: spice port: no name given");
363 backend
->type
= CHARDEV_BACKEND_KIND_SPICEPORT
;
364 spiceport
= backend
->u
.spiceport
.data
= g_new0(ChardevSpicePort
, 1);
365 qemu_chr_parse_common(opts
, qapi_ChardevSpicePort_base(spiceport
));
366 spiceport
->fqdn
= g_strdup(name
);
369 static void char_spice_class_init(ObjectClass
*oc
, void *data
)
371 ChardevClass
*cc
= CHARDEV_CLASS(oc
);
373 cc
->chr_write
= spice_chr_write
;
374 cc
->chr_add_watch
= spice_chr_add_watch
;
375 cc
->chr_accept_input
= spice_chr_accept_input
;
378 static const TypeInfo char_spice_type_info
= {
379 .name
= TYPE_CHARDEV_SPICE
,
380 .parent
= TYPE_CHARDEV
,
381 .instance_size
= sizeof(SpiceChardev
),
382 .instance_finalize
= char_spice_finalize
,
383 .class_init
= char_spice_class_init
,
387 static void char_spicevmc_class_init(ObjectClass
*oc
, void *data
)
389 ChardevClass
*cc
= CHARDEV_CLASS(oc
);
391 cc
->parse
= qemu_chr_parse_spice_vmc
;
392 cc
->open
= qemu_chr_open_spice_vmc
;
393 cc
->chr_set_fe_open
= spice_vmc_set_fe_open
;
396 static const TypeInfo char_spicevmc_type_info
= {
397 .name
= TYPE_CHARDEV_SPICEVMC
,
398 .parent
= TYPE_CHARDEV_SPICE
,
399 .class_init
= char_spicevmc_class_init
,
402 static void char_spiceport_class_init(ObjectClass
*oc
, void *data
)
404 ChardevClass
*cc
= CHARDEV_CLASS(oc
);
406 cc
->parse
= qemu_chr_parse_spice_port
;
407 cc
->open
= qemu_chr_open_spice_port
;
408 cc
->chr_set_fe_open
= spice_port_set_fe_open
;
411 static const TypeInfo char_spiceport_type_info
= {
412 .name
= TYPE_CHARDEV_SPICEPORT
,
413 .parent
= TYPE_CHARDEV_SPICE
,
414 .class_init
= char_spiceport_class_init
,
417 static void register_types(void)
419 type_register_static(&char_spice_type_info
);
420 type_register_static(&char_spicevmc_type_info
);
421 type_register_static(&char_spiceport_type_info
);
424 type_init(register_types
);