]> git.proxmox.com Git - mirror_qemu.git/blame - qdev-monitor.c
pci-assign: Fix potential read beyond buffer on -EBUSY
[mirror_qemu.git] / qdev-monitor.c
CommitLineData
ee46d8a5
AL
1/*
2 * Dynamic device configuration and creation.
3 *
4 * Copyright (c) 2009 CodeSourcery
5 *
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.
10 *
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.
15 *
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/>.
18 */
19
b4a42f81 20#include "hw/qdev.h"
2f7bd829 21#include "hw/sysbus.h"
83c9089e 22#include "monitor/monitor.h"
b4a42f81 23#include "monitor/qdev.h"
a15fef21 24#include "qmp-commands.h"
9c17d615 25#include "sysemu/arch_init.h"
1de7afc9 26#include "qemu/config-file.h"
ee46d8a5
AL
27
28/*
29 * Aliases were a bad idea from the start. Let's keep them
30 * from spreading further.
31 */
32typedef struct QDevAlias
33{
34 const char *typename;
35 const char *alias;
5f629d94 36 uint32_t arch_mask;
ee46d8a5
AL
37} QDevAlias;
38
39static const QDevAlias qdev_alias_table[] = {
5f629d94
AG
40 { "virtio-blk-pci", "virtio-blk", QEMU_ARCH_ALL & ~QEMU_ARCH_S390X },
41 { "virtio-net-pci", "virtio-net", QEMU_ARCH_ALL & ~QEMU_ARCH_S390X },
42 { "virtio-serial-pci", "virtio-serial", QEMU_ARCH_ALL & ~QEMU_ARCH_S390X },
43 { "virtio-balloon-pci", "virtio-balloon",
44 QEMU_ARCH_ALL & ~QEMU_ARCH_S390X },
45 { "virtio-blk-s390", "virtio-blk", QEMU_ARCH_S390X },
46 { "virtio-net-s390", "virtio-net", QEMU_ARCH_S390X },
47 { "virtio-serial-s390", "virtio-serial", QEMU_ARCH_S390X },
ee46d8a5
AL
48 { "lsi53c895a", "lsi" },
49 { "ich9-ahci", "ahci" },
c3ebd3ba 50 { "kvm-pci-assign", "pci-assign" },
ee46d8a5
AL
51 { }
52};
53
54static const char *qdev_class_get_alias(DeviceClass *dc)
55{
56 const char *typename = object_class_get_name(OBJECT_CLASS(dc));
57 int i;
58
59 for (i = 0; qdev_alias_table[i].typename; i++) {
5f629d94
AG
60 if (qdev_alias_table[i].arch_mask &&
61 !(qdev_alias_table[i].arch_mask & arch_type)) {
62 continue;
63 }
64
ee46d8a5
AL
65 if (strcmp(qdev_alias_table[i].typename, typename) == 0) {
66 return qdev_alias_table[i].alias;
67 }
68 }
69
70 return NULL;
71}
72
73static bool qdev_class_has_alias(DeviceClass *dc)
74{
75 return (qdev_class_get_alias(dc) != NULL);
76}
77
a3400aee 78static void qdev_print_devinfo(DeviceClass *dc)
ee46d8a5 79{
a3400aee 80 error_printf("name \"%s\"", object_class_get_name(OBJECT_CLASS(dc)));
0d936928
AL
81 if (dc->bus_type) {
82 error_printf(", bus %s", dc->bus_type);
ee46d8a5
AL
83 }
84 if (qdev_class_has_alias(dc)) {
85 error_printf(", alias \"%s\"", qdev_class_get_alias(dc));
86 }
87 if (dc->desc) {
88 error_printf(", desc \"%s\"", dc->desc);
89 }
efec3dd6 90 if (dc->cannot_instantiate_with_device_add_yet) {
ee46d8a5
AL
91 error_printf(", no-user");
92 }
93 error_printf("\n");
94}
95
a3400aee
MA
96static gint devinfo_cmp(gconstpointer a, gconstpointer b)
97{
98 return strcasecmp(object_class_get_name((ObjectClass *)a),
99 object_class_get_name((ObjectClass *)b));
100}
101
102static void qdev_print_devinfos(bool show_no_user)
103{
104 static const char *cat_name[DEVICE_CATEGORY_MAX + 1] = {
105 [DEVICE_CATEGORY_BRIDGE] = "Controller/Bridge/Hub",
106 [DEVICE_CATEGORY_USB] = "USB",
107 [DEVICE_CATEGORY_STORAGE] = "Storage",
108 [DEVICE_CATEGORY_NETWORK] = "Network",
109 [DEVICE_CATEGORY_INPUT] = "Input",
110 [DEVICE_CATEGORY_DISPLAY] = "Display",
111 [DEVICE_CATEGORY_SOUND] = "Sound",
112 [DEVICE_CATEGORY_MISC] = "Misc",
113 [DEVICE_CATEGORY_MAX] = "Uncategorized",
114 };
115 GSList *list, *elt;
116 int i;
117 bool cat_printed;
118
119 list = g_slist_sort(object_class_get_list(TYPE_DEVICE, false),
120 devinfo_cmp);
121
122 for (i = 0; i <= DEVICE_CATEGORY_MAX; i++) {
123 cat_printed = false;
124 for (elt = list; elt; elt = elt->next) {
125 DeviceClass *dc = OBJECT_CLASS_CHECK(DeviceClass, elt->data,
126 TYPE_DEVICE);
127 if ((i < DEVICE_CATEGORY_MAX
128 ? !test_bit(i, dc->categories)
129 : !bitmap_empty(dc->categories, DEVICE_CATEGORY_MAX))
efec3dd6
MA
130 || (!show_no_user
131 && dc->cannot_instantiate_with_device_add_yet)) {
a3400aee
MA
132 continue;
133 }
134 if (!cat_printed) {
135 error_printf("%s%s devices:\n", i ? "\n" : "",
136 cat_name[i]);
137 cat_printed = true;
138 }
139 qdev_print_devinfo(dc);
140 }
141 }
142
143 g_slist_free(list);
144}
145
ee46d8a5
AL
146static int set_property(const char *name, const char *value, void *opaque)
147{
98a65284 148 Object *obj = opaque;
b1fe9bcb 149 Error *err = NULL;
ee46d8a5
AL
150
151 if (strcmp(name, "driver") == 0)
152 return 0;
153 if (strcmp(name, "bus") == 0)
154 return 0;
155
98a65284 156 object_property_parse(obj, value, name, &err);
b1fe9bcb
AF
157 if (err != NULL) {
158 qerror_report_err(err);
159 error_free(err);
ee46d8a5
AL
160 return -1;
161 }
162 return 0;
163}
164
165static const char *find_typename_by_alias(const char *alias)
166{
167 int i;
168
169 for (i = 0; qdev_alias_table[i].alias; i++) {
5f629d94
AG
170 if (qdev_alias_table[i].arch_mask &&
171 !(qdev_alias_table[i].arch_mask & arch_type)) {
172 continue;
173 }
174
ee46d8a5
AL
175 if (strcmp(qdev_alias_table[i].alias, alias) == 0) {
176 return qdev_alias_table[i].typename;
177 }
178 }
179
180 return NULL;
181}
182
183int qdev_device_help(QemuOpts *opts)
184{
185 const char *driver;
186 Property *prop;
187 ObjectClass *klass;
ee46d8a5
AL
188
189 driver = qemu_opt_get(opts, "driver");
c8057f95 190 if (driver && is_help_option(driver)) {
a3400aee 191 qdev_print_devinfos(false);
ee46d8a5
AL
192 return 1;
193 }
194
c8057f95 195 if (!driver || !qemu_opt_has_help_opt(opts)) {
ee46d8a5
AL
196 return 0;
197 }
198
199 klass = object_class_by_name(driver);
200 if (!klass) {
201 const char *typename = find_typename_by_alias(driver);
202
203 if (typename) {
204 driver = typename;
205 klass = object_class_by_name(driver);
206 }
207 }
208
209 if (!klass) {
210 return 0;
211 }
bce54474
PB
212 do {
213 for (prop = DEVICE_CLASS(klass)->props; prop && prop->name; prop++) {
214 /*
215 * TODO Properties without a parser are just for dirty hacks.
216 * qdev_prop_ptr is the only such PropertyInfo. It's marked
217 * for removal. This conditional should be removed along with
218 * it.
219 */
90ca64a9 220 if (!prop->info->set) {
d03d6b4e
AL
221 continue; /* no way to set it, don't show */
222 }
223 error_printf("%s.%s=%s\n", driver, prop->name,
224 prop->info->legacy_name ?: prop->info->name);
ee46d8a5 225 }
bce54474
PB
226 klass = object_class_get_parent(klass);
227 } while (klass != object_class_by_name(TYPE_DEVICE));
ee46d8a5
AL
228 return 1;
229}
230
57c9fafe 231static Object *qdev_get_peripheral(void)
ee46d8a5 232{
8b45d447 233 static Object *dev;
ee46d8a5
AL
234
235 if (dev == NULL) {
dfe47e70 236 dev = container_get(qdev_get_machine(), "/peripheral");
ee46d8a5
AL
237 }
238
8b45d447 239 return dev;
ee46d8a5
AL
240}
241
57c9fafe 242static Object *qdev_get_peripheral_anon(void)
ee46d8a5 243{
8b45d447 244 static Object *dev;
ee46d8a5
AL
245
246 if (dev == NULL) {
dfe47e70 247 dev = container_get(qdev_get_machine(), "/peripheral-anon");
ee46d8a5
AL
248 }
249
8b45d447 250 return dev;
ee46d8a5
AL
251}
252
253static void qbus_list_bus(DeviceState *dev)
254{
255 BusState *child;
256 const char *sep = " ";
257
258 error_printf("child busses at \"%s\":",
259 dev->id ? dev->id : object_get_typename(OBJECT(dev)));
260 QLIST_FOREACH(child, &dev->child_bus, sibling) {
261 error_printf("%s\"%s\"", sep, child->name);
262 sep = ", ";
263 }
264 error_printf("\n");
265}
266
267static void qbus_list_dev(BusState *bus)
268{
0866aca1 269 BusChild *kid;
ee46d8a5
AL
270 const char *sep = " ";
271
272 error_printf("devices at \"%s\":", bus->name);
0866aca1
AL
273 QTAILQ_FOREACH(kid, &bus->children, sibling) {
274 DeviceState *dev = kid->child;
ee46d8a5
AL
275 error_printf("%s\"%s\"", sep, object_get_typename(OBJECT(dev)));
276 if (dev->id)
277 error_printf("/\"%s\"", dev->id);
278 sep = ", ";
279 }
280 error_printf("\n");
281}
282
283static BusState *qbus_find_bus(DeviceState *dev, char *elem)
284{
285 BusState *child;
286
287 QLIST_FOREACH(child, &dev->child_bus, sibling) {
288 if (strcmp(child->name, elem) == 0) {
289 return child;
290 }
291 }
292 return NULL;
293}
294
295static DeviceState *qbus_find_dev(BusState *bus, char *elem)
296{
0866aca1 297 BusChild *kid;
ee46d8a5
AL
298
299 /*
300 * try to match in order:
301 * (1) instance id, if present
302 * (2) driver name
303 * (3) driver alias, if present
304 */
0866aca1
AL
305 QTAILQ_FOREACH(kid, &bus->children, sibling) {
306 DeviceState *dev = kid->child;
ee46d8a5
AL
307 if (dev->id && strcmp(dev->id, elem) == 0) {
308 return dev;
309 }
310 }
0866aca1
AL
311 QTAILQ_FOREACH(kid, &bus->children, sibling) {
312 DeviceState *dev = kid->child;
ee46d8a5
AL
313 if (strcmp(object_get_typename(OBJECT(dev)), elem) == 0) {
314 return dev;
315 }
316 }
0866aca1
AL
317 QTAILQ_FOREACH(kid, &bus->children, sibling) {
318 DeviceState *dev = kid->child;
ee46d8a5
AL
319 DeviceClass *dc = DEVICE_GET_CLASS(dev);
320
321 if (qdev_class_has_alias(dc) &&
322 strcmp(qdev_class_get_alias(dc), elem) == 0) {
323 return dev;
324 }
325 }
326 return NULL;
327}
328
329static BusState *qbus_find_recursive(BusState *bus, const char *name,
0d936928 330 const char *bus_typename)
ee46d8a5 331{
1395af6f 332 BusClass *bus_class = BUS_GET_CLASS(bus);
0866aca1 333 BusChild *kid;
ee46d8a5
AL
334 BusState *child, *ret;
335 int match = 1;
336
337 if (name && (strcmp(bus->name, name) != 0)) {
338 match = 0;
95e2af98 339 } else if (bus_typename && !object_dynamic_cast(OBJECT(bus), bus_typename)) {
ee46d8a5 340 match = 0;
95e2af98 341 } else if ((bus_class->max_dev != 0) && (bus_class->max_dev <= bus->max_index)) {
1395af6f
FK
342 if (name != NULL) {
343 /* bus was explicitly specified: return an error. */
344 qerror_report(ERROR_CLASS_GENERIC_ERROR, "Bus '%s' is full",
345 bus->name);
346 return NULL;
347 } else {
348 /* bus was not specified: try to find another one. */
349 match = 0;
350 }
351 }
ee46d8a5
AL
352 if (match) {
353 return bus;
354 }
355
0866aca1
AL
356 QTAILQ_FOREACH(kid, &bus->children, sibling) {
357 DeviceState *dev = kid->child;
ee46d8a5 358 QLIST_FOREACH(child, &dev->child_bus, sibling) {
0d936928 359 ret = qbus_find_recursive(child, name, bus_typename);
ee46d8a5
AL
360 if (ret) {
361 return ret;
362 }
363 }
364 }
365 return NULL;
366}
367
368static BusState *qbus_find(const char *path)
369{
370 DeviceState *dev;
371 BusState *bus;
372 char elem[128];
373 int pos, len;
374
375 /* find start element */
376 if (path[0] == '/') {
377 bus = sysbus_get_default();
378 pos = 0;
379 } else {
380 if (sscanf(path, "%127[^/]%n", elem, &len) != 1) {
381 assert(!path[0]);
382 elem[0] = len = 0;
383 }
384 bus = qbus_find_recursive(sysbus_get_default(), elem, NULL);
385 if (!bus) {
386 qerror_report(QERR_BUS_NOT_FOUND, elem);
387 return NULL;
388 }
389 pos = len;
390 }
391
392 for (;;) {
393 assert(path[pos] == '/' || !path[pos]);
394 while (path[pos] == '/') {
395 pos++;
396 }
397 if (path[pos] == '\0') {
398 return bus;
399 }
400
401 /* find device */
402 if (sscanf(path+pos, "%127[^/]%n", elem, &len) != 1) {
dfc6f865 403 g_assert_not_reached();
ee46d8a5
AL
404 elem[0] = len = 0;
405 }
406 pos += len;
407 dev = qbus_find_dev(bus, elem);
408 if (!dev) {
409 qerror_report(QERR_DEVICE_NOT_FOUND, elem);
410 if (!monitor_cur_is_qmp()) {
411 qbus_list_dev(bus);
412 }
413 return NULL;
414 }
415
416 assert(path[pos] == '/' || !path[pos]);
417 while (path[pos] == '/') {
418 pos++;
419 }
420 if (path[pos] == '\0') {
421 /* last specified element is a device. If it has exactly
422 * one child bus accept it nevertheless */
423 switch (dev->num_child_bus) {
424 case 0:
425 qerror_report(QERR_DEVICE_NO_BUS, elem);
426 return NULL;
427 case 1:
428 return QLIST_FIRST(&dev->child_bus);
429 default:
430 qerror_report(QERR_DEVICE_MULTIPLE_BUSSES, elem);
431 if (!monitor_cur_is_qmp()) {
432 qbus_list_bus(dev);
433 }
434 return NULL;
435 }
436 }
437
438 /* find bus */
439 if (sscanf(path+pos, "%127[^/]%n", elem, &len) != 1) {
dfc6f865 440 g_assert_not_reached();
ee46d8a5
AL
441 elem[0] = len = 0;
442 }
443 pos += len;
444 bus = qbus_find_bus(dev, elem);
445 if (!bus) {
446 qerror_report(QERR_BUS_NOT_FOUND, elem);
447 if (!monitor_cur_is_qmp()) {
448 qbus_list_bus(dev);
449 }
450 return NULL;
451 }
452 }
453}
454
455DeviceState *qdev_device_add(QemuOpts *opts)
456{
f4d85795
AF
457 ObjectClass *oc;
458 DeviceClass *dc;
ee46d8a5 459 const char *driver, *path, *id;
2bcb0c62 460 DeviceState *dev;
2f7bd829 461 BusState *bus = NULL;
852e2c50 462 Error *err = NULL;
ee46d8a5
AL
463
464 driver = qemu_opt_get(opts, "driver");
465 if (!driver) {
466 qerror_report(QERR_MISSING_PARAMETER, "driver");
467 return NULL;
468 }
469
470 /* find driver */
f4d85795
AF
471 oc = object_class_by_name(driver);
472 if (!oc) {
ee46d8a5
AL
473 const char *typename = find_typename_by_alias(driver);
474
475 if (typename) {
476 driver = typename;
f4d85795 477 oc = object_class_by_name(driver);
ee46d8a5
AL
478 }
479 }
480
061e84f7 481 if (!object_class_dynamic_cast(oc, TYPE_DEVICE)) {
11c308b1
MA
482 qerror_report(ERROR_CLASS_GENERIC_ERROR,
483 "'%s' is not a valid device model name", driver);
ee46d8a5
AL
484 return NULL;
485 }
486
2fa4e56d
IM
487 if (object_class_is_abstract(oc)) {
488 qerror_report(QERR_INVALID_PARAMETER_VALUE, "driver",
489 "non-abstract device type");
490 return NULL;
491 }
492
f4d85795 493 dc = DEVICE_CLASS(oc);
7ea5e78f
MA
494 if (dc->cannot_instantiate_with_device_add_yet) {
495 qerror_report(QERR_INVALID_PARAMETER_VALUE, "driver",
496 "pluggable device type");
497 return NULL;
498 }
ee46d8a5
AL
499
500 /* find bus */
501 path = qemu_opt_get(opts, "bus");
502 if (path != NULL) {
503 bus = qbus_find(path);
504 if (!bus) {
505 return NULL;
506 }
f4d85795 507 if (!object_dynamic_cast(OBJECT(bus), dc->bus_type)) {
ee46d8a5 508 qerror_report(QERR_BAD_BUS_FOR_DEVICE,
0d936928 509 driver, object_get_typename(OBJECT(bus)));
ee46d8a5
AL
510 return NULL;
511 }
f4d85795
AF
512 } else if (dc->bus_type != NULL) {
513 bus = qbus_find_recursive(sysbus_get_default(), NULL, dc->bus_type);
ee46d8a5
AL
514 if (!bus) {
515 qerror_report(QERR_NO_BUS_FOR_DEVICE,
f4d85795 516 dc->bus_type, driver);
ee46d8a5
AL
517 return NULL;
518 }
519 }
2f7bd829 520 if (qdev_hotplug && bus && !bus->allow_hotplug) {
ee46d8a5
AL
521 qerror_report(QERR_BUS_NO_HOTPLUG, bus->name);
522 return NULL;
523 }
524
ee46d8a5 525 /* create device, set properties */
2bcb0c62 526 dev = DEVICE(object_new(driver));
2f7bd829
AF
527
528 if (bus) {
2bcb0c62 529 qdev_set_parent_bus(dev, bus);
2f7bd829 530 }
ee46d8a5
AL
531
532 id = qemu_opts_id(opts);
533 if (id) {
2bcb0c62 534 dev->id = id;
b2d4b3f7 535 }
2bcb0c62
AF
536 if (qemu_opt_foreach(opts, set_property, dev, 1) != 0) {
537 object_unparent(OBJECT(dev));
538 object_unref(OBJECT(dev));
b2d4b3f7
AL
539 return NULL;
540 }
2bcb0c62
AF
541 if (dev->id) {
542 object_property_add_child(qdev_get_peripheral(), dev->id,
543 OBJECT(dev), NULL);
ee46d8a5
AL
544 } else {
545 static int anon_count;
546 gchar *name = g_strdup_printf("device[%d]", anon_count++);
57c9fafe 547 object_property_add_child(qdev_get_peripheral_anon(), name,
2bcb0c62 548 OBJECT(dev), NULL);
ee46d8a5 549 g_free(name);
2bcb0c62 550 }
852e2c50
AF
551 object_property_set_bool(OBJECT(dev), true, "realized", &err);
552 if (err != NULL) {
553 qerror_report_err(err);
554 error_free(err);
555 object_unparent(OBJECT(dev));
2bcb0c62 556 object_unref(OBJECT(dev));
f424d5c4
PB
557 qerror_report(QERR_DEVICE_INIT_FAILED, driver);
558 return NULL;
559 }
2bcb0c62
AF
560 dev->opts = opts;
561 return dev;
ee46d8a5
AL
562}
563
564
565#define qdev_printf(fmt, ...) monitor_printf(mon, "%*s" fmt, indent, "", ## __VA_ARGS__)
566static void qbus_print(Monitor *mon, BusState *bus, int indent);
567
568static void qdev_print_props(Monitor *mon, DeviceState *dev, Property *props,
bce54474 569 int indent)
ee46d8a5 570{
ee46d8a5
AL
571 if (!props)
572 return;
d822979b
PB
573 for (; props->name; props++) {
574 Error *err = NULL;
575 char *value;
576 char *legacy_name = g_strdup_printf("legacy-%s", props->name);
577 if (object_property_get_type(OBJECT(dev), legacy_name, NULL)) {
578 value = object_property_get_str(OBJECT(dev), legacy_name, &err);
579 } else {
dae3bda4 580 value = object_property_print(OBJECT(dev), props->name, true, &err);
d822979b
PB
581 }
582 g_free(legacy_name);
583
584 if (err) {
585 error_free(err);
586 continue;
ee46d8a5 587 }
bce54474 588 qdev_printf("%s = %s\n", props->name,
d822979b
PB
589 value && *value ? value : "<null>");
590 g_free(value);
ee46d8a5
AL
591 }
592}
593
0d936928
AL
594static void bus_print_dev(BusState *bus, Monitor *mon, DeviceState *dev, int indent)
595{
596 BusClass *bc = BUS_GET_CLASS(bus);
597
598 if (bc->print_dev) {
599 bc->print_dev(mon, dev, indent);
600 }
601}
602
ee46d8a5
AL
603static void qdev_print(Monitor *mon, DeviceState *dev, int indent)
604{
bce54474 605 ObjectClass *class;
ee46d8a5
AL
606 BusState *child;
607 qdev_printf("dev: %s, id \"%s\"\n", object_get_typename(OBJECT(dev)),
608 dev->id ? dev->id : "");
609 indent += 2;
610 if (dev->num_gpio_in) {
611 qdev_printf("gpio-in %d\n", dev->num_gpio_in);
612 }
613 if (dev->num_gpio_out) {
614 qdev_printf("gpio-out %d\n", dev->num_gpio_out);
615 }
bce54474
PB
616 class = object_get_class(OBJECT(dev));
617 do {
618 qdev_print_props(mon, dev, DEVICE_CLASS(class)->props, indent);
619 class = object_class_get_parent(class);
620 } while (class != object_class_by_name(TYPE_DEVICE));
da9fbe76 621 bus_print_dev(dev->parent_bus, mon, dev, indent);
ee46d8a5
AL
622 QLIST_FOREACH(child, &dev->child_bus, sibling) {
623 qbus_print(mon, child, indent);
624 }
625}
626
627static void qbus_print(Monitor *mon, BusState *bus, int indent)
628{
0866aca1 629 BusChild *kid;
ee46d8a5
AL
630
631 qdev_printf("bus: %s\n", bus->name);
632 indent += 2;
0d936928 633 qdev_printf("type %s\n", object_get_typename(OBJECT(bus)));
0866aca1
AL
634 QTAILQ_FOREACH(kid, &bus->children, sibling) {
635 DeviceState *dev = kid->child;
ee46d8a5
AL
636 qdev_print(mon, dev, indent);
637 }
638}
639#undef qdev_printf
640
84f2d0ea 641void do_info_qtree(Monitor *mon, const QDict *qdict)
ee46d8a5
AL
642{
643 if (sysbus_get_default())
644 qbus_print(mon, sysbus_get_default(), 0);
645}
646
84f2d0ea 647void do_info_qdm(Monitor *mon, const QDict *qdict)
ee46d8a5 648{
a3400aee 649 qdev_print_devinfos(true);
ee46d8a5
AL
650}
651
652int do_device_add(Monitor *mon, const QDict *qdict, QObject **ret_data)
653{
4e89978e 654 Error *local_err = NULL;
ee46d8a5 655 QemuOpts *opts;
b09995ae 656 DeviceState *dev;
ee46d8a5 657
4e89978e 658 opts = qemu_opts_from_qdict(qemu_find_opts("device"), qdict, &local_err);
84d18f06 659 if (local_err) {
4e89978e
LC
660 qerror_report_err(local_err);
661 error_free(local_err);
ee46d8a5
AL
662 return -1;
663 }
664 if (!monitor_cur_is_qmp() && qdev_device_help(opts)) {
665 qemu_opts_del(opts);
666 return 0;
667 }
b09995ae
PB
668 dev = qdev_device_add(opts);
669 if (!dev) {
ee46d8a5
AL
670 qemu_opts_del(opts);
671 return -1;
672 }
b09995ae 673 object_unref(OBJECT(dev));
ee46d8a5
AL
674 return 0;
675}
676
a15fef21 677void qmp_device_del(const char *id, Error **errp)
ee46d8a5 678{
ee46d8a5
AL
679 DeviceState *dev;
680
681 dev = qdev_find_recursive(sysbus_get_default(), id);
682 if (NULL == dev) {
a15fef21
LC
683 error_set(errp, QERR_DEVICE_NOT_FOUND, id);
684 return;
56f9107e
LC
685 }
686
a15fef21 687 qdev_unplug(dev, errp);
ee46d8a5
AL
688}
689
690void qdev_machine_init(void)
691{
692 qdev_get_peripheral_anon();
693 qdev_get_peripheral();
694}
4d454574
PB
695
696QemuOptsList qemu_device_opts = {
697 .name = "device",
698 .implied_opt_name = "driver",
699 .head = QTAILQ_HEAD_INITIALIZER(qemu_device_opts.head),
700 .desc = {
701 /*
702 * no elements => accept any
703 * sanity checking will happen later
704 * when setting device properties
705 */
706 { /* end of list */ }
707 },
708};
709
710QemuOptsList qemu_global_opts = {
711 .name = "global",
712 .head = QTAILQ_HEAD_INITIALIZER(qemu_global_opts.head),
713 .desc = {
714 {
715 .name = "driver",
716 .type = QEMU_OPT_STRING,
717 },{
718 .name = "property",
719 .type = QEMU_OPT_STRING,
720 },{
721 .name = "value",
722 .type = QEMU_OPT_STRING,
723 },
724 { /* end of list */ }
725 },
726};
727
728int qemu_global_option(const char *str)
729{
730 char driver[64], property[64];
731 QemuOpts *opts;
732 int rc, offset;
733
734 rc = sscanf(str, "%63[^.].%63[^=]%n", driver, property, &offset);
735 if (rc < 2 || str[offset] != '=') {
736 error_report("can't parse: \"%s\"", str);
737 return -1;
738 }
739
87ea75d5 740 opts = qemu_opts_create(&qemu_global_opts, NULL, 0, &error_abort);
4d454574
PB
741 qemu_opt_set(opts, "driver", driver);
742 qemu_opt_set(opts, "property", property);
743 qemu_opt_set(opts, "value", str+offset+1);
744 return 0;
745}