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 #ifndef __VMM_EXTENSIONS_H__
21 #define __VMM_EXTENSIONS_H__
25 #include <palacios/vmm.h>
26 #include <palacios/vmm_config.h>
27 #include <palacios/vmm_list.h>
33 struct v3_extensions {
34 struct list_head extensions;
35 struct list_head on_exits;
36 struct list_head on_entries;
40 struct v3_extension_impl {
42 int (*init)(struct v3_vm_info * vm, v3_cfg_tree_t * cfg, void ** priv_data);
43 int (*deinit)(struct v3_vm_info * vm, void * priv_data);
44 int (*core_init)(struct guest_info * core, void * priv_data);
45 int (*core_deinit)(struct guest_info * core, void * priv_data);
46 int (*on_entry)(struct guest_info * core, void * priv_data);
47 int (*on_exit)(struct guest_info * core, void * priv_data);
51 struct v3_extension_impl * impl;
54 struct list_head node;
55 struct list_head exit_node;
56 struct list_head entry_node;
61 int V3_init_extensions();
62 int V3_deinit_extensions();
65 int v3_init_ext_manager(struct v3_vm_info * vm);
66 int v3_add_extension(struct v3_vm_info * vm, const char * name, v3_cfg_tree_t * cfg);
67 int v3_init_core_extensions(struct guest_info * core);
69 void * v3_get_extension_state(struct v3_vm_info * vm, const char * name);
72 #define register_extension(ext) \
73 static struct v3_extension_impl * _v3_ext \
74 __attribute__((used)) \
75 __attribute__((unused, __section__("_v3_extensions"), \
76 aligned(sizeof(addr_t)))) \