blob: 5284b0dec17c7d3c21d654ed6c6a67c8aa4f9921 [file] [log] [blame]
Wei Liu04b0de02014-05-07 16:16:43 +00001/*
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
Peter Maydell21cbfe52016-01-26 18:17:06 +000011#include "qemu/osdep.h"
Alistair Francis47d17c02018-02-03 09:43:13 +010012#include "qemu/error-report.h"
Markus Armbruster0b8fa322019-05-23 16:35:07 +020013#include "qemu/module.h"
Paul Durrant2d0ed5e2019-01-08 14:48:46 +000014#include "hw/xen/xen-legacy-backend.h"
Marc-André Lureau8228e352017-01-26 17:19:46 +040015#include "chardev/char.h"
Eduardo Habkostb152b052014-09-26 17:45:25 -030016#include "sysemu/accel.h"
Markus Armbruster54d31232019-08-12 07:23:59 +020017#include "sysemu/runstate.h"
Juan Quintelac4b63b72017-04-24 19:02:44 +020018#include "migration/misc.h"
Juan Quintela84a899d2017-04-24 18:53:30 +020019#include "migration/global_state.h"
Wei Liu04b0de02014-05-07 16:16:43 +000020
21//#define DEBUG_XEN
22
23#ifdef DEBUG_XEN
24#define DPRINTF(fmt, ...) \
25 do { fprintf(stderr, "xen: " fmt, ## __VA_ARGS__); } while (0)
26#else
27#define DPRINTF(fmt, ...) \
28 do { } while (0)
29#endif
30
Paul Durrant260cabe2017-03-07 10:55:30 +000031xc_interface *xen_xc;
32xenforeignmemory_handle *xen_fmem;
Paul Durrantd655f342017-03-07 10:55:34 +000033xendevicemodel_handle *xen_dmod;
Paul Durrant260cabe2017-03-07 10:55:30 +000034
Marc-André Lureau0ec7b3e2016-12-07 16:20:22 +030035static int store_dev_info(int domid, Chardev *cs, const char *string)
Wei Liu04b0de02014-05-07 16:16:43 +000036{
37 struct xs_handle *xs = NULL;
38 char *path = NULL;
39 char *newpath = NULL;
40 char *pts = NULL;
41 int ret = -1;
42
43 /* Only continue if we're talking to a pty. */
Marc-André Lureau315dd722016-12-14 15:23:13 +030044 if (!CHARDEV_IS_PTY(cs)) {
Wei Liu04b0de02014-05-07 16:16:43 +000045 return 0;
46 }
47 pts = cs->filename + 4;
48
49 /* We now have everything we need to set the xenstore entry. */
50 xs = xs_open(0);
51 if (xs == NULL) {
52 fprintf(stderr, "Could not contact XenStore\n");
53 goto out;
54 }
55
56 path = xs_get_domain_path(xs, domid);
57 if (path == NULL) {
58 fprintf(stderr, "xs_get_domain_path() error\n");
59 goto out;
60 }
61 newpath = realloc(path, (strlen(path) + strlen(string) +
62 strlen("/tty") + 1));
63 if (newpath == NULL) {
64 fprintf(stderr, "realloc error\n");
65 goto out;
66 }
67 path = newpath;
68
69 strcat(path, string);
70 strcat(path, "/tty");
71 if (!xs_write(xs, XBT_NULL, path, pts, strlen(pts))) {
72 fprintf(stderr, "xs_write for '%s' fail", string);
73 goto out;
74 }
75 ret = 0;
76
77out:
78 free(path);
79 xs_close(xs);
80
81 return ret;
82}
83
Marc-André Lureau0ec7b3e2016-12-07 16:20:22 +030084void xenstore_store_pv_console_info(int i, Chardev *chr)
Wei Liu04b0de02014-05-07 16:16:43 +000085{
86 if (i == 0) {
87 store_dev_info(xen_domid, chr, "/console");
88 } else {
89 char buf[32];
90 snprintf(buf, sizeof(buf), "/device/console/%d", i);
91 store_dev_info(xen_domid, chr, buf);
92 }
93}
94
95
96static void xenstore_record_dm_state(struct xs_handle *xs, const char *state)
97{
98 char path[50];
99
100 if (xs == NULL) {
Alistair Francis47d17c02018-02-03 09:43:13 +0100101 error_report("xenstore connection not initialized");
Wei Liu04b0de02014-05-07 16:16:43 +0000102 exit(1);
103 }
104
105 snprintf(path, sizeof (path), "device-model/%u/state", xen_domid);
Ross Lagerwall44733482018-03-05 10:07:46 +0000106 /*
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.
109 */
110 if (!xs_write(xs, XBT_NULL, path, state, strlen(state)) &&
111 !xen_domid_restrict) {
Alistair Francis47d17c02018-02-03 09:43:13 +0100112 error_report("error recording dm state");
Wei Liu04b0de02014-05-07 16:16:43 +0000113 exit(1);
114 }
115}
116
117
118static void xen_change_state_handler(void *opaque, int running,
119 RunState state)
120{
121 if (running) {
122 /* record state running */
123 xenstore_record_dm_state(xenstore, "running");
124 }
125}
126
Ian Jackson4564e632017-09-15 16:02:24 +0100127static void xen_setup_post(MachineState *ms, AccelState *accel)
128{
129 int rc;
130
131 if (xen_domid_restrict) {
132 rc = xen_restrict(xen_domid);
133 if (rc < 0) {
134 perror("xen: failed to restrict");
135 exit(1);
136 }
137 }
138}
139
Eduardo Habkostf6a1ef62014-09-26 17:45:30 -0300140static int xen_init(MachineState *ms)
Wei Liu04b0de02014-05-07 16:16:43 +0000141{
Ian Campbell81daba582016-02-10 11:07:03 +0000142 xen_xc = xc_interface_open(0, 0, 0);
143 if (xen_xc == NULL) {
Emil Condrea96c77db2016-10-25 08:50:14 +0300144 xen_pv_printf(NULL, 0, "can't open xen interface\n");
Wei Liu04b0de02014-05-07 16:16:43 +0000145 return -1;
146 }
Ian Campbelle0cb42a2016-01-15 13:23:41 +0000147 xen_fmem = xenforeignmemory_open(0, 0);
148 if (xen_fmem == NULL) {
Emil Condrea96c77db2016-10-25 08:50:14 +0300149 xen_pv_printf(NULL, 0, "can't open xen fmem interface\n");
Ian Campbelle0cb42a2016-01-15 13:23:41 +0000150 xc_interface_close(xen_xc);
151 return -1;
152 }
Paul Durrantd655f342017-03-07 10:55:34 +0000153 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);
158 return -1;
159 }
Wei Liu04b0de02014-05-07 16:16:43 +0000160 qemu_add_vm_change_state_handler(xen_change_state_handler, NULL);
Wei Liu04b0de02014-05-07 16:16:43 +0000161 return 0;
162}
163
Eduardo Habkostb152b052014-09-26 17:45:25 -0300164static void xen_accel_class_init(ObjectClass *oc, void *data)
165{
166 AccelClass *ac = ACCEL_CLASS(oc);
Marc-André Lureau88cbe072018-12-12 18:01:23 +0400167 static GlobalProperty compat[] = {
Eduardo Habkost6c36bdd2019-01-07 17:30:20 -0200168 { "migration", "store-global-state", "off" },
169 { "migration", "send-configuration", "off" },
170 { "migration", "send-section-footer", "off" },
Marc-André Lureau88cbe072018-12-12 18:01:23 +0400171 };
Marc-André Lureauea9ce892018-11-26 22:04:32 +0400172
Eduardo Habkostb152b052014-09-26 17:45:25 -0300173 ac->name = "Xen";
Eduardo Habkost0d15da82014-09-26 17:45:29 -0300174 ac->init_machine = xen_init;
Ian Jackson4564e632017-09-15 16:02:24 +0100175 ac->setup_post = xen_setup_post;
Eduardo Habkostb152b052014-09-26 17:45:25 -0300176 ac->allowed = &xen_allowed;
Marc-André Lureauea9ce892018-11-26 22:04:32 +0400177 ac->compat_props = g_ptr_array_new();
178
Marc-André Lureau88cbe072018-12-12 18:01:23 +0400179 compat_props_add(ac->compat_props, compat, G_N_ELEMENTS(compat));
Eduardo Habkostb152b052014-09-26 17:45:25 -0300180}
181
182#define TYPE_XEN_ACCEL ACCEL_CLASS_NAME("xen")
183
184static const TypeInfo xen_accel_type = {
185 .name = TYPE_XEN_ACCEL,
186 .parent = TYPE_ACCEL,
187 .class_init = xen_accel_class_init,
188};
189
190static void xen_type_init(void)
191{
192 type_register_static(&xen_accel_type);
193}
194
195type_init(xen_type_init);