Palacios Public Git Repository

To checkout Palacios execute

  git clone http://v3vee.org/palacios/palacios.web/palacios.git
This will give you the master branch. You probably want the devel branch or one of the release branches. To switch to the devel branch, simply execute
  cd palacios
  git checkout --track -b devel origin/devel
The other branches are similar.


added inspection framework
[palacios.git] / palacios / src / palacios / vmm_multitree.c
1 /* 
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.  
5  *
6  * The V3VEE Project is a joint project between Northwestern University
7  * and the University of New Mexico.  You can find out more at 
8  * http://www.v3vee.org
9  *
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.
13  *
14  * Author: Jack Lange <jarusl@cs.northwestern.edu>
15  *
16  * This is free software.  You are permitted to use,
17  * redistribute, and modify it as specified in the file "V3VEE_LICENSE".
18  */
19
20
21 #include <palacios/vmm_multitree.h>
22 #include <palacios/vmm_string.h>
23
24 #include <palacios/vmm_rbtree.h>
25
26 static inline 
27 struct v3_mtree * __insert_mtree_node(struct v3_mtree * root, struct v3_mtree * node) {
28     struct rb_node ** p = &(root->child.rb_node);
29     struct rb_node * parent = NULL;
30     struct v3_mtree * tmp_node;
31
32     while (*p) {
33         int ret = 0;
34         parent = *p;
35         tmp_node = rb_entry(parent, struct v3_mtree, tree_node);
36
37         ret = strcmp(node->name, tmp_node->name);
38
39         if (ret < 0) {
40             p = &(*p)->rb_left;
41         } else if (ret > 0) {
42             p = &(*p)->rb_right;
43         } else {
44             return tmp_node;
45         }
46     }
47
48     rb_link_node(&(node->tree_node), parent, p);
49   
50     return NULL;
51 }
52
53
54
55 struct v3_mtree * v3_mtree_create_node(struct v3_mtree * root, char * name) {
56     struct v3_mtree * node = (struct v3_mtree *)V3_Malloc(sizeof(struct v3_mtree));
57     struct v3_mtree * ret = NULL;
58
59
60     memset(node, 0, sizeof(struct v3_mtree));
61     strncpy(node->name, name, 50);
62
63     if ((ret = __insert_mtree_node(root, node))) {
64         V3_Free(node);
65         return NULL;
66     }
67
68
69     v3_rb_insert_color(&(node->tree_node), &(root->child));
70
71     return node;
72 }
73
74
75 struct v3_mtree * v3_mtree_create_subtree(struct v3_mtree * root, char * name) {
76     struct v3_mtree * node = v3_mtree_create_node(root, name);
77
78     PrintDebug("Creating Subtree %s\n", name);
79
80     if (node == NULL) {
81         return NULL;
82     }
83
84     node->subtree = 1;
85
86     return node;
87 }
88
89
90 struct v3_mtree * v3_mtree_create_value(struct v3_mtree * root, char * name, 
91                                         uint64_t size, void * value) {
92     struct v3_mtree * node = v3_mtree_create_node(root, name);
93
94     PrintDebug("Creating value %s\n", name);
95
96
97     if (node == NULL) {
98         return NULL;
99     }
100
101     node->size = size;
102     node->value = value;
103
104     return node;
105 }
106
107
108
109 struct v3_mtree * v3_mtree_find_node(struct v3_mtree * root, char * name) {
110     struct rb_node * n = root->child.rb_node;
111     struct v3_mtree * tmp_node = NULL;
112
113     if (root->subtree == 0) {
114         PrintError("Searching for node on a non-root mtree (search=%s), root=%s\n", name, root->name);
115         return NULL;
116     }
117    
118     while (n) {
119         int ret = 0;
120         tmp_node = rb_entry(n, struct v3_mtree, tree_node);
121         ret = strcmp(tmp_node->name, name);
122
123         if (ret < 0) {
124             n = n->rb_left;
125         } else if (ret > 0) {
126             n = n->rb_right;
127         } else {
128             return tmp_node;
129         }       
130     }
131
132     return NULL;
133 }
134
135
136 struct v3_mtree * v3_mtree_find_subtree(struct v3_mtree * root, char * name) {
137     struct v3_mtree * node = v3_mtree_find_node(root, name);
138     
139     if (node->subtree == 0) {
140         return NULL;
141     }
142
143     return node;
144 }
145
146
147 struct v3_mtree * v3_mtree_find_value(struct v3_mtree * root, char * name) {
148     struct v3_mtree * node= v3_mtree_find_node(root, name);
149     
150     if (node->subtree == 1) {
151         return NULL;
152     }
153
154     return node;
155 }