[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 4/5] RFC: migration: check required subsections are loaded, once
From: |
marcandre . lureau |
Subject: |
[PATCH 4/5] RFC: migration: check required subsections are loaded, once |
Date: |
Tue, 26 Sep 2023 19:59:24 +0400 |
From: Marc-André Lureau <marcandre.lureau@redhat.com>
Check that required subsections have been loaded.
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
---
migration/vmstate.c | 40 ++++++++++++++++++++++++++++++++++++++--
1 file changed, 38 insertions(+), 2 deletions(-)
diff --git a/migration/vmstate.c b/migration/vmstate.c
index 31842c3afb..5147a8191d 100644
--- a/migration/vmstate.c
+++ b/migration/vmstate.c
@@ -426,22 +426,51 @@ int vmstate_save_state_v(QEMUFile *f, const
VMStateDescription *vmsd,
}
static const VMStateDescription *
-vmstate_get_subsection(const VMStateDescription **sub, char *idstr)
+vmstate_get_subsection(const VMStateDescription **sub, char *idstr, bool
*visited)
{
+ size_t i = 0;
+
while (sub && *sub) {
if (strcmp(idstr, (*sub)->name) == 0) {
+ if (visited[i]) {
+ return NULL;
+ }
+ visited[i] = true;
return *sub;
}
+ i++;
sub++;
}
return NULL;
}
+static size_t
+vmstate_get_n_subsections(const VMStateDescription **sub)
+{
+ size_t n = 0;
+
+ if (!sub) {
+ return 0;
+ }
+
+ while (sub[n]) {
+ n++;
+ }
+
+ return n;
+}
+
static int vmstate_subsection_load(QEMUFile *f, const VMStateDescription *vmsd,
void *opaque)
{
+ size_t i, n;
+ g_autofree bool *visited = NULL;
+
trace_vmstate_subsection_load(vmsd->name);
+ n = vmstate_get_n_subsections(vmsd->subsections);
+ visited = g_new0(bool, n);
+
while (qemu_peek_byte(f, 0) == QEMU_VM_SUBSECTION) {
char idstr[256], *idstr_ret;
int ret;
@@ -467,7 +496,7 @@ static int vmstate_subsection_load(QEMUFile *f, const
VMStateDescription *vmsd,
/* it doesn't have a valid subsection name */
return 0;
}
- sub_vmsd = vmstate_get_subsection(vmsd->subsections, idstr);
+ sub_vmsd = vmstate_get_subsection(vmsd->subsections, idstr, visited);
if (sub_vmsd == NULL) {
trace_vmstate_subsection_load_bad(vmsd->name, idstr, "(lookup)");
return -ENOENT;
@@ -484,6 +513,13 @@ static int vmstate_subsection_load(QEMUFile *f, const
VMStateDescription *vmsd,
}
}
+ for (i = 0; i < n; i++) {
+ if (!visited[i] && vmstate_save_needed(vmsd->subsections[i], opaque)) {
+ trace_vmstate_subsection_load_bad(vmsd->name,
vmsd->subsections[i]->name, "(not visited)");
+ return -ENOENT;
+ }
+ }
+
trace_vmstate_subsection_load_good(vmsd->name);
return 0;
}
--
2.41.0
- [PATCH 0/5] RFC: migration: check required entries and sections are loaded, marcandre . lureau, 2023/09/26
- [PATCH 1/5] block/fdc: 'phase' is not needed on load, marcandre . lureau, 2023/09/26
- [PATCH 2/5] virtio: make endian_needed() work during loading, marcandre . lureau, 2023/09/26
- [PATCH 3/5] net/slirp: use different IDs for each instance, marcandre . lureau, 2023/09/26
- [PATCH 4/5] RFC: migration: check required subsections are loaded, once,
marcandre . lureau <=
- [PATCH 5/5] RFC: migration: check required entries are loaded, once, marcandre . lureau, 2023/09/26