Skip to content

v0.5.0

Compare
Choose a tag to compare
@montyly montyly released this 14 Jan 20:05
· 3836 commits to master since this release

0.5.0 - 2019-01-14

This release adds support for static single assignment (SSA) to SlithIR for both local and state variables. The use of SSA facilitates the tracking data dependencies and will enable more precise detectors. There are three new detectors: incorrect-equality, shadowing-builtin, shadowing-local, and one new printer: cfg. Detection of reentrancy was improved and now has three levels of severity. This release also includes bugfixes and lowers the rate of false positives for several detectors.

Thanks to our external contributors @mrice32 and @ptare for their numerous bug reports.

Added

  • Detectors:
    • incorrect-equality: Dangerous strict equalities, such as this.balance == 0 ether.
    • shadowing-builtin: Shadowing of builtin symbols
    • shadowing-local: Local variables shadowing the contract's elements
  • SSA on SlithIR:
    • Add Phi operator
    • Add LocalIRVariable and StateIRVariable (they contain the SSA index)
    • Follow Cooper, Harvey, Kennedy to compute minimal SSA
    • Add additional Phi operators at function entrance and after external calls to handle state variables
  • Alias Analysis to track storage references
  • Integrate alias analysis info into the SSA engine for precise SSA construction (note there is a limitation: alias analysis is not yet interprocedural and has no support for functions returning a storage reference)
  • Add new printer: cfg, which exports the CFG of each function (8452b32)
  • Add dominators information
    • List of dominator nodes
    • Dominator tree
    • Dominance frontier

Changed

  • The reentrancy detector is split into three variants to facilitate the triage of results:
    • reentrancy-eth: theft of ether and read before writing (high severity)
    • reentrancy-no-eth: no theft of ether and read before writing (medium severity)
    • reentrancy-benign: no read before writing (low severity)
  • The data dependency is now computed using the SSA
  • Multiple new contract and function helpers (b549a3e, 57a0918, a704635)
  • Improve subdenomination support (ether, wei, days, ..) bdca730
  • Lower false positive for several detectors:

Bugfixes

  • Incorrect return nested array #121,
  • Support for empty tuple in return 7813fdf
  • Support for implicit uint256->int256 conversion on function matching #120
  • Support ternary in return statement #115