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
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
use yaxpeax_arch::{Arch, AddressBase, LengthedInstruction};
use yaxpeax_x86::long_mode::{Opcode, Operand, ConditionCode};
use yaxpeax_x86::x86_64;
use arch::x86_64::analyses::data_flow::Location;
use data::modifier::{ModifierExpression, InstructionModifiers};
use data::{Direction, ValueLocations};
use analyses::control_flow::{ControlFlowGraph, Determinant, Target};
use analyses::static_single_assignment::{DefSource, SSA};
use analyses::value_range::ConditionalBoundInference;

pub struct ConditionalInference;

impl ConditionalBoundInference<x86_64, InstructionModifiers<x86_64>> for ConditionalInference {
    fn inferrable_conditional(conditional_instr: &<x86_64 as Arch>::Instruction) -> bool {
        if conditional_instr.opcode().condition().is_none() {
            return false;
        }

        match conditional_instr.control_flow(Option::<&u8>::None).dest {
            Some(Target::Relative(_)) |
            Some(Target::Absolute(_)) => {
                true
            },
            _ => {
                false
            }
        }
    }

    fn conditional_source_for(
        conditional_instr: &<x86_64 as Arch>::Instruction,
        addr: <x86_64 as Arch>::Address,
        dfg: &SSA<x86_64>
    ) -> Option<(<x86_64 as Arch>::Address, DefSource<<x86_64 as Arch>::Address>)> {
        let uses_vec = <x86_64 as ValueLocations>::decompose(conditional_instr);
        let mut uses = uses_vec.iter().filter_map(|(loc, dir)| {
            match (loc, dir) {
                (Some(loc), Direction::Read) => {
                    if crate::arch::x86_64::analyses::data_flow::FLAGS.contains(loc) {
                        Some(loc)
                    } else {
                        None
                    }
                },
                _ => None
            }
        });

        let def_site: Option<&(<x86_64 as Arch>::Address, DefSource<<x86_64 as Arch>::Address>)> = uses.next().and_then(|loc| {
            dfg.try_get_def_site(dfg.get_use(addr, loc.clone()).value)
        });

        while let Some(loc) = uses.next() {
            if def_site != dfg.try_get_def_site(dfg.get_use(addr, loc.clone()).value) {
                return None;
            }
        }

        return def_site.cloned();
    }

    fn infer_conditional_bounds(
        curr_block: <x86_64 as Arch>::Address,
        test_instr: &<x86_64 as Arch>::Instruction,
        test_addr: <x86_64 as Arch>::Address,
        conditional_instr: &<x86_64 as Arch>::Instruction,
        conditional_addr: <x86_64 as Arch>::Address,
        _cfg: &ControlFlowGraph<<x86_64 as Arch>::Address>,
        _dfg: &SSA<x86_64>,
        aux_data: &mut InstructionModifiers<x86_64>,
    ) -> bool {
        if test_addr == 0x140486bad {
            println!("inferring bounds for 0x140486bad");
        }
        let next_addr = conditional_addr + conditional_instr.len();
        let conditional_dest = match conditional_instr.control_flow(Option::<&u8>::None).dest {
            Some(Target::Relative(addr)) => {
                next_addr.wrapping_offset(addr)
            },
            Some(Target::Absolute(addr)) => {
                addr
            },
            Some(_) => {
                // this is some kind of jump to unknown destination
                // TODO: infer something about the known destination
                return false;
            }
            None => {
                // not a conditional branch, so there aren't arms to infer values over
                return false;
            }
        };

        // TODO: revisit how this handles sub-64-bit registers
        // TODO: only support z/nz, g/le/l/ge, a/be/b/ae
        if let Some(cond) = conditional_instr.opcode().condition() {
            // Pair up conditions and their negations, swap destinations to phrase bounds in terms
            // of `bound applied` and `negated bound applied`
            let (bound_dest, negated_bound_dest) = match cond {
                ConditionCode::O |
                ConditionCode::B |
                ConditionCode::Z |
                ConditionCode::A |
                ConditionCode::S |
                ConditionCode::P |
                ConditionCode::L |
                ConditionCode::G => {
                    (conditional_dest, next_addr)
                },
                _ => {
                    (next_addr, conditional_dest)
                }
            };

            if test_addr == 0x140486bad {
                println!("test at 0x140486bad is {:?} with respect to condition {:?}", test_instr, cond);
            }

            match cond {
                ConditionCode::Z |
                ConditionCode::NZ => {
                    match test_instr.opcode() {
                        Opcode::CMP => {
                            // TODO: shouldn't care about dest operand, should be able to just query
                            // dfg for a value.
                            let dest_reg = match test_instr.operand(0) {
                                Operand::Register(r) => r,
                                _ => { return false; } // comparison with non-reg is not yet supported
                            };
                            let imm_src = match test_instr.operand(1) {
                                Operand::Register(_r) => { return false; } // TODO: support non-immediate sources
                                Operand::ImmediateU8(imm) => imm as u64,
                                Operand::ImmediateU16(imm) => imm as u64,
                                Operand::ImmediateU32(imm) => imm as u64,
                                Operand::ImmediateI8(imm) => imm as i64 as u64,
                                Operand::ImmediateI16(imm) => imm as i64 as u64,
                                Operand::ImmediateI32(imm) => imm as i64 as u64,
                                _ => { return false; } // TODO: support non-immediate sources
                            };

                            aux_data.add_edge_modifier(curr_block, bound_dest, Some(Location::Register(dest_reg)), ModifierExpression::Is(imm_src));
                            aux_data.add_edge_modifier(curr_block, negated_bound_dest, Some(Location::Register(dest_reg)), ModifierExpression::IsNot(imm_src));
                            true
                        }
                        Opcode::TEST => {
                            // TODO: shouldn't care about dest operand, should be able to just query
                            // dfg for a value.
                            let dest_reg = match test_instr.operand(0) {
                                Operand::Register(r) => r,
                                _ => { return false; } // comparison with non-reg is not yet supported
                            };

                            match test_instr.operand(1) {
                                Operand::Register(l) => {
                                    if l == dest_reg {
                                        aux_data.add_edge_modifier(curr_block, bound_dest, Some(Location::Register(l)), ModifierExpression::Is(0));
                                        aux_data.add_edge_modifier(curr_block, negated_bound_dest, Some(Location::Register(l)), ModifierExpression::IsNot(0));
                                        true
                                    } else {
                                        false
                                    }
                                }
                                _ => {
                                    // TODO: handle bit granularity
                                    false
                                }
                            }
                        }
                        Opcode::ADD |
                        Opcode::SUB |
                        Opcode::AND |
                        Opcode::OR |
                        Opcode::XOR => {
                            // if dest is a register
                            // TODO: shouldn't care about dest operand, should be able to just query
                            // dfg for a value.
                            let dest_reg = match test_instr.operand(0) {
                                Operand::Register(r) => r,
                                _ => { return false; }
                            };

                            aux_data.add_edge_modifier(curr_block, bound_dest, Some(Location::Register(dest_reg)), ModifierExpression::Is(0));
                            aux_data.add_edge_modifier(curr_block, negated_bound_dest, Some(Location::Register(dest_reg)), ModifierExpression::IsNot(0));
                            true
                        }
                        _ => { false }
                    }
                },
                ConditionCode::G |
                ConditionCode::LE => {
                    match test_instr.opcode() {
                        Opcode::CMP => {
                            // TODO: shouldn't care about dest operand, should be able to just query
                            // dfg for a value.
                            let dest_reg = match test_instr.operand(0) {
                                Operand::Register(r) => r,
                                _ => { return false; } // comparison with non-reg is not yet supported
                            };
                            let imm_src = match test_instr.operand(1) {
                                Operand::Register(_r) => { return false; } // TODO: support non-immediate sources
                                Operand::ImmediateU8(imm) => imm as u64,
                                Operand::ImmediateU16(imm) => imm as u64,
                                Operand::ImmediateU32(imm) => imm as u64,
                                Operand::ImmediateI8(imm) => imm as i64 as u64,
                                Operand::ImmediateI16(imm) => imm as i64 as u64,
                                Operand::ImmediateI32(imm) => imm as i64 as u64,
                                _ => { return false; } // TODO: support non-immediate sources
                            };

                            aux_data.add_edge_modifier(curr_block, bound_dest, Some(Location::Register(dest_reg)), ModifierExpression::Above(imm_src));
                            aux_data.add_edge_modifier(curr_block, negated_bound_dest, Some(Location::Register(dest_reg)), ModifierExpression::Below(imm_src));
                            true
                        }
                        Opcode::TEST => {
                            // TODO: shouldn't care about dest operand, should be able to just query
                            // dfg for a value.
                            let _dest_reg = match test_instr.operand(0) {
                                Operand::Register(r) => r,
                                _ => { return false; } // comparison with non-reg is not yet supported
                            };

                            match test_instr.operand(1) {
                                _ => {
                                    // TODO: handle bit granularity
                                    false
                                }
                            }
                        }
                        _ => { false }
                    }
                }
                ConditionCode::L |
                ConditionCode::GE => {
                    match test_instr.opcode() {
                        Opcode::CMP => {
                            // TODO: shouldn't care about dest operand, should be able to just query
                            // dfg for a value.
                            let dest_reg = match test_instr.operand(0) {
                                Operand::Register(r) => r,
                                _ => { return false; } // comparison with non-reg is not yet supported
                            };
                            let imm_src = match test_instr.operand(1) {
                                Operand::Register(_r) => { return false; } // TODO: support non-immediate sources
                                Operand::ImmediateU8(imm) => imm as u64,
                                Operand::ImmediateU16(imm) => imm as u64,
                                Operand::ImmediateU32(imm) => imm as u64,
                                Operand::ImmediateI8(imm) => imm as i64 as u64,
                                Operand::ImmediateI16(imm) => imm as i64 as u64,
                                Operand::ImmediateI32(imm) => imm as i64 as u64,
                                _ => { return false; } // TODO: support non-immediate sources
                            };

                            aux_data.add_edge_modifier(curr_block, bound_dest, Some(Location::Register(dest_reg)), ModifierExpression::Below(imm_src));
                            aux_data.add_edge_modifier(curr_block, negated_bound_dest, Some(Location::Register(dest_reg)), ModifierExpression::Above(imm_src));
                            true
                        }
                        Opcode::TEST => {
                            // TODO: shouldn't care about dest operand, should be able to just query
                            // dfg for a value.
                            let _dest_reg = match test_instr.operand(0) {
                                Operand::Register(r) => r,
                                _ => { return false; } // comparison with non-reg is not yet supported
                            };

                            match test_instr.operand(1) {
                                _ => {
                                    // TODO: handle bit granularity
                                    false
                                }
                            }
                        }
                        _ => { false }
                    }
                }
                ConditionCode::A |
                ConditionCode::BE => { // A or NA
                    match test_instr.opcode() {
                        // TODO: add bounds as if this is an unsigned compare!
                        Opcode::CMP => {
                            // TODO: shouldn't care about dest operand, should be able to just query
                            // dfg for a value.
                            let dest_reg = match test_instr.operand(0) {
                                Operand::Register(r) => r,
                                _ => { return false; } // comparison with non-reg is not yet supported
                            };
                            let imm_src = match test_instr.operand(1) {
                                Operand::Register(_r) => { return false; } // TODO: support non-immediate sources
                                Operand::ImmediateU8(imm) => imm as u64,
                                Operand::ImmediateU16(imm) => imm as u64,
                                Operand::ImmediateU32(imm) => imm as u64,
                                Operand::ImmediateI8(imm) => imm as i64 as u64,
                                Operand::ImmediateI16(imm) => imm as i64 as u64,
                                Operand::ImmediateI32(imm) => imm as i64 as u64,
                                _ => { return false; } // TODO: support non-immediate sources
                            };

                            aux_data.add_edge_modifier(curr_block, bound_dest, Some(Location::Register(dest_reg)), ModifierExpression::Above(imm_src));
                            eprintln!("adding negated bound dest, between blocks {:#x} and {:#x}, {} is {:?}", curr_block, negated_bound_dest, dest_reg, ModifierExpression::Below(imm_src));
                            aux_data.add_edge_modifier(curr_block, negated_bound_dest, Some(Location::Register(dest_reg)), ModifierExpression::Below(imm_src));
                            true
                        }
                        Opcode::TEST => {
                            // TODO: shouldn't care about dest operand, should be able to just query
                            // dfg for a value.
                            let _dest_reg = match test_instr.operand(0) {
                                Operand::Register(r) => r,
                                _ => { return false; } // comparison with non-reg is not yet supported
                            };

                            match test_instr.operand(1) {
                                _ => {
                                    // TODO: handle bit granularity
                                    false
                                }
                            }
                        }
                        _ => { false }
                    }
                }
                ConditionCode::B |
                ConditionCode::AE => { // B or NB
                    match test_instr.opcode() {
                        // TODO: add bounds as if this is an unsigned compare!
                        Opcode::CMP => {
                            // TODO: shouldn't care about dest operand, should be able to just query
                            // dfg for a value.
                            let dest_reg = match test_instr.operand(0) {
                                Operand::Register(r) => r,
                                _ => { return false; } // comparison with non-reg is not yet supported
                            };
                            let imm_src = match test_instr.operand(1) {
                                Operand::Register(_r) => { return false; } // TODO: support non-immediate sources
                                Operand::ImmediateU8(imm) => imm as u64,
                                Operand::ImmediateU16(imm) => imm as u64,
                                Operand::ImmediateU32(imm) => imm as u64,
                                Operand::ImmediateI8(imm) => imm as i64 as u64,
                                Operand::ImmediateI16(imm) => imm as i64 as u64,
                                Operand::ImmediateI32(imm) => imm as i64 as u64,
                                _ => { return false; } // TODO: support non-immediate sources
                            };

                            aux_data.add_edge_modifier(curr_block, bound_dest, Some(Location::Register(dest_reg)), ModifierExpression::Below(imm_src));
                            aux_data.add_edge_modifier(curr_block, negated_bound_dest, Some(Location::Register(dest_reg)), ModifierExpression::Above(imm_src));
                            true
                        }
                        Opcode::TEST => {
                            // TODO: shouldn't care about dest operand, should be able to just query
                            // dfg for a value.
                            let _dest_reg = match test_instr.operand(0) {
                                Operand::Register(r) => r,
                                _ => { return false; } // comparison with non-reg is not yet supported
                            };

                            match test_instr.operand(1) {
                                _ => {
                                    // TODO: handle bit granularity
                                    false
                                }
                            }
                        }
                        _ => { false }
                    }
                }
                ConditionCode::S |
                ConditionCode::NS |
                ConditionCode::P |
                ConditionCode::NP |
                ConditionCode::O |
                ConditionCode::NO => { false },
            }
        } else {
            // this instruction has multiple destinations but is not conditional? this could be the
            // case in sequences like
            // ```
            // mov rdx, 1
            // mov rcx, 2
            // cmp rax, 5
            // cmov rdx, rcx
            // jmp rdx
            // ```
            // where we've inferred exactly two possible concrete destinations, but the condition
            // is further back.
            false
        }
    }
}