2009-08-05 17:24:29 +02:00
|
|
|
/*
|
2016-07-28 16:54:34 +08:00
|
|
|
* QEMU live migration via socket
|
2009-08-05 17:24:29 +02:00
|
|
|
*
|
2016-04-27 11:05:02 +01:00
|
|
|
* Copyright Red Hat, Inc. 2009-2016
|
2009-08-05 17:24:29 +02:00
|
|
|
*
|
|
|
|
|
* Authors:
|
|
|
|
|
* Chris Lalancette <clalance@redhat.com>
|
2016-04-27 11:05:02 +01:00
|
|
|
* Daniel P. Berrange <berrange@redhat.com>
|
2009-08-05 17:24:29 +02:00
|
|
|
*
|
|
|
|
|
* This work is licensed under the terms of the GNU GPL, version 2. See
|
|
|
|
|
* the COPYING file in the top-level directory.
|
|
|
|
|
*
|
2012-01-13 17:44:23 +01:00
|
|
|
* Contributions after 2012-01-13 are licensed under the terms of the
|
|
|
|
|
* GNU GPL, version 2 or (at your option) any later version.
|
2009-08-05 17:24:29 +02:00
|
|
|
*/
|
|
|
|
|
|
2016-01-26 18:16:54 +00:00
|
|
|
#include "qemu/osdep.h"
|
2019-02-27 11:51:27 +01:00
|
|
|
#include "qemu/cutils.h"
|
2014-03-19 13:34:28 +00:00
|
|
|
|
|
|
|
|
#include "qemu/error-report.h"
|
2016-04-27 11:05:02 +01:00
|
|
|
#include "qapi/error.h"
|
2017-04-17 17:07:04 +02:00
|
|
|
#include "channel.h"
|
2017-04-05 17:40:11 +02:00
|
|
|
#include "socket.h"
|
2017-04-24 20:07:27 +02:00
|
|
|
#include "migration.h"
|
2017-04-20 18:52:18 +02:00
|
|
|
#include "qemu-file.h"
|
2016-04-27 11:05:02 +01:00
|
|
|
#include "io/channel-socket.h"
|
2018-03-12 14:17:14 +00:00
|
|
|
#include "io/net-listener.h"
|
2016-04-27 11:05:02 +01:00
|
|
|
#include "trace.h"
|
2022-07-07 14:55:02 -04:00
|
|
|
#include "postcopy-ram.h"
|
2023-03-01 21:18:45 +01:00
|
|
|
#include "options.h"
|
2023-10-23 15:20:44 -03:00
|
|
|
#include "qapi/clone-visitor.h"
|
|
|
|
|
#include "qapi/qapi-visit-sockets.h"
|
2009-08-05 17:24:29 +02:00
|
|
|
|
2018-02-28 12:05:15 +01:00
|
|
|
struct SocketOutgoingArgs {
|
|
|
|
|
SocketAddress *saddr;
|
|
|
|
|
} outgoing_args;
|
|
|
|
|
|
|
|
|
|
void socket_send_channel_create(QIOTaskFunc f, void *data)
|
|
|
|
|
{
|
|
|
|
|
QIOChannelSocket *sioc = qio_channel_socket_new();
|
|
|
|
|
qio_channel_socket_connect_async(sioc, outgoing_args.saddr,
|
|
|
|
|
f, data, NULL, NULL);
|
|
|
|
|
}
|
|
|
|
|
|
2022-07-07 14:55:02 -04:00
|
|
|
QIOChannel *socket_send_channel_create_sync(Error **errp)
|
|
|
|
|
{
|
|
|
|
|
QIOChannelSocket *sioc = qio_channel_socket_new();
|
|
|
|
|
|
|
|
|
|
if (!outgoing_args.saddr) {
|
|
|
|
|
object_unref(OBJECT(sioc));
|
|
|
|
|
error_setg(errp, "Initial sock address not set!");
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (qio_channel_socket_connect_sync(sioc, outgoing_args.saddr, errp) < 0) {
|
|
|
|
|
object_unref(OBJECT(sioc));
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return QIO_CHANNEL(sioc);
|
|
|
|
|
}
|
|
|
|
|
|
2016-04-27 11:05:16 +01:00
|
|
|
struct SocketConnectData {
|
|
|
|
|
MigrationState *s;
|
|
|
|
|
char *hostname;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static void socket_connect_data_free(void *opaque)
|
|
|
|
|
{
|
|
|
|
|
struct SocketConnectData *data = opaque;
|
|
|
|
|
if (!data) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
g_free(data->hostname);
|
|
|
|
|
g_free(data);
|
|
|
|
|
}
|
|
|
|
|
|
2016-08-11 15:20:58 +01:00
|
|
|
static void socket_outgoing_migration(QIOTask *task,
|
2016-04-27 11:05:03 +01:00
|
|
|
gpointer opaque)
|
2009-08-05 17:24:29 +02:00
|
|
|
{
|
2016-04-27 11:05:16 +01:00
|
|
|
struct SocketConnectData *data = opaque;
|
2016-08-11 15:20:58 +01:00
|
|
|
QIOChannel *sioc = QIO_CHANNEL(qio_task_get_source(task));
|
|
|
|
|
Error *err = NULL;
|
2009-08-05 17:24:29 +02:00
|
|
|
|
2016-08-11 15:20:58 +01:00
|
|
|
if (qio_task_propagate_error(task, &err)) {
|
2016-04-27 11:05:03 +01:00
|
|
|
trace_migration_socket_outgoing_error(error_get_pretty(err));
|
2022-05-13 03:28:33 -03:00
|
|
|
goto out;
|
2009-08-05 17:24:29 +02:00
|
|
|
}
|
2022-05-13 03:28:33 -03:00
|
|
|
|
|
|
|
|
trace_migration_socket_outgoing_connected(data->hostname);
|
|
|
|
|
|
2023-03-01 22:17:14 +01:00
|
|
|
if (migrate_zero_copy_send() &&
|
2022-05-13 03:28:37 -03:00
|
|
|
!qio_channel_has_feature(sioc, QIO_CHANNEL_FEATURE_WRITE_ZERO_COPY)) {
|
|
|
|
|
error_setg(&err, "Zero copy send feature not detected in host kernel");
|
2022-05-13 03:28:33 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
out:
|
2017-12-15 17:16:55 +00:00
|
|
|
migration_channel_connect(data->s, sioc, data->hostname, err);
|
2016-08-11 15:20:58 +01:00
|
|
|
object_unref(OBJECT(sioc));
|
2009-08-05 17:24:29 +02:00
|
|
|
}
|
|
|
|
|
|
2023-10-23 15:20:44 -03:00
|
|
|
void socket_start_outgoing_migration(MigrationState *s,
|
|
|
|
|
SocketAddress *saddr,
|
|
|
|
|
Error **errp)
|
2009-08-05 17:24:29 +02:00
|
|
|
{
|
2016-04-27 11:05:03 +01:00
|
|
|
QIOChannelSocket *sioc = qio_channel_socket_new();
|
2016-04-27 11:05:16 +01:00
|
|
|
struct SocketConnectData *data = g_new0(struct SocketConnectData, 1);
|
2023-10-23 15:20:44 -03:00
|
|
|
SocketAddress *addr = QAPI_CLONE(SocketAddress, saddr);
|
2016-07-28 16:54:34 +08:00
|
|
|
|
2016-04-27 11:05:16 +01:00
|
|
|
data->s = s;
|
2018-02-28 12:05:15 +01:00
|
|
|
|
|
|
|
|
/* in case previous migration leaked it */
|
|
|
|
|
qapi_free_SocketAddress(outgoing_args.saddr);
|
2023-10-23 15:20:44 -03:00
|
|
|
outgoing_args.saddr = addr;
|
2018-02-28 12:05:15 +01:00
|
|
|
|
2017-04-26 09:36:41 +02:00
|
|
|
if (saddr->type == SOCKET_ADDRESS_TYPE_INET) {
|
|
|
|
|
data->hostname = g_strdup(saddr->u.inet.host);
|
2016-04-27 11:05:16 +01:00
|
|
|
}
|
2016-07-28 16:54:34 +08:00
|
|
|
|
2016-09-30 11:57:14 +01:00
|
|
|
qio_channel_set_name(QIO_CHANNEL(sioc), "migration-socket-outgoing");
|
2016-04-27 11:05:02 +01:00
|
|
|
qio_channel_socket_connect_async(sioc,
|
|
|
|
|
saddr,
|
2016-04-27 11:05:03 +01:00
|
|
|
socket_outgoing_migration,
|
2016-04-27 11:05:16 +01:00
|
|
|
data,
|
2018-03-05 14:43:23 +08:00
|
|
|
socket_connect_data_free,
|
|
|
|
|
NULL);
|
2009-08-05 17:24:29 +02:00
|
|
|
}
|
|
|
|
|
|
2024-02-22 17:53:00 +08:00
|
|
|
void socket_cleanup_outgoing_migration(void)
|
|
|
|
|
{
|
|
|
|
|
if (outgoing_args.saddr) {
|
|
|
|
|
qapi_free_SocketAddress(outgoing_args.saddr);
|
|
|
|
|
outgoing_args.saddr = NULL;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-03-12 14:17:14 +00:00
|
|
|
static void socket_accept_incoming_migration(QIONetListener *listener,
|
|
|
|
|
QIOChannelSocket *cioc,
|
|
|
|
|
gpointer opaque)
|
2009-08-05 17:24:29 +02:00
|
|
|
{
|
2016-04-27 11:05:03 +01:00
|
|
|
trace_migration_socket_incoming_accepted();
|
2016-04-27 11:05:02 +01:00
|
|
|
|
2021-04-21 12:28:33 +01:00
|
|
|
if (migration_has_all_channels()) {
|
|
|
|
|
error_report("%s: Extra incoming migration connection; ignoring",
|
|
|
|
|
__func__);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2018-03-12 14:17:14 +00:00
|
|
|
qio_channel_set_name(QIO_CHANNEL(cioc), "migration-socket-incoming");
|
|
|
|
|
migration_channel_process_incoming(QIO_CHANNEL(cioc));
|
2009-08-05 17:24:29 +02:00
|
|
|
}
|
|
|
|
|
|
2021-04-21 12:28:33 +01:00
|
|
|
static void
|
|
|
|
|
socket_incoming_migration_end(void *opaque)
|
|
|
|
|
{
|
|
|
|
|
QIONetListener *listener = opaque;
|
|
|
|
|
|
|
|
|
|
qio_net_listener_disconnect(listener);
|
|
|
|
|
object_unref(OBJECT(listener));
|
|
|
|
|
}
|
2016-04-27 11:05:02 +01:00
|
|
|
|
2023-10-23 15:20:44 -03:00
|
|
|
void socket_start_incoming_migration(SocketAddress *saddr,
|
|
|
|
|
Error **errp)
|
2009-08-05 17:24:29 +02:00
|
|
|
{
|
2018-03-12 14:17:14 +00:00
|
|
|
QIONetListener *listener = qio_net_listener_new();
|
2021-04-21 12:28:33 +01:00
|
|
|
MigrationIncomingState *mis = migration_incoming_get_current();
|
2019-02-27 11:51:27 +01:00
|
|
|
size_t i;
|
2019-08-19 18:14:44 +02:00
|
|
|
int num = 1;
|
2009-08-05 17:24:29 +02:00
|
|
|
|
2018-03-12 14:17:14 +00:00
|
|
|
qio_net_listener_set_name(listener, "migration-socket-listener");
|
2016-09-30 11:57:14 +01:00
|
|
|
|
2023-03-01 22:10:29 +01:00
|
|
|
if (migrate_multifd()) {
|
2019-08-19 18:14:44 +02:00
|
|
|
num = migrate_multifd_channels();
|
2022-07-07 14:55:02 -04:00
|
|
|
} else if (migrate_postcopy_preempt()) {
|
|
|
|
|
num = RAM_CHANNEL_MAX;
|
2019-08-19 18:14:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (qio_net_listener_open_sync(listener, saddr, num, errp) < 0) {
|
2018-03-12 14:17:14 +00:00
|
|
|
object_unref(OBJECT(listener));
|
2012-10-02 18:21:18 +02:00
|
|
|
return;
|
2009-08-05 17:24:29 +02:00
|
|
|
}
|
|
|
|
|
|
2021-04-21 12:28:33 +01:00
|
|
|
mis->transport_data = listener;
|
|
|
|
|
mis->transport_cleanup = socket_incoming_migration_end;
|
|
|
|
|
|
2018-05-02 18:47:17 +08:00
|
|
|
qio_net_listener_set_client_func_full(listener,
|
|
|
|
|
socket_accept_incoming_migration,
|
|
|
|
|
NULL, NULL,
|
|
|
|
|
g_main_context_get_thread_default());
|
2019-02-27 11:51:27 +01:00
|
|
|
|
|
|
|
|
for (i = 0; i < listener->nsioc; i++) {
|
|
|
|
|
SocketAddress *address =
|
|
|
|
|
qio_channel_socket_get_local_address(listener->sioc[i], errp);
|
|
|
|
|
if (!address) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
migrate_add_address(address);
|
2019-03-12 14:50:50 +01:00
|
|
|
qapi_free_SocketAddress(address);
|
2019-02-27 11:51:27 +01:00
|
|
|
}
|
2009-08-05 17:24:29 +02:00
|
|
|
}
|
2016-04-27 11:05:03 +01:00
|
|
|
|