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 11 #include "qemu/osdep.h" 12 #include "qemu/error-report.h" 13 #include "hw/xen/xen_backend.h" 14 #include "chardev/char.h" 15 #include "sysemu/accel.h" 16 #include "migration/misc.h" 17 #include "migration/global_state.h" 18 19 //#define DEBUG_XEN 20 21 #ifdef DEBUG_XEN 22 #define DPRINTF(fmt, ...) \ 23 do { fprintf(stderr, "xen: " fmt, ## __VA_ARGS__); } while (0) 24 #else 25 #define DPRINTF(fmt, ...) \ 26 do { } while (0) 27 #endif 28 29 xc_interface *xen_xc; 30 xenforeignmemory_handle *xen_fmem; 31 xendevicemodel_handle *xen_dmod; 32 33 static int store_dev_info(int domid, Chardev *cs, const char *string) 34 { 35 struct xs_handle *xs = NULL; 36 char *path = NULL; 37 char *newpath = NULL; 38 char *pts = NULL; 39 int ret = -1; 40 41 /* Only continue if we're talking to a pty. */ 42 if (!CHARDEV_IS_PTY(cs)) { 43 return 0; 44 } 45 pts = cs->filename + 4; 46 47 /* We now have everything we need to set the xenstore entry. */ 48 xs = xs_open(0); 49 if (xs == NULL) { 50 fprintf(stderr, "Could not contact XenStore\n"); 51 goto out; 52 } 53 54 path = xs_get_domain_path(xs, domid); 55 if (path == NULL) { 56 fprintf(stderr, "xs_get_domain_path() error\n"); 57 goto out; 58 } 59 newpath = realloc(path, (strlen(path) + strlen(string) + 60 strlen("/tty") + 1)); 61 if (newpath == NULL) { 62 fprintf(stderr, "realloc error\n"); 63 goto out; 64 } 65 path = newpath; 66 67 strcat(path, string); 68 strcat(path, "/tty"); 69 if (!xs_write(xs, XBT_NULL, path, pts, strlen(pts))) { 70 fprintf(stderr, "xs_write for '%s' fail", string); 71 goto out; 72 } 73 ret = 0; 74 75 out: 76 free(path); 77 xs_close(xs); 78 79 return ret; 80 } 81 82 void xenstore_store_pv_console_info(int i, Chardev *chr) 83 { 84 if (i == 0) { 85 store_dev_info(xen_domid, chr, "/console"); 86 } else { 87 char buf[32]; 88 snprintf(buf, sizeof(buf), "/device/console/%d", i); 89 store_dev_info(xen_domid, chr, buf); 90 } 91 } 92 93 94 static void xenstore_record_dm_state(struct xs_handle *xs, const char *state) 95 { 96 char path[50]; 97 98 if (xs == NULL) { 99 error_report("xenstore connection not initialized"); 100 exit(1); 101 } 102 103 snprintf(path, sizeof (path), "device-model/%u/state", xen_domid); 104 if (!xs_write(xs, XBT_NULL, path, state, strlen(state))) { 105 error_report("error recording dm state"); 106 exit(1); 107 } 108 } 109 110 111 static void xen_change_state_handler(void *opaque, int running, 112 RunState state) 113 { 114 if (running) { 115 /* record state running */ 116 xenstore_record_dm_state(xenstore, "running"); 117 } 118 } 119 120 static void xen_setup_post(MachineState *ms, AccelState *accel) 121 { 122 int rc; 123 124 if (xen_domid_restrict) { 125 rc = xen_restrict(xen_domid); 126 if (rc < 0) { 127 perror("xen: failed to restrict"); 128 exit(1); 129 } 130 } 131 } 132 133 static int xen_init(MachineState *ms) 134 { 135 xen_xc = xc_interface_open(0, 0, 0); 136 if (xen_xc == NULL) { 137 xen_pv_printf(NULL, 0, "can't open xen interface\n"); 138 return -1; 139 } 140 xen_fmem = xenforeignmemory_open(0, 0); 141 if (xen_fmem == NULL) { 142 xen_pv_printf(NULL, 0, "can't open xen fmem interface\n"); 143 xc_interface_close(xen_xc); 144 return -1; 145 } 146 xen_dmod = xendevicemodel_open(0, 0); 147 if (xen_dmod == NULL) { 148 xen_pv_printf(NULL, 0, "can't open xen devicemodel interface\n"); 149 xenforeignmemory_close(xen_fmem); 150 xc_interface_close(xen_xc); 151 return -1; 152 } 153 qemu_add_vm_change_state_handler(xen_change_state_handler, NULL); 154 return 0; 155 } 156 157 static GlobalProperty xen_compat_props[] = { 158 { 159 .driver = "migration", 160 .property = "store-global-state", 161 .value = "off", 162 }, 163 { 164 .driver = "migration", 165 .property = "send-configuration", 166 .value = "off", 167 }, 168 { 169 .driver = "migration", 170 .property = "send-section-footer", 171 .value = "off", 172 }, 173 { /* end of list */ }, 174 }; 175 176 static void xen_accel_class_init(ObjectClass *oc, void *data) 177 { 178 AccelClass *ac = ACCEL_CLASS(oc); 179 ac->name = "Xen"; 180 ac->init_machine = xen_init; 181 ac->setup_post = xen_setup_post; 182 ac->allowed = &xen_allowed; 183 ac->global_props = xen_compat_props; 184 } 185 186 #define TYPE_XEN_ACCEL ACCEL_CLASS_NAME("xen") 187 188 static const TypeInfo xen_accel_type = { 189 .name = TYPE_XEN_ACCEL, 190 .parent = TYPE_ACCEL, 191 .class_init = xen_accel_class_init, 192 }; 193 194 static void xen_type_init(void) 195 { 196 type_register_static(&xen_accel_type); 197 } 198 199 type_init(xen_type_init); 200