This repo contains the formal specification and verification of multicollateral dai.
The behavior of the contracts is specified in a literate format at dss.md, which generates a series of reachability claims, defining succeeding
and reverting
behavior for each function of each contract. These reachability claims are then tested against the formal semantics of the EVM using the klab tool for interactive proof inspection and debugging.
An html version of the specification, together with links to in-browser symbolic execution previews, is available at dapp.ci/k-dss
- klab. Installation instructions can be found at klab.
git clone [email protected]:dapphub/k-dss.git
make
This will download and build the target contracts in dss/
, and compile the literate specifications in src/
to K specifications, saving the results in out/specs
.
To run a proof with klab, try:
klab prove --dump out/specs/proof-Vat_dai_pass_rough.k
After it finishes, you can open an interactive debug session to exploring the success behaviour of the dai()
method of the contract Vat
:
klab debug $(klab hash out/specs/proof-Vat_dai_pass_rough.k)
If you aren't interested in exploring with the debugger, you can omit the --dump
flag for better performance.
You can inspect the current state of the proofs in the CI running at dapp.ci.
To build the literate specification in HTML, run make doc
. The output of this process is available at dapp.ci/k-dss.
The format used in dss.md provides a concise way of specifying the behavior of a contract method (see act-mode for a simple emacs major mode for .act
specs).
Let's break down the specification of the behavior of the function heal
in the contract Vat
:
behaviour heal of Vat
interface heal(bytes32 u, bytes32 v, int256 rad)
types
Can : uint256
Dai_v : uint256
Sin_u : uint256
Debt : uint256
Vice : uint256
storage
#Vat.wards(CALLER_ID) |-> Can
#Vat.dai(v) |-> Dai_v => Dai_v - rad
#Vat.sin(u) |-> Sin_u => Sin_u - rad
#Vat.debt |-> Debt => Debt - rad
#Vat.vice |-> Vice => Vice - rad
iff
Can == 1
iff in range uint256
Dai_v - rad
Sin_u - rad
Debt - rad
Vice - rad
This snippet of code will generate two reachability claims, proof-Vat_heal_succ.k
and proof-Vat_heal_fail.k
. Both of these claims will refer to the bytecode of the contract Vat
and use the function signature of heal(bytes32,bytes32,int256)
as the first 4 bytes of calldata (keeping the rest of the calldata abstract). In the success
spec, the conditions under the iff
headers are postulated, while in the fail
spec their negation is.
The interesting part of this particular function happens under the storage
header. The meaning of the line:
#Vat.dai(v) |-> Dai_v => Dai_v - rad
is that in the success
case, the value at the storage location which we call #Vat.dai(v)
will be updated from Dai_v
to Dai_v - rad
.
To prove this reachability claim, the k prover explores all possible execution paths starting from the precondition (whats on the left hand side of a =>
) and the claim is proven if they all end in a state satisfying the postcondition (right hand side of the =>
).
More information about how the K prover and the K Framework in general works can be found at Semantics-Based Program Verifiers for All Languages and a detailed description of the semantics of EVM defined in K is given in KEVM: A Complete Semantics of the Ethereum Virtual Machine.
All applicable work in this repository is licensed under AGPL-3.0. Authors:
- Lev Livnev
- Denis Erfurt
- Martin Lundfall