2 * This file is part of the Palacios Virtual Machine Monitor developed
3 * by the V3VEE Project with funding from the United States National
4 * Science Foundation and the Department of Energy.
6 * The V3VEE Project is a joint project between Northwestern University
7 * and the University of New Mexico. You can find out more at
10 * Copyright (c) 2008, Jack Lange <jarusl@cs.northwestern.edu>
11 * Copyright (c) 2008, The V3VEE Project <http://www.v3vee.org>
12 * All rights reserved.
14 * Author: Jack Lange <jarusl@cs.northwestern.edu>
16 * This is free software. You are permitted to use,
17 * redistribute, and modify it as specified in the file "V3VEE_LICENSE".
21 #include <palacios/vmm_msr.h>
22 #include <palacios/vmm.h>
23 #include <palacios/vm_guest.h>
25 static int free_hook(struct v3_vm_info * vm, struct v3_msr_hook * hook);
27 void v3_init_msr_map(struct v3_vm_info * vm) {
28 struct v3_msr_map * msr_map = &(vm->msr_map);
30 PrintDebug("Initializing MSR map.\n");
32 INIT_LIST_HEAD(&(msr_map->hook_list));
33 msr_map->num_hooks = 0;
35 msr_map->arch_data = NULL;
36 msr_map->update_map = NULL;
39 int v3_deinit_msr_map(struct v3_vm_info * vm) {
40 struct v3_msr_hook * hook = NULL;
41 struct v3_msr_hook * tmp = NULL;
43 list_for_each_entry_safe(hook, tmp, &(vm->msr_map.hook_list), link) {
50 int v3_handle_msr_write(struct guest_info * info) {
51 uint32_t msr_num = info->vm_regs.rcx;
52 struct v3_msr msr_val;
53 struct v3_msr_hook * hook = NULL;
57 PrintDebug("MSR write for msr 0x%x\n", msr_num);
59 hook = v3_get_msr_hook(info->vm_info, msr_num);
62 PrintError("Write to unhooked MSR 0x%x\n", msr_num);
64 msr_val.lo = info->vm_regs.rax;
65 msr_val.hi = info->vm_regs.rdx;
67 if (hook->write(info, msr_num, msr_val, hook->priv_data) == -1) {
68 PrintError("Error in MSR hook Write\n");
79 int v3_handle_msr_read(struct guest_info * info) {
80 uint32_t msr_num = info->vm_regs.rcx;
81 struct v3_msr msr_val;
82 struct v3_msr_hook * hook = NULL;
86 hook = v3_get_msr_hook(info->vm_info, msr_num);
89 PrintError("Read from unhooked MSR 0x%x\n", msr_num);
91 if (hook->read(info, msr_num, &msr_val, hook->priv_data) == -1) {
92 PrintError("Error in MSR hook Read\n");
97 info->vm_regs.rax = msr_val.lo;
98 info->vm_regs.rdx = msr_val.hi;
104 int v3_hook_msr(struct v3_vm_info * vm, uint32_t msr,
105 int (*read)(struct guest_info * core, uint32_t msr, struct v3_msr * dst, void * priv_data),
106 int (*write)(struct guest_info * core, uint32_t msr, struct v3_msr src, void * priv_data),
109 struct v3_msr_map * msr_map = &(vm->msr_map);
110 struct v3_msr_hook * hook = NULL;
112 hook = (struct v3_msr_hook *)V3_Malloc(sizeof(struct v3_msr_hook));
115 PrintError("Could not allocate msr hook for MSR 0x%x\n", msr);
122 hook->priv_data = priv_data;
124 msr_map->num_hooks++;
126 list_add(&(hook->link), &(msr_map->hook_list));
128 if (msr_map->update_map) {
129 msr_map->update_map(vm, msr,
130 (read == NULL) ? 0 : 1,
131 (write == NULL) ? 0 : 1);
137 static int free_hook(struct v3_vm_info * vm, struct v3_msr_hook * hook) {
138 list_del(&(hook->link));
140 if (vm->msr_map.update_map) {
141 vm->msr_map.update_map(vm, hook->msr, 0, 0);
150 int v3_unhook_msr(struct v3_vm_info * vm, uint32_t msr) {
151 struct v3_msr_hook * hook = v3_get_msr_hook(vm, msr);
154 PrintError("Could not find MSR to unhook %u (0x%x)\n", msr, msr);
165 struct v3_msr_hook * v3_get_msr_hook(struct v3_vm_info * vm, uint32_t msr) {
166 struct v3_msr_map * msr_map = &(vm->msr_map);
167 struct v3_msr_hook * hook = NULL;
169 list_for_each_entry(hook, &(msr_map->hook_list), link) {
170 if (hook->msr == msr) {
179 void v3_refresh_msr_map(struct v3_vm_info * vm) {
180 struct v3_msr_map * msr_map = &(vm->msr_map);
181 struct v3_msr_hook * hook = NULL;
183 if (msr_map->update_map == NULL) {
184 PrintError("Trying to refresh an MSR map with no backend\n");
188 list_for_each_entry(hook, &(msr_map->hook_list), link) {
189 PrintDebug("updating MSR map for msr 0x%x\n", hook->msr);
190 msr_map->update_map(vm, hook->msr,
191 (hook->read == NULL) ? 0 : 1,
192 (hook->write == NULL) ? 0 : 1);
196 void v3_print_msr_map(struct v3_vm_info * vm) {
197 struct v3_msr_map * msr_map = &(vm->msr_map);
198 struct v3_msr_hook * hook = NULL;
200 list_for_each_entry(hook, &(msr_map->hook_list), link) {
201 V3_Print("MSR HOOK (MSR=0x%x) (read=0x%p) (write=0x%p)\n",
202 hook->msr, hook->read, hook->write);