mirror of
https://github.com/clearlinux/kvmtool.git
synced 2026-08-24 15:07:36 +00:00
4095fac878
PAGE_SIZE may have been defined by the C libary (musl-libc does that). So avoid redefining it here unconditionally, instead only use our definition if none has been provided by the libc. Signed-off-by: Andre Przywara <andre.przywara@arm.com> Signed-off-by: Will Deacon <will.deacon@arm.com>
138 lines
4.0 KiB
C
138 lines
4.0 KiB
C
#ifndef KVM__KVM_H
|
|
#define KVM__KVM_H
|
|
|
|
#include "kvm/kvm-arch.h"
|
|
#include "kvm/kvm-config.h"
|
|
#include "kvm/util-init.h"
|
|
#include "kvm/kvm.h"
|
|
|
|
#include <stdbool.h>
|
|
#include <linux/types.h>
|
|
#include <time.h>
|
|
#include <signal.h>
|
|
#include <sys/prctl.h>
|
|
#include <limits.h>
|
|
|
|
#define SIGKVMEXIT (SIGRTMIN + 0)
|
|
#define SIGKVMPAUSE (SIGRTMIN + 1)
|
|
|
|
#define KVM_PID_FILE_PATH "/.lkvm/"
|
|
#define HOME_DIR getenv("HOME")
|
|
#define KVM_BINARY_NAME "lkvm"
|
|
|
|
#ifndef PAGE_SIZE
|
|
#define PAGE_SIZE (sysconf(_SC_PAGE_SIZE))
|
|
#endif
|
|
|
|
#define DEFINE_KVM_EXT(ext) \
|
|
.name = #ext, \
|
|
.code = ext
|
|
|
|
enum {
|
|
KVM_VMSTATE_RUNNING,
|
|
KVM_VMSTATE_PAUSED,
|
|
};
|
|
|
|
struct kvm_ext {
|
|
const char *name;
|
|
int code;
|
|
};
|
|
|
|
struct kvm_mem_bank {
|
|
struct list_head list;
|
|
u64 guest_phys_addr;
|
|
void *host_addr;
|
|
u64 size;
|
|
};
|
|
|
|
struct kvm {
|
|
struct kvm_arch arch;
|
|
struct kvm_config cfg;
|
|
int sys_fd; /* For system ioctls(), i.e. /dev/kvm */
|
|
int vm_fd; /* For VM ioctls() */
|
|
timer_t timerid; /* Posix timer for interrupts */
|
|
|
|
int nrcpus; /* Number of cpus to run */
|
|
struct kvm_cpu **cpus;
|
|
|
|
u32 mem_slots; /* for KVM_SET_USER_MEMORY_REGION */
|
|
u64 ram_size;
|
|
void *ram_start;
|
|
u64 ram_pagesize;
|
|
struct list_head mem_banks;
|
|
|
|
bool nmi_disabled;
|
|
|
|
const char *vmlinux;
|
|
struct disk_image **disks;
|
|
int nr_disks;
|
|
|
|
int vm_state;
|
|
};
|
|
|
|
void kvm__set_dir(const char *fmt, ...);
|
|
const char *kvm__get_dir(void);
|
|
|
|
int kvm__init(struct kvm *kvm);
|
|
struct kvm *kvm__new(void);
|
|
int kvm__recommended_cpus(struct kvm *kvm);
|
|
int kvm__max_cpus(struct kvm *kvm);
|
|
void kvm__init_ram(struct kvm *kvm);
|
|
int kvm__exit(struct kvm *kvm);
|
|
bool kvm__load_firmware(struct kvm *kvm, const char *firmware_filename);
|
|
bool kvm__load_kernel(struct kvm *kvm, const char *kernel_filename,
|
|
const char *initrd_filename, const char *kernel_cmdline);
|
|
int kvm_timer__init(struct kvm *kvm);
|
|
int kvm_timer__exit(struct kvm *kvm);
|
|
void kvm__irq_line(struct kvm *kvm, int irq, int level);
|
|
void kvm__irq_trigger(struct kvm *kvm, int irq);
|
|
bool kvm__emulate_io(struct kvm_cpu *vcpu, u16 port, void *data, int direction, int size, u32 count);
|
|
bool kvm__emulate_mmio(struct kvm_cpu *vcpu, u64 phys_addr, u8 *data, u32 len, u8 is_write);
|
|
int kvm__register_mem(struct kvm *kvm, u64 guest_phys, u64 size, void *userspace_addr);
|
|
int kvm__register_mmio(struct kvm *kvm, u64 phys_addr, u64 phys_addr_len, bool coalesce,
|
|
void (*mmio_fn)(struct kvm_cpu *vcpu, u64 addr, u8 *data, u32 len, u8 is_write, void *ptr),
|
|
void *ptr);
|
|
bool kvm__deregister_mmio(struct kvm *kvm, u64 phys_addr);
|
|
void kvm__pause(struct kvm *kvm);
|
|
void kvm__continue(struct kvm *kvm);
|
|
void kvm__notify_paused(void);
|
|
int kvm__get_sock_by_instance(const char *name);
|
|
int kvm__enumerate_instances(int (*callback)(const char *name, int pid));
|
|
void kvm__remove_socket(const char *name);
|
|
|
|
void kvm__arch_set_cmdline(char *cmdline, bool video);
|
|
void kvm__arch_init(struct kvm *kvm, const char *hugetlbfs_path, u64 ram_size);
|
|
void kvm__arch_delete_ram(struct kvm *kvm);
|
|
int kvm__arch_setup_firmware(struct kvm *kvm);
|
|
int kvm__arch_free_firmware(struct kvm *kvm);
|
|
bool kvm__arch_cpu_supports_vm(void);
|
|
void kvm__arch_read_term(struct kvm *kvm);
|
|
|
|
void *guest_flat_to_host(struct kvm *kvm, u64 offset);
|
|
u64 host_to_guest_flat(struct kvm *kvm, void *ptr);
|
|
|
|
int load_flat_binary(struct kvm *kvm, int fd_kernel, int fd_initrd, const char *kernel_cmdline);
|
|
int load_elf_binary(struct kvm *kvm, int fd_kernel, int fd_initrd, const char *kernel_cmdline);
|
|
bool load_bzimage(struct kvm *kvm, int fd_kernel, int fd_initrd, const char *kernel_cmdline);
|
|
|
|
/*
|
|
* Debugging
|
|
*/
|
|
void kvm__dump_mem(struct kvm *kvm, unsigned long addr, unsigned long size, int debug_fd);
|
|
|
|
extern const char *kvm_exit_reasons[];
|
|
|
|
static inline bool host_ptr_in_ram(struct kvm *kvm, void *p)
|
|
{
|
|
return kvm->ram_start <= p && p < (kvm->ram_start + kvm->ram_size);
|
|
}
|
|
|
|
bool kvm__supports_extension(struct kvm *kvm, unsigned int extension);
|
|
|
|
static inline void kvm__set_thread_name(const char *name)
|
|
{
|
|
prctl(PR_SET_NAME, name);
|
|
}
|
|
|
|
#endif /* KVM__KVM_H */
|