target/riscv: Fix satp write
[qemu/ar7.git] / softmmu / qdev-monitor.c
blob0705f008466d5391d292a0b36f5f28f27a90c4ed
1 /*
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.1 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/dispatch.h"
29 #include "qapi/qmp/qdict.h"
30 #include "qapi/qmp/qerror.h"
31 #include "qemu/config-file.h"
32 #include "qemu/error-report.h"
33 #include "qemu/help_option.h"
34 #include "qemu/option.h"
35 #include "qemu/qemu-print.h"
36 #include "qemu/option_int.h"
37 #include "sysemu/block-backend.h"
38 #include "migration/misc.h"
39 #include "migration/migration.h"
40 #include "qemu/cutils.h"
41 #include "hw/qdev-properties.h"
42 #include "hw/clock.h"
45 * Aliases were a bad idea from the start. Let's keep them
46 * from spreading further.
48 typedef struct QDevAlias
50 const char *typename;
51 const char *alias;
52 uint32_t arch_mask;
53 } QDevAlias;
55 /* default virtio transport per architecture */
56 #define QEMU_ARCH_VIRTIO_PCI (QEMU_ARCH_ALPHA | QEMU_ARCH_ARM | \
57 QEMU_ARCH_HPPA | QEMU_ARCH_I386 | \
58 QEMU_ARCH_MIPS | QEMU_ARCH_PPC | \
59 QEMU_ARCH_RISCV | QEMU_ARCH_SH4 | \
60 QEMU_ARCH_SPARC | QEMU_ARCH_XTENSA)
61 #define QEMU_ARCH_VIRTIO_CCW (QEMU_ARCH_S390X)
62 #define QEMU_ARCH_VIRTIO_MMIO (QEMU_ARCH_M68K)
64 /* Please keep this table sorted by typename. */
65 static const QDevAlias qdev_alias_table[] = {
66 { "AC97", "ac97" }, /* -soundhw name */
67 { "e1000", "e1000-82540em" },
68 { "ES1370", "es1370" }, /* -soundhw name */
69 { "ich9-ahci", "ahci" },
70 { "lsi53c895a", "lsi" },
71 { "virtio-9p-device", "virtio-9p", QEMU_ARCH_VIRTIO_MMIO },
72 { "virtio-9p-ccw", "virtio-9p", QEMU_ARCH_VIRTIO_CCW },
73 { "virtio-9p-pci", "virtio-9p", QEMU_ARCH_VIRTIO_PCI },
74 { "virtio-balloon-device", "virtio-balloon", QEMU_ARCH_VIRTIO_MMIO },
75 { "virtio-balloon-ccw", "virtio-balloon", QEMU_ARCH_VIRTIO_CCW },
76 { "virtio-balloon-pci", "virtio-balloon", QEMU_ARCH_VIRTIO_PCI },
77 { "virtio-blk-device", "virtio-blk", QEMU_ARCH_VIRTIO_MMIO },
78 { "virtio-blk-ccw", "virtio-blk", QEMU_ARCH_VIRTIO_CCW },
79 { "virtio-blk-pci", "virtio-blk", QEMU_ARCH_VIRTIO_PCI },
80 { "virtio-gpu-device", "virtio-gpu", QEMU_ARCH_VIRTIO_MMIO },
81 { "virtio-gpu-ccw", "virtio-gpu", QEMU_ARCH_VIRTIO_CCW },
82 { "virtio-gpu-pci", "virtio-gpu", QEMU_ARCH_VIRTIO_PCI },
83 { "virtio-input-host-device", "virtio-input-host", QEMU_ARCH_VIRTIO_MMIO },
84 { "virtio-input-host-ccw", "virtio-input-host", QEMU_ARCH_VIRTIO_CCW },
85 { "virtio-input-host-pci", "virtio-input-host", QEMU_ARCH_VIRTIO_PCI },
86 { "virtio-iommu-pci", "virtio-iommu", QEMU_ARCH_VIRTIO_PCI },
87 { "virtio-keyboard-device", "virtio-keyboard", QEMU_ARCH_VIRTIO_MMIO },
88 { "virtio-keyboard-ccw", "virtio-keyboard", QEMU_ARCH_VIRTIO_CCW },
89 { "virtio-keyboard-pci", "virtio-keyboard", QEMU_ARCH_VIRTIO_PCI },
90 { "virtio-mouse-device", "virtio-mouse", QEMU_ARCH_VIRTIO_MMIO },
91 { "virtio-mouse-ccw", "virtio-mouse", QEMU_ARCH_VIRTIO_CCW },
92 { "virtio-mouse-pci", "virtio-mouse", QEMU_ARCH_VIRTIO_PCI },
93 { "virtio-net-device", "virtio-net", QEMU_ARCH_VIRTIO_MMIO },
94 { "virtio-net-ccw", "virtio-net", QEMU_ARCH_VIRTIO_CCW },
95 { "virtio-net-pci", "virtio-net", QEMU_ARCH_VIRTIO_PCI },
96 { "virtio-rng-device", "virtio-rng", QEMU_ARCH_VIRTIO_MMIO },
97 { "virtio-rng-ccw", "virtio-rng", QEMU_ARCH_VIRTIO_CCW },
98 { "virtio-rng-pci", "virtio-rng", QEMU_ARCH_VIRTIO_PCI },
99 { "virtio-scsi-device", "virtio-scsi", QEMU_ARCH_VIRTIO_MMIO },
100 { "virtio-scsi-ccw", "virtio-scsi", QEMU_ARCH_VIRTIO_CCW },
101 { "virtio-scsi-pci", "virtio-scsi", QEMU_ARCH_VIRTIO_PCI },
102 { "virtio-serial-device", "virtio-serial", QEMU_ARCH_VIRTIO_MMIO },
103 { "virtio-serial-ccw", "virtio-serial", QEMU_ARCH_VIRTIO_CCW },
104 { "virtio-serial-pci", "virtio-serial", QEMU_ARCH_VIRTIO_PCI},
105 { "virtio-tablet-device", "virtio-tablet", QEMU_ARCH_VIRTIO_MMIO },
106 { "virtio-tablet-ccw", "virtio-tablet", QEMU_ARCH_VIRTIO_CCW },
107 { "virtio-tablet-pci", "virtio-tablet", QEMU_ARCH_VIRTIO_PCI },
111 static const char *qdev_class_get_alias(DeviceClass *dc)
113 const char *typename = object_class_get_name(OBJECT_CLASS(dc));
114 int i;
116 for (i = 0; qdev_alias_table[i].typename; i++) {
117 if (qdev_alias_table[i].arch_mask &&
118 !(qdev_alias_table[i].arch_mask & arch_type)) {
119 continue;
122 if (strcmp(qdev_alias_table[i].typename, typename) == 0) {
123 return qdev_alias_table[i].alias;
127 return NULL;
130 static bool qdev_class_has_alias(DeviceClass *dc)
132 return (qdev_class_get_alias(dc) != NULL);
135 static void qdev_print_devinfo(DeviceClass *dc)
137 qemu_printf("name \"%s\"", object_class_get_name(OBJECT_CLASS(dc)));
138 if (dc->bus_type) {
139 qemu_printf(", bus %s", dc->bus_type);
141 if (qdev_class_has_alias(dc)) {
142 qemu_printf(", alias \"%s\"", qdev_class_get_alias(dc));
144 if (dc->desc) {
145 qemu_printf(", desc \"%s\"", dc->desc);
147 if (!dc->user_creatable) {
148 qemu_printf(", no-user");
150 qemu_printf("\n");
153 static void qdev_print_devinfos(bool show_no_user)
155 static const char *cat_name[DEVICE_CATEGORY_MAX + 1] = {
156 [DEVICE_CATEGORY_BRIDGE] = "Controller/Bridge/Hub",
157 [DEVICE_CATEGORY_USB] = "USB",
158 [DEVICE_CATEGORY_STORAGE] = "Storage",
159 [DEVICE_CATEGORY_NETWORK] = "Network",
160 [DEVICE_CATEGORY_INPUT] = "Input",
161 [DEVICE_CATEGORY_DISPLAY] = "Display",
162 [DEVICE_CATEGORY_SOUND] = "Sound",
163 [DEVICE_CATEGORY_MISC] = "Misc",
164 [DEVICE_CATEGORY_CPU] = "CPU",
165 [DEVICE_CATEGORY_MAX] = "Uncategorized",
167 GSList *list, *elt;
168 int i;
169 bool cat_printed;
171 module_load_qom_all();
172 list = object_class_get_list_sorted(TYPE_DEVICE, false);
174 for (i = 0; i <= DEVICE_CATEGORY_MAX; i++) {
175 cat_printed = false;
176 for (elt = list; elt; elt = elt->next) {
177 DeviceClass *dc = OBJECT_CLASS_CHECK(DeviceClass, elt->data,
178 TYPE_DEVICE);
179 if ((i < DEVICE_CATEGORY_MAX
180 ? !test_bit(i, dc->categories)
181 : !bitmap_empty(dc->categories, DEVICE_CATEGORY_MAX))
182 || (!show_no_user
183 && !dc->user_creatable)) {
184 continue;
186 if (!cat_printed) {
187 qemu_printf("%s%s devices:\n", i ? "\n" : "", cat_name[i]);
188 cat_printed = true;
190 qdev_print_devinfo(dc);
194 g_slist_free(list);
197 static int set_property(void *opaque, const char *name, const char *value,
198 Error **errp)
200 Object *obj = opaque;
202 if (strcmp(name, "driver") == 0)
203 return 0;
204 if (strcmp(name, "bus") == 0)
205 return 0;
207 if (!object_property_parse(obj, name, value, errp)) {
208 return -1;
210 return 0;
213 static const char *find_typename_by_alias(const char *alias)
215 int i;
217 for (i = 0; qdev_alias_table[i].alias; i++) {
218 if (qdev_alias_table[i].arch_mask &&
219 !(qdev_alias_table[i].arch_mask & arch_type)) {
220 continue;
223 if (strcmp(qdev_alias_table[i].alias, alias) == 0) {
224 return qdev_alias_table[i].typename;
228 return NULL;
231 static DeviceClass *qdev_get_device_class(const char **driver, Error **errp)
233 ObjectClass *oc;
234 DeviceClass *dc;
235 const char *original_name = *driver;
237 oc = module_object_class_by_name(*driver);
238 if (!oc) {
239 const char *typename = find_typename_by_alias(*driver);
241 if (typename) {
242 *driver = typename;
243 oc = module_object_class_by_name(*driver);
247 if (!object_class_dynamic_cast(oc, TYPE_DEVICE)) {
248 if (*driver != original_name) {
249 error_setg(errp, "'%s' (alias '%s') is not a valid device model"
250 " name", original_name, *driver);
251 } else {
252 error_setg(errp, "'%s' is not a valid device model name", *driver);
254 return NULL;
257 if (object_class_is_abstract(oc)) {
258 error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "driver",
259 "a non-abstract device type");
260 return NULL;
263 dc = DEVICE_CLASS(oc);
264 if (!dc->user_creatable ||
265 (phase_check(PHASE_MACHINE_READY) && !dc->hotpluggable)) {
266 error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "driver",
267 "a pluggable device type");
268 return NULL;
271 return dc;
275 int qdev_device_help(QemuOpts *opts)
277 Error *local_err = NULL;
278 const char *driver;
279 ObjectPropertyInfoList *prop_list;
280 ObjectPropertyInfoList *prop;
281 GPtrArray *array;
282 int i;
284 driver = qemu_opt_get(opts, "driver");
285 if (driver && is_help_option(driver)) {
286 qdev_print_devinfos(false);
287 return 1;
290 if (!driver || !qemu_opt_has_help_opt(opts)) {
291 return 0;
294 if (!object_class_by_name(driver)) {
295 const char *typename = find_typename_by_alias(driver);
297 if (typename) {
298 driver = typename;
302 prop_list = qmp_device_list_properties(driver, &local_err);
303 if (local_err) {
304 goto error;
307 if (prop_list) {
308 qemu_printf("%s options:\n", driver);
309 } else {
310 qemu_printf("There are no options for %s.\n", driver);
312 array = g_ptr_array_new();
313 for (prop = prop_list; prop; prop = prop->next) {
314 g_ptr_array_add(array,
315 object_property_help(prop->value->name,
316 prop->value->type,
317 prop->value->default_value,
318 prop->value->description));
320 g_ptr_array_sort(array, (GCompareFunc)qemu_pstrcmp0);
321 for (i = 0; i < array->len; i++) {
322 qemu_printf("%s\n", (char *)array->pdata[i]);
324 g_ptr_array_set_free_func(array, g_free);
325 g_ptr_array_free(array, true);
326 qapi_free_ObjectPropertyInfoList(prop_list);
327 return 1;
329 error:
330 error_report_err(local_err);
331 return 1;
334 static Object *qdev_get_peripheral(void)
336 static Object *dev;
338 if (dev == NULL) {
339 dev = container_get(qdev_get_machine(), "/peripheral");
342 return dev;
345 static Object *qdev_get_peripheral_anon(void)
347 static Object *dev;
349 if (dev == NULL) {
350 dev = container_get(qdev_get_machine(), "/peripheral-anon");
353 return dev;
356 static void qbus_error_append_bus_list_hint(DeviceState *dev,
357 Error *const *errp)
359 BusState *child;
360 const char *sep = " ";
362 error_append_hint(errp, "child buses at \"%s\":",
363 dev->id ? dev->id : object_get_typename(OBJECT(dev)));
364 QLIST_FOREACH(child, &dev->child_bus, sibling) {
365 error_append_hint(errp, "%s\"%s\"", sep, child->name);
366 sep = ", ";
368 error_append_hint(errp, "\n");
371 static void qbus_error_append_dev_list_hint(BusState *bus,
372 Error *const *errp)
374 BusChild *kid;
375 const char *sep = " ";
377 error_append_hint(errp, "devices at \"%s\":", bus->name);
378 QTAILQ_FOREACH(kid, &bus->children, sibling) {
379 DeviceState *dev = kid->child;
380 error_append_hint(errp, "%s\"%s\"", sep,
381 object_get_typename(OBJECT(dev)));
382 if (dev->id) {
383 error_append_hint(errp, "/\"%s\"", dev->id);
385 sep = ", ";
387 error_append_hint(errp, "\n");
390 static BusState *qbus_find_bus(DeviceState *dev, char *elem)
392 BusState *child;
394 QLIST_FOREACH(child, &dev->child_bus, sibling) {
395 if (strcmp(child->name, elem) == 0) {
396 return child;
399 return NULL;
402 static DeviceState *qbus_find_dev(BusState *bus, char *elem)
404 BusChild *kid;
407 * try to match in order:
408 * (1) instance id, if present
409 * (2) driver name
410 * (3) driver alias, if present
412 QTAILQ_FOREACH(kid, &bus->children, sibling) {
413 DeviceState *dev = kid->child;
414 if (dev->id && strcmp(dev->id, elem) == 0) {
415 return dev;
418 QTAILQ_FOREACH(kid, &bus->children, sibling) {
419 DeviceState *dev = kid->child;
420 if (strcmp(object_get_typename(OBJECT(dev)), elem) == 0) {
421 return dev;
424 QTAILQ_FOREACH(kid, &bus->children, sibling) {
425 DeviceState *dev = kid->child;
426 DeviceClass *dc = DEVICE_GET_CLASS(dev);
428 if (qdev_class_has_alias(dc) &&
429 strcmp(qdev_class_get_alias(dc), elem) == 0) {
430 return dev;
433 return NULL;
436 static inline bool qbus_is_full(BusState *bus)
438 BusClass *bus_class;
440 if (bus->full) {
441 return true;
443 bus_class = BUS_GET_CLASS(bus);
444 return bus_class->max_dev && bus->num_children >= bus_class->max_dev;
448 * Search the tree rooted at @bus for a bus.
449 * If @name, search for a bus with that name. Note that bus names
450 * need not be unique. Yes, that's screwed up.
451 * Else search for a bus that is a subtype of @bus_typename.
452 * If more than one exists, prefer one that can take another device.
453 * Return the bus if found, else %NULL.
455 static BusState *qbus_find_recursive(BusState *bus, const char *name,
456 const char *bus_typename)
458 BusChild *kid;
459 BusState *pick, *child, *ret;
460 bool match;
462 assert(name || bus_typename);
463 if (name) {
464 match = !strcmp(bus->name, name);
465 } else {
466 match = !!object_dynamic_cast(OBJECT(bus), bus_typename);
469 if (match && !qbus_is_full(bus)) {
470 return bus; /* root matches and isn't full */
473 pick = match ? bus : NULL;
475 QTAILQ_FOREACH(kid, &bus->children, sibling) {
476 DeviceState *dev = kid->child;
477 QLIST_FOREACH(child, &dev->child_bus, sibling) {
478 ret = qbus_find_recursive(child, name, bus_typename);
479 if (ret && !qbus_is_full(ret)) {
480 return ret; /* a descendant matches and isn't full */
482 if (ret && !pick) {
483 pick = ret;
488 /* root or a descendant matches, but is full */
489 return pick;
492 static BusState *qbus_find(const char *path, Error **errp)
494 DeviceState *dev;
495 BusState *bus;
496 char elem[128];
497 int pos, len;
499 /* find start element */
500 if (path[0] == '/') {
501 bus = sysbus_get_default();
502 pos = 0;
503 } else {
504 if (sscanf(path, "%127[^/]%n", elem, &len) != 1) {
505 assert(!path[0]);
506 elem[0] = len = 0;
508 bus = qbus_find_recursive(sysbus_get_default(), elem, NULL);
509 if (!bus) {
510 error_setg(errp, "Bus '%s' not found", elem);
511 return NULL;
513 pos = len;
516 for (;;) {
517 assert(path[pos] == '/' || !path[pos]);
518 while (path[pos] == '/') {
519 pos++;
521 if (path[pos] == '\0') {
522 break;
525 /* find device */
526 if (sscanf(path+pos, "%127[^/]%n", elem, &len) != 1) {
527 g_assert_not_reached();
528 elem[0] = len = 0;
530 pos += len;
531 dev = qbus_find_dev(bus, elem);
532 if (!dev) {
533 error_set(errp, ERROR_CLASS_DEVICE_NOT_FOUND,
534 "Device '%s' not found", elem);
535 qbus_error_append_dev_list_hint(bus, errp);
536 return NULL;
539 assert(path[pos] == '/' || !path[pos]);
540 while (path[pos] == '/') {
541 pos++;
543 if (path[pos] == '\0') {
544 /* last specified element is a device. If it has exactly
545 * one child bus accept it nevertheless */
546 if (dev->num_child_bus == 1) {
547 bus = QLIST_FIRST(&dev->child_bus);
548 break;
550 if (dev->num_child_bus) {
551 error_setg(errp, "Device '%s' has multiple child buses",
552 elem);
553 qbus_error_append_bus_list_hint(dev, errp);
554 } else {
555 error_setg(errp, "Device '%s' has no child bus", elem);
557 return NULL;
560 /* find bus */
561 if (sscanf(path+pos, "%127[^/]%n", elem, &len) != 1) {
562 g_assert_not_reached();
563 elem[0] = len = 0;
565 pos += len;
566 bus = qbus_find_bus(dev, elem);
567 if (!bus) {
568 error_setg(errp, "Bus '%s' not found", elem);
569 qbus_error_append_bus_list_hint(dev, errp);
570 return NULL;
574 if (qbus_is_full(bus)) {
575 error_setg(errp, "Bus '%s' is full", path);
576 return NULL;
578 return bus;
581 void qdev_set_id(DeviceState *dev, const char *id)
583 if (id) {
584 dev->id = id;
587 if (dev->id) {
588 object_property_add_child(qdev_get_peripheral(), dev->id,
589 OBJECT(dev));
590 } else {
591 static int anon_count;
592 gchar *name = g_strdup_printf("device[%d]", anon_count++);
593 object_property_add_child(qdev_get_peripheral_anon(), name,
594 OBJECT(dev));
595 g_free(name);
599 DeviceState *qdev_device_add(QemuOpts *opts, Error **errp)
601 DeviceClass *dc;
602 const char *driver, *path;
603 DeviceState *dev = NULL;
604 BusState *bus = NULL;
606 driver = qemu_opt_get(opts, "driver");
607 if (!driver) {
608 error_setg(errp, QERR_MISSING_PARAMETER, "driver");
609 return NULL;
612 /* find driver */
613 dc = qdev_get_device_class(&driver, errp);
614 if (!dc) {
615 return NULL;
618 /* find bus */
619 path = qemu_opt_get(opts, "bus");
620 if (path != NULL) {
621 bus = qbus_find(path, errp);
622 if (!bus) {
623 return NULL;
625 if (!object_dynamic_cast(OBJECT(bus), dc->bus_type)) {
626 error_setg(errp, "Device '%s' can't go on %s bus",
627 driver, object_get_typename(OBJECT(bus)));
628 return NULL;
630 } else if (dc->bus_type != NULL) {
631 bus = qbus_find_recursive(sysbus_get_default(), NULL, dc->bus_type);
632 if (!bus || qbus_is_full(bus)) {
633 error_setg(errp, "No '%s' bus found for device '%s'",
634 dc->bus_type, driver);
635 return NULL;
639 if (qemu_opt_get(opts, "failover_pair_id")) {
640 if (!opts->id) {
641 error_setg(errp, "Device with failover_pair_id don't have id");
642 return NULL;
644 if (qdev_should_hide_device(opts)) {
645 if (bus && !qbus_is_hotpluggable(bus)) {
646 error_setg(errp, QERR_BUS_NO_HOTPLUG, bus->name);
648 return NULL;
652 if (phase_check(PHASE_MACHINE_READY) && bus && !qbus_is_hotpluggable(bus)) {
653 error_setg(errp, QERR_BUS_NO_HOTPLUG, bus->name);
654 return NULL;
657 if (!migration_is_idle()) {
658 error_setg(errp, "device_add not allowed while migrating");
659 return NULL;
662 /* create device */
663 dev = qdev_new(driver);
665 /* Check whether the hotplug is allowed by the machine */
666 if (phase_check(PHASE_MACHINE_READY)) {
667 if (!qdev_hotplug_allowed(dev, errp)) {
668 goto err_del_dev;
671 if (!bus && !qdev_get_machine_hotplug_handler(dev)) {
672 /* No bus, no machine hotplug handler --> device is not hotpluggable */
673 error_setg(errp, "Device '%s' can not be hotplugged on this machine",
674 driver);
675 goto err_del_dev;
679 qdev_set_id(dev, qemu_opts_id(opts));
681 /* set properties */
682 if (qemu_opt_foreach(opts, set_property, dev, errp)) {
683 goto err_del_dev;
686 dev->opts = opts;
687 if (!qdev_realize(DEVICE(dev), bus, errp)) {
688 dev->opts = NULL;
689 goto err_del_dev;
691 return dev;
693 err_del_dev:
694 if (dev) {
695 object_unparent(OBJECT(dev));
696 object_unref(OBJECT(dev));
698 return NULL;
702 #define qdev_printf(fmt, ...) monitor_printf(mon, "%*s" fmt, indent, "", ## __VA_ARGS__)
703 static void qbus_print(Monitor *mon, BusState *bus, int indent);
705 static void qdev_print_props(Monitor *mon, DeviceState *dev, Property *props,
706 int indent)
708 if (!props)
709 return;
710 for (; props->name; props++) {
711 char *value;
712 char *legacy_name = g_strdup_printf("legacy-%s", props->name);
714 if (object_property_get_type(OBJECT(dev), legacy_name, NULL)) {
715 value = object_property_get_str(OBJECT(dev), legacy_name, NULL);
716 } else {
717 value = object_property_print(OBJECT(dev), props->name, true,
718 NULL);
720 g_free(legacy_name);
722 if (!value) {
723 continue;
725 qdev_printf("%s = %s\n", props->name,
726 *value ? value : "<null>");
727 g_free(value);
731 static void bus_print_dev(BusState *bus, Monitor *mon, DeviceState *dev, int indent)
733 BusClass *bc = BUS_GET_CLASS(bus);
735 if (bc->print_dev) {
736 bc->print_dev(mon, dev, indent);
740 static void qdev_print(Monitor *mon, DeviceState *dev, int indent)
742 ObjectClass *class;
743 BusState *child;
744 NamedGPIOList *ngl;
745 NamedClockList *ncl;
747 qdev_printf("dev: %s, id \"%s\"\n", object_get_typename(OBJECT(dev)),
748 dev->id ? dev->id : "");
749 indent += 2;
750 QLIST_FOREACH(ngl, &dev->gpios, node) {
751 if (ngl->num_in) {
752 qdev_printf("gpio-in \"%s\" %d\n", ngl->name ? ngl->name : "",
753 ngl->num_in);
755 if (ngl->num_out) {
756 qdev_printf("gpio-out \"%s\" %d\n", ngl->name ? ngl->name : "",
757 ngl->num_out);
760 QLIST_FOREACH(ncl, &dev->clocks, node) {
761 g_autofree char *freq_str = clock_display_freq(ncl->clock);
762 qdev_printf("clock-%s%s \"%s\" freq_hz=%s\n",
763 ncl->output ? "out" : "in",
764 ncl->alias ? " (alias)" : "",
765 ncl->name, freq_str);
767 class = object_get_class(OBJECT(dev));
768 do {
769 qdev_print_props(mon, dev, DEVICE_CLASS(class)->props_, indent);
770 class = object_class_get_parent(class);
771 } while (class != object_class_by_name(TYPE_DEVICE));
772 bus_print_dev(dev->parent_bus, mon, dev, indent);
773 QLIST_FOREACH(child, &dev->child_bus, sibling) {
774 qbus_print(mon, child, indent);
778 static void qbus_print(Monitor *mon, BusState *bus, int indent)
780 BusChild *kid;
782 qdev_printf("bus: %s\n", bus->name);
783 indent += 2;
784 qdev_printf("type %s\n", object_get_typename(OBJECT(bus)));
785 QTAILQ_FOREACH(kid, &bus->children, sibling) {
786 DeviceState *dev = kid->child;
787 qdev_print(mon, dev, indent);
790 #undef qdev_printf
792 void hmp_info_qtree(Monitor *mon, const QDict *qdict)
794 if (sysbus_get_default())
795 qbus_print(mon, sysbus_get_default(), 0);
798 void hmp_info_qdm(Monitor *mon, const QDict *qdict)
800 qdev_print_devinfos(true);
803 void qmp_device_add(QDict *qdict, QObject **ret_data, Error **errp)
805 QemuOpts *opts;
806 DeviceState *dev;
808 opts = qemu_opts_from_qdict(qemu_find_opts("device"), qdict, errp);
809 if (!opts) {
810 return;
812 if (!monitor_cur_is_qmp() && qdev_device_help(opts)) {
813 qemu_opts_del(opts);
814 return;
816 dev = qdev_device_add(opts, errp);
819 * Drain all pending RCU callbacks. This is done because
820 * some bus related operations can delay a device removal
821 * (in this case this can happen if device is added and then
822 * removed due to a configuration error)
823 * to a RCU callback, but user might expect that this interface
824 * will finish its job completely once qmp command returns result
825 * to the user
827 drain_call_rcu();
829 if (!dev) {
830 qemu_opts_del(opts);
831 return;
833 object_unref(OBJECT(dev));
836 static DeviceState *find_device_state(const char *id, Error **errp)
838 Object *obj;
840 if (id[0] == '/') {
841 obj = object_resolve_path(id, NULL);
842 } else {
843 char *root_path = object_get_canonical_path(qdev_get_peripheral());
844 char *path = g_strdup_printf("%s/%s", root_path, id);
846 g_free(root_path);
847 obj = object_resolve_path_type(path, TYPE_DEVICE, NULL);
848 g_free(path);
851 if (!obj) {
852 error_set(errp, ERROR_CLASS_DEVICE_NOT_FOUND,
853 "Device '%s' not found", id);
854 return NULL;
857 if (!object_dynamic_cast(obj, TYPE_DEVICE)) {
858 error_setg(errp, "%s is not a hotpluggable device", id);
859 return NULL;
862 return DEVICE(obj);
865 void qdev_unplug(DeviceState *dev, Error **errp)
867 DeviceClass *dc = DEVICE_GET_CLASS(dev);
868 HotplugHandler *hotplug_ctrl;
869 HotplugHandlerClass *hdc;
870 Error *local_err = NULL;
872 if (dev->parent_bus && !qbus_is_hotpluggable(dev->parent_bus)) {
873 error_setg(errp, QERR_BUS_NO_HOTPLUG, dev->parent_bus->name);
874 return;
877 if (!dc->hotpluggable) {
878 error_setg(errp, QERR_DEVICE_NO_HOTPLUG,
879 object_get_typename(OBJECT(dev)));
880 return;
883 if (!migration_is_idle() && !dev->allow_unplug_during_migration) {
884 error_setg(errp, "device_del not allowed while migrating");
885 return;
888 qdev_hot_removed = true;
890 hotplug_ctrl = qdev_get_hotplug_handler(dev);
891 /* hotpluggable device MUST have HotplugHandler, if it doesn't
892 * then something is very wrong with it */
893 g_assert(hotplug_ctrl);
895 /* If device supports async unplug just request it to be done,
896 * otherwise just remove it synchronously */
897 hdc = HOTPLUG_HANDLER_GET_CLASS(hotplug_ctrl);
898 if (hdc->unplug_request) {
899 hotplug_handler_unplug_request(hotplug_ctrl, dev, &local_err);
900 } else {
901 hotplug_handler_unplug(hotplug_ctrl, dev, &local_err);
902 if (!local_err) {
903 object_unparent(OBJECT(dev));
906 error_propagate(errp, local_err);
909 void qmp_device_del(const char *id, Error **errp)
911 DeviceState *dev = find_device_state(id, errp);
912 if (dev != NULL) {
913 if (dev->pending_deleted_event) {
914 error_setg(errp, "Device %s is already in the "
915 "process of unplug", id);
916 return;
919 qdev_unplug(dev, errp);
923 void hmp_device_add(Monitor *mon, const QDict *qdict)
925 Error *err = NULL;
927 qmp_device_add((QDict *)qdict, NULL, &err);
928 hmp_handle_error(mon, err);
931 void hmp_device_del(Monitor *mon, const QDict *qdict)
933 const char *id = qdict_get_str(qdict, "id");
934 Error *err = NULL;
936 qmp_device_del(id, &err);
937 hmp_handle_error(mon, err);
940 BlockBackend *blk_by_qdev_id(const char *id, Error **errp)
942 DeviceState *dev;
943 BlockBackend *blk;
945 dev = find_device_state(id, errp);
946 if (dev == NULL) {
947 return NULL;
950 blk = blk_by_dev(dev);
951 if (!blk) {
952 error_setg(errp, "Device does not have a block device backend");
954 return blk;
957 QemuOptsList qemu_device_opts = {
958 .name = "device",
959 .implied_opt_name = "driver",
960 .head = QTAILQ_HEAD_INITIALIZER(qemu_device_opts.head),
961 .desc = {
963 * no elements => accept any
964 * sanity checking will happen later
965 * when setting device properties
967 { /* end of list */ }
971 QemuOptsList qemu_global_opts = {
972 .name = "global",
973 .head = QTAILQ_HEAD_INITIALIZER(qemu_global_opts.head),
974 .desc = {
976 .name = "driver",
977 .type = QEMU_OPT_STRING,
979 .name = "property",
980 .type = QEMU_OPT_STRING,
982 .name = "value",
983 .type = QEMU_OPT_STRING,
985 { /* end of list */ }
989 int qemu_global_option(const char *str)
991 char driver[64], property[64];
992 QemuOpts *opts;
993 int rc, offset;
995 rc = sscanf(str, "%63[^.=].%63[^=]%n", driver, property, &offset);
996 if (rc == 2 && str[offset] == '=') {
997 opts = qemu_opts_create(&qemu_global_opts, NULL, 0, &error_abort);
998 qemu_opt_set(opts, "driver", driver, &error_abort);
999 qemu_opt_set(opts, "property", property, &error_abort);
1000 qemu_opt_set(opts, "value", str + offset + 1, &error_abort);
1001 return 0;
1004 opts = qemu_opts_parse_noisily(&qemu_global_opts, str, false);
1005 if (!opts) {
1006 return -1;
1009 return 0;
1012 bool qmp_command_available(const QmpCommand *cmd, Error **errp)
1014 if (!phase_check(PHASE_MACHINE_READY) &&
1015 !(cmd->options & QCO_ALLOW_PRECONFIG)) {
1016 error_setg(errp, "The command '%s' is permitted only after machine initialization has completed",
1017 cmd->name);
1018 return false;
1020 return true;