2011-05-13 04:54:01 +00:00
|
|
|
/*-
|
|
|
|
* Copyright (c) 2011 NetApp, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY NETAPP, INC ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL NETAPP, INC OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* $FreeBSD$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _VMMAPI_H_
|
|
|
|
#define _VMMAPI_H_
|
|
|
|
|
2014-05-31 23:37:34 +00:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/cpuset.h>
|
|
|
|
|
2014-05-26 18:21:08 +00:00
|
|
|
struct iovec;
|
2011-05-13 04:54:01 +00:00
|
|
|
struct vmctx;
|
2012-09-25 19:08:51 +00:00
|
|
|
enum x2apic_state;
|
2011-05-13 04:54:01 +00:00
|
|
|
|
2013-03-18 22:38:30 +00:00
|
|
|
/*
|
|
|
|
* Different styles of mapping the memory assigned to a VM into the address
|
|
|
|
* space of the controlling process.
|
|
|
|
*/
|
|
|
|
enum vm_mmap_style {
|
|
|
|
VM_MMAP_NONE, /* no mapping */
|
|
|
|
VM_MMAP_ALL, /* fully and statically mapped */
|
|
|
|
VM_MMAP_SPARSE, /* mappings created on-demand */
|
|
|
|
};
|
|
|
|
|
2014-05-13 16:40:27 +00:00
|
|
|
#define VM_MEM_F_INCORE 0x01 /* include guest memory in core file */
|
|
|
|
|
2011-05-13 04:54:01 +00:00
|
|
|
int vm_create(const char *name);
|
|
|
|
struct vmctx *vm_open(const char *name);
|
|
|
|
void vm_destroy(struct vmctx *ctx);
|
2013-10-09 03:56:07 +00:00
|
|
|
int vm_parse_memsize(const char *optarg, size_t *memsize);
|
2013-10-05 21:22:35 +00:00
|
|
|
int vm_get_memory_seg(struct vmctx *ctx, vm_paddr_t gpa, size_t *ret_len,
|
|
|
|
int *wired);
|
2013-03-18 22:38:30 +00:00
|
|
|
int vm_setup_memory(struct vmctx *ctx, size_t len, enum vm_mmap_style s);
|
|
|
|
void *vm_map_gpa(struct vmctx *ctx, vm_paddr_t gaddr, size_t len);
|
2013-10-05 21:22:35 +00:00
|
|
|
int vm_get_gpa_pmap(struct vmctx *, uint64_t gpa, uint64_t *pte, int *num);
|
2013-03-18 22:38:30 +00:00
|
|
|
uint32_t vm_get_lowmem_limit(struct vmctx *ctx);
|
|
|
|
void vm_set_lowmem_limit(struct vmctx *ctx, uint32_t limit);
|
2014-05-13 16:40:27 +00:00
|
|
|
void vm_set_memflags(struct vmctx *ctx, int flags);
|
2014-06-24 02:02:51 +00:00
|
|
|
size_t vm_get_lowmem_size(struct vmctx *ctx);
|
|
|
|
size_t vm_get_highmem_size(struct vmctx *ctx);
|
2011-05-13 04:54:01 +00:00
|
|
|
int vm_set_desc(struct vmctx *ctx, int vcpu, int reg,
|
|
|
|
uint64_t base, uint32_t limit, uint32_t access);
|
|
|
|
int vm_get_desc(struct vmctx *ctx, int vcpu, int reg,
|
|
|
|
uint64_t *base, uint32_t *limit, uint32_t *access);
|
2014-07-23 04:28:51 +00:00
|
|
|
int vm_get_seg_desc(struct vmctx *ctx, int vcpu, int reg,
|
|
|
|
struct seg_desc *seg_desc);
|
2011-05-13 04:54:01 +00:00
|
|
|
int vm_set_register(struct vmctx *ctx, int vcpu, int reg, uint64_t val);
|
|
|
|
int vm_get_register(struct vmctx *ctx, int vcpu, int reg, uint64_t *retval);
|
|
|
|
int vm_run(struct vmctx *ctx, int vcpu, uint64_t rip,
|
|
|
|
struct vm_exit *ret_vmexit);
|
2014-04-28 22:06:40 +00:00
|
|
|
int vm_suspend(struct vmctx *ctx, enum vm_suspend_how how);
|
2014-06-07 21:36:52 +00:00
|
|
|
int vm_reinit(struct vmctx *ctx);
|
2012-08-04 02:38:05 +00:00
|
|
|
int vm_apicid2vcpu(struct vmctx *ctx, int apicid);
|
2014-02-26 00:52:05 +00:00
|
|
|
int vm_inject_exception(struct vmctx *ctx, int vcpu, int vec);
|
|
|
|
int vm_inject_exception2(struct vmctx *ctx, int vcpu, int vec, int errcode);
|
2011-05-13 04:54:01 +00:00
|
|
|
int vm_lapic_irq(struct vmctx *ctx, int vcpu, int vector);
|
2013-12-23 19:29:07 +00:00
|
|
|
int vm_lapic_local_irq(struct vmctx *ctx, int vcpu, int vector);
|
2013-12-16 19:59:31 +00:00
|
|
|
int vm_lapic_msi(struct vmctx *ctx, uint64_t addr, uint64_t msg);
|
2013-11-12 22:51:03 +00:00
|
|
|
int vm_ioapic_assert_irq(struct vmctx *ctx, int irq);
|
|
|
|
int vm_ioapic_deassert_irq(struct vmctx *ctx, int irq);
|
2013-11-23 03:56:03 +00:00
|
|
|
int vm_ioapic_pulse_irq(struct vmctx *ctx, int irq);
|
2014-01-29 14:56:48 +00:00
|
|
|
int vm_ioapic_pincount(struct vmctx *ctx, int *pincount);
|
2014-04-14 19:00:20 +00:00
|
|
|
int vm_isa_assert_irq(struct vmctx *ctx, int atpic_irq, int ioapic_irq);
|
2014-03-11 16:56:00 +00:00
|
|
|
int vm_isa_deassert_irq(struct vmctx *ctx, int atpic_irq, int ioapic_irq);
|
|
|
|
int vm_isa_pulse_irq(struct vmctx *ctx, int atpic_irq, int ioapic_irq);
|
2014-05-15 14:16:55 +00:00
|
|
|
int vm_isa_set_irq_trigger(struct vmctx *ctx, int atpic_irq,
|
|
|
|
enum vm_intr_trigger trigger);
|
2011-05-13 04:54:01 +00:00
|
|
|
int vm_inject_nmi(struct vmctx *ctx, int vcpu);
|
|
|
|
int vm_capability_name2type(const char *capname);
|
2012-10-12 17:39:28 +00:00
|
|
|
const char *vm_capability_type2name(int type);
|
2011-05-13 04:54:01 +00:00
|
|
|
int vm_get_capability(struct vmctx *ctx, int vcpu, enum vm_cap_type cap,
|
|
|
|
int *retval);
|
|
|
|
int vm_set_capability(struct vmctx *ctx, int vcpu, enum vm_cap_type cap,
|
|
|
|
int val);
|
|
|
|
int vm_assign_pptdev(struct vmctx *ctx, int bus, int slot, int func);
|
|
|
|
int vm_unassign_pptdev(struct vmctx *ctx, int bus, int slot, int func);
|
|
|
|
int vm_map_pptdev_mmio(struct vmctx *ctx, int bus, int slot, int func,
|
|
|
|
vm_paddr_t gpa, size_t len, vm_paddr_t hpa);
|
2013-12-18 03:58:51 +00:00
|
|
|
int vm_setup_pptdev_msi(struct vmctx *ctx, int vcpu, int bus, int slot,
|
|
|
|
int func, uint64_t addr, uint64_t msg, int numvec);
|
|
|
|
int vm_setup_pptdev_msix(struct vmctx *ctx, int vcpu, int bus, int slot,
|
|
|
|
int func, int idx, uint64_t addr, uint64_t msg,
|
|
|
|
uint32_t vector_control);
|
2011-05-13 04:54:01 +00:00
|
|
|
|
2014-07-19 20:59:08 +00:00
|
|
|
int vm_get_intinfo(struct vmctx *ctx, int vcpu, uint64_t *i1, uint64_t *i2);
|
|
|
|
int vm_set_intinfo(struct vmctx *ctx, int vcpu, uint64_t exit_intinfo);
|
|
|
|
|
2011-05-13 04:54:01 +00:00
|
|
|
/*
|
|
|
|
* Return a pointer to the statistics buffer. Note that this is not MT-safe.
|
|
|
|
*/
|
|
|
|
uint64_t *vm_get_stats(struct vmctx *ctx, int vcpu, struct timeval *ret_tv,
|
|
|
|
int *ret_entries);
|
|
|
|
const char *vm_get_stat_desc(struct vmctx *ctx, int index);
|
|
|
|
|
2012-09-25 19:08:51 +00:00
|
|
|
int vm_get_x2apic_state(struct vmctx *ctx, int vcpu, enum x2apic_state *s);
|
|
|
|
int vm_set_x2apic_state(struct vmctx *ctx, int vcpu, enum x2apic_state s);
|
|
|
|
|
2013-11-25 19:04:51 +00:00
|
|
|
int vm_get_hpet_capabilities(struct vmctx *ctx, uint32_t *capabilities);
|
|
|
|
|
2014-05-26 18:21:08 +00:00
|
|
|
/*
|
|
|
|
* Translate the GLA range [gla,gla+len) into GPA segments in 'iov'.
|
|
|
|
* The 'iovcnt' should be big enough to accomodate all GPA segments.
|
|
|
|
* Returns 0 on success, 1 on a guest fault condition and -1 otherwise.
|
|
|
|
*/
|
2014-07-23 04:28:51 +00:00
|
|
|
int vm_copy_setup(struct vmctx *ctx, int vcpu, struct vm_guest_paging *pg,
|
2014-05-26 18:21:08 +00:00
|
|
|
uint64_t gla, size_t len, int prot, struct iovec *iov, int iovcnt);
|
|
|
|
void vm_copyin(struct vmctx *ctx, int vcpu, struct iovec *guest_iov,
|
|
|
|
void *host_dst, size_t len);
|
|
|
|
void vm_copyout(struct vmctx *ctx, int vcpu, const void *host_src,
|
|
|
|
struct iovec *guest_iov, size_t len);
|
2014-05-24 23:12:30 +00:00
|
|
|
|
2011-05-13 04:54:01 +00:00
|
|
|
/* Reset vcpu register state */
|
|
|
|
int vcpu_reset(struct vmctx *ctx, int vcpu);
|
|
|
|
|
2014-05-31 23:37:34 +00:00
|
|
|
int vm_active_cpus(struct vmctx *ctx, cpuset_t *cpus);
|
|
|
|
int vm_suspended_cpus(struct vmctx *ctx, cpuset_t *cpus);
|
|
|
|
int vm_activate_cpu(struct vmctx *ctx, int vcpu);
|
|
|
|
|
2011-05-13 04:54:01 +00:00
|
|
|
/*
|
|
|
|
* FreeBSD specific APIs
|
|
|
|
*/
|
|
|
|
int vm_setup_freebsd_registers(struct vmctx *ctx, int vcpu,
|
|
|
|
uint64_t rip, uint64_t cr3, uint64_t gdtbase,
|
|
|
|
uint64_t rsp);
|
2014-02-05 04:39:03 +00:00
|
|
|
int vm_setup_freebsd_registers_i386(struct vmctx *vmctx, int vcpu,
|
|
|
|
uint32_t eip, uint32_t gdtbase,
|
|
|
|
uint32_t esp);
|
2011-05-13 04:54:01 +00:00
|
|
|
void vm_setup_freebsd_gdt(uint64_t *gdtr);
|
|
|
|
#endif /* _VMMAPI_H_ */
|