Skip to content

A simple rust dissasembler that only supports ARMV7

License

Notifications You must be signed in to change notification settings

ivario123/disarmv7

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

50 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Disarmv7

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.

Usage

Using the library

Assuming that you have placed the instructions in a slice of u8s (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:?}");

Limitations

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.

Contributing

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.

License

This repository is licensed under the MIT license and any contributions shall be licensed under the same license unless explicitly stated otherwise.

Footnotes

  • [1] The disassembler does not support the floating point extensions as of now.
  • [2] For further documentation on this please read the documentation for Object.

About

A simple rust dissasembler that only supports ARMV7

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages