2007-06-11 13:01:04 +01:00
|
|
|
/*
|
|
|
|
* Scyther : An automatic verifier for security protocols.
|
2013-10-05 23:56:12 +01:00
|
|
|
* Copyright (C) 2007-2013 Cas Cremers
|
2007-06-11 13:01:04 +01:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* 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 Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
|
2006-01-02 18:43:25 +00:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
*@file prune_theorems.c
|
|
|
|
*
|
|
|
|
* Prune stuff based on theorems.
|
|
|
|
* Pruning leaves complete results.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "system.h"
|
|
|
|
#include "list.h"
|
|
|
|
#include "switches.h"
|
|
|
|
#include "binding.h"
|
|
|
|
#include "specialterm.h"
|
2006-02-28 13:41:36 +00:00
|
|
|
#include "hidelevel.h"
|
2007-01-06 14:45:29 +00:00
|
|
|
#include "depend.h"
|
|
|
|
#include "arachne.h"
|
|
|
|
#include "error.h"
|
|
|
|
#include "type.h"
|
2006-01-02 18:43:25 +00:00
|
|
|
|
|
|
|
extern Protocol INTRUDER;
|
|
|
|
extern int proofDepth;
|
|
|
|
extern int max_encryption_level;
|
|
|
|
|
2006-02-27 16:08:17 +00:00
|
|
|
|
|
|
|
//! Check locals occurrence
|
|
|
|
/*
|
|
|
|
* Returns true if the order is correct
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
correctLocalOrder (const System sys)
|
|
|
|
{
|
2006-02-28 13:41:36 +00:00
|
|
|
int flag;
|
|
|
|
|
2006-02-27 16:08:17 +00:00
|
|
|
int checkRun (int r1)
|
|
|
|
{
|
|
|
|
int checkTerm (Term t)
|
|
|
|
{
|
|
|
|
if (!isTermVariable (t))
|
|
|
|
{
|
|
|
|
int r2;
|
|
|
|
int e1, e2;
|
|
|
|
|
|
|
|
// t is a term from r2 that occurs in r1
|
|
|
|
r2 = TermRunid (t);
|
2006-02-28 15:33:12 +00:00
|
|
|
e1 = firstOccurrence (sys, r1, t, ANYEVENT);
|
2006-02-28 13:41:36 +00:00
|
|
|
if (e1 >= 0)
|
2006-02-27 16:08:17 +00:00
|
|
|
{
|
2012-04-25 08:53:07 +01:00
|
|
|
if (roledef_shift (sys->runs[r1].start, e1)->type == RECV)
|
2006-02-27 16:08:17 +00:00
|
|
|
{
|
2006-02-28 15:33:12 +00:00
|
|
|
e2 = firstOccurrence (sys, r2, t, SEND);
|
|
|
|
if (e2 >= 0)
|
2006-02-28 13:41:36 +00:00
|
|
|
{
|
2006-02-28 15:33:12 +00:00
|
|
|
// thus, it should not be the case that e1 occurs before e2
|
|
|
|
if (isDependEvent (r1, e1, r2, e2))
|
2006-02-28 13:41:36 +00:00
|
|
|
{
|
2006-02-28 15:33:12 +00:00
|
|
|
// That's not good!
|
|
|
|
if (switches.output == PROOF)
|
|
|
|
{
|
|
|
|
indentPrint ();
|
|
|
|
eprintf ("Pruned because ordering for term ");
|
|
|
|
termSubstPrint (t);
|
|
|
|
eprintf
|
2010-12-31 14:43:00 +00:00
|
|
|
(" cannot be correct: the first send r%ii%i occurs after the receive r%ii%i.\n",
|
2006-02-28 15:33:12 +00:00
|
|
|
r2, e2, r1, e1);
|
|
|
|
}
|
|
|
|
flag = false;
|
|
|
|
return false;
|
2006-02-28 13:41:36 +00:00
|
|
|
}
|
|
|
|
}
|
2006-02-27 16:08:17 +00:00
|
|
|
}
|
|
|
|
}
|
2006-02-28 15:33:12 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
globalError++;
|
2007-01-31 11:23:53 +00:00
|
|
|
eprintf ("error: term ");
|
2006-02-28 15:33:12 +00:00
|
|
|
termSubstPrint (t);
|
|
|
|
eprintf
|
|
|
|
(" from run %i should occur in run %i, but it doesn't.\n", r2,
|
|
|
|
r1);
|
|
|
|
globalError--;
|
|
|
|
error ("Abort");
|
|
|
|
}
|
|
|
|
}
|
2007-01-06 14:45:29 +00:00
|
|
|
return true;
|
2006-02-27 16:08:17 +00:00
|
|
|
}
|
2006-02-28 13:41:36 +00:00
|
|
|
|
2006-02-27 16:08:17 +00:00
|
|
|
return iterateLocalToOther (sys, r1, checkTerm);
|
|
|
|
}
|
|
|
|
|
2006-02-28 13:41:36 +00:00
|
|
|
flag = true;
|
|
|
|
iterateRegularRuns (sys, checkRun);
|
|
|
|
|
|
|
|
return flag;
|
2006-02-27 16:08:17 +00:00
|
|
|
}
|
|
|
|
|
2011-01-18 16:03:20 +00:00
|
|
|
//! Check all runs
|
|
|
|
/**
|
|
|
|
* Returns false iff an agent type is wrong
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
allAgentsType (const System sys)
|
|
|
|
{
|
|
|
|
int run;
|
|
|
|
|
|
|
|
for (run = 0; run < sys->maxruns; run++)
|
|
|
|
{
|
|
|
|
Termlist agents;
|
|
|
|
|
|
|
|
agents = sys->runs[run].rho;
|
|
|
|
while (agents != NULL)
|
|
|
|
{
|
|
|
|
if (!goodAgentType (agents->term))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
agents = agents->next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true; // seems to be okay
|
|
|
|
}
|
|
|
|
|
2006-01-02 20:18:47 +00:00
|
|
|
//! Check initiator roles
|
|
|
|
/**
|
|
|
|
* Returns false iff an agent type is wrong
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
initiatorAgentsType (const System sys)
|
|
|
|
{
|
|
|
|
int run;
|
|
|
|
|
|
|
|
run = 0;
|
|
|
|
while (run < sys->maxruns)
|
|
|
|
{
|
|
|
|
// Only for initiators
|
|
|
|
if (sys->runs[run].role->initiator)
|
|
|
|
{
|
|
|
|
Termlist agents;
|
|
|
|
|
2006-03-15 21:30:19 +00:00
|
|
|
agents = sys->runs[run].rho;
|
2006-01-02 20:18:47 +00:00
|
|
|
while (agents != NULL)
|
|
|
|
{
|
|
|
|
if (!goodAgentType (agents->term))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
agents = agents->next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
run++;
|
|
|
|
}
|
|
|
|
return true; // seems to be okay
|
|
|
|
}
|
|
|
|
|
2012-11-21 12:40:15 +00:00
|
|
|
//! Handle inequality constraints
|
|
|
|
/**
|
|
|
|
* Currently, inequality constraints are encoded using "NotEqual" claims.
|
|
|
|
*
|
|
|
|
* Here we check that their arguments have not become equal. If they are not
|
|
|
|
* equal, there always exists a solution in which the values are different. The
|
|
|
|
* solution generated by the algorithm that grounds the trace (for
|
|
|
|
* visualisation) yields a compatible solution.
|
|
|
|
*
|
|
|
|
* Return true if okay - constraints can be met
|
|
|
|
* Return false if not okay - at least one constraint violated
|
|
|
|
*
|
|
|
|
* Note that this function performs its own proof output if needed.
|
|
|
|
* This allows it to pinpoint the exact constraint that is violated.
|
|
|
|
*
|
|
|
|
* Speed: this is certainly not the most efficient way to solve this. We are
|
|
|
|
* looping over all regular events, even if there are not negative constraints
|
|
|
|
* at all. Instead, we could simply collect a list of all negative constraints,
|
|
|
|
* which would speed up iterating over it.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
inequalityConstraints (const System sys)
|
|
|
|
{
|
|
|
|
int run;
|
|
|
|
|
|
|
|
for (run = 0; run < sys->maxruns; run++)
|
|
|
|
{
|
|
|
|
if (sys->runs[run].protocol != INTRUDER)
|
|
|
|
{
|
|
|
|
int e;
|
|
|
|
Roledef rd;
|
|
|
|
|
|
|
|
rd = sys->runs[run].start;
|
2013-06-19 20:51:52 +01:00
|
|
|
for (e = 0; e < sys->runs[run].step; e++)
|
2012-11-21 12:40:15 +00:00
|
|
|
{
|
|
|
|
if (rd->type == CLAIM)
|
|
|
|
{
|
|
|
|
// It's a claim
|
2013-06-19 20:51:52 +01:00
|
|
|
if (isTermEqual (rd->claiminfo->type, CLAIM_Notequal))
|
2012-11-21 12:40:15 +00:00
|
|
|
{
|
|
|
|
// TODO ASSERT: Message should be a pair for NotEqual claims
|
2013-06-19 20:51:52 +01:00
|
|
|
if (isTermEqual
|
|
|
|
(TermOp1 (rd->message), TermOp2 (rd->message)))
|
2012-11-21 12:40:15 +00:00
|
|
|
{
|
|
|
|
// Inequality violated, no solution exists that makes them inequal anymore.
|
|
|
|
if (switches.output == PROOF)
|
|
|
|
{
|
|
|
|
indentPrint ();
|
2013-06-19 20:51:52 +01:00
|
|
|
eprintf
|
|
|
|
("Pruned because the pattern violates an inequality constraint based on the term ");
|
|
|
|
termPrint (TermOp1 (rd->message));
|
2012-11-21 12:40:15 +00:00
|
|
|
eprintf (".\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
rd = rd->next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-12-14 15:59:53 +00:00
|
|
|
//! Prune if agents perform multiple roles
|
|
|
|
/**
|
|
|
|
* Return true if should be pruned
|
|
|
|
*
|
|
|
|
* The termlist 'agentrole' contains subsequences of length 2, the first of which is a agent name, and the second is the role it is performing.
|
|
|
|
* The idea is that once the agent name is assigned, it should not occur again for a different role.
|
|
|
|
* E.g. [ alice, initiator, bob, responder, charlie, ... ]
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
multipleRolePrune (const System sys)
|
|
|
|
{
|
|
|
|
Termlist agentrole;
|
|
|
|
int run;
|
|
|
|
|
|
|
|
agentrole = NULL;
|
|
|
|
for (run = 0; run < sys->maxruns; run++)
|
|
|
|
{
|
|
|
|
Protocol p;
|
|
|
|
|
|
|
|
p = sys->runs[run].protocol;
|
|
|
|
if ((p != INTRUDER) && (!isHelperProtocol (p)))
|
|
|
|
{
|
|
|
|
Role r;
|
|
|
|
|
|
|
|
for (r = p->roles; r != NULL; r = r->next)
|
|
|
|
{
|
|
|
|
Term role, agent;
|
|
|
|
Termlist tl;
|
|
|
|
|
|
|
|
// Find mapping role->agent
|
|
|
|
role = r->nameterm;
|
|
|
|
agent = agentOfRunRole (sys, run, role);
|
|
|
|
|
|
|
|
// Does this agent already occur yet in the list?
|
|
|
|
for (tl = agentrole; tl != NULL; tl = (tl->next)->next)
|
|
|
|
{
|
|
|
|
if (isTermEqual (agent, tl->term))
|
|
|
|
{
|
|
|
|
if (!isTermEqual (role, (tl->next)->term))
|
|
|
|
{
|
|
|
|
// Same agent, but different role! This is not allowed.
|
|
|
|
termlistDelete (agentrole); // cleanup
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Does not occur yet, so add
|
|
|
|
// Note we add the elements in front, so we need to reverse the order
|
|
|
|
agentrole = termlistPrepend (agentrole, role);
|
|
|
|
agentrole = termlistPrepend (agentrole, agent);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
termlistDelete (agentrole);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2006-01-02 18:43:25 +00:00
|
|
|
//! Prune determination because of theorems
|
|
|
|
/**
|
|
|
|
* When something is pruned because of this function, the state space is still
|
|
|
|
* considered to be complete.
|
|
|
|
*
|
|
|
|
*@returns true iff this state is invalid because of a theorem
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
prune_theorems (const System sys)
|
|
|
|
{
|
|
|
|
List bl;
|
|
|
|
int run;
|
|
|
|
|
|
|
|
// Check all types of the local agents according to the matching type
|
|
|
|
if (!checkAllSubstitutions (sys))
|
|
|
|
{
|
|
|
|
if (switches.output == PROOF)
|
|
|
|
{
|
|
|
|
indentPrint ();
|
|
|
|
eprintf
|
2012-12-14 15:59:21 +00:00
|
|
|
("Pruned because some local variable was incorrectly substituted.\n");
|
2006-01-02 18:43:25 +00:00
|
|
|
}
|
2006-02-28 13:41:36 +00:00
|
|
|
return true;
|
2006-01-02 18:43:25 +00:00
|
|
|
}
|
|
|
|
|
2012-12-14 15:59:53 +00:00
|
|
|
// Prune if agents are disallowed from performing multiple roles
|
|
|
|
if (switches.oneRolePerAgent != 0)
|
|
|
|
{
|
|
|
|
if (multipleRolePrune (sys))
|
|
|
|
{
|
|
|
|
if (switches.output == PROOF)
|
|
|
|
{
|
|
|
|
indentPrint ();
|
|
|
|
eprintf
|
|
|
|
("Pruned because an agent may not perform multiple roles.\n");
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-01-02 18:43:25 +00:00
|
|
|
// Prune if any initiator run talks to itself
|
|
|
|
/**
|
|
|
|
* This effectively disallows Alice from talking to Alice, for all
|
|
|
|
* initiators. We still allow it for responder runs, because we assume the
|
|
|
|
* responder is not checking this.
|
|
|
|
*/
|
2006-03-31 09:24:41 +01:00
|
|
|
if (switches.initUnique)
|
2006-01-02 18:43:25 +00:00
|
|
|
{
|
2006-03-28 15:45:02 +01:00
|
|
|
if (selfInitiators (sys) > 0)
|
2006-01-02 18:43:25 +00:00
|
|
|
{
|
2006-03-28 15:45:02 +01:00
|
|
|
// XXX TODO
|
|
|
|
// Still need to fix proof output for this
|
|
|
|
//
|
|
|
|
// Pruning because some agents are equal for this role.
|
|
|
|
return true;
|
2006-01-02 18:43:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-03-31 09:24:41 +01:00
|
|
|
if (switches.respUnique)
|
|
|
|
{
|
|
|
|
if (selfResponders (sys) > 0)
|
|
|
|
{
|
|
|
|
// XXX TODO
|
|
|
|
// Still need to fix proof output for this
|
|
|
|
//
|
|
|
|
// Pruning because some agents are equal for this role.
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-04-01 14:24:14 +01:00
|
|
|
if (switches.roleUnique)
|
|
|
|
{
|
|
|
|
if (!agentsUniqueRoles (sys))
|
|
|
|
{
|
|
|
|
if (switches.output == PROOF)
|
|
|
|
{
|
|
|
|
indentPrint ();
|
|
|
|
eprintf
|
|
|
|
("Pruned because agents are not performing unique roles.\n");
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-01-18 16:03:20 +00:00
|
|
|
/*
|
|
|
|
The semantics imply that create event chose agent names, i.e., the range of rho is a subset of Agent.
|
|
|
|
|
|
|
|
For chosen name attacks we may want to loosen that. However, this requires inserting receive events for the non-actor role variables of responders, and we don't have that yet,
|
|
|
|
so technically this is a bug. Don't use.
|
|
|
|
*/
|
|
|
|
if (switches.chosenName)
|
2006-01-02 18:43:25 +00:00
|
|
|
{
|
2011-01-18 16:03:20 +00:00
|
|
|
// Check if all actors are agents for responders (initiators come next)
|
|
|
|
run = 0;
|
|
|
|
while (run < sys->maxruns)
|
2006-01-02 18:43:25 +00:00
|
|
|
{
|
2011-01-18 16:03:20 +00:00
|
|
|
if (!sys->runs[run].role->initiator)
|
|
|
|
{
|
|
|
|
Term actor;
|
|
|
|
|
|
|
|
actor = agentOfRun (sys, run);
|
|
|
|
if (!goodAgentType (actor))
|
|
|
|
{
|
|
|
|
if (switches.output == PROOF)
|
|
|
|
{
|
|
|
|
indentPrint ();
|
|
|
|
eprintf ("Pruned because the actor ");
|
|
|
|
termPrint (actor);
|
|
|
|
eprintf (" of run %i is not of a compatible type.\n",
|
|
|
|
run);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
run++;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Prune wrong agents type for initators
|
|
|
|
if (!initiatorAgentsType (sys))
|
|
|
|
{
|
|
|
|
if (switches.output == PROOF)
|
|
|
|
{
|
|
|
|
indentPrint ();
|
|
|
|
eprintf
|
|
|
|
("Pruned: an initiator role does not have the correct type for one of its agents.\n");
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Prune wrong agents type for runs
|
|
|
|
if (!allAgentsType (sys))
|
|
|
|
{
|
|
|
|
if (switches.output == PROOF)
|
|
|
|
{
|
|
|
|
indentPrint ();
|
|
|
|
eprintf
|
|
|
|
("Pruned: some run does not have the correct type for one of its agents.\n");
|
|
|
|
}
|
|
|
|
return true;
|
2006-01-02 18:43:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check if the actors of all other runs are not untrusted
|
|
|
|
if (sys->untrusted != NULL)
|
|
|
|
{
|
|
|
|
int run;
|
|
|
|
|
|
|
|
run = 1;
|
|
|
|
while (run < sys->maxruns)
|
|
|
|
{
|
|
|
|
if (sys->runs[run].protocol != INTRUDER)
|
|
|
|
{
|
2006-03-15 21:30:19 +00:00
|
|
|
if (sys->runs[run].rho != NULL)
|
2006-01-02 18:43:25 +00:00
|
|
|
{
|
|
|
|
Term actor;
|
|
|
|
|
|
|
|
actor = agentOfRun (sys, run);
|
|
|
|
if (actor == NULL)
|
|
|
|
{
|
|
|
|
error ("Agent of run %i is NULL", run);
|
|
|
|
}
|
|
|
|
if (!isAgentTrusted (sys, actor))
|
|
|
|
{
|
|
|
|
if (switches.output == PROOF)
|
|
|
|
{
|
|
|
|
indentPrint ();
|
|
|
|
eprintf
|
|
|
|
("Pruned because the actor of run %i is untrusted.\n",
|
|
|
|
run);
|
|
|
|
}
|
2006-02-28 13:41:36 +00:00
|
|
|
return true;
|
2006-01-02 18:43:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Protocol p;
|
|
|
|
|
|
|
|
globalError++;
|
2007-01-31 11:23:53 +00:00
|
|
|
eprintf ("error: Run %i: ", run);
|
2006-01-02 18:43:25 +00:00
|
|
|
role_name_print (run);
|
|
|
|
eprintf (" has an empty agents list.\n");
|
|
|
|
eprintf ("protocol->rolenames: ");
|
|
|
|
p = (Protocol) sys->runs[run].protocol;
|
|
|
|
termlistPrint (p->rolenames);
|
|
|
|
eprintf ("\n");
|
|
|
|
error ("Aborting.");
|
|
|
|
globalError--;
|
2006-02-28 13:41:36 +00:00
|
|
|
return true;
|
2006-01-02 18:43:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
run++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-05-01 14:02:45 +01:00
|
|
|
// Check for redundant patterns
|
2006-01-02 18:43:25 +00:00
|
|
|
{
|
2012-05-01 13:46:01 +01:00
|
|
|
if (!non_redundant ())
|
2006-01-02 18:43:25 +00:00
|
|
|
{
|
|
|
|
if (switches.output == PROOF)
|
|
|
|
{
|
|
|
|
indentPrint ();
|
2012-05-01 14:02:45 +01:00
|
|
|
eprintf ("Pruned because the pattern is redundant.\n");
|
2006-01-02 18:43:25 +00:00
|
|
|
}
|
2006-02-28 13:41:36 +00:00
|
|
|
return true;
|
2006-01-02 18:43:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-11-21 12:40:15 +00:00
|
|
|
// Check for violation of inequality constraints
|
|
|
|
if (!inequalityConstraints (sys))
|
|
|
|
{
|
|
|
|
// Prune, because violated
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2006-02-27 16:08:17 +00:00
|
|
|
/*
|
|
|
|
* Check for correct orderings involving local constants
|
2010-12-31 14:43:00 +00:00
|
|
|
*
|
|
|
|
* TODO: Clarify how this works with agent name variables in a non strict-typed setting.
|
2006-02-27 16:08:17 +00:00
|
|
|
*/
|
2006-02-28 13:57:38 +00:00
|
|
|
if (!(switches.experimental & 8))
|
2006-02-27 22:27:09 +00:00
|
|
|
{
|
2006-02-28 13:41:36 +00:00
|
|
|
if (!correctLocalOrder (sys))
|
|
|
|
{
|
|
|
|
if (switches.output == PROOF)
|
|
|
|
{
|
|
|
|
indentPrint ();
|
|
|
|
eprintf
|
|
|
|
("Pruned because this does not have the correct local order.\n");
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
2006-02-27 22:27:09 +00:00
|
|
|
}
|
2006-02-27 16:08:17 +00:00
|
|
|
|
2006-01-02 18:43:25 +00:00
|
|
|
/**
|
|
|
|
* Check whether the bindings are valid
|
|
|
|
*/
|
|
|
|
bl = sys->bindings;
|
|
|
|
while (bl != NULL)
|
|
|
|
{
|
|
|
|
Binding b;
|
|
|
|
|
|
|
|
b = bl->data;
|
|
|
|
|
2006-02-28 13:57:38 +00:00
|
|
|
// Check for "Hidden" interm goals
|
2006-03-08 12:38:39 +00:00
|
|
|
//! @todo in the future, this can be subsumed by adding TERM_Hidden to the hidelevel constructs
|
2006-02-28 13:57:38 +00:00
|
|
|
if (termInTerm (b->term, TERM_Hidden))
|
2006-01-02 18:43:25 +00:00
|
|
|
{
|
2006-02-28 13:57:38 +00:00
|
|
|
// Prune the state: we can never meet this
|
|
|
|
if (switches.output == PROOF)
|
2006-01-02 18:43:25 +00:00
|
|
|
{
|
2006-02-28 13:57:38 +00:00
|
|
|
indentPrint ();
|
2012-12-14 15:59:21 +00:00
|
|
|
eprintf ("Pruned because intruder can never construct ");
|
2006-02-28 13:57:38 +00:00
|
|
|
termPrint (b->term);
|
|
|
|
eprintf ("\n");
|
2006-02-28 13:41:36 +00:00
|
|
|
}
|
2006-02-28 13:57:38 +00:00
|
|
|
return true;
|
2006-02-28 13:41:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (switches.experimental & 4)
|
|
|
|
{
|
|
|
|
// Check for SK-type function occurrences
|
|
|
|
//!@todo Needs a LEMMA, although this seems to be quite straightforward to prove.
|
|
|
|
// The idea is that functions are never sent as a whole, but only used in applications.
|
2006-03-08 12:38:39 +00:00
|
|
|
//! @todo Subsumed by hidelevel lemma later
|
2006-02-28 13:41:36 +00:00
|
|
|
if (isTermFunctionName (b->term))
|
|
|
|
{
|
|
|
|
if (!inKnowledge (sys->know, b->term))
|
|
|
|
{
|
|
|
|
// Not in initial knowledge of the intruder
|
|
|
|
if (switches.output == PROOF)
|
|
|
|
{
|
|
|
|
indentPrint ();
|
|
|
|
eprintf ("Pruned because the function ");
|
|
|
|
termPrint (b->term);
|
|
|
|
eprintf (" is not known initially to the intruder.\n");
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
2006-01-02 18:43:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check for encryption levels
|
|
|
|
/*
|
|
|
|
* if (switches.match < 2
|
2006-03-08 12:38:39 +00:00
|
|
|
*! @todo Doesn't work yet as desired for Tickets. Prove lemma first.
|
2006-01-02 18:43:25 +00:00
|
|
|
*/
|
2006-02-28 13:41:36 +00:00
|
|
|
if (switches.experimental & 2)
|
2006-01-02 18:43:25 +00:00
|
|
|
{
|
2006-01-17 16:18:26 +00:00
|
|
|
if (!hasTicketSubterm (b->term))
|
2006-01-02 18:43:25 +00:00
|
|
|
{
|
2006-01-17 16:18:26 +00:00
|
|
|
if (term_encryption_level (b->term) > max_encryption_level)
|
|
|
|
{
|
|
|
|
// Prune: we do not need to construct such terms
|
|
|
|
if (switches.output == PROOF)
|
|
|
|
{
|
|
|
|
indentPrint ();
|
|
|
|
eprintf ("Pruned because the encryption level of ");
|
|
|
|
termPrint (b->term);
|
|
|
|
eprintf (" is too high.\n");
|
|
|
|
}
|
2006-02-28 13:41:36 +00:00
|
|
|
return true;
|
2006-01-17 16:18:26 +00:00
|
|
|
}
|
2006-01-02 18:43:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-06-12 15:48:57 +01:00
|
|
|
// To be on the safe side, we currently limit the encryption level.
|
2006-03-31 11:12:58 +01:00
|
|
|
/**
|
2008-01-28 14:23:40 +00:00
|
|
|
* This is valid *only* if there are no ticket-type variables.
|
2006-03-31 11:12:58 +01:00
|
|
|
*/
|
2006-04-13 13:43:13 +01:00
|
|
|
if (term_encryption_level (b->term) > max_encryption_level)
|
2006-03-31 11:12:58 +01:00
|
|
|
{
|
2006-04-13 13:43:13 +01:00
|
|
|
// Prune: we do not need to construct such terms
|
2008-01-28 14:23:40 +00:00
|
|
|
if (sys->hasUntypedVariable)
|
|
|
|
{
|
|
|
|
sys->current_claim->complete = false;
|
|
|
|
}
|
2006-04-13 13:43:13 +01:00
|
|
|
if (switches.output == PROOF)
|
|
|
|
{
|
|
|
|
indentPrint ();
|
|
|
|
eprintf ("Pruned because the encryption level of ");
|
|
|
|
termPrint (b->term);
|
|
|
|
eprintf (" is too high.\n");
|
|
|
|
}
|
2006-03-31 11:12:58 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2006-02-28 13:41:36 +00:00
|
|
|
/**
|
|
|
|
* Prune on the basis of hidelevel lemma
|
|
|
|
*/
|
|
|
|
if (hidelevelImpossible (sys, b->term))
|
2006-01-02 18:43:25 +00:00
|
|
|
{
|
2006-02-28 13:41:36 +00:00
|
|
|
// Prune: we do not need to construct such terms
|
|
|
|
if (switches.output == PROOF)
|
2006-01-02 18:43:25 +00:00
|
|
|
{
|
2006-02-28 13:41:36 +00:00
|
|
|
indentPrint ();
|
|
|
|
eprintf ("Pruned because the hidelevel of ");
|
|
|
|
termPrint (b->term);
|
|
|
|
eprintf (" is impossible to satisfy.\n");
|
2006-01-02 18:43:25 +00:00
|
|
|
}
|
2006-02-28 13:41:36 +00:00
|
|
|
return true;
|
2006-01-02 18:43:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bl = bl->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* check for singular roles */
|
|
|
|
run = 0;
|
|
|
|
while (run < sys->maxruns)
|
|
|
|
{
|
|
|
|
if (sys->runs[run].role->singular)
|
|
|
|
{
|
|
|
|
// This is a singular role: it therefore should not occur later on again.
|
|
|
|
int run2;
|
|
|
|
Term rolename;
|
|
|
|
|
|
|
|
rolename = sys->runs[run].role->nameterm;
|
|
|
|
run2 = run + 1;
|
|
|
|
while (run2 < sys->maxruns)
|
|
|
|
{
|
|
|
|
Term rolename2;
|
|
|
|
|
|
|
|
rolename2 = sys->runs[run2].role->nameterm;
|
|
|
|
if (isTermEqual (rolename, rolename2))
|
|
|
|
{
|
|
|
|
// This is not allowed: the singular role occurs twice in the semitrace.
|
|
|
|
// Thus we prune.
|
|
|
|
if (switches.output == PROOF)
|
|
|
|
{
|
|
|
|
indentPrint ();
|
|
|
|
eprintf ("Pruned because the singular role ");
|
|
|
|
termPrint (rolename);
|
|
|
|
eprintf (" occurs more than once in the semitrace.\n");
|
|
|
|
}
|
2006-02-28 13:41:36 +00:00
|
|
|
return true;
|
2006-01-02 18:43:25 +00:00
|
|
|
}
|
|
|
|
run2++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
run++;
|
|
|
|
}
|
|
|
|
|
2006-02-28 13:41:36 +00:00
|
|
|
return false;
|
2006-01-02 18:43:25 +00:00
|
|
|
}
|