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 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"
22 #include "migration/migration.h"
23 #include "io/channel-tls.h"
24 #include "crypto/tlscreds.h"
25 #include "qemu/error-report.h"
26 #include "qapi/error.h"
29 static QCryptoTLSCreds *
30 migration_tls_get_creds(MigrationState *s,
31 QCryptoTLSCredsEndpoint endpoint,
37 creds = object_resolve_path_component(
38 object_get_objects_root(), s->parameters.tls_creds);
40 error_setg(errp, "No TLS credentials with id '%s'",
41 s->parameters.tls_creds);
44 ret = (QCryptoTLSCreds *)object_dynamic_cast(
45 creds, TYPE_QCRYPTO_TLS_CREDS);
47 error_setg(errp, "Object with id '%s' is not TLS credentials",
48 s->parameters.tls_creds);
51 if (ret->endpoint != endpoint) {
53 "Expected TLS credentials for a %s endpoint",
54 endpoint == QCRYPTO_TLS_CREDS_ENDPOINT_CLIENT ?
59 object_ref(OBJECT(ret));
64 static void migration_tls_incoming_handshake(Object *src,
68 QIOChannel *ioc = QIO_CHANNEL(src);
71 trace_migration_tls_incoming_handshake_error(error_get_pretty(err));
72 error_report("%s", error_get_pretty(err));
74 trace_migration_tls_incoming_handshake_complete();
75 migration_set_incoming_channel(migrate_get_current(), ioc);
77 object_unref(OBJECT(ioc));
80 void migration_tls_set_incoming_channel(MigrationState *s,
84 QCryptoTLSCreds *creds;
87 creds = migration_tls_get_creds(
88 s, QCRYPTO_TLS_CREDS_ENDPOINT_SERVER, errp);
93 tioc = qio_channel_tls_new_server(
95 NULL, /* XXX pass ACL name */
101 trace_migration_tls_incoming_handshake_start();
102 qio_channel_tls_handshake(tioc,
103 migration_tls_incoming_handshake,
109 static void migration_tls_outgoing_handshake(Object *src,
113 MigrationState *s = opaque;
114 QIOChannel *ioc = QIO_CHANNEL(src);
117 trace_migration_tls_outgoing_handshake_error(error_get_pretty(err));
118 s->to_dst_file = NULL;
119 migrate_fd_error(s, err);
121 trace_migration_tls_outgoing_handshake_complete();
122 migration_set_outgoing_channel(s, ioc, NULL);
124 object_unref(OBJECT(ioc));
128 void migration_tls_set_outgoing_channel(MigrationState *s,
130 const char *hostname,
133 QCryptoTLSCreds *creds;
136 creds = migration_tls_get_creds(
137 s, QCRYPTO_TLS_CREDS_ENDPOINT_CLIENT, errp);
142 if (s->parameters.tls_hostname) {
143 hostname = s->parameters.tls_hostname;
146 error_setg(errp, "No hostname available for TLS");
150 tioc = qio_channel_tls_new_client(
151 ioc, creds, hostname, errp);
156 trace_migration_tls_outgoing_handshake_start(hostname);
157 qio_channel_tls_handshake(tioc,
158 migration_tls_outgoing_handshake,