1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//    http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
use std::{fmt};
use crate::{Instruction,Instruction::*};
use crate::{AbstractState};
use crate::dfa::{AbstractValue,AbstractStack,BOTTOM_STACK,EMPTY_STACK};
use crate::util;
use crate::util::Interval;

const MAX_CODE_SIZE : u128 = 24576;
const UNKNOWN : AbstractValue = AbstractValue::Unknown;

// ============================================================================
// Disassembly Context
// ============================================================================

#[derive(Debug,PartialEq)]
pub struct CfaState {
    stack: AbstractStack
}

impl CfaState {
    pub fn new(stack: AbstractStack) -> Self {
        // Done
        Self{stack}
    }
    pub fn is_bottom(&self) -> bool {
        self.stack.is_bottom()
    }
    pub fn len(&self) -> Interval {
        self.stack.len()
    }
    pub fn push(self, val: AbstractValue) -> Self {
        CfaState::new(self.stack.push(val))
    }
    pub fn pop(mut self, n: usize) -> Self {
        assert!(n > 0);
        let mut stack = self.stack;
        for i in 0..n {
            stack = stack.pop();
        }
        CfaState::new(stack)
    }
    pub fn set(self, n:usize, val: AbstractValue) -> Self {
        CfaState::new(self.stack.set(n,val))
    }
}

impl Clone for CfaState {
    fn clone(&self) -> Self {
        CfaState::new(self.stack.clone())
    }
}

impl fmt::Display for CfaState {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f,"{}",self.stack)
    }
}

impl AbstractState for CfaState {
    fn is_reachable(&self) -> bool { !self.stack.is_bottom() }

    fn branch(&self, _pc: usize, insn: &Instruction) -> Self {
        match insn {
            JUMPI => self.clone().pop(2),
            JUMP => self.clone().pop(1),
            _ => {
                unreachable!()
            }
        }
    }

    fn peek(&self, n: usize) -> AbstractValue {
        self.stack.peek(n)
    }

    fn merge(&mut self, other: Self) -> bool {
        if *self != other {
            if !other.is_bottom() {
                if self.is_bottom() {
                    *self = other;
                    return true;
                } else {
                    return self.stack.merge_into(&other.stack);
                }
            }
        }
        false
    }

    fn bottom() -> Self { CfaState::new(BOTTOM_STACK) }

    fn origin() -> Self {
        CfaState::new(EMPTY_STACK)
    }

    // ============================================================================
    // Abstract Instruction Semantics (stack)
    // ============================================================================

    /// Update an abstract state with the effects of a given instruction.
    fn transfer(self, insn: &Instruction) -> CfaState {
        match insn {
            STOP => CfaState::bottom(),
            // 0s: Stop and Arithmetic Operations
            ADD|MUL|SUB|DIV|SDIV|MOD|SMOD|EXP|SIGNEXTEND => {
                self.pop(2).push(UNKNOWN)
            }
            ADDMOD|MULMOD => {
                self.pop(3).push(UNKNOWN)
            }
            // 0s: Stop and Arithmetic Operations
            ISZERO|NOT => {
                self.pop(1).push(UNKNOWN)
            }
            // Binary Comparators
            LT|GT|SLT|SGT|EQ => {
                self.pop(2).push(UNKNOWN)
            }
            // Binary bitwise operators
            AND|OR|XOR|BYTE|SHL|SHR|SAR => {
                self.pop(2).push(UNKNOWN)
            }
            // 20s: Keccak256
            KECCAK256 => {
                // NOTE: there is some kind of compiler bug which is
                // preventing me from putting this case in the
                // expected position.
                self.pop(2).push(UNKNOWN)
            }
            // 30s: Environmental Information
            ADDRESS => self.push(UNKNOWN),
            BALANCE => self.pop(1).push(UNKNOWN),
            ORIGIN => self.push(UNKNOWN),
            CALLER => self.push(UNKNOWN),
            CALLVALUE => self.push(UNKNOWN),
            CALLDATALOAD => self.pop(1).push(UNKNOWN),
            CALLDATASIZE => self.push(UNKNOWN),
            CALLDATACOPY => self.pop(3),
            CODESIZE => self.push(UNKNOWN),
            CODECOPY => self.pop(3),
            GASPRICE => self.push(UNKNOWN),
            EXTCODESIZE => self.pop(1).push(UNKNOWN),
            EXTCODECOPY => self.pop(4),
            RETURNDATASIZE => self.push(UNKNOWN),
            RETURNDATACOPY => self.pop(3),
            EXTCODEHASH => self.pop(1).push(UNKNOWN),
            // 40s: Block Information
            BLOCKHASH => self.pop(1).push(UNKNOWN),
            COINBASE => self.push(UNKNOWN),
            TIMESTAMP => self.push(UNKNOWN),
            NUMBER   => self.push(UNKNOWN),
            DIFFICULTY => self.push(UNKNOWN),
            GASLIMIT => self.push(UNKNOWN),
            CHAINID => self.push(UNKNOWN),
            SELFBALANCE => self.push(UNKNOWN),
            // 50s: Stack, Memory, Storage and Flow Operations
            POP => self.pop(1),
            MLOAD => self.pop(1).push(UNKNOWN),
            MSTORE|MSTORE8 => self.pop(2),
            SLOAD => self.pop(1).push(UNKNOWN),
            SSTORE => self.pop(2),
            JUMPI => self.pop(2),
            PC|MSIZE|GAS => self.push(UNKNOWN),
            JUMPDEST(_) => self, // nop
            // 60 & 70s: Push Operations
            PUSH(bytes) => {
                let n = util::from_be_bytes(&bytes);
                if n <= MAX_CODE_SIZE {
                    self.push(AbstractValue::Known(n as usize))
                } else {
                    self.push(UNKNOWN)
                }
            }
            // 80s: Duplicate Operations
            DUP(n) => {
                let m = (*n - 1) as usize;
                let nth = self.peek(m);
                self.push(nth)
            }
            // 90s: Exchange Operations
            SWAP(n) => {
                let m = *n as usize;
                let x = self.peek(m);
                let y = self.peek(0);
                self.set(0,x).set(m,y)
            }
            // a0s: Logging Operations
            LOG(n) => {
                self.pop((n+2) as usize)
            }
            // f0s: System Operations
            CREATE => self.pop(3).push(UNKNOWN),
            CALL|CALLCODE => self.pop(7).push(UNKNOWN),
            DELEGATECALL|STATICCALL => self.pop(6).push(UNKNOWN),
            CREATE2 => self.pop(4).push(UNKNOWN),
            INVALID|JUMP|RETURN|REVERT => {
                CfaState::bottom()
            }
            SELFDESTRUCT => self.pop(1),
            _ => {
                // This is a catch all to ensure no instructions are
                // missed above.
                panic!("unknown instruction ({:?})",insn);
            }
        }
    }
}