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 "hw/xen/xen-legacy-backend.h"
15 #include "chardev/char.h"
16 #include "sysemu/accel.h"
17 #include "sysemu/runstate.h"
18 #include "migration/misc.h"
19 #include "migration/global_state.h"
24 #define DPRINTF(fmt, ...) \
25 do { fprintf(stderr, "xen: " fmt, ## __VA_ARGS__); } while (0)
27 #define DPRINTF(fmt, ...) \
32 xenforeignmemory_handle
*xen_fmem
;
33 xendevicemodel_handle
*xen_dmod
;
35 static int store_dev_info(int domid
, Chardev
*cs
, const char *string
)
37 struct xs_handle
*xs
= NULL
;
43 /* Only continue if we're talking to a pty. */
44 if (!CHARDEV_IS_PTY(cs
)) {
47 pts
= cs
->filename
+ 4;
49 /* We now have everything we need to set the xenstore entry. */
52 fprintf(stderr
, "Could not contact XenStore\n");
56 path
= xs_get_domain_path(xs
, domid
);
58 fprintf(stderr
, "xs_get_domain_path() error\n");
61 newpath
= realloc(path
, (strlen(path
) + strlen(string
) +
63 if (newpath
== NULL
) {
64 fprintf(stderr
, "realloc error\n");
71 if (!xs_write(xs
, XBT_NULL
, path
, pts
, strlen(pts
))) {
72 fprintf(stderr
, "xs_write for '%s' fail", string
);
84 void xenstore_store_pv_console_info(int i
, Chardev
*chr
)
87 store_dev_info(xen_domid
, chr
, "/console");
90 snprintf(buf
, sizeof(buf
), "/device/console/%d", i
);
91 store_dev_info(xen_domid
, chr
, buf
);
96 static void xenstore_record_dm_state(struct xs_handle
*xs
, const char *state
)
101 error_report("xenstore connection not initialized");
105 snprintf(path
, sizeof (path
), "device-model/%u/state", xen_domid
);
107 * This call may fail when running restricted so don't make it fatal in
108 * that case. Toolstacks should instead use QMP to listen for state changes.
110 if (!xs_write(xs
, XBT_NULL
, path
, state
, strlen(state
)) &&
111 !xen_domid_restrict
) {
112 error_report("error recording dm state");
118 static void xen_change_state_handler(void *opaque
, int running
,
122 /* record state running */
123 xenstore_record_dm_state(xenstore
, "running");
127 static void xen_setup_post(MachineState
*ms
, AccelState
*accel
)
131 if (xen_domid_restrict
) {
132 rc
= xen_restrict(xen_domid
);
134 perror("xen: failed to restrict");
140 static int xen_init(MachineState
*ms
)
142 xen_xc
= xc_interface_open(0, 0, 0);
143 if (xen_xc
== NULL
) {
144 xen_pv_printf(NULL
, 0, "can't open xen interface\n");
147 xen_fmem
= xenforeignmemory_open(0, 0);
148 if (xen_fmem
== NULL
) {
149 xen_pv_printf(NULL
, 0, "can't open xen fmem interface\n");
150 xc_interface_close(xen_xc
);
153 xen_dmod
= xendevicemodel_open(0, 0);
154 if (xen_dmod
== NULL
) {
155 xen_pv_printf(NULL
, 0, "can't open xen devicemodel interface\n");
156 xenforeignmemory_close(xen_fmem
);
157 xc_interface_close(xen_xc
);
160 qemu_add_vm_change_state_handler(xen_change_state_handler
, NULL
);
164 static void xen_accel_class_init(ObjectClass
*oc
, void *data
)
166 AccelClass
*ac
= ACCEL_CLASS(oc
);
167 static GlobalProperty compat
[] = {
168 { "migration", "store-global-state", "off" },
169 { "migration", "send-configuration", "off" },
170 { "migration", "send-section-footer", "off" },
174 ac
->init_machine
= xen_init
;
175 ac
->setup_post
= xen_setup_post
;
176 ac
->allowed
= &xen_allowed
;
177 ac
->compat_props
= g_ptr_array_new();
179 compat_props_add(ac
->compat_props
, compat
, G_N_ELEMENTS(compat
));
182 #define TYPE_XEN_ACCEL ACCEL_CLASS_NAME("xen")
184 static const TypeInfo xen_accel_type
= {
185 .name
= TYPE_XEN_ACCEL
,
186 .parent
= TYPE_ACCEL
,
187 .class_init
= xen_accel_class_init
,
190 static void xen_type_init(void)
192 type_register_static(&xen_accel_type
);
195 type_init(xen_type_init
);