vnc-auth-vencrypt.c 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  1. /*
  2. * QEMU VNC display driver: VeNCrypt authentication setup
  3. *
  4. * Copyright (C) 2006 Anthony Liguori <anthony@codemonkey.ws>
  5. * Copyright (C) 2006 Fabrice Bellard
  6. * Copyright (C) 2009 Red Hat, Inc
  7. *
  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:
  14. *
  15. * The above copyright notice and this permission notice shall be included in
  16. * all copies or substantial portions of the Software.
  17. *
  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.
  25. */
  26. #include "vnc.h"
  27. static void start_auth_vencrypt_subauth(VncState *vs)
  28. {
  29. switch (vs->subauth) {
  30. case VNC_AUTH_VENCRYPT_TLSNONE:
  31. case VNC_AUTH_VENCRYPT_X509NONE:
  32. VNC_DEBUG("Accept TLS auth none\n");
  33. vnc_write_u32(vs, 0); /* Accept auth completion */
  34. start_client_init(vs);
  35. break;
  36. case VNC_AUTH_VENCRYPT_TLSVNC:
  37. case VNC_AUTH_VENCRYPT_X509VNC:
  38. VNC_DEBUG("Start TLS auth VNC\n");
  39. start_auth_vnc(vs);
  40. break;
  41. #ifdef CONFIG_VNC_SASL
  42. case VNC_AUTH_VENCRYPT_TLSSASL:
  43. case VNC_AUTH_VENCRYPT_X509SASL:
  44. VNC_DEBUG("Start TLS auth SASL\n");
  45. return start_auth_sasl(vs);
  46. #endif /* CONFIG_VNC_SASL */
  47. default: /* Should not be possible, but just in case */
  48. VNC_DEBUG("Reject subauth %d server bug\n", vs->auth);
  49. vnc_write_u8(vs, 1);
  50. if (vs->minor >= 8) {
  51. static const char err[] = "Unsupported authentication type";
  52. vnc_write_u32(vs, sizeof(err));
  53. vnc_write(vs, err, sizeof(err));
  54. }
  55. vnc_client_error(vs);
  56. }
  57. }
  58. static void vnc_tls_handshake_io(void *opaque);
  59. static int vnc_start_vencrypt_handshake(struct VncState *vs) {
  60. int ret;
  61. if ((ret = gnutls_handshake(vs->tls.session)) < 0) {
  62. if (!gnutls_error_is_fatal(ret)) {
  63. VNC_DEBUG("Handshake interrupted (blocking)\n");
  64. if (!gnutls_record_get_direction(vs->tls.session))
  65. qemu_set_fd_handler(vs->csock, vnc_tls_handshake_io, NULL, vs);
  66. else
  67. qemu_set_fd_handler(vs->csock, NULL, vnc_tls_handshake_io, vs);
  68. return 0;
  69. }
  70. VNC_DEBUG("Handshake failed %s\n", gnutls_strerror(ret));
  71. vnc_client_error(vs);
  72. return -1;
  73. }
  74. if (vs->vd->tls.x509verify) {
  75. if (vnc_tls_validate_certificate(vs) < 0) {
  76. VNC_DEBUG("Client verification failed\n");
  77. vnc_client_error(vs);
  78. return -1;
  79. } else {
  80. VNC_DEBUG("Client verification passed\n");
  81. }
  82. }
  83. VNC_DEBUG("Handshake done, switching to TLS data mode\n");
  84. vs->tls.wiremode = VNC_WIREMODE_TLS;
  85. qemu_set_fd_handler2(vs->csock, NULL, vnc_client_read, vnc_client_write, vs);
  86. start_auth_vencrypt_subauth(vs);
  87. return 0;
  88. }
  89. static void vnc_tls_handshake_io(void *opaque) {
  90. struct VncState *vs = (struct VncState *)opaque;
  91. VNC_DEBUG("Handshake IO continue\n");
  92. vnc_start_vencrypt_handshake(vs);
  93. }
  94. #define NEED_X509_AUTH(vs) \
  95. ((vs)->subauth == VNC_AUTH_VENCRYPT_X509NONE || \
  96. (vs)->subauth == VNC_AUTH_VENCRYPT_X509VNC || \
  97. (vs)->subauth == VNC_AUTH_VENCRYPT_X509PLAIN || \
  98. (vs)->subauth == VNC_AUTH_VENCRYPT_X509SASL)
  99. static int protocol_client_vencrypt_auth(VncState *vs, uint8_t *data, size_t len)
  100. {
  101. int auth = read_u32(data, 0);
  102. if (auth != vs->subauth) {
  103. VNC_DEBUG("Rejecting auth %d\n", auth);
  104. vnc_write_u8(vs, 0); /* Reject auth */
  105. vnc_flush(vs);
  106. vnc_client_error(vs);
  107. } else {
  108. VNC_DEBUG("Accepting auth %d, setting up TLS for handshake\n", auth);
  109. vnc_write_u8(vs, 1); /* Accept auth */
  110. vnc_flush(vs);
  111. if (vnc_tls_client_setup(vs, NEED_X509_AUTH(vs)) < 0) {
  112. VNC_DEBUG("Failed to setup TLS\n");
  113. return 0;
  114. }
  115. VNC_DEBUG("Start TLS VeNCrypt handshake process\n");
  116. if (vnc_start_vencrypt_handshake(vs) < 0) {
  117. VNC_DEBUG("Failed to start TLS handshake\n");
  118. return 0;
  119. }
  120. }
  121. return 0;
  122. }
  123. static int protocol_client_vencrypt_init(VncState *vs, uint8_t *data, size_t len)
  124. {
  125. if (data[0] != 0 ||
  126. data[1] != 2) {
  127. VNC_DEBUG("Unsupported VeNCrypt protocol %d.%d\n", (int)data[0], (int)data[1]);
  128. vnc_write_u8(vs, 1); /* Reject version */
  129. vnc_flush(vs);
  130. vnc_client_error(vs);
  131. } else {
  132. VNC_DEBUG("Sending allowed auth %d\n", vs->subauth);
  133. vnc_write_u8(vs, 0); /* Accept version */
  134. vnc_write_u8(vs, 1); /* Number of sub-auths */
  135. vnc_write_u32(vs, vs->subauth); /* The supported auth */
  136. vnc_flush(vs);
  137. vnc_read_when(vs, protocol_client_vencrypt_auth, 4);
  138. }
  139. return 0;
  140. }
  141. void start_auth_vencrypt(VncState *vs)
  142. {
  143. /* Send VeNCrypt version 0.2 */
  144. vnc_write_u8(vs, 0);
  145. vnc_write_u8(vs, 2);
  146. vnc_read_when(vs, protocol_client_vencrypt_init, 2);
  147. }