[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH RFC 03/26] migration: Add send/receive header for main channel
From: |
Maciej S. Szmigiero |
Subject: |
[PATCH RFC 03/26] migration: Add send/receive header for main channel |
Date: |
Tue, 16 Apr 2024 16:42:42 +0200 |
From: Avihai Horon <avihaih@nvidia.com>
Add send and receive migration channel header for main channel.
Signed-off-by: Avihai Horon <avihaih@nvidia.com>
[MSS: Rename main channel -> default channel where it matches the current term]
Signed-off-by: Maciej S. Szmigiero <maciej.szmigiero@oracle.com>
---
migration/channel.c | 9 +++++
migration/migration.c | 82 +++++++++++++++++++++++++++++++++++++++----
2 files changed, 84 insertions(+), 7 deletions(-)
diff --git a/migration/channel.c b/migration/channel.c
index a72e85f5791c..0e3f51654752 100644
--- a/migration/channel.c
+++ b/migration/channel.c
@@ -81,6 +81,13 @@ void migration_channel_connect(MigrationState *s,
return;
}
} else {
+ /* TODO: Send header after register yank? Make a QEMUFile variant?
*/
+ MigChannelHeader header = {};
+ header.channel_type = MIG_CHANNEL_TYPE_MAIN;
+ if (migration_channel_header_send(ioc, &header, &error)) {
+ goto out;
+ }
+
QEMUFile *f = qemu_file_new_output(ioc);
migration_ioc_register_yank(ioc);
@@ -90,6 +97,8 @@ void migration_channel_connect(MigrationState *s,
qemu_mutex_unlock(&s->qemu_file_lock);
}
}
+
+out:
migrate_fd_connect(s, error);
error_free(error);
}
diff --git a/migration/migration.c b/migration/migration.c
index 86bf76e92585..0eb5b4f4f5a1 100644
--- a/migration/migration.c
+++ b/migration/migration.c
@@ -869,12 +869,39 @@ void migration_fd_process_incoming(QEMUFile *f)
migration_incoming_process();
}
+static bool migration_should_start_incoming_header(bool main_channel)
+{
+ MigrationIncomingState *mis = migration_incoming_get_current();
+
+ if (!mis->from_src_file) {
+ return false;
+ }
+
+ if (migrate_multifd()) {
+ return multifd_recv_all_channels_created();
+ }
+
+ if (migrate_postcopy_preempt() && migrate_get_current()->preempt_pre_7_2) {
+ return mis->postcopy_qemufile_dst != NULL;
+ }
+
+ if (migrate_postcopy_preempt()) {
+ return main_channel;
+ }
+
+ return true;
+}
+
/*
* Returns true when we want to start a new incoming migration process,
* false otherwise.
*/
static bool migration_should_start_incoming(bool main_channel)
{
+ if (migrate_channel_header()) {
+ return migration_should_start_incoming_header(main_channel);
+ }
+
/* Multifd doesn't start unless all channels are established */
if (migrate_multifd()) {
return migration_has_all_channels();
@@ -894,7 +921,22 @@ static bool migration_should_start_incoming(bool
main_channel)
return true;
}
-void migration_ioc_process_incoming(QIOChannel *ioc, Error **errp)
+static void migration_start_incoming(bool main_channel)
+{
+ if (!migration_should_start_incoming(main_channel)) {
+ return;
+ }
+
+ /* If it's a recovery, we're done */
+ if (postcopy_try_recover()) {
+ return;
+ }
+
+ migration_incoming_process();
+}
+
+static void migration_ioc_process_incoming_no_header(QIOChannel *ioc,
+ Error **errp)
{
MigrationIncomingState *mis = migration_incoming_get_current();
Error *local_err = NULL;
@@ -951,13 +993,39 @@ void migration_ioc_process_incoming(QIOChannel *ioc,
Error **errp)
}
}
- if (migration_should_start_incoming(default_channel)) {
- /* If it's a recovery, we're done */
- if (postcopy_try_recover()) {
- return;
- }
- migration_incoming_process();
+ migration_start_incoming(default_channel);
+}
+
+void migration_ioc_process_incoming(QIOChannel *ioc, Error **errp)
+{
+ MigChannelHeader header = {};
+ bool default_channel = false;
+ QEMUFile *f;
+ int ret;
+
+ if (!migrate_channel_header()) {
+ migration_ioc_process_incoming_no_header(ioc, errp);
+ return;
+ }
+
+ ret = migration_channel_header_recv(ioc, &header, errp);
+ if (ret) {
+ return;
+ }
+
+ switch (header.channel_type) {
+ case MIG_CHANNEL_TYPE_MAIN:
+ f = qemu_file_new_input(ioc);
+ migration_incoming_setup(f);
+ default_channel = true;
+ break;
+ default:
+ error_setg(errp, "Received unknown migration channel type %u",
+ header.channel_type);
+ return;
}
+
+ migration_start_incoming(default_channel);
}
/**
- [PATCH RFC 00/26] Multifd 🔀 device state transfer support with VFIO consumer, Maciej S. Szmigiero, 2024/04/16
- [PATCH RFC 03/26] migration: Add send/receive header for main channel,
Maciej S. Szmigiero <=
- [PATCH RFC 01/26] migration: Add x-channel-header pseudo-capability, Maciej S. Szmigiero, 2024/04/16
- [PATCH RFC 02/26] migration: Add migration channel header send/receive, Maciej S. Szmigiero, 2024/04/16
- [PATCH RFC 05/26] migration: Add a DestroyNotify parameter to socket_send_channel_create(), Maciej S. Szmigiero, 2024/04/16
- [PATCH RFC 04/26] multifd: change multifd_new_send_channel_create() param type, Maciej S. Szmigiero, 2024/04/16
- [PATCH RFC 06/26] multifd: pass MFDSendChannelConnectData when connecting sending socket, Maciej S. Szmigiero, 2024/04/16
- [PATCH RFC 07/26] migration/postcopy: pass PostcopyPChannelConnectData when connecting sending preempt socket, Maciej S. Szmigiero, 2024/04/16
- [PATCH RFC 09/26] migration: Add send/receive header for postcopy preempt channel, Maciej S. Szmigiero, 2024/04/16
- [PATCH RFC 08/26] migration: Allow passing migration header in migration channel creation, Maciej S. Szmigiero, 2024/04/16
- [PATCH RFC 10/26] migration: Add send/receive header for multifd channel, Maciej S. Szmigiero, 2024/04/16
- [PATCH RFC 11/26] migration/options: Mapped-ram is not channel header compatible, Maciej S. Szmigiero, 2024/04/16