vnc-auth-sasl.h 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. /*
  2. * QEMU VNC display driver: SASL auth protocol
  3. *
  4. * Copyright (C) 2009 Red Hat, Inc
  5. *
  6. * Permission is hereby granted, free of charge, to any person obtaining a copy
  7. * of this software and associated documentation files (the "Software"), to deal
  8. * in the Software without restriction, including without limitation the rights
  9. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  10. * copies of the Software, and to permit persons to whom the Software is
  11. * furnished to do so, subject to the following conditions:
  12. *
  13. * The above copyright notice and this permission notice shall be included in
  14. * all copies or substantial portions of the Software.
  15. *
  16. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  17. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  18. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  19. * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  20. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  21. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  22. * THE SOFTWARE.
  23. */
  24. #ifndef QEMU_VNC_AUTH_SASL_H
  25. #define QEMU_VNC_AUTH_SASL_H
  26. #include <sasl/sasl.h>
  27. typedef struct VncStateSASL VncStateSASL;
  28. typedef struct VncDisplaySASL VncDisplaySASL;
  29. #include "authz/base.h"
  30. struct VncStateSASL {
  31. sasl_conn_t *conn;
  32. /* If we want to negotiate an SSF layer with client */
  33. bool wantSSF;
  34. /* If we are now running the SSF layer */
  35. bool runSSF;
  36. /*
  37. * If this is non-zero, then wait for that many bytes
  38. * to be written plain, before switching to SSF encoding
  39. * This allows the VNC auth result to finish being
  40. * written in plain.
  41. */
  42. unsigned int waitWriteSSF;
  43. /*
  44. * Buffering encoded data to allow more clear data
  45. * to be stuffed onto the output buffer
  46. */
  47. const uint8_t *encoded;
  48. unsigned int encodedLength;
  49. unsigned int encodedRawLength;
  50. unsigned int encodedOffset;
  51. char *username;
  52. char *mechlist;
  53. };
  54. struct VncDisplaySASL {
  55. QAuthZ *authz;
  56. char *authzid;
  57. };
  58. bool vnc_sasl_server_init(Error **errp);
  59. void vnc_sasl_client_cleanup(VncState *vs);
  60. size_t vnc_client_read_sasl(VncState *vs);
  61. size_t vnc_client_write_sasl(VncState *vs);
  62. void start_auth_sasl(VncState *vs);
  63. #endif /* QEMU_VNC_AUTH_SASL_H */