2 * QEMU migration TLS support
4 * Copyright (c) 2015 Red Hat, Inc.
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
21 #include "qemu/osdep.h"
23 #include "migration.h"
25 #include "crypto/tlscreds.h"
26 #include "qemu/error-report.h"
27 #include "qapi/error.h"
30 static QCryptoTLSCreds
*
31 migration_tls_get_creds(MigrationState
*s
,
32 QCryptoTLSCredsEndpoint endpoint
,
38 creds
= object_resolve_path_component(
39 object_get_objects_root(), s
->parameters
.tls_creds
);
41 error_setg(errp
, "No TLS credentials with id '%s'",
42 s
->parameters
.tls_creds
);
45 ret
= (QCryptoTLSCreds
*)object_dynamic_cast(
46 creds
, TYPE_QCRYPTO_TLS_CREDS
);
48 error_setg(errp
, "Object with id '%s' is not TLS credentials",
49 s
->parameters
.tls_creds
);
52 if (!qcrypto_tls_creds_check_endpoint(ret
, endpoint
, errp
)) {
60 static void migration_tls_incoming_handshake(QIOTask
*task
,
63 QIOChannel
*ioc
= QIO_CHANNEL(qio_task_get_source(task
));
66 if (qio_task_propagate_error(task
, &err
)) {
67 trace_migration_tls_incoming_handshake_error(error_get_pretty(err
));
68 error_report_err(err
);
70 trace_migration_tls_incoming_handshake_complete();
71 migration_channel_process_incoming(ioc
);
73 object_unref(OBJECT(ioc
));
76 void migration_tls_channel_process_incoming(MigrationState
*s
,
80 QCryptoTLSCreds
*creds
;
83 creds
= migration_tls_get_creds(
84 s
, QCRYPTO_TLS_CREDS_ENDPOINT_SERVER
, errp
);
89 tioc
= qio_channel_tls_new_server(
91 s
->parameters
.tls_authz
,
97 trace_migration_tls_incoming_handshake_start();
98 qio_channel_set_name(QIO_CHANNEL(tioc
), "migration-tls-incoming");
99 qio_channel_tls_handshake(tioc
,
100 migration_tls_incoming_handshake
,
107 static void migration_tls_outgoing_handshake(QIOTask
*task
,
110 MigrationState
*s
= opaque
;
111 QIOChannel
*ioc
= QIO_CHANNEL(qio_task_get_source(task
));
114 if (qio_task_propagate_error(task
, &err
)) {
115 trace_migration_tls_outgoing_handshake_error(error_get_pretty(err
));
117 trace_migration_tls_outgoing_handshake_complete();
119 migration_channel_connect(s
, ioc
, NULL
, err
);
120 object_unref(OBJECT(ioc
));
123 QIOChannelTLS
*migration_tls_client_create(MigrationState
*s
,
125 const char *hostname
,
128 QCryptoTLSCreds
*creds
;
130 creds
= migration_tls_get_creds(
131 s
, QCRYPTO_TLS_CREDS_ENDPOINT_CLIENT
, errp
);
136 if (s
->parameters
.tls_hostname
&& *s
->parameters
.tls_hostname
) {
137 hostname
= s
->parameters
.tls_hostname
;
140 return qio_channel_tls_new_client(ioc
, creds
, hostname
, errp
);
143 void migration_tls_channel_connect(MigrationState
*s
,
145 const char *hostname
,
150 tioc
= migration_tls_client_create(s
, ioc
, hostname
, errp
);
155 /* Save hostname into MigrationState for handshake */
156 s
->hostname
= g_strdup(hostname
);
157 trace_migration_tls_outgoing_handshake_start(hostname
);
158 qio_channel_set_name(QIO_CHANNEL(tioc
), "migration-tls-outgoing");
159 qio_channel_tls_handshake(tioc
,
160 migration_tls_outgoing_handshake
,
166 bool migrate_channel_requires_tls_upgrade(QIOChannel
*ioc
)
168 if (!migrate_use_tls()) {
172 return !object_dynamic_cast(OBJECT(ioc
), TYPE_QIO_CHANNEL_TLS
);