aboutsummaryrefslogtreecommitdiff
path: root/fuzz
diff options
context:
space:
mode:
Diffstat (limited to 'fuzz')
-rw-r--r--fuzz/Cargo.toml6
-rw-r--r--fuzz/fuzz_targets/display_c_does_not_panic.rs21
2 files changed, 27 insertions, 0 deletions
diff --git a/fuzz/Cargo.toml b/fuzz/Cargo.toml
index 5c49296..53bcb81 100644
--- a/fuzz/Cargo.toml
+++ b/fuzz/Cargo.toml
@@ -26,3 +26,9 @@ name = "display_does_not_panic"
path = "fuzz_targets/display_does_not_panic.rs"
test = false
doc = false
+
+[[bin]]
+name = "display_c_does_not_panic"
+path = "fuzz_targets/display_c_does_not_panic.rs"
+test = false
+doc = false
diff --git a/fuzz/fuzz_targets/display_c_does_not_panic.rs b/fuzz/fuzz_targets/display_c_does_not_panic.rs
new file mode 100644
index 0000000..129a560
--- /dev/null
+++ b/fuzz/fuzz_targets/display_c_does_not_panic.rs
@@ -0,0 +1,21 @@
+#![no_main]
+#[macro_use] extern crate libfuzzer_sys;
+extern crate yaxpeax_x86;
+
+fuzz_target!(|data: &[u8]| {
+ 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();
+
+ if let Ok(inst) = x86_64_decoder.decode_slice(data) {
+ let _ = inst.display_with(yaxpeax_x86::long_mode::DisplayStyle::C).to_string();
+ };
+
+ if let Ok(inst) = x86_32_decoder.decode_slice(data) {
+ let _ = inst.display_with(yaxpeax_x86::protected_mode::DisplayStyle::C).to_string();
+ };
+
+ if let Ok(inst) = x86_16_decoder.decode_slice(data) {
+ let _ = inst.display_with(yaxpeax_x86::real_mode::DisplayStyle::C).to_string();
+ };
+});