2 * QEMU VNC display driver
4 * Copyright (C) 2006 Anthony Liguori <anthony@codemonkey.ws>
5 * Copyright (C) 2006 Fabrice Bellard
6 * Copyright (C) 2009 Red Hat, Inc
8 * Permission is hereby granted, free of charge, to any person obtaining a copy
9 * of this software and associated documentation files (the "Software"), to deal
10 * in the Software without restriction, including without limitation the rights
11 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12 * copies of the Software, and to permit persons to whom the Software is
13 * furnished to do so, subject to the following conditions:
15 * The above copyright notice and this permission notice shall be included in
16 * all copies or substantial portions of the Software.
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
21 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
30 #include "sysemu/sysemu.h"
31 #include "qemu/sockets.h"
32 #include "qemu/timer.h"
34 #include "qapi/qmp/types.h"
35 #include "qmp-commands.h"
36 #include "qemu/osdep.h"
38 #include "qapi-event.h"
40 #define VNC_REFRESH_INTERVAL_BASE GUI_REFRESH_INTERVAL_DEFAULT
41 #define VNC_REFRESH_INTERVAL_INC 50
42 #define VNC_REFRESH_INTERVAL_MAX GUI_REFRESH_INTERVAL_IDLE
43 static const struct timeval VNC_REFRESH_STATS
= { 0, 500000 };
44 static const struct timeval VNC_REFRESH_LOSSY
= { 2, 0 };
46 #include "vnc_keysym.h"
49 static VncDisplay
*vnc_display
; /* needed for info vnc */
51 static int vnc_cursor_define(VncState
*vs
);
52 static void vnc_release_modifiers(VncState
*vs
);
54 static void vnc_set_share_mode(VncState
*vs
, VncShareMode mode
)
57 static const char *mn
[] = {
59 [VNC_SHARE_MODE_CONNECTING
] = "connecting",
60 [VNC_SHARE_MODE_SHARED
] = "shared",
61 [VNC_SHARE_MODE_EXCLUSIVE
] = "exclusive",
62 [VNC_SHARE_MODE_DISCONNECTED
] = "disconnected",
64 fprintf(stderr
, "%s/%d: %s -> %s\n", __func__
,
65 vs
->csock
, mn
[vs
->share_mode
], mn
[mode
]);
68 if (vs
->share_mode
== VNC_SHARE_MODE_EXCLUSIVE
) {
69 vs
->vd
->num_exclusive
--;
71 vs
->share_mode
= mode
;
72 if (vs
->share_mode
== VNC_SHARE_MODE_EXCLUSIVE
) {
73 vs
->vd
->num_exclusive
++;
77 static char *addr_to_string(const char *format
,
78 struct sockaddr_storage
*sa
,
81 char host
[NI_MAXHOST
];
82 char serv
[NI_MAXSERV
];
86 if ((err
= getnameinfo((struct sockaddr
*)sa
, salen
,
89 NI_NUMERICHOST
| NI_NUMERICSERV
)) != 0) {
90 VNC_DEBUG("Cannot resolve address %d: %s\n",
91 err
, gai_strerror(err
));
95 /* Enough for the existing format + the 2 vars we're
97 addrlen
= strlen(format
) + strlen(host
) + strlen(serv
);
98 addr
= g_malloc(addrlen
+ 1);
99 snprintf(addr
, addrlen
, format
, host
, serv
);
100 addr
[addrlen
] = '\0';
106 char *vnc_socket_local_addr(const char *format
, int fd
) {
107 struct sockaddr_storage sa
;
111 if (getsockname(fd
, (struct sockaddr
*)&sa
, &salen
) < 0)
114 return addr_to_string(format
, &sa
, salen
);
117 char *vnc_socket_remote_addr(const char *format
, int fd
) {
118 struct sockaddr_storage sa
;
122 if (getpeername(fd
, (struct sockaddr
*)&sa
, &salen
) < 0)
125 return addr_to_string(format
, &sa
, salen
);
128 static VncBasicInfo
*vnc_basic_info_get(struct sockaddr_storage
*sa
,
132 char host
[NI_MAXHOST
];
133 char serv
[NI_MAXSERV
];
136 if ((err
= getnameinfo((struct sockaddr
*)sa
, salen
,
139 NI_NUMERICHOST
| NI_NUMERICSERV
)) != 0) {
140 VNC_DEBUG("Cannot resolve address %d: %s\n",
141 err
, gai_strerror(err
));
145 info
= g_malloc0(sizeof(VncBasicInfo
));
146 info
->host
= g_strdup(host
);
147 info
->service
= g_strdup(serv
);
148 info
->family
= inet_netfamily(sa
->ss_family
);
152 static VncBasicInfo
*vnc_basic_info_get_from_server_addr(int fd
)
154 struct sockaddr_storage sa
;
158 if (getsockname(fd
, (struct sockaddr
*)&sa
, &salen
) < 0) {
162 return vnc_basic_info_get(&sa
, salen
);
165 static VncBasicInfo
*vnc_basic_info_get_from_remote_addr(int fd
)
167 struct sockaddr_storage sa
;
171 if (getpeername(fd
, (struct sockaddr
*)&sa
, &salen
) < 0) {
175 return vnc_basic_info_get(&sa
, salen
);
178 static const char *vnc_auth_name(VncDisplay
*vd
) {
180 case VNC_AUTH_INVALID
:
196 case VNC_AUTH_VENCRYPT
:
197 #ifdef CONFIG_VNC_TLS
198 switch (vd
->subauth
) {
199 case VNC_AUTH_VENCRYPT_PLAIN
:
200 return "vencrypt+plain";
201 case VNC_AUTH_VENCRYPT_TLSNONE
:
202 return "vencrypt+tls+none";
203 case VNC_AUTH_VENCRYPT_TLSVNC
:
204 return "vencrypt+tls+vnc";
205 case VNC_AUTH_VENCRYPT_TLSPLAIN
:
206 return "vencrypt+tls+plain";
207 case VNC_AUTH_VENCRYPT_X509NONE
:
208 return "vencrypt+x509+none";
209 case VNC_AUTH_VENCRYPT_X509VNC
:
210 return "vencrypt+x509+vnc";
211 case VNC_AUTH_VENCRYPT_X509PLAIN
:
212 return "vencrypt+x509+plain";
213 case VNC_AUTH_VENCRYPT_TLSSASL
:
214 return "vencrypt+tls+sasl";
215 case VNC_AUTH_VENCRYPT_X509SASL
:
216 return "vencrypt+x509+sasl";
229 static VncServerInfo
*vnc_server_info_get(void)
232 VncBasicInfo
*bi
= vnc_basic_info_get_from_server_addr(vnc_display
->lsock
);
237 info
= g_malloc(sizeof(*info
));
239 info
->has_auth
= true;
240 info
->auth
= g_strdup(vnc_auth_name(vnc_display
));
244 static void vnc_client_cache_auth(VncState
*client
)
250 #ifdef CONFIG_VNC_TLS
251 if (client
->tls
.session
&&
253 client
->info
->has_x509_dname
= true;
254 client
->info
->x509_dname
= g_strdup(client
->tls
.dname
);
257 #ifdef CONFIG_VNC_SASL
258 if (client
->sasl
.conn
&&
259 client
->sasl
.username
) {
260 client
->info
->has_sasl_username
= true;
261 client
->info
->sasl_username
= g_strdup(client
->sasl
.username
);
266 static void vnc_client_cache_addr(VncState
*client
)
268 VncBasicInfo
*bi
= vnc_basic_info_get_from_remote_addr(client
->csock
);
271 client
->info
= g_malloc0(sizeof(*client
->info
));
272 client
->info
->base
= bi
;
276 static void vnc_qmp_event(VncState
*vs
, QAPIEvent event
)
283 g_assert(vs
->info
->base
);
285 si
= vnc_server_info_get();
291 case QAPI_EVENT_VNC_CONNECTED
:
292 qapi_event_send_vnc_connected(si
, vs
->info
->base
, &error_abort
);
294 case QAPI_EVENT_VNC_INITIALIZED
:
295 qapi_event_send_vnc_initialized(si
, vs
->info
, &error_abort
);
297 case QAPI_EVENT_VNC_DISCONNECTED
:
298 qapi_event_send_vnc_disconnected(si
, vs
->info
, &error_abort
);
304 qapi_free_VncServerInfo(si
);
307 static VncClientInfo
*qmp_query_vnc_client(const VncState
*client
)
309 struct sockaddr_storage sa
;
310 socklen_t salen
= sizeof(sa
);
311 char host
[NI_MAXHOST
];
312 char serv
[NI_MAXSERV
];
315 if (getpeername(client
->csock
, (struct sockaddr
*)&sa
, &salen
) < 0) {
319 if (getnameinfo((struct sockaddr
*)&sa
, salen
,
322 NI_NUMERICHOST
| NI_NUMERICSERV
) < 0) {
326 info
= g_malloc0(sizeof(*info
));
327 info
->base
= g_malloc0(sizeof(*info
->base
));
328 info
->base
->host
= g_strdup(host
);
329 info
->base
->service
= g_strdup(serv
);
330 info
->base
->family
= inet_netfamily(sa
.ss_family
);
332 #ifdef CONFIG_VNC_TLS
333 if (client
->tls
.session
&& client
->tls
.dname
) {
334 info
->has_x509_dname
= true;
335 info
->x509_dname
= g_strdup(client
->tls
.dname
);
338 #ifdef CONFIG_VNC_SASL
339 if (client
->sasl
.conn
&& client
->sasl
.username
) {
340 info
->has_sasl_username
= true;
341 info
->sasl_username
= g_strdup(client
->sasl
.username
);
348 VncInfo
*qmp_query_vnc(Error
**errp
)
350 VncInfo
*info
= g_malloc0(sizeof(*info
));
352 if (vnc_display
== NULL
|| vnc_display
->display
== NULL
) {
353 info
->enabled
= false;
355 VncClientInfoList
*cur_item
= NULL
;
356 struct sockaddr_storage sa
;
357 socklen_t salen
= sizeof(sa
);
358 char host
[NI_MAXHOST
];
359 char serv
[NI_MAXSERV
];
362 info
->enabled
= true;
364 /* for compatibility with the original command */
365 info
->has_clients
= true;
367 QTAILQ_FOREACH(client
, &vnc_display
->clients
, next
) {
368 VncClientInfoList
*cinfo
= g_malloc0(sizeof(*info
));
369 cinfo
->value
= qmp_query_vnc_client(client
);
371 /* XXX: waiting for the qapi to support GSList */
373 info
->clients
= cur_item
= cinfo
;
375 cur_item
->next
= cinfo
;
380 if (vnc_display
->lsock
== -1) {
384 if (getsockname(vnc_display
->lsock
, (struct sockaddr
*)&sa
,
386 error_set(errp
, QERR_UNDEFINED_ERROR
);
390 if (getnameinfo((struct sockaddr
*)&sa
, salen
,
393 NI_NUMERICHOST
| NI_NUMERICSERV
) < 0) {
394 error_set(errp
, QERR_UNDEFINED_ERROR
);
398 info
->has_host
= true;
399 info
->host
= g_strdup(host
);
401 info
->has_service
= true;
402 info
->service
= g_strdup(serv
);
404 info
->has_family
= true;
405 info
->family
= inet_netfamily(sa
.ss_family
);
407 info
->has_auth
= true;
408 info
->auth
= g_strdup(vnc_auth_name(vnc_display
));
414 qapi_free_VncInfo(info
);
419 1) Get the queue working for IO.
420 2) there is some weirdness when using the -S option (the screen is grey
421 and not totally invalidated
422 3) resolutions > 1024
425 static int vnc_update_client(VncState
*vs
, int has_dirty
, bool sync
);
426 static void vnc_disconnect_start(VncState
*vs
);
428 static void vnc_colordepth(VncState
*vs
);
429 static void framebuffer_update_request(VncState
*vs
, int incremental
,
430 int x_position
, int y_position
,
432 static void vnc_refresh(DisplayChangeListener
*dcl
);
433 static int vnc_refresh_server_surface(VncDisplay
*vd
);
435 static void vnc_set_area_dirty(DECLARE_BITMAP(dirty
[VNC_MAX_HEIGHT
],
436 VNC_MAX_WIDTH
/ VNC_DIRTY_PIXELS_PER_BIT
),
437 int width
, int height
,
438 int x
, int y
, int w
, int h
) {
439 /* this is needed this to ensure we updated all affected
440 * blocks if x % VNC_DIRTY_PIXELS_PER_BIT != 0 */
441 w
+= (x
% VNC_DIRTY_PIXELS_PER_BIT
);
442 x
-= (x
% VNC_DIRTY_PIXELS_PER_BIT
);
446 w
= MIN(x
+ w
, width
) - x
;
447 h
= MIN(y
+ h
, height
);
450 bitmap_set(dirty
[y
], x
/ VNC_DIRTY_PIXELS_PER_BIT
,
451 DIV_ROUND_UP(w
, VNC_DIRTY_PIXELS_PER_BIT
));
455 static void vnc_dpy_update(DisplayChangeListener
*dcl
,
456 int x
, int y
, int w
, int h
)
458 VncDisplay
*vd
= container_of(dcl
, VncDisplay
, dcl
);
459 struct VncSurface
*s
= &vd
->guest
;
460 int width
= pixman_image_get_width(vd
->server
);
461 int height
= pixman_image_get_height(vd
->server
);
463 vnc_set_area_dirty(s
->dirty
, width
, height
, x
, y
, w
, h
);
466 void vnc_framebuffer_update(VncState
*vs
, int x
, int y
, int w
, int h
,
469 vnc_write_u16(vs
, x
);
470 vnc_write_u16(vs
, y
);
471 vnc_write_u16(vs
, w
);
472 vnc_write_u16(vs
, h
);
474 vnc_write_s32(vs
, encoding
);
477 void buffer_reserve(Buffer
*buffer
, size_t len
)
479 if ((buffer
->capacity
- buffer
->offset
) < len
) {
480 buffer
->capacity
+= (len
+ 1024);
481 buffer
->buffer
= g_realloc(buffer
->buffer
, buffer
->capacity
);
482 if (buffer
->buffer
== NULL
) {
483 fprintf(stderr
, "vnc: out of memory\n");
489 static int buffer_empty(Buffer
*buffer
)
491 return buffer
->offset
== 0;
494 uint8_t *buffer_end(Buffer
*buffer
)
496 return buffer
->buffer
+ buffer
->offset
;
499 void buffer_reset(Buffer
*buffer
)
504 void buffer_free(Buffer
*buffer
)
506 g_free(buffer
->buffer
);
508 buffer
->capacity
= 0;
509 buffer
->buffer
= NULL
;
512 void buffer_append(Buffer
*buffer
, const void *data
, size_t len
)
514 memcpy(buffer
->buffer
+ buffer
->offset
, data
, len
);
515 buffer
->offset
+= len
;
518 void buffer_advance(Buffer
*buf
, size_t len
)
520 memmove(buf
->buffer
, buf
->buffer
+ len
,
521 (buf
->offset
- len
));
525 static void vnc_desktop_resize(VncState
*vs
)
527 if (vs
->csock
== -1 || !vnc_has_feature(vs
, VNC_FEATURE_RESIZE
)) {
530 if (vs
->client_width
== pixman_image_get_width(vs
->vd
->server
) &&
531 vs
->client_height
== pixman_image_get_height(vs
->vd
->server
)) {
534 vs
->client_width
= pixman_image_get_width(vs
->vd
->server
);
535 vs
->client_height
= pixman_image_get_height(vs
->vd
->server
);
537 vnc_write_u8(vs
, VNC_MSG_SERVER_FRAMEBUFFER_UPDATE
);
539 vnc_write_u16(vs
, 1); /* number of rects */
540 vnc_framebuffer_update(vs
, 0, 0, vs
->client_width
, vs
->client_height
,
541 VNC_ENCODING_DESKTOPRESIZE
);
542 vnc_unlock_output(vs
);
546 static void vnc_abort_display_jobs(VncDisplay
*vd
)
550 QTAILQ_FOREACH(vs
, &vd
->clients
, next
) {
553 vnc_unlock_output(vs
);
555 QTAILQ_FOREACH(vs
, &vd
->clients
, next
) {
558 QTAILQ_FOREACH(vs
, &vd
->clients
, next
) {
561 vnc_unlock_output(vs
);
565 int vnc_server_fb_stride(VncDisplay
*vd
)
567 return pixman_image_get_stride(vd
->server
);
570 void *vnc_server_fb_ptr(VncDisplay
*vd
, int x
, int y
)
574 ptr
= (uint8_t *)pixman_image_get_data(vd
->server
);
575 ptr
+= y
* vnc_server_fb_stride(vd
);
576 ptr
+= x
* VNC_SERVER_FB_BYTES
;
580 static void vnc_dpy_switch(DisplayChangeListener
*dcl
,
581 DisplaySurface
*surface
)
583 VncDisplay
*vd
= container_of(dcl
, VncDisplay
, dcl
);
587 vnc_abort_display_jobs(vd
);
590 qemu_pixman_image_unref(vd
->server
);
592 width
= MIN(VNC_MAX_WIDTH
, ROUND_UP(surface_width(vd
->ds
),
593 VNC_DIRTY_PIXELS_PER_BIT
));
594 height
= MIN(VNC_MAX_HEIGHT
, surface_height(vd
->ds
));
595 vd
->server
= pixman_image_create_bits(VNC_SERVER_FB_FORMAT
,
596 width
, height
, NULL
, 0);
600 if (ds_get_bytes_per_pixel(ds
) != vd
->guest
.ds
->pf
.bytes_per_pixel
)
601 console_color_init(ds
);
603 qemu_pixman_image_unref(vd
->guest
.fb
);
604 vd
->guest
.fb
= pixman_image_ref(surface
->image
);
605 vd
->guest
.format
= surface
->format
;
606 memset(vd
->guest
.dirty
, 0x00, sizeof(vd
->guest
.dirty
));
607 vnc_set_area_dirty(vd
->guest
.dirty
, width
, height
, 0, 0,
610 QTAILQ_FOREACH(vs
, &vd
->clients
, next
) {
612 vnc_desktop_resize(vs
);
613 if (vs
->vd
->cursor
) {
614 vnc_cursor_define(vs
);
616 memset(vs
->dirty
, 0x00, sizeof(vs
->dirty
));
617 vnc_set_area_dirty(vs
->dirty
, width
, height
, 0, 0,
623 static void vnc_write_pixels_copy(VncState
*vs
,
624 void *pixels
, int size
)
626 vnc_write(vs
, pixels
, size
);
629 /* slowest but generic code. */
630 void vnc_convert_pixel(VncState
*vs
, uint8_t *buf
, uint32_t v
)
634 #if VNC_SERVER_FB_FORMAT == PIXMAN_FORMAT(32, PIXMAN_TYPE_ARGB, 0, 8, 8, 8)
635 r
= (((v
& 0x00ff0000) >> 16) << vs
->client_pf
.rbits
) >> 8;
636 g
= (((v
& 0x0000ff00) >> 8) << vs
->client_pf
.gbits
) >> 8;
637 b
= (((v
& 0x000000ff) >> 0) << vs
->client_pf
.bbits
) >> 8;
639 # error need some bits here if you change VNC_SERVER_FB_FORMAT
641 v
= (r
<< vs
->client_pf
.rshift
) |
642 (g
<< vs
->client_pf
.gshift
) |
643 (b
<< vs
->client_pf
.bshift
);
644 switch (vs
->client_pf
.bytes_per_pixel
) {
674 static void vnc_write_pixels_generic(VncState
*vs
,
675 void *pixels1
, int size
)
679 if (VNC_SERVER_FB_BYTES
== 4) {
680 uint32_t *pixels
= pixels1
;
683 for (i
= 0; i
< n
; i
++) {
684 vnc_convert_pixel(vs
, buf
, pixels
[i
]);
685 vnc_write(vs
, buf
, vs
->client_pf
.bytes_per_pixel
);
690 int vnc_raw_send_framebuffer_update(VncState
*vs
, int x
, int y
, int w
, int h
)
694 VncDisplay
*vd
= vs
->vd
;
696 row
= vnc_server_fb_ptr(vd
, x
, y
);
697 for (i
= 0; i
< h
; i
++) {
698 vs
->write_pixels(vs
, row
, w
* VNC_SERVER_FB_BYTES
);
699 row
+= vnc_server_fb_stride(vd
);
704 int vnc_send_framebuffer_update(VncState
*vs
, int x
, int y
, int w
, int h
)
708 switch(vs
->vnc_encoding
) {
709 case VNC_ENCODING_ZLIB
:
710 n
= vnc_zlib_send_framebuffer_update(vs
, x
, y
, w
, h
);
712 case VNC_ENCODING_HEXTILE
:
713 vnc_framebuffer_update(vs
, x
, y
, w
, h
, VNC_ENCODING_HEXTILE
);
714 n
= vnc_hextile_send_framebuffer_update(vs
, x
, y
, w
, h
);
716 case VNC_ENCODING_TIGHT
:
717 n
= vnc_tight_send_framebuffer_update(vs
, x
, y
, w
, h
);
719 case VNC_ENCODING_TIGHT_PNG
:
720 n
= vnc_tight_png_send_framebuffer_update(vs
, x
, y
, w
, h
);
722 case VNC_ENCODING_ZRLE
:
723 n
= vnc_zrle_send_framebuffer_update(vs
, x
, y
, w
, h
);
725 case VNC_ENCODING_ZYWRLE
:
726 n
= vnc_zywrle_send_framebuffer_update(vs
, x
, y
, w
, h
);
729 vnc_framebuffer_update(vs
, x
, y
, w
, h
, VNC_ENCODING_RAW
);
730 n
= vnc_raw_send_framebuffer_update(vs
, x
, y
, w
, h
);
736 static void vnc_copy(VncState
*vs
, int src_x
, int src_y
, int dst_x
, int dst_y
, int w
, int h
)
738 /* send bitblit op to the vnc client */
740 vnc_write_u8(vs
, VNC_MSG_SERVER_FRAMEBUFFER_UPDATE
);
742 vnc_write_u16(vs
, 1); /* number of rects */
743 vnc_framebuffer_update(vs
, dst_x
, dst_y
, w
, h
, VNC_ENCODING_COPYRECT
);
744 vnc_write_u16(vs
, src_x
);
745 vnc_write_u16(vs
, src_y
);
746 vnc_unlock_output(vs
);
750 static void vnc_dpy_copy(DisplayChangeListener
*dcl
,
751 int src_x
, int src_y
,
752 int dst_x
, int dst_y
, int w
, int h
)
754 VncDisplay
*vd
= container_of(dcl
, VncDisplay
, dcl
);
758 int i
, x
, y
, pitch
, inc
, w_lim
, s
;
761 vnc_refresh_server_surface(vd
);
762 QTAILQ_FOREACH_SAFE(vs
, &vd
->clients
, next
, vn
) {
763 if (vnc_has_feature(vs
, VNC_FEATURE_COPYRECT
)) {
764 vs
->force_update
= 1;
765 vnc_update_client(vs
, 1, true);
766 /* vs might be free()ed here */
770 /* do bitblit op on the local surface too */
771 pitch
= vnc_server_fb_stride(vd
);
772 src_row
= vnc_server_fb_ptr(vd
, src_x
, src_y
);
773 dst_row
= vnc_server_fb_ptr(vd
, dst_x
, dst_y
);
778 src_row
+= pitch
* (h
-1);
779 dst_row
+= pitch
* (h
-1);
784 w_lim
= w
- (VNC_DIRTY_PIXELS_PER_BIT
- (dst_x
% VNC_DIRTY_PIXELS_PER_BIT
));
788 w_lim
= w
- (w_lim
% VNC_DIRTY_PIXELS_PER_BIT
);
790 for (i
= 0; i
< h
; i
++) {
791 for (x
= 0; x
<= w_lim
;
792 x
+= s
, src_row
+= cmp_bytes
, dst_row
+= cmp_bytes
) {
794 if ((s
= w
- w_lim
) == 0)
797 s
= (VNC_DIRTY_PIXELS_PER_BIT
-
798 (dst_x
% VNC_DIRTY_PIXELS_PER_BIT
));
801 s
= VNC_DIRTY_PIXELS_PER_BIT
;
803 cmp_bytes
= s
* VNC_SERVER_FB_BYTES
;
804 if (memcmp(src_row
, dst_row
, cmp_bytes
) == 0)
806 memmove(dst_row
, src_row
, cmp_bytes
);
807 QTAILQ_FOREACH(vs
, &vd
->clients
, next
) {
808 if (!vnc_has_feature(vs
, VNC_FEATURE_COPYRECT
)) {
809 set_bit(((x
+ dst_x
) / VNC_DIRTY_PIXELS_PER_BIT
),
814 src_row
+= pitch
- w
* VNC_SERVER_FB_BYTES
;
815 dst_row
+= pitch
- w
* VNC_SERVER_FB_BYTES
;
819 QTAILQ_FOREACH(vs
, &vd
->clients
, next
) {
820 if (vnc_has_feature(vs
, VNC_FEATURE_COPYRECT
)) {
821 vnc_copy(vs
, src_x
, src_y
, dst_x
, dst_y
, w
, h
);
826 static void vnc_mouse_set(DisplayChangeListener
*dcl
,
827 int x
, int y
, int visible
)
829 /* can we ask the client(s) to move the pointer ??? */
832 static int vnc_cursor_define(VncState
*vs
)
834 QEMUCursor
*c
= vs
->vd
->cursor
;
837 if (vnc_has_feature(vs
, VNC_FEATURE_RICH_CURSOR
)) {
839 vnc_write_u8(vs
, VNC_MSG_SERVER_FRAMEBUFFER_UPDATE
);
840 vnc_write_u8(vs
, 0); /* padding */
841 vnc_write_u16(vs
, 1); /* # of rects */
842 vnc_framebuffer_update(vs
, c
->hot_x
, c
->hot_y
, c
->width
, c
->height
,
843 VNC_ENCODING_RICH_CURSOR
);
844 isize
= c
->width
* c
->height
* vs
->client_pf
.bytes_per_pixel
;
845 vnc_write_pixels_generic(vs
, c
->data
, isize
);
846 vnc_write(vs
, vs
->vd
->cursor_mask
, vs
->vd
->cursor_msize
);
847 vnc_unlock_output(vs
);
853 static void vnc_dpy_cursor_define(DisplayChangeListener
*dcl
,
856 VncDisplay
*vd
= vnc_display
;
859 cursor_put(vd
->cursor
);
860 g_free(vd
->cursor_mask
);
863 cursor_get(vd
->cursor
);
864 vd
->cursor_msize
= cursor_get_mono_bpl(c
) * c
->height
;
865 vd
->cursor_mask
= g_malloc0(vd
->cursor_msize
);
866 cursor_get_mono_mask(c
, 0, vd
->cursor_mask
);
868 QTAILQ_FOREACH(vs
, &vd
->clients
, next
) {
869 vnc_cursor_define(vs
);
873 static int find_and_clear_dirty_height(struct VncState
*vs
,
874 int y
, int last_x
, int x
, int height
)
878 for (h
= 1; h
< (height
- y
); h
++) {
879 if (!test_bit(last_x
, vs
->dirty
[y
+ h
])) {
882 bitmap_clear(vs
->dirty
[y
+ h
], last_x
, x
- last_x
);
888 static int vnc_update_client(VncState
*vs
, int has_dirty
, bool sync
)
890 vs
->has_dirty
+= has_dirty
;
891 if (vs
->need_update
&& vs
->csock
!= -1) {
892 VncDisplay
*vd
= vs
->vd
;
898 if (vs
->output
.offset
&& !vs
->audio_cap
&& !vs
->force_update
)
899 /* kernel send buffers are full -> drop frames to throttle */
902 if (!vs
->has_dirty
&& !vs
->audio_cap
&& !vs
->force_update
)
906 * Send screen updates to the vnc client using the server
907 * surface and server dirty map. guest surface updates
908 * happening in parallel don't disturb us, the next pass will
909 * send them to the client.
911 job
= vnc_job_new(vs
);
913 height
= pixman_image_get_height(vd
->server
);
914 width
= pixman_image_get_width(vd
->server
);
920 unsigned long offset
= find_next_bit((unsigned long *) &vs
->dirty
,
921 height
* VNC_DIRTY_BPL(vs
),
922 y
* VNC_DIRTY_BPL(vs
));
923 if (offset
== height
* VNC_DIRTY_BPL(vs
)) {
924 /* no more dirty bits */
927 y
= offset
/ VNC_DIRTY_BPL(vs
);
928 x
= offset
% VNC_DIRTY_BPL(vs
);
929 x2
= find_next_zero_bit((unsigned long *) &vs
->dirty
[y
],
930 VNC_DIRTY_BPL(vs
), x
);
931 bitmap_clear(vs
->dirty
[y
], x
, x2
- x
);
932 h
= find_and_clear_dirty_height(vs
, y
, x
, x2
, height
);
933 x2
= MIN(x2
, width
/ VNC_DIRTY_PIXELS_PER_BIT
);
935 n
+= vnc_job_add_rect(job
, x
* VNC_DIRTY_PIXELS_PER_BIT
, y
,
936 (x2
- x
) * VNC_DIRTY_PIXELS_PER_BIT
, h
);
944 vs
->force_update
= 0;
949 if (vs
->csock
== -1) {
950 vnc_disconnect_finish(vs
);
959 static void audio_capture_notify(void *opaque
, audcnotification_e cmd
)
961 VncState
*vs
= opaque
;
964 case AUD_CNOTIFY_DISABLE
:
966 vnc_write_u8(vs
, VNC_MSG_SERVER_QEMU
);
967 vnc_write_u8(vs
, VNC_MSG_SERVER_QEMU_AUDIO
);
968 vnc_write_u16(vs
, VNC_MSG_SERVER_QEMU_AUDIO_END
);
969 vnc_unlock_output(vs
);
973 case AUD_CNOTIFY_ENABLE
:
975 vnc_write_u8(vs
, VNC_MSG_SERVER_QEMU
);
976 vnc_write_u8(vs
, VNC_MSG_SERVER_QEMU_AUDIO
);
977 vnc_write_u16(vs
, VNC_MSG_SERVER_QEMU_AUDIO_BEGIN
);
978 vnc_unlock_output(vs
);
984 static void audio_capture_destroy(void *opaque
)
988 static void audio_capture(void *opaque
, void *buf
, int size
)
990 VncState
*vs
= opaque
;
993 vnc_write_u8(vs
, VNC_MSG_SERVER_QEMU
);
994 vnc_write_u8(vs
, VNC_MSG_SERVER_QEMU_AUDIO
);
995 vnc_write_u16(vs
, VNC_MSG_SERVER_QEMU_AUDIO_DATA
);
996 vnc_write_u32(vs
, size
);
997 vnc_write(vs
, buf
, size
);
998 vnc_unlock_output(vs
);
1002 static void audio_add(VncState
*vs
)
1004 struct audio_capture_ops ops
;
1006 if (vs
->audio_cap
) {
1007 error_report("audio already running");
1011 ops
.notify
= audio_capture_notify
;
1012 ops
.destroy
= audio_capture_destroy
;
1013 ops
.capture
= audio_capture
;
1015 vs
->audio_cap
= AUD_add_capture(&vs
->as
, &ops
, vs
);
1016 if (!vs
->audio_cap
) {
1017 error_report("Failed to add audio capture");
1021 static void audio_del(VncState
*vs
)
1023 if (vs
->audio_cap
) {
1024 AUD_del_capture(vs
->audio_cap
, vs
);
1025 vs
->audio_cap
= NULL
;
1029 static void vnc_disconnect_start(VncState
*vs
)
1031 if (vs
->csock
== -1)
1033 vnc_set_share_mode(vs
, VNC_SHARE_MODE_DISCONNECTED
);
1034 qemu_set_fd_handler2(vs
->csock
, NULL
, NULL
, NULL
, NULL
);
1035 closesocket(vs
->csock
);
1039 void vnc_disconnect_finish(VncState
*vs
)
1043 vnc_jobs_join(vs
); /* Wait encoding jobs */
1045 vnc_lock_output(vs
);
1046 vnc_qmp_event(vs
, QAPI_EVENT_VNC_DISCONNECTED
);
1048 buffer_free(&vs
->input
);
1049 buffer_free(&vs
->output
);
1050 #ifdef CONFIG_VNC_WS
1051 buffer_free(&vs
->ws_input
);
1052 buffer_free(&vs
->ws_output
);
1053 #endif /* CONFIG_VNC_WS */
1055 qapi_free_VncClientInfo(vs
->info
);
1058 vnc_tight_clear(vs
);
1061 #ifdef CONFIG_VNC_TLS
1062 vnc_tls_client_cleanup(vs
);
1063 #endif /* CONFIG_VNC_TLS */
1064 #ifdef CONFIG_VNC_SASL
1065 vnc_sasl_client_cleanup(vs
);
1066 #endif /* CONFIG_VNC_SASL */
1068 vnc_release_modifiers(vs
);
1070 if (vs
->initialized
) {
1071 QTAILQ_REMOVE(&vs
->vd
->clients
, vs
, next
);
1072 qemu_remove_mouse_mode_change_notifier(&vs
->mouse_mode_notifier
);
1075 if (vs
->vd
->lock_key_sync
)
1076 qemu_remove_led_event_handler(vs
->led
);
1077 vnc_unlock_output(vs
);
1079 qemu_mutex_destroy(&vs
->output_mutex
);
1080 if (vs
->bh
!= NULL
) {
1081 qemu_bh_delete(vs
->bh
);
1083 buffer_free(&vs
->jobs_buffer
);
1085 for (i
= 0; i
< VNC_STAT_ROWS
; ++i
) {
1086 g_free(vs
->lossy_rect
[i
]);
1088 g_free(vs
->lossy_rect
);
1092 int vnc_client_io_error(VncState
*vs
, int ret
, int last_errno
)
1094 if (ret
== 0 || ret
== -1) {
1096 switch (last_errno
) {
1100 case WSAEWOULDBLOCK
:
1108 VNC_DEBUG("Closing down client sock: ret %d, errno %d\n",
1109 ret
, ret
< 0 ? last_errno
: 0);
1110 vnc_disconnect_start(vs
);
1118 void vnc_client_error(VncState
*vs
)
1120 VNC_DEBUG("Closing down client sock: protocol error\n");
1121 vnc_disconnect_start(vs
);
1124 #ifdef CONFIG_VNC_TLS
1125 static long vnc_client_write_tls(gnutls_session_t
*session
,
1126 const uint8_t *data
,
1129 long ret
= gnutls_write(*session
, data
, datalen
);
1131 if (ret
== GNUTLS_E_AGAIN
) {
1140 #endif /* CONFIG_VNC_TLS */
1143 * Called to write a chunk of data to the client socket. The data may
1144 * be the raw data, or may have already been encoded by SASL.
1145 * The data will be written either straight onto the socket, or
1146 * written via the GNUTLS wrappers, if TLS/SSL encryption is enabled
1148 * NB, it is theoretically possible to have 2 layers of encryption,
1149 * both SASL, and this TLS layer. It is highly unlikely in practice
1150 * though, since SASL encryption will typically be a no-op if TLS
1153 * Returns the number of bytes written, which may be less than
1154 * the requested 'datalen' if the socket would block. Returns
1155 * -1 on error, and disconnects the client socket.
1157 long vnc_client_write_buf(VncState
*vs
, const uint8_t *data
, size_t datalen
)
1160 #ifdef CONFIG_VNC_TLS
1161 if (vs
->tls
.session
) {
1162 ret
= vnc_client_write_tls(&vs
->tls
.session
, data
, datalen
);
1164 #ifdef CONFIG_VNC_WS
1165 if (vs
->ws_tls
.session
) {
1166 ret
= vnc_client_write_tls(&vs
->ws_tls
.session
, data
, datalen
);
1168 #endif /* CONFIG_VNC_WS */
1169 #endif /* CONFIG_VNC_TLS */
1171 ret
= send(vs
->csock
, (const void *)data
, datalen
, 0);
1173 #ifdef CONFIG_VNC_TLS
1175 #endif /* CONFIG_VNC_TLS */
1176 VNC_DEBUG("Wrote wire %p %zd -> %ld\n", data
, datalen
, ret
);
1177 return vnc_client_io_error(vs
, ret
, socket_error());
1182 * Called to write buffered data to the client socket, when not
1183 * using any SASL SSF encryption layers. Will write as much data
1184 * as possible without blocking. If all buffered data is written,
1185 * will switch the FD poll() handler back to read monitoring.
1187 * Returns the number of bytes written, which may be less than
1188 * the buffered output data if the socket would block. Returns
1189 * -1 on error, and disconnects the client socket.
1191 static long vnc_client_write_plain(VncState
*vs
)
1195 #ifdef CONFIG_VNC_SASL
1196 VNC_DEBUG("Write Plain: Pending output %p size %zd offset %zd. Wait SSF %d\n",
1197 vs
->output
.buffer
, vs
->output
.capacity
, vs
->output
.offset
,
1198 vs
->sasl
.waitWriteSSF
);
1200 if (vs
->sasl
.conn
&&
1202 vs
->sasl
.waitWriteSSF
) {
1203 ret
= vnc_client_write_buf(vs
, vs
->output
.buffer
, vs
->sasl
.waitWriteSSF
);
1205 vs
->sasl
.waitWriteSSF
-= ret
;
1207 #endif /* CONFIG_VNC_SASL */
1208 ret
= vnc_client_write_buf(vs
, vs
->output
.buffer
, vs
->output
.offset
);
1212 buffer_advance(&vs
->output
, ret
);
1214 if (vs
->output
.offset
== 0) {
1215 qemu_set_fd_handler2(vs
->csock
, NULL
, vnc_client_read
, NULL
, vs
);
1223 * First function called whenever there is data to be written to
1224 * the client socket. Will delegate actual work according to whether
1225 * SASL SSF layers are enabled (thus requiring encryption calls)
1227 static void vnc_client_write_locked(void *opaque
)
1229 VncState
*vs
= opaque
;
1231 #ifdef CONFIG_VNC_SASL
1232 if (vs
->sasl
.conn
&&
1234 !vs
->sasl
.waitWriteSSF
) {
1235 vnc_client_write_sasl(vs
);
1237 #endif /* CONFIG_VNC_SASL */
1239 #ifdef CONFIG_VNC_WS
1240 if (vs
->encode_ws
) {
1241 vnc_client_write_ws(vs
);
1243 #endif /* CONFIG_VNC_WS */
1245 vnc_client_write_plain(vs
);
1250 void vnc_client_write(void *opaque
)
1252 VncState
*vs
= opaque
;
1254 vnc_lock_output(vs
);
1255 if (vs
->output
.offset
1256 #ifdef CONFIG_VNC_WS
1257 || vs
->ws_output
.offset
1260 vnc_client_write_locked(opaque
);
1261 } else if (vs
->csock
!= -1) {
1262 qemu_set_fd_handler2(vs
->csock
, NULL
, vnc_client_read
, NULL
, vs
);
1264 vnc_unlock_output(vs
);
1267 void vnc_read_when(VncState
*vs
, VncReadEvent
*func
, size_t expecting
)
1269 vs
->read_handler
= func
;
1270 vs
->read_handler_expect
= expecting
;
1273 #ifdef CONFIG_VNC_TLS
1274 static long vnc_client_read_tls(gnutls_session_t
*session
, uint8_t *data
,
1277 long ret
= gnutls_read(*session
, data
, datalen
);
1279 if (ret
== GNUTLS_E_AGAIN
) {
1288 #endif /* CONFIG_VNC_TLS */
1291 * Called to read a chunk of data from the client socket. The data may
1292 * be the raw data, or may need to be further decoded by SASL.
1293 * The data will be read either straight from to the socket, or
1294 * read via the GNUTLS wrappers, if TLS/SSL encryption is enabled
1296 * NB, it is theoretically possible to have 2 layers of encryption,
1297 * both SASL, and this TLS layer. It is highly unlikely in practice
1298 * though, since SASL encryption will typically be a no-op if TLS
1301 * Returns the number of bytes read, which may be less than
1302 * the requested 'datalen' if the socket would block. Returns
1303 * -1 on error, and disconnects the client socket.
1305 long vnc_client_read_buf(VncState
*vs
, uint8_t *data
, size_t datalen
)
1308 #ifdef CONFIG_VNC_TLS
1309 if (vs
->tls
.session
) {
1310 ret
= vnc_client_read_tls(&vs
->tls
.session
, data
, datalen
);
1312 #ifdef CONFIG_VNC_WS
1313 if (vs
->ws_tls
.session
) {
1314 ret
= vnc_client_read_tls(&vs
->ws_tls
.session
, data
, datalen
);
1316 #endif /* CONFIG_VNC_WS */
1317 #endif /* CONFIG_VNC_TLS */
1319 ret
= qemu_recv(vs
->csock
, data
, datalen
, 0);
1321 #ifdef CONFIG_VNC_TLS
1323 #endif /* CONFIG_VNC_TLS */
1324 VNC_DEBUG("Read wire %p %zd -> %ld\n", data
, datalen
, ret
);
1325 return vnc_client_io_error(vs
, ret
, socket_error());
1330 * Called to read data from the client socket to the input buffer,
1331 * when not using any SASL SSF encryption layers. Will read as much
1332 * data as possible without blocking.
1334 * Returns the number of bytes read. Returns -1 on error, and
1335 * disconnects the client socket.
1337 static long vnc_client_read_plain(VncState
*vs
)
1340 VNC_DEBUG("Read plain %p size %zd offset %zd\n",
1341 vs
->input
.buffer
, vs
->input
.capacity
, vs
->input
.offset
);
1342 buffer_reserve(&vs
->input
, 4096);
1343 ret
= vnc_client_read_buf(vs
, buffer_end(&vs
->input
), 4096);
1346 vs
->input
.offset
+= ret
;
1350 static void vnc_jobs_bh(void *opaque
)
1352 VncState
*vs
= opaque
;
1354 vnc_jobs_consume_buffer(vs
);
1358 * First function called whenever there is more data to be read from
1359 * the client socket. Will delegate actual work according to whether
1360 * SASL SSF layers are enabled (thus requiring decryption calls)
1362 void vnc_client_read(void *opaque
)
1364 VncState
*vs
= opaque
;
1367 #ifdef CONFIG_VNC_SASL
1368 if (vs
->sasl
.conn
&& vs
->sasl
.runSSF
)
1369 ret
= vnc_client_read_sasl(vs
);
1371 #endif /* CONFIG_VNC_SASL */
1372 #ifdef CONFIG_VNC_WS
1373 if (vs
->encode_ws
) {
1374 ret
= vnc_client_read_ws(vs
);
1376 vnc_disconnect_start(vs
);
1378 } else if (ret
== -2) {
1379 vnc_client_error(vs
);
1383 #endif /* CONFIG_VNC_WS */
1385 ret
= vnc_client_read_plain(vs
);
1388 if (vs
->csock
== -1)
1389 vnc_disconnect_finish(vs
);
1393 while (vs
->read_handler
&& vs
->input
.offset
>= vs
->read_handler_expect
) {
1394 size_t len
= vs
->read_handler_expect
;
1397 ret
= vs
->read_handler(vs
, vs
->input
.buffer
, len
);
1398 if (vs
->csock
== -1) {
1399 vnc_disconnect_finish(vs
);
1404 buffer_advance(&vs
->input
, len
);
1406 vs
->read_handler_expect
= ret
;
1411 void vnc_write(VncState
*vs
, const void *data
, size_t len
)
1413 buffer_reserve(&vs
->output
, len
);
1415 if (vs
->csock
!= -1 && buffer_empty(&vs
->output
)) {
1416 qemu_set_fd_handler2(vs
->csock
, NULL
, vnc_client_read
, vnc_client_write
, vs
);
1419 buffer_append(&vs
->output
, data
, len
);
1422 void vnc_write_s32(VncState
*vs
, int32_t value
)
1424 vnc_write_u32(vs
, *(uint32_t *)&value
);
1427 void vnc_write_u32(VncState
*vs
, uint32_t value
)
1431 buf
[0] = (value
>> 24) & 0xFF;
1432 buf
[1] = (value
>> 16) & 0xFF;
1433 buf
[2] = (value
>> 8) & 0xFF;
1434 buf
[3] = value
& 0xFF;
1436 vnc_write(vs
, buf
, 4);
1439 void vnc_write_u16(VncState
*vs
, uint16_t value
)
1443 buf
[0] = (value
>> 8) & 0xFF;
1444 buf
[1] = value
& 0xFF;
1446 vnc_write(vs
, buf
, 2);
1449 void vnc_write_u8(VncState
*vs
, uint8_t value
)
1451 vnc_write(vs
, (char *)&value
, 1);
1454 void vnc_flush(VncState
*vs
)
1456 vnc_lock_output(vs
);
1457 if (vs
->csock
!= -1 && (vs
->output
.offset
1458 #ifdef CONFIG_VNC_WS
1459 || vs
->ws_output
.offset
1462 vnc_client_write_locked(vs
);
1464 vnc_unlock_output(vs
);
1467 static uint8_t read_u8(uint8_t *data
, size_t offset
)
1469 return data
[offset
];
1472 static uint16_t read_u16(uint8_t *data
, size_t offset
)
1474 return ((data
[offset
] & 0xFF) << 8) | (data
[offset
+ 1] & 0xFF);
1477 static int32_t read_s32(uint8_t *data
, size_t offset
)
1479 return (int32_t)((data
[offset
] << 24) | (data
[offset
+ 1] << 16) |
1480 (data
[offset
+ 2] << 8) | data
[offset
+ 3]);
1483 uint32_t read_u32(uint8_t *data
, size_t offset
)
1485 return ((data
[offset
] << 24) | (data
[offset
+ 1] << 16) |
1486 (data
[offset
+ 2] << 8) | data
[offset
+ 3]);
1489 static void client_cut_text(VncState
*vs
, size_t len
, uint8_t *text
)
1493 static void check_pointer_type_change(Notifier
*notifier
, void *data
)
1495 VncState
*vs
= container_of(notifier
, VncState
, mouse_mode_notifier
);
1496 int absolute
= qemu_input_is_absolute();
1498 if (vnc_has_feature(vs
, VNC_FEATURE_POINTER_TYPE_CHANGE
) && vs
->absolute
!= absolute
) {
1499 vnc_lock_output(vs
);
1500 vnc_write_u8(vs
, VNC_MSG_SERVER_FRAMEBUFFER_UPDATE
);
1501 vnc_write_u8(vs
, 0);
1502 vnc_write_u16(vs
, 1);
1503 vnc_framebuffer_update(vs
, absolute
, 0,
1504 pixman_image_get_width(vs
->vd
->server
),
1505 pixman_image_get_height(vs
->vd
->server
),
1506 VNC_ENCODING_POINTER_TYPE_CHANGE
);
1507 vnc_unlock_output(vs
);
1510 vs
->absolute
= absolute
;
1513 static void pointer_event(VncState
*vs
, int button_mask
, int x
, int y
)
1515 static uint32_t bmap
[INPUT_BUTTON_MAX
] = {
1516 [INPUT_BUTTON_LEFT
] = 0x01,
1517 [INPUT_BUTTON_MIDDLE
] = 0x02,
1518 [INPUT_BUTTON_RIGHT
] = 0x04,
1519 [INPUT_BUTTON_WHEEL_UP
] = 0x08,
1520 [INPUT_BUTTON_WHEEL_DOWN
] = 0x10,
1522 QemuConsole
*con
= vs
->vd
->dcl
.con
;
1523 int width
= pixman_image_get_width(vs
->vd
->server
);
1524 int height
= pixman_image_get_height(vs
->vd
->server
);
1526 if (vs
->last_bmask
!= button_mask
) {
1527 qemu_input_update_buttons(con
, bmap
, vs
->last_bmask
, button_mask
);
1528 vs
->last_bmask
= button_mask
;
1532 qemu_input_queue_abs(con
, INPUT_AXIS_X
, x
, width
);
1533 qemu_input_queue_abs(con
, INPUT_AXIS_Y
, y
, height
);
1534 } else if (vnc_has_feature(vs
, VNC_FEATURE_POINTER_TYPE_CHANGE
)) {
1535 qemu_input_queue_rel(con
, INPUT_AXIS_X
, x
- 0x7FFF);
1536 qemu_input_queue_rel(con
, INPUT_AXIS_Y
, y
- 0x7FFF);
1538 if (vs
->last_x
!= -1) {
1539 qemu_input_queue_rel(con
, INPUT_AXIS_X
, x
- vs
->last_x
);
1540 qemu_input_queue_rel(con
, INPUT_AXIS_Y
, y
- vs
->last_y
);
1545 qemu_input_event_sync();
1548 static void reset_keys(VncState
*vs
)
1551 for(i
= 0; i
< 256; i
++) {
1552 if (vs
->modifiers_state
[i
]) {
1553 qemu_input_event_send_key_number(vs
->vd
->dcl
.con
, i
, false);
1554 vs
->modifiers_state
[i
] = 0;
1559 static void press_key(VncState
*vs
, int keysym
)
1561 int keycode
= keysym2scancode(vs
->vd
->kbd_layout
, keysym
) & SCANCODE_KEYMASK
;
1562 qemu_input_event_send_key_number(vs
->vd
->dcl
.con
, keycode
, true);
1563 qemu_input_event_send_key_delay(0);
1564 qemu_input_event_send_key_number(vs
->vd
->dcl
.con
, keycode
, false);
1565 qemu_input_event_send_key_delay(0);
1568 static int current_led_state(VncState
*vs
)
1572 if (vs
->modifiers_state
[0x46]) {
1573 ledstate
|= QEMU_SCROLL_LOCK_LED
;
1575 if (vs
->modifiers_state
[0x45]) {
1576 ledstate
|= QEMU_NUM_LOCK_LED
;
1578 if (vs
->modifiers_state
[0x3a]) {
1579 ledstate
|= QEMU_CAPS_LOCK_LED
;
1585 static void vnc_led_state_change(VncState
*vs
)
1589 if (!vnc_has_feature(vs
, VNC_FEATURE_LED_STATE
)) {
1593 ledstate
= current_led_state(vs
);
1594 vnc_lock_output(vs
);
1595 vnc_write_u8(vs
, VNC_MSG_SERVER_FRAMEBUFFER_UPDATE
);
1596 vnc_write_u8(vs
, 0);
1597 vnc_write_u16(vs
, 1);
1598 vnc_framebuffer_update(vs
, 0, 0, 1, 1, VNC_ENCODING_LED_STATE
);
1599 vnc_write_u8(vs
, ledstate
);
1600 vnc_unlock_output(vs
);
1604 static void kbd_leds(void *opaque
, int ledstate
)
1606 VncState
*vs
= opaque
;
1608 bool has_changed
= (ledstate
!= current_led_state(vs
));
1610 trace_vnc_key_guest_leds((ledstate
& QEMU_CAPS_LOCK_LED
),
1611 (ledstate
& QEMU_NUM_LOCK_LED
),
1612 (ledstate
& QEMU_SCROLL_LOCK_LED
));
1614 caps
= ledstate
& QEMU_CAPS_LOCK_LED
? 1 : 0;
1615 num
= ledstate
& QEMU_NUM_LOCK_LED
? 1 : 0;
1616 scr
= ledstate
& QEMU_SCROLL_LOCK_LED
? 1 : 0;
1618 if (vs
->modifiers_state
[0x3a] != caps
) {
1619 vs
->modifiers_state
[0x3a] = caps
;
1621 if (vs
->modifiers_state
[0x45] != num
) {
1622 vs
->modifiers_state
[0x45] = num
;
1624 if (vs
->modifiers_state
[0x46] != scr
) {
1625 vs
->modifiers_state
[0x46] = scr
;
1628 /* Sending the current led state message to the client */
1630 vnc_led_state_change(vs
);
1634 static void do_key_event(VncState
*vs
, int down
, int keycode
, int sym
)
1636 /* QEMU console switch */
1638 case 0x2a: /* Left Shift */
1639 case 0x36: /* Right Shift */
1640 case 0x1d: /* Left CTRL */
1641 case 0x9d: /* Right CTRL */
1642 case 0x38: /* Left ALT */
1643 case 0xb8: /* Right ALT */
1645 vs
->modifiers_state
[keycode
] = 1;
1647 vs
->modifiers_state
[keycode
] = 0;
1649 case 0x02 ... 0x0a: /* '1' to '9' keys */
1650 if (down
&& vs
->modifiers_state
[0x1d] && vs
->modifiers_state
[0x38]) {
1651 /* Reset the modifiers sent to the current console */
1653 console_select(keycode
- 0x02);
1657 case 0x3a: /* CapsLock */
1658 case 0x45: /* NumLock */
1660 vs
->modifiers_state
[keycode
] ^= 1;
1664 /* Turn off the lock state sync logic if the client support the led
1667 if (down
&& vs
->vd
->lock_key_sync
&&
1668 !vnc_has_feature(vs
, VNC_FEATURE_LED_STATE
) &&
1669 keycode_is_keypad(vs
->vd
->kbd_layout
, keycode
)) {
1670 /* If the numlock state needs to change then simulate an additional
1671 keypress before sending this one. This will happen if the user
1672 toggles numlock away from the VNC window.
1674 if (keysym_is_numlock(vs
->vd
->kbd_layout
, sym
& 0xFFFF)) {
1675 if (!vs
->modifiers_state
[0x45]) {
1676 trace_vnc_key_sync_numlock(true);
1677 vs
->modifiers_state
[0x45] = 1;
1678 press_key(vs
, 0xff7f);
1681 if (vs
->modifiers_state
[0x45]) {
1682 trace_vnc_key_sync_numlock(false);
1683 vs
->modifiers_state
[0x45] = 0;
1684 press_key(vs
, 0xff7f);
1689 if (down
&& vs
->vd
->lock_key_sync
&&
1690 !vnc_has_feature(vs
, VNC_FEATURE_LED_STATE
) &&
1691 ((sym
>= 'A' && sym
<= 'Z') || (sym
>= 'a' && sym
<= 'z'))) {
1692 /* If the capslock state needs to change then simulate an additional
1693 keypress before sending this one. This will happen if the user
1694 toggles capslock away from the VNC window.
1696 int uppercase
= !!(sym
>= 'A' && sym
<= 'Z');
1697 int shift
= !!(vs
->modifiers_state
[0x2a] | vs
->modifiers_state
[0x36]);
1698 int capslock
= !!(vs
->modifiers_state
[0x3a]);
1700 if (uppercase
== shift
) {
1701 trace_vnc_key_sync_capslock(false);
1702 vs
->modifiers_state
[0x3a] = 0;
1703 press_key(vs
, 0xffe5);
1706 if (uppercase
!= shift
) {
1707 trace_vnc_key_sync_capslock(true);
1708 vs
->modifiers_state
[0x3a] = 1;
1709 press_key(vs
, 0xffe5);
1714 if (qemu_console_is_graphic(NULL
)) {
1715 qemu_input_event_send_key_number(vs
->vd
->dcl
.con
, keycode
, down
);
1717 bool numlock
= vs
->modifiers_state
[0x45];
1718 bool control
= (vs
->modifiers_state
[0x1d] ||
1719 vs
->modifiers_state
[0x9d]);
1720 /* QEMU console emulation */
1723 case 0x2a: /* Left Shift */
1724 case 0x36: /* Right Shift */
1725 case 0x1d: /* Left CTRL */
1726 case 0x9d: /* Right CTRL */
1727 case 0x38: /* Left ALT */
1728 case 0xb8: /* Right ALT */
1731 kbd_put_keysym(QEMU_KEY_UP
);
1734 kbd_put_keysym(QEMU_KEY_DOWN
);
1737 kbd_put_keysym(QEMU_KEY_LEFT
);
1740 kbd_put_keysym(QEMU_KEY_RIGHT
);
1743 kbd_put_keysym(QEMU_KEY_DELETE
);
1746 kbd_put_keysym(QEMU_KEY_HOME
);
1749 kbd_put_keysym(QEMU_KEY_END
);
1752 kbd_put_keysym(QEMU_KEY_PAGEUP
);
1755 kbd_put_keysym(QEMU_KEY_PAGEDOWN
);
1759 kbd_put_keysym(numlock
? '7' : QEMU_KEY_HOME
);
1762 kbd_put_keysym(numlock
? '8' : QEMU_KEY_UP
);
1765 kbd_put_keysym(numlock
? '9' : QEMU_KEY_PAGEUP
);
1768 kbd_put_keysym(numlock
? '4' : QEMU_KEY_LEFT
);
1771 kbd_put_keysym('5');
1774 kbd_put_keysym(numlock
? '6' : QEMU_KEY_RIGHT
);
1777 kbd_put_keysym(numlock
? '1' : QEMU_KEY_END
);
1780 kbd_put_keysym(numlock
? '2' : QEMU_KEY_DOWN
);
1783 kbd_put_keysym(numlock
? '3' : QEMU_KEY_PAGEDOWN
);
1786 kbd_put_keysym('0');
1789 kbd_put_keysym(numlock
? '.' : QEMU_KEY_DELETE
);
1793 kbd_put_keysym('/');
1796 kbd_put_keysym('*');
1799 kbd_put_keysym('-');
1802 kbd_put_keysym('+');
1805 kbd_put_keysym('\n');
1810 kbd_put_keysym(sym
& 0x1f);
1812 kbd_put_keysym(sym
);
1820 static void vnc_release_modifiers(VncState
*vs
)
1822 static const int keycodes
[] = {
1823 /* shift, control, alt keys, both left & right */
1824 0x2a, 0x36, 0x1d, 0x9d, 0x38, 0xb8,
1828 if (!qemu_console_is_graphic(NULL
)) {
1831 for (i
= 0; i
< ARRAY_SIZE(keycodes
); i
++) {
1832 keycode
= keycodes
[i
];
1833 if (!vs
->modifiers_state
[keycode
]) {
1836 qemu_input_event_send_key_number(vs
->vd
->dcl
.con
, keycode
, false);
1840 static const char *code2name(int keycode
)
1842 return QKeyCode_lookup
[qemu_input_key_number_to_qcode(keycode
)];
1845 static void key_event(VncState
*vs
, int down
, uint32_t sym
)
1850 if (lsym
>= 'A' && lsym
<= 'Z' && qemu_console_is_graphic(NULL
)) {
1851 lsym
= lsym
- 'A' + 'a';
1854 keycode
= keysym2scancode(vs
->vd
->kbd_layout
, lsym
& 0xFFFF) & SCANCODE_KEYMASK
;
1855 trace_vnc_key_event_map(down
, sym
, keycode
, code2name(keycode
));
1856 do_key_event(vs
, down
, keycode
, sym
);
1859 static void ext_key_event(VncState
*vs
, int down
,
1860 uint32_t sym
, uint16_t keycode
)
1862 /* if the user specifies a keyboard layout, always use it */
1863 if (keyboard_layout
) {
1864 key_event(vs
, down
, sym
);
1866 trace_vnc_key_event_ext(down
, sym
, keycode
, code2name(keycode
));
1867 do_key_event(vs
, down
, keycode
, sym
);
1871 static void framebuffer_update_request(VncState
*vs
, int incremental
,
1872 int x
, int y
, int w
, int h
)
1874 int width
= pixman_image_get_width(vs
->vd
->server
);
1875 int height
= pixman_image_get_height(vs
->vd
->server
);
1877 vs
->need_update
= 1;
1883 vs
->force_update
= 1;
1884 vnc_set_area_dirty(vs
->dirty
, width
, height
, x
, y
, w
, h
);
1887 static void send_ext_key_event_ack(VncState
*vs
)
1889 vnc_lock_output(vs
);
1890 vnc_write_u8(vs
, VNC_MSG_SERVER_FRAMEBUFFER_UPDATE
);
1891 vnc_write_u8(vs
, 0);
1892 vnc_write_u16(vs
, 1);
1893 vnc_framebuffer_update(vs
, 0, 0,
1894 pixman_image_get_width(vs
->vd
->server
),
1895 pixman_image_get_height(vs
->vd
->server
),
1896 VNC_ENCODING_EXT_KEY_EVENT
);
1897 vnc_unlock_output(vs
);
1901 static void send_ext_audio_ack(VncState
*vs
)
1903 vnc_lock_output(vs
);
1904 vnc_write_u8(vs
, VNC_MSG_SERVER_FRAMEBUFFER_UPDATE
);
1905 vnc_write_u8(vs
, 0);
1906 vnc_write_u16(vs
, 1);
1907 vnc_framebuffer_update(vs
, 0, 0,
1908 pixman_image_get_width(vs
->vd
->server
),
1909 pixman_image_get_height(vs
->vd
->server
),
1910 VNC_ENCODING_AUDIO
);
1911 vnc_unlock_output(vs
);
1915 static void set_encodings(VncState
*vs
, int32_t *encodings
, size_t n_encodings
)
1918 unsigned int enc
= 0;
1921 vs
->vnc_encoding
= 0;
1922 vs
->tight
.compression
= 9;
1923 vs
->tight
.quality
= -1; /* Lossless by default */
1927 * Start from the end because the encodings are sent in order of preference.
1928 * This way the preferred encoding (first encoding defined in the array)
1929 * will be set at the end of the loop.
1931 for (i
= n_encodings
- 1; i
>= 0; i
--) {
1934 case VNC_ENCODING_RAW
:
1935 vs
->vnc_encoding
= enc
;
1937 case VNC_ENCODING_COPYRECT
:
1938 vs
->features
|= VNC_FEATURE_COPYRECT_MASK
;
1940 case VNC_ENCODING_HEXTILE
:
1941 vs
->features
|= VNC_FEATURE_HEXTILE_MASK
;
1942 vs
->vnc_encoding
= enc
;
1944 case VNC_ENCODING_TIGHT
:
1945 vs
->features
|= VNC_FEATURE_TIGHT_MASK
;
1946 vs
->vnc_encoding
= enc
;
1948 #ifdef CONFIG_VNC_PNG
1949 case VNC_ENCODING_TIGHT_PNG
:
1950 vs
->features
|= VNC_FEATURE_TIGHT_PNG_MASK
;
1951 vs
->vnc_encoding
= enc
;
1954 case VNC_ENCODING_ZLIB
:
1955 vs
->features
|= VNC_FEATURE_ZLIB_MASK
;
1956 vs
->vnc_encoding
= enc
;
1958 case VNC_ENCODING_ZRLE
:
1959 vs
->features
|= VNC_FEATURE_ZRLE_MASK
;
1960 vs
->vnc_encoding
= enc
;
1962 case VNC_ENCODING_ZYWRLE
:
1963 vs
->features
|= VNC_FEATURE_ZYWRLE_MASK
;
1964 vs
->vnc_encoding
= enc
;
1966 case VNC_ENCODING_DESKTOPRESIZE
:
1967 vs
->features
|= VNC_FEATURE_RESIZE_MASK
;
1969 case VNC_ENCODING_POINTER_TYPE_CHANGE
:
1970 vs
->features
|= VNC_FEATURE_POINTER_TYPE_CHANGE_MASK
;
1972 case VNC_ENCODING_RICH_CURSOR
:
1973 vs
->features
|= VNC_FEATURE_RICH_CURSOR_MASK
;
1975 case VNC_ENCODING_EXT_KEY_EVENT
:
1976 send_ext_key_event_ack(vs
);
1978 case VNC_ENCODING_AUDIO
:
1979 send_ext_audio_ack(vs
);
1981 case VNC_ENCODING_WMVi
:
1982 vs
->features
|= VNC_FEATURE_WMVI_MASK
;
1984 case VNC_ENCODING_LED_STATE
:
1985 vs
->features
|= VNC_FEATURE_LED_STATE_MASK
;
1987 case VNC_ENCODING_COMPRESSLEVEL0
... VNC_ENCODING_COMPRESSLEVEL0
+ 9:
1988 vs
->tight
.compression
= (enc
& 0x0F);
1990 case VNC_ENCODING_QUALITYLEVEL0
... VNC_ENCODING_QUALITYLEVEL0
+ 9:
1991 if (vs
->vd
->lossy
) {
1992 vs
->tight
.quality
= (enc
& 0x0F);
1996 VNC_DEBUG("Unknown encoding: %d (0x%.8x): %d\n", i
, enc
, enc
);
2000 vnc_desktop_resize(vs
);
2001 check_pointer_type_change(&vs
->mouse_mode_notifier
, NULL
);
2002 vnc_led_state_change(vs
);
2005 static void set_pixel_conversion(VncState
*vs
)
2007 pixman_format_code_t fmt
= qemu_pixman_get_format(&vs
->client_pf
);
2009 if (fmt
== VNC_SERVER_FB_FORMAT
) {
2010 vs
->write_pixels
= vnc_write_pixels_copy
;
2011 vnc_hextile_set_pixel_conversion(vs
, 0);
2013 vs
->write_pixels
= vnc_write_pixels_generic
;
2014 vnc_hextile_set_pixel_conversion(vs
, 1);
2018 static void set_pixel_format(VncState
*vs
,
2019 int bits_per_pixel
, int depth
,
2020 int big_endian_flag
, int true_color_flag
,
2021 int red_max
, int green_max
, int blue_max
,
2022 int red_shift
, int green_shift
, int blue_shift
)
2024 if (!true_color_flag
) {
2025 vnc_client_error(vs
);
2029 vs
->client_pf
.rmax
= red_max
;
2030 vs
->client_pf
.rbits
= hweight_long(red_max
);
2031 vs
->client_pf
.rshift
= red_shift
;
2032 vs
->client_pf
.rmask
= red_max
<< red_shift
;
2033 vs
->client_pf
.gmax
= green_max
;
2034 vs
->client_pf
.gbits
= hweight_long(green_max
);
2035 vs
->client_pf
.gshift
= green_shift
;
2036 vs
->client_pf
.gmask
= green_max
<< green_shift
;
2037 vs
->client_pf
.bmax
= blue_max
;
2038 vs
->client_pf
.bbits
= hweight_long(blue_max
);
2039 vs
->client_pf
.bshift
= blue_shift
;
2040 vs
->client_pf
.bmask
= blue_max
<< blue_shift
;
2041 vs
->client_pf
.bits_per_pixel
= bits_per_pixel
;
2042 vs
->client_pf
.bytes_per_pixel
= bits_per_pixel
/ 8;
2043 vs
->client_pf
.depth
= bits_per_pixel
== 32 ? 24 : bits_per_pixel
;
2044 vs
->client_be
= big_endian_flag
;
2046 set_pixel_conversion(vs
);
2048 graphic_hw_invalidate(NULL
);
2049 graphic_hw_update(NULL
);
2052 static void pixel_format_message (VncState
*vs
) {
2053 char pad
[3] = { 0, 0, 0 };
2055 vs
->client_pf
= qemu_default_pixelformat(32);
2057 vnc_write_u8(vs
, vs
->client_pf
.bits_per_pixel
); /* bits-per-pixel */
2058 vnc_write_u8(vs
, vs
->client_pf
.depth
); /* depth */
2060 #ifdef HOST_WORDS_BIGENDIAN
2061 vnc_write_u8(vs
, 1); /* big-endian-flag */
2063 vnc_write_u8(vs
, 0); /* big-endian-flag */
2065 vnc_write_u8(vs
, 1); /* true-color-flag */
2066 vnc_write_u16(vs
, vs
->client_pf
.rmax
); /* red-max */
2067 vnc_write_u16(vs
, vs
->client_pf
.gmax
); /* green-max */
2068 vnc_write_u16(vs
, vs
->client_pf
.bmax
); /* blue-max */
2069 vnc_write_u8(vs
, vs
->client_pf
.rshift
); /* red-shift */
2070 vnc_write_u8(vs
, vs
->client_pf
.gshift
); /* green-shift */
2071 vnc_write_u8(vs
, vs
->client_pf
.bshift
); /* blue-shift */
2072 vnc_write(vs
, pad
, 3); /* padding */
2074 vnc_hextile_set_pixel_conversion(vs
, 0);
2075 vs
->write_pixels
= vnc_write_pixels_copy
;
2078 static void vnc_colordepth(VncState
*vs
)
2080 if (vnc_has_feature(vs
, VNC_FEATURE_WMVI
)) {
2081 /* Sending a WMVi message to notify the client*/
2082 vnc_lock_output(vs
);
2083 vnc_write_u8(vs
, VNC_MSG_SERVER_FRAMEBUFFER_UPDATE
);
2084 vnc_write_u8(vs
, 0);
2085 vnc_write_u16(vs
, 1); /* number of rects */
2086 vnc_framebuffer_update(vs
, 0, 0,
2087 pixman_image_get_width(vs
->vd
->server
),
2088 pixman_image_get_height(vs
->vd
->server
),
2090 pixel_format_message(vs
);
2091 vnc_unlock_output(vs
);
2094 set_pixel_conversion(vs
);
2098 static int protocol_client_msg(VncState
*vs
, uint8_t *data
, size_t len
)
2102 VncDisplay
*vd
= vs
->vd
;
2105 update_displaychangelistener(&vd
->dcl
, VNC_REFRESH_INTERVAL_BASE
);
2109 case VNC_MSG_CLIENT_SET_PIXEL_FORMAT
:
2113 set_pixel_format(vs
, read_u8(data
, 4), read_u8(data
, 5),
2114 read_u8(data
, 6), read_u8(data
, 7),
2115 read_u16(data
, 8), read_u16(data
, 10),
2116 read_u16(data
, 12), read_u8(data
, 14),
2117 read_u8(data
, 15), read_u8(data
, 16));
2119 case VNC_MSG_CLIENT_SET_ENCODINGS
:
2124 limit
= read_u16(data
, 2);
2126 return 4 + (limit
* 4);
2128 limit
= read_u16(data
, 2);
2130 for (i
= 0; i
< limit
; i
++) {
2131 int32_t val
= read_s32(data
, 4 + (i
* 4));
2132 memcpy(data
+ 4 + (i
* 4), &val
, sizeof(val
));
2135 set_encodings(vs
, (int32_t *)(data
+ 4), limit
);
2137 case VNC_MSG_CLIENT_FRAMEBUFFER_UPDATE_REQUEST
:
2141 framebuffer_update_request(vs
,
2142 read_u8(data
, 1), read_u16(data
, 2), read_u16(data
, 4),
2143 read_u16(data
, 6), read_u16(data
, 8));
2145 case VNC_MSG_CLIENT_KEY_EVENT
:
2149 key_event(vs
, read_u8(data
, 1), read_u32(data
, 4));
2151 case VNC_MSG_CLIENT_POINTER_EVENT
:
2155 pointer_event(vs
, read_u8(data
, 1), read_u16(data
, 2), read_u16(data
, 4));
2157 case VNC_MSG_CLIENT_CUT_TEXT
:
2162 uint32_t dlen
= read_u32(data
, 4);
2163 if (dlen
> (1 << 20)) {
2164 error_report("vnc: client_cut_text msg payload has %u bytes"
2165 " which exceeds our limit of 1MB.", dlen
);
2166 vnc_client_error(vs
);
2174 client_cut_text(vs
, read_u32(data
, 4), data
+ 8);
2176 case VNC_MSG_CLIENT_QEMU
:
2180 switch (read_u8(data
, 1)) {
2181 case VNC_MSG_CLIENT_QEMU_EXT_KEY_EVENT
:
2185 ext_key_event(vs
, read_u16(data
, 2),
2186 read_u32(data
, 4), read_u32(data
, 8));
2188 case VNC_MSG_CLIENT_QEMU_AUDIO
:
2192 switch (read_u16 (data
, 2)) {
2193 case VNC_MSG_CLIENT_QEMU_AUDIO_ENABLE
:
2196 case VNC_MSG_CLIENT_QEMU_AUDIO_DISABLE
:
2199 case VNC_MSG_CLIENT_QEMU_AUDIO_SET_FORMAT
:
2202 switch (read_u8(data
, 4)) {
2203 case 0: vs
->as
.fmt
= AUD_FMT_U8
; break;
2204 case 1: vs
->as
.fmt
= AUD_FMT_S8
; break;
2205 case 2: vs
->as
.fmt
= AUD_FMT_U16
; break;
2206 case 3: vs
->as
.fmt
= AUD_FMT_S16
; break;
2207 case 4: vs
->as
.fmt
= AUD_FMT_U32
; break;
2208 case 5: vs
->as
.fmt
= AUD_FMT_S32
; break;
2210 printf("Invalid audio format %d\n", read_u8(data
, 4));
2211 vnc_client_error(vs
);
2214 vs
->as
.nchannels
= read_u8(data
, 5);
2215 if (vs
->as
.nchannels
!= 1 && vs
->as
.nchannels
!= 2) {
2216 printf("Invalid audio channel coount %d\n",
2218 vnc_client_error(vs
);
2221 vs
->as
.freq
= read_u32(data
, 6);
2224 printf ("Invalid audio message %d\n", read_u8(data
, 4));
2225 vnc_client_error(vs
);
2231 printf("Msg: %d\n", read_u16(data
, 0));
2232 vnc_client_error(vs
);
2237 printf("Msg: %d\n", data
[0]);
2238 vnc_client_error(vs
);
2242 vnc_read_when(vs
, protocol_client_msg
, 1);
2246 static int protocol_client_init(VncState
*vs
, uint8_t *data
, size_t len
)
2252 mode
= data
[0] ? VNC_SHARE_MODE_SHARED
: VNC_SHARE_MODE_EXCLUSIVE
;
2253 switch (vs
->vd
->share_policy
) {
2254 case VNC_SHARE_POLICY_IGNORE
:
2256 * Ignore the shared flag. Nothing to do here.
2258 * Doesn't conform to the rfb spec but is traditional qemu
2259 * behavior, thus left here as option for compatibility
2263 case VNC_SHARE_POLICY_ALLOW_EXCLUSIVE
:
2265 * Policy: Allow clients ask for exclusive access.
2267 * Implementation: When a client asks for exclusive access,
2268 * disconnect all others. Shared connects are allowed as long
2269 * as no exclusive connection exists.
2271 * This is how the rfb spec suggests to handle the shared flag.
2273 if (mode
== VNC_SHARE_MODE_EXCLUSIVE
) {
2275 QTAILQ_FOREACH(client
, &vs
->vd
->clients
, next
) {
2279 if (client
->share_mode
!= VNC_SHARE_MODE_EXCLUSIVE
&&
2280 client
->share_mode
!= VNC_SHARE_MODE_SHARED
) {
2283 vnc_disconnect_start(client
);
2286 if (mode
== VNC_SHARE_MODE_SHARED
) {
2287 if (vs
->vd
->num_exclusive
> 0) {
2288 vnc_disconnect_start(vs
);
2293 case VNC_SHARE_POLICY_FORCE_SHARED
:
2295 * Policy: Shared connects only.
2296 * Implementation: Disallow clients asking for exclusive access.
2298 * Useful for shared desktop sessions where you don't want
2299 * someone forgetting to say -shared when running the vnc
2300 * client disconnect everybody else.
2302 if (mode
== VNC_SHARE_MODE_EXCLUSIVE
) {
2303 vnc_disconnect_start(vs
);
2308 vnc_set_share_mode(vs
, mode
);
2310 vs
->client_width
= pixman_image_get_width(vs
->vd
->server
);
2311 vs
->client_height
= pixman_image_get_height(vs
->vd
->server
);
2312 vnc_write_u16(vs
, vs
->client_width
);
2313 vnc_write_u16(vs
, vs
->client_height
);
2315 pixel_format_message(vs
);
2318 size
= snprintf(buf
, sizeof(buf
), "QEMU (%s)", qemu_name
);
2320 size
= snprintf(buf
, sizeof(buf
), "QEMU");
2322 vnc_write_u32(vs
, size
);
2323 vnc_write(vs
, buf
, size
);
2326 vnc_client_cache_auth(vs
);
2327 vnc_qmp_event(vs
, QAPI_EVENT_VNC_INITIALIZED
);
2329 vnc_read_when(vs
, protocol_client_msg
, 1);
2334 void start_client_init(VncState
*vs
)
2336 vnc_read_when(vs
, protocol_client_init
, 1);
2339 static void make_challenge(VncState
*vs
)
2343 srand(time(NULL
)+getpid()+getpid()*987654+rand());
2345 for (i
= 0 ; i
< sizeof(vs
->challenge
) ; i
++)
2346 vs
->challenge
[i
] = (int) (256.0*rand()/(RAND_MAX
+1.0));
2349 static int protocol_client_auth_vnc(VncState
*vs
, uint8_t *data
, size_t len
)
2351 unsigned char response
[VNC_AUTH_CHALLENGE_SIZE
];
2353 unsigned char key
[8];
2354 time_t now
= time(NULL
);
2356 if (!vs
->vd
->password
) {
2357 VNC_DEBUG("No password configured on server");
2360 if (vs
->vd
->expires
< now
) {
2361 VNC_DEBUG("Password is expired");
2365 memcpy(response
, vs
->challenge
, VNC_AUTH_CHALLENGE_SIZE
);
2367 /* Calculate the expected challenge response */
2368 pwlen
= strlen(vs
->vd
->password
);
2369 for (i
=0; i
<sizeof(key
); i
++)
2370 key
[i
] = i
<pwlen
? vs
->vd
->password
[i
] : 0;
2372 for (j
= 0; j
< VNC_AUTH_CHALLENGE_SIZE
; j
+= 8)
2373 des(response
+j
, response
+j
);
2375 /* Compare expected vs actual challenge response */
2376 if (memcmp(response
, data
, VNC_AUTH_CHALLENGE_SIZE
) != 0) {
2377 VNC_DEBUG("Client challenge response did not match\n");
2380 VNC_DEBUG("Accepting VNC challenge response\n");
2381 vnc_write_u32(vs
, 0); /* Accept auth */
2384 start_client_init(vs
);
2389 vnc_write_u32(vs
, 1); /* Reject auth */
2390 if (vs
->minor
>= 8) {
2391 static const char err
[] = "Authentication failed";
2392 vnc_write_u32(vs
, sizeof(err
));
2393 vnc_write(vs
, err
, sizeof(err
));
2396 vnc_client_error(vs
);
2400 void start_auth_vnc(VncState
*vs
)
2403 /* Send client a 'random' challenge */
2404 vnc_write(vs
, vs
->challenge
, sizeof(vs
->challenge
));
2407 vnc_read_when(vs
, protocol_client_auth_vnc
, sizeof(vs
->challenge
));
2411 static int protocol_client_auth(VncState
*vs
, uint8_t *data
, size_t len
)
2413 /* We only advertise 1 auth scheme at a time, so client
2414 * must pick the one we sent. Verify this */
2415 if (data
[0] != vs
->auth
) { /* Reject auth */
2416 VNC_DEBUG("Reject auth %d because it didn't match advertized\n", (int)data
[0]);
2417 vnc_write_u32(vs
, 1);
2418 if (vs
->minor
>= 8) {
2419 static const char err
[] = "Authentication failed";
2420 vnc_write_u32(vs
, sizeof(err
));
2421 vnc_write(vs
, err
, sizeof(err
));
2423 vnc_client_error(vs
);
2424 } else { /* Accept requested auth */
2425 VNC_DEBUG("Client requested auth %d\n", (int)data
[0]);
2428 VNC_DEBUG("Accept auth none\n");
2429 if (vs
->minor
>= 8) {
2430 vnc_write_u32(vs
, 0); /* Accept auth completion */
2433 start_client_init(vs
);
2437 VNC_DEBUG("Start VNC auth\n");
2441 #ifdef CONFIG_VNC_TLS
2442 case VNC_AUTH_VENCRYPT
:
2443 VNC_DEBUG("Accept VeNCrypt auth\n");
2444 start_auth_vencrypt(vs
);
2446 #endif /* CONFIG_VNC_TLS */
2448 #ifdef CONFIG_VNC_SASL
2450 VNC_DEBUG("Accept SASL auth\n");
2451 start_auth_sasl(vs
);
2453 #endif /* CONFIG_VNC_SASL */
2455 default: /* Should not be possible, but just in case */
2456 VNC_DEBUG("Reject auth %d server code bug\n", vs
->auth
);
2457 vnc_write_u8(vs
, 1);
2458 if (vs
->minor
>= 8) {
2459 static const char err
[] = "Authentication failed";
2460 vnc_write_u32(vs
, sizeof(err
));
2461 vnc_write(vs
, err
, sizeof(err
));
2463 vnc_client_error(vs
);
2469 static int protocol_version(VncState
*vs
, uint8_t *version
, size_t len
)
2473 memcpy(local
, version
, 12);
2476 if (sscanf(local
, "RFB %03d.%03d\n", &vs
->major
, &vs
->minor
) != 2) {
2477 VNC_DEBUG("Malformed protocol version %s\n", local
);
2478 vnc_client_error(vs
);
2481 VNC_DEBUG("Client request protocol version %d.%d\n", vs
->major
, vs
->minor
);
2482 if (vs
->major
!= 3 ||
2488 VNC_DEBUG("Unsupported client version\n");
2489 vnc_write_u32(vs
, VNC_AUTH_INVALID
);
2491 vnc_client_error(vs
);
2494 /* Some broken clients report v3.4 or v3.5, which spec requires to be treated
2495 * as equivalent to v3.3 by servers
2497 if (vs
->minor
== 4 || vs
->minor
== 5)
2500 if (vs
->minor
== 3) {
2501 if (vs
->auth
== VNC_AUTH_NONE
) {
2502 VNC_DEBUG("Tell client auth none\n");
2503 vnc_write_u32(vs
, vs
->auth
);
2505 start_client_init(vs
);
2506 } else if (vs
->auth
== VNC_AUTH_VNC
) {
2507 VNC_DEBUG("Tell client VNC auth\n");
2508 vnc_write_u32(vs
, vs
->auth
);
2512 VNC_DEBUG("Unsupported auth %d for protocol 3.3\n", vs
->auth
);
2513 vnc_write_u32(vs
, VNC_AUTH_INVALID
);
2515 vnc_client_error(vs
);
2518 VNC_DEBUG("Telling client we support auth %d\n", vs
->auth
);
2519 vnc_write_u8(vs
, 1); /* num auth */
2520 vnc_write_u8(vs
, vs
->auth
);
2521 vnc_read_when(vs
, protocol_client_auth
, 1);
2528 static VncRectStat
*vnc_stat_rect(VncDisplay
*vd
, int x
, int y
)
2530 struct VncSurface
*vs
= &vd
->guest
;
2532 return &vs
->stats
[y
/ VNC_STAT_RECT
][x
/ VNC_STAT_RECT
];
2535 void vnc_sent_lossy_rect(VncState
*vs
, int x
, int y
, int w
, int h
)
2539 w
= (x
+ w
) / VNC_STAT_RECT
;
2540 h
= (y
+ h
) / VNC_STAT_RECT
;
2544 for (j
= y
; j
<= h
; j
++) {
2545 for (i
= x
; i
<= w
; i
++) {
2546 vs
->lossy_rect
[j
][i
] = 1;
2551 static int vnc_refresh_lossy_rect(VncDisplay
*vd
, int x
, int y
)
2554 int sty
= y
/ VNC_STAT_RECT
;
2555 int stx
= x
/ VNC_STAT_RECT
;
2558 y
= y
/ VNC_STAT_RECT
* VNC_STAT_RECT
;
2559 x
= x
/ VNC_STAT_RECT
* VNC_STAT_RECT
;
2561 QTAILQ_FOREACH(vs
, &vd
->clients
, next
) {
2564 /* kernel send buffers are full -> refresh later */
2565 if (vs
->output
.offset
) {
2569 if (!vs
->lossy_rect
[sty
][stx
]) {
2573 vs
->lossy_rect
[sty
][stx
] = 0;
2574 for (j
= 0; j
< VNC_STAT_RECT
; ++j
) {
2575 bitmap_set(vs
->dirty
[y
+ j
],
2576 x
/ VNC_DIRTY_PIXELS_PER_BIT
,
2577 VNC_STAT_RECT
/ VNC_DIRTY_PIXELS_PER_BIT
);
2585 static int vnc_update_stats(VncDisplay
*vd
, struct timeval
* tv
)
2587 int width
= pixman_image_get_width(vd
->guest
.fb
);
2588 int height
= pixman_image_get_height(vd
->guest
.fb
);
2593 for (y
= 0; y
< height
; y
+= VNC_STAT_RECT
) {
2594 for (x
= 0; x
< width
; x
+= VNC_STAT_RECT
) {
2595 VncRectStat
*rect
= vnc_stat_rect(vd
, x
, y
);
2597 rect
->updated
= false;
2601 qemu_timersub(tv
, &VNC_REFRESH_STATS
, &res
);
2603 if (timercmp(&vd
->guest
.last_freq_check
, &res
, >)) {
2606 vd
->guest
.last_freq_check
= *tv
;
2608 for (y
= 0; y
< height
; y
+= VNC_STAT_RECT
) {
2609 for (x
= 0; x
< width
; x
+= VNC_STAT_RECT
) {
2610 VncRectStat
*rect
= vnc_stat_rect(vd
, x
, y
);
2611 int count
= ARRAY_SIZE(rect
->times
);
2612 struct timeval min
, max
;
2614 if (!timerisset(&rect
->times
[count
- 1])) {
2618 max
= rect
->times
[(rect
->idx
+ count
- 1) % count
];
2619 qemu_timersub(tv
, &max
, &res
);
2621 if (timercmp(&res
, &VNC_REFRESH_LOSSY
, >)) {
2623 has_dirty
+= vnc_refresh_lossy_rect(vd
, x
, y
);
2624 memset(rect
->times
, 0, sizeof (rect
->times
));
2628 min
= rect
->times
[rect
->idx
];
2629 max
= rect
->times
[(rect
->idx
+ count
- 1) % count
];
2630 qemu_timersub(&max
, &min
, &res
);
2632 rect
->freq
= res
.tv_sec
+ res
.tv_usec
/ 1000000.;
2633 rect
->freq
/= count
;
2634 rect
->freq
= 1. / rect
->freq
;
2640 double vnc_update_freq(VncState
*vs
, int x
, int y
, int w
, int h
)
2646 x
= (x
/ VNC_STAT_RECT
) * VNC_STAT_RECT
;
2647 y
= (y
/ VNC_STAT_RECT
) * VNC_STAT_RECT
;
2649 for (j
= y
; j
<= y
+ h
; j
+= VNC_STAT_RECT
) {
2650 for (i
= x
; i
<= x
+ w
; i
+= VNC_STAT_RECT
) {
2651 total
+= vnc_stat_rect(vs
->vd
, i
, j
)->freq
;
2663 static void vnc_rect_updated(VncDisplay
*vd
, int x
, int y
, struct timeval
* tv
)
2667 rect
= vnc_stat_rect(vd
, x
, y
);
2668 if (rect
->updated
) {
2671 rect
->times
[rect
->idx
] = *tv
;
2672 rect
->idx
= (rect
->idx
+ 1) % ARRAY_SIZE(rect
->times
);
2673 rect
->updated
= true;
2676 static int vnc_refresh_server_surface(VncDisplay
*vd
)
2678 int width
= MIN(pixman_image_get_width(vd
->guest
.fb
),
2679 pixman_image_get_width(vd
->server
));
2680 int height
= MIN(pixman_image_get_height(vd
->guest
.fb
),
2681 pixman_image_get_height(vd
->server
));
2682 int cmp_bytes
, server_stride
, min_stride
, guest_stride
, y
= 0;
2683 uint8_t *guest_row0
= NULL
, *server_row0
;
2686 pixman_image_t
*tmpbuf
= NULL
;
2688 struct timeval tv
= { 0, 0 };
2690 if (!vd
->non_adaptive
) {
2691 gettimeofday(&tv
, NULL
);
2692 has_dirty
= vnc_update_stats(vd
, &tv
);
2696 * Walk through the guest dirty map.
2697 * Check and copy modified bits from guest to server surface.
2698 * Update server dirty map.
2700 server_row0
= (uint8_t *)pixman_image_get_data(vd
->server
);
2701 server_stride
= guest_stride
= pixman_image_get_stride(vd
->server
);
2702 cmp_bytes
= MIN(VNC_DIRTY_PIXELS_PER_BIT
* VNC_SERVER_FB_BYTES
,
2704 if (vd
->guest
.format
!= VNC_SERVER_FB_FORMAT
) {
2705 int width
= pixman_image_get_width(vd
->server
);
2706 tmpbuf
= qemu_pixman_linebuf_create(VNC_SERVER_FB_FORMAT
, width
);
2708 guest_row0
= (uint8_t *)pixman_image_get_data(vd
->guest
.fb
);
2709 guest_stride
= pixman_image_get_stride(vd
->guest
.fb
);
2711 min_stride
= MIN(server_stride
, guest_stride
);
2715 uint8_t *guest_ptr
, *server_ptr
;
2716 unsigned long offset
= find_next_bit((unsigned long *) &vd
->guest
.dirty
,
2717 height
* VNC_DIRTY_BPL(&vd
->guest
),
2718 y
* VNC_DIRTY_BPL(&vd
->guest
));
2719 if (offset
== height
* VNC_DIRTY_BPL(&vd
->guest
)) {
2720 /* no more dirty bits */
2723 y
= offset
/ VNC_DIRTY_BPL(&vd
->guest
);
2724 x
= offset
% VNC_DIRTY_BPL(&vd
->guest
);
2726 server_ptr
= server_row0
+ y
* server_stride
+ x
* cmp_bytes
;
2728 if (vd
->guest
.format
!= VNC_SERVER_FB_FORMAT
) {
2729 qemu_pixman_linebuf_fill(tmpbuf
, vd
->guest
.fb
, width
, 0, y
);
2730 guest_ptr
= (uint8_t *)pixman_image_get_data(tmpbuf
);
2732 guest_ptr
= guest_row0
+ y
* guest_stride
;
2734 guest_ptr
+= x
* cmp_bytes
;
2736 for (; x
< DIV_ROUND_UP(width
, VNC_DIRTY_PIXELS_PER_BIT
);
2737 x
++, guest_ptr
+= cmp_bytes
, server_ptr
+= cmp_bytes
) {
2738 int _cmp_bytes
= cmp_bytes
;
2739 if (!test_and_clear_bit(x
, vd
->guest
.dirty
[y
])) {
2742 if ((x
+ 1) * cmp_bytes
> min_stride
) {
2743 _cmp_bytes
= min_stride
- x
* cmp_bytes
;
2745 if (memcmp(server_ptr
, guest_ptr
, _cmp_bytes
) == 0) {
2748 memcpy(server_ptr
, guest_ptr
, _cmp_bytes
);
2749 if (!vd
->non_adaptive
) {
2750 vnc_rect_updated(vd
, x
* VNC_DIRTY_PIXELS_PER_BIT
,
2753 QTAILQ_FOREACH(vs
, &vd
->clients
, next
) {
2754 set_bit(x
, vs
->dirty
[y
]);
2761 qemu_pixman_image_unref(tmpbuf
);
2765 static void vnc_refresh(DisplayChangeListener
*dcl
)
2767 VncDisplay
*vd
= container_of(dcl
, VncDisplay
, dcl
);
2769 int has_dirty
, rects
= 0;
2771 graphic_hw_update(NULL
);
2773 if (vnc_trylock_display(vd
)) {
2774 update_displaychangelistener(&vd
->dcl
, VNC_REFRESH_INTERVAL_BASE
);
2778 has_dirty
= vnc_refresh_server_surface(vd
);
2779 vnc_unlock_display(vd
);
2781 QTAILQ_FOREACH_SAFE(vs
, &vd
->clients
, next
, vn
) {
2782 rects
+= vnc_update_client(vs
, has_dirty
, false);
2783 /* vs might be free()ed here */
2786 if (QTAILQ_EMPTY(&vd
->clients
)) {
2787 update_displaychangelistener(&vd
->dcl
, VNC_REFRESH_INTERVAL_MAX
);
2791 if (has_dirty
&& rects
) {
2792 vd
->dcl
.update_interval
/= 2;
2793 if (vd
->dcl
.update_interval
< VNC_REFRESH_INTERVAL_BASE
) {
2794 vd
->dcl
.update_interval
= VNC_REFRESH_INTERVAL_BASE
;
2797 vd
->dcl
.update_interval
+= VNC_REFRESH_INTERVAL_INC
;
2798 if (vd
->dcl
.update_interval
> VNC_REFRESH_INTERVAL_MAX
) {
2799 vd
->dcl
.update_interval
= VNC_REFRESH_INTERVAL_MAX
;
2804 static void vnc_connect(VncDisplay
*vd
, int csock
,
2805 bool skipauth
, bool websocket
)
2807 VncState
*vs
= g_malloc0(sizeof(VncState
));
2813 vs
->auth
= VNC_AUTH_NONE
;
2814 #ifdef CONFIG_VNC_TLS
2815 vs
->subauth
= VNC_AUTH_INVALID
;
2818 vs
->auth
= vd
->auth
;
2819 #ifdef CONFIG_VNC_TLS
2820 vs
->subauth
= vd
->subauth
;
2824 vs
->lossy_rect
= g_malloc0(VNC_STAT_ROWS
* sizeof (*vs
->lossy_rect
));
2825 for (i
= 0; i
< VNC_STAT_ROWS
; ++i
) {
2826 vs
->lossy_rect
[i
] = g_malloc0(VNC_STAT_COLS
* sizeof (uint8_t));
2829 VNC_DEBUG("New client on socket %d\n", csock
);
2830 update_displaychangelistener(&vd
->dcl
, VNC_REFRESH_INTERVAL_BASE
);
2831 qemu_set_nonblock(vs
->csock
);
2832 #ifdef CONFIG_VNC_WS
2835 #ifdef CONFIG_VNC_TLS
2836 if (vd
->tls
.x509cert
) {
2837 qemu_set_fd_handler2(vs
->csock
, NULL
, vncws_tls_handshake_peek
,
2840 #endif /* CONFIG_VNC_TLS */
2842 qemu_set_fd_handler2(vs
->csock
, NULL
, vncws_handshake_read
,
2846 #endif /* CONFIG_VNC_WS */
2848 qemu_set_fd_handler2(vs
->csock
, NULL
, vnc_client_read
, NULL
, vs
);
2851 vnc_client_cache_addr(vs
);
2852 vnc_qmp_event(vs
, QAPI_EVENT_VNC_CONNECTED
);
2853 vnc_set_share_mode(vs
, VNC_SHARE_MODE_CONNECTING
);
2857 #ifdef CONFIG_VNC_WS
2865 void vnc_init_state(VncState
*vs
)
2867 vs
->initialized
= true;
2868 VncDisplay
*vd
= vs
->vd
;
2873 vs
->as
.freq
= 44100;
2874 vs
->as
.nchannels
= 2;
2875 vs
->as
.fmt
= AUD_FMT_S16
;
2876 vs
->as
.endianness
= 0;
2878 qemu_mutex_init(&vs
->output_mutex
);
2879 vs
->bh
= qemu_bh_new(vnc_jobs_bh
, vs
);
2881 QTAILQ_INSERT_HEAD(&vd
->clients
, vs
, next
);
2883 graphic_hw_update(NULL
);
2885 vnc_write(vs
, "RFB 003.008\n", 12);
2887 vnc_read_when(vs
, protocol_version
, 12);
2889 if (vs
->vd
->lock_key_sync
)
2890 vs
->led
= qemu_add_led_event_handler(kbd_leds
, vs
);
2892 vs
->mouse_mode_notifier
.notify
= check_pointer_type_change
;
2893 qemu_add_mouse_mode_change_notifier(&vs
->mouse_mode_notifier
);
2895 /* vs might be free()ed here */
2898 static void vnc_listen_read(void *opaque
, bool websocket
)
2900 VncDisplay
*vs
= opaque
;
2901 struct sockaddr_in addr
;
2902 socklen_t addrlen
= sizeof(addr
);
2906 graphic_hw_update(NULL
);
2907 #ifdef CONFIG_VNC_WS
2909 csock
= qemu_accept(vs
->lwebsock
, (struct sockaddr
*)&addr
, &addrlen
);
2911 #endif /* CONFIG_VNC_WS */
2913 csock
= qemu_accept(vs
->lsock
, (struct sockaddr
*)&addr
, &addrlen
);
2917 socket_set_nodelay(csock
);
2918 vnc_connect(vs
, csock
, false, websocket
);
2922 static void vnc_listen_regular_read(void *opaque
)
2924 vnc_listen_read(opaque
, false);
2927 #ifdef CONFIG_VNC_WS
2928 static void vnc_listen_websocket_read(void *opaque
)
2930 vnc_listen_read(opaque
, true);
2932 #endif /* CONFIG_VNC_WS */
2934 static const DisplayChangeListenerOps dcl_ops
= {
2936 .dpy_refresh
= vnc_refresh
,
2937 .dpy_gfx_copy
= vnc_dpy_copy
,
2938 .dpy_gfx_update
= vnc_dpy_update
,
2939 .dpy_gfx_switch
= vnc_dpy_switch
,
2940 .dpy_mouse_set
= vnc_mouse_set
,
2941 .dpy_cursor_define
= vnc_dpy_cursor_define
,
2944 void vnc_display_init(DisplayState
*ds
)
2946 VncDisplay
*vs
= g_malloc0(sizeof(*vs
));
2951 #ifdef CONFIG_VNC_WS
2955 QTAILQ_INIT(&vs
->clients
);
2956 vs
->expires
= TIME_MAX
;
2958 if (keyboard_layout
) {
2959 trace_vnc_key_map_init(keyboard_layout
);
2960 vs
->kbd_layout
= init_keyboard_layout(name2keysym
, keyboard_layout
);
2962 vs
->kbd_layout
= init_keyboard_layout(name2keysym
, "en-us");
2965 if (!vs
->kbd_layout
)
2968 qemu_mutex_init(&vs
->mutex
);
2969 vnc_start_worker_thread();
2971 vs
->dcl
.ops
= &dcl_ops
;
2972 register_displaychangelistener(&vs
->dcl
);
2976 static void vnc_display_close(DisplayState
*ds
)
2978 VncDisplay
*vs
= vnc_display
;
2982 g_free(vs
->display
);
2984 if (vs
->lsock
!= -1) {
2985 qemu_set_fd_handler2(vs
->lsock
, NULL
, NULL
, NULL
, NULL
);
2989 #ifdef CONFIG_VNC_WS
2990 g_free(vs
->ws_display
);
2991 vs
->ws_display
= NULL
;
2992 if (vs
->lwebsock
!= -1) {
2993 qemu_set_fd_handler2(vs
->lwebsock
, NULL
, NULL
, NULL
, NULL
);
2994 close(vs
->lwebsock
);
2997 #endif /* CONFIG_VNC_WS */
2998 vs
->auth
= VNC_AUTH_INVALID
;
2999 #ifdef CONFIG_VNC_TLS
3000 vs
->subauth
= VNC_AUTH_INVALID
;
3001 vs
->tls
.x509verify
= 0;
3005 int vnc_display_password(DisplayState
*ds
, const char *password
)
3007 VncDisplay
*vs
= vnc_display
;
3012 if (vs
->auth
== VNC_AUTH_NONE
) {
3013 error_printf_unless_qmp("If you want use passwords please enable "
3014 "password auth using '-vnc ${dpy},password'.");
3018 g_free(vs
->password
);
3019 vs
->password
= g_strdup(password
);
3024 int vnc_display_pw_expire(DisplayState
*ds
, time_t expires
)
3026 VncDisplay
*vs
= vnc_display
;
3032 vs
->expires
= expires
;
3036 char *vnc_display_local_addr(DisplayState
*ds
)
3038 VncDisplay
*vs
= vnc_display
;
3040 return vnc_socket_local_addr("%s:%s", vs
->lsock
);
3043 void vnc_display_open(DisplayState
*ds
, const char *display
, Error
**errp
)
3045 VncDisplay
*vs
= vnc_display
;
3046 const char *options
;
3049 #ifdef CONFIG_VNC_TLS
3050 int tls
= 0, x509
= 0;
3052 #ifdef CONFIG_VNC_SASL
3056 #if defined(CONFIG_VNC_TLS) || defined(CONFIG_VNC_SASL)
3059 int lock_key_sync
= 1;
3062 error_setg(errp
, "VNC display not active");
3065 vnc_display_close(ds
);
3066 if (strcmp(display
, "none") == 0)
3069 vs
->display
= g_strdup(display
);
3070 vs
->share_policy
= VNC_SHARE_POLICY_ALLOW_EXCLUSIVE
;
3073 while ((options
= strchr(options
, ','))) {
3075 if (strncmp(options
, "password", 8) == 0) {
3076 if (fips_get_state()) {
3078 "VNC password auth disabled due to FIPS mode, "
3079 "consider using the VeNCrypt or SASL authentication "
3080 "methods as an alternative");
3083 password
= 1; /* Require password auth */
3084 } else if (strncmp(options
, "reverse", 7) == 0) {
3086 } else if (strncmp(options
, "no-lock-key-sync", 16) == 0) {
3088 #ifdef CONFIG_VNC_SASL
3089 } else if (strncmp(options
, "sasl", 4) == 0) {
3090 sasl
= 1; /* Require SASL auth */
3092 #ifdef CONFIG_VNC_WS
3093 } else if (strncmp(options
, "websocket", 9) == 0) {
3097 /* Check for 'websocket=<port>' */
3098 start
= strchr(options
, '=');
3099 end
= strchr(options
, ',');
3100 if (start
&& (!end
|| (start
< end
))) {
3101 int len
= end
? end
-(start
+1) : strlen(start
+1);
3103 /* extract the host specification from display */
3104 char *host
= NULL
, *port
= NULL
, *host_end
= NULL
;
3105 port
= g_strndup(start
+ 1, len
);
3107 /* ipv6 hosts have colons */
3108 end
= strchr(display
, ',');
3109 host_end
= g_strrstr_len(display
, end
- display
, ":");
3112 host
= g_strndup(display
, host_end
- display
+ 1);
3114 host
= g_strndup(":", 1);
3116 vs
->ws_display
= g_strconcat(host
, port
, NULL
);
3121 #endif /* CONFIG_VNC_WS */
3122 #ifdef CONFIG_VNC_TLS
3123 } else if (strncmp(options
, "tls", 3) == 0) {
3124 tls
= 1; /* Require TLS */
3125 } else if (strncmp(options
, "x509", 4) == 0) {
3127 x509
= 1; /* Require x509 certificates */
3128 if (strncmp(options
, "x509verify", 10) == 0)
3129 vs
->tls
.x509verify
= 1; /* ...and verify client certs */
3131 /* Now check for 'x509=/some/path' postfix
3132 * and use that to setup x509 certificate/key paths */
3133 start
= strchr(options
, '=');
3134 end
= strchr(options
, ',');
3135 if (start
&& (!end
|| (start
< end
))) {
3136 int len
= end
? end
-(start
+1) : strlen(start
+1);
3137 char *path
= g_strndup(start
+ 1, len
);
3139 VNC_DEBUG("Trying certificate path '%s'\n", path
);
3140 if (vnc_tls_set_x509_creds_dir(vs
, path
) < 0) {
3141 error_setg(errp
, "Failed to find x509 certificates/keys in %s", path
);
3147 error_setg(errp
, "No certificate path provided");
3151 #if defined(CONFIG_VNC_TLS) || defined(CONFIG_VNC_SASL)
3152 } else if (strncmp(options
, "acl", 3) == 0) {
3155 } else if (strncmp(options
, "lossy", 5) == 0) {
3156 #ifdef CONFIG_VNC_JPEG
3159 } else if (strncmp(options
, "non-adaptive", 12) == 0) {
3160 vs
->non_adaptive
= true;
3161 } else if (strncmp(options
, "share=", 6) == 0) {
3162 if (strncmp(options
+6, "ignore", 6) == 0) {
3163 vs
->share_policy
= VNC_SHARE_POLICY_IGNORE
;
3164 } else if (strncmp(options
+6, "allow-exclusive", 15) == 0) {
3165 vs
->share_policy
= VNC_SHARE_POLICY_ALLOW_EXCLUSIVE
;
3166 } else if (strncmp(options
+6, "force-shared", 12) == 0) {
3167 vs
->share_policy
= VNC_SHARE_POLICY_FORCE_SHARED
;
3169 error_setg(errp
, "unknown vnc share= option");
3175 /* adaptive updates are only used with tight encoding and
3176 * if lossy updates are enabled so we can disable all the
3177 * calculations otherwise */
3179 vs
->non_adaptive
= true;
3182 #ifdef CONFIG_VNC_TLS
3183 if (acl
&& x509
&& vs
->tls
.x509verify
) {
3184 if (!(vs
->tls
.acl
= qemu_acl_init("vnc.x509dname"))) {
3185 fprintf(stderr
, "Failed to create x509 dname ACL\n");
3190 #ifdef CONFIG_VNC_SASL
3192 if (!(vs
->sasl
.acl
= qemu_acl_init("vnc.username"))) {
3193 fprintf(stderr
, "Failed to create username ACL\n");
3200 * Combinations we support here:
3202 * - no-auth (clear text, no auth)
3203 * - password (clear text, weak auth)
3204 * - sasl (encrypt, good auth *IF* using Kerberos via GSSAPI)
3205 * - tls (encrypt, weak anonymous creds, no auth)
3206 * - tls + password (encrypt, weak anonymous creds, weak auth)
3207 * - tls + sasl (encrypt, weak anonymous creds, good auth)
3208 * - tls + x509 (encrypt, good x509 creds, no auth)
3209 * - tls + x509 + password (encrypt, good x509 creds, weak auth)
3210 * - tls + x509 + sasl (encrypt, good x509 creds, good auth)
3212 * NB1. TLS is a stackable auth scheme.
3213 * NB2. the x509 schemes have option to validate a client cert dname
3216 #ifdef CONFIG_VNC_TLS
3218 vs
->auth
= VNC_AUTH_VENCRYPT
;
3220 VNC_DEBUG("Initializing VNC server with x509 password auth\n");
3221 vs
->subauth
= VNC_AUTH_VENCRYPT_X509VNC
;
3223 VNC_DEBUG("Initializing VNC server with TLS password auth\n");
3224 vs
->subauth
= VNC_AUTH_VENCRYPT_TLSVNC
;
3227 #endif /* CONFIG_VNC_TLS */
3228 VNC_DEBUG("Initializing VNC server with password auth\n");
3229 vs
->auth
= VNC_AUTH_VNC
;
3230 #ifdef CONFIG_VNC_TLS
3231 vs
->subauth
= VNC_AUTH_INVALID
;
3233 #endif /* CONFIG_VNC_TLS */
3234 #ifdef CONFIG_VNC_SASL
3236 #ifdef CONFIG_VNC_TLS
3238 vs
->auth
= VNC_AUTH_VENCRYPT
;
3240 VNC_DEBUG("Initializing VNC server with x509 SASL auth\n");
3241 vs
->subauth
= VNC_AUTH_VENCRYPT_X509SASL
;
3243 VNC_DEBUG("Initializing VNC server with TLS SASL auth\n");
3244 vs
->subauth
= VNC_AUTH_VENCRYPT_TLSSASL
;
3247 #endif /* CONFIG_VNC_TLS */
3248 VNC_DEBUG("Initializing VNC server with SASL auth\n");
3249 vs
->auth
= VNC_AUTH_SASL
;
3250 #ifdef CONFIG_VNC_TLS
3251 vs
->subauth
= VNC_AUTH_INVALID
;
3253 #endif /* CONFIG_VNC_TLS */
3254 #endif /* CONFIG_VNC_SASL */
3256 #ifdef CONFIG_VNC_TLS
3258 vs
->auth
= VNC_AUTH_VENCRYPT
;
3260 VNC_DEBUG("Initializing VNC server with x509 no auth\n");
3261 vs
->subauth
= VNC_AUTH_VENCRYPT_X509NONE
;
3263 VNC_DEBUG("Initializing VNC server with TLS no auth\n");
3264 vs
->subauth
= VNC_AUTH_VENCRYPT_TLSNONE
;
3268 VNC_DEBUG("Initializing VNC server with no auth\n");
3269 vs
->auth
= VNC_AUTH_NONE
;
3270 #ifdef CONFIG_VNC_TLS
3271 vs
->subauth
= VNC_AUTH_INVALID
;
3276 #ifdef CONFIG_VNC_SASL
3277 if ((saslErr
= sasl_server_init(NULL
, "qemu")) != SASL_OK
) {
3278 error_setg(errp
, "Failed to initialize SASL auth: %s",
3279 sasl_errstring(saslErr
, NULL
, NULL
));
3283 vs
->lock_key_sync
= lock_key_sync
;
3286 /* connect to viewer */
3289 #ifdef CONFIG_VNC_WS
3292 if (strncmp(display
, "unix:", 5) == 0) {
3293 csock
= unix_connect(display
+5, errp
);
3295 csock
= inet_connect(display
, errp
);
3300 vnc_connect(vs
, csock
, false, false);
3302 /* listen for connects */
3304 dpy
= g_malloc(256);
3305 if (strncmp(display
, "unix:", 5) == 0) {
3306 pstrcpy(dpy
, 256, "unix:");
3307 vs
->lsock
= unix_listen(display
+5, dpy
+5, 256-5, errp
);
3309 vs
->lsock
= inet_listen(display
, dpy
, 256,
3310 SOCK_STREAM
, 5900, errp
);
3311 if (vs
->lsock
< 0) {
3315 #ifdef CONFIG_VNC_WS
3316 if (vs
->websocket
) {
3317 if (vs
->ws_display
) {
3318 vs
->lwebsock
= inet_listen(vs
->ws_display
, NULL
, 256,
3319 SOCK_STREAM
, 0, errp
);
3321 vs
->lwebsock
= inet_listen(vs
->display
, NULL
, 256,
3322 SOCK_STREAM
, 5700, errp
);
3325 if (vs
->lwebsock
< 0) {
3334 #endif /* CONFIG_VNC_WS */
3336 g_free(vs
->display
);
3338 qemu_set_fd_handler2(vs
->lsock
, NULL
,
3339 vnc_listen_regular_read
, NULL
, vs
);
3340 #ifdef CONFIG_VNC_WS
3341 if (vs
->websocket
) {
3342 qemu_set_fd_handler2(vs
->lwebsock
, NULL
,
3343 vnc_listen_websocket_read
, NULL
, vs
);
3345 #endif /* CONFIG_VNC_WS */
3350 g_free(vs
->display
);
3352 #ifdef CONFIG_VNC_WS
3353 g_free(vs
->ws_display
);
3354 vs
->ws_display
= NULL
;
3355 #endif /* CONFIG_VNC_WS */
3358 void vnc_display_add_client(DisplayState
*ds
, int csock
, bool skipauth
)
3360 VncDisplay
*vs
= vnc_display
;
3362 vnc_connect(vs
, csock
, skipauth
, false);