[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PULL 16/17] qom: Assert instance size in object_initialize
From: |
Andreas Färber |
Subject: |
[Qemu-devel] [PULL 16/17] qom: Assert instance size in object_initialize_with_type() |
Date: |
Fri, 30 Aug 2013 21:29:42 +0200 |
This catches objects initializing beyond allocated memory, e.g.,
when subtypes get extended with instance state of their own.
Suggested-by: Peter Maydell <address@hidden>
Signed-off-by: Andreas Färber <address@hidden>
---
include/qom/object.h | 3 ++-
qom/object.c | 7 ++++---
2 files changed, 6 insertions(+), 4 deletions(-)
diff --git a/include/qom/object.h b/include/qom/object.h
index 13847fb..1a7b71a 100644
--- a/include/qom/object.h
+++ b/include/qom/object.h
@@ -586,13 +586,14 @@ Object *object_new_with_type(Type type);
/**
* object_initialize_with_type:
* @data: A pointer to the memory to be used for the object.
+ * @size: The maximum size available at @data for the object.
* @type: The type of the object to instantiate.
*
* This function will initialize an object. The memory for the object should
* have already been allocated. The returned object has a reference count of
1,
* and will be finalized when the last reference is dropped.
*/
-void object_initialize_with_type(void *data, Type type);
+void object_initialize_with_type(void *data, size_t size, Type type);
/**
* object_initialize:
diff --git a/qom/object.c b/qom/object.c
index 1635422..e90e382 100644
--- a/qom/object.c
+++ b/qom/object.c
@@ -311,7 +311,7 @@ static void object_post_init_with_type(Object *obj,
TypeImpl *ti)
}
}
-void object_initialize_with_type(void *data, TypeImpl *type)
+void object_initialize_with_type(void *data, size_t size, TypeImpl *type)
{
Object *obj = data;
@@ -320,6 +320,7 @@ void object_initialize_with_type(void *data, TypeImpl *type)
g_assert(type->instance_size >= sizeof(Object));
g_assert(type->abstract == false);
+ g_assert(size >= type->instance_size);
memset(obj, 0, type->instance_size);
obj->class = type->class;
@@ -333,7 +334,7 @@ void object_initialize(void *data, size_t size, const char
*typename)
{
TypeImpl *type = type_get_by_name(typename);
- object_initialize_with_type(data, type);
+ object_initialize_with_type(data, size, type);
}
static inline bool object_property_is_child(ObjectProperty *prop)
@@ -424,7 +425,7 @@ Object *object_new_with_type(Type type)
type_initialize(type);
obj = g_malloc(type->instance_size);
- object_initialize_with_type(obj, type);
+ object_initialize_with_type(obj, type->instance_size, type);
obj->free = g_free;
return obj;
--
1.8.1.4
- [Qemu-devel] [PULL 06/17] ide: Pass size to ide_bus_new(), (continued)
- [Qemu-devel] [PULL 06/17] ide: Pass size to ide_bus_new(), Andreas Färber, 2013/08/30
- [Qemu-devel] [PULL 05/17] ipack: Pass size to ipack_bus_new_inplace(), Andreas Färber, 2013/08/30
- [Qemu-devel] [PULL 07/17] pci: Pass size to pci_bus_new_inplace(), Andreas Färber, 2013/08/30
- [Qemu-devel] [PULL 08/17] scsi: Pass size to scsi_bus_new(), Andreas Färber, 2013/08/30
- [Qemu-devel] [PULL 09/17] usb: Pass size to usb_bus_new(), Andreas Färber, 2013/08/30
- [Qemu-devel] [PULL 10/17] virtio-pci: Pass size to virtio_pci_bus_new(), Andreas Färber, 2013/08/30
- [Qemu-devel] [PULL 11/17] s390-virtio-bus: Pass size to virtio_s390_bus_new(), Andreas Färber, 2013/08/30
- [Qemu-devel] [PULL 12/17] virtio-ccw: Pass size to virtio_ccw_bus_new(), Andreas Färber, 2013/08/30
- [Qemu-devel] [PULL 13/17] virtio-mmio: Pass size to virtio_mmio_bus_new(), Andreas Färber, 2013/08/30
- [Qemu-devel] [PULL 14/17] qdev: Pass size to qbus_create_inplace(), Andreas Färber, 2013/08/30
- [Qemu-devel] [PULL 16/17] qom: Assert instance size in object_initialize_with_type(),
Andreas Färber <=
- [Qemu-devel] [PULL 17/17] isa: Fix documentation of isa_register_portio_list(), Andreas Färber, 2013/08/30
- [Qemu-devel] [PULL 15/17] qom: Pass available size to object_initialize(), Andreas Färber, 2013/08/30