Manticore 0.3.0
0.3.0 - 2019-06-06
Thanks to our external contributors!
Major Changes
Executor Refactor (#1385)
We've completed a major refactor of the core executor that reorganizes Manticore's state machine to be more amenable toward use with the multiprocesssing module. This refactor introduces some small API changes:
- One must explicitly call the
finalize
method to dump test cases from a run - The
will_start_run
event has been renamed towill_run
- The
solver
module requires explicitly accessing the Z3Solver singleton.from manticore.core.smtlib import solver
becomes:
from manticore.core.smtlib.solver import Z3Solver
solver = Z3Solver.instance()
manticore.running_states
has been renamed tomanticore._busy_states
For more information about changes to the state machine, see the diagram in core/manticore.py
Blacken (#1438)
We've run the black
autoformatter on the master branch of Manticore, and added a check for compliance to our CI. To ensure your code is properly formatted, run black -t py36 -l 100 .
in your Manticore directory before committing.
Support for statically-linked AArch64 binaries (#1424)
Contractor nkaretnikov spent several months adding support for AArch64 on Linux. As this is a brand new architecture, we've left in most of the debugging assertions, which may slow it down slightly.
We look forward to getting feedback on this architecture so we can eventually remove the debugging assertions.
Ethereum
- Added Symbolic EVM Tests for the Frontier fork. Note that we don't support any other forks (i.e. Constantinople) yet. (#1431, #1441)
- [fixed API] Fixed relative paths for .sol files (#1393)
- [fixed API] Support dynamic parameters in constructors (#1414)
- Fixed detector failure when PC is symbolic (#1395)
- Transfers from etherless contracts no longer report STOP (#1392)
Native
- Added stubs for missing system calls & downgraded most missing calls from exceptions to warnings (#1384)
- Fixed DECREE magic pages (#1413)
- Store x86 registers in a set instead of a list (#1415)
- Fix register boundary check for non-x86 architectures (#1429)
- Support
movhps
on x86 (#1444)