blob: 66f6d0e26a003c6c3e80cc3b30c5a79197d3f5e9 [file] [log] [blame]
Anthony Liguoriee46d8a2011-12-22 15:24:20 -06001/*
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
Paolo Bonzinib4a42f82013-02-04 11:37:52 +010020#include "hw/qdev.h"
Andreas Färber2f7bd822013-04-16 03:50:21 +020021#include "hw/sysbus.h"
Paolo Bonzini83c90892012-12-17 18:19:49 +010022#include "monitor/monitor.h"
Paolo Bonzinib4a42f82013-02-04 11:37:52 +010023#include "monitor/qdev.h"
Luiz Capitulinoa15fef22012-03-29 12:38:50 -030024#include "qmp-commands.h"
Paolo Bonzini9c17d612012-12-17 18:20:04 +010025#include "sysemu/arch_init.h"
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010026#include "qemu/config-file.h"
Markus Armbrusterd49b6832015-03-17 18:29:20 +010027#include "qemu/error-report.h"
Anthony Liguoriee46d8a2011-12-22 15:24:20 -060028
29/*
30 * Aliases were a bad idea from the start. Let's keep them
31 * from spreading further.
32 */
33typedef struct QDevAlias
34{
35 const char *typename;
36 const char *alias;
Alexander Graf5f629d92012-05-18 02:36:26 +020037 uint32_t arch_mask;
Anthony Liguoriee46d8a2011-12-22 15:24:20 -060038} QDevAlias;
39
40static const QDevAlias qdev_alias_table[] = {
Alexander Graf5f629d92012-05-18 02:36:26 +020041 { "virtio-blk-pci", "virtio-blk", QEMU_ARCH_ALL & ~QEMU_ARCH_S390X },
42 { "virtio-net-pci", "virtio-net", QEMU_ARCH_ALL & ~QEMU_ARCH_S390X },
43 { "virtio-serial-pci", "virtio-serial", QEMU_ARCH_ALL & ~QEMU_ARCH_S390X },
44 { "virtio-balloon-pci", "virtio-balloon",
45 QEMU_ARCH_ALL & ~QEMU_ARCH_S390X },
Alexander Graf1f68f1d2015-06-16 23:06:33 +020046 { "virtio-blk-ccw", "virtio-blk", QEMU_ARCH_S390X },
47 { "virtio-net-ccw", "virtio-net", QEMU_ARCH_S390X },
48 { "virtio-serial-ccw", "virtio-serial", QEMU_ARCH_S390X },
Anthony Liguoriee46d8a2011-12-22 15:24:20 -060049 { "lsi53c895a", "lsi" },
50 { "ich9-ahci", "ahci" },
Jan Kiszkac3ebd3b2012-08-30 20:30:00 +020051 { "kvm-pci-assign", "pci-assign" },
Anthony Liguoriee46d8a2011-12-22 15:24:20 -060052 { }
53};
54
55static const char *qdev_class_get_alias(DeviceClass *dc)
56{
57 const char *typename = object_class_get_name(OBJECT_CLASS(dc));
58 int i;
59
60 for (i = 0; qdev_alias_table[i].typename; i++) {
Alexander Graf5f629d92012-05-18 02:36:26 +020061 if (qdev_alias_table[i].arch_mask &&
62 !(qdev_alias_table[i].arch_mask & arch_type)) {
63 continue;
64 }
65
Anthony Liguoriee46d8a2011-12-22 15:24:20 -060066 if (strcmp(qdev_alias_table[i].typename, typename) == 0) {
67 return qdev_alias_table[i].alias;
68 }
69 }
70
71 return NULL;
72}
73
74static bool qdev_class_has_alias(DeviceClass *dc)
75{
76 return (qdev_class_get_alias(dc) != NULL);
77}
78
Markus Armbrustera3400ae2013-10-10 15:00:21 +020079static void qdev_print_devinfo(DeviceClass *dc)
Anthony Liguoriee46d8a2011-12-22 15:24:20 -060080{
Markus Armbrustera3400ae2013-10-10 15:00:21 +020081 error_printf("name \"%s\"", object_class_get_name(OBJECT_CLASS(dc)));
Anthony Liguori0d936922012-05-02 09:00:20 +020082 if (dc->bus_type) {
83 error_printf(", bus %s", dc->bus_type);
Anthony Liguoriee46d8a2011-12-22 15:24:20 -060084 }
85 if (qdev_class_has_alias(dc)) {
86 error_printf(", alias \"%s\"", qdev_class_get_alias(dc));
87 }
88 if (dc->desc) {
89 error_printf(", desc \"%s\"", dc->desc);
90 }
Markus Armbrusterefec3dd2013-11-28 17:26:54 +010091 if (dc->cannot_instantiate_with_device_add_yet) {
Anthony Liguoriee46d8a2011-12-22 15:24:20 -060092 error_printf(", no-user");
93 }
94 error_printf("\n");
95}
96
Markus Armbrustera3400ae2013-10-10 15:00:21 +020097static gint devinfo_cmp(gconstpointer a, gconstpointer b)
98{
99 return strcasecmp(object_class_get_name((ObjectClass *)a),
100 object_class_get_name((ObjectClass *)b));
101}
102
103static void qdev_print_devinfos(bool show_no_user)
104{
105 static const char *cat_name[DEVICE_CATEGORY_MAX + 1] = {
106 [DEVICE_CATEGORY_BRIDGE] = "Controller/Bridge/Hub",
107 [DEVICE_CATEGORY_USB] = "USB",
108 [DEVICE_CATEGORY_STORAGE] = "Storage",
109 [DEVICE_CATEGORY_NETWORK] = "Network",
110 [DEVICE_CATEGORY_INPUT] = "Input",
111 [DEVICE_CATEGORY_DISPLAY] = "Display",
112 [DEVICE_CATEGORY_SOUND] = "Sound",
113 [DEVICE_CATEGORY_MISC] = "Misc",
114 [DEVICE_CATEGORY_MAX] = "Uncategorized",
115 };
116 GSList *list, *elt;
117 int i;
118 bool cat_printed;
119
120 list = g_slist_sort(object_class_get_list(TYPE_DEVICE, false),
121 devinfo_cmp);
122
123 for (i = 0; i <= DEVICE_CATEGORY_MAX; i++) {
124 cat_printed = false;
125 for (elt = list; elt; elt = elt->next) {
126 DeviceClass *dc = OBJECT_CLASS_CHECK(DeviceClass, elt->data,
127 TYPE_DEVICE);
128 if ((i < DEVICE_CATEGORY_MAX
129 ? !test_bit(i, dc->categories)
130 : !bitmap_empty(dc->categories, DEVICE_CATEGORY_MAX))
Markus Armbrusterefec3dd2013-11-28 17:26:54 +0100131 || (!show_no_user
132 && dc->cannot_instantiate_with_device_add_yet)) {
Markus Armbrustera3400ae2013-10-10 15:00:21 +0200133 continue;
134 }
135 if (!cat_printed) {
136 error_printf("%s%s devices:\n", i ? "\n" : "",
137 cat_name[i]);
138 cat_printed = true;
139 }
140 qdev_print_devinfo(dc);
141 }
142 }
143
144 g_slist_free(list);
145}
146
Markus Armbruster71df1d82015-03-12 08:40:25 +0100147static int set_property(void *opaque, const char *name, const char *value,
148 Error **errp)
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600149{
Paolo Bonzini98a65282014-02-08 11:01:49 +0100150 Object *obj = opaque;
Andreas Färberb1fe9bc2013-05-01 16:10:24 +0200151 Error *err = NULL;
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600152
153 if (strcmp(name, "driver") == 0)
154 return 0;
155 if (strcmp(name, "bus") == 0)
156 return 0;
157
Paolo Bonzini98a65282014-02-08 11:01:49 +0100158 object_property_parse(obj, value, name, &err);
Andreas Färberb1fe9bc2013-05-01 16:10:24 +0200159 if (err != NULL) {
Markus Armbruster4caa4892015-03-12 13:58:02 +0100160 error_propagate(errp, err);
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600161 return -1;
162 }
163 return 0;
164}
165
166static const char *find_typename_by_alias(const char *alias)
167{
168 int i;
169
170 for (i = 0; qdev_alias_table[i].alias; i++) {
Alexander Graf5f629d92012-05-18 02:36:26 +0200171 if (qdev_alias_table[i].arch_mask &&
172 !(qdev_alias_table[i].arch_mask & arch_type)) {
173 continue;
174 }
175
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600176 if (strcmp(qdev_alias_table[i].alias, alias) == 0) {
177 return qdev_alias_table[i].typename;
178 }
179 }
180
181 return NULL;
182}
183
Eduardo Habkost43c95d72014-11-01 13:56:09 -0200184static DeviceClass *qdev_get_device_class(const char **driver, Error **errp)
185{
186 ObjectClass *oc;
187 DeviceClass *dc;
188
189 oc = object_class_by_name(*driver);
190 if (!oc) {
191 const char *typename = find_typename_by_alias(*driver);
192
193 if (typename) {
194 *driver = typename;
195 oc = object_class_by_name(*driver);
196 }
197 }
198
199 if (!object_class_dynamic_cast(oc, TYPE_DEVICE)) {
200 error_setg(errp, "'%s' is not a valid device model name", *driver);
201 return NULL;
202 }
203
204 if (object_class_is_abstract(oc)) {
Markus Armbrusterc6bd8c72015-03-17 11:54:50 +0100205 error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "driver",
206 "non-abstract device type");
Eduardo Habkost43c95d72014-11-01 13:56:09 -0200207 return NULL;
208 }
209
210 dc = DEVICE_CLASS(oc);
211 if (dc->cannot_instantiate_with_device_add_yet ||
212 (qdev_hotplug && !dc->hotpluggable)) {
Markus Armbrusterc6bd8c72015-03-17 11:54:50 +0100213 error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "driver",
214 "pluggable device type");
Eduardo Habkost43c95d72014-11-01 13:56:09 -0200215 return NULL;
216 }
217
218 return dc;
219}
220
221
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600222int qdev_device_help(QemuOpts *opts)
223{
Stefan Hajnoczief523582014-07-09 14:01:32 +0200224 Error *local_err = NULL;
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600225 const char *driver;
Stefan Hajnoczief523582014-07-09 14:01:32 +0200226 DevicePropertyInfoList *prop_list;
227 DevicePropertyInfoList *prop;
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600228
229 driver = qemu_opt_get(opts, "driver");
Peter Maydellc8057f92012-08-02 13:45:54 +0100230 if (driver && is_help_option(driver)) {
Markus Armbrustera3400ae2013-10-10 15:00:21 +0200231 qdev_print_devinfos(false);
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600232 return 1;
233 }
234
Peter Maydellc8057f92012-08-02 13:45:54 +0100235 if (!driver || !qemu_opt_has_help_opt(opts)) {
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600236 return 0;
237 }
238
Eduardo Habkost31bed552014-11-01 13:56:11 -0200239 qdev_get_device_class(&driver, &local_err);
240 if (local_err) {
241 goto error;
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600242 }
243
Stefan Hajnoczief523582014-07-09 14:01:32 +0200244 prop_list = qmp_device_list_properties(driver, &local_err);
Gonglei0722eba2014-09-16 10:19:33 +0800245 if (local_err) {
Eduardo Habkost5185f0e2014-11-01 13:56:10 -0200246 goto error;
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600247 }
Stefan Hajnoczief523582014-07-09 14:01:32 +0200248
249 for (prop = prop_list; prop; prop = prop->next) {
Gonglei07d09c52014-10-07 14:33:23 +0800250 error_printf("%s.%s=%s", driver,
Stefan Hajnoczief523582014-07-09 14:01:32 +0200251 prop->value->name,
252 prop->value->type);
Gonglei07d09c52014-10-07 14:33:23 +0800253 if (prop->value->has_description) {
254 error_printf(" (%s)\n", prop->value->description);
255 } else {
256 error_printf("\n");
257 }
Stefan Hajnoczief523582014-07-09 14:01:32 +0200258 }
259
260 qapi_free_DevicePropertyInfoList(prop_list);
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600261 return 1;
Eduardo Habkost5185f0e2014-11-01 13:56:10 -0200262
263error:
264 error_printf("%s\n", error_get_pretty(local_err));
265 error_free(local_err);
266 return 1;
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600267}
268
Anthony Liguori57c9faf2012-01-30 08:55:55 -0600269static Object *qdev_get_peripheral(void)
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600270{
Anthony Liguori8b45d442011-12-23 09:08:05 -0600271 static Object *dev;
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600272
273 if (dev == NULL) {
Andreas Färberdfe47e72012-04-05 13:21:46 +0200274 dev = container_get(qdev_get_machine(), "/peripheral");
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600275 }
276
Anthony Liguori8b45d442011-12-23 09:08:05 -0600277 return dev;
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600278}
279
Anthony Liguori57c9faf2012-01-30 08:55:55 -0600280static Object *qdev_get_peripheral_anon(void)
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600281{
Anthony Liguori8b45d442011-12-23 09:08:05 -0600282 static Object *dev;
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600283
284 if (dev == NULL) {
Andreas Färberdfe47e72012-04-05 13:21:46 +0200285 dev = container_get(qdev_get_machine(), "/peripheral-anon");
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600286 }
287
Anthony Liguori8b45d442011-12-23 09:08:05 -0600288 return dev;
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600289}
290
Markus Armbrusterd2828422015-03-11 19:16:04 +0100291#if 0 /* conversion from qerror_report() to error_set() broke their use */
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600292static void qbus_list_bus(DeviceState *dev)
293{
294 BusState *child;
295 const char *sep = " ";
296
Markus Armbrusterd2828422015-03-11 19:16:04 +0100297 error_printf("child buses at \"%s\":",
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600298 dev->id ? dev->id : object_get_typename(OBJECT(dev)));
299 QLIST_FOREACH(child, &dev->child_bus, sibling) {
300 error_printf("%s\"%s\"", sep, child->name);
301 sep = ", ";
302 }
303 error_printf("\n");
304}
305
306static void qbus_list_dev(BusState *bus)
307{
Anthony Liguori0866aca2011-12-23 15:34:39 -0600308 BusChild *kid;
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600309 const char *sep = " ";
310
311 error_printf("devices at \"%s\":", bus->name);
Anthony Liguori0866aca2011-12-23 15:34:39 -0600312 QTAILQ_FOREACH(kid, &bus->children, sibling) {
313 DeviceState *dev = kid->child;
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600314 error_printf("%s\"%s\"", sep, object_get_typename(OBJECT(dev)));
315 if (dev->id)
316 error_printf("/\"%s\"", dev->id);
317 sep = ", ";
318 }
319 error_printf("\n");
320}
Markus Armbrusterd2828422015-03-11 19:16:04 +0100321#endif
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600322
323static BusState *qbus_find_bus(DeviceState *dev, char *elem)
324{
325 BusState *child;
326
327 QLIST_FOREACH(child, &dev->child_bus, sibling) {
328 if (strcmp(child->name, elem) == 0) {
329 return child;
330 }
331 }
332 return NULL;
333}
334
335static DeviceState *qbus_find_dev(BusState *bus, char *elem)
336{
Anthony Liguori0866aca2011-12-23 15:34:39 -0600337 BusChild *kid;
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600338
339 /*
340 * try to match in order:
341 * (1) instance id, if present
342 * (2) driver name
343 * (3) driver alias, if present
344 */
Anthony Liguori0866aca2011-12-23 15:34:39 -0600345 QTAILQ_FOREACH(kid, &bus->children, sibling) {
346 DeviceState *dev = kid->child;
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600347 if (dev->id && strcmp(dev->id, elem) == 0) {
348 return dev;
349 }
350 }
Anthony Liguori0866aca2011-12-23 15:34:39 -0600351 QTAILQ_FOREACH(kid, &bus->children, sibling) {
352 DeviceState *dev = kid->child;
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600353 if (strcmp(object_get_typename(OBJECT(dev)), elem) == 0) {
354 return dev;
355 }
356 }
Anthony Liguori0866aca2011-12-23 15:34:39 -0600357 QTAILQ_FOREACH(kid, &bus->children, sibling) {
358 DeviceState *dev = kid->child;
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600359 DeviceClass *dc = DEVICE_GET_CLASS(dev);
360
361 if (qdev_class_has_alias(dc) &&
362 strcmp(qdev_class_get_alias(dc), elem) == 0) {
363 return dev;
364 }
365 }
366 return NULL;
367}
368
Markus Armbrustera5ec4942015-03-11 17:26:31 +0100369static inline bool qbus_is_full(BusState *bus)
370{
371 BusClass *bus_class = BUS_GET_CLASS(bus);
372 return bus_class->max_dev && bus->max_index >= bus_class->max_dev;
373}
374
375/*
376 * Search the tree rooted at @bus for a bus.
377 * If @name, search for a bus with that name. Note that bus names
378 * need not be unique. Yes, that's screwed up.
379 * Else search for a bus that is a subtype of @bus_typename.
380 * If more than one exists, prefer one that can take another device.
381 * Return the bus if found, else %NULL.
382 */
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600383static BusState *qbus_find_recursive(BusState *bus, const char *name,
Anthony Liguori0d936922012-05-02 09:00:20 +0200384 const char *bus_typename)
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600385{
Anthony Liguori0866aca2011-12-23 15:34:39 -0600386 BusChild *kid;
Markus Armbrustera5ec4942015-03-11 17:26:31 +0100387 BusState *pick, *child, *ret;
388 bool match;
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600389
Markus Armbrustera5ec4942015-03-11 17:26:31 +0100390 assert(name || bus_typename);
391 if (name) {
392 match = !strcmp(bus->name, name);
393 } else {
394 match = !!object_dynamic_cast(OBJECT(bus), bus_typename);
KONRAD Frederic1395af62013-01-15 00:08:00 +0100395 }
Markus Armbrustera5ec4942015-03-11 17:26:31 +0100396
397 if (match && !qbus_is_full(bus)) {
398 return bus; /* root matches and isn't full */
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600399 }
400
Markus Armbrustera5ec4942015-03-11 17:26:31 +0100401 pick = match ? bus : NULL;
402
Anthony Liguori0866aca2011-12-23 15:34:39 -0600403 QTAILQ_FOREACH(kid, &bus->children, sibling) {
404 DeviceState *dev = kid->child;
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600405 QLIST_FOREACH(child, &dev->child_bus, sibling) {
Anthony Liguori0d936922012-05-02 09:00:20 +0200406 ret = qbus_find_recursive(child, name, bus_typename);
Markus Armbrustera5ec4942015-03-11 17:26:31 +0100407 if (ret && !qbus_is_full(ret)) {
408 return ret; /* a descendant matches and isn't full */
409 }
410 if (ret && !pick) {
411 pick = ret;
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600412 }
413 }
414 }
Markus Armbrustera5ec4942015-03-11 17:26:31 +0100415
416 /* root or a descendant matches, but is full */
417 return pick;
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600418}
419
Markus Armbrusterd2828422015-03-11 19:16:04 +0100420static BusState *qbus_find(const char *path, Error **errp)
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600421{
422 DeviceState *dev;
423 BusState *bus;
424 char elem[128];
425 int pos, len;
426
427 /* find start element */
428 if (path[0] == '/') {
429 bus = sysbus_get_default();
430 pos = 0;
431 } else {
432 if (sscanf(path, "%127[^/]%n", elem, &len) != 1) {
433 assert(!path[0]);
434 elem[0] = len = 0;
435 }
436 bus = qbus_find_recursive(sysbus_get_default(), elem, NULL);
437 if (!bus) {
Markus Armbrusterd2828422015-03-11 19:16:04 +0100438 error_setg(errp, "Bus '%s' not found", elem);
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600439 return NULL;
440 }
441 pos = len;
442 }
443
444 for (;;) {
445 assert(path[pos] == '/' || !path[pos]);
446 while (path[pos] == '/') {
447 pos++;
448 }
449 if (path[pos] == '\0') {
Markus Armbrustered238ba2015-03-11 18:39:16 +0100450 break;
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600451 }
452
453 /* find device */
454 if (sscanf(path+pos, "%127[^/]%n", elem, &len) != 1) {
Stefan Weildfc6f862013-07-25 18:21:28 +0200455 g_assert_not_reached();
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600456 elem[0] = len = 0;
457 }
458 pos += len;
459 dev = qbus_find_dev(bus, elem);
460 if (!dev) {
Markus Armbruster75158eb2015-03-16 08:57:47 +0100461 error_set(errp, ERROR_CLASS_DEVICE_NOT_FOUND,
462 "Device '%s' not found", elem);
Markus Armbrusterd2828422015-03-11 19:16:04 +0100463#if 0 /* conversion from qerror_report() to error_set() broke this: */
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600464 if (!monitor_cur_is_qmp()) {
465 qbus_list_dev(bus);
466 }
Markus Armbrusterd2828422015-03-11 19:16:04 +0100467#endif
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600468 return NULL;
469 }
470
471 assert(path[pos] == '/' || !path[pos]);
472 while (path[pos] == '/') {
473 pos++;
474 }
475 if (path[pos] == '\0') {
476 /* last specified element is a device. If it has exactly
477 * one child bus accept it nevertheless */
Markus Armbrustered238ba2015-03-11 18:39:16 +0100478 if (dev->num_child_bus == 1) {
479 bus = QLIST_FIRST(&dev->child_bus);
480 break;
481 }
482 if (dev->num_child_bus) {
Markus Armbrusterd2828422015-03-11 19:16:04 +0100483 error_setg(errp, "Device '%s' has multiple child buses",
484 elem);
485#if 0 /* conversion from qerror_report() to error_set() broke this: */
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600486 if (!monitor_cur_is_qmp()) {
487 qbus_list_bus(dev);
488 }
Markus Armbrusterd2828422015-03-11 19:16:04 +0100489#endif
Markus Armbrustered238ba2015-03-11 18:39:16 +0100490 } else {
Markus Armbrusterd2828422015-03-11 19:16:04 +0100491 error_setg(errp, "Device '%s' has no child bus", elem);
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600492 }
Markus Armbrustered238ba2015-03-11 18:39:16 +0100493 return NULL;
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600494 }
495
496 /* find bus */
497 if (sscanf(path+pos, "%127[^/]%n", elem, &len) != 1) {
Stefan Weildfc6f862013-07-25 18:21:28 +0200498 g_assert_not_reached();
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600499 elem[0] = len = 0;
500 }
501 pos += len;
502 bus = qbus_find_bus(dev, elem);
503 if (!bus) {
Markus Armbrusterd2828422015-03-11 19:16:04 +0100504 error_setg(errp, "Bus '%s' not found", elem);
505#if 0 /* conversion from qerror_report() to error_set() broke this: */
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600506 if (!monitor_cur_is_qmp()) {
507 qbus_list_bus(dev);
508 }
Markus Armbrusterd2828422015-03-11 19:16:04 +0100509#endif
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600510 return NULL;
511 }
512 }
Markus Armbrustered238ba2015-03-11 18:39:16 +0100513
514 if (qbus_is_full(bus)) {
Markus Armbrusterd2828422015-03-11 19:16:04 +0100515 error_setg(errp, "Bus '%s' is full", path);
Markus Armbrustered238ba2015-03-11 18:39:16 +0100516 return NULL;
517 }
518 return bus;
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600519}
520
Markus Armbrusterf006cf72015-03-12 14:00:41 +0100521DeviceState *qdev_device_add(QemuOpts *opts, Error **errp)
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600522{
Andreas Färberf4d85792013-08-24 01:21:22 +0200523 DeviceClass *dc;
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600524 const char *driver, *path, *id;
Andreas Färber2bcb0c62013-10-07 16:17:54 +0200525 DeviceState *dev;
Andreas Färber2f7bd822013-04-16 03:50:21 +0200526 BusState *bus = NULL;
Andreas Färber852e2c52013-10-07 16:42:34 +0200527 Error *err = NULL;
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600528
529 driver = qemu_opt_get(opts, "driver");
530 if (!driver) {
Markus Armbrusterc6bd8c72015-03-17 11:54:50 +0100531 error_setg(errp, QERR_MISSING_PARAMETER, "driver");
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600532 return NULL;
533 }
534
535 /* find driver */
Markus Armbrusterf006cf72015-03-12 14:00:41 +0100536 dc = qdev_get_device_class(&driver, errp);
537 if (!dc) {
Markus Armbruster7ea5e782013-11-28 17:27:03 +0100538 return NULL;
539 }
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600540
541 /* find bus */
542 path = qemu_opt_get(opts, "bus");
543 if (path != NULL) {
Markus Armbrusterf006cf72015-03-12 14:00:41 +0100544 bus = qbus_find(path, errp);
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600545 if (!bus) {
546 return NULL;
547 }
Andreas Färberf4d85792013-08-24 01:21:22 +0200548 if (!object_dynamic_cast(OBJECT(bus), dc->bus_type)) {
Markus Armbrusterf006cf72015-03-12 14:00:41 +0100549 error_setg(errp, "Device '%s' can't go on %s bus",
550 driver, object_get_typename(OBJECT(bus)));
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600551 return NULL;
552 }
Andreas Färberf4d85792013-08-24 01:21:22 +0200553 } else if (dc->bus_type != NULL) {
554 bus = qbus_find_recursive(sysbus_get_default(), NULL, dc->bus_type);
Markus Armbrustera5ec4942015-03-11 17:26:31 +0100555 if (!bus || qbus_is_full(bus)) {
Markus Armbrusterf006cf72015-03-12 14:00:41 +0100556 error_setg(errp, "No '%s' bus found for device '%s'",
557 dc->bus_type, driver);
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600558 return NULL;
559 }
560 }
Igor Mammedov39b888b2014-09-26 09:28:17 +0000561 if (qdev_hotplug && bus && !qbus_is_hotpluggable(bus)) {
Markus Armbrusterc6bd8c72015-03-17 11:54:50 +0100562 error_setg(errp, QERR_BUS_NO_HOTPLUG, bus->name);
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600563 return NULL;
564 }
565
Amos Kong7b030942014-03-03 15:57:55 +0800566 /* create device */
Andreas Färber2bcb0c62013-10-07 16:17:54 +0200567 dev = DEVICE(object_new(driver));
Andreas Färber2f7bd822013-04-16 03:50:21 +0200568
569 if (bus) {
Andreas Färber2bcb0c62013-10-07 16:17:54 +0200570 qdev_set_parent_bus(dev, bus);
Andreas Färber2f7bd822013-04-16 03:50:21 +0200571 }
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600572
573 id = qemu_opts_id(opts);
574 if (id) {
Andreas Färber2bcb0c62013-10-07 16:17:54 +0200575 dev->id = id;
Anthony Liguorib2d4b3f2012-02-12 11:36:24 -0600576 }
Amos Kong7b030942014-03-03 15:57:55 +0800577
Andreas Färber2bcb0c62013-10-07 16:17:54 +0200578 if (dev->id) {
579 object_property_add_child(qdev_get_peripheral(), dev->id,
580 OBJECT(dev), NULL);
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600581 } else {
582 static int anon_count;
583 gchar *name = g_strdup_printf("device[%d]", anon_count++);
Anthony Liguori57c9faf2012-01-30 08:55:55 -0600584 object_property_add_child(qdev_get_peripheral_anon(), name,
Andreas Färber2bcb0c62013-10-07 16:17:54 +0200585 OBJECT(dev), NULL);
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600586 g_free(name);
Andreas Färber2bcb0c62013-10-07 16:17:54 +0200587 }
Bandan Das52aa17c2014-02-26 10:32:40 -0700588
Amos Kong7b030942014-03-03 15:57:55 +0800589 /* set properties */
Markus Armbruster4caa4892015-03-12 13:58:02 +0100590 if (qemu_opt_foreach(opts, set_property, dev, &err)) {
Markus Armbrusterf006cf72015-03-12 14:00:41 +0100591 error_propagate(errp, err);
Amos Kong7b030942014-03-03 15:57:55 +0800592 object_unparent(OBJECT(dev));
593 object_unref(OBJECT(dev));
594 return NULL;
595 }
596
Bandan Das52aa17c2014-02-26 10:32:40 -0700597 dev->opts = opts;
Andreas Färber852e2c52013-10-07 16:42:34 +0200598 object_property_set_bool(OBJECT(dev), true, "realized", &err);
599 if (err != NULL) {
Markus Armbrusterf006cf72015-03-12 14:00:41 +0100600 error_propagate(errp, err);
Bandan Das52aa17c2014-02-26 10:32:40 -0700601 dev->opts = NULL;
Andreas Färber852e2c52013-10-07 16:42:34 +0200602 object_unparent(OBJECT(dev));
Andreas Färber2bcb0c62013-10-07 16:17:54 +0200603 object_unref(OBJECT(dev));
Paolo Bonzinif424d5c2012-03-27 18:38:46 +0200604 return NULL;
605 }
Andreas Färber2bcb0c62013-10-07 16:17:54 +0200606 return dev;
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600607}
608
609
610#define qdev_printf(fmt, ...) monitor_printf(mon, "%*s" fmt, indent, "", ## __VA_ARGS__)
611static void qbus_print(Monitor *mon, BusState *bus, int indent);
612
613static void qdev_print_props(Monitor *mon, DeviceState *dev, Property *props,
Paolo Bonzinibce54472012-03-28 18:12:47 +0200614 int indent)
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600615{
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600616 if (!props)
617 return;
Paolo Bonzinid8229792012-02-02 09:47:13 +0100618 for (; props->name; props++) {
619 Error *err = NULL;
620 char *value;
621 char *legacy_name = g_strdup_printf("legacy-%s", props->name);
622 if (object_property_get_type(OBJECT(dev), legacy_name, NULL)) {
623 value = object_property_get_str(OBJECT(dev), legacy_name, &err);
624 } else {
Paolo Bonzinidae3bda2014-02-08 11:01:51 +0100625 value = object_property_print(OBJECT(dev), props->name, true, &err);
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600626 }
Paolo Bonzinid8229792012-02-02 09:47:13 +0100627 g_free(legacy_name);
628
629 if (err) {
630 error_free(err);
631 continue;
632 }
Paolo Bonzinibce54472012-03-28 18:12:47 +0200633 qdev_printf("%s = %s\n", props->name,
Paolo Bonzinid8229792012-02-02 09:47:13 +0100634 value && *value ? value : "<null>");
635 g_free(value);
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600636 }
637}
638
Anthony Liguori0d936922012-05-02 09:00:20 +0200639static void bus_print_dev(BusState *bus, Monitor *mon, DeviceState *dev, int indent)
640{
641 BusClass *bc = BUS_GET_CLASS(bus);
642
643 if (bc->print_dev) {
644 bc->print_dev(mon, dev, indent);
645 }
646}
647
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600648static void qdev_print(Monitor *mon, DeviceState *dev, int indent)
649{
Paolo Bonzinibce54472012-03-28 18:12:47 +0200650 ObjectClass *class;
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600651 BusState *child;
Peter Crosthwaitea5f54292014-05-19 23:30:58 -0700652 NamedGPIOList *ngl;
653
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600654 qdev_printf("dev: %s, id \"%s\"\n", object_get_typename(OBJECT(dev)),
655 dev->id ? dev->id : "");
656 indent += 2;
Peter Crosthwaitea5f54292014-05-19 23:30:58 -0700657 QLIST_FOREACH(ngl, &dev->gpios, node) {
658 if (ngl->num_in) {
659 qdev_printf("gpio-in \"%s\" %d\n", ngl->name ? ngl->name : "",
660 ngl->num_in);
661 }
662 if (ngl->num_out) {
663 qdev_printf("gpio-out \"%s\" %d\n", ngl->name ? ngl->name : "",
664 ngl->num_out);
665 }
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600666 }
Paolo Bonzinibce54472012-03-28 18:12:47 +0200667 class = object_get_class(OBJECT(dev));
668 do {
669 qdev_print_props(mon, dev, DEVICE_CLASS(class)->props, indent);
670 class = object_class_get_parent(class);
671 } while (class != object_class_by_name(TYPE_DEVICE));
Gerd Hoffmannda9fbe72012-07-11 12:21:23 +0200672 bus_print_dev(dev->parent_bus, mon, dev, indent);
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600673 QLIST_FOREACH(child, &dev->child_bus, sibling) {
674 qbus_print(mon, child, indent);
675 }
676}
677
678static void qbus_print(Monitor *mon, BusState *bus, int indent)
679{
Anthony Liguori0866aca2011-12-23 15:34:39 -0600680 BusChild *kid;
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600681
682 qdev_printf("bus: %s\n", bus->name);
683 indent += 2;
Anthony Liguori0d936922012-05-02 09:00:20 +0200684 qdev_printf("type %s\n", object_get_typename(OBJECT(bus)));
Anthony Liguori0866aca2011-12-23 15:34:39 -0600685 QTAILQ_FOREACH(kid, &bus->children, sibling) {
686 DeviceState *dev = kid->child;
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600687 qdev_print(mon, dev, indent);
688 }
689}
690#undef qdev_printf
691
Markus Armbruster1ce6be22015-02-06 14:18:24 +0100692void hmp_info_qtree(Monitor *mon, const QDict *qdict)
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600693{
694 if (sysbus_get_default())
695 qbus_print(mon, sysbus_get_default(), 0);
696}
697
Markus Armbruster1ce6be22015-02-06 14:18:24 +0100698void hmp_info_qdm(Monitor *mon, const QDict *qdict)
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600699{
Markus Armbrustera3400ae2013-10-10 15:00:21 +0200700 qdev_print_devinfos(true);
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600701}
702
Andreas Färbera01ff752014-05-07 17:03:18 +0200703typedef struct QOMCompositionState {
704 Monitor *mon;
705 int indent;
706} QOMCompositionState;
707
708static void print_qom_composition(Monitor *mon, Object *obj, int indent);
709
710static int print_qom_composition_child(Object *obj, void *opaque)
711{
712 QOMCompositionState *s = opaque;
713
714 print_qom_composition(s->mon, obj, s->indent);
715
716 return 0;
717}
718
719static void print_qom_composition(Monitor *mon, Object *obj, int indent)
720{
721 QOMCompositionState s = {
722 .mon = mon,
723 .indent = indent + 2,
724 };
725 char *name;
726
727 if (obj == object_get_root()) {
728 name = g_strdup("");
729 } else {
730 name = object_get_canonical_path_component(obj);
731 }
732 monitor_printf(mon, "%*s/%s (%s)\n", indent, "", name,
733 object_get_typename(obj));
734 g_free(name);
735 object_child_foreach(obj, print_qom_composition_child, &s);
736}
737
738void hmp_info_qom_tree(Monitor *mon, const QDict *dict)
739{
740 const char *path = qdict_get_try_str(dict, "path");
741 Object *obj;
742 bool ambiguous = false;
743
744 if (path) {
745 obj = object_resolve_path(path, &ambiguous);
746 if (!obj) {
747 monitor_printf(mon, "Path '%s' could not be resolved.\n", path);
748 return;
749 }
750 if (ambiguous) {
751 monitor_printf(mon, "Warning: Path '%s' is ambiguous.\n", path);
752 return;
753 }
754 } else {
755 obj = qdev_get_machine();
756 }
757 print_qom_composition(mon, obj, 0);
758}
759
Markus Armbruster485febc2015-03-13 17:25:50 +0100760void qmp_device_add(QDict *qdict, QObject **ret_data, Error **errp)
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600761{
Luiz Capitulino4e899782012-04-18 17:24:01 -0300762 Error *local_err = NULL;
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600763 QemuOpts *opts;
Paolo Bonzinib09995a2013-01-25 14:12:37 +0100764 DeviceState *dev;
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600765
Luiz Capitulino4e899782012-04-18 17:24:01 -0300766 opts = qemu_opts_from_qdict(qemu_find_opts("device"), qdict, &local_err);
Markus Armbruster84d18f02014-01-30 15:07:28 +0100767 if (local_err) {
Markus Armbruster485febc2015-03-13 17:25:50 +0100768 error_propagate(errp, local_err);
769 return;
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600770 }
771 if (!monitor_cur_is_qmp() && qdev_device_help(opts)) {
772 qemu_opts_del(opts);
Markus Armbruster485febc2015-03-13 17:25:50 +0100773 return;
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600774 }
Markus Armbrusterf006cf72015-03-12 14:00:41 +0100775 dev = qdev_device_add(opts, &local_err);
Paolo Bonzinib09995a2013-01-25 14:12:37 +0100776 if (!dev) {
Markus Armbruster485febc2015-03-13 17:25:50 +0100777 error_propagate(errp, local_err);
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600778 qemu_opts_del(opts);
Markus Armbruster485febc2015-03-13 17:25:50 +0100779 return;
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600780 }
Paolo Bonzinib09995a2013-01-25 14:12:37 +0100781 object_unref(OBJECT(dev));
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600782}
783
Luiz Capitulinoa15fef22012-03-29 12:38:50 -0300784void qmp_device_del(const char *id, Error **errp)
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600785{
Igor Mammedovb6cc36a2014-10-02 10:08:45 +0000786 Object *obj;
787 char *root_path = object_get_canonical_path(qdev_get_peripheral());
788 char *path = g_strdup_printf("%s/%s", root_path, id);
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600789
Igor Mammedovb6cc36a2014-10-02 10:08:45 +0000790 g_free(root_path);
791 obj = object_resolve_path_type(path, TYPE_DEVICE, NULL);
792 g_free(path);
793
794 if (!obj) {
Markus Armbruster75158eb2015-03-16 08:57:47 +0100795 error_set(errp, ERROR_CLASS_DEVICE_NOT_FOUND,
796 "Device '%s' not found", id);
Luiz Capitulinoa15fef22012-03-29 12:38:50 -0300797 return;
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600798 }
Luiz Capitulino56f91072012-03-14 17:37:38 -0300799
Igor Mammedovb6cc36a2014-10-02 10:08:45 +0000800 qdev_unplug(DEVICE(obj), errp);
Anthony Liguoriee46d8a2011-12-22 15:24:20 -0600801}
802
803void qdev_machine_init(void)
804{
805 qdev_get_peripheral_anon();
806 qdev_get_peripheral();
807}
Paolo Bonzini4d454572012-11-26 16:03:42 +0100808
809QemuOptsList qemu_device_opts = {
810 .name = "device",
811 .implied_opt_name = "driver",
812 .head = QTAILQ_HEAD_INITIALIZER(qemu_device_opts.head),
813 .desc = {
814 /*
815 * no elements => accept any
816 * sanity checking will happen later
817 * when setting device properties
818 */
819 { /* end of list */ }
820 },
821};
822
823QemuOptsList qemu_global_opts = {
824 .name = "global",
825 .head = QTAILQ_HEAD_INITIALIZER(qemu_global_opts.head),
826 .desc = {
827 {
828 .name = "driver",
829 .type = QEMU_OPT_STRING,
830 },{
831 .name = "property",
832 .type = QEMU_OPT_STRING,
833 },{
834 .name = "value",
835 .type = QEMU_OPT_STRING,
836 },
837 { /* end of list */ }
838 },
839};
840
841int qemu_global_option(const char *str)
842{
843 char driver[64], property[64];
844 QemuOpts *opts;
845 int rc, offset;
846
Paolo Bonzini3751d7c2015-04-09 14:16:19 +0200847 rc = sscanf(str, "%63[^.=].%63[^=]%n", driver, property, &offset);
848 if (rc == 2 && str[offset] == '=') {
849 opts = qemu_opts_create(&qemu_global_opts, NULL, 0, &error_abort);
850 qemu_opt_set(opts, "driver", driver, &error_abort);
851 qemu_opt_set(opts, "property", property, &error_abort);
852 qemu_opt_set(opts, "value", str + offset + 1, &error_abort);
853 return 0;
854 }
855
Markus Armbruster70b94332015-02-13 12:50:26 +0100856 opts = qemu_opts_parse_noisily(&qemu_global_opts, str, false);
Paolo Bonzini3751d7c2015-04-09 14:16:19 +0200857 if (!opts) {
Paolo Bonzini4d454572012-11-26 16:03:42 +0100858 return -1;
859 }
860
Paolo Bonzini4d454572012-11-26 16:03:42 +0100861 return 0;
862}