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
27 #include "qemu/osdep.h"
31 #include "hw/qdev-core.h"
32 #include "sysemu/sysemu.h"
33 #include "sysemu/runstate.h"
34 #include "qemu/error-report.h"
35 #include "qemu/main-loop.h"
36 #include "qemu/module.h"
37 #include "qemu/option.h"
38 #include "qemu/sockets.h"
39 #include "qemu/timer.h"
40 #include "authz/list.h"
41 #include "qemu/config-file.h"
42 #include "qapi/qapi-emit-events.h"
43 #include "qapi/qapi-events-ui.h"
44 #include "qapi/error.h"
45 #include "qapi/qapi-commands-ui.h"
47 #include "crypto/hash.h"
48 #include "crypto/tlscreds.h"
49 #include "crypto/tlscredsanon.h"
50 #include "crypto/tlscredsx509.h"
51 #include "crypto/random.h"
52 #include "crypto/secret_common.h"
53 #include "qom/object_interfaces.h"
54 #include "qemu/cutils.h"
55 #include "qemu/help_option.h"
56 #include "io/dns-resolver.h"
57 #include "monitor/monitor.h"
59 #define VNC_REFRESH_INTERVAL_BASE GUI_REFRESH_INTERVAL_DEFAULT
60 #define VNC_REFRESH_INTERVAL_INC 50
61 #define VNC_REFRESH_INTERVAL_MAX GUI_REFRESH_INTERVAL_IDLE
62 static const struct timeval VNC_REFRESH_STATS
= { 0, 500000 };
63 static const struct timeval VNC_REFRESH_LOSSY
= { 2, 0 };
65 #include "vnc_keysym.h"
66 #include "crypto/cipher.h"
68 static QTAILQ_HEAD(, VncDisplay
) vnc_displays
=
69 QTAILQ_HEAD_INITIALIZER(vnc_displays
);
71 static int vnc_cursor_define(VncState
*vs
);
72 static void vnc_update_throttle_offset(VncState
*vs
);
74 static void vnc_set_share_mode(VncState
*vs
, VncShareMode mode
)
77 static const char *mn
[] = {
79 [VNC_SHARE_MODE_CONNECTING
] = "connecting",
80 [VNC_SHARE_MODE_SHARED
] = "shared",
81 [VNC_SHARE_MODE_EXCLUSIVE
] = "exclusive",
82 [VNC_SHARE_MODE_DISCONNECTED
] = "disconnected",
84 fprintf(stderr
, "%s/%p: %s -> %s\n", __func__
,
85 vs
->ioc
, mn
[vs
->share_mode
], mn
[mode
]);
88 switch (vs
->share_mode
) {
89 case VNC_SHARE_MODE_CONNECTING
:
90 vs
->vd
->num_connecting
--;
92 case VNC_SHARE_MODE_SHARED
:
95 case VNC_SHARE_MODE_EXCLUSIVE
:
96 vs
->vd
->num_exclusive
--;
102 vs
->share_mode
= mode
;
104 switch (vs
->share_mode
) {
105 case VNC_SHARE_MODE_CONNECTING
:
106 vs
->vd
->num_connecting
++;
108 case VNC_SHARE_MODE_SHARED
:
109 vs
->vd
->num_shared
++;
111 case VNC_SHARE_MODE_EXCLUSIVE
:
112 vs
->vd
->num_exclusive
++;
120 static void vnc_init_basic_info(SocketAddress
*addr
,
124 switch (addr
->type
) {
125 case SOCKET_ADDRESS_TYPE_INET
:
126 info
->host
= g_strdup(addr
->u
.inet
.host
);
127 info
->service
= g_strdup(addr
->u
.inet
.port
);
128 if (addr
->u
.inet
.ipv6
) {
129 info
->family
= NETWORK_ADDRESS_FAMILY_IPV6
;
131 info
->family
= NETWORK_ADDRESS_FAMILY_IPV4
;
135 case SOCKET_ADDRESS_TYPE_UNIX
:
136 info
->host
= g_strdup("");
137 info
->service
= g_strdup(addr
->u
.q_unix
.path
);
138 info
->family
= NETWORK_ADDRESS_FAMILY_UNIX
;
141 case SOCKET_ADDRESS_TYPE_VSOCK
:
142 case SOCKET_ADDRESS_TYPE_FD
:
143 error_setg(errp
, "Unsupported socket address type %s",
144 SocketAddressType_str(addr
->type
));
153 static void vnc_init_basic_info_from_server_addr(QIOChannelSocket
*ioc
,
157 SocketAddress
*addr
= NULL
;
160 error_setg(errp
, "No listener socket available");
164 addr
= qio_channel_socket_get_local_address(ioc
, errp
);
169 vnc_init_basic_info(addr
, info
, errp
);
170 qapi_free_SocketAddress(addr
);
173 static void vnc_init_basic_info_from_remote_addr(QIOChannelSocket
*ioc
,
177 SocketAddress
*addr
= NULL
;
179 addr
= qio_channel_socket_get_remote_address(ioc
, errp
);
184 vnc_init_basic_info(addr
, info
, errp
);
185 qapi_free_SocketAddress(addr
);
188 static const char *vnc_auth_name(VncDisplay
*vd
) {
190 case VNC_AUTH_INVALID
:
206 case VNC_AUTH_VENCRYPT
:
207 switch (vd
->subauth
) {
208 case VNC_AUTH_VENCRYPT_PLAIN
:
209 return "vencrypt+plain";
210 case VNC_AUTH_VENCRYPT_TLSNONE
:
211 return "vencrypt+tls+none";
212 case VNC_AUTH_VENCRYPT_TLSVNC
:
213 return "vencrypt+tls+vnc";
214 case VNC_AUTH_VENCRYPT_TLSPLAIN
:
215 return "vencrypt+tls+plain";
216 case VNC_AUTH_VENCRYPT_X509NONE
:
217 return "vencrypt+x509+none";
218 case VNC_AUTH_VENCRYPT_X509VNC
:
219 return "vencrypt+x509+vnc";
220 case VNC_AUTH_VENCRYPT_X509PLAIN
:
221 return "vencrypt+x509+plain";
222 case VNC_AUTH_VENCRYPT_TLSSASL
:
223 return "vencrypt+tls+sasl";
224 case VNC_AUTH_VENCRYPT_X509SASL
:
225 return "vencrypt+x509+sasl";
235 static VncServerInfo
*vnc_server_info_get(VncDisplay
*vd
)
240 if (!vd
->listener
|| !vd
->listener
->nsioc
) {
244 info
= g_malloc0(sizeof(*info
));
245 vnc_init_basic_info_from_server_addr(vd
->listener
->sioc
[0],
246 qapi_VncServerInfo_base(info
), &err
);
247 info
->has_auth
= true;
248 info
->auth
= g_strdup(vnc_auth_name(vd
));
250 qapi_free_VncServerInfo(info
);
257 static void vnc_client_cache_auth(VncState
*client
)
264 client
->info
->x509_dname
=
265 qcrypto_tls_session_get_peer_name(client
->tls
);
266 client
->info
->has_x509_dname
=
267 client
->info
->x509_dname
!= NULL
;
269 #ifdef CONFIG_VNC_SASL
270 if (client
->sasl
.conn
&&
271 client
->sasl
.username
) {
272 client
->info
->has_sasl_username
= true;
273 client
->info
->sasl_username
= g_strdup(client
->sasl
.username
);
278 static void vnc_client_cache_addr(VncState
*client
)
282 client
->info
= g_malloc0(sizeof(*client
->info
));
283 vnc_init_basic_info_from_remote_addr(client
->sioc
,
284 qapi_VncClientInfo_base(client
->info
),
286 client
->info
->websocket
= client
->websocket
;
288 qapi_free_VncClientInfo(client
->info
);
294 static void vnc_qmp_event(VncState
*vs
, QAPIEvent event
)
302 si
= vnc_server_info_get(vs
->vd
);
308 case QAPI_EVENT_VNC_CONNECTED
:
309 qapi_event_send_vnc_connected(si
, qapi_VncClientInfo_base(vs
->info
));
311 case QAPI_EVENT_VNC_INITIALIZED
:
312 qapi_event_send_vnc_initialized(si
, vs
->info
);
314 case QAPI_EVENT_VNC_DISCONNECTED
:
315 qapi_event_send_vnc_disconnected(si
, vs
->info
);
321 qapi_free_VncServerInfo(si
);
324 static VncClientInfo
*qmp_query_vnc_client(const VncState
*client
)
329 info
= g_malloc0(sizeof(*info
));
331 vnc_init_basic_info_from_remote_addr(client
->sioc
,
332 qapi_VncClientInfo_base(info
),
336 qapi_free_VncClientInfo(info
);
340 info
->websocket
= client
->websocket
;
343 info
->x509_dname
= qcrypto_tls_session_get_peer_name(client
->tls
);
344 info
->has_x509_dname
= info
->x509_dname
!= NULL
;
346 #ifdef CONFIG_VNC_SASL
347 if (client
->sasl
.conn
&& client
->sasl
.username
) {
348 info
->has_sasl_username
= true;
349 info
->sasl_username
= g_strdup(client
->sasl
.username
);
356 static VncDisplay
*vnc_display_find(const char *id
)
361 return QTAILQ_FIRST(&vnc_displays
);
363 QTAILQ_FOREACH(vd
, &vnc_displays
, next
) {
364 if (strcmp(id
, vd
->id
) == 0) {
371 static VncClientInfoList
*qmp_query_client_list(VncDisplay
*vd
)
373 VncClientInfoList
*prev
= NULL
;
376 QTAILQ_FOREACH(client
, &vd
->clients
, next
) {
377 QAPI_LIST_PREPEND(prev
, qmp_query_vnc_client(client
));
382 VncInfo
*qmp_query_vnc(Error
**errp
)
384 VncInfo
*info
= g_malloc0(sizeof(*info
));
385 VncDisplay
*vd
= vnc_display_find(NULL
);
386 SocketAddress
*addr
= NULL
;
388 if (vd
== NULL
|| !vd
->listener
|| !vd
->listener
->nsioc
) {
389 info
->enabled
= false;
391 info
->enabled
= true;
393 /* for compatibility with the original command */
394 info
->has_clients
= true;
395 info
->clients
= qmp_query_client_list(vd
);
397 addr
= qio_channel_socket_get_local_address(vd
->listener
->sioc
[0],
403 switch (addr
->type
) {
404 case SOCKET_ADDRESS_TYPE_INET
:
405 info
->host
= g_strdup(addr
->u
.inet
.host
);
406 info
->service
= g_strdup(addr
->u
.inet
.port
);
407 if (addr
->u
.inet
.ipv6
) {
408 info
->family
= NETWORK_ADDRESS_FAMILY_IPV6
;
410 info
->family
= NETWORK_ADDRESS_FAMILY_IPV4
;
414 case SOCKET_ADDRESS_TYPE_UNIX
:
415 info
->host
= g_strdup("");
416 info
->service
= g_strdup(addr
->u
.q_unix
.path
);
417 info
->family
= NETWORK_ADDRESS_FAMILY_UNIX
;
420 case SOCKET_ADDRESS_TYPE_VSOCK
:
421 case SOCKET_ADDRESS_TYPE_FD
:
422 error_setg(errp
, "Unsupported socket address type %s",
423 SocketAddressType_str(addr
->type
));
429 info
->has_host
= true;
430 info
->has_service
= true;
431 info
->has_family
= true;
433 info
->has_auth
= true;
434 info
->auth
= g_strdup(vnc_auth_name(vd
));
437 qapi_free_SocketAddress(addr
);
441 qapi_free_SocketAddress(addr
);
442 qapi_free_VncInfo(info
);
447 static void qmp_query_auth(int auth
, int subauth
,
448 VncPrimaryAuth
*qmp_auth
,
449 VncVencryptSubAuth
*qmp_vencrypt
,
450 bool *qmp_has_vencrypt
);
452 static VncServerInfo2List
*qmp_query_server_entry(QIOChannelSocket
*ioc
,
456 VncServerInfo2List
*prev
)
458 VncServerInfo2
*info
;
462 addr
= qio_channel_socket_get_local_address(ioc
, NULL
);
467 info
= g_new0(VncServerInfo2
, 1);
468 vnc_init_basic_info(addr
, qapi_VncServerInfo2_base(info
), &err
);
469 qapi_free_SocketAddress(addr
);
471 qapi_free_VncServerInfo2(info
);
475 info
->websocket
= websocket
;
477 qmp_query_auth(auth
, subauth
, &info
->auth
,
478 &info
->vencrypt
, &info
->has_vencrypt
);
480 QAPI_LIST_PREPEND(prev
, info
);
484 static void qmp_query_auth(int auth
, int subauth
,
485 VncPrimaryAuth
*qmp_auth
,
486 VncVencryptSubAuth
*qmp_vencrypt
,
487 bool *qmp_has_vencrypt
)
491 *qmp_auth
= VNC_PRIMARY_AUTH_VNC
;
494 *qmp_auth
= VNC_PRIMARY_AUTH_RA2
;
497 *qmp_auth
= VNC_PRIMARY_AUTH_RA2NE
;
500 *qmp_auth
= VNC_PRIMARY_AUTH_TIGHT
;
503 *qmp_auth
= VNC_PRIMARY_AUTH_ULTRA
;
506 *qmp_auth
= VNC_PRIMARY_AUTH_TLS
;
508 case VNC_AUTH_VENCRYPT
:
509 *qmp_auth
= VNC_PRIMARY_AUTH_VENCRYPT
;
510 *qmp_has_vencrypt
= true;
512 case VNC_AUTH_VENCRYPT_PLAIN
:
513 *qmp_vencrypt
= VNC_VENCRYPT_SUB_AUTH_PLAIN
;
515 case VNC_AUTH_VENCRYPT_TLSNONE
:
516 *qmp_vencrypt
= VNC_VENCRYPT_SUB_AUTH_TLS_NONE
;
518 case VNC_AUTH_VENCRYPT_TLSVNC
:
519 *qmp_vencrypt
= VNC_VENCRYPT_SUB_AUTH_TLS_VNC
;
521 case VNC_AUTH_VENCRYPT_TLSPLAIN
:
522 *qmp_vencrypt
= VNC_VENCRYPT_SUB_AUTH_TLS_PLAIN
;
524 case VNC_AUTH_VENCRYPT_X509NONE
:
525 *qmp_vencrypt
= VNC_VENCRYPT_SUB_AUTH_X509_NONE
;
527 case VNC_AUTH_VENCRYPT_X509VNC
:
528 *qmp_vencrypt
= VNC_VENCRYPT_SUB_AUTH_X509_VNC
;
530 case VNC_AUTH_VENCRYPT_X509PLAIN
:
531 *qmp_vencrypt
= VNC_VENCRYPT_SUB_AUTH_X509_PLAIN
;
533 case VNC_AUTH_VENCRYPT_TLSSASL
:
534 *qmp_vencrypt
= VNC_VENCRYPT_SUB_AUTH_TLS_SASL
;
536 case VNC_AUTH_VENCRYPT_X509SASL
:
537 *qmp_vencrypt
= VNC_VENCRYPT_SUB_AUTH_X509_SASL
;
540 *qmp_has_vencrypt
= false;
545 *qmp_auth
= VNC_PRIMARY_AUTH_SASL
;
549 *qmp_auth
= VNC_PRIMARY_AUTH_NONE
;
554 VncInfo2List
*qmp_query_vnc_servers(Error
**errp
)
556 VncInfo2List
*prev
= NULL
;
562 QTAILQ_FOREACH(vd
, &vnc_displays
, next
) {
563 info
= g_new0(VncInfo2
, 1);
564 info
->id
= g_strdup(vd
->id
);
565 info
->clients
= qmp_query_client_list(vd
);
566 qmp_query_auth(vd
->auth
, vd
->subauth
, &info
->auth
,
567 &info
->vencrypt
, &info
->has_vencrypt
);
569 dev
= DEVICE(object_property_get_link(OBJECT(vd
->dcl
.con
),
570 "device", &error_abort
));
571 info
->has_display
= true;
572 info
->display
= g_strdup(dev
->id
);
574 for (i
= 0; vd
->listener
!= NULL
&& i
< vd
->listener
->nsioc
; i
++) {
575 info
->server
= qmp_query_server_entry(
576 vd
->listener
->sioc
[i
], false, vd
->auth
, vd
->subauth
,
579 for (i
= 0; vd
->wslistener
!= NULL
&& i
< vd
->wslistener
->nsioc
; i
++) {
580 info
->server
= qmp_query_server_entry(
581 vd
->wslistener
->sioc
[i
], true, vd
->ws_auth
,
582 vd
->ws_subauth
, info
->server
);
585 QAPI_LIST_PREPEND(prev
, info
);
590 bool vnc_display_reload_certs(const char *id
, Error
**errp
)
592 VncDisplay
*vd
= vnc_display_find(id
);
593 QCryptoTLSCredsClass
*creds
= NULL
;
596 error_setg(errp
, "Can not find vnc display");
601 error_setg(errp
, "vnc tls is not enabled");
605 creds
= QCRYPTO_TLS_CREDS_GET_CLASS(OBJECT(vd
->tlscreds
));
606 if (creds
->reload
== NULL
) {
607 error_setg(errp
, "%s doesn't support to reload TLS credential",
608 object_get_typename(OBJECT(vd
->tlscreds
)));
611 if (!creds
->reload(vd
->tlscreds
, errp
)) {
619 1) Get the queue working for IO.
620 2) there is some weirdness when using the -S option (the screen is grey
621 and not totally invalidated
622 3) resolutions > 1024
625 static int vnc_update_client(VncState
*vs
, int has_dirty
);
626 static void vnc_disconnect_start(VncState
*vs
);
628 static void vnc_colordepth(VncState
*vs
);
629 static void framebuffer_update_request(VncState
*vs
, int incremental
,
630 int x_position
, int y_position
,
632 static void vnc_refresh(DisplayChangeListener
*dcl
);
633 static int vnc_refresh_server_surface(VncDisplay
*vd
);
635 static int vnc_width(VncDisplay
*vd
)
637 return MIN(VNC_MAX_WIDTH
, ROUND_UP(surface_width(vd
->ds
),
638 VNC_DIRTY_PIXELS_PER_BIT
));
641 static int vnc_true_width(VncDisplay
*vd
)
643 return MIN(VNC_MAX_WIDTH
, surface_width(vd
->ds
));
646 static int vnc_height(VncDisplay
*vd
)
648 return MIN(VNC_MAX_HEIGHT
, surface_height(vd
->ds
));
651 static void vnc_set_area_dirty(DECLARE_BITMAP(dirty
[VNC_MAX_HEIGHT
],
652 VNC_MAX_WIDTH
/ VNC_DIRTY_PIXELS_PER_BIT
),
654 int x
, int y
, int w
, int h
)
656 int width
= vnc_width(vd
);
657 int height
= vnc_height(vd
);
659 /* this is needed this to ensure we updated all affected
660 * blocks if x % VNC_DIRTY_PIXELS_PER_BIT != 0 */
661 w
+= (x
% VNC_DIRTY_PIXELS_PER_BIT
);
662 x
-= (x
% VNC_DIRTY_PIXELS_PER_BIT
);
666 w
= MIN(x
+ w
, width
) - x
;
667 h
= MIN(y
+ h
, height
);
670 bitmap_set(dirty
[y
], x
/ VNC_DIRTY_PIXELS_PER_BIT
,
671 DIV_ROUND_UP(w
, VNC_DIRTY_PIXELS_PER_BIT
));
675 static void vnc_dpy_update(DisplayChangeListener
*dcl
,
676 int x
, int y
, int w
, int h
)
678 VncDisplay
*vd
= container_of(dcl
, VncDisplay
, dcl
);
679 struct VncSurface
*s
= &vd
->guest
;
681 vnc_set_area_dirty(s
->dirty
, vd
, x
, y
, w
, h
);
684 void vnc_framebuffer_update(VncState
*vs
, int x
, int y
, int w
, int h
,
687 vnc_write_u16(vs
, x
);
688 vnc_write_u16(vs
, y
);
689 vnc_write_u16(vs
, w
);
690 vnc_write_u16(vs
, h
);
692 vnc_write_s32(vs
, encoding
);
695 static void vnc_desktop_resize_ext(VncState
*vs
, int reject_reason
)
697 trace_vnc_msg_server_ext_desktop_resize(
698 vs
, vs
->ioc
, vs
->client_width
, vs
->client_height
, reject_reason
);
701 vnc_write_u8(vs
, VNC_MSG_SERVER_FRAMEBUFFER_UPDATE
);
703 vnc_write_u16(vs
, 1); /* number of rects */
704 vnc_framebuffer_update(vs
,
705 reject_reason
? 1 : 0,
707 vs
->client_width
, vs
->client_height
,
708 VNC_ENCODING_DESKTOP_RESIZE_EXT
);
709 vnc_write_u8(vs
, 1); /* number of screens */
710 vnc_write_u8(vs
, 0); /* padding */
711 vnc_write_u8(vs
, 0); /* padding */
712 vnc_write_u8(vs
, 0); /* padding */
713 vnc_write_u32(vs
, 0); /* screen id */
714 vnc_write_u16(vs
, 0); /* screen x-pos */
715 vnc_write_u16(vs
, 0); /* screen y-pos */
716 vnc_write_u16(vs
, vs
->client_width
);
717 vnc_write_u16(vs
, vs
->client_height
);
718 vnc_write_u32(vs
, 0); /* screen flags */
719 vnc_unlock_output(vs
);
723 static void vnc_desktop_resize(VncState
*vs
)
725 if (vs
->ioc
== NULL
|| (!vnc_has_feature(vs
, VNC_FEATURE_RESIZE
) &&
726 !vnc_has_feature(vs
, VNC_FEATURE_RESIZE_EXT
))) {
729 if (vs
->client_width
== vs
->vd
->true_width
&&
730 vs
->client_height
== pixman_image_get_height(vs
->vd
->server
)) {
734 assert(vs
->vd
->true_width
< 65536 &&
735 vs
->vd
->true_width
>= 0);
736 assert(pixman_image_get_height(vs
->vd
->server
) < 65536 &&
737 pixman_image_get_height(vs
->vd
->server
) >= 0);
738 vs
->client_width
= vs
->vd
->true_width
;
739 vs
->client_height
= pixman_image_get_height(vs
->vd
->server
);
741 if (vnc_has_feature(vs
, VNC_FEATURE_RESIZE_EXT
)) {
742 vnc_desktop_resize_ext(vs
, 0);
746 trace_vnc_msg_server_desktop_resize(
747 vs
, vs
->ioc
, vs
->client_width
, vs
->client_height
);
750 vnc_write_u8(vs
, VNC_MSG_SERVER_FRAMEBUFFER_UPDATE
);
752 vnc_write_u16(vs
, 1); /* number of rects */
753 vnc_framebuffer_update(vs
, 0, 0, vs
->client_width
, vs
->client_height
,
754 VNC_ENCODING_DESKTOPRESIZE
);
755 vnc_unlock_output(vs
);
759 static void vnc_abort_display_jobs(VncDisplay
*vd
)
763 QTAILQ_FOREACH(vs
, &vd
->clients
, next
) {
766 vnc_unlock_output(vs
);
768 QTAILQ_FOREACH(vs
, &vd
->clients
, next
) {
771 QTAILQ_FOREACH(vs
, &vd
->clients
, next
) {
773 if (vs
->update
== VNC_STATE_UPDATE_NONE
&&
774 vs
->job_update
!= VNC_STATE_UPDATE_NONE
) {
775 /* job aborted before completion */
776 vs
->update
= vs
->job_update
;
777 vs
->job_update
= VNC_STATE_UPDATE_NONE
;
780 vnc_unlock_output(vs
);
784 int vnc_server_fb_stride(VncDisplay
*vd
)
786 return pixman_image_get_stride(vd
->server
);
789 void *vnc_server_fb_ptr(VncDisplay
*vd
, int x
, int y
)
793 ptr
= (uint8_t *)pixman_image_get_data(vd
->server
);
794 ptr
+= y
* vnc_server_fb_stride(vd
);
795 ptr
+= x
* VNC_SERVER_FB_BYTES
;
799 static void vnc_update_server_surface(VncDisplay
*vd
)
803 qemu_pixman_image_unref(vd
->server
);
806 if (QTAILQ_EMPTY(&vd
->clients
)) {
810 width
= vnc_width(vd
);
811 height
= vnc_height(vd
);
812 vd
->true_width
= vnc_true_width(vd
);
813 vd
->server
= pixman_image_create_bits(VNC_SERVER_FB_FORMAT
,
817 memset(vd
->guest
.dirty
, 0x00, sizeof(vd
->guest
.dirty
));
818 vnc_set_area_dirty(vd
->guest
.dirty
, vd
, 0, 0,
822 static bool vnc_check_pageflip(DisplaySurface
*s1
,
825 return (s1
!= NULL
&&
827 surface_width(s1
) == surface_width(s2
) &&
828 surface_height(s1
) == surface_height(s2
) &&
829 surface_format(s1
) == surface_format(s2
));
833 static void vnc_dpy_switch(DisplayChangeListener
*dcl
,
834 DisplaySurface
*surface
)
836 VncDisplay
*vd
= container_of(dcl
, VncDisplay
, dcl
);
837 bool pageflip
= vnc_check_pageflip(vd
->ds
, surface
);
840 vnc_abort_display_jobs(vd
);
844 qemu_pixman_image_unref(vd
->guest
.fb
);
845 vd
->guest
.fb
= pixman_image_ref(surface
->image
);
846 vd
->guest
.format
= surface
->format
;
850 trace_vnc_server_dpy_pageflip(vd
,
851 surface_width(surface
),
852 surface_height(surface
),
853 surface_format(surface
));
854 vnc_set_area_dirty(vd
->guest
.dirty
, vd
, 0, 0,
855 surface_width(surface
),
856 surface_height(surface
));
860 trace_vnc_server_dpy_recreate(vd
,
861 surface_width(surface
),
862 surface_height(surface
),
863 surface_format(surface
));
865 vnc_update_server_surface(vd
);
867 QTAILQ_FOREACH(vs
, &vd
->clients
, next
) {
869 vnc_desktop_resize(vs
);
870 vnc_cursor_define(vs
);
871 memset(vs
->dirty
, 0x00, sizeof(vs
->dirty
));
872 vnc_set_area_dirty(vs
->dirty
, vd
, 0, 0,
875 vnc_update_throttle_offset(vs
);
880 static void vnc_write_pixels_copy(VncState
*vs
,
881 void *pixels
, int size
)
883 vnc_write(vs
, pixels
, size
);
886 /* slowest but generic code. */
887 void vnc_convert_pixel(VncState
*vs
, uint8_t *buf
, uint32_t v
)
891 #if VNC_SERVER_FB_FORMAT == PIXMAN_FORMAT(32, PIXMAN_TYPE_ARGB, 0, 8, 8, 8)
892 r
= (((v
& 0x00ff0000) >> 16) << vs
->client_pf
.rbits
) >> 8;
893 g
= (((v
& 0x0000ff00) >> 8) << vs
->client_pf
.gbits
) >> 8;
894 b
= (((v
& 0x000000ff) >> 0) << vs
->client_pf
.bbits
) >> 8;
896 # error need some bits here if you change VNC_SERVER_FB_FORMAT
898 v
= (r
<< vs
->client_pf
.rshift
) |
899 (g
<< vs
->client_pf
.gshift
) |
900 (b
<< vs
->client_pf
.bshift
);
901 switch (vs
->client_pf
.bytes_per_pixel
) {
931 static void vnc_write_pixels_generic(VncState
*vs
,
932 void *pixels1
, int size
)
936 if (VNC_SERVER_FB_BYTES
== 4) {
937 uint32_t *pixels
= pixels1
;
940 for (i
= 0; i
< n
; i
++) {
941 vnc_convert_pixel(vs
, buf
, pixels
[i
]);
942 vnc_write(vs
, buf
, vs
->client_pf
.bytes_per_pixel
);
947 int vnc_raw_send_framebuffer_update(VncState
*vs
, int x
, int y
, int w
, int h
)
951 VncDisplay
*vd
= vs
->vd
;
953 row
= vnc_server_fb_ptr(vd
, x
, y
);
954 for (i
= 0; i
< h
; i
++) {
955 vs
->write_pixels(vs
, row
, w
* VNC_SERVER_FB_BYTES
);
956 row
+= vnc_server_fb_stride(vd
);
961 int vnc_send_framebuffer_update(VncState
*vs
, int x
, int y
, int w
, int h
)
965 switch(vs
->vnc_encoding
) {
966 case VNC_ENCODING_ZLIB
:
967 n
= vnc_zlib_send_framebuffer_update(vs
, x
, y
, w
, h
);
969 case VNC_ENCODING_HEXTILE
:
970 vnc_framebuffer_update(vs
, x
, y
, w
, h
, VNC_ENCODING_HEXTILE
);
971 n
= vnc_hextile_send_framebuffer_update(vs
, x
, y
, w
, h
);
973 case VNC_ENCODING_TIGHT
:
974 n
= vnc_tight_send_framebuffer_update(vs
, x
, y
, w
, h
);
976 case VNC_ENCODING_TIGHT_PNG
:
977 n
= vnc_tight_png_send_framebuffer_update(vs
, x
, y
, w
, h
);
979 case VNC_ENCODING_ZRLE
:
980 n
= vnc_zrle_send_framebuffer_update(vs
, x
, y
, w
, h
);
982 case VNC_ENCODING_ZYWRLE
:
983 n
= vnc_zywrle_send_framebuffer_update(vs
, x
, y
, w
, h
);
986 vnc_framebuffer_update(vs
, x
, y
, w
, h
, VNC_ENCODING_RAW
);
987 n
= vnc_raw_send_framebuffer_update(vs
, x
, y
, w
, h
);
993 static void vnc_mouse_set(DisplayChangeListener
*dcl
,
994 int x
, int y
, int visible
)
996 /* can we ask the client(s) to move the pointer ??? */
999 static int vnc_cursor_define(VncState
*vs
)
1001 QEMUCursor
*c
= vs
->vd
->cursor
;
1004 if (!vs
->vd
->cursor
) {
1008 if (vnc_has_feature(vs
, VNC_FEATURE_ALPHA_CURSOR
)) {
1009 vnc_lock_output(vs
);
1010 vnc_write_u8(vs
, VNC_MSG_SERVER_FRAMEBUFFER_UPDATE
);
1011 vnc_write_u8(vs
, 0); /* padding */
1012 vnc_write_u16(vs
, 1); /* # of rects */
1013 vnc_framebuffer_update(vs
, c
->hot_x
, c
->hot_y
, c
->width
, c
->height
,
1014 VNC_ENCODING_ALPHA_CURSOR
);
1015 vnc_write_s32(vs
, VNC_ENCODING_RAW
);
1016 vnc_write(vs
, c
->data
, c
->width
* c
->height
* 4);
1017 vnc_unlock_output(vs
);
1020 if (vnc_has_feature(vs
, VNC_FEATURE_RICH_CURSOR
)) {
1021 vnc_lock_output(vs
);
1022 vnc_write_u8(vs
, VNC_MSG_SERVER_FRAMEBUFFER_UPDATE
);
1023 vnc_write_u8(vs
, 0); /* padding */
1024 vnc_write_u16(vs
, 1); /* # of rects */
1025 vnc_framebuffer_update(vs
, c
->hot_x
, c
->hot_y
, c
->width
, c
->height
,
1026 VNC_ENCODING_RICH_CURSOR
);
1027 isize
= c
->width
* c
->height
* vs
->client_pf
.bytes_per_pixel
;
1028 vnc_write_pixels_generic(vs
, c
->data
, isize
);
1029 vnc_write(vs
, vs
->vd
->cursor_mask
, vs
->vd
->cursor_msize
);
1030 vnc_unlock_output(vs
);
1036 static void vnc_dpy_cursor_define(DisplayChangeListener
*dcl
,
1039 VncDisplay
*vd
= container_of(dcl
, VncDisplay
, dcl
);
1042 cursor_put(vd
->cursor
);
1043 g_free(vd
->cursor_mask
);
1046 cursor_get(vd
->cursor
);
1047 vd
->cursor_msize
= cursor_get_mono_bpl(c
) * c
->height
;
1048 vd
->cursor_mask
= g_malloc0(vd
->cursor_msize
);
1049 cursor_get_mono_mask(c
, 0, vd
->cursor_mask
);
1051 QTAILQ_FOREACH(vs
, &vd
->clients
, next
) {
1052 vnc_cursor_define(vs
);
1056 static int find_and_clear_dirty_height(VncState
*vs
,
1057 int y
, int last_x
, int x
, int height
)
1061 for (h
= 1; h
< (height
- y
); h
++) {
1062 if (!test_bit(last_x
, vs
->dirty
[y
+ h
])) {
1065 bitmap_clear(vs
->dirty
[y
+ h
], last_x
, x
- last_x
);
1072 * Figure out how much pending data we should allow in the output
1073 * buffer before we throttle incremental display updates, and/or
1074 * drop audio samples.
1076 * We allow for equiv of 1 full display's worth of FB updates,
1077 * and 1 second of audio samples. If audio backlog was larger
1078 * than that the client would already suffering awful audio
1079 * glitches, so dropping samples is no worse really).
1081 static void vnc_update_throttle_offset(VncState
*vs
)
1084 vs
->client_width
* vs
->client_height
* vs
->client_pf
.bytes_per_pixel
;
1086 if (vs
->audio_cap
) {
1088 switch (vs
->as
.fmt
) {
1090 case AUDIO_FORMAT_U8
:
1091 case AUDIO_FORMAT_S8
:
1094 case AUDIO_FORMAT_U16
:
1095 case AUDIO_FORMAT_S16
:
1098 case AUDIO_FORMAT_U32
:
1099 case AUDIO_FORMAT_S32
:
1103 offset
+= vs
->as
.freq
* bps
* vs
->as
.nchannels
;
1106 /* Put a floor of 1MB on offset, so that if we have a large pending
1107 * buffer and the display is resized to a small size & back again
1108 * we don't suddenly apply a tiny send limit
1110 offset
= MAX(offset
, 1024 * 1024);
1112 if (vs
->throttle_output_offset
!= offset
) {
1113 trace_vnc_client_throttle_threshold(
1114 vs
, vs
->ioc
, vs
->throttle_output_offset
, offset
, vs
->client_width
,
1115 vs
->client_height
, vs
->client_pf
.bytes_per_pixel
, vs
->audio_cap
);
1118 vs
->throttle_output_offset
= offset
;
1121 static bool vnc_should_update(VncState
*vs
)
1123 switch (vs
->update
) {
1124 case VNC_STATE_UPDATE_NONE
:
1126 case VNC_STATE_UPDATE_INCREMENTAL
:
1127 /* Only allow incremental updates if the pending send queue
1128 * is less than the permitted threshold, and the job worker
1129 * is completely idle.
1131 if (vs
->output
.offset
< vs
->throttle_output_offset
&&
1132 vs
->job_update
== VNC_STATE_UPDATE_NONE
) {
1135 trace_vnc_client_throttle_incremental(
1136 vs
, vs
->ioc
, vs
->job_update
, vs
->output
.offset
);
1138 case VNC_STATE_UPDATE_FORCE
:
1139 /* Only allow forced updates if the pending send queue
1140 * does not contain a previous forced update, and the
1141 * job worker is completely idle.
1143 * Note this means we'll queue a forced update, even if
1144 * the output buffer size is otherwise over the throttle
1147 if (vs
->force_update_offset
== 0 &&
1148 vs
->job_update
== VNC_STATE_UPDATE_NONE
) {
1151 trace_vnc_client_throttle_forced(
1152 vs
, vs
->ioc
, vs
->job_update
, vs
->force_update_offset
);
1158 static int vnc_update_client(VncState
*vs
, int has_dirty
)
1160 VncDisplay
*vd
= vs
->vd
;
1166 if (vs
->disconnecting
) {
1167 vnc_disconnect_finish(vs
);
1171 vs
->has_dirty
+= has_dirty
;
1172 if (!vnc_should_update(vs
)) {
1176 if (!vs
->has_dirty
&& vs
->update
!= VNC_STATE_UPDATE_FORCE
) {
1181 * Send screen updates to the vnc client using the server
1182 * surface and server dirty map. guest surface updates
1183 * happening in parallel don't disturb us, the next pass will
1184 * send them to the client.
1186 job
= vnc_job_new(vs
);
1188 height
= pixman_image_get_height(vd
->server
);
1189 width
= pixman_image_get_width(vd
->server
);
1195 unsigned long offset
= find_next_bit((unsigned long *) &vs
->dirty
,
1196 height
* VNC_DIRTY_BPL(vs
),
1197 y
* VNC_DIRTY_BPL(vs
));
1198 if (offset
== height
* VNC_DIRTY_BPL(vs
)) {
1199 /* no more dirty bits */
1202 y
= offset
/ VNC_DIRTY_BPL(vs
);
1203 x
= offset
% VNC_DIRTY_BPL(vs
);
1204 x2
= find_next_zero_bit((unsigned long *) &vs
->dirty
[y
],
1205 VNC_DIRTY_BPL(vs
), x
);
1206 bitmap_clear(vs
->dirty
[y
], x
, x2
- x
);
1207 h
= find_and_clear_dirty_height(vs
, y
, x
, x2
, height
);
1208 x2
= MIN(x2
, width
/ VNC_DIRTY_PIXELS_PER_BIT
);
1210 n
+= vnc_job_add_rect(job
, x
* VNC_DIRTY_PIXELS_PER_BIT
, y
,
1211 (x2
- x
) * VNC_DIRTY_PIXELS_PER_BIT
, h
);
1213 if (!x
&& x2
== width
/ VNC_DIRTY_PIXELS_PER_BIT
) {
1221 vs
->job_update
= vs
->update
;
1222 vs
->update
= VNC_STATE_UPDATE_NONE
;
1229 static void audio_capture_notify(void *opaque
, audcnotification_e cmd
)
1231 VncState
*vs
= opaque
;
1233 assert(vs
->magic
== VNC_MAGIC
);
1235 case AUD_CNOTIFY_DISABLE
:
1236 trace_vnc_msg_server_audio_end(vs
, vs
->ioc
);
1237 vnc_lock_output(vs
);
1238 vnc_write_u8(vs
, VNC_MSG_SERVER_QEMU
);
1239 vnc_write_u8(vs
, VNC_MSG_SERVER_QEMU_AUDIO
);
1240 vnc_write_u16(vs
, VNC_MSG_SERVER_QEMU_AUDIO_END
);
1241 vnc_unlock_output(vs
);
1245 case AUD_CNOTIFY_ENABLE
:
1246 trace_vnc_msg_server_audio_begin(vs
, vs
->ioc
);
1247 vnc_lock_output(vs
);
1248 vnc_write_u8(vs
, VNC_MSG_SERVER_QEMU
);
1249 vnc_write_u8(vs
, VNC_MSG_SERVER_QEMU_AUDIO
);
1250 vnc_write_u16(vs
, VNC_MSG_SERVER_QEMU_AUDIO_BEGIN
);
1251 vnc_unlock_output(vs
);
1257 static void audio_capture_destroy(void *opaque
)
1261 static void audio_capture(void *opaque
, const void *buf
, int size
)
1263 VncState
*vs
= opaque
;
1265 assert(vs
->magic
== VNC_MAGIC
);
1266 trace_vnc_msg_server_audio_data(vs
, vs
->ioc
, buf
, size
);
1267 vnc_lock_output(vs
);
1268 if (vs
->output
.offset
< vs
->throttle_output_offset
) {
1269 vnc_write_u8(vs
, VNC_MSG_SERVER_QEMU
);
1270 vnc_write_u8(vs
, VNC_MSG_SERVER_QEMU_AUDIO
);
1271 vnc_write_u16(vs
, VNC_MSG_SERVER_QEMU_AUDIO_DATA
);
1272 vnc_write_u32(vs
, size
);
1273 vnc_write(vs
, buf
, size
);
1275 trace_vnc_client_throttle_audio(vs
, vs
->ioc
, vs
->output
.offset
);
1277 vnc_unlock_output(vs
);
1281 static void audio_add(VncState
*vs
)
1283 struct audio_capture_ops ops
;
1285 if (vs
->audio_cap
) {
1286 error_report("audio already running");
1290 ops
.notify
= audio_capture_notify
;
1291 ops
.destroy
= audio_capture_destroy
;
1292 ops
.capture
= audio_capture
;
1294 vs
->audio_cap
= AUD_add_capture(vs
->vd
->audio_state
, &vs
->as
, &ops
, vs
);
1295 if (!vs
->audio_cap
) {
1296 error_report("Failed to add audio capture");
1300 static void audio_del(VncState
*vs
)
1302 if (vs
->audio_cap
) {
1303 AUD_del_capture(vs
->audio_cap
, vs
);
1304 vs
->audio_cap
= NULL
;
1308 static void vnc_disconnect_start(VncState
*vs
)
1310 if (vs
->disconnecting
) {
1313 trace_vnc_client_disconnect_start(vs
, vs
->ioc
);
1314 vnc_set_share_mode(vs
, VNC_SHARE_MODE_DISCONNECTED
);
1316 g_source_remove(vs
->ioc_tag
);
1319 qio_channel_close(vs
->ioc
, NULL
);
1320 vs
->disconnecting
= TRUE
;
1323 void vnc_disconnect_finish(VncState
*vs
)
1327 trace_vnc_client_disconnect_finish(vs
, vs
->ioc
);
1329 vnc_jobs_join(vs
); /* Wait encoding jobs */
1331 vnc_lock_output(vs
);
1332 vnc_qmp_event(vs
, QAPI_EVENT_VNC_DISCONNECTED
);
1334 buffer_free(&vs
->input
);
1335 buffer_free(&vs
->output
);
1337 qapi_free_VncClientInfo(vs
->info
);
1340 vnc_tight_clear(vs
);
1343 #ifdef CONFIG_VNC_SASL
1344 vnc_sasl_client_cleanup(vs
);
1345 #endif /* CONFIG_VNC_SASL */
1347 qkbd_state_lift_all_keys(vs
->vd
->kbd
);
1349 if (vs
->mouse_mode_notifier
.notify
!= NULL
) {
1350 qemu_remove_mouse_mode_change_notifier(&vs
->mouse_mode_notifier
);
1352 QTAILQ_REMOVE(&vs
->vd
->clients
, vs
, next
);
1353 if (QTAILQ_EMPTY(&vs
->vd
->clients
)) {
1354 /* last client gone */
1355 vnc_update_server_surface(vs
->vd
);
1357 vnc_unlock_output(vs
);
1359 if (vs
->cbpeer
.notifier
.notify
) {
1360 qemu_clipboard_peer_unregister(&vs
->cbpeer
);
1363 qemu_mutex_destroy(&vs
->output_mutex
);
1364 if (vs
->bh
!= NULL
) {
1365 qemu_bh_delete(vs
->bh
);
1367 buffer_free(&vs
->jobs_buffer
);
1369 for (i
= 0; i
< VNC_STAT_ROWS
; ++i
) {
1370 g_free(vs
->lossy_rect
[i
]);
1372 g_free(vs
->lossy_rect
);
1374 object_unref(OBJECT(vs
->ioc
));
1376 object_unref(OBJECT(vs
->sioc
));
1384 size_t vnc_client_io_error(VncState
*vs
, ssize_t ret
, Error
*err
)
1388 trace_vnc_client_eof(vs
, vs
->ioc
);
1389 vnc_disconnect_start(vs
);
1390 } else if (ret
!= QIO_CHANNEL_ERR_BLOCK
) {
1391 trace_vnc_client_io_error(vs
, vs
->ioc
,
1392 err
? error_get_pretty(err
) : "Unknown");
1393 vnc_disconnect_start(vs
);
1403 void vnc_client_error(VncState
*vs
)
1405 VNC_DEBUG("Closing down client sock: protocol error\n");
1406 vnc_disconnect_start(vs
);
1411 * Called to write a chunk of data to the client socket. The data may
1412 * be the raw data, or may have already been encoded by SASL.
1413 * The data will be written either straight onto the socket, or
1414 * written via the GNUTLS wrappers, if TLS/SSL encryption is enabled
1416 * NB, it is theoretically possible to have 2 layers of encryption,
1417 * both SASL, and this TLS layer. It is highly unlikely in practice
1418 * though, since SASL encryption will typically be a no-op if TLS
1421 * Returns the number of bytes written, which may be less than
1422 * the requested 'datalen' if the socket would block. Returns
1423 * 0 on I/O error, and disconnects the client socket.
1425 size_t vnc_client_write_buf(VncState
*vs
, const uint8_t *data
, size_t datalen
)
1429 ret
= qio_channel_write(vs
->ioc
, (const char *)data
, datalen
, &err
);
1430 VNC_DEBUG("Wrote wire %p %zd -> %ld\n", data
, datalen
, ret
);
1431 return vnc_client_io_error(vs
, ret
, err
);
1436 * Called to write buffered data to the client socket, when not
1437 * using any SASL SSF encryption layers. Will write as much data
1438 * as possible without blocking. If all buffered data is written,
1439 * will switch the FD poll() handler back to read monitoring.
1441 * Returns the number of bytes written, which may be less than
1442 * the buffered output data if the socket would block. Returns
1443 * 0 on I/O error, and disconnects the client socket.
1445 static size_t vnc_client_write_plain(VncState
*vs
)
1450 #ifdef CONFIG_VNC_SASL
1451 VNC_DEBUG("Write Plain: Pending output %p size %zd offset %zd. Wait SSF %d\n",
1452 vs
->output
.buffer
, vs
->output
.capacity
, vs
->output
.offset
,
1453 vs
->sasl
.waitWriteSSF
);
1455 if (vs
->sasl
.conn
&&
1457 vs
->sasl
.waitWriteSSF
) {
1458 ret
= vnc_client_write_buf(vs
, vs
->output
.buffer
, vs
->sasl
.waitWriteSSF
);
1460 vs
->sasl
.waitWriteSSF
-= ret
;
1462 #endif /* CONFIG_VNC_SASL */
1463 ret
= vnc_client_write_buf(vs
, vs
->output
.buffer
, vs
->output
.offset
);
1467 if (ret
>= vs
->force_update_offset
) {
1468 if (vs
->force_update_offset
!= 0) {
1469 trace_vnc_client_unthrottle_forced(vs
, vs
->ioc
);
1471 vs
->force_update_offset
= 0;
1473 vs
->force_update_offset
-= ret
;
1475 offset
= vs
->output
.offset
;
1476 buffer_advance(&vs
->output
, ret
);
1477 if (offset
>= vs
->throttle_output_offset
&&
1478 vs
->output
.offset
< vs
->throttle_output_offset
) {
1479 trace_vnc_client_unthrottle_incremental(vs
, vs
->ioc
, vs
->output
.offset
);
1482 if (vs
->output
.offset
== 0) {
1484 g_source_remove(vs
->ioc_tag
);
1486 vs
->ioc_tag
= qio_channel_add_watch(
1487 vs
->ioc
, G_IO_IN
| G_IO_HUP
| G_IO_ERR
,
1488 vnc_client_io
, vs
, NULL
);
1496 * First function called whenever there is data to be written to
1497 * the client socket. Will delegate actual work according to whether
1498 * SASL SSF layers are enabled (thus requiring encryption calls)
1500 static void vnc_client_write_locked(VncState
*vs
)
1502 #ifdef CONFIG_VNC_SASL
1503 if (vs
->sasl
.conn
&&
1505 !vs
->sasl
.waitWriteSSF
) {
1506 vnc_client_write_sasl(vs
);
1508 #endif /* CONFIG_VNC_SASL */
1510 vnc_client_write_plain(vs
);
1514 static void vnc_client_write(VncState
*vs
)
1516 assert(vs
->magic
== VNC_MAGIC
);
1517 vnc_lock_output(vs
);
1518 if (vs
->output
.offset
) {
1519 vnc_client_write_locked(vs
);
1520 } else if (vs
->ioc
!= NULL
) {
1522 g_source_remove(vs
->ioc_tag
);
1524 vs
->ioc_tag
= qio_channel_add_watch(
1525 vs
->ioc
, G_IO_IN
| G_IO_HUP
| G_IO_ERR
,
1526 vnc_client_io
, vs
, NULL
);
1528 vnc_unlock_output(vs
);
1531 void vnc_read_when(VncState
*vs
, VncReadEvent
*func
, size_t expecting
)
1533 vs
->read_handler
= func
;
1534 vs
->read_handler_expect
= expecting
;
1539 * Called to read a chunk of data from the client socket. The data may
1540 * be the raw data, or may need to be further decoded by SASL.
1541 * The data will be read either straight from to the socket, or
1542 * read via the GNUTLS wrappers, if TLS/SSL encryption is enabled
1544 * NB, it is theoretically possible to have 2 layers of encryption,
1545 * both SASL, and this TLS layer. It is highly unlikely in practice
1546 * though, since SASL encryption will typically be a no-op if TLS
1549 * Returns the number of bytes read, which may be less than
1550 * the requested 'datalen' if the socket would block. Returns
1551 * 0 on I/O error or EOF, and disconnects the client socket.
1553 size_t vnc_client_read_buf(VncState
*vs
, uint8_t *data
, size_t datalen
)
1557 ret
= qio_channel_read(vs
->ioc
, (char *)data
, datalen
, &err
);
1558 VNC_DEBUG("Read wire %p %zd -> %ld\n", data
, datalen
, ret
);
1559 return vnc_client_io_error(vs
, ret
, err
);
1564 * Called to read data from the client socket to the input buffer,
1565 * when not using any SASL SSF encryption layers. Will read as much
1566 * data as possible without blocking.
1568 * Returns the number of bytes read, which may be less than
1569 * the requested 'datalen' if the socket would block. Returns
1570 * 0 on I/O error or EOF, and disconnects the client socket.
1572 static size_t vnc_client_read_plain(VncState
*vs
)
1575 VNC_DEBUG("Read plain %p size %zd offset %zd\n",
1576 vs
->input
.buffer
, vs
->input
.capacity
, vs
->input
.offset
);
1577 buffer_reserve(&vs
->input
, 4096);
1578 ret
= vnc_client_read_buf(vs
, buffer_end(&vs
->input
), 4096);
1581 vs
->input
.offset
+= ret
;
1585 static void vnc_jobs_bh(void *opaque
)
1587 VncState
*vs
= opaque
;
1589 assert(vs
->magic
== VNC_MAGIC
);
1590 vnc_jobs_consume_buffer(vs
);
1594 * First function called whenever there is more data to be read from
1595 * the client socket. Will delegate actual work according to whether
1596 * SASL SSF layers are enabled (thus requiring decryption calls)
1597 * Returns 0 on success, -1 if client disconnected
1599 static int vnc_client_read(VncState
*vs
)
1603 #ifdef CONFIG_VNC_SASL
1604 if (vs
->sasl
.conn
&& vs
->sasl
.runSSF
)
1605 ret
= vnc_client_read_sasl(vs
);
1607 #endif /* CONFIG_VNC_SASL */
1608 ret
= vnc_client_read_plain(vs
);
1610 if (vs
->disconnecting
) {
1611 vnc_disconnect_finish(vs
);
1617 while (vs
->read_handler
&& vs
->input
.offset
>= vs
->read_handler_expect
) {
1618 size_t len
= vs
->read_handler_expect
;
1621 ret
= vs
->read_handler(vs
, vs
->input
.buffer
, len
);
1622 if (vs
->disconnecting
) {
1623 vnc_disconnect_finish(vs
);
1628 buffer_advance(&vs
->input
, len
);
1630 vs
->read_handler_expect
= ret
;
1636 gboolean
vnc_client_io(QIOChannel
*ioc G_GNUC_UNUSED
,
1637 GIOCondition condition
, void *opaque
)
1639 VncState
*vs
= opaque
;
1641 assert(vs
->magic
== VNC_MAGIC
);
1643 if (condition
& (G_IO_HUP
| G_IO_ERR
)) {
1644 vnc_disconnect_start(vs
);
1648 if (condition
& G_IO_IN
) {
1649 if (vnc_client_read(vs
) < 0) {
1650 /* vs is free()ed here */
1654 if (condition
& G_IO_OUT
) {
1655 vnc_client_write(vs
);
1658 if (vs
->disconnecting
) {
1659 if (vs
->ioc_tag
!= 0) {
1660 g_source_remove(vs
->ioc_tag
);
1669 * Scale factor to apply to vs->throttle_output_offset when checking for
1670 * hard limit. Worst case normal usage could be x2, if we have a complete
1671 * incremental update and complete forced update in the output buffer.
1672 * So x3 should be good enough, but we pick x5 to be conservative and thus
1673 * (hopefully) never trigger incorrectly.
1675 #define VNC_THROTTLE_OUTPUT_LIMIT_SCALE 5
1677 void vnc_write(VncState
*vs
, const void *data
, size_t len
)
1679 assert(vs
->magic
== VNC_MAGIC
);
1680 if (vs
->disconnecting
) {
1683 /* Protection against malicious client/guest to prevent our output
1684 * buffer growing without bound if client stops reading data. This
1685 * should rarely trigger, because we have earlier throttling code
1686 * which stops issuing framebuffer updates and drops audio data
1687 * if the throttle_output_offset value is exceeded. So we only reach
1688 * this higher level if a huge number of pseudo-encodings get
1689 * triggered while data can't be sent on the socket.
1691 * NB throttle_output_offset can be zero during early protocol
1692 * handshake, or from the job thread's VncState clone
1694 if (vs
->throttle_output_offset
!= 0 &&
1695 (vs
->output
.offset
/ VNC_THROTTLE_OUTPUT_LIMIT_SCALE
) >
1696 vs
->throttle_output_offset
) {
1697 trace_vnc_client_output_limit(vs
, vs
->ioc
, vs
->output
.offset
,
1698 vs
->throttle_output_offset
);
1699 vnc_disconnect_start(vs
);
1702 buffer_reserve(&vs
->output
, len
);
1704 if (vs
->ioc
!= NULL
&& buffer_empty(&vs
->output
)) {
1706 g_source_remove(vs
->ioc_tag
);
1708 vs
->ioc_tag
= qio_channel_add_watch(
1709 vs
->ioc
, G_IO_IN
| G_IO_HUP
| G_IO_ERR
| G_IO_OUT
,
1710 vnc_client_io
, vs
, NULL
);
1713 buffer_append(&vs
->output
, data
, len
);
1716 void vnc_write_s32(VncState
*vs
, int32_t value
)
1718 vnc_write_u32(vs
, *(uint32_t *)&value
);
1721 void vnc_write_u32(VncState
*vs
, uint32_t value
)
1725 buf
[0] = (value
>> 24) & 0xFF;
1726 buf
[1] = (value
>> 16) & 0xFF;
1727 buf
[2] = (value
>> 8) & 0xFF;
1728 buf
[3] = value
& 0xFF;
1730 vnc_write(vs
, buf
, 4);
1733 void vnc_write_u16(VncState
*vs
, uint16_t value
)
1737 buf
[0] = (value
>> 8) & 0xFF;
1738 buf
[1] = value
& 0xFF;
1740 vnc_write(vs
, buf
, 2);
1743 void vnc_write_u8(VncState
*vs
, uint8_t value
)
1745 vnc_write(vs
, (char *)&value
, 1);
1748 void vnc_flush(VncState
*vs
)
1750 vnc_lock_output(vs
);
1751 if (vs
->ioc
!= NULL
&& vs
->output
.offset
) {
1752 vnc_client_write_locked(vs
);
1754 if (vs
->disconnecting
) {
1755 if (vs
->ioc_tag
!= 0) {
1756 g_source_remove(vs
->ioc_tag
);
1760 vnc_unlock_output(vs
);
1763 static uint8_t read_u8(uint8_t *data
, size_t offset
)
1765 return data
[offset
];
1768 static uint16_t read_u16(uint8_t *data
, size_t offset
)
1770 return ((data
[offset
] & 0xFF) << 8) | (data
[offset
+ 1] & 0xFF);
1773 static int32_t read_s32(uint8_t *data
, size_t offset
)
1775 return (int32_t)((data
[offset
] << 24) | (data
[offset
+ 1] << 16) |
1776 (data
[offset
+ 2] << 8) | data
[offset
+ 3]);
1779 uint32_t read_u32(uint8_t *data
, size_t offset
)
1781 return ((data
[offset
] << 24) | (data
[offset
+ 1] << 16) |
1782 (data
[offset
+ 2] << 8) | data
[offset
+ 3]);
1785 static void check_pointer_type_change(Notifier
*notifier
, void *data
)
1787 VncState
*vs
= container_of(notifier
, VncState
, mouse_mode_notifier
);
1788 int absolute
= qemu_input_is_absolute();
1790 if (vnc_has_feature(vs
, VNC_FEATURE_POINTER_TYPE_CHANGE
) && vs
->absolute
!= absolute
) {
1791 vnc_lock_output(vs
);
1792 vnc_write_u8(vs
, VNC_MSG_SERVER_FRAMEBUFFER_UPDATE
);
1793 vnc_write_u8(vs
, 0);
1794 vnc_write_u16(vs
, 1);
1795 vnc_framebuffer_update(vs
, absolute
, 0,
1796 pixman_image_get_width(vs
->vd
->server
),
1797 pixman_image_get_height(vs
->vd
->server
),
1798 VNC_ENCODING_POINTER_TYPE_CHANGE
);
1799 vnc_unlock_output(vs
);
1802 vs
->absolute
= absolute
;
1805 static void pointer_event(VncState
*vs
, int button_mask
, int x
, int y
)
1807 static uint32_t bmap
[INPUT_BUTTON__MAX
] = {
1808 [INPUT_BUTTON_LEFT
] = 0x01,
1809 [INPUT_BUTTON_MIDDLE
] = 0x02,
1810 [INPUT_BUTTON_RIGHT
] = 0x04,
1811 [INPUT_BUTTON_WHEEL_UP
] = 0x08,
1812 [INPUT_BUTTON_WHEEL_DOWN
] = 0x10,
1814 QemuConsole
*con
= vs
->vd
->dcl
.con
;
1815 int width
= pixman_image_get_width(vs
->vd
->server
);
1816 int height
= pixman_image_get_height(vs
->vd
->server
);
1818 if (vs
->last_bmask
!= button_mask
) {
1819 qemu_input_update_buttons(con
, bmap
, vs
->last_bmask
, button_mask
);
1820 vs
->last_bmask
= button_mask
;
1824 qemu_input_queue_abs(con
, INPUT_AXIS_X
, x
, 0, width
);
1825 qemu_input_queue_abs(con
, INPUT_AXIS_Y
, y
, 0, height
);
1826 } else if (vnc_has_feature(vs
, VNC_FEATURE_POINTER_TYPE_CHANGE
)) {
1827 qemu_input_queue_rel(con
, INPUT_AXIS_X
, x
- 0x7FFF);
1828 qemu_input_queue_rel(con
, INPUT_AXIS_Y
, y
- 0x7FFF);
1830 if (vs
->last_x
!= -1) {
1831 qemu_input_queue_rel(con
, INPUT_AXIS_X
, x
- vs
->last_x
);
1832 qemu_input_queue_rel(con
, INPUT_AXIS_Y
, y
- vs
->last_y
);
1837 qemu_input_event_sync();
1840 static void press_key(VncState
*vs
, QKeyCode qcode
)
1842 qkbd_state_key_event(vs
->vd
->kbd
, qcode
, true);
1843 qkbd_state_key_event(vs
->vd
->kbd
, qcode
, false);
1846 static void vnc_led_state_change(VncState
*vs
)
1848 if (!vnc_has_feature(vs
, VNC_FEATURE_LED_STATE
)) {
1852 vnc_lock_output(vs
);
1853 vnc_write_u8(vs
, VNC_MSG_SERVER_FRAMEBUFFER_UPDATE
);
1854 vnc_write_u8(vs
, 0);
1855 vnc_write_u16(vs
, 1);
1856 vnc_framebuffer_update(vs
, 0, 0, 1, 1, VNC_ENCODING_LED_STATE
);
1857 vnc_write_u8(vs
, vs
->vd
->ledstate
);
1858 vnc_unlock_output(vs
);
1862 static void kbd_leds(void *opaque
, int ledstate
)
1864 VncDisplay
*vd
= opaque
;
1867 trace_vnc_key_guest_leds((ledstate
& QEMU_CAPS_LOCK_LED
),
1868 (ledstate
& QEMU_NUM_LOCK_LED
),
1869 (ledstate
& QEMU_SCROLL_LOCK_LED
));
1871 if (ledstate
== vd
->ledstate
) {
1875 vd
->ledstate
= ledstate
;
1877 QTAILQ_FOREACH(client
, &vd
->clients
, next
) {
1878 vnc_led_state_change(client
);
1882 static void do_key_event(VncState
*vs
, int down
, int keycode
, int sym
)
1884 QKeyCode qcode
= qemu_input_key_number_to_qcode(keycode
);
1886 /* QEMU console switch */
1888 case Q_KEY_CODE_1
... Q_KEY_CODE_9
: /* '1' to '9' keys */
1889 if (vs
->vd
->dcl
.con
== NULL
&& down
&&
1890 qkbd_state_modifier_get(vs
->vd
->kbd
, QKBD_MOD_CTRL
) &&
1891 qkbd_state_modifier_get(vs
->vd
->kbd
, QKBD_MOD_ALT
)) {
1892 /* Reset the modifiers sent to the current console */
1893 qkbd_state_lift_all_keys(vs
->vd
->kbd
);
1894 console_select(qcode
- Q_KEY_CODE_1
);
1901 /* Turn off the lock state sync logic if the client support the led
1904 if (down
&& vs
->vd
->lock_key_sync
&&
1905 !vnc_has_feature(vs
, VNC_FEATURE_LED_STATE
) &&
1906 keycode_is_keypad(vs
->vd
->kbd_layout
, keycode
)) {
1907 /* If the numlock state needs to change then simulate an additional
1908 keypress before sending this one. This will happen if the user
1909 toggles numlock away from the VNC window.
1911 if (keysym_is_numlock(vs
->vd
->kbd_layout
, sym
& 0xFFFF)) {
1912 if (!qkbd_state_modifier_get(vs
->vd
->kbd
, QKBD_MOD_NUMLOCK
)) {
1913 trace_vnc_key_sync_numlock(true);
1914 press_key(vs
, Q_KEY_CODE_NUM_LOCK
);
1917 if (qkbd_state_modifier_get(vs
->vd
->kbd
, QKBD_MOD_NUMLOCK
)) {
1918 trace_vnc_key_sync_numlock(false);
1919 press_key(vs
, Q_KEY_CODE_NUM_LOCK
);
1924 if (down
&& vs
->vd
->lock_key_sync
&&
1925 !vnc_has_feature(vs
, VNC_FEATURE_LED_STATE
) &&
1926 ((sym
>= 'A' && sym
<= 'Z') || (sym
>= 'a' && sym
<= 'z'))) {
1927 /* If the capslock state needs to change then simulate an additional
1928 keypress before sending this one. This will happen if the user
1929 toggles capslock away from the VNC window.
1931 int uppercase
= !!(sym
>= 'A' && sym
<= 'Z');
1932 bool shift
= qkbd_state_modifier_get(vs
->vd
->kbd
, QKBD_MOD_SHIFT
);
1933 bool capslock
= qkbd_state_modifier_get(vs
->vd
->kbd
, QKBD_MOD_CAPSLOCK
);
1935 if (uppercase
== shift
) {
1936 trace_vnc_key_sync_capslock(false);
1937 press_key(vs
, Q_KEY_CODE_CAPS_LOCK
);
1940 if (uppercase
!= shift
) {
1941 trace_vnc_key_sync_capslock(true);
1942 press_key(vs
, Q_KEY_CODE_CAPS_LOCK
);
1947 qkbd_state_key_event(vs
->vd
->kbd
, qcode
, down
);
1948 if (!qemu_console_is_graphic(NULL
)) {
1949 bool numlock
= qkbd_state_modifier_get(vs
->vd
->kbd
, QKBD_MOD_NUMLOCK
);
1950 bool control
= qkbd_state_modifier_get(vs
->vd
->kbd
, QKBD_MOD_CTRL
);
1951 /* QEMU console emulation */
1954 case 0x2a: /* Left Shift */
1955 case 0x36: /* Right Shift */
1956 case 0x1d: /* Left CTRL */
1957 case 0x9d: /* Right CTRL */
1958 case 0x38: /* Left ALT */
1959 case 0xb8: /* Right ALT */
1962 kbd_put_keysym(QEMU_KEY_UP
);
1965 kbd_put_keysym(QEMU_KEY_DOWN
);
1968 kbd_put_keysym(QEMU_KEY_LEFT
);
1971 kbd_put_keysym(QEMU_KEY_RIGHT
);
1974 kbd_put_keysym(QEMU_KEY_DELETE
);
1977 kbd_put_keysym(QEMU_KEY_HOME
);
1980 kbd_put_keysym(QEMU_KEY_END
);
1983 kbd_put_keysym(QEMU_KEY_PAGEUP
);
1986 kbd_put_keysym(QEMU_KEY_PAGEDOWN
);
1990 kbd_put_keysym(numlock
? '7' : QEMU_KEY_HOME
);
1993 kbd_put_keysym(numlock
? '8' : QEMU_KEY_UP
);
1996 kbd_put_keysym(numlock
? '9' : QEMU_KEY_PAGEUP
);
1999 kbd_put_keysym(numlock
? '4' : QEMU_KEY_LEFT
);
2002 kbd_put_keysym('5');
2005 kbd_put_keysym(numlock
? '6' : QEMU_KEY_RIGHT
);
2008 kbd_put_keysym(numlock
? '1' : QEMU_KEY_END
);
2011 kbd_put_keysym(numlock
? '2' : QEMU_KEY_DOWN
);
2014 kbd_put_keysym(numlock
? '3' : QEMU_KEY_PAGEDOWN
);
2017 kbd_put_keysym('0');
2020 kbd_put_keysym(numlock
? '.' : QEMU_KEY_DELETE
);
2024 kbd_put_keysym('/');
2027 kbd_put_keysym('*');
2030 kbd_put_keysym('-');
2033 kbd_put_keysym('+');
2036 kbd_put_keysym('\n');
2041 kbd_put_keysym(sym
& 0x1f);
2043 kbd_put_keysym(sym
);
2051 static const char *code2name(int keycode
)
2053 return QKeyCode_str(qemu_input_key_number_to_qcode(keycode
));
2056 static void key_event(VncState
*vs
, int down
, uint32_t sym
)
2061 if (lsym
>= 'A' && lsym
<= 'Z' && qemu_console_is_graphic(NULL
)) {
2062 lsym
= lsym
- 'A' + 'a';
2065 keycode
= keysym2scancode(vs
->vd
->kbd_layout
, lsym
& 0xFFFF,
2066 vs
->vd
->kbd
, down
) & SCANCODE_KEYMASK
;
2067 trace_vnc_key_event_map(down
, sym
, keycode
, code2name(keycode
));
2068 do_key_event(vs
, down
, keycode
, sym
);
2071 static void ext_key_event(VncState
*vs
, int down
,
2072 uint32_t sym
, uint16_t keycode
)
2074 /* if the user specifies a keyboard layout, always use it */
2075 if (keyboard_layout
) {
2076 key_event(vs
, down
, sym
);
2078 trace_vnc_key_event_ext(down
, sym
, keycode
, code2name(keycode
));
2079 do_key_event(vs
, down
, keycode
, sym
);
2083 static void framebuffer_update_request(VncState
*vs
, int incremental
,
2084 int x
, int y
, int w
, int h
)
2087 if (vs
->update
!= VNC_STATE_UPDATE_FORCE
) {
2088 vs
->update
= VNC_STATE_UPDATE_INCREMENTAL
;
2091 vs
->update
= VNC_STATE_UPDATE_FORCE
;
2092 vnc_set_area_dirty(vs
->dirty
, vs
->vd
, x
, y
, w
, h
);
2093 if (vnc_has_feature(vs
, VNC_FEATURE_RESIZE_EXT
)) {
2094 vnc_desktop_resize_ext(vs
, 0);
2099 static void send_ext_key_event_ack(VncState
*vs
)
2101 vnc_lock_output(vs
);
2102 vnc_write_u8(vs
, VNC_MSG_SERVER_FRAMEBUFFER_UPDATE
);
2103 vnc_write_u8(vs
, 0);
2104 vnc_write_u16(vs
, 1);
2105 vnc_framebuffer_update(vs
, 0, 0,
2106 pixman_image_get_width(vs
->vd
->server
),
2107 pixman_image_get_height(vs
->vd
->server
),
2108 VNC_ENCODING_EXT_KEY_EVENT
);
2109 vnc_unlock_output(vs
);
2113 static void send_ext_audio_ack(VncState
*vs
)
2115 vnc_lock_output(vs
);
2116 vnc_write_u8(vs
, VNC_MSG_SERVER_FRAMEBUFFER_UPDATE
);
2117 vnc_write_u8(vs
, 0);
2118 vnc_write_u16(vs
, 1);
2119 vnc_framebuffer_update(vs
, 0, 0,
2120 pixman_image_get_width(vs
->vd
->server
),
2121 pixman_image_get_height(vs
->vd
->server
),
2122 VNC_ENCODING_AUDIO
);
2123 vnc_unlock_output(vs
);
2127 static void send_xvp_message(VncState
*vs
, int code
)
2129 vnc_lock_output(vs
);
2130 vnc_write_u8(vs
, VNC_MSG_SERVER_XVP
);
2131 vnc_write_u8(vs
, 0); /* pad */
2132 vnc_write_u8(vs
, 1); /* version */
2133 vnc_write_u8(vs
, code
);
2134 vnc_unlock_output(vs
);
2138 static void set_encodings(VncState
*vs
, int32_t *encodings
, size_t n_encodings
)
2141 unsigned int enc
= 0;
2144 vs
->vnc_encoding
= 0;
2145 vs
->tight
->compression
= 9;
2146 vs
->tight
->quality
= -1; /* Lossless by default */
2150 * Start from the end because the encodings are sent in order of preference.
2151 * This way the preferred encoding (first encoding defined in the array)
2152 * will be set at the end of the loop.
2154 for (i
= n_encodings
- 1; i
>= 0; i
--) {
2157 case VNC_ENCODING_RAW
:
2158 vs
->vnc_encoding
= enc
;
2160 case VNC_ENCODING_HEXTILE
:
2161 vs
->features
|= VNC_FEATURE_HEXTILE_MASK
;
2162 vs
->vnc_encoding
= enc
;
2164 case VNC_ENCODING_TIGHT
:
2165 vs
->features
|= VNC_FEATURE_TIGHT_MASK
;
2166 vs
->vnc_encoding
= enc
;
2169 case VNC_ENCODING_TIGHT_PNG
:
2170 vs
->features
|= VNC_FEATURE_TIGHT_PNG_MASK
;
2171 vs
->vnc_encoding
= enc
;
2174 case VNC_ENCODING_ZLIB
:
2176 * VNC_ENCODING_ZRLE compresses better than VNC_ENCODING_ZLIB.
2177 * So prioritize ZRLE, even if the client hints that it prefers
2180 if ((vs
->features
& VNC_FEATURE_ZRLE_MASK
) == 0) {
2181 vs
->features
|= VNC_FEATURE_ZLIB_MASK
;
2182 vs
->vnc_encoding
= enc
;
2185 case VNC_ENCODING_ZRLE
:
2186 vs
->features
|= VNC_FEATURE_ZRLE_MASK
;
2187 vs
->vnc_encoding
= enc
;
2189 case VNC_ENCODING_ZYWRLE
:
2190 vs
->features
|= VNC_FEATURE_ZYWRLE_MASK
;
2191 vs
->vnc_encoding
= enc
;
2193 case VNC_ENCODING_DESKTOPRESIZE
:
2194 vs
->features
|= VNC_FEATURE_RESIZE_MASK
;
2196 case VNC_ENCODING_DESKTOP_RESIZE_EXT
:
2197 vs
->features
|= VNC_FEATURE_RESIZE_EXT_MASK
;
2199 case VNC_ENCODING_POINTER_TYPE_CHANGE
:
2200 vs
->features
|= VNC_FEATURE_POINTER_TYPE_CHANGE_MASK
;
2202 case VNC_ENCODING_RICH_CURSOR
:
2203 vs
->features
|= VNC_FEATURE_RICH_CURSOR_MASK
;
2205 case VNC_ENCODING_ALPHA_CURSOR
:
2206 vs
->features
|= VNC_FEATURE_ALPHA_CURSOR_MASK
;
2208 case VNC_ENCODING_EXT_KEY_EVENT
:
2209 send_ext_key_event_ack(vs
);
2211 case VNC_ENCODING_AUDIO
:
2212 send_ext_audio_ack(vs
);
2214 case VNC_ENCODING_WMVi
:
2215 vs
->features
|= VNC_FEATURE_WMVI_MASK
;
2217 case VNC_ENCODING_LED_STATE
:
2218 vs
->features
|= VNC_FEATURE_LED_STATE_MASK
;
2220 case VNC_ENCODING_XVP
:
2221 if (vs
->vd
->power_control
) {
2222 vs
->features
|= VNC_FEATURE_XVP
;
2223 send_xvp_message(vs
, VNC_XVP_CODE_INIT
);
2226 case VNC_ENCODING_CLIPBOARD_EXT
:
2227 vs
->features
|= VNC_FEATURE_CLIPBOARD_EXT_MASK
;
2228 vnc_server_cut_text_caps(vs
);
2230 case VNC_ENCODING_COMPRESSLEVEL0
... VNC_ENCODING_COMPRESSLEVEL0
+ 9:
2231 vs
->tight
->compression
= (enc
& 0x0F);
2233 case VNC_ENCODING_QUALITYLEVEL0
... VNC_ENCODING_QUALITYLEVEL0
+ 9:
2234 if (vs
->vd
->lossy
) {
2235 vs
->tight
->quality
= (enc
& 0x0F);
2239 VNC_DEBUG("Unknown encoding: %d (0x%.8x): %d\n", i
, enc
, enc
);
2243 vnc_desktop_resize(vs
);
2244 check_pointer_type_change(&vs
->mouse_mode_notifier
, NULL
);
2245 vnc_led_state_change(vs
);
2246 vnc_cursor_define(vs
);
2249 static void set_pixel_conversion(VncState
*vs
)
2251 pixman_format_code_t fmt
= qemu_pixman_get_format(&vs
->client_pf
);
2253 if (fmt
== VNC_SERVER_FB_FORMAT
) {
2254 vs
->write_pixels
= vnc_write_pixels_copy
;
2255 vnc_hextile_set_pixel_conversion(vs
, 0);
2257 vs
->write_pixels
= vnc_write_pixels_generic
;
2258 vnc_hextile_set_pixel_conversion(vs
, 1);
2262 static void send_color_map(VncState
*vs
)
2266 vnc_lock_output(vs
);
2267 vnc_write_u8(vs
, VNC_MSG_SERVER_SET_COLOUR_MAP_ENTRIES
);
2268 vnc_write_u8(vs
, 0); /* padding */
2269 vnc_write_u16(vs
, 0); /* first color */
2270 vnc_write_u16(vs
, 256); /* # of colors */
2272 for (i
= 0; i
< 256; i
++) {
2273 PixelFormat
*pf
= &vs
->client_pf
;
2275 vnc_write_u16(vs
, (((i
>> pf
->rshift
) & pf
->rmax
) << (16 - pf
->rbits
)));
2276 vnc_write_u16(vs
, (((i
>> pf
->gshift
) & pf
->gmax
) << (16 - pf
->gbits
)));
2277 vnc_write_u16(vs
, (((i
>> pf
->bshift
) & pf
->bmax
) << (16 - pf
->bbits
)));
2279 vnc_unlock_output(vs
);
2282 static void set_pixel_format(VncState
*vs
, int bits_per_pixel
,
2283 int big_endian_flag
, int true_color_flag
,
2284 int red_max
, int green_max
, int blue_max
,
2285 int red_shift
, int green_shift
, int blue_shift
)
2287 if (!true_color_flag
) {
2288 /* Expose a reasonable default 256 color map */
2298 switch (bits_per_pixel
) {
2304 vnc_client_error(vs
);
2308 vs
->client_pf
.rmax
= red_max
? red_max
: 0xFF;
2309 vs
->client_pf
.rbits
= ctpopl(red_max
);
2310 vs
->client_pf
.rshift
= red_shift
;
2311 vs
->client_pf
.rmask
= red_max
<< red_shift
;
2312 vs
->client_pf
.gmax
= green_max
? green_max
: 0xFF;
2313 vs
->client_pf
.gbits
= ctpopl(green_max
);
2314 vs
->client_pf
.gshift
= green_shift
;
2315 vs
->client_pf
.gmask
= green_max
<< green_shift
;
2316 vs
->client_pf
.bmax
= blue_max
? blue_max
: 0xFF;
2317 vs
->client_pf
.bbits
= ctpopl(blue_max
);
2318 vs
->client_pf
.bshift
= blue_shift
;
2319 vs
->client_pf
.bmask
= blue_max
<< blue_shift
;
2320 vs
->client_pf
.bits_per_pixel
= bits_per_pixel
;
2321 vs
->client_pf
.bytes_per_pixel
= bits_per_pixel
/ 8;
2322 vs
->client_pf
.depth
= bits_per_pixel
== 32 ? 24 : bits_per_pixel
;
2323 vs
->client_be
= big_endian_flag
;
2325 if (!true_color_flag
) {
2329 set_pixel_conversion(vs
);
2331 graphic_hw_invalidate(vs
->vd
->dcl
.con
);
2332 graphic_hw_update(vs
->vd
->dcl
.con
);
2335 static void pixel_format_message (VncState
*vs
) {
2336 char pad
[3] = { 0, 0, 0 };
2338 vs
->client_pf
= qemu_default_pixelformat(32);
2340 vnc_write_u8(vs
, vs
->client_pf
.bits_per_pixel
); /* bits-per-pixel */
2341 vnc_write_u8(vs
, vs
->client_pf
.depth
); /* depth */
2344 vnc_write_u8(vs
, 1); /* big-endian-flag */
2346 vnc_write_u8(vs
, 0); /* big-endian-flag */
2348 vnc_write_u8(vs
, 1); /* true-color-flag */
2349 vnc_write_u16(vs
, vs
->client_pf
.rmax
); /* red-max */
2350 vnc_write_u16(vs
, vs
->client_pf
.gmax
); /* green-max */
2351 vnc_write_u16(vs
, vs
->client_pf
.bmax
); /* blue-max */
2352 vnc_write_u8(vs
, vs
->client_pf
.rshift
); /* red-shift */
2353 vnc_write_u8(vs
, vs
->client_pf
.gshift
); /* green-shift */
2354 vnc_write_u8(vs
, vs
->client_pf
.bshift
); /* blue-shift */
2355 vnc_write(vs
, pad
, 3); /* padding */
2357 vnc_hextile_set_pixel_conversion(vs
, 0);
2358 vs
->write_pixels
= vnc_write_pixels_copy
;
2361 static void vnc_colordepth(VncState
*vs
)
2363 if (vnc_has_feature(vs
, VNC_FEATURE_WMVI
)) {
2364 /* Sending a WMVi message to notify the client*/
2365 vnc_lock_output(vs
);
2366 vnc_write_u8(vs
, VNC_MSG_SERVER_FRAMEBUFFER_UPDATE
);
2367 vnc_write_u8(vs
, 0);
2368 vnc_write_u16(vs
, 1); /* number of rects */
2369 vnc_framebuffer_update(vs
, 0, 0,
2373 pixel_format_message(vs
);
2374 vnc_unlock_output(vs
);
2377 set_pixel_conversion(vs
);
2381 static int protocol_client_msg(VncState
*vs
, uint8_t *data
, size_t len
)
2386 VncDisplay
*vd
= vs
->vd
;
2389 update_displaychangelistener(&vd
->dcl
, VNC_REFRESH_INTERVAL_BASE
);
2393 case VNC_MSG_CLIENT_SET_PIXEL_FORMAT
:
2397 set_pixel_format(vs
, read_u8(data
, 4),
2398 read_u8(data
, 6), read_u8(data
, 7),
2399 read_u16(data
, 8), read_u16(data
, 10),
2400 read_u16(data
, 12), read_u8(data
, 14),
2401 read_u8(data
, 15), read_u8(data
, 16));
2403 case VNC_MSG_CLIENT_SET_ENCODINGS
:
2408 limit
= read_u16(data
, 2);
2410 return 4 + (limit
* 4);
2412 limit
= read_u16(data
, 2);
2414 for (i
= 0; i
< limit
; i
++) {
2415 int32_t val
= read_s32(data
, 4 + (i
* 4));
2416 memcpy(data
+ 4 + (i
* 4), &val
, sizeof(val
));
2419 set_encodings(vs
, (int32_t *)(data
+ 4), limit
);
2421 case VNC_MSG_CLIENT_FRAMEBUFFER_UPDATE_REQUEST
:
2425 framebuffer_update_request(vs
,
2426 read_u8(data
, 1), read_u16(data
, 2), read_u16(data
, 4),
2427 read_u16(data
, 6), read_u16(data
, 8));
2429 case VNC_MSG_CLIENT_KEY_EVENT
:
2433 key_event(vs
, read_u8(data
, 1), read_u32(data
, 4));
2435 case VNC_MSG_CLIENT_POINTER_EVENT
:
2439 pointer_event(vs
, read_u8(data
, 1), read_u16(data
, 2), read_u16(data
, 4));
2441 case VNC_MSG_CLIENT_CUT_TEXT
:
2446 uint32_t dlen
= abs(read_s32(data
, 4));
2447 if (dlen
> (1 << 20)) {
2448 error_report("vnc: client_cut_text msg payload has %u bytes"
2449 " which exceeds our limit of 1MB.", dlen
);
2450 vnc_client_error(vs
);
2458 if (read_s32(data
, 4) < 0) {
2459 vnc_client_cut_text_ext(vs
, abs(read_s32(data
, 4)),
2460 read_u32(data
, 8), data
+ 12);
2463 vnc_client_cut_text(vs
, read_u32(data
, 4), data
+ 8);
2465 case VNC_MSG_CLIENT_XVP
:
2466 if (!(vs
->features
& VNC_FEATURE_XVP
)) {
2467 error_report("vnc: xvp client message while disabled");
2468 vnc_client_error(vs
);
2475 uint8_t version
= read_u8(data
, 2);
2476 uint8_t action
= read_u8(data
, 3);
2479 error_report("vnc: xvp client message version %d != 1",
2481 vnc_client_error(vs
);
2486 case VNC_XVP_ACTION_SHUTDOWN
:
2487 qemu_system_powerdown_request();
2489 case VNC_XVP_ACTION_REBOOT
:
2490 send_xvp_message(vs
, VNC_XVP_CODE_FAIL
);
2492 case VNC_XVP_ACTION_RESET
:
2493 qemu_system_reset_request(SHUTDOWN_CAUSE_HOST_QMP_SYSTEM_RESET
);
2496 send_xvp_message(vs
, VNC_XVP_CODE_FAIL
);
2501 case VNC_MSG_CLIENT_QEMU
:
2505 switch (read_u8(data
, 1)) {
2506 case VNC_MSG_CLIENT_QEMU_EXT_KEY_EVENT
:
2510 ext_key_event(vs
, read_u16(data
, 2),
2511 read_u32(data
, 4), read_u32(data
, 8));
2513 case VNC_MSG_CLIENT_QEMU_AUDIO
:
2517 switch (read_u16 (data
, 2)) {
2518 case VNC_MSG_CLIENT_QEMU_AUDIO_ENABLE
:
2519 trace_vnc_msg_client_audio_enable(vs
, vs
->ioc
);
2522 case VNC_MSG_CLIENT_QEMU_AUDIO_DISABLE
:
2523 trace_vnc_msg_client_audio_disable(vs
, vs
->ioc
);
2526 case VNC_MSG_CLIENT_QEMU_AUDIO_SET_FORMAT
:
2529 switch (read_u8(data
, 4)) {
2530 case 0: vs
->as
.fmt
= AUDIO_FORMAT_U8
; break;
2531 case 1: vs
->as
.fmt
= AUDIO_FORMAT_S8
; break;
2532 case 2: vs
->as
.fmt
= AUDIO_FORMAT_U16
; break;
2533 case 3: vs
->as
.fmt
= AUDIO_FORMAT_S16
; break;
2534 case 4: vs
->as
.fmt
= AUDIO_FORMAT_U32
; break;
2535 case 5: vs
->as
.fmt
= AUDIO_FORMAT_S32
; break;
2537 VNC_DEBUG("Invalid audio format %d\n", read_u8(data
, 4));
2538 vnc_client_error(vs
);
2541 vs
->as
.nchannels
= read_u8(data
, 5);
2542 if (vs
->as
.nchannels
!= 1 && vs
->as
.nchannels
!= 2) {
2543 VNC_DEBUG("Invalid audio channel count %d\n",
2545 vnc_client_error(vs
);
2548 freq
= read_u32(data
, 6);
2549 /* No official limit for protocol, but 48khz is a sensible
2550 * upper bound for trustworthy clients, and this limit
2551 * protects calculations involving 'vs->as.freq' later.
2554 VNC_DEBUG("Invalid audio frequency %u > 48000", freq
);
2555 vnc_client_error(vs
);
2559 trace_vnc_msg_client_audio_format(
2560 vs
, vs
->ioc
, vs
->as
.fmt
, vs
->as
.nchannels
, vs
->as
.freq
);
2563 VNC_DEBUG("Invalid audio message %d\n", read_u8(data
, 4));
2564 vnc_client_error(vs
);
2570 VNC_DEBUG("Msg: %d\n", read_u16(data
, 0));
2571 vnc_client_error(vs
);
2575 case VNC_MSG_CLIENT_SET_DESKTOP_SIZE
:
2585 screens
= read_u8(data
, 6);
2586 size
= 8 + screens
* 16;
2590 w
= read_u16(data
, 2);
2591 h
= read_u16(data
, 4);
2593 trace_vnc_msg_client_set_desktop_size(vs
, vs
->ioc
, w
, h
, screens
);
2594 if (dpy_ui_info_supported(vs
->vd
->dcl
.con
)) {
2596 memset(&info
, 0, sizeof(info
));
2599 dpy_set_ui_info(vs
->vd
->dcl
.con
, &info
, false);
2600 vnc_desktop_resize_ext(vs
, 4 /* Request forwarded */);
2602 vnc_desktop_resize_ext(vs
, 3 /* Invalid screen layout */);
2608 VNC_DEBUG("Msg: %d\n", data
[0]);
2609 vnc_client_error(vs
);
2613 vnc_update_throttle_offset(vs
);
2614 vnc_read_when(vs
, protocol_client_msg
, 1);
2618 static int protocol_client_init(VncState
*vs
, uint8_t *data
, size_t len
)
2624 mode
= data
[0] ? VNC_SHARE_MODE_SHARED
: VNC_SHARE_MODE_EXCLUSIVE
;
2625 switch (vs
->vd
->share_policy
) {
2626 case VNC_SHARE_POLICY_IGNORE
:
2628 * Ignore the shared flag. Nothing to do here.
2630 * Doesn't conform to the rfb spec but is traditional qemu
2631 * behavior, thus left here as option for compatibility
2635 case VNC_SHARE_POLICY_ALLOW_EXCLUSIVE
:
2637 * Policy: Allow clients ask for exclusive access.
2639 * Implementation: When a client asks for exclusive access,
2640 * disconnect all others. Shared connects are allowed as long
2641 * as no exclusive connection exists.
2643 * This is how the rfb spec suggests to handle the shared flag.
2645 if (mode
== VNC_SHARE_MODE_EXCLUSIVE
) {
2647 QTAILQ_FOREACH(client
, &vs
->vd
->clients
, next
) {
2651 if (client
->share_mode
!= VNC_SHARE_MODE_EXCLUSIVE
&&
2652 client
->share_mode
!= VNC_SHARE_MODE_SHARED
) {
2655 vnc_disconnect_start(client
);
2658 if (mode
== VNC_SHARE_MODE_SHARED
) {
2659 if (vs
->vd
->num_exclusive
> 0) {
2660 vnc_disconnect_start(vs
);
2665 case VNC_SHARE_POLICY_FORCE_SHARED
:
2667 * Policy: Shared connects only.
2668 * Implementation: Disallow clients asking for exclusive access.
2670 * Useful for shared desktop sessions where you don't want
2671 * someone forgetting to say -shared when running the vnc
2672 * client disconnect everybody else.
2674 if (mode
== VNC_SHARE_MODE_EXCLUSIVE
) {
2675 vnc_disconnect_start(vs
);
2680 vnc_set_share_mode(vs
, mode
);
2682 if (vs
->vd
->num_shared
> vs
->vd
->connections_limit
) {
2683 vnc_disconnect_start(vs
);
2687 assert(pixman_image_get_width(vs
->vd
->server
) < 65536 &&
2688 pixman_image_get_width(vs
->vd
->server
) >= 0);
2689 assert(pixman_image_get_height(vs
->vd
->server
) < 65536 &&
2690 pixman_image_get_height(vs
->vd
->server
) >= 0);
2691 vs
->client_width
= pixman_image_get_width(vs
->vd
->server
);
2692 vs
->client_height
= pixman_image_get_height(vs
->vd
->server
);
2693 vnc_write_u16(vs
, vs
->client_width
);
2694 vnc_write_u16(vs
, vs
->client_height
);
2696 pixel_format_message(vs
);
2699 size
= snprintf(buf
, sizeof(buf
), "QEMU (%s)", qemu_name
);
2700 if (size
> sizeof(buf
)) {
2704 size
= snprintf(buf
, sizeof(buf
), "QEMU");
2707 vnc_write_u32(vs
, size
);
2708 vnc_write(vs
, buf
, size
);
2711 vnc_client_cache_auth(vs
);
2712 vnc_qmp_event(vs
, QAPI_EVENT_VNC_INITIALIZED
);
2714 vnc_read_when(vs
, protocol_client_msg
, 1);
2719 void start_client_init(VncState
*vs
)
2721 vnc_read_when(vs
, protocol_client_init
, 1);
2724 static void authentication_failed(VncState
*vs
)
2726 vnc_write_u32(vs
, 1); /* Reject auth */
2727 if (vs
->minor
>= 8) {
2728 static const char err
[] = "Authentication failed";
2729 vnc_write_u32(vs
, sizeof(err
));
2730 vnc_write(vs
, err
, sizeof(err
));
2733 vnc_client_error(vs
);
2737 vnc_munge_des_rfb_key(unsigned char *key
, size_t nkey
)
2740 for (i
= 0; i
< nkey
; i
++) {
2742 r
= (r
& 0xf0) >> 4 | (r
& 0x0f) << 4;
2743 r
= (r
& 0xcc) >> 2 | (r
& 0x33) << 2;
2744 r
= (r
& 0xaa) >> 1 | (r
& 0x55) << 1;
2749 static int protocol_client_auth_vnc(VncState
*vs
, uint8_t *data
, size_t len
)
2751 unsigned char response
[VNC_AUTH_CHALLENGE_SIZE
];
2753 unsigned char key
[8];
2754 time_t now
= time(NULL
);
2755 QCryptoCipher
*cipher
= NULL
;
2758 if (!vs
->vd
->password
) {
2759 trace_vnc_auth_fail(vs
, vs
->auth
, "password is not set", "");
2762 if (vs
->vd
->expires
< now
) {
2763 trace_vnc_auth_fail(vs
, vs
->auth
, "password is expired", "");
2767 memcpy(response
, vs
->challenge
, VNC_AUTH_CHALLENGE_SIZE
);
2769 /* Calculate the expected challenge response */
2770 pwlen
= strlen(vs
->vd
->password
);
2771 for (i
=0; i
<sizeof(key
); i
++)
2772 key
[i
] = i
<pwlen
? vs
->vd
->password
[i
] : 0;
2773 vnc_munge_des_rfb_key(key
, sizeof(key
));
2775 cipher
= qcrypto_cipher_new(
2776 QCRYPTO_CIPHER_ALG_DES
,
2777 QCRYPTO_CIPHER_MODE_ECB
,
2778 key
, G_N_ELEMENTS(key
),
2781 trace_vnc_auth_fail(vs
, vs
->auth
, "cannot create cipher",
2782 error_get_pretty(err
));
2787 if (qcrypto_cipher_encrypt(cipher
,
2790 VNC_AUTH_CHALLENGE_SIZE
,
2792 trace_vnc_auth_fail(vs
, vs
->auth
, "cannot encrypt challenge response",
2793 error_get_pretty(err
));
2798 /* Compare expected vs actual challenge response */
2799 if (memcmp(response
, data
, VNC_AUTH_CHALLENGE_SIZE
) != 0) {
2800 trace_vnc_auth_fail(vs
, vs
->auth
, "mis-matched challenge response", "");
2803 trace_vnc_auth_pass(vs
, vs
->auth
);
2804 vnc_write_u32(vs
, 0); /* Accept auth */
2807 start_client_init(vs
);
2810 qcrypto_cipher_free(cipher
);
2814 authentication_failed(vs
);
2815 qcrypto_cipher_free(cipher
);
2819 void start_auth_vnc(VncState
*vs
)
2823 if (qcrypto_random_bytes(vs
->challenge
, sizeof(vs
->challenge
), &err
)) {
2824 trace_vnc_auth_fail(vs
, vs
->auth
, "cannot get random bytes",
2825 error_get_pretty(err
));
2827 authentication_failed(vs
);
2831 /* Send client a 'random' challenge */
2832 vnc_write(vs
, vs
->challenge
, sizeof(vs
->challenge
));
2835 vnc_read_when(vs
, protocol_client_auth_vnc
, sizeof(vs
->challenge
));
2839 static int protocol_client_auth(VncState
*vs
, uint8_t *data
, size_t len
)
2841 /* We only advertise 1 auth scheme at a time, so client
2842 * must pick the one we sent. Verify this */
2843 if (data
[0] != vs
->auth
) { /* Reject auth */
2844 trace_vnc_auth_reject(vs
, vs
->auth
, (int)data
[0]);
2845 authentication_failed(vs
);
2846 } else { /* Accept requested auth */
2847 trace_vnc_auth_start(vs
, vs
->auth
);
2850 if (vs
->minor
>= 8) {
2851 vnc_write_u32(vs
, 0); /* Accept auth completion */
2854 trace_vnc_auth_pass(vs
, vs
->auth
);
2855 start_client_init(vs
);
2862 case VNC_AUTH_VENCRYPT
:
2863 start_auth_vencrypt(vs
);
2866 #ifdef CONFIG_VNC_SASL
2868 start_auth_sasl(vs
);
2870 #endif /* CONFIG_VNC_SASL */
2872 default: /* Should not be possible, but just in case */
2873 trace_vnc_auth_fail(vs
, vs
->auth
, "Unhandled auth method", "");
2874 authentication_failed(vs
);
2880 static int protocol_version(VncState
*vs
, uint8_t *version
, size_t len
)
2884 memcpy(local
, version
, 12);
2887 if (sscanf(local
, "RFB %03d.%03d\n", &vs
->major
, &vs
->minor
) != 2) {
2888 VNC_DEBUG("Malformed protocol version %s\n", local
);
2889 vnc_client_error(vs
);
2892 VNC_DEBUG("Client request protocol version %d.%d\n", vs
->major
, vs
->minor
);
2893 if (vs
->major
!= 3 ||
2899 VNC_DEBUG("Unsupported client version\n");
2900 vnc_write_u32(vs
, VNC_AUTH_INVALID
);
2902 vnc_client_error(vs
);
2905 /* Some broken clients report v3.4 or v3.5, which spec requires to be treated
2906 * as equivalent to v3.3 by servers
2908 if (vs
->minor
== 4 || vs
->minor
== 5)
2911 if (vs
->minor
== 3) {
2912 trace_vnc_auth_start(vs
, vs
->auth
);
2913 if (vs
->auth
== VNC_AUTH_NONE
) {
2914 vnc_write_u32(vs
, vs
->auth
);
2916 trace_vnc_auth_pass(vs
, vs
->auth
);
2917 start_client_init(vs
);
2918 } else if (vs
->auth
== VNC_AUTH_VNC
) {
2919 VNC_DEBUG("Tell client VNC auth\n");
2920 vnc_write_u32(vs
, vs
->auth
);
2924 trace_vnc_auth_fail(vs
, vs
->auth
,
2925 "Unsupported auth method for v3.3", "");
2926 vnc_write_u32(vs
, VNC_AUTH_INVALID
);
2928 vnc_client_error(vs
);
2931 vnc_write_u8(vs
, 1); /* num auth */
2932 vnc_write_u8(vs
, vs
->auth
);
2933 vnc_read_when(vs
, protocol_client_auth
, 1);
2940 static VncRectStat
*vnc_stat_rect(VncDisplay
*vd
, int x
, int y
)
2942 struct VncSurface
*vs
= &vd
->guest
;
2944 return &vs
->stats
[y
/ VNC_STAT_RECT
][x
/ VNC_STAT_RECT
];
2947 void vnc_sent_lossy_rect(VncState
*vs
, int x
, int y
, int w
, int h
)
2951 w
= (x
+ w
) / VNC_STAT_RECT
;
2952 h
= (y
+ h
) / VNC_STAT_RECT
;
2956 for (j
= y
; j
<= h
; j
++) {
2957 for (i
= x
; i
<= w
; i
++) {
2958 vs
->lossy_rect
[j
][i
] = 1;
2963 static int vnc_refresh_lossy_rect(VncDisplay
*vd
, int x
, int y
)
2966 int sty
= y
/ VNC_STAT_RECT
;
2967 int stx
= x
/ VNC_STAT_RECT
;
2970 y
= QEMU_ALIGN_DOWN(y
, VNC_STAT_RECT
);
2971 x
= QEMU_ALIGN_DOWN(x
, VNC_STAT_RECT
);
2973 QTAILQ_FOREACH(vs
, &vd
->clients
, next
) {
2976 /* kernel send buffers are full -> refresh later */
2977 if (vs
->output
.offset
) {
2981 if (!vs
->lossy_rect
[sty
][stx
]) {
2985 vs
->lossy_rect
[sty
][stx
] = 0;
2986 for (j
= 0; j
< VNC_STAT_RECT
; ++j
) {
2987 bitmap_set(vs
->dirty
[y
+ j
],
2988 x
/ VNC_DIRTY_PIXELS_PER_BIT
,
2989 VNC_STAT_RECT
/ VNC_DIRTY_PIXELS_PER_BIT
);
2997 static int vnc_update_stats(VncDisplay
*vd
, struct timeval
* tv
)
2999 int width
= MIN(pixman_image_get_width(vd
->guest
.fb
),
3000 pixman_image_get_width(vd
->server
));
3001 int height
= MIN(pixman_image_get_height(vd
->guest
.fb
),
3002 pixman_image_get_height(vd
->server
));
3007 for (y
= 0; y
< height
; y
+= VNC_STAT_RECT
) {
3008 for (x
= 0; x
< width
; x
+= VNC_STAT_RECT
) {
3009 VncRectStat
*rect
= vnc_stat_rect(vd
, x
, y
);
3011 rect
->updated
= false;
3015 qemu_timersub(tv
, &VNC_REFRESH_STATS
, &res
);
3017 if (timercmp(&vd
->guest
.last_freq_check
, &res
, >)) {
3020 vd
->guest
.last_freq_check
= *tv
;
3022 for (y
= 0; y
< height
; y
+= VNC_STAT_RECT
) {
3023 for (x
= 0; x
< width
; x
+= VNC_STAT_RECT
) {
3024 VncRectStat
*rect
= vnc_stat_rect(vd
, x
, y
);
3025 int count
= ARRAY_SIZE(rect
->times
);
3026 struct timeval min
, max
;
3028 if (!timerisset(&rect
->times
[count
- 1])) {
3032 max
= rect
->times
[(rect
->idx
+ count
- 1) % count
];
3033 qemu_timersub(tv
, &max
, &res
);
3035 if (timercmp(&res
, &VNC_REFRESH_LOSSY
, >)) {
3037 has_dirty
+= vnc_refresh_lossy_rect(vd
, x
, y
);
3038 memset(rect
->times
, 0, sizeof (rect
->times
));
3042 min
= rect
->times
[rect
->idx
];
3043 max
= rect
->times
[(rect
->idx
+ count
- 1) % count
];
3044 qemu_timersub(&max
, &min
, &res
);
3046 rect
->freq
= res
.tv_sec
+ res
.tv_usec
/ 1000000.;
3047 rect
->freq
/= count
;
3048 rect
->freq
= 1. / rect
->freq
;
3054 double vnc_update_freq(VncState
*vs
, int x
, int y
, int w
, int h
)
3060 x
= QEMU_ALIGN_DOWN(x
, VNC_STAT_RECT
);
3061 y
= QEMU_ALIGN_DOWN(y
, VNC_STAT_RECT
);
3063 for (j
= y
; j
<= y
+ h
; j
+= VNC_STAT_RECT
) {
3064 for (i
= x
; i
<= x
+ w
; i
+= VNC_STAT_RECT
) {
3065 total
+= vnc_stat_rect(vs
->vd
, i
, j
)->freq
;
3077 static void vnc_rect_updated(VncDisplay
*vd
, int x
, int y
, struct timeval
* tv
)
3081 rect
= vnc_stat_rect(vd
, x
, y
);
3082 if (rect
->updated
) {
3085 rect
->times
[rect
->idx
] = *tv
;
3086 rect
->idx
= (rect
->idx
+ 1) % ARRAY_SIZE(rect
->times
);
3087 rect
->updated
= true;
3090 static int vnc_refresh_server_surface(VncDisplay
*vd
)
3092 int width
= MIN(pixman_image_get_width(vd
->guest
.fb
),
3093 pixman_image_get_width(vd
->server
));
3094 int height
= MIN(pixman_image_get_height(vd
->guest
.fb
),
3095 pixman_image_get_height(vd
->server
));
3096 int cmp_bytes
, server_stride
, line_bytes
, guest_ll
, guest_stride
, y
= 0;
3097 uint8_t *guest_row0
= NULL
, *server_row0
;
3100 pixman_image_t
*tmpbuf
= NULL
;
3101 unsigned long offset
;
3103 uint8_t *guest_ptr
, *server_ptr
;
3105 struct timeval tv
= { 0, 0 };
3107 if (!vd
->non_adaptive
) {
3108 gettimeofday(&tv
, NULL
);
3109 has_dirty
= vnc_update_stats(vd
, &tv
);
3112 offset
= find_next_bit((unsigned long *) &vd
->guest
.dirty
,
3113 height
* VNC_DIRTY_BPL(&vd
->guest
), 0);
3114 if (offset
== height
* VNC_DIRTY_BPL(&vd
->guest
)) {
3115 /* no dirty bits in guest surface */
3120 * Walk through the guest dirty map.
3121 * Check and copy modified bits from guest to server surface.
3122 * Update server dirty map.
3124 server_row0
= (uint8_t *)pixman_image_get_data(vd
->server
);
3125 server_stride
= guest_stride
= guest_ll
=
3126 pixman_image_get_stride(vd
->server
);
3127 cmp_bytes
= MIN(VNC_DIRTY_PIXELS_PER_BIT
* VNC_SERVER_FB_BYTES
,
3129 if (vd
->guest
.format
!= VNC_SERVER_FB_FORMAT
) {
3130 int width
= pixman_image_get_width(vd
->server
);
3131 tmpbuf
= qemu_pixman_linebuf_create(VNC_SERVER_FB_FORMAT
, width
);
3134 PIXMAN_FORMAT_BPP(pixman_image_get_format(vd
->guest
.fb
));
3135 guest_row0
= (uint8_t *)pixman_image_get_data(vd
->guest
.fb
);
3136 guest_stride
= pixman_image_get_stride(vd
->guest
.fb
);
3137 guest_ll
= pixman_image_get_width(vd
->guest
.fb
)
3138 * DIV_ROUND_UP(guest_bpp
, 8);
3140 line_bytes
= MIN(server_stride
, guest_ll
);
3143 y
= offset
/ VNC_DIRTY_BPL(&vd
->guest
);
3144 x
= offset
% VNC_DIRTY_BPL(&vd
->guest
);
3146 server_ptr
= server_row0
+ y
* server_stride
+ x
* cmp_bytes
;
3148 if (vd
->guest
.format
!= VNC_SERVER_FB_FORMAT
) {
3149 qemu_pixman_linebuf_fill(tmpbuf
, vd
->guest
.fb
, width
, 0, y
);
3150 guest_ptr
= (uint8_t *)pixman_image_get_data(tmpbuf
);
3152 guest_ptr
= guest_row0
+ y
* guest_stride
;
3154 guest_ptr
+= x
* cmp_bytes
;
3156 for (; x
< DIV_ROUND_UP(width
, VNC_DIRTY_PIXELS_PER_BIT
);
3157 x
++, guest_ptr
+= cmp_bytes
, server_ptr
+= cmp_bytes
) {
3158 int _cmp_bytes
= cmp_bytes
;
3159 if (!test_and_clear_bit(x
, vd
->guest
.dirty
[y
])) {
3162 if ((x
+ 1) * cmp_bytes
> line_bytes
) {
3163 _cmp_bytes
= line_bytes
- x
* cmp_bytes
;
3165 assert(_cmp_bytes
>= 0);
3166 if (memcmp(server_ptr
, guest_ptr
, _cmp_bytes
) == 0) {
3169 memcpy(server_ptr
, guest_ptr
, _cmp_bytes
);
3170 if (!vd
->non_adaptive
) {
3171 vnc_rect_updated(vd
, x
* VNC_DIRTY_PIXELS_PER_BIT
,
3174 QTAILQ_FOREACH(vs
, &vd
->clients
, next
) {
3175 set_bit(x
, vs
->dirty
[y
]);
3181 offset
= find_next_bit((unsigned long *) &vd
->guest
.dirty
,
3182 height
* VNC_DIRTY_BPL(&vd
->guest
),
3183 y
* VNC_DIRTY_BPL(&vd
->guest
));
3184 if (offset
== height
* VNC_DIRTY_BPL(&vd
->guest
)) {
3185 /* no more dirty bits */
3189 qemu_pixman_image_unref(tmpbuf
);
3193 static void vnc_refresh(DisplayChangeListener
*dcl
)
3195 VncDisplay
*vd
= container_of(dcl
, VncDisplay
, dcl
);
3197 int has_dirty
, rects
= 0;
3199 if (QTAILQ_EMPTY(&vd
->clients
)) {
3200 update_displaychangelistener(&vd
->dcl
, VNC_REFRESH_INTERVAL_MAX
);
3204 graphic_hw_update(vd
->dcl
.con
);
3206 if (vnc_trylock_display(vd
)) {
3207 update_displaychangelistener(&vd
->dcl
, VNC_REFRESH_INTERVAL_BASE
);
3211 has_dirty
= vnc_refresh_server_surface(vd
);
3212 vnc_unlock_display(vd
);
3214 QTAILQ_FOREACH_SAFE(vs
, &vd
->clients
, next
, vn
) {
3215 rects
+= vnc_update_client(vs
, has_dirty
);
3216 /* vs might be free()ed here */
3219 if (has_dirty
&& rects
) {
3220 vd
->dcl
.update_interval
/= 2;
3221 if (vd
->dcl
.update_interval
< VNC_REFRESH_INTERVAL_BASE
) {
3222 vd
->dcl
.update_interval
= VNC_REFRESH_INTERVAL_BASE
;
3225 vd
->dcl
.update_interval
+= VNC_REFRESH_INTERVAL_INC
;
3226 if (vd
->dcl
.update_interval
> VNC_REFRESH_INTERVAL_MAX
) {
3227 vd
->dcl
.update_interval
= VNC_REFRESH_INTERVAL_MAX
;
3232 static void vnc_connect(VncDisplay
*vd
, QIOChannelSocket
*sioc
,
3233 bool skipauth
, bool websocket
)
3235 VncState
*vs
= g_new0(VncState
, 1);
3236 bool first_client
= QTAILQ_EMPTY(&vd
->clients
);
3239 trace_vnc_client_connect(vs
, sioc
);
3240 vs
->zrle
= g_new0(VncZrle
, 1);
3241 vs
->tight
= g_new0(VncTight
, 1);
3242 vs
->magic
= VNC_MAGIC
;
3244 object_ref(OBJECT(vs
->sioc
));
3245 vs
->ioc
= QIO_CHANNEL(sioc
);
3246 object_ref(OBJECT(vs
->ioc
));
3249 buffer_init(&vs
->input
, "vnc-input/%p", sioc
);
3250 buffer_init(&vs
->output
, "vnc-output/%p", sioc
);
3251 buffer_init(&vs
->jobs_buffer
, "vnc-jobs_buffer/%p", sioc
);
3253 buffer_init(&vs
->tight
->tight
, "vnc-tight/%p", sioc
);
3254 buffer_init(&vs
->tight
->zlib
, "vnc-tight-zlib/%p", sioc
);
3255 buffer_init(&vs
->tight
->gradient
, "vnc-tight-gradient/%p", sioc
);
3256 #ifdef CONFIG_VNC_JPEG
3257 buffer_init(&vs
->tight
->jpeg
, "vnc-tight-jpeg/%p", sioc
);
3260 buffer_init(&vs
->tight
->png
, "vnc-tight-png/%p", sioc
);
3262 buffer_init(&vs
->zlib
.zlib
, "vnc-zlib/%p", sioc
);
3263 buffer_init(&vs
->zrle
->zrle
, "vnc-zrle/%p", sioc
);
3264 buffer_init(&vs
->zrle
->fb
, "vnc-zrle-fb/%p", sioc
);
3265 buffer_init(&vs
->zrle
->zlib
, "vnc-zrle-zlib/%p", sioc
);
3268 vs
->auth
= VNC_AUTH_NONE
;
3269 vs
->subauth
= VNC_AUTH_INVALID
;
3272 vs
->auth
= vd
->ws_auth
;
3273 vs
->subauth
= VNC_AUTH_INVALID
;
3275 vs
->auth
= vd
->auth
;
3276 vs
->subauth
= vd
->subauth
;
3279 VNC_DEBUG("Client sioc=%p ws=%d auth=%d subauth=%d\n",
3280 sioc
, websocket
, vs
->auth
, vs
->subauth
);
3282 vs
->lossy_rect
= g_malloc0(VNC_STAT_ROWS
* sizeof (*vs
->lossy_rect
));
3283 for (i
= 0; i
< VNC_STAT_ROWS
; ++i
) {
3284 vs
->lossy_rect
[i
] = g_new0(uint8_t, VNC_STAT_COLS
);
3287 VNC_DEBUG("New client on socket %p\n", vs
->sioc
);
3288 update_displaychangelistener(&vd
->dcl
, VNC_REFRESH_INTERVAL_BASE
);
3289 qio_channel_set_blocking(vs
->ioc
, false, NULL
);
3291 g_source_remove(vs
->ioc_tag
);
3296 vs
->ioc_tag
= qio_channel_add_watch(
3297 vs
->ioc
, G_IO_IN
| G_IO_HUP
| G_IO_ERR
,
3298 vncws_tls_handshake_io
, vs
, NULL
);
3300 vs
->ioc_tag
= qio_channel_add_watch(
3301 vs
->ioc
, G_IO_IN
| G_IO_HUP
| G_IO_ERR
,
3302 vncws_handshake_io
, vs
, NULL
);
3305 vs
->ioc_tag
= qio_channel_add_watch(
3306 vs
->ioc
, G_IO_IN
| G_IO_HUP
| G_IO_ERR
,
3307 vnc_client_io
, vs
, NULL
);
3310 vnc_client_cache_addr(vs
);
3311 vnc_qmp_event(vs
, QAPI_EVENT_VNC_CONNECTED
);
3312 vnc_set_share_mode(vs
, VNC_SHARE_MODE_CONNECTING
);
3317 vs
->as
.freq
= 44100;
3318 vs
->as
.nchannels
= 2;
3319 vs
->as
.fmt
= AUDIO_FORMAT_S16
;
3320 vs
->as
.endianness
= 0;
3322 qemu_mutex_init(&vs
->output_mutex
);
3323 vs
->bh
= qemu_bh_new(vnc_jobs_bh
, vs
);
3325 QTAILQ_INSERT_TAIL(&vd
->clients
, vs
, next
);
3327 vnc_update_server_surface(vd
);
3330 graphic_hw_update(vd
->dcl
.con
);
3332 if (!vs
->websocket
) {
3333 vnc_start_protocol(vs
);
3336 if (vd
->num_connecting
> vd
->connections_limit
) {
3337 QTAILQ_FOREACH(vs
, &vd
->clients
, next
) {
3338 if (vs
->share_mode
== VNC_SHARE_MODE_CONNECTING
) {
3339 vnc_disconnect_start(vs
);
3346 void vnc_start_protocol(VncState
*vs
)
3348 vnc_write(vs
, "RFB 003.008\n", 12);
3350 vnc_read_when(vs
, protocol_version
, 12);
3352 vs
->mouse_mode_notifier
.notify
= check_pointer_type_change
;
3353 qemu_add_mouse_mode_change_notifier(&vs
->mouse_mode_notifier
);
3356 static void vnc_listen_io(QIONetListener
*listener
,
3357 QIOChannelSocket
*cioc
,
3360 VncDisplay
*vd
= opaque
;
3361 bool isWebsock
= listener
== vd
->wslistener
;
3363 qio_channel_set_name(QIO_CHANNEL(cioc
),
3364 isWebsock
? "vnc-ws-server" : "vnc-server");
3365 qio_channel_set_delay(QIO_CHANNEL(cioc
), false);
3366 vnc_connect(vd
, cioc
, false, isWebsock
);
3369 static const DisplayChangeListenerOps dcl_ops
= {
3371 .dpy_refresh
= vnc_refresh
,
3372 .dpy_gfx_update
= vnc_dpy_update
,
3373 .dpy_gfx_switch
= vnc_dpy_switch
,
3374 .dpy_gfx_check_format
= qemu_pixman_check_format
,
3375 .dpy_mouse_set
= vnc_mouse_set
,
3376 .dpy_cursor_define
= vnc_dpy_cursor_define
,
3379 void vnc_display_init(const char *id
, Error
**errp
)
3383 if (vnc_display_find(id
) != NULL
) {
3386 vd
= g_malloc0(sizeof(*vd
));
3388 vd
->id
= strdup(id
);
3389 QTAILQ_INSERT_TAIL(&vnc_displays
, vd
, next
);
3391 QTAILQ_INIT(&vd
->clients
);
3392 vd
->expires
= TIME_MAX
;
3394 if (keyboard_layout
) {
3395 trace_vnc_key_map_init(keyboard_layout
);
3396 vd
->kbd_layout
= init_keyboard_layout(name2keysym
,
3397 keyboard_layout
, errp
);
3399 vd
->kbd_layout
= init_keyboard_layout(name2keysym
, "en-us", errp
);
3402 if (!vd
->kbd_layout
) {
3406 vd
->share_policy
= VNC_SHARE_POLICY_ALLOW_EXCLUSIVE
;
3407 vd
->connections_limit
= 32;
3409 qemu_mutex_init(&vd
->mutex
);
3410 vnc_start_worker_thread();
3412 vd
->dcl
.ops
= &dcl_ops
;
3413 register_displaychangelistener(&vd
->dcl
);
3414 vd
->kbd
= qkbd_state_init(vd
->dcl
.con
);
3418 static void vnc_display_close(VncDisplay
*vd
)
3423 vd
->is_unix
= false;
3426 qio_net_listener_disconnect(vd
->listener
);
3427 object_unref(OBJECT(vd
->listener
));
3429 vd
->listener
= NULL
;
3431 if (vd
->wslistener
) {
3432 qio_net_listener_disconnect(vd
->wslistener
);
3433 object_unref(OBJECT(vd
->wslistener
));
3435 vd
->wslistener
= NULL
;
3437 vd
->auth
= VNC_AUTH_INVALID
;
3438 vd
->subauth
= VNC_AUTH_INVALID
;
3440 object_unref(OBJECT(vd
->tlscreds
));
3441 vd
->tlscreds
= NULL
;
3444 object_unparent(OBJECT(vd
->tlsauthz
));
3445 vd
->tlsauthz
= NULL
;
3447 g_free(vd
->tlsauthzid
);
3448 vd
->tlsauthzid
= NULL
;
3449 if (vd
->lock_key_sync
) {
3450 qemu_remove_led_event_handler(vd
->led
);
3453 #ifdef CONFIG_VNC_SASL
3454 if (vd
->sasl
.authz
) {
3455 object_unparent(OBJECT(vd
->sasl
.authz
));
3456 vd
->sasl
.authz
= NULL
;
3458 g_free(vd
->sasl
.authzid
);
3459 vd
->sasl
.authzid
= NULL
;
3463 int vnc_display_password(const char *id
, const char *password
)
3465 VncDisplay
*vd
= vnc_display_find(id
);
3470 if (vd
->auth
== VNC_AUTH_NONE
) {
3471 error_printf_unless_qmp("If you want use passwords please enable "
3472 "password auth using '-vnc ${dpy},password'.\n");
3476 g_free(vd
->password
);
3477 vd
->password
= g_strdup(password
);
3482 int vnc_display_pw_expire(const char *id
, time_t expires
)
3484 VncDisplay
*vd
= vnc_display_find(id
);
3490 vd
->expires
= expires
;
3494 static void vnc_display_print_local_addr(VncDisplay
*vd
)
3496 SocketAddress
*addr
;
3498 if (!vd
->listener
|| !vd
->listener
->nsioc
) {
3502 addr
= qio_channel_socket_get_local_address(vd
->listener
->sioc
[0], NULL
);
3507 if (addr
->type
!= SOCKET_ADDRESS_TYPE_INET
) {
3508 qapi_free_SocketAddress(addr
);
3511 error_printf_unless_qmp("VNC server running on %s:%s\n",
3514 qapi_free_SocketAddress(addr
);
3517 static QemuOptsList qemu_vnc_opts
= {
3519 .head
= QTAILQ_HEAD_INITIALIZER(qemu_vnc_opts
.head
),
3520 .implied_opt_name
= "vnc",
3524 .type
= QEMU_OPT_STRING
,
3526 .name
= "websocket",
3527 .type
= QEMU_OPT_STRING
,
3529 .name
= "tls-creds",
3530 .type
= QEMU_OPT_STRING
,
3533 .type
= QEMU_OPT_STRING
,
3536 .type
= QEMU_OPT_STRING
,
3539 .type
= QEMU_OPT_NUMBER
,
3541 .name
= "connections",
3542 .type
= QEMU_OPT_NUMBER
,
3545 .type
= QEMU_OPT_NUMBER
,
3548 .type
= QEMU_OPT_BOOL
,
3551 .type
= QEMU_OPT_BOOL
,
3554 .type
= QEMU_OPT_BOOL
,
3556 .name
= "password-secret",
3557 .type
= QEMU_OPT_STRING
,
3560 .type
= QEMU_OPT_BOOL
,
3562 .name
= "lock-key-sync",
3563 .type
= QEMU_OPT_BOOL
,
3565 .name
= "key-delay-ms",
3566 .type
= QEMU_OPT_NUMBER
,
3569 .type
= QEMU_OPT_BOOL
,
3571 .name
= "tls-authz",
3572 .type
= QEMU_OPT_STRING
,
3574 .name
= "sasl-authz",
3575 .type
= QEMU_OPT_STRING
,
3578 .type
= QEMU_OPT_BOOL
,
3580 .name
= "non-adaptive",
3581 .type
= QEMU_OPT_BOOL
,
3584 .type
= QEMU_OPT_STRING
,
3586 .name
= "power-control",
3587 .type
= QEMU_OPT_BOOL
,
3589 { /* end of list */ }
3595 vnc_display_setup_auth(int *auth
,
3597 QCryptoTLSCreds
*tlscreds
,
3604 * We have a choice of 3 authentication options
3610 * The channel can be run in 2 modes
3615 * And TLS can use 2 types of credentials
3620 * We thus have 9 possible logical combinations
3625 * 4. tls + anon + none
3626 * 5. tls + anon + vnc
3627 * 6. tls + anon + sasl
3628 * 7. tls + x509 + none
3629 * 8. tls + x509 + vnc
3630 * 9. tls + x509 + sasl
3632 * These need to be mapped into the VNC auth schemes
3633 * in an appropriate manner. In regular VNC, all the
3634 * TLS options get mapped into VNC_AUTH_VENCRYPT
3637 * In websockets, the https:// protocol already provides
3638 * TLS support, so there is no need to make use of the
3639 * VeNCrypt extension. Furthermore, websockets browser
3640 * clients could not use VeNCrypt even if they wanted to,
3641 * as they cannot control when the TLS handshake takes
3642 * place. Thus there is no option but to rely on https://,
3643 * meaning combinations 4->6 and 7->9 will be mapped to
3644 * VNC auth schemes in the same way as combos 1->3.
3646 * Regardless of fact that we have a different mapping to
3647 * VNC auth mechs for plain VNC vs websockets VNC, the end
3648 * result has the same security characteristics.
3650 if (websocket
|| !tlscreds
) {
3652 VNC_DEBUG("Initializing VNC server with password auth\n");
3653 *auth
= VNC_AUTH_VNC
;
3655 VNC_DEBUG("Initializing VNC server with SASL auth\n");
3656 *auth
= VNC_AUTH_SASL
;
3658 VNC_DEBUG("Initializing VNC server with no auth\n");
3659 *auth
= VNC_AUTH_NONE
;
3661 *subauth
= VNC_AUTH_INVALID
;
3663 bool is_x509
= object_dynamic_cast(OBJECT(tlscreds
),
3664 TYPE_QCRYPTO_TLS_CREDS_X509
) != NULL
;
3665 bool is_anon
= object_dynamic_cast(OBJECT(tlscreds
),
3666 TYPE_QCRYPTO_TLS_CREDS_ANON
) != NULL
;
3668 if (!is_x509
&& !is_anon
) {
3670 "Unsupported TLS cred type %s",
3671 object_get_typename(OBJECT(tlscreds
)));
3674 *auth
= VNC_AUTH_VENCRYPT
;
3677 VNC_DEBUG("Initializing VNC server with x509 password auth\n");
3678 *subauth
= VNC_AUTH_VENCRYPT_X509VNC
;
3680 VNC_DEBUG("Initializing VNC server with TLS password auth\n");
3681 *subauth
= VNC_AUTH_VENCRYPT_TLSVNC
;
3686 VNC_DEBUG("Initializing VNC server with x509 SASL auth\n");
3687 *subauth
= VNC_AUTH_VENCRYPT_X509SASL
;
3689 VNC_DEBUG("Initializing VNC server with TLS SASL auth\n");
3690 *subauth
= VNC_AUTH_VENCRYPT_TLSSASL
;
3694 VNC_DEBUG("Initializing VNC server with x509 no auth\n");
3695 *subauth
= VNC_AUTH_VENCRYPT_X509NONE
;
3697 VNC_DEBUG("Initializing VNC server with TLS no auth\n");
3698 *subauth
= VNC_AUTH_VENCRYPT_TLSNONE
;
3706 static int vnc_display_get_address(const char *addrstr
,
3715 SocketAddress
**retaddr
,
3719 SocketAddress
*addr
= NULL
;
3721 addr
= g_new0(SocketAddress
, 1);
3723 if (strncmp(addrstr
, "unix:", 5) == 0) {
3724 addr
->type
= SOCKET_ADDRESS_TYPE_UNIX
;
3725 addr
->u
.q_unix
.path
= g_strdup(addrstr
+ 5);
3728 error_setg(errp
, "UNIX sockets not supported with websock");
3733 error_setg(errp
, "Port range not support with UNIX socket");
3740 unsigned long long baseport
= 0;
3741 InetSocketAddress
*inet
;
3743 port
= strrchr(addrstr
, ':');
3749 error_setg(errp
, "no vnc port specified");
3753 hostlen
= port
- addrstr
;
3755 if (*port
== '\0') {
3756 error_setg(errp
, "vnc port cannot be empty");
3761 addr
->type
= SOCKET_ADDRESS_TYPE_INET
;
3762 inet
= &addr
->u
.inet
;
3763 if (addrstr
[0] == '[' && addrstr
[hostlen
- 1] == ']') {
3764 inet
->host
= g_strndup(addrstr
+ 1, hostlen
- 2);
3766 inet
->host
= g_strndup(addrstr
, hostlen
);
3768 /* plain VNC port is just an offset, for websocket
3769 * port is absolute */
3771 if (g_str_equal(addrstr
, "") ||
3772 g_str_equal(addrstr
, "on")) {
3773 if (displaynum
== -1) {
3774 error_setg(errp
, "explicit websocket port is required");
3777 inet
->port
= g_strdup_printf(
3778 "%d", displaynum
+ 5700);
3780 inet
->has_to
= true;
3781 inet
->to
= to
+ 5700;
3784 inet
->port
= g_strdup(port
);
3787 int offset
= reverse
? 0 : 5900;
3788 if (parse_uint_full(port
, &baseport
, 10) < 0) {
3789 error_setg(errp
, "can't convert to a number: %s", port
);
3792 if (baseport
> 65535 ||
3793 baseport
+ offset
> 65535) {
3794 error_setg(errp
, "port %s out of range", port
);
3797 inet
->port
= g_strdup_printf(
3798 "%d", (int)baseport
+ offset
);
3801 inet
->has_to
= true;
3802 inet
->to
= to
+ offset
;
3807 inet
->has_ipv4
= has_ipv4
;
3809 inet
->has_ipv6
= has_ipv6
;
3818 qapi_free_SocketAddress(addr
);
3823 static int vnc_display_get_addresses(QemuOpts
*opts
,
3825 SocketAddressList
**saddr_list_ret
,
3826 SocketAddressList
**wsaddr_list_ret
,
3829 SocketAddress
*saddr
= NULL
;
3830 SocketAddress
*wsaddr
= NULL
;
3831 g_autoptr(SocketAddressList
) saddr_list
= NULL
;
3832 SocketAddressList
**saddr_tail
= &saddr_list
;
3833 SocketAddress
*single_saddr
= NULL
;
3834 g_autoptr(SocketAddressList
) wsaddr_list
= NULL
;
3835 SocketAddressList
**wsaddr_tail
= &wsaddr_list
;
3836 QemuOptsIter addriter
;
3838 int to
= qemu_opt_get_number(opts
, "to", 0);
3839 bool has_ipv4
= qemu_opt_get(opts
, "ipv4");
3840 bool has_ipv6
= qemu_opt_get(opts
, "ipv6");
3841 bool ipv4
= qemu_opt_get_bool(opts
, "ipv4", false);
3842 bool ipv6
= qemu_opt_get_bool(opts
, "ipv6", false);
3843 int displaynum
= -1;
3845 addr
= qemu_opt_get(opts
, "vnc");
3846 if (addr
== NULL
|| g_str_equal(addr
, "none")) {
3849 if (qemu_opt_get(opts
, "websocket") &&
3850 !qcrypto_hash_supports(QCRYPTO_HASH_ALG_SHA1
)) {
3852 "SHA1 hash support is required for websockets");
3856 qemu_opt_iter_init(&addriter
, opts
, "vnc");
3857 while ((addr
= qemu_opt_iter_next(&addriter
)) != NULL
) {
3859 rv
= vnc_display_get_address(addr
, false, reverse
, 0, to
,
3866 /* Historical compat - first listen address can be used
3867 * to set the default websocket port
3869 if (displaynum
== -1) {
3872 QAPI_LIST_APPEND(saddr_tail
, saddr
);
3875 if (saddr_list
&& !saddr_list
->next
) {
3876 single_saddr
= saddr_list
->value
;
3879 * If we had multiple primary displays, we don't do defaults
3880 * for websocket, and require explicit config instead.
3885 qemu_opt_iter_init(&addriter
, opts
, "websocket");
3886 while ((addr
= qemu_opt_iter_next(&addriter
)) != NULL
) {
3887 if (vnc_display_get_address(addr
, true, reverse
, displaynum
, to
,
3890 &wsaddr
, errp
) < 0) {
3894 /* Historical compat - if only a single listen address was
3895 * provided, then this is used to set the default listen
3896 * address for websocket too
3899 single_saddr
->type
== SOCKET_ADDRESS_TYPE_INET
&&
3900 wsaddr
->type
== SOCKET_ADDRESS_TYPE_INET
&&
3901 g_str_equal(wsaddr
->u
.inet
.host
, "") &&
3902 !g_str_equal(single_saddr
->u
.inet
.host
, "")) {
3903 g_free(wsaddr
->u
.inet
.host
);
3904 wsaddr
->u
.inet
.host
= g_strdup(single_saddr
->u
.inet
.host
);
3907 QAPI_LIST_APPEND(wsaddr_tail
, wsaddr
);
3910 *saddr_list_ret
= g_steal_pointer(&saddr_list
);
3911 *wsaddr_list_ret
= g_steal_pointer(&wsaddr_list
);
3915 static int vnc_display_connect(VncDisplay
*vd
,
3916 SocketAddressList
*saddr_list
,
3917 SocketAddressList
*wsaddr_list
,
3920 /* connect to viewer */
3921 QIOChannelSocket
*sioc
= NULL
;
3923 error_setg(errp
, "Cannot use websockets in reverse mode");
3926 if (!saddr_list
|| saddr_list
->next
) {
3927 error_setg(errp
, "Expected a single address in reverse mode");
3930 /* TODO SOCKET_ADDRESS_TYPE_FD when fd has AF_UNIX */
3931 vd
->is_unix
= saddr_list
->value
->type
== SOCKET_ADDRESS_TYPE_UNIX
;
3932 sioc
= qio_channel_socket_new();
3933 qio_channel_set_name(QIO_CHANNEL(sioc
), "vnc-reverse");
3934 if (qio_channel_socket_connect_sync(sioc
, saddr_list
->value
, errp
) < 0) {
3935 object_unref(OBJECT(sioc
));
3938 vnc_connect(vd
, sioc
, false, false);
3939 object_unref(OBJECT(sioc
));
3944 static int vnc_display_listen(VncDisplay
*vd
,
3945 SocketAddressList
*saddr_list
,
3946 SocketAddressList
*wsaddr_list
,
3949 SocketAddressList
*el
;
3952 vd
->listener
= qio_net_listener_new();
3953 qio_net_listener_set_name(vd
->listener
, "vnc-listen");
3954 for (el
= saddr_list
; el
; el
= el
->next
) {
3955 if (qio_net_listener_open_sync(vd
->listener
,
3962 qio_net_listener_set_client_func(vd
->listener
,
3963 vnc_listen_io
, vd
, NULL
);
3967 vd
->wslistener
= qio_net_listener_new();
3968 qio_net_listener_set_name(vd
->wslistener
, "vnc-ws-listen");
3969 for (el
= wsaddr_list
; el
; el
= el
->next
) {
3970 if (qio_net_listener_open_sync(vd
->wslistener
,
3977 qio_net_listener_set_client_func(vd
->wslistener
,
3978 vnc_listen_io
, vd
, NULL
);
3984 bool vnc_display_update(DisplayUpdateOptionsVNC
*arg
, Error
**errp
)
3986 VncDisplay
*vd
= vnc_display_find(NULL
);
3989 error_setg(errp
, "Can not find vnc display");
3993 if (arg
->has_addresses
) {
3995 qio_net_listener_disconnect(vd
->listener
);
3996 object_unref(OBJECT(vd
->listener
));
3997 vd
->listener
= NULL
;
4000 if (vnc_display_listen(vd
, arg
->addresses
, NULL
, errp
) < 0) {
4008 void vnc_display_open(const char *id
, Error
**errp
)
4010 VncDisplay
*vd
= vnc_display_find(id
);
4011 QemuOpts
*opts
= qemu_opts_find(&qemu_vnc_opts
, id
);
4012 g_autoptr(SocketAddressList
) saddr_list
= NULL
;
4013 g_autoptr(SocketAddressList
) wsaddr_list
= NULL
;
4014 const char *share
, *device_id
;
4016 bool password
= false;
4017 bool reverse
= false;
4020 const char *tlsauthz
;
4021 const char *saslauthz
;
4022 int lock_key_sync
= 1;
4024 const char *audiodev
;
4025 const char *passwordSecret
;
4028 error_setg(errp
, "VNC display not active");
4031 vnc_display_close(vd
);
4037 reverse
= qemu_opt_get_bool(opts
, "reverse", false);
4038 if (vnc_display_get_addresses(opts
, reverse
, &saddr_list
, &wsaddr_list
,
4044 passwordSecret
= qemu_opt_get(opts
, "password-secret");
4045 if (passwordSecret
) {
4046 if (qemu_opt_get(opts
, "password")) {
4048 "'password' flag is redundant with 'password-secret'");
4051 vd
->password
= qcrypto_secret_lookup_as_utf8(passwordSecret
,
4053 if (!vd
->password
) {
4058 password
= qemu_opt_get_bool(opts
, "password", false);
4061 if (!qcrypto_cipher_supports(
4062 QCRYPTO_CIPHER_ALG_DES
, QCRYPTO_CIPHER_MODE_ECB
)) {
4064 "Cipher backend does not support DES algorithm");
4069 lock_key_sync
= qemu_opt_get_bool(opts
, "lock-key-sync", true);
4070 key_delay_ms
= qemu_opt_get_number(opts
, "key-delay-ms", 10);
4071 sasl
= qemu_opt_get_bool(opts
, "sasl", false);
4072 #ifndef CONFIG_VNC_SASL
4074 error_setg(errp
, "VNC SASL auth requires cyrus-sasl support");
4077 #endif /* CONFIG_VNC_SASL */
4078 credid
= qemu_opt_get(opts
, "tls-creds");
4081 creds
= object_resolve_path_component(
4082 object_get_objects_root(), credid
);
4084 error_setg(errp
, "No TLS credentials with id '%s'",
4088 vd
->tlscreds
= (QCryptoTLSCreds
*)
4089 object_dynamic_cast(creds
,
4090 TYPE_QCRYPTO_TLS_CREDS
);
4091 if (!vd
->tlscreds
) {
4092 error_setg(errp
, "Object with id '%s' is not TLS credentials",
4096 object_ref(OBJECT(vd
->tlscreds
));
4098 if (!qcrypto_tls_creds_check_endpoint(vd
->tlscreds
,
4099 QCRYPTO_TLS_CREDS_ENDPOINT_SERVER
,
4104 tlsauthz
= qemu_opt_get(opts
, "tls-authz");
4105 if (tlsauthz
&& !vd
->tlscreds
) {
4106 error_setg(errp
, "'tls-authz' provided but TLS is not enabled");
4110 saslauthz
= qemu_opt_get(opts
, "sasl-authz");
4111 if (saslauthz
&& !sasl
) {
4112 error_setg(errp
, "'sasl-authz' provided but SASL auth is not enabled");
4116 share
= qemu_opt_get(opts
, "share");
4118 if (strcmp(share
, "ignore") == 0) {
4119 vd
->share_policy
= VNC_SHARE_POLICY_IGNORE
;
4120 } else if (strcmp(share
, "allow-exclusive") == 0) {
4121 vd
->share_policy
= VNC_SHARE_POLICY_ALLOW_EXCLUSIVE
;
4122 } else if (strcmp(share
, "force-shared") == 0) {
4123 vd
->share_policy
= VNC_SHARE_POLICY_FORCE_SHARED
;
4125 error_setg(errp
, "unknown vnc share= option");
4129 vd
->share_policy
= VNC_SHARE_POLICY_ALLOW_EXCLUSIVE
;
4131 vd
->connections_limit
= qemu_opt_get_number(opts
, "connections", 32);
4133 #ifdef CONFIG_VNC_JPEG
4134 vd
->lossy
= qemu_opt_get_bool(opts
, "lossy", false);
4136 vd
->non_adaptive
= qemu_opt_get_bool(opts
, "non-adaptive", false);
4137 /* adaptive updates are only used with tight encoding and
4138 * if lossy updates are enabled so we can disable all the
4139 * calculations otherwise */
4141 vd
->non_adaptive
= true;
4144 vd
->power_control
= qemu_opt_get_bool(opts
, "power-control", false);
4147 vd
->tlsauthzid
= g_strdup(tlsauthz
);
4149 #ifdef CONFIG_VNC_SASL
4152 vd
->sasl
.authzid
= g_strdup(saslauthz
);
4157 if (vnc_display_setup_auth(&vd
->auth
, &vd
->subauth
,
4158 vd
->tlscreds
, password
,
4159 sasl
, false, errp
) < 0) {
4162 trace_vnc_auth_init(vd
, 0, vd
->auth
, vd
->subauth
);
4164 if (vnc_display_setup_auth(&vd
->ws_auth
, &vd
->ws_subauth
,
4165 vd
->tlscreds
, password
,
4166 sasl
, true, errp
) < 0) {
4169 trace_vnc_auth_init(vd
, 1, vd
->ws_auth
, vd
->ws_subauth
);
4171 #ifdef CONFIG_VNC_SASL
4172 if (sasl
&& !vnc_sasl_server_init(errp
)) {
4176 vd
->lock_key_sync
= lock_key_sync
;
4177 if (lock_key_sync
) {
4178 vd
->led
= qemu_add_led_event_handler(kbd_leds
, vd
);
4182 audiodev
= qemu_opt_get(opts
, "audiodev");
4184 vd
->audio_state
= audio_state_by_name(audiodev
);
4185 if (!vd
->audio_state
) {
4186 error_setg(errp
, "Audiodev '%s' not found", audiodev
);
4191 device_id
= qemu_opt_get(opts
, "display");
4193 int head
= qemu_opt_get_number(opts
, "head", 0);
4196 con
= qemu_console_lookup_by_device_name(device_id
, head
, &err
);
4198 error_propagate(errp
, err
);
4205 if (con
!= vd
->dcl
.con
) {
4206 qkbd_state_free(vd
->kbd
);
4207 unregister_displaychangelistener(&vd
->dcl
);
4209 register_displaychangelistener(&vd
->dcl
);
4210 vd
->kbd
= qkbd_state_init(vd
->dcl
.con
);
4212 qkbd_state_set_delay(vd
->kbd
, key_delay_ms
);
4214 if (saddr_list
== NULL
) {
4219 if (vnc_display_connect(vd
, saddr_list
, wsaddr_list
, errp
) < 0) {
4223 if (vnc_display_listen(vd
, saddr_list
, wsaddr_list
, errp
) < 0) {
4228 if (qemu_opt_get(opts
, "to")) {
4229 vnc_display_print_local_addr(vd
);
4236 vnc_display_close(vd
);
4239 void vnc_display_add_client(const char *id
, int csock
, bool skipauth
)
4241 VncDisplay
*vd
= vnc_display_find(id
);
4242 QIOChannelSocket
*sioc
;
4248 sioc
= qio_channel_socket_new_fd(csock
, NULL
);
4250 qio_channel_set_name(QIO_CHANNEL(sioc
), "vnc-server");
4251 vnc_connect(vd
, sioc
, skipauth
, false);
4252 object_unref(OBJECT(sioc
));
4256 static void vnc_auto_assign_id(QemuOptsList
*olist
, QemuOpts
*opts
)
4261 id
= g_strdup("default");
4262 while (qemu_opts_find(olist
, id
)) {
4264 id
= g_strdup_printf("vnc%d", i
++);
4266 qemu_opts_set_id(opts
, id
);
4269 void vnc_parse(const char *str
)
4271 QemuOptsList
*olist
= qemu_find_opts("vnc");
4272 QemuOpts
*opts
= qemu_opts_parse_noisily(olist
, str
, !is_help_option(str
));
4279 id
= qemu_opts_id(opts
);
4281 /* auto-assign id if not present */
4282 vnc_auto_assign_id(olist
, opts
);
4286 int vnc_init_func(void *opaque
, QemuOpts
*opts
, Error
**errp
)
4288 Error
*local_err
= NULL
;
4289 char *id
= (char *)qemu_opts_id(opts
);
4292 vnc_display_init(id
, &local_err
);
4294 error_propagate(errp
, local_err
);
4297 vnc_display_open(id
, &local_err
);
4298 if (local_err
!= NULL
) {
4299 error_propagate(errp
, local_err
);
4305 static void vnc_register_config(void)
4307 qemu_add_opts(&qemu_vnc_opts
);
4309 opts_init(vnc_register_config
);