Skip to content

Commit

Permalink
Optimise forking when there is only 1 solution (#2527)
Browse files Browse the repository at this point in the history
* Optimise forking when there is only 1 solution

* Update etherum test

* Add test for forking on a unique solution

* Replace strlen test with dedicated fork test

* Fix typo

* Fix output filename in test
  • Loading branch information
Boyan-MILANOV committed Feb 17, 2022
1 parent 49f7ebc commit 6212a7a
Show file tree
Hide file tree
Showing 4 changed files with 73 additions and 19 deletions.
54 changes: 36 additions & 18 deletions manticore/core/manticore.py
Original file line number Diff line number Diff line change
Expand Up @@ -523,30 +523,48 @@ def setstate(x, y):

self._publish("will_fork_state", state, expression, solutions, policy)

# Build and enqueue a state for each solution
# Create new states
children = []
for new_value in solutions:
with state as new_state:
new_state.constrain(expression == new_value)
if len(solutions) == 1:
# If only one solution don't copy the state but update the current
# state instead
# Add state constraint
new_value = solutions[0]
state.constrain(expression == new_value)
setstate(state, new_value)

# Put the state back in ready list
self._put_state(state) # Doesn't change state id
self._publish("did_fork_state", state, expression, solutions, policy, [])

# Remove the state from busy list
with self._lock:
self._busy_states.remove(state.id)
self._lock.notify_all()
else:
# Build and enqueue a state for each solution
for new_value in solutions:
with state as new_state:
new_state.constrain(expression == new_value)

# and set the PC of the new state to the concrete pc-dest
# (or other register or memory address to concrete)
setstate(new_state, new_value)
# and set the PC of the new state to the concrete pc-dest
# (or other register or memory address to concrete)
setstate(new_state, new_value)

# enqueue new_state, assign new state id
new_state_id = self._put_state(new_state)
# enqueue new_state, assign new state id
new_state_id = self._put_state(new_state)

# maintain a list of children for logging purpose
children.append(new_state_id)
# maintain a list of children for logging purpose
children.append(new_state_id)

self._publish("did_fork_state", state, expression, solutions, policy, children)
logger.debug("Forking current state %r into states %r", state.id, children)
self._publish("did_fork_state", state, expression, solutions, policy, children)
logger.debug("Forking current state %r into states %r", state.id, children)

with self._lock:
self._busy_states.remove(state.id)
self._remove(state.id)
state._id = None
self._lock.notify_all()
with self._lock:
self._busy_states.remove(state.id)
self._remove(state.id)
state._id = None
self._lock.notify_all()

@staticmethod
@deprecated("Use utils.log.set_verbosity instead.")
Expand Down
2 changes: 1 addition & 1 deletion tests/ethereum/test_general.py
Original file line number Diff line number Diff line change
Expand Up @@ -779,7 +779,7 @@ def test_gen_testcase_only_if(self):
for ext in ("summary", "constraints", "pkl", "tx.json", "tx", "trace", "logs")
}

expected_files.add("state_00000001.pkl")
expected_files.add("state_00000000.pkl")

actual_files = set((fn for fn in os.listdir(self.mevm.workspace) if not fn.startswith(".")))
self.assertEqual(actual_files, expected_files)
Expand Down
1 change: 1 addition & 0 deletions tests/native/test_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
issymbolic,
ArraySelect,
BitVecITE,
ArrayProxy,
)
from manticore.native.state import State
from manticore.platforms import linux
Expand Down
35 changes: 35 additions & 0 deletions tests/other/test_fork.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
import unittest
import tempfile
from manticore.native import Manticore
from manticore.core.state import Concretize
from pathlib import Path
from glob import glob


class TestFork(unittest.TestCase):
def test_fork_unique_solution(self):
binary = str(
Path(__file__).parent.parent.parent.joinpath(
"tests", "native", "binaries", "hello_world"
)
)
tmp_dir = tempfile.TemporaryDirectory(prefix="mcore_test_fork_")
m = Manticore(binary, stdin_size=10, workspace_url=str(tmp_dir.name))

@m.hook(0x3E50) # Entrypoint
def concretize_var(state):
# Concretize symbolic var that has only 1 solution
var = BitVecVariable(size=32, name="bar")
state.constrain(var == 5)
raise Concretize(var)

m.run()
m.finalize()

# Check that no additional state was created when forking
states = f"{str(m.workspace)}/test_*.pkl"
self.assertEqual(len(glob(states)), 1)


if __name__ == "__main__":
unittest.main()

0 comments on commit 6212a7a

Please sign in to comment.