- Rewrote roleInstance to cope with Arachne needs.

- Introduced some iterators for e.g. term leaves and roledefs. These are
  not used everywhere yet.
This commit is contained in:
ccremers 2004-08-12 09:14:31 +00:00
parent ac174b8130
commit 0f470cf6a2
10 changed files with 277 additions and 96 deletions

View File

@ -19,8 +19,8 @@ static Protocol INTRUDER; // Pointers, to be set by the Init
static Role I_GOAL; // Same here. static Role I_GOAL; // Same here.
#ifdef DEBUG #ifdef DEBUG
static explanation; // Pointer to a string that describes what we just tried to do static char *explanation; // Pointer to a string that describes what we just tried to do
static indent; // Integer indicating iteration depth 0.. static int indentDepth;
#endif #endif
struct goalstruct struct goalstruct
@ -81,7 +81,8 @@ mgu_iterate (const Termlist tl)
} }
//! Yield roledef pointer for a given index //! Yield roledef pointer for a given index
Roledef roledef_shift (Roledef rd, int i) Roledef
roledef_shift (Roledef rd, int i)
{ {
while (i > 0 && rd != NULL) while (i > 0 && rd != NULL)
{ {
@ -360,7 +361,7 @@ iterate ()
flag = 1; flag = 1;
#ifdef DEBUG #ifdef DEBUG
indent++; indentDepth++;
#endif #endif
if (prune ()) if (prune ())
{ {
@ -374,7 +375,7 @@ iterate ()
{ {
int i; int i;
for (i = 0; i < indent; i++) for (i = 0; i < indentDepth; i++)
eprintf (" "); eprintf (" ");
eprintf ("%s\n", explanation); eprintf ("%s\n", explanation);
explanation = NULL; explanation = NULL;
@ -402,7 +403,7 @@ iterate ()
} }
} }
#ifdef DEBUG #ifdef DEBUG
indent--; indentDepth--;
#endif #endif
return flag; return flag;
} }
@ -419,7 +420,7 @@ arachne ()
*/ */
#ifdef DEBUG #ifdef DEBUG
explanation = NULL; explanation = NULL;
indent = -1; indentDepth = -1;
#endif #endif
/* /*

View File

@ -33,6 +33,7 @@ Term levelFind (Symbol s, int i);
Term symbolFind (Symbol s); Term symbolFind (Symbol s);
Term tacTerm (Tac tc); Term tacTerm (Tac tc);
Termlist tacTermlist (Tac tc); Termlist tacTermlist (Tac tc);
void compute_role_variables (const System sys, Protocol p, Role r);
#define levelDeclareVar(s) levelTacDeclaration(s,1) #define levelDeclareVar(s) levelTacDeclaration(s,1)
#define levelDeclareConst(s) levelTacDeclaration(s,0) #define levelDeclareConst(s) levelTacDeclaration(s,0)
@ -120,6 +121,7 @@ compile (Tac tc, int maxrunsset)
/* Init globals */ /* Init globals */
maxruns = maxrunsset; maxruns = maxrunsset;
tac_root = tc; tac_root = tc;
/* process the tac */ /* process the tac */
tacProcess (tac_root); tacProcess (tac_root);
@ -578,6 +580,7 @@ roleCompile (Term nameterm, Tac tc)
} }
tc = tc->next; tc = tc->next;
} }
compute_role_variables (sys, thisProtocol, thisRole);
levelDone (); levelDone ();
} }
@ -638,7 +641,7 @@ runInstanceCreate (Tac tc)
} }
/* equal numbers, so it seems to be safe */ /* equal numbers, so it seems to be safe */
roleInstance (sys, p, r, instParams); roleInstance (sys, p, r, instParams); // technically, we don't need to do this for Arachne [fix later]
/* after creation analysis */ /* after creation analysis */
/* AC1: untrusted agents */ /* AC1: untrusted agents */
@ -684,9 +687,17 @@ protocolCompile (Symbol prots, Tac tc, Tac tcroles)
/* add the role names */ /* add the role names */
pr->rolenames = NULL; pr->rolenames = NULL;
while (tcroles != NULL) while (tcroles != NULL)
{
if (sys->engine == ARACHNE_ENGINE)
{
pr->rolenames =
termlistAppend (pr->rolenames, levelVar (tcroles->t1.sym));
}
else
{ {
pr->rolenames = pr->rolenames =
termlistAppend (pr->rolenames, levelConst (tcroles->t1.sym)); termlistAppend (pr->rolenames, levelConst (tcroles->t1.sym));
}
tcroles = tcroles->next; tcroles = tcroles->next;
} }
@ -799,6 +810,35 @@ tacTermlist (Tac tc)
return tl; return tl;
} }
//! Compute variables for a roles (for Arachne)
void
compute_role_variables (const System sys, Protocol p, Role r)
{
if (r->variables == NULL)
{
// Not computed before, for some reason
Termlist tl;
int process_event (Roledef rd)
{
tl = termlistAddVariables (tl, rd->from);
tl = termlistAddVariables (tl, rd->to);
tl = termlistAddVariables (tl, rd->message);
return 1;
}
tl = NULL;
roledef_iterate_events (r->roledef, process_event);
r->variables = tl;
eprintf ("All variables for role ");
termPrint (r->nameterm);
eprintf (" are ");
termlistPrint (tl);
eprintf ("\n");
}
}
//! Compute prec() sets for each claim. //! Compute prec() sets for each claim.
/** /**
* Generates two auxiliary structures. First, a table that contains * Generates two auxiliary structures. First, a table that contains

View File

@ -193,6 +193,7 @@ roleCreate (Term name)
r->nameterm = name; r->nameterm = name;
r->next = NULL; r->next = NULL;
r->locals = NULL; r->locals = NULL;
r->variables = NULL;
r->roledef = NULL; r->roledef = NULL;
return r; return r;
} }
@ -238,3 +239,19 @@ rolesPrint (Role r)
} }
} }
} }
//! Iterate over the events in a roledef list
/**
* Function gets roledef pointer
*/
int
roledef_iterate_events (Roledef rd, int (*func) ())
{
while (rd != NULL)
{
if (!func (rd))
return 0;
rd = rd->next;
}
return 1;
}

View File

@ -105,6 +105,8 @@ struct role
Roledef roledef; Roledef roledef;
//! Local constants for this role. //! Local constants for this role.
Termlist locals; Termlist locals;
//! Local variables for this role.
Termlist variables;
//! Pointer to next role definition. //! Pointer to next role definition.
struct role *next; struct role *next;
}; };
@ -124,5 +126,6 @@ Roledef roledefAdd (Roledef rd, int type, Term label, Term from, Term to,
Role roleCreate (Term nameterm); Role roleCreate (Term nameterm);
void rolePrint (Role r); void rolePrint (Role r);
void rolesPrint (Role r); void rolesPrint (Role r);
int roledef_iterate_events (Roledef rd, int (*func) ());
#endif #endif

View File

@ -495,8 +495,18 @@ roleInstance (const System sys, const Protocol protocol, const Role role,
/* duplicate roledef in buffer rd */ /* duplicate roledef in buffer rd */
rd = roledefDuplicate (role->roledef); rd = roledefDuplicate (role->roledef);
/* set parameters */
/* generic setup */
runs[rid].protocol = protocol;
runs[rid].role = role;
runs[rid].step = 0;
runs[rid].firstReal = 0;
/* scan for types in agent list */ /* scan for types in agent list */
/* scanners */ /* scanners */
if (sys->engine != ARACHNE_ENGINE)
{
// Default engine adheres to scenario
scanfrom = protocol->rolenames; scanfrom = protocol->rolenames;
scanto = paramlist; scanto = paramlist;
while (scanfrom != NULL && scanto != NULL) while (scanfrom != NULL && scanto != NULL)
@ -507,7 +517,8 @@ roleInstance (const System sys, const Protocol protocol, const Role role,
{ {
/* There is a TYPE constant in the parameter list. /* There is a TYPE constant in the parameter list.
* Generate a new local variable for this run, with this type */ * Generate a new local variable for this run, with this type */
newvar = makeTermType (VARIABLE, scanfrom->term->left.symb, rid); newvar =
makeTermType (VARIABLE, scanfrom->term->left.symb, rid);
artefacts = termlistAdd (artefacts, newvar); artefacts = termlistAdd (artefacts, newvar);
sys->variables = termlistAdd (sys->variables, newvar); sys->variables = termlistAdd (sys->variables, newvar);
newvar->stype = termlistAdd (NULL, scanto->term); newvar->stype = termlistAdd (NULL, scanto->term);
@ -536,6 +547,9 @@ roleInstance (const System sys, const Protocol protocol, const Role role,
scanto = scanto->next; scanto = scanto->next;
} }
/* set agent list */
runs[rid].agents = termlistDuplicate (tolist);
/* prefix a read for such reads. TODO: this should also cover any external stuff */ /* prefix a read for such reads. TODO: this should also cover any external stuff */
if (extterm != NULL) if (extterm != NULL)
{ {
@ -547,20 +561,52 @@ roleInstance (const System sys, const Protocol protocol, const Role role,
rdnew->next = rd; rdnew->next = rd;
rd = rdnew; rd = rdnew;
/* mark the first real action */ /* mark the first real action */
runs[rid].firstReal = 1; runs[rid].firstReal++;
}
} }
else else
{ {
runs[rid].firstReal = 0; // For the Arachne engine, we need to copy all these roles to new variables
/**
* Because of pre-instantiation unification, some variables might already have been filled in.
* Ignore agent list; instead rely on role->variables.
*/
Termlist scanfrom;
runs[rid].agents = NULL;
scanfrom = role->variables;
while (scanfrom != NULL)
{
Term newt, oldt;
oldt = scanfrom->term;
newt = deVar (oldt);
if (realTermVariable (newt))
{
// Make new var for this run
newt = makeTermType (VARIABLE, newt->left.symb, rid);
artefacts = termlistAdd (artefacts, newt);
}
// Add to agent list, possibly
if (inTermlist (protocol->rolenames, oldt))
runs[rid].agents = termlistAdd (runs[rid].agents, newt);
fromlist = termlistAdd (fromlist, oldt);
tolist = termlistAdd (tolist, newt);
eprintf ("Created for run %i: ", rid);
termPrint (oldt);
eprintf (" -> ");
termPrint (newt);
eprintf ("\n");
scanfrom = scanfrom->next;
}
} }
/* set parameters */ /* possibly shifted rd */
runs[rid].protocol = protocol;
runs[rid].role = role;
runs[rid].agents = termlistDuplicate (tolist);
runs[rid].start = rd; runs[rid].start = rd;
runs[rid].index = rd; runs[rid].index = rd;
runs[rid].step = 0;
/* duplicate all locals form this run */ /* duplicate all locals form this run */
scanto = role->locals; scanto = role->locals;
@ -601,10 +647,9 @@ roleInstance (const System sys, const Protocol protocol, const Role role,
rd = runs[rid].start; rd = runs[rid].start;
while (rd != NULL) while (rd != NULL)
{ {
rd->from = termLocal (rd->from, fromlist, tolist, role->locals, rid); rd->from = termLocal (rd->from, fromlist, tolist, rid);
rd->to = termLocal (rd->to, fromlist, tolist, role->locals, rid); rd->to = termLocal (rd->to, fromlist, tolist, rid);
rd->message = rd->message = termLocal (rd->message, fromlist, tolist, rid);
termLocal (rd->message, fromlist, tolist, role->locals, rid);
rd = rd->next; rd = rd->next;
} }
termlistDelete (fromlist); termlistDelete (fromlist);
@ -632,30 +677,39 @@ roleInstanceDestroy (const System sys)
if (runid >= 0) if (runid >= 0)
{ {
struct run myrun; struct run myrun;
Termlist artefacts;
myrun = sys->runs[runid]; myrun = sys->runs[runid];
// Destroy roledef // Destroy roledef
roledefDestroy (myrun.start); roledefDestroy (myrun.start);
// Destroy artefacts // Destroy artefacts
termlistDelete (myrun.artefacts);
termlistDelete (myrun.locals);
termlistDelete (myrun.agents);
/* /*
* Arachne does real-time reduction of memory, POR does not * Arachne does real-time reduction of memory, POR does not
* Artefact removal can only be done if knowledge sets are empty, as with Arachne * Artefact removal can only be done if knowledge sets are empty, as with Arachne
*/ */
if (sys->engine == ARACHNE_ENGINE) if (sys->engine == ARACHNE_ENGINE)
{ {
Termlist artefacts;
// Remove artefacts // Remove artefacts
artefacts = myrun.artefacts; artefacts = myrun.artefacts;
while (artefacts != NULL)
{
eprintf ("Artefact term to delete: ");
termPrint (artefacts->term);
eprintf ("\n");
artefacts = artefacts->next;
}
artefacts = myrun.artefacts;
while (artefacts != NULL) while (artefacts != NULL)
{ {
memFree (artefacts->term, sizeof (struct term)); memFree (artefacts->term, sizeof (struct term));
artefacts = artefacts->next; artefacts = artefacts->next;
} }
} }
termlistDelete (myrun.artefacts);
termlistDelete (myrun.locals);
termlistDelete (myrun.agents);
// Destroy run struct allocation in array using realloc // Destroy run struct allocation in array using realloc
sys->runs = (Run) memRealloc (sys->runs, sizeof (struct run) * (runid)); sys->runs = (Run) memRealloc (sys->runs, sizeof (struct run) * (runid));
// Reduce run count // Reduce run count
@ -1011,3 +1065,30 @@ scenarioPrint (const System sys)
} }
} }
} }
//! Iterate over all roles (AND)
/**
* Function called gets (sys,protocol,role)
* If it returns 0, iteration aborts.
*/
int
system_iterate_roles (const System sys, int (*func) ())
{
Protocol p;
p = sys->protocols;
while (p != NULL)
{
Role r;
r = p->roles;
while (r != NULL)
{
if (!func (sys, p, r))
return 0;
r = r->next;
}
p = p->next;
}
return 1;
}

View File

@ -232,5 +232,6 @@ int compute_rolecount (const System sys);
int compute_roleeventmax (const System sys); int compute_roleeventmax (const System sys);
void scenarioPrint (const System sys); void scenarioPrint (const System sys);
int system_iterate_roles (const System sys, int (*func) ());
#endif #endif

View File

@ -884,3 +884,50 @@ termOrder (Term t1, Term t2)
return compR; return compR;
} }
} }
//! Iterate over the leaves in a term
/**
* Note that this function iterates over real leaves; thus closed variables can occur as
* well. It is up to func to decide wether or not to recurse.
*/
int
term_iterate_leaves (const Term term, int (*func) ())
{
if (term != NULL)
{
if (realTermLeaf (term))
{
if (!func (term))
return 0;
}
else
{
if (realTermTuple (term))
return (term_iterate_leaves (term->left.op1, func)
&& term_iterate_leaves (term->right.op2, func));
else
return (term_iterate_leaves (term->left.op, func)
&& term_iterate_leaves (term->right.key, func));
}
}
return 1;
}
//! Iterate over open leaves (i.e. respect variable closure)
int
term_iterate_open_leaves (const Term term, int (*func) ())
{
int testleaf (const Term t)
{
if (substVar (t))
{
return term_iterate_open_leaves (t, func);
}
else
{
return func (t);
}
}
return term_iterate_leaves (term, testleaf);
}

View File

@ -164,5 +164,7 @@ Term tupleProject (Term tt, int n);
int termSize (Term t); int termSize (Term t);
float termDistance (Term t1, Term t2); float termDistance (Term t1, Term t2);
int termOrder (Term t1, Term t2); int termOrder (Term t1, Term t2);
int term_iterate_leaves (const Term t, int (*func) ());
int term_iterate_open_leaves (const Term term, int (*func) ());
#endif #endif

View File

@ -592,12 +592,11 @@ inverseKey (Termlist inverses, Term key)
//! Create a term local to a run. //! Create a term local to a run.
/* /*
* We assume that at this point, no variables have been instantiated yet that occur in this term. * We assume that at this point, no variables have been instantiated yet that occur in this term.
* We also assume that fromlist, tolist and locals only hold real leaves. * We also assume that fromlist, tolist only hold real leaves.
*\sa termlistLocal() *\sa termlistLocal()
*/ */
Term Term
termLocal (Term t, Termlist fromlist, Termlist tolist, termLocal (Term t, Termlist fromlist, Termlist tolist, const int runid)
const Termlist locals, const int runid)
{ {
if (t == NULL) if (t == NULL)
return NULL; return NULL;
@ -615,10 +614,6 @@ termLocal (Term t, Termlist fromlist, Termlist tolist,
fromlist = fromlist->next; fromlist = fromlist->next;
tolist = tolist->next; tolist = tolist->next;
} }
if (inTermlist (locals, t))
{
// return termRunid(t,runid);
}
return t; return t;
} }
else else
@ -626,17 +621,13 @@ termLocal (Term t, Termlist fromlist, Termlist tolist,
Term newt = termDuplicate (t); Term newt = termDuplicate (t);
if (realTermTuple (t)) if (realTermTuple (t))
{ {
newt->left.op1 = newt->left.op1 = termLocal (t->left.op1, fromlist, tolist, runid);
termLocal (t->left.op1, fromlist, tolist, locals, runid); newt->right.op2 = termLocal (t->right.op2, fromlist, tolist, runid);
newt->right.op2 =
termLocal (t->right.op2, fromlist, tolist, locals, runid);
} }
else else
{ {
newt->left.op = newt->left.op = termLocal (t->left.op, fromlist, tolist, runid);
termLocal (t->left.op, fromlist, tolist, locals, runid); newt->right.key = termLocal (t->right.key, fromlist, tolist, runid);
newt->right.key =
termLocal (t->right.key, fromlist, tolist, locals, runid);
} }
return newt; return newt;
} }
@ -649,15 +640,14 @@ termLocal (Term t, Termlist fromlist, Termlist tolist,
*/ */
Termlist Termlist
termlistLocal (Termlist tl, const Termlist fromlist, const Termlist tolist, termlistLocal (Termlist tl, const Termlist fromlist, const Termlist tolist,
const Termlist locals, int runid) int runid)
{ {
Termlist newtl = NULL; Termlist newtl = NULL;
while (tl != NULL) while (tl != NULL)
{ {
newtl = newtl =
termlistAdd (newtl, termlistAdd (newtl, termLocal (tl->term, fromlist, tolist, runid));
termLocal (tl->term, fromlist, tolist, locals, runid));
tl = tl->next; tl = tl->next;
} }
return newtl; return newtl;

View File

@ -46,10 +46,9 @@ Termlist termlistMinusTerm (Termlist tl, Term t);
int termlistLength (Termlist tl); int termlistLength (Termlist tl);
Term inverseKey (Termlist inverses, Term key); Term inverseKey (Termlist inverses, Term key);
Term termLocal (const Term t, Termlist fromlist, Termlist tolist, Term termLocal (const Term t, Termlist fromlist, Termlist tolist,
const Termlist locals, const int runid);
Termlist termlistLocal (Termlist tl, const Termlist fromlist,
const Termlist tolist, const Termlist locals,
const int runid); const int runid);
Termlist termlistLocal (Termlist tl, const Termlist fromlist,
const Termlist tolist, const int runid);
int termlistContained (const Termlist tlbig, Termlist tlsmall); int termlistContained (const Termlist tlbig, Termlist tlsmall);
int validSubst (const int matchmode, const Term term); int validSubst (const int matchmode, const Term term);
Term termFunction (Termlist fromlist, Termlist tolist, Term tx); Term termFunction (Termlist fromlist, Termlist tolist, Term tx);