kvm_stat: Add aarch64 support
[qemu/ar7.git] / spice-qemu-char.c
blob7e0d300777be71883f5264ec73cf16afa7550ebf
1 #include "config-host.h"
2 #include "trace.h"
3 #include "ui/qemu-spice.h"
4 #include "sysemu/char.h"
5 #include <spice.h>
6 #include <spice/protocol.h>
8 #include "qemu/osdep.h"
10 typedef struct SpiceCharDriver {
11 CharDriverState* chr;
12 SpiceCharDeviceInstance sin;
13 bool active;
14 bool blocked;
15 const uint8_t *datapos;
16 int datalen;
17 QLIST_ENTRY(SpiceCharDriver) next;
18 } SpiceCharDriver;
20 typedef struct SpiceCharSource {
21 GSource source;
22 SpiceCharDriver *scd;
23 } SpiceCharSource;
25 static QLIST_HEAD(, SpiceCharDriver) spice_chars =
26 QLIST_HEAD_INITIALIZER(spice_chars);
28 static int vmc_write(SpiceCharDeviceInstance *sin, const uint8_t *buf, int len)
30 SpiceCharDriver *scd = container_of(sin, SpiceCharDriver, sin);
31 ssize_t out = 0;
32 ssize_t last_out;
33 uint8_t* p = (uint8_t*)buf;
35 while (len > 0) {
36 int can_write = qemu_chr_be_can_write(scd->chr);
37 last_out = MIN(len, can_write);
38 if (last_out <= 0) {
39 break;
41 qemu_chr_be_write(scd->chr, p, last_out);
42 out += last_out;
43 len -= last_out;
44 p += last_out;
47 trace_spice_vmc_write(out, len + out);
48 return out;
51 static int vmc_read(SpiceCharDeviceInstance *sin, uint8_t *buf, int len)
53 SpiceCharDriver *scd = container_of(sin, SpiceCharDriver, sin);
54 int bytes = MIN(len, scd->datalen);
56 if (bytes > 0) {
57 memcpy(buf, scd->datapos, bytes);
58 scd->datapos += bytes;
59 scd->datalen -= bytes;
60 assert(scd->datalen >= 0);
62 if (scd->datalen == 0) {
63 scd->datapos = 0;
64 scd->blocked = false;
66 trace_spice_vmc_read(bytes, len);
67 return bytes;
70 #if SPICE_SERVER_VERSION >= 0x000c02
71 static void vmc_event(SpiceCharDeviceInstance *sin, uint8_t event)
73 SpiceCharDriver *scd = container_of(sin, SpiceCharDriver, sin);
74 int chr_event;
76 switch (event) {
77 case SPICE_PORT_EVENT_BREAK:
78 chr_event = CHR_EVENT_BREAK;
79 break;
80 default:
81 return;
84 trace_spice_vmc_event(chr_event);
85 qemu_chr_be_event(scd->chr, chr_event);
87 #endif
89 static void vmc_state(SpiceCharDeviceInstance *sin, int connected)
91 SpiceCharDriver *scd = container_of(sin, SpiceCharDriver, sin);
93 if ((scd->chr->be_open && connected) ||
94 (!scd->chr->be_open && !connected)) {
95 return;
98 qemu_chr_be_event(scd->chr,
99 connected ? CHR_EVENT_OPENED : CHR_EVENT_CLOSED);
102 static SpiceCharDeviceInterface vmc_interface = {
103 .base.type = SPICE_INTERFACE_CHAR_DEVICE,
104 .base.description = "spice virtual channel char device",
105 .base.major_version = SPICE_INTERFACE_CHAR_DEVICE_MAJOR,
106 .base.minor_version = SPICE_INTERFACE_CHAR_DEVICE_MINOR,
107 .state = vmc_state,
108 .write = vmc_write,
109 .read = vmc_read,
110 #if SPICE_SERVER_VERSION >= 0x000c02
111 .event = vmc_event,
112 #endif
116 static void vmc_register_interface(SpiceCharDriver *scd)
118 if (scd->active) {
119 return;
121 scd->sin.base.sif = &vmc_interface.base;
122 qemu_spice_add_interface(&scd->sin.base);
123 scd->active = true;
124 trace_spice_vmc_register_interface(scd);
127 static void vmc_unregister_interface(SpiceCharDriver *scd)
129 if (!scd->active) {
130 return;
132 spice_server_remove_interface(&scd->sin.base);
133 scd->active = false;
134 trace_spice_vmc_unregister_interface(scd);
137 static gboolean spice_char_source_prepare(GSource *source, gint *timeout)
139 SpiceCharSource *src = (SpiceCharSource *)source;
141 *timeout = -1;
143 return !src->scd->blocked;
146 static gboolean spice_char_source_check(GSource *source)
148 SpiceCharSource *src = (SpiceCharSource *)source;
150 return !src->scd->blocked;
153 static gboolean spice_char_source_dispatch(GSource *source,
154 GSourceFunc callback, gpointer user_data)
156 GIOFunc func = (GIOFunc)callback;
158 return func(NULL, G_IO_OUT, user_data);
161 GSourceFuncs SpiceCharSourceFuncs = {
162 .prepare = spice_char_source_prepare,
163 .check = spice_char_source_check,
164 .dispatch = spice_char_source_dispatch,
167 static GSource *spice_chr_add_watch(CharDriverState *chr, GIOCondition cond)
169 SpiceCharDriver *scd = chr->opaque;
170 SpiceCharSource *src;
172 assert(cond == G_IO_OUT);
174 src = (SpiceCharSource *)g_source_new(&SpiceCharSourceFuncs,
175 sizeof(SpiceCharSource));
176 src->scd = scd;
178 return (GSource *)src;
181 static int spice_chr_write(CharDriverState *chr, const uint8_t *buf, int len)
183 SpiceCharDriver *s = chr->opaque;
184 int read_bytes;
186 assert(s->datalen == 0);
187 s->datapos = buf;
188 s->datalen = len;
189 spice_server_char_device_wakeup(&s->sin);
190 read_bytes = len - s->datalen;
191 if (read_bytes != len) {
192 /* We'll get passed in the unconsumed data with the next call */
193 s->datalen = 0;
194 s->datapos = NULL;
195 s->blocked = true;
197 return read_bytes;
200 static void spice_chr_close(struct CharDriverState *chr)
202 SpiceCharDriver *s = chr->opaque;
204 vmc_unregister_interface(s);
205 QLIST_REMOVE(s, next);
207 g_free((char *)s->sin.subtype);
208 #if SPICE_SERVER_VERSION >= 0x000c02
209 g_free((char *)s->sin.portname);
210 #endif
211 g_free(s);
214 static void spice_vmc_set_fe_open(struct CharDriverState *chr, int fe_open)
216 SpiceCharDriver *s = chr->opaque;
217 if (fe_open) {
218 vmc_register_interface(s);
219 } else {
220 vmc_unregister_interface(s);
224 static void spice_port_set_fe_open(struct CharDriverState *chr, int fe_open)
226 #if SPICE_SERVER_VERSION >= 0x000c02
227 SpiceCharDriver *s = chr->opaque;
229 if (fe_open) {
230 spice_server_port_event(&s->sin, SPICE_PORT_EVENT_OPENED);
231 } else {
232 spice_server_port_event(&s->sin, SPICE_PORT_EVENT_CLOSED);
234 #endif
237 static void spice_chr_fe_event(struct CharDriverState *chr, int event)
239 #if SPICE_SERVER_VERSION >= 0x000c02
240 SpiceCharDriver *s = chr->opaque;
242 spice_server_port_event(&s->sin, event);
243 #endif
246 static void print_allowed_subtypes(void)
248 const char** psubtype;
249 int i;
251 fprintf(stderr, "allowed names: ");
252 for(i=0, psubtype = spice_server_char_device_recognized_subtypes();
253 *psubtype != NULL; ++psubtype, ++i) {
254 if (i == 0) {
255 fprintf(stderr, "%s", *psubtype);
256 } else {
257 fprintf(stderr, ", %s", *psubtype);
260 fprintf(stderr, "\n");
263 static CharDriverState *chr_open(const char *subtype,
264 void (*set_fe_open)(struct CharDriverState *, int))
267 CharDriverState *chr;
268 SpiceCharDriver *s;
270 chr = qemu_chr_alloc();
271 s = g_malloc0(sizeof(SpiceCharDriver));
272 s->chr = chr;
273 s->active = false;
274 s->sin.subtype = g_strdup(subtype);
275 chr->opaque = s;
276 chr->chr_write = spice_chr_write;
277 chr->chr_add_watch = spice_chr_add_watch;
278 chr->chr_close = spice_chr_close;
279 chr->chr_set_fe_open = set_fe_open;
280 chr->explicit_be_open = true;
281 chr->chr_fe_event = spice_chr_fe_event;
283 QLIST_INSERT_HEAD(&spice_chars, s, next);
285 return chr;
288 CharDriverState *qemu_chr_open_spice_vmc(const char *type)
290 const char **psubtype = spice_server_char_device_recognized_subtypes();
292 if (type == NULL) {
293 fprintf(stderr, "spice-qemu-char: missing name parameter\n");
294 print_allowed_subtypes();
295 return NULL;
297 for (; *psubtype != NULL; ++psubtype) {
298 if (strcmp(type, *psubtype) == 0) {
299 break;
302 if (*psubtype == NULL) {
303 fprintf(stderr, "spice-qemu-char: unsupported type: %s\n", type);
304 print_allowed_subtypes();
305 return NULL;
308 return chr_open(type, spice_vmc_set_fe_open);
311 #if SPICE_SERVER_VERSION >= 0x000c02
312 CharDriverState *qemu_chr_open_spice_port(const char *name)
314 CharDriverState *chr;
315 SpiceCharDriver *s;
317 if (name == NULL) {
318 fprintf(stderr, "spice-qemu-char: missing name parameter\n");
319 return NULL;
322 chr = chr_open("port", spice_port_set_fe_open);
323 s = chr->opaque;
324 s->sin.portname = g_strdup(name);
326 return chr;
329 void qemu_spice_register_ports(void)
331 SpiceCharDriver *s;
333 QLIST_FOREACH(s, &spice_chars, next) {
334 if (s->sin.portname == NULL) {
335 continue;
337 vmc_register_interface(s);
340 #endif
342 static void qemu_chr_parse_spice_vmc(QemuOpts *opts, ChardevBackend *backend,
343 Error **errp)
345 const char *name = qemu_opt_get(opts, "name");
347 if (name == NULL) {
348 error_setg(errp, "chardev: spice channel: no name given");
349 return;
351 backend->spicevmc = g_new0(ChardevSpiceChannel, 1);
352 backend->spicevmc->type = g_strdup(name);
355 static void qemu_chr_parse_spice_port(QemuOpts *opts, ChardevBackend *backend,
356 Error **errp)
358 const char *name = qemu_opt_get(opts, "name");
360 if (name == NULL) {
361 error_setg(errp, "chardev: spice port: no name given");
362 return;
364 backend->spiceport = g_new0(ChardevSpicePort, 1);
365 backend->spiceport->fqdn = g_strdup(name);
368 static void register_types(void)
370 register_char_driver("spicevmc", CHARDEV_BACKEND_KIND_SPICEVMC,
371 qemu_chr_parse_spice_vmc);
372 register_char_driver("spiceport", CHARDEV_BACKEND_KIND_SPICEPORT,
373 qemu_chr_parse_spice_port);
376 type_init(register_types);