]> git.proxmox.com Git - mirror_qemu.git/blame - hw/xen/xen-common.c
qom: Drop object_property_set_description() parameter @errp
[mirror_qemu.git] / hw / xen / xen-common.c
CommitLineData
04b0de0e
WL
1/*
2 * Copyright (C) 2014 Citrix Systems UK Ltd.
3 *
4 * This work is licensed under the terms of the GNU GPL, version 2. See
5 * the COPYING file in the top-level directory.
6 *
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.
9 */
10
21cbfe5f 11#include "qemu/osdep.h"
47d17c0a 12#include "qemu/error-report.h"
0b8fa32f 13#include "qemu/module.h"
46472d82 14#include "qapi/error.h"
2d0ed5e6 15#include "hw/xen/xen-legacy-backend.h"
46472d82 16#include "hw/xen/xen_pt.h"
8228e353 17#include "chardev/char.h"
b152b05a 18#include "sysemu/accel.h"
54d31236 19#include "sysemu/runstate.h"
c4b63b7c 20#include "migration/misc.h"
84a899de 21#include "migration/global_state.h"
0dc0389f 22#include "hw/boards.h"
04b0de0e
WL
23
24//#define DEBUG_XEN
25
26#ifdef DEBUG_XEN
27#define DPRINTF(fmt, ...) \
28 do { fprintf(stderr, "xen: " fmt, ## __VA_ARGS__); } while (0)
29#else
30#define DPRINTF(fmt, ...) \
31 do { } while (0)
32#endif
33
260cabed
PD
34xc_interface *xen_xc;
35xenforeignmemory_handle *xen_fmem;
d655f34e 36xendevicemodel_handle *xen_dmod;
260cabed 37
0ec7b3e7 38static int store_dev_info(int domid, Chardev *cs, const char *string)
04b0de0e
WL
39{
40 struct xs_handle *xs = NULL;
41 char *path = NULL;
42 char *newpath = NULL;
43 char *pts = NULL;
44 int ret = -1;
45
46 /* Only continue if we're talking to a pty. */
315dd72d 47 if (!CHARDEV_IS_PTY(cs)) {
04b0de0e
WL
48 return 0;
49 }
50 pts = cs->filename + 4;
51
52 /* We now have everything we need to set the xenstore entry. */
53 xs = xs_open(0);
54 if (xs == NULL) {
55 fprintf(stderr, "Could not contact XenStore\n");
56 goto out;
57 }
58
59 path = xs_get_domain_path(xs, domid);
60 if (path == NULL) {
61 fprintf(stderr, "xs_get_domain_path() error\n");
62 goto out;
63 }
64 newpath = realloc(path, (strlen(path) + strlen(string) +
65 strlen("/tty") + 1));
66 if (newpath == NULL) {
67 fprintf(stderr, "realloc error\n");
68 goto out;
69 }
70 path = newpath;
71
72 strcat(path, string);
73 strcat(path, "/tty");
74 if (!xs_write(xs, XBT_NULL, path, pts, strlen(pts))) {
75 fprintf(stderr, "xs_write for '%s' fail", string);
76 goto out;
77 }
78 ret = 0;
79
80out:
81 free(path);
82 xs_close(xs);
83
84 return ret;
85}
86
0ec7b3e7 87void xenstore_store_pv_console_info(int i, Chardev *chr)
04b0de0e
WL
88{
89 if (i == 0) {
90 store_dev_info(xen_domid, chr, "/console");
91 } else {
92 char buf[32];
93 snprintf(buf, sizeof(buf), "/device/console/%d", i);
94 store_dev_info(xen_domid, chr, buf);
95 }
96}
97
98
99static void xenstore_record_dm_state(struct xs_handle *xs, const char *state)
100{
101 char path[50];
102
103 if (xs == NULL) {
47d17c0a 104 error_report("xenstore connection not initialized");
04b0de0e
WL
105 exit(1);
106 }
107
108 snprintf(path, sizeof (path), "device-model/%u/state", xen_domid);
4473348a
RL
109 /*
110 * This call may fail when running restricted so don't make it fatal in
111 * that case. Toolstacks should instead use QMP to listen for state changes.
112 */
113 if (!xs_write(xs, XBT_NULL, path, state, strlen(state)) &&
114 !xen_domid_restrict) {
47d17c0a 115 error_report("error recording dm state");
04b0de0e
WL
116 exit(1);
117 }
118}
119
120
121static void xen_change_state_handler(void *opaque, int running,
122 RunState state)
123{
124 if (running) {
125 /* record state running */
126 xenstore_record_dm_state(xenstore, "running");
127 }
128}
129
46472d82
PB
130static bool xen_get_igd_gfx_passthru(Object *obj, Error **errp)
131{
132 return has_igd_gfx_passthru;
133}
134
135static void xen_set_igd_gfx_passthru(Object *obj, bool value, Error **errp)
136{
137 has_igd_gfx_passthru = value;
138}
139
4564e63f
IJ
140static void xen_setup_post(MachineState *ms, AccelState *accel)
141{
142 int rc;
143
144 if (xen_domid_restrict) {
145 rc = xen_restrict(xen_domid);
146 if (rc < 0) {
147 perror("xen: failed to restrict");
148 exit(1);
149 }
150 }
151}
152
f6a1ef64 153static int xen_init(MachineState *ms)
04b0de0e 154{
0dc0389f
IM
155 MachineClass *mc = MACHINE_GET_CLASS(ms);
156
81daba58
IC
157 xen_xc = xc_interface_open(0, 0, 0);
158 if (xen_xc == NULL) {
96c77dba 159 xen_pv_printf(NULL, 0, "can't open xen interface\n");
04b0de0e
WL
160 return -1;
161 }
e0cb42ae
IC
162 xen_fmem = xenforeignmemory_open(0, 0);
163 if (xen_fmem == NULL) {
96c77dba 164 xen_pv_printf(NULL, 0, "can't open xen fmem interface\n");
e0cb42ae
IC
165 xc_interface_close(xen_xc);
166 return -1;
167 }
d655f34e
PD
168 xen_dmod = xendevicemodel_open(0, 0);
169 if (xen_dmod == NULL) {
170 xen_pv_printf(NULL, 0, "can't open xen devicemodel interface\n");
171 xenforeignmemory_close(xen_fmem);
172 xc_interface_close(xen_xc);
173 return -1;
174 }
04b0de0e 175 qemu_add_vm_change_state_handler(xen_change_state_handler, NULL);
0dc0389f
IM
176 /*
177 * opt out of system RAM being allocated by generic code
178 */
179 mc->default_ram_id = NULL;
04b0de0e
WL
180 return 0;
181}
182
b152b05a
EH
183static void xen_accel_class_init(ObjectClass *oc, void *data)
184{
185 AccelClass *ac = ACCEL_CLASS(oc);
88cbe073 186 static GlobalProperty compat[] = {
6c36bddf
EH
187 { "migration", "store-global-state", "off" },
188 { "migration", "send-configuration", "off" },
189 { "migration", "send-section-footer", "off" },
88cbe073 190 };
ea9ce893 191
b152b05a 192 ac->name = "Xen";
0d15da8e 193 ac->init_machine = xen_init;
4564e63f 194 ac->setup_post = xen_setup_post;
b152b05a 195 ac->allowed = &xen_allowed;
ea9ce893
MAL
196 ac->compat_props = g_ptr_array_new();
197
88cbe073 198 compat_props_add(ac->compat_props, compat, G_N_ELEMENTS(compat));
46472d82
PB
199
200 object_class_property_add_bool(oc, "igd-passthru",
201 xen_get_igd_gfx_passthru, xen_set_igd_gfx_passthru,
202 &error_abort);
203 object_class_property_set_description(oc, "igd-passthru",
7eecec7d 204 "Set on/off to enable/disable igd passthrou");
b152b05a
EH
205}
206
207#define TYPE_XEN_ACCEL ACCEL_CLASS_NAME("xen")
208
209static const TypeInfo xen_accel_type = {
210 .name = TYPE_XEN_ACCEL,
211 .parent = TYPE_ACCEL,
212 .class_init = xen_accel_class_init,
213};
214
215static void xen_type_init(void)
216{
217 type_register_static(&xen_accel_type);
218}
219
220type_init(xen_type_init);