Fix configurations with more than 4GB of memory
[qemu-kvm/fedora.git] / vnc.c
blob2b0b3b655066fb70e32ed43e65c61912d2e6c2b2
1 /*
2 * QEMU VNC display driver
4 * Copyright (C) 2006 Anthony Liguori <anthony@codemonkey.ws>
5 * Copyright (C) 2006 Fabrice Bellard
7 * Permission is hereby granted, free of charge, to any person obtaining a copy
8 * of this software and associated documentation files (the "Software"), to deal
9 * in the Software without restriction, including without limitation the rights
10 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 * copies of the Software, and to permit persons to whom the Software is
12 * furnished to do so, subject to the following conditions:
14 * The above copyright notice and this permission notice shall be included in
15 * all copies or substantial portions of the Software.
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23 * THE SOFTWARE.
26 #include "vl.h"
27 #include "qemu_socket.h"
29 #define VNC_REFRESH_INTERVAL (1000 / 30)
31 #include "vnc_keysym.h"
32 #include "keymaps.c"
33 #include "d3des.h"
35 #if CONFIG_VNC_TLS
36 #include <gnutls/gnutls.h>
37 #include <gnutls/x509.h>
38 #endif /* CONFIG_VNC_TLS */
40 // #define _VNC_DEBUG 1
42 #if _VNC_DEBUG
43 #define VNC_DEBUG(fmt, ...) do { fprintf(stderr, fmt, ## __VA_ARGS__); } while (0)
45 #if CONFIG_VNC_TLS && _VNC_DEBUG >= 2
46 /* Very verbose, so only enabled for _VNC_DEBUG >= 2 */
47 static void vnc_debug_gnutls_log(int level, const char* str) {
48 VNC_DEBUG("%d %s", level, str);
50 #endif /* CONFIG_VNC_TLS && _VNC_DEBUG */
51 #else
52 #define VNC_DEBUG(fmt, ...) do { } while (0)
53 #endif
56 typedef struct Buffer
58 size_t capacity;
59 size_t offset;
60 char *buffer;
61 } Buffer;
63 typedef struct VncState VncState;
65 typedef int VncReadEvent(VncState *vs, char *data, size_t len);
67 typedef void VncWritePixels(VncState *vs, void *data, int size);
69 typedef void VncSendHextileTile(VncState *vs,
70 int x, int y, int w, int h,
71 uint32_t *last_bg,
72 uint32_t *last_fg,
73 int *has_bg, int *has_fg);
75 #define VNC_MAX_WIDTH 2048
76 #define VNC_MAX_HEIGHT 2048
77 #define VNC_DIRTY_WORDS (VNC_MAX_WIDTH / (16 * 32))
79 #define VNC_AUTH_CHALLENGE_SIZE 16
81 enum {
82 VNC_AUTH_INVALID = 0,
83 VNC_AUTH_NONE = 1,
84 VNC_AUTH_VNC = 2,
85 VNC_AUTH_RA2 = 5,
86 VNC_AUTH_RA2NE = 6,
87 VNC_AUTH_TIGHT = 16,
88 VNC_AUTH_ULTRA = 17,
89 VNC_AUTH_TLS = 18,
90 VNC_AUTH_VENCRYPT = 19
93 #if CONFIG_VNC_TLS
94 enum {
95 VNC_WIREMODE_CLEAR,
96 VNC_WIREMODE_TLS,
99 enum {
100 VNC_AUTH_VENCRYPT_PLAIN = 256,
101 VNC_AUTH_VENCRYPT_TLSNONE = 257,
102 VNC_AUTH_VENCRYPT_TLSVNC = 258,
103 VNC_AUTH_VENCRYPT_TLSPLAIN = 259,
104 VNC_AUTH_VENCRYPT_X509NONE = 260,
105 VNC_AUTH_VENCRYPT_X509VNC = 261,
106 VNC_AUTH_VENCRYPT_X509PLAIN = 262,
109 #if CONFIG_VNC_TLS
110 #define X509_CA_CERT_FILE "ca-cert.pem"
111 #define X509_CA_CRL_FILE "ca-crl.pem"
112 #define X509_SERVER_KEY_FILE "server-key.pem"
113 #define X509_SERVER_CERT_FILE "server-cert.pem"
114 #endif
116 #endif /* CONFIG_VNC_TLS */
118 struct VncState
120 QEMUTimer *timer;
121 int lsock;
122 int csock;
123 DisplayState *ds;
124 int need_update;
125 int width;
126 int height;
127 uint32_t dirty_row[VNC_MAX_HEIGHT][VNC_DIRTY_WORDS];
128 char *old_data;
129 int depth; /* internal VNC frame buffer byte per pixel */
130 int has_resize;
131 int has_hextile;
132 int has_pointer_type_change;
133 int absolute;
134 int last_x;
135 int last_y;
137 int major;
138 int minor;
140 char *display;
141 char *password;
142 int auth;
143 #if CONFIG_VNC_TLS
144 int subauth;
145 int x509verify;
147 char *x509cacert;
148 char *x509cacrl;
149 char *x509cert;
150 char *x509key;
151 #endif
152 char challenge[VNC_AUTH_CHALLENGE_SIZE];
154 #if CONFIG_VNC_TLS
155 int wiremode;
156 gnutls_session_t tls_session;
157 #endif
159 Buffer output;
160 Buffer input;
161 kbd_layout_t *kbd_layout;
162 /* current output mode information */
163 VncWritePixels *write_pixels;
164 VncSendHextileTile *send_hextile_tile;
165 int pix_bpp, pix_big_endian;
166 int red_shift, red_max, red_shift1;
167 int green_shift, green_max, green_shift1;
168 int blue_shift, blue_max, blue_shift1;
170 VncReadEvent *read_handler;
171 size_t read_handler_expect;
172 /* input */
173 uint8_t modifiers_state[256];
176 static VncState *vnc_state; /* needed for info vnc */
178 void do_info_vnc(void)
180 if (vnc_state == NULL)
181 term_printf("VNC server disabled\n");
182 else {
183 term_printf("VNC server active on: ");
184 term_print_filename(vnc_state->display);
185 term_printf("\n");
187 if (vnc_state->csock == -1)
188 term_printf("No client connected\n");
189 else
190 term_printf("Client connected\n");
194 /* TODO
195 1) Get the queue working for IO.
196 2) there is some weirdness when using the -S option (the screen is grey
197 and not totally invalidated
198 3) resolutions > 1024
201 static void vnc_write(VncState *vs, const void *data, size_t len);
202 static void vnc_write_u32(VncState *vs, uint32_t value);
203 static void vnc_write_s32(VncState *vs, int32_t value);
204 static void vnc_write_u16(VncState *vs, uint16_t value);
205 static void vnc_write_u8(VncState *vs, uint8_t value);
206 static void vnc_flush(VncState *vs);
207 static void vnc_update_client(void *opaque);
208 static void vnc_client_read(void *opaque);
210 static inline void vnc_set_bit(uint32_t *d, int k)
212 d[k >> 5] |= 1 << (k & 0x1f);
215 static inline void vnc_clear_bit(uint32_t *d, int k)
217 d[k >> 5] &= ~(1 << (k & 0x1f));
220 static inline void vnc_set_bits(uint32_t *d, int n, int nb_words)
222 int j;
224 j = 0;
225 while (n >= 32) {
226 d[j++] = -1;
227 n -= 32;
229 if (n > 0)
230 d[j++] = (1 << n) - 1;
231 while (j < nb_words)
232 d[j++] = 0;
235 static inline int vnc_get_bit(const uint32_t *d, int k)
237 return (d[k >> 5] >> (k & 0x1f)) & 1;
240 static inline int vnc_and_bits(const uint32_t *d1, const uint32_t *d2,
241 int nb_words)
243 int i;
244 for(i = 0; i < nb_words; i++) {
245 if ((d1[i] & d2[i]) != 0)
246 return 1;
248 return 0;
251 static void vnc_dpy_update(DisplayState *ds, int x, int y, int w, int h)
253 VncState *vs = ds->opaque;
254 int i;
256 h += y;
258 for (; y < h; y++)
259 for (i = 0; i < w; i += 16)
260 vnc_set_bit(vs->dirty_row[y], (x + i) / 16);
263 static void vnc_framebuffer_update(VncState *vs, int x, int y, int w, int h,
264 int32_t encoding)
266 vnc_write_u16(vs, x);
267 vnc_write_u16(vs, y);
268 vnc_write_u16(vs, w);
269 vnc_write_u16(vs, h);
271 vnc_write_s32(vs, encoding);
274 static void vnc_dpy_resize(DisplayState *ds, int w, int h)
276 int size_changed;
277 VncState *vs = ds->opaque;
279 ds->data = realloc(ds->data, w * h * vs->depth);
280 vs->old_data = realloc(vs->old_data, w * h * vs->depth);
282 if (ds->data == NULL || vs->old_data == NULL) {
283 fprintf(stderr, "vnc: memory allocation failed\n");
284 exit(1);
287 ds->depth = vs->depth * 8;
288 size_changed = ds->width != w || ds->height != h;
289 ds->width = w;
290 ds->height = h;
291 ds->linesize = w * vs->depth;
292 if (vs->csock != -1 && vs->has_resize && size_changed) {
293 vnc_write_u8(vs, 0); /* msg id */
294 vnc_write_u8(vs, 0);
295 vnc_write_u16(vs, 1); /* number of rects */
296 vnc_framebuffer_update(vs, 0, 0, ds->width, ds->height, -223);
297 vnc_flush(vs);
298 vs->width = ds->width;
299 vs->height = ds->height;
303 /* fastest code */
304 static void vnc_write_pixels_copy(VncState *vs, void *pixels, int size)
306 vnc_write(vs, pixels, size);
309 /* slowest but generic code. */
310 static void vnc_convert_pixel(VncState *vs, uint8_t *buf, uint32_t v)
312 unsigned int r, g, b;
314 r = (v >> vs->red_shift1) & vs->red_max;
315 g = (v >> vs->green_shift1) & vs->green_max;
316 b = (v >> vs->blue_shift1) & vs->blue_max;
317 v = (r << vs->red_shift) |
318 (g << vs->green_shift) |
319 (b << vs->blue_shift);
320 switch(vs->pix_bpp) {
321 case 1:
322 buf[0] = v;
323 break;
324 case 2:
325 if (vs->pix_big_endian) {
326 buf[0] = v >> 8;
327 buf[1] = v;
328 } else {
329 buf[1] = v >> 8;
330 buf[0] = v;
332 break;
333 default:
334 case 4:
335 if (vs->pix_big_endian) {
336 buf[0] = v >> 24;
337 buf[1] = v >> 16;
338 buf[2] = v >> 8;
339 buf[3] = v;
340 } else {
341 buf[3] = v >> 24;
342 buf[2] = v >> 16;
343 buf[1] = v >> 8;
344 buf[0] = v;
346 break;
350 static void vnc_write_pixels_generic(VncState *vs, void *pixels1, int size)
352 uint32_t *pixels = pixels1;
353 uint8_t buf[4];
354 int n, i;
356 n = size >> 2;
357 for(i = 0; i < n; i++) {
358 vnc_convert_pixel(vs, buf, pixels[i]);
359 vnc_write(vs, buf, vs->pix_bpp);
363 static void send_framebuffer_update_raw(VncState *vs, int x, int y, int w, int h)
365 int i;
366 char *row;
368 vnc_framebuffer_update(vs, x, y, w, h, 0);
370 row = vs->ds->data + y * vs->ds->linesize + x * vs->depth;
371 for (i = 0; i < h; i++) {
372 vs->write_pixels(vs, row, w * vs->depth);
373 row += vs->ds->linesize;
377 static void hextile_enc_cord(uint8_t *ptr, int x, int y, int w, int h)
379 ptr[0] = ((x & 0x0F) << 4) | (y & 0x0F);
380 ptr[1] = (((w - 1) & 0x0F) << 4) | ((h - 1) & 0x0F);
383 #define BPP 8
384 #include "vnchextile.h"
385 #undef BPP
387 #define BPP 16
388 #include "vnchextile.h"
389 #undef BPP
391 #define BPP 32
392 #include "vnchextile.h"
393 #undef BPP
395 #define GENERIC
396 #define BPP 32
397 #include "vnchextile.h"
398 #undef BPP
399 #undef GENERIC
401 static void send_framebuffer_update_hextile(VncState *vs, int x, int y, int w, int h)
403 int i, j;
404 int has_fg, has_bg;
405 uint32_t last_fg32, last_bg32;
407 vnc_framebuffer_update(vs, x, y, w, h, 5);
409 has_fg = has_bg = 0;
410 for (j = y; j < (y + h); j += 16) {
411 for (i = x; i < (x + w); i += 16) {
412 vs->send_hextile_tile(vs, i, j,
413 MIN(16, x + w - i), MIN(16, y + h - j),
414 &last_bg32, &last_fg32, &has_bg, &has_fg);
419 static void send_framebuffer_update(VncState *vs, int x, int y, int w, int h)
421 if (vs->has_hextile)
422 send_framebuffer_update_hextile(vs, x, y, w, h);
423 else
424 send_framebuffer_update_raw(vs, x, y, w, h);
427 static void vnc_copy(DisplayState *ds, int src_x, int src_y, int dst_x, int dst_y, int w, int h)
429 int src, dst;
430 char *src_row;
431 char *dst_row;
432 char *old_row;
433 int y = 0;
434 int pitch = ds->linesize;
435 VncState *vs = ds->opaque;
437 vnc_update_client(vs);
439 if (dst_y > src_y) {
440 y = h - 1;
441 pitch = -pitch;
444 src = (ds->linesize * (src_y + y) + vs->depth * src_x);
445 dst = (ds->linesize * (dst_y + y) + vs->depth * dst_x);
447 src_row = ds->data + src;
448 dst_row = ds->data + dst;
449 old_row = vs->old_data + dst;
451 for (y = 0; y < h; y++) {
452 memmove(old_row, src_row, w * vs->depth);
453 memmove(dst_row, src_row, w * vs->depth);
454 src_row += pitch;
455 dst_row += pitch;
456 old_row += pitch;
459 vnc_write_u8(vs, 0); /* msg id */
460 vnc_write_u8(vs, 0);
461 vnc_write_u16(vs, 1); /* number of rects */
462 vnc_framebuffer_update(vs, dst_x, dst_y, w, h, 1);
463 vnc_write_u16(vs, src_x);
464 vnc_write_u16(vs, src_y);
465 vnc_flush(vs);
468 static int find_dirty_height(VncState *vs, int y, int last_x, int x)
470 int h;
472 for (h = 1; h < (vs->height - y); h++) {
473 int tmp_x;
474 if (!vnc_get_bit(vs->dirty_row[y + h], last_x))
475 break;
476 for (tmp_x = last_x; tmp_x < x; tmp_x++)
477 vnc_clear_bit(vs->dirty_row[y + h], tmp_x);
480 return h;
483 static void vnc_update_client(void *opaque)
485 VncState *vs = opaque;
487 if (vs->need_update && vs->csock != -1) {
488 int y;
489 char *row;
490 char *old_row;
491 uint32_t width_mask[VNC_DIRTY_WORDS];
492 int n_rectangles;
493 int saved_offset;
494 int has_dirty = 0;
496 vnc_set_bits(width_mask, (vs->width / 16), VNC_DIRTY_WORDS);
498 /* Walk through the dirty map and eliminate tiles that
499 really aren't dirty */
500 row = vs->ds->data;
501 old_row = vs->old_data;
503 for (y = 0; y < vs->height; y++) {
504 if (vnc_and_bits(vs->dirty_row[y], width_mask, VNC_DIRTY_WORDS)) {
505 int x;
506 char *ptr, *old_ptr;
508 ptr = row;
509 old_ptr = old_row;
511 for (x = 0; x < vs->ds->width; x += 16) {
512 if (memcmp(old_ptr, ptr, 16 * vs->depth) == 0) {
513 vnc_clear_bit(vs->dirty_row[y], (x / 16));
514 } else {
515 has_dirty = 1;
516 memcpy(old_ptr, ptr, 16 * vs->depth);
519 ptr += 16 * vs->depth;
520 old_ptr += 16 * vs->depth;
524 row += vs->ds->linesize;
525 old_row += vs->ds->linesize;
528 if (!has_dirty) {
529 qemu_mod_timer(vs->timer, qemu_get_clock(rt_clock) + VNC_REFRESH_INTERVAL);
530 return;
533 /* Count rectangles */
534 n_rectangles = 0;
535 vnc_write_u8(vs, 0); /* msg id */
536 vnc_write_u8(vs, 0);
537 saved_offset = vs->output.offset;
538 vnc_write_u16(vs, 0);
540 for (y = 0; y < vs->height; y++) {
541 int x;
542 int last_x = -1;
543 for (x = 0; x < vs->width / 16; x++) {
544 if (vnc_get_bit(vs->dirty_row[y], x)) {
545 if (last_x == -1) {
546 last_x = x;
548 vnc_clear_bit(vs->dirty_row[y], x);
549 } else {
550 if (last_x != -1) {
551 int h = find_dirty_height(vs, y, last_x, x);
552 send_framebuffer_update(vs, last_x * 16, y, (x - last_x) * 16, h);
553 n_rectangles++;
555 last_x = -1;
558 if (last_x != -1) {
559 int h = find_dirty_height(vs, y, last_x, x);
560 send_framebuffer_update(vs, last_x * 16, y, (x - last_x) * 16, h);
561 n_rectangles++;
564 vs->output.buffer[saved_offset] = (n_rectangles >> 8) & 0xFF;
565 vs->output.buffer[saved_offset + 1] = n_rectangles & 0xFF;
566 vnc_flush(vs);
569 qemu_mod_timer(vs->timer, qemu_get_clock(rt_clock) + VNC_REFRESH_INTERVAL);
572 static void vnc_timer_init(VncState *vs)
574 if (vs->timer == NULL) {
575 vs->timer = qemu_new_timer(rt_clock, vnc_update_client, vs);
576 qemu_mod_timer(vs->timer, qemu_get_clock(rt_clock));
580 static void vnc_dpy_refresh(DisplayState *ds)
582 VncState *vs = ds->opaque;
583 vnc_timer_init(vs);
584 vga_hw_update();
587 static int vnc_listen_poll(void *opaque)
589 VncState *vs = opaque;
590 if (vs->csock == -1)
591 return 1;
592 return 0;
595 static void buffer_reserve(Buffer *buffer, size_t len)
597 if ((buffer->capacity - buffer->offset) < len) {
598 buffer->capacity += (len + 1024);
599 buffer->buffer = realloc(buffer->buffer, buffer->capacity);
600 if (buffer->buffer == NULL) {
601 fprintf(stderr, "vnc: out of memory\n");
602 exit(1);
607 static int buffer_empty(Buffer *buffer)
609 return buffer->offset == 0;
612 static char *buffer_end(Buffer *buffer)
614 return buffer->buffer + buffer->offset;
617 static void buffer_reset(Buffer *buffer)
619 buffer->offset = 0;
622 static void buffer_append(Buffer *buffer, const void *data, size_t len)
624 memcpy(buffer->buffer + buffer->offset, data, len);
625 buffer->offset += len;
628 static int vnc_client_io_error(VncState *vs, int ret, int last_errno)
630 if (ret == 0 || ret == -1) {
631 if (ret == -1 && (last_errno == EINTR || last_errno == EAGAIN))
632 return 0;
634 VNC_DEBUG("Closing down client sock %d %d\n", ret, ret < 0 ? last_errno : 0);
635 qemu_set_fd_handler2(vs->csock, NULL, NULL, NULL, NULL);
636 closesocket(vs->csock);
637 vs->csock = -1;
638 buffer_reset(&vs->input);
639 buffer_reset(&vs->output);
640 vs->need_update = 0;
641 #if CONFIG_VNC_TLS
642 if (vs->tls_session) {
643 gnutls_deinit(vs->tls_session);
644 vs->tls_session = NULL;
646 vs->wiremode = VNC_WIREMODE_CLEAR;
647 #endif /* CONFIG_VNC_TLS */
648 return 0;
650 return ret;
653 static void vnc_client_error(VncState *vs)
655 vnc_client_io_error(vs, -1, EINVAL);
658 static void vnc_client_write(void *opaque)
660 long ret;
661 VncState *vs = opaque;
663 #if CONFIG_VNC_TLS
664 if (vs->tls_session) {
665 ret = gnutls_write(vs->tls_session, vs->output.buffer, vs->output.offset);
666 if (ret < 0) {
667 if (ret == GNUTLS_E_AGAIN)
668 errno = EAGAIN;
669 else
670 errno = EIO;
671 ret = -1;
673 } else
674 #endif /* CONFIG_VNC_TLS */
675 ret = send(vs->csock, vs->output.buffer, vs->output.offset, 0);
676 ret = vnc_client_io_error(vs, ret, socket_error());
677 if (!ret)
678 return;
680 memmove(vs->output.buffer, vs->output.buffer + ret, (vs->output.offset - ret));
681 vs->output.offset -= ret;
683 if (vs->output.offset == 0) {
684 qemu_set_fd_handler2(vs->csock, NULL, vnc_client_read, NULL, vs);
688 static void vnc_read_when(VncState *vs, VncReadEvent *func, size_t expecting)
690 vs->read_handler = func;
691 vs->read_handler_expect = expecting;
694 static void vnc_client_read(void *opaque)
696 VncState *vs = opaque;
697 long ret;
699 buffer_reserve(&vs->input, 4096);
701 #if CONFIG_VNC_TLS
702 if (vs->tls_session) {
703 ret = gnutls_read(vs->tls_session, buffer_end(&vs->input), 4096);
704 if (ret < 0) {
705 if (ret == GNUTLS_E_AGAIN)
706 errno = EAGAIN;
707 else
708 errno = EIO;
709 ret = -1;
711 } else
712 #endif /* CONFIG_VNC_TLS */
713 ret = recv(vs->csock, buffer_end(&vs->input), 4096, 0);
714 ret = vnc_client_io_error(vs, ret, socket_error());
715 if (!ret)
716 return;
718 vs->input.offset += ret;
720 while (vs->read_handler && vs->input.offset >= vs->read_handler_expect) {
721 size_t len = vs->read_handler_expect;
722 int ret;
724 ret = vs->read_handler(vs, vs->input.buffer, len);
725 if (vs->csock == -1)
726 return;
728 if (!ret) {
729 memmove(vs->input.buffer, vs->input.buffer + len, (vs->input.offset - len));
730 vs->input.offset -= len;
731 } else {
732 vs->read_handler_expect = ret;
737 static void vnc_write(VncState *vs, const void *data, size_t len)
739 buffer_reserve(&vs->output, len);
741 if (buffer_empty(&vs->output)) {
742 qemu_set_fd_handler2(vs->csock, NULL, vnc_client_read, vnc_client_write, vs);
745 buffer_append(&vs->output, data, len);
748 static void vnc_write_s32(VncState *vs, int32_t value)
750 vnc_write_u32(vs, *(uint32_t *)&value);
753 static void vnc_write_u32(VncState *vs, uint32_t value)
755 uint8_t buf[4];
757 buf[0] = (value >> 24) & 0xFF;
758 buf[1] = (value >> 16) & 0xFF;
759 buf[2] = (value >> 8) & 0xFF;
760 buf[3] = value & 0xFF;
762 vnc_write(vs, buf, 4);
765 static void vnc_write_u16(VncState *vs, uint16_t value)
767 uint8_t buf[2];
769 buf[0] = (value >> 8) & 0xFF;
770 buf[1] = value & 0xFF;
772 vnc_write(vs, buf, 2);
775 static void vnc_write_u8(VncState *vs, uint8_t value)
777 vnc_write(vs, (char *)&value, 1);
780 static void vnc_flush(VncState *vs)
782 if (vs->output.offset)
783 vnc_client_write(vs);
786 static uint8_t read_u8(uint8_t *data, size_t offset)
788 return data[offset];
791 static uint16_t read_u16(uint8_t *data, size_t offset)
793 return ((data[offset] & 0xFF) << 8) | (data[offset + 1] & 0xFF);
796 static int32_t read_s32(uint8_t *data, size_t offset)
798 return (int32_t)((data[offset] << 24) | (data[offset + 1] << 16) |
799 (data[offset + 2] << 8) | data[offset + 3]);
802 static uint32_t read_u32(uint8_t *data, size_t offset)
804 return ((data[offset] << 24) | (data[offset + 1] << 16) |
805 (data[offset + 2] << 8) | data[offset + 3]);
808 #if CONFIG_VNC_TLS
809 ssize_t vnc_tls_push(gnutls_transport_ptr_t transport,
810 const void *data,
811 size_t len) {
812 struct VncState *vs = (struct VncState *)transport;
813 int ret;
815 retry:
816 ret = send(vs->csock, data, len, 0);
817 if (ret < 0) {
818 if (errno == EINTR)
819 goto retry;
820 return -1;
822 return ret;
826 ssize_t vnc_tls_pull(gnutls_transport_ptr_t transport,
827 void *data,
828 size_t len) {
829 struct VncState *vs = (struct VncState *)transport;
830 int ret;
832 retry:
833 ret = recv(vs->csock, data, len, 0);
834 if (ret < 0) {
835 if (errno == EINTR)
836 goto retry;
837 return -1;
839 return ret;
841 #endif /* CONFIG_VNC_TLS */
843 static void client_cut_text(VncState *vs, size_t len, char *text)
847 static void check_pointer_type_change(VncState *vs, int absolute)
849 if (vs->has_pointer_type_change && vs->absolute != absolute) {
850 vnc_write_u8(vs, 0);
851 vnc_write_u8(vs, 0);
852 vnc_write_u16(vs, 1);
853 vnc_framebuffer_update(vs, absolute, 0,
854 vs->ds->width, vs->ds->height, -257);
855 vnc_flush(vs);
857 vs->absolute = absolute;
860 static void pointer_event(VncState *vs, int button_mask, int x, int y)
862 int buttons = 0;
863 int dz = 0;
865 if (button_mask & 0x01)
866 buttons |= MOUSE_EVENT_LBUTTON;
867 if (button_mask & 0x02)
868 buttons |= MOUSE_EVENT_MBUTTON;
869 if (button_mask & 0x04)
870 buttons |= MOUSE_EVENT_RBUTTON;
871 if (button_mask & 0x08)
872 dz = -1;
873 if (button_mask & 0x10)
874 dz = 1;
876 if (vs->absolute) {
877 kbd_mouse_event(x * 0x7FFF / vs->ds->width,
878 y * 0x7FFF / vs->ds->height,
879 dz, buttons);
880 } else if (vs->has_pointer_type_change) {
881 x -= 0x7FFF;
882 y -= 0x7FFF;
884 kbd_mouse_event(x, y, dz, buttons);
885 } else {
886 if (vs->last_x != -1)
887 kbd_mouse_event(x - vs->last_x,
888 y - vs->last_y,
889 dz, buttons);
890 vs->last_x = x;
891 vs->last_y = y;
894 check_pointer_type_change(vs, kbd_mouse_is_absolute());
897 static void reset_keys(VncState *vs)
899 int i;
900 for(i = 0; i < 256; i++) {
901 if (vs->modifiers_state[i]) {
902 if (i & 0x80)
903 kbd_put_keycode(0xe0);
904 kbd_put_keycode(i | 0x80);
905 vs->modifiers_state[i] = 0;
910 static void do_key_event(VncState *vs, int down, uint32_t sym)
912 int keycode;
914 keycode = keysym2scancode(vs->kbd_layout, sym & 0xFFFF);
916 /* QEMU console switch */
917 switch(keycode) {
918 case 0x2a: /* Left Shift */
919 case 0x36: /* Right Shift */
920 case 0x1d: /* Left CTRL */
921 case 0x9d: /* Right CTRL */
922 case 0x38: /* Left ALT */
923 case 0xb8: /* Right ALT */
924 if (down)
925 vs->modifiers_state[keycode] = 1;
926 else
927 vs->modifiers_state[keycode] = 0;
928 break;
929 case 0x02 ... 0x0a: /* '1' to '9' keys */
930 if (down && vs->modifiers_state[0x1d] && vs->modifiers_state[0x38]) {
931 /* Reset the modifiers sent to the current console */
932 reset_keys(vs);
933 console_select(keycode - 0x02);
934 return;
936 break;
939 if (is_graphic_console()) {
940 if (keycode & 0x80)
941 kbd_put_keycode(0xe0);
942 if (down)
943 kbd_put_keycode(keycode & 0x7f);
944 else
945 kbd_put_keycode(keycode | 0x80);
946 } else {
947 /* QEMU console emulation */
948 if (down) {
949 switch (keycode) {
950 case 0x2a: /* Left Shift */
951 case 0x36: /* Right Shift */
952 case 0x1d: /* Left CTRL */
953 case 0x9d: /* Right CTRL */
954 case 0x38: /* Left ALT */
955 case 0xb8: /* Right ALT */
956 break;
957 case 0xc8:
958 kbd_put_keysym(QEMU_KEY_UP);
959 break;
960 case 0xd0:
961 kbd_put_keysym(QEMU_KEY_DOWN);
962 break;
963 case 0xcb:
964 kbd_put_keysym(QEMU_KEY_LEFT);
965 break;
966 case 0xcd:
967 kbd_put_keysym(QEMU_KEY_RIGHT);
968 break;
969 case 0xd3:
970 kbd_put_keysym(QEMU_KEY_DELETE);
971 break;
972 case 0xc7:
973 kbd_put_keysym(QEMU_KEY_HOME);
974 break;
975 case 0xcf:
976 kbd_put_keysym(QEMU_KEY_END);
977 break;
978 case 0xc9:
979 kbd_put_keysym(QEMU_KEY_PAGEUP);
980 break;
981 case 0xd1:
982 kbd_put_keysym(QEMU_KEY_PAGEDOWN);
983 break;
984 default:
985 kbd_put_keysym(sym);
986 break;
992 static void key_event(VncState *vs, int down, uint32_t sym)
994 if (sym >= 'A' && sym <= 'Z')
995 sym = sym - 'A' + 'a';
996 do_key_event(vs, down, sym);
999 static void framebuffer_update_request(VncState *vs, int incremental,
1000 int x_position, int y_position,
1001 int w, int h)
1003 if (x_position > vs->ds->width)
1004 x_position = vs->ds->width;
1005 if (y_position > vs->ds->height)
1006 y_position = vs->ds->height;
1007 if (x_position + w >= vs->ds->width)
1008 w = vs->ds->width - x_position;
1009 if (y_position + h >= vs->ds->height)
1010 h = vs->ds->height - y_position;
1012 int i;
1013 vs->need_update = 1;
1014 if (!incremental) {
1015 char *old_row = vs->old_data + y_position * vs->ds->linesize;
1017 for (i = 0; i < h; i++) {
1018 vnc_set_bits(vs->dirty_row[y_position + i],
1019 (vs->ds->width / 16), VNC_DIRTY_WORDS);
1020 memset(old_row, 42, vs->ds->width * vs->depth);
1021 old_row += vs->ds->linesize;
1026 static void set_encodings(VncState *vs, int32_t *encodings, size_t n_encodings)
1028 int i;
1030 vs->has_hextile = 0;
1031 vs->has_resize = 0;
1032 vs->has_pointer_type_change = 0;
1033 vs->absolute = -1;
1034 vs->ds->dpy_copy = NULL;
1036 for (i = n_encodings - 1; i >= 0; i--) {
1037 switch (encodings[i]) {
1038 case 0: /* Raw */
1039 vs->has_hextile = 0;
1040 break;
1041 case 1: /* CopyRect */
1042 vs->ds->dpy_copy = vnc_copy;
1043 break;
1044 case 5: /* Hextile */
1045 vs->has_hextile = 1;
1046 break;
1047 case -223: /* DesktopResize */
1048 vs->has_resize = 1;
1049 break;
1050 case -257:
1051 vs->has_pointer_type_change = 1;
1052 break;
1053 default:
1054 break;
1058 check_pointer_type_change(vs, kbd_mouse_is_absolute());
1061 static int compute_nbits(unsigned int val)
1063 int n;
1064 n = 0;
1065 while (val != 0) {
1066 n++;
1067 val >>= 1;
1069 return n;
1072 static void set_pixel_format(VncState *vs,
1073 int bits_per_pixel, int depth,
1074 int big_endian_flag, int true_color_flag,
1075 int red_max, int green_max, int blue_max,
1076 int red_shift, int green_shift, int blue_shift)
1078 int host_big_endian_flag;
1080 #ifdef WORDS_BIGENDIAN
1081 host_big_endian_flag = 1;
1082 #else
1083 host_big_endian_flag = 0;
1084 #endif
1085 if (!true_color_flag) {
1086 fail:
1087 vnc_client_error(vs);
1088 return;
1090 if (bits_per_pixel == 32 &&
1091 host_big_endian_flag == big_endian_flag &&
1092 red_max == 0xff && green_max == 0xff && blue_max == 0xff &&
1093 red_shift == 16 && green_shift == 8 && blue_shift == 0) {
1094 vs->depth = 4;
1095 vs->write_pixels = vnc_write_pixels_copy;
1096 vs->send_hextile_tile = send_hextile_tile_32;
1097 } else
1098 if (bits_per_pixel == 16 &&
1099 host_big_endian_flag == big_endian_flag &&
1100 red_max == 31 && green_max == 63 && blue_max == 31 &&
1101 red_shift == 11 && green_shift == 5 && blue_shift == 0) {
1102 vs->depth = 2;
1103 vs->write_pixels = vnc_write_pixels_copy;
1104 vs->send_hextile_tile = send_hextile_tile_16;
1105 } else
1106 if (bits_per_pixel == 8 &&
1107 red_max == 7 && green_max == 7 && blue_max == 3 &&
1108 red_shift == 5 && green_shift == 2 && blue_shift == 0) {
1109 vs->depth = 1;
1110 vs->write_pixels = vnc_write_pixels_copy;
1111 vs->send_hextile_tile = send_hextile_tile_8;
1112 } else
1114 /* generic and slower case */
1115 if (bits_per_pixel != 8 &&
1116 bits_per_pixel != 16 &&
1117 bits_per_pixel != 32)
1118 goto fail;
1119 vs->depth = 4;
1120 vs->red_shift = red_shift;
1121 vs->red_max = red_max;
1122 vs->red_shift1 = 24 - compute_nbits(red_max);
1123 vs->green_shift = green_shift;
1124 vs->green_max = green_max;
1125 vs->green_shift1 = 16 - compute_nbits(green_max);
1126 vs->blue_shift = blue_shift;
1127 vs->blue_max = blue_max;
1128 vs->blue_shift1 = 8 - compute_nbits(blue_max);
1129 vs->pix_bpp = bits_per_pixel / 8;
1130 vs->pix_big_endian = big_endian_flag;
1131 vs->write_pixels = vnc_write_pixels_generic;
1132 vs->send_hextile_tile = send_hextile_tile_generic;
1135 vnc_dpy_resize(vs->ds, vs->ds->width, vs->ds->height);
1136 memset(vs->dirty_row, 0xFF, sizeof(vs->dirty_row));
1137 memset(vs->old_data, 42, vs->ds->linesize * vs->ds->height);
1139 vga_hw_invalidate();
1140 vga_hw_update();
1143 static int protocol_client_msg(VncState *vs, char *data, size_t len)
1145 int i;
1146 uint16_t limit;
1148 switch (data[0]) {
1149 case 0:
1150 if (len == 1)
1151 return 20;
1153 set_pixel_format(vs, read_u8(data, 4), read_u8(data, 5),
1154 read_u8(data, 6), read_u8(data, 7),
1155 read_u16(data, 8), read_u16(data, 10),
1156 read_u16(data, 12), read_u8(data, 14),
1157 read_u8(data, 15), read_u8(data, 16));
1158 break;
1159 case 2:
1160 if (len == 1)
1161 return 4;
1163 if (len == 4)
1164 return 4 + (read_u16(data, 2) * 4);
1166 limit = read_u16(data, 2);
1167 for (i = 0; i < limit; i++) {
1168 int32_t val = read_s32(data, 4 + (i * 4));
1169 memcpy(data + 4 + (i * 4), &val, sizeof(val));
1172 set_encodings(vs, (int32_t *)(data + 4), limit);
1173 break;
1174 case 3:
1175 if (len == 1)
1176 return 10;
1178 framebuffer_update_request(vs,
1179 read_u8(data, 1), read_u16(data, 2), read_u16(data, 4),
1180 read_u16(data, 6), read_u16(data, 8));
1181 break;
1182 case 4:
1183 if (len == 1)
1184 return 8;
1186 key_event(vs, read_u8(data, 1), read_u32(data, 4));
1187 break;
1188 case 5:
1189 if (len == 1)
1190 return 6;
1192 pointer_event(vs, read_u8(data, 1), read_u16(data, 2), read_u16(data, 4));
1193 break;
1194 case 6:
1195 if (len == 1)
1196 return 8;
1198 if (len == 8) {
1199 uint32_t dlen = read_u32(data, 4);
1200 if (dlen > 0)
1201 return 8 + dlen;
1204 client_cut_text(vs, read_u32(data, 4), data + 8);
1205 break;
1206 default:
1207 printf("Msg: %d\n", data[0]);
1208 vnc_client_error(vs);
1209 break;
1212 vnc_read_when(vs, protocol_client_msg, 1);
1213 return 0;
1216 static int protocol_client_init(VncState *vs, char *data, size_t len)
1218 char pad[3] = { 0, 0, 0 };
1219 char buf[1024];
1220 int size;
1221 unsigned char *prog = "QEMU";
1223 vs->width = vs->ds->width;
1224 vs->height = vs->ds->height;
1225 vnc_write_u16(vs, vs->ds->width);
1226 vnc_write_u16(vs, vs->ds->height);
1228 vnc_write_u8(vs, vs->depth * 8); /* bits-per-pixel */
1229 vnc_write_u8(vs, vs->depth * 8); /* depth */
1230 #ifdef WORDS_BIGENDIAN
1231 vnc_write_u8(vs, 1); /* big-endian-flag */
1232 #else
1233 vnc_write_u8(vs, 0); /* big-endian-flag */
1234 #endif
1235 vnc_write_u8(vs, 1); /* true-color-flag */
1236 if (vs->depth == 4) {
1237 vnc_write_u16(vs, 0xFF); /* red-max */
1238 vnc_write_u16(vs, 0xFF); /* green-max */
1239 vnc_write_u16(vs, 0xFF); /* blue-max */
1240 vnc_write_u8(vs, 16); /* red-shift */
1241 vnc_write_u8(vs, 8); /* green-shift */
1242 vnc_write_u8(vs, 0); /* blue-shift */
1243 vs->send_hextile_tile = send_hextile_tile_32;
1244 } else if (vs->depth == 2) {
1245 vnc_write_u16(vs, 31); /* red-max */
1246 vnc_write_u16(vs, 63); /* green-max */
1247 vnc_write_u16(vs, 31); /* blue-max */
1248 vnc_write_u8(vs, 11); /* red-shift */
1249 vnc_write_u8(vs, 5); /* green-shift */
1250 vnc_write_u8(vs, 0); /* blue-shift */
1251 vs->send_hextile_tile = send_hextile_tile_16;
1252 } else if (vs->depth == 1) {
1253 /* XXX: change QEMU pixel 8 bit pixel format to match the VNC one ? */
1254 vnc_write_u16(vs, 7); /* red-max */
1255 vnc_write_u16(vs, 7); /* green-max */
1256 vnc_write_u16(vs, 3); /* blue-max */
1257 vnc_write_u8(vs, 5); /* red-shift */
1258 vnc_write_u8(vs, 2); /* green-shift */
1259 vnc_write_u8(vs, 0); /* blue-shift */
1260 vs->send_hextile_tile = send_hextile_tile_8;
1262 vs->write_pixels = vnc_write_pixels_copy;
1264 vnc_write(vs, pad, 3); /* padding */
1266 #if USE_KVM
1267 if (kvm_allowed)
1268 prog = "QEMU/KVM";
1269 #endif
1271 if (qemu_name)
1272 size = snprintf(buf, sizeof(buf), "%s (%s)", prog, qemu_name);
1273 else
1274 size = snprintf(buf, sizeof(buf), "%s", prog);
1276 vnc_write_u32(vs, size);
1277 vnc_write(vs, buf, size);
1278 vnc_flush(vs);
1280 vnc_read_when(vs, protocol_client_msg, 1);
1282 return 0;
1285 static void make_challenge(VncState *vs)
1287 int i;
1289 srand(time(NULL)+getpid()+getpid()*987654+rand());
1291 for (i = 0 ; i < sizeof(vs->challenge) ; i++)
1292 vs->challenge[i] = (int) (256.0*rand()/(RAND_MAX+1.0));
1295 static int protocol_client_auth_vnc(VncState *vs, char *data, size_t len)
1297 char response[VNC_AUTH_CHALLENGE_SIZE];
1298 int i, j, pwlen;
1299 char key[8];
1301 if (!vs->password || !vs->password[0]) {
1302 VNC_DEBUG("No password configured on server");
1303 vnc_write_u32(vs, 1); /* Reject auth */
1304 if (vs->minor >= 8) {
1305 static const char err[] = "Authentication failed";
1306 vnc_write_u32(vs, sizeof(err));
1307 vnc_write(vs, err, sizeof(err));
1309 vnc_flush(vs);
1310 vnc_client_error(vs);
1311 return 0;
1314 memcpy(response, vs->challenge, VNC_AUTH_CHALLENGE_SIZE);
1316 /* Calculate the expected challenge response */
1317 pwlen = strlen(vs->password);
1318 for (i=0; i<sizeof(key); i++)
1319 key[i] = i<pwlen ? vs->password[i] : 0;
1320 deskey(key, EN0);
1321 for (j = 0; j < VNC_AUTH_CHALLENGE_SIZE; j += 8)
1322 des(response+j, response+j);
1324 /* Compare expected vs actual challenge response */
1325 if (memcmp(response, data, VNC_AUTH_CHALLENGE_SIZE) != 0) {
1326 VNC_DEBUG("Client challenge reponse did not match\n");
1327 vnc_write_u32(vs, 1); /* Reject auth */
1328 if (vs->minor >= 8) {
1329 static const char err[] = "Authentication failed";
1330 vnc_write_u32(vs, sizeof(err));
1331 vnc_write(vs, err, sizeof(err));
1333 vnc_flush(vs);
1334 vnc_client_error(vs);
1335 } else {
1336 VNC_DEBUG("Accepting VNC challenge response\n");
1337 vnc_write_u32(vs, 0); /* Accept auth */
1338 vnc_flush(vs);
1340 vnc_read_when(vs, protocol_client_init, 1);
1342 return 0;
1345 static int start_auth_vnc(VncState *vs)
1347 make_challenge(vs);
1348 /* Send client a 'random' challenge */
1349 vnc_write(vs, vs->challenge, sizeof(vs->challenge));
1350 vnc_flush(vs);
1352 vnc_read_when(vs, protocol_client_auth_vnc, sizeof(vs->challenge));
1353 return 0;
1357 #if CONFIG_VNC_TLS
1358 #define DH_BITS 1024
1359 static gnutls_dh_params_t dh_params;
1361 static int vnc_tls_initialize(void)
1363 static int tlsinitialized = 0;
1365 if (tlsinitialized)
1366 return 1;
1368 if (gnutls_global_init () < 0)
1369 return 0;
1371 /* XXX ought to re-generate diffie-hellmen params periodically */
1372 if (gnutls_dh_params_init (&dh_params) < 0)
1373 return 0;
1374 if (gnutls_dh_params_generate2 (dh_params, DH_BITS) < 0)
1375 return 0;
1377 #if _VNC_DEBUG == 2
1378 gnutls_global_set_log_level(10);
1379 gnutls_global_set_log_function(vnc_debug_gnutls_log);
1380 #endif
1382 tlsinitialized = 1;
1384 return 1;
1387 static gnutls_anon_server_credentials vnc_tls_initialize_anon_cred(void)
1389 gnutls_anon_server_credentials anon_cred;
1390 int ret;
1392 if ((ret = gnutls_anon_allocate_server_credentials(&anon_cred)) < 0) {
1393 VNC_DEBUG("Cannot allocate credentials %s\n", gnutls_strerror(ret));
1394 return NULL;
1397 gnutls_anon_set_server_dh_params(anon_cred, dh_params);
1399 return anon_cred;
1403 static gnutls_certificate_credentials_t vnc_tls_initialize_x509_cred(VncState *vs)
1405 gnutls_certificate_credentials_t x509_cred;
1406 int ret;
1408 if (!vs->x509cacert) {
1409 VNC_DEBUG("No CA x509 certificate specified\n");
1410 return NULL;
1412 if (!vs->x509cert) {
1413 VNC_DEBUG("No server x509 certificate specified\n");
1414 return NULL;
1416 if (!vs->x509key) {
1417 VNC_DEBUG("No server private key specified\n");
1418 return NULL;
1421 if ((ret = gnutls_certificate_allocate_credentials(&x509_cred)) < 0) {
1422 VNC_DEBUG("Cannot allocate credentials %s\n", gnutls_strerror(ret));
1423 return NULL;
1425 if ((ret = gnutls_certificate_set_x509_trust_file(x509_cred,
1426 vs->x509cacert,
1427 GNUTLS_X509_FMT_PEM)) < 0) {
1428 VNC_DEBUG("Cannot load CA certificate %s\n", gnutls_strerror(ret));
1429 gnutls_certificate_free_credentials(x509_cred);
1430 return NULL;
1433 if ((ret = gnutls_certificate_set_x509_key_file (x509_cred,
1434 vs->x509cert,
1435 vs->x509key,
1436 GNUTLS_X509_FMT_PEM)) < 0) {
1437 VNC_DEBUG("Cannot load certificate & key %s\n", gnutls_strerror(ret));
1438 gnutls_certificate_free_credentials(x509_cred);
1439 return NULL;
1442 if (vs->x509cacrl) {
1443 if ((ret = gnutls_certificate_set_x509_crl_file(x509_cred,
1444 vs->x509cacrl,
1445 GNUTLS_X509_FMT_PEM)) < 0) {
1446 VNC_DEBUG("Cannot load CRL %s\n", gnutls_strerror(ret));
1447 gnutls_certificate_free_credentials(x509_cred);
1448 return NULL;
1452 gnutls_certificate_set_dh_params (x509_cred, dh_params);
1454 return x509_cred;
1457 static int vnc_validate_certificate(struct VncState *vs)
1459 int ret;
1460 unsigned int status;
1461 const gnutls_datum_t *certs;
1462 unsigned int nCerts, i;
1463 time_t now;
1465 VNC_DEBUG("Validating client certificate\n");
1466 if ((ret = gnutls_certificate_verify_peers2 (vs->tls_session, &status)) < 0) {
1467 VNC_DEBUG("Verify failed %s\n", gnutls_strerror(ret));
1468 return -1;
1471 if ((now = time(NULL)) == ((time_t)-1)) {
1472 return -1;
1475 if (status != 0) {
1476 if (status & GNUTLS_CERT_INVALID)
1477 VNC_DEBUG("The certificate is not trusted.\n");
1479 if (status & GNUTLS_CERT_SIGNER_NOT_FOUND)
1480 VNC_DEBUG("The certificate hasn't got a known issuer.\n");
1482 if (status & GNUTLS_CERT_REVOKED)
1483 VNC_DEBUG("The certificate has been revoked.\n");
1485 if (status & GNUTLS_CERT_INSECURE_ALGORITHM)
1486 VNC_DEBUG("The certificate uses an insecure algorithm\n");
1488 return -1;
1489 } else {
1490 VNC_DEBUG("Certificate is valid!\n");
1493 /* Only support x509 for now */
1494 if (gnutls_certificate_type_get(vs->tls_session) != GNUTLS_CRT_X509)
1495 return -1;
1497 if (!(certs = gnutls_certificate_get_peers(vs->tls_session, &nCerts)))
1498 return -1;
1500 for (i = 0 ; i < nCerts ; i++) {
1501 gnutls_x509_crt_t cert;
1502 VNC_DEBUG ("Checking certificate chain %d\n", i);
1503 if (gnutls_x509_crt_init (&cert) < 0)
1504 return -1;
1506 if (gnutls_x509_crt_import(cert, &certs[i], GNUTLS_X509_FMT_DER) < 0) {
1507 gnutls_x509_crt_deinit (cert);
1508 return -1;
1511 if (gnutls_x509_crt_get_expiration_time (cert) < now) {
1512 VNC_DEBUG("The certificate has expired\n");
1513 gnutls_x509_crt_deinit (cert);
1514 return -1;
1517 if (gnutls_x509_crt_get_activation_time (cert) > now) {
1518 VNC_DEBUG("The certificate is not yet activated\n");
1519 gnutls_x509_crt_deinit (cert);
1520 return -1;
1523 if (gnutls_x509_crt_get_activation_time (cert) > now) {
1524 VNC_DEBUG("The certificate is not yet activated\n");
1525 gnutls_x509_crt_deinit (cert);
1526 return -1;
1529 gnutls_x509_crt_deinit (cert);
1532 return 0;
1536 static int start_auth_vencrypt_subauth(VncState *vs)
1538 switch (vs->subauth) {
1539 case VNC_AUTH_VENCRYPT_TLSNONE:
1540 case VNC_AUTH_VENCRYPT_X509NONE:
1541 VNC_DEBUG("Accept TLS auth none\n");
1542 vnc_write_u32(vs, 0); /* Accept auth completion */
1543 vnc_read_when(vs, protocol_client_init, 1);
1544 break;
1546 case VNC_AUTH_VENCRYPT_TLSVNC:
1547 case VNC_AUTH_VENCRYPT_X509VNC:
1548 VNC_DEBUG("Start TLS auth VNC\n");
1549 return start_auth_vnc(vs);
1551 default: /* Should not be possible, but just in case */
1552 VNC_DEBUG("Reject auth %d\n", vs->auth);
1553 vnc_write_u8(vs, 1);
1554 if (vs->minor >= 8) {
1555 static const char err[] = "Unsupported authentication type";
1556 vnc_write_u32(vs, sizeof(err));
1557 vnc_write(vs, err, sizeof(err));
1559 vnc_client_error(vs);
1562 return 0;
1565 static void vnc_handshake_io(void *opaque);
1567 static int vnc_continue_handshake(struct VncState *vs) {
1568 int ret;
1570 if ((ret = gnutls_handshake(vs->tls_session)) < 0) {
1571 if (!gnutls_error_is_fatal(ret)) {
1572 VNC_DEBUG("Handshake interrupted (blocking)\n");
1573 if (!gnutls_record_get_direction(vs->tls_session))
1574 qemu_set_fd_handler(vs->csock, vnc_handshake_io, NULL, vs);
1575 else
1576 qemu_set_fd_handler(vs->csock, NULL, vnc_handshake_io, vs);
1577 return 0;
1579 VNC_DEBUG("Handshake failed %s\n", gnutls_strerror(ret));
1580 vnc_client_error(vs);
1581 return -1;
1584 if (vs->x509verify) {
1585 if (vnc_validate_certificate(vs) < 0) {
1586 VNC_DEBUG("Client verification failed\n");
1587 vnc_client_error(vs);
1588 return -1;
1589 } else {
1590 VNC_DEBUG("Client verification passed\n");
1594 VNC_DEBUG("Handshake done, switching to TLS data mode\n");
1595 vs->wiremode = VNC_WIREMODE_TLS;
1596 qemu_set_fd_handler2(vs->csock, NULL, vnc_client_read, vnc_client_write, vs);
1598 return start_auth_vencrypt_subauth(vs);
1601 static void vnc_handshake_io(void *opaque) {
1602 struct VncState *vs = (struct VncState *)opaque;
1604 VNC_DEBUG("Handshake IO continue\n");
1605 vnc_continue_handshake(vs);
1608 #define NEED_X509_AUTH(vs) \
1609 ((vs)->subauth == VNC_AUTH_VENCRYPT_X509NONE || \
1610 (vs)->subauth == VNC_AUTH_VENCRYPT_X509VNC || \
1611 (vs)->subauth == VNC_AUTH_VENCRYPT_X509PLAIN)
1614 static int vnc_start_tls(struct VncState *vs) {
1615 static const int cert_type_priority[] = { GNUTLS_CRT_X509, 0 };
1616 static const int protocol_priority[]= { GNUTLS_TLS1_1, GNUTLS_TLS1_0, GNUTLS_SSL3, 0 };
1617 static const int kx_anon[] = {GNUTLS_KX_ANON_DH, 0};
1618 static const int kx_x509[] = {GNUTLS_KX_DHE_DSS, GNUTLS_KX_RSA, GNUTLS_KX_DHE_RSA, GNUTLS_KX_SRP, 0};
1620 VNC_DEBUG("Do TLS setup\n");
1621 if (vnc_tls_initialize() < 0) {
1622 VNC_DEBUG("Failed to init TLS\n");
1623 vnc_client_error(vs);
1624 return -1;
1626 if (vs->tls_session == NULL) {
1627 if (gnutls_init(&vs->tls_session, GNUTLS_SERVER) < 0) {
1628 vnc_client_error(vs);
1629 return -1;
1632 if (gnutls_set_default_priority(vs->tls_session) < 0) {
1633 gnutls_deinit(vs->tls_session);
1634 vs->tls_session = NULL;
1635 vnc_client_error(vs);
1636 return -1;
1639 if (gnutls_kx_set_priority(vs->tls_session, NEED_X509_AUTH(vs) ? kx_x509 : kx_anon) < 0) {
1640 gnutls_deinit(vs->tls_session);
1641 vs->tls_session = NULL;
1642 vnc_client_error(vs);
1643 return -1;
1646 if (gnutls_certificate_type_set_priority(vs->tls_session, cert_type_priority) < 0) {
1647 gnutls_deinit(vs->tls_session);
1648 vs->tls_session = NULL;
1649 vnc_client_error(vs);
1650 return -1;
1653 if (gnutls_protocol_set_priority(vs->tls_session, protocol_priority) < 0) {
1654 gnutls_deinit(vs->tls_session);
1655 vs->tls_session = NULL;
1656 vnc_client_error(vs);
1657 return -1;
1660 if (NEED_X509_AUTH(vs)) {
1661 gnutls_certificate_server_credentials x509_cred = vnc_tls_initialize_x509_cred(vs);
1662 if (!x509_cred) {
1663 gnutls_deinit(vs->tls_session);
1664 vs->tls_session = NULL;
1665 vnc_client_error(vs);
1666 return -1;
1668 if (gnutls_credentials_set(vs->tls_session, GNUTLS_CRD_CERTIFICATE, x509_cred) < 0) {
1669 gnutls_deinit(vs->tls_session);
1670 vs->tls_session = NULL;
1671 gnutls_certificate_free_credentials(x509_cred);
1672 vnc_client_error(vs);
1673 return -1;
1675 if (vs->x509verify) {
1676 VNC_DEBUG("Requesting a client certificate\n");
1677 gnutls_certificate_server_set_request (vs->tls_session, GNUTLS_CERT_REQUEST);
1680 } else {
1681 gnutls_anon_server_credentials anon_cred = vnc_tls_initialize_anon_cred();
1682 if (!anon_cred) {
1683 gnutls_deinit(vs->tls_session);
1684 vs->tls_session = NULL;
1685 vnc_client_error(vs);
1686 return -1;
1688 if (gnutls_credentials_set(vs->tls_session, GNUTLS_CRD_ANON, anon_cred) < 0) {
1689 gnutls_deinit(vs->tls_session);
1690 vs->tls_session = NULL;
1691 gnutls_anon_free_server_credentials(anon_cred);
1692 vnc_client_error(vs);
1693 return -1;
1697 gnutls_transport_set_ptr(vs->tls_session, (gnutls_transport_ptr_t)vs);
1698 gnutls_transport_set_push_function(vs->tls_session, vnc_tls_push);
1699 gnutls_transport_set_pull_function(vs->tls_session, vnc_tls_pull);
1702 VNC_DEBUG("Start TLS handshake process\n");
1703 return vnc_continue_handshake(vs);
1706 static int protocol_client_vencrypt_auth(VncState *vs, char *data, size_t len)
1708 int auth = read_u32(data, 0);
1710 if (auth != vs->subauth) {
1711 VNC_DEBUG("Rejecting auth %d\n", auth);
1712 vnc_write_u8(vs, 0); /* Reject auth */
1713 vnc_flush(vs);
1714 vnc_client_error(vs);
1715 } else {
1716 VNC_DEBUG("Accepting auth %d, starting handshake\n", auth);
1717 vnc_write_u8(vs, 1); /* Accept auth */
1718 vnc_flush(vs);
1720 if (vnc_start_tls(vs) < 0) {
1721 VNC_DEBUG("Failed to complete TLS\n");
1722 return 0;
1725 if (vs->wiremode == VNC_WIREMODE_TLS) {
1726 VNC_DEBUG("Starting VeNCrypt subauth\n");
1727 return start_auth_vencrypt_subauth(vs);
1728 } else {
1729 VNC_DEBUG("TLS handshake blocked\n");
1730 return 0;
1733 return 0;
1736 static int protocol_client_vencrypt_init(VncState *vs, char *data, size_t len)
1738 if (data[0] != 0 ||
1739 data[1] != 2) {
1740 VNC_DEBUG("Unsupported VeNCrypt protocol %d.%d\n", (int)data[0], (int)data[1]);
1741 vnc_write_u8(vs, 1); /* Reject version */
1742 vnc_flush(vs);
1743 vnc_client_error(vs);
1744 } else {
1745 VNC_DEBUG("Sending allowed auth %d\n", vs->subauth);
1746 vnc_write_u8(vs, 0); /* Accept version */
1747 vnc_write_u8(vs, 1); /* Number of sub-auths */
1748 vnc_write_u32(vs, vs->subauth); /* The supported auth */
1749 vnc_flush(vs);
1750 vnc_read_when(vs, protocol_client_vencrypt_auth, 4);
1752 return 0;
1755 static int start_auth_vencrypt(VncState *vs)
1757 /* Send VeNCrypt version 0.2 */
1758 vnc_write_u8(vs, 0);
1759 vnc_write_u8(vs, 2);
1761 vnc_read_when(vs, protocol_client_vencrypt_init, 2);
1762 return 0;
1764 #endif /* CONFIG_VNC_TLS */
1766 static int protocol_client_auth(VncState *vs, char *data, size_t len)
1768 /* We only advertise 1 auth scheme at a time, so client
1769 * must pick the one we sent. Verify this */
1770 if (data[0] != vs->auth) { /* Reject auth */
1771 VNC_DEBUG("Reject auth %d\n", (int)data[0]);
1772 vnc_write_u32(vs, 1);
1773 if (vs->minor >= 8) {
1774 static const char err[] = "Authentication failed";
1775 vnc_write_u32(vs, sizeof(err));
1776 vnc_write(vs, err, sizeof(err));
1778 vnc_client_error(vs);
1779 } else { /* Accept requested auth */
1780 VNC_DEBUG("Client requested auth %d\n", (int)data[0]);
1781 switch (vs->auth) {
1782 case VNC_AUTH_NONE:
1783 VNC_DEBUG("Accept auth none\n");
1784 vnc_write_u32(vs, 0); /* Accept auth completion */
1785 vnc_read_when(vs, protocol_client_init, 1);
1786 break;
1788 case VNC_AUTH_VNC:
1789 VNC_DEBUG("Start VNC auth\n");
1790 return start_auth_vnc(vs);
1792 #if CONFIG_VNC_TLS
1793 case VNC_AUTH_VENCRYPT:
1794 VNC_DEBUG("Accept VeNCrypt auth\n");;
1795 return start_auth_vencrypt(vs);
1796 #endif /* CONFIG_VNC_TLS */
1798 default: /* Should not be possible, but just in case */
1799 VNC_DEBUG("Reject auth %d\n", vs->auth);
1800 vnc_write_u8(vs, 1);
1801 if (vs->minor >= 8) {
1802 static const char err[] = "Authentication failed";
1803 vnc_write_u32(vs, sizeof(err));
1804 vnc_write(vs, err, sizeof(err));
1806 vnc_client_error(vs);
1809 return 0;
1812 static int protocol_version(VncState *vs, char *version, size_t len)
1814 char local[13];
1816 memcpy(local, version, 12);
1817 local[12] = 0;
1819 if (sscanf(local, "RFB %03d.%03d\n", &vs->major, &vs->minor) != 2) {
1820 VNC_DEBUG("Malformed protocol version %s\n", local);
1821 vnc_client_error(vs);
1822 return 0;
1824 VNC_DEBUG("Client request protocol version %d.%d\n", vs->major, vs->minor);
1825 if (vs->major != 3 ||
1826 (vs->minor != 3 &&
1827 vs->minor != 4 &&
1828 vs->minor != 5 &&
1829 vs->minor != 7 &&
1830 vs->minor != 8)) {
1831 VNC_DEBUG("Unsupported client version\n");
1832 vnc_write_u32(vs, VNC_AUTH_INVALID);
1833 vnc_flush(vs);
1834 vnc_client_error(vs);
1835 return 0;
1837 /* Some broken clients report v3.4 or v3.5, which spec requires to be treated
1838 * as equivalent to v3.3 by servers
1840 if (vs->minor == 4 || vs->minor == 5)
1841 vs->minor = 3;
1843 if (vs->minor == 3) {
1844 if (vs->auth == VNC_AUTH_NONE) {
1845 VNC_DEBUG("Tell client auth none\n");
1846 vnc_write_u32(vs, vs->auth);
1847 vnc_flush(vs);
1848 vnc_read_when(vs, protocol_client_init, 1);
1849 } else if (vs->auth == VNC_AUTH_VNC) {
1850 VNC_DEBUG("Tell client VNC auth\n");
1851 vnc_write_u32(vs, vs->auth);
1852 vnc_flush(vs);
1853 start_auth_vnc(vs);
1854 } else {
1855 VNC_DEBUG("Unsupported auth %d for protocol 3.3\n", vs->auth);
1856 vnc_write_u32(vs, VNC_AUTH_INVALID);
1857 vnc_flush(vs);
1858 vnc_client_error(vs);
1860 } else {
1861 VNC_DEBUG("Telling client we support auth %d\n", vs->auth);
1862 vnc_write_u8(vs, 1); /* num auth */
1863 vnc_write_u8(vs, vs->auth);
1864 vnc_read_when(vs, protocol_client_auth, 1);
1865 vnc_flush(vs);
1868 return 0;
1871 static void vnc_listen_read(void *opaque)
1873 VncState *vs = opaque;
1874 struct sockaddr_in addr;
1875 socklen_t addrlen = sizeof(addr);
1877 vs->csock = accept(vs->lsock, (struct sockaddr *)&addr, &addrlen);
1878 if (vs->csock != -1) {
1879 VNC_DEBUG("New client on socket %d\n", vs->csock);
1880 socket_set_nonblock(vs->csock);
1881 qemu_set_fd_handler2(vs->csock, NULL, vnc_client_read, NULL, opaque);
1882 vnc_write(vs, "RFB 003.008\n", 12);
1883 vnc_flush(vs);
1884 vnc_read_when(vs, protocol_version, 12);
1885 memset(vs->old_data, 0, vs->ds->linesize * vs->ds->height);
1886 memset(vs->dirty_row, 0xFF, sizeof(vs->dirty_row));
1887 vs->has_resize = 0;
1888 vs->has_hextile = 0;
1889 vs->ds->dpy_copy = NULL;
1893 extern int parse_host_port(struct sockaddr_in *saddr, const char *str);
1895 void vnc_display_init(DisplayState *ds)
1897 VncState *vs;
1899 vs = qemu_mallocz(sizeof(VncState));
1900 if (!vs)
1901 exit(1);
1903 ds->opaque = vs;
1904 vnc_state = vs;
1905 vs->display = NULL;
1906 vs->password = NULL;
1908 vs->lsock = -1;
1909 vs->csock = -1;
1910 vs->depth = 4;
1911 vs->last_x = -1;
1912 vs->last_y = -1;
1914 vs->ds = ds;
1916 if (!keyboard_layout)
1917 keyboard_layout = "en-us";
1919 vs->kbd_layout = init_keyboard_layout(keyboard_layout);
1920 if (!vs->kbd_layout)
1921 exit(1);
1923 vs->ds->data = NULL;
1924 vs->ds->dpy_update = vnc_dpy_update;
1925 vs->ds->dpy_resize = vnc_dpy_resize;
1926 vs->ds->dpy_refresh = vnc_dpy_refresh;
1928 memset(vs->dirty_row, 0xFF, sizeof(vs->dirty_row));
1930 vnc_dpy_resize(vs->ds, 640, 400);
1933 #if CONFIG_VNC_TLS
1934 static int vnc_set_x509_credential(VncState *vs,
1935 const char *certdir,
1936 const char *filename,
1937 char **cred,
1938 int ignoreMissing)
1940 struct stat sb;
1942 if (*cred) {
1943 qemu_free(*cred);
1944 *cred = NULL;
1947 if (!(*cred = qemu_malloc(strlen(certdir) + strlen(filename) + 2)))
1948 return -1;
1950 strcpy(*cred, certdir);
1951 strcat(*cred, "/");
1952 strcat(*cred, filename);
1954 VNC_DEBUG("Check %s\n", *cred);
1955 if (stat(*cred, &sb) < 0) {
1956 qemu_free(*cred);
1957 *cred = NULL;
1958 if (ignoreMissing && errno == ENOENT)
1959 return 0;
1960 return -1;
1963 return 0;
1966 static int vnc_set_x509_credential_dir(VncState *vs,
1967 const char *certdir)
1969 if (vnc_set_x509_credential(vs, certdir, X509_CA_CERT_FILE, &vs->x509cacert, 0) < 0)
1970 goto cleanup;
1971 if (vnc_set_x509_credential(vs, certdir, X509_CA_CRL_FILE, &vs->x509cacrl, 1) < 0)
1972 goto cleanup;
1973 if (vnc_set_x509_credential(vs, certdir, X509_SERVER_CERT_FILE, &vs->x509cert, 0) < 0)
1974 goto cleanup;
1975 if (vnc_set_x509_credential(vs, certdir, X509_SERVER_KEY_FILE, &vs->x509key, 0) < 0)
1976 goto cleanup;
1978 return 0;
1980 cleanup:
1981 qemu_free(vs->x509cacert);
1982 qemu_free(vs->x509cacrl);
1983 qemu_free(vs->x509cert);
1984 qemu_free(vs->x509key);
1985 vs->x509cacert = vs->x509cacrl = vs->x509cert = vs->x509key = NULL;
1986 return -1;
1988 #endif /* CONFIG_VNC_TLS */
1990 void vnc_display_close(DisplayState *ds)
1992 VncState *vs = ds ? (VncState *)ds->opaque : vnc_state;
1994 if (vs->display) {
1995 qemu_free(vs->display);
1996 vs->display = NULL;
1998 if (vs->lsock != -1) {
1999 qemu_set_fd_handler2(vs->lsock, NULL, NULL, NULL, NULL);
2000 close(vs->lsock);
2001 vs->lsock = -1;
2003 if (vs->csock != -1) {
2004 qemu_set_fd_handler2(vs->csock, NULL, NULL, NULL, NULL);
2005 closesocket(vs->csock);
2006 vs->csock = -1;
2007 buffer_reset(&vs->input);
2008 buffer_reset(&vs->output);
2009 vs->need_update = 0;
2010 #if CONFIG_VNC_TLS
2011 if (vs->tls_session) {
2012 gnutls_deinit(vs->tls_session);
2013 vs->tls_session = NULL;
2015 vs->wiremode = VNC_WIREMODE_CLEAR;
2016 #endif /* CONFIG_VNC_TLS */
2018 vs->auth = VNC_AUTH_INVALID;
2019 #if CONFIG_VNC_TLS
2020 vs->subauth = VNC_AUTH_INVALID;
2021 vs->x509verify = 0;
2022 #endif
2025 int vnc_display_password(DisplayState *ds, const char *password)
2027 VncState *vs = ds ? (VncState *)ds->opaque : vnc_state;
2029 if (vs->password) {
2030 qemu_free(vs->password);
2031 vs->password = NULL;
2033 if (password && password[0]) {
2034 if (!(vs->password = qemu_strdup(password)))
2035 return -1;
2038 return 0;
2041 int vnc_display_open(DisplayState *ds, const char *display)
2043 struct sockaddr *addr;
2044 struct sockaddr_in iaddr;
2045 #ifndef _WIN32
2046 struct sockaddr_un uaddr;
2047 #endif
2048 int reuse_addr, ret;
2049 socklen_t addrlen;
2050 const char *p;
2051 VncState *vs = ds ? (VncState *)ds->opaque : vnc_state;
2052 const char *options;
2053 int password = 0;
2054 #if CONFIG_VNC_TLS
2055 int tls = 0, x509 = 0;
2056 #endif
2058 vnc_display_close(ds);
2059 if (strcmp(display, "none") == 0)
2060 return 0;
2062 if (!(vs->display = strdup(display)))
2063 return -1;
2065 options = display;
2066 while ((options = strchr(options, ','))) {
2067 options++;
2068 if (strncmp(options, "password", 8) == 0) {
2069 password = 1; /* Require password auth */
2070 #if CONFIG_VNC_TLS
2071 } else if (strncmp(options, "tls", 3) == 0) {
2072 tls = 1; /* Require TLS */
2073 } else if (strncmp(options, "x509", 4) == 0) {
2074 char *start, *end;
2075 x509 = 1; /* Require x509 certificates */
2076 if (strncmp(options, "x509verify", 10) == 0)
2077 vs->x509verify = 1; /* ...and verify client certs */
2079 /* Now check for 'x509=/some/path' postfix
2080 * and use that to setup x509 certificate/key paths */
2081 start = strchr(options, '=');
2082 end = strchr(options, ',');
2083 if (start && (!end || (start < end))) {
2084 int len = end ? end-(start+1) : strlen(start+1);
2085 char *path = qemu_malloc(len+1);
2086 strncpy(path, start+1, len);
2087 path[len] = '\0';
2088 VNC_DEBUG("Trying certificate path '%s'\n", path);
2089 if (vnc_set_x509_credential_dir(vs, path) < 0) {
2090 fprintf(stderr, "Failed to find x509 certificates/keys in %s\n", path);
2091 qemu_free(path);
2092 qemu_free(vs->display);
2093 vs->display = NULL;
2094 return -1;
2096 qemu_free(path);
2097 } else {
2098 fprintf(stderr, "No certificate path provided\n");
2099 qemu_free(vs->display);
2100 vs->display = NULL;
2101 return -1;
2103 #endif
2107 if (password) {
2108 #if CONFIG_VNC_TLS
2109 if (tls) {
2110 vs->auth = VNC_AUTH_VENCRYPT;
2111 if (x509) {
2112 VNC_DEBUG("Initializing VNC server with x509 password auth\n");
2113 vs->subauth = VNC_AUTH_VENCRYPT_X509VNC;
2114 } else {
2115 VNC_DEBUG("Initializing VNC server with TLS password auth\n");
2116 vs->subauth = VNC_AUTH_VENCRYPT_TLSVNC;
2118 } else {
2119 #endif
2120 VNC_DEBUG("Initializing VNC server with password auth\n");
2121 vs->auth = VNC_AUTH_VNC;
2122 #if CONFIG_VNC_TLS
2123 vs->subauth = VNC_AUTH_INVALID;
2125 #endif
2126 } else {
2127 #if CONFIG_VNC_TLS
2128 if (tls) {
2129 vs->auth = VNC_AUTH_VENCRYPT;
2130 if (x509) {
2131 VNC_DEBUG("Initializing VNC server with x509 no auth\n");
2132 vs->subauth = VNC_AUTH_VENCRYPT_X509NONE;
2133 } else {
2134 VNC_DEBUG("Initializing VNC server with TLS no auth\n");
2135 vs->subauth = VNC_AUTH_VENCRYPT_TLSNONE;
2137 } else {
2138 #endif
2139 VNC_DEBUG("Initializing VNC server with no auth\n");
2140 vs->auth = VNC_AUTH_NONE;
2141 #if CONFIG_VNC_TLS
2142 vs->subauth = VNC_AUTH_INVALID;
2144 #endif
2146 #ifndef _WIN32
2147 if (strstart(display, "unix:", &p)) {
2148 addr = (struct sockaddr *)&uaddr;
2149 addrlen = sizeof(uaddr);
2151 vs->lsock = socket(PF_UNIX, SOCK_STREAM, 0);
2152 if (vs->lsock == -1) {
2153 fprintf(stderr, "Could not create socket\n");
2154 free(vs->display);
2155 vs->display = NULL;
2156 return -1;
2159 uaddr.sun_family = AF_UNIX;
2160 memset(uaddr.sun_path, 0, 108);
2161 snprintf(uaddr.sun_path, 108, "%s", p);
2163 unlink(uaddr.sun_path);
2164 } else
2165 #endif
2167 addr = (struct sockaddr *)&iaddr;
2168 addrlen = sizeof(iaddr);
2170 if (parse_host_port(&iaddr, display) < 0) {
2171 fprintf(stderr, "Could not parse VNC address\n");
2172 free(vs->display);
2173 vs->display = NULL;
2174 return -1;
2177 iaddr.sin_port = htons(ntohs(iaddr.sin_port) + 5900);
2179 vs->lsock = socket(PF_INET, SOCK_STREAM, 0);
2180 if (vs->lsock == -1) {
2181 fprintf(stderr, "Could not create socket\n");
2182 free(vs->display);
2183 vs->display = NULL;
2184 return -1;
2187 reuse_addr = 1;
2188 ret = setsockopt(vs->lsock, SOL_SOCKET, SO_REUSEADDR,
2189 (const char *)&reuse_addr, sizeof(reuse_addr));
2190 if (ret == -1) {
2191 fprintf(stderr, "setsockopt() failed\n");
2192 close(vs->lsock);
2193 vs->lsock = -1;
2194 free(vs->display);
2195 vs->display = NULL;
2196 return -1;
2200 if (bind(vs->lsock, addr, addrlen) == -1) {
2201 fprintf(stderr, "bind() failed\n");
2202 close(vs->lsock);
2203 vs->lsock = -1;
2204 free(vs->display);
2205 vs->display = NULL;
2206 return -1;
2209 if (listen(vs->lsock, 1) == -1) {
2210 fprintf(stderr, "listen() failed\n");
2211 close(vs->lsock);
2212 vs->lsock = -1;
2213 free(vs->display);
2214 vs->display = NULL;
2215 return -1;
2218 return qemu_set_fd_handler2(vs->lsock, vnc_listen_poll, vnc_listen_read, NULL, vs);