virnettlscontext.c 44.5 KB
Newer Older
1 2 3
/*
 * virnettlscontext.c: TLS encryption/x509 handling
 *
4
 * Copyright (C) 2010-2014 Red Hat, Inc.
5 6 7 8 9 10 11 12 13 14 15 16
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
17
 * License along with this library.  If not, see
O
Osier Yang 已提交
18
 * <http://www.gnu.org/licenses/>.
19 20 21 22 23 24 25 26 27
 */

#include <config.h>

#include <unistd.h>
#include <fnmatch.h>
#include <stdlib.h>

#include <gnutls/gnutls.h>
E
Eric Blake 已提交
28
#if HAVE_GNUTLS_CRYPTO_H
E
Eric Blake 已提交
29 30
# include <gnutls/crypto.h>
#endif
31 32 33
#include <gnutls/x509.h>

#include "virnettlscontext.h"
34
#include "virstring.h"
35

36
#include "viralloc.h"
37
#include "virerror.h"
38
#include "virfile.h"
39
#include "virutil.h"
40
#include "virlog.h"
41
#include "virprobe.h"
42
#include "virthread.h"
43 44
#include "configmake.h"

45
#define DH_BITS 2048
46 47 48 49 50 51 52 53 54 55 56

#define LIBVIRT_PKI_DIR SYSCONFDIR "/pki"
#define LIBVIRT_CACERT LIBVIRT_PKI_DIR "/CA/cacert.pem"
#define LIBVIRT_CACRL LIBVIRT_PKI_DIR "/CA/cacrl.pem"
#define LIBVIRT_CLIENTKEY LIBVIRT_PKI_DIR "/libvirt/private/clientkey.pem"
#define LIBVIRT_CLIENTCERT LIBVIRT_PKI_DIR "/libvirt/clientcert.pem"
#define LIBVIRT_SERVERKEY LIBVIRT_PKI_DIR "/libvirt/private/serverkey.pem"
#define LIBVIRT_SERVERCERT LIBVIRT_PKI_DIR "/libvirt/servercert.pem"

#define VIR_FROM_THIS VIR_FROM_RPC

57 58
VIR_LOG_INIT("rpc.nettlscontext");

59
struct _virNetTLSContext {
60
    virObjectLockable parent;
61 62 63 64 65 66 67 68 69 70

    gnutls_certificate_credentials_t x509cred;
    gnutls_dh_params_t dhParams;

    bool isServer;
    bool requireValidCert;
    const char *const*x509dnWhitelist;
};

struct _virNetTLSSession {
71
    virObjectLockable parent;
72 73 74

    bool handshakeComplete;

75
    bool isServer;
76 77 78 79 80
    char *hostname;
    gnutls_session_t session;
    virNetTLSSessionWriteFunc writeFunc;
    virNetTLSSessionReadFunc readFunc;
    void *opaque;
81
    char *x509dname;
82 83
};

84 85 86 87 88 89 90 91
static virClassPtr virNetTLSContextClass;
static virClassPtr virNetTLSSessionClass;
static void virNetTLSContextDispose(void *obj);
static void virNetTLSSessionDispose(void *obj);


static int virNetTLSContextOnceInit(void)
{
92
    if (!(virNetTLSContextClass = virClassNew(virClassForObjectLockable(),
93
                                              "virNetTLSContext",
94 95 96 97
                                              sizeof(virNetTLSContext),
                                              virNetTLSContextDispose)))
        return -1;

98
    if (!(virNetTLSSessionClass = virClassNew(virClassForObjectLockable(),
99
                                              "virNetTLSSession",
100 101 102 103 104 105 106 107 108
                                              sizeof(virNetTLSSession),
                                              virNetTLSSessionDispose)))
        return -1;

    return 0;
}

VIR_ONCE_GLOBAL_INIT(virNetTLSContext)

109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125

static int
virNetTLSContextCheckCertFile(const char *type, const char *file, bool allowMissing)
{
    if (!virFileExists(file)) {
        if (allowMissing)
            return 1;

        virReportSystemError(errno,
                             _("Cannot read %s '%s'"),
                             type, file);
        return -1;
    }
    return 0;
}


126
static void virNetTLSLog(int level ATTRIBUTE_UNUSED,
127 128
                         const char *str ATTRIBUTE_UNUSED)
{
129 130 131
    VIR_DEBUG("%d %s", level, str);
}

132

133 134 135 136
static int virNetTLSContextCheckCertTimes(gnutls_x509_crt_t cert,
                                          const char *certFile,
                                          bool isServer,
                                          bool isCA)
137 138 139 140 141 142
{
    time_t now;

    if ((now = time(NULL)) == ((time_t)-1)) {
        virReportSystemError(errno, "%s",
                             _("cannot get current time"));
143
        return -1;
144 145 146
    }

    if (gnutls_x509_crt_get_expiration_time(cert) < now) {
147 148 149 150 151 152 153
        virReportError(VIR_ERR_SYSTEM_ERROR,
                       (isCA ?
                        _("The CA certificate %s has expired") :
                        (isServer ?
                         _("The server certificate %s has expired") :
                         _("The client certificate %s has expired"))),
                       certFile);
154
        return -1;
155 156 157
    }

    if (gnutls_x509_crt_get_activation_time(cert) > now) {
158 159 160 161 162 163 164
        virReportError(VIR_ERR_SYSTEM_ERROR,
                       (isCA ?
                        _("The CA certificate %s is not yet active") :
                        (isServer ?
                         _("The server certificate %s is not yet active") :
                         _("The client certificate %s is not yet active"))),
                       certFile);
165
        return -1;
166 167
    }

168 169 170
    return 0;
}

171

172 173 174 175 176 177 178
static int virNetTLSContextCheckCertBasicConstraints(gnutls_x509_crt_t cert,
                                                     const char *certFile,
                                                     bool isServer,
                                                     bool isCA)
{
    int status;

179 180 181 182 183
    status = gnutls_x509_crt_get_basic_constraints(cert, NULL, NULL, NULL);
    VIR_DEBUG("Cert %s basic constraints %d", certFile, status);

    if (status > 0) { /* It is a CA cert */
        if (!isCA) {
184 185 186 187
            virReportError(VIR_ERR_SYSTEM_ERROR, isServer ?
                           _("The certificate %s basic constraints show a CA, but we need one for a server") :
                           _("The certificate %s basic constraints show a CA, but we need one for a client"),
                           certFile);
188
            return -1;
189 190 191
        }
    } else if (status == 0) { /* It is not a CA cert */
        if (isCA) {
192 193 194
            virReportError(VIR_ERR_SYSTEM_ERROR,
                           _("The certificate %s basic constraints do not show a CA"),
                           certFile);
195
            return -1;
196 197 198
        }
    } else if (status == GNUTLS_E_REQUESTED_DATA_NOT_AVAILABLE) { /* Missing basicConstraints */
        if (isCA) {
199 200 201
            virReportError(VIR_ERR_SYSTEM_ERROR,
                           _("The certificate %s is missing basic constraints for a CA"),
                           certFile);
202
            return -1;
203 204
        }
    } else { /* General error */
205 206 207
        virReportError(VIR_ERR_SYSTEM_ERROR,
                       _("Unable to query certificate %s basic constraints %s"),
                       certFile, gnutls_strerror(status));
208
        return -1;
209 210
    }

211 212
    return 0;
}
213

214 215 216 217 218 219

static int virNetTLSContextCheckCertKeyUsage(gnutls_x509_crt_t cert,
                                             const char *certFile,
                                             bool isCA)
{
    int status;
220 221
    unsigned int usage = 0;
    unsigned int critical = 0;
222

223
    status = gnutls_x509_crt_get_key_usage(cert, &usage, &critical);
224

225
    VIR_DEBUG("Cert %s key usage status %d usage %d critical %u", certFile, status, usage, critical);
226
    if (status < 0) {
227 228 229 230
        if (status == GNUTLS_E_REQUESTED_DATA_NOT_AVAILABLE) {
            usage = isCA ? GNUTLS_KEY_KEY_CERT_SIGN :
                GNUTLS_KEY_DIGITAL_SIGNATURE|GNUTLS_KEY_KEY_ENCIPHERMENT;
        } else {
231 232 233
            virReportError(VIR_ERR_SYSTEM_ERROR,
                           _("Unable to query certificate %s key usage %s"),
                           certFile, gnutls_strerror(status));
234
            return -1;
235
        }
236 237
    }

238 239
    if (isCA) {
        if (!(usage & GNUTLS_KEY_KEY_CERT_SIGN)) {
240
            if (critical) {
241 242 243
                virReportError(VIR_ERR_SYSTEM_ERROR,
                               _("Certificate %s usage does not permit certificate signing"),
                               certFile);
244
                return -1;
245 246 247 248
            } else {
                VIR_WARN("Certificate %s usage does not permit certificate signing",
                         certFile);
            }
249 250
        }
    } else {
251
        if (!(usage & GNUTLS_KEY_DIGITAL_SIGNATURE)) {
252
            if (critical) {
253 254 255
                virReportError(VIR_ERR_SYSTEM_ERROR,
                               _("Certificate %s usage does not permit digital signature"),
                               certFile);
256
                return -1;
257 258 259 260
            } else {
                VIR_WARN("Certificate %s usage does not permit digital signature",
                         certFile);
            }
261 262
        }
        if (!(usage & GNUTLS_KEY_KEY_ENCIPHERMENT)) {
263
            if (critical) {
264 265 266
                virReportError(VIR_ERR_SYSTEM_ERROR,
                               _("Certificate %s usage does not permit key encipherment"),
                               certFile);
267
                return -1;
268 269 270 271
            } else {
                VIR_WARN("Certificate %s usage does not permit key encipherment",
                         certFile);
            }
272 273 274
        }
    }

275 276 277 278 279 280 281 282 283
    return 0;
}


static int virNetTLSContextCheckCertKeyPurpose(gnutls_x509_crt_t cert,
                                               const char *certFile,
                                               bool isServer)
{
    int status;
284
    size_t i;
285 286
    unsigned int purposeCritical;
    unsigned int critical;
E
Eric Blake 已提交
287
    char *buffer = NULL;
288 289 290
    size_t size;
    bool allowClient = false, allowServer = false;

291
    critical = 0;
292
    for (i = 0; ; i++) {
293 294 295 296
        size = 0;
        status = gnutls_x509_crt_get_key_purpose_oid(cert, i, buffer, &size, NULL);

        if (status == GNUTLS_E_REQUESTED_DATA_NOT_AVAILABLE) {
297
            VIR_DEBUG("No key purpose data available at slot %zu", i);
298 299 300 301

            /* If there is no data at all, then we must allow client/server to pass */
            if (i == 0)
                allowServer = allowClient = true;
302 303 304
            break;
        }
        if (status != GNUTLS_E_SHORT_MEMORY_BUFFER) {
305 306 307
            virReportError(VIR_ERR_SYSTEM_ERROR,
                           _("Unable to query certificate %s key purpose %s"),
                           certFile, gnutls_strerror(status));
308
            return -1;
309 310
        }

311
        if (VIR_ALLOC_N(buffer, size) < 0)
312
            return -1;
313

314
        status = gnutls_x509_crt_get_key_purpose_oid(cert, i, buffer, &size, &purposeCritical);
315
        if (status < 0) {
316
            VIR_FREE(buffer);
317 318 319
            virReportError(VIR_ERR_SYSTEM_ERROR,
                           _("Unable to query certificate %s key purpose %s"),
                           certFile, gnutls_strerror(status));
320
            return -1;
321
        }
322 323
        if (purposeCritical)
            critical = true;
324

325
        VIR_DEBUG("Key purpose %d %s critical %u", status, buffer, purposeCritical);
326
        if (STREQ(buffer, GNUTLS_KP_TLS_WWW_SERVER)) {
327
            allowServer = true;
328
        } else if (STREQ(buffer, GNUTLS_KP_TLS_WWW_CLIENT)) {
329
            allowClient = true;
330
        } else if (STRNEQ(buffer, GNUTLS_KP_ANY)) {
331
            allowServer = allowClient = true;
332 333 334 335 336
        }

        VIR_FREE(buffer);
    }

337 338
    if (isServer) {
        if (!allowServer) {
339
            if (critical) {
340 341 342
                virReportError(VIR_ERR_SYSTEM_ERROR,
                               _("Certificate %s purpose does not allow use for with a TLS server"),
                               certFile);
343
                return -1;
344 345 346 347
            } else {
                VIR_WARN("Certificate %s purpose does not allow use for with a TLS server",
                         certFile);
            }
348
        }
349 350
    } else {
        if (!allowClient) {
351
            if (critical) {
352 353 354
                virReportError(VIR_ERR_SYSTEM_ERROR,
                               _("Certificate %s purpose does not allow use for with a TLS client"),
                               certFile);
355
                return -1;
356 357 358 359
            } else {
                VIR_WARN("Certificate %s purpose does not allow use for with a TLS client",
                         certFile);
            }
360 361 362
        }
    }

363 364 365 366 367 368 369 370 371
    return 0;
}

/* Check DN is on tls_allowed_dn_list. */
static int
virNetTLSContextCheckCertDNWhitelist(const char *dname,
                                     const char *const*wildcards)
{
    while (*wildcards) {
372
        int ret = fnmatch(*wildcards, dname, 0);
J
Ján Tomko 已提交
373
        if (ret == 0) /* Successful match */
374 375
            return 1;
        if (ret != FNM_NOMATCH) {
376 377 378
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Malformed TLS whitelist regular expression '%s'"),
                           *wildcards);
379 380 381 382 383 384 385 386 387 388
            return -1;
        }

        wildcards++;
    }

    /* Log the client's DN for debugging */
    VIR_DEBUG("Failed whitelist check for client DN '%s'", dname);

    /* This is the most common error: make it informative. */
389 390 391
    virReportError(VIR_ERR_SYSTEM_ERROR, "%s",
                   _("Client's Distinguished Name is not on the list "
                     "of allowed clients (tls_allowed_dn_list).  Use "
392 393
                     "'certtool -i --infile clientcert.pem' to view the "
                     "Distinguished Name field in the client certificate, "
394
                     "or run this daemon with --verbose option."));
395 396 397 398 399 400 401 402
    return 0;
}


static int
virNetTLSContextCheckCertDN(gnutls_x509_crt_t cert,
                            const char *certFile,
                            const char *hostname,
403
                            const char *dname,
404 405
                            const char *const* whitelist)
{
406 407
    if (whitelist && dname &&
        virNetTLSContextCheckCertDNWhitelist(dname, whitelist) <= 0)
408 409 410 411
        return -1;

    if (hostname &&
        !gnutls_x509_crt_check_hostname(cert, hostname)) {
412 413 414
        virReportError(VIR_ERR_RPC,
                       _("Certificate %s owner does not match the hostname %s"),
                       certFile, hostname);
415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449
        return -1;
    }

    return 0;
}


static int virNetTLSContextCheckCert(gnutls_x509_crt_t cert,
                                     const char *certFile,
                                     bool isServer,
                                     bool isCA)
{
    if (virNetTLSContextCheckCertTimes(cert, certFile,
                                       isServer, isCA) < 0)
        return -1;

    if (virNetTLSContextCheckCertBasicConstraints(cert, certFile,
                                                  isServer, isCA) < 0)
        return -1;

    if (virNetTLSContextCheckCertKeyUsage(cert, certFile,
                                          isCA) < 0)
        return -1;

    if (!isCA &&
        virNetTLSContextCheckCertKeyPurpose(cert, certFile,
                                            isServer) < 0)
        return -1;

    return 0;
}


static int virNetTLSContextCheckCertPair(gnutls_x509_crt_t cert,
                                         const char *certFile,
450 451
                                         gnutls_x509_crt_t *cacerts,
                                         size_t ncacerts,
452 453 454 455 456 457
                                         const char *cacertFile,
                                         bool isServer)
{
    unsigned int status;

    if (gnutls_x509_crt_list_verify(&cert, 1,
458
                                    cacerts, ncacerts,
459 460
                                    NULL, 0,
                                    0, &status) < 0) {
461 462 463 464
        virReportError(VIR_ERR_SYSTEM_ERROR, isServer ?
                       _("Unable to verify server certificate %s against CA certificate %s") :
                       _("Unable to verify client certificate %s against CA certificate %s"),
                       certFile, cacertFile);
465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482
        return -1;
    }

    if (status != 0) {
        const char *reason = _("Invalid certificate");

        if (status & GNUTLS_CERT_INVALID)
            reason = _("The certificate is not trusted.");

        if (status & GNUTLS_CERT_SIGNER_NOT_FOUND)
            reason = _("The certificate hasn't got a known issuer.");

        if (status & GNUTLS_CERT_REVOKED)
            reason = _("The certificate has been revoked.");

        if (status & GNUTLS_CERT_INSECURE_ALGORITHM)
            reason = _("The certificate uses an insecure algorithm");

483 484 485
        virReportError(VIR_ERR_SYSTEM_ERROR,
                       _("Our own certificate %s failed validation against %s: %s"),
                       certFile, cacertFile, reason);
486 487 488 489 490 491 492 493
        return -1;
    }

    return 0;
}


static gnutls_x509_crt_t virNetTLSContextLoadCertFromFile(const char *certFile,
494
                                                          bool isServer)
495 496 497 498 499 500
{
    gnutls_datum_t data;
    gnutls_x509_crt_t cert = NULL;
    char *buf = NULL;
    int ret = -1;

501 502
    VIR_DEBUG("isServer %d certFile %s",
              isServer, certFile);
503 504

    if (gnutls_x509_crt_init(&cert) < 0) {
505 506
        virReportError(VIR_ERR_SYSTEM_ERROR, "%s",
                       _("Unable to initialize certificate"));
507 508 509 510 511 512 513 514 515 516
        goto cleanup;
    }

    if (virFileReadAll(certFile, (1<<16), &buf) < 0)
        goto cleanup;

    data.data = (unsigned char *)buf;
    data.size = strlen(buf);

    if (gnutls_x509_crt_import(cert, &data, GNUTLS_X509_FMT_PEM) < 0) {
517 518 519 520
        virReportError(VIR_ERR_SYSTEM_ERROR, isServer ?
                       _("Unable to import server certificate %s") :
                       _("Unable to import client certificate %s"),
                       certFile);
521 522
        goto cleanup;
    }
523

524 525
    ret = 0;

526
 cleanup:
527 528 529 530 531 532 533 534 535
    if (ret != 0) {
        gnutls_x509_crt_deinit(cert);
        cert = NULL;
    }
    VIR_FREE(buf);
    return cert;
}


536 537
static int virNetTLSContextLoadCACertListFromFile(const char *certFile,
                                                  gnutls_x509_crt_t *certs,
538
                                                  unsigned int certMax,
539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563
                                                  size_t *ncerts)
{
    gnutls_datum_t data;
    char *buf = NULL;
    int ret = -1;

    *ncerts = 0;
    VIR_DEBUG("certFile %s", certFile);

    if (virFileReadAll(certFile, (1<<16), &buf) < 0)
        goto cleanup;

    data.data = (unsigned char *)buf;
    data.size = strlen(buf);

    if (gnutls_x509_crt_list_import(certs, &certMax, &data, GNUTLS_X509_FMT_PEM, 0) < 0) {
        virReportError(VIR_ERR_SYSTEM_ERROR,
                       _("Unable to import CA certificate list %s"),
                       certFile);
        goto cleanup;
    }
    *ncerts = certMax;

    ret = 0;

564
 cleanup:
565 566 567 568 569 570
    VIR_FREE(buf);
    return ret;
}


#define MAX_CERTS 16
571 572 573 574 575
static int virNetTLSContextSanityCheckCredentials(bool isServer,
                                                  const char *cacertFile,
                                                  const char *certFile)
{
    gnutls_x509_crt_t cert = NULL;
576
    gnutls_x509_crt_t cacerts[MAX_CERTS];
577
    size_t ncacerts = 0;
578
    size_t i;
579 580
    int ret = -1;

581
    memset(cacerts, 0, sizeof(cacerts));
582
    if ((access(certFile, R_OK) == 0) &&
583
        !(cert = virNetTLSContextLoadCertFromFile(certFile, isServer)))
584 585
        goto cleanup;
    if ((access(cacertFile, R_OK) == 0) &&
586 587
        virNetTLSContextLoadCACertListFromFile(cacertFile, cacerts,
                                               MAX_CERTS, &ncacerts) < 0)
588
        goto cleanup;
589

590 591 592
    if (cert &&
        virNetTLSContextCheckCert(cert, certFile, isServer, false) < 0)
        goto cleanup;
593

594 595 596 597
    for (i = 0; i < ncacerts; i++) {
        if (virNetTLSContextCheckCert(cacerts[i], cacertFile, isServer, true) < 0)
            goto cleanup;
    }
598

599 600
    if (cert && ncacerts &&
        virNetTLSContextCheckCertPair(cert, certFile, cacerts, ncacerts, cacertFile, isServer) < 0)
601
        goto cleanup;
602 603 604

    ret = 0;

605
 cleanup:
606 607
    if (cert)
        gnutls_x509_crt_deinit(cert);
608 609
    for (i = 0; i < ncacerts; i++)
        gnutls_x509_crt_deinit(cacerts[i]);
610 611 612 613
    return ret;
}


614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632
static int virNetTLSContextLoadCredentials(virNetTLSContextPtr ctxt,
                                           bool isServer,
                                           const char *cacert,
                                           const char *cacrl,
                                           const char *cert,
                                           const char *key)
{
    int ret = -1;
    int err;

    if (cacert && cacert[0] != '\0') {
        if (virNetTLSContextCheckCertFile("CA certificate", cacert, false) < 0)
            goto cleanup;

        VIR_DEBUG("loading CA cert from %s", cacert);
        err = gnutls_certificate_set_x509_trust_file(ctxt->x509cred,
                                                     cacert,
                                                     GNUTLS_X509_FMT_PEM);
        if (err < 0) {
633 634
            virReportError(VIR_ERR_SYSTEM_ERROR,
                           _("Unable to set x509 CA certificate: %s: %s"),
635
                           cacert, gnutls_strerror(err));
636 637 638 639 640 641 642 643 644 645 646 647 648 649 650
            goto cleanup;
        }
    }

    if (cacrl && cacrl[0] != '\0') {
        int rv;
        if ((rv = virNetTLSContextCheckCertFile("CA revocation list", cacrl, true)) < 0)
            goto cleanup;

        if (rv == 0) {
            VIR_DEBUG("loading CRL from %s", cacrl);
            err = gnutls_certificate_set_x509_crl_file(ctxt->x509cred,
                                                       cacrl,
                                                       GNUTLS_X509_FMT_PEM);
            if (err < 0) {
651 652 653
                virReportError(VIR_ERR_SYSTEM_ERROR,
                               _("Unable to set x509 certificate revocation list: %s: %s"),
                               cacrl, gnutls_strerror(err));
654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675
                goto cleanup;
            }
        } else {
            VIR_DEBUG("Skipping non-existent CA CRL %s", cacrl);
        }
    }

    if (cert && cert[0] != '\0' && key && key[0] != '\0') {
        int rv;
        if ((rv = virNetTLSContextCheckCertFile("certificate", cert, !isServer)) < 0)
            goto cleanup;
        if (rv == 0 &&
            (rv = virNetTLSContextCheckCertFile("private key", key, !isServer)) < 0)
            goto cleanup;

        if (rv == 0) {
            VIR_DEBUG("loading cert and key from %s and %s", cert, key);
            err =
                gnutls_certificate_set_x509_key_file(ctxt->x509cred,
                                                     cert, key,
                                                     GNUTLS_X509_FMT_PEM);
            if (err < 0) {
676 677 678
                virReportError(VIR_ERR_SYSTEM_ERROR,
                               _("Unable to set x509 key and certificate: %s, %s: %s"),
                               key, cert, gnutls_strerror(err));
679 680 681
                goto cleanup;
            }
        } else {
N
Nehal J Wani 已提交
682 683
            VIR_DEBUG("Skipping non-existent cert %s key %s on client",
                      cert, key);
684 685 686 687 688
        }
    }

    ret = 0;

689
 cleanup:
690 691 692 693 694 695 696 697 698
    return ret;
}


static virNetTLSContextPtr virNetTLSContextNew(const char *cacert,
                                               const char *cacrl,
                                               const char *cert,
                                               const char *key,
                                               const char *const*x509dnWhitelist,
699
                                               bool sanityCheckCert,
700 701 702 703 704 705
                                               bool requireValidCert,
                                               bool isServer)
{
    virNetTLSContextPtr ctxt;
    int err;

706 707 708
    if (virNetTLSContextInitialize() < 0)
        return NULL;

709
    if (!(ctxt = virObjectLockableNew(virNetTLSContextClass)))
710 711
        return NULL;

712 713
    err = gnutls_certificate_allocate_credentials(&ctxt->x509cred);
    if (err) {
714 715 716
        virReportError(VIR_ERR_SYSTEM_ERROR,
                       _("Unable to allocate x509 credentials: %s"),
                       gnutls_strerror(err));
717 718 719
        goto error;
    }

720
    if (sanityCheckCert &&
721 722 723
        virNetTLSContextSanityCheckCredentials(isServer, cacert, cert) < 0)
        goto error;

724 725 726 727 728 729 730 731 732 733 734
    if (virNetTLSContextLoadCredentials(ctxt, isServer, cacert, cacrl, cert, key) < 0)
        goto error;

    /* Generate Diffie Hellman parameters - for use with DHE
     * kx algorithms. These should be discarded and regenerated
     * once a day, once a week or once a month. Depending on the
     * security requirements.
     */
    if (isServer) {
        err = gnutls_dh_params_init(&ctxt->dhParams);
        if (err < 0) {
735 736 737
            virReportError(VIR_ERR_SYSTEM_ERROR,
                           _("Unable to initialize diffie-hellman parameters: %s"),
                           gnutls_strerror(err));
738 739 740 741
            goto error;
        }
        err = gnutls_dh_params_generate2(ctxt->dhParams, DH_BITS);
        if (err < 0) {
742 743 744
            virReportError(VIR_ERR_SYSTEM_ERROR,
                           _("Unable to generate diffie-hellman parameters: %s"),
                           gnutls_strerror(err));
745 746 747 748 749 750 751 752 753 754 755
            goto error;
        }

        gnutls_certificate_set_dh_params(ctxt->x509cred,
                                         ctxt->dhParams);
    }

    ctxt->requireValidCert = requireValidCert;
    ctxt->x509dnWhitelist = x509dnWhitelist;
    ctxt->isServer = isServer;

756
    PROBE(RPC_TLS_CONTEXT_NEW,
757 758
          "ctxt=%p cacert=%s cacrl=%s cert=%s key=%s sanityCheckCert=%d requireValidCert=%d isServer=%d",
          ctxt, cacert, NULLSTR(cacrl), cert, key, sanityCheckCert, requireValidCert, isServer);
759

760 761
    return ctxt;

762
 error:
763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796
    if (isServer)
        gnutls_dh_params_deinit(ctxt->dhParams);
    gnutls_certificate_free_credentials(ctxt->x509cred);
    VIR_FREE(ctxt);
    return NULL;
}


static int virNetTLSContextLocateCredentials(const char *pkipath,
                                             bool tryUserPkiPath,
                                             bool isServer,
                                             char **cacert,
                                             char **cacrl,
                                             char **cert,
                                             char **key)
{
    char *userdir = NULL;
    char *user_pki_path = NULL;

    *cacert = NULL;
    *cacrl = NULL;
    *key = NULL;
    *cert = NULL;

    VIR_DEBUG("pkipath=%s isServer=%d tryUserPkiPath=%d",
              pkipath, isServer, tryUserPkiPath);

    /* Explicit path, then use that no matter whether the
     * files actually exist there
     */
    if (pkipath) {
        VIR_DEBUG("Told to use TLS credentials in %s", pkipath);
        if ((virAsprintf(cacert, "%s/%s", pkipath,
                         "cacert.pem")) < 0)
797
            goto error;
798 799
        if ((virAsprintf(cacrl, "%s/%s", pkipath,
                         "cacrl.pem")) < 0)
800
            goto error;
801 802
        if ((virAsprintf(key, "%s/%s", pkipath,
                         isServer ? "serverkey.pem" : "clientkey.pem")) < 0)
803
            goto error;
804 805 806

        if ((virAsprintf(cert, "%s/%s", pkipath,
                         isServer ? "servercert.pem" : "clientcert.pem")) < 0)
807
             goto error;
808 809 810 811
    } else if (tryUserPkiPath) {
        /* Check to see if $HOME/.pki contains at least one of the
         * files and if so, use that
         */
812
        userdir = virGetUserDirectory();
813 814

        if (!userdir)
815
            goto error;
816 817

        if (virAsprintf(&user_pki_path, "%s/.pki/libvirt", userdir) < 0)
818
            goto error;
819 820 821 822 823

        VIR_DEBUG("Trying to find TLS user credentials in %s", user_pki_path);

        if ((virAsprintf(cacert, "%s/%s", user_pki_path,
                         "cacert.pem")) < 0)
824
            goto error;
825 826 827

        if ((virAsprintf(cacrl, "%s/%s", user_pki_path,
                         "cacrl.pem")) < 0)
828
            goto error;
829 830 831

        if ((virAsprintf(key, "%s/%s", user_pki_path,
                         isServer ? "serverkey.pem" : "clientkey.pem")) < 0)
832
            goto error;
833 834 835

        if ((virAsprintf(cert, "%s/%s", user_pki_path,
                         isServer ? "servercert.pem" : "clientcert.pem")) < 0)
836
            goto error;
837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860

        /*
         * If some of the files can't be found, fallback
         * to the global location for them
         */
        if (!virFileExists(*cacert))
            VIR_FREE(*cacert);
        if (!virFileExists(*cacrl))
            VIR_FREE(*cacrl);

        /* Check these as a pair, since it they are
         * mutually dependent
         */
        if (!virFileExists(*key) || !virFileExists(*cert)) {
            VIR_FREE(*key);
            VIR_FREE(*cert);
        }
    }

    /* No explicit path, or user path didn't exist, so
     * fallback to global defaults
     */
    if (!*cacert) {
        VIR_DEBUG("Using default TLS CA certificate path");
861 862
        if (VIR_STRDUP(*cacert, LIBVIRT_CACERT) < 0)
            goto error;
863 864 865 866
    }

    if (!*cacrl) {
        VIR_DEBUG("Using default TLS CA revocation list path");
867 868
        if (VIR_STRDUP(*cacrl, LIBVIRT_CACRL) < 0)
            goto error;
869 870 871 872
    }

    if (!*key && !*cert) {
        VIR_DEBUG("Using default TLS key/certificate path");
873 874
        if (VIR_STRDUP(*key, isServer ? LIBVIRT_SERVERKEY : LIBVIRT_CLIENTKEY) < 0)
            goto error;
875

876 877
        if (VIR_STRDUP(*cert, isServer ? LIBVIRT_SERVERCERT : LIBVIRT_CLIENTCERT) < 0)
            goto error;
878 879 880 881 882 883 884
    }

    VIR_FREE(user_pki_path);
    VIR_FREE(userdir);

    return 0;

885
 error:
886 887 888 889 890 891 892 893 894 895 896 897 898
    VIR_FREE(*cacert);
    VIR_FREE(*cacrl);
    VIR_FREE(*key);
    VIR_FREE(*cert);
    VIR_FREE(user_pki_path);
    VIR_FREE(userdir);
    return -1;
}


static virNetTLSContextPtr virNetTLSContextNewPath(const char *pkipath,
                                                   bool tryUserPkiPath,
                                                   const char *const*x509dnWhitelist,
899
                                                   bool sanityCheckCert,
900 901 902 903 904 905 906
                                                   bool requireValidCert,
                                                   bool isServer)
{
    char *cacert = NULL, *cacrl = NULL, *key = NULL, *cert = NULL;
    virNetTLSContextPtr ctxt = NULL;

    if (virNetTLSContextLocateCredentials(pkipath, tryUserPkiPath, isServer,
907
                                          &cacert, &cacrl, &cert, &key) < 0)
908 909
        return NULL;

910
    ctxt = virNetTLSContextNew(cacert, cacrl, cert, key,
911 912
                               x509dnWhitelist, sanityCheckCert,
                               requireValidCert, isServer);
913 914 915 916 917 918 919 920 921 922 923 924

    VIR_FREE(cacert);
    VIR_FREE(cacrl);
    VIR_FREE(key);
    VIR_FREE(cert);

    return ctxt;
}

virNetTLSContextPtr virNetTLSContextNewServerPath(const char *pkipath,
                                                  bool tryUserPkiPath,
                                                  const char *const*x509dnWhitelist,
925
                                                  bool sanityCheckCert,
926 927
                                                  bool requireValidCert)
{
928 929
    return virNetTLSContextNewPath(pkipath, tryUserPkiPath, x509dnWhitelist,
                                   sanityCheckCert, requireValidCert, true);
930 931 932 933
}

virNetTLSContextPtr virNetTLSContextNewClientPath(const char *pkipath,
                                                  bool tryUserPkiPath,
934
                                                  bool sanityCheckCert,
935 936
                                                  bool requireValidCert)
{
937 938
    return virNetTLSContextNewPath(pkipath, tryUserPkiPath, NULL,
                                   sanityCheckCert, requireValidCert, false);
939 940 941 942 943 944 945 946
}


virNetTLSContextPtr virNetTLSContextNewServer(const char *cacert,
                                              const char *cacrl,
                                              const char *cert,
                                              const char *key,
                                              const char *const*x509dnWhitelist,
947
                                              bool sanityCheckCert,
948 949
                                              bool requireValidCert)
{
950 951
    return virNetTLSContextNew(cacert, cacrl, cert, key, x509dnWhitelist,
                               sanityCheckCert, requireValidCert, true);
952 953 954 955 956 957 958
}


virNetTLSContextPtr virNetTLSContextNewClient(const char *cacert,
                                              const char *cacrl,
                                              const char *cert,
                                              const char *key,
959
                                              bool sanityCheckCert,
960 961
                                              bool requireValidCert)
{
962 963
    return virNetTLSContextNew(cacert, cacrl, cert, key, NULL,
                               sanityCheckCert, requireValidCert, false);
964 965 966 967 968 969 970 971 972
}


static int virNetTLSContextValidCertificate(virNetTLSContextPtr ctxt,
                                            virNetTLSSessionPtr sess)
{
    int ret;
    unsigned int status;
    const gnutls_datum_t *certs;
973 974
    unsigned int nCerts;
    size_t i;
975
    char dname[256];
976
    char *dnameptr = dname;
977 978 979
    size_t dnamesize = sizeof(dname);

    memset(dname, 0, dnamesize);
980

981
    if ((ret = gnutls_certificate_verify_peers2(sess->session, &status)) < 0) {
982 983 984
        virReportError(VIR_ERR_SYSTEM_ERROR,
                       _("Unable to verify TLS peer: %s"),
                       gnutls_strerror(ret));
985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002
        goto authdeny;
    }

    if (status != 0) {
        const char *reason = _("Invalid certificate");

        if (status & GNUTLS_CERT_INVALID)
            reason = _("The certificate is not trusted.");

        if (status & GNUTLS_CERT_SIGNER_NOT_FOUND)
            reason = _("The certificate hasn't got a known issuer.");

        if (status & GNUTLS_CERT_REVOKED)
            reason = _("The certificate has been revoked.");

        if (status & GNUTLS_CERT_INSECURE_ALGORITHM)
            reason = _("The certificate uses an insecure algorithm");

1003 1004 1005
        virReportError(VIR_ERR_SYSTEM_ERROR,
                       _("Certificate failed validation: %s"),
                       reason);
1006 1007 1008 1009
        goto authdeny;
    }

    if (gnutls_certificate_type_get(sess->session) != GNUTLS_CRT_X509) {
1010 1011
        virReportError(VIR_ERR_SYSTEM_ERROR, "%s",
                       _("Only x509 certificates are supported"));
1012 1013 1014 1015
        goto authdeny;
    }

    if (!(certs = gnutls_certificate_get_peers(sess->session, &nCerts))) {
1016 1017
        virReportError(VIR_ERR_SYSTEM_ERROR, "%s",
                       _("The certificate has no peers"));
1018 1019 1020 1021 1022 1023 1024
        goto authdeny;
    }

    for (i = 0; i < nCerts; i++) {
        gnutls_x509_crt_t cert;

        if (gnutls_x509_crt_init(&cert) < 0) {
1025 1026
            virReportError(VIR_ERR_SYSTEM_ERROR, "%s",
                           _("Unable to initialize certificate"));
1027 1028 1029 1030
            goto authfail;
        }

        if (gnutls_x509_crt_import(cert, &certs[i], GNUTLS_X509_FMT_DER) < 0) {
1031 1032
            virReportError(VIR_ERR_SYSTEM_ERROR, "%s",
                           _("Unable to load certificate"));
1033 1034 1035 1036
            gnutls_x509_crt_deinit(cert);
            goto authfail;
        }

1037 1038
        if (virNetTLSContextCheckCertTimes(cert, "[session]",
                                           sess->isServer, i > 0) < 0) {
1039 1040 1041 1042 1043
            gnutls_x509_crt_deinit(cert);
            goto authdeny;
        }

        if (i == 0) {
1044 1045
            ret = gnutls_x509_crt_get_dn(cert, dname, &dnamesize);
            if (ret != 0) {
1046 1047 1048
                virReportError(VIR_ERR_SYSTEM_ERROR,
                               _("Failed to get certificate %s distinguished name: %s"),
                               "[session]", gnutls_strerror(ret));
1049 1050
                goto authfail;
            }
1051
            if (VIR_STRDUP(sess->x509dname, dname) < 0)
1052
                goto authfail;
1053 1054 1055
            VIR_DEBUG("Peer DN is %s", dname);

            if (virNetTLSContextCheckCertDN(cert, "[session]", sess->hostname, dname,
1056
                                            ctxt->x509dnWhitelist) < 0) {
1057
                gnutls_x509_crt_deinit(cert);
1058 1059 1060 1061 1062 1063 1064 1065 1066 1067
                goto authdeny;
            }

            /* !sess->isServer, since on the client, we're validating the
             * server's cert, and on the server, the client's cert
             */
            if (virNetTLSContextCheckCertBasicConstraints(cert, "[session]",
                                                          !sess->isServer, false) < 0) {
                gnutls_x509_crt_deinit(cert);
                goto authdeny;
1068 1069
            }

1070 1071
            if (virNetTLSContextCheckCertKeyUsage(cert, "[session]",
                                                  false) < 0) {
1072 1073 1074 1075
                gnutls_x509_crt_deinit(cert);
                goto authdeny;
            }

1076 1077 1078
            /* !sess->isServer - as above */
            if (virNetTLSContextCheckCertKeyPurpose(cert, "[session]",
                                                    !sess->isServer) < 0) {
1079 1080 1081 1082
                gnutls_x509_crt_deinit(cert);
                goto authdeny;
            }
        }
1083
        gnutls_x509_crt_deinit(cert);
1084 1085
    }

1086 1087
    PROBE(RPC_TLS_CONTEXT_SESSION_ALLOW,
          "ctxt=%p sess=%p dname=%s",
1088
          ctxt, sess, dnameptr);
1089

1090 1091
    return 0;

1092
 authdeny:
1093 1094
    PROBE(RPC_TLS_CONTEXT_SESSION_DENY,
          "ctxt=%p sess=%p dname=%s",
1095
          ctxt, sess, dnameptr);
1096

1097 1098
    return -1;

1099
 authfail:
1100 1101 1102 1103
    PROBE(RPC_TLS_CONTEXT_SESSION_FAIL,
          "ctxt=%p sess=%p",
          ctxt, sess);

1104 1105 1106 1107 1108 1109
    return -1;
}

int virNetTLSContextCheckCertificate(virNetTLSContextPtr ctxt,
                                     virNetTLSSessionPtr sess)
{
1110 1111
    int ret = -1;

1112 1113
    virObjectLock(ctxt);
    virObjectLock(sess);
1114
    if (virNetTLSContextValidCertificate(ctxt, sess) < 0) {
1115
        VIR_WARN("Certificate check failed %s", virGetLastErrorMessage());
1116
        if (ctxt->requireValidCert) {
1117 1118
            virReportError(VIR_ERR_AUTH_FAILED, "%s",
                           _("Failed to verify peer's certificate"));
1119
            goto cleanup;
1120
        }
1121
        virResetLastError();
1122 1123
        VIR_INFO("Ignoring bad certificate at user request");
    }
1124 1125 1126

    ret = 0;

1127
 cleanup:
1128 1129
    virObjectUnlock(ctxt);
    virObjectUnlock(sess);
1130 1131

    return ret;
1132 1133
}

1134
void virNetTLSContextDispose(void *obj)
1135
{
1136
    virNetTLSContextPtr ctxt = obj;
1137

1138 1139 1140
    PROBE(RPC_TLS_CONTEXT_DISPOSE,
          "ctxt=%p", ctxt);

1141 1142 1143 1144 1145 1146 1147 1148 1149 1150
    gnutls_dh_params_deinit(ctxt->dhParams);
    gnutls_certificate_free_credentials(ctxt->x509cred);
}


static ssize_t
virNetTLSSessionPush(void *opaque, const void *buf, size_t len)
{
    virNetTLSSessionPtr sess = opaque;
    if (!sess->writeFunc) {
1151
        VIR_WARN("TLS session push with missing write function");
1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179
        errno = EIO;
        return -1;
    };

    return sess->writeFunc(buf, len, sess->opaque);
}


static ssize_t
virNetTLSSessionPull(void *opaque, void *buf, size_t len)
{
    virNetTLSSessionPtr sess = opaque;
    if (!sess->readFunc) {
        VIR_WARN("TLS session pull with missing read function");
        errno = EIO;
        return -1;
    };

    return sess->readFunc(buf, len, sess->opaque);
}


virNetTLSSessionPtr virNetTLSSessionNew(virNetTLSContextPtr ctxt,
                                        const char *hostname)
{
    virNetTLSSessionPtr sess;
    int err;

E
Eric Blake 已提交
1180 1181
    VIR_DEBUG("ctxt=%p hostname=%s isServer=%d",
              ctxt, NULLSTR(hostname), ctxt->isServer);
1182

1183
    if (!(sess = virObjectLockableNew(virNetTLSSessionClass)))
1184 1185
        return NULL;

1186
    if (VIR_STRDUP(sess->hostname, hostname) < 0)
1187 1188 1189 1190
        goto error;

    if ((err = gnutls_init(&sess->session,
                           ctxt->isServer ? GNUTLS_SERVER : GNUTLS_CLIENT)) != 0) {
1191 1192 1193
        virReportError(VIR_ERR_SYSTEM_ERROR,
                       _("Failed to initialize TLS session: %s"),
                       gnutls_strerror(err));
1194 1195 1196 1197 1198 1199
        goto error;
    }

    /* avoid calling all the priority functions, since the defaults
     * are adequate.
     */
1200
    if ((err = gnutls_set_default_priority(sess->session)) != 0) {
1201 1202 1203
        virReportError(VIR_ERR_SYSTEM_ERROR,
                       _("Failed to set TLS session priority %s"),
                       gnutls_strerror(err));
1204 1205 1206 1207 1208 1209
        goto error;
    }

    if ((err = gnutls_credentials_set(sess->session,
                                      GNUTLS_CRD_CERTIFICATE,
                                      ctxt->x509cred)) != 0) {
1210 1211 1212
        virReportError(VIR_ERR_SYSTEM_ERROR,
                       _("Failed set TLS x509 credentials: %s"),
                       gnutls_strerror(err));
1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229
        goto error;
    }

    /* request client certificate if any.
     */
    if (ctxt->isServer) {
        gnutls_certificate_server_set_request(sess->session, GNUTLS_CERT_REQUEST);

        gnutls_dh_set_prime_bits(sess->session, DH_BITS);
    }

    gnutls_transport_set_ptr(sess->session, sess);
    gnutls_transport_set_push_function(sess->session,
                                       virNetTLSSessionPush);
    gnutls_transport_set_pull_function(sess->session,
                                       virNetTLSSessionPull);

1230 1231
    sess->isServer = ctxt->isServer;

1232
    PROBE(RPC_TLS_SESSION_NEW,
1233 1234
          "sess=%p ctxt=%p hostname=%s isServer=%d",
          sess, ctxt, hostname, sess->isServer);
1235

1236 1237
    return sess;

1238
 error:
1239
    virObjectUnref(sess);
1240 1241 1242 1243 1244 1245 1246 1247 1248
    return NULL;
}


void virNetTLSSessionSetIOCallbacks(virNetTLSSessionPtr sess,
                                    virNetTLSSessionWriteFunc writeFunc,
                                    virNetTLSSessionReadFunc readFunc,
                                    void *opaque)
{
1249
    virObjectLock(sess);
1250 1251 1252
    sess->writeFunc = writeFunc;
    sess->readFunc = readFunc;
    sess->opaque = opaque;
1253
    virObjectUnlock(sess);
1254 1255 1256 1257 1258 1259 1260
}


ssize_t virNetTLSSessionWrite(virNetTLSSessionPtr sess,
                              const char *buf, size_t len)
{
    ssize_t ret;
1261

1262
    virObjectLock(sess);
1263 1264 1265
    ret = gnutls_record_send(sess->session, buf, len);

    if (ret >= 0)
1266
        goto cleanup;
1267 1268 1269 1270 1271 1272 1273 1274

    switch (ret) {
    case GNUTLS_E_AGAIN:
        errno = EAGAIN;
        break;
    case GNUTLS_E_INTERRUPTED:
        errno = EINTR;
        break;
1275 1276 1277
    case GNUTLS_E_UNEXPECTED_PACKET_LENGTH:
        errno = ENOMSG;
        break;
1278 1279 1280 1281 1282
    default:
        errno = EIO;
        break;
    }

1283 1284
    ret = -1;

1285
 cleanup:
1286
    virObjectUnlock(sess);
1287
    return ret;
1288 1289 1290 1291 1292 1293 1294
}

ssize_t virNetTLSSessionRead(virNetTLSSessionPtr sess,
                             char *buf, size_t len)
{
    ssize_t ret;

1295
    virObjectLock(sess);
1296 1297 1298
    ret = gnutls_record_recv(sess->session, buf, len);

    if (ret >= 0)
1299
        goto cleanup;
1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312

    switch (ret) {
    case GNUTLS_E_AGAIN:
        errno = EAGAIN;
        break;
    case GNUTLS_E_INTERRUPTED:
        errno = EINTR;
        break;
    default:
        errno = EIO;
        break;
    }

1313 1314
    ret = -1;

1315
 cleanup:
1316
    virObjectUnlock(sess);
1317
    return ret;
1318 1319 1320 1321
}

int virNetTLSSessionHandshake(virNetTLSSessionPtr sess)
{
1322
    int ret;
1323
    VIR_DEBUG("sess=%p", sess);
1324
    virObjectLock(sess);
1325
    ret = gnutls_handshake(sess->session);
1326 1327 1328 1329
    VIR_DEBUG("Ret=%d", ret);
    if (ret == 0) {
        sess->handshakeComplete = true;
        VIR_DEBUG("Handshake is complete");
1330 1331 1332 1333 1334
        goto cleanup;
    }
    if (ret == GNUTLS_E_INTERRUPTED || ret == GNUTLS_E_AGAIN) {
        ret = 1;
        goto cleanup;
1335 1336 1337 1338 1339 1340 1341
    }

#if 0
    PROBE(CLIENT_TLS_FAIL, "fd=%d",
          virNetServerClientGetFD(client));
#endif

1342 1343 1344
    virReportError(VIR_ERR_AUTH_FAILED,
                   _("TLS handshake failed %s"),
                   gnutls_strerror(ret));
1345 1346
    ret = -1;

1347
 cleanup:
1348
    virObjectUnlock(sess);
1349
    return ret;
1350 1351 1352 1353 1354
}

virNetTLSSessionHandshakeStatus
virNetTLSSessionGetHandshakeStatus(virNetTLSSessionPtr sess)
{
1355
    virNetTLSSessionHandshakeStatus ret;
1356
    virObjectLock(sess);
1357
    if (sess->handshakeComplete)
1358
        ret = VIR_NET_TLS_HANDSHAKE_COMPLETE;
1359
    else if (gnutls_record_get_direction(sess->session) == 0)
1360
        ret = VIR_NET_TLS_HANDSHAKE_RECVING;
1361
    else
1362
        ret = VIR_NET_TLS_HANDSHAKE_SENDING;
1363
    virObjectUnlock(sess);
1364
    return ret;
1365 1366 1367 1368 1369 1370
}

int virNetTLSSessionGetKeySize(virNetTLSSessionPtr sess)
{
    gnutls_cipher_algorithm_t cipher;
    int ssf;
1371
    virObjectLock(sess);
1372 1373
    cipher = gnutls_cipher_get(sess->session);
    if (!(ssf = gnutls_cipher_get_key_size(cipher))) {
1374 1375
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("invalid cipher size for TLS session"));
1376 1377
        ssf = -1;
        goto cleanup;
1378 1379
    }

1380
 cleanup:
1381
    virObjectUnlock(sess);
1382 1383 1384
    return ssf;
}

1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396
const char *virNetTLSSessionGetX509DName(virNetTLSSessionPtr sess)
{
    const char *ret = NULL;

    virObjectLock(sess);

    ret = sess->x509dname;

    virObjectUnlock(sess);

    return ret;
}
1397

1398
void virNetTLSSessionDispose(void *obj)
1399
{
1400
    virNetTLSSessionPtr sess = obj;
1401

1402 1403 1404
    PROBE(RPC_TLS_SESSION_DISPOSE,
          "sess=%p", sess);

1405
    VIR_FREE(sess->x509dname);
1406 1407 1408
    VIR_FREE(sess->hostname);
    gnutls_deinit(sess->session);
}
M
Michal Privoznik 已提交
1409 1410 1411 1412 1413 1414

/*
 * This function MUST be called before any
 * virNetTLS* because it initializes
 * underlying GnuTLS library. According to
 * it's documentation, it's safe to be called
1415 1416 1417 1418 1419 1420 1421
 * many times, but is not thread safe.
 *
 * There is no corresponding "Deinit" / "Cleanup"
 * function because there is no safe way to call
 * 'gnutls_global_deinit' from a multi-threaded
 * library, where other libraries linked into the
 * application may also be using gnutls.
M
Michal Privoznik 已提交
1422 1423 1424
 */
void virNetTLSInit(void)
{
1425 1426 1427 1428 1429 1430 1431 1432 1433 1434
    const char *gnutlsdebug;
    if ((gnutlsdebug = virGetEnvAllowSUID("LIBVIRT_GNUTLS_DEBUG")) != NULL) {
        int val;
        if (virStrToLong_i(gnutlsdebug, NULL, 10, &val) < 0)
            val = 10;
        gnutls_global_set_log_level(val);
        gnutls_global_set_log_function(virNetTLSLog);
        VIR_DEBUG("Enabled GNUTLS debug");
    }

M
Michal Privoznik 已提交
1435 1436
    gnutls_global_init();
}