]>
Commit | Line | Data |
---|---|---|
1 | /* | |
2 | * Copyright (C) 2010 Red Hat, Inc. | |
3 | * | |
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. | |
8 | * | |
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. | |
13 | * | |
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/>. | |
16 | */ | |
17 | ||
18 | #include "qemu-common.h" | |
19 | #include "ui/qemu-spice.h" | |
20 | #include "qemu/timer.h" | |
21 | #include "qemu/queue.h" | |
22 | #include "monitor/monitor.h" | |
23 | #include "ui/console.h" | |
24 | #include "sysemu/sysemu.h" | |
25 | #include "trace.h" | |
26 | ||
27 | #include "ui/spice-display.h" | |
28 | ||
29 | static int debug = 0; | |
30 | ||
31 | static void GCC_FMT_ATTR(2, 3) dprint(int level, const char *fmt, ...) | |
32 | { | |
33 | va_list args; | |
34 | ||
35 | if (level <= debug) { | |
36 | va_start(args, fmt); | |
37 | vfprintf(stderr, fmt, args); | |
38 | va_end(args); | |
39 | } | |
40 | } | |
41 | ||
42 | int qemu_spice_rect_is_empty(const QXLRect* r) | |
43 | { | |
44 | return r->top == r->bottom || r->left == r->right; | |
45 | } | |
46 | ||
47 | void qemu_spice_rect_union(QXLRect *dest, const QXLRect *r) | |
48 | { | |
49 | if (qemu_spice_rect_is_empty(r)) { | |
50 | return; | |
51 | } | |
52 | ||
53 | if (qemu_spice_rect_is_empty(dest)) { | |
54 | *dest = *r; | |
55 | return; | |
56 | } | |
57 | ||
58 | dest->top = MIN(dest->top, r->top); | |
59 | dest->left = MIN(dest->left, r->left); | |
60 | dest->bottom = MAX(dest->bottom, r->bottom); | |
61 | dest->right = MAX(dest->right, r->right); | |
62 | } | |
63 | ||
64 | QXLCookie *qxl_cookie_new(int type, uint64_t io) | |
65 | { | |
66 | QXLCookie *cookie; | |
67 | ||
68 | cookie = g_malloc0(sizeof(*cookie)); | |
69 | cookie->type = type; | |
70 | cookie->io = io; | |
71 | return cookie; | |
72 | } | |
73 | ||
74 | void qemu_spice_add_memslot(SimpleSpiceDisplay *ssd, QXLDevMemSlot *memslot, | |
75 | qxl_async_io async) | |
76 | { | |
77 | trace_qemu_spice_add_memslot(ssd->qxl.id, memslot->slot_id, | |
78 | memslot->virt_start, memslot->virt_end, | |
79 | async); | |
80 | ||
81 | if (async != QXL_SYNC) { | |
82 | spice_qxl_add_memslot_async(&ssd->qxl, memslot, | |
83 | (uintptr_t)qxl_cookie_new(QXL_COOKIE_TYPE_IO, | |
84 | QXL_IO_MEMSLOT_ADD_ASYNC)); | |
85 | } else { | |
86 | spice_qxl_add_memslot(&ssd->qxl, memslot); | |
87 | } | |
88 | } | |
89 | ||
90 | void qemu_spice_del_memslot(SimpleSpiceDisplay *ssd, uint32_t gid, uint32_t sid) | |
91 | { | |
92 | trace_qemu_spice_del_memslot(ssd->qxl.id, gid, sid); | |
93 | spice_qxl_del_memslot(&ssd->qxl, gid, sid); | |
94 | } | |
95 | ||
96 | void qemu_spice_create_primary_surface(SimpleSpiceDisplay *ssd, uint32_t id, | |
97 | QXLDevSurfaceCreate *surface, | |
98 | qxl_async_io async) | |
99 | { | |
100 | trace_qemu_spice_create_primary_surface(ssd->qxl.id, id, surface, async); | |
101 | if (async != QXL_SYNC) { | |
102 | spice_qxl_create_primary_surface_async(&ssd->qxl, id, surface, | |
103 | (uintptr_t)qxl_cookie_new(QXL_COOKIE_TYPE_IO, | |
104 | QXL_IO_CREATE_PRIMARY_ASYNC)); | |
105 | } else { | |
106 | spice_qxl_create_primary_surface(&ssd->qxl, id, surface); | |
107 | } | |
108 | } | |
109 | ||
110 | void qemu_spice_destroy_primary_surface(SimpleSpiceDisplay *ssd, | |
111 | uint32_t id, qxl_async_io async) | |
112 | { | |
113 | trace_qemu_spice_destroy_primary_surface(ssd->qxl.id, id, async); | |
114 | if (async != QXL_SYNC) { | |
115 | spice_qxl_destroy_primary_surface_async(&ssd->qxl, id, | |
116 | (uintptr_t)qxl_cookie_new(QXL_COOKIE_TYPE_IO, | |
117 | QXL_IO_DESTROY_PRIMARY_ASYNC)); | |
118 | } else { | |
119 | spice_qxl_destroy_primary_surface(&ssd->qxl, id); | |
120 | } | |
121 | } | |
122 | ||
123 | void qemu_spice_wakeup(SimpleSpiceDisplay *ssd) | |
124 | { | |
125 | trace_qemu_spice_wakeup(ssd->qxl.id); | |
126 | spice_qxl_wakeup(&ssd->qxl); | |
127 | } | |
128 | ||
129 | static void qemu_spice_create_one_update(SimpleSpiceDisplay *ssd, | |
130 | QXLRect *rect) | |
131 | { | |
132 | SimpleSpiceUpdate *update; | |
133 | QXLDrawable *drawable; | |
134 | QXLImage *image; | |
135 | QXLCommand *cmd; | |
136 | int bw, bh; | |
137 | struct timespec time_space; | |
138 | pixman_image_t *dest; | |
139 | ||
140 | trace_qemu_spice_create_update( | |
141 | rect->left, rect->right, | |
142 | rect->top, rect->bottom); | |
143 | ||
144 | update = g_malloc0(sizeof(*update)); | |
145 | drawable = &update->drawable; | |
146 | image = &update->image; | |
147 | cmd = &update->ext.cmd; | |
148 | ||
149 | bw = rect->right - rect->left; | |
150 | bh = rect->bottom - rect->top; | |
151 | update->bitmap = g_malloc(bw * bh * 4); | |
152 | ||
153 | drawable->bbox = *rect; | |
154 | drawable->clip.type = SPICE_CLIP_TYPE_NONE; | |
155 | drawable->effect = QXL_EFFECT_OPAQUE; | |
156 | drawable->release_info.id = (uintptr_t)(&update->ext); | |
157 | drawable->type = QXL_DRAW_COPY; | |
158 | drawable->surfaces_dest[0] = -1; | |
159 | drawable->surfaces_dest[1] = -1; | |
160 | drawable->surfaces_dest[2] = -1; | |
161 | clock_gettime(CLOCK_MONOTONIC, &time_space); | |
162 | /* time in milliseconds from epoch. */ | |
163 | drawable->mm_time = time_space.tv_sec * 1000 | |
164 | + time_space.tv_nsec / 1000 / 1000; | |
165 | ||
166 | drawable->u.copy.rop_descriptor = SPICE_ROPD_OP_PUT; | |
167 | drawable->u.copy.src_bitmap = (uintptr_t)image; | |
168 | drawable->u.copy.src_area.right = bw; | |
169 | drawable->u.copy.src_area.bottom = bh; | |
170 | ||
171 | QXL_SET_IMAGE_ID(image, QXL_IMAGE_GROUP_DEVICE, ssd->unique++); | |
172 | image->descriptor.type = SPICE_IMAGE_TYPE_BITMAP; | |
173 | image->bitmap.flags = QXL_BITMAP_DIRECT | QXL_BITMAP_TOP_DOWN; | |
174 | image->bitmap.stride = bw * 4; | |
175 | image->descriptor.width = image->bitmap.x = bw; | |
176 | image->descriptor.height = image->bitmap.y = bh; | |
177 | image->bitmap.data = (uintptr_t)(update->bitmap); | |
178 | image->bitmap.palette = 0; | |
179 | image->bitmap.format = SPICE_BITMAP_FMT_32BIT; | |
180 | ||
181 | dest = pixman_image_create_bits(PIXMAN_LE_x8r8g8b8, bw, bh, | |
182 | (void *)update->bitmap, bw * 4); | |
183 | pixman_image_composite(PIXMAN_OP_SRC, ssd->surface, NULL, ssd->mirror, | |
184 | rect->left, rect->top, 0, 0, | |
185 | rect->left, rect->top, bw, bh); | |
186 | pixman_image_composite(PIXMAN_OP_SRC, ssd->mirror, NULL, dest, | |
187 | rect->left, rect->top, 0, 0, | |
188 | 0, 0, bw, bh); | |
189 | pixman_image_unref(dest); | |
190 | ||
191 | cmd->type = QXL_CMD_DRAW; | |
192 | cmd->data = (uintptr_t)drawable; | |
193 | ||
194 | QTAILQ_INSERT_TAIL(&ssd->updates, update, next); | |
195 | } | |
196 | ||
197 | static void qemu_spice_create_update(SimpleSpiceDisplay *ssd) | |
198 | { | |
199 | static const int blksize = 32; | |
200 | int blocks = (surface_width(ssd->ds) + blksize - 1) / blksize; | |
201 | int dirty_top[blocks]; | |
202 | int y, yoff, x, xoff, blk, bw; | |
203 | int bpp = surface_bytes_per_pixel(ssd->ds); | |
204 | uint8_t *guest, *mirror; | |
205 | ||
206 | if (qemu_spice_rect_is_empty(&ssd->dirty)) { | |
207 | return; | |
208 | }; | |
209 | ||
210 | for (blk = 0; blk < blocks; blk++) { | |
211 | dirty_top[blk] = -1; | |
212 | } | |
213 | ||
214 | guest = surface_data(ssd->ds); | |
215 | mirror = (void *)pixman_image_get_data(ssd->mirror); | |
216 | for (y = ssd->dirty.top; y < ssd->dirty.bottom; y++) { | |
217 | yoff = y * surface_stride(ssd->ds); | |
218 | for (x = ssd->dirty.left; x < ssd->dirty.right; x += blksize) { | |
219 | xoff = x * bpp; | |
220 | blk = x / blksize; | |
221 | bw = MIN(blksize, ssd->dirty.right - x); | |
222 | if (memcmp(guest + yoff + xoff, | |
223 | mirror + yoff + xoff, | |
224 | bw * bpp) == 0) { | |
225 | if (dirty_top[blk] != -1) { | |
226 | QXLRect update = { | |
227 | .top = dirty_top[blk], | |
228 | .bottom = y, | |
229 | .left = x, | |
230 | .right = x + bw, | |
231 | }; | |
232 | qemu_spice_create_one_update(ssd, &update); | |
233 | dirty_top[blk] = -1; | |
234 | } | |
235 | } else { | |
236 | if (dirty_top[blk] == -1) { | |
237 | dirty_top[blk] = y; | |
238 | } | |
239 | } | |
240 | } | |
241 | } | |
242 | ||
243 | for (x = ssd->dirty.left; x < ssd->dirty.right; x += blksize) { | |
244 | blk = x / blksize; | |
245 | bw = MIN(blksize, ssd->dirty.right - x); | |
246 | if (dirty_top[blk] != -1) { | |
247 | QXLRect update = { | |
248 | .top = dirty_top[blk], | |
249 | .bottom = ssd->dirty.bottom, | |
250 | .left = x, | |
251 | .right = x + bw, | |
252 | }; | |
253 | qemu_spice_create_one_update(ssd, &update); | |
254 | dirty_top[blk] = -1; | |
255 | } | |
256 | } | |
257 | ||
258 | memset(&ssd->dirty, 0, sizeof(ssd->dirty)); | |
259 | } | |
260 | ||
261 | static SimpleSpiceCursor* | |
262 | qemu_spice_create_cursor_update(SimpleSpiceDisplay *ssd, | |
263 | QEMUCursor *c, | |
264 | int on) | |
265 | { | |
266 | size_t size = c ? c->width * c->height * 4 : 0; | |
267 | SimpleSpiceCursor *update; | |
268 | QXLCursorCmd *ccmd; | |
269 | QXLCursor *cursor; | |
270 | QXLCommand *cmd; | |
271 | ||
272 | update = g_malloc0(sizeof(*update) + size); | |
273 | ccmd = &update->cmd; | |
274 | cursor = &update->cursor; | |
275 | cmd = &update->ext.cmd; | |
276 | ||
277 | if (c) { | |
278 | ccmd->type = QXL_CURSOR_SET; | |
279 | ccmd->u.set.position.x = ssd->ptr_x + ssd->hot_x; | |
280 | ccmd->u.set.position.y = ssd->ptr_y + ssd->hot_y; | |
281 | ccmd->u.set.visible = true; | |
282 | ccmd->u.set.shape = (uintptr_t)cursor; | |
283 | cursor->header.unique = ssd->unique++; | |
284 | cursor->header.type = SPICE_CURSOR_TYPE_ALPHA; | |
285 | cursor->header.width = c->width; | |
286 | cursor->header.height = c->height; | |
287 | cursor->header.hot_spot_x = c->hot_x; | |
288 | cursor->header.hot_spot_y = c->hot_y; | |
289 | cursor->data_size = size; | |
290 | cursor->chunk.data_size = size; | |
291 | memcpy(cursor->chunk.data, c->data, size); | |
292 | } else if (!on) { | |
293 | ccmd->type = QXL_CURSOR_HIDE; | |
294 | } else { | |
295 | ccmd->type = QXL_CURSOR_MOVE; | |
296 | ccmd->u.position.x = ssd->ptr_x + ssd->hot_x; | |
297 | ccmd->u.position.y = ssd->ptr_y + ssd->hot_y; | |
298 | } | |
299 | ccmd->release_info.id = (uintptr_t)(&update->ext); | |
300 | ||
301 | cmd->type = QXL_CMD_CURSOR; | |
302 | cmd->data = (uintptr_t)ccmd; | |
303 | ||
304 | return update; | |
305 | } | |
306 | ||
307 | /* | |
308 | * Called from spice server thread context (via interface_release_resource) | |
309 | * We do *not* hold the global qemu mutex here, so extra care is needed | |
310 | * when calling qemu functions. QEMU interfaces used: | |
311 | * - g_free (underlying glibc free is re-entrant). | |
312 | */ | |
313 | void qemu_spice_destroy_update(SimpleSpiceDisplay *sdpy, SimpleSpiceUpdate *update) | |
314 | { | |
315 | g_free(update->bitmap); | |
316 | g_free(update); | |
317 | } | |
318 | ||
319 | void qemu_spice_create_host_memslot(SimpleSpiceDisplay *ssd) | |
320 | { | |
321 | QXLDevMemSlot memslot; | |
322 | ||
323 | dprint(1, "%s/%d:\n", __func__, ssd->qxl.id); | |
324 | ||
325 | memset(&memslot, 0, sizeof(memslot)); | |
326 | memslot.slot_group_id = MEMSLOT_GROUP_HOST; | |
327 | memslot.virt_end = ~0; | |
328 | qemu_spice_add_memslot(ssd, &memslot, QXL_SYNC); | |
329 | } | |
330 | ||
331 | void qemu_spice_create_host_primary(SimpleSpiceDisplay *ssd) | |
332 | { | |
333 | QXLDevSurfaceCreate surface; | |
334 | uint64_t surface_size; | |
335 | ||
336 | memset(&surface, 0, sizeof(surface)); | |
337 | ||
338 | surface_size = (uint64_t) surface_width(ssd->ds) * | |
339 | surface_height(ssd->ds) * 4; | |
340 | assert(surface_size > 0); | |
341 | assert(surface_size < INT_MAX); | |
342 | if (ssd->bufsize < surface_size) { | |
343 | ssd->bufsize = surface_size; | |
344 | g_free(ssd->buf); | |
345 | ssd->buf = g_malloc(ssd->bufsize); | |
346 | } | |
347 | ||
348 | dprint(1, "%s/%d: %ux%u (size %" PRIu64 "/%d)\n", __func__, ssd->qxl.id, | |
349 | surface_width(ssd->ds), surface_height(ssd->ds), | |
350 | surface_size, ssd->bufsize); | |
351 | ||
352 | surface.format = SPICE_SURFACE_FMT_32_xRGB; | |
353 | surface.width = surface_width(ssd->ds); | |
354 | surface.height = surface_height(ssd->ds); | |
355 | surface.stride = -surface.width * 4; | |
356 | surface.mouse_mode = true; | |
357 | surface.flags = 0; | |
358 | surface.type = 0; | |
359 | surface.mem = (uintptr_t)ssd->buf; | |
360 | surface.group_id = MEMSLOT_GROUP_HOST; | |
361 | ||
362 | qemu_spice_create_primary_surface(ssd, 0, &surface, QXL_SYNC); | |
363 | } | |
364 | ||
365 | void qemu_spice_destroy_host_primary(SimpleSpiceDisplay *ssd) | |
366 | { | |
367 | dprint(1, "%s/%d:\n", __func__, ssd->qxl.id); | |
368 | ||
369 | qemu_spice_destroy_primary_surface(ssd, 0, QXL_SYNC); | |
370 | } | |
371 | ||
372 | void qemu_spice_display_init_common(SimpleSpiceDisplay *ssd) | |
373 | { | |
374 | qemu_mutex_init(&ssd->lock); | |
375 | QTAILQ_INIT(&ssd->updates); | |
376 | ssd->mouse_x = -1; | |
377 | ssd->mouse_y = -1; | |
378 | if (ssd->num_surfaces == 0) { | |
379 | ssd->num_surfaces = 1024; | |
380 | } | |
381 | } | |
382 | ||
383 | /* display listener callbacks */ | |
384 | ||
385 | void qemu_spice_display_update(SimpleSpiceDisplay *ssd, | |
386 | int x, int y, int w, int h) | |
387 | { | |
388 | QXLRect update_area; | |
389 | ||
390 | dprint(2, "%s/%d: x %d y %d w %d h %d\n", __func__, | |
391 | ssd->qxl.id, x, y, w, h); | |
392 | update_area.left = x, | |
393 | update_area.right = x + w; | |
394 | update_area.top = y; | |
395 | update_area.bottom = y + h; | |
396 | ||
397 | if (qemu_spice_rect_is_empty(&ssd->dirty)) { | |
398 | ssd->notify++; | |
399 | } | |
400 | qemu_spice_rect_union(&ssd->dirty, &update_area); | |
401 | } | |
402 | ||
403 | void qemu_spice_display_switch(SimpleSpiceDisplay *ssd, | |
404 | DisplaySurface *surface) | |
405 | { | |
406 | SimpleSpiceUpdate *update; | |
407 | bool need_destroy; | |
408 | ||
409 | if (surface && ssd->surface && | |
410 | surface_width(surface) == pixman_image_get_width(ssd->surface) && | |
411 | surface_height(surface) == pixman_image_get_height(ssd->surface)) { | |
412 | /* no-resize fast path: just swap backing store */ | |
413 | dprint(1, "%s/%d: fast (%dx%d)\n", __func__, ssd->qxl.id, | |
414 | surface_width(surface), surface_height(surface)); | |
415 | qemu_mutex_lock(&ssd->lock); | |
416 | ssd->ds = surface; | |
417 | pixman_image_unref(ssd->surface); | |
418 | ssd->surface = pixman_image_ref(ssd->ds->image); | |
419 | qemu_mutex_unlock(&ssd->lock); | |
420 | qemu_spice_display_update(ssd, 0, 0, | |
421 | surface_width(surface), | |
422 | surface_height(surface)); | |
423 | return; | |
424 | } | |
425 | ||
426 | /* full mode switch */ | |
427 | dprint(1, "%s/%d: full (%dx%d -> %dx%d)\n", __func__, ssd->qxl.id, | |
428 | ssd->surface ? pixman_image_get_width(ssd->surface) : 0, | |
429 | ssd->surface ? pixman_image_get_height(ssd->surface) : 0, | |
430 | surface ? surface_width(surface) : 0, | |
431 | surface ? surface_height(surface) : 0); | |
432 | ||
433 | memset(&ssd->dirty, 0, sizeof(ssd->dirty)); | |
434 | if (ssd->surface) { | |
435 | pixman_image_unref(ssd->surface); | |
436 | ssd->surface = NULL; | |
437 | pixman_image_unref(ssd->mirror); | |
438 | ssd->mirror = NULL; | |
439 | } | |
440 | ||
441 | qemu_mutex_lock(&ssd->lock); | |
442 | need_destroy = (ssd->ds != NULL); | |
443 | ssd->ds = surface; | |
444 | while ((update = QTAILQ_FIRST(&ssd->updates)) != NULL) { | |
445 | QTAILQ_REMOVE(&ssd->updates, update, next); | |
446 | qemu_spice_destroy_update(ssd, update); | |
447 | } | |
448 | qemu_mutex_unlock(&ssd->lock); | |
449 | if (need_destroy) { | |
450 | qemu_spice_destroy_host_primary(ssd); | |
451 | } | |
452 | if (ssd->ds) { | |
453 | ssd->surface = pixman_image_ref(ssd->ds->image); | |
454 | ssd->mirror = qemu_pixman_mirror_create(ssd->ds->format, | |
455 | ssd->ds->image); | |
456 | qemu_spice_create_host_primary(ssd); | |
457 | } | |
458 | ||
459 | memset(&ssd->dirty, 0, sizeof(ssd->dirty)); | |
460 | ssd->notify++; | |
461 | } | |
462 | ||
463 | static void qemu_spice_cursor_refresh_unlocked(SimpleSpiceDisplay *ssd) | |
464 | { | |
465 | if (ssd->cursor) { | |
466 | assert(ssd->dcl.con); | |
467 | dpy_cursor_define(ssd->dcl.con, ssd->cursor); | |
468 | cursor_put(ssd->cursor); | |
469 | ssd->cursor = NULL; | |
470 | } | |
471 | if (ssd->mouse_x != -1 && ssd->mouse_y != -1) { | |
472 | assert(ssd->dcl.con); | |
473 | dpy_mouse_set(ssd->dcl.con, ssd->mouse_x, ssd->mouse_y, 1); | |
474 | ssd->mouse_x = -1; | |
475 | ssd->mouse_y = -1; | |
476 | } | |
477 | } | |
478 | ||
479 | void qemu_spice_cursor_refresh_bh(void *opaque) | |
480 | { | |
481 | SimpleSpiceDisplay *ssd = opaque; | |
482 | ||
483 | qemu_mutex_lock(&ssd->lock); | |
484 | qemu_spice_cursor_refresh_unlocked(ssd); | |
485 | qemu_mutex_unlock(&ssd->lock); | |
486 | } | |
487 | ||
488 | void qemu_spice_display_refresh(SimpleSpiceDisplay *ssd) | |
489 | { | |
490 | dprint(3, "%s/%d:\n", __func__, ssd->qxl.id); | |
491 | graphic_hw_update(ssd->dcl.con); | |
492 | ||
493 | qemu_mutex_lock(&ssd->lock); | |
494 | if (QTAILQ_EMPTY(&ssd->updates) && ssd->ds) { | |
495 | qemu_spice_create_update(ssd); | |
496 | ssd->notify++; | |
497 | } | |
498 | qemu_mutex_unlock(&ssd->lock); | |
499 | ||
500 | if (ssd->notify) { | |
501 | ssd->notify = 0; | |
502 | qemu_spice_wakeup(ssd); | |
503 | dprint(2, "%s/%d: notify\n", __func__, ssd->qxl.id); | |
504 | } | |
505 | } | |
506 | ||
507 | /* spice display interface callbacks */ | |
508 | ||
509 | static void interface_attach_worker(QXLInstance *sin, QXLWorker *qxl_worker) | |
510 | { | |
511 | SimpleSpiceDisplay *ssd = container_of(sin, SimpleSpiceDisplay, qxl); | |
512 | ||
513 | dprint(1, "%s/%d:\n", __func__, ssd->qxl.id); | |
514 | ssd->worker = qxl_worker; | |
515 | } | |
516 | ||
517 | static void interface_set_compression_level(QXLInstance *sin, int level) | |
518 | { | |
519 | dprint(1, "%s/%d:\n", __func__, sin->id); | |
520 | /* nothing to do */ | |
521 | } | |
522 | ||
523 | static void interface_set_mm_time(QXLInstance *sin, uint32_t mm_time) | |
524 | { | |
525 | dprint(3, "%s/%d:\n", __func__, sin->id); | |
526 | /* nothing to do */ | |
527 | } | |
528 | ||
529 | static void interface_get_init_info(QXLInstance *sin, QXLDevInitInfo *info) | |
530 | { | |
531 | SimpleSpiceDisplay *ssd = container_of(sin, SimpleSpiceDisplay, qxl); | |
532 | ||
533 | info->memslot_gen_bits = MEMSLOT_GENERATION_BITS; | |
534 | info->memslot_id_bits = MEMSLOT_SLOT_BITS; | |
535 | info->num_memslots = NUM_MEMSLOTS; | |
536 | info->num_memslots_groups = NUM_MEMSLOTS_GROUPS; | |
537 | info->internal_groupslot_id = 0; | |
538 | info->qxl_ram_size = 16 * 1024 * 1024; | |
539 | info->n_surfaces = ssd->num_surfaces; | |
540 | } | |
541 | ||
542 | static int interface_get_command(QXLInstance *sin, QXLCommandExt *ext) | |
543 | { | |
544 | SimpleSpiceDisplay *ssd = container_of(sin, SimpleSpiceDisplay, qxl); | |
545 | SimpleSpiceUpdate *update; | |
546 | int ret = false; | |
547 | ||
548 | dprint(3, "%s/%d:\n", __func__, ssd->qxl.id); | |
549 | ||
550 | qemu_mutex_lock(&ssd->lock); | |
551 | update = QTAILQ_FIRST(&ssd->updates); | |
552 | if (update != NULL) { | |
553 | QTAILQ_REMOVE(&ssd->updates, update, next); | |
554 | *ext = update->ext; | |
555 | ret = true; | |
556 | } | |
557 | qemu_mutex_unlock(&ssd->lock); | |
558 | ||
559 | return ret; | |
560 | } | |
561 | ||
562 | static int interface_req_cmd_notification(QXLInstance *sin) | |
563 | { | |
564 | dprint(1, "%s/%d:\n", __func__, sin->id); | |
565 | return 1; | |
566 | } | |
567 | ||
568 | static void interface_release_resource(QXLInstance *sin, | |
569 | QXLReleaseInfoExt rext) | |
570 | { | |
571 | SimpleSpiceDisplay *ssd = container_of(sin, SimpleSpiceDisplay, qxl); | |
572 | SimpleSpiceUpdate *update; | |
573 | SimpleSpiceCursor *cursor; | |
574 | QXLCommandExt *ext; | |
575 | ||
576 | dprint(2, "%s/%d:\n", __func__, ssd->qxl.id); | |
577 | ext = (void *)(intptr_t)(rext.info->id); | |
578 | switch (ext->cmd.type) { | |
579 | case QXL_CMD_DRAW: | |
580 | update = container_of(ext, SimpleSpiceUpdate, ext); | |
581 | qemu_spice_destroy_update(ssd, update); | |
582 | break; | |
583 | case QXL_CMD_CURSOR: | |
584 | cursor = container_of(ext, SimpleSpiceCursor, ext); | |
585 | g_free(cursor); | |
586 | break; | |
587 | default: | |
588 | g_assert_not_reached(); | |
589 | } | |
590 | } | |
591 | ||
592 | static int interface_get_cursor_command(QXLInstance *sin, QXLCommandExt *ext) | |
593 | { | |
594 | SimpleSpiceDisplay *ssd = container_of(sin, SimpleSpiceDisplay, qxl); | |
595 | int ret; | |
596 | ||
597 | dprint(3, "%s/%d:\n", __func__, ssd->qxl.id); | |
598 | ||
599 | qemu_mutex_lock(&ssd->lock); | |
600 | if (ssd->ptr_define) { | |
601 | *ext = ssd->ptr_define->ext; | |
602 | ssd->ptr_define = NULL; | |
603 | ret = true; | |
604 | } else if (ssd->ptr_move) { | |
605 | *ext = ssd->ptr_move->ext; | |
606 | ssd->ptr_move = NULL; | |
607 | ret = true; | |
608 | } else { | |
609 | ret = false; | |
610 | } | |
611 | qemu_mutex_unlock(&ssd->lock); | |
612 | return ret; | |
613 | } | |
614 | ||
615 | static int interface_req_cursor_notification(QXLInstance *sin) | |
616 | { | |
617 | dprint(1, "%s:\n", __FUNCTION__); | |
618 | return 1; | |
619 | } | |
620 | ||
621 | static void interface_notify_update(QXLInstance *sin, uint32_t update_id) | |
622 | { | |
623 | fprintf(stderr, "%s: abort()\n", __FUNCTION__); | |
624 | abort(); | |
625 | } | |
626 | ||
627 | static int interface_flush_resources(QXLInstance *sin) | |
628 | { | |
629 | fprintf(stderr, "%s: abort()\n", __FUNCTION__); | |
630 | abort(); | |
631 | return 0; | |
632 | } | |
633 | ||
634 | static void interface_update_area_complete(QXLInstance *sin, | |
635 | uint32_t surface_id, | |
636 | QXLRect *dirty, uint32_t num_updated_rects) | |
637 | { | |
638 | /* should never be called, used in qxl native mode only */ | |
639 | fprintf(stderr, "%s: abort()\n", __func__); | |
640 | abort(); | |
641 | } | |
642 | ||
643 | /* called from spice server thread context only */ | |
644 | static void interface_async_complete(QXLInstance *sin, uint64_t cookie_token) | |
645 | { | |
646 | /* should never be called, used in qxl native mode only */ | |
647 | fprintf(stderr, "%s: abort()\n", __func__); | |
648 | abort(); | |
649 | } | |
650 | ||
651 | static void interface_set_client_capabilities(QXLInstance *sin, | |
652 | uint8_t client_present, | |
653 | uint8_t caps[58]) | |
654 | { | |
655 | dprint(3, "%s:\n", __func__); | |
656 | } | |
657 | ||
658 | static int interface_client_monitors_config(QXLInstance *sin, | |
659 | VDAgentMonitorsConfig *mc) | |
660 | { | |
661 | SimpleSpiceDisplay *ssd = container_of(sin, SimpleSpiceDisplay, qxl); | |
662 | QemuUIInfo info; | |
663 | int rc; | |
664 | ||
665 | if (!mc) { | |
666 | return 1; | |
667 | } | |
668 | ||
669 | /* | |
670 | * FIXME: multihead is tricky due to the way | |
671 | * spice has multihead implemented. | |
672 | */ | |
673 | memset(&info, 0, sizeof(info)); | |
674 | if (mc->num_of_monitors > 0) { | |
675 | info.width = mc->monitors[0].width; | |
676 | info.height = mc->monitors[0].height; | |
677 | } | |
678 | rc = dpy_set_ui_info(ssd->dcl.con, &info); | |
679 | dprint(1, "%s/%d: size %dx%d, rc %d <--- ==========================\n", | |
680 | __func__, ssd->qxl.id, info.width, info.height, rc); | |
681 | if (rc != 0) { | |
682 | return 0; /* == not supported by guest */ | |
683 | } else { | |
684 | return 1; | |
685 | } | |
686 | } | |
687 | ||
688 | static const QXLInterface dpy_interface = { | |
689 | .base.type = SPICE_INTERFACE_QXL, | |
690 | .base.description = "qemu simple display", | |
691 | .base.major_version = SPICE_INTERFACE_QXL_MAJOR, | |
692 | .base.minor_version = SPICE_INTERFACE_QXL_MINOR, | |
693 | ||
694 | .attache_worker = interface_attach_worker, | |
695 | .set_compression_level = interface_set_compression_level, | |
696 | .set_mm_time = interface_set_mm_time, | |
697 | .get_init_info = interface_get_init_info, | |
698 | ||
699 | /* the callbacks below are called from spice server thread context */ | |
700 | .get_command = interface_get_command, | |
701 | .req_cmd_notification = interface_req_cmd_notification, | |
702 | .release_resource = interface_release_resource, | |
703 | .get_cursor_command = interface_get_cursor_command, | |
704 | .req_cursor_notification = interface_req_cursor_notification, | |
705 | .notify_update = interface_notify_update, | |
706 | .flush_resources = interface_flush_resources, | |
707 | .async_complete = interface_async_complete, | |
708 | .update_area_complete = interface_update_area_complete, | |
709 | .set_client_capabilities = interface_set_client_capabilities, | |
710 | .client_monitors_config = interface_client_monitors_config, | |
711 | }; | |
712 | ||
713 | static void display_update(DisplayChangeListener *dcl, | |
714 | int x, int y, int w, int h) | |
715 | { | |
716 | SimpleSpiceDisplay *ssd = container_of(dcl, SimpleSpiceDisplay, dcl); | |
717 | qemu_spice_display_update(ssd, x, y, w, h); | |
718 | } | |
719 | ||
720 | static void display_switch(DisplayChangeListener *dcl, | |
721 | DisplaySurface *surface) | |
722 | { | |
723 | SimpleSpiceDisplay *ssd = container_of(dcl, SimpleSpiceDisplay, dcl); | |
724 | qemu_spice_display_switch(ssd, surface); | |
725 | } | |
726 | ||
727 | static void display_refresh(DisplayChangeListener *dcl) | |
728 | { | |
729 | SimpleSpiceDisplay *ssd = container_of(dcl, SimpleSpiceDisplay, dcl); | |
730 | qemu_spice_display_refresh(ssd); | |
731 | } | |
732 | ||
733 | static void display_mouse_set(DisplayChangeListener *dcl, | |
734 | int x, int y, int on) | |
735 | { | |
736 | SimpleSpiceDisplay *ssd = container_of(dcl, SimpleSpiceDisplay, dcl); | |
737 | ||
738 | qemu_mutex_lock(&ssd->lock); | |
739 | ssd->ptr_x = x; | |
740 | ssd->ptr_y = y; | |
741 | if (ssd->ptr_move) { | |
742 | g_free(ssd->ptr_move); | |
743 | } | |
744 | ssd->ptr_move = qemu_spice_create_cursor_update(ssd, NULL, on); | |
745 | qemu_mutex_unlock(&ssd->lock); | |
746 | } | |
747 | ||
748 | static void display_mouse_define(DisplayChangeListener *dcl, | |
749 | QEMUCursor *c) | |
750 | { | |
751 | SimpleSpiceDisplay *ssd = container_of(dcl, SimpleSpiceDisplay, dcl); | |
752 | ||
753 | qemu_mutex_lock(&ssd->lock); | |
754 | ssd->hot_x = c->hot_x; | |
755 | ssd->hot_y = c->hot_y; | |
756 | if (ssd->ptr_move) { | |
757 | g_free(ssd->ptr_move); | |
758 | ssd->ptr_move = NULL; | |
759 | } | |
760 | if (ssd->ptr_define) { | |
761 | g_free(ssd->ptr_define); | |
762 | } | |
763 | ssd->ptr_define = qemu_spice_create_cursor_update(ssd, c, 0); | |
764 | qemu_mutex_unlock(&ssd->lock); | |
765 | } | |
766 | ||
767 | static const DisplayChangeListenerOps display_listener_ops = { | |
768 | .dpy_name = "spice", | |
769 | .dpy_gfx_update = display_update, | |
770 | .dpy_gfx_switch = display_switch, | |
771 | .dpy_gfx_check_format = qemu_pixman_check_format, | |
772 | .dpy_refresh = display_refresh, | |
773 | .dpy_mouse_set = display_mouse_set, | |
774 | .dpy_cursor_define = display_mouse_define, | |
775 | }; | |
776 | ||
777 | static void qemu_spice_display_init_one(QemuConsole *con) | |
778 | { | |
779 | SimpleSpiceDisplay *ssd = g_new0(SimpleSpiceDisplay, 1); | |
780 | ||
781 | qemu_spice_display_init_common(ssd); | |
782 | ||
783 | ssd->qxl.base.sif = &dpy_interface.base; | |
784 | qemu_spice_add_display_interface(&ssd->qxl, con); | |
785 | assert(ssd->worker); | |
786 | ||
787 | qemu_spice_create_host_memslot(ssd); | |
788 | ||
789 | ssd->dcl.ops = &display_listener_ops; | |
790 | ssd->dcl.con = con; | |
791 | register_displaychangelistener(&ssd->dcl); | |
792 | } | |
793 | ||
794 | void qemu_spice_display_init(void) | |
795 | { | |
796 | QemuConsole *con; | |
797 | int i; | |
798 | ||
799 | for (i = 0;; i++) { | |
800 | con = qemu_console_lookup_by_index(i); | |
801 | if (!con || !qemu_console_is_graphic(con)) { | |
802 | break; | |
803 | } | |
804 | if (qemu_spice_have_display_interface(con)) { | |
805 | continue; | |
806 | } | |
807 | qemu_spice_display_init_one(con); | |
808 | } | |
809 | } |