aboutsummaryrefslogtreecommitdiff
path: root/fuzz/fuzz_targets/displaysink_used_correctly.rs
blob: 4815047137c09ef6596fedd46b0c7923864fc57d (plain)
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
#![no_main]
#[macro_use] extern crate libfuzzer_sys;
extern crate yaxpeax_x86;
extern crate yaxpeax_arch;

fuzz_target!(|data: &[u8]| {
    if data.len() > 15 {
        return;
    }

    let x86_64_decoder = yaxpeax_x86::long_mode::InstDecoder::default();
    let x86_32_decoder = yaxpeax_x86::protected_mode::InstDecoder::default();
    let x86_16_decoder = yaxpeax_x86::real_mode::InstDecoder::default();

    use yaxpeax_arch::testkit::DisplaySinkValidator;

    if let Ok(inst) = x86_64_decoder.decode_slice(data) {
        inst.display_into(&mut DisplaySinkValidator::new()).expect("instruction can be displayed");
    };

    if let Ok(inst) = x86_32_decoder.decode_slice(data) {
        inst.display_into(&mut DisplaySinkValidator::new()).expect("instruction can be displayed");
    };

    if let Ok(inst) = x86_16_decoder.decode_slice(data) {
        inst.display_into(&mut DisplaySinkValidator::new()).expect("instruction can be displayed");
    };
});