- Reports on completeness of proofs.

This commit is contained in:
ccremers 2004-08-19 13:09:35 +00:00
parent 15580c6ec9
commit 5c15c21832
4 changed files with 112 additions and 67 deletions

View File

@ -167,7 +167,8 @@ binding_indent_print (Binding b, int flag)
/** /**
*@return Returns the run number *@return Returns the run number
*/ */
int semiRunCreate (const Protocol p, const Role r) int
semiRunCreate (const Protocol p, const Role r)
{ {
int run; int run;
@ -182,7 +183,8 @@ int semiRunCreate (const Protocol p, const Role r)
} }
//! Wrapper for roleDestroy //! Wrapper for roleDestroy
void semiRunDestroy () void
semiRunDestroy ()
{ {
Protocol p; Protocol p;
@ -528,7 +530,8 @@ bind_existing_to_goal (const Binding b, const int run, const int index)
indentPrint (); indentPrint ();
eprintf ("Cannot bind "); eprintf ("Cannot bind ");
termPrint (b->term); termPrint (b->term);
eprintf (" to run %i, index %i because it does not subterm-unify.\n", run, index); eprintf (" to run %i, index %i because it does not subterm-unify.\n",
run, index);
} }
// Reset length // Reset length
remove_read_goals (newgoals); remove_read_goals (newgoals);
@ -931,7 +934,8 @@ bind_goal_regular_run (const Binding b)
indentPrint (); indentPrint ();
eprintf ("The term ", found); eprintf ("The term ", found);
termPrint (b->term); termPrint (b->term);
eprintf (" matches patterns from the role definitions. Investigate.\n"); eprintf
(" matches patterns from the role definitions. Investigate.\n");
} }
if (sys->output == PROOF) if (sys->output == PROOF)
{ {
@ -999,7 +1003,8 @@ bind_goal_old_intruder_run (Binding b)
if (sys->output == PROOF && found == 1) if (sys->output == PROOF && found == 1)
{ {
indentPrint (); indentPrint ();
eprintf ("Suppose it is from an existing intruder run.\n"); eprintf
("Suppose it is from an existing intruder run.\n");
} }
indentDepth++; indentDepth++;
flag = flag && bind_existing_to_goal (b, run, ev); flag = flag && bind_existing_to_goal (b, run, ev);
@ -1040,37 +1045,16 @@ bind_goal (const Binding b)
} }
} }
//! Prune determination //! Prune determination because of theorems
/** /**
*@returns true iff this state is invalid for some reason *@returns true iff this state is invalid because of a theorem
*/ */
int int
prune () prune_theorems ()
{ {
Termlist tl; Termlist tl;
List bl; List bl;
if (indentDepth > 20)
{
// Hardcoded limit on iterations
if (sys->output == PROOF)
{
indentPrint ();
eprintf ("Pruned because too many iteration levels.\n");
}
return 1;
}
if (sys->maxruns > sys->switchRuns)
{
// Hardcoded limit on runs
if (sys->output == PROOF)
{
indentPrint ();
eprintf ("Pruned because too many runs.\n");
}
return 1;
}
// Check if all agents are valid // Check if all agents are valid
tl = sys->runs[0].agents; tl = sys->runs[0].agents;
while (tl != NULL) while (tl != NULL)
@ -1145,6 +1129,39 @@ prune ()
return 0; return 0;
} }
//! Prune determination for bounds
/**
*@returns true iff this state is invalid for some reason
*/
int
prune_bounds ()
{
Termlist tl;
List bl;
if (indentDepth > 20)
{
// Hardcoded limit on iterations
if (sys->output == PROOF)
{
indentPrint ();
eprintf ("Pruned because too many iteration levels.\n");
}
return 1;
}
if (num_regular_runs > sys->switchRuns)
{
// Hardcoded limit on runs
if (sys->output == PROOF)
{
indentPrint ();
eprintf ("Pruned because too many regular runs.\n");
}
return 1;
}
return 0;
}
//! Setup system for specific claim test //! Setup system for specific claim test
add_claim_specifics (const Claimlist cl, const Roledef rd) add_claim_specifics (const Claimlist cl, const Roledef rd)
{ {
@ -1163,6 +1180,12 @@ add_claim_specifics (const Claimlist cl, const Roledef rd)
eprintf eprintf
("* If all goals can be bound, this constitutes an attack.\n"); ("* If all goals can be bound, this constitutes an attack.\n");
} }
/**
* We say that a state exists for secrecy, but we don't really test wheter the claim can
* be reached (without reaching the attack).
*/
cl->count = statesIncrease (cl->count);
goal_add (rd->message, 0, cl->ev); // Assumption that all claims are in run 0 goal_add (rd->message, 0, cl->ev); // Assumption that all claims are in run 0
} }
} }
@ -1205,7 +1228,9 @@ iterate ()
int flag; int flag;
flag = 1; flag = 1;
if (!prune ()) if (!prune_theorems ())
{
if (!prune_bounds ())
{ {
Binding b; Binding b;
@ -1232,7 +1257,7 @@ iterate ()
} }
sys->claims = statesIncrease (sys->claims); sys->claims = statesIncrease (sys->claims);
current_claim->count = statesIncrease (current_claim->count); current_claim->count = statesIncrease (current_claim->count);
flag = flag && property_check (); flag = property_check ();
} }
else else
{ {
@ -1242,6 +1267,12 @@ iterate ()
flag = bind_goal (b); flag = bind_goal (b);
} }
} }
else
{
// Pruned because of bound!
current_claim->complete = 0;
}
}
#ifdef DEBUG #ifdef DEBUG
if (DEBUGL (5) && !flag) if (DEBUGL (5) && !flag)
@ -1324,6 +1355,7 @@ arachne ()
int run; int run;
current_claim = cl; current_claim = cl;
cl->complete = 1;
p = (Protocol) cl->protocol; p = (Protocol) cl->protocol;
r = (Role) cl->role; r = (Role) cl->role;

View File

@ -477,6 +477,7 @@ commEvent (int event, Tac tc)
cl->role = thisRole; cl->role = thisRole;
cl->roledef = NULL; cl->roledef = NULL;
cl->count = 0; cl->count = 0;
cl->complete = 0;
cl->failed = 0; cl->failed = 0;
cl->prec = NULL; cl->prec = NULL;
cl->next = sys->claimlist; cl->next = sys->claimlist;

View File

@ -92,7 +92,8 @@ main (int argc, char **argv)
"output file (default is stdout)"); "output file (default is stdout)");
struct arg_lit *switch_arachne = struct arg_lit *switch_arachne =
arg_lit0 ("a", "arachne", "use Arachne engine"); arg_lit0 ("a", "arachne", "use Arachne engine");
struct arg_lit *switch_proof = arg_lit0 ("P", "proof", "generate proof output"); struct arg_lit *switch_proof =
arg_lit0 ("P", "proof", "generate proof output");
struct arg_str *switch_check = arg_str0 (NULL, "check", "CLAIM", struct arg_str *switch_check = arg_str0 (NULL, "check", "CLAIM",
"claim type to check (default is all)"); "claim type to check (default is all)");
struct arg_int *switch_scenario = arg_int0 ("s", "scenario", NULL, struct arg_int *switch_scenario = arg_int0 ("s", "scenario", NULL,
@ -775,6 +776,14 @@ timersPrint (const System sys)
eprintf ("failed:\t"); eprintf ("failed:\t");
statesFormat (cl_scan->failed); statesFormat (cl_scan->failed);
} }
else
{
eprintf ("\tcorrect: ");
if (cl_scan->complete)
eprintf ("complete proof");
else
eprintf ("bounded proof");
}
} }
eprintf ("\n"); eprintf ("\n");
cl_scan = cl_scan->next; cl_scan = cl_scan->next;

View File

@ -30,6 +30,9 @@ struct claimlist
states_t count; states_t count;
//! Number of occurrences that failed. //! Number of occurrences that failed.
states_t failed; states_t failed;
//! Whether the result is complete or not (failings always are!)
int complete;
int r; //!< role number for mapping int r; //!< role number for mapping
int ev; //!< event index in role int ev; //!< event index in role
//! Preceding label list //! Preceding label list