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".
20 #include <palacios/vmm.h>
22 #include <palacios/vmm_extensions.h>
23 #include <palacios/vm_guest.h>
24 #include <palacios/vmm_hashtable.h>
27 static struct hashtable * ext_table = NULL;
30 * This is a place holder to ensure that the _v3_extensions section gets created by gcc
32 static struct {} null_ext __attribute__((__used__)) \
33 __attribute__((unused, __section__ ("_v3_extensions"), \
34 aligned(sizeof(addr_t))));
38 static uint_t ext_hash_fn(addr_t key) {
39 char * name = (char *)key;
40 return v3_hash_buffer((uint8_t *)name, strlen(name));
43 static int ext_eq_fn(addr_t key1, addr_t key2) {
44 char * name1 = (char *)key1;
45 char * name2 = (char *)key2;
47 return (strcmp(name1, name2) == 0);
52 int V3_init_extensions() {
53 extern struct v3_extension_impl * __start__v3_extensions[];
54 extern struct v3_extension_impl * __stop__v3_extensions[];
55 struct v3_extension_impl ** tmp_ext = __start__v3_extensions;
58 ext_table = v3_create_htable(0, ext_hash_fn, ext_eq_fn);
60 while (tmp_ext != __stop__v3_extensions) {
61 V3_Print("Registering Extension (%s)\n", (*tmp_ext)->name);
63 if (v3_htable_search(ext_table, (addr_t)((*tmp_ext)->name))) {
64 PrintError("Multiple instances of Extension (%s)\n", (*tmp_ext)->name);
68 if (v3_htable_insert(ext_table, (addr_t)((*tmp_ext)->name), (addr_t)(*tmp_ext)) == 0) {
69 PrintError("Could not register Extension (%s)\n", (*tmp_ext)->name);
73 tmp_ext = &(__start__v3_extensions[++i]);
82 int V3_deinit_extensions() {
83 v3_free_htable(ext_table, 0, 0);
88 int v3_init_ext_manager(struct v3_vm_info * vm) {
89 struct v3_extensions * ext_state = &(vm->extensions);
91 INIT_LIST_HEAD(&(ext_state->extensions));
92 INIT_LIST_HEAD(&(ext_state->on_exits));
93 INIT_LIST_HEAD(&(ext_state->on_entries));
99 int v3_deinit_ext_manager(struct v3_vm_info * vm) {
101 PrintError("I should really do something here... \n");
107 int v3_add_extension(struct v3_vm_info * vm, const char * name, v3_cfg_tree_t * cfg) {
108 struct v3_extension_impl * impl = NULL;
109 struct v3_extension * ext = NULL;
111 impl = (void *)v3_htable_search(ext_table, (addr_t)name);
114 PrintError("Could not find requested extension (%s)\n", name);
118 V3_ASSERT(impl->init);
120 ext = V3_Malloc(sizeof(struct v3_extension));
123 PrintError("Could not allocate extension\n");
129 if (impl->init(vm, cfg, &(ext->priv_data)) == -1) {
130 PrintError("Error initializing Extension (%s)\n", name);
135 list_add(&(ext->node), &(vm->extensions.extensions));
138 list_add(&(ext->exit_node), &(vm->extensions.on_exits));
141 if (impl->on_entry) {
142 list_add(&(ext->entry_node), &(vm->extensions.on_entries));
148 int v3_init_core_extensions(struct guest_info * core) {
149 struct v3_extension * ext = NULL;
151 list_for_each_entry(ext, &(core->vm_info->extensions.extensions), node) {
152 if ((ext->impl) && (ext->impl->core_init)) {
153 if (ext->impl->core_init(core, ext->priv_data) == -1) {
154 PrintError("Error configuring per core extension %s on core %d\n",
155 ext->impl->name, core->vcpu_id);
167 void * v3_get_extension_state(struct v3_vm_info * vm, const char * name) {
168 struct v3_extension * ext = NULL;
170 list_for_each_entry(ext, &(vm->extensions.extensions), node) {
171 if (strncmp(ext->impl->name, name, strlen(ext->impl->name)) == 0) {
172 return ext->priv_data;