QEMU main repository: Please see https://www.qemu.org/docs/master/devel/submitting-a-patch.html for how to submit changes to QEMU. Pull Requests are ignored. Please only use release tarballs from the QEMU website. http://www.qemu.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
143 lines
4.0 KiB
143 lines
4.0 KiB
/*
|
|
* QEMU crypto TLS anonymous credential support
|
|
*
|
|
* Copyright (c) 2015 Red Hat, Inc.
|
|
*
|
|
* 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
|
|
* License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
|
|
#include "qemu/osdep.h"
|
|
#include "crypto/tlscredsanon.h"
|
|
#include "tlscredspriv.h"
|
|
#include "qapi/error.h"
|
|
#include "qemu/module.h"
|
|
#include "qom/object_interfaces.h"
|
|
#include "trace.h"
|
|
|
|
|
|
struct QCryptoTLSCredsAnon {
|
|
QCryptoTLSCreds parent_obj;
|
|
};
|
|
|
|
#ifdef CONFIG_GNUTLS
|
|
|
|
#include <gnutls/gnutls.h>
|
|
|
|
static int
|
|
qcrypto_tls_creds_anon_load(QCryptoTLSCredsAnon *creds,
|
|
Error **errp)
|
|
{
|
|
g_autoptr(QCryptoTLSCredsBox) box = NULL;
|
|
g_autofree char *dhparams = NULL;
|
|
int ret;
|
|
|
|
trace_qcrypto_tls_creds_anon_load(creds,
|
|
creds->parent_obj.dir ? creds->parent_obj.dir : "<nodir>");
|
|
|
|
if (creds->parent_obj.endpoint == QCRYPTO_TLS_CREDS_ENDPOINT_SERVER) {
|
|
box = qcrypto_tls_creds_box_new_server(GNUTLS_CRD_ANON);
|
|
|
|
if (creds->parent_obj.dir &&
|
|
qcrypto_tls_creds_get_path(&creds->parent_obj,
|
|
QCRYPTO_TLS_CREDS_DH_PARAMS,
|
|
false, &dhparams, errp) < 0) {
|
|
return -1;
|
|
}
|
|
|
|
ret = gnutls_anon_allocate_server_credentials(&box->data.anonserver);
|
|
if (ret < 0) {
|
|
error_setg(errp, "Cannot allocate credentials: %s",
|
|
gnutls_strerror(ret));
|
|
return -1;
|
|
}
|
|
|
|
if (qcrypto_tls_creds_get_dh_params_file(&creds->parent_obj, dhparams,
|
|
&box->dh_params, errp) < 0) {
|
|
return -1;
|
|
}
|
|
|
|
if (box->dh_params) {
|
|
gnutls_anon_set_server_dh_params(box->data.anonserver,
|
|
box->dh_params);
|
|
}
|
|
} else {
|
|
ret = gnutls_anon_allocate_client_credentials(&box->data.anonclient);
|
|
if (ret < 0) {
|
|
error_setg(errp, "Cannot allocate credentials: %s",
|
|
gnutls_strerror(ret));
|
|
return -1;
|
|
}
|
|
}
|
|
creds->parent_obj.box = g_steal_pointer(&box);
|
|
|
|
return 0;
|
|
}
|
|
|
|
|
|
#else /* ! CONFIG_GNUTLS */
|
|
|
|
|
|
static void
|
|
qcrypto_tls_creds_anon_load(QCryptoTLSCredsAnon *creds G_GNUC_UNUSED,
|
|
Error **errp)
|
|
{
|
|
error_setg(errp, "TLS credentials support requires GNUTLS");
|
|
}
|
|
|
|
|
|
#endif /* ! CONFIG_GNUTLS */
|
|
|
|
|
|
static void
|
|
qcrypto_tls_creds_anon_complete(UserCreatable *uc, Error **errp)
|
|
{
|
|
QCryptoTLSCredsAnon *creds = QCRYPTO_TLS_CREDS_ANON(uc);
|
|
|
|
qcrypto_tls_creds_anon_load(creds, errp);
|
|
}
|
|
|
|
|
|
static void
|
|
qcrypto_tls_creds_anon_class_init(ObjectClass *oc, const void *data)
|
|
{
|
|
UserCreatableClass *ucc = USER_CREATABLE_CLASS(oc);
|
|
QCryptoTLSCredsClass *tcc = QCRYPTO_TLS_CREDS_CLASS(oc);
|
|
|
|
ucc->complete = qcrypto_tls_creds_anon_complete;
|
|
tcc->prioritySuffix = "+ANON-DH";
|
|
}
|
|
|
|
|
|
static const TypeInfo qcrypto_tls_creds_anon_info = {
|
|
.parent = TYPE_QCRYPTO_TLS_CREDS,
|
|
.name = TYPE_QCRYPTO_TLS_CREDS_ANON,
|
|
.instance_size = sizeof(QCryptoTLSCredsAnon),
|
|
.class_size = sizeof(QCryptoTLSCredsAnonClass),
|
|
.class_init = qcrypto_tls_creds_anon_class_init,
|
|
.interfaces = (const InterfaceInfo[]) {
|
|
{ TYPE_USER_CREATABLE },
|
|
{ }
|
|
}
|
|
};
|
|
|
|
|
|
static void
|
|
qcrypto_tls_creds_anon_register_types(void)
|
|
{
|
|
type_register_static(&qcrypto_tls_creds_anon_info);
|
|
}
|
|
|
|
|
|
type_init(qcrypto_tls_creds_anon_register_types);
|
|
|