]>
Commit | Line | Data |
---|---|---|
d38ea87a | 1 | #include "qemu/osdep.h" |
6b10e573 | 2 | #include "trace.h" |
cbcc6336 | 3 | #include "ui/qemu-spice.h" |
8228e353 | 4 | #include "chardev/char.h" |
24fa7da3 | 5 | #include "chardev/spice.h" |
e688df6b | 6 | #include "qapi/error.h" |
096b4894 | 7 | #include "qemu/error-report.h" |
0b8fa32f | 8 | #include "qemu/module.h" |
922a01a0 | 9 | #include "qemu/option.h" |
5a49d3e9 | 10 | #include <spice/protocol.h> |
cbcc6336 | 11 | |
ae893e5e HG |
12 | typedef struct SpiceCharSource { |
13 | GSource source; | |
0ec7b3e7 | 14 | SpiceChardev *scd; |
ae893e5e HG |
15 | } SpiceCharSource; |
16 | ||
0ec7b3e7 | 17 | static QLIST_HEAD(, SpiceChardev) spice_chars = |
7a5448ce MAL |
18 | QLIST_HEAD_INITIALIZER(spice_chars); |
19 | ||
cbcc6336 AL |
20 | static int vmc_write(SpiceCharDeviceInstance *sin, const uint8_t *buf, int len) |
21 | { | |
0ec7b3e7 | 22 | SpiceChardev *scd = container_of(sin, SpiceChardev, sin); |
777357d7 | 23 | Chardev *chr = CHARDEV(scd); |
cbcc6336 AL |
24 | ssize_t out = 0; |
25 | ssize_t last_out; | |
26 | uint8_t* p = (uint8_t*)buf; | |
27 | ||
28 | while (len > 0) { | |
41ac54b2 | 29 | int can_write = qemu_chr_be_can_write(chr); |
75c439bc | 30 | last_out = MIN(len, can_write); |
07a54d70 | 31 | if (last_out <= 0) { |
cbcc6336 AL |
32 | break; |
33 | } | |
41ac54b2 | 34 | qemu_chr_be_write(chr, p, last_out); |
35106c2d HG |
35 | out += last_out; |
36 | len -= last_out; | |
37 | p += last_out; | |
cbcc6336 AL |
38 | } |
39 | ||
cbcc6336 AL |
40 | trace_spice_vmc_write(out, len + out); |
41 | return out; | |
42 | } | |
43 | ||
44 | static int vmc_read(SpiceCharDeviceInstance *sin, uint8_t *buf, int len) | |
45 | { | |
0ec7b3e7 | 46 | SpiceChardev *scd = container_of(sin, SpiceChardev, sin); |
cbcc6336 AL |
47 | int bytes = MIN(len, scd->datalen); |
48 | ||
cbcc6336 AL |
49 | if (bytes > 0) { |
50 | memcpy(buf, scd->datapos, bytes); | |
51 | scd->datapos += bytes; | |
52 | scd->datalen -= bytes; | |
53 | assert(scd->datalen >= 0); | |
ae893e5e HG |
54 | } |
55 | if (scd->datalen == 0) { | |
56 | scd->datapos = 0; | |
57 | scd->blocked = false; | |
cbcc6336 AL |
58 | } |
59 | trace_spice_vmc_read(bytes, len); | |
60 | return bytes; | |
61 | } | |
62 | ||
5a49d3e9 MAL |
63 | static void vmc_event(SpiceCharDeviceInstance *sin, uint8_t event) |
64 | { | |
0ec7b3e7 | 65 | SpiceChardev *scd = container_of(sin, SpiceChardev, sin); |
777357d7 | 66 | Chardev *chr = CHARDEV(scd); |
5a49d3e9 MAL |
67 | int chr_event; |
68 | ||
69 | switch (event) { | |
70 | case SPICE_PORT_EVENT_BREAK: | |
71 | chr_event = CHR_EVENT_BREAK; | |
72 | break; | |
73 | default: | |
5a49d3e9 MAL |
74 | return; |
75 | } | |
76 | ||
5a49d3e9 | 77 | trace_spice_vmc_event(chr_event); |
41ac54b2 | 78 | qemu_chr_be_event(chr, chr_event); |
5a49d3e9 | 79 | } |
5a49d3e9 | 80 | |
f76e4c7f HG |
81 | static void vmc_state(SpiceCharDeviceInstance *sin, int connected) |
82 | { | |
0ec7b3e7 | 83 | SpiceChardev *scd = container_of(sin, SpiceChardev, sin); |
777357d7 | 84 | Chardev *chr = CHARDEV(scd); |
f76e4c7f | 85 | |
41ac54b2 MAL |
86 | if ((chr->be_open && connected) || |
87 | (!chr->be_open && !connected)) { | |
f76e4c7f HG |
88 | return; |
89 | } | |
90 | ||
41ac54b2 | 91 | qemu_chr_be_event(chr, |
f76e4c7f HG |
92 | connected ? CHR_EVENT_OPENED : CHR_EVENT_CLOSED); |
93 | } | |
94 | ||
cbcc6336 AL |
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, | |
f76e4c7f | 100 | .state = vmc_state, |
cbcc6336 AL |
101 | .write = vmc_write, |
102 | .read = vmc_read, | |
5a49d3e9 | 103 | .event = vmc_event, |
e95e203c MAL |
104 | #if SPICE_SERVER_VERSION >= 0x000c06 |
105 | .flags = SPICE_CHAR_DEVICE_NOTIFY_WRITABLE, | |
106 | #endif | |
cbcc6336 AL |
107 | }; |
108 | ||
109 | ||
0ec7b3e7 | 110 | static void vmc_register_interface(SpiceChardev *scd) |
cbcc6336 AL |
111 | { |
112 | if (scd->active) { | |
113 | return; | |
114 | } | |
cbcc6336 AL |
115 | scd->sin.base.sif = &vmc_interface.base; |
116 | qemu_spice_add_interface(&scd->sin.base); | |
117 | scd->active = true; | |
118 | trace_spice_vmc_register_interface(scd); | |
119 | } | |
120 | ||
0ec7b3e7 | 121 | static void vmc_unregister_interface(SpiceChardev *scd) |
cbcc6336 AL |
122 | { |
123 | if (!scd->active) { | |
124 | return; | |
125 | } | |
cbcc6336 AL |
126 | spice_server_remove_interface(&scd->sin.base); |
127 | scd->active = false; | |
128 | trace_spice_vmc_unregister_interface(scd); | |
129 | } | |
130 | ||
ae893e5e HG |
131 | static gboolean spice_char_source_prepare(GSource *source, gint *timeout) |
132 | { | |
133 | SpiceCharSource *src = (SpiceCharSource *)source; | |
805189ab | 134 | Chardev *chr = CHARDEV(src->scd); |
ae893e5e HG |
135 | |
136 | *timeout = -1; | |
137 | ||
805189ab MAL |
138 | if (!chr->be_open) { |
139 | return true; | |
140 | } | |
141 | ||
ae893e5e HG |
142 | return !src->scd->blocked; |
143 | } | |
144 | ||
145 | static gboolean spice_char_source_check(GSource *source) | |
146 | { | |
147 | SpiceCharSource *src = (SpiceCharSource *)source; | |
805189ab MAL |
148 | Chardev *chr = CHARDEV(src->scd); |
149 | ||
150 | if (!chr->be_open) { | |
151 | return true; | |
152 | } | |
ae893e5e HG |
153 | |
154 | return !src->scd->blocked; | |
155 | } | |
156 | ||
157 | static gboolean spice_char_source_dispatch(GSource *source, | |
158 | GSourceFunc callback, gpointer user_data) | |
159 | { | |
805189ab MAL |
160 | SpiceCharSource *src = (SpiceCharSource *)source; |
161 | Chardev *chr = CHARDEV(src->scd); | |
ae893e5e | 162 | GIOFunc func = (GIOFunc)callback; |
805189ab | 163 | GIOCondition cond = chr->be_open ? G_IO_OUT : G_IO_HUP; |
ae893e5e | 164 | |
805189ab | 165 | return func(NULL, cond, user_data); |
ae893e5e HG |
166 | } |
167 | ||
51575c3f | 168 | static GSourceFuncs SpiceCharSourceFuncs = { |
ae893e5e HG |
169 | .prepare = spice_char_source_prepare, |
170 | .check = spice_char_source_check, | |
171 | .dispatch = spice_char_source_dispatch, | |
172 | }; | |
173 | ||
0ec7b3e7 | 174 | static GSource *spice_chr_add_watch(Chardev *chr, GIOCondition cond) |
ae893e5e | 175 | { |
777357d7 | 176 | SpiceChardev *scd = SPICE_CHARDEV(chr); |
ae893e5e HG |
177 | SpiceCharSource *src; |
178 | ||
f7a8beb5 | 179 | assert(cond & G_IO_OUT); |
ae893e5e HG |
180 | |
181 | src = (SpiceCharSource *)g_source_new(&SpiceCharSourceFuncs, | |
182 | sizeof(SpiceCharSource)); | |
183 | src->scd = scd; | |
184 | ||
185 | return (GSource *)src; | |
186 | } | |
cbcc6336 | 187 | |
0ec7b3e7 | 188 | static int spice_chr_write(Chardev *chr, const uint8_t *buf, int len) |
cbcc6336 | 189 | { |
777357d7 | 190 | SpiceChardev *s = SPICE_CHARDEV(chr); |
ae893e5e | 191 | int read_bytes; |
cbcc6336 | 192 | |
cbcc6336 | 193 | assert(s->datalen == 0); |
a2dc3c8e MAL |
194 | |
195 | if (!chr->be_open) { | |
196 | trace_spice_chr_discard_write(len); | |
197 | return len; | |
198 | } | |
199 | ||
b010cec8 | 200 | s->datapos = buf; |
cbcc6336 AL |
201 | s->datalen = len; |
202 | spice_server_char_device_wakeup(&s->sin); | |
ae893e5e HG |
203 | read_bytes = len - s->datalen; |
204 | if (read_bytes != len) { | |
205 | /* We'll get passed in the unconsumed data with the next call */ | |
206 | s->datalen = 0; | |
207 | s->datapos = NULL; | |
208 | s->blocked = true; | |
209 | } | |
210 | return read_bytes; | |
cbcc6336 AL |
211 | } |
212 | ||
18c508ac | 213 | static void char_spice_finalize(Object *obj) |
cbcc6336 | 214 | { |
18c508ac | 215 | SpiceChardev *s = SPICE_CHARDEV(obj); |
cbcc6336 | 216 | |
cbcc6336 | 217 | vmc_unregister_interface(s); |
f20e6f8c | 218 | |
195ed8cb | 219 | QLIST_SAFE_REMOVE(s, next); |
5e9b473a HG |
220 | |
221 | g_free((char *)s->sin.subtype); | |
5e9b473a | 222 | g_free((char *)s->sin.portname); |
cbcc6336 AL |
223 | } |
224 | ||
0ec7b3e7 | 225 | static void spice_vmc_set_fe_open(struct Chardev *chr, int fe_open) |
cd8f7df2 | 226 | { |
777357d7 | 227 | SpiceChardev *s = SPICE_CHARDEV(chr); |
574b711a HG |
228 | if (fe_open) { |
229 | vmc_register_interface(s); | |
230 | } else { | |
231 | vmc_unregister_interface(s); | |
232 | } | |
cd8f7df2 HG |
233 | } |
234 | ||
0ec7b3e7 | 235 | static void spice_port_set_fe_open(struct Chardev *chr, int fe_open) |
89091146 | 236 | { |
777357d7 | 237 | SpiceChardev *s = SPICE_CHARDEV(chr); |
89091146 MAL |
238 | |
239 | if (fe_open) { | |
240 | spice_server_port_event(&s->sin, SPICE_PORT_EVENT_OPENED); | |
241 | } else { | |
242 | spice_server_port_event(&s->sin, SPICE_PORT_EVENT_CLOSED); | |
243 | } | |
89091146 MAL |
244 | } |
245 | ||
0ec7b3e7 | 246 | static void spice_chr_accept_input(struct Chardev *chr) |
e95e203c | 247 | { |
777357d7 | 248 | SpiceChardev *s = SPICE_CHARDEV(chr); |
e95e203c MAL |
249 | |
250 | spice_server_char_device_wakeup(&s->sin); | |
251 | } | |
252 | ||
777357d7 | 253 | static void chr_open(Chardev *chr, const char *subtype) |
cbcc6336 | 254 | { |
777357d7 | 255 | SpiceChardev *s = SPICE_CHARDEV(chr); |
71b423f4 | 256 | |
71b423f4 | 257 | s->active = false; |
5e9b473a | 258 | s->sin.subtype = g_strdup(subtype); |
71b423f4 | 259 | |
7a5448ce | 260 | QLIST_INSERT_HEAD(&spice_chars, s, next); |
71b423f4 MAL |
261 | } |
262 | ||
777357d7 MAL |
263 | static void qemu_chr_open_spice_vmc(Chardev *chr, |
264 | ChardevBackend *backend, | |
265 | bool *be_opened, | |
266 | Error **errp) | |
71b423f4 | 267 | { |
32bafa8f EB |
268 | ChardevSpiceChannel *spicevmc = backend->u.spicevmc.data; |
269 | const char *type = spicevmc->type; | |
71b423f4 | 270 | const char **psubtype = spice_server_char_device_recognized_subtypes(); |
cbcc6336 | 271 | |
cd153e2a GH |
272 | for (; *psubtype != NULL; ++psubtype) { |
273 | if (strcmp(type, *psubtype) == 0) { | |
cbcc6336 AL |
274 | break; |
275 | } | |
276 | } | |
cd153e2a | 277 | if (*psubtype == NULL) { |
096b4894 MAL |
278 | char *subtypes = g_strjoinv(", ", |
279 | (gchar **)spice_server_char_device_recognized_subtypes()); | |
280 | ||
281 | error_setg(errp, "unsupported type name: %s", type); | |
282 | error_append_hint(errp, "allowed spice char type names: %s\n", | |
283 | subtypes); | |
284 | ||
285 | g_free(subtypes); | |
777357d7 | 286 | return; |
cbcc6336 AL |
287 | } |
288 | ||
82878dac | 289 | *be_opened = false; |
a2dc3c8e MAL |
290 | #if SPICE_SERVER_VERSION < 0x000e02 |
291 | /* Spice < 0.14.2 doesn't explicitly open smartcard chardev */ | |
292 | if (strcmp(type, "smartcard") == 0) { | |
293 | *be_opened = true; | |
294 | } | |
295 | #endif | |
777357d7 | 296 | chr_open(chr, type); |
cbcc6336 | 297 | } |
5a49d3e9 | 298 | |
24fa7da3 MAL |
299 | void qemu_chr_open_spice_port(Chardev *chr, |
300 | ChardevBackend *backend, | |
301 | bool *be_opened, | |
302 | Error **errp) | |
5a49d3e9 | 303 | { |
32bafa8f EB |
304 | ChardevSpicePort *spiceport = backend->u.spiceport.data; |
305 | const char *name = spiceport->fqdn; | |
0ec7b3e7 | 306 | SpiceChardev *s; |
5a49d3e9 MAL |
307 | |
308 | if (name == NULL) { | |
096b4894 | 309 | error_setg(errp, "missing name parameter"); |
777357d7 | 310 | return; |
5a49d3e9 MAL |
311 | } |
312 | ||
777357d7 MAL |
313 | chr_open(chr, "port"); |
314 | ||
82878dac | 315 | *be_opened = false; |
777357d7 | 316 | s = SPICE_CHARDEV(chr); |
5e9b473a | 317 | s->sin.portname = g_strdup(name); |
8afbff16 MAL |
318 | |
319 | if (using_spice) { | |
320 | /* spice server already created */ | |
321 | vmc_register_interface(s); | |
322 | } | |
5a49d3e9 | 323 | } |
afd0b409 MAL |
324 | |
325 | void qemu_spice_register_ports(void) | |
326 | { | |
0ec7b3e7 | 327 | SpiceChardev *s; |
afd0b409 MAL |
328 | |
329 | QLIST_FOREACH(s, &spice_chars, next) { | |
330 | if (s->sin.portname == NULL) { | |
331 | continue; | |
332 | } | |
333 | vmc_register_interface(s); | |
334 | } | |
335 | } | |
26c60614 | 336 | |
cd153e2a GH |
337 | static void qemu_chr_parse_spice_vmc(QemuOpts *opts, ChardevBackend *backend, |
338 | Error **errp) | |
339 | { | |
340 | const char *name = qemu_opt_get(opts, "name"); | |
21a933ea | 341 | ChardevSpiceChannel *spicevmc; |
cd153e2a GH |
342 | |
343 | if (name == NULL) { | |
344 | error_setg(errp, "chardev: spice channel: no name given"); | |
345 | return; | |
346 | } | |
0b663b7d | 347 | backend->type = CHARDEV_BACKEND_KIND_SPICEVMC; |
32bafa8f | 348 | spicevmc = backend->u.spicevmc.data = g_new0(ChardevSpiceChannel, 1); |
21a933ea EB |
349 | qemu_chr_parse_common(opts, qapi_ChardevSpiceChannel_base(spicevmc)); |
350 | spicevmc->type = g_strdup(name); | |
cd153e2a GH |
351 | } |
352 | ||
353 | static void qemu_chr_parse_spice_port(QemuOpts *opts, ChardevBackend *backend, | |
354 | Error **errp) | |
355 | { | |
356 | const char *name = qemu_opt_get(opts, "name"); | |
21a933ea | 357 | ChardevSpicePort *spiceport; |
cd153e2a GH |
358 | |
359 | if (name == NULL) { | |
360 | error_setg(errp, "chardev: spice port: no name given"); | |
361 | return; | |
362 | } | |
0b663b7d | 363 | backend->type = CHARDEV_BACKEND_KIND_SPICEPORT; |
32bafa8f | 364 | spiceport = backend->u.spiceport.data = g_new0(ChardevSpicePort, 1); |
21a933ea EB |
365 | qemu_chr_parse_common(opts, qapi_ChardevSpicePort_base(spiceport)); |
366 | spiceport->fqdn = g_strdup(name); | |
cd153e2a GH |
367 | } |
368 | ||
777357d7 MAL |
369 | static void char_spice_class_init(ObjectClass *oc, void *data) |
370 | { | |
371 | ChardevClass *cc = CHARDEV_CLASS(oc); | |
372 | ||
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; | |
777357d7 MAL |
376 | } |
377 | ||
378 | static const TypeInfo char_spice_type_info = { | |
379 | .name = TYPE_CHARDEV_SPICE, | |
380 | .parent = TYPE_CHARDEV, | |
381 | .instance_size = sizeof(SpiceChardev), | |
18c508ac | 382 | .instance_finalize = char_spice_finalize, |
777357d7 MAL |
383 | .class_init = char_spice_class_init, |
384 | .abstract = true, | |
385 | }; | |
386 | ||
387 | static void char_spicevmc_class_init(ObjectClass *oc, void *data) | |
388 | { | |
389 | ChardevClass *cc = CHARDEV_CLASS(oc); | |
390 | ||
88cace9f | 391 | cc->parse = qemu_chr_parse_spice_vmc; |
777357d7 MAL |
392 | cc->open = qemu_chr_open_spice_vmc; |
393 | cc->chr_set_fe_open = spice_vmc_set_fe_open; | |
394 | } | |
395 | ||
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, | |
400 | }; | |
401 | ||
402 | static void char_spiceport_class_init(ObjectClass *oc, void *data) | |
403 | { | |
404 | ChardevClass *cc = CHARDEV_CLASS(oc); | |
405 | ||
88cace9f | 406 | cc->parse = qemu_chr_parse_spice_port; |
777357d7 MAL |
407 | cc->open = qemu_chr_open_spice_port; |
408 | cc->chr_set_fe_open = spice_port_set_fe_open; | |
409 | } | |
410 | ||
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, | |
415 | }; | |
416 | ||
26c60614 AL |
417 | static void register_types(void) |
418 | { | |
777357d7 MAL |
419 | type_register_static(&char_spice_type_info); |
420 | type_register_static(&char_spicevmc_type_info); | |
421 | type_register_static(&char_spiceport_type_info); | |
26c60614 AL |
422 | } |
423 | ||
424 | type_init(register_types); |