2 * Dynamic device configuration and creation.
4 * Copyright (c) 2009 CodeSourcery
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
20 #include "qemu/osdep.h"
21 #include "hw/sysbus.h"
22 #include "monitor/hmp.h"
23 #include "monitor/monitor.h"
24 #include "monitor/qdev.h"
25 #include "sysemu/arch_init.h"
26 #include "qapi/error.h"
27 #include "qapi/qapi-commands-qdev.h"
28 #include "qapi/qmp/qdict.h"
29 #include "qapi/qmp/qerror.h"
30 #include "qemu/config-file.h"
31 #include "qemu/error-report.h"
32 #include "qemu/help_option.h"
33 #include "qemu/option.h"
34 #include "qemu/qemu-print.h"
35 #include "qemu/option_int.h"
36 #include "sysemu/block-backend.h"
37 #include "sysemu/sysemu.h"
38 #include "migration/misc.h"
39 #include "migration/migration.h"
42 * Aliases were a bad idea from the start. Let's keep them
43 * from spreading further.
45 typedef struct QDevAlias
52 /* Please keep this table sorted by typename. */
53 static const QDevAlias qdev_alias_table
[] = {
54 { "e1000", "e1000-82540em" },
55 { "ich9-ahci", "ahci" },
56 { "lsi53c895a", "lsi" },
57 { "virtio-9p-ccw", "virtio-9p", QEMU_ARCH_S390X
},
58 { "virtio-9p-pci", "virtio-9p", QEMU_ARCH_ALL
& ~QEMU_ARCH_S390X
},
59 { "virtio-balloon-ccw", "virtio-balloon", QEMU_ARCH_S390X
},
60 { "virtio-balloon-pci", "virtio-balloon",
61 QEMU_ARCH_ALL
& ~QEMU_ARCH_S390X
},
62 { "virtio-blk-ccw", "virtio-blk", QEMU_ARCH_S390X
},
63 { "virtio-blk-pci", "virtio-blk", QEMU_ARCH_ALL
& ~QEMU_ARCH_S390X
},
64 { "virtio-gpu-ccw", "virtio-gpu", QEMU_ARCH_S390X
},
65 { "virtio-gpu-pci", "virtio-gpu", QEMU_ARCH_ALL
& ~QEMU_ARCH_S390X
},
66 { "virtio-input-host-ccw", "virtio-input-host", QEMU_ARCH_S390X
},
67 { "virtio-input-host-pci", "virtio-input-host",
68 QEMU_ARCH_ALL
& ~QEMU_ARCH_S390X
},
69 { "virtio-keyboard-ccw", "virtio-keyboard", QEMU_ARCH_S390X
},
70 { "virtio-keyboard-pci", "virtio-keyboard",
71 QEMU_ARCH_ALL
& ~QEMU_ARCH_S390X
},
72 { "virtio-mouse-ccw", "virtio-mouse", QEMU_ARCH_S390X
},
73 { "virtio-mouse-pci", "virtio-mouse", QEMU_ARCH_ALL
& ~QEMU_ARCH_S390X
},
74 { "virtio-net-ccw", "virtio-net", QEMU_ARCH_S390X
},
75 { "virtio-net-pci", "virtio-net", QEMU_ARCH_ALL
& ~QEMU_ARCH_S390X
},
76 { "virtio-rng-ccw", "virtio-rng", QEMU_ARCH_S390X
},
77 { "virtio-rng-pci", "virtio-rng", QEMU_ARCH_ALL
& ~QEMU_ARCH_S390X
},
78 { "virtio-scsi-ccw", "virtio-scsi", QEMU_ARCH_S390X
},
79 { "virtio-scsi-pci", "virtio-scsi", QEMU_ARCH_ALL
& ~QEMU_ARCH_S390X
},
80 { "virtio-serial-ccw", "virtio-serial", QEMU_ARCH_S390X
},
81 { "virtio-serial-pci", "virtio-serial", QEMU_ARCH_ALL
& ~QEMU_ARCH_S390X
},
82 { "virtio-tablet-ccw", "virtio-tablet", QEMU_ARCH_S390X
},
83 { "virtio-tablet-pci", "virtio-tablet", QEMU_ARCH_ALL
& ~QEMU_ARCH_S390X
},
87 static const char *qdev_class_get_alias(DeviceClass
*dc
)
89 const char *typename
= object_class_get_name(OBJECT_CLASS(dc
));
92 for (i
= 0; qdev_alias_table
[i
].typename
; i
++) {
93 if (qdev_alias_table
[i
].arch_mask
&&
94 !(qdev_alias_table
[i
].arch_mask
& arch_type
)) {
98 if (strcmp(qdev_alias_table
[i
].typename
, typename
) == 0) {
99 return qdev_alias_table
[i
].alias
;
106 static bool qdev_class_has_alias(DeviceClass
*dc
)
108 return (qdev_class_get_alias(dc
) != NULL
);
111 static void qdev_print_devinfo(DeviceClass
*dc
)
113 qemu_printf("name \"%s\"", object_class_get_name(OBJECT_CLASS(dc
)));
115 qemu_printf(", bus %s", dc
->bus_type
);
117 if (qdev_class_has_alias(dc
)) {
118 qemu_printf(", alias \"%s\"", qdev_class_get_alias(dc
));
121 qemu_printf(", desc \"%s\"", dc
->desc
);
123 if (!dc
->user_creatable
) {
124 qemu_printf(", no-user");
129 static void qdev_print_devinfos(bool show_no_user
)
131 static const char *cat_name
[DEVICE_CATEGORY_MAX
+ 1] = {
132 [DEVICE_CATEGORY_BRIDGE
] = "Controller/Bridge/Hub",
133 [DEVICE_CATEGORY_USB
] = "USB",
134 [DEVICE_CATEGORY_STORAGE
] = "Storage",
135 [DEVICE_CATEGORY_NETWORK
] = "Network",
136 [DEVICE_CATEGORY_INPUT
] = "Input",
137 [DEVICE_CATEGORY_DISPLAY
] = "Display",
138 [DEVICE_CATEGORY_SOUND
] = "Sound",
139 [DEVICE_CATEGORY_MISC
] = "Misc",
140 [DEVICE_CATEGORY_CPU
] = "CPU",
141 [DEVICE_CATEGORY_MAX
] = "Uncategorized",
147 list
= object_class_get_list_sorted(TYPE_DEVICE
, false);
149 for (i
= 0; i
<= DEVICE_CATEGORY_MAX
; i
++) {
151 for (elt
= list
; elt
; elt
= elt
->next
) {
152 DeviceClass
*dc
= OBJECT_CLASS_CHECK(DeviceClass
, elt
->data
,
154 if ((i
< DEVICE_CATEGORY_MAX
155 ? !test_bit(i
, dc
->categories
)
156 : !bitmap_empty(dc
->categories
, DEVICE_CATEGORY_MAX
))
158 && !dc
->user_creatable
)) {
162 qemu_printf("%s%s devices:\n", i
? "\n" : "", cat_name
[i
]);
165 qdev_print_devinfo(dc
);
172 static int set_property(void *opaque
, const char *name
, const char *value
,
175 Object
*obj
= opaque
;
178 if (strcmp(name
, "driver") == 0)
180 if (strcmp(name
, "bus") == 0)
183 object_property_parse(obj
, value
, name
, &err
);
185 error_propagate(errp
, err
);
191 static const char *find_typename_by_alias(const char *alias
)
195 for (i
= 0; qdev_alias_table
[i
].alias
; i
++) {
196 if (qdev_alias_table
[i
].arch_mask
&&
197 !(qdev_alias_table
[i
].arch_mask
& arch_type
)) {
201 if (strcmp(qdev_alias_table
[i
].alias
, alias
) == 0) {
202 return qdev_alias_table
[i
].typename
;
209 static DeviceClass
*qdev_get_device_class(const char **driver
, Error
**errp
)
213 const char *original_name
= *driver
;
215 oc
= object_class_by_name(*driver
);
217 const char *typename
= find_typename_by_alias(*driver
);
221 oc
= object_class_by_name(*driver
);
225 if (!object_class_dynamic_cast(oc
, TYPE_DEVICE
)) {
226 if (*driver
!= original_name
) {
227 error_setg(errp
, "'%s' (alias '%s') is not a valid device model"
228 " name", original_name
, *driver
);
230 error_setg(errp
, "'%s' is not a valid device model name", *driver
);
235 if (object_class_is_abstract(oc
)) {
236 error_setg(errp
, QERR_INVALID_PARAMETER_VALUE
, "driver",
237 "non-abstract device type");
241 dc
= DEVICE_CLASS(oc
);
242 if (!dc
->user_creatable
||
243 (qdev_hotplug
&& !dc
->hotpluggable
)) {
244 error_setg(errp
, QERR_INVALID_PARAMETER_VALUE
, "driver",
245 "pluggable device type");
253 int qdev_device_help(QemuOpts
*opts
)
255 Error
*local_err
= NULL
;
257 ObjectPropertyInfoList
*prop_list
;
258 ObjectPropertyInfoList
*prop
;
260 driver
= qemu_opt_get(opts
, "driver");
261 if (driver
&& is_help_option(driver
)) {
262 qdev_print_devinfos(false);
266 if (!driver
|| !qemu_opt_has_help_opt(opts
)) {
270 if (!object_class_by_name(driver
)) {
271 const char *typename
= find_typename_by_alias(driver
);
278 prop_list
= qmp_device_list_properties(driver
, &local_err
);
284 qemu_printf("%s options:\n", driver
);
286 qemu_printf("There are no options for %s.\n", driver
);
288 for (prop
= prop_list
; prop
; prop
= prop
->next
) {
290 qemu_printf(" %s=<%s>%n", prop
->value
->name
, prop
->value
->type
, &len
);
291 if (prop
->value
->has_description
) {
293 qemu_printf("%*s", 24 - len
, "");
295 qemu_printf(" - %s\n", prop
->value
->description
);
301 qapi_free_ObjectPropertyInfoList(prop_list
);
305 error_report_err(local_err
);
309 static Object
*qdev_get_peripheral(void)
314 dev
= container_get(qdev_get_machine(), "/peripheral");
320 static Object
*qdev_get_peripheral_anon(void)
325 dev
= container_get(qdev_get_machine(), "/peripheral-anon");
331 static void qbus_error_append_bus_list_hint(DeviceState
*dev
,
335 const char *sep
= " ";
337 error_append_hint(errp
, "child buses at \"%s\":",
338 dev
->id
? dev
->id
: object_get_typename(OBJECT(dev
)));
339 QLIST_FOREACH(child
, &dev
->child_bus
, sibling
) {
340 error_append_hint(errp
, "%s\"%s\"", sep
, child
->name
);
343 error_append_hint(errp
, "\n");
346 static void qbus_error_append_dev_list_hint(BusState
*bus
,
350 const char *sep
= " ";
352 error_append_hint(errp
, "devices at \"%s\":", bus
->name
);
353 QTAILQ_FOREACH(kid
, &bus
->children
, sibling
) {
354 DeviceState
*dev
= kid
->child
;
355 error_append_hint(errp
, "%s\"%s\"", sep
,
356 object_get_typename(OBJECT(dev
)));
358 error_append_hint(errp
, "/\"%s\"", dev
->id
);
362 error_append_hint(errp
, "\n");
365 static BusState
*qbus_find_bus(DeviceState
*dev
, char *elem
)
369 QLIST_FOREACH(child
, &dev
->child_bus
, sibling
) {
370 if (strcmp(child
->name
, elem
) == 0) {
377 static DeviceState
*qbus_find_dev(BusState
*bus
, char *elem
)
382 * try to match in order:
383 * (1) instance id, if present
385 * (3) driver alias, if present
387 QTAILQ_FOREACH(kid
, &bus
->children
, sibling
) {
388 DeviceState
*dev
= kid
->child
;
389 if (dev
->id
&& strcmp(dev
->id
, elem
) == 0) {
393 QTAILQ_FOREACH(kid
, &bus
->children
, sibling
) {
394 DeviceState
*dev
= kid
->child
;
395 if (strcmp(object_get_typename(OBJECT(dev
)), elem
) == 0) {
399 QTAILQ_FOREACH(kid
, &bus
->children
, sibling
) {
400 DeviceState
*dev
= kid
->child
;
401 DeviceClass
*dc
= DEVICE_GET_CLASS(dev
);
403 if (qdev_class_has_alias(dc
) &&
404 strcmp(qdev_class_get_alias(dc
), elem
) == 0) {
411 static inline bool qbus_is_full(BusState
*bus
)
413 BusClass
*bus_class
= BUS_GET_CLASS(bus
);
414 return bus_class
->max_dev
&& bus
->num_children
>= bus_class
->max_dev
;
418 * Search the tree rooted at @bus for a bus.
419 * If @name, search for a bus with that name. Note that bus names
420 * need not be unique. Yes, that's screwed up.
421 * Else search for a bus that is a subtype of @bus_typename.
422 * If more than one exists, prefer one that can take another device.
423 * Return the bus if found, else %NULL.
425 static BusState
*qbus_find_recursive(BusState
*bus
, const char *name
,
426 const char *bus_typename
)
429 BusState
*pick
, *child
, *ret
;
432 assert(name
|| bus_typename
);
434 match
= !strcmp(bus
->name
, name
);
436 match
= !!object_dynamic_cast(OBJECT(bus
), bus_typename
);
439 if (match
&& !qbus_is_full(bus
)) {
440 return bus
; /* root matches and isn't full */
443 pick
= match
? bus
: NULL
;
445 QTAILQ_FOREACH(kid
, &bus
->children
, sibling
) {
446 DeviceState
*dev
= kid
->child
;
447 QLIST_FOREACH(child
, &dev
->child_bus
, sibling
) {
448 ret
= qbus_find_recursive(child
, name
, bus_typename
);
449 if (ret
&& !qbus_is_full(ret
)) {
450 return ret
; /* a descendant matches and isn't full */
458 /* root or a descendant matches, but is full */
462 static BusState
*qbus_find(const char *path
, Error
**errp
)
469 /* find start element */
470 if (path
[0] == '/') {
471 bus
= sysbus_get_default();
474 if (sscanf(path
, "%127[^/]%n", elem
, &len
) != 1) {
478 bus
= qbus_find_recursive(sysbus_get_default(), elem
, NULL
);
480 error_setg(errp
, "Bus '%s' not found", elem
);
487 assert(path
[pos
] == '/' || !path
[pos
]);
488 while (path
[pos
] == '/') {
491 if (path
[pos
] == '\0') {
496 if (sscanf(path
+pos
, "%127[^/]%n", elem
, &len
) != 1) {
497 g_assert_not_reached();
501 dev
= qbus_find_dev(bus
, elem
);
503 error_set(errp
, ERROR_CLASS_DEVICE_NOT_FOUND
,
504 "Device '%s' not found", elem
);
505 qbus_error_append_dev_list_hint(bus
, errp
);
509 assert(path
[pos
] == '/' || !path
[pos
]);
510 while (path
[pos
] == '/') {
513 if (path
[pos
] == '\0') {
514 /* last specified element is a device. If it has exactly
515 * one child bus accept it nevertheless */
516 if (dev
->num_child_bus
== 1) {
517 bus
= QLIST_FIRST(&dev
->child_bus
);
520 if (dev
->num_child_bus
) {
521 error_setg(errp
, "Device '%s' has multiple child buses",
523 qbus_error_append_bus_list_hint(dev
, errp
);
525 error_setg(errp
, "Device '%s' has no child bus", elem
);
531 if (sscanf(path
+pos
, "%127[^/]%n", elem
, &len
) != 1) {
532 g_assert_not_reached();
536 bus
= qbus_find_bus(dev
, elem
);
538 error_setg(errp
, "Bus '%s' not found", elem
);
539 qbus_error_append_bus_list_hint(dev
, errp
);
544 if (qbus_is_full(bus
)) {
545 error_setg(errp
, "Bus '%s' is full", path
);
551 void qdev_set_id(DeviceState
*dev
, const char *id
)
558 object_property_add_child(qdev_get_peripheral(), dev
->id
,
561 static int anon_count
;
562 gchar
*name
= g_strdup_printf("device[%d]", anon_count
++);
563 object_property_add_child(qdev_get_peripheral_anon(), name
,
569 static int is_failover_device(void *opaque
, const char *name
, const char *value
,
572 if (strcmp(name
, "failover_pair_id") == 0) {
573 QemuOpts
*opts
= (QemuOpts
*)opaque
;
575 if (qdev_should_hide_device(opts
)) {
583 static bool should_hide_device(QemuOpts
*opts
)
585 if (qemu_opt_foreach(opts
, is_failover_device
, opts
, NULL
) == 0) {
591 DeviceState
*qdev_device_add(QemuOpts
*opts
, Error
**errp
)
594 const char *driver
, *path
;
595 DeviceState
*dev
= NULL
;
596 BusState
*bus
= NULL
;
600 driver
= qemu_opt_get(opts
, "driver");
602 error_setg(errp
, QERR_MISSING_PARAMETER
, "driver");
607 dc
= qdev_get_device_class(&driver
, errp
);
613 path
= qemu_opt_get(opts
, "bus");
615 bus
= qbus_find(path
, errp
);
619 if (!object_dynamic_cast(OBJECT(bus
), dc
->bus_type
)) {
620 error_setg(errp
, "Device '%s' can't go on %s bus",
621 driver
, object_get_typename(OBJECT(bus
)));
624 } else if (dc
->bus_type
!= NULL
) {
625 bus
= qbus_find_recursive(sysbus_get_default(), NULL
, dc
->bus_type
);
626 if (!bus
|| qbus_is_full(bus
)) {
627 error_setg(errp
, "No '%s' bus found for device '%s'",
628 dc
->bus_type
, driver
);
632 hide
= should_hide_device(opts
);
634 if ((hide
|| qdev_hotplug
) && bus
&& !qbus_is_hotpluggable(bus
)) {
635 error_setg(errp
, QERR_BUS_NO_HOTPLUG
, bus
->name
);
643 if (!migration_is_idle()) {
644 error_setg(errp
, "device_add not allowed while migrating");
649 dev
= DEVICE(object_new(driver
));
651 /* Check whether the hotplug is allowed by the machine */
652 if (qdev_hotplug
&& !qdev_hotplug_allowed(dev
, &err
)) {
653 /* Error must be set in the machine hook */
659 qdev_set_parent_bus(dev
, bus
);
660 } else if (qdev_hotplug
&& !qdev_get_machine_hotplug_handler(dev
)) {
661 /* No bus, no machine hotplug handler --> device is not hotpluggable */
662 error_setg(&err
, "Device '%s' can not be hotplugged on this machine",
667 qdev_set_id(dev
, qemu_opts_id(opts
));
670 if (qemu_opt_foreach(opts
, set_property
, dev
, &err
)) {
675 object_property_set_bool(OBJECT(dev
), true, "realized", &err
);
683 error_propagate(errp
, err
);
685 object_unparent(OBJECT(dev
));
686 object_unref(OBJECT(dev
));
692 #define qdev_printf(fmt, ...) monitor_printf(mon, "%*s" fmt, indent, "", ## __VA_ARGS__)
693 static void qbus_print(Monitor
*mon
, BusState
*bus
, int indent
);
695 static void qdev_print_props(Monitor
*mon
, DeviceState
*dev
, Property
*props
,
700 for (; props
->name
; props
++) {
703 char *legacy_name
= g_strdup_printf("legacy-%s", props
->name
);
704 if (object_property_get_type(OBJECT(dev
), legacy_name
, NULL
)) {
705 value
= object_property_get_str(OBJECT(dev
), legacy_name
, &err
);
707 value
= object_property_print(OBJECT(dev
), props
->name
, true, &err
);
715 qdev_printf("%s = %s\n", props
->name
,
716 value
&& *value
? value
: "<null>");
721 static void bus_print_dev(BusState
*bus
, Monitor
*mon
, DeviceState
*dev
, int indent
)
723 BusClass
*bc
= BUS_GET_CLASS(bus
);
726 bc
->print_dev(mon
, dev
, indent
);
730 static void qdev_print(Monitor
*mon
, DeviceState
*dev
, int indent
)
736 qdev_printf("dev: %s, id \"%s\"\n", object_get_typename(OBJECT(dev
)),
737 dev
->id
? dev
->id
: "");
739 QLIST_FOREACH(ngl
, &dev
->gpios
, node
) {
741 qdev_printf("gpio-in \"%s\" %d\n", ngl
->name
? ngl
->name
: "",
745 qdev_printf("gpio-out \"%s\" %d\n", ngl
->name
? ngl
->name
: "",
749 class = object_get_class(OBJECT(dev
));
751 qdev_print_props(mon
, dev
, DEVICE_CLASS(class)->props
, indent
);
752 class = object_class_get_parent(class);
753 } while (class != object_class_by_name(TYPE_DEVICE
));
754 bus_print_dev(dev
->parent_bus
, mon
, dev
, indent
);
755 QLIST_FOREACH(child
, &dev
->child_bus
, sibling
) {
756 qbus_print(mon
, child
, indent
);
760 static void qbus_print(Monitor
*mon
, BusState
*bus
, int indent
)
764 qdev_printf("bus: %s\n", bus
->name
);
766 qdev_printf("type %s\n", object_get_typename(OBJECT(bus
)));
767 QTAILQ_FOREACH(kid
, &bus
->children
, sibling
) {
768 DeviceState
*dev
= kid
->child
;
769 qdev_print(mon
, dev
, indent
);
774 void hmp_info_qtree(Monitor
*mon
, const QDict
*qdict
)
776 if (sysbus_get_default())
777 qbus_print(mon
, sysbus_get_default(), 0);
780 void hmp_info_qdm(Monitor
*mon
, const QDict
*qdict
)
782 qdev_print_devinfos(true);
785 void qmp_device_add(QDict
*qdict
, QObject
**ret_data
, Error
**errp
)
787 Error
*local_err
= NULL
;
791 opts
= qemu_opts_from_qdict(qemu_find_opts("device"), qdict
, &local_err
);
793 error_propagate(errp
, local_err
);
796 if (!monitor_cur_is_qmp() && qdev_device_help(opts
)) {
800 dev
= qdev_device_add(opts
, &local_err
);
802 error_propagate(errp
, local_err
);
806 object_unref(OBJECT(dev
));
809 static DeviceState
*find_device_state(const char *id
, Error
**errp
)
814 obj
= object_resolve_path(id
, NULL
);
816 char *root_path
= object_get_canonical_path(qdev_get_peripheral());
817 char *path
= g_strdup_printf("%s/%s", root_path
, id
);
820 obj
= object_resolve_path_type(path
, TYPE_DEVICE
, NULL
);
825 error_set(errp
, ERROR_CLASS_DEVICE_NOT_FOUND
,
826 "Device '%s' not found", id
);
830 if (!object_dynamic_cast(obj
, TYPE_DEVICE
)) {
831 error_setg(errp
, "%s is not a hotpluggable device", id
);
838 void qdev_unplug(DeviceState
*dev
, Error
**errp
)
840 DeviceClass
*dc
= DEVICE_GET_CLASS(dev
);
841 HotplugHandler
*hotplug_ctrl
;
842 HotplugHandlerClass
*hdc
;
843 Error
*local_err
= NULL
;
845 if (dev
->parent_bus
&& !qbus_is_hotpluggable(dev
->parent_bus
)) {
846 error_setg(errp
, QERR_BUS_NO_HOTPLUG
, dev
->parent_bus
->name
);
850 if (!dc
->hotpluggable
) {
851 error_setg(errp
, QERR_DEVICE_NO_HOTPLUG
,
852 object_get_typename(OBJECT(dev
)));
856 if (!migration_is_idle() && !dev
->allow_unplug_during_migration
) {
857 error_setg(errp
, "device_del not allowed while migrating");
861 qdev_hot_removed
= true;
863 hotplug_ctrl
= qdev_get_hotplug_handler(dev
);
864 /* hotpluggable device MUST have HotplugHandler, if it doesn't
865 * then something is very wrong with it */
866 g_assert(hotplug_ctrl
);
868 /* If device supports async unplug just request it to be done,
869 * otherwise just remove it synchronously */
870 hdc
= HOTPLUG_HANDLER_GET_CLASS(hotplug_ctrl
);
871 if (hdc
->unplug_request
) {
872 hotplug_handler_unplug_request(hotplug_ctrl
, dev
, &local_err
);
874 hotplug_handler_unplug(hotplug_ctrl
, dev
, &local_err
);
876 object_unparent(OBJECT(dev
));
879 error_propagate(errp
, local_err
);
882 void qmp_device_del(const char *id
, Error
**errp
)
884 DeviceState
*dev
= find_device_state(id
, errp
);
886 qdev_unplug(dev
, errp
);
890 void hmp_device_add(Monitor
*mon
, const QDict
*qdict
)
894 qmp_device_add((QDict
*)qdict
, NULL
, &err
);
895 hmp_handle_error(mon
, err
);
898 void hmp_device_del(Monitor
*mon
, const QDict
*qdict
)
900 const char *id
= qdict_get_str(qdict
, "id");
903 qmp_device_del(id
, &err
);
904 hmp_handle_error(mon
, err
);
907 BlockBackend
*blk_by_qdev_id(const char *id
, Error
**errp
)
912 dev
= find_device_state(id
, errp
);
917 blk
= blk_by_dev(dev
);
919 error_setg(errp
, "Device does not have a block device backend");
924 void qdev_machine_init(void)
926 qdev_get_peripheral_anon();
927 qdev_get_peripheral();
930 QemuOptsList qemu_device_opts
= {
932 .implied_opt_name
= "driver",
933 .head
= QTAILQ_HEAD_INITIALIZER(qemu_device_opts
.head
),
936 * no elements => accept any
937 * sanity checking will happen later
938 * when setting device properties
940 { /* end of list */ }
944 QemuOptsList qemu_global_opts
= {
946 .head
= QTAILQ_HEAD_INITIALIZER(qemu_global_opts
.head
),
950 .type
= QEMU_OPT_STRING
,
953 .type
= QEMU_OPT_STRING
,
956 .type
= QEMU_OPT_STRING
,
958 { /* end of list */ }
962 int qemu_global_option(const char *str
)
964 char driver
[64], property
[64];
968 rc
= sscanf(str
, "%63[^.=].%63[^=]%n", driver
, property
, &offset
);
969 if (rc
== 2 && str
[offset
] == '=') {
970 opts
= qemu_opts_create(&qemu_global_opts
, NULL
, 0, &error_abort
);
971 qemu_opt_set(opts
, "driver", driver
, &error_abort
);
972 qemu_opt_set(opts
, "property", property
, &error_abort
);
973 qemu_opt_set(opts
, "value", str
+ offset
+ 1, &error_abort
);
977 opts
= qemu_opts_parse_noisily(&qemu_global_opts
, str
, false);