-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathSpec.v
306 lines (268 loc) · 11.9 KB
/
Spec.v
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
(*
This file is part of the verified smart contract project of SECBIT Labs.
Copyright 2018 SECBIT Labs
Author: Even Lu
This program is free software: you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public License
as published by the Free Software Foundation, either version 3 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
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*)
Require Export Model.
Require Export Lists.List.
(*
A specification of a function consists of:
1) [spec_require] requirements via the `require()` calls
2) [spec_events ] events generated via event calls
3) [spec_trans ] state transition done by the function
*)
Record Spec: Type :=
mk_spec {
spec_require: state -> Prop;
spec_events: state -> eventlist -> Prop;
spec_trans: state -> state -> Prop
}.
Definition funcspec_BurnableToken (ia: uint256) (name: string) (dec: uint8) (sym: string) :=
fun (this: address)(env: env)(msg: message) =>
(mk_spec
(fun S: state => ia <= MAX_UINT256)
(fun S E => E = (ev_BurnableToken this ia name dec sym)::nil)
(fun S S': state => st_totalSupply S' = ia
/\ st_balances S' = $0 $+{(m_sender msg) <- ia}
/\ st_symbol S' = sym
/\ st_name S' = name
/\ st_decimals S' = dec
/\ st_allowed S' = $0
)
).
Definition funcspec_totalSupply :=
fun (this: address) (env: env) (msg: message) =>
(mk_spec
(fun S: state => True)
(fun S E => E = (ev_return _ (st_totalSupply S)) :: nil)
(fun S S': state => S = S')
).
Definition funcspec_transfer(to: address)(value: value):=
fun (this: address) (env: env) (msg: message) =>
(
mk_spec
(fun S: state =>
(st_balances S (m_sender msg )) >= value /\
((m_sender msg = to) \/ (m_sender msg <> to /\ st_balances S to <= MAX_UINT256 - value)))
(fun S E => E = (ev_Transfer (m_sender msg) (m_sender msg) to value)::(ev_return _ True)::nil)
(fun S S': state =>st_totalSupply S = st_totalSupply S'
/\ st_symbol S' = st_symbol S
/\ st_name S' = st_name S
/\ st_decimals S' = st_decimals S
/\ st_allowed S' = st_allowed S
/\ st_balances S' = (st_balances S) $+{(m_sender msg) <- -= value } $+{ to <- += value } )
).
Definition funcspec_transferFrom_1
(from: address)
(to: address)
(value: value) :=
fun (this: address) (env: env) (msg: message) =>
(mk_spec
(fun S : state =>
(* require(balances[_from] >= _value); *)
st_balances S from >= value /\
(* require(_from == _to || balances[_to] <= MAX_UINT256 - _value); *)
((from = to) \/ (from <> to /\ st_balances S to <= MAX_UINT256 - value)) /\
(* require(allowance >= _value); *)
st_allowed S (from, m_sender msg) >= value /\
(* allowance < MAX_UINT256 *)
st_allowed S (from, m_sender msg) < MAX_UINT256
)
(* emit Transfer(_from, _to, _value); *)
(* return True; *)
(fun S E => E = (ev_Transfer (m_sender msg) from to value) :: (ev_return _ True) :: nil)
(* State transition: *)
(fun S S' : state =>
(* Unchanged. *)
st_totalSupply S' = st_totalSupply S /\
st_name S' = st_name S /\
st_decimals S' = st_decimals S /\
st_symbol S' = st_symbol S /\
(* balances[_from] -= _value; *)
st_balances S' = (st_balances S) $+{ from <- -= value }
(* balances[_to] += _value; *)
$+{ to <- += value } /\
(* allowed[_from][msg.sender] -= _value; *)
st_allowed S' = (st_allowed S) $+{ from, m_sender msg <- -= value }
)
).
Definition funcspec_transferFrom_2
(from: address)
(to: address)
(value: value) :=
fun (this: address) (env: env) (msg: message) =>
(mk_spec
(fun S : state =>
(* require(balances[_from] >= _value); *)
st_balances S from >= value /\
(* require(_from == _to || balances[_to] <= MAX_UINT256 - _value); *)
((from = to) \/ (from <> to /\ st_balances S to <= MAX_UINT256 - value)) /\
(* require(allowance >= _value); *)
st_allowed S (from, m_sender msg) >= value /\
(* allowance = MAX_UINT256 *)
st_allowed S (from, m_sender msg) = MAX_UINT256)
(* emit Transfer(_from, _to, _value); *)
(* return True; *)
(fun S E => E = (ev_Transfer (m_sender msg) from to value) :: (ev_return _ True) :: nil)
(* State transition: *)
(fun S S' : state =>
(* Unchanged. *)
st_totalSupply S' = st_totalSupply S /\
st_name S' = st_name S /\
st_decimals S' = st_decimals S /\
st_symbol S' = st_symbol S /\
(* balances[_from] -= _value; *)
st_balances S' = (st_balances S) $+{ from <- -= value }
(* balances[_to] += _value; *)
$+{ to <- += value } /\
(* Unchanged. *)
st_allowed S' = st_allowed S
)
).
Definition funcspec_approve
(spender: address)
(value: value) :=
fun (this: address) (env: env) (msg: message) =>
(mk_spec
(* No requirement *)
(fun S : state => True)
(* emit Approval(msg.sender, _spender, _value); *)
(* return True; *)
(fun S E => E = (ev_Approval (m_sender msg) (m_sender msg) spender value) :: (ev_return _ True) :: nil)
(* State transition: *)
(fun S S' : state =>
(* Unchanged. *)
st_totalSupply S' = st_totalSupply S /\
st_name S' = st_name S /\
st_decimals S' = st_decimals S /\
st_symbol S' = st_symbol S /\
st_balances S' = st_balances S /\
(* allowed[msg.sender][_spender] = _value; *)
st_allowed S' = (st_allowed S) $+{ m_sender msg, spender <- value}
)
).
Definition funcspec_allowance (owner: address) (spender: address) :=
fun (this: address) (env: env) (msg: message) =>
(mk_spec
(* No requirement *)
(fun S : state => True)
(* return allowed[_owner][_spender]; *)
(fun S E => E = (ev_return _ (st_allowed S (owner, spender))) :: nil)
(* Unchanged. *)
(fun S S' : state => S' = S)
).
Definition funcspec_balanceOf(owner: address) :=
fun (this: address)(env: env)(msg: message) =>
(mk_spec
(fun S: state => True)
(fun S E => E=((ev_return _ (st_balances S owner)) :: nil))
(fun S S':state => S = S')
).
Definition funcspec_Burn(value: value):=
fun (this: address) (env: env) (msg: message) =>
(mk_spec
(fun S: state => value <= st_balances S (m_sender msg) /\ value <= st_totalSupply S)
(fun S E => E = (ev_Burn (m_sender msg) (m_sender msg) value):: (ev_Transfer (m_sender msg) (m_sender msg) 0 value) :: nil)
(fun S S': state => st_totalSupply S' = st_totalSupply S - value
/\ st_balances S' = (st_balances S) $+{(m_sender msg) <- -= value }
/\ st_symbol S' = st_symbol S
/\ st_name S' = st_name S
/\ st_decimals S' = st_decimals S
/\ st_allowed S' = st_allowed S
)
).
Inductive create : env -> contract -> eventlist -> Prop :=
| create_BasicToken : forall env msg S C E sender ia name dec sym spec preP evP postP,
msg = mk_msg sender (mc_BurnableToken ia name dec sym) 0
-> spec = funcspec_BurnableToken ia name dec sym (w_a C) env msg
-> preP = spec_require spec
-> evP = spec_events spec
-> postP = spec_trans spec
-> preP (w_st C) /\ evP S E /\ postP S (w_st C)
-> create env C E.
Inductive step : env -> contract -> message -> contract -> eventlist -> Prop :=
| step_transfer: forall env msg C C' E' sender to v spec preP evP postP,
w_a C = w_a C'
-> msg = mk_msg sender (mc_transfer to v) 0
-> spec = funcspec_transfer to v (w_a C) env msg
-> preP = spec_require spec
-> evP = spec_events spec
-> postP = spec_trans spec
-> preP (w_st C) /\ evP (w_st C) E' /\ postP (w_st C) (w_st C')
-> step env C msg C' E'
| step_transferFrom_1 : forall env sender msg from to v spec C C' E' ,
w_a C = w_a C'
-> msg = mk_msg sender (mc_transferFrom from to v) 0
-> spec = funcspec_transferFrom_1 from to v (w_a C) env msg
-> (spec_require spec) (w_st C) /\ (spec_events spec) (w_st C) E' /\ (spec_trans spec) (w_st C) (w_st C')
-> step env C msg C' E'
| step_transferFrom_2 : forall env sender msg from to v spec C C' E' ,
w_a C = w_a C'
-> msg = mk_msg sender (mc_transferFrom from to v) 0
-> spec = funcspec_transferFrom_2 from to v (w_a C) env msg
-> (spec_require spec) (w_st C) /\ (spec_events spec) (w_st C) E' /\ (spec_trans spec) (w_st C) (w_st C')
-> step env C msg C' E'
| step_balanceOf : forall env sender msg owner spec C C' E' preP evP postP,
w_a C = w_a C'
-> msg = mk_msg sender (mc_balanceOf owner) 0
-> spec = funcspec_balanceOf owner (w_a C) env msg
-> preP = spec_require spec
-> evP = spec_events spec
-> postP = spec_trans spec
-> preP (w_st C) /\ evP (w_st C) E' /\ postP (w_st C) (w_st C')
-> step env C msg C' E'
| step_approve : forall env sender msg spender v spec C C' E' ,
w_a C = w_a C'
-> msg = mk_msg sender (mc_approve spender v) 0
-> spec = funcspec_approve spender v (w_a C) env msg
-> (spec_require spec) (w_st C) /\ (spec_events spec) (w_st C) E' /\ (spec_trans spec) (w_st C) (w_st C')
-> step env C msg C' E'
| step_allowance : forall env sender msg owner spender spec C C' E' ,
w_a C = w_a C'
-> msg = mk_msg sender (mc_allowance owner spender) 0
-> spec = funcspec_allowance owner spender (w_a C) env msg
-> (spec_require spec) (w_st C) /\ (spec_events spec) (w_st C) E' /\ (spec_trans spec) (w_st C) (w_st C')
-> step env C msg C' E'
| step_totalSupply: forall env msg C C' E' sender spec preP evP postP,
w_a C = w_a C'
-> msg = mk_msg sender mc_totalSupply 0
-> spec = funcspec_totalSupply (w_a C) env msg
-> preP = spec_require spec
-> evP = spec_events spec
-> postP = spec_trans spec
-> preP (w_st C) /\ evP (w_st C) E' /\ postP (w_st C) (w_st C')
-> step env C msg C' E'
| step_Burn: forall env msg C C' E' sender v spec preP evP postP,
w_a C = w_a C'
-> msg = mk_msg sender (mc_burn v) 0
-> spec = funcspec_Burn v (w_a C) env msg
-> preP = spec_require spec
-> evP = spec_events spec
-> postP = spec_trans spec
-> preP (w_st C) /\ evP (w_st C) E' /\ postP (w_st C) (w_st C')
-> step env C msg C' E'
.
Definition env_step (env1: env) (env2: env) : Prop :=
env_time env2 >= env_time env1
/\ env_bhash env2 <> env_bhash env1.
Fixpoint steps (env: env) (C: contract) (ml: list message) (env': Model.env) (C': contract) (E: eventlist) :Prop :=
match ml with
| nil => C' = C /\ E = nil /\ env = env'
| cons msg ml => exists env'', exists C'', exists E'', exists E',
step env C msg C'' E'' /\ steps env'' C'' ml env' C' E'
/\ E = E'' ++ E'
/\ env_step env env''
end.
Definition run (env: env) (C: contract) (ml: list message) (C': contract) (E: eventlist) :Prop :=
exists env',
steps env C ml env' C' E.