2007-06-11 13:01:04 +01:00
|
|
|
/*
|
|
|
|
* Scyther : An automatic verifier for security protocols.
|
2012-04-24 12:56:51 +01:00
|
|
|
* Copyright (C) 2007-2012 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-03-08 13:58:46 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <limits.h>
|
2005-12-27 11:50:46 +00:00
|
|
|
#include "system.h"
|
|
|
|
#include "switches.h"
|
|
|
|
#include "arachne.h"
|
2006-03-08 15:12:58 +00:00
|
|
|
#include "binding.h"
|
2006-02-26 15:00:58 +00:00
|
|
|
#include "depend.h"
|
2006-12-05 10:10:17 +00:00
|
|
|
#include "type.h"
|
2006-03-15 08:33:09 +00:00
|
|
|
#include "debug.h"
|
2007-01-06 14:45:29 +00:00
|
|
|
#include "error.h"
|
2011-01-24 16:32:24 +00:00
|
|
|
#include "specialterm.h"
|
2011-04-26 10:49:05 +01:00
|
|
|
#include "cost.h"
|
2005-12-27 11:50:46 +00:00
|
|
|
|
2006-01-02 16:07:56 +00:00
|
|
|
extern Protocol INTRUDER; // Pointers, to be set by the Init of arachne.c
|
|
|
|
extern Role I_M; // Same here.
|
2005-12-27 11:50:46 +00:00
|
|
|
extern Role I_RRS;
|
|
|
|
extern Role I_RRSD;
|
|
|
|
|
|
|
|
#define INVALID -1
|
2012-04-25 08:53:07 +01:00
|
|
|
#define isGoal(rd) (rd->type == RECV && !rd->internal)
|
2005-12-27 11:50:46 +00:00
|
|
|
#define isBound(rd) (rd->bound)
|
|
|
|
#define length step
|
|
|
|
|
2006-03-14 11:37:28 +00:00
|
|
|
#define CLAIMTEXTCOLOR "#ffffff"
|
|
|
|
#define CLAIMCOLOR "#000000"
|
|
|
|
#define GOODCOMMCOLOR "forestgreen"
|
|
|
|
|
|
|
|
#define INTRUDERCOLORH 18.0
|
|
|
|
#define INTRUDERCOLORL 0.65
|
|
|
|
#define INTRUDERCOLORS 0.9
|
|
|
|
#define RUNCOLORL1 0.90
|
|
|
|
#define RUNCOLORL2 0.65
|
|
|
|
#define RUNCOLORH1 (INTRUDERCOLORH + 360 - 10.0)
|
|
|
|
#define RUNCOLORH2 (INTRUDERCOLORH + 10.0)
|
|
|
|
#define RUNCOLORS1 0.8
|
|
|
|
#define RUNCOLORS2 0.6
|
|
|
|
#define RUNCOLORDELTA 0.2 // maximum hue delta between roles (0.2): smaller means role colors of a protocol become more similar.
|
|
|
|
#define RUNCOLORCONTRACT 0.8 // contract from protocol edges: smaller means more distinction between protocols.
|
|
|
|
#define UNTRUSTEDCOLORS 0.4
|
|
|
|
|
2006-05-26 10:39:10 +01:00
|
|
|
#define CHOOSEWEIGHT "2.0"
|
|
|
|
#define RUNWEIGHT "10.0"
|
2006-05-26 12:27:05 +01:00
|
|
|
//#define CHOOSEWEIGHT "1.0"
|
|
|
|
//#define RUNWEIGHT "1.0"
|
2006-05-26 10:39:10 +01:00
|
|
|
|
2006-03-14 11:37:28 +00:00
|
|
|
/*
|
|
|
|
* Dot output
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* The algorithm itself is not very complicated; because the semi-bundles have
|
|
|
|
* bindings etcetera, a graph can be draw quickly and efficiently.
|
|
|
|
*
|
|
|
|
* Interesting issues:
|
|
|
|
*
|
|
|
|
* Binding annotations are only drawn if they don't connect with regular
|
|
|
|
* events, and when the item does not occur in any previous binding, it might
|
|
|
|
* be connected to the initial intruder knowledge.
|
|
|
|
*
|
|
|
|
* Color management is quite involved. We draw identical protocols in similar
|
|
|
|
* color schemes. A color scheme is a gradient between two colors, evenly
|
|
|
|
* spread over all the runs.
|
|
|
|
*/
|
|
|
|
|
2006-03-15 21:30:19 +00:00
|
|
|
static System sys = NULL;
|
2006-03-14 11:37:28 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* code
|
|
|
|
*/
|
|
|
|
|
2006-12-05 10:10:17 +00:00
|
|
|
//! Is this term chosen by the intruder?
|
|
|
|
int
|
|
|
|
isIntruderChoice (const Term t)
|
|
|
|
{
|
|
|
|
if (realTermLeaf (t))
|
|
|
|
{
|
|
|
|
if (TermRunid (t) >= sys->maxruns)
|
|
|
|
{
|
|
|
|
// Chosen by intruder
|
|
|
|
// However, if it is a rolename, this is not really what we mean
|
2013-04-26 10:36:41 +01:00
|
|
|
if (!(t->helper.roleVar || isAgentType (t->stype)))
|
2006-12-05 10:10:17 +00:00
|
|
|
{
|
|
|
|
// Not a role variable, and chosen by the intruder: that's it
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
//! Print the run identifier in some meaningful way
|
2006-03-15 21:30:19 +00:00
|
|
|
void
|
2006-12-05 10:10:17 +00:00
|
|
|
printVisualRunID (int rid)
|
2006-03-15 21:30:19 +00:00
|
|
|
{
|
|
|
|
int run;
|
2006-03-31 13:24:32 +01:00
|
|
|
int displayi;
|
|
|
|
int displayr;
|
2006-03-15 21:30:19 +00:00
|
|
|
int display;
|
|
|
|
|
2006-04-02 12:56:22 +01:00
|
|
|
if (rid < sys->maxruns)
|
2006-03-15 21:30:19 +00:00
|
|
|
{
|
2006-04-02 12:56:22 +01:00
|
|
|
// < sys->maxruns means normal thing (not from makeTraceConcrete)
|
|
|
|
displayi = 0;
|
|
|
|
displayr = 0;
|
|
|
|
for (run = 0; run < rid; run++)
|
2006-03-15 21:30:19 +00:00
|
|
|
{
|
2006-04-02 12:56:22 +01:00
|
|
|
if (sys->runs[run].protocol != INTRUDER)
|
|
|
|
{
|
|
|
|
displayr++;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
displayi++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (sys->runs[rid].protocol == INTRUDER)
|
|
|
|
{
|
|
|
|
display = sys->maxruns + displayi + 1;
|
2006-03-15 21:30:19 +00:00
|
|
|
}
|
2006-03-31 13:24:32 +01:00
|
|
|
else
|
|
|
|
{
|
2006-04-02 12:56:22 +01:00
|
|
|
display = displayr + 1;
|
2006-03-31 13:24:32 +01:00
|
|
|
}
|
2006-04-02 12:56:22 +01:00
|
|
|
eprintf ("#%i", display);
|
2006-03-31 13:24:32 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-12-05 10:10:17 +00:00
|
|
|
eprintf ("%i", (rid - sys->maxruns + 1));
|
2006-03-15 21:30:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-12-05 10:10:17 +00:00
|
|
|
void
|
|
|
|
printVisualRun (const Term t)
|
|
|
|
{
|
|
|
|
if (isIntruderChoice (t))
|
|
|
|
{
|
|
|
|
eprintf ("Intruder");
|
|
|
|
}
|
|
|
|
printVisualRunID (TermRunid (t));
|
|
|
|
}
|
|
|
|
|
2006-03-15 21:30:19 +00:00
|
|
|
//! Remap term stuff
|
|
|
|
void
|
|
|
|
termPrintRemap (const Term t)
|
|
|
|
{
|
2006-03-16 08:49:10 +00:00
|
|
|
termPrintCustom (t, "", "", "(", ")", "\\{ ", " \\}", printVisualRun);
|
2006-03-15 21:30:19 +00:00
|
|
|
}
|
|
|
|
|
2006-11-30 16:16:37 +00:00
|
|
|
//! Remap term list
|
|
|
|
void
|
2006-12-05 10:10:17 +00:00
|
|
|
termlistPrintRemap (Termlist tl, char *sep)
|
2006-11-30 16:16:37 +00:00
|
|
|
{
|
|
|
|
while (tl != NULL)
|
|
|
|
{
|
2006-12-05 10:10:17 +00:00
|
|
|
termPrintRemap (tl->term);
|
2006-11-30 16:16:37 +00:00
|
|
|
tl = tl->next;
|
2006-12-05 10:10:17 +00:00
|
|
|
if (tl != NULL)
|
|
|
|
{
|
|
|
|
eprintf ("%s", sep);
|
|
|
|
}
|
2006-11-30 16:16:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-03-20 09:40:45 +00:00
|
|
|
//! Print a term; if it is a variable, show that
|
|
|
|
void
|
|
|
|
explainVariable (Term t)
|
|
|
|
{
|
|
|
|
t = deVar (t);
|
|
|
|
if (realTermVariable (t))
|
|
|
|
{
|
|
|
|
eprintf ("any ");
|
2013-04-26 10:36:41 +01:00
|
|
|
if (t->helper.roleVar)
|
2006-03-20 09:40:45 +00:00
|
|
|
{
|
|
|
|
eprintf ("agent ");
|
|
|
|
}
|
|
|
|
termPrintRemap (t);
|
2013-04-26 10:36:41 +01:00
|
|
|
if (!t->helper.roleVar)
|
2006-03-20 09:40:45 +00:00
|
|
|
{
|
|
|
|
if (switches.match == 0 && t->stype != NULL)
|
|
|
|
{
|
|
|
|
Termlist tl;
|
|
|
|
|
|
|
|
eprintf (" of type ");
|
|
|
|
for (tl = t->stype; tl != NULL; tl = tl->next)
|
|
|
|
{
|
|
|
|
termPrintRemap (tl->term);
|
|
|
|
if (tl->next != NULL)
|
|
|
|
{
|
|
|
|
eprintf (",");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
termPrintRemap (t);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-07-02 13:03:57 +01:00
|
|
|
|
|
|
|
//! Name of intruder node
|
|
|
|
void
|
|
|
|
intruderNodeM0 (void)
|
|
|
|
{
|
|
|
|
eprintf ("intruder");
|
|
|
|
}
|
|
|
|
|
2006-03-08 15:12:58 +00:00
|
|
|
//! Draw node
|
|
|
|
void
|
|
|
|
node (const System sys, const int run, const int index)
|
|
|
|
{
|
|
|
|
if (sys->runs[run].protocol == INTRUDER)
|
|
|
|
{
|
|
|
|
if (sys->runs[run].role == I_M)
|
|
|
|
{
|
2006-07-02 13:03:57 +01:00
|
|
|
intruderNodeM0 ();
|
2006-03-08 15:12:58 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-03-14 11:37:28 +00:00
|
|
|
eprintf ("ri%i", run);
|
2006-03-08 15:12:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
eprintf ("r%ii%i", run, index);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-03-14 11:37:28 +00:00
|
|
|
//! Draw arrow
|
|
|
|
void
|
|
|
|
arrow (const System sys, Binding b)
|
|
|
|
{
|
|
|
|
node (sys, b->run_from, b->ev_from);
|
|
|
|
eprintf (" -> ");
|
|
|
|
node (sys, b->run_to, b->ev_to);
|
|
|
|
}
|
|
|
|
|
|
|
|
//! Redirect node
|
|
|
|
void
|
|
|
|
redirNode (const System sys, Binding b)
|
|
|
|
{
|
|
|
|
eprintf ("redir_");
|
|
|
|
node (sys, b->run_from, b->ev_from);
|
|
|
|
node (sys, b->run_to, b->ev_to);
|
|
|
|
}
|
|
|
|
|
|
|
|
//! Roledef draw
|
|
|
|
void
|
|
|
|
roledefDraw (Roledef rd)
|
|
|
|
{
|
|
|
|
void optlabel (void)
|
|
|
|
{
|
|
|
|
Term label;
|
|
|
|
|
|
|
|
label = rd->label;
|
|
|
|
if (label != NULL)
|
|
|
|
{
|
|
|
|
if (realTermTuple (label))
|
|
|
|
{
|
|
|
|
label = TermOp2 (label);
|
|
|
|
}
|
|
|
|
eprintf ("_");
|
2006-03-15 21:30:19 +00:00
|
|
|
termPrintRemap (label);
|
2006-03-14 11:37:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-04-25 08:53:07 +01:00
|
|
|
if (rd->type == RECV)
|
2006-03-14 11:37:28 +00:00
|
|
|
{
|
2008-08-20 15:16:18 +01:00
|
|
|
eprintf ("recv");
|
2006-03-14 11:37:28 +00:00
|
|
|
optlabel ();
|
|
|
|
eprintf (" from ");
|
2006-03-15 21:30:19 +00:00
|
|
|
termPrintRemap (rd->from);
|
2006-03-14 11:37:28 +00:00
|
|
|
eprintf ("\\n");
|
2006-03-15 21:30:19 +00:00
|
|
|
termPrintRemap (rd->message);
|
2006-03-14 11:37:28 +00:00
|
|
|
}
|
|
|
|
if (rd->type == SEND)
|
|
|
|
{
|
|
|
|
eprintf ("send");
|
|
|
|
optlabel ();
|
|
|
|
eprintf (" to ");
|
2006-03-15 21:30:19 +00:00
|
|
|
termPrintRemap (rd->to);
|
2006-03-14 11:37:28 +00:00
|
|
|
eprintf ("\\n");
|
2006-03-15 21:30:19 +00:00
|
|
|
termPrintRemap (rd->message);
|
2006-03-14 11:37:28 +00:00
|
|
|
}
|
|
|
|
if (rd->type == CLAIM)
|
|
|
|
{
|
|
|
|
eprintf ("claim");
|
|
|
|
optlabel ();
|
|
|
|
eprintf ("\\n");
|
2006-03-15 21:30:19 +00:00
|
|
|
termPrintRemap (rd->to);
|
2006-03-14 11:37:28 +00:00
|
|
|
if (rd->message != NULL)
|
|
|
|
{
|
|
|
|
eprintf (" : ");
|
2006-03-15 21:30:19 +00:00
|
|
|
termPrintRemap (rd->message);
|
2006-03-14 11:37:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//! Choose term node
|
|
|
|
void
|
|
|
|
chooseTermNode (const Term t)
|
|
|
|
{
|
|
|
|
eprintf ("CHOOSE");
|
|
|
|
{
|
|
|
|
char *rsbuf;
|
|
|
|
|
|
|
|
rsbuf = RUNSEP;
|
|
|
|
RUNSEP = "x";
|
2006-03-16 13:26:46 +00:00
|
|
|
termPrint (t);
|
2006-03-14 11:37:28 +00:00
|
|
|
RUNSEP = rsbuf;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//! Value for hlsrgb conversion
|
|
|
|
static double
|
|
|
|
hlsValue (double n1, double n2, double hue)
|
|
|
|
{
|
|
|
|
if (hue > 360.0)
|
|
|
|
hue -= 360.0;
|
|
|
|
else if (hue < 0.0)
|
|
|
|
hue += 360.0;
|
|
|
|
if (hue < 60.0)
|
|
|
|
return n1 + (n2 - n1) * hue / 60.0;
|
|
|
|
else if (hue < 180.0)
|
|
|
|
return n2;
|
|
|
|
else if (hue < 240.0)
|
|
|
|
return n1 + (n2 - n1) * (240.0 - hue) / 60.0;
|
|
|
|
else
|
|
|
|
return n1;
|
|
|
|
}
|
|
|
|
|
|
|
|
//! hls to rgb conversion
|
|
|
|
void
|
2006-05-25 21:35:01 +01:00
|
|
|
hlsrgbreal (int *r, int *g, int *b, double h, double l, double s)
|
2006-03-14 11:37:28 +00:00
|
|
|
{
|
|
|
|
double m1, m2;
|
|
|
|
|
|
|
|
int bytedouble (double d)
|
|
|
|
{
|
|
|
|
double x;
|
|
|
|
|
|
|
|
x = 255.0 * d;
|
|
|
|
if (x <= 0)
|
|
|
|
return 0;
|
|
|
|
else if (x >= 255.0)
|
|
|
|
return 255;
|
|
|
|
else
|
|
|
|
return (int) x;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (h >= 360.0)
|
|
|
|
h -= 360.0;
|
|
|
|
while (h < 0)
|
|
|
|
h += 360.0;
|
|
|
|
m2 = (l <= 0.5) ? (l * (l + s)) : (l + s - l * s);
|
|
|
|
m1 = 2.0 * l - m2;
|
|
|
|
if (s == 0.0)
|
|
|
|
{
|
|
|
|
*r = *g = *b = bytedouble (l);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
*r = bytedouble (hlsValue (m1, m2, h + 120.0));
|
|
|
|
*g = bytedouble (hlsValue (m1, m2, h));
|
|
|
|
*b = bytedouble (hlsValue (m1, m2, h - 120.0));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-05-25 21:35:01 +01:00
|
|
|
//! hls to rgb conversion
|
|
|
|
/**
|
|
|
|
* Secretly takes the monochrome switch into account
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
hlsrgb (int *r, int *g, int *b, double h, double l, double s)
|
|
|
|
{
|
2006-05-26 13:57:27 +01:00
|
|
|
double closer (double l, double factor)
|
|
|
|
{
|
|
|
|
return l + ((1.0 - l) * factor);
|
|
|
|
}
|
|
|
|
|
2006-05-25 21:35:01 +01:00
|
|
|
if (switches.monochrome)
|
|
|
|
{
|
2006-05-26 13:57:27 +01:00
|
|
|
// No colors
|
2006-05-25 21:35:01 +01:00
|
|
|
s = 0;
|
|
|
|
h = 0;
|
|
|
|
}
|
2006-05-26 13:57:27 +01:00
|
|
|
|
|
|
|
if (switches.lightness > 0)
|
2006-05-25 21:35:01 +01:00
|
|
|
{
|
2006-05-26 13:57:27 +01:00
|
|
|
// correction switch for lightness
|
|
|
|
if (switches.lightness == 100)
|
|
|
|
{
|
|
|
|
l = 1.0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
l = closer (l, ((double) switches.lightness / 100.0));
|
|
|
|
}
|
2006-05-25 21:35:01 +01:00
|
|
|
}
|
2006-05-26 13:57:27 +01:00
|
|
|
|
|
|
|
// convert
|
|
|
|
hlsrgbreal (r, g, b, h, l, s);
|
2006-05-25 21:35:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-03-14 11:37:28 +00:00
|
|
|
//! print color from h,l,s triplet
|
|
|
|
void
|
|
|
|
printColor (double h, double l, double s)
|
|
|
|
{
|
|
|
|
int r, g, b;
|
|
|
|
|
|
|
|
hlsrgb (&r, &g, &b, h, l, s);
|
|
|
|
eprintf ("#%02x%02x%02x", r, g, b);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//! Set local buffer with the correct color for this run.
|
|
|
|
/**
|
|
|
|
* Determines number of protocols, shifts to the right color pair, and colors
|
|
|
|
* the run within the current protocol in the fade between the color pair.
|
|
|
|
*
|
|
|
|
* This can be done much more efficiently by computing these colors once,
|
|
|
|
* instead of each time again for each run. However, this is not a
|
|
|
|
* speed-critical section so this will do just nicely.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
setRunColorBuf (const System sys, int run, char *colorbuf)
|
|
|
|
{
|
|
|
|
int range;
|
|
|
|
int index;
|
|
|
|
double protoffset, protrange;
|
|
|
|
double roleoffset, roledelta;
|
|
|
|
double color;
|
|
|
|
double h, l, s;
|
|
|
|
int r, g, b;
|
|
|
|
|
|
|
|
// help function: contract roleoffset, roledelta with a factor (<= 1.0)
|
|
|
|
void contract (double factor)
|
|
|
|
{
|
|
|
|
roledelta = roledelta * factor;
|
|
|
|
roleoffset = (roleoffset * factor) + ((1.0 - factor) / 2.0);
|
|
|
|
}
|
|
|
|
|
|
|
|
// determine #protocol, resulting in two colors
|
|
|
|
{
|
|
|
|
Termlist protocols;
|
|
|
|
Term refprot;
|
|
|
|
int r;
|
|
|
|
int firstfound;
|
|
|
|
|
|
|
|
protocols = NULL;
|
|
|
|
refprot = sys->runs[run].protocol->nameterm;
|
|
|
|
index = 0;
|
|
|
|
range = 1;
|
|
|
|
firstfound = false;
|
|
|
|
for (r = 0; r < sys->maxruns; r++)
|
|
|
|
{
|
|
|
|
if (sys->runs[r].protocol != INTRUDER)
|
|
|
|
{
|
|
|
|
Term prot;
|
|
|
|
|
|
|
|
prot = sys->runs[r].protocol->nameterm;
|
|
|
|
if (!isTermEqual (prot, refprot))
|
|
|
|
{
|
|
|
|
// Some 'other' protocol
|
|
|
|
if (!inTermlist (protocols, prot))
|
|
|
|
{
|
|
|
|
// New other protocol
|
|
|
|
protocols = termlistAdd (protocols, prot);
|
|
|
|
range++;
|
|
|
|
if (!firstfound)
|
|
|
|
{
|
|
|
|
index++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Our protocol
|
|
|
|
firstfound = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
termlistDelete (protocols);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Compute protocol offset [0.0 ... 1.0>
|
|
|
|
protrange = 1.0 / range;
|
|
|
|
protoffset = index * protrange;
|
|
|
|
|
|
|
|
// We now now our range, and we can determine which role this one is.
|
|
|
|
{
|
|
|
|
Role rr;
|
|
|
|
int done;
|
|
|
|
|
|
|
|
range = 0;
|
|
|
|
index = 0;
|
|
|
|
done = false;
|
|
|
|
|
|
|
|
for (rr = sys->runs[run].protocol->roles; rr != NULL; rr = rr->next)
|
|
|
|
{
|
|
|
|
if (sys->runs[run].role == rr)
|
|
|
|
{
|
|
|
|
done = true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (!done)
|
|
|
|
{
|
|
|
|
index++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
range++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Compute role offset [0.0 ... 1.0]
|
|
|
|
if (range <= 1)
|
|
|
|
{
|
|
|
|
roledelta = 0.0;
|
|
|
|
roleoffset = 0.5;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// range over 0..1
|
|
|
|
roledelta = 1.0 / (range - 1);
|
|
|
|
roleoffset = index * roledelta;
|
|
|
|
// Now this can result in a delta that is too high (depending on protocolrange)
|
|
|
|
if (protrange * roledelta > RUNCOLORDELTA)
|
|
|
|
{
|
|
|
|
contract (RUNCOLORDELTA / (protrange * roledelta));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// We slightly contract the colors (taking them away from protocol edges)
|
|
|
|
contract (RUNCOLORCONTRACT);
|
|
|
|
|
|
|
|
// Now we can convert this to a color
|
|
|
|
color = protoffset + (protrange * roleoffset);
|
|
|
|
h = RUNCOLORH1 + color * (RUNCOLORH2 - RUNCOLORH1);
|
|
|
|
l = RUNCOLORL1 + color * (RUNCOLORL2 - RUNCOLORL1);
|
|
|
|
s = RUNCOLORS1 + color * (RUNCOLORS2 - RUNCOLORS1);
|
|
|
|
|
|
|
|
// If the run is not trusted, we lower the saturation significantly
|
|
|
|
if (!isRunTrusted (sys, run))
|
|
|
|
{
|
|
|
|
s = UNTRUSTEDCOLORS;
|
|
|
|
}
|
|
|
|
|
|
|
|
// set to buffer
|
|
|
|
hlsrgb (&r, &g, &b, h, l, s);
|
|
|
|
sprintf (colorbuf, "#%02x%02x%02x", r, g, b);
|
|
|
|
|
|
|
|
// compute second color (light version)
|
|
|
|
/*
|
|
|
|
l += 0.07;
|
|
|
|
if (l > 1.0)
|
|
|
|
l = 1.0;
|
|
|
|
*/
|
|
|
|
hlsrgb (&r, &g, &b, h, l, s);
|
|
|
|
sprintf (colorbuf + 8, "#%02x%02x%02x", r, g, b);
|
|
|
|
}
|
|
|
|
|
|
|
|
//! Communication status
|
|
|
|
int
|
|
|
|
isCommunicationExact (const System sys, Binding b)
|
|
|
|
{
|
|
|
|
Roledef rd1, rd2;
|
|
|
|
|
|
|
|
rd1 = eventRoledef (sys, b->run_from, b->ev_from);
|
|
|
|
rd2 = eventRoledef (sys, b->run_to, b->ev_to);
|
|
|
|
|
|
|
|
if (!isTermEqual (rd1->message, rd2->message))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (!isTermEqual (rd1->from, rd2->from))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (!isTermEqual (rd1->to, rd2->to))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (!isTermEqual (rd1->label, rd2->label))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
2006-03-08 15:12:58 +00:00
|
|
|
|
2006-05-26 12:27:05 +01:00
|
|
|
//! Ignore some events
|
2011-01-24 16:32:24 +00:00
|
|
|
/**
|
|
|
|
* Used only in graph drawing. Return true to ignore, return false to
|
|
|
|
* draw.
|
|
|
|
*/
|
2006-05-26 12:27:05 +01:00
|
|
|
int
|
|
|
|
isEventIgnored (const System sys, int run, int ev)
|
|
|
|
{
|
|
|
|
Roledef rd;
|
|
|
|
|
|
|
|
rd = eventRoledef (sys, run, ev);
|
|
|
|
if (rd->type == CLAIM)
|
|
|
|
{
|
2011-01-24 16:32:24 +00:00
|
|
|
// If we are doing a reachability analysis, show all
|
2011-01-25 16:33:12 +00:00
|
|
|
if (isTermEqual (sys->current_claim->type, CLAIM_Reachable))
|
2006-05-26 12:27:05 +01:00
|
|
|
{
|
2011-01-24 16:32:24 +00:00
|
|
|
return false;
|
2006-05-26 12:27:05 +01:00
|
|
|
}
|
2011-01-24 16:32:24 +00:00
|
|
|
// If the claim type is commit, we also show running claims
|
2011-01-25 16:33:12 +00:00
|
|
|
if (isTermEqual (sys->current_claim->type, CLAIM_Commit)
|
|
|
|
|| isTermEqual (sys->current_claim->type, CLAIM_Reachable))
|
2006-05-26 12:27:05 +01:00
|
|
|
{
|
2011-01-25 16:33:12 +00:00
|
|
|
if (isTermEqual (rd->claiminfo->type, CLAIM_Running))
|
2006-05-26 12:27:05 +01:00
|
|
|
{
|
2011-01-24 16:32:24 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Remaining cases: only active claim is shown
|
|
|
|
if (run == 0)
|
|
|
|
{
|
|
|
|
if (ev == sys->current_claim->ev)
|
|
|
|
{
|
|
|
|
return false;
|
2006-05-26 12:27:05 +01:00
|
|
|
}
|
|
|
|
}
|
2011-01-24 16:32:24 +00:00
|
|
|
return true;
|
2006-05-26 12:27:05 +01:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2006-07-02 13:03:57 +01:00
|
|
|
//! Check whether an event is a function application
|
|
|
|
int
|
|
|
|
isApplication (const System sys, const int run)
|
|
|
|
{
|
|
|
|
if (sys->runs[run].protocol == INTRUDER)
|
|
|
|
{
|
|
|
|
if (sys->runs[run].role == I_RRS)
|
|
|
|
{
|
|
|
|
Roledef rd;
|
|
|
|
|
|
|
|
rd = sys->runs[run].start->next;
|
|
|
|
if (rd != NULL)
|
|
|
|
{
|
|
|
|
if (isTermFunctionName (rd->message))
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2006-07-02 13:51:19 +01:00
|
|
|
//! Is an event enabled by M0 only?
|
2006-07-02 13:03:57 +01:00
|
|
|
int
|
2006-07-02 13:51:19 +01:00
|
|
|
isEnabledM0 (const System sys, const int run, const int ev)
|
2006-07-02 13:03:57 +01:00
|
|
|
{
|
2006-07-02 13:51:19 +01:00
|
|
|
List bl;
|
2006-07-02 13:03:57 +01:00
|
|
|
|
2006-07-02 13:51:19 +01:00
|
|
|
for (bl = sys->bindings; bl != NULL; bl = bl->next)
|
|
|
|
{
|
|
|
|
Binding b;
|
2006-07-02 13:03:57 +01:00
|
|
|
|
2006-07-02 13:51:19 +01:00
|
|
|
b = (Binding) bl->data;
|
|
|
|
if (!b->blocked)
|
2006-07-02 13:03:57 +01:00
|
|
|
{
|
2006-07-02 13:51:19 +01:00
|
|
|
// if the binding is not done (class choice) we might
|
|
|
|
// still show it somewhere.
|
|
|
|
if (b->done)
|
2006-07-02 13:03:57 +01:00
|
|
|
{
|
2006-07-02 13:51:19 +01:00
|
|
|
if (b->run_to == run && b->ev_to == ev)
|
2006-07-02 13:03:57 +01:00
|
|
|
{
|
2006-07-02 13:51:19 +01:00
|
|
|
if (sys->runs[b->run_from].role != I_M)
|
2006-07-02 13:03:57 +01:00
|
|
|
{
|
2006-07-02 13:51:19 +01:00
|
|
|
return false;
|
2006-07-02 13:03:57 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2006-07-02 13:51:19 +01:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
//! Check whether the event is an M_0 function application (special case of the previous)
|
|
|
|
int
|
|
|
|
isApplicationM0 (const System sys, const int run)
|
|
|
|
{
|
|
|
|
if (sys->runs[run].length > 1)
|
|
|
|
{
|
|
|
|
if (isApplication (sys, run))
|
2006-07-02 13:03:57 +01:00
|
|
|
{
|
2008-08-26 12:22:55 +01:00
|
|
|
if (isEnabledM0 (sys, run, 0))
|
2006-07-02 13:51:19 +01:00
|
|
|
{
|
2008-08-26 12:22:55 +01:00
|
|
|
if (isEnabledM0 (sys, run, 1))
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
2006-07-02 13:51:19 +01:00
|
|
|
}
|
2006-07-02 13:03:57 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2006-02-26 15:00:58 +00:00
|
|
|
//! Determine ranks for all nodes
|
|
|
|
/**
|
|
|
|
* Some crude algorithm I sketched on the blackboard.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
graph_ranks (int *ranks, int nodes)
|
|
|
|
{
|
2006-05-26 12:27:05 +01:00
|
|
|
int done;
|
2006-02-26 15:00:58 +00:00
|
|
|
int rank;
|
2006-05-26 12:27:05 +01:00
|
|
|
int changes;
|
|
|
|
|
|
|
|
int getrank (int run, int ev)
|
|
|
|
{
|
|
|
|
return ranks[eventNode (run, ev)];
|
|
|
|
}
|
|
|
|
|
|
|
|
void setrank (int run, int ev, int rank)
|
|
|
|
{
|
|
|
|
ranks[eventNode (run, ev)] = rank;
|
|
|
|
}
|
2006-02-26 15:00:58 +00:00
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
if (hasCycle ())
|
|
|
|
{
|
|
|
|
error ("Graph ranks tried, but a cycle exists!");
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2006-05-26 12:27:05 +01:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < nodes; i++)
|
|
|
|
{
|
|
|
|
ranks[i] = INT_MAX;
|
|
|
|
}
|
|
|
|
}
|
2006-02-26 15:00:58 +00:00
|
|
|
|
|
|
|
rank = 0;
|
2006-05-26 12:27:05 +01:00
|
|
|
done = false;
|
|
|
|
changes = true;
|
|
|
|
while (!done)
|
2006-02-26 15:00:58 +00:00
|
|
|
{
|
2006-05-26 12:27:05 +01:00
|
|
|
int checkCanEventHappenNow (int run, Roledef rd, int ev)
|
|
|
|
{
|
|
|
|
//if (sys->runs[run].protocol != INTRUDER)
|
2006-02-26 15:00:58 +00:00
|
|
|
{
|
2006-05-26 12:27:05 +01:00
|
|
|
if (getrank (run, ev) == INT_MAX)
|
2006-02-26 15:00:58 +00:00
|
|
|
{
|
2006-05-26 12:27:05 +01:00
|
|
|
// Allright, this regular event is not assigned yet
|
|
|
|
int precevent (int run2, int ev2)
|
|
|
|
{
|
|
|
|
//if (sys->runs[run2].protocol != INTRUDER)
|
|
|
|
{
|
|
|
|
// regular preceding event
|
|
|
|
int rank2;
|
|
|
|
|
|
|
|
rank2 = getrank (run2, ev2);
|
|
|
|
if (rank2 > rank)
|
|
|
|
{
|
|
|
|
// higher rank, this cannot be done
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (rank2 == rank)
|
|
|
|
{
|
|
|
|
// equal rank: only if different run
|
|
|
|
if ((sys->runs[run].protocol != INTRUDER)
|
|
|
|
&& (run2 == run))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
2006-02-26 15:00:58 +00:00
|
|
|
|
2006-05-26 12:27:05 +01:00
|
|
|
if (iteratePrecedingEvents (sys, precevent, run, ev))
|
2006-02-26 15:00:58 +00:00
|
|
|
{
|
2006-05-26 12:27:05 +01:00
|
|
|
// we can do it!
|
|
|
|
changes = true;
|
|
|
|
setrank (run, ev, rank);
|
2006-02-26 15:00:58 +00:00
|
|
|
}
|
2006-05-26 12:27:05 +01:00
|
|
|
else
|
2006-02-26 15:00:58 +00:00
|
|
|
{
|
2006-05-26 12:27:05 +01:00
|
|
|
done = false;
|
2006-02-26 15:00:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2006-05-26 12:27:05 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (!changes)
|
|
|
|
{
|
|
|
|
rank++;
|
|
|
|
if (rank >= nodes)
|
|
|
|
{
|
|
|
|
warning ("Rank %i increased to the number of nodes %i.", rank,
|
|
|
|
nodes);
|
|
|
|
return rank;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
done = true;
|
|
|
|
changes = false;
|
|
|
|
iterateAllEvents (sys, checkCanEventHappenNow);
|
2006-02-26 15:00:58 +00:00
|
|
|
}
|
|
|
|
return rank;
|
|
|
|
}
|
|
|
|
|
2006-05-26 10:39:10 +01:00
|
|
|
//! Display the ranks
|
|
|
|
/**
|
|
|
|
* Reinstated after it had been gone for a while
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
showRanks (const System sys, const int maxrank, const int *ranks,
|
|
|
|
const int nodes)
|
|
|
|
{
|
|
|
|
int rank;
|
|
|
|
|
2006-05-26 12:27:05 +01:00
|
|
|
//return;
|
2006-05-26 10:39:10 +01:00
|
|
|
|
|
|
|
for (rank = 0; rank <= maxrank; rank++)
|
|
|
|
{
|
|
|
|
int found;
|
|
|
|
int run;
|
|
|
|
|
|
|
|
found = 0;
|
|
|
|
for (run = 0; run < sys->maxruns; run++)
|
|
|
|
{
|
|
|
|
if (sys->runs[run].protocol != INTRUDER)
|
|
|
|
{
|
|
|
|
int ev;
|
|
|
|
|
|
|
|
for (ev = 0; ev < sys->runs[run].step; ev++)
|
|
|
|
{
|
2006-05-26 12:27:05 +01:00
|
|
|
if (!isEventIgnored (sys, run, ev))
|
2006-05-26 10:39:10 +01:00
|
|
|
{
|
2006-05-26 12:27:05 +01:00
|
|
|
|
|
|
|
int n;
|
|
|
|
|
|
|
|
n = eventNode (run, ev);
|
|
|
|
if (ranks[n] == rank)
|
2006-05-26 10:39:10 +01:00
|
|
|
{
|
2006-05-26 12:27:05 +01:00
|
|
|
if (found == 0)
|
|
|
|
{
|
|
|
|
eprintf ("\t{ rank = same; ");
|
|
|
|
}
|
|
|
|
node (sys, run, ev);
|
|
|
|
eprintf ("; ");
|
|
|
|
found++;
|
2006-05-26 10:39:10 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (found > 0)
|
|
|
|
{
|
|
|
|
eprintf ("}\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2006-02-26 15:00:58 +00:00
|
|
|
|
2006-03-15 21:30:19 +00:00
|
|
|
//! Does a term occur in a run?
|
|
|
|
int
|
|
|
|
termOccursInRun (Term t, int run)
|
|
|
|
{
|
|
|
|
Roledef rd;
|
|
|
|
int e;
|
|
|
|
|
|
|
|
rd = sys->runs[run].start;
|
|
|
|
e = 0;
|
|
|
|
while (e < sys->runs[run].step)
|
|
|
|
{
|
|
|
|
if (roledefSubTerm (rd, t))
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
e++;
|
|
|
|
rd = rd->next;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2006-03-14 11:37:28 +00:00
|
|
|
//! Draw a class choice
|
|
|
|
/**
|
|
|
|
* \rho classes are already dealt with in the headers, so we should ignore them.
|
|
|
|
*/
|
2006-01-02 20:18:47 +00:00
|
|
|
void
|
2006-03-14 11:37:28 +00:00
|
|
|
drawClass (const System sys, Binding b)
|
2006-01-02 20:18:47 +00:00
|
|
|
{
|
2006-03-14 11:37:28 +00:00
|
|
|
Term varterm;
|
2006-01-02 20:18:47 +00:00
|
|
|
|
2006-03-14 11:37:28 +00:00
|
|
|
// now check in previous things whether we saw that term already
|
|
|
|
int notSameTerm (Binding b2)
|
|
|
|
{
|
|
|
|
return (!isTermEqual (varterm, b2->term));
|
|
|
|
}
|
|
|
|
|
|
|
|
varterm = deVar (b->term);
|
|
|
|
|
|
|
|
// Variable?
|
|
|
|
if (!isTermVariable (varterm))
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Agent variable?
|
|
|
|
{
|
|
|
|
int run;
|
|
|
|
|
|
|
|
run = TermRunid (varterm);
|
|
|
|
if ((run >= 0) && (run < sys->maxruns))
|
|
|
|
{
|
2006-03-15 21:30:19 +00:00
|
|
|
if (inTermlist (sys->runs[run].rho, varterm))
|
2006-03-14 11:37:28 +00:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Seen before?
|
|
|
|
if (!iterate_preceding_bindings (b->run_to, b->ev_to, notSameTerm))
|
2006-01-02 20:18:47 +00:00
|
|
|
{
|
2006-03-14 11:37:28 +00:00
|
|
|
// We saw the same term before. Exit.
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// not seen before: choose class
|
|
|
|
eprintf ("\t");
|
|
|
|
chooseTermNode (varterm);
|
2006-03-20 09:40:45 +00:00
|
|
|
eprintf (" [label=\"");
|
|
|
|
explainVariable (varterm);
|
2006-03-14 11:37:28 +00:00
|
|
|
eprintf ("\"];\n");
|
|
|
|
eprintf ("\t");
|
|
|
|
chooseTermNode (varterm);
|
|
|
|
eprintf (" -> ");
|
|
|
|
node (sys, b->run_to, b->ev_to);
|
2006-05-26 10:39:10 +01:00
|
|
|
eprintf (" [weight=\"%s\",arrowhead=\"none\",style=\"dotted\"];\n",
|
|
|
|
CHOOSEWEIGHT);
|
2006-03-14 11:37:28 +00:00
|
|
|
}
|
|
|
|
|
2006-03-20 09:40:45 +00:00
|
|
|
//! Print label of a regular->regular transition node (when comm. is not exact)
|
|
|
|
/**
|
|
|
|
* Note that we ignore any label differences, these are left implicit
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
regularModifiedLabel (Binding b)
|
|
|
|
{
|
|
|
|
Roledef rdfrom;
|
|
|
|
Roledef rdto;
|
2006-07-02 14:10:46 +01:00
|
|
|
int unknown;
|
2006-03-20 09:40:45 +00:00
|
|
|
|
|
|
|
rdfrom = eventRoledef (sys, b->run_from, b->ev_from);
|
|
|
|
rdto = eventRoledef (sys, b->run_to, b->ev_to);
|
2006-07-02 14:10:46 +01:00
|
|
|
unknown = true;
|
2006-03-20 09:40:45 +00:00
|
|
|
|
2006-07-02 14:10:46 +01:00
|
|
|
// First up: compare messages contents': what was sent, what is needed
|
2006-03-20 09:40:45 +00:00
|
|
|
if (!isTermEqual (rdfrom->message, b->term))
|
|
|
|
{
|
|
|
|
// What is sent is not equal to what is bound
|
|
|
|
if (termInTerm (rdfrom->message, b->term))
|
|
|
|
{
|
|
|
|
// Interm: simple select
|
2006-07-02 14:10:46 +01:00
|
|
|
unknown = false;
|
2006-03-20 09:40:45 +00:00
|
|
|
eprintf ("select ");
|
2006-03-20 09:54:45 +00:00
|
|
|
termPrintRemap (b->term);
|
2006-03-20 09:40:45 +00:00
|
|
|
eprintf ("\\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Second: agent things
|
|
|
|
if (!isTermEqual (rdfrom->from, rdto->from))
|
|
|
|
{
|
2006-07-02 14:10:46 +01:00
|
|
|
unknown = false;
|
2006-03-20 09:40:45 +00:00
|
|
|
eprintf ("fake sender ");
|
2006-03-20 09:54:45 +00:00
|
|
|
termPrintRemap (rdto->from);
|
2006-03-20 09:40:45 +00:00
|
|
|
eprintf ("\\n");
|
|
|
|
}
|
|
|
|
if (!isTermEqual (rdfrom->to, rdto->to))
|
|
|
|
{
|
2006-07-02 14:10:46 +01:00
|
|
|
unknown = false;
|
2006-03-20 09:40:45 +00:00
|
|
|
eprintf ("redirect to ");
|
2006-03-20 09:54:45 +00:00
|
|
|
termPrintRemap (rdto->to);
|
2006-03-20 09:40:45 +00:00
|
|
|
eprintf ("\\n");
|
|
|
|
}
|
2006-07-02 14:10:46 +01:00
|
|
|
|
|
|
|
// Any leftovers for which I don't have a good name yet.
|
|
|
|
if (unknown)
|
|
|
|
{
|
|
|
|
// I'm not quite sure, we call it 'combine' for now. TODO
|
|
|
|
eprintf ("combine\\n");
|
|
|
|
}
|
2006-03-20 09:40:45 +00:00
|
|
|
}
|
|
|
|
|
2006-03-14 11:37:28 +00:00
|
|
|
//! Draw a single binding
|
|
|
|
void
|
|
|
|
drawBinding (const System sys, Binding b)
|
|
|
|
{
|
2006-07-02 13:51:19 +01:00
|
|
|
int intr_to, intr_from, m0_from;
|
|
|
|
|
|
|
|
void myarrow (const Binding b)
|
|
|
|
{
|
|
|
|
if (m0_from)
|
|
|
|
{
|
|
|
|
eprintf ("\t");
|
|
|
|
intruderNodeM0 ();
|
|
|
|
eprintf (" -> ");
|
|
|
|
node (sys, b->run_to, b->ev_to);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
arrow (sys, b);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2006-03-14 11:37:28 +00:00
|
|
|
|
|
|
|
intr_from = (sys->runs[b->run_from].protocol == INTRUDER);
|
|
|
|
intr_to = (sys->runs[b->run_to].protocol == INTRUDER);
|
2006-07-02 13:51:19 +01:00
|
|
|
m0_from = false;
|
2006-03-14 11:37:28 +00:00
|
|
|
|
2006-07-02 13:03:57 +01:00
|
|
|
// Pruning: things going to M0 applications are pruned;
|
|
|
|
if (isApplicationM0 (sys, b->run_to))
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
2006-07-02 14:38:20 +01:00
|
|
|
if (isApplicationM0 (sys, b->run_from) ||
|
|
|
|
sys->runs[b->run_from].role == I_M)
|
2006-07-02 13:03:57 +01:00
|
|
|
{
|
2006-07-02 13:51:19 +01:00
|
|
|
m0_from = true;
|
2006-07-02 13:03:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Normal drawing cases;
|
2006-03-14 11:37:28 +00:00
|
|
|
if (intr_from)
|
|
|
|
{
|
|
|
|
// from intruder
|
|
|
|
/*
|
|
|
|
* Because this can be generated many times, it seems
|
|
|
|
* reasonable to not duplicate such arrows, especially when
|
|
|
|
* they're from M_0. Maybe the others are still relevant.
|
|
|
|
*/
|
|
|
|
if (1 == 1 || sys->runs[b->run_from].role == I_M)
|
2006-01-02 20:18:47 +00:00
|
|
|
{
|
2006-03-14 11:37:28 +00:00
|
|
|
// now check in previous things whether we saw that term already
|
|
|
|
int notSameTerm (Binding b2)
|
|
|
|
{
|
|
|
|
return (!isTermEqual (b->term, b2->term));
|
|
|
|
}
|
2006-01-02 20:18:47 +00:00
|
|
|
|
2006-03-14 11:37:28 +00:00
|
|
|
if (!iterate_preceding_bindings (b->run_to, b->ev_to, notSameTerm))
|
2006-01-02 20:18:47 +00:00
|
|
|
{
|
2006-03-14 11:37:28 +00:00
|
|
|
// We saw the same term before. Exit.
|
|
|
|
return;
|
2006-01-02 20:18:47 +00:00
|
|
|
}
|
2006-03-14 11:37:28 +00:00
|
|
|
}
|
2006-01-02 20:18:47 +00:00
|
|
|
|
2006-07-02 14:38:20 +01:00
|
|
|
// normal from intruder, not seen before (might be M_0)
|
2006-03-14 11:37:28 +00:00
|
|
|
if (intr_to)
|
|
|
|
{
|
|
|
|
// intr->intr
|
|
|
|
eprintf ("\t");
|
2006-07-02 13:51:19 +01:00
|
|
|
myarrow (b);
|
2006-03-14 11:37:28 +00:00
|
|
|
eprintf (" [label=\"");
|
2006-03-15 21:30:19 +00:00
|
|
|
termPrintRemap (b->term);
|
2006-07-02 14:38:20 +01:00
|
|
|
eprintf ("\"");
|
|
|
|
if (m0_from)
|
|
|
|
{
|
|
|
|
eprintf (",weight=\"10.0\"");
|
|
|
|
}
|
|
|
|
eprintf ("]");
|
2006-03-14 11:37:28 +00:00
|
|
|
eprintf (";\n");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// intr->regular
|
|
|
|
eprintf ("\t");
|
2006-07-02 13:51:19 +01:00
|
|
|
myarrow (b);
|
2006-07-02 14:38:20 +01:00
|
|
|
if (m0_from)
|
|
|
|
{
|
|
|
|
eprintf ("[weight=\"0.5\"]");
|
|
|
|
}
|
2006-03-14 11:37:28 +00:00
|
|
|
eprintf (";\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// not from intruder
|
|
|
|
if (intr_to)
|
|
|
|
{
|
|
|
|
// regular->intr
|
|
|
|
eprintf ("\t");
|
2006-07-02 13:51:19 +01:00
|
|
|
myarrow (b);
|
2006-03-14 11:37:28 +00:00
|
|
|
eprintf (";\n");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// regular->regular
|
|
|
|
/*
|
|
|
|
* Has this been done *exactly* as we hoped?
|
|
|
|
*/
|
|
|
|
if (isCommunicationExact (sys, b))
|
2006-01-02 20:18:47 +00:00
|
|
|
{
|
2006-03-14 11:37:28 +00:00
|
|
|
eprintf ("\t");
|
2006-07-02 13:51:19 +01:00
|
|
|
myarrow (b);
|
2006-03-14 11:37:28 +00:00
|
|
|
eprintf (" [style=bold,color=\"%s\"]", GOODCOMMCOLOR);
|
|
|
|
eprintf (";\n");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Something was changed, so we call this a redirect
|
|
|
|
eprintf ("\t");
|
|
|
|
node (sys, b->run_from, b->ev_from);
|
|
|
|
eprintf (" -> ");
|
|
|
|
redirNode (sys, b);
|
|
|
|
eprintf (" -> ");
|
|
|
|
node (sys, b->run_to, b->ev_to);
|
|
|
|
eprintf (";\n");
|
|
|
|
|
|
|
|
eprintf ("\t");
|
|
|
|
redirNode (sys, b);
|
|
|
|
eprintf (" [style=filled,fillcolor=\"");
|
|
|
|
printColor (INTRUDERCOLORH, INTRUDERCOLORL, INTRUDERCOLORS);
|
2006-03-20 09:40:45 +00:00
|
|
|
eprintf ("\",label=\"");
|
|
|
|
regularModifiedLabel (b);
|
2006-03-14 11:37:28 +00:00
|
|
|
eprintf ("\"]");
|
|
|
|
eprintf (";\n");
|
2006-01-02 20:18:47 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-03-14 11:37:28 +00:00
|
|
|
//! Draw dependecies (including intruder!)
|
|
|
|
/**
|
2006-03-20 09:54:45 +00:00
|
|
|
* Returns from_intruder_count (from M_0)
|
2006-03-14 11:37:28 +00:00
|
|
|
*/
|
|
|
|
int
|
|
|
|
drawAllBindings (const System sys)
|
2006-01-02 20:18:47 +00:00
|
|
|
{
|
2006-03-14 11:37:28 +00:00
|
|
|
List bl;
|
2008-01-16 10:55:15 +00:00
|
|
|
List bldone;
|
2006-03-14 11:37:28 +00:00
|
|
|
int fromintr;
|
2006-01-02 20:18:47 +00:00
|
|
|
|
2008-01-16 10:55:15 +00:00
|
|
|
bldone = NULL;
|
2006-03-14 11:37:28 +00:00
|
|
|
fromintr = 0;
|
|
|
|
for (bl = sys->bindings; bl != NULL; bl = bl->next)
|
2006-01-02 20:18:47 +00:00
|
|
|
{
|
2006-03-14 11:37:28 +00:00
|
|
|
Binding b;
|
2006-01-02 20:18:47 +00:00
|
|
|
|
2006-03-14 11:37:28 +00:00
|
|
|
b = (Binding) bl->data;
|
|
|
|
if (!b->blocked)
|
|
|
|
{
|
|
|
|
// if the binding is not done (class choice) we might
|
|
|
|
// still show it somewhere.
|
|
|
|
if (b->done)
|
2006-01-02 20:18:47 +00:00
|
|
|
{
|
2008-01-16 10:55:15 +00:00
|
|
|
// Check whether we already drew it
|
|
|
|
List bl2;
|
|
|
|
int drawn;
|
|
|
|
|
|
|
|
drawn = false;
|
|
|
|
for (bl2 = bldone; bl2 != NULL; bl2 = bl2->next)
|
|
|
|
{
|
|
|
|
if (same_binding (b, (Binding) bl2->data))
|
|
|
|
{
|
|
|
|
drawn = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!drawn)
|
2006-01-02 20:18:47 +00:00
|
|
|
{
|
2008-01-16 10:55:15 +00:00
|
|
|
// done, draw
|
|
|
|
drawBinding (sys, b);
|
|
|
|
|
|
|
|
// from intruder?
|
|
|
|
if (sys->runs[b->run_from].protocol == INTRUDER)
|
2006-03-20 09:54:45 +00:00
|
|
|
{
|
2008-01-16 10:55:15 +00:00
|
|
|
if (sys->runs[b->run_from].role == I_M)
|
|
|
|
{
|
|
|
|
fromintr++;
|
|
|
|
}
|
2006-03-20 09:54:45 +00:00
|
|
|
}
|
2008-01-16 10:55:15 +00:00
|
|
|
// Add to drawn list
|
|
|
|
bldone = list_add (bldone, b);
|
2006-01-02 20:18:47 +00:00
|
|
|
}
|
|
|
|
}
|
2006-03-14 11:37:28 +00:00
|
|
|
else
|
2006-01-02 20:18:47 +00:00
|
|
|
{
|
2006-03-14 11:37:28 +00:00
|
|
|
drawClass (sys, b);
|
2006-01-02 20:18:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2008-01-16 10:55:15 +00:00
|
|
|
list_destroy (bldone); // bindings list
|
2006-03-14 11:37:28 +00:00
|
|
|
return fromintr;
|
2006-01-02 20:18:47 +00:00
|
|
|
}
|
|
|
|
|
2006-05-26 10:39:10 +01:00
|
|
|
//! Print "Alice in role R" of a run
|
|
|
|
void
|
|
|
|
printAgentInRole (const System sys, const int run)
|
|
|
|
{
|
|
|
|
Term rolename;
|
|
|
|
Term agentname;
|
|
|
|
|
|
|
|
rolename = sys->runs[run].role->nameterm;
|
|
|
|
agentname = agentOfRunRole (sys, run, rolename);
|
|
|
|
explainVariable (agentname);
|
|
|
|
eprintf (" in role ");
|
|
|
|
termPrintRemap (rolename);
|
|
|
|
}
|
|
|
|
|
|
|
|
//! rho, sigma, const
|
|
|
|
/*
|
|
|
|
* true if it has printed
|
|
|
|
*/
|
|
|
|
int
|
2006-05-26 13:34:37 +01:00
|
|
|
showLocal (const int run, Term told, Term tnew, char *prefix, char *cursep)
|
2006-05-26 10:39:10 +01:00
|
|
|
{
|
|
|
|
if (realTermVariable (tnew))
|
|
|
|
{
|
|
|
|
if (termOccursInRun (tnew, run))
|
|
|
|
{
|
2012-04-25 08:53:07 +01:00
|
|
|
// Variables are mapped, maybe. But then we wonder whether they occur in recvs.
|
2006-05-26 13:34:37 +01:00
|
|
|
eprintf (cursep);
|
|
|
|
eprintf (prefix);
|
2006-05-26 10:39:10 +01:00
|
|
|
termPrintRemap (told);
|
2006-05-26 13:34:37 +01:00
|
|
|
eprintf (" -\\> ");
|
2006-05-26 10:39:10 +01:00
|
|
|
explainVariable (tnew);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-07-03 00:44:18 +01:00
|
|
|
eprintf (cursep);
|
2006-05-26 13:34:37 +01:00
|
|
|
eprintf (prefix);
|
2006-05-26 10:39:10 +01:00
|
|
|
termPrintRemap (tnew);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//! show a list of locals
|
|
|
|
/**
|
2006-05-26 13:34:37 +01:00
|
|
|
* never ends with the seperator
|
2006-05-26 10:39:10 +01:00
|
|
|
*/
|
|
|
|
int
|
2006-05-26 12:27:05 +01:00
|
|
|
showLocals (const int run, Termlist tlold, Termlist tlnew,
|
2006-05-26 13:34:37 +01:00
|
|
|
Term tavoid, char *prefix, char *sep)
|
2006-05-26 10:39:10 +01:00
|
|
|
{
|
|
|
|
int anything;
|
2006-05-26 13:34:37 +01:00
|
|
|
char *cursep;
|
2006-05-26 10:39:10 +01:00
|
|
|
|
2006-05-26 13:34:37 +01:00
|
|
|
cursep = "";
|
2006-05-26 10:39:10 +01:00
|
|
|
anything = false;
|
|
|
|
while (tlold != NULL && tlnew != NULL)
|
|
|
|
{
|
|
|
|
if (!isTermEqual (tlold->term, tavoid))
|
|
|
|
{
|
2006-05-26 13:34:37 +01:00
|
|
|
if (showLocal (run, tlold->term, tlnew->term, prefix, cursep))
|
2006-05-26 10:39:10 +01:00
|
|
|
{
|
2006-05-26 13:34:37 +01:00
|
|
|
cursep = sep;
|
2006-05-26 10:39:10 +01:00
|
|
|
anything = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
tlold = tlold->next;
|
|
|
|
tlnew = tlnew->next;
|
|
|
|
}
|
|
|
|
return anything;
|
|
|
|
}
|
|
|
|
|
|
|
|
//! Explain the local constants
|
|
|
|
/**
|
|
|
|
* Return true iff something was printed
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
printRunConstants (const System sys, const int run)
|
|
|
|
{
|
|
|
|
if (sys->runs[run].constants != NULL)
|
|
|
|
{
|
2012-07-12 11:13:36 +01:00
|
|
|
eprintf ("Fresh ");
|
2010-11-10 23:08:09 +00:00
|
|
|
showLocals (run, sys->runs[run].role->declaredconsts,
|
|
|
|
sys->runs[run].constants, NULL, "", ", ");
|
2006-05-26 10:39:10 +01:00
|
|
|
eprintf ("\\l");
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//! Explain a run in two lines
|
|
|
|
void
|
2006-05-26 12:27:05 +01:00
|
|
|
printRunExplanation (const System sys, const int run,
|
2006-08-02 10:46:57 +01:00
|
|
|
char *runrolesep, char *newline)
|
2006-05-26 10:39:10 +01:00
|
|
|
{
|
|
|
|
int hadcontent;
|
|
|
|
|
|
|
|
eprintf ("Run ");
|
2006-12-05 10:10:17 +00:00
|
|
|
printVisualRunID (run);
|
2006-05-26 10:39:10 +01:00
|
|
|
|
|
|
|
eprintf (runrolesep);
|
|
|
|
// Print first line
|
|
|
|
printAgentInRole (sys, run);
|
|
|
|
eprintf ("\\l");
|
|
|
|
|
|
|
|
// Second line
|
|
|
|
// Possible protocol (if more than one)
|
|
|
|
{
|
|
|
|
int showprotocol;
|
|
|
|
Protocol p;
|
|
|
|
int morethanone;
|
|
|
|
|
|
|
|
// Simple case: don't show
|
|
|
|
showprotocol = false;
|
|
|
|
|
|
|
|
// Check whether the protocol spec has more than one
|
|
|
|
morethanone = false;
|
|
|
|
for (p = sys->protocols; p != NULL; p = p->next)
|
|
|
|
{
|
|
|
|
if (p != INTRUDER)
|
|
|
|
{
|
|
|
|
if (p != sys->runs[run].protocol)
|
|
|
|
{
|
|
|
|
morethanone = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// More than one?
|
|
|
|
if (morethanone)
|
|
|
|
{
|
2006-05-26 13:34:37 +01:00
|
|
|
// This used to work for run 0 always...
|
|
|
|
//if (run == 0)
|
|
|
|
if (false)
|
2006-05-26 10:39:10 +01:00
|
|
|
{
|
|
|
|
// If this is run 0 we report the protocol anyway, even is there is only a single one in the attack
|
|
|
|
showprotocol = true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
int r;
|
|
|
|
// For other runs we only report when there are multiple protocols
|
|
|
|
showprotocol = false;
|
|
|
|
for (r = 0; r < sys->maxruns; r++)
|
|
|
|
{
|
|
|
|
if (sys->runs[r].protocol != INTRUDER)
|
|
|
|
{
|
|
|
|
if (sys->runs[r].protocol != sys->runs[run].protocol)
|
|
|
|
{
|
|
|
|
showprotocol = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Use the result
|
|
|
|
if (showprotocol)
|
|
|
|
{
|
|
|
|
eprintf ("Protocol ");
|
|
|
|
termPrintRemap (sys->runs[run].protocol->nameterm);
|
|
|
|
eprintf ("\\l");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
eprintf (newline);
|
|
|
|
hadcontent = false;
|
|
|
|
|
2006-05-26 13:34:37 +01:00
|
|
|
{
|
|
|
|
/*
|
|
|
|
* Originally, we ignored the actor in the rho list, but for more than two-party protocols, this was unclear.
|
|
|
|
*/
|
|
|
|
int numroles;
|
|
|
|
int ignoreactor;
|
|
|
|
|
|
|
|
ignoreactor = false; // set to true to ignore the actor
|
|
|
|
numroles = termlistLength (sys->runs[run].rho);
|
|
|
|
|
|
|
|
if (numroles > 1)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
Term ignoreterm;
|
|
|
|
|
|
|
|
if (ignoreactor)
|
|
|
|
{
|
|
|
|
ignoreterm = sys->runs[run].role->nameterm;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ignoreterm = NULL;
|
|
|
|
}
|
2010-11-10 23:08:09 +00:00
|
|
|
hadcontent =
|
|
|
|
showLocals (run, sys->runs[run].protocol->rolenames,
|
|
|
|
sys->runs[run].rho, ignoreterm, "", "\\l");
|
2006-05-26 13:34:37 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2006-05-26 10:39:10 +01:00
|
|
|
|
|
|
|
if (hadcontent)
|
|
|
|
{
|
2006-05-26 13:34:37 +01:00
|
|
|
eprintf ("\\l");
|
2006-05-26 10:39:10 +01:00
|
|
|
eprintf (newline);
|
|
|
|
hadcontent = false;
|
|
|
|
}
|
|
|
|
hadcontent = printRunConstants (sys, run);
|
|
|
|
|
|
|
|
if (sys->runs[run].sigma != NULL)
|
|
|
|
{
|
|
|
|
if (hadcontent)
|
|
|
|
{
|
|
|
|
eprintf (newline);
|
|
|
|
hadcontent = false;
|
|
|
|
}
|
2010-11-10 23:08:09 +00:00
|
|
|
if (showLocals
|
|
|
|
(run, sys->runs[run].role->declaredvars, sys->runs[run].sigma, NULL,
|
|
|
|
"Var ", "\\l"))
|
2006-05-26 13:34:37 +01:00
|
|
|
{
|
|
|
|
eprintf ("\\l");
|
|
|
|
}
|
2006-05-26 10:39:10 +01:00
|
|
|
}
|
|
|
|
}
|
2006-03-14 11:37:28 +00:00
|
|
|
|
|
|
|
//! Draw regular runs
|
2006-03-08 15:12:58 +00:00
|
|
|
void
|
2006-03-14 11:37:28 +00:00
|
|
|
drawRegularRuns (const System sys)
|
2006-03-08 15:12:58 +00:00
|
|
|
{
|
|
|
|
int run;
|
2006-03-14 11:37:28 +00:00
|
|
|
int rcnum;
|
|
|
|
char *colorbuf;
|
2005-12-27 11:50:46 +00:00
|
|
|
|
2006-03-14 11:37:28 +00:00
|
|
|
// two buffers, eight chars each
|
|
|
|
colorbuf = malloc (16 * sizeof (char));
|
2005-12-27 11:50:46 +00:00
|
|
|
|
2006-03-14 11:37:28 +00:00
|
|
|
rcnum = 0;
|
|
|
|
for (run = 0; run < sys->maxruns; run++)
|
|
|
|
{
|
|
|
|
if (sys->runs[run].length > 0)
|
2005-12-27 11:50:46 +00:00
|
|
|
{
|
2006-03-14 11:37:28 +00:00
|
|
|
if (sys->runs[run].protocol != INTRUDER)
|
|
|
|
{
|
|
|
|
Roledef rd;
|
|
|
|
int index;
|
|
|
|
int prevnode;
|
2011-01-21 16:40:10 +00:00
|
|
|
int firstnode;
|
2006-03-14 11:37:28 +00:00
|
|
|
|
|
|
|
rd = sys->runs[run].start;
|
|
|
|
// Regular run
|
|
|
|
|
2006-05-26 10:39:10 +01:00
|
|
|
if (switches.clusters)
|
|
|
|
{
|
|
|
|
eprintf ("\tsubgraph cluster_run%i {\n", run);
|
|
|
|
|
|
|
|
eprintf ("\t\tstyle=filled;\n");
|
|
|
|
eprintf ("\t\tcolor=lightgrey;\n");
|
|
|
|
|
|
|
|
eprintf ("\t\tlabel=\"");
|
|
|
|
printRunExplanation (sys, run, " : ", "");
|
|
|
|
eprintf ("\";\n\n");
|
|
|
|
}
|
2005-12-27 11:50:46 +00:00
|
|
|
|
2006-03-14 11:37:28 +00:00
|
|
|
// set color
|
|
|
|
setRunColorBuf (sys, run, colorbuf);
|
2005-12-27 11:50:46 +00:00
|
|
|
|
2006-03-14 11:37:28 +00:00
|
|
|
// Display the respective events
|
2011-01-21 16:40:10 +00:00
|
|
|
prevnode = 0;
|
|
|
|
firstnode = true;
|
|
|
|
for (index = 0; index < sys->runs[run].length; index++)
|
2005-12-27 11:50:46 +00:00
|
|
|
{
|
2011-01-21 16:40:10 +00:00
|
|
|
/*
|
|
|
|
* invariant: prevnode has been drawn OR firstnode is true
|
|
|
|
*/
|
2006-05-26 12:27:05 +01:00
|
|
|
if (!isEventIgnored (sys, run, index))
|
2006-03-14 11:37:28 +00:00
|
|
|
{
|
|
|
|
// Print node itself
|
|
|
|
eprintf ("\t\t");
|
|
|
|
node (sys, run, index);
|
|
|
|
eprintf (" [");
|
|
|
|
if (run == 0 && index == sys->current_claim->ev)
|
|
|
|
{
|
|
|
|
// The claim under scrutiny
|
|
|
|
eprintf
|
|
|
|
("style=filled,fontcolor=\"%s\",fillcolor=\"%s\",shape=box,",
|
|
|
|
CLAIMTEXTCOLOR, CLAIMCOLOR);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
eprintf ("shape=box,style=filled,");
|
|
|
|
// print color of this run
|
|
|
|
eprintf ("fillcolor=\"%s\",", colorbuf);
|
|
|
|
}
|
|
|
|
eprintf ("label=\"");
|
|
|
|
//roledefPrintShort (rd);
|
|
|
|
roledefDraw (rd);
|
|
|
|
eprintf ("\"]");
|
|
|
|
eprintf (";\n");
|
|
|
|
|
|
|
|
// Print binding to previous node
|
2011-01-21 16:40:10 +00:00
|
|
|
if (firstnode == false)
|
2006-03-14 11:37:28 +00:00
|
|
|
{
|
2011-01-21 16:40:10 +00:00
|
|
|
// not the first node
|
2006-03-14 11:37:28 +00:00
|
|
|
eprintf ("\t\t");
|
|
|
|
node (sys, run, prevnode);
|
|
|
|
eprintf (" -> ");
|
|
|
|
node (sys, run, index);
|
2006-05-26 10:39:10 +01:00
|
|
|
eprintf (" [style=\"bold\", weight=\"%s\"]",
|
|
|
|
RUNWEIGHT);
|
2006-03-14 11:37:28 +00:00
|
|
|
eprintf (";\n");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-01-21 16:40:10 +00:00
|
|
|
// firstnode
|
|
|
|
if (!switches.clusters)
|
2005-12-27 11:50:46 +00:00
|
|
|
{
|
2011-01-21 16:40:10 +00:00
|
|
|
// Draw the first box (HEADER)
|
|
|
|
eprintf ("\t\ts%i [label=\"{ ", run);
|
|
|
|
|
|
|
|
printRunExplanation (sys, run, "\\l", "|");
|
|
|
|
// close up
|
|
|
|
eprintf ("}\", shape=record");
|
|
|
|
eprintf
|
|
|
|
(",style=filled,fillcolor=\"%s\"",
|
|
|
|
colorbuf + 8);
|
|
|
|
eprintf ("];\n");
|
|
|
|
eprintf ("\t\ts%i -> ", run);
|
|
|
|
node (sys, run, index);
|
|
|
|
eprintf
|
|
|
|
(" [style=bold, weight=\"%s\"];\n",
|
|
|
|
RUNWEIGHT);
|
2005-12-27 11:50:46 +00:00
|
|
|
}
|
2011-01-21 16:40:10 +00:00
|
|
|
firstnode = false;
|
2005-12-27 11:50:46 +00:00
|
|
|
}
|
2011-01-21 16:40:10 +00:00
|
|
|
prevnode = index;
|
2005-12-27 11:50:46 +00:00
|
|
|
}
|
2006-03-14 11:37:28 +00:00
|
|
|
rd = rd->next;
|
2005-12-27 11:50:46 +00:00
|
|
|
}
|
2006-05-26 10:39:10 +01:00
|
|
|
|
|
|
|
if (switches.clusters)
|
|
|
|
{
|
|
|
|
eprintf ("\t}\n");
|
|
|
|
}
|
2006-03-14 11:37:28 +00:00
|
|
|
|
2005-12-27 11:50:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2006-03-14 11:37:28 +00:00
|
|
|
free (colorbuf);
|
2006-03-08 15:12:58 +00:00
|
|
|
}
|
2005-12-27 11:50:46 +00:00
|
|
|
|
2006-03-14 11:37:28 +00:00
|
|
|
//! Draw intruder runs
|
2006-03-08 15:12:58 +00:00
|
|
|
void
|
2006-03-14 11:37:28 +00:00
|
|
|
drawIntruderRuns (const System sys)
|
2006-03-08 15:12:58 +00:00
|
|
|
{
|
2006-03-14 11:37:28 +00:00
|
|
|
int run;
|
2006-03-08 15:12:58 +00:00
|
|
|
|
2006-05-26 12:27:05 +01:00
|
|
|
if (switches.clusters)
|
|
|
|
{
|
|
|
|
//eprintf ("\tsubgraph cluster_intruder {\n");
|
|
|
|
eprintf ("\tsubgraph intr {\n");
|
|
|
|
eprintf ("\t\tlabel = \"Intruder\";\n");
|
|
|
|
eprintf ("\t\tcolor = red;\n");
|
|
|
|
}
|
|
|
|
|
2006-03-14 11:37:28 +00:00
|
|
|
for (run = 0; run < sys->maxruns; run++)
|
|
|
|
{
|
|
|
|
if (sys->runs[run].length > 0)
|
|
|
|
{
|
|
|
|
if (sys->runs[run].protocol == INTRUDER)
|
|
|
|
{
|
|
|
|
// Intruder run
|
2006-07-02 13:03:57 +01:00
|
|
|
if (sys->runs[run].role != I_M && !isApplicationM0 (sys, run))
|
2006-03-14 11:37:28 +00:00
|
|
|
{
|
2006-07-02 13:03:57 +01:00
|
|
|
// Not an M_0 run, and not an M0 function application, so we can draw it.
|
2006-03-14 11:37:28 +00:00
|
|
|
eprintf ("\t\t");
|
|
|
|
node (sys, run, 0);
|
|
|
|
eprintf (" [style=filled,fillcolor=\"");
|
|
|
|
printColor (INTRUDERCOLORH, INTRUDERCOLORL, INTRUDERCOLORS);
|
|
|
|
eprintf ("\",");
|
|
|
|
if (sys->runs[run].role == I_RRSD)
|
|
|
|
{
|
|
|
|
eprintf ("label=\"decrypt\"");
|
|
|
|
}
|
|
|
|
if (sys->runs[run].role == I_RRS)
|
|
|
|
{
|
|
|
|
// Distinguish function application
|
|
|
|
if (isTermFunctionName
|
|
|
|
(sys->runs[run].start->next->message))
|
|
|
|
{
|
|
|
|
eprintf ("label=\"apply\"");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
eprintf ("label=\"encrypt\"");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
eprintf ("];\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2006-05-26 12:27:05 +01:00
|
|
|
if (switches.clusters)
|
|
|
|
{
|
|
|
|
eprintf ("\t}\n\n");
|
|
|
|
}
|
2006-03-08 15:12:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//! Display the current semistate using dot output format.
|
|
|
|
/**
|
|
|
|
* This is not as nice as we would like it. Furthermore, the function is too big.
|
|
|
|
*/
|
|
|
|
void
|
2006-03-15 21:30:19 +00:00
|
|
|
dotSemiState (const System mysys)
|
2006-03-08 15:12:58 +00:00
|
|
|
{
|
|
|
|
static int attack_number = 0;
|
|
|
|
Protocol p;
|
|
|
|
int *ranks;
|
|
|
|
int maxrank;
|
|
|
|
int from_intruder_count;
|
|
|
|
int nodes;
|
|
|
|
|
2006-03-15 21:30:19 +00:00
|
|
|
sys = mysys;
|
|
|
|
|
2006-03-08 15:12:58 +00:00
|
|
|
// Open graph
|
|
|
|
attack_number++;
|
|
|
|
eprintf ("digraph semiState%i {\n", attack_number);
|
|
|
|
eprintf ("\tlabel = \"[Id %i] Protocol ", sys->attackid);
|
|
|
|
p = (Protocol) sys->current_claim->protocol;
|
2006-03-15 21:30:19 +00:00
|
|
|
termPrintRemap (p->nameterm);
|
2006-03-08 15:12:58 +00:00
|
|
|
eprintf (", role ");
|
2006-03-15 21:30:19 +00:00
|
|
|
termPrintRemap (sys->current_claim->rolename);
|
2006-03-08 15:12:58 +00:00
|
|
|
eprintf (", claim type ");
|
2006-03-15 21:30:19 +00:00
|
|
|
termPrintRemap (sys->current_claim->type);
|
2011-04-26 10:49:05 +01:00
|
|
|
// For debugging:
|
2013-06-19 20:50:49 +01:00
|
|
|
//eprintf (", cost %i", computeAttackCost (sys));
|
|
|
|
|
2006-03-08 15:12:58 +00:00
|
|
|
eprintf ("\";\n");
|
|
|
|
|
|
|
|
// Needed for the bindings later on: create graph
|
|
|
|
|
|
|
|
nodes = nodeCount ();
|
|
|
|
ranks = malloc (nodes * sizeof (int));
|
|
|
|
maxrank = graph_ranks (ranks, nodes); // determine ranks
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
2007-01-16 17:22:51 +00:00
|
|
|
if (DEBUGL (1))
|
|
|
|
{
|
|
|
|
// For debugging purposes, we also display an ASCII version of some stuff in the comments
|
|
|
|
printSemiState ();
|
|
|
|
// Even draw all dependencies for non-intruder runs
|
|
|
|
// Real nice debugging :(
|
|
|
|
int run;
|
2006-03-08 15:12:58 +00:00
|
|
|
|
2007-01-16 17:22:51 +00:00
|
|
|
run = 0;
|
|
|
|
while (run < sys->maxruns)
|
|
|
|
{
|
|
|
|
int ev;
|
2006-03-08 15:12:58 +00:00
|
|
|
|
2007-01-16 17:22:51 +00:00
|
|
|
ev = 0;
|
|
|
|
while (ev < sys->runs[run].length)
|
|
|
|
{
|
|
|
|
int run2;
|
|
|
|
int notfirstrun;
|
2006-03-08 15:12:58 +00:00
|
|
|
|
2007-01-16 17:22:51 +00:00
|
|
|
eprintf ("// precedence: r%ii%i <- ", run, ev);
|
|
|
|
run2 = 0;
|
|
|
|
notfirstrun = 0;
|
|
|
|
while (run2 < sys->maxruns)
|
|
|
|
{
|
|
|
|
int notfirstev;
|
|
|
|
int ev2;
|
2006-03-08 15:12:58 +00:00
|
|
|
|
2007-01-16 17:22:51 +00:00
|
|
|
notfirstev = 0;
|
|
|
|
ev2 = 0;
|
|
|
|
while (ev2 < sys->runs[run2].length)
|
|
|
|
{
|
|
|
|
if (isDependEvent (run2, ev2, run, ev))
|
|
|
|
{
|
|
|
|
if (notfirstev)
|
|
|
|
eprintf (",");
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (notfirstrun)
|
|
|
|
eprintf (" ");
|
|
|
|
eprintf ("r%i:", run2);
|
|
|
|
}
|
|
|
|
eprintf ("%i", ev2);
|
|
|
|
notfirstrun = 1;
|
|
|
|
notfirstev = 1;
|
|
|
|
}
|
|
|
|
ev2++;
|
|
|
|
}
|
|
|
|
run2++;
|
|
|
|
}
|
|
|
|
eprintf ("\n");
|
|
|
|
ev++;
|
|
|
|
}
|
|
|
|
run++;
|
|
|
|
}
|
|
|
|
}
|
2006-03-08 15:12:58 +00:00
|
|
|
#endif
|
2005-12-27 11:50:46 +00:00
|
|
|
|
2006-03-14 11:37:28 +00:00
|
|
|
// First, runs
|
|
|
|
drawRegularRuns (sys);
|
|
|
|
drawIntruderRuns (sys);
|
|
|
|
from_intruder_count = drawAllBindings (sys);
|
2005-12-27 11:50:46 +00:00
|
|
|
|
|
|
|
// Third, the intruder node (if needed)
|
2006-12-05 10:10:17 +00:00
|
|
|
{
|
|
|
|
/*
|
|
|
|
* Stupid brute analysis, can probably be done much more efficient, but
|
|
|
|
* this is not a timing critical bit, so we just do it like this.
|
|
|
|
*/
|
|
|
|
Termlist found;
|
|
|
|
List bl;
|
2006-11-30 16:16:37 +00:00
|
|
|
|
2006-12-05 10:10:17 +00:00
|
|
|
// collect the intruder-generated constants
|
|
|
|
found = NULL;
|
|
|
|
for (bl = sys->bindings; bl != NULL; bl = bl->next)
|
|
|
|
{
|
|
|
|
Binding b;
|
2006-11-30 16:16:37 +00:00
|
|
|
|
2006-12-05 10:10:17 +00:00
|
|
|
b = (Binding) bl->data;
|
|
|
|
if (!b->blocked)
|
|
|
|
{
|
|
|
|
int addsubterms (Term t)
|
2006-11-30 16:16:37 +00:00
|
|
|
{
|
2006-12-05 10:10:17 +00:00
|
|
|
if (isIntruderChoice (t))
|
2006-11-30 16:16:37 +00:00
|
|
|
{
|
2006-12-05 10:10:17 +00:00
|
|
|
found = termlistAddNew (found, t);
|
2006-11-30 16:16:37 +00:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2006-12-05 10:10:17 +00:00
|
|
|
term_iterate_open_leaves (b->term, addsubterms);
|
|
|
|
}
|
|
|
|
}
|
2006-11-30 16:16:37 +00:00
|
|
|
|
2006-12-05 10:10:17 +00:00
|
|
|
// now maybe we draw the node
|
|
|
|
if ((from_intruder_count > 0) || (found != NULL))
|
|
|
|
{
|
|
|
|
eprintf ("\tintruder [\n");
|
|
|
|
eprintf ("\t\tlabel=\"");
|
|
|
|
eprintf ("Initial intruder knowledge");
|
|
|
|
if (found != NULL)
|
|
|
|
{
|
|
|
|
eprintf ("\\n");
|
|
|
|
eprintf ("The intruder generates: ");
|
|
|
|
termlistPrintRemap (found, ", ");
|
|
|
|
}
|
|
|
|
eprintf ("\",\n");
|
|
|
|
eprintf ("\t\tstyle=filled,fillcolor=\"");
|
|
|
|
printColor (INTRUDERCOLORH, INTRUDERCOLORL, INTRUDERCOLORS);
|
|
|
|
eprintf ("\"\n\t];\n");
|
|
|
|
}
|
|
|
|
termlistDelete (found);
|
|
|
|
}
|
2006-11-30 16:16:37 +00:00
|
|
|
|
2006-03-14 11:37:28 +00:00
|
|
|
// eprintf ("\t};\n");
|
2005-12-27 11:50:46 +00:00
|
|
|
|
2006-02-26 15:00:58 +00:00
|
|
|
// For debugging we might add more stuff: full dependencies
|
|
|
|
#ifdef DEBUG
|
2006-03-15 21:30:19 +00:00
|
|
|
if (DEBUGL (3))
|
|
|
|
{
|
|
|
|
int r1;
|
2006-02-26 15:00:58 +00:00
|
|
|
|
2006-03-15 21:30:19 +00:00
|
|
|
for (r1 = 0; r1 < sys->maxruns; r1++)
|
|
|
|
{
|
|
|
|
if (sys->runs[r1].protocol != INTRUDER)
|
|
|
|
{
|
|
|
|
int e1;
|
2006-02-26 15:00:58 +00:00
|
|
|
|
2006-03-15 21:30:19 +00:00
|
|
|
for (e1 = 0; e1 < sys->runs[r1].step; e1++)
|
|
|
|
{
|
|
|
|
int r2;
|
2006-02-26 15:00:58 +00:00
|
|
|
|
2006-03-15 21:30:19 +00:00
|
|
|
for (r2 = 0; r2 < sys->maxruns; r2++)
|
|
|
|
{
|
|
|
|
if (sys->runs[r2].protocol != INTRUDER)
|
|
|
|
{
|
|
|
|
int e2;
|
2006-02-26 15:00:58 +00:00
|
|
|
|
2006-03-15 21:30:19 +00:00
|
|
|
for (e2 = 0; e2 < sys->runs[r2].step; e2++)
|
|
|
|
{
|
|
|
|
if (isDependEvent (r1, e1, r2, e2))
|
|
|
|
{
|
|
|
|
eprintf
|
2006-05-26 12:27:05 +01:00
|
|
|
("\tr%ii%i -> r%ii%i [color=grey];\n",
|
|
|
|
r1, e1, r2, e2);
|
2006-03-15 21:30:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2006-02-26 15:00:58 +00:00
|
|
|
#endif
|
|
|
|
|
2006-03-14 11:37:28 +00:00
|
|
|
// Ranks
|
2006-05-26 12:27:05 +01:00
|
|
|
if (switches.clusters)
|
|
|
|
{
|
|
|
|
showRanks (sys, maxrank, ranks, nodes);
|
|
|
|
}
|
2006-03-08 15:12:58 +00:00
|
|
|
|
2006-02-26 15:00:58 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
// Debug: print dependencies
|
|
|
|
if (DEBUGL (3))
|
|
|
|
{
|
|
|
|
dependPrint ();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2005-12-27 11:50:46 +00:00
|
|
|
// clean memory
|
2006-03-08 13:58:46 +00:00
|
|
|
free (ranks); // ranks
|
2005-12-27 11:50:46 +00:00
|
|
|
|
|
|
|
// close graph
|
|
|
|
eprintf ("};\n\n");
|
|
|
|
}
|