2006-08-02 13:59:57 +01:00
|
|
|
#!/usr/bin/python
|
2007-06-11 13:09:24 +01:00
|
|
|
"""
|
|
|
|
Scyther : An automatic verifier for security protocols.
|
|
|
|
Copyright (C) 2007 Cas Cremers
|
|
|
|
|
|
|
|
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-08-02 13:59:57 +01:00
|
|
|
|
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
""" Import externals """
|
|
|
|
import wx
|
|
|
|
import threading
|
|
|
|
|
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
""" Import scyther components """
|
2006-12-14 14:06:50 +00:00
|
|
|
import Scyther.Scyther
|
|
|
|
import Scyther.Error
|
2007-05-19 14:32:58 +01:00
|
|
|
from Scyther.Misc import *
|
2006-08-02 13:59:57 +01:00
|
|
|
|
|
|
|
""" Import scyther-gui components """
|
|
|
|
import Preference
|
2006-08-03 14:40:39 +01:00
|
|
|
import Attackwindow
|
2006-08-06 19:06:26 +01:00
|
|
|
import Icon
|
2006-12-14 14:06:50 +00:00
|
|
|
import Error
|
2008-08-25 13:59:42 +01:00
|
|
|
import Makeimage
|
2006-08-02 13:59:57 +01:00
|
|
|
|
|
|
|
#---------------------------------------------------------------------------
|
2008-08-25 13:59:42 +01:00
|
|
|
if Preference.havePIL:
|
2006-08-10 12:50:57 +01:00
|
|
|
import Image
|
2006-08-02 13:59:57 +01:00
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class ScytherThread(threading.Thread):
|
2006-12-13 11:59:44 +00:00
|
|
|
"""
|
|
|
|
Apply Scyther algorithm to input and retrieve results
|
|
|
|
"""
|
2006-08-04 23:00:22 +01:00
|
|
|
|
|
|
|
# Override Thread's __init__ method to accept the parameters needed:
|
2007-05-18 13:06:29 +01:00
|
|
|
def __init__ ( self, spdl, options="", callback=None, mode=None ):
|
2006-08-02 13:59:57 +01:00
|
|
|
|
2006-12-13 11:59:44 +00:00
|
|
|
self.spdl = spdl
|
|
|
|
self.options = options
|
|
|
|
self.callback = callback
|
2007-05-18 13:06:29 +01:00
|
|
|
self.mode = mode
|
2006-08-02 13:59:57 +01:00
|
|
|
threading.Thread.__init__ ( self )
|
|
|
|
|
|
|
|
def run(self):
|
|
|
|
|
2006-12-13 11:59:44 +00:00
|
|
|
(scyther, claims, summary) = self.claimResults()
|
2006-08-02 13:59:57 +01:00
|
|
|
|
2006-08-02 22:15:36 +01:00
|
|
|
# Results are done (claimstatus can be reported)
|
2006-12-13 11:59:44 +00:00
|
|
|
if self.callback:
|
|
|
|
wx.CallAfter(self.callback, scyther, claims, summary)
|
2006-08-02 22:15:36 +01:00
|
|
|
|
2007-05-18 13:06:29 +01:00
|
|
|
def claimFixViewOne(self,claims):
|
2008-07-29 23:03:46 +01:00
|
|
|
"""
|
|
|
|
This is a stupid hack as long as switches.useAttackBuffer in
|
|
|
|
Scyther C code is false. It is currently false because Windows
|
|
|
|
VISTA screwed up the standard C function tmpfile() (It's in a
|
|
|
|
directory to which normal users cannot write...)
|
|
|
|
"""
|
2008-08-25 15:59:15 +01:00
|
|
|
# TODO Notice the stupid default setting too ('2') which is
|
|
|
|
# needed here. This really needs cleanup.
|
|
|
|
if int(Preference.get('prune','2')) != 0:
|
2008-07-29 23:03:46 +01:00
|
|
|
if claims:
|
|
|
|
for cl in claims:
|
|
|
|
if len(cl.attacks) > 1:
|
|
|
|
# Fix it such that by default, only the best attack is
|
|
|
|
# shown, unless we are in characterize or check mode
|
|
|
|
# TODO [X] [CC] make switch-dependant.
|
|
|
|
if not self.mode in ["characterize","check"]:
|
|
|
|
cl.attacks = [cl.attacks[-1]]
|
|
|
|
""" Cutting invalidates exactness of attack/behaviour counts """
|
|
|
|
cl.complete = False
|
2007-05-18 13:06:29 +01:00
|
|
|
|
|
|
|
return claims
|
2006-08-02 13:59:57 +01:00
|
|
|
|
|
|
|
def claimResults(self):
|
2006-08-02 22:15:36 +01:00
|
|
|
""" Convert spdl to result (using Scyther)
|
|
|
|
"""
|
2006-08-02 13:59:57 +01:00
|
|
|
|
2006-12-14 14:06:50 +00:00
|
|
|
scyther = Scyther.Scyther.Scyther()
|
|
|
|
|
2006-12-13 11:59:44 +00:00
|
|
|
scyther.options = self.options
|
|
|
|
scyther.setInput(self.spdl)
|
2006-08-09 12:54:37 +01:00
|
|
|
|
|
|
|
# verification start
|
2007-01-27 21:42:16 +00:00
|
|
|
try:
|
|
|
|
claims = scyther.verify()
|
|
|
|
except Scyther.Error.ScytherError, el:
|
|
|
|
claims = None
|
|
|
|
pass
|
|
|
|
|
2006-12-13 11:59:44 +00:00
|
|
|
summary = str(scyther)
|
2006-08-09 12:54:37 +01:00
|
|
|
|
2007-05-18 13:06:29 +01:00
|
|
|
claims = self.claimFixViewOne(claims)
|
|
|
|
|
2006-12-13 11:59:44 +00:00
|
|
|
return (scyther, claims, summary)
|
2006-08-02 13:59:57 +01:00
|
|
|
|
2006-08-04 23:00:22 +01:00
|
|
|
#---------------------------------------------------------------------------
|
2006-08-03 13:06:43 +01:00
|
|
|
|
|
|
|
class AttackThread(threading.Thread):
|
2006-08-04 23:00:22 +01:00
|
|
|
|
|
|
|
""" This is a thread because it computes images from stuff in the
|
|
|
|
background """
|
|
|
|
|
2006-08-03 13:06:43 +01:00
|
|
|
# Override Thread's __init__ method to accept the parameters needed:
|
2006-08-09 10:46:45 +01:00
|
|
|
def __init__ ( self, parent, resultwin, callbackclaim=None,callbackattack=None,callbackdone=None ):
|
2006-08-03 13:06:43 +01:00
|
|
|
|
2006-08-04 23:00:22 +01:00
|
|
|
self.parent = parent
|
2006-08-03 13:06:43 +01:00
|
|
|
self.resultwin = resultwin
|
2006-08-07 12:26:39 +01:00
|
|
|
self.callbackclaim = callbackclaim
|
|
|
|
self.callbackattack = callbackattack
|
2006-08-09 10:46:45 +01:00
|
|
|
self.callbackdone = callbackdone
|
2006-08-07 12:26:39 +01:00
|
|
|
self.totalattacks = 0
|
|
|
|
for cl in self.parent.claims:
|
|
|
|
for attack in cl.attacks:
|
|
|
|
self.totalattacks += 1
|
2006-08-03 13:06:43 +01:00
|
|
|
|
|
|
|
threading.Thread.__init__ ( self )
|
|
|
|
|
|
|
|
def run(self):
|
|
|
|
|
|
|
|
# create the images in the background
|
2006-08-07 12:26:39 +01:00
|
|
|
# when the images of a claim are done, callback is called with
|
|
|
|
# the claim
|
2006-08-03 13:06:43 +01:00
|
|
|
self.makeImages()
|
2006-08-02 13:59:57 +01:00
|
|
|
|
2006-08-02 22:15:36 +01:00
|
|
|
def makeImages(self):
|
|
|
|
""" create images """
|
2006-12-13 11:59:44 +00:00
|
|
|
|
2006-08-07 12:26:39 +01:00
|
|
|
done = 0
|
2006-08-04 23:00:22 +01:00
|
|
|
for cl in self.parent.claims:
|
2006-08-02 22:15:36 +01:00
|
|
|
for attack in cl.attacks:
|
2008-08-25 13:59:42 +01:00
|
|
|
Makeimage.makeImage(attack,self)
|
2006-08-07 12:26:39 +01:00
|
|
|
done += 1
|
|
|
|
if self.callbackattack:
|
2006-08-08 22:49:37 +01:00
|
|
|
wx.CallAfter(self.callbackattack,attack,self.totalattacks,done)
|
2006-08-07 12:26:39 +01:00
|
|
|
if self.callbackclaim:
|
2006-08-08 22:49:37 +01:00
|
|
|
wx.CallAfter(self.callbackclaim,cl)
|
2006-08-09 10:46:45 +01:00
|
|
|
if self.callbackdone:
|
|
|
|
wx.CallAfter(self.callbackdone)
|
2006-08-02 22:15:36 +01:00
|
|
|
|
|
|
|
|
2006-08-04 22:02:50 +01:00
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
|
2006-08-03 13:06:43 +01:00
|
|
|
class VerificationWindow(wx.Dialog):
|
|
|
|
def __init__(
|
2006-08-07 10:59:26 +01:00
|
|
|
self, parent, title, pos=wx.DefaultPosition, size=wx.DefaultSize,
|
2006-08-03 13:06:43 +01:00
|
|
|
style=wx.DEFAULT_DIALOG_STYLE
|
|
|
|
):
|
|
|
|
|
2006-08-07 10:59:26 +01:00
|
|
|
wx.Dialog.__init__(self,parent,-1,title,pos,size,style)
|
2006-08-03 13:06:43 +01:00
|
|
|
|
|
|
|
sizer = wx.BoxSizer(wx.VERTICAL)
|
|
|
|
|
2006-08-04 22:02:50 +01:00
|
|
|
label = wx.StaticText(self, -1, "Verifying protocol description")
|
2006-08-03 13:06:43 +01:00
|
|
|
sizer.Add(label, 0, wx.ALIGN_CENTRE|wx.ALL, 5)
|
|
|
|
|
|
|
|
line = wx.StaticLine(self, -1, size=(20,-1), style=wx.LI_HORIZONTAL)
|
|
|
|
sizer.Add(line, 0, wx.GROW|wx.ALIGN_CENTER_VERTICAL|wx.RIGHT|wx.TOP, 5)
|
|
|
|
|
|
|
|
btnsizer = wx.StdDialogButtonSizer()
|
|
|
|
|
|
|
|
btn = wx.Button(self, wx.ID_CANCEL)
|
|
|
|
btnsizer.AddButton(btn)
|
|
|
|
btnsizer.Realize()
|
|
|
|
|
2006-08-07 10:31:49 +01:00
|
|
|
sizer.Add(btnsizer, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALL|wx.ALIGN_CENTER, 5)
|
|
|
|
|
|
|
|
self.SetSizer(sizer)
|
|
|
|
sizer.Fit(self)
|
|
|
|
|
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class ErrorWindow(wx.Dialog):
|
|
|
|
def __init__(
|
2006-08-07 10:59:26 +01:00
|
|
|
self, parent, title, pos=wx.DefaultPosition, size=wx.DefaultSize,
|
2006-08-07 10:31:49 +01:00
|
|
|
style=wx.DEFAULT_DIALOG_STYLE,errors=[]
|
|
|
|
):
|
|
|
|
|
2006-08-07 10:59:26 +01:00
|
|
|
wx.Dialog.__init__(self,parent,-1,title,pos,size,style)
|
2006-08-07 10:31:49 +01:00
|
|
|
|
|
|
|
sizer = wx.BoxSizer(wx.VERTICAL)
|
|
|
|
|
|
|
|
label = wx.StaticText(self, -1, "Errors")
|
|
|
|
sizer.Add(label, 0, wx.ALIGN_LEFT|wx.ALL, 5)
|
|
|
|
|
|
|
|
line = wx.StaticLine(self, -1, size=(20,-1), style=wx.LI_HORIZONTAL)
|
|
|
|
sizer.Add(line, 0, wx.GROW|wx.ALIGN_CENTER_VERTICAL|wx.RIGHT|wx.TOP, 5)
|
|
|
|
|
2007-01-29 15:17:11 +00:00
|
|
|
etxt = ""
|
|
|
|
prefix = "error: "
|
|
|
|
for er in errors:
|
|
|
|
if er.startswith(prefix):
|
|
|
|
er = er[len(prefix):]
|
|
|
|
etxt = etxt + "%s\n" % (er)
|
|
|
|
|
|
|
|
label = wx.StaticText(self, -1, etxt)
|
2006-08-07 10:31:49 +01:00
|
|
|
sizer.Add(label, 0, wx.ALIGN_LEFT|wx.ALL, 5)
|
|
|
|
|
2006-08-07 17:36:54 +01:00
|
|
|
line = wx.StaticLine(self, -1, size=(20,-1), style=wx.LI_HORIZONTAL)
|
2006-08-07 10:31:49 +01:00
|
|
|
sizer.Add(line, 0, wx.GROW|wx.ALIGN_CENTER_VERTICAL|wx.RIGHT|wx.TOP, 5)
|
|
|
|
|
|
|
|
btnsizer = wx.StdDialogButtonSizer()
|
|
|
|
|
|
|
|
btn = wx.Button(self, wx.ID_OK)
|
|
|
|
btnsizer.AddButton(btn)
|
|
|
|
btnsizer.Realize()
|
|
|
|
|
|
|
|
sizer.Add(btnsizer, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALL|wx.ALIGN_CENTER, 5)
|
2006-08-03 13:06:43 +01:00
|
|
|
|
|
|
|
self.SetSizer(sizer)
|
|
|
|
sizer.Fit(self)
|
|
|
|
|
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
|
2006-08-03 14:40:39 +01:00
|
|
|
class ResultWindow(wx.Frame):
|
2006-08-04 22:02:50 +01:00
|
|
|
|
2006-08-04 23:29:51 +01:00
|
|
|
"""
|
|
|
|
Displays the claims status and contains buttons to show the actual
|
|
|
|
attack graphs
|
|
|
|
"""
|
|
|
|
|
2006-08-03 13:06:43 +01:00
|
|
|
def __init__(
|
2006-08-04 23:00:22 +01:00
|
|
|
self, parent, parentwindow, title, pos=wx.DefaultPosition, size=wx.DefaultSize,
|
2006-08-04 22:19:38 +01:00
|
|
|
style=wx.DEFAULT_DIALOG_STYLE
|
2006-08-03 13:06:43 +01:00
|
|
|
):
|
2006-08-02 13:59:57 +01:00
|
|
|
|
2006-08-04 23:00:22 +01:00
|
|
|
wx.Frame.__init__(self,parentwindow,-1,title,pos,size,style)
|
2007-01-10 14:30:52 +00:00
|
|
|
self.SetBackgroundColour('Default')
|
2006-08-06 19:06:26 +01:00
|
|
|
Icon.ScytherIcon(self)
|
2006-08-03 14:40:39 +01:00
|
|
|
|
2006-08-06 19:06:26 +01:00
|
|
|
self.parent = parent
|
2006-08-04 22:02:50 +01:00
|
|
|
self.thread = None
|
|
|
|
self.Bind(wx.EVT_CLOSE, self.onCloseWindow)
|
2006-08-03 13:06:43 +01:00
|
|
|
|
2006-08-06 19:06:26 +01:00
|
|
|
self.CreateStatusBar()
|
2006-08-04 22:28:58 +01:00
|
|
|
self.BuildTable()
|
|
|
|
|
|
|
|
def onViewButton(self,evt):
|
|
|
|
btn = evt.GetEventObject()
|
2008-05-02 16:10:29 +01:00
|
|
|
try:
|
|
|
|
w = Attackwindow.AttackWindow(btn.claim)
|
|
|
|
w.Show(True)
|
|
|
|
except Error.PILError:
|
|
|
|
Error.ShowAndReturn("Problem with PIL imaging library: disabled zooming. Please retry to verify the protocol again.")
|
|
|
|
self.onCloseWindow(None)
|
2006-08-04 22:28:58 +01:00
|
|
|
|
|
|
|
def onCloseWindow(self,evt):
|
2006-08-04 23:29:51 +01:00
|
|
|
""" TODO we should kill self.thread """
|
2006-08-04 23:00:22 +01:00
|
|
|
|
|
|
|
# Clean up
|
|
|
|
self.parent.claims = None
|
|
|
|
|
2006-08-04 22:28:58 +01:00
|
|
|
self.Destroy()
|
|
|
|
|
|
|
|
def BuildTable(self):
|
2006-08-03 13:06:43 +01:00
|
|
|
# Now continue with the normal construction of the dialog
|
|
|
|
# contents
|
|
|
|
|
2006-08-04 22:28:58 +01:00
|
|
|
# For these claims...
|
2006-08-04 23:00:22 +01:00
|
|
|
claims = self.parent.claims
|
2006-08-04 22:28:58 +01:00
|
|
|
|
2006-08-03 14:40:39 +01:00
|
|
|
# set up grid
|
2006-08-09 08:59:57 +01:00
|
|
|
self.grid = grid = wx.GridBagSizer(0,0)
|
|
|
|
#self.grid = grid = wx.GridBagSizer(7,1+len(claims))
|
2006-08-03 14:40:39 +01:00
|
|
|
|
2006-08-04 22:02:50 +01:00
|
|
|
def titlebar(x,title,width=1):
|
|
|
|
txt = wx.StaticText(self,-1,title)
|
2006-08-09 10:04:03 +01:00
|
|
|
font = wx.Font(14,wx.NORMAL,wx.NORMAL,wx.BOLD)
|
2006-08-03 15:14:38 +01:00
|
|
|
txt.SetFont(font)
|
2006-08-09 08:59:57 +01:00
|
|
|
grid.Add(txt,(0,x),(1,width),wx.ALL,10)
|
2006-08-03 15:14:38 +01:00
|
|
|
|
2006-08-09 10:04:03 +01:00
|
|
|
titlebar(0,"Claim",4)
|
|
|
|
titlebar(4,"Status",2)
|
2006-08-09 12:36:33 +01:00
|
|
|
titlebar(6,"Comments",1)
|
2006-08-03 14:40:39 +01:00
|
|
|
|
2006-08-04 22:28:58 +01:00
|
|
|
self.lastprot = None
|
|
|
|
self.lastrole = None
|
2006-08-09 10:04:03 +01:00
|
|
|
views = 0
|
2006-08-04 22:06:12 +01:00
|
|
|
for index in range(0,len(claims)):
|
2006-08-09 10:04:03 +01:00
|
|
|
views += self.BuildClaim(grid,claims[index],index+1)
|
|
|
|
|
|
|
|
if views > 0:
|
2007-05-18 13:06:29 +01:00
|
|
|
titlebar(7,"Patterns",1)
|
2006-08-04 22:02:50 +01:00
|
|
|
|
2006-08-08 16:00:20 +01:00
|
|
|
self.SetSizer(grid)
|
|
|
|
self.Fit()
|
2006-08-03 13:06:43 +01:00
|
|
|
|
2006-08-04 22:28:58 +01:00
|
|
|
def BuildClaim(self,grid,cl,ypos):
|
|
|
|
# a support function
|
|
|
|
def addtxt(txt,column):
|
2007-05-29 15:39:25 +01:00
|
|
|
txt = txt.replace("-","_") # Strange fix for wx.StaticText as it cuts off the display.
|
2006-08-09 08:59:57 +01:00
|
|
|
grid.Add(wx.StaticText(self,-1,txt),(ypos,column),(1,1),wx.ALIGN_CENTER_VERTICAL|wx.ALL,10)
|
2006-08-04 22:02:50 +01:00
|
|
|
|
2006-08-09 10:04:03 +01:00
|
|
|
n = len(cl.attacks)
|
|
|
|
xpos = 0
|
2006-08-04 22:28:58 +01:00
|
|
|
|
|
|
|
# protocol, role, label
|
|
|
|
prot = str(cl.protocol)
|
2006-08-09 12:36:33 +01:00
|
|
|
showP = False
|
|
|
|
showR = False
|
2006-08-04 22:28:58 +01:00
|
|
|
if prot != self.lastprot:
|
|
|
|
self.lastprot = prot
|
2006-08-09 12:36:33 +01:00
|
|
|
showP = True
|
|
|
|
showR = True
|
2006-08-04 22:28:58 +01:00
|
|
|
role = str(cl.role)
|
|
|
|
if role != self.lastrole:
|
|
|
|
self.lastrole = role
|
2006-08-09 12:36:33 +01:00
|
|
|
showR = True
|
|
|
|
if showP:
|
2006-08-09 10:04:03 +01:00
|
|
|
addtxt(prot,xpos)
|
2006-08-09 12:36:33 +01:00
|
|
|
if showR:
|
2006-08-09 10:04:03 +01:00
|
|
|
addtxt(role,xpos+1)
|
|
|
|
xpos += 2
|
2006-08-04 22:28:58 +01:00
|
|
|
|
2006-08-10 16:26:15 +01:00
|
|
|
# claim id
|
2006-08-09 10:04:03 +01:00
|
|
|
addtxt(str(cl.id),xpos)
|
|
|
|
xpos += 1
|
2006-08-04 22:28:58 +01:00
|
|
|
|
2006-08-09 10:04:03 +01:00
|
|
|
# claim parameters
|
2006-08-04 22:28:58 +01:00
|
|
|
claimdetails = str(cl.claimtype)
|
|
|
|
if cl.parameter:
|
2006-08-06 16:35:22 +01:00
|
|
|
claimdetails += " %s" % (cl.parameter)
|
2006-08-09 10:04:03 +01:00
|
|
|
addtxt(claimdetails + " ",xpos)
|
|
|
|
xpos += 1
|
2006-08-04 22:28:58 +01:00
|
|
|
|
2006-08-09 10:04:03 +01:00
|
|
|
# button for ok/fail
|
|
|
|
if None:
|
|
|
|
# old style buttons (but they looked ugly on windows)
|
|
|
|
tsize = (16,16)
|
|
|
|
if cl.okay:
|
|
|
|
bmp = wx.ArtProvider_GetBitmap(wx.ART_TICK_MARK,wx.ART_CMN_DIALOG,tsize)
|
|
|
|
else:
|
|
|
|
bmp = wx.ArtProvider_GetBitmap(wx.ART_CROSS_MARK,wx.ART_CMN_DIALOG,tsize)
|
|
|
|
if not bmp.Ok():
|
|
|
|
bmp = wx.EmptyBitmap(tsize)
|
|
|
|
bmpfield = wx.StaticBitmap(self,-1,bmp)
|
|
|
|
grid.Add(bmpfield,(ypos,xpos),(1,1),wx.ALIGN_CENTER_VERTICAL|wx.ALL,10)
|
|
|
|
else:
|
|
|
|
# new style text control Ok/Fail
|
2006-08-11 10:41:12 +01:00
|
|
|
rankc = cl.getColour()
|
2006-08-11 10:58:20 +01:00
|
|
|
rankt = cl.getOkay()
|
2006-08-11 10:41:12 +01:00
|
|
|
txt = wx.StaticText(self,-1,rankt)
|
2006-08-10 16:48:12 +01:00
|
|
|
font = wx.Font(11,wx.NORMAL,wx.NORMAL,wx.BOLD)
|
|
|
|
txt.SetFont(font)
|
2006-08-11 10:41:12 +01:00
|
|
|
txt.SetForegroundColour(rankc)
|
2006-08-10 16:48:12 +01:00
|
|
|
grid.Add(txt,(ypos,xpos),(1,1),wx.ALL,10)
|
2006-08-09 10:04:03 +01:00
|
|
|
xpos += 1
|
2006-08-04 22:28:58 +01:00
|
|
|
|
2006-08-10 16:26:15 +01:00
|
|
|
# verified?
|
|
|
|
vt = cl.getVerified()
|
|
|
|
if vt:
|
|
|
|
addtxt(vt,xpos)
|
|
|
|
xpos += 1
|
2006-08-09 12:28:01 +01:00
|
|
|
|
2006-08-10 16:26:15 +01:00
|
|
|
# remark something
|
|
|
|
addtxt(cl.getComment(),xpos)
|
|
|
|
xpos += 1
|
2006-08-04 22:28:58 +01:00
|
|
|
|
2006-08-09 10:04:03 +01:00
|
|
|
# add view button (enabled later if needed)
|
|
|
|
if n > 0:
|
|
|
|
cl.button = wx.Button(self,-1,"%i %s" % (n,cl.stateName(n)))
|
|
|
|
cl.button.claim = cl
|
|
|
|
grid.Add(cl.button,(ypos,xpos),(1,1),wx.ALIGN_CENTER_VERTICAL|wx.ALL,5)
|
|
|
|
cl.button.Disable()
|
|
|
|
if n > 0:
|
|
|
|
# Aha, something to show
|
|
|
|
self.Bind(wx.EVT_BUTTON, self.onViewButton,cl.button)
|
|
|
|
else:
|
|
|
|
cl.button = None
|
|
|
|
xpos += 1
|
|
|
|
|
|
|
|
# Return 1 if there is a view possible
|
|
|
|
if n > 0:
|
|
|
|
return 1
|
|
|
|
else:
|
|
|
|
return 0
|
|
|
|
|
2006-08-03 14:40:39 +01:00
|
|
|
|
2006-08-03 13:06:43 +01:00
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
2006-08-04 23:00:22 +01:00
|
|
|
class ScytherRun(object):
|
2006-12-14 20:32:24 +00:00
|
|
|
|
2007-01-31 15:45:05 +00:00
|
|
|
def __init__(self,mainwin,mode,spdl,errorcallback=None):
|
2006-08-02 13:59:57 +01:00
|
|
|
|
2006-08-04 23:00:22 +01:00
|
|
|
self.mainwin = mainwin
|
|
|
|
self.mode = mode
|
2007-01-29 16:32:35 +00:00
|
|
|
self.spdl = spdl
|
2006-12-13 11:59:44 +00:00
|
|
|
self.verified = False
|
|
|
|
self.options = mainwin.settings.ScytherArguments(mode)
|
2007-01-31 15:45:05 +00:00
|
|
|
self.errorcallback=errorcallback
|
2006-12-13 11:59:44 +00:00
|
|
|
self.main()
|
2006-08-02 13:59:57 +01:00
|
|
|
|
2006-12-14 20:32:24 +00:00
|
|
|
def main(self):
|
|
|
|
"""
|
|
|
|
Start process
|
|
|
|
"""
|
|
|
|
|
|
|
|
title = "Running Scyther %s process" % self.mode
|
|
|
|
# start the window and show until something happens
|
|
|
|
# if it terminates, this is a cancel, and should also kill the thread. (what happens to a spawned Scyther in that case?)
|
|
|
|
# if the thread terminames, it should close the window normally, and we end up here as well.
|
|
|
|
#val = self.verifywin.ShowModal()
|
|
|
|
self.verifywin = VerificationWindow(self.mainwin,title)
|
|
|
|
self.verifywin.Center()
|
|
|
|
self.verifywin.Show(True)
|
|
|
|
|
|
|
|
# Check sanity of Scyther thing here (as opposed to the thread)
|
|
|
|
# which makes error reporting somewhat easier
|
|
|
|
try:
|
|
|
|
Scyther.Scyther.Check()
|
|
|
|
except Scyther.Error.BinaryError, e:
|
|
|
|
# e.file is the supposed location of the binary
|
|
|
|
text = "Could not find Scyther binary at\n%s" % (e.file)
|
|
|
|
Error.ShowAndExit(text)
|
|
|
|
|
|
|
|
# start the thread
|
|
|
|
|
|
|
|
self.verifywin.SetCursor(wx.StockCursor(wx.CURSOR_WAIT))
|
2007-05-18 13:06:29 +01:00
|
|
|
t = ScytherThread(self.spdl, self.options, self.verificationDone, self.mode)
|
2006-12-14 20:32:24 +00:00
|
|
|
t.start()
|
|
|
|
|
|
|
|
# after verification, we proceed to the callback below...
|
|
|
|
|
2006-12-13 11:59:44 +00:00
|
|
|
def verificationDone(self, scyther, claims, summary):
|
2006-12-14 20:32:24 +00:00
|
|
|
"""
|
|
|
|
This is where we end up after a callback from the thread, stating that verification succeeded.
|
|
|
|
"""
|
2006-08-03 13:06:43 +01:00
|
|
|
|
2006-12-13 11:59:44 +00:00
|
|
|
self.scyther = scyther
|
|
|
|
self.claims = claims
|
|
|
|
self.summary = summary
|
2006-08-03 13:06:43 +01:00
|
|
|
|
2006-12-13 11:59:44 +00:00
|
|
|
self.verified = True
|
|
|
|
self.verifywin.Close()
|
2006-08-02 13:59:57 +01:00
|
|
|
|
2006-12-13 11:59:44 +00:00
|
|
|
# Process the claims
|
|
|
|
if self.scyther.errorcount == 0:
|
|
|
|
self.verificationOkay()
|
|
|
|
else:
|
|
|
|
self.verificationErrors()
|
2006-08-03 13:06:43 +01:00
|
|
|
|
2006-12-13 11:59:44 +00:00
|
|
|
def verificationOkay(self):
|
2006-12-14 20:32:24 +00:00
|
|
|
|
2006-12-13 11:59:44 +00:00
|
|
|
# Great, we verified stuff, progress to the claim report
|
|
|
|
title = "Scyther results : %s" % self.mode
|
|
|
|
self.resultwin = resultwin = ResultWindow(self,self.mainwin,title)
|
2006-08-03 13:06:43 +01:00
|
|
|
|
2006-12-13 11:59:44 +00:00
|
|
|
def attackDone(attack,total,done):
|
|
|
|
if resultwin:
|
|
|
|
txt = "Generating attack graphs (%i of %i done)." % (done,total)
|
|
|
|
resultwin.SetStatusText(txt)
|
|
|
|
#resultwin.Refresh()
|
2006-08-07 10:31:49 +01:00
|
|
|
|
2006-12-13 11:59:44 +00:00
|
|
|
def claimDone(claim):
|
|
|
|
if resultwin:
|
|
|
|
if claim.button and len(claim.attacks) > 0:
|
|
|
|
claim.button.Enable()
|
2006-08-07 12:26:39 +01:00
|
|
|
|
2006-12-13 11:59:44 +00:00
|
|
|
def allDone():
|
|
|
|
if resultwin:
|
|
|
|
resultwin.SetCursor(wx.StockCursor(wx.CURSOR_ARROW))
|
|
|
|
resultwin.SetStatusText("Done.")
|
2006-08-08 16:00:20 +01:00
|
|
|
|
2006-12-13 11:59:44 +00:00
|
|
|
resultwin.Center()
|
|
|
|
resultwin.Show(True)
|
|
|
|
resultwin.SetCursor(wx.StockCursor(wx.CURSOR_ARROWWAIT))
|
2006-08-09 10:46:45 +01:00
|
|
|
|
2006-12-13 11:59:44 +00:00
|
|
|
wx.Yield()
|
2006-08-09 10:46:45 +01:00
|
|
|
|
2006-12-13 11:59:44 +00:00
|
|
|
t = AttackThread(self,resultwin,claimDone,attackDone,allDone)
|
|
|
|
t.start()
|
2006-08-07 12:26:39 +01:00
|
|
|
|
2006-12-13 11:59:44 +00:00
|
|
|
resultwin.thread = t
|
2006-08-07 10:31:49 +01:00
|
|
|
|
2006-12-13 11:59:44 +00:00
|
|
|
def verificationErrors(self):
|
|
|
|
"""
|
|
|
|
Verification process generated errors. Show them.
|
|
|
|
"""
|
|
|
|
|
2007-01-31 15:45:05 +00:00
|
|
|
if self.errorcallback:
|
|
|
|
self.errorcallback(self.scyther.errors)
|
2006-12-13 11:59:44 +00:00
|
|
|
title = "Scyther errors : %s" % self.mode
|
|
|
|
errorwin = ErrorWindow(self.mainwin,title,errors=self.scyther.errors)
|
|
|
|
errorwin.Center()
|
|
|
|
val = errorwin.ShowModal()
|
|
|
|
|
2006-08-04 23:00:22 +01:00
|
|
|
#---------------------------------------------------------------------------
|
2006-12-14 20:32:24 +00:00
|
|
|
# vim: set ts=4 sw=4 et list lcs=tab\:>-:
|