2 * QMP commands related to machines and CPUs
4 * Copyright (C) 2014 Red Hat Inc
6 * This work is licensed under the terms of the GNU GPL, version 2 or later.
7 * See the COPYING file in the top-level directory.
10 #include "qemu/osdep.h"
12 #include "hw/boards.h"
13 #include "qapi/error.h"
14 #include "qapi/qapi-builtin-visit.h"
15 #include "qapi/qapi-commands-machine.h"
16 #include "qapi/qmp/qerror.h"
17 #include "qapi/qmp/qobject.h"
18 #include "qapi/qobject-input-visitor.h"
19 #include "qemu/main-loop.h"
20 #include "qom/qom-qobject.h"
21 #include "sysemu/hostmem.h"
22 #include "sysemu/hw_accel.h"
23 #include "sysemu/numa.h"
24 #include "sysemu/runstate.h"
25 #include "sysemu/sysemu.h"
27 static void cpustate_to_cpuinfo_s390(CpuInfoS390
*info
, const CPUState
*cpu
)
30 S390CPU
*s390_cpu
= S390_CPU(cpu
);
31 CPUS390XState
*env
= &s390_cpu
->env
;
33 info
->cpu_state
= env
->cpu_state
;
40 * fast means: we NEVER interrupt vCPU threads to retrieve
41 * information from KVM.
43 CpuInfoFastList
*qmp_query_cpus_fast(Error
**errp
)
45 MachineState
*ms
= MACHINE(qdev_get_machine());
46 MachineClass
*mc
= MACHINE_GET_CLASS(ms
);
47 CpuInfoFastList
*head
= NULL
, **tail
= &head
;
48 SysEmuTarget target
= qapi_enum_parse(&SysEmuTarget_lookup
, TARGET_NAME
,
53 CpuInfoFast
*value
= g_malloc0(sizeof(*value
));
55 value
->cpu_index
= cpu
->cpu_index
;
56 value
->qom_path
= object_get_canonical_path(OBJECT(cpu
));
57 value
->thread_id
= cpu
->thread_id
;
59 value
->has_props
= !!mc
->cpu_index_to_instance_props
;
60 if (value
->has_props
) {
61 CpuInstanceProperties
*props
;
62 props
= g_malloc0(sizeof(*props
));
63 *props
= mc
->cpu_index_to_instance_props(ms
, cpu
->cpu_index
);
67 value
->target
= target
;
68 if (target
== SYS_EMU_TARGET_S390X
) {
69 cpustate_to_cpuinfo_s390(&value
->u
.s390x
, cpu
);
72 QAPI_LIST_APPEND(tail
, value
);
78 MachineInfoList
*qmp_query_machines(Error
**errp
)
80 GSList
*el
, *machines
= object_class_get_list(TYPE_MACHINE
, false);
81 MachineInfoList
*mach_list
= NULL
;
83 for (el
= machines
; el
; el
= el
->next
) {
84 MachineClass
*mc
= el
->data
;
87 info
= g_malloc0(sizeof(*info
));
89 info
->has_is_default
= true;
90 info
->is_default
= true;
94 info
->has_alias
= true;
95 info
->alias
= g_strdup(mc
->alias
);
98 info
->name
= g_strdup(mc
->name
);
99 info
->cpu_max
= !mc
->max_cpus
? 1 : mc
->max_cpus
;
100 info
->hotpluggable_cpus
= mc
->has_hotpluggable_cpus
;
101 info
->numa_mem_supported
= mc
->numa_mem_supported
;
102 info
->deprecated
= !!mc
->deprecation_reason
;
103 if (mc
->default_cpu_type
) {
104 info
->default_cpu_type
= g_strdup(mc
->default_cpu_type
);
105 info
->has_default_cpu_type
= true;
107 if (mc
->default_ram_id
) {
108 info
->default_ram_id
= g_strdup(mc
->default_ram_id
);
109 info
->has_default_ram_id
= true;
112 QAPI_LIST_PREPEND(mach_list
, info
);
115 g_slist_free(machines
);
119 CurrentMachineParams
*qmp_query_current_machine(Error
**errp
)
121 CurrentMachineParams
*params
= g_malloc0(sizeof(*params
));
122 params
->wakeup_suspend_support
= qemu_wakeup_suspend_enabled();
127 TargetInfo
*qmp_query_target(Error
**errp
)
129 TargetInfo
*info
= g_malloc0(sizeof(*info
));
131 info
->arch
= qapi_enum_parse(&SysEmuTarget_lookup
, TARGET_NAME
, -1,
137 HotpluggableCPUList
*qmp_query_hotpluggable_cpus(Error
**errp
)
139 MachineState
*ms
= MACHINE(qdev_get_machine());
140 MachineClass
*mc
= MACHINE_GET_CLASS(ms
);
142 if (!mc
->has_hotpluggable_cpus
) {
143 error_setg(errp
, QERR_FEATURE_DISABLED
, "query-hotpluggable-cpus");
147 return machine_query_hotpluggable_cpus(ms
);
150 void qmp_set_numa_node(NumaOptions
*cmd
, Error
**errp
)
152 if (phase_check(PHASE_MACHINE_INITIALIZED
)) {
153 error_setg(errp
, "The command is permitted only before the machine has been created");
157 set_numa_options(MACHINE(qdev_get_machine()), cmd
, errp
);
160 static int query_memdev(Object
*obj
, void *opaque
)
162 MemdevList
**list
= opaque
;
167 if (object_dynamic_cast(obj
, TYPE_MEMORY_BACKEND
)) {
168 m
= g_malloc0(sizeof(*m
));
170 m
->id
= g_strdup(object_get_canonical_path_component(obj
));
173 m
->size
= object_property_get_uint(obj
, "size", &error_abort
);
174 m
->merge
= object_property_get_bool(obj
, "merge", &error_abort
);
175 m
->dump
= object_property_get_bool(obj
, "dump", &error_abort
);
176 m
->prealloc
= object_property_get_bool(obj
, "prealloc", &error_abort
);
177 m
->policy
= object_property_get_enum(obj
, "policy", "HostMemPolicy",
179 host_nodes
= object_property_get_qobject(obj
,
182 v
= qobject_input_visitor_new(host_nodes
);
183 visit_type_uint16List(v
, NULL
, &m
->host_nodes
, &error_abort
);
185 qobject_unref(host_nodes
);
187 QAPI_LIST_PREPEND(*list
, m
);
193 MemdevList
*qmp_query_memdev(Error
**errp
)
195 Object
*obj
= object_get_objects_root();
196 MemdevList
*list
= NULL
;
198 object_child_foreach(obj
, query_memdev
, &list
);