diff options
| author | iximeow <me@iximeow.net> | 2020-08-09 19:47:08 -0700 | 
|---|---|---|
| committer | iximeow <me@iximeow.net> | 2020-08-09 19:47:08 -0700 | 
| commit | f523478b3c6f5f29f600368afb1b84c9f5a41eba (patch) | |
| tree | e34a5234b32600f3bbf31aac908f66bea2e123a5 /src/protected_mode | |
| parent | 57ff56d8b5c3a3fa4f1d7f4881afbe2ce8e47cfd (diff) | |
reject instructions made invalid by lock prefixes
Diffstat (limited to 'src/protected_mode')
| -rw-r--r-- | src/protected_mode/mod.rs | 27 | 
1 files changed, 27 insertions, 0 deletions
| diff --git a/src/protected_mode/mod.rs b/src/protected_mode/mod.rs index 42595a8..1517c7c 100644 --- a/src/protected_mode/mod.rs +++ b/src/protected_mode/mod.rs @@ -3777,6 +3777,27 @@ pub enum OperandCode {      DS = OperandCodeBuilder::new().special_case(106).bits(),  } +const LOCKABLE_INSTRUCTIONS: &[Opcode] = &[ +    Opcode::ADD, +    Opcode::ADC, +    Opcode::AND, +    Opcode::BTC, +    Opcode::BTR, +    Opcode::BTS, +    Opcode::CMPXCHG, +    Opcode::CMPXCHG8B, +    Opcode::DEC, +    Opcode::INC, +    Opcode::NEG, +    Opcode::NOT, +    Opcode::OR, +    Opcode::SBB, +    Opcode::SUB, +    Opcode::XOR, +    Opcode::XADD, +    Opcode::XCHG, +]; +  fn base_opcode_map(v: u8) -> Opcode {      match v {          0 => Opcode::ADD, @@ -5571,6 +5592,12 @@ fn read_instr<T: Iterator<Item=u8>>(decoder: &InstDecoder, mut bytes_iter: T, in      }      instruction.length = length; +    if instruction.prefixes.lock() { +        if !LOCKABLE_INSTRUCTIONS.contains(&instruction.opcode) || !instruction.operands[0].is_memory() { +            return Err(DecodeError::InvalidPrefixes); +        } +    } +      if decoder != &InstDecoder::default() {          // we might have to fix up or reject this instruction under whatever cpu features we need to          // pretend to have. | 
