xref: /freebsd/usr.sbin/bhyve/bhyverun.c (revision 1f474190)
1 /*-
2  * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
3  *
4  * Copyright (c) 2011 NetApp, Inc.
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  *
16  * THIS SOFTWARE IS PROVIDED BY NETAPP, INC ``AS IS'' AND
17  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19  * ARE DISCLAIMED.  IN NO EVENT SHALL NETAPP, INC OR CONTRIBUTORS BE LIABLE
20  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26  * SUCH DAMAGE.
27  *
28  * $FreeBSD$
29  */
30 
31 #include <sys/cdefs.h>
32 __FBSDID("$FreeBSD$");
33 
34 #include <sys/types.h>
35 #ifndef WITHOUT_CAPSICUM
36 #include <sys/capsicum.h>
37 #endif
38 #include <sys/mman.h>
39 #ifdef BHYVE_SNAPSHOT
40 #include <sys/socket.h>
41 #include <sys/stat.h>
42 #endif
43 #include <sys/time.h>
44 #ifdef BHYVE_SNAPSHOT
45 #include <sys/un.h>
46 #endif
47 
48 #include <amd64/vmm/intel/vmcs.h>
49 
50 #include <machine/atomic.h>
51 #include <machine/segments.h>
52 
53 #ifndef WITHOUT_CAPSICUM
54 #include <capsicum_helpers.h>
55 #endif
56 #include <stdio.h>
57 #include <stdlib.h>
58 #include <string.h>
59 #include <err.h>
60 #include <errno.h>
61 #ifdef BHYVE_SNAPSHOT
62 #include <fcntl.h>
63 #endif
64 #include <libgen.h>
65 #include <unistd.h>
66 #include <assert.h>
67 #include <pthread.h>
68 #include <pthread_np.h>
69 #include <sysexits.h>
70 #include <stdbool.h>
71 #include <stdint.h>
72 #ifdef BHYVE_SNAPSHOT
73 #include <ucl.h>
74 #include <unistd.h>
75 
76 #include <libxo/xo.h>
77 #endif
78 
79 #include <machine/vmm.h>
80 #ifndef WITHOUT_CAPSICUM
81 #include <machine/vmm_dev.h>
82 #endif
83 #include <machine/vmm_instruction_emul.h>
84 #include <vmmapi.h>
85 
86 #include "bhyverun.h"
87 #include "acpi.h"
88 #include "atkbdc.h"
89 #include "bootrom.h"
90 #include "inout.h"
91 #include "dbgport.h"
92 #include "debug.h"
93 #include "fwctl.h"
94 #include "gdb.h"
95 #include "ioapic.h"
96 #include "kernemu_dev.h"
97 #include "mem.h"
98 #include "mevent.h"
99 #include "mptbl.h"
100 #include "pci_emul.h"
101 #include "pci_irq.h"
102 #include "pci_lpc.h"
103 #include "smbiostbl.h"
104 #ifdef BHYVE_SNAPSHOT
105 #include "snapshot.h"
106 #endif
107 #include "xmsr.h"
108 #include "spinup_ap.h"
109 #include "rtc.h"
110 #include "vmgenc.h"
111 
112 #define GUEST_NIO_PORT		0x488	/* guest upcalls via i/o port */
113 
114 #define MB		(1024UL * 1024)
115 #define GB		(1024UL * MB)
116 
117 static const char * const vmx_exit_reason_desc[] = {
118 	[EXIT_REASON_EXCEPTION] = "Exception or non-maskable interrupt (NMI)",
119 	[EXIT_REASON_EXT_INTR] = "External interrupt",
120 	[EXIT_REASON_TRIPLE_FAULT] = "Triple fault",
121 	[EXIT_REASON_INIT] = "INIT signal",
122 	[EXIT_REASON_SIPI] = "Start-up IPI (SIPI)",
123 	[EXIT_REASON_IO_SMI] = "I/O system-management interrupt (SMI)",
124 	[EXIT_REASON_SMI] = "Other SMI",
125 	[EXIT_REASON_INTR_WINDOW] = "Interrupt window",
126 	[EXIT_REASON_NMI_WINDOW] = "NMI window",
127 	[EXIT_REASON_TASK_SWITCH] = "Task switch",
128 	[EXIT_REASON_CPUID] = "CPUID",
129 	[EXIT_REASON_GETSEC] = "GETSEC",
130 	[EXIT_REASON_HLT] = "HLT",
131 	[EXIT_REASON_INVD] = "INVD",
132 	[EXIT_REASON_INVLPG] = "INVLPG",
133 	[EXIT_REASON_RDPMC] = "RDPMC",
134 	[EXIT_REASON_RDTSC] = "RDTSC",
135 	[EXIT_REASON_RSM] = "RSM",
136 	[EXIT_REASON_VMCALL] = "VMCALL",
137 	[EXIT_REASON_VMCLEAR] = "VMCLEAR",
138 	[EXIT_REASON_VMLAUNCH] = "VMLAUNCH",
139 	[EXIT_REASON_VMPTRLD] = "VMPTRLD",
140 	[EXIT_REASON_VMPTRST] = "VMPTRST",
141 	[EXIT_REASON_VMREAD] = "VMREAD",
142 	[EXIT_REASON_VMRESUME] = "VMRESUME",
143 	[EXIT_REASON_VMWRITE] = "VMWRITE",
144 	[EXIT_REASON_VMXOFF] = "VMXOFF",
145 	[EXIT_REASON_VMXON] = "VMXON",
146 	[EXIT_REASON_CR_ACCESS] = "Control-register accesses",
147 	[EXIT_REASON_DR_ACCESS] = "MOV DR",
148 	[EXIT_REASON_INOUT] = "I/O instruction",
149 	[EXIT_REASON_RDMSR] = "RDMSR",
150 	[EXIT_REASON_WRMSR] = "WRMSR",
151 	[EXIT_REASON_INVAL_VMCS] =
152 	    "VM-entry failure due to invalid guest state",
153 	[EXIT_REASON_INVAL_MSR] = "VM-entry failure due to MSR loading",
154 	[EXIT_REASON_MWAIT] = "MWAIT",
155 	[EXIT_REASON_MTF] = "Monitor trap flag",
156 	[EXIT_REASON_MONITOR] = "MONITOR",
157 	[EXIT_REASON_PAUSE] = "PAUSE",
158 	[EXIT_REASON_MCE_DURING_ENTRY] =
159 	    "VM-entry failure due to machine-check event",
160 	[EXIT_REASON_TPR] = "TPR below threshold",
161 	[EXIT_REASON_APIC_ACCESS] = "APIC access",
162 	[EXIT_REASON_VIRTUALIZED_EOI] = "Virtualized EOI",
163 	[EXIT_REASON_GDTR_IDTR] = "Access to GDTR or IDTR",
164 	[EXIT_REASON_LDTR_TR] = "Access to LDTR or TR",
165 	[EXIT_REASON_EPT_FAULT] = "EPT violation",
166 	[EXIT_REASON_EPT_MISCONFIG] = "EPT misconfiguration",
167 	[EXIT_REASON_INVEPT] = "INVEPT",
168 	[EXIT_REASON_RDTSCP] = "RDTSCP",
169 	[EXIT_REASON_VMX_PREEMPT] = "VMX-preemption timer expired",
170 	[EXIT_REASON_INVVPID] = "INVVPID",
171 	[EXIT_REASON_WBINVD] = "WBINVD",
172 	[EXIT_REASON_XSETBV] = "XSETBV",
173 	[EXIT_REASON_APIC_WRITE] = "APIC write",
174 	[EXIT_REASON_RDRAND] = "RDRAND",
175 	[EXIT_REASON_INVPCID] = "INVPCID",
176 	[EXIT_REASON_VMFUNC] = "VMFUNC",
177 	[EXIT_REASON_ENCLS] = "ENCLS",
178 	[EXIT_REASON_RDSEED] = "RDSEED",
179 	[EXIT_REASON_PM_LOG_FULL] = "Page-modification log full",
180 	[EXIT_REASON_XSAVES] = "XSAVES",
181 	[EXIT_REASON_XRSTORS] = "XRSTORS"
182 };
183 
184 typedef int (*vmexit_handler_t)(struct vmctx *, struct vm_exit *, int *vcpu);
185 extern int vmexit_task_switch(struct vmctx *, struct vm_exit *, int *vcpu);
186 
187 const char *vmname;
188 
189 int guest_ncpus;
190 uint16_t cores, maxcpus, sockets, threads;
191 
192 char *guest_uuid_str;
193 
194 int raw_stdio = 0;
195 
196 static int gdb_port = 0;
197 static int guest_vmexit_on_hlt, guest_vmexit_on_pause;
198 static int virtio_msix = 1;
199 static int x2apic_mode = 0;	/* default is xAPIC */
200 static int destroy_on_poweroff = 0;
201 
202 static int strictio;
203 static int strictmsr = 1;
204 
205 static int acpi;
206 
207 static char *progname;
208 static const int BSP = 0;
209 
210 static cpuset_t cpumask;
211 
212 static void vm_loop(struct vmctx *ctx, int vcpu, uint64_t rip);
213 
214 static struct vm_exit vmexit[VM_MAXCPU];
215 
216 struct bhyvestats {
217 	uint64_t	vmexit_bogus;
218 	uint64_t	vmexit_reqidle;
219 	uint64_t	vmexit_hlt;
220 	uint64_t	vmexit_pause;
221 	uint64_t	vmexit_mtrap;
222 	uint64_t	vmexit_inst_emul;
223 	uint64_t	cpu_switch_rotate;
224 	uint64_t	cpu_switch_direct;
225 } stats;
226 
227 struct mt_vmm_info {
228 	pthread_t	mt_thr;
229 	struct vmctx	*mt_ctx;
230 	int		mt_vcpu;
231 } mt_vmm_info[VM_MAXCPU];
232 
233 static cpuset_t *vcpumap[VM_MAXCPU] = { NULL };
234 
235 static void
236 usage(int code)
237 {
238 
239         fprintf(stderr,
240 		"Usage: %s [-abehuwxACDHPSWY]\n"
241 		"       %*s [-c [[cpus=]numcpus][,sockets=n][,cores=n][,threads=n]]\n"
242 		"       %*s [-g <gdb port>] [-l <lpc>]\n"
243 		"       %*s [-m mem] [-p vcpu:hostcpu] [-s <pci>] [-U uuid] <vm>\n"
244 		"       -a: local apic is in xAPIC mode (deprecated)\n"
245 		"       -A: create ACPI tables\n"
246 		"       -c: number of cpus and/or topology specification\n"
247 		"       -C: include guest memory in core file\n"
248 		"       -D: destroy on power-off\n"
249 		"       -e: exit on unhandled I/O access\n"
250 		"       -g: gdb port\n"
251 		"       -h: help\n"
252 		"       -H: vmexit from the guest on hlt\n"
253 		"       -l: LPC device configuration\n"
254 		"       -m: memory size in MB\n"
255 #ifdef BHYVE_SNAPSHOT
256 		"       -r: path to checkpoint file\n"
257 #endif
258 		"       -p: pin 'vcpu' to 'hostcpu'\n"
259 		"       -P: vmexit from the guest on pause\n"
260 		"       -s: <slot,driver,configinfo> PCI slot config\n"
261 		"       -S: guest memory cannot be swapped\n"
262 		"       -u: RTC keeps UTC time\n"
263 		"       -U: uuid\n"
264 		"       -w: ignore unimplemented MSRs\n"
265 		"       -W: force virtio to use single-vector MSI\n"
266 		"       -x: local apic is in x2APIC mode\n"
267 		"       -Y: disable MPtable generation\n",
268 		progname, (int)strlen(progname), "", (int)strlen(progname), "",
269 		(int)strlen(progname), "");
270 
271 	exit(code);
272 }
273 
274 /*
275  * XXX This parser is known to have the following issues:
276  * 1.  It accepts null key=value tokens ",,".
277  * 2.  It accepts whitespace after = and before value.
278  * 3.  Values out of range of INT are silently wrapped.
279  * 4.  It doesn't check non-final values.
280  * 5.  The apparently bogus limits of UINT16_MAX are for future expansion.
281  *
282  * The acceptance of a null specification ('-c ""') is by design to match the
283  * manual page syntax specification, this results in a topology of 1 vCPU.
284  */
285 static int
286 topology_parse(const char *opt)
287 {
288 	uint64_t ncpus;
289 	int c, chk, n, s, t, tmp;
290 	char *cp, *str;
291 	bool ns, scts;
292 
293 	c = 1, n = 1, s = 1, t = 1;
294 	ns = false, scts = false;
295 	str = strdup(opt);
296 	if (str == NULL)
297 		goto out;
298 
299 	while ((cp = strsep(&str, ",")) != NULL) {
300 		if (sscanf(cp, "%i%n", &tmp, &chk) == 1) {
301 			n = tmp;
302 			ns = true;
303 		} else if (sscanf(cp, "cpus=%i%n", &tmp, &chk) == 1) {
304 			n = tmp;
305 			ns = true;
306 		} else if (sscanf(cp, "sockets=%i%n", &tmp, &chk) == 1) {
307 			s = tmp;
308 			scts = true;
309 		} else if (sscanf(cp, "cores=%i%n", &tmp, &chk) == 1) {
310 			c = tmp;
311 			scts = true;
312 		} else if (sscanf(cp, "threads=%i%n", &tmp, &chk) == 1) {
313 			t = tmp;
314 			scts = true;
315 #ifdef notyet  /* Do not expose this until vmm.ko implements it */
316 		} else if (sscanf(cp, "maxcpus=%i%n", &tmp, &chk) == 1) {
317 			m = tmp;
318 #endif
319 		/* Skip the empty argument case from -c "" */
320 		} else if (cp[0] == '\0')
321 			continue;
322 		else
323 			goto out;
324 		/* Any trailing garbage causes an error */
325 		if (cp[chk] != '\0')
326 			goto out;
327 	}
328 	free(str);
329 	str = NULL;
330 
331 	/*
332 	 * Range check 1 <= n <= UINT16_MAX all values
333 	 */
334 	if (n < 1 || s < 1 || c < 1 || t < 1 ||
335 	    n > UINT16_MAX || s > UINT16_MAX || c > UINT16_MAX  ||
336 	    t > UINT16_MAX)
337 		return (-1);
338 
339 	/* If only the cpus was specified, use that as sockets */
340 	if (!scts)
341 		s = n;
342 	/*
343 	 * Compute sockets * cores * threads avoiding overflow
344 	 * The range check above insures these are 16 bit values
345 	 * If n was specified check it against computed ncpus
346 	 */
347 	ncpus = (uint64_t)s * c * t;
348 	if (ncpus > UINT16_MAX || (ns && n != ncpus))
349 		return (-1);
350 
351 	guest_ncpus = ncpus;
352 	sockets = s;
353 	cores = c;
354 	threads = t;
355 	return(0);
356 
357 out:
358 	free(str);
359 	return (-1);
360 }
361 
362 static int
363 pincpu_parse(const char *opt)
364 {
365 	int vcpu, pcpu;
366 
367 	if (sscanf(opt, "%d:%d", &vcpu, &pcpu) != 2) {
368 		fprintf(stderr, "invalid format: %s\n", opt);
369 		return (-1);
370 	}
371 
372 	if (vcpu < 0 || vcpu >= VM_MAXCPU) {
373 		fprintf(stderr, "vcpu '%d' outside valid range from 0 to %d\n",
374 		    vcpu, VM_MAXCPU - 1);
375 		return (-1);
376 	}
377 
378 	if (pcpu < 0 || pcpu >= CPU_SETSIZE) {
379 		fprintf(stderr, "hostcpu '%d' outside valid range from "
380 		    "0 to %d\n", pcpu, CPU_SETSIZE - 1);
381 		return (-1);
382 	}
383 
384 	if (vcpumap[vcpu] == NULL) {
385 		if ((vcpumap[vcpu] = malloc(sizeof(cpuset_t))) == NULL) {
386 			perror("malloc");
387 			return (-1);
388 		}
389 		CPU_ZERO(vcpumap[vcpu]);
390 	}
391 	CPU_SET(pcpu, vcpumap[vcpu]);
392 	return (0);
393 }
394 
395 void
396 vm_inject_fault(void *arg, int vcpu, int vector, int errcode_valid,
397     int errcode)
398 {
399 	struct vmctx *ctx;
400 	int error, restart_instruction;
401 
402 	ctx = arg;
403 	restart_instruction = 1;
404 
405 	error = vm_inject_exception(ctx, vcpu, vector, errcode_valid, errcode,
406 	    restart_instruction);
407 	assert(error == 0);
408 }
409 
410 void *
411 paddr_guest2host(struct vmctx *ctx, uintptr_t gaddr, size_t len)
412 {
413 
414 	return (vm_map_gpa(ctx, gaddr, len));
415 }
416 
417 #ifdef BHYVE_SNAPSHOT
418 uintptr_t
419 paddr_host2guest(struct vmctx *ctx, void *addr)
420 {
421 	return (vm_rev_map_gpa(ctx, addr));
422 }
423 #endif
424 
425 int
426 fbsdrun_vmexit_on_pause(void)
427 {
428 
429 	return (guest_vmexit_on_pause);
430 }
431 
432 int
433 fbsdrun_vmexit_on_hlt(void)
434 {
435 
436 	return (guest_vmexit_on_hlt);
437 }
438 
439 int
440 fbsdrun_virtio_msix(void)
441 {
442 
443 	return (virtio_msix);
444 }
445 
446 static void *
447 fbsdrun_start_thread(void *param)
448 {
449 	char tname[MAXCOMLEN + 1];
450 	struct mt_vmm_info *mtp;
451 	int vcpu;
452 
453 	mtp = param;
454 	vcpu = mtp->mt_vcpu;
455 
456 	snprintf(tname, sizeof(tname), "vcpu %d", vcpu);
457 	pthread_set_name_np(mtp->mt_thr, tname);
458 
459 #ifdef BHYVE_SNAPSHOT
460 	checkpoint_cpu_add(vcpu);
461 #endif
462 	if (gdb_port != 0)
463 		gdb_cpu_add(vcpu);
464 
465 	vm_loop(mtp->mt_ctx, vcpu, vmexit[vcpu].rip);
466 
467 	/* not reached */
468 	exit(1);
469 	return (NULL);
470 }
471 
472 void
473 fbsdrun_addcpu(struct vmctx *ctx, int fromcpu, int newcpu, uint64_t rip)
474 {
475 	int error;
476 
477 	assert(fromcpu == BSP);
478 
479 	/*
480 	 * The 'newcpu' must be activated in the context of 'fromcpu'. If
481 	 * vm_activate_cpu() is delayed until newcpu's pthread starts running
482 	 * then vmm.ko is out-of-sync with bhyve and this can create a race
483 	 * with vm_suspend().
484 	 */
485 	error = vm_activate_cpu(ctx, newcpu);
486 	if (error != 0)
487 		err(EX_OSERR, "could not activate CPU %d", newcpu);
488 
489 	CPU_SET_ATOMIC(newcpu, &cpumask);
490 
491 	/*
492 	 * Set up the vmexit struct to allow execution to start
493 	 * at the given RIP
494 	 */
495 	vmexit[newcpu].rip = rip;
496 	vmexit[newcpu].inst_length = 0;
497 
498 	mt_vmm_info[newcpu].mt_ctx = ctx;
499 	mt_vmm_info[newcpu].mt_vcpu = newcpu;
500 
501 	error = pthread_create(&mt_vmm_info[newcpu].mt_thr, NULL,
502 	    fbsdrun_start_thread, &mt_vmm_info[newcpu]);
503 	assert(error == 0);
504 }
505 
506 static int
507 fbsdrun_deletecpu(struct vmctx *ctx, int vcpu)
508 {
509 
510 	if (!CPU_ISSET(vcpu, &cpumask)) {
511 		fprintf(stderr, "Attempting to delete unknown cpu %d\n", vcpu);
512 		exit(4);
513 	}
514 
515 	CPU_CLR_ATOMIC(vcpu, &cpumask);
516 	return (CPU_EMPTY(&cpumask));
517 }
518 
519 static int
520 vmexit_handle_notify(struct vmctx *ctx, struct vm_exit *vme, int *pvcpu,
521 		     uint32_t eax)
522 {
523 #if BHYVE_DEBUG
524 	/*
525 	 * put guest-driven debug here
526 	 */
527 #endif
528 	return (VMEXIT_CONTINUE);
529 }
530 
531 static int
532 vmexit_inout(struct vmctx *ctx, struct vm_exit *vme, int *pvcpu)
533 {
534 	int error;
535 	int bytes, port, in, out;
536 	int vcpu;
537 
538 	vcpu = *pvcpu;
539 
540 	port = vme->u.inout.port;
541 	bytes = vme->u.inout.bytes;
542 	in = vme->u.inout.in;
543 	out = !in;
544 
545         /* Extra-special case of host notifications */
546         if (out && port == GUEST_NIO_PORT) {
547                 error = vmexit_handle_notify(ctx, vme, pvcpu, vme->u.inout.eax);
548 		return (error);
549 	}
550 
551 	error = emulate_inout(ctx, vcpu, vme, strictio);
552 	if (error) {
553 		fprintf(stderr, "Unhandled %s%c 0x%04x at 0x%lx\n",
554 		    in ? "in" : "out",
555 		    bytes == 1 ? 'b' : (bytes == 2 ? 'w' : 'l'),
556 		    port, vmexit->rip);
557 		return (VMEXIT_ABORT);
558 	} else {
559 		return (VMEXIT_CONTINUE);
560 	}
561 }
562 
563 static int
564 vmexit_rdmsr(struct vmctx *ctx, struct vm_exit *vme, int *pvcpu)
565 {
566 	uint64_t val;
567 	uint32_t eax, edx;
568 	int error;
569 
570 	val = 0;
571 	error = emulate_rdmsr(ctx, *pvcpu, vme->u.msr.code, &val);
572 	if (error != 0) {
573 		fprintf(stderr, "rdmsr to register %#x on vcpu %d\n",
574 		    vme->u.msr.code, *pvcpu);
575 		if (strictmsr) {
576 			vm_inject_gp(ctx, *pvcpu);
577 			return (VMEXIT_CONTINUE);
578 		}
579 	}
580 
581 	eax = val;
582 	error = vm_set_register(ctx, *pvcpu, VM_REG_GUEST_RAX, eax);
583 	assert(error == 0);
584 
585 	edx = val >> 32;
586 	error = vm_set_register(ctx, *pvcpu, VM_REG_GUEST_RDX, edx);
587 	assert(error == 0);
588 
589 	return (VMEXIT_CONTINUE);
590 }
591 
592 static int
593 vmexit_wrmsr(struct vmctx *ctx, struct vm_exit *vme, int *pvcpu)
594 {
595 	int error;
596 
597 	error = emulate_wrmsr(ctx, *pvcpu, vme->u.msr.code, vme->u.msr.wval);
598 	if (error != 0) {
599 		fprintf(stderr, "wrmsr to register %#x(%#lx) on vcpu %d\n",
600 		    vme->u.msr.code, vme->u.msr.wval, *pvcpu);
601 		if (strictmsr) {
602 			vm_inject_gp(ctx, *pvcpu);
603 			return (VMEXIT_CONTINUE);
604 		}
605 	}
606 	return (VMEXIT_CONTINUE);
607 }
608 
609 static int
610 vmexit_spinup_ap(struct vmctx *ctx, struct vm_exit *vme, int *pvcpu)
611 {
612 
613 	(void)spinup_ap(ctx, *pvcpu,
614 		    vme->u.spinup_ap.vcpu, vme->u.spinup_ap.rip);
615 
616 	return (VMEXIT_CONTINUE);
617 }
618 
619 #define	DEBUG_EPT_MISCONFIG
620 #ifdef DEBUG_EPT_MISCONFIG
621 #define	VMCS_GUEST_PHYSICAL_ADDRESS	0x00002400
622 
623 static uint64_t ept_misconfig_gpa, ept_misconfig_pte[4];
624 static int ept_misconfig_ptenum;
625 #endif
626 
627 static const char *
628 vmexit_vmx_desc(uint32_t exit_reason)
629 {
630 
631 	if (exit_reason >= nitems(vmx_exit_reason_desc) ||
632 	    vmx_exit_reason_desc[exit_reason] == NULL)
633 		return ("Unknown");
634 	return (vmx_exit_reason_desc[exit_reason]);
635 }
636 
637 static int
638 vmexit_vmx(struct vmctx *ctx, struct vm_exit *vmexit, int *pvcpu)
639 {
640 
641 	fprintf(stderr, "vm exit[%d]\n", *pvcpu);
642 	fprintf(stderr, "\treason\t\tVMX\n");
643 	fprintf(stderr, "\trip\t\t0x%016lx\n", vmexit->rip);
644 	fprintf(stderr, "\tinst_length\t%d\n", vmexit->inst_length);
645 	fprintf(stderr, "\tstatus\t\t%d\n", vmexit->u.vmx.status);
646 	fprintf(stderr, "\texit_reason\t%u (%s)\n", vmexit->u.vmx.exit_reason,
647 	    vmexit_vmx_desc(vmexit->u.vmx.exit_reason));
648 	fprintf(stderr, "\tqualification\t0x%016lx\n",
649 	    vmexit->u.vmx.exit_qualification);
650 	fprintf(stderr, "\tinst_type\t\t%d\n", vmexit->u.vmx.inst_type);
651 	fprintf(stderr, "\tinst_error\t\t%d\n", vmexit->u.vmx.inst_error);
652 #ifdef DEBUG_EPT_MISCONFIG
653 	if (vmexit->u.vmx.exit_reason == EXIT_REASON_EPT_MISCONFIG) {
654 		vm_get_register(ctx, *pvcpu,
655 		    VMCS_IDENT(VMCS_GUEST_PHYSICAL_ADDRESS),
656 		    &ept_misconfig_gpa);
657 		vm_get_gpa_pmap(ctx, ept_misconfig_gpa, ept_misconfig_pte,
658 		    &ept_misconfig_ptenum);
659 		fprintf(stderr, "\tEPT misconfiguration:\n");
660 		fprintf(stderr, "\t\tGPA: %#lx\n", ept_misconfig_gpa);
661 		fprintf(stderr, "\t\tPTE(%d): %#lx %#lx %#lx %#lx\n",
662 		    ept_misconfig_ptenum, ept_misconfig_pte[0],
663 		    ept_misconfig_pte[1], ept_misconfig_pte[2],
664 		    ept_misconfig_pte[3]);
665 	}
666 #endif	/* DEBUG_EPT_MISCONFIG */
667 	return (VMEXIT_ABORT);
668 }
669 
670 static int
671 vmexit_svm(struct vmctx *ctx, struct vm_exit *vmexit, int *pvcpu)
672 {
673 
674 	fprintf(stderr, "vm exit[%d]\n", *pvcpu);
675 	fprintf(stderr, "\treason\t\tSVM\n");
676 	fprintf(stderr, "\trip\t\t0x%016lx\n", vmexit->rip);
677 	fprintf(stderr, "\tinst_length\t%d\n", vmexit->inst_length);
678 	fprintf(stderr, "\texitcode\t%#lx\n", vmexit->u.svm.exitcode);
679 	fprintf(stderr, "\texitinfo1\t%#lx\n", vmexit->u.svm.exitinfo1);
680 	fprintf(stderr, "\texitinfo2\t%#lx\n", vmexit->u.svm.exitinfo2);
681 	return (VMEXIT_ABORT);
682 }
683 
684 static int
685 vmexit_bogus(struct vmctx *ctx, struct vm_exit *vmexit, int *pvcpu)
686 {
687 
688 	assert(vmexit->inst_length == 0);
689 
690 	stats.vmexit_bogus++;
691 
692 	return (VMEXIT_CONTINUE);
693 }
694 
695 static int
696 vmexit_reqidle(struct vmctx *ctx, struct vm_exit *vmexit, int *pvcpu)
697 {
698 
699 	assert(vmexit->inst_length == 0);
700 
701 	stats.vmexit_reqidle++;
702 
703 	return (VMEXIT_CONTINUE);
704 }
705 
706 static int
707 vmexit_hlt(struct vmctx *ctx, struct vm_exit *vmexit, int *pvcpu)
708 {
709 
710 	stats.vmexit_hlt++;
711 
712 	/*
713 	 * Just continue execution with the next instruction. We use
714 	 * the HLT VM exit as a way to be friendly with the host
715 	 * scheduler.
716 	 */
717 	return (VMEXIT_CONTINUE);
718 }
719 
720 static int
721 vmexit_pause(struct vmctx *ctx, struct vm_exit *vmexit, int *pvcpu)
722 {
723 
724 	stats.vmexit_pause++;
725 
726 	return (VMEXIT_CONTINUE);
727 }
728 
729 static int
730 vmexit_mtrap(struct vmctx *ctx, struct vm_exit *vmexit, int *pvcpu)
731 {
732 
733 	assert(vmexit->inst_length == 0);
734 
735 	stats.vmexit_mtrap++;
736 
737 #ifdef BHYVE_SNAPSHOT
738 	checkpoint_cpu_suspend(*pvcpu);
739 #endif
740 	if (gdb_port != 0)
741 		gdb_cpu_mtrap(*pvcpu);
742 #ifdef BHYVE_SNAPSHOT
743 	checkpoint_cpu_resume(*pvcpu);
744 #endif
745 
746 	return (VMEXIT_CONTINUE);
747 }
748 
749 static int
750 vmexit_inst_emul(struct vmctx *ctx, struct vm_exit *vmexit, int *pvcpu)
751 {
752 	int err, i, cs_d;
753 	struct vie *vie;
754 	enum vm_cpu_mode mode;
755 
756 	stats.vmexit_inst_emul++;
757 
758 	vie = &vmexit->u.inst_emul.vie;
759 	if (!vie->decoded) {
760 		/*
761 		 * Attempt to decode in userspace as a fallback.  This allows
762 		 * updating instruction decode in bhyve without rebooting the
763 		 * kernel (rapid prototyping), albeit with much slower
764 		 * emulation.
765 		 */
766 		vie_restart(vie);
767 		mode = vmexit->u.inst_emul.paging.cpu_mode;
768 		cs_d = vmexit->u.inst_emul.cs_d;
769 		(void)vmm_decode_instruction(mode, cs_d, vie);
770 	}
771 
772 	err = emulate_mem(ctx, *pvcpu, vmexit->u.inst_emul.gpa,
773 	    vie, &vmexit->u.inst_emul.paging);
774 
775 	if (err) {
776 		if (err == ESRCH) {
777 			EPRINTLN("Unhandled memory access to 0x%lx\n",
778 			    vmexit->u.inst_emul.gpa);
779 		}
780 
781 		fprintf(stderr, "Failed to emulate instruction sequence [ ");
782 		for (i = 0; i < vie->num_valid; i++)
783 			fprintf(stderr, "%02x", vie->inst[i]);
784 		FPRINTLN(stderr, " ] at 0x%lx", vmexit->rip);
785 		return (VMEXIT_ABORT);
786 	}
787 
788 	return (VMEXIT_CONTINUE);
789 }
790 
791 static pthread_mutex_t resetcpu_mtx = PTHREAD_MUTEX_INITIALIZER;
792 static pthread_cond_t resetcpu_cond = PTHREAD_COND_INITIALIZER;
793 
794 static int
795 vmexit_suspend(struct vmctx *ctx, struct vm_exit *vmexit, int *pvcpu)
796 {
797 	enum vm_suspend_how how;
798 
799 	how = vmexit->u.suspended.how;
800 
801 	fbsdrun_deletecpu(ctx, *pvcpu);
802 
803 	if (*pvcpu != BSP) {
804 		pthread_mutex_lock(&resetcpu_mtx);
805 		pthread_cond_signal(&resetcpu_cond);
806 		pthread_mutex_unlock(&resetcpu_mtx);
807 		pthread_exit(NULL);
808 	}
809 
810 	pthread_mutex_lock(&resetcpu_mtx);
811 	while (!CPU_EMPTY(&cpumask)) {
812 		pthread_cond_wait(&resetcpu_cond, &resetcpu_mtx);
813 	}
814 	pthread_mutex_unlock(&resetcpu_mtx);
815 
816 	switch (how) {
817 	case VM_SUSPEND_RESET:
818 		exit(0);
819 	case VM_SUSPEND_POWEROFF:
820 		if (destroy_on_poweroff)
821 			vm_destroy(ctx);
822 		exit(1);
823 	case VM_SUSPEND_HALT:
824 		exit(2);
825 	case VM_SUSPEND_TRIPLEFAULT:
826 		exit(3);
827 	default:
828 		fprintf(stderr, "vmexit_suspend: invalid reason %d\n", how);
829 		exit(100);
830 	}
831 	return (0);	/* NOTREACHED */
832 }
833 
834 static int
835 vmexit_debug(struct vmctx *ctx, struct vm_exit *vmexit, int *pvcpu)
836 {
837 
838 #ifdef BHYVE_SNAPSHOT
839 	checkpoint_cpu_suspend(*pvcpu);
840 #endif
841 	if (gdb_port != 0)
842 		gdb_cpu_suspend(*pvcpu);
843 #ifdef BHYVE_SNAPSHOT
844 	checkpoint_cpu_resume(*pvcpu);
845 #endif
846 	return (VMEXIT_CONTINUE);
847 }
848 
849 static int
850 vmexit_breakpoint(struct vmctx *ctx, struct vm_exit *vmexit, int *pvcpu)
851 {
852 
853 	if (gdb_port == 0) {
854 		fprintf(stderr, "vm_loop: unexpected VMEXIT_DEBUG\n");
855 		exit(4);
856 	}
857 	gdb_cpu_breakpoint(*pvcpu, vmexit);
858 	return (VMEXIT_CONTINUE);
859 }
860 
861 static vmexit_handler_t handler[VM_EXITCODE_MAX] = {
862 	[VM_EXITCODE_INOUT]  = vmexit_inout,
863 	[VM_EXITCODE_INOUT_STR]  = vmexit_inout,
864 	[VM_EXITCODE_VMX]    = vmexit_vmx,
865 	[VM_EXITCODE_SVM]    = vmexit_svm,
866 	[VM_EXITCODE_BOGUS]  = vmexit_bogus,
867 	[VM_EXITCODE_REQIDLE] = vmexit_reqidle,
868 	[VM_EXITCODE_RDMSR]  = vmexit_rdmsr,
869 	[VM_EXITCODE_WRMSR]  = vmexit_wrmsr,
870 	[VM_EXITCODE_MTRAP]  = vmexit_mtrap,
871 	[VM_EXITCODE_INST_EMUL] = vmexit_inst_emul,
872 	[VM_EXITCODE_SPINUP_AP] = vmexit_spinup_ap,
873 	[VM_EXITCODE_SUSPENDED] = vmexit_suspend,
874 	[VM_EXITCODE_TASK_SWITCH] = vmexit_task_switch,
875 	[VM_EXITCODE_DEBUG] = vmexit_debug,
876 	[VM_EXITCODE_BPT] = vmexit_breakpoint,
877 };
878 
879 static void
880 vm_loop(struct vmctx *ctx, int vcpu, uint64_t startrip)
881 {
882 	int error, rc;
883 	enum vm_exitcode exitcode;
884 	cpuset_t active_cpus;
885 
886 	if (vcpumap[vcpu] != NULL) {
887 		error = pthread_setaffinity_np(pthread_self(),
888 		    sizeof(cpuset_t), vcpumap[vcpu]);
889 		assert(error == 0);
890 	}
891 
892 	error = vm_active_cpus(ctx, &active_cpus);
893 	assert(CPU_ISSET(vcpu, &active_cpus));
894 
895 	error = vm_set_register(ctx, vcpu, VM_REG_GUEST_RIP, startrip);
896 	assert(error == 0);
897 
898 	while (1) {
899 		error = vm_run(ctx, vcpu, &vmexit[vcpu]);
900 		if (error != 0)
901 			break;
902 
903 		exitcode = vmexit[vcpu].exitcode;
904 		if (exitcode >= VM_EXITCODE_MAX || handler[exitcode] == NULL) {
905 			fprintf(stderr, "vm_loop: unexpected exitcode 0x%x\n",
906 			    exitcode);
907 			exit(4);
908 		}
909 
910 		rc = (*handler[exitcode])(ctx, &vmexit[vcpu], &vcpu);
911 
912 		switch (rc) {
913 		case VMEXIT_CONTINUE:
914 			break;
915 		case VMEXIT_ABORT:
916 			abort();
917 		default:
918 			exit(4);
919 		}
920 	}
921 	fprintf(stderr, "vm_run error %d, errno %d\n", error, errno);
922 }
923 
924 static int
925 num_vcpus_allowed(struct vmctx *ctx)
926 {
927 	int tmp, error;
928 
929 	error = vm_get_capability(ctx, BSP, VM_CAP_UNRESTRICTED_GUEST, &tmp);
930 
931 	/*
932 	 * The guest is allowed to spinup more than one processor only if the
933 	 * UNRESTRICTED_GUEST capability is available.
934 	 */
935 	if (error == 0)
936 		return (VM_MAXCPU);
937 	else
938 		return (1);
939 }
940 
941 void
942 fbsdrun_set_capabilities(struct vmctx *ctx, int cpu)
943 {
944 	int err, tmp;
945 
946 	if (fbsdrun_vmexit_on_hlt()) {
947 		err = vm_get_capability(ctx, cpu, VM_CAP_HALT_EXIT, &tmp);
948 		if (err < 0) {
949 			fprintf(stderr, "VM exit on HLT not supported\n");
950 			exit(4);
951 		}
952 		vm_set_capability(ctx, cpu, VM_CAP_HALT_EXIT, 1);
953 		if (cpu == BSP)
954 			handler[VM_EXITCODE_HLT] = vmexit_hlt;
955 	}
956 
957         if (fbsdrun_vmexit_on_pause()) {
958 		/*
959 		 * pause exit support required for this mode
960 		 */
961 		err = vm_get_capability(ctx, cpu, VM_CAP_PAUSE_EXIT, &tmp);
962 		if (err < 0) {
963 			fprintf(stderr,
964 			    "SMP mux requested, no pause support\n");
965 			exit(4);
966 		}
967 		vm_set_capability(ctx, cpu, VM_CAP_PAUSE_EXIT, 1);
968 		if (cpu == BSP)
969 			handler[VM_EXITCODE_PAUSE] = vmexit_pause;
970         }
971 
972 	if (x2apic_mode)
973 		err = vm_set_x2apic_state(ctx, cpu, X2APIC_ENABLED);
974 	else
975 		err = vm_set_x2apic_state(ctx, cpu, X2APIC_DISABLED);
976 
977 	if (err) {
978 		fprintf(stderr, "Unable to set x2apic state (%d)\n", err);
979 		exit(4);
980 	}
981 
982 	vm_set_capability(ctx, cpu, VM_CAP_ENABLE_INVPCID, 1);
983 }
984 
985 static struct vmctx *
986 do_open(const char *vmname)
987 {
988 	struct vmctx *ctx;
989 	int error;
990 	bool reinit, romboot;
991 #ifndef WITHOUT_CAPSICUM
992 	cap_rights_t rights;
993 	const cap_ioctl_t *cmds;
994 	size_t ncmds;
995 #endif
996 
997 	reinit = romboot = false;
998 
999 	if (lpc_bootrom())
1000 		romboot = true;
1001 
1002 	error = vm_create(vmname);
1003 	if (error) {
1004 		if (errno == EEXIST) {
1005 			if (romboot) {
1006 				reinit = true;
1007 			} else {
1008 				/*
1009 				 * The virtual machine has been setup by the
1010 				 * userspace bootloader.
1011 				 */
1012 			}
1013 		} else {
1014 			perror("vm_create");
1015 			exit(4);
1016 		}
1017 	} else {
1018 		if (!romboot) {
1019 			/*
1020 			 * If the virtual machine was just created then a
1021 			 * bootrom must be configured to boot it.
1022 			 */
1023 			fprintf(stderr, "virtual machine cannot be booted\n");
1024 			exit(4);
1025 		}
1026 	}
1027 
1028 	ctx = vm_open(vmname);
1029 	if (ctx == NULL) {
1030 		perror("vm_open");
1031 		exit(4);
1032 	}
1033 
1034 #ifndef WITHOUT_CAPSICUM
1035 	cap_rights_init(&rights, CAP_IOCTL, CAP_MMAP_RW);
1036 	if (caph_rights_limit(vm_get_device_fd(ctx), &rights) == -1)
1037 		errx(EX_OSERR, "Unable to apply rights for sandbox");
1038 	vm_get_ioctls(&ncmds);
1039 	cmds = vm_get_ioctls(NULL);
1040 	if (cmds == NULL)
1041 		errx(EX_OSERR, "out of memory");
1042 	if (caph_ioctls_limit(vm_get_device_fd(ctx), cmds, ncmds) == -1)
1043 		errx(EX_OSERR, "Unable to apply rights for sandbox");
1044 	free((cap_ioctl_t *)cmds);
1045 #endif
1046 
1047 	if (reinit) {
1048 		error = vm_reinit(ctx);
1049 		if (error) {
1050 			perror("vm_reinit");
1051 			exit(4);
1052 		}
1053 	}
1054 	error = vm_set_topology(ctx, sockets, cores, threads, maxcpus);
1055 	if (error)
1056 		errx(EX_OSERR, "vm_set_topology");
1057 	return (ctx);
1058 }
1059 
1060 void
1061 spinup_vcpu(struct vmctx *ctx, int vcpu)
1062 {
1063 	int error;
1064 	uint64_t rip;
1065 
1066 	error = vm_get_register(ctx, vcpu, VM_REG_GUEST_RIP, &rip);
1067 	assert(error == 0);
1068 
1069 	fbsdrun_set_capabilities(ctx, vcpu);
1070 	error = vm_set_capability(ctx, vcpu, VM_CAP_UNRESTRICTED_GUEST, 1);
1071 	assert(error == 0);
1072 
1073 	fbsdrun_addcpu(ctx, BSP, vcpu, rip);
1074 }
1075 
1076 int
1077 main(int argc, char *argv[])
1078 {
1079 	int c, error, dbg_port, err, bvmcons;
1080 	int max_vcpus, mptgen, memflags;
1081 	int rtc_localtime;
1082 	bool gdb_stop;
1083 	struct vmctx *ctx;
1084 	uint64_t rip;
1085 	size_t memsize;
1086 	char *optstr;
1087 #ifdef BHYVE_SNAPSHOT
1088 	char *restore_file;
1089 	struct restore_state rstate;
1090 	int vcpu;
1091 
1092 	restore_file = NULL;
1093 #endif
1094 
1095 	bvmcons = 0;
1096 	progname = basename(argv[0]);
1097 	dbg_port = 0;
1098 	gdb_stop = false;
1099 	guest_ncpus = 1;
1100 	sockets = cores = threads = 1;
1101 	maxcpus = 0;
1102 	memsize = 256 * MB;
1103 	mptgen = 1;
1104 	rtc_localtime = 1;
1105 	memflags = 0;
1106 
1107 #ifdef BHYVE_SNAPSHOT
1108 	optstr = "abehuwxACDHIPSWYp:g:G:c:s:m:l:U:r:";
1109 #else
1110 	optstr = "abehuwxACDHIPSWYp:g:G:c:s:m:l:U:";
1111 #endif
1112 	while ((c = getopt(argc, argv, optstr)) != -1) {
1113 		switch (c) {
1114 		case 'a':
1115 			x2apic_mode = 0;
1116 			break;
1117 		case 'A':
1118 			acpi = 1;
1119 			break;
1120 		case 'b':
1121 			bvmcons = 1;
1122 			break;
1123 		case 'D':
1124 			destroy_on_poweroff = 1;
1125 			break;
1126 		case 'p':
1127                         if (pincpu_parse(optarg) != 0) {
1128                             errx(EX_USAGE, "invalid vcpu pinning "
1129                                  "configuration '%s'", optarg);
1130                         }
1131 			break;
1132                 case 'c':
1133 			if (topology_parse(optarg) != 0) {
1134 			    errx(EX_USAGE, "invalid cpu topology "
1135 				"'%s'", optarg);
1136 			}
1137 			break;
1138 		case 'C':
1139 			memflags |= VM_MEM_F_INCORE;
1140 			break;
1141 		case 'g':
1142 			dbg_port = atoi(optarg);
1143 			break;
1144 		case 'G':
1145 			if (optarg[0] == 'w') {
1146 				gdb_stop = true;
1147 				optarg++;
1148 			}
1149 			gdb_port = atoi(optarg);
1150 			break;
1151 		case 'l':
1152 			if (strncmp(optarg, "help", strlen(optarg)) == 0) {
1153 				lpc_print_supported_devices();
1154 				exit(0);
1155 			} else if (lpc_device_parse(optarg) != 0) {
1156 				errx(EX_USAGE, "invalid lpc device "
1157 				    "configuration '%s'", optarg);
1158 			}
1159 			break;
1160 #ifdef BHYVE_SNAPSHOT
1161 		case 'r':
1162 			restore_file = optarg;
1163 			break;
1164 #endif
1165 		case 's':
1166 			if (strncmp(optarg, "help", strlen(optarg)) == 0) {
1167 				pci_print_supported_devices();
1168 				exit(0);
1169 			} else if (pci_parse_slot(optarg) != 0)
1170 				exit(4);
1171 			else
1172 				break;
1173 		case 'S':
1174 			memflags |= VM_MEM_F_WIRED;
1175 			break;
1176                 case 'm':
1177 			error = vm_parse_memsize(optarg, &memsize);
1178 			if (error)
1179 				errx(EX_USAGE, "invalid memsize '%s'", optarg);
1180 			break;
1181 		case 'H':
1182 			guest_vmexit_on_hlt = 1;
1183 			break;
1184 		case 'I':
1185 			/*
1186 			 * The "-I" option was used to add an ioapic to the
1187 			 * virtual machine.
1188 			 *
1189 			 * An ioapic is now provided unconditionally for each
1190 			 * virtual machine and this option is now deprecated.
1191 			 */
1192 			break;
1193 		case 'P':
1194 			guest_vmexit_on_pause = 1;
1195 			break;
1196 		case 'e':
1197 			strictio = 1;
1198 			break;
1199 		case 'u':
1200 			rtc_localtime = 0;
1201 			break;
1202 		case 'U':
1203 			guest_uuid_str = optarg;
1204 			break;
1205 		case 'w':
1206 			strictmsr = 0;
1207 			break;
1208 		case 'W':
1209 			virtio_msix = 0;
1210 			break;
1211 		case 'x':
1212 			x2apic_mode = 1;
1213 			break;
1214 		case 'Y':
1215 			mptgen = 0;
1216 			break;
1217 		case 'h':
1218 			usage(0);
1219 		default:
1220 			usage(1);
1221 		}
1222 	}
1223 	argc -= optind;
1224 	argv += optind;
1225 
1226 #ifdef BHYVE_SNAPSHOT
1227 	if (argc > 1 || (argc == 0 && restore_file == NULL))
1228 		usage(1);
1229 
1230 	if (restore_file != NULL) {
1231 		error = load_restore_file(restore_file, &rstate);
1232 		if (error) {
1233 			fprintf(stderr, "Failed to read checkpoint info from "
1234 					"file: '%s'.\n", restore_file);
1235 			exit(1);
1236 		}
1237 	}
1238 
1239 	if (argc == 1) {
1240 		vmname = argv[0];
1241 	} else {
1242 		vmname = lookup_vmname(&rstate);
1243 		if (vmname == NULL) {
1244 			fprintf(stderr, "Cannot find VM name in restore file. "
1245 					"Please specify one.\n");
1246 			exit(1);
1247 		}
1248 	}
1249 #else
1250 	if (argc != 1)
1251 		usage(1);
1252 
1253 	vmname = argv[0];
1254 #endif
1255 	ctx = do_open(vmname);
1256 
1257 #ifdef BHYVE_SNAPSHOT
1258 	if (restore_file != NULL) {
1259 		guest_ncpus = lookup_guest_ncpus(&rstate);
1260 		memflags = lookup_memflags(&rstate);
1261 		memsize = lookup_memsize(&rstate);
1262 	}
1263 
1264 	if (guest_ncpus < 1) {
1265 		fprintf(stderr, "Invalid guest vCPUs (%d)\n", guest_ncpus);
1266 		exit(1);
1267 	}
1268 #endif
1269 
1270 	max_vcpus = num_vcpus_allowed(ctx);
1271 	if (guest_ncpus > max_vcpus) {
1272 		fprintf(stderr, "%d vCPUs requested but only %d available\n",
1273 			guest_ncpus, max_vcpus);
1274 		exit(4);
1275 	}
1276 
1277 	fbsdrun_set_capabilities(ctx, BSP);
1278 
1279 	vm_set_memflags(ctx, memflags);
1280 	err = vm_setup_memory(ctx, memsize, VM_MMAP_ALL);
1281 	if (err) {
1282 		fprintf(stderr, "Unable to setup memory (%d)\n", errno);
1283 		exit(4);
1284 	}
1285 
1286 	error = init_msr();
1287 	if (error) {
1288 		fprintf(stderr, "init_msr error %d", error);
1289 		exit(4);
1290 	}
1291 
1292 	init_mem();
1293 	init_inout();
1294 	kernemu_dev_init();
1295 	init_bootrom(ctx);
1296 	atkbdc_init(ctx);
1297 	pci_irq_init(ctx);
1298 	ioapic_init(ctx);
1299 
1300 	rtc_init(ctx, rtc_localtime);
1301 	sci_init(ctx);
1302 
1303 	/*
1304 	 * Exit if a device emulation finds an error in its initilization
1305 	 */
1306 	if (init_pci(ctx) != 0) {
1307 		perror("device emulation initialization error");
1308 		exit(4);
1309 	}
1310 
1311 	/*
1312 	 * Initialize after PCI, to allow a bootrom file to reserve the high
1313 	 * region.
1314 	 */
1315 	if (acpi)
1316 		vmgenc_init(ctx);
1317 
1318 	if (dbg_port != 0)
1319 		init_dbgport(dbg_port);
1320 
1321 	if (gdb_port != 0)
1322 		init_gdb(ctx, gdb_port, gdb_stop);
1323 
1324 	if (bvmcons)
1325 		init_bvmcons();
1326 
1327 	if (lpc_bootrom()) {
1328 		if (vm_set_capability(ctx, BSP, VM_CAP_UNRESTRICTED_GUEST, 1)) {
1329 			fprintf(stderr, "ROM boot failed: unrestricted guest "
1330 			    "capability not available\n");
1331 			exit(4);
1332 		}
1333 		error = vcpu_reset(ctx, BSP);
1334 		assert(error == 0);
1335 	}
1336 
1337 #ifdef BHYVE_SNAPSHOT
1338 	if (restore_file != NULL) {
1339 		fprintf(stdout, "Pausing pci devs...\r\n");
1340 		if (vm_pause_user_devs(ctx) != 0) {
1341 			fprintf(stderr, "Failed to pause PCI device state.\n");
1342 			exit(1);
1343 		}
1344 
1345 		fprintf(stdout, "Restoring vm mem...\r\n");
1346 		if (restore_vm_mem(ctx, &rstate) != 0) {
1347 			fprintf(stderr, "Failed to restore VM memory.\n");
1348 			exit(1);
1349 		}
1350 
1351 		fprintf(stdout, "Restoring pci devs...\r\n");
1352 		if (vm_restore_user_devs(ctx, &rstate) != 0) {
1353 			fprintf(stderr, "Failed to restore PCI device state.\n");
1354 			exit(1);
1355 		}
1356 
1357 		fprintf(stdout, "Restoring kernel structs...\r\n");
1358 		if (vm_restore_kern_structs(ctx, &rstate) != 0) {
1359 			fprintf(stderr, "Failed to restore kernel structs.\n");
1360 			exit(1);
1361 		}
1362 
1363 		fprintf(stdout, "Resuming pci devs...\r\n");
1364 		if (vm_resume_user_devs(ctx) != 0) {
1365 			fprintf(stderr, "Failed to resume PCI device state.\n");
1366 			exit(1);
1367 		}
1368 	}
1369 #endif
1370 
1371 	error = vm_get_register(ctx, BSP, VM_REG_GUEST_RIP, &rip);
1372 	assert(error == 0);
1373 
1374 	/*
1375 	 * build the guest tables, MP etc.
1376 	 */
1377 	if (mptgen) {
1378 		error = mptable_build(ctx, guest_ncpus);
1379 		if (error) {
1380 			perror("error to build the guest tables");
1381 			exit(4);
1382 		}
1383 	}
1384 
1385 	error = smbios_build(ctx);
1386 	assert(error == 0);
1387 
1388 	if (acpi) {
1389 		error = acpi_build(ctx, guest_ncpus);
1390 		assert(error == 0);
1391 	}
1392 
1393 	if (lpc_bootrom())
1394 		fwctl_init();
1395 
1396 	/*
1397 	 * Change the proc title to include the VM name.
1398 	 */
1399 	setproctitle("%s", vmname);
1400 
1401 #ifndef WITHOUT_CAPSICUM
1402 	caph_cache_catpages();
1403 
1404 	if (caph_limit_stdout() == -1 || caph_limit_stderr() == -1)
1405 		errx(EX_OSERR, "Unable to apply rights for sandbox");
1406 
1407 	if (caph_enter() == -1)
1408 		errx(EX_OSERR, "cap_enter() failed");
1409 #endif
1410 
1411 #ifdef BHYVE_SNAPSHOT
1412 	if (restore_file != NULL)
1413 		destroy_restore_state(&rstate);
1414 
1415 	/*
1416 	 * checkpointing thread for communication with bhyvectl
1417 	 */
1418 	if (init_checkpoint_thread(ctx) < 0)
1419 		printf("Failed to start checkpoint thread!\r\n");
1420 
1421 	if (restore_file != NULL)
1422 		vm_restore_time(ctx);
1423 #endif
1424 
1425 	/*
1426 	 * Add CPU 0
1427 	 */
1428 	fbsdrun_addcpu(ctx, BSP, BSP, rip);
1429 
1430 #ifdef BHYVE_SNAPSHOT
1431 	/*
1432 	 * If we restore a VM, start all vCPUs now (including APs), otherwise,
1433 	 * let the guest OS to spin them up later via vmexits.
1434 	 */
1435 	if (restore_file != NULL) {
1436 		for (vcpu = 0; vcpu < guest_ncpus; vcpu++) {
1437 			if (vcpu == BSP)
1438 				continue;
1439 
1440 			fprintf(stdout, "spinning up vcpu no %d...\r\n", vcpu);
1441 			spinup_vcpu(ctx, vcpu);
1442 		}
1443 	}
1444 #endif
1445 
1446 	/*
1447 	 * Head off to the main event dispatch loop
1448 	 */
1449 	mevent_dispatch();
1450 
1451 	exit(4);
1452 }
1453