A Tutorial on Model Checker SPIN
Instructor: Hao Zheng
Department of Computer Science and Engineering University of South Florida Tampa, FL 33620 Email: haozheng@usf.edu Phone: (813)974-4757 Fax: (813)974-5456
1
A Tutorial on Model Checker SPIN Instructor: Hao Zheng Department - - PowerPoint PPT Presentation
A Tutorial on Model Checker SPIN Instructor: Hao Zheng Department of Computer Science and Engineering University of South Florida Tampa, FL 33620 Email: haozheng@usf.edu Phone: (813)974-4757 Fax: (813)974-5456 1 Overview of Concurrent
1
2
3
4
5
6
7
8
9
Thursday 11-Apr-2002 Theo C. Ruys - SPIN Beginners' Tutorial 19
/* A "Hello World" Promela model for SPIN. */ active proctype Hello() { printf("Hello process, my pid is: %d\n", _pid); } init { int lastpid; printf("init process, my pid is: %d\n", _pid); lastpid = run Hello(); printf("last pid was: %d\n", lastpid); } $ spin -n2 hello.pr init process, my pid is: 1 last pid was: 2 Hello process, my pid is: 0 Hello process, my pid is: 2 3 processes created running SPIN in random simulation mode random seed DEMO
10
mtype = {MSG, ACK}; chan toS = ... chan toR = ... bool flag; proctype Sender() { ... } proctype Receiver() { ... } init { ... }
– type declarations – channel declarations – variable declarations – process declarations – [init process]
– no unbounded data – no unbounded channels – no unbounded processes – no unbounded process creation
process body creates processes
11
proctype Sender(chan in; chan out) { bit sndB, rcvB; do :: out ! MSG, sndB -> in ? ACK, rcvB; if :: sndB == rcvB -> sndB = 1-sndB :: else -> skip fi
} name local variables body formal parameters The body consist of a sequence of statements.
12
13
14
proctype Foo(byte x) { ... } init { int pid2 = run Foo(2); run Foo(27); } active[3] proctype Bar() { ... }
number of procs. (opt.) parameters will be initialised to 0
15
Basic types
bit turn=1;
[0..1]
bool flag;
[0..1]
byte counter;
[0..255]
short s;
[-216-1.. 216 –1]
int msg;
[-232-1.. 232 –1]
Arrays
byte a[27]; bit flags[4];
Typedef (records)
typedef Record { short f1; byte f2; } Record rr; rr.f1 = ..
array indicing start at 0 variable declaration
16
int ii; bit bb; bb=1; ii=2; short s=-1; typedef Foo { bit bb; int ii; }; Foo f; f.bb = 0; f.ii = -2; ii*s+27 == 23; printf(“value: %d”, s*s);
declared.
value by:
– assignment – argument passing – message passing (see communication)
expressions.
assignment = equal test == declaration + initialisation Most arithmetic, relational, and logical operators of C/Java are supported, including bitshift operators.
17
18
executable/blocked depends on the global state of the system.
19
// acquire pid of the calling proc
20
proctype monitor() { assert(n <= 3); } proctype receiver() {
...
toReceiver ? msg; assert(msg != ERROR);
...
}
21
wait_ack: if :: B?ACK -> ab=1-ab ; goto success :: ChunkTimeout?SHAKE -> if :: (rc < MAX) -> rc++; F!(i==1),(i==n),ab,d[i]; goto wait_ack :: (rc >= MAX) -> goto error fi fi ; Timeout modelled by a channel. Part of model of BRP
22
Thursday 11-Apr-2002 Theo C. Ruys - SPIN Beginners' Tutorial 32
statement is executable and SPIN non-deterministically chooses one of the executable choices.
within if-statements to separate the guards from the statements that follow the guards.
if :: choice1 -> stat1.1; stat1.2; stat1.3; … :: choice2 -> stat2.1; stat2.2; stat2.3; … :: … :: choicen -> statn.1; statn.2; statn.3; … fi;
inspired by: Dijkstra’s guarded command language
23
Thursday 11-Apr-2002 Theo C. Ruys - SPIN Beginners' Tutorial 33
if :: skip -> n=0 :: skip -> n=1 :: skip -> n=2 :: skip -> n=3 fi give n a random value skips are redundant, because assignments are themselves always executable... if :: (n % 2 != 0) -> n=1 :: (n >= 0) -> n=n-2 :: (n % 3 == 0) -> n=3 :: else
fi
24
25
Theo C. Ruys - SPIN Beginners' Tutorial 34
same way as an if-statement.
choosen list of statements, a do-statement repeats the choice selection.
statement and transfers control to the end of the loop.
do :: choice1 -> stat1.1; stat1.2; stat1.3; … :: choice2 -> stat2.1; stat2.2; stat2.3; … :: … :: choicen -> statn.1; statn.2; statn.3; …
26
27
Thursday 11-Apr-2002 Theo C. Ruys - SPIN Beginners' Tutorial 23
– “does nothing”, only changes process’ process counter
created (remember: the number of processes is bounded).
evaluated during verification, of course).
int x; proctype Aap() { int y=1; skip; run Noot(); x=2; x>2 && y==1; skip; } Can only become executable if a some other process makes x greater than 2. Executable if Noot can be created… Statements are separated by a semi-colon: “;”.
28
29
Thursday 11-Apr-2002 Theo C. Ruys - SPIN Beginners' Tutorial 45
Basic SPIN behaviour of the processes: local variables + statements can be accessed by all processes initialises variables and starts processes chan ch = [dim] of {type, …} asynchronous: dim > 0 rendez-vous: dim == 0 mtype, typedefs, constants
30
Thursday 11-Apr-2002 Theo C. Ruys - SPIN Beginners' Tutorial 46
skip always executable assert(<expr>) always executable expression executable if not zero assignment always executable if executable if at least one guard is executable do executable if at least one guard is executable break always executable (exits do-statement) send (ch!) executable if channel ch is not full receive (ch?) executable if channel ch is not empty
are either executable
Basic SPIN
31
Thursday 11-Apr-2002 Theo C. Ruys - SPIN Beginners' Tutorial 58
Promela models. This is useful to define: – constants – macros – conditional Promela model fragments
All cpp commands start with a hash: #define, #ifdef, #include, etc.
#define MAX 4 #define RESET_ARRAY(a) \ d_step { a[0]=0; a[1]=0; a[2]=0; a[3]=0; } #define LOSSY 1 … #ifdef LOSSY active proctype Daemon() { /* steal messages */ } #endif
32
33
#define cooling 0 #define heating 1 proctype thermalStat(byte temp) { byte state = cooling; bool heaton = false; bool heatoff = false; do :: state==cooling && temp <= 18 -> heaton = true; heatoff = false; state = heating; :: state==heating && temp >= 22 -> heaton = false; heatoff = true; state = cooling;
} proctype thermalStat(byte temp) { bool heaton = false; bool heatoff = false; cooling: temp <= 18 -> heaton = true; heatoff = false; goto heating; heating: temp >= 22 -> heaton = false; heatoff = true; goto cooling; }
34
int x = 0; proctype Inc() { do ::true -> if :: (x < 200) -> x = x+1 fi
} proctype Dec() { do :: true -> if :: (x > 0) -> x = x-1 fi
} proctype Reset() {do :: true -> if :: (x == 200) -> x = 0 fi
} proctype Check() { assert (x >= 0 && x <= 200) } init { atomic { run Inc(); run Dec(); run Reset(); run Ceck(); }}
35
36
37
int x = 0; proctype Inc() { do ::true -> if :: (x < 200) -> x = x+1 fi
} proctype Dec() { do :: true -> if :: (x > 0) (x > 0) -> x = x > x = x-1 1 fi
} proctype Reset() {do :: true -> if :: if :: (x == 200) (x == 200) -> x = 0 > x = 0 fi
} proctype Check() { assert (x >= 0 && x <= 200) } init { atomic { run Inc(); run Dec(); run Reset(); run Ceck(); }}
38
int x = 0; proctype Inc() { do ::true -> if :: (x < 200) -> x = x+1 fi
} proctype Dec() { do :: true -> if :: (x > 0) (x > 0) -> x = x > x = x-1 1 fi
} proctype Reset() {do :: true -> if :: if :: (x == 200) (x == 200) -> x = 0 > x = 0 fi
} proctype Check() { assert (x >= 0 && x <= 200) } init { atomic { run Inc(); run Dec(); run Reset(); run Ceck(); }}
39
int x = 0; proctype Inc() { do ::true -> if :: (x < 200) -> x = x+1 fi
} proctype Dec() { do :: true -> if :: (x > 0) (x > 0) -> x = x > x = x-1 1 fi
} proctype Reset() {do :: true -> if :: if :: (x == 200) (x == 200) -> x = 0 > x = 0 fi
} proctype Check() { assert (x >= 0 && x <= 200) } init { atomic { run Inc(); run Dec(); run Reset(); run Ceck(); }}
40
a single step.
is blocked, the sequence is suspended.
41
int x = 0; proctype Inc() { do :: true -> atomic { if :: (x < 200) -> x = x+1 fi }
} proctype Dec() { do :: true -> atomic { if :: (x > 0) -> x = x-1 fi }
} proctype Reset() { do :: true -> atomic { if :: (x == 200) -> x = 0 fi }
} ...
42
43
44
45
46
bit x, y; /* signal entering/leaving the section */ byte mutex; /* # of procs in the critical section. */ byte turn; /* who's turn is it? */ active proctype A() { x = 1; turn = B_TURN; y == 0 || (turn == A_TURN); mutex++; mutex--; x = 0; } active proctype monitor() { assert(mutex != 2); } active proctype B() { y = 1; turn = A_TURN; x == 0 || (turn == B_TURN); mutex++; mutex--; y = 0; } First “software-only” solution to the mutex problem (for two processes).
Can be generalised to a single process.
47
Sender Receiver s2r r2s
s2r!MSG
MSG ACK
s2r?MSG r2s!ACK r2s?ACK
! is sending ? is receiving
48
type of the elements that will be transmitted over the channel number of elements in the channel dim==0 is special case: rendez-vous name of the channel also called: queue or buffer array of channels chan c = [1] of {bit}; chan toR = [2] of {mtype, bit}; chan line[2] = [1] of {mtype, Record};
49
! Sending - putting a message into a channel
ch ! <expr1>, <expr2>, … <exprn>;
channel declaration.
? Receiving - getting a message out of a channel
ch ? <var1>, <var2>, … <varn>;
and the individual parts of the message are stored into the <vari>s.
ch ? <const1>, <const2>, … <constn>;
channel evaluates to the individual <consti>, the statement is executable and the message is removed from the channel. message passing message testing <var> + <const> can be mixed
50
<dim> == 0
chan ch = [0] of {bit, byte};
– P wants to do ch ! 1, 3+7 – Q wants to do ch ? 1, x – Then after the communication, x will have the value 10.
51
52 1
mtype { red, yellow, green };
2
chan ch = [0] of { mtype, byte, bool };
3 4
active proctype Sender() {
5
ch ! red, 20, false;
6
printf("Sent message\n")
7
}
8 9
active proctype Receiver() {
10
mtype color;
11
byte time;
12
bool flash;
13
ch ? color, time, flash;
14
printf("Received message %e, %d, %d\n",
15
color, time, flash)
16
}
. . .
(green,20,false)
. . . . . .
(color,time,flash)
. . .
Receiver
re red
53 1
mtype { red, yellow, green };
2
chan ch = [0] of { mtype, byte, bool };
3 4
active proctype Sender() {
5
ch ! red, 20, false;
6
printf("Sent message\n")
7
}
8 9
active proctype Receiver() {
10
mtype color;
11
byte time;
12
bool flash;
13
ch ? color, time, flash;
14
printf("Received message %e, %d, %d\n",
15
color, time, flash)
16
}
. . .
(green,20,false)
. . . . . .
(color,time,flash)
. . .
Receiver
re red
54 1
mtype { red, yellow, green };
2
chan ch = [0] of { mtype, byte, bool };
3 4
active proctype Sender() {
5
ch ! red, 20, false;
6
printf("Sent message\n")
7
}
8 9
active proctype Receiver() {
10
mtype color;
11
byte time;
12
bool flash;
13
ch ? color, time, flash;
14
printf("Received message %e, %d, %d\n",
15
color, time, flash)
16
}
. . .
(green,20,false)
. . . . . .
(color,time,flash)
. . .
Receiver
re red
55 1
mtype { red, yellow, green };
2
chan ch = [0] of { mtype, byte, bool };
3 4
active proctype Sender() {
5
ch ! red, 20, false;
6
printf("Sent message\n")
7
}
8 9
active proctype Receiver() {
10
mtype color;
11
byte time;
12
bool flash;
13
ch ? color, time, flash;
14
printf("Received message %e, %d, %d\n",
15
color, time, flash)
16
}
. . .
(green,20,false)
. . . . . .
(color,time,flash)
. . .
Receiver
re red
56
57
✲
✲
❄
❄
58
59
pan:1: invalid end state (at depth 188) pan: wrote hw3-p2.pml.trail (Spin Version 6.2.5 -- 3 May 2013) Warning: Search not completed Full statespace search for: never claim
assertion violations + cycle checks
invalid end states + State-vector 36 byte, depth reached 263, errors: 1 453 states, stored 192 states, matched 645 transitions (= stored+matched) 65 atomic steps hash conflicts: 0 (resolved) Stats on memory usage (in Megabytes): 0.024 equivalent memory usage for states (stored*(State-vector + overhead)) 0.285 actual memory usage for states 128.000 memory used for hash table (-w24) 0.458 memory used for DFS stack (-m10000) 128.653 total actual memory usage
60
61
62
63
(M includes all execution traces)
64
– “nothing bad ever happens” – invariant x is always less than 5 – deadlock freedom the system never reaches a state where no actions are possible – SPIN: find a trace leading to the “bad” thing. If there is not such a trace, the property is satisfied.
– “something good will eventually happen” – termination the system will eventually terminate – response if action X occurs then eventually action Y will occur – SPIN: find a (infinite) loop in which the “good” thing does not
loop, the property is satisfied.
65
Xspin contains a special “LTL Manager” to edit, save and load LTL properties.
66
67
68