]>
Commit | Line | Data |
---|---|---|
48a32bed AL |
1 | /* |
2 | * QEMU Management Protocol | |
3 | * | |
4 | * Copyright IBM, Corp. 2011 | |
5 | * | |
6 | * Authors: | |
7 | * Anthony Liguori <[email protected]> | |
8 | * | |
9 | * This work is licensed under the terms of the GNU GPL, version 2. See | |
10 | * the COPYING file in the top-level directory. | |
11 | * | |
6b620ca3 PB |
12 | * Contributions after 2012-01-13 are licensed under the terms of the |
13 | * GNU GPL, version 2 or (at your option) any later version. | |
48a32bed AL |
14 | */ |
15 | ||
d38ea87a | 16 | #include "qemu/osdep.h" |
67a1de0d | 17 | #include "qemu-version.h" |
f348b6d1 | 18 | #include "qemu/cutils.h" |
922a01a0 | 19 | #include "qemu/option.h" |
a0b1a66e | 20 | #include "monitor/monitor.h" |
9c17d615 | 21 | #include "sysemu/sysemu.h" |
213dcb06 | 22 | #include "qemu/config-file.h" |
cea25275 | 23 | #include "qemu/uuid.h" |
8228e353 | 24 | #include "chardev/char.h" |
fbf796fd LC |
25 | #include "ui/qemu-spice.h" |
26 | #include "ui/vnc.h" | |
9c17d615 PB |
27 | #include "sysemu/kvm.h" |
28 | #include "sysemu/arch_init.h" | |
b4b12c62 | 29 | #include "hw/qdev.h" |
9c17d615 | 30 | #include "sysemu/blockdev.h" |
373340b2 | 31 | #include "sysemu/block-backend.h" |
14cccb61 | 32 | #include "qom/qom-qobject.h" |
e688df6b | 33 | #include "qapi/error.h" |
112ed241 MA |
34 | #include "qapi/qapi-commands-block-core.h" |
35 | #include "qapi/qapi-commands-misc.h" | |
36 | #include "qapi/qapi-commands-ui.h" | |
452fcdbc | 37 | #include "qapi/qmp/qdict.h" |
cc7a8ea7 | 38 | #include "qapi/qmp/qerror.h" |
b3db211f | 39 | #include "qapi/qobject-input-visitor.h" |
69ca3ea5 | 40 | #include "hw/boards.h" |
269e09f3 | 41 | #include "qom/object_interfaces.h" |
2cc0e2e8 | 42 | #include "hw/mem/memory-device.h" |
02419bcb | 43 | #include "hw/acpi/acpi_dev_interface.h" |
48a32bed AL |
44 | |
45 | NameInfo *qmp_query_name(Error **errp) | |
46 | { | |
47 | NameInfo *info = g_malloc0(sizeof(*info)); | |
48 | ||
49 | if (qemu_name) { | |
50 | info->has_name = true; | |
51 | info->name = g_strdup(qemu_name); | |
52 | } | |
53 | ||
54 | return info; | |
55 | } | |
b9c15f16 | 56 | |
7daecb30 | 57 | VersionInfo *qmp_query_version(Error **errp) |
b9c15f16 | 58 | { |
4752cdbb | 59 | VersionInfo *info = g_new0(VersionInfo, 1); |
b9c15f16 | 60 | |
4752cdbb | 61 | info->qemu = g_new0(VersionTriple, 1); |
3688d8c7 MAL |
62 | info->qemu->major = QEMU_VERSION_MAJOR; |
63 | info->qemu->minor = QEMU_VERSION_MINOR; | |
64 | info->qemu->micro = QEMU_VERSION_MICRO; | |
b9c15f16 LC |
65 | info->package = g_strdup(QEMU_PKGVERSION); |
66 | ||
67 | return info; | |
68 | } | |
292a2602 LC |
69 | |
70 | KvmInfo *qmp_query_kvm(Error **errp) | |
71 | { | |
72 | KvmInfo *info = g_malloc0(sizeof(*info)); | |
73 | ||
74 | info->enabled = kvm_enabled(); | |
75 | info->present = kvm_available(); | |
76 | ||
77 | return info; | |
78 | } | |
79 | ||
efab767e LC |
80 | UuidInfo *qmp_query_uuid(Error **errp) |
81 | { | |
82 | UuidInfo *info = g_malloc0(sizeof(*info)); | |
efab767e | 83 | |
9c5ce8db | 84 | info->UUID = qemu_uuid_unparse_strdup(&qemu_uuid); |
efab767e LC |
85 | return info; |
86 | } | |
87 | ||
7daecb30 | 88 | void qmp_quit(Error **errp) |
7a7f325e LC |
89 | { |
90 | no_shutdown = 0; | |
92548938 | 91 | qemu_system_shutdown_request(SHUTDOWN_CAUSE_HOST_QMP_QUIT); |
7a7f325e LC |
92 | } |
93 | ||
5f158f21 LC |
94 | void qmp_stop(Error **errp) |
95 | { | |
65d64f36 PX |
96 | /* if there is a dump in background, we should wait until the dump |
97 | * finished */ | |
98 | if (dump_in_progress()) { | |
99 | error_setg(errp, "There is a dump in process, please wait."); | |
100 | return; | |
101 | } | |
102 | ||
1e998146 PB |
103 | if (runstate_check(RUN_STATE_INMIGRATE)) { |
104 | autostart = 0; | |
105 | } else { | |
106 | vm_stop(RUN_STATE_PAUSED); | |
107 | } | |
5f158f21 LC |
108 | } |
109 | ||
38d22653 LC |
110 | void qmp_system_reset(Error **errp) |
111 | { | |
92548938 | 112 | qemu_system_reset_request(SHUTDOWN_CAUSE_HOST_QMP_SYSTEM_RESET); |
38d22653 | 113 | } |
5bc465e4 LC |
114 | |
115 | void qmp_system_powerdown(Error **erp) | |
116 | { | |
117 | qemu_system_powerdown_request(); | |
118 | } | |
755f1968 | 119 | |
69ca3ea5 IM |
120 | void qmp_cpu_add(int64_t id, Error **errp) |
121 | { | |
0056ae24 MA |
122 | MachineClass *mc; |
123 | ||
124 | mc = MACHINE_GET_CLASS(current_machine); | |
958db90c MA |
125 | if (mc->hot_add_cpu) { |
126 | mc->hot_add_cpu(id, errp); | |
69ca3ea5 IM |
127 | } else { |
128 | error_setg(errp, "Not supported"); | |
129 | } | |
130 | } | |
131 | ||
361ac948 | 132 | void qmp_x_exit_preconfig(Error **errp) |
047f7038 IM |
133 | { |
134 | if (!runstate_check(RUN_STATE_PRECONFIG)) { | |
135 | error_setg(errp, "The command is permitted only in '%s' state", | |
136 | RunState_str(RUN_STATE_PRECONFIG)); | |
137 | return; | |
138 | } | |
139 | qemu_exit_preconfig_request(); | |
140 | } | |
141 | ||
e42e818b LC |
142 | void qmp_cont(Error **errp) |
143 | { | |
373340b2 | 144 | BlockBackend *blk; |
788cf9f8 | 145 | Error *local_err = NULL; |
e42e818b | 146 | |
65d64f36 PX |
147 | /* if there is a dump in background, we should wait until the dump |
148 | * finished */ | |
149 | if (dump_in_progress()) { | |
150 | error_setg(errp, "There is a dump in process, please wait."); | |
151 | return; | |
152 | } | |
153 | ||
ede085b3 | 154 | if (runstate_needs_reset()) { |
f231b88d | 155 | error_setg(errp, "Resetting the Virtual Machine is required"); |
e42e818b | 156 | return; |
ad02b96a LC |
157 | } else if (runstate_check(RUN_STATE_SUSPENDED)) { |
158 | return; | |
e42e818b LC |
159 | } |
160 | ||
373340b2 HR |
161 | for (blk = blk_next(NULL); blk; blk = blk_next(blk)) { |
162 | blk_iostatus_reset(blk); | |
ab31979a | 163 | } |
7c8eece4 | 164 | |
76b1c7fe | 165 | /* Continuing after completed migration. Images have been inactivated to |
ace21a58 KW |
166 | * allow the destination to take control. Need to get control back now. |
167 | * | |
168 | * If there are no inactive block nodes (e.g. because the VM was just | |
169 | * paused rather than completing a migration), bdrv_inactivate_all() simply | |
170 | * doesn't do anything. */ | |
171 | bdrv_invalidate_cache_all(&local_err); | |
172 | if (local_err) { | |
173 | error_propagate(errp, local_err); | |
174 | return; | |
76b1c7fe KW |
175 | } |
176 | ||
1e998146 PB |
177 | if (runstate_check(RUN_STATE_INMIGRATE)) { |
178 | autostart = 1; | |
179 | } else { | |
180 | vm_start(); | |
181 | } | |
e42e818b | 182 | } |
b4b12c62 | 183 | |
9b9df25a GH |
184 | void qmp_system_wakeup(Error **errp) |
185 | { | |
fb064112 DHB |
186 | if (!qemu_wakeup_suspend_enabled()) { |
187 | error_setg(errp, | |
188 | "wake-up from suspend is not supported by this guest"); | |
189 | return; | |
190 | } | |
191 | ||
192 | qemu_system_wakeup_request(QEMU_WAKEUP_REASON_OTHER, errp); | |
9b9df25a GH |
193 | } |
194 | ||
57c9fafe | 195 | ObjectPropertyInfoList *qmp_qom_list(const char *path, Error **errp) |
b4b12c62 | 196 | { |
57c9fafe | 197 | Object *obj; |
b4b12c62 | 198 | bool ambiguous = false; |
57c9fafe AL |
199 | ObjectPropertyInfoList *props = NULL; |
200 | ObjectProperty *prop; | |
7746abd8 | 201 | ObjectPropertyIterator iter; |
b4b12c62 | 202 | |
57c9fafe AL |
203 | obj = object_resolve_path(path, &ambiguous); |
204 | if (obj == NULL) { | |
79772087 MT |
205 | if (ambiguous) { |
206 | error_setg(errp, "Path '%s' is ambiguous", path); | |
207 | } else { | |
75158ebb MA |
208 | error_set(errp, ERROR_CLASS_DEVICE_NOT_FOUND, |
209 | "Device '%s' not found", path); | |
79772087 | 210 | } |
b4b12c62 AL |
211 | return NULL; |
212 | } | |
213 | ||
7746abd8 DB |
214 | object_property_iter_init(&iter, obj); |
215 | while ((prop = object_property_iter_next(&iter))) { | |
57c9fafe | 216 | ObjectPropertyInfoList *entry = g_malloc0(sizeof(*entry)); |
b4b12c62 | 217 | |
57c9fafe | 218 | entry->value = g_malloc0(sizeof(ObjectPropertyInfo)); |
b4b12c62 AL |
219 | entry->next = props; |
220 | props = entry; | |
221 | ||
222 | entry->value->name = g_strdup(prop->name); | |
223 | entry->value->type = g_strdup(prop->type); | |
224 | } | |
225 | ||
226 | return props; | |
227 | } | |
eb6e8ea5 | 228 | |
6eb3937e MA |
229 | void qmp_qom_set(const char *path, const char *property, QObject *value, |
230 | Error **errp) | |
eb6e8ea5 | 231 | { |
57c9fafe | 232 | Object *obj; |
eb6e8ea5 | 233 | |
57c9fafe AL |
234 | obj = object_resolve_path(path, NULL); |
235 | if (!obj) { | |
485febc6 | 236 | error_set(errp, ERROR_CLASS_DEVICE_NOT_FOUND, |
75158ebb | 237 | "Device '%s' not found", path); |
485febc6 | 238 | return; |
eb6e8ea5 AL |
239 | } |
240 | ||
485febc6 | 241 | object_property_set_qobject(obj, value, property, errp); |
eb6e8ea5 AL |
242 | } |
243 | ||
6eb3937e | 244 | QObject *qmp_qom_get(const char *path, const char *property, Error **errp) |
eb6e8ea5 | 245 | { |
57c9fafe | 246 | Object *obj; |
eb6e8ea5 | 247 | |
57c9fafe AL |
248 | obj = object_resolve_path(path, NULL); |
249 | if (!obj) { | |
485febc6 | 250 | error_set(errp, ERROR_CLASS_DEVICE_NOT_FOUND, |
75158ebb | 251 | "Device '%s' not found", path); |
6eb3937e | 252 | return NULL; |
eb6e8ea5 AL |
253 | } |
254 | ||
6eb3937e | 255 | return object_property_get_qobject(obj, property, errp); |
eb6e8ea5 | 256 | } |
fbf796fd LC |
257 | |
258 | void qmp_set_password(const char *protocol, const char *password, | |
259 | bool has_connected, const char *connected, Error **errp) | |
260 | { | |
261 | int disconnect_if_connected = 0; | |
262 | int fail_if_connected = 0; | |
263 | int rc; | |
264 | ||
265 | if (has_connected) { | |
266 | if (strcmp(connected, "fail") == 0) { | |
267 | fail_if_connected = 1; | |
268 | } else if (strcmp(connected, "disconnect") == 0) { | |
269 | disconnect_if_connected = 1; | |
270 | } else if (strcmp(connected, "keep") == 0) { | |
271 | /* nothing */ | |
272 | } else { | |
c6bd8c70 | 273 | error_setg(errp, QERR_INVALID_PARAMETER, "connected"); |
fbf796fd LC |
274 | return; |
275 | } | |
276 | } | |
277 | ||
278 | if (strcmp(protocol, "spice") == 0) { | |
b25d81ba | 279 | if (!qemu_using_spice(errp)) { |
fbf796fd LC |
280 | return; |
281 | } | |
282 | rc = qemu_spice_set_passwd(password, fail_if_connected, | |
283 | disconnect_if_connected); | |
284 | if (rc != 0) { | |
c6bd8c70 | 285 | error_setg(errp, QERR_SET_PASSWD_FAILED); |
fbf796fd LC |
286 | } |
287 | return; | |
288 | } | |
289 | ||
290 | if (strcmp(protocol, "vnc") == 0) { | |
291 | if (fail_if_connected || disconnect_if_connected) { | |
292 | /* vnc supports "connected=keep" only */ | |
c6bd8c70 | 293 | error_setg(errp, QERR_INVALID_PARAMETER, "connected"); |
fbf796fd LC |
294 | return; |
295 | } | |
296 | /* Note that setting an empty password will not disable login through | |
297 | * this interface. */ | |
298 | rc = vnc_display_password(NULL, password); | |
299 | if (rc < 0) { | |
c6bd8c70 | 300 | error_setg(errp, QERR_SET_PASSWD_FAILED); |
fbf796fd LC |
301 | } |
302 | return; | |
303 | } | |
304 | ||
c6bd8c70 | 305 | error_setg(errp, QERR_INVALID_PARAMETER, "protocol"); |
fbf796fd | 306 | } |
9ad5372d LC |
307 | |
308 | void qmp_expire_password(const char *protocol, const char *whenstr, | |
309 | Error **errp) | |
310 | { | |
311 | time_t when; | |
312 | int rc; | |
313 | ||
314 | if (strcmp(whenstr, "now") == 0) { | |
315 | when = 0; | |
316 | } else if (strcmp(whenstr, "never") == 0) { | |
317 | when = TIME_MAX; | |
318 | } else if (whenstr[0] == '+') { | |
319 | when = time(NULL) + strtoull(whenstr+1, NULL, 10); | |
320 | } else { | |
321 | when = strtoull(whenstr, NULL, 10); | |
322 | } | |
323 | ||
324 | if (strcmp(protocol, "spice") == 0) { | |
b25d81ba | 325 | if (!qemu_using_spice(errp)) { |
9ad5372d LC |
326 | return; |
327 | } | |
328 | rc = qemu_spice_set_pw_expire(when); | |
329 | if (rc != 0) { | |
c6bd8c70 | 330 | error_setg(errp, QERR_SET_PASSWD_FAILED); |
9ad5372d LC |
331 | } |
332 | return; | |
333 | } | |
334 | ||
335 | if (strcmp(protocol, "vnc") == 0) { | |
336 | rc = vnc_display_pw_expire(NULL, when); | |
337 | if (rc != 0) { | |
c6bd8c70 | 338 | error_setg(errp, QERR_SET_PASSWD_FAILED); |
9ad5372d LC |
339 | } |
340 | return; | |
341 | } | |
342 | ||
c6bd8c70 | 343 | error_setg(errp, QERR_INVALID_PARAMETER, "protocol"); |
9ad5372d | 344 | } |
270b243f | 345 | |
333a96ec | 346 | #ifdef CONFIG_VNC |
270b243f LC |
347 | void qmp_change_vnc_password(const char *password, Error **errp) |
348 | { | |
349 | if (vnc_display_password(NULL, password) < 0) { | |
c6bd8c70 | 350 | error_setg(errp, QERR_SET_PASSWD_FAILED); |
270b243f LC |
351 | } |
352 | } | |
333a96ec | 353 | |
007fcd3e | 354 | static void qmp_change_vnc_listen(const char *target, Error **errp) |
333a96ec | 355 | { |
4db14629 GH |
356 | QemuOptsList *olist = qemu_find_opts("vnc"); |
357 | QemuOpts *opts; | |
358 | ||
359 | if (strstr(target, "id=")) { | |
360 | error_setg(errp, "id not supported"); | |
361 | return; | |
362 | } | |
363 | ||
364 | opts = qemu_opts_find(olist, "default"); | |
365 | if (opts) { | |
366 | qemu_opts_del(opts); | |
367 | } | |
70b94331 | 368 | opts = vnc_parse(target, errp); |
f7801c5c GA |
369 | if (!opts) { |
370 | return; | |
371 | } | |
372 | ||
4db14629 | 373 | vnc_display_open("default", errp); |
333a96ec LC |
374 | } |
375 | ||
376 | static void qmp_change_vnc(const char *target, bool has_arg, const char *arg, | |
377 | Error **errp) | |
378 | { | |
379 | if (strcmp(target, "passwd") == 0 || strcmp(target, "password") == 0) { | |
380 | if (!has_arg) { | |
c6bd8c70 | 381 | error_setg(errp, QERR_MISSING_PARAMETER, "password"); |
333a96ec LC |
382 | } else { |
383 | qmp_change_vnc_password(arg, errp); | |
384 | } | |
385 | } else { | |
386 | qmp_change_vnc_listen(target, errp); | |
387 | } | |
388 | } | |
333a96ec LC |
389 | #endif /* !CONFIG_VNC */ |
390 | ||
391 | void qmp_change(const char *device, const char *target, | |
7daecb30 | 392 | bool has_arg, const char *arg, Error **errp) |
333a96ec LC |
393 | { |
394 | if (strcmp(device, "vnc") == 0) { | |
05eb4a25 | 395 | #ifdef CONFIG_VNC |
7daecb30 | 396 | qmp_change_vnc(target, has_arg, arg, errp); |
05eb4a25 MAL |
397 | #else |
398 | error_setg(errp, QERR_FEATURE_DISABLED, "vnc"); | |
399 | #endif | |
333a96ec | 400 | } else { |
70e2cb3b KW |
401 | qmp_blockdev_change_medium(true, device, false, NULL, target, |
402 | has_arg, arg, false, 0, errp); | |
333a96ec LC |
403 | } |
404 | } | |
5eeee3fa AL |
405 | |
406 | static void qom_list_types_tramp(ObjectClass *klass, void *data) | |
407 | { | |
408 | ObjectTypeInfoList *e, **pret = data; | |
409 | ObjectTypeInfo *info; | |
f86285c5 | 410 | ObjectClass *parent = object_class_get_parent(klass); |
5eeee3fa AL |
411 | |
412 | info = g_malloc0(sizeof(*info)); | |
413 | info->name = g_strdup(object_class_get_name(klass)); | |
87467eae | 414 | info->has_abstract = info->abstract = object_class_is_abstract(klass); |
f86285c5 EH |
415 | if (parent) { |
416 | info->has_parent = true; | |
417 | info->parent = g_strdup(object_class_get_name(parent)); | |
418 | } | |
5eeee3fa AL |
419 | |
420 | e = g_malloc0(sizeof(*e)); | |
421 | e->value = info; | |
422 | e->next = *pret; | |
423 | *pret = e; | |
424 | } | |
425 | ||
426 | ObjectTypeInfoList *qmp_qom_list_types(bool has_implements, | |
427 | const char *implements, | |
428 | bool has_abstract, | |
429 | bool abstract, | |
430 | Error **errp) | |
431 | { | |
432 | ObjectTypeInfoList *ret = NULL; | |
433 | ||
434 | object_class_foreach(qom_list_types_tramp, implements, abstract, &ret); | |
435 | ||
436 | return ret; | |
437 | } | |
1daa31b9 | 438 | |
f4eb32b5 SH |
439 | /* Return a DevicePropertyInfo for a qdev property. |
440 | * | |
441 | * If a qdev property with the given name does not exist, use the given default | |
442 | * type. If the qdev property info should not be shown, return NULL. | |
443 | * | |
444 | * The caller must free the return value. | |
445 | */ | |
35f63767 AK |
446 | static ObjectPropertyInfo *make_device_property_info(ObjectClass *klass, |
447 | const char *name, | |
448 | const char *default_type, | |
449 | const char *description) | |
f4eb32b5 | 450 | { |
35f63767 | 451 | ObjectPropertyInfo *info; |
f4eb32b5 SH |
452 | Property *prop; |
453 | ||
454 | do { | |
455 | for (prop = DEVICE_CLASS(klass)->props; prop && prop->name; prop++) { | |
456 | if (strcmp(name, prop->name) != 0) { | |
457 | continue; | |
458 | } | |
459 | ||
460 | /* | |
461 | * TODO Properties without a parser are just for dirty hacks. | |
462 | * qdev_prop_ptr is the only such PropertyInfo. It's marked | |
463 | * for removal. This conditional should be removed along with | |
464 | * it. | |
465 | */ | |
faabdbb7 | 466 | if (!prop->info->set && !prop->info->create) { |
f4eb32b5 SH |
467 | return NULL; /* no way to set it, don't show */ |
468 | } | |
469 | ||
470 | info = g_malloc0(sizeof(*info)); | |
471 | info->name = g_strdup(prop->name); | |
75ab9053 FZ |
472 | info->type = default_type ? g_strdup(default_type) |
473 | : g_strdup(prop->info->name); | |
07d09c58 GA |
474 | info->has_description = !!prop->info->description; |
475 | info->description = g_strdup(prop->info->description); | |
f4eb32b5 SH |
476 | return info; |
477 | } | |
478 | klass = object_class_get_parent(klass); | |
479 | } while (klass != object_class_by_name(TYPE_DEVICE)); | |
480 | ||
481 | /* Not a qdev property, use the default type */ | |
482 | info = g_malloc0(sizeof(*info)); | |
483 | info->name = g_strdup(name); | |
484 | info->type = g_strdup(default_type); | |
07d09c58 GA |
485 | info->has_description = !!description; |
486 | info->description = g_strdup(description); | |
487 | ||
f4eb32b5 SH |
488 | return info; |
489 | } | |
490 | ||
35f63767 AK |
491 | ObjectPropertyInfoList *qmp_device_list_properties(const char *typename, |
492 | Error **errp) | |
1daa31b9 AL |
493 | { |
494 | ObjectClass *klass; | |
f4eb32b5 SH |
495 | Object *obj; |
496 | ObjectProperty *prop; | |
7746abd8 | 497 | ObjectPropertyIterator iter; |
35f63767 | 498 | ObjectPropertyInfoList *prop_list = NULL; |
1daa31b9 AL |
499 | |
500 | klass = object_class_by_name(typename); | |
501 | if (klass == NULL) { | |
75158ebb MA |
502 | error_set(errp, ERROR_CLASS_DEVICE_NOT_FOUND, |
503 | "Device '%s' not found", typename); | |
1daa31b9 AL |
504 | return NULL; |
505 | } | |
506 | ||
507 | klass = object_class_dynamic_cast(klass, TYPE_DEVICE); | |
508 | if (klass == NULL) { | |
7a8c153f | 509 | error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "typename", TYPE_DEVICE); |
1daa31b9 AL |
510 | return NULL; |
511 | } | |
512 | ||
edb1523d | 513 | if (object_class_is_abstract(klass)) { |
7a8c153f | 514 | error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "typename", |
edb1523d MA |
515 | "non-abstract device type"); |
516 | return NULL; | |
517 | } | |
518 | ||
f4eb32b5 | 519 | obj = object_new(typename); |
1daa31b9 | 520 | |
7746abd8 DB |
521 | object_property_iter_init(&iter, obj); |
522 | while ((prop = object_property_iter_next(&iter))) { | |
35f63767 AK |
523 | ObjectPropertyInfo *info; |
524 | ObjectPropertyInfoList *entry; | |
f4eb32b5 SH |
525 | |
526 | /* Skip Object and DeviceState properties */ | |
527 | if (strcmp(prop->name, "type") == 0 || | |
528 | strcmp(prop->name, "realized") == 0 || | |
529 | strcmp(prop->name, "hotpluggable") == 0 || | |
4115dd65 | 530 | strcmp(prop->name, "hotplugged") == 0 || |
f4eb32b5 SH |
531 | strcmp(prop->name, "parent_bus") == 0) { |
532 | continue; | |
533 | } | |
1daa31b9 | 534 | |
f4eb32b5 SH |
535 | /* Skip legacy properties since they are just string versions of |
536 | * properties that we already list. | |
537 | */ | |
538 | if (strstart(prop->name, "legacy-", NULL)) { | |
539 | continue; | |
540 | } | |
1daa31b9 | 541 | |
07d09c58 GA |
542 | info = make_device_property_info(klass, prop->name, prop->type, |
543 | prop->description); | |
f4eb32b5 SH |
544 | if (!info) { |
545 | continue; | |
1daa31b9 | 546 | } |
f4eb32b5 SH |
547 | |
548 | entry = g_malloc0(sizeof(*entry)); | |
961c47bb AK |
549 | entry->value = info; |
550 | entry->next = prop_list; | |
551 | prop_list = entry; | |
552 | } | |
553 | ||
554 | object_unref(obj); | |
555 | ||
556 | return prop_list; | |
557 | } | |
558 | ||
559 | ObjectPropertyInfoList *qmp_qom_list_properties(const char *typename, | |
560 | Error **errp) | |
561 | { | |
562 | ObjectClass *klass; | |
563 | Object *obj = NULL; | |
564 | ObjectProperty *prop; | |
565 | ObjectPropertyIterator iter; | |
566 | ObjectPropertyInfoList *prop_list = NULL; | |
567 | ||
568 | klass = object_class_by_name(typename); | |
569 | if (klass == NULL) { | |
570 | error_set(errp, ERROR_CLASS_DEVICE_NOT_FOUND, | |
571 | "Class '%s' not found", typename); | |
572 | return NULL; | |
573 | } | |
574 | ||
575 | klass = object_class_dynamic_cast(klass, TYPE_OBJECT); | |
576 | if (klass == NULL) { | |
577 | error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "typename", TYPE_OBJECT); | |
578 | return NULL; | |
579 | } | |
580 | ||
581 | if (object_class_is_abstract(klass)) { | |
582 | object_class_property_iter_init(&iter, klass); | |
583 | } else { | |
584 | obj = object_new(typename); | |
585 | object_property_iter_init(&iter, obj); | |
586 | } | |
587 | while ((prop = object_property_iter_next(&iter))) { | |
588 | ObjectPropertyInfo *info; | |
589 | ObjectPropertyInfoList *entry; | |
590 | ||
591 | info = g_malloc0(sizeof(*info)); | |
592 | info->name = g_strdup(prop->name); | |
593 | info->type = g_strdup(prop->type); | |
594 | info->has_description = !!prop->description; | |
595 | info->description = g_strdup(prop->description); | |
596 | ||
597 | entry = g_malloc0(sizeof(*entry)); | |
f4eb32b5 SH |
598 | entry->value = info; |
599 | entry->next = prop_list; | |
600 | prop_list = entry; | |
601 | } | |
602 | ||
603 | object_unref(obj); | |
1daa31b9 AL |
604 | |
605 | return prop_list; | |
606 | } | |
e4e31c63 | 607 | |
b224e5e2 LC |
608 | void qmp_add_client(const char *protocol, const char *fdname, |
609 | bool has_skipauth, bool skipauth, bool has_tls, bool tls, | |
610 | Error **errp) | |
611 | { | |
0ec7b3e7 | 612 | Chardev *s; |
b224e5e2 LC |
613 | int fd; |
614 | ||
615 | fd = monitor_get_fd(cur_mon, fdname, errp); | |
616 | if (fd < 0) { | |
617 | return; | |
618 | } | |
619 | ||
620 | if (strcmp(protocol, "spice") == 0) { | |
b25d81ba | 621 | if (!qemu_using_spice(errp)) { |
b224e5e2 LC |
622 | close(fd); |
623 | return; | |
624 | } | |
625 | skipauth = has_skipauth ? skipauth : false; | |
626 | tls = has_tls ? tls : false; | |
627 | if (qemu_spice_display_add_client(fd, skipauth, tls) < 0) { | |
628 | error_setg(errp, "spice failed to add client"); | |
629 | close(fd); | |
630 | } | |
631 | return; | |
632 | #ifdef CONFIG_VNC | |
633 | } else if (strcmp(protocol, "vnc") == 0) { | |
634 | skipauth = has_skipauth ? skipauth : false; | |
635 | vnc_display_add_client(NULL, fd, skipauth); | |
636 | return; | |
637 | #endif | |
638 | } else if ((s = qemu_chr_find(protocol)) != NULL) { | |
639 | if (qemu_chr_add_client(s, fd) < 0) { | |
640 | error_setg(errp, "failed to add client"); | |
641 | close(fd); | |
642 | return; | |
643 | } | |
644 | return; | |
645 | } | |
646 | ||
647 | error_setg(errp, "protocol '%s' is invalid", protocol); | |
648 | close(fd); | |
649 | } | |
ab2d0531 | 650 | |
cff8b2c6 | 651 | |
6eb3937e MA |
652 | void qmp_object_add(const char *type, const char *id, |
653 | bool has_props, QObject *props, Error **errp) | |
cff8b2c6 | 654 | { |
e64c75a9 | 655 | QDict *pdict; |
b70ce101 | 656 | Visitor *v; |
90998d58 | 657 | Object *obj; |
cff8b2c6 PB |
658 | |
659 | if (props) { | |
7dc847eb | 660 | pdict = qobject_to(QDict, props); |
cff8b2c6 | 661 | if (!pdict) { |
485febc6 MA |
662 | error_setg(errp, QERR_INVALID_PARAMETER_TYPE, "props", "dict"); |
663 | return; | |
cff8b2c6 | 664 | } |
cb3e7f08 | 665 | qobject_ref(pdict); |
e64c75a9 MAL |
666 | } else { |
667 | pdict = qdict_new(); | |
cff8b2c6 PB |
668 | } |
669 | ||
048abb7b | 670 | v = qobject_input_visitor_new(QOBJECT(pdict)); |
b70ce101 EB |
671 | obj = user_creatable_add_type(type, id, pdict, v, errp); |
672 | visit_free(v); | |
90998d58 DB |
673 | if (obj) { |
674 | object_unref(obj); | |
675 | } | |
cb3e7f08 | 676 | qobject_unref(pdict); |
cff8b2c6 PB |
677 | } |
678 | ||
ab2d0531 PB |
679 | void qmp_object_del(const char *id, Error **errp) |
680 | { | |
90998d58 | 681 | user_creatable_del(id, errp); |
ab2d0531 | 682 | } |
6f2e2730 IM |
683 | |
684 | MemoryDeviceInfoList *qmp_query_memory_devices(Error **errp) | |
685 | { | |
2cc0e2e8 | 686 | return qmp_memory_device_list(); |
6f2e2730 | 687 | } |
02419bcb IM |
688 | |
689 | ACPIOSTInfoList *qmp_query_acpi_ospm_status(Error **errp) | |
690 | { | |
691 | bool ambig; | |
692 | ACPIOSTInfoList *head = NULL; | |
693 | ACPIOSTInfoList **prev = &head; | |
694 | Object *obj = object_resolve_path_type("", TYPE_ACPI_DEVICE_IF, &ambig); | |
695 | ||
696 | if (obj) { | |
697 | AcpiDeviceIfClass *adevc = ACPI_DEVICE_IF_GET_CLASS(obj); | |
698 | AcpiDeviceIf *adev = ACPI_DEVICE_IF(obj); | |
699 | ||
700 | adevc->ospm_status(adev, &prev); | |
701 | } else { | |
702 | error_setg(errp, "command is not supported, missing ACPI device"); | |
703 | } | |
704 | ||
705 | return head; | |
706 | } | |
9aa3397f VG |
707 | |
708 | MemoryInfo *qmp_query_memory_size_summary(Error **errp) | |
709 | { | |
710 | MemoryInfo *mem_info = g_malloc0(sizeof(MemoryInfo)); | |
711 | ||
712 | mem_info->base_memory = ram_size; | |
713 | ||
714 | mem_info->plugged_memory = get_plugged_memory_size(); | |
715 | mem_info->has_plugged_memory = | |
716 | mem_info->plugged_memory != (uint64_t)-1; | |
717 | ||
718 | return mem_info; | |
719 | } |