vnc-auth-vencrypt.c 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  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. start_auth_sasl(vs);
  46. break;
  47. #endif /* CONFIG_VNC_SASL */
  48. default: /* Should not be possible, but just in case */
  49. VNC_DEBUG("Reject subauth %d server bug\n", vs->auth);
  50. vnc_write_u8(vs, 1);
  51. if (vs->minor >= 8) {
  52. static const char err[] = "Unsupported authentication type";
  53. vnc_write_u32(vs, sizeof(err));
  54. vnc_write(vs, err, sizeof(err));
  55. }
  56. vnc_client_error(vs);
  57. }
  58. }
  59. static void vnc_tls_handshake_io(void *opaque);
  60. static int vnc_start_vencrypt_handshake(struct VncState *vs) {
  61. int ret;
  62. if ((ret = gnutls_handshake(vs->tls.session)) < 0) {
  63. if (!gnutls_error_is_fatal(ret)) {
  64. VNC_DEBUG("Handshake interrupted (blocking)\n");
  65. if (!gnutls_record_get_direction(vs->tls.session))
  66. qemu_set_fd_handler(vs->csock, vnc_tls_handshake_io, NULL, vs);
  67. else
  68. qemu_set_fd_handler(vs->csock, NULL, vnc_tls_handshake_io, vs);
  69. return 0;
  70. }
  71. VNC_DEBUG("Handshake failed %s\n", gnutls_strerror(ret));
  72. vnc_client_error(vs);
  73. return -1;
  74. }
  75. if (vs->vd->tls.x509verify) {
  76. if (vnc_tls_validate_certificate(vs) < 0) {
  77. VNC_DEBUG("Client verification failed\n");
  78. vnc_client_error(vs);
  79. return -1;
  80. } else {
  81. VNC_DEBUG("Client verification passed\n");
  82. }
  83. }
  84. VNC_DEBUG("Handshake done, switching to TLS data mode\n");
  85. vs->tls.wiremode = VNC_WIREMODE_TLS;
  86. qemu_set_fd_handler2(vs->csock, NULL, vnc_client_read, vnc_client_write, vs);
  87. start_auth_vencrypt_subauth(vs);
  88. return 0;
  89. }
  90. static void vnc_tls_handshake_io(void *opaque) {
  91. struct VncState *vs = (struct VncState *)opaque;
  92. VNC_DEBUG("Handshake IO continue\n");
  93. vnc_start_vencrypt_handshake(vs);
  94. }
  95. #define NEED_X509_AUTH(vs) \
  96. ((vs)->subauth == VNC_AUTH_VENCRYPT_X509NONE || \
  97. (vs)->subauth == VNC_AUTH_VENCRYPT_X509VNC || \
  98. (vs)->subauth == VNC_AUTH_VENCRYPT_X509PLAIN || \
  99. (vs)->subauth == VNC_AUTH_VENCRYPT_X509SASL)
  100. static int protocol_client_vencrypt_auth(VncState *vs, uint8_t *data, size_t len)
  101. {
  102. int auth = read_u32(data, 0);
  103. if (auth != vs->subauth) {
  104. VNC_DEBUG("Rejecting auth %d\n", auth);
  105. vnc_write_u8(vs, 0); /* Reject auth */
  106. vnc_flush(vs);
  107. vnc_client_error(vs);
  108. } else {
  109. VNC_DEBUG("Accepting auth %d, setting up TLS for handshake\n", auth);
  110. vnc_write_u8(vs, 1); /* Accept auth */
  111. vnc_flush(vs);
  112. if (vnc_tls_client_setup(vs, NEED_X509_AUTH(vs)) < 0) {
  113. VNC_DEBUG("Failed to setup TLS\n");
  114. return 0;
  115. }
  116. VNC_DEBUG("Start TLS VeNCrypt handshake process\n");
  117. if (vnc_start_vencrypt_handshake(vs) < 0) {
  118. VNC_DEBUG("Failed to start TLS handshake\n");
  119. return 0;
  120. }
  121. }
  122. return 0;
  123. }
  124. static int protocol_client_vencrypt_init(VncState *vs, uint8_t *data, size_t len)
  125. {
  126. if (data[0] != 0 ||
  127. data[1] != 2) {
  128. VNC_DEBUG("Unsupported VeNCrypt protocol %d.%d\n", (int)data[0], (int)data[1]);
  129. vnc_write_u8(vs, 1); /* Reject version */
  130. vnc_flush(vs);
  131. vnc_client_error(vs);
  132. } else {
  133. VNC_DEBUG("Sending allowed auth %d\n", vs->subauth);
  134. vnc_write_u8(vs, 0); /* Accept version */
  135. vnc_write_u8(vs, 1); /* Number of sub-auths */
  136. vnc_write_u32(vs, vs->subauth); /* The supported auth */
  137. vnc_flush(vs);
  138. vnc_read_when(vs, protocol_client_vencrypt_auth, 4);
  139. }
  140. return 0;
  141. }
  142. void start_auth_vencrypt(VncState *vs)
  143. {
  144. /* Send VeNCrypt version 0.2 */
  145. vnc_write_u8(vs, 0);
  146. vnc_write_u8(vs, 2);
  147. vnc_read_when(vs, protocol_client_vencrypt_init, 2);
  148. }