mirror of
https://github.com/clearlinux/kvmtool.git
synced 2026-06-16 02:15:47 +00:00
4298ddade7
Allow pausing and unpausing guests running on the host. Pausing a guest means that none of the VCPU threads are running KVM_RUN until they are unpaused. The following API functions are added: void kvm__pause(void); void kvm__continue(void); void kvm__notify_paused(void); Signed-off-by: Sasha Levin <levinsasha928@gmail.com> Signed-off-by: Pekka Enberg <penberg@kernel.org>
473 lines
12 KiB
C
473 lines
12 KiB
C
#include "kvm/kvm-cpu.h"
|
|
|
|
#include "kvm/symbol.h"
|
|
#include "kvm/util.h"
|
|
#include "kvm/kvm.h"
|
|
|
|
#include <asm/msr-index.h>
|
|
|
|
#include <sys/ioctl.h>
|
|
#include <sys/mman.h>
|
|
#include <signal.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <errno.h>
|
|
#include <stdio.h>
|
|
|
|
extern __thread struct kvm_cpu *current_kvm_cpu;
|
|
|
|
static inline bool is_in_protected_mode(struct kvm_cpu *vcpu)
|
|
{
|
|
return vcpu->sregs.cr0 & 0x01;
|
|
}
|
|
|
|
static inline u64 ip_to_flat(struct kvm_cpu *vcpu, u64 ip)
|
|
{
|
|
u64 cs;
|
|
|
|
/*
|
|
* NOTE! We should take code segment base address into account here.
|
|
* Luckily it's usually zero because Linux uses flat memory model.
|
|
*/
|
|
if (is_in_protected_mode(vcpu))
|
|
return ip;
|
|
|
|
cs = vcpu->sregs.cs.selector;
|
|
|
|
return ip + (cs << 4);
|
|
}
|
|
|
|
static inline u32 selector_to_base(u16 selector)
|
|
{
|
|
/*
|
|
* KVM on Intel requires 'base' to be 'selector * 16' in real mode.
|
|
*/
|
|
return (u32)selector * 16;
|
|
}
|
|
|
|
static struct kvm_cpu *kvm_cpu__new(struct kvm *kvm)
|
|
{
|
|
struct kvm_cpu *vcpu;
|
|
|
|
vcpu = calloc(1, sizeof *vcpu);
|
|
if (!vcpu)
|
|
return NULL;
|
|
|
|
vcpu->kvm = kvm;
|
|
|
|
return vcpu;
|
|
}
|
|
|
|
void kvm_cpu__delete(struct kvm_cpu *vcpu)
|
|
{
|
|
if (vcpu->msrs)
|
|
free(vcpu->msrs);
|
|
|
|
free(vcpu);
|
|
}
|
|
|
|
struct kvm_cpu *kvm_cpu__init(struct kvm *kvm, unsigned long cpu_id)
|
|
{
|
|
struct kvm_cpu *vcpu;
|
|
int mmap_size;
|
|
|
|
vcpu = kvm_cpu__new(kvm);
|
|
if (!vcpu)
|
|
return NULL;
|
|
|
|
vcpu->cpu_id = cpu_id;
|
|
|
|
vcpu->vcpu_fd = ioctl(vcpu->kvm->vm_fd, KVM_CREATE_VCPU, cpu_id);
|
|
if (vcpu->vcpu_fd < 0)
|
|
die_perror("KVM_CREATE_VCPU ioctl");
|
|
|
|
mmap_size = ioctl(vcpu->kvm->sys_fd, KVM_GET_VCPU_MMAP_SIZE, 0);
|
|
if (mmap_size < 0)
|
|
die_perror("KVM_GET_VCPU_MMAP_SIZE ioctl");
|
|
|
|
vcpu->kvm_run = mmap(NULL, mmap_size, PROT_RW, MAP_SHARED, vcpu->vcpu_fd, 0);
|
|
if (vcpu->kvm_run == MAP_FAILED)
|
|
die("unable to mmap vcpu fd");
|
|
|
|
vcpu->is_running = true;
|
|
|
|
return vcpu;
|
|
}
|
|
|
|
void kvm_cpu__enable_singlestep(struct kvm_cpu *vcpu)
|
|
{
|
|
struct kvm_guest_debug debug = {
|
|
.control = KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_SINGLESTEP,
|
|
};
|
|
|
|
if (ioctl(vcpu->vcpu_fd, KVM_SET_GUEST_DEBUG, &debug) < 0)
|
|
pr_warning("KVM_SET_GUEST_DEBUG failed");
|
|
}
|
|
|
|
static struct kvm_msrs *kvm_msrs__new(size_t nmsrs)
|
|
{
|
|
struct kvm_msrs *vcpu = calloc(1, sizeof(*vcpu) + (sizeof(struct kvm_msr_entry) * nmsrs));
|
|
|
|
if (!vcpu)
|
|
die("out of memory");
|
|
|
|
return vcpu;
|
|
}
|
|
|
|
#define KVM_MSR_ENTRY(_index, _data) \
|
|
(struct kvm_msr_entry) { .index = _index, .data = _data }
|
|
|
|
static void kvm_cpu__setup_msrs(struct kvm_cpu *vcpu)
|
|
{
|
|
unsigned long ndx = 0;
|
|
|
|
vcpu->msrs = kvm_msrs__new(100);
|
|
|
|
vcpu->msrs->entries[ndx++] = KVM_MSR_ENTRY(MSR_IA32_SYSENTER_CS, 0x0);
|
|
vcpu->msrs->entries[ndx++] = KVM_MSR_ENTRY(MSR_IA32_SYSENTER_ESP, 0x0);
|
|
vcpu->msrs->entries[ndx++] = KVM_MSR_ENTRY(MSR_IA32_SYSENTER_EIP, 0x0);
|
|
#ifdef CONFIG_X86_64
|
|
vcpu->msrs->entries[ndx++] = KVM_MSR_ENTRY(MSR_STAR, 0x0);
|
|
vcpu->msrs->entries[ndx++] = KVM_MSR_ENTRY(MSR_CSTAR, 0x0);
|
|
vcpu->msrs->entries[ndx++] = KVM_MSR_ENTRY(MSR_KERNEL_GS_BASE, 0x0);
|
|
vcpu->msrs->entries[ndx++] = KVM_MSR_ENTRY(MSR_SYSCALL_MASK, 0x0);
|
|
vcpu->msrs->entries[ndx++] = KVM_MSR_ENTRY(MSR_LSTAR, 0x0);
|
|
#endif
|
|
vcpu->msrs->entries[ndx++] = KVM_MSR_ENTRY(MSR_IA32_TSC, 0x0);
|
|
|
|
vcpu->msrs->nmsrs = ndx;
|
|
|
|
if (ioctl(vcpu->vcpu_fd, KVM_SET_MSRS, vcpu->msrs) < 0)
|
|
die_perror("KVM_SET_MSRS failed");
|
|
}
|
|
|
|
static void kvm_cpu__setup_fpu(struct kvm_cpu *vcpu)
|
|
{
|
|
vcpu->fpu = (struct kvm_fpu) {
|
|
.fcw = 0x37f,
|
|
.mxcsr = 0x1f80,
|
|
};
|
|
|
|
if (ioctl(vcpu->vcpu_fd, KVM_SET_FPU, &vcpu->fpu) < 0)
|
|
die_perror("KVM_SET_FPU failed");
|
|
}
|
|
|
|
static void kvm_cpu__setup_regs(struct kvm_cpu *vcpu)
|
|
{
|
|
vcpu->regs = (struct kvm_regs) {
|
|
/* We start the guest in 16-bit real mode */
|
|
.rflags = 0x0000000000000002ULL,
|
|
|
|
.rip = vcpu->kvm->boot_ip,
|
|
.rsp = vcpu->kvm->boot_sp,
|
|
.rbp = vcpu->kvm->boot_sp,
|
|
};
|
|
|
|
if (vcpu->regs.rip > USHRT_MAX)
|
|
die("ip 0x%llx is too high for real mode", (u64) vcpu->regs.rip);
|
|
|
|
if (ioctl(vcpu->vcpu_fd, KVM_SET_REGS, &vcpu->regs) < 0)
|
|
die_perror("KVM_SET_REGS failed");
|
|
}
|
|
|
|
static void kvm_cpu__setup_sregs(struct kvm_cpu *vcpu)
|
|
{
|
|
|
|
if (ioctl(vcpu->vcpu_fd, KVM_GET_SREGS, &vcpu->sregs) < 0)
|
|
die_perror("KVM_GET_SREGS failed");
|
|
|
|
vcpu->sregs.cs.selector = vcpu->kvm->boot_selector;
|
|
vcpu->sregs.cs.base = selector_to_base(vcpu->kvm->boot_selector);
|
|
vcpu->sregs.ss.selector = vcpu->kvm->boot_selector;
|
|
vcpu->sregs.ss.base = selector_to_base(vcpu->kvm->boot_selector);
|
|
vcpu->sregs.ds.selector = vcpu->kvm->boot_selector;
|
|
vcpu->sregs.ds.base = selector_to_base(vcpu->kvm->boot_selector);
|
|
vcpu->sregs.es.selector = vcpu->kvm->boot_selector;
|
|
vcpu->sregs.es.base = selector_to_base(vcpu->kvm->boot_selector);
|
|
vcpu->sregs.fs.selector = vcpu->kvm->boot_selector;
|
|
vcpu->sregs.fs.base = selector_to_base(vcpu->kvm->boot_selector);
|
|
vcpu->sregs.gs.selector = vcpu->kvm->boot_selector;
|
|
vcpu->sregs.gs.base = selector_to_base(vcpu->kvm->boot_selector);
|
|
|
|
if (ioctl(vcpu->vcpu_fd, KVM_SET_SREGS, &vcpu->sregs) < 0)
|
|
die_perror("KVM_SET_SREGS failed");
|
|
}
|
|
|
|
/**
|
|
* kvm_cpu__reset_vcpu - reset virtual CPU to a known state
|
|
*/
|
|
void kvm_cpu__reset_vcpu(struct kvm_cpu *vcpu)
|
|
{
|
|
kvm_cpu__setup_sregs(vcpu);
|
|
kvm_cpu__setup_regs(vcpu);
|
|
kvm_cpu__setup_fpu(vcpu);
|
|
kvm_cpu__setup_msrs(vcpu);
|
|
}
|
|
|
|
static void print_dtable(const char *name, struct kvm_dtable *dtable)
|
|
{
|
|
printf(" %s %016llx %08hx\n",
|
|
name, (u64) dtable->base, (u16) dtable->limit);
|
|
}
|
|
|
|
static void print_segment(const char *name, struct kvm_segment *seg)
|
|
{
|
|
printf(" %s %04hx %016llx %08x %02hhx %x %x %x %x %x %x %x\n",
|
|
name, (u16) seg->selector, (u64) seg->base, (u32) seg->limit,
|
|
(u8) seg->type, seg->present, seg->dpl, seg->db, seg->s, seg->l, seg->g, seg->avl);
|
|
}
|
|
|
|
void kvm_cpu__show_registers(struct kvm_cpu *vcpu)
|
|
{
|
|
unsigned long cr0, cr2, cr3;
|
|
unsigned long cr4, cr8;
|
|
unsigned long rax, rbx, rcx;
|
|
unsigned long rdx, rsi, rdi;
|
|
unsigned long rbp, r8, r9;
|
|
unsigned long r10, r11, r12;
|
|
unsigned long r13, r14, r15;
|
|
unsigned long rip, rsp;
|
|
struct kvm_sregs sregs;
|
|
unsigned long rflags;
|
|
struct kvm_regs regs;
|
|
int i;
|
|
|
|
if (ioctl(vcpu->vcpu_fd, KVM_GET_REGS, ®s) < 0)
|
|
die("KVM_GET_REGS failed");
|
|
|
|
rflags = regs.rflags;
|
|
|
|
rip = regs.rip; rsp = regs.rsp;
|
|
rax = regs.rax; rbx = regs.rbx; rcx = regs.rcx;
|
|
rdx = regs.rdx; rsi = regs.rsi; rdi = regs.rdi;
|
|
rbp = regs.rbp; r8 = regs.r8; r9 = regs.r9;
|
|
r10 = regs.r10; r11 = regs.r11; r12 = regs.r12;
|
|
r13 = regs.r13; r14 = regs.r14; r15 = regs.r15;
|
|
|
|
printf("\n Registers:\n");
|
|
printf( " ----------\n");
|
|
printf(" rip: %016lx rsp: %016lx flags: %016lx\n", rip, rsp, rflags);
|
|
printf(" rax: %016lx rbx: %016lx rcx: %016lx\n", rax, rbx, rcx);
|
|
printf(" rdx: %016lx rsi: %016lx rdi: %016lx\n", rdx, rsi, rdi);
|
|
printf(" rbp: %016lx r8: %016lx r9: %016lx\n", rbp, r8, r9);
|
|
printf(" r10: %016lx r11: %016lx r12: %016lx\n", r10, r11, r12);
|
|
printf(" r13: %016lx r14: %016lx r15: %016lx\n", r13, r14, r15);
|
|
|
|
if (ioctl(vcpu->vcpu_fd, KVM_GET_SREGS, &sregs) < 0)
|
|
die("KVM_GET_REGS failed");
|
|
|
|
cr0 = sregs.cr0; cr2 = sregs.cr2; cr3 = sregs.cr3;
|
|
cr4 = sregs.cr4; cr8 = sregs.cr8;
|
|
|
|
printf(" cr0: %016lx cr2: %016lx cr3: %016lx\n", cr0, cr2, cr3);
|
|
printf(" cr4: %016lx cr8: %016lx\n", cr4, cr8);
|
|
printf("\n Segment registers:\n");
|
|
printf( " ------------------\n");
|
|
printf(" register selector base limit type p dpl db s l g avl\n");
|
|
print_segment("cs ", &sregs.cs);
|
|
print_segment("ss ", &sregs.ss);
|
|
print_segment("ds ", &sregs.ds);
|
|
print_segment("es ", &sregs.es);
|
|
print_segment("fs ", &sregs.fs);
|
|
print_segment("gs ", &sregs.gs);
|
|
print_segment("tr ", &sregs.tr);
|
|
print_segment("ldt", &sregs.ldt);
|
|
print_dtable("gdt", &sregs.gdt);
|
|
print_dtable("idt", &sregs.idt);
|
|
|
|
printf("\n APIC:\n");
|
|
printf( " -----\n");
|
|
printf(" efer: %016llx apic base: %016llx nmi: %s\n",
|
|
(u64) sregs.efer, (u64) sregs.apic_base,
|
|
(vcpu->kvm->nmi_disabled ? "disabled" : "enabled"));
|
|
|
|
printf("\n Interrupt bitmap:\n");
|
|
printf( " -----------------\n");
|
|
for (i = 0; i < (KVM_NR_INTERRUPTS + 63) / 64; i++)
|
|
printf(" %016llx", (u64) sregs.interrupt_bitmap[i]);
|
|
printf("\n");
|
|
}
|
|
|
|
#define MAX_SYM_LEN 128
|
|
|
|
void kvm_cpu__show_code(struct kvm_cpu *vcpu)
|
|
{
|
|
unsigned int code_bytes = 64;
|
|
unsigned int code_prologue = code_bytes * 43 / 64;
|
|
unsigned int code_len = code_bytes;
|
|
char sym[MAX_SYM_LEN];
|
|
unsigned char c;
|
|
unsigned int i;
|
|
u8 *ip;
|
|
|
|
if (ioctl(vcpu->vcpu_fd, KVM_GET_REGS, &vcpu->regs) < 0)
|
|
die("KVM_GET_REGS failed");
|
|
|
|
if (ioctl(vcpu->vcpu_fd, KVM_GET_SREGS, &vcpu->sregs) < 0)
|
|
die("KVM_GET_SREGS failed");
|
|
|
|
ip = guest_flat_to_host(vcpu->kvm, ip_to_flat(vcpu, vcpu->regs.rip) - code_prologue);
|
|
|
|
printf("\n Code:\n");
|
|
printf( " -----\n");
|
|
|
|
symbol__lookup(vcpu->kvm, vcpu->regs.rip, sym, MAX_SYM_LEN);
|
|
|
|
printf(" rip: [<%016lx>] %s\n\n", (unsigned long) vcpu->regs.rip, sym);
|
|
|
|
for (i = 0; i < code_len; i++, ip++) {
|
|
if (!host_ptr_in_ram(vcpu->kvm, ip))
|
|
break;
|
|
|
|
c = *ip;
|
|
|
|
if (ip == guest_flat_to_host(vcpu->kvm, ip_to_flat(vcpu, vcpu->regs.rip)))
|
|
printf(" <%02x>", c);
|
|
else
|
|
printf(" %02x", c);
|
|
}
|
|
|
|
printf("\n");
|
|
|
|
printf("\n Stack:\n");
|
|
printf( " ------\n");
|
|
kvm__dump_mem(vcpu->kvm, vcpu->regs.rsp, 32);
|
|
}
|
|
|
|
void kvm_cpu__show_page_tables(struct kvm_cpu *vcpu)
|
|
{
|
|
u64 *pte1;
|
|
u64 *pte2;
|
|
u64 *pte3;
|
|
u64 *pte4;
|
|
|
|
if (!is_in_protected_mode(vcpu))
|
|
return;
|
|
|
|
if (ioctl(vcpu->vcpu_fd, KVM_GET_SREGS, &vcpu->sregs) < 0)
|
|
die("KVM_GET_SREGS failed");
|
|
|
|
pte4 = guest_flat_to_host(vcpu->kvm, vcpu->sregs.cr3);
|
|
if (!host_ptr_in_ram(vcpu->kvm, pte4))
|
|
return;
|
|
|
|
pte3 = guest_flat_to_host(vcpu->kvm, (*pte4 & ~0xfff));
|
|
if (!host_ptr_in_ram(vcpu->kvm, pte3))
|
|
return;
|
|
|
|
pte2 = guest_flat_to_host(vcpu->kvm, (*pte3 & ~0xfff));
|
|
if (!host_ptr_in_ram(vcpu->kvm, pte2))
|
|
return;
|
|
|
|
pte1 = guest_flat_to_host(vcpu->kvm, (*pte2 & ~0xfff));
|
|
if (!host_ptr_in_ram(vcpu->kvm, pte1))
|
|
return;
|
|
|
|
printf("Page Tables:\n");
|
|
if (*pte2 & (1 << 7))
|
|
printf(" pte4: %016llx pte3: %016llx"
|
|
" pte2: %016llx\n",
|
|
*pte4, *pte3, *pte2);
|
|
else
|
|
printf(" pte4: %016llx pte3: %016llx pte2: %016"
|
|
"llx pte1: %016llx\n",
|
|
*pte4, *pte3, *pte2, *pte1);
|
|
}
|
|
|
|
void kvm_cpu__run(struct kvm_cpu *vcpu)
|
|
{
|
|
int err;
|
|
|
|
err = ioctl(vcpu->vcpu_fd, KVM_RUN, 0);
|
|
if (err && (errno != EINTR && errno != EAGAIN))
|
|
die_perror("KVM_RUN failed");
|
|
}
|
|
|
|
static void kvm_cpu_signal_handler(int signum)
|
|
{
|
|
if (signum == SIGKVMEXIT) {
|
|
if (current_kvm_cpu->is_running) {
|
|
current_kvm_cpu->is_running = false;
|
|
pthread_kill(pthread_self(), SIGKVMEXIT);
|
|
}
|
|
} else if (signum == SIGKVMPAUSE) {
|
|
current_kvm_cpu->paused = 1;
|
|
}
|
|
}
|
|
|
|
int kvm_cpu__start(struct kvm_cpu *cpu)
|
|
{
|
|
sigset_t sigset;
|
|
|
|
sigemptyset(&sigset);
|
|
sigaddset(&sigset, SIGALRM);
|
|
|
|
pthread_sigmask(SIG_BLOCK, &sigset, NULL);
|
|
|
|
signal(SIGKVMEXIT, kvm_cpu_signal_handler);
|
|
signal(SIGKVMPAUSE, kvm_cpu_signal_handler);
|
|
|
|
kvm_cpu__setup_cpuid(cpu);
|
|
kvm_cpu__reset_vcpu(cpu);
|
|
|
|
for (;;) {
|
|
if (cpu->paused) {
|
|
kvm__notify_paused();
|
|
cpu->paused = 0;
|
|
}
|
|
|
|
kvm_cpu__run(cpu);
|
|
|
|
switch (cpu->kvm_run->exit_reason) {
|
|
case KVM_EXIT_UNKNOWN:
|
|
break;
|
|
case KVM_EXIT_DEBUG:
|
|
kvm_cpu__show_registers(cpu);
|
|
kvm_cpu__show_code(cpu);
|
|
break;
|
|
case KVM_EXIT_IO: {
|
|
bool ret;
|
|
|
|
ret = kvm__emulate_io(cpu->kvm,
|
|
cpu->kvm_run->io.port,
|
|
(u8 *)cpu->kvm_run +
|
|
cpu->kvm_run->io.data_offset,
|
|
cpu->kvm_run->io.direction,
|
|
cpu->kvm_run->io.size,
|
|
cpu->kvm_run->io.count);
|
|
|
|
if (!ret)
|
|
goto panic_kvm;
|
|
break;
|
|
}
|
|
case KVM_EXIT_MMIO: {
|
|
bool ret;
|
|
|
|
ret = kvm__emulate_mmio(cpu->kvm,
|
|
cpu->kvm_run->mmio.phys_addr,
|
|
cpu->kvm_run->mmio.data,
|
|
cpu->kvm_run->mmio.len,
|
|
cpu->kvm_run->mmio.is_write);
|
|
|
|
if (!ret)
|
|
goto panic_kvm;
|
|
break;
|
|
}
|
|
case KVM_EXIT_INTR:
|
|
if (cpu->is_running)
|
|
break;
|
|
goto exit_kvm;
|
|
case KVM_EXIT_SHUTDOWN:
|
|
goto exit_kvm;
|
|
default:
|
|
goto panic_kvm;
|
|
}
|
|
}
|
|
|
|
exit_kvm:
|
|
return 0;
|
|
|
|
panic_kvm:
|
|
return 1;
|
|
}
|