seabios: update to latest git
[qemu.git] / ui / vnc.c
blobfdc4a70d02d4b2f6e332286b2be9944c3cb738f1
1 /*
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
24 * THE SOFTWARE.
27 #include "vnc.h"
28 #include "vnc-jobs.h"
29 #include "sysemu.h"
30 #include "qemu_socket.h"
31 #include "qemu-timer.h"
32 #include "acl.h"
33 #include "qemu-objects.h"
35 #define VNC_REFRESH_INTERVAL_BASE 30
36 #define VNC_REFRESH_INTERVAL_INC 50
37 #define VNC_REFRESH_INTERVAL_MAX 2000
38 static const struct timeval VNC_REFRESH_STATS = { 0, 500000 };
39 static const struct timeval VNC_REFRESH_LOSSY = { 2, 0 };
41 #include "vnc_keysym.h"
42 #include "d3des.h"
44 static VncDisplay *vnc_display; /* needed for info vnc */
45 static DisplayChangeListener *dcl;
47 static int vnc_cursor_define(VncState *vs);
49 static char *addr_to_string(const char *format,
50 struct sockaddr_storage *sa,
51 socklen_t salen) {
52 char *addr;
53 char host[NI_MAXHOST];
54 char serv[NI_MAXSERV];
55 int err;
56 size_t addrlen;
58 if ((err = getnameinfo((struct sockaddr *)sa, salen,
59 host, sizeof(host),
60 serv, sizeof(serv),
61 NI_NUMERICHOST | NI_NUMERICSERV)) != 0) {
62 VNC_DEBUG("Cannot resolve address %d: %s\n",
63 err, gai_strerror(err));
64 return NULL;
67 /* Enough for the existing format + the 2 vars we're
68 * substituting in. */
69 addrlen = strlen(format) + strlen(host) + strlen(serv);
70 addr = qemu_malloc(addrlen + 1);
71 snprintf(addr, addrlen, format, host, serv);
72 addr[addrlen] = '\0';
74 return addr;
78 char *vnc_socket_local_addr(const char *format, int fd) {
79 struct sockaddr_storage sa;
80 socklen_t salen;
82 salen = sizeof(sa);
83 if (getsockname(fd, (struct sockaddr*)&sa, &salen) < 0)
84 return NULL;
86 return addr_to_string(format, &sa, salen);
89 char *vnc_socket_remote_addr(const char *format, int fd) {
90 struct sockaddr_storage sa;
91 socklen_t salen;
93 salen = sizeof(sa);
94 if (getpeername(fd, (struct sockaddr*)&sa, &salen) < 0)
95 return NULL;
97 return addr_to_string(format, &sa, salen);
100 static int put_addr_qdict(QDict *qdict, struct sockaddr_storage *sa,
101 socklen_t salen)
103 char host[NI_MAXHOST];
104 char serv[NI_MAXSERV];
105 int err;
107 if ((err = getnameinfo((struct sockaddr *)sa, salen,
108 host, sizeof(host),
109 serv, sizeof(serv),
110 NI_NUMERICHOST | NI_NUMERICSERV)) != 0) {
111 VNC_DEBUG("Cannot resolve address %d: %s\n",
112 err, gai_strerror(err));
113 return -1;
116 qdict_put(qdict, "host", qstring_from_str(host));
117 qdict_put(qdict, "service", qstring_from_str(serv));
118 qdict_put(qdict, "family",qstring_from_str(inet_strfamily(sa->ss_family)));
120 return 0;
123 static int vnc_server_addr_put(QDict *qdict, int fd)
125 struct sockaddr_storage sa;
126 socklen_t salen;
128 salen = sizeof(sa);
129 if (getsockname(fd, (struct sockaddr*)&sa, &salen) < 0) {
130 return -1;
133 return put_addr_qdict(qdict, &sa, salen);
136 static int vnc_qdict_remote_addr(QDict *qdict, int fd)
138 struct sockaddr_storage sa;
139 socklen_t salen;
141 salen = sizeof(sa);
142 if (getpeername(fd, (struct sockaddr*)&sa, &salen) < 0) {
143 return -1;
146 return put_addr_qdict(qdict, &sa, salen);
149 static const char *vnc_auth_name(VncDisplay *vd) {
150 switch (vd->auth) {
151 case VNC_AUTH_INVALID:
152 return "invalid";
153 case VNC_AUTH_NONE:
154 return "none";
155 case VNC_AUTH_VNC:
156 return "vnc";
157 case VNC_AUTH_RA2:
158 return "ra2";
159 case VNC_AUTH_RA2NE:
160 return "ra2ne";
161 case VNC_AUTH_TIGHT:
162 return "tight";
163 case VNC_AUTH_ULTRA:
164 return "ultra";
165 case VNC_AUTH_TLS:
166 return "tls";
167 case VNC_AUTH_VENCRYPT:
168 #ifdef CONFIG_VNC_TLS
169 switch (vd->subauth) {
170 case VNC_AUTH_VENCRYPT_PLAIN:
171 return "vencrypt+plain";
172 case VNC_AUTH_VENCRYPT_TLSNONE:
173 return "vencrypt+tls+none";
174 case VNC_AUTH_VENCRYPT_TLSVNC:
175 return "vencrypt+tls+vnc";
176 case VNC_AUTH_VENCRYPT_TLSPLAIN:
177 return "vencrypt+tls+plain";
178 case VNC_AUTH_VENCRYPT_X509NONE:
179 return "vencrypt+x509+none";
180 case VNC_AUTH_VENCRYPT_X509VNC:
181 return "vencrypt+x509+vnc";
182 case VNC_AUTH_VENCRYPT_X509PLAIN:
183 return "vencrypt+x509+plain";
184 case VNC_AUTH_VENCRYPT_TLSSASL:
185 return "vencrypt+tls+sasl";
186 case VNC_AUTH_VENCRYPT_X509SASL:
187 return "vencrypt+x509+sasl";
188 default:
189 return "vencrypt";
191 #else
192 return "vencrypt";
193 #endif
194 case VNC_AUTH_SASL:
195 return "sasl";
197 return "unknown";
200 static int vnc_server_info_put(QDict *qdict)
202 if (vnc_server_addr_put(qdict, vnc_display->lsock) < 0) {
203 return -1;
206 qdict_put(qdict, "auth", qstring_from_str(vnc_auth_name(vnc_display)));
207 return 0;
210 static void vnc_client_cache_auth(VncState *client)
212 #if defined(CONFIG_VNC_TLS) || defined(CONFIG_VNC_SASL)
213 QDict *qdict;
214 #endif
216 if (!client->info) {
217 return;
220 #if defined(CONFIG_VNC_TLS) || defined(CONFIG_VNC_SASL)
221 qdict = qobject_to_qdict(client->info);
222 #endif
224 #ifdef CONFIG_VNC_TLS
225 if (client->tls.session &&
226 client->tls.dname) {
227 qdict_put(qdict, "x509_dname", qstring_from_str(client->tls.dname));
229 #endif
230 #ifdef CONFIG_VNC_SASL
231 if (client->sasl.conn &&
232 client->sasl.username) {
233 qdict_put(qdict, "sasl_username",
234 qstring_from_str(client->sasl.username));
236 #endif
239 static void vnc_client_cache_addr(VncState *client)
241 QDict *qdict;
243 qdict = qdict_new();
244 if (vnc_qdict_remote_addr(qdict, client->csock) < 0) {
245 QDECREF(qdict);
246 /* XXX: how to report the error? */
247 return;
250 client->info = QOBJECT(qdict);
253 static void vnc_qmp_event(VncState *vs, MonitorEvent event)
255 QDict *server;
256 QObject *data;
258 if (!vs->info) {
259 return;
262 server = qdict_new();
263 if (vnc_server_info_put(server) < 0) {
264 QDECREF(server);
265 return;
268 data = qobject_from_jsonf("{ 'client': %p, 'server': %p }",
269 vs->info, QOBJECT(server));
271 monitor_protocol_event(event, data);
273 qobject_incref(vs->info);
274 qobject_decref(data);
277 static void info_vnc_iter(QObject *obj, void *opaque)
279 QDict *client;
280 Monitor *mon = opaque;
282 client = qobject_to_qdict(obj);
283 monitor_printf(mon, "Client:\n");
284 monitor_printf(mon, " address: %s:%s\n",
285 qdict_get_str(client, "host"),
286 qdict_get_str(client, "service"));
288 #ifdef CONFIG_VNC_TLS
289 monitor_printf(mon, " x509_dname: %s\n",
290 qdict_haskey(client, "x509_dname") ?
291 qdict_get_str(client, "x509_dname") : "none");
292 #endif
293 #ifdef CONFIG_VNC_SASL
294 monitor_printf(mon, " username: %s\n",
295 qdict_haskey(client, "sasl_username") ?
296 qdict_get_str(client, "sasl_username") : "none");
297 #endif
300 void do_info_vnc_print(Monitor *mon, const QObject *data)
302 QDict *server;
303 QList *clients;
305 server = qobject_to_qdict(data);
306 if (qdict_get_bool(server, "enabled") == 0) {
307 monitor_printf(mon, "Server: disabled\n");
308 return;
311 monitor_printf(mon, "Server:\n");
312 monitor_printf(mon, " address: %s:%s\n",
313 qdict_get_str(server, "host"),
314 qdict_get_str(server, "service"));
315 monitor_printf(mon, " auth: %s\n", qdict_get_str(server, "auth"));
317 clients = qdict_get_qlist(server, "clients");
318 if (qlist_empty(clients)) {
319 monitor_printf(mon, "Client: none\n");
320 } else {
321 qlist_iter(clients, info_vnc_iter, mon);
325 void do_info_vnc(Monitor *mon, QObject **ret_data)
327 if (vnc_display == NULL || vnc_display->display == NULL) {
328 *ret_data = qobject_from_jsonf("{ 'enabled': false }");
329 } else {
330 QList *clist;
331 VncState *client;
333 clist = qlist_new();
334 QTAILQ_FOREACH(client, &vnc_display->clients, next) {
335 if (client->info) {
336 /* incref so that it's not freed by upper layers */
337 qobject_incref(client->info);
338 qlist_append_obj(clist, client->info);
342 *ret_data = qobject_from_jsonf("{ 'enabled': true, 'clients': %p }",
343 QOBJECT(clist));
344 assert(*ret_data != NULL);
346 if (vnc_server_info_put(qobject_to_qdict(*ret_data)) < 0) {
347 qobject_decref(*ret_data);
348 *ret_data = NULL;
353 /* TODO
354 1) Get the queue working for IO.
355 2) there is some weirdness when using the -S option (the screen is grey
356 and not totally invalidated
357 3) resolutions > 1024
360 static int vnc_update_client(VncState *vs, int has_dirty);
361 static int vnc_update_client_sync(VncState *vs, int has_dirty);
362 static void vnc_disconnect_start(VncState *vs);
363 static void vnc_disconnect_finish(VncState *vs);
364 static void vnc_init_timer(VncDisplay *vd);
365 static void vnc_remove_timer(VncDisplay *vd);
367 static void vnc_colordepth(VncState *vs);
368 static void framebuffer_update_request(VncState *vs, int incremental,
369 int x_position, int y_position,
370 int w, int h);
371 static void vnc_refresh(void *opaque);
372 static int vnc_refresh_server_surface(VncDisplay *vd);
374 static void vnc_dpy_update(DisplayState *ds, int x, int y, int w, int h)
376 int i;
377 VncDisplay *vd = ds->opaque;
378 struct VncSurface *s = &vd->guest;
380 h += y;
382 /* round x down to ensure the loop only spans one 16-pixel block per,
383 iteration. otherwise, if (x % 16) != 0, the last iteration may span
384 two 16-pixel blocks but we only mark the first as dirty
386 w += (x % 16);
387 x -= (x % 16);
389 x = MIN(x, s->ds->width);
390 y = MIN(y, s->ds->height);
391 w = MIN(x + w, s->ds->width) - x;
392 h = MIN(h, s->ds->height);
394 for (; y < h; y++)
395 for (i = 0; i < w; i += 16)
396 set_bit((x + i) / 16, s->dirty[y]);
399 void vnc_framebuffer_update(VncState *vs, int x, int y, int w, int h,
400 int32_t encoding)
402 vnc_write_u16(vs, x);
403 vnc_write_u16(vs, y);
404 vnc_write_u16(vs, w);
405 vnc_write_u16(vs, h);
407 vnc_write_s32(vs, encoding);
410 void buffer_reserve(Buffer *buffer, size_t len)
412 if ((buffer->capacity - buffer->offset) < len) {
413 buffer->capacity += (len + 1024);
414 buffer->buffer = qemu_realloc(buffer->buffer, buffer->capacity);
415 if (buffer->buffer == NULL) {
416 fprintf(stderr, "vnc: out of memory\n");
417 exit(1);
422 int buffer_empty(Buffer *buffer)
424 return buffer->offset == 0;
427 uint8_t *buffer_end(Buffer *buffer)
429 return buffer->buffer + buffer->offset;
432 void buffer_reset(Buffer *buffer)
434 buffer->offset = 0;
437 void buffer_free(Buffer *buffer)
439 qemu_free(buffer->buffer);
440 buffer->offset = 0;
441 buffer->capacity = 0;
442 buffer->buffer = NULL;
445 void buffer_append(Buffer *buffer, const void *data, size_t len)
447 memcpy(buffer->buffer + buffer->offset, data, len);
448 buffer->offset += len;
451 static void vnc_desktop_resize(VncState *vs)
453 DisplayState *ds = vs->ds;
455 if (vs->csock == -1 || !vnc_has_feature(vs, VNC_FEATURE_RESIZE)) {
456 return;
458 if (vs->client_width == ds_get_width(ds) &&
459 vs->client_height == ds_get_height(ds)) {
460 return;
462 vs->client_width = ds_get_width(ds);
463 vs->client_height = ds_get_height(ds);
464 vnc_lock_output(vs);
465 vnc_write_u8(vs, VNC_MSG_SERVER_FRAMEBUFFER_UPDATE);
466 vnc_write_u8(vs, 0);
467 vnc_write_u16(vs, 1); /* number of rects */
468 vnc_framebuffer_update(vs, 0, 0, vs->client_width, vs->client_height,
469 VNC_ENCODING_DESKTOPRESIZE);
470 vnc_unlock_output(vs);
471 vnc_flush(vs);
474 #ifdef CONFIG_VNC_THREAD
475 static void vnc_abort_display_jobs(VncDisplay *vd)
477 VncState *vs;
479 QTAILQ_FOREACH(vs, &vd->clients, next) {
480 vnc_lock_output(vs);
481 vs->abort = true;
482 vnc_unlock_output(vs);
484 QTAILQ_FOREACH(vs, &vd->clients, next) {
485 vnc_jobs_join(vs);
487 QTAILQ_FOREACH(vs, &vd->clients, next) {
488 vnc_lock_output(vs);
489 vs->abort = false;
490 vnc_unlock_output(vs);
493 #else
494 static void vnc_abort_display_jobs(VncDisplay *vd)
497 #endif
499 static void vnc_dpy_resize(DisplayState *ds)
501 VncDisplay *vd = ds->opaque;
502 VncState *vs;
504 vnc_abort_display_jobs(vd);
506 /* server surface */
507 if (!vd->server)
508 vd->server = qemu_mallocz(sizeof(*vd->server));
509 if (vd->server->data)
510 qemu_free(vd->server->data);
511 *(vd->server) = *(ds->surface);
512 vd->server->data = qemu_mallocz(vd->server->linesize *
513 vd->server->height);
515 /* guest surface */
516 if (!vd->guest.ds)
517 vd->guest.ds = qemu_mallocz(sizeof(*vd->guest.ds));
518 if (ds_get_bytes_per_pixel(ds) != vd->guest.ds->pf.bytes_per_pixel)
519 console_color_init(ds);
520 *(vd->guest.ds) = *(ds->surface);
521 memset(vd->guest.dirty, 0xFF, sizeof(vd->guest.dirty));
523 QTAILQ_FOREACH(vs, &vd->clients, next) {
524 vnc_colordepth(vs);
525 vnc_desktop_resize(vs);
526 if (vs->vd->cursor) {
527 vnc_cursor_define(vs);
529 memset(vs->dirty, 0xFF, sizeof(vs->dirty));
533 /* fastest code */
534 static void vnc_write_pixels_copy(VncState *vs, struct PixelFormat *pf,
535 void *pixels, int size)
537 vnc_write(vs, pixels, size);
540 /* slowest but generic code. */
541 void vnc_convert_pixel(VncState *vs, uint8_t *buf, uint32_t v)
543 uint8_t r, g, b;
544 VncDisplay *vd = vs->vd;
546 r = ((((v & vd->server->pf.rmask) >> vd->server->pf.rshift) << vs->clientds.pf.rbits) >>
547 vd->server->pf.rbits);
548 g = ((((v & vd->server->pf.gmask) >> vd->server->pf.gshift) << vs->clientds.pf.gbits) >>
549 vd->server->pf.gbits);
550 b = ((((v & vd->server->pf.bmask) >> vd->server->pf.bshift) << vs->clientds.pf.bbits) >>
551 vd->server->pf.bbits);
552 v = (r << vs->clientds.pf.rshift) |
553 (g << vs->clientds.pf.gshift) |
554 (b << vs->clientds.pf.bshift);
555 switch(vs->clientds.pf.bytes_per_pixel) {
556 case 1:
557 buf[0] = v;
558 break;
559 case 2:
560 if (vs->clientds.flags & QEMU_BIG_ENDIAN_FLAG) {
561 buf[0] = v >> 8;
562 buf[1] = v;
563 } else {
564 buf[1] = v >> 8;
565 buf[0] = v;
567 break;
568 default:
569 case 4:
570 if (vs->clientds.flags & QEMU_BIG_ENDIAN_FLAG) {
571 buf[0] = v >> 24;
572 buf[1] = v >> 16;
573 buf[2] = v >> 8;
574 buf[3] = v;
575 } else {
576 buf[3] = v >> 24;
577 buf[2] = v >> 16;
578 buf[1] = v >> 8;
579 buf[0] = v;
581 break;
585 static void vnc_write_pixels_generic(VncState *vs, struct PixelFormat *pf,
586 void *pixels1, int size)
588 uint8_t buf[4];
590 if (pf->bytes_per_pixel == 4) {
591 uint32_t *pixels = pixels1;
592 int n, i;
593 n = size >> 2;
594 for(i = 0; i < n; i++) {
595 vnc_convert_pixel(vs, buf, pixels[i]);
596 vnc_write(vs, buf, vs->clientds.pf.bytes_per_pixel);
598 } else if (pf->bytes_per_pixel == 2) {
599 uint16_t *pixels = pixels1;
600 int n, i;
601 n = size >> 1;
602 for(i = 0; i < n; i++) {
603 vnc_convert_pixel(vs, buf, pixels[i]);
604 vnc_write(vs, buf, vs->clientds.pf.bytes_per_pixel);
606 } else if (pf->bytes_per_pixel == 1) {
607 uint8_t *pixels = pixels1;
608 int n, i;
609 n = size;
610 for(i = 0; i < n; i++) {
611 vnc_convert_pixel(vs, buf, pixels[i]);
612 vnc_write(vs, buf, vs->clientds.pf.bytes_per_pixel);
614 } else {
615 fprintf(stderr, "vnc_write_pixels_generic: VncState color depth not supported\n");
619 int vnc_raw_send_framebuffer_update(VncState *vs, int x, int y, int w, int h)
621 int i;
622 uint8_t *row;
623 VncDisplay *vd = vs->vd;
625 row = vd->server->data + y * ds_get_linesize(vs->ds) + x * ds_get_bytes_per_pixel(vs->ds);
626 for (i = 0; i < h; i++) {
627 vs->write_pixels(vs, &vd->server->pf, row, w * ds_get_bytes_per_pixel(vs->ds));
628 row += ds_get_linesize(vs->ds);
630 return 1;
633 int vnc_send_framebuffer_update(VncState *vs, int x, int y, int w, int h)
635 int n = 0;
637 switch(vs->vnc_encoding) {
638 case VNC_ENCODING_ZLIB:
639 n = vnc_zlib_send_framebuffer_update(vs, x, y, w, h);
640 break;
641 case VNC_ENCODING_HEXTILE:
642 vnc_framebuffer_update(vs, x, y, w, h, VNC_ENCODING_HEXTILE);
643 n = vnc_hextile_send_framebuffer_update(vs, x, y, w, h);
644 break;
645 case VNC_ENCODING_TIGHT:
646 n = vnc_tight_send_framebuffer_update(vs, x, y, w, h);
647 break;
648 case VNC_ENCODING_TIGHT_PNG:
649 n = vnc_tight_png_send_framebuffer_update(vs, x, y, w, h);
650 break;
651 case VNC_ENCODING_ZRLE:
652 n = vnc_zrle_send_framebuffer_update(vs, x, y, w, h);
653 break;
654 case VNC_ENCODING_ZYWRLE:
655 n = vnc_zywrle_send_framebuffer_update(vs, x, y, w, h);
656 break;
657 default:
658 vnc_framebuffer_update(vs, x, y, w, h, VNC_ENCODING_RAW);
659 n = vnc_raw_send_framebuffer_update(vs, x, y, w, h);
660 break;
662 return n;
665 static void vnc_copy(VncState *vs, int src_x, int src_y, int dst_x, int dst_y, int w, int h)
667 /* send bitblit op to the vnc client */
668 vnc_lock_output(vs);
669 vnc_write_u8(vs, VNC_MSG_SERVER_FRAMEBUFFER_UPDATE);
670 vnc_write_u8(vs, 0);
671 vnc_write_u16(vs, 1); /* number of rects */
672 vnc_framebuffer_update(vs, dst_x, dst_y, w, h, VNC_ENCODING_COPYRECT);
673 vnc_write_u16(vs, src_x);
674 vnc_write_u16(vs, src_y);
675 vnc_unlock_output(vs);
676 vnc_flush(vs);
679 static void vnc_dpy_copy(DisplayState *ds, int src_x, int src_y, int dst_x, int dst_y, int w, int h)
681 VncDisplay *vd = ds->opaque;
682 VncState *vs, *vn;
683 uint8_t *src_row;
684 uint8_t *dst_row;
685 int i,x,y,pitch,depth,inc,w_lim,s;
686 int cmp_bytes;
688 vnc_refresh_server_surface(vd);
689 QTAILQ_FOREACH_SAFE(vs, &vd->clients, next, vn) {
690 if (vnc_has_feature(vs, VNC_FEATURE_COPYRECT)) {
691 vs->force_update = 1;
692 vnc_update_client_sync(vs, 1);
693 /* vs might be free()ed here */
697 /* do bitblit op on the local surface too */
698 pitch = ds_get_linesize(vd->ds);
699 depth = ds_get_bytes_per_pixel(vd->ds);
700 src_row = vd->server->data + pitch * src_y + depth * src_x;
701 dst_row = vd->server->data + pitch * dst_y + depth * dst_x;
702 y = dst_y;
703 inc = 1;
704 if (dst_y > src_y) {
705 /* copy backwards */
706 src_row += pitch * (h-1);
707 dst_row += pitch * (h-1);
708 pitch = -pitch;
709 y = dst_y + h - 1;
710 inc = -1;
712 w_lim = w - (16 - (dst_x % 16));
713 if (w_lim < 0)
714 w_lim = w;
715 else
716 w_lim = w - (w_lim % 16);
717 for (i = 0; i < h; i++) {
718 for (x = 0; x <= w_lim;
719 x += s, src_row += cmp_bytes, dst_row += cmp_bytes) {
720 if (x == w_lim) {
721 if ((s = w - w_lim) == 0)
722 break;
723 } else if (!x) {
724 s = (16 - (dst_x % 16));
725 s = MIN(s, w_lim);
726 } else {
727 s = 16;
729 cmp_bytes = s * depth;
730 if (memcmp(src_row, dst_row, cmp_bytes) == 0)
731 continue;
732 memmove(dst_row, src_row, cmp_bytes);
733 QTAILQ_FOREACH(vs, &vd->clients, next) {
734 if (!vnc_has_feature(vs, VNC_FEATURE_COPYRECT)) {
735 set_bit(((x + dst_x) / 16), vs->dirty[y]);
739 src_row += pitch - w * depth;
740 dst_row += pitch - w * depth;
741 y += inc;
744 QTAILQ_FOREACH(vs, &vd->clients, next) {
745 if (vnc_has_feature(vs, VNC_FEATURE_COPYRECT)) {
746 vnc_copy(vs, src_x, src_y, dst_x, dst_y, w, h);
751 static void vnc_mouse_set(int x, int y, int visible)
753 /* can we ask the client(s) to move the pointer ??? */
756 static int vnc_cursor_define(VncState *vs)
758 QEMUCursor *c = vs->vd->cursor;
759 PixelFormat pf = qemu_default_pixelformat(32);
760 int isize;
762 if (vnc_has_feature(vs, VNC_FEATURE_RICH_CURSOR)) {
763 vnc_lock_output(vs);
764 vnc_write_u8(vs, VNC_MSG_SERVER_FRAMEBUFFER_UPDATE);
765 vnc_write_u8(vs, 0); /* padding */
766 vnc_write_u16(vs, 1); /* # of rects */
767 vnc_framebuffer_update(vs, c->hot_x, c->hot_y, c->width, c->height,
768 VNC_ENCODING_RICH_CURSOR);
769 isize = c->width * c->height * vs->clientds.pf.bytes_per_pixel;
770 vnc_write_pixels_generic(vs, &pf, c->data, isize);
771 vnc_write(vs, vs->vd->cursor_mask, vs->vd->cursor_msize);
772 vnc_unlock_output(vs);
773 return 0;
775 return -1;
778 static void vnc_dpy_cursor_define(QEMUCursor *c)
780 VncDisplay *vd = vnc_display;
781 VncState *vs;
783 cursor_put(vd->cursor);
784 qemu_free(vd->cursor_mask);
786 vd->cursor = c;
787 cursor_get(vd->cursor);
788 vd->cursor_msize = cursor_get_mono_bpl(c) * c->height;
789 vd->cursor_mask = qemu_mallocz(vd->cursor_msize);
790 cursor_get_mono_mask(c, 0, vd->cursor_mask);
792 QTAILQ_FOREACH(vs, &vd->clients, next) {
793 vnc_cursor_define(vs);
797 static int find_and_clear_dirty_height(struct VncState *vs,
798 int y, int last_x, int x, int height)
800 int h;
802 for (h = 1; h < (height - y); h++) {
803 int tmp_x;
804 if (!test_bit(last_x, vs->dirty[y + h])) {
805 break;
807 for (tmp_x = last_x; tmp_x < x; tmp_x++) {
808 clear_bit(tmp_x, vs->dirty[y + h]);
812 return h;
815 #ifdef CONFIG_VNC_THREAD
816 static int vnc_update_client_sync(VncState *vs, int has_dirty)
818 int ret = vnc_update_client(vs, has_dirty);
819 vnc_jobs_join(vs);
820 return ret;
822 #else
823 static int vnc_update_client_sync(VncState *vs, int has_dirty)
825 return vnc_update_client(vs, has_dirty);
827 #endif
829 static int vnc_update_client(VncState *vs, int has_dirty)
831 if (vs->need_update && vs->csock != -1) {
832 VncDisplay *vd = vs->vd;
833 VncJob *job;
834 int y;
835 int width, height;
836 int n = 0;
839 if (vs->output.offset && !vs->audio_cap && !vs->force_update)
840 /* kernel send buffers are full -> drop frames to throttle */
841 return 0;
843 if (!has_dirty && !vs->audio_cap && !vs->force_update)
844 return 0;
847 * Send screen updates to the vnc client using the server
848 * surface and server dirty map. guest surface updates
849 * happening in parallel don't disturb us, the next pass will
850 * send them to the client.
852 job = vnc_job_new(vs);
854 width = MIN(vd->server->width, vs->client_width);
855 height = MIN(vd->server->height, vs->client_height);
857 for (y = 0; y < height; y++) {
858 int x;
859 int last_x = -1;
860 for (x = 0; x < width / 16; x++) {
861 if (test_and_clear_bit(x, vs->dirty[y])) {
862 if (last_x == -1) {
863 last_x = x;
865 } else {
866 if (last_x != -1) {
867 int h = find_and_clear_dirty_height(vs, y, last_x, x,
868 height);
870 n += vnc_job_add_rect(job, last_x * 16, y,
871 (x - last_x) * 16, h);
873 last_x = -1;
876 if (last_x != -1) {
877 int h = find_and_clear_dirty_height(vs, y, last_x, x, height);
878 n += vnc_job_add_rect(job, last_x * 16, y,
879 (x - last_x) * 16, h);
883 vnc_job_push(job);
884 vs->force_update = 0;
885 return n;
888 if (vs->csock == -1)
889 vnc_disconnect_finish(vs);
891 return 0;
894 /* audio */
895 static void audio_capture_notify(void *opaque, audcnotification_e cmd)
897 VncState *vs = opaque;
899 switch (cmd) {
900 case AUD_CNOTIFY_DISABLE:
901 vnc_lock_output(vs);
902 vnc_write_u8(vs, VNC_MSG_SERVER_QEMU);
903 vnc_write_u8(vs, VNC_MSG_SERVER_QEMU_AUDIO);
904 vnc_write_u16(vs, VNC_MSG_SERVER_QEMU_AUDIO_END);
905 vnc_unlock_output(vs);
906 vnc_flush(vs);
907 break;
909 case AUD_CNOTIFY_ENABLE:
910 vnc_lock_output(vs);
911 vnc_write_u8(vs, VNC_MSG_SERVER_QEMU);
912 vnc_write_u8(vs, VNC_MSG_SERVER_QEMU_AUDIO);
913 vnc_write_u16(vs, VNC_MSG_SERVER_QEMU_AUDIO_BEGIN);
914 vnc_unlock_output(vs);
915 vnc_flush(vs);
916 break;
920 static void audio_capture_destroy(void *opaque)
924 static void audio_capture(void *opaque, void *buf, int size)
926 VncState *vs = opaque;
928 vnc_lock_output(vs);
929 vnc_write_u8(vs, VNC_MSG_SERVER_QEMU);
930 vnc_write_u8(vs, VNC_MSG_SERVER_QEMU_AUDIO);
931 vnc_write_u16(vs, VNC_MSG_SERVER_QEMU_AUDIO_DATA);
932 vnc_write_u32(vs, size);
933 vnc_write(vs, buf, size);
934 vnc_unlock_output(vs);
935 vnc_flush(vs);
938 static void audio_add(VncState *vs)
940 struct audio_capture_ops ops;
942 if (vs->audio_cap) {
943 monitor_printf(default_mon, "audio already running\n");
944 return;
947 ops.notify = audio_capture_notify;
948 ops.destroy = audio_capture_destroy;
949 ops.capture = audio_capture;
951 vs->audio_cap = AUD_add_capture(&vs->as, &ops, vs);
952 if (!vs->audio_cap) {
953 monitor_printf(default_mon, "Failed to add audio capture\n");
957 static void audio_del(VncState *vs)
959 if (vs->audio_cap) {
960 AUD_del_capture(vs->audio_cap, vs);
961 vs->audio_cap = NULL;
965 static void vnc_disconnect_start(VncState *vs)
967 if (vs->csock == -1)
968 return;
969 qemu_set_fd_handler2(vs->csock, NULL, NULL, NULL, NULL);
970 closesocket(vs->csock);
971 vs->csock = -1;
974 static void vnc_disconnect_finish(VncState *vs)
976 int i;
978 vnc_jobs_join(vs); /* Wait encoding jobs */
980 vnc_lock_output(vs);
981 vnc_qmp_event(vs, QEVENT_VNC_DISCONNECTED);
983 buffer_free(&vs->input);
984 buffer_free(&vs->output);
986 qobject_decref(vs->info);
988 vnc_zlib_clear(vs);
989 vnc_tight_clear(vs);
990 vnc_zrle_clear(vs);
992 #ifdef CONFIG_VNC_TLS
993 vnc_tls_client_cleanup(vs);
994 #endif /* CONFIG_VNC_TLS */
995 #ifdef CONFIG_VNC_SASL
996 vnc_sasl_client_cleanup(vs);
997 #endif /* CONFIG_VNC_SASL */
998 audio_del(vs);
1000 QTAILQ_REMOVE(&vs->vd->clients, vs, next);
1002 if (QTAILQ_EMPTY(&vs->vd->clients)) {
1003 dcl->idle = 1;
1006 qemu_remove_mouse_mode_change_notifier(&vs->mouse_mode_notifier);
1007 vnc_remove_timer(vs->vd);
1008 if (vs->vd->lock_key_sync)
1009 qemu_remove_led_event_handler(vs->led);
1010 vnc_unlock_output(vs);
1012 #ifdef CONFIG_VNC_THREAD
1013 qemu_mutex_destroy(&vs->output_mutex);
1014 #endif
1015 for (i = 0; i < VNC_STAT_ROWS; ++i) {
1016 qemu_free(vs->lossy_rect[i]);
1018 qemu_free(vs->lossy_rect);
1019 qemu_free(vs);
1022 int vnc_client_io_error(VncState *vs, int ret, int last_errno)
1024 if (ret == 0 || ret == -1) {
1025 if (ret == -1) {
1026 switch (last_errno) {
1027 case EINTR:
1028 case EAGAIN:
1029 #ifdef _WIN32
1030 case WSAEWOULDBLOCK:
1031 #endif
1032 return 0;
1033 default:
1034 break;
1038 VNC_DEBUG("Closing down client sock: ret %d, errno %d\n",
1039 ret, ret < 0 ? last_errno : 0);
1040 vnc_disconnect_start(vs);
1042 return 0;
1044 return ret;
1048 void vnc_client_error(VncState *vs)
1050 VNC_DEBUG("Closing down client sock: protocol error\n");
1051 vnc_disconnect_start(vs);
1056 * Called to write a chunk of data to the client socket. The data may
1057 * be the raw data, or may have already been encoded by SASL.
1058 * The data will be written either straight onto the socket, or
1059 * written via the GNUTLS wrappers, if TLS/SSL encryption is enabled
1061 * NB, it is theoretically possible to have 2 layers of encryption,
1062 * both SASL, and this TLS layer. It is highly unlikely in practice
1063 * though, since SASL encryption will typically be a no-op if TLS
1064 * is active
1066 * Returns the number of bytes written, which may be less than
1067 * the requested 'datalen' if the socket would block. Returns
1068 * -1 on error, and disconnects the client socket.
1070 long vnc_client_write_buf(VncState *vs, const uint8_t *data, size_t datalen)
1072 long ret;
1073 #ifdef CONFIG_VNC_TLS
1074 if (vs->tls.session) {
1075 ret = gnutls_write(vs->tls.session, data, datalen);
1076 if (ret < 0) {
1077 if (ret == GNUTLS_E_AGAIN)
1078 errno = EAGAIN;
1079 else
1080 errno = EIO;
1081 ret = -1;
1083 } else
1084 #endif /* CONFIG_VNC_TLS */
1085 ret = send(vs->csock, (const void *)data, datalen, 0);
1086 VNC_DEBUG("Wrote wire %p %zd -> %ld\n", data, datalen, ret);
1087 return vnc_client_io_error(vs, ret, socket_error());
1092 * Called to write buffered data to the client socket, when not
1093 * using any SASL SSF encryption layers. Will write as much data
1094 * as possible without blocking. If all buffered data is written,
1095 * will switch the FD poll() handler back to read monitoring.
1097 * Returns the number of bytes written, which may be less than
1098 * the buffered output data if the socket would block. Returns
1099 * -1 on error, and disconnects the client socket.
1101 static long vnc_client_write_plain(VncState *vs)
1103 long ret;
1105 #ifdef CONFIG_VNC_SASL
1106 VNC_DEBUG("Write Plain: Pending output %p size %zd offset %zd. Wait SSF %d\n",
1107 vs->output.buffer, vs->output.capacity, vs->output.offset,
1108 vs->sasl.waitWriteSSF);
1110 if (vs->sasl.conn &&
1111 vs->sasl.runSSF &&
1112 vs->sasl.waitWriteSSF) {
1113 ret = vnc_client_write_buf(vs, vs->output.buffer, vs->sasl.waitWriteSSF);
1114 if (ret)
1115 vs->sasl.waitWriteSSF -= ret;
1116 } else
1117 #endif /* CONFIG_VNC_SASL */
1118 ret = vnc_client_write_buf(vs, vs->output.buffer, vs->output.offset);
1119 if (!ret)
1120 return 0;
1122 memmove(vs->output.buffer, vs->output.buffer + ret, (vs->output.offset - ret));
1123 vs->output.offset -= ret;
1125 if (vs->output.offset == 0) {
1126 qemu_set_fd_handler2(vs->csock, NULL, vnc_client_read, NULL, vs);
1129 return ret;
1134 * First function called whenever there is data to be written to
1135 * the client socket. Will delegate actual work according to whether
1136 * SASL SSF layers are enabled (thus requiring encryption calls)
1138 static void vnc_client_write_locked(void *opaque)
1140 VncState *vs = opaque;
1142 #ifdef CONFIG_VNC_SASL
1143 if (vs->sasl.conn &&
1144 vs->sasl.runSSF &&
1145 !vs->sasl.waitWriteSSF) {
1146 vnc_client_write_sasl(vs);
1147 } else
1148 #endif /* CONFIG_VNC_SASL */
1149 vnc_client_write_plain(vs);
1152 void vnc_client_write(void *opaque)
1154 VncState *vs = opaque;
1156 vnc_lock_output(vs);
1157 if (vs->output.offset) {
1158 vnc_client_write_locked(opaque);
1159 } else if (vs->csock != -1) {
1160 qemu_set_fd_handler2(vs->csock, NULL, vnc_client_read, NULL, vs);
1162 vnc_unlock_output(vs);
1165 void vnc_read_when(VncState *vs, VncReadEvent *func, size_t expecting)
1167 vs->read_handler = func;
1168 vs->read_handler_expect = expecting;
1173 * Called to read a chunk of data from the client socket. The data may
1174 * be the raw data, or may need to be further decoded by SASL.
1175 * The data will be read either straight from to the socket, or
1176 * read via the GNUTLS wrappers, if TLS/SSL encryption is enabled
1178 * NB, it is theoretically possible to have 2 layers of encryption,
1179 * both SASL, and this TLS layer. It is highly unlikely in practice
1180 * though, since SASL encryption will typically be a no-op if TLS
1181 * is active
1183 * Returns the number of bytes read, which may be less than
1184 * the requested 'datalen' if the socket would block. Returns
1185 * -1 on error, and disconnects the client socket.
1187 long vnc_client_read_buf(VncState *vs, uint8_t *data, size_t datalen)
1189 long ret;
1190 #ifdef CONFIG_VNC_TLS
1191 if (vs->tls.session) {
1192 ret = gnutls_read(vs->tls.session, data, datalen);
1193 if (ret < 0) {
1194 if (ret == GNUTLS_E_AGAIN)
1195 errno = EAGAIN;
1196 else
1197 errno = EIO;
1198 ret = -1;
1200 } else
1201 #endif /* CONFIG_VNC_TLS */
1202 ret = recv(vs->csock, (void *)data, datalen, 0);
1203 VNC_DEBUG("Read wire %p %zd -> %ld\n", data, datalen, ret);
1204 return vnc_client_io_error(vs, ret, socket_error());
1209 * Called to read data from the client socket to the input buffer,
1210 * when not using any SASL SSF encryption layers. Will read as much
1211 * data as possible without blocking.
1213 * Returns the number of bytes read. Returns -1 on error, and
1214 * disconnects the client socket.
1216 static long vnc_client_read_plain(VncState *vs)
1218 int ret;
1219 VNC_DEBUG("Read plain %p size %zd offset %zd\n",
1220 vs->input.buffer, vs->input.capacity, vs->input.offset);
1221 buffer_reserve(&vs->input, 4096);
1222 ret = vnc_client_read_buf(vs, buffer_end(&vs->input), 4096);
1223 if (!ret)
1224 return 0;
1225 vs->input.offset += ret;
1226 return ret;
1231 * First function called whenever there is more data to be read from
1232 * the client socket. Will delegate actual work according to whether
1233 * SASL SSF layers are enabled (thus requiring decryption calls)
1235 void vnc_client_read(void *opaque)
1237 VncState *vs = opaque;
1238 long ret;
1240 #ifdef CONFIG_VNC_SASL
1241 if (vs->sasl.conn && vs->sasl.runSSF)
1242 ret = vnc_client_read_sasl(vs);
1243 else
1244 #endif /* CONFIG_VNC_SASL */
1245 ret = vnc_client_read_plain(vs);
1246 if (!ret) {
1247 if (vs->csock == -1)
1248 vnc_disconnect_finish(vs);
1249 return;
1252 while (vs->read_handler && vs->input.offset >= vs->read_handler_expect) {
1253 size_t len = vs->read_handler_expect;
1254 int ret;
1256 ret = vs->read_handler(vs, vs->input.buffer, len);
1257 if (vs->csock == -1) {
1258 vnc_disconnect_finish(vs);
1259 return;
1262 if (!ret) {
1263 memmove(vs->input.buffer, vs->input.buffer + len, (vs->input.offset - len));
1264 vs->input.offset -= len;
1265 } else {
1266 vs->read_handler_expect = ret;
1271 void vnc_write(VncState *vs, const void *data, size_t len)
1273 buffer_reserve(&vs->output, len);
1275 if (vs->csock != -1 && buffer_empty(&vs->output)) {
1276 qemu_set_fd_handler2(vs->csock, NULL, vnc_client_read, vnc_client_write, vs);
1279 buffer_append(&vs->output, data, len);
1282 void vnc_write_s32(VncState *vs, int32_t value)
1284 vnc_write_u32(vs, *(uint32_t *)&value);
1287 void vnc_write_u32(VncState *vs, uint32_t value)
1289 uint8_t buf[4];
1291 buf[0] = (value >> 24) & 0xFF;
1292 buf[1] = (value >> 16) & 0xFF;
1293 buf[2] = (value >> 8) & 0xFF;
1294 buf[3] = value & 0xFF;
1296 vnc_write(vs, buf, 4);
1299 void vnc_write_u16(VncState *vs, uint16_t value)
1301 uint8_t buf[2];
1303 buf[0] = (value >> 8) & 0xFF;
1304 buf[1] = value & 0xFF;
1306 vnc_write(vs, buf, 2);
1309 void vnc_write_u8(VncState *vs, uint8_t value)
1311 vnc_write(vs, (char *)&value, 1);
1314 void vnc_flush(VncState *vs)
1316 vnc_lock_output(vs);
1317 if (vs->csock != -1 && vs->output.offset) {
1318 vnc_client_write_locked(vs);
1320 vnc_unlock_output(vs);
1323 uint8_t read_u8(uint8_t *data, size_t offset)
1325 return data[offset];
1328 uint16_t read_u16(uint8_t *data, size_t offset)
1330 return ((data[offset] & 0xFF) << 8) | (data[offset + 1] & 0xFF);
1333 int32_t read_s32(uint8_t *data, size_t offset)
1335 return (int32_t)((data[offset] << 24) | (data[offset + 1] << 16) |
1336 (data[offset + 2] << 8) | data[offset + 3]);
1339 uint32_t read_u32(uint8_t *data, size_t offset)
1341 return ((data[offset] << 24) | (data[offset + 1] << 16) |
1342 (data[offset + 2] << 8) | data[offset + 3]);
1345 static void client_cut_text(VncState *vs, size_t len, uint8_t *text)
1349 static void check_pointer_type_change(Notifier *notifier)
1351 VncState *vs = container_of(notifier, VncState, mouse_mode_notifier);
1352 int absolute = kbd_mouse_is_absolute();
1354 if (vnc_has_feature(vs, VNC_FEATURE_POINTER_TYPE_CHANGE) && vs->absolute != absolute) {
1355 vnc_lock_output(vs);
1356 vnc_write_u8(vs, VNC_MSG_SERVER_FRAMEBUFFER_UPDATE);
1357 vnc_write_u8(vs, 0);
1358 vnc_write_u16(vs, 1);
1359 vnc_framebuffer_update(vs, absolute, 0,
1360 ds_get_width(vs->ds), ds_get_height(vs->ds),
1361 VNC_ENCODING_POINTER_TYPE_CHANGE);
1362 vnc_unlock_output(vs);
1363 vnc_flush(vs);
1365 vs->absolute = absolute;
1368 static void pointer_event(VncState *vs, int button_mask, int x, int y)
1370 int buttons = 0;
1371 int dz = 0;
1373 if (button_mask & 0x01)
1374 buttons |= MOUSE_EVENT_LBUTTON;
1375 if (button_mask & 0x02)
1376 buttons |= MOUSE_EVENT_MBUTTON;
1377 if (button_mask & 0x04)
1378 buttons |= MOUSE_EVENT_RBUTTON;
1379 if (button_mask & 0x08)
1380 dz = -1;
1381 if (button_mask & 0x10)
1382 dz = 1;
1384 if (vs->absolute) {
1385 kbd_mouse_event(ds_get_width(vs->ds) > 1 ?
1386 x * 0x7FFF / (ds_get_width(vs->ds) - 1) : 0x4000,
1387 ds_get_height(vs->ds) > 1 ?
1388 y * 0x7FFF / (ds_get_height(vs->ds) - 1) : 0x4000,
1389 dz, buttons);
1390 } else if (vnc_has_feature(vs, VNC_FEATURE_POINTER_TYPE_CHANGE)) {
1391 x -= 0x7FFF;
1392 y -= 0x7FFF;
1394 kbd_mouse_event(x, y, dz, buttons);
1395 } else {
1396 if (vs->last_x != -1)
1397 kbd_mouse_event(x - vs->last_x,
1398 y - vs->last_y,
1399 dz, buttons);
1400 vs->last_x = x;
1401 vs->last_y = y;
1405 static void reset_keys(VncState *vs)
1407 int i;
1408 for(i = 0; i < 256; i++) {
1409 if (vs->modifiers_state[i]) {
1410 if (i & SCANCODE_GREY)
1411 kbd_put_keycode(SCANCODE_EMUL0);
1412 kbd_put_keycode(i | SCANCODE_UP);
1413 vs->modifiers_state[i] = 0;
1418 static void press_key(VncState *vs, int keysym)
1420 int keycode = keysym2scancode(vs->vd->kbd_layout, keysym) & SCANCODE_KEYMASK;
1421 if (keycode & SCANCODE_GREY)
1422 kbd_put_keycode(SCANCODE_EMUL0);
1423 kbd_put_keycode(keycode & SCANCODE_KEYCODEMASK);
1424 if (keycode & SCANCODE_GREY)
1425 kbd_put_keycode(SCANCODE_EMUL0);
1426 kbd_put_keycode(keycode | SCANCODE_UP);
1429 static void kbd_leds(void *opaque, int ledstate)
1431 VncState *vs = opaque;
1432 int caps, num;
1434 caps = ledstate & QEMU_CAPS_LOCK_LED ? 1 : 0;
1435 num = ledstate & QEMU_NUM_LOCK_LED ? 1 : 0;
1437 if (vs->modifiers_state[0x3a] != caps) {
1438 vs->modifiers_state[0x3a] = caps;
1440 if (vs->modifiers_state[0x45] != num) {
1441 vs->modifiers_state[0x45] = num;
1445 static void do_key_event(VncState *vs, int down, int keycode, int sym)
1447 /* QEMU console switch */
1448 switch(keycode) {
1449 case 0x2a: /* Left Shift */
1450 case 0x36: /* Right Shift */
1451 case 0x1d: /* Left CTRL */
1452 case 0x9d: /* Right CTRL */
1453 case 0x38: /* Left ALT */
1454 case 0xb8: /* Right ALT */
1455 if (down)
1456 vs->modifiers_state[keycode] = 1;
1457 else
1458 vs->modifiers_state[keycode] = 0;
1459 break;
1460 case 0x02 ... 0x0a: /* '1' to '9' keys */
1461 if (down && vs->modifiers_state[0x1d] && vs->modifiers_state[0x38]) {
1462 /* Reset the modifiers sent to the current console */
1463 reset_keys(vs);
1464 console_select(keycode - 0x02);
1465 return;
1467 break;
1468 case 0x3a: /* CapsLock */
1469 case 0x45: /* NumLock */
1470 if (down)
1471 vs->modifiers_state[keycode] ^= 1;
1472 break;
1475 if (down && vs->vd->lock_key_sync &&
1476 keycode_is_keypad(vs->vd->kbd_layout, keycode)) {
1477 /* If the numlock state needs to change then simulate an additional
1478 keypress before sending this one. This will happen if the user
1479 toggles numlock away from the VNC window.
1481 if (keysym_is_numlock(vs->vd->kbd_layout, sym & 0xFFFF)) {
1482 if (!vs->modifiers_state[0x45]) {
1483 vs->modifiers_state[0x45] = 1;
1484 press_key(vs, 0xff7f);
1486 } else {
1487 if (vs->modifiers_state[0x45]) {
1488 vs->modifiers_state[0x45] = 0;
1489 press_key(vs, 0xff7f);
1494 if (down && vs->vd->lock_key_sync &&
1495 ((sym >= 'A' && sym <= 'Z') || (sym >= 'a' && sym <= 'z'))) {
1496 /* If the capslock state needs to change then simulate an additional
1497 keypress before sending this one. This will happen if the user
1498 toggles capslock away from the VNC window.
1500 int uppercase = !!(sym >= 'A' && sym <= 'Z');
1501 int shift = !!(vs->modifiers_state[0x2a] | vs->modifiers_state[0x36]);
1502 int capslock = !!(vs->modifiers_state[0x3a]);
1503 if (capslock) {
1504 if (uppercase == shift) {
1505 vs->modifiers_state[0x3a] = 0;
1506 press_key(vs, 0xffe5);
1508 } else {
1509 if (uppercase != shift) {
1510 vs->modifiers_state[0x3a] = 1;
1511 press_key(vs, 0xffe5);
1516 if (is_graphic_console()) {
1517 if (keycode & SCANCODE_GREY)
1518 kbd_put_keycode(SCANCODE_EMUL0);
1519 if (down)
1520 kbd_put_keycode(keycode & SCANCODE_KEYCODEMASK);
1521 else
1522 kbd_put_keycode(keycode | SCANCODE_UP);
1523 } else {
1524 /* QEMU console emulation */
1525 if (down) {
1526 int numlock = vs->modifiers_state[0x45];
1527 switch (keycode) {
1528 case 0x2a: /* Left Shift */
1529 case 0x36: /* Right Shift */
1530 case 0x1d: /* Left CTRL */
1531 case 0x9d: /* Right CTRL */
1532 case 0x38: /* Left ALT */
1533 case 0xb8: /* Right ALT */
1534 break;
1535 case 0xc8:
1536 kbd_put_keysym(QEMU_KEY_UP);
1537 break;
1538 case 0xd0:
1539 kbd_put_keysym(QEMU_KEY_DOWN);
1540 break;
1541 case 0xcb:
1542 kbd_put_keysym(QEMU_KEY_LEFT);
1543 break;
1544 case 0xcd:
1545 kbd_put_keysym(QEMU_KEY_RIGHT);
1546 break;
1547 case 0xd3:
1548 kbd_put_keysym(QEMU_KEY_DELETE);
1549 break;
1550 case 0xc7:
1551 kbd_put_keysym(QEMU_KEY_HOME);
1552 break;
1553 case 0xcf:
1554 kbd_put_keysym(QEMU_KEY_END);
1555 break;
1556 case 0xc9:
1557 kbd_put_keysym(QEMU_KEY_PAGEUP);
1558 break;
1559 case 0xd1:
1560 kbd_put_keysym(QEMU_KEY_PAGEDOWN);
1561 break;
1563 case 0x47:
1564 kbd_put_keysym(numlock ? '7' : QEMU_KEY_HOME);
1565 break;
1566 case 0x48:
1567 kbd_put_keysym(numlock ? '8' : QEMU_KEY_UP);
1568 break;
1569 case 0x49:
1570 kbd_put_keysym(numlock ? '9' : QEMU_KEY_PAGEUP);
1571 break;
1572 case 0x4b:
1573 kbd_put_keysym(numlock ? '4' : QEMU_KEY_LEFT);
1574 break;
1575 case 0x4c:
1576 kbd_put_keysym('5');
1577 break;
1578 case 0x4d:
1579 kbd_put_keysym(numlock ? '6' : QEMU_KEY_RIGHT);
1580 break;
1581 case 0x4f:
1582 kbd_put_keysym(numlock ? '1' : QEMU_KEY_END);
1583 break;
1584 case 0x50:
1585 kbd_put_keysym(numlock ? '2' : QEMU_KEY_DOWN);
1586 break;
1587 case 0x51:
1588 kbd_put_keysym(numlock ? '3' : QEMU_KEY_PAGEDOWN);
1589 break;
1590 case 0x52:
1591 kbd_put_keysym('0');
1592 break;
1593 case 0x53:
1594 kbd_put_keysym(numlock ? '.' : QEMU_KEY_DELETE);
1595 break;
1597 case 0xb5:
1598 kbd_put_keysym('/');
1599 break;
1600 case 0x37:
1601 kbd_put_keysym('*');
1602 break;
1603 case 0x4a:
1604 kbd_put_keysym('-');
1605 break;
1606 case 0x4e:
1607 kbd_put_keysym('+');
1608 break;
1609 case 0x9c:
1610 kbd_put_keysym('\n');
1611 break;
1613 default:
1614 kbd_put_keysym(sym);
1615 break;
1621 static void key_event(VncState *vs, int down, uint32_t sym)
1623 int keycode;
1624 int lsym = sym;
1626 if (lsym >= 'A' && lsym <= 'Z' && is_graphic_console()) {
1627 lsym = lsym - 'A' + 'a';
1630 keycode = keysym2scancode(vs->vd->kbd_layout, lsym & 0xFFFF) & SCANCODE_KEYMASK;
1631 do_key_event(vs, down, keycode, sym);
1634 static void ext_key_event(VncState *vs, int down,
1635 uint32_t sym, uint16_t keycode)
1637 /* if the user specifies a keyboard layout, always use it */
1638 if (keyboard_layout)
1639 key_event(vs, down, sym);
1640 else
1641 do_key_event(vs, down, keycode, sym);
1644 static void framebuffer_update_request(VncState *vs, int incremental,
1645 int x_position, int y_position,
1646 int w, int h)
1648 if (y_position > ds_get_height(vs->ds))
1649 y_position = ds_get_height(vs->ds);
1650 if (y_position + h >= ds_get_height(vs->ds))
1651 h = ds_get_height(vs->ds) - y_position;
1653 int i;
1654 vs->need_update = 1;
1655 if (!incremental) {
1656 vs->force_update = 1;
1657 for (i = 0; i < h; i++) {
1658 bitmap_set(vs->dirty[y_position + i], x_position / 16, w / 16);
1663 static void send_ext_key_event_ack(VncState *vs)
1665 vnc_lock_output(vs);
1666 vnc_write_u8(vs, VNC_MSG_SERVER_FRAMEBUFFER_UPDATE);
1667 vnc_write_u8(vs, 0);
1668 vnc_write_u16(vs, 1);
1669 vnc_framebuffer_update(vs, 0, 0, ds_get_width(vs->ds), ds_get_height(vs->ds),
1670 VNC_ENCODING_EXT_KEY_EVENT);
1671 vnc_unlock_output(vs);
1672 vnc_flush(vs);
1675 static void send_ext_audio_ack(VncState *vs)
1677 vnc_lock_output(vs);
1678 vnc_write_u8(vs, VNC_MSG_SERVER_FRAMEBUFFER_UPDATE);
1679 vnc_write_u8(vs, 0);
1680 vnc_write_u16(vs, 1);
1681 vnc_framebuffer_update(vs, 0, 0, ds_get_width(vs->ds), ds_get_height(vs->ds),
1682 VNC_ENCODING_AUDIO);
1683 vnc_unlock_output(vs);
1684 vnc_flush(vs);
1687 static void set_encodings(VncState *vs, int32_t *encodings, size_t n_encodings)
1689 int i;
1690 unsigned int enc = 0;
1692 vs->features = 0;
1693 vs->vnc_encoding = 0;
1694 vs->tight.compression = 9;
1695 vs->tight.quality = -1; /* Lossless by default */
1696 vs->absolute = -1;
1699 * Start from the end because the encodings are sent in order of preference.
1700 * This way the prefered encoding (first encoding defined in the array)
1701 * will be set at the end of the loop.
1703 for (i = n_encodings - 1; i >= 0; i--) {
1704 enc = encodings[i];
1705 switch (enc) {
1706 case VNC_ENCODING_RAW:
1707 vs->vnc_encoding = enc;
1708 break;
1709 case VNC_ENCODING_COPYRECT:
1710 vs->features |= VNC_FEATURE_COPYRECT_MASK;
1711 break;
1712 case VNC_ENCODING_HEXTILE:
1713 vs->features |= VNC_FEATURE_HEXTILE_MASK;
1714 vs->vnc_encoding = enc;
1715 break;
1716 case VNC_ENCODING_TIGHT:
1717 vs->features |= VNC_FEATURE_TIGHT_MASK;
1718 vs->vnc_encoding = enc;
1719 break;
1720 case VNC_ENCODING_TIGHT_PNG:
1721 vs->features |= VNC_FEATURE_TIGHT_PNG_MASK;
1722 vs->vnc_encoding = enc;
1723 break;
1724 case VNC_ENCODING_ZLIB:
1725 vs->features |= VNC_FEATURE_ZLIB_MASK;
1726 vs->vnc_encoding = enc;
1727 break;
1728 case VNC_ENCODING_ZRLE:
1729 vs->features |= VNC_FEATURE_ZRLE_MASK;
1730 vs->vnc_encoding = enc;
1731 break;
1732 case VNC_ENCODING_ZYWRLE:
1733 vs->features |= VNC_FEATURE_ZYWRLE_MASK;
1734 vs->vnc_encoding = enc;
1735 break;
1736 case VNC_ENCODING_DESKTOPRESIZE:
1737 vs->features |= VNC_FEATURE_RESIZE_MASK;
1738 break;
1739 case VNC_ENCODING_POINTER_TYPE_CHANGE:
1740 vs->features |= VNC_FEATURE_POINTER_TYPE_CHANGE_MASK;
1741 break;
1742 case VNC_ENCODING_RICH_CURSOR:
1743 vs->features |= VNC_FEATURE_RICH_CURSOR_MASK;
1744 break;
1745 case VNC_ENCODING_EXT_KEY_EVENT:
1746 send_ext_key_event_ack(vs);
1747 break;
1748 case VNC_ENCODING_AUDIO:
1749 send_ext_audio_ack(vs);
1750 break;
1751 case VNC_ENCODING_WMVi:
1752 vs->features |= VNC_FEATURE_WMVI_MASK;
1753 break;
1754 case VNC_ENCODING_COMPRESSLEVEL0 ... VNC_ENCODING_COMPRESSLEVEL0 + 9:
1755 vs->tight.compression = (enc & 0x0F);
1756 break;
1757 case VNC_ENCODING_QUALITYLEVEL0 ... VNC_ENCODING_QUALITYLEVEL0 + 9:
1758 if (vs->vd->lossy) {
1759 vs->tight.quality = (enc & 0x0F);
1761 break;
1762 default:
1763 VNC_DEBUG("Unknown encoding: %d (0x%.8x): %d\n", i, enc, enc);
1764 break;
1767 vnc_desktop_resize(vs);
1768 check_pointer_type_change(&vs->mouse_mode_notifier);
1771 static void set_pixel_conversion(VncState *vs)
1773 if ((vs->clientds.flags & QEMU_BIG_ENDIAN_FLAG) ==
1774 (vs->ds->surface->flags & QEMU_BIG_ENDIAN_FLAG) &&
1775 !memcmp(&(vs->clientds.pf), &(vs->ds->surface->pf), sizeof(PixelFormat))) {
1776 vs->write_pixels = vnc_write_pixels_copy;
1777 vnc_hextile_set_pixel_conversion(vs, 0);
1778 } else {
1779 vs->write_pixels = vnc_write_pixels_generic;
1780 vnc_hextile_set_pixel_conversion(vs, 1);
1784 static void set_pixel_format(VncState *vs,
1785 int bits_per_pixel, int depth,
1786 int big_endian_flag, int true_color_flag,
1787 int red_max, int green_max, int blue_max,
1788 int red_shift, int green_shift, int blue_shift)
1790 if (!true_color_flag) {
1791 vnc_client_error(vs);
1792 return;
1795 vs->clientds = *(vs->vd->guest.ds);
1796 vs->clientds.pf.rmax = red_max;
1797 vs->clientds.pf.rbits = hweight_long(red_max);
1798 vs->clientds.pf.rshift = red_shift;
1799 vs->clientds.pf.rmask = red_max << red_shift;
1800 vs->clientds.pf.gmax = green_max;
1801 vs->clientds.pf.gbits = hweight_long(green_max);
1802 vs->clientds.pf.gshift = green_shift;
1803 vs->clientds.pf.gmask = green_max << green_shift;
1804 vs->clientds.pf.bmax = blue_max;
1805 vs->clientds.pf.bbits = hweight_long(blue_max);
1806 vs->clientds.pf.bshift = blue_shift;
1807 vs->clientds.pf.bmask = blue_max << blue_shift;
1808 vs->clientds.pf.bits_per_pixel = bits_per_pixel;
1809 vs->clientds.pf.bytes_per_pixel = bits_per_pixel / 8;
1810 vs->clientds.pf.depth = bits_per_pixel == 32 ? 24 : bits_per_pixel;
1811 vs->clientds.flags = big_endian_flag ? QEMU_BIG_ENDIAN_FLAG : 0x00;
1813 set_pixel_conversion(vs);
1815 vga_hw_invalidate();
1816 vga_hw_update();
1819 static void pixel_format_message (VncState *vs) {
1820 char pad[3] = { 0, 0, 0 };
1822 vnc_write_u8(vs, vs->ds->surface->pf.bits_per_pixel); /* bits-per-pixel */
1823 vnc_write_u8(vs, vs->ds->surface->pf.depth); /* depth */
1825 #ifdef HOST_WORDS_BIGENDIAN
1826 vnc_write_u8(vs, 1); /* big-endian-flag */
1827 #else
1828 vnc_write_u8(vs, 0); /* big-endian-flag */
1829 #endif
1830 vnc_write_u8(vs, 1); /* true-color-flag */
1831 vnc_write_u16(vs, vs->ds->surface->pf.rmax); /* red-max */
1832 vnc_write_u16(vs, vs->ds->surface->pf.gmax); /* green-max */
1833 vnc_write_u16(vs, vs->ds->surface->pf.bmax); /* blue-max */
1834 vnc_write_u8(vs, vs->ds->surface->pf.rshift); /* red-shift */
1835 vnc_write_u8(vs, vs->ds->surface->pf.gshift); /* green-shift */
1836 vnc_write_u8(vs, vs->ds->surface->pf.bshift); /* blue-shift */
1838 vnc_hextile_set_pixel_conversion(vs, 0);
1840 vs->clientds = *(vs->ds->surface);
1841 vs->clientds.flags &= ~QEMU_ALLOCATED_FLAG;
1842 vs->write_pixels = vnc_write_pixels_copy;
1844 vnc_write(vs, pad, 3); /* padding */
1847 static void vnc_dpy_setdata(DisplayState *ds)
1849 /* We don't have to do anything */
1852 static void vnc_colordepth(VncState *vs)
1854 if (vnc_has_feature(vs, VNC_FEATURE_WMVI)) {
1855 /* Sending a WMVi message to notify the client*/
1856 vnc_lock_output(vs);
1857 vnc_write_u8(vs, VNC_MSG_SERVER_FRAMEBUFFER_UPDATE);
1858 vnc_write_u8(vs, 0);
1859 vnc_write_u16(vs, 1); /* number of rects */
1860 vnc_framebuffer_update(vs, 0, 0, ds_get_width(vs->ds),
1861 ds_get_height(vs->ds), VNC_ENCODING_WMVi);
1862 pixel_format_message(vs);
1863 vnc_unlock_output(vs);
1864 vnc_flush(vs);
1865 } else {
1866 set_pixel_conversion(vs);
1870 static int protocol_client_msg(VncState *vs, uint8_t *data, size_t len)
1872 int i;
1873 uint16_t limit;
1874 VncDisplay *vd = vs->vd;
1876 if (data[0] > 3) {
1877 vd->timer_interval = VNC_REFRESH_INTERVAL_BASE;
1878 if (!qemu_timer_expired(vd->timer, qemu_get_clock_ms(rt_clock) + vd->timer_interval))
1879 qemu_mod_timer(vd->timer, qemu_get_clock_ms(rt_clock) + vd->timer_interval);
1882 switch (data[0]) {
1883 case VNC_MSG_CLIENT_SET_PIXEL_FORMAT:
1884 if (len == 1)
1885 return 20;
1887 set_pixel_format(vs, read_u8(data, 4), read_u8(data, 5),
1888 read_u8(data, 6), read_u8(data, 7),
1889 read_u16(data, 8), read_u16(data, 10),
1890 read_u16(data, 12), read_u8(data, 14),
1891 read_u8(data, 15), read_u8(data, 16));
1892 break;
1893 case VNC_MSG_CLIENT_SET_ENCODINGS:
1894 if (len == 1)
1895 return 4;
1897 if (len == 4) {
1898 limit = read_u16(data, 2);
1899 if (limit > 0)
1900 return 4 + (limit * 4);
1901 } else
1902 limit = read_u16(data, 2);
1904 for (i = 0; i < limit; i++) {
1905 int32_t val = read_s32(data, 4 + (i * 4));
1906 memcpy(data + 4 + (i * 4), &val, sizeof(val));
1909 set_encodings(vs, (int32_t *)(data + 4), limit);
1910 break;
1911 case VNC_MSG_CLIENT_FRAMEBUFFER_UPDATE_REQUEST:
1912 if (len == 1)
1913 return 10;
1915 framebuffer_update_request(vs,
1916 read_u8(data, 1), read_u16(data, 2), read_u16(data, 4),
1917 read_u16(data, 6), read_u16(data, 8));
1918 break;
1919 case VNC_MSG_CLIENT_KEY_EVENT:
1920 if (len == 1)
1921 return 8;
1923 key_event(vs, read_u8(data, 1), read_u32(data, 4));
1924 break;
1925 case VNC_MSG_CLIENT_POINTER_EVENT:
1926 if (len == 1)
1927 return 6;
1929 pointer_event(vs, read_u8(data, 1), read_u16(data, 2), read_u16(data, 4));
1930 break;
1931 case VNC_MSG_CLIENT_CUT_TEXT:
1932 if (len == 1)
1933 return 8;
1935 if (len == 8) {
1936 uint32_t dlen = read_u32(data, 4);
1937 if (dlen > 0)
1938 return 8 + dlen;
1941 client_cut_text(vs, read_u32(data, 4), data + 8);
1942 break;
1943 case VNC_MSG_CLIENT_QEMU:
1944 if (len == 1)
1945 return 2;
1947 switch (read_u8(data, 1)) {
1948 case VNC_MSG_CLIENT_QEMU_EXT_KEY_EVENT:
1949 if (len == 2)
1950 return 12;
1952 ext_key_event(vs, read_u16(data, 2),
1953 read_u32(data, 4), read_u32(data, 8));
1954 break;
1955 case VNC_MSG_CLIENT_QEMU_AUDIO:
1956 if (len == 2)
1957 return 4;
1959 switch (read_u16 (data, 2)) {
1960 case VNC_MSG_CLIENT_QEMU_AUDIO_ENABLE:
1961 audio_add(vs);
1962 break;
1963 case VNC_MSG_CLIENT_QEMU_AUDIO_DISABLE:
1964 audio_del(vs);
1965 break;
1966 case VNC_MSG_CLIENT_QEMU_AUDIO_SET_FORMAT:
1967 if (len == 4)
1968 return 10;
1969 switch (read_u8(data, 4)) {
1970 case 0: vs->as.fmt = AUD_FMT_U8; break;
1971 case 1: vs->as.fmt = AUD_FMT_S8; break;
1972 case 2: vs->as.fmt = AUD_FMT_U16; break;
1973 case 3: vs->as.fmt = AUD_FMT_S16; break;
1974 case 4: vs->as.fmt = AUD_FMT_U32; break;
1975 case 5: vs->as.fmt = AUD_FMT_S32; break;
1976 default:
1977 printf("Invalid audio format %d\n", read_u8(data, 4));
1978 vnc_client_error(vs);
1979 break;
1981 vs->as.nchannels = read_u8(data, 5);
1982 if (vs->as.nchannels != 1 && vs->as.nchannels != 2) {
1983 printf("Invalid audio channel coount %d\n",
1984 read_u8(data, 5));
1985 vnc_client_error(vs);
1986 break;
1988 vs->as.freq = read_u32(data, 6);
1989 break;
1990 default:
1991 printf ("Invalid audio message %d\n", read_u8(data, 4));
1992 vnc_client_error(vs);
1993 break;
1995 break;
1997 default:
1998 printf("Msg: %d\n", read_u16(data, 0));
1999 vnc_client_error(vs);
2000 break;
2002 break;
2003 default:
2004 printf("Msg: %d\n", data[0]);
2005 vnc_client_error(vs);
2006 break;
2009 vnc_read_when(vs, protocol_client_msg, 1);
2010 return 0;
2013 static int protocol_client_init(VncState *vs, uint8_t *data, size_t len)
2015 char buf[1024];
2016 int size;
2018 vs->client_width = ds_get_width(vs->ds);
2019 vs->client_height = ds_get_height(vs->ds);
2020 vnc_write_u16(vs, vs->client_width);
2021 vnc_write_u16(vs, vs->client_height);
2023 pixel_format_message(vs);
2025 if (qemu_name)
2026 size = snprintf(buf, sizeof(buf), "QEMU (%s)", qemu_name);
2027 else
2028 size = snprintf(buf, sizeof(buf), "QEMU");
2030 vnc_write_u32(vs, size);
2031 vnc_write(vs, buf, size);
2032 vnc_flush(vs);
2034 vnc_client_cache_auth(vs);
2035 vnc_qmp_event(vs, QEVENT_VNC_INITIALIZED);
2037 vnc_read_when(vs, protocol_client_msg, 1);
2039 return 0;
2042 void start_client_init(VncState *vs)
2044 vnc_read_when(vs, protocol_client_init, 1);
2047 static void make_challenge(VncState *vs)
2049 int i;
2051 srand(time(NULL)+getpid()+getpid()*987654+rand());
2053 for (i = 0 ; i < sizeof(vs->challenge) ; i++)
2054 vs->challenge[i] = (int) (256.0*rand()/(RAND_MAX+1.0));
2057 static int protocol_client_auth_vnc(VncState *vs, uint8_t *data, size_t len)
2059 unsigned char response[VNC_AUTH_CHALLENGE_SIZE];
2060 int i, j, pwlen;
2061 unsigned char key[8];
2062 time_t now = time(NULL);
2064 if (!vs->vd->password) {
2065 VNC_DEBUG("No password configured on server");
2066 goto reject;
2068 if (vs->vd->expires < now) {
2069 VNC_DEBUG("Password is expired");
2070 goto reject;
2073 memcpy(response, vs->challenge, VNC_AUTH_CHALLENGE_SIZE);
2075 /* Calculate the expected challenge response */
2076 pwlen = strlen(vs->vd->password);
2077 for (i=0; i<sizeof(key); i++)
2078 key[i] = i<pwlen ? vs->vd->password[i] : 0;
2079 deskey(key, EN0);
2080 for (j = 0; j < VNC_AUTH_CHALLENGE_SIZE; j += 8)
2081 des(response+j, response+j);
2083 /* Compare expected vs actual challenge response */
2084 if (memcmp(response, data, VNC_AUTH_CHALLENGE_SIZE) != 0) {
2085 VNC_DEBUG("Client challenge reponse did not match\n");
2086 goto reject;
2087 } else {
2088 VNC_DEBUG("Accepting VNC challenge response\n");
2089 vnc_write_u32(vs, 0); /* Accept auth */
2090 vnc_flush(vs);
2092 start_client_init(vs);
2094 return 0;
2096 reject:
2097 vnc_write_u32(vs, 1); /* Reject auth */
2098 if (vs->minor >= 8) {
2099 static const char err[] = "Authentication failed";
2100 vnc_write_u32(vs, sizeof(err));
2101 vnc_write(vs, err, sizeof(err));
2103 vnc_flush(vs);
2104 vnc_client_error(vs);
2105 return 0;
2108 void start_auth_vnc(VncState *vs)
2110 make_challenge(vs);
2111 /* Send client a 'random' challenge */
2112 vnc_write(vs, vs->challenge, sizeof(vs->challenge));
2113 vnc_flush(vs);
2115 vnc_read_when(vs, protocol_client_auth_vnc, sizeof(vs->challenge));
2119 static int protocol_client_auth(VncState *vs, uint8_t *data, size_t len)
2121 /* We only advertise 1 auth scheme at a time, so client
2122 * must pick the one we sent. Verify this */
2123 if (data[0] != vs->vd->auth) { /* Reject auth */
2124 VNC_DEBUG("Reject auth %d because it didn't match advertized\n", (int)data[0]);
2125 vnc_write_u32(vs, 1);
2126 if (vs->minor >= 8) {
2127 static const char err[] = "Authentication failed";
2128 vnc_write_u32(vs, sizeof(err));
2129 vnc_write(vs, err, sizeof(err));
2131 vnc_client_error(vs);
2132 } else { /* Accept requested auth */
2133 VNC_DEBUG("Client requested auth %d\n", (int)data[0]);
2134 switch (vs->vd->auth) {
2135 case VNC_AUTH_NONE:
2136 VNC_DEBUG("Accept auth none\n");
2137 if (vs->minor >= 8) {
2138 vnc_write_u32(vs, 0); /* Accept auth completion */
2139 vnc_flush(vs);
2141 start_client_init(vs);
2142 break;
2144 case VNC_AUTH_VNC:
2145 VNC_DEBUG("Start VNC auth\n");
2146 start_auth_vnc(vs);
2147 break;
2149 #ifdef CONFIG_VNC_TLS
2150 case VNC_AUTH_VENCRYPT:
2151 VNC_DEBUG("Accept VeNCrypt auth\n");;
2152 start_auth_vencrypt(vs);
2153 break;
2154 #endif /* CONFIG_VNC_TLS */
2156 #ifdef CONFIG_VNC_SASL
2157 case VNC_AUTH_SASL:
2158 VNC_DEBUG("Accept SASL auth\n");
2159 start_auth_sasl(vs);
2160 break;
2161 #endif /* CONFIG_VNC_SASL */
2163 default: /* Should not be possible, but just in case */
2164 VNC_DEBUG("Reject auth %d server code bug\n", vs->vd->auth);
2165 vnc_write_u8(vs, 1);
2166 if (vs->minor >= 8) {
2167 static const char err[] = "Authentication failed";
2168 vnc_write_u32(vs, sizeof(err));
2169 vnc_write(vs, err, sizeof(err));
2171 vnc_client_error(vs);
2174 return 0;
2177 static int protocol_version(VncState *vs, uint8_t *version, size_t len)
2179 char local[13];
2181 memcpy(local, version, 12);
2182 local[12] = 0;
2184 if (sscanf(local, "RFB %03d.%03d\n", &vs->major, &vs->minor) != 2) {
2185 VNC_DEBUG("Malformed protocol version %s\n", local);
2186 vnc_client_error(vs);
2187 return 0;
2189 VNC_DEBUG("Client request protocol version %d.%d\n", vs->major, vs->minor);
2190 if (vs->major != 3 ||
2191 (vs->minor != 3 &&
2192 vs->minor != 4 &&
2193 vs->minor != 5 &&
2194 vs->minor != 7 &&
2195 vs->minor != 8)) {
2196 VNC_DEBUG("Unsupported client version\n");
2197 vnc_write_u32(vs, VNC_AUTH_INVALID);
2198 vnc_flush(vs);
2199 vnc_client_error(vs);
2200 return 0;
2202 /* Some broken clients report v3.4 or v3.5, which spec requires to be treated
2203 * as equivalent to v3.3 by servers
2205 if (vs->minor == 4 || vs->minor == 5)
2206 vs->minor = 3;
2208 if (vs->minor == 3) {
2209 if (vs->vd->auth == VNC_AUTH_NONE) {
2210 VNC_DEBUG("Tell client auth none\n");
2211 vnc_write_u32(vs, vs->vd->auth);
2212 vnc_flush(vs);
2213 start_client_init(vs);
2214 } else if (vs->vd->auth == VNC_AUTH_VNC) {
2215 VNC_DEBUG("Tell client VNC auth\n");
2216 vnc_write_u32(vs, vs->vd->auth);
2217 vnc_flush(vs);
2218 start_auth_vnc(vs);
2219 } else {
2220 VNC_DEBUG("Unsupported auth %d for protocol 3.3\n", vs->vd->auth);
2221 vnc_write_u32(vs, VNC_AUTH_INVALID);
2222 vnc_flush(vs);
2223 vnc_client_error(vs);
2225 } else {
2226 VNC_DEBUG("Telling client we support auth %d\n", vs->vd->auth);
2227 vnc_write_u8(vs, 1); /* num auth */
2228 vnc_write_u8(vs, vs->vd->auth);
2229 vnc_read_when(vs, protocol_client_auth, 1);
2230 vnc_flush(vs);
2233 return 0;
2236 static VncRectStat *vnc_stat_rect(VncDisplay *vd, int x, int y)
2238 struct VncSurface *vs = &vd->guest;
2240 return &vs->stats[y / VNC_STAT_RECT][x / VNC_STAT_RECT];
2243 void vnc_sent_lossy_rect(VncState *vs, int x, int y, int w, int h)
2245 int i, j;
2247 w = (x + w) / VNC_STAT_RECT;
2248 h = (y + h) / VNC_STAT_RECT;
2249 x /= VNC_STAT_RECT;
2250 y /= VNC_STAT_RECT;
2252 for (j = y; j <= h; j++) {
2253 for (i = x; i <= w; i++) {
2254 vs->lossy_rect[j][i] = 1;
2259 static int vnc_refresh_lossy_rect(VncDisplay *vd, int x, int y)
2261 VncState *vs;
2262 int sty = y / VNC_STAT_RECT;
2263 int stx = x / VNC_STAT_RECT;
2264 int has_dirty = 0;
2266 y = y / VNC_STAT_RECT * VNC_STAT_RECT;
2267 x = x / VNC_STAT_RECT * VNC_STAT_RECT;
2269 QTAILQ_FOREACH(vs, &vd->clients, next) {
2270 int j;
2272 /* kernel send buffers are full -> refresh later */
2273 if (vs->output.offset) {
2274 continue;
2277 if (!vs->lossy_rect[sty][stx]) {
2278 continue;
2281 vs->lossy_rect[sty][stx] = 0;
2282 for (j = 0; j < VNC_STAT_RECT; ++j) {
2283 bitmap_set(vs->dirty[y + j], x / 16, VNC_STAT_RECT / 16);
2285 has_dirty++;
2288 return has_dirty;
2291 static int vnc_update_stats(VncDisplay *vd, struct timeval * tv)
2293 int x, y;
2294 struct timeval res;
2295 int has_dirty = 0;
2297 for (y = 0; y < vd->guest.ds->height; y += VNC_STAT_RECT) {
2298 for (x = 0; x < vd->guest.ds->width; x += VNC_STAT_RECT) {
2299 VncRectStat *rect = vnc_stat_rect(vd, x, y);
2301 rect->updated = false;
2305 qemu_timersub(tv, &VNC_REFRESH_STATS, &res);
2307 if (timercmp(&vd->guest.last_freq_check, &res, >)) {
2308 return has_dirty;
2310 vd->guest.last_freq_check = *tv;
2312 for (y = 0; y < vd->guest.ds->height; y += VNC_STAT_RECT) {
2313 for (x = 0; x < vd->guest.ds->width; x += VNC_STAT_RECT) {
2314 VncRectStat *rect= vnc_stat_rect(vd, x, y);
2315 int count = ARRAY_SIZE(rect->times);
2316 struct timeval min, max;
2318 if (!timerisset(&rect->times[count - 1])) {
2319 continue ;
2322 max = rect->times[(rect->idx + count - 1) % count];
2323 qemu_timersub(tv, &max, &res);
2325 if (timercmp(&res, &VNC_REFRESH_LOSSY, >)) {
2326 rect->freq = 0;
2327 has_dirty += vnc_refresh_lossy_rect(vd, x, y);
2328 memset(rect->times, 0, sizeof (rect->times));
2329 continue ;
2332 min = rect->times[rect->idx];
2333 max = rect->times[(rect->idx + count - 1) % count];
2334 qemu_timersub(&max, &min, &res);
2336 rect->freq = res.tv_sec + res.tv_usec / 1000000.;
2337 rect->freq /= count;
2338 rect->freq = 1. / rect->freq;
2341 return has_dirty;
2344 double vnc_update_freq(VncState *vs, int x, int y, int w, int h)
2346 int i, j;
2347 double total = 0;
2348 int num = 0;
2350 x = (x / VNC_STAT_RECT) * VNC_STAT_RECT;
2351 y = (y / VNC_STAT_RECT) * VNC_STAT_RECT;
2353 for (j = y; j <= y + h; j += VNC_STAT_RECT) {
2354 for (i = x; i <= x + w; i += VNC_STAT_RECT) {
2355 total += vnc_stat_rect(vs->vd, i, j)->freq;
2356 num++;
2360 if (num) {
2361 return total / num;
2362 } else {
2363 return 0;
2367 static void vnc_rect_updated(VncDisplay *vd, int x, int y, struct timeval * tv)
2369 VncRectStat *rect;
2371 rect = vnc_stat_rect(vd, x, y);
2372 if (rect->updated) {
2373 return ;
2375 rect->times[rect->idx] = *tv;
2376 rect->idx = (rect->idx + 1) % ARRAY_SIZE(rect->times);
2377 rect->updated = true;
2380 static int vnc_refresh_server_surface(VncDisplay *vd)
2382 int y;
2383 uint8_t *guest_row;
2384 uint8_t *server_row;
2385 int cmp_bytes;
2386 VncState *vs;
2387 int has_dirty = 0;
2389 struct timeval tv = { 0, 0 };
2391 if (!vd->non_adaptive) {
2392 gettimeofday(&tv, NULL);
2393 has_dirty = vnc_update_stats(vd, &tv);
2397 * Walk through the guest dirty map.
2398 * Check and copy modified bits from guest to server surface.
2399 * Update server dirty map.
2401 cmp_bytes = 16 * ds_get_bytes_per_pixel(vd->ds);
2402 guest_row = vd->guest.ds->data;
2403 server_row = vd->server->data;
2404 for (y = 0; y < vd->guest.ds->height; y++) {
2405 if (!bitmap_empty(vd->guest.dirty[y], VNC_DIRTY_BITS)) {
2406 int x;
2407 uint8_t *guest_ptr;
2408 uint8_t *server_ptr;
2410 guest_ptr = guest_row;
2411 server_ptr = server_row;
2413 for (x = 0; x < vd->guest.ds->width;
2414 x += 16, guest_ptr += cmp_bytes, server_ptr += cmp_bytes) {
2415 if (!test_and_clear_bit((x / 16), vd->guest.dirty[y]))
2416 continue;
2417 if (memcmp(server_ptr, guest_ptr, cmp_bytes) == 0)
2418 continue;
2419 memcpy(server_ptr, guest_ptr, cmp_bytes);
2420 if (!vd->non_adaptive)
2421 vnc_rect_updated(vd, x, y, &tv);
2422 QTAILQ_FOREACH(vs, &vd->clients, next) {
2423 set_bit((x / 16), vs->dirty[y]);
2425 has_dirty++;
2428 guest_row += ds_get_linesize(vd->ds);
2429 server_row += ds_get_linesize(vd->ds);
2431 return has_dirty;
2434 static void vnc_refresh(void *opaque)
2436 VncDisplay *vd = opaque;
2437 VncState *vs, *vn;
2438 int has_dirty, rects = 0;
2440 vga_hw_update();
2442 if (vnc_trylock_display(vd)) {
2443 vd->timer_interval = VNC_REFRESH_INTERVAL_BASE;
2444 qemu_mod_timer(vd->timer, qemu_get_clock_ms(rt_clock) +
2445 vd->timer_interval);
2446 return;
2449 has_dirty = vnc_refresh_server_surface(vd);
2450 vnc_unlock_display(vd);
2452 QTAILQ_FOREACH_SAFE(vs, &vd->clients, next, vn) {
2453 rects += vnc_update_client(vs, has_dirty);
2454 /* vs might be free()ed here */
2457 /* vd->timer could be NULL now if the last client disconnected,
2458 * in this case don't update the timer */
2459 if (vd->timer == NULL)
2460 return;
2462 if (has_dirty && rects) {
2463 vd->timer_interval /= 2;
2464 if (vd->timer_interval < VNC_REFRESH_INTERVAL_BASE)
2465 vd->timer_interval = VNC_REFRESH_INTERVAL_BASE;
2466 } else {
2467 vd->timer_interval += VNC_REFRESH_INTERVAL_INC;
2468 if (vd->timer_interval > VNC_REFRESH_INTERVAL_MAX)
2469 vd->timer_interval = VNC_REFRESH_INTERVAL_MAX;
2471 qemu_mod_timer(vd->timer, qemu_get_clock_ms(rt_clock) + vd->timer_interval);
2474 static void vnc_init_timer(VncDisplay *vd)
2476 vd->timer_interval = VNC_REFRESH_INTERVAL_BASE;
2477 if (vd->timer == NULL && !QTAILQ_EMPTY(&vd->clients)) {
2478 vd->timer = qemu_new_timer_ms(rt_clock, vnc_refresh, vd);
2479 vnc_dpy_resize(vd->ds);
2480 vnc_refresh(vd);
2484 static void vnc_remove_timer(VncDisplay *vd)
2486 if (vd->timer != NULL && QTAILQ_EMPTY(&vd->clients)) {
2487 qemu_del_timer(vd->timer);
2488 qemu_free_timer(vd->timer);
2489 vd->timer = NULL;
2493 static void vnc_connect(VncDisplay *vd, int csock)
2495 VncState *vs = qemu_mallocz(sizeof(VncState));
2496 int i;
2498 vs->csock = csock;
2499 vs->lossy_rect = qemu_mallocz(VNC_STAT_ROWS * sizeof (*vs->lossy_rect));
2500 for (i = 0; i < VNC_STAT_ROWS; ++i) {
2501 vs->lossy_rect[i] = qemu_mallocz(VNC_STAT_COLS * sizeof (uint8_t));
2504 VNC_DEBUG("New client on socket %d\n", csock);
2505 dcl->idle = 0;
2506 socket_set_nonblock(vs->csock);
2507 qemu_set_fd_handler2(vs->csock, NULL, vnc_client_read, NULL, vs);
2509 vnc_client_cache_addr(vs);
2510 vnc_qmp_event(vs, QEVENT_VNC_CONNECTED);
2512 vs->vd = vd;
2513 vs->ds = vd->ds;
2514 vs->last_x = -1;
2515 vs->last_y = -1;
2517 vs->as.freq = 44100;
2518 vs->as.nchannels = 2;
2519 vs->as.fmt = AUD_FMT_S16;
2520 vs->as.endianness = 0;
2522 #ifdef CONFIG_VNC_THREAD
2523 qemu_mutex_init(&vs->output_mutex);
2524 #endif
2526 QTAILQ_INSERT_HEAD(&vd->clients, vs, next);
2528 vga_hw_update();
2530 vnc_write(vs, "RFB 003.008\n", 12);
2531 vnc_flush(vs);
2532 vnc_read_when(vs, protocol_version, 12);
2533 reset_keys(vs);
2534 if (vs->vd->lock_key_sync)
2535 vs->led = qemu_add_led_event_handler(kbd_leds, vs);
2537 vs->mouse_mode_notifier.notify = check_pointer_type_change;
2538 qemu_add_mouse_mode_change_notifier(&vs->mouse_mode_notifier);
2540 vnc_init_timer(vd);
2542 /* vs might be free()ed here */
2545 static void vnc_listen_read(void *opaque)
2547 VncDisplay *vs = opaque;
2548 struct sockaddr_in addr;
2549 socklen_t addrlen = sizeof(addr);
2551 /* Catch-up */
2552 vga_hw_update();
2554 int csock = qemu_accept(vs->lsock, (struct sockaddr *)&addr, &addrlen);
2555 if (csock != -1) {
2556 vnc_connect(vs, csock);
2560 void vnc_display_init(DisplayState *ds)
2562 VncDisplay *vs = qemu_mallocz(sizeof(*vs));
2564 dcl = qemu_mallocz(sizeof(DisplayChangeListener));
2566 ds->opaque = vs;
2567 dcl->idle = 1;
2568 vnc_display = vs;
2570 vs->lsock = -1;
2572 vs->ds = ds;
2573 QTAILQ_INIT(&vs->clients);
2574 vs->expires = TIME_MAX;
2576 if (keyboard_layout)
2577 vs->kbd_layout = init_keyboard_layout(name2keysym, keyboard_layout);
2578 else
2579 vs->kbd_layout = init_keyboard_layout(name2keysym, "en-us");
2581 if (!vs->kbd_layout)
2582 exit(1);
2584 #ifdef CONFIG_VNC_THREAD
2585 qemu_mutex_init(&vs->mutex);
2586 vnc_start_worker_thread();
2587 #endif
2589 dcl->dpy_copy = vnc_dpy_copy;
2590 dcl->dpy_update = vnc_dpy_update;
2591 dcl->dpy_resize = vnc_dpy_resize;
2592 dcl->dpy_setdata = vnc_dpy_setdata;
2593 register_displaychangelistener(ds, dcl);
2594 ds->mouse_set = vnc_mouse_set;
2595 ds->cursor_define = vnc_dpy_cursor_define;
2599 void vnc_display_close(DisplayState *ds)
2601 VncDisplay *vs = ds ? (VncDisplay *)ds->opaque : vnc_display;
2603 if (!vs)
2604 return;
2605 if (vs->display) {
2606 qemu_free(vs->display);
2607 vs->display = NULL;
2609 if (vs->lsock != -1) {
2610 qemu_set_fd_handler2(vs->lsock, NULL, NULL, NULL, NULL);
2611 close(vs->lsock);
2612 vs->lsock = -1;
2614 vs->auth = VNC_AUTH_INVALID;
2615 #ifdef CONFIG_VNC_TLS
2616 vs->subauth = VNC_AUTH_INVALID;
2617 vs->tls.x509verify = 0;
2618 #endif
2621 int vnc_display_disable_login(DisplayState *ds)
2623 VncDisplay *vs = ds ? (VncDisplay *)ds->opaque : vnc_display;
2625 if (!vs) {
2626 return -1;
2629 if (vs->password) {
2630 qemu_free(vs->password);
2633 vs->password = NULL;
2634 vs->auth = VNC_AUTH_VNC;
2636 return 0;
2639 int vnc_display_password(DisplayState *ds, const char *password)
2641 VncDisplay *vs = ds ? (VncDisplay *)ds->opaque : vnc_display;
2643 if (!vs) {
2644 return -1;
2647 if (!password) {
2648 /* This is not the intention of this interface but err on the side
2649 of being safe */
2650 return vnc_display_disable_login(ds);
2653 if (vs->password) {
2654 qemu_free(vs->password);
2655 vs->password = NULL;
2657 vs->password = qemu_strdup(password);
2658 vs->auth = VNC_AUTH_VNC;
2660 return 0;
2663 int vnc_display_pw_expire(DisplayState *ds, time_t expires)
2665 VncDisplay *vs = ds ? (VncDisplay *)ds->opaque : vnc_display;
2667 vs->expires = expires;
2668 return 0;
2671 char *vnc_display_local_addr(DisplayState *ds)
2673 VncDisplay *vs = ds ? (VncDisplay *)ds->opaque : vnc_display;
2675 return vnc_socket_local_addr("%s:%s", vs->lsock);
2678 int vnc_display_open(DisplayState *ds, const char *display)
2680 VncDisplay *vs = ds ? (VncDisplay *)ds->opaque : vnc_display;
2681 const char *options;
2682 int password = 0;
2683 int reverse = 0;
2684 #ifdef CONFIG_VNC_TLS
2685 int tls = 0, x509 = 0;
2686 #endif
2687 #ifdef CONFIG_VNC_SASL
2688 int sasl = 0;
2689 int saslErr;
2690 #endif
2691 #if defined(CONFIG_VNC_TLS) || defined(CONFIG_VNC_SASL)
2692 int acl = 0;
2693 #endif
2694 int lock_key_sync = 1;
2696 if (!vnc_display)
2697 return -1;
2698 vnc_display_close(ds);
2699 if (strcmp(display, "none") == 0)
2700 return 0;
2702 if (!(vs->display = strdup(display)))
2703 return -1;
2705 options = display;
2706 while ((options = strchr(options, ','))) {
2707 options++;
2708 if (strncmp(options, "password", 8) == 0) {
2709 password = 1; /* Require password auth */
2710 } else if (strncmp(options, "reverse", 7) == 0) {
2711 reverse = 1;
2712 } else if (strncmp(options, "no-lock-key-sync", 9) == 0) {
2713 lock_key_sync = 0;
2714 #ifdef CONFIG_VNC_SASL
2715 } else if (strncmp(options, "sasl", 4) == 0) {
2716 sasl = 1; /* Require SASL auth */
2717 #endif
2718 #ifdef CONFIG_VNC_TLS
2719 } else if (strncmp(options, "tls", 3) == 0) {
2720 tls = 1; /* Require TLS */
2721 } else if (strncmp(options, "x509", 4) == 0) {
2722 char *start, *end;
2723 x509 = 1; /* Require x509 certificates */
2724 if (strncmp(options, "x509verify", 10) == 0)
2725 vs->tls.x509verify = 1; /* ...and verify client certs */
2727 /* Now check for 'x509=/some/path' postfix
2728 * and use that to setup x509 certificate/key paths */
2729 start = strchr(options, '=');
2730 end = strchr(options, ',');
2731 if (start && (!end || (start < end))) {
2732 int len = end ? end-(start+1) : strlen(start+1);
2733 char *path = qemu_strndup(start + 1, len);
2735 VNC_DEBUG("Trying certificate path '%s'\n", path);
2736 if (vnc_tls_set_x509_creds_dir(vs, path) < 0) {
2737 fprintf(stderr, "Failed to find x509 certificates/keys in %s\n", path);
2738 qemu_free(path);
2739 qemu_free(vs->display);
2740 vs->display = NULL;
2741 return -1;
2743 qemu_free(path);
2744 } else {
2745 fprintf(stderr, "No certificate path provided\n");
2746 qemu_free(vs->display);
2747 vs->display = NULL;
2748 return -1;
2750 #endif
2751 #if defined(CONFIG_VNC_TLS) || defined(CONFIG_VNC_SASL)
2752 } else if (strncmp(options, "acl", 3) == 0) {
2753 acl = 1;
2754 #endif
2755 } else if (strncmp(options, "lossy", 5) == 0) {
2756 vs->lossy = true;
2757 } else if (strncmp(options, "non-adapative", 13) == 0) {
2758 vs->non_adaptive = true;
2762 #ifdef CONFIG_VNC_TLS
2763 if (acl && x509 && vs->tls.x509verify) {
2764 if (!(vs->tls.acl = qemu_acl_init("vnc.x509dname"))) {
2765 fprintf(stderr, "Failed to create x509 dname ACL\n");
2766 exit(1);
2769 #endif
2770 #ifdef CONFIG_VNC_SASL
2771 if (acl && sasl) {
2772 if (!(vs->sasl.acl = qemu_acl_init("vnc.username"))) {
2773 fprintf(stderr, "Failed to create username ACL\n");
2774 exit(1);
2777 #endif
2780 * Combinations we support here:
2782 * - no-auth (clear text, no auth)
2783 * - password (clear text, weak auth)
2784 * - sasl (encrypt, good auth *IF* using Kerberos via GSSAPI)
2785 * - tls (encrypt, weak anonymous creds, no auth)
2786 * - tls + password (encrypt, weak anonymous creds, weak auth)
2787 * - tls + sasl (encrypt, weak anonymous creds, good auth)
2788 * - tls + x509 (encrypt, good x509 creds, no auth)
2789 * - tls + x509 + password (encrypt, good x509 creds, weak auth)
2790 * - tls + x509 + sasl (encrypt, good x509 creds, good auth)
2792 * NB1. TLS is a stackable auth scheme.
2793 * NB2. the x509 schemes have option to validate a client cert dname
2795 if (password) {
2796 #ifdef CONFIG_VNC_TLS
2797 if (tls) {
2798 vs->auth = VNC_AUTH_VENCRYPT;
2799 if (x509) {
2800 VNC_DEBUG("Initializing VNC server with x509 password auth\n");
2801 vs->subauth = VNC_AUTH_VENCRYPT_X509VNC;
2802 } else {
2803 VNC_DEBUG("Initializing VNC server with TLS password auth\n");
2804 vs->subauth = VNC_AUTH_VENCRYPT_TLSVNC;
2806 } else {
2807 #endif /* CONFIG_VNC_TLS */
2808 VNC_DEBUG("Initializing VNC server with password auth\n");
2809 vs->auth = VNC_AUTH_VNC;
2810 #ifdef CONFIG_VNC_TLS
2811 vs->subauth = VNC_AUTH_INVALID;
2813 #endif /* CONFIG_VNC_TLS */
2814 #ifdef CONFIG_VNC_SASL
2815 } else if (sasl) {
2816 #ifdef CONFIG_VNC_TLS
2817 if (tls) {
2818 vs->auth = VNC_AUTH_VENCRYPT;
2819 if (x509) {
2820 VNC_DEBUG("Initializing VNC server with x509 SASL auth\n");
2821 vs->subauth = VNC_AUTH_VENCRYPT_X509SASL;
2822 } else {
2823 VNC_DEBUG("Initializing VNC server with TLS SASL auth\n");
2824 vs->subauth = VNC_AUTH_VENCRYPT_TLSSASL;
2826 } else {
2827 #endif /* CONFIG_VNC_TLS */
2828 VNC_DEBUG("Initializing VNC server with SASL auth\n");
2829 vs->auth = VNC_AUTH_SASL;
2830 #ifdef CONFIG_VNC_TLS
2831 vs->subauth = VNC_AUTH_INVALID;
2833 #endif /* CONFIG_VNC_TLS */
2834 #endif /* CONFIG_VNC_SASL */
2835 } else {
2836 #ifdef CONFIG_VNC_TLS
2837 if (tls) {
2838 vs->auth = VNC_AUTH_VENCRYPT;
2839 if (x509) {
2840 VNC_DEBUG("Initializing VNC server with x509 no auth\n");
2841 vs->subauth = VNC_AUTH_VENCRYPT_X509NONE;
2842 } else {
2843 VNC_DEBUG("Initializing VNC server with TLS no auth\n");
2844 vs->subauth = VNC_AUTH_VENCRYPT_TLSNONE;
2846 } else {
2847 #endif
2848 VNC_DEBUG("Initializing VNC server with no auth\n");
2849 vs->auth = VNC_AUTH_NONE;
2850 #ifdef CONFIG_VNC_TLS
2851 vs->subauth = VNC_AUTH_INVALID;
2853 #endif
2856 #ifdef CONFIG_VNC_SASL
2857 if ((saslErr = sasl_server_init(NULL, "qemu")) != SASL_OK) {
2858 fprintf(stderr, "Failed to initialize SASL auth %s",
2859 sasl_errstring(saslErr, NULL, NULL));
2860 free(vs->display);
2861 vs->display = NULL;
2862 return -1;
2864 #endif
2865 vs->lock_key_sync = lock_key_sync;
2867 if (reverse) {
2868 /* connect to viewer */
2869 if (strncmp(display, "unix:", 5) == 0)
2870 vs->lsock = unix_connect(display+5);
2871 else
2872 vs->lsock = inet_connect(display, SOCK_STREAM);
2873 if (-1 == vs->lsock) {
2874 free(vs->display);
2875 vs->display = NULL;
2876 return -1;
2877 } else {
2878 int csock = vs->lsock;
2879 vs->lsock = -1;
2880 vnc_connect(vs, csock);
2882 return 0;
2884 } else {
2885 /* listen for connects */
2886 char *dpy;
2887 dpy = qemu_malloc(256);
2888 if (strncmp(display, "unix:", 5) == 0) {
2889 pstrcpy(dpy, 256, "unix:");
2890 vs->lsock = unix_listen(display+5, dpy+5, 256-5);
2891 } else {
2892 vs->lsock = inet_listen(display, dpy, 256, SOCK_STREAM, 5900);
2894 if (-1 == vs->lsock) {
2895 free(dpy);
2896 return -1;
2897 } else {
2898 free(vs->display);
2899 vs->display = dpy;
2902 return qemu_set_fd_handler2(vs->lsock, NULL, vnc_listen_read, NULL, vs);