2017-04-17 18:07:04 +03:00
|
|
|
/*
|
|
|
|
* QEMU live migration channel operations
|
|
|
|
*
|
|
|
|
* Copyright Red Hat, Inc. 2016
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Daniel P. Berrange <berrange@redhat.com>
|
|
|
|
*
|
|
|
|
* Contributions after 2012-01-13 are licensed under the terms of the
|
|
|
|
* GNU GPL, version 2 or (at your option) any later version.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "qemu/osdep.h"
|
|
|
|
#include "channel.h"
|
2017-04-05 18:45:16 +03:00
|
|
|
#include "tls.h"
|
2017-04-24 21:07:27 +03:00
|
|
|
#include "migration.h"
|
2017-04-17 20:34:36 +03:00
|
|
|
#include "qemu-file-channel.h"
|
2017-04-17 18:07:04 +03:00
|
|
|
#include "trace.h"
|
|
|
|
#include "qapi/error.h"
|
|
|
|
#include "io/channel-tls.h"
|
|
|
|
|
2017-07-24 13:55:26 +03:00
|
|
|
/**
|
|
|
|
* @migration_channel_process_incoming - Create new incoming migration channel
|
|
|
|
*
|
|
|
|
* Notice that TLS is special. For it we listen in a listener socket,
|
|
|
|
* and then create a new client socket from the TLS library.
|
|
|
|
*
|
|
|
|
* @ioc: Channel to which we are connecting
|
|
|
|
*/
|
2017-04-17 18:15:02 +03:00
|
|
|
void migration_channel_process_incoming(QIOChannel *ioc)
|
2017-04-17 18:07:04 +03:00
|
|
|
{
|
2017-04-17 18:15:02 +03:00
|
|
|
MigrationState *s = migrate_get_current();
|
|
|
|
|
2017-04-17 18:07:04 +03:00
|
|
|
trace_migration_set_incoming_channel(
|
|
|
|
ioc, object_get_typename(OBJECT(ioc)));
|
|
|
|
|
|
|
|
if (s->parameters.tls_creds &&
|
|
|
|
*s->parameters.tls_creds &&
|
|
|
|
!object_dynamic_cast(OBJECT(ioc),
|
|
|
|
TYPE_QIO_CHANNEL_TLS)) {
|
|
|
|
Error *local_err = NULL;
|
|
|
|
migration_tls_channel_process_incoming(s, ioc, &local_err);
|
|
|
|
if (local_err) {
|
|
|
|
error_report_err(local_err);
|
|
|
|
}
|
|
|
|
} else {
|
2017-07-24 13:42:02 +03:00
|
|
|
migration_ioc_process_incoming(ioc);
|
2017-04-17 18:07:04 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-07-24 13:55:26 +03:00
|
|
|
/**
|
|
|
|
* @migration_channel_connect - Create new outgoing migration channel
|
|
|
|
*
|
|
|
|
* @s: Current migration state
|
|
|
|
* @ioc: Channel to which we are connecting
|
|
|
|
* @hostname: Where we want to connect
|
2017-12-15 20:16:55 +03:00
|
|
|
* @error: Error indicating failure to connect, free'd here
|
2017-07-24 13:55:26 +03:00
|
|
|
*/
|
2017-04-17 18:07:04 +03:00
|
|
|
void migration_channel_connect(MigrationState *s,
|
|
|
|
QIOChannel *ioc,
|
2017-12-15 20:16:55 +03:00
|
|
|
const char *hostname,
|
|
|
|
Error *error)
|
2017-04-17 18:07:04 +03:00
|
|
|
{
|
|
|
|
trace_migration_set_outgoing_channel(
|
2017-12-15 20:16:55 +03:00
|
|
|
ioc, object_get_typename(OBJECT(ioc)), hostname, error);
|
2017-04-17 18:07:04 +03:00
|
|
|
|
2017-12-15 20:16:55 +03:00
|
|
|
if (!error) {
|
|
|
|
if (s->parameters.tls_creds &&
|
|
|
|
*s->parameters.tls_creds &&
|
|
|
|
!object_dynamic_cast(OBJECT(ioc),
|
|
|
|
TYPE_QIO_CHANNEL_TLS)) {
|
|
|
|
migration_tls_channel_connect(s, ioc, hostname, &error);
|
|
|
|
} else {
|
|
|
|
QEMUFile *f = qemu_fopen_channel_output(ioc);
|
2017-04-17 18:07:04 +03:00
|
|
|
|
2017-12-15 20:16:55 +03:00
|
|
|
s->to_dst_file = f;
|
2017-04-17 18:07:04 +03:00
|
|
|
|
2017-12-15 20:16:55 +03:00
|
|
|
}
|
2017-04-17 18:07:04 +03:00
|
|
|
}
|
2017-12-15 20:16:55 +03:00
|
|
|
migrate_fd_connect(s, error);
|
|
|
|
error_free(error);
|
2017-04-17 18:07:04 +03:00
|
|
|
}
|