2019-06-19 22:10:43 +02:00
|
|
|
/*
|
|
|
|
* QMP commands related to machines and CPUs
|
|
|
|
*
|
|
|
|
* Copyright (C) 2014 Red Hat Inc
|
|
|
|
*
|
|
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or later.
|
|
|
|
* See the COPYING file in the top-level directory.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "qemu/osdep.h"
|
|
|
|
#include "hw/boards.h"
|
2023-01-24 13:19:23 +01:00
|
|
|
#include "hw/intc/intc.h"
|
|
|
|
#include "hw/mem/memory-device.h"
|
|
|
|
#include "hw/rdma/rdma.h"
|
2019-06-19 22:10:43 +02:00
|
|
|
#include "qapi/error.h"
|
2020-05-05 17:29:13 +02:00
|
|
|
#include "qapi/qapi-builtin-visit.h"
|
2019-06-19 22:10:43 +02:00
|
|
|
#include "qapi/qapi-commands-machine.h"
|
|
|
|
#include "qapi/qmp/qerror.h"
|
2020-05-05 17:29:13 +02:00
|
|
|
#include "qapi/qmp/qobject.h"
|
|
|
|
#include "qapi/qobject-input-visitor.h"
|
2021-09-08 11:35:43 +02:00
|
|
|
#include "qapi/type-helpers.h"
|
Include qemu/main-loop.h less
In my "build everything" tree, changing qemu/main-loop.h triggers a
recompile of some 5600 out of 6600 objects (not counting tests and
objects that don't depend on qemu/osdep.h). It includes block/aio.h,
which in turn includes qemu/event_notifier.h, qemu/notify.h,
qemu/processor.h, qemu/qsp.h, qemu/queue.h, qemu/thread-posix.h,
qemu/thread.h, qemu/timer.h, and a few more.
Include qemu/main-loop.h only where it's needed. Touching it now
recompiles only some 1700 objects. For block/aio.h and
qemu/event_notifier.h, these numbers drop from 5600 to 2800. For the
others, they shrink only slightly.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Message-Id: <20190812052359.30071-21-armbru@redhat.com>
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Tested-by: Philippe Mathieu-Daudé <philmd@redhat.com>
2019-08-12 07:23:50 +02:00
|
|
|
#include "qemu/main-loop.h"
|
2023-01-24 13:19:23 +01:00
|
|
|
#include "qemu/uuid.h"
|
2020-05-05 17:29:13 +02:00
|
|
|
#include "qom/qom-qobject.h"
|
2019-06-19 22:10:43 +02:00
|
|
|
#include "sysemu/hostmem.h"
|
|
|
|
#include "sysemu/hw_accel.h"
|
|
|
|
#include "sysemu/numa.h"
|
2019-08-12 07:23:59 +02:00
|
|
|
#include "sysemu/runstate.h"
|
2023-01-24 13:19:23 +01:00
|
|
|
#include "sysemu/sysemu.h"
|
2019-06-19 22:10:43 +02:00
|
|
|
|
|
|
|
static void cpustate_to_cpuinfo_s390(CpuInfoS390 *info, const CPUState *cpu)
|
|
|
|
{
|
|
|
|
#ifdef TARGET_S390X
|
|
|
|
S390CPU *s390_cpu = S390_CPU(cpu);
|
|
|
|
CPUS390XState *env = &s390_cpu->env;
|
|
|
|
|
|
|
|
info->cpu_state = env->cpu_state;
|
|
|
|
#else
|
|
|
|
abort();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* fast means: we NEVER interrupt vCPU threads to retrieve
|
|
|
|
* information from KVM.
|
|
|
|
*/
|
|
|
|
CpuInfoFastList *qmp_query_cpus_fast(Error **errp)
|
|
|
|
{
|
|
|
|
MachineState *ms = MACHINE(qdev_get_machine());
|
|
|
|
MachineClass *mc = MACHINE_GET_CLASS(ms);
|
2021-01-13 23:10:13 +01:00
|
|
|
CpuInfoFastList *head = NULL, **tail = &head;
|
2019-06-19 22:10:43 +02:00
|
|
|
SysEmuTarget target = qapi_enum_parse(&SysEmuTarget_lookup, TARGET_NAME,
|
|
|
|
-1, &error_abort);
|
|
|
|
CPUState *cpu;
|
|
|
|
|
|
|
|
CPU_FOREACH(cpu) {
|
2021-01-13 23:10:13 +01:00
|
|
|
CpuInfoFast *value = g_malloc0(sizeof(*value));
|
2019-06-19 22:10:43 +02:00
|
|
|
|
2021-01-13 23:10:13 +01:00
|
|
|
value->cpu_index = cpu->cpu_index;
|
|
|
|
value->qom_path = object_get_canonical_path(OBJECT(cpu));
|
|
|
|
value->thread_id = cpu->thread_id;
|
2019-06-19 22:10:43 +02:00
|
|
|
|
2022-11-04 17:06:57 +01:00
|
|
|
if (mc->cpu_index_to_instance_props) {
|
2019-06-19 22:10:43 +02:00
|
|
|
CpuInstanceProperties *props;
|
|
|
|
props = g_malloc0(sizeof(*props));
|
|
|
|
*props = mc->cpu_index_to_instance_props(ms, cpu->cpu_index);
|
2021-01-13 23:10:13 +01:00
|
|
|
value->props = props;
|
2019-06-19 22:10:43 +02:00
|
|
|
}
|
|
|
|
|
2021-01-13 23:10:13 +01:00
|
|
|
value->target = target;
|
2019-06-19 22:10:43 +02:00
|
|
|
if (target == SYS_EMU_TARGET_S390X) {
|
2021-01-13 23:10:13 +01:00
|
|
|
cpustate_to_cpuinfo_s390(&value->u.s390x, cpu);
|
2019-06-19 22:10:43 +02:00
|
|
|
}
|
|
|
|
|
2021-01-13 23:10:13 +01:00
|
|
|
QAPI_LIST_APPEND(tail, value);
|
2019-06-19 22:10:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return head;
|
|
|
|
}
|
|
|
|
|
|
|
|
MachineInfoList *qmp_query_machines(Error **errp)
|
|
|
|
{
|
|
|
|
GSList *el, *machines = object_class_get_list(TYPE_MACHINE, false);
|
|
|
|
MachineInfoList *mach_list = NULL;
|
|
|
|
|
|
|
|
for (el = machines; el; el = el->next) {
|
|
|
|
MachineClass *mc = el->data;
|
|
|
|
MachineInfo *info;
|
|
|
|
|
|
|
|
info = g_malloc0(sizeof(*info));
|
|
|
|
if (mc->is_default) {
|
|
|
|
info->has_is_default = true;
|
|
|
|
info->is_default = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mc->alias) {
|
|
|
|
info->alias = g_strdup(mc->alias);
|
|
|
|
}
|
|
|
|
|
|
|
|
info->name = g_strdup(mc->name);
|
|
|
|
info->cpu_max = !mc->max_cpus ? 1 : mc->max_cpus;
|
|
|
|
info->hotpluggable_cpus = mc->has_hotpluggable_cpus;
|
2019-06-10 15:10:07 +02:00
|
|
|
info->numa_mem_supported = mc->numa_mem_supported;
|
2019-06-09 01:34:47 +02:00
|
|
|
info->deprecated = !!mc->deprecation_reason;
|
2019-08-22 12:04:12 +02:00
|
|
|
if (mc->default_cpu_type) {
|
|
|
|
info->default_cpu_type = g_strdup(mc->default_cpu_type);
|
|
|
|
}
|
2020-05-26 10:25:35 +02:00
|
|
|
if (mc->default_ram_id) {
|
|
|
|
info->default_ram_id = g_strdup(mc->default_ram_id);
|
|
|
|
}
|
2019-06-19 22:10:43 +02:00
|
|
|
|
2020-11-13 02:13:37 +01:00
|
|
|
QAPI_LIST_PREPEND(mach_list, info);
|
2019-06-19 22:10:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
g_slist_free(machines);
|
|
|
|
return mach_list;
|
|
|
|
}
|
|
|
|
|
|
|
|
CurrentMachineParams *qmp_query_current_machine(Error **errp)
|
|
|
|
{
|
|
|
|
CurrentMachineParams *params = g_malloc0(sizeof(*params));
|
|
|
|
params->wakeup_suspend_support = qemu_wakeup_suspend_enabled();
|
|
|
|
|
|
|
|
return params;
|
|
|
|
}
|
|
|
|
|
2019-07-09 17:20:53 +02:00
|
|
|
TargetInfo *qmp_query_target(Error **errp)
|
|
|
|
{
|
|
|
|
TargetInfo *info = g_malloc0(sizeof(*info));
|
|
|
|
|
|
|
|
info->arch = qapi_enum_parse(&SysEmuTarget_lookup, TARGET_NAME, -1,
|
|
|
|
&error_abort);
|
|
|
|
|
|
|
|
return info;
|
|
|
|
}
|
|
|
|
|
2019-06-19 22:10:43 +02:00
|
|
|
HotpluggableCPUList *qmp_query_hotpluggable_cpus(Error **errp)
|
|
|
|
{
|
|
|
|
MachineState *ms = MACHINE(qdev_get_machine());
|
|
|
|
MachineClass *mc = MACHINE_GET_CLASS(ms);
|
|
|
|
|
|
|
|
if (!mc->has_hotpluggable_cpus) {
|
|
|
|
error_setg(errp, QERR_FEATURE_DISABLED, "query-hotpluggable-cpus");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return machine_query_hotpluggable_cpus(ms);
|
|
|
|
}
|
|
|
|
|
|
|
|
void qmp_set_numa_node(NumaOptions *cmd, Error **errp)
|
|
|
|
{
|
2020-11-12 15:38:36 +01:00
|
|
|
if (phase_check(PHASE_MACHINE_INITIALIZED)) {
|
|
|
|
error_setg(errp, "The command is permitted only before the machine has been created");
|
|
|
|
return;
|
2019-06-19 22:10:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
set_numa_options(MACHINE(qdev_get_machine()), cmd, errp);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int query_memdev(Object *obj, void *opaque)
|
|
|
|
{
|
2021-05-10 13:43:27 +02:00
|
|
|
Error *err = NULL;
|
2019-06-19 22:10:43 +02:00
|
|
|
MemdevList **list = opaque;
|
2021-01-13 23:10:10 +01:00
|
|
|
Memdev *m;
|
2020-05-05 17:29:13 +02:00
|
|
|
QObject *host_nodes;
|
|
|
|
Visitor *v;
|
2019-06-19 22:10:43 +02:00
|
|
|
|
|
|
|
if (object_dynamic_cast(obj, TYPE_MEMORY_BACKEND)) {
|
|
|
|
m = g_malloc0(sizeof(*m));
|
|
|
|
|
2021-01-13 23:10:10 +01:00
|
|
|
m->id = g_strdup(object_get_canonical_path_component(obj));
|
|
|
|
|
|
|
|
m->size = object_property_get_uint(obj, "size", &error_abort);
|
|
|
|
m->merge = object_property_get_bool(obj, "merge", &error_abort);
|
|
|
|
m->dump = object_property_get_bool(obj, "dump", &error_abort);
|
|
|
|
m->prealloc = object_property_get_bool(obj, "prealloc", &error_abort);
|
2021-05-10 13:43:25 +02:00
|
|
|
m->share = object_property_get_bool(obj, "share", &error_abort);
|
2021-05-10 13:43:27 +02:00
|
|
|
m->reserve = object_property_get_bool(obj, "reserve", &err);
|
|
|
|
if (err) {
|
|
|
|
error_free_or_abort(&err);
|
|
|
|
} else {
|
|
|
|
m->has_reserve = true;
|
|
|
|
}
|
2021-01-13 23:10:10 +01:00
|
|
|
m->policy = object_property_get_enum(obj, "policy", "HostMemPolicy",
|
|
|
|
&error_abort);
|
2020-05-05 17:29:13 +02:00
|
|
|
host_nodes = object_property_get_qobject(obj,
|
|
|
|
"host-nodes",
|
|
|
|
&error_abort);
|
|
|
|
v = qobject_input_visitor_new(host_nodes);
|
2021-01-13 23:10:10 +01:00
|
|
|
visit_type_uint16List(v, NULL, &m->host_nodes, &error_abort);
|
2020-05-05 17:29:13 +02:00
|
|
|
visit_free(v);
|
|
|
|
qobject_unref(host_nodes);
|
2019-06-19 22:10:43 +02:00
|
|
|
|
2021-01-13 23:10:10 +01:00
|
|
|
QAPI_LIST_PREPEND(*list, m);
|
2019-06-19 22:10:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
MemdevList *qmp_query_memdev(Error **errp)
|
|
|
|
{
|
|
|
|
Object *obj = object_get_objects_root();
|
|
|
|
MemdevList *list = NULL;
|
|
|
|
|
|
|
|
object_child_foreach(obj, query_memdev, &list);
|
|
|
|
return list;
|
|
|
|
}
|
2021-09-08 11:35:43 +02:00
|
|
|
|
|
|
|
HumanReadableText *qmp_x_query_numa(Error **errp)
|
|
|
|
{
|
|
|
|
g_autoptr(GString) buf = g_string_new("");
|
|
|
|
int i, nb_numa_nodes;
|
|
|
|
NumaNodeMem *node_mem;
|
|
|
|
CpuInfoFastList *cpu_list, *cpu;
|
|
|
|
MachineState *ms = MACHINE(qdev_get_machine());
|
|
|
|
|
|
|
|
nb_numa_nodes = ms->numa_state ? ms->numa_state->num_nodes : 0;
|
|
|
|
g_string_append_printf(buf, "%d nodes\n", nb_numa_nodes);
|
|
|
|
if (!nb_numa_nodes) {
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
cpu_list = qmp_query_cpus_fast(&error_abort);
|
|
|
|
node_mem = g_new0(NumaNodeMem, nb_numa_nodes);
|
|
|
|
|
|
|
|
query_numa_node_mem(node_mem, ms);
|
|
|
|
for (i = 0; i < nb_numa_nodes; i++) {
|
|
|
|
g_string_append_printf(buf, "node %d cpus:", i);
|
|
|
|
for (cpu = cpu_list; cpu; cpu = cpu->next) {
|
2022-11-04 17:06:57 +01:00
|
|
|
if (cpu->value->props && cpu->value->props->has_node_id &&
|
2021-09-08 11:35:43 +02:00
|
|
|
cpu->value->props->node_id == i) {
|
|
|
|
g_string_append_printf(buf, " %" PRIi64, cpu->value->cpu_index);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
g_string_append_printf(buf, "\n");
|
|
|
|
g_string_append_printf(buf, "node %d size: %" PRId64 " MB\n", i,
|
|
|
|
node_mem[i].node_mem >> 20);
|
|
|
|
g_string_append_printf(buf, "node %d plugged: %" PRId64 " MB\n", i,
|
|
|
|
node_mem[i].node_plugged_mem >> 20);
|
|
|
|
}
|
|
|
|
qapi_free_CpuInfoFastList(cpu_list);
|
|
|
|
g_free(node_mem);
|
|
|
|
|
|
|
|
done:
|
|
|
|
return human_readable_text_from_str(buf);
|
|
|
|
}
|
2023-01-24 13:19:23 +01:00
|
|
|
|
|
|
|
KvmInfo *qmp_query_kvm(Error **errp)
|
|
|
|
{
|
|
|
|
KvmInfo *info = g_malloc0(sizeof(*info));
|
|
|
|
|
|
|
|
info->enabled = kvm_enabled();
|
|
|
|
info->present = accel_find("kvm");
|
|
|
|
|
|
|
|
return info;
|
|
|
|
}
|
|
|
|
|
|
|
|
UuidInfo *qmp_query_uuid(Error **errp)
|
|
|
|
{
|
|
|
|
UuidInfo *info = g_malloc0(sizeof(*info));
|
|
|
|
|
|
|
|
info->UUID = qemu_uuid_unparse_strdup(&qemu_uuid);
|
|
|
|
return info;
|
|
|
|
}
|
|
|
|
|
|
|
|
void qmp_system_reset(Error **errp)
|
|
|
|
{
|
|
|
|
qemu_system_reset_request(SHUTDOWN_CAUSE_HOST_QMP_SYSTEM_RESET);
|
|
|
|
}
|
|
|
|
|
|
|
|
void qmp_system_powerdown(Error **errp)
|
|
|
|
{
|
|
|
|
qemu_system_powerdown_request();
|
|
|
|
}
|
|
|
|
|
|
|
|
void qmp_system_wakeup(Error **errp)
|
|
|
|
{
|
|
|
|
if (!qemu_wakeup_suspend_enabled()) {
|
|
|
|
error_setg(errp,
|
|
|
|
"wake-up from suspend is not supported by this guest");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
qemu_system_wakeup_request(QEMU_WAKEUP_REASON_OTHER, errp);
|
|
|
|
}
|
|
|
|
|
|
|
|
MemoryDeviceInfoList *qmp_query_memory_devices(Error **errp)
|
|
|
|
{
|
|
|
|
return qmp_memory_device_list();
|
|
|
|
}
|
|
|
|
|
|
|
|
MemoryInfo *qmp_query_memory_size_summary(Error **errp)
|
|
|
|
{
|
|
|
|
MemoryInfo *mem_info = g_new0(MemoryInfo, 1);
|
|
|
|
MachineState *ms = MACHINE(qdev_get_machine());
|
|
|
|
|
|
|
|
mem_info->base_memory = ms->ram_size;
|
|
|
|
|
|
|
|
mem_info->plugged_memory = get_plugged_memory_size();
|
|
|
|
mem_info->has_plugged_memory =
|
|
|
|
mem_info->plugged_memory != (uint64_t)-1;
|
|
|
|
|
|
|
|
return mem_info;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int qmp_x_query_rdma_foreach(Object *obj, void *opaque)
|
|
|
|
{
|
|
|
|
RdmaProvider *rdma;
|
|
|
|
RdmaProviderClass *k;
|
|
|
|
GString *buf = opaque;
|
|
|
|
|
|
|
|
if (object_dynamic_cast(obj, INTERFACE_RDMA_PROVIDER)) {
|
|
|
|
rdma = RDMA_PROVIDER(obj);
|
|
|
|
k = RDMA_PROVIDER_GET_CLASS(obj);
|
|
|
|
if (k->format_statistics) {
|
|
|
|
k->format_statistics(rdma, buf);
|
|
|
|
} else {
|
|
|
|
g_string_append_printf(buf,
|
|
|
|
"RDMA statistics not available for %s.\n",
|
|
|
|
object_get_typename(obj));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
HumanReadableText *qmp_x_query_rdma(Error **errp)
|
|
|
|
{
|
|
|
|
g_autoptr(GString) buf = g_string_new("");
|
|
|
|
|
|
|
|
object_child_foreach_recursive(object_get_root(),
|
|
|
|
qmp_x_query_rdma_foreach, buf);
|
|
|
|
|
|
|
|
return human_readable_text_from_str(buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
HumanReadableText *qmp_x_query_ramblock(Error **errp)
|
|
|
|
{
|
|
|
|
g_autoptr(GString) buf = ram_block_format();
|
|
|
|
|
|
|
|
return human_readable_text_from_str(buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int qmp_x_query_irq_foreach(Object *obj, void *opaque)
|
|
|
|
{
|
|
|
|
InterruptStatsProvider *intc;
|
|
|
|
InterruptStatsProviderClass *k;
|
|
|
|
GString *buf = opaque;
|
|
|
|
|
|
|
|
if (object_dynamic_cast(obj, TYPE_INTERRUPT_STATS_PROVIDER)) {
|
|
|
|
intc = INTERRUPT_STATS_PROVIDER(obj);
|
|
|
|
k = INTERRUPT_STATS_PROVIDER_GET_CLASS(obj);
|
|
|
|
uint64_t *irq_counts;
|
|
|
|
unsigned int nb_irqs, i;
|
|
|
|
if (k->get_statistics &&
|
|
|
|
k->get_statistics(intc, &irq_counts, &nb_irqs)) {
|
|
|
|
if (nb_irqs > 0) {
|
|
|
|
g_string_append_printf(buf, "IRQ statistics for %s:\n",
|
|
|
|
object_get_typename(obj));
|
|
|
|
for (i = 0; i < nb_irqs; i++) {
|
|
|
|
if (irq_counts[i] > 0) {
|
|
|
|
g_string_append_printf(buf, "%2d: %" PRId64 "\n", i,
|
|
|
|
irq_counts[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
g_string_append_printf(buf,
|
|
|
|
"IRQ statistics not available for %s.\n",
|
|
|
|
object_get_typename(obj));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
HumanReadableText *qmp_x_query_irq(Error **errp)
|
|
|
|
{
|
|
|
|
g_autoptr(GString) buf = g_string_new("");
|
|
|
|
|
|
|
|
object_child_foreach_recursive(object_get_root(),
|
|
|
|
qmp_x_query_irq_foreach, buf);
|
|
|
|
|
|
|
|
return human_readable_text_from_str(buf);
|
|
|
|
}
|