1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403
|
/* This is part of um-ViewOS
* The user-mode implementation of OSVIEW -- A Process with a View
*
* treepoch.c: management of epoch count for nesting
* (TODO mgmt of tree for partial nesting, i.e. running a umview inside another umview)
*
* Copyright 2006 Renzo Davoli University of Bologna - Italy
* Some code Copyright 2006 Andrea Gasparini University of Bologna - Italy
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License, version 2, as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* $Id: treepoch.c 775 2009-09-01 21:15:23Z rd235 $
*
*/
/* TODO lazy garbage collection: treepoch nodes*/
#include <assert.h>
#include <stdlib.h>
#include <pthread.h>
#include <string.h>
#include <bits/wordsize.h>
#include <sys/utsname.h>
#include <stdio.h>
#include <config.h>
#include "treepoch.h"
#include "sctab.h"
/* a treepoch is a binary tree.
* each node represent a temporal interval of common history between
* umview istances.
* The two subtree of a node are named 0-subtree and 1-subtree, thus a
* binary number is naturally assigned to each node.
* (LSB is root choice)
*
* When a new istance starts two nodes get created in the treepoch
* the 0-subtree represents the original istance after while the 1-subtree
* represents the new istance.
*
* Each node is timestamped with its starting epoch.
* Processes are always assigned to the leaves.
*
*/
#if (__WORDSIZE == 32 ) /* 32 bits */
# define __LOG_WORDSIZE (5)
# define __WORDSIZEMASK 0x1f
#elif (__WORDSIZE == 64) /* 64 bits */
# define __LOG_WORDSIZE (6)
# define __WORDSIZEMASK 0x3f
#else
# error sorry this program has been tested only on 32 or 64 bit machines
#endif
#define MAXDEPTH (sizeof(long) * 8)
#define DEPTH_BYTES ((MAXDEPTH + 7)/8)
#define DEPTH_WORDS ((DEPTH_BYTES + sizeof(long) - 1)/sizeof(long))
struct treepoch {
struct treepoch *parent;
struct treepoch *sub[2]; /*structure pointers*/
epoch_t rise; /*when this element was created */
unsigned long nproc; /* number of processes in this node */
unsigned long nref; /* number of references to this node */
unsigned short subheight;/* height of the subtree rooted here*/
unsigned short len; /* len of the string (distance to the root) */
unsigned long bitstr[DEPTH_WORDS]; /*bitstring of this node*/
viewid_t viewid;
char *viewname;
};
static unsigned long nextviewid;
static struct treepoch *te_root; /* root of the treepoch structure */
/*
static struct treepoch tst_useless={
.len=__SHRT_MAX__,
};
*/
/* epoch now is a (long long) counter, it is used to timestamp all the state
* changes in the system */
static epoch_t epoch_now=2;
/* mutex for multithreading */
static pthread_mutex_t epoch_mutex = PTHREAD_MUTEX_INITIALIZER;
/* bit string management, the string is splitted into word-sized elements */
static int getbit(unsigned long *v,short b)
{
return (v && (v[b >> __LOG_WORDSIZE] & (1<< (b & __WORDSIZEMASK))));
}
static void setbit(unsigned long *v,short b,int val)
{
if (v) {
if (val)
v[b >> __LOG_WORDSIZE] |= (1<< (b & __WORDSIZEMASK));
else
v[b >> __LOG_WORDSIZE] &= ~(1<< (b & __WORDSIZEMASK));
}
}
/* TRUE if two strings differs up to the "len"th element */
static inline int diffbitstr(unsigned long *a,unsigned long *b,short len)
{
int i;
int w=len >> __LOG_WORDSIZE;
unsigned long mask= (1<<(len & __WORDSIZEMASK)) - 1;
int rv=0;
for (i=0;i<w && rv;i++)
rv = (a[i] != b[i]);
if (mask && !rv)
rv = ((a[i] & mask) != (b[i] & mask));
/*printk("DIFF %x %x %d -> %d\n",a[0],b[0],len,rv);*/
return rv;
}
/* one tick of the global timestap clock epoch_now */
static epoch_t new_epoch(){
epoch_t tmp;
pthread_mutex_lock(&epoch_mutex);
tmp=epoch_now;
epoch_now++;
pthread_mutex_unlock(&epoch_mutex);
/*printk("NEW EPOCH %lld\n",epoch_now);*/
return tmp;
}
epoch_t get_epoch(){
return epoch_now;
}
/* it is > 0 if the operation time is consistent with the service time.
* in such a case it returns the epoch of the matching */
epoch_t tst_matchingepoch(struct timestamp *service_tst)
{
/* if service_tst refers to a dead branch service_tst->epoch is updated*/
struct timestamp *process_tst=um_x_gettst();
/*printk("SE = %lld - PE = %lld\n",service_tst->epoch,process_tst->epoch);*/
while (service_tst->treepoch->parent && service_tst->treepoch->nproc==0)
service_tst->treepoch = service_tst->treepoch->parent;
/*printk("MATCH up %lld %lld\n",service_tst->epoch,service_tst->treepoch->rise);*/
while (service_tst->epoch < service_tst->treepoch->rise)
service_tst->treepoch = service_tst->treepoch->parent;
/* process_tst->treepoch is NULL only for garbage collection final calls. Always match! */
if (process_tst)
{
if (!process_tst->treepoch) {
printk("tst_matchingepoch process err %d\n",um_mod_getpid());
return 0;
}
/* if service_tst->treepoch is a subset of process_tst->treepoch
* return service_tst->epoch */
if (service_tst->treepoch->len > process_tst->treepoch->len ||
diffbitstr(service_tst->treepoch->bitstr,process_tst->treepoch->bitstr,service_tst->treepoch->len))
return 0;
else if (service_tst->epoch < process_tst->epoch)
return service_tst->epoch;
else
return 0;
} else
return service_tst->epoch;
}
/* create a complete timestamp of an event */
struct timestamp tst_timestamp()
{
struct timestamp *process_tst=um_x_gettst();
struct timestamp rv;
rv.treepoch=process_tst->treepoch;
rv.epoch=new_epoch();
return rv;
}
/* update the treepoch: substring and len are updated towards the leaves
* by a recursive depth first search */
static void de_update_substr(struct treepoch *node,int v01)
{
if (node) {
node->len=node->parent->len;
setbit(node->bitstr,node->len,v01);
(node->len)++;
de_update_substr(node->sub[0],0);
de_update_substr(node->sub[1],1);
}
}
/* update the treepoch: the subtree height must be updated towards the root:
* this recursive scan terminates when the root has been reached or
* when the other subtree is deeper */
static void de_update_height(struct treepoch *node)
{
if (node) {
short subheight0=node->sub[0]->subheight;
short subheight1=node->sub[1]->subheight;
short subheight=(subheight0>subheight1)?subheight0:subheight1;
subheight++;
if (node->subheight != subheight) {
node->subheight=subheight;
de_update_height(node->parent);
}
}
}
#if 0
/* just for debugging */
static void te_printtree(struct treepoch *node,int l)
{
if (node != NULL) {
printk("%d-printtree par %p np%d h%d l%d >%x\n",l,node,node->nproc,node->subheight,node->len,node->bitstr[0]);
te_printtree(node->sub[0],l+1);
te_printtree(node->sub[1],l+1);
}
}
#endif
/* delete a process form the treepoch */
static void te_delproc(struct treepoch *node)
{
if (node != NULL){
struct treepoch *parent=node->parent;
/* if there are no more processes depending on this node */
if (--node->nproc == 0 && parent) {
/* treepoch node removal */
struct treepoch *other;
/* other is the "surviving" branch from the parent */
other=(node==parent->sub[0])?parent->sub[1]:parent->sub[0];
/* internal nodes have always two branches (sub[0] != NULL & sub[1] != NULL) */
/* two nodes of the treepoch gets deleted, the empty leaf and its
* parent, the other branch root node gets the role of the former
* parent */
/* deleting X (parent is A, deleted, and other is B)
* | |
* A B
* / \ / \
* X B
* / \
*/
other->parent=parent->parent;
/* the timestamp of the new parent is the timestamp of the old parent */
other->rise=parent->rise;
/* special case: root of treepoch redefined */
if (other->parent ==NULL)
te_root=other;
else
/* normal case: set the pointer of grandparent's son to 'other' */
other->parent->sub[getbit(parent->bitstr,parent->len-1)]=other;
other->len=parent->len;
/* copy the string of parent (other takes the role of its parent) */
memcpy(&other->bitstr,&parent->bitstr,DEPTH_WORDS*sizeof(long));
/* the node is kept for lazy garbage collection */
node->parent=other;
/* delete the deleted node viewname*/
if (node->viewname != NULL) {
free(node->viewname);
node->viewname=NULL;
}
/* update the structure */
de_update_substr(other->sub[0],0);
de_update_substr(other->sub[1],1);
de_update_height(other->parent);
/*te_printtree(te_root,0);*/
}
/* nproc must be updated also on the ancestors */
te_delproc(parent);
}
}
/* add a new process (nproc++ for the node and for all its ancestors)*/
static void te_newproc(struct treepoch *node)
{
if (node != NULL){
node->nproc++;
te_newproc(node->parent);
}
}
/* interface function: generate a new fork */
struct timestamp tst_newfork(struct timestamp *old_tst)
{
struct timestamp rv;
struct treepoch *new_te;
assert ((old_tst != NULL && old_tst->treepoch != NULL) || te_root == NULL);
/* if there is one process only no fork takes place */
if (old_tst && (old_tst->treepoch->nproc == 1 ||
/* if the branch has already reached the max height no fork*/
(old_tst->treepoch->subheight + old_tst->treepoch->len) >= MAXDEPTH))
return *old_tst;
else {
new_te=calloc(1,sizeof(struct treepoch));
assert(new_te);
rv.treepoch=new_te;
/* a new fork *is* a relevant event for the system timestamping */
rv.epoch=new_te->rise=new_epoch();
new_te->viewid = nextviewid++;
if (te_root == NULL) {
/* special case: first node= root */
te_root=new_te;
} else {
/* treepoch creation */
/* when a treepoch forks two nodes get created. ex:old_te forks:
* | |
*old_te par_te
* / \
* old_te new_te
*/
struct treepoch *old_te=old_tst->treepoch;
struct treepoch *par_te=calloc(1,sizeof(struct treepoch));
assert(old_te);
assert(par_te);
/* old and new have the timestamp of the fork, while par_te
* gets the old timestamp of old_te */
par_te->rise=old_te->rise;
old_te->rise=new_te->rise;
/* the new fork has a process (the caller), old_te has lost
* one process */
par_te->nproc=old_te->nproc;
old_te->nproc=old_te->nproc-1;
new_te->nproc=1;
par_te->nref=2;
new_te->nref=0;
/* re-link the binary tree structure */
par_te->sub[0]=old_te;
par_te->sub[1]=new_te;
par_te->parent=old_te->parent;
old_te->parent=new_te->parent=par_te;
/* update the grandparent's son pointer */
if (par_te->parent ==NULL)
te_root=par_te;
else
par_te->parent->sub[getbit(old_te->bitstr,old_te->len-1)]=par_te;
/* update the bit strings */
par_te->len=old_te->len;
memcpy(&par_te->bitstr,&old_te->bitstr,DEPTH_WORDS*sizeof(long));
memcpy(&new_te->bitstr,&old_te->bitstr,DEPTH_WORDS*sizeof(long));
new_te->subheight=0;
par_te->subheight=old_te->subheight+1;
/* update strings (in the subtree) and height towards the ancestors */
de_update_substr(old_te,0);
de_update_substr(new_te,1);
de_update_height(par_te->parent);
/*te_printtree(te_root,0);*/
}
return rv;
}
}
/* interface functions: add a process/delete a process */
struct timestamp tst_newproc(struct timestamp *parent_tst)
{
struct timestamp rv;
rv=*parent_tst;
te_newproc(rv.treepoch);
/* printk("NEW PROC %d %p %d %d %x\n",um_mod_getpid(),rv.treepoch,rv.treepoch->nproc,rv.treepoch->len,rv.treepoch->bitstr[0]);*/
return rv;
}
void tst_delproc(struct timestamp *tst)
{
/*printk("DEL PROC %p %d %d %x\n",parent_tst->treepoch,parent_tst->treepoch->nproc,parent_tst->treepoch->len,parent_tst->treepoch->bitstr[0]);*/
te_delproc(tst->treepoch);
}
/* return the view_id of the current view */
viewid_t te_getviewid(struct treepoch *te)
{
return(te->viewid);
}
/* set the view name of the current view */
void te_setviewname(struct treepoch *te,char *name)
{
if (te->viewname != NULL)
free(te->viewname);
te->viewname=strndup(name,_UTSNAME_LENGTH-1);
}
/* return the view name of the current view */
char *te_getviewname(struct treepoch *te)
{
return(te->viewname);
}
/* boolean: return true if both te refer to the same view */
int te_sameview(struct treepoch *te1,struct treepoch *te2) {
return te1->len == te2->len &&
diffbitstr(te1->bitstr,te2->bitstr,te1->len) == 0;
}
/* boolean: return true if both te refer to the same view or te2
* refer to a subview of te1*/
int te_sameview_or_next(struct treepoch *te1,struct treepoch *te2) {
return diffbitstr(te1->bitstr,te2->bitstr,te1->len) == 0;
}
|