xref: /freebsd/sys/x86/xen/hvm.c (revision 325151a3)
1 /*
2  * Copyright (c) 2008, 2013 Citrix Systems, Inc.
3  * Copyright (c) 2012 Spectra Logic Corporation
4  * All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS AS IS'' AND
16  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25  * SUCH DAMAGE.
26  */
27 
28 #include <sys/cdefs.h>
29 __FBSDID("$FreeBSD$");
30 
31 #include <sys/param.h>
32 #include <sys/bus.h>
33 #include <sys/kernel.h>
34 #include <sys/malloc.h>
35 #include <sys/proc.h>
36 #include <sys/smp.h>
37 #include <sys/systm.h>
38 
39 #include <vm/vm.h>
40 #include <vm/pmap.h>
41 
42 #include <dev/pci/pcivar.h>
43 
44 #include <machine/cpufunc.h>
45 #include <machine/cpu.h>
46 #include <machine/smp.h>
47 
48 #include <x86/apicreg.h>
49 
50 #include <xen/xen-os.h>
51 #include <xen/features.h>
52 #include <xen/gnttab.h>
53 #include <xen/hypervisor.h>
54 #include <xen/hvm.h>
55 #include <xen/xen_intr.h>
56 
57 #include <xen/interface/hvm/params.h>
58 #include <xen/interface/vcpu.h>
59 
60 /*--------------------------- Forward Declarations ---------------------------*/
61 #ifdef SMP
62 static void xen_hvm_cpu_resume(void);
63 #endif
64 static void xen_hvm_cpu_init(void);
65 
66 /*---------------------------- Extern Declarations ---------------------------*/
67 /* Variables used by mp_machdep to perform the bitmap IPI */
68 extern volatile u_int cpu_ipi_pending[MAXCPU];
69 
70 /*-------------------------------- Local Types -------------------------------*/
71 enum xen_hvm_init_type {
72 	XEN_HVM_INIT_COLD,
73 	XEN_HVM_INIT_CANCELLED_SUSPEND,
74 	XEN_HVM_INIT_RESUME
75 };
76 
77 /*-------------------------------- Global Data -------------------------------*/
78 enum xen_domain_type xen_domain_type = XEN_NATIVE;
79 
80 #ifdef SMP
81 struct cpu_ops xen_hvm_cpu_ops = {
82 	.cpu_init	= xen_hvm_cpu_init,
83 	.cpu_resume	= xen_hvm_cpu_resume
84 };
85 #endif
86 
87 static MALLOC_DEFINE(M_XENHVM, "xen_hvm", "Xen HVM PV Support");
88 
89 /**
90  * If non-zero, the hypervisor has been configured to use a direct
91  * IDT event callback for interrupt injection.
92  */
93 int xen_vector_callback_enabled;
94 
95 /*------------------------------- Per-CPU Data -------------------------------*/
96 DPCPU_DEFINE(struct vcpu_info, vcpu_local_info);
97 DPCPU_DEFINE(struct vcpu_info *, vcpu_info);
98 
99 /*------------------ Hypervisor Access Shared Memory Regions -----------------*/
100 shared_info_t *HYPERVISOR_shared_info;
101 start_info_t *HYPERVISOR_start_info;
102 
103 
104 /*------------------------------ Sysctl tunables -----------------------------*/
105 int xen_disable_pv_disks = 0;
106 int xen_disable_pv_nics = 0;
107 TUNABLE_INT("hw.xen.disable_pv_disks", &xen_disable_pv_disks);
108 TUNABLE_INT("hw.xen.disable_pv_nics", &xen_disable_pv_nics);
109 
110 #ifdef SMP
111 /*---------------------- XEN diverged cpu operations -------------------------*/
112 static void
113 xen_hvm_cpu_resume(void)
114 {
115 	u_int cpuid = PCPU_GET(cpuid);
116 
117 	/*
118 	 * Reset pending bitmap IPIs, because Xen doesn't preserve pending
119 	 * event channels on migration.
120 	 */
121 	cpu_ipi_pending[cpuid] = 0;
122 
123 	/* register vcpu_info area */
124 	xen_hvm_cpu_init();
125 }
126 #endif
127 /*---------------------- XEN Hypervisor Probe and Setup ----------------------*/
128 static uint32_t
129 xen_hvm_cpuid_base(void)
130 {
131 	uint32_t base, regs[4];
132 
133 	for (base = 0x40000000; base < 0x40010000; base += 0x100) {
134 		do_cpuid(base, regs);
135 		if (!memcmp("XenVMMXenVMM", &regs[1], 12)
136 		    && (regs[0] - base) >= 2)
137 			return (base);
138 	}
139 	return (0);
140 }
141 
142 /*
143  * Allocate and fill in the hypcall page.
144  */
145 static int
146 xen_hvm_init_hypercall_stubs(enum xen_hvm_init_type init_type)
147 {
148 	uint32_t base, regs[4];
149 	int i;
150 
151 	if (xen_pv_domain()) {
152 		/* hypercall page is already set in the PV case */
153 		return (0);
154 	}
155 
156 	base = xen_hvm_cpuid_base();
157 	if (base == 0)
158 		return (ENXIO);
159 
160 	if (init_type == XEN_HVM_INIT_COLD) {
161 		do_cpuid(base + 1, regs);
162 		printf("XEN: Hypervisor version %d.%d detected.\n",
163 		    regs[0] >> 16, regs[0] & 0xffff);
164 	}
165 
166 	/*
167 	 * Find the hypercall pages.
168 	 */
169 	do_cpuid(base + 2, regs);
170 
171 	for (i = 0; i < regs[0]; i++)
172 		wrmsr(regs[1], vtophys(&hypercall_page + i * PAGE_SIZE) + i);
173 
174 	return (0);
175 }
176 
177 static void
178 xen_hvm_init_shared_info_page(void)
179 {
180 	struct xen_add_to_physmap xatp;
181 
182 	if (xen_pv_domain()) {
183 		/*
184 		 * Already setup in the PV case, shared_info is passed inside
185 		 * of the start_info struct at start of day.
186 		 */
187 		return;
188 	}
189 
190 	if (HYPERVISOR_shared_info == NULL) {
191 		HYPERVISOR_shared_info = malloc(PAGE_SIZE, M_XENHVM, M_NOWAIT);
192 		if (HYPERVISOR_shared_info == NULL)
193 			panic("Unable to allocate Xen shared info page");
194 	}
195 
196 	xatp.domid = DOMID_SELF;
197 	xatp.idx = 0;
198 	xatp.space = XENMAPSPACE_shared_info;
199 	xatp.gpfn = vtophys(HYPERVISOR_shared_info) >> PAGE_SHIFT;
200 	if (HYPERVISOR_memory_op(XENMEM_add_to_physmap, &xatp))
201 		panic("HYPERVISOR_memory_op failed");
202 }
203 
204 /*
205  * Tell the hypervisor how to contact us for event channel callbacks.
206  */
207 void
208 xen_hvm_set_callback(device_t dev)
209 {
210 	struct xen_hvm_param xhp;
211 	int irq;
212 
213 	if (xen_vector_callback_enabled)
214 		return;
215 
216 	xhp.domid = DOMID_SELF;
217 	xhp.index = HVM_PARAM_CALLBACK_IRQ;
218 	if (xen_feature(XENFEAT_hvm_callback_vector) != 0) {
219 		int error;
220 
221 		xhp.value = HVM_CALLBACK_VECTOR(IDT_EVTCHN);
222 		error = HYPERVISOR_hvm_op(HVMOP_set_param, &xhp);
223 		if (error == 0) {
224 			xen_vector_callback_enabled = 1;
225 			return;
226 		}
227 		printf("Xen HVM callback vector registration failed (%d). "
228 		    "Falling back to emulated device interrupt\n", error);
229 	}
230 	xen_vector_callback_enabled = 0;
231 	if (dev == NULL) {
232 		/*
233 		 * Called from early boot or resume.
234 		 * xenpci will invoke us again later.
235 		 */
236 		return;
237 	}
238 
239 	irq = pci_get_irq(dev);
240 	if (irq < 16) {
241 		xhp.value = HVM_CALLBACK_GSI(irq);
242 	} else {
243 		u_int slot;
244 		u_int pin;
245 
246 		slot = pci_get_slot(dev);
247 		pin = pci_get_intpin(dev) - 1;
248 		xhp.value = HVM_CALLBACK_PCI_INTX(slot, pin);
249 	}
250 
251 	if (HYPERVISOR_hvm_op(HVMOP_set_param, &xhp) != 0)
252 		panic("Can't set evtchn callback");
253 }
254 
255 #define	XEN_MAGIC_IOPORT 0x10
256 enum {
257 	XMI_MAGIC			 = 0x49d2,
258 	XMI_UNPLUG_IDE_DISKS		 = 0x01,
259 	XMI_UNPLUG_NICS			 = 0x02,
260 	XMI_UNPLUG_IDE_EXCEPT_PRI_MASTER = 0x04
261 };
262 
263 static void
264 xen_hvm_disable_emulated_devices(void)
265 {
266 	u_short disable_devs = 0;
267 
268 	if (xen_pv_domain()) {
269 		/*
270 		 * No emulated devices in the PV case, so no need to unplug
271 		 * anything.
272 		 */
273 		if (xen_disable_pv_disks != 0 || xen_disable_pv_nics != 0)
274 			printf("PV devices cannot be disabled in PV guests\n");
275 		return;
276 	}
277 
278 	if (inw(XEN_MAGIC_IOPORT) != XMI_MAGIC)
279 		return;
280 
281 	if (xen_disable_pv_disks == 0) {
282 		if (bootverbose)
283 			printf("XEN: disabling emulated disks\n");
284 		disable_devs |= XMI_UNPLUG_IDE_DISKS;
285 	}
286 	if (xen_disable_pv_nics == 0) {
287 		if (bootverbose)
288 			printf("XEN: disabling emulated nics\n");
289 		disable_devs |= XMI_UNPLUG_NICS;
290 	}
291 
292 	if (disable_devs != 0)
293 		outw(XEN_MAGIC_IOPORT, disable_devs);
294 }
295 
296 static void
297 xen_hvm_init(enum xen_hvm_init_type init_type)
298 {
299 	int error;
300 	int i;
301 
302 	if (init_type == XEN_HVM_INIT_CANCELLED_SUSPEND)
303 		return;
304 
305 	error = xen_hvm_init_hypercall_stubs(init_type);
306 
307 	switch (init_type) {
308 	case XEN_HVM_INIT_COLD:
309 		if (error != 0)
310 			return;
311 
312 		/*
313 		 * If xen_domain_type is not set at this point
314 		 * it means we are inside a (PV)HVM guest, because
315 		 * for PVH the guest type is set much earlier
316 		 * (see hammer_time_xen).
317 		 */
318 		if (!xen_domain()) {
319 			xen_domain_type = XEN_HVM_DOMAIN;
320 			vm_guest = VM_GUEST_XEN;
321 		}
322 
323 		setup_xen_features();
324 #ifdef SMP
325 		cpu_ops = xen_hvm_cpu_ops;
326 #endif
327 		break;
328 	case XEN_HVM_INIT_RESUME:
329 		if (error != 0)
330 			panic("Unable to init Xen hypercall stubs on resume");
331 
332 		/* Clear stale vcpu_info. */
333 		CPU_FOREACH(i)
334 			DPCPU_ID_SET(i, vcpu_info, NULL);
335 		break;
336 	default:
337 		panic("Unsupported HVM initialization type");
338 	}
339 
340 	xen_vector_callback_enabled = 0;
341 	xen_hvm_set_callback(NULL);
342 
343 	/*
344 	 * On (PV)HVM domains we need to request the hypervisor to
345 	 * fill the shared info page, for PVH guest the shared_info page
346 	 * is passed inside the start_info struct and is already set, so this
347 	 * functions are no-ops.
348 	 */
349 	xen_hvm_init_shared_info_page();
350 	xen_hvm_disable_emulated_devices();
351 }
352 
353 void
354 xen_hvm_suspend(void)
355 {
356 }
357 
358 void
359 xen_hvm_resume(bool suspend_cancelled)
360 {
361 
362 	xen_hvm_init(suspend_cancelled ?
363 	    XEN_HVM_INIT_CANCELLED_SUSPEND : XEN_HVM_INIT_RESUME);
364 
365 	/* Register vcpu_info area for CPU#0. */
366 	xen_hvm_cpu_init();
367 }
368 
369 static void
370 xen_hvm_sysinit(void *arg __unused)
371 {
372 	xen_hvm_init(XEN_HVM_INIT_COLD);
373 }
374 
375 static void
376 xen_set_vcpu_id(void)
377 {
378 	struct pcpu *pc;
379 	int i;
380 
381 	if (!xen_hvm_domain())
382 		return;
383 
384 	/* Set vcpu_id to acpi_id */
385 	CPU_FOREACH(i) {
386 		pc = pcpu_find(i);
387 		pc->pc_vcpu_id = pc->pc_acpi_id;
388 		if (bootverbose)
389 			printf("XEN: CPU %u has VCPU ID %u\n",
390 			       i, pc->pc_vcpu_id);
391 	}
392 }
393 
394 static void
395 xen_hvm_cpu_init(void)
396 {
397 	struct vcpu_register_vcpu_info info;
398 	struct vcpu_info *vcpu_info;
399 	int cpu, rc;
400 
401 	if (!xen_domain())
402 		return;
403 
404 	if (DPCPU_GET(vcpu_info) != NULL) {
405 		/*
406 		 * vcpu_info is already set.  We're resuming
407 		 * from a failed migration and our pre-suspend
408 		 * configuration is still valid.
409 		 */
410 		return;
411 	}
412 
413 	vcpu_info = DPCPU_PTR(vcpu_local_info);
414 	cpu = PCPU_GET(vcpu_id);
415 	info.mfn = vtophys(vcpu_info) >> PAGE_SHIFT;
416 	info.offset = vtophys(vcpu_info) - trunc_page(vtophys(vcpu_info));
417 
418 	rc = HYPERVISOR_vcpu_op(VCPUOP_register_vcpu_info, cpu, &info);
419 	if (rc != 0)
420 		DPCPU_SET(vcpu_info, &HYPERVISOR_shared_info->vcpu_info[cpu]);
421 	else
422 		DPCPU_SET(vcpu_info, vcpu_info);
423 }
424 
425 SYSINIT(xen_hvm_init, SI_SUB_HYPERVISOR, SI_ORDER_FIRST, xen_hvm_sysinit, NULL);
426 SYSINIT(xen_hvm_cpu_init, SI_SUB_INTR, SI_ORDER_FIRST, xen_hvm_cpu_init, NULL);
427 SYSINIT(xen_set_vcpu_id, SI_SUB_CPU, SI_ORDER_ANY, xen_set_vcpu_id, NULL);
428