2 * Copyright (C) 2014 Citrix Systems UK Ltd.
4 * This work is licensed under the terms of the GNU GPL, version 2. See
5 * the COPYING file in the top-level directory.
7 * Contributions after 2012-01-13 are licensed under the terms of the
8 * GNU GPL, version 2 or (at your option) any later version.
11 #include "qemu/osdep.h"
12 #include "qemu/error-report.h"
13 #include "qemu/module.h"
14 #include "qapi/error.h"
15 #include "hw/xen/xen-legacy-backend.h"
16 #include "hw/xen/xen_pt.h"
17 #include "chardev/char.h"
18 #include "sysemu/accel.h"
19 #include "sysemu/cpus.h"
20 #include "sysemu/xen.h"
21 #include "sysemu/runstate.h"
22 #include "migration/misc.h"
23 #include "migration/global_state.h"
24 #include "hw/boards.h"
29 #define DPRINTF(fmt, ...) \
30 do { fprintf(stderr, "xen: " fmt, ## __VA_ARGS__); } while (0)
32 #define DPRINTF(fmt, ...) \
39 xenforeignmemory_handle
*xen_fmem
;
40 xendevicemodel_handle
*xen_dmod
;
42 static int store_dev_info(int domid
, Chardev
*cs
, const char *string
)
44 struct xs_handle
*xs
= NULL
;
50 /* Only continue if we're talking to a pty. */
51 if (!CHARDEV_IS_PTY(cs
)) {
54 pts
= cs
->filename
+ 4;
56 /* We now have everything we need to set the xenstore entry. */
59 fprintf(stderr
, "Could not contact XenStore\n");
63 path
= xs_get_domain_path(xs
, domid
);
65 fprintf(stderr
, "xs_get_domain_path() error\n");
68 newpath
= realloc(path
, (strlen(path
) + strlen(string
) +
70 if (newpath
== NULL
) {
71 fprintf(stderr
, "realloc error\n");
78 if (!xs_write(xs
, XBT_NULL
, path
, pts
, strlen(pts
))) {
79 fprintf(stderr
, "xs_write for '%s' fail", string
);
91 void xenstore_store_pv_console_info(int i
, Chardev
*chr
)
94 store_dev_info(xen_domid
, chr
, "/console");
97 snprintf(buf
, sizeof(buf
), "/device/console/%d", i
);
98 store_dev_info(xen_domid
, chr
, buf
);
103 static void xenstore_record_dm_state(struct xs_handle
*xs
, const char *state
)
108 error_report("xenstore connection not initialized");
112 snprintf(path
, sizeof (path
), "device-model/%u/state", xen_domid
);
114 * This call may fail when running restricted so don't make it fatal in
115 * that case. Toolstacks should instead use QMP to listen for state changes.
117 if (!xs_write(xs
, XBT_NULL
, path
, state
, strlen(state
)) &&
118 !xen_domid_restrict
) {
119 error_report("error recording dm state");
125 static void xen_change_state_handler(void *opaque
, int running
,
129 /* record state running */
130 xenstore_record_dm_state(xenstore
, "running");
134 static bool xen_get_igd_gfx_passthru(Object
*obj
, Error
**errp
)
136 return xen_igd_gfx_pt_enabled();
139 static void xen_set_igd_gfx_passthru(Object
*obj
, bool value
, Error
**errp
)
141 xen_igd_gfx_pt_set(value
, errp
);
144 static void xen_setup_post(MachineState
*ms
, AccelState
*accel
)
148 if (xen_domid_restrict
) {
149 rc
= xen_restrict(xen_domid
);
151 perror("xen: failed to restrict");
157 const CpusAccel xen_cpus
= {
158 .create_vcpu_thread
= dummy_start_vcpu_thread
,
161 static int xen_init(MachineState
*ms
)
163 MachineClass
*mc
= MACHINE_GET_CLASS(ms
);
165 xen_xc
= xc_interface_open(0, 0, 0);
166 if (xen_xc
== NULL
) {
167 xen_pv_printf(NULL
, 0, "can't open xen interface\n");
170 xen_fmem
= xenforeignmemory_open(0, 0);
171 if (xen_fmem
== NULL
) {
172 xen_pv_printf(NULL
, 0, "can't open xen fmem interface\n");
173 xc_interface_close(xen_xc
);
176 xen_dmod
= xendevicemodel_open(0, 0);
177 if (xen_dmod
== NULL
) {
178 xen_pv_printf(NULL
, 0, "can't open xen devicemodel interface\n");
179 xenforeignmemory_close(xen_fmem
);
180 xc_interface_close(xen_xc
);
183 qemu_add_vm_change_state_handler(xen_change_state_handler
, NULL
);
185 * opt out of system RAM being allocated by generic code
187 mc
->default_ram_id
= NULL
;
189 cpus_register_accel(&xen_cpus
);
194 static void xen_accel_class_init(ObjectClass
*oc
, void *data
)
196 AccelClass
*ac
= ACCEL_CLASS(oc
);
197 static GlobalProperty compat
[] = {
198 { "migration", "store-global-state", "off" },
199 { "migration", "send-configuration", "off" },
200 { "migration", "send-section-footer", "off" },
204 ac
->init_machine
= xen_init
;
205 ac
->setup_post
= xen_setup_post
;
206 ac
->allowed
= &xen_allowed
;
207 ac
->compat_props
= g_ptr_array_new();
209 compat_props_add(ac
->compat_props
, compat
, G_N_ELEMENTS(compat
));
211 object_class_property_add_bool(oc
, "igd-passthru",
212 xen_get_igd_gfx_passthru
, xen_set_igd_gfx_passthru
);
213 object_class_property_set_description(oc
, "igd-passthru",
214 "Set on/off to enable/disable igd passthrou");
217 #define TYPE_XEN_ACCEL ACCEL_CLASS_NAME("xen")
219 static const TypeInfo xen_accel_type
= {
220 .name
= TYPE_XEN_ACCEL
,
221 .parent
= TYPE_ACCEL
,
222 .class_init
= xen_accel_class_init
,
225 static void xen_type_init(void)
227 type_register_static(&xen_accel_type
);
230 type_init(xen_type_init
);