[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v3 1/1] migration: vmstate_register() check that instance_id is v
From: |
Juan Quintela |
Subject: |
[PATCH v3 1/1] migration: vmstate_register() check that instance_id is valid |
Date: |
Tue, 24 Oct 2023 17:03:36 +0200 |
Signed-off-by: Juan Quintela <quintela@redhat.com>
---
include/migration/vmstate.h | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/include/migration/vmstate.h b/include/migration/vmstate.h
index 9821918631..c48cd8bb68 100644
--- a/include/migration/vmstate.h
+++ b/include/migration/vmstate.h
@@ -28,6 +28,7 @@
#define QEMU_VMSTATE_H
#include "hw/vmstate-if.h"
+#include "qemu/error-report.h"
typedef struct VMStateInfo VMStateInfo;
typedef struct VMStateField VMStateField;
@@ -1226,6 +1227,11 @@ static inline int vmstate_register(VMStateIf *obj, int
instance_id,
const VMStateDescription *vmsd,
void *opaque)
{
+ if (instance_id == VMSTATE_INSTANCE_ID_ANY) {
+ error_report("vmstate_register: Invalid device: %s instance_id: %d",
+ vmsd->name, instance_id);
+ return -1;
+ }
return vmstate_register_with_alias_id(obj, instance_id, vmsd,
opaque, -1, 0, NULL);
}
--
2.41.0