Debugging Failing Proofs
Tips and tricks for running Kontrol and debugging failing proofs
When a proof fails in Kontrol, there are several strategies you can use to debug and potentially resolve the issue. Here are some common approaches:
Inspecting the KCFG
Inspect the KCFG for branching.
If there is branching, check if the branching condition is
trueorfalse:Try to figure out the simplifications to discharge it, as described in as described in the KEVM Lemmas section. To do this efficiently, one needs to be familiar with existing simplifications.
Add the simplifications and create a claim in the form
runLemma => doneLemmathat demonstrably simplifies the branching condition.Remove the branching node from the
kcfgusingkontrol remove-nodeRerun Kontrol and repeat from step 1.
Decoding KEVM expressions
The following tips might be useful when inspecting branching conditions or nodes in the KCFG. If you don't know where an expression comes from, this might help figuring out what they mean and what part of the Solidity code they correspond to:
Solidity uses bitwise expressions, such as
maxUInt160 &Int X, to extract a variable with a specific number of bits from a larger word. The number of bits can often provide a clue about the type of the variable. For example,maxUInt160typically represents an address, whilemaxUInt8represents abooleanvalue.When using the
symbolicStoragecheatcode, you may encounter expressions like#lookup(?STORAGE0:Map, 6). This expression accesses storage slot 6 of the symbolic storage represented by theSTORAGE0variable. If you want to determine which storage variable this expression corresponds to, you can follow these steps:First, ascertain the contract that
STORAGE0corresponds to.The first call of
symbolicStoragecreates the symbolic variableSTORAGE, followed bySTORAGE0,STORAGE1,STORAGE2,STORAGE3, and so on. Therefore, you can use the order in whichsymbolicStoragewas called in each contract to map each variable to its contract.Another option is to check the
<accounts>cell in theKEVMconfiguration. In each<account>, the<acctId>cell contains the address of the contract, and the<storage>cell contains the storage. If you know the address of each contract, you can map it to the storage variable.
Next, determine which variable corresponds to storage slot 6.
The easiest way to do this is by calling
forge inspect ContractName storage, whereContractNamerepresents the contract identified in the previous step. This command will output aJSONresult, with thestoragefield containing a list of all storage slots in the contract. The label of each slot corresponds to the name of the storage variable.
Some storage slots contain more than one variable at different offsets. If your expression is, for example,
#lookup ( ?STORAGE0:Map , 6 ) >>Int 8, this means it is offsetting the storage slot by 8 bits, or 1 byte. In the previous step, you should look for the variable at that storage slot with offset 1.
Use Debugger
If you need to understand why the memory looks a certain way at a certain point during execution, you can use Simbolik or Forge debuggers.
The debugger can be used to set breakpoints and step through the EVM code to observe how the memory changes. This can be particularly useful to understand details about the Solidity memory layout that may not be well-documented.
Adjusting SMT Solver Settings
Increasing Timeout
If the proof is timing out, you can increase the SMT solver timeout:
kontrol prove --smt-timeout 5000 # Timeout in millisecondsThe default timeout is 1000ms. Increasing this value gives the solver more time to find a solution, but be aware that it will make the verification process slower.
Changing SMT Tactics
Different SMT tactics can be more effective for different types of proofs:
# Use qfnra-nlsat tactic (good for non-linear arithmetic)
kontrol prove --smt-tactic '(check-sat-using qfnra-nlsat)'
# Use default smt tactic
kontrol prove --smt-tactic '(check-sat-using smt)'Experiment with different tactics to find what works best for your specific proof.
Handling Overflows
Using Assumptions
For arithmetic operations that might overflow, you can add assumptions to constrain the values:
function testNoOverflow() public {
uint256 x = vm.freshUInt(256, "x");
uint256 y = vm.freshUInt(256, "y");
// Add assumption to prevent overflow
vm.assume(x <= type(uint256).max - y);
uint256 sum = x + y;
// Your assertions here
}Using Unchecked Blocks
For operations where overflow is expected or acceptable, use unchecked blocks:
function testWithOverflow() public {
uint256 x = vm.freshUInt(256, "x");
uint256 y = vm.freshUInt(256, "y");
unchecked {
uint256 sum = x + y;
// Your assertions here
}
}Using K Lemmas
For more complex cases, you can explore defining K lemmas as described in Advancing Proofs.
Other Debugging Tips
Simplify the Proof
If
kontrol provehangs during an execute step (no response for hours) or it crashes becausekore-rpcreturned an empty response, it may be caused by the configuration becoming too large.Use
kontrol showorkontrol view-kcfgto check if nodes have abnormally large expressions in any of the cells and consider writing lemmas to simplify themBreak down complex proofs into smaller, more manageable parts
Verify individual components before combining them
Use concrete values for some variables to reduce complexity
Check Path Conditions
Use
kontrol view-kcfgto inspect the control flow graphLook for unexpected branching conditions
Verify that all paths are being explored as expected
Check for branching on whether a symbolic address is in the
<accounts>cell (an example is shown in this issue):This can be resolved by adding one
vm.assume(symbolicAddress != ...)for each of the preexisting addresses. These addresses should correspond to:the test contract address
the cheatcodes contract address
the address of any other contracts deployed within the test.
Look for branching caused by short-circuit operators such as
&&and||While using these operators shouldn't be causing a failure, they introduce branching when evaluated
Reduce Symbolic Variables
Limit the range of symbolic variables
Add more constraints to reduce the search space
Use Lemmas
Create and prove lemmas for complex properties and arithmetic expressions
Use lemmas to break down the proof into smaller steps
When adding a new lemma to remove an unnecessary branch, be sure to delete the
splitnode from theKCFGbefore continuing. Otherwise, both branches will still exist, but the unnecessary one will simplify to#Bottom
Check Storage Layout
Verify that storage slots are being accessed correctly
Ensure that storage updates are happening in the expected order
Check for potential storage collisions
Debugging formal verification proofs often requires a combination of these approaches. Start with the simplest solution and gradually move to more complex ones if needed.
Last updated
Was this helpful?