crypto: support upto 5 parallel certificate identities
The default (required) identity is stored in server-cert.pem / client-cert.pem and server-key.pem / client-key.pem. The 4 extra (optional) identities are stored in server-cert-$N.pem / client-cert-$N.pem and server-key-$N.pem / client-key-$N.pem. The numbering starts at 0 and the first missing cert/key pair will terminate the loading process. Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com> Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
This commit is contained in:
parent
c497a51481
commit
211fc7e416
7 changed files with 127 additions and 16 deletions
|
|
@ -85,6 +85,14 @@ qcrypto_tls_creds_get_dh_params_file(QCryptoTLSCreds *creds,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
char *
|
||||||
|
qcrypto_tls_creds_build_path(QCryptoTLSCreds *creds,
|
||||||
|
const char *filename)
|
||||||
|
{
|
||||||
|
return g_strdup_printf("%s/%s", creds->dir, filename);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
int
|
int
|
||||||
qcrypto_tls_creds_get_path(QCryptoTLSCreds *creds,
|
qcrypto_tls_creds_get_path(QCryptoTLSCreds *creds,
|
||||||
const char *filename,
|
const char *filename,
|
||||||
|
|
@ -94,7 +102,7 @@ qcrypto_tls_creds_get_path(QCryptoTLSCreds *creds,
|
||||||
{
|
{
|
||||||
int ret = -1;
|
int ret = -1;
|
||||||
|
|
||||||
*cred = g_strdup_printf("%s/%s", creds->dir, filename);
|
*cred = qcrypto_tls_creds_build_path(creds, filename);
|
||||||
|
|
||||||
if (access(*cred, R_OK) < 0) {
|
if (access(*cred, R_OK) < 0) {
|
||||||
if (errno == ENOENT && !required) {
|
if (errno == ENOENT && !required) {
|
||||||
|
|
|
||||||
|
|
@ -39,6 +39,9 @@ struct QCryptoTLSCreds {
|
||||||
|
|
||||||
#ifdef CONFIG_GNUTLS
|
#ifdef CONFIG_GNUTLS
|
||||||
|
|
||||||
|
char *qcrypto_tls_creds_build_path(QCryptoTLSCreds *creds,
|
||||||
|
const char *filename);
|
||||||
|
|
||||||
int qcrypto_tls_creds_get_path(QCryptoTLSCreds *creds,
|
int qcrypto_tls_creds_get_path(QCryptoTLSCreds *creds,
|
||||||
const char *filename,
|
const char *filename,
|
||||||
bool required,
|
bool required,
|
||||||
|
|
|
||||||
|
|
@ -687,7 +687,6 @@ qcrypto_tls_creds_x509_load_identity(QCryptoTLSCredsX509 *creds,
|
||||||
QCryptoTLSCredsBox *box,
|
QCryptoTLSCredsBox *box,
|
||||||
const char *certbase,
|
const char *certbase,
|
||||||
const char *keybase,
|
const char *keybase,
|
||||||
bool isOptional,
|
|
||||||
Error **errp)
|
Error **errp)
|
||||||
{
|
{
|
||||||
g_autoptr(QCryptoTLSCredsX509IdentFiles) files =
|
g_autoptr(QCryptoTLSCredsX509IdentFiles) files =
|
||||||
|
|
@ -695,9 +694,9 @@ qcrypto_tls_creds_x509_load_identity(QCryptoTLSCredsX509 *creds,
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
if (qcrypto_tls_creds_get_path(&creds->parent_obj, certbase,
|
if (qcrypto_tls_creds_get_path(&creds->parent_obj, certbase,
|
||||||
!isOptional, &files->certpath, errp) < 0 ||
|
false, &files->certpath, errp) < 0 ||
|
||||||
qcrypto_tls_creds_get_path(&creds->parent_obj, keybase,
|
qcrypto_tls_creds_get_path(&creds->parent_obj, keybase,
|
||||||
!isOptional, &files->keypath, errp) < 0) {
|
false, &files->keypath, errp) < 0) {
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -706,13 +705,17 @@ qcrypto_tls_creds_x509_load_identity(QCryptoTLSCredsX509 *creds,
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
if (files->certpath && !files->keypath) {
|
if (files->certpath && !files->keypath) {
|
||||||
error_setg(errp, "Cert '%s' without corresponding key",
|
g_autofree char *keypath =
|
||||||
files->certpath);
|
qcrypto_tls_creds_build_path(&creds->parent_obj, keybase);
|
||||||
|
error_setg(errp, "Cert '%s' without corresponding key '%s'",
|
||||||
|
files->certpath, keypath);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
if (!files->certpath && files->keypath) {
|
if (!files->certpath && files->keypath) {
|
||||||
error_setg(errp, "Key '%s' without corresponding cert",
|
g_autofree char *certpath =
|
||||||
files->keypath);
|
qcrypto_tls_creds_build_path(&creds->parent_obj, certbase);
|
||||||
|
error_setg(errp, "Key '%s' without corresponding cert '%s'",
|
||||||
|
files->keypath, certpath);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -751,7 +754,9 @@ qcrypto_tls_creds_x509_load_identities(QCryptoTLSCredsX509 *creds,
|
||||||
bool isServer,
|
bool isServer,
|
||||||
Error **errp)
|
Error **errp)
|
||||||
{
|
{
|
||||||
|
ERRP_GUARD();
|
||||||
QCryptoTLSCredsX509IdentFiles *ifiles;
|
QCryptoTLSCredsX509IdentFiles *ifiles;
|
||||||
|
size_t i;
|
||||||
|
|
||||||
ifiles = qcrypto_tls_creds_x509_load_identity(
|
ifiles = qcrypto_tls_creds_x509_load_identity(
|
||||||
creds, box,
|
creds, box,
|
||||||
|
|
@ -761,15 +766,52 @@ qcrypto_tls_creds_x509_load_identities(QCryptoTLSCredsX509 *creds,
|
||||||
isServer ?
|
isServer ?
|
||||||
QCRYPTO_TLS_CREDS_X509_SERVER_KEY :
|
QCRYPTO_TLS_CREDS_X509_SERVER_KEY :
|
||||||
QCRYPTO_TLS_CREDS_X509_CLIENT_KEY,
|
QCRYPTO_TLS_CREDS_X509_CLIENT_KEY,
|
||||||
!isServer, errp);
|
errp);
|
||||||
if (!ifiles) {
|
if (!ifiles && *errp) {
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (ifiles) {
|
||||||
|
files->identities = g_renew(QCryptoTLSCredsX509IdentFiles *,
|
||||||
|
files->identities,
|
||||||
|
files->nidentities + 1);
|
||||||
|
files->identities[files->nidentities++] = ifiles;
|
||||||
|
}
|
||||||
|
|
||||||
|
for (i = 0; i < QCRYPTO_TLS_CREDS_X509_IDENTITY_MAX; i++) {
|
||||||
|
g_autofree char *cert = g_strdup_printf(
|
||||||
|
isServer ?
|
||||||
|
QCRYPTO_TLS_CREDS_X509_SERVER_CERT_N :
|
||||||
|
QCRYPTO_TLS_CREDS_X509_CLIENT_CERT_N, i);
|
||||||
|
g_autofree char *key = g_strdup_printf(
|
||||||
|
isServer ?
|
||||||
|
QCRYPTO_TLS_CREDS_X509_SERVER_KEY_N :
|
||||||
|
QCRYPTO_TLS_CREDS_X509_CLIENT_KEY_N, i);
|
||||||
|
|
||||||
|
ifiles = qcrypto_tls_creds_x509_load_identity(creds, box,
|
||||||
|
cert, key, errp);
|
||||||
|
if (!ifiles && *errp) {
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
if (!ifiles) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
files->identities = g_renew(QCryptoTLSCredsX509IdentFiles *,
|
files->identities = g_renew(QCryptoTLSCredsX509IdentFiles *,
|
||||||
files->identities,
|
files->identities,
|
||||||
files->nidentities + 1);
|
files->nidentities + 1);
|
||||||
files->identities[files->nidentities++] = ifiles;
|
files->identities[files->nidentities++] = ifiles;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (files->nidentities == 0 && isServer) {
|
||||||
|
g_autofree char *certpath = qcrypto_tls_creds_build_path(
|
||||||
|
&creds->parent_obj, QCRYPTO_TLS_CREDS_X509_SERVER_CERT);
|
||||||
|
g_autofree char *keypath = qcrypto_tls_creds_build_path(
|
||||||
|
&creds->parent_obj, QCRYPTO_TLS_CREDS_X509_SERVER_KEY);
|
||||||
|
error_setg(errp, "Missing server cert '%s' & key '%s'",
|
||||||
|
certpath, keypath);
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -345,6 +345,7 @@ qcrypto_tls_session_check_certificate(QCryptoTLSSession *session,
|
||||||
goto error;
|
goto error;
|
||||||
}
|
}
|
||||||
session->peername = (char *)g_steal_pointer(&dname.data);
|
session->peername = (char *)g_steal_pointer(&dname.data);
|
||||||
|
trace_qcrypto_tls_session_check_x509_dn(session, session->peername);
|
||||||
if (session->authzid) {
|
if (session->authzid) {
|
||||||
bool allow;
|
bool allow;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -21,6 +21,7 @@ qcrypto_tls_creds_x509_load_cert_list(void *creds, const char *file) "TLS creds
|
||||||
# tlssession.c
|
# tlssession.c
|
||||||
qcrypto_tls_session_new(void *session, void *creds, const char *hostname, const char *authzid, int endpoint) "TLS session new session=%p creds=%p hostname=%s authzid=%s endpoint=%d"
|
qcrypto_tls_session_new(void *session, void *creds, const char *hostname, const char *authzid, int endpoint) "TLS session new session=%p creds=%p hostname=%s authzid=%s endpoint=%d"
|
||||||
qcrypto_tls_session_check_creds(void *session, const char *status) "TLS session check creds session=%p status=%s"
|
qcrypto_tls_session_check_creds(void *session, const char *status) "TLS session check creds session=%p status=%s"
|
||||||
|
qcrypto_tls_session_check_x509_dn(void *session, const char *dname) "TLS session check x509 distinguished name session=%p dname=%s"
|
||||||
qcrypto_tls_session_parameters(void *session, int threadSafety, int protocol, int cipher) "TLS session parameters session=%p threadSafety=%d protocol=%d cipher=%d"
|
qcrypto_tls_session_parameters(void *session, int threadSafety, int protocol, int cipher) "TLS session parameters session=%p threadSafety=%d protocol=%d cipher=%d"
|
||||||
qcrypto_tls_session_bug1717_workaround(void *session) "TLS session bug1717 workaround session=%p"
|
qcrypto_tls_session_bug1717_workaround(void *session) "TLS session bug1717 workaround session=%p"
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -36,8 +36,58 @@ server and exposing it directly to remote browser clients. In such a
|
||||||
case it might be useful to use a commercial CA to avoid needing to
|
case it might be useful to use a commercial CA to avoid needing to
|
||||||
install custom CA certs in the web browsers.
|
install custom CA certs in the web browsers.
|
||||||
|
|
||||||
The recommendation is for the server to keep its certificates in either
|
.. _tls_cert_file_naming:
|
||||||
``/etc/pki/qemu`` or for unprivileged users in ``$HOME/.pki/qemu``.
|
|
||||||
|
Certificate file naming
|
||||||
|
~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
|
In a simple setup, where all QEMU instances on a machine share the
|
||||||
|
same TLS configuration, it is suggested that QEMU certificates be
|
||||||
|
kept in either ``/etc/pki/qemu`` or, for unprivileged users, in
|
||||||
|
``$HOME/.pki/qemu``. Where different QEMU subsystems require
|
||||||
|
different certificate configurations, sub-dirs of these locations
|
||||||
|
may be chosen.
|
||||||
|
|
||||||
|
The default file names that QEMU will traditionally load are:
|
||||||
|
|
||||||
|
* ``ca-cert.pem`` - mandatory; for both client and server configurations
|
||||||
|
* ``ca-crl.pem`` - optional; for server configurations only
|
||||||
|
* ``server-cert.pem`` - mandatory; for server configurations only
|
||||||
|
* ``server-key.pem`` - mandatory; for server configurations only
|
||||||
|
* ``client-cert.pem`` - optional; for client configurations only
|
||||||
|
* ``client-key.pem`` - optional; for client configurations only
|
||||||
|
* ``dh-params.pem`` - optional; for server configurations only
|
||||||
|
|
||||||
|
Since QEMU 10.2.0, there is support for loading upto four additional
|
||||||
|
identities:
|
||||||
|
|
||||||
|
* ``server-cert-[IDX].pem`` - optional; for server configurations only
|
||||||
|
* ``server-key-[IDX].pem`` - optional; for server configurations only
|
||||||
|
* ``client-cert-[IDX].pem`` - optional; for client configurations only
|
||||||
|
* ``client-key-[IDX].pem`` - optional; for client configurations only
|
||||||
|
|
||||||
|
where ``-[IDX]`` is one of the digits 0-3. Loading will terminate at
|
||||||
|
the first absent index. The index based certificate files may be used
|
||||||
|
as a replacement for, or in addition to, the traditional non-index
|
||||||
|
based certificate files. The traditional certificate files will be
|
||||||
|
loaded first, if present, then the index based certificates. Where
|
||||||
|
multiple certificates are compatible with a TLS session, the first
|
||||||
|
loaded certificate will preferred. IOW file naming can influence
|
||||||
|
which certificates are used for a session.
|
||||||
|
|
||||||
|
The use of multiple sets of certificates is intended to allow an
|
||||||
|
incremental transition to certificates using different crytographic
|
||||||
|
algorithms. This allows a newly deployed QEMU to introduce use of
|
||||||
|
stronger cryptographic algorithms that will be preferred when talking
|
||||||
|
to other newly deployed QEMU instances, while retaining compatbility
|
||||||
|
with certificates issued to a historically deployed QEMU. This is
|
||||||
|
notably useful to support live migration from an old QEMU deployed
|
||||||
|
on older operating system releases, which may support fewer crypto
|
||||||
|
algorithm choices than the current OS.
|
||||||
|
|
||||||
|
The certificate creation commands below will be illustrated using
|
||||||
|
the traditional naming scheme, but their args can be substituted
|
||||||
|
to use the indexed naming in the obvious manner.
|
||||||
|
|
||||||
.. _tls_005fgenerate_005fca:
|
.. _tls_005fgenerate_005fca:
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -37,7 +37,13 @@ typedef struct QCryptoTLSCredsX509Class QCryptoTLSCredsX509Class;
|
||||||
#define QCRYPTO_TLS_CREDS_X509_SERVER_CERT "server-cert.pem"
|
#define QCRYPTO_TLS_CREDS_X509_SERVER_CERT "server-cert.pem"
|
||||||
#define QCRYPTO_TLS_CREDS_X509_CLIENT_KEY "client-key.pem"
|
#define QCRYPTO_TLS_CREDS_X509_CLIENT_KEY "client-key.pem"
|
||||||
#define QCRYPTO_TLS_CREDS_X509_CLIENT_CERT "client-cert.pem"
|
#define QCRYPTO_TLS_CREDS_X509_CLIENT_CERT "client-cert.pem"
|
||||||
|
#define QCRYPTO_TLS_CREDS_X509_SERVER_KEY_N "server-key-%zu.pem"
|
||||||
|
#define QCRYPTO_TLS_CREDS_X509_SERVER_CERT_N "server-cert-%zu.pem"
|
||||||
|
#define QCRYPTO_TLS_CREDS_X509_CLIENT_KEY_N "client-key-%zu.pem"
|
||||||
|
#define QCRYPTO_TLS_CREDS_X509_CLIENT_CERT_N "client-cert-%zu.pem"
|
||||||
|
|
||||||
|
/* Max number of additional cert/key pairs (ie _N constants) */
|
||||||
|
#define QCRYPTO_TLS_CREDS_X509_IDENTITY_MAX 4
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* QCryptoTLSCredsX509:
|
* QCryptoTLSCredsX509:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue