aboutgitcodebugslistschat
path: root/migrate.h
diff options
context:
space:
mode:
authorStefano Brivio <sbrivio@redhat.com>2025-02-12 18:07:13 +1100
committerStefano Brivio <sbrivio@redhat.com>2025-02-12 19:47:07 +0100
commit5911e08c0f53e46547e7eeb1dd824c8ab96e512e (patch)
tree2bd1f11eda2501cff2d3a983eb144d26c1c66a4e /migrate.h
parent836fe215e049ee423750d3315a02742d8224eab2 (diff)
downloadpasst-5911e08c0f53e46547e7eeb1dd824c8ab96e512e.tar
passt-5911e08c0f53e46547e7eeb1dd824c8ab96e512e.tar.gz
passt-5911e08c0f53e46547e7eeb1dd824c8ab96e512e.tar.bz2
passt-5911e08c0f53e46547e7eeb1dd824c8ab96e512e.tar.lz
passt-5911e08c0f53e46547e7eeb1dd824c8ab96e512e.tar.xz
passt-5911e08c0f53e46547e7eeb1dd824c8ab96e512e.tar.zst
passt-5911e08c0f53e46547e7eeb1dd824c8ab96e512e.zip
migrate: Skeleton of live migration logic
Introduce facilities for guest migration on top of vhost-user infrastructure. Add migration facilities based on top of the current vhost-user infrastructure, moving vu_migrate() and related functions to migrate.c. Versioned migration stages define function pointers to be called on source or target, or data sections that need to be transferred. The migration header consists of a magic number, a version number for the encoding, and a "compat_version" which represents the oldest version which is compatible with the current one. We don't use it yet, but that allows for the future possibility of backwards compatible protocol extensions. Co-authored-by: David Gibson <david@gibson.dropbear.id.au> Signed-off-by: David Gibson <david@gibson.dropbear.id.au> Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
Diffstat (limited to 'migrate.h')
-rw-r--r--migrate.h51
1 files changed, 51 insertions, 0 deletions
diff --git a/migrate.h b/migrate.h
new file mode 100644
index 0000000..2c51cd9
--- /dev/null
+++ b/migrate.h
@@ -0,0 +1,51 @@
+/* SPDX-License-Identifier: GPL-2.0-or-later
+ * Copyright (c) 2025 Red Hat GmbH
+ * Author: Stefano Brivio <sbrivio@redhat.com>
+ */
+
+#ifndef MIGRATE_H
+#define MIGRATE_H
+
+/**
+ * struct migrate_header - Migration header from source
+ * @magic: 0xB1BB1D1B0BB1D1B0, network order
+ * @version: Highest known, target aborts if too old, network order
+ * @compat_version: Lowest version compatible with @version, target aborts
+ * if too new, network order
+ */
+struct migrate_header {
+ uint64_t magic;
+ uint32_t version;
+ uint32_t compat_version;
+} __attribute__((packed));
+
+/**
+ * struct migrate_stage - Callbacks and parameters for one stage of migration
+ * @name: Stage name (for debugging)
+ * @source: Callback to implement this stage on the source
+ * @target: Callback to implement this stage on the target
+ */
+struct migrate_stage {
+ const char *name;
+ int (*source)(struct ctx *c, const struct migrate_stage *stage, int fd);
+ int (*target)(struct ctx *c, const struct migrate_stage *stage, int fd);
+
+ /* Add here separate rollback callbacks if needed */
+};
+
+/**
+ * struct migrate_version - Stages for a particular protocol version
+ * @id: Version number, host order
+ * @s: Ordered array of stages, NULL-terminated
+ */
+struct migrate_version {
+ uint32_t id;
+ const struct migrate_stage *s;
+};
+
+void migrate_init(struct ctx *c);
+void migrate_close(struct ctx *c);
+void migrate_request(struct ctx *c, int fd, bool target);
+void migrate_handler(struct ctx *c);
+
+#endif /* MIGRATE_H */