Crates.io | disarmv7 |
lib.rs | disarmv7 |
version | 0.0.1 |
source | src |
created_at | 2024-05-05 17:18:36.480726 |
updated_at | 2024-05-05 17:18:36.480726 |
description | Decodes armv7 instructions in to a rust enum. |
homepage | |
repository | https://github.com/ivario123/disarmv7 |
max_upload_size | |
id | 1230403 |
size | 465,525 |
Disarmv7 is a disassembler for the ArmV7-M instruction set. It provides a fast enough disassembler that lifts most$^1$ of the ArmV7-m instructions to a rust enum
which is ideal if you want to do semantic analysis, symbolic execution or similar on
the assembly/machine code level. As of now, it does not provide a textual representation of the assembly instructions.
This project is mainly written as a support project for the Symex project which is a symbolic execution engine that provides safe-to-use execution time estimates for each possible path through the program. But can be used as a standalone project for parsing ArmV7-M binaries.
Assuming that you have placed the instructions in a slice of u8
s (buff) you can call the disassembler like this :
use disarmv7::prelude::*;
let mut buff: disarmv7::buffer::PeekableBuffer<u8, _> = buff.iter().cloned().into();
let asm = Asm::parse(&mut buff);
println!("Assembly : {asm:?}");
This project does not load binaries, nor does it generate a textual representation of the assembly, this is outside of the scope of the project. And for things that require textual representations of the program, we refer the user to projects like Capstone which provide a more complete experience.
If you find this project interesting and or useful feel free to contribute by either finding an open issue in the issue tracker or opening a PR
with fixes or features that you find useful.
Before contributing you should read the short documentation on contributions.
This repository is licensed under the MIT license and any contributions shall be licensed under the same license unless explicitly stated otherwise.