vnc-auth-sasl.c 19.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
/*
 * QEMU VNC display driver: SASL auth protocol
 *
 * Copyright (C) 2009 Red Hat, Inc
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */

P
Peter Maydell 已提交
25
#include "qemu/osdep.h"
26
#include "qapi/error.h"
27 28 29 30 31 32 33 34 35
#include "vnc.h"

/* Max amount of data we send/recv for SASL steps to prevent DOS */
#define SASL_DATA_MAX_LEN (1024 * 1024)


void vnc_sasl_client_cleanup(VncState *vs)
{
    if (vs->sasl.conn) {
36 37 38
        vs->sasl.runSSF = false;
        vs->sasl.wantSSF = false;
        vs->sasl.waitWriteSSF = 0;
39 40
        vs->sasl.encodedLength = vs->sasl.encodedOffset = 0;
        vs->sasl.encoded = NULL;
41
        g_free(vs->sasl.username);
42
        g_free(vs->sasl.mechlist);
43 44 45
        vs->sasl.username = vs->sasl.mechlist = NULL;
        sasl_dispose(&vs->sasl.conn);
        vs->sasl.conn = NULL;
46 47 48 49 50 51 52 53
    }
}


long vnc_client_write_sasl(VncState *vs)
{
    long ret;

54 55
    VNC_DEBUG("Write SASL: Pending output %p size %zd offset %zd "
              "Encoded: %p size %d offset %d\n",
56 57
              vs->output.buffer, vs->output.capacity, vs->output.offset,
              vs->sasl.encoded, vs->sasl.encodedLength, vs->sasl.encodedOffset);
58 59

    if (!vs->sasl.encoded) {
60 61 62 63 64 65 66
        int err;
        err = sasl_encode(vs->sasl.conn,
                          (char *)vs->output.buffer,
                          vs->output.offset,
                          (const char **)&vs->sasl.encoded,
                          &vs->sasl.encodedLength);
        if (err != SASL_OK)
67
            return vnc_client_io_error(vs, -1, NULL);
68 69

        vs->sasl.encodedOffset = 0;
70 71 72
    }

    ret = vnc_client_write_buf(vs,
73 74
                               vs->sasl.encoded + vs->sasl.encodedOffset,
                               vs->sasl.encodedLength - vs->sasl.encodedOffset);
75
    if (!ret)
76
        return 0;
77 78 79

    vs->sasl.encodedOffset += ret;
    if (vs->sasl.encodedOffset == vs->sasl.encodedLength) {
80 81 82
        vs->output.offset = 0;
        vs->sasl.encoded = NULL;
        vs->sasl.encodedOffset = vs->sasl.encodedLength = 0;
83 84 85 86 87 88 89 90
    }

    /* Can't merge this block with one above, because
     * someone might have written more unencrypted
     * data in vs->output while we were processing
     * SASL encoded output
     */
    if (vs->output.offset == 0) {
91 92 93 94 95
        if (vs->ioc_tag) {
            g_source_remove(vs->ioc_tag);
        }
        vs->ioc_tag = qio_channel_add_watch(
            vs->ioc, G_IO_IN, vnc_client_io, vs, NULL);
96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111
    }

    return ret;
}


long vnc_client_read_sasl(VncState *vs)
{
    long ret;
    uint8_t encoded[4096];
    const char *decoded;
    unsigned int decodedLen;
    int err;

    ret = vnc_client_read_buf(vs, encoded, sizeof(encoded));
    if (!ret)
112
        return 0;
113 114

    err = sasl_decode(vs->sasl.conn,
115 116
                      (char *)encoded, ret,
                      &decoded, &decodedLen);
117 118

    if (err != SASL_OK)
119
        return vnc_client_io_error(vs, -1, NULL);
120
    VNC_DEBUG("Read SASL Encoded %p size %ld Decoded %p size %d\n",
121
              encoded, ret, decoded, decodedLen);
122 123 124 125 126 127 128 129 130 131
    buffer_reserve(&vs->input, decodedLen);
    buffer_append(&vs->input, decoded, decodedLen);
    return decodedLen;
}


static int vnc_auth_sasl_check_access(VncState *vs)
{
    const void *val;
    int err;
132
    int allow;
133 134 135

    err = sasl_getprop(vs->sasl.conn, SASL_USERNAME, &val);
    if (err != SASL_OK) {
136 137 138
        VNC_DEBUG("cannot query SASL username on connection %d (%s), denying access\n",
                  err, sasl_errstring(err, NULL, NULL));
        return -1;
139 140
    }
    if (val == NULL) {
141 142
        VNC_DEBUG("no client username was found, denying access\n");
        return -1;
143 144 145
    }
    VNC_DEBUG("SASL client username %s\n", (const char *)val);

146
    vs->sasl.username = g_strdup((const char*)val);
147

148
    if (vs->vd->sasl.acl == NULL) {
149 150
        VNC_DEBUG("no ACL activated, allowing access\n");
        return 0;
151 152 153 154 155
    }

    allow = qemu_acl_party_is_allowed(vs->vd->sasl.acl, vs->sasl.username);

    VNC_DEBUG("SASL client %s %s by ACL\n", vs->sasl.username,
156
              allow ? "allowed" : "denied");
157
    return allow ? 0 : -1;
158 159 160 161 162 163 164 165
}

static int vnc_auth_sasl_check_ssf(VncState *vs)
{
    const void *val;
    int err, ssf;

    if (!vs->sasl.wantSSF)
166
        return 1;
167 168 169

    err = sasl_getprop(vs->sasl.conn, SASL_SSF, &val);
    if (err != SASL_OK)
170
        return 0;
171 172 173 174

    ssf = *(const int *)val;
    VNC_DEBUG("negotiated an SSF of %d\n", ssf);
    if (ssf < 56)
175
        return 0; /* 56 is good for Kerberos */
176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215

    /* Only setup for read initially, because we're about to send an RPC
     * reply which must be in plain text. When the next incoming RPC
     * arrives, we'll switch on writes too
     *
     * cf qemudClientReadSASL  in qemud.c
     */
    vs->sasl.runSSF = 1;

    /* We have a SSF that's good enough */
    return 1;
}

/*
 * Step Msg
 *
 * Input from client:
 *
 * u32 clientin-length
 * u8-array clientin-string
 *
 * Output to client:
 *
 * u32 serverout-length
 * u8-array serverout-strin
 * u8 continue
 */

static int protocol_client_auth_sasl_step_len(VncState *vs, uint8_t *data, size_t len);

static int protocol_client_auth_sasl_step(VncState *vs, uint8_t *data, size_t len)
{
    uint32_t datalen = len;
    const char *serverout;
    unsigned int serveroutlen;
    int err;
    char *clientdata = NULL;

    /* NB, distinction of NULL vs "" is *critical* in SASL */
    if (datalen) {
216 217 218
        clientdata = (char*)data;
        clientdata[datalen-1] = '\0'; /* Wire includes '\0', but make sure */
        datalen--; /* Don't count NULL byte when passing to _start() */
219 220 221
    }

    VNC_DEBUG("Step using SASL Data %p (%d bytes)\n",
222
              clientdata, datalen);
223
    err = sasl_server_step(vs->sasl.conn,
224 225 226 227
                           clientdata,
                           datalen,
                           &serverout,
                           &serveroutlen);
228
    if (err != SASL_OK &&
229 230 231 232 233 234
        err != SASL_CONTINUE) {
        VNC_DEBUG("sasl step failed %d (%s)\n",
                  err, sasl_errdetail(vs->sasl.conn));
        sasl_dispose(&vs->sasl.conn);
        vs->sasl.conn = NULL;
        goto authabort;
235 236 237
    }

    if (serveroutlen > SASL_DATA_MAX_LEN) {
238 239 240 241 242
        VNC_DEBUG("sasl step reply data too long %d\n",
                  serveroutlen);
        sasl_dispose(&vs->sasl.conn);
        vs->sasl.conn = NULL;
        goto authabort;
243 244 245
    }

    VNC_DEBUG("SASL return data %d bytes, nil; %d\n",
246
              serveroutlen, serverout ? 0 : 1);
247 248

    if (serveroutlen) {
249 250
        vnc_write_u32(vs, serveroutlen + 1);
        vnc_write(vs, serverout, serveroutlen + 1);
251
    } else {
252
        vnc_write_u32(vs, 0);
253 254 255 256 257 258
    }

    /* Whether auth is complete */
    vnc_write_u8(vs, err == SASL_CONTINUE ? 0 : 1);

    if (err == SASL_CONTINUE) {
259 260 261
        VNC_DEBUG("%s", "Authentication must continue\n");
        /* Wait for step length */
        vnc_read_when(vs, protocol_client_auth_sasl_step_len, 4);
262
    } else {
263
        if (!vnc_auth_sasl_check_ssf(vs)) {
264
            VNC_DEBUG("Authentication rejected for weak SSF %p\n", vs->ioc);
265 266 267 268 269
            goto authreject;
        }

        /* Check username whitelist ACL */
        if (vnc_auth_sasl_check_access(vs) < 0) {
270
            VNC_DEBUG("Authentication rejected for ACL %p\n", vs->ioc);
271 272 273
            goto authreject;
        }

274
        VNC_DEBUG("Authentication successful %p\n", vs->ioc);
275 276 277 278 279 280 281 282
        vnc_write_u32(vs, 0); /* Accept auth */
        /*
         * Delay writing in SSF encoded mode until pending output
         * buffer is written
         */
        if (vs->sasl.runSSF)
            vs->sasl.waitWriteSSF = vs->output.offset;
        start_client_init(vs);
283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304
    }

    return 0;

 authreject:
    vnc_write_u32(vs, 1); /* Reject auth */
    vnc_write_u32(vs, sizeof("Authentication failed"));
    vnc_write(vs, "Authentication failed", sizeof("Authentication failed"));
    vnc_flush(vs);
    vnc_client_error(vs);
    return -1;

 authabort:
    vnc_client_error(vs);
    return -1;
}

static int protocol_client_auth_sasl_step_len(VncState *vs, uint8_t *data, size_t len)
{
    uint32_t steplen = read_u32(data, 0);
    VNC_DEBUG("Got client step len %d\n", steplen);
    if (steplen > SASL_DATA_MAX_LEN) {
305 306 307
        VNC_DEBUG("Too much SASL data %d\n", steplen);
        vnc_client_error(vs);
        return -1;
308 309 310
    }

    if (steplen == 0)
311
        return protocol_client_auth_sasl_step(vs, NULL, 0);
312
    else
313
        vnc_read_when(vs, protocol_client_auth_sasl_step, steplen);
314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343
    return 0;
}

/*
 * Start Msg
 *
 * Input from client:
 *
 * u32 clientin-length
 * u8-array clientin-string
 *
 * Output to client:
 *
 * u32 serverout-length
 * u8-array serverout-strin
 * u8 continue
 */

#define SASL_DATA_MAX_LEN (1024 * 1024)

static int protocol_client_auth_sasl_start(VncState *vs, uint8_t *data, size_t len)
{
    uint32_t datalen = len;
    const char *serverout;
    unsigned int serveroutlen;
    int err;
    char *clientdata = NULL;

    /* NB, distinction of NULL vs "" is *critical* in SASL */
    if (datalen) {
344 345 346
        clientdata = (char*)data;
        clientdata[datalen-1] = '\0'; /* Should be on wire, but make sure */
        datalen--; /* Don't count NULL byte when passing to _start() */
347 348 349
    }

    VNC_DEBUG("Start SASL auth with mechanism %s. Data %p (%d bytes)\n",
350
              vs->sasl.mechlist, clientdata, datalen);
351
    err = sasl_server_start(vs->sasl.conn,
352 353 354 355 356
                            vs->sasl.mechlist,
                            clientdata,
                            datalen,
                            &serverout,
                            &serveroutlen);
357
    if (err != SASL_OK &&
358 359 360 361 362 363
        err != SASL_CONTINUE) {
        VNC_DEBUG("sasl start failed %d (%s)\n",
                  err, sasl_errdetail(vs->sasl.conn));
        sasl_dispose(&vs->sasl.conn);
        vs->sasl.conn = NULL;
        goto authabort;
364 365
    }
    if (serveroutlen > SASL_DATA_MAX_LEN) {
366 367 368 369 370
        VNC_DEBUG("sasl start reply data too long %d\n",
                  serveroutlen);
        sasl_dispose(&vs->sasl.conn);
        vs->sasl.conn = NULL;
        goto authabort;
371 372 373
    }

    VNC_DEBUG("SASL return data %d bytes, nil; %d\n",
374
              serveroutlen, serverout ? 0 : 1);
375 376

    if (serveroutlen) {
377 378
        vnc_write_u32(vs, serveroutlen + 1);
        vnc_write(vs, serverout, serveroutlen + 1);
379
    } else {
380
        vnc_write_u32(vs, 0);
381 382 383 384 385 386
    }

    /* Whether auth is complete */
    vnc_write_u8(vs, err == SASL_CONTINUE ? 0 : 1);

    if (err == SASL_CONTINUE) {
387 388 389
        VNC_DEBUG("%s", "Authentication must continue\n");
        /* Wait for step length */
        vnc_read_when(vs, protocol_client_auth_sasl_step_len, 4);
390
    } else {
391
        if (!vnc_auth_sasl_check_ssf(vs)) {
392
            VNC_DEBUG("Authentication rejected for weak SSF %p\n", vs->ioc);
393 394 395 396 397
            goto authreject;
        }

        /* Check username whitelist ACL */
        if (vnc_auth_sasl_check_access(vs) < 0) {
398
            VNC_DEBUG("Authentication rejected for ACL %p\n", vs->ioc);
399 400 401
            goto authreject;
        }

402
        VNC_DEBUG("Authentication successful %p\n", vs->ioc);
403 404
        vnc_write_u32(vs, 0); /* Accept auth */
        start_client_init(vs);
405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426
    }

    return 0;

 authreject:
    vnc_write_u32(vs, 1); /* Reject auth */
    vnc_write_u32(vs, sizeof("Authentication failed"));
    vnc_write(vs, "Authentication failed", sizeof("Authentication failed"));
    vnc_flush(vs);
    vnc_client_error(vs);
    return -1;

 authabort:
    vnc_client_error(vs);
    return -1;
}

static int protocol_client_auth_sasl_start_len(VncState *vs, uint8_t *data, size_t len)
{
    uint32_t startlen = read_u32(data, 0);
    VNC_DEBUG("Got client start len %d\n", startlen);
    if (startlen > SASL_DATA_MAX_LEN) {
427 428 429
        VNC_DEBUG("Too much SASL data %d\n", startlen);
        vnc_client_error(vs);
        return -1;
430 431 432
    }

    if (startlen == 0)
433
        return protocol_client_auth_sasl_start(vs, NULL, 0);
434 435 436 437 438 439 440

    vnc_read_when(vs, protocol_client_auth_sasl_start, startlen);
    return 0;
}

static int protocol_client_auth_sasl_mechname(VncState *vs, uint8_t *data, size_t len)
{
J
Jim Meyering 已提交
441
    char *mechname = g_strndup((const char *) data, len);
442
    VNC_DEBUG("Got client mechname '%s' check against '%s'\n",
443
              mechname, vs->sasl.mechlist);
444 445

    if (strncmp(vs->sasl.mechlist, mechname, len) == 0) {
446 447 448
        if (vs->sasl.mechlist[len] != '\0' &&
            vs->sasl.mechlist[len] != ',') {
            VNC_DEBUG("One %d", vs->sasl.mechlist[len]);
B
Blue Swirl 已提交
449
            goto fail;
450
        }
451
    } else {
452 453 454
        char *offset = strstr(vs->sasl.mechlist, mechname);
        VNC_DEBUG("Two %p\n", offset);
        if (!offset) {
B
Blue Swirl 已提交
455
            goto fail;
456 457 458 459 460
        }
        VNC_DEBUG("Two '%s'\n", offset);
        if (offset[-1] != ',' ||
            (offset[len] != '\0'&&
             offset[len] != ',')) {
B
Blue Swirl 已提交
461
            goto fail;
462
        }
463 464
    }

465
    g_free(vs->sasl.mechlist);
466 467 468 469 470
    vs->sasl.mechlist = mechname;

    VNC_DEBUG("Validated mechname '%s'\n", mechname);
    vnc_read_when(vs, protocol_client_auth_sasl_start_len, 4);
    return 0;
B
Blue Swirl 已提交
471 472 473

 fail:
    vnc_client_error(vs);
474
    g_free(mechname);
B
Blue Swirl 已提交
475
    return -1;
476 477 478 479 480 481 482
}

static int protocol_client_auth_sasl_mechname_len(VncState *vs, uint8_t *data, size_t len)
{
    uint32_t mechlen = read_u32(data, 0);
    VNC_DEBUG("Got client mechname len %d\n", mechlen);
    if (mechlen > 100) {
483 484 485
        VNC_DEBUG("Too long SASL mechname data %d\n", mechlen);
        vnc_client_error(vs);
        return -1;
486 487
    }
    if (mechlen < 1) {
488 489 490
        VNC_DEBUG("Too short SASL mechname %d\n", mechlen);
        vnc_client_error(vs);
        return -1;
491 492 493 494 495
    }
    vnc_read_when(vs, protocol_client_auth_sasl_mechname,mechlen);
    return 0;
}

496 497 498 499 500
static char *
vnc_socket_ip_addr_string(QIOChannelSocket *ioc,
                          bool local,
                          Error **errp)
{
501
    SocketAddressLegacy *addr;
502 503 504 505 506 507 508 509 510 511 512
    char *ret;

    if (local) {
        addr = qio_channel_socket_get_local_address(ioc, errp);
    } else {
        addr = qio_channel_socket_get_remote_address(ioc, errp);
    }
    if (!addr) {
        return NULL;
    }

513
    if (addr->type != SOCKET_ADDRESS_LEGACY_KIND_INET) {
514 515 516
        error_setg(errp, "Not an inet socket type");
        return NULL;
    }
517 518
    ret = g_strdup_printf("%s;%s", addr->u.inet.data->host,
                          addr->u.inet.data->port);
519
    qapi_free_SocketAddressLegacy(addr);
520 521 522
    return ret;
}

523 524 525 526 527 528 529 530
void start_auth_sasl(VncState *vs)
{
    const char *mechlist = NULL;
    sasl_security_properties_t secprops;
    int err;
    char *localAddr, *remoteAddr;
    int mechlistlen;

531
    VNC_DEBUG("Initialize SASL auth %p\n", vs->ioc);
532 533

    /* Get local & remote client addresses in form  IPADDR;PORT */
534 535
    localAddr = vnc_socket_ip_addr_string(vs->sioc, true, NULL);
    if (!localAddr) {
536
        goto authabort;
537
    }
538

539 540
    remoteAddr = vnc_socket_ip_addr_string(vs->sioc, false, NULL);
    if (!remoteAddr) {
541
        g_free(localAddr);
542
        goto authabort;
543 544 545
    }

    err = sasl_server_new("vnc",
546 547 548 549 550 551 552
                          NULL, /* FQDN - just delegates to gethostname */
                          NULL, /* User realm */
                          localAddr,
                          remoteAddr,
                          NULL, /* Callbacks, not needed */
                          SASL_SUCCESS_DATA,
                          &vs->sasl.conn);
553 554
    g_free(localAddr);
    g_free(remoteAddr);
555 556 557
    localAddr = remoteAddr = NULL;

    if (err != SASL_OK) {
558 559 560 561
        VNC_DEBUG("sasl context setup failed %d (%s)",
                  err, sasl_errstring(err, NULL, NULL));
        vs->sasl.conn = NULL;
        goto authabort;
562 563 564
    }

    /* Inform SASL that we've got an external SSF layer from TLS/x509 */
565 566
    if (vs->auth == VNC_AUTH_VENCRYPT &&
        vs->subauth == VNC_AUTH_VENCRYPT_X509SASL) {
567 568
        Error *local_err = NULL;
        int keysize;
569 570
        sasl_ssf_t ssf;

571 572 573 574 575 576
        keysize = qcrypto_tls_session_get_key_size(vs->tls,
                                                   &local_err);
        if (keysize < 0) {
            VNC_DEBUG("cannot TLS get cipher size: %s\n",
                      error_get_pretty(local_err));
            error_free(local_err);
577 578 579 580
            sasl_dispose(&vs->sasl.conn);
            vs->sasl.conn = NULL;
            goto authabort;
        }
581
        ssf = keysize * CHAR_BIT; /* tls key size is bytes, sasl wants bits */
582 583 584 585 586 587 588 589 590

        err = sasl_setprop(vs->sasl.conn, SASL_SSF_EXTERNAL, &ssf);
        if (err != SASL_OK) {
            VNC_DEBUG("cannot set SASL external SSF %d (%s)\n",
                      err, sasl_errstring(err, NULL, NULL));
            sasl_dispose(&vs->sasl.conn);
            vs->sasl.conn = NULL;
            goto authabort;
        }
591
    } else {
592
        vs->sasl.wantSSF = 1;
593
    }
594 595

    memset (&secprops, 0, sizeof secprops);
596 597 598 599 600 601 602 603
    /* Inform SASL that we've got an external SSF layer from TLS.
     *
     * Disable SSF, if using TLS+x509+SASL only. TLS without x509
     * is not sufficiently strong
     */
    if (vs->vd->is_unix ||
        (vs->auth == VNC_AUTH_VENCRYPT &&
         vs->subauth == VNC_AUTH_VENCRYPT_X509SASL)) {
604 605 606 607 608
        /* If we've got TLS or UNIX domain sock, we don't care about SSF */
        secprops.min_ssf = 0;
        secprops.max_ssf = 0;
        secprops.maxbufsize = 8192;
        secprops.security_flags = 0;
609
    } else {
610 611 612 613 614 615 616
        /* Plain TCP, better get an SSF layer */
        secprops.min_ssf = 56; /* Good enough to require kerberos */
        secprops.max_ssf = 100000; /* Arbitrary big number */
        secprops.maxbufsize = 8192;
        /* Forbid any anonymous or trivially crackable auth */
        secprops.security_flags =
            SASL_SEC_NOANONYMOUS | SASL_SEC_NOPLAINTEXT;
617 618 619 620
    }

    err = sasl_setprop(vs->sasl.conn, SASL_SEC_PROPS, &secprops);
    if (err != SASL_OK) {
621 622 623 624 625
        VNC_DEBUG("cannot set SASL security props %d (%s)\n",
                  err, sasl_errstring(err, NULL, NULL));
        sasl_dispose(&vs->sasl.conn);
        vs->sasl.conn = NULL;
        goto authabort;
626 627 628
    }

    err = sasl_listmech(vs->sasl.conn,
629 630 631 632 633 634 635
                        NULL, /* Don't need to set user */
                        "", /* Prefix */
                        ",", /* Separator */
                        "", /* Suffix */
                        &mechlist,
                        NULL,
                        NULL);
636
    if (err != SASL_OK) {
637 638 639 640 641
        VNC_DEBUG("cannot list SASL mechanisms %d (%s)\n",
                  err, sasl_errdetail(vs->sasl.conn));
        sasl_dispose(&vs->sasl.conn);
        vs->sasl.conn = NULL;
        goto authabort;
642 643 644
    }
    VNC_DEBUG("Available mechanisms for client: '%s'\n", mechlist);

645
    vs->sasl.mechlist = g_strdup(mechlist);
646 647 648 649 650 651 652 653 654 655 656 657 658 659 660
    mechlistlen = strlen(mechlist);
    vnc_write_u32(vs, mechlistlen);
    vnc_write(vs, mechlist, mechlistlen);
    vnc_flush(vs);

    VNC_DEBUG("Wait for client mechname length\n");
    vnc_read_when(vs, protocol_client_auth_sasl_mechname_len, 4);

    return;

 authabort:
    vnc_client_error(vs);
}