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