@@ -3208,12 +3208,14 @@ F: hw/core/bus.c
F: hw/core/sysbus.c
F: include/hw/qdev*
F: include/monitor/qdev.h
+F: include/monitor/user-child.h
F: include/qom/
F: qapi/qom.json
F: qapi/qdev.json
F: scripts/coccinelle/qom-parent-type.cocci
F: scripts/qom-cast-macro-clean-cocci-gen.py
F: system/qdev-monitor.c
+F: system/user-child.c
F: stubs/qdev.c
F: qom/
F: tests/unit/check-qom-interface.c
new file mode 100644
@@ -0,0 +1,57 @@
+/*
+ * Child configurable interface header.
+ *
+ * Copyright (c) 2023 Intel Corporation
+ * Author: Zhao Liu <zhao1.liu@intel.com>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License,
+ * or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef USER_CHILD_H
+#define USER_CHILD_H
+
+#include "qom/object.h"
+
+#define TYPE_USER_CHILD "user-child"
+
+typedef struct UserChildClass UserChildClass;
+DECLARE_CLASS_CHECKERS(UserChildClass, USER_CHILD, TYPE_USER_CHILD)
+#define USER_CHILD(obj) INTERFACE_CHECK(UserChild, (obj), TYPE_USER_CHILD)
+
+typedef struct UserChild UserChild;
+
+/**
+ * UserChildClass:
+ * @get_parent: Method to get the default parent if user doesn't specify
+ * the parent in cli.
+ * @get_child_name: Method to get the default device id for this device
+ * if user doesn't specify id in cli.
+ * @check_parent: Method to check if the parent specified by user in cli
+ * is valid.
+ */
+struct UserChildClass {
+ /* <private> */
+ InterfaceClass parent_class;
+
+ /* <public> */
+ Object *(*get_parent)(UserChild *uc, Error **errp);
+ char *(*get_child_name)(UserChild *uc, Object *parent);
+ bool (*check_parent)(UserChild *uc, Object *parent);
+};
+
+Object *uc_provide_default_parent(Object *obj, Error **errp);
+char *uc_name_future_child(Object *obj, Object *parent);
+bool uc_check_user_parent(Object *obj, Object *parent);
+
+#endif /* USER_CHILD_H */
@@ -1484,6 +1484,17 @@ Object *object_get_objects_root(void);
*/
Object *object_get_internal_root(void);
+/**
+ * object_is_child_from:
+ * @child: the object.
+ * @parent: the parent/non-direct parent object.
+ *
+ * Check whether @parent is the parent/non-direct parent of @child.
+ *
+ * Returns: true iff @parent is the parent/non-direct parent of @child.
+ */
+bool object_is_child_from(const Object *child, const Object *parent);
+
/**
* object_get_canonical_path_component:
* @obj: the object
@@ -2024,6 +2024,19 @@ object_property_add_const_link(Object *obj, const char *name,
NULL, OBJ_PROP_LINK_DIRECT);
}
+bool object_is_child_from(const Object *child, const Object *parent)
+{
+ Object *obj = child->parent;
+
+ while (obj) {
+ if (obj == parent) {
+ return true;
+ }
+ obj = obj->parent;
+ }
+ return false;
+}
+
const char *object_get_canonical_path_component(const Object *obj)
{
ObjectProperty *prop = NULL;
@@ -24,6 +24,7 @@ system_ss.add(files(
'runstate-hmp-cmds.c',
'runstate.c',
'tpm-hmp-cmds.c',
+ 'user-child.c',
'vl.c',
), sdl, libpmem, libdaxctl)
@@ -22,6 +22,7 @@
#include "monitor/hmp.h"
#include "monitor/monitor.h"
#include "monitor/qdev.h"
+#include "monitor/user-child.h"
#include "sysemu/arch_init.h"
#include "qapi/error.h"
#include "qapi/qapi-commands-qdev.h"
@@ -585,26 +586,93 @@ static BusState *qbus_find(const char *path, Error **errp)
return bus;
}
+static Object *qdev_find_peripheral_parent(DeviceState *dev,
+ Error **errp)
+{
+ Object *parent_obj, *obj = OBJECT(dev);
+
+ parent_obj = uc_provide_default_parent(obj, errp);
+ if (*errp) {
+ return NULL;
+ }
+
+ if (parent_obj) {
+ /*
+ * Non-anonymous parents (under "/peripheral") are allowed to
+ * be accessed to create child<> properties.
+ */
+ if (object_is_child_from(parent_obj, qdev_get_peripheral())) {
+ return parent_obj;
+ }
+ }
+
+ return NULL;
+}
+
+static bool qdev_pre_check_device_id(char *id, Error **errp)
+{
+ bool ambiguous = false;
+ Object *obj;
+
+ if (!id) {
+ return true;
+ }
+
+ obj = object_resolve_path_from(qdev_get_peripheral(), id, &ambiguous);
+ if (obj || ambiguous) {
+ error_setg(errp, "Duplicate device default ID '%s'. "
+ "Please specify another 'id'", id);
+ return false;
+ }
+ return true;
+}
+
/* Takes ownership of @id, will be freed when deleting the device */
const char *qdev_set_id(DeviceState *dev, char *id, Error **errp)
{
+ Object *parent_obj = NULL;
ObjectProperty *prop;
+ UserChild *uc;
assert(!dev->id && !dev->realized);
+ uc = (UserChild *)object_dynamic_cast(OBJECT(dev), TYPE_USER_CHILD);
+
+ if (uc) {
+ parent_obj = qdev_find_peripheral_parent(dev, errp);
+ if (*errp) {
+ goto err;
+ }
+
+ if (!id && parent_obj) {
+ /*
+ * Covert anonymous device with user-child interface to
+ * non-anonymous, then it will be insert under "/peripheral"
+ * path.
+ */
+ id = uc_name_future_child(OBJECT(dev), parent_obj);
+ if (!qdev_pre_check_device_id(id, errp)) {
+ goto err;
+ }
+ }
+ }
+
/*
* object_property_[try_]add_child() below will assert the device
* has no parent
*/
if (id) {
- prop = object_property_try_add_child(qdev_get_peripheral(), id,
+ if (!parent_obj) {
+ parent_obj = qdev_get_peripheral();
+ }
+
+ prop = object_property_try_add_child(parent_obj, id,
OBJECT(dev), NULL);
if (prop) {
dev->id = id;
} else {
error_setg(errp, "Duplicate device ID '%s'", id);
- g_free(id);
- return NULL;
+ goto err;
}
} else {
static int anon_count;
@@ -615,6 +683,9 @@ const char *qdev_set_id(DeviceState *dev, char *id, Error **errp)
}
return prop->name;
+err:
+ g_free(id);
+ return NULL;
}
DeviceState *qdev_device_add_from_qdict(const QDict *opts, long *category,
@@ -885,12 +956,18 @@ void qmp_device_add(QDict *qdict, QObject **ret_data, Error **errp)
static DeviceState *find_device_state(const char *id, Error **errp)
{
- Object *obj = object_resolve_path_at(qdev_get_peripheral(), id);
+ bool ambiguous = false;
DeviceState *dev;
+ Object *obj;
+ obj = object_resolve_path_from(qdev_get_peripheral(), id, &ambiguous);
if (!obj) {
- error_set(errp, ERROR_CLASS_DEVICE_NOT_FOUND,
- "Device '%s' not found", id);
+ if (ambiguous) {
+ error_setg(errp, "Device ID '%s' is ambiguous", id);
+ } else {
+ error_set(errp, ERROR_CLASS_DEVICE_NOT_FOUND,
+ "Device '%s' not found", id);
+ }
return NULL;
}
new file mode 100644
@@ -0,0 +1,72 @@
+/*
+ * Child configurable interface.
+ *
+ * Copyright (c) 2023 Intel Corporation
+ * Author: Zhao Liu <zhao1.liu@intel.com>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License,
+ * or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, see <http://www.gnu.org/licenses/>.
+ */
+
+#include "qemu/osdep.h"
+
+#include "monitor/user-child.h"
+
+Object *uc_provide_default_parent(Object *obj, Error **errp)
+{
+ UserChild *uc = USER_CHILD(obj);
+ UserChildClass *ucc = USER_CHILD_GET_CLASS(uc);
+
+ if (ucc->get_parent) {
+ return ucc->get_parent(uc, errp);
+ }
+
+ return NULL;
+}
+
+char *uc_name_future_child(Object *obj, Object *parent)
+{
+ UserChild *uc = USER_CHILD(obj);
+ UserChildClass *ucc = USER_CHILD_GET_CLASS(uc);
+
+ if (ucc->get_child_name) {
+ return ucc->get_child_name(uc, parent);
+ }
+
+ return NULL;
+}
+
+bool uc_check_user_parent(Object *obj, Object *parent)
+{
+ UserChild *uc = USER_CHILD(obj);
+ UserChildClass *ucc = USER_CHILD_GET_CLASS(uc);
+
+ if (ucc->check_parent) {
+ ucc->check_parent(uc, parent);
+ }
+
+ return true;
+}
+
+static const TypeInfo user_child_interface_info = {
+ .name = TYPE_USER_CHILD,
+ .parent = TYPE_INTERFACE,
+ .class_size = sizeof(UserChildClass),
+};
+
+static void user_child_register_types(void)
+{
+ type_register_static(&user_child_interface_info);
+}
+
+type_init(user_child_register_types)