diff options
author | iximeow <me@iximeow.net> | 2021-03-22 23:15:18 -0700 |
---|---|---|
committer | iximeow <me@iximeow.net> | 2021-03-22 23:40:20 -0700 |
commit | eb870634d6d08b437f7773e99aadb97cf3fdba26 (patch) | |
tree | fb866d78f85c1d5587a47fc9b708ff2f52be2377 /ffi/multiarch/src/protected_mode.rs | |
parent | 0fff2a6aa0832b1cabf381e0c970f0fd47223224 (diff) |
port long-mode ffi to protected-mode
Diffstat (limited to 'ffi/multiarch/src/protected_mode.rs')
-rw-r--r-- | ffi/multiarch/src/protected_mode.rs | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/ffi/multiarch/src/protected_mode.rs b/ffi/multiarch/src/protected_mode.rs new file mode 100644 index 0000000..817462f --- /dev/null +++ b/ffi/multiarch/src/protected_mode.rs @@ -0,0 +1,43 @@ +#![no_std] +#![feature(lang_items)] + +#[panic_handler] +#[cold] +fn panic(_panic: &core::panic::PanicInfo) -> ! { + loop {} +} + +#[lang = "eh_personality"] extern fn eh_personality() {} + +use yaxpeax_arch::{Arch, Decoder, LengthedInstruction, AddressBase}; +use yaxpeax_x86::protected_mode as x86; + +#[no_mangle] +pub unsafe extern "C" fn yaxpeax_decode_x86_32_optimistic(data: *const u8, length: u64, inst: *mut x86::Instruction) -> bool { + let inst: &mut x86::Instruction = core::mem::transmute(inst); + <x86::Arch as Arch>::Decoder::default().decode_into(inst, core::slice::from_raw_parts(data as *const u8, length as usize).iter().cloned()).is_err() +} + +#[no_mangle] +pub unsafe extern "C" fn yaxpeax_instr_length_x86_64(inst: *mut x86::Instruction) -> usize { + let inst: &mut x86::Instruction = core::mem::transmute(inst); + 0.wrapping_offset(inst.len()).to_linear() +} + +#[cfg(fmt)] +mod write_sink; + +#[cfg(fmt)] +mod fmt { + use write_sink::InstructionSink; + + use core::fmt::Write; + + #[no_mangle] + pub unsafe extern "C" fn yaxpeax_instr_fmt(inst: *mut x86::Instruction, text: *mut u8, len: usize) { + let inst: &mut x86::Instruction = core::mem::transmute(inst); + let res = core::slice::from_raw_parts_mut(text, len); + + write!(InstructionSink { buf: res, offs: 0 }, "{}", inst).unwrap(); + } +} |