2017-11-24 10:28:31 +08:00
![zydis logo ](https://mainframe.pw/u/P94JAqY9XSDdPedv.svg?x )
2017-12-13 18:55:30 +08:00
[![License: MIT ](https://img.shields.io/badge/License-MIT-blue.svg )](https://opensource.org/licenses/MIT) [![Gitter ](https://badges.gitter.im/zyantific/zyan-disassembler-engine.svg )](https://gitter.im/zyantific/zydis?utm_source=badge& utm_medium=badge& utm_campaign=pr-badge& utm_content=body_badge) [![Discord ](https://img.shields.io/discord/390136917779415060.svg )](https://discordapp.com/channels/390136917779415060/390138781313007626) [![Build status ](https://ci.appveyor.com/api/projects/status/2tad27q0b9v6qtga/branch/master?svg=true )](https://ci.appveyor.com/project/athre0z/zydis/branch/master)
2014-10-25 05:05:43 +08:00
Fast and lightweight x86/x86-64 disassembler library.
2014-10-25 05:11:16 +08:00
2017-08-18 19:34:00 +08:00
## Features
2014-10-25 05:11:16 +08:00
2018-03-01 03:01:22 +08:00
- Supports all x86 and x86-64 (AMD64) instructions and [extensions ](https://github.com/zyantific/zydis/blob/master/include/Zydis/Generated/EnumISAExt.h )
2014-10-25 05:11:16 +08:00
- Optimized for high performance
2017-08-18 19:34:00 +08:00
- No dynamic memory allocation ("malloc")
2017-12-20 02:32:09 +08:00
- Thread-safe by design
2016-06-20 07:33:29 +08:00
- Very small file-size overhead compared to other common disassembler libraries
2017-08-18 19:34:00 +08:00
- [Complete doxygen documentation ](https://www.zyantific.com/doc/zydis/index.html )
2018-03-01 03:01:22 +08:00
- Absolutely no dependencies — [not even libc ](https://github.com/zyantific/zydis/blob/develop/CMakeLists.txt#L32 )
- Should compile on any platform with a working C99 compiler
- Tested on Windows, macOS, FreeBSD and Linux, both user and kernel mode
2017-07-25 04:41:08 +08:00
2017-08-18 19:34:00 +08:00
## Quick Example
2014-11-03 22:15:48 +08:00
2015-05-16 11:05:17 +08:00
The following example program uses Zydis to disassemble a given memory buffer and prints the output to the console.
2014-11-03 22:15:48 +08:00
2016-05-26 03:25:48 +08:00
```C
#include <stdio.h>
2018-03-01 03:01:22 +08:00
#include <inttypes.h>
2016-05-26 03:25:48 +08:00
#include <Zydis/Zydis.h>
2014-11-03 22:15:48 +08:00
2016-04-16 04:11:49 +08:00
int main()
2014-11-03 22:15:48 +08:00
{
uint8_t data[] =
{
2018-03-01 03:01:22 +08:00
0x51, 0x8D, 0x45, 0xFF, 0x50, 0xFF, 0x75, 0x0C, 0xFF, 0x75,
0x08, 0xFF, 0x15, 0xA0, 0xA5, 0x48, 0x76, 0x85, 0xC0, 0x0F,
2016-04-16 04:11:49 +08:00
0x88, 0xFC, 0xDA, 0x02, 0x00
2014-11-03 22:15:48 +08:00
};
2016-04-16 04:11:49 +08:00
2017-08-18 19:34:00 +08:00
// Initialize decoder context.
2017-07-03 23:36:03 +08:00
ZydisDecoder decoder;
2017-08-18 19:34:00 +08:00
ZydisDecoderInit(
2018-03-01 03:01:22 +08:00
& decoder,
ZYDIS_MACHINE_MODE_LONG_64,
2017-08-18 19:34:00 +08:00
ZYDIS_ADDRESS_WIDTH_64);
2016-05-26 03:25:48 +08:00
2017-08-18 19:34:00 +08:00
// Initialize formatter. Only required when you actually plan to
// do instruction formatting ("disassembling"), like we do here.
2017-07-03 23:36:03 +08:00
ZydisFormatter formatter;
2017-08-18 19:34:00 +08:00
ZydisFormatterInit(& formatter, ZYDIS_FORMATTER_STYLE_INTEL);
2018-03-01 03:01:22 +08:00
2017-08-18 19:34:00 +08:00
// Loop over the instructions in our buffer.
2018-03-01 03:01:22 +08:00
// The IP is chosen arbitrary here in order to better visualize
// relative addressing.
2017-07-03 23:36:03 +08:00
uint64_t instructionPointer = 0x007FFFFFFF400000;
2018-03-01 03:01:22 +08:00
size_t offset = 0;
2017-08-18 19:34:00 +08:00
size_t length = sizeof(data);
2017-07-03 23:36:03 +08:00
ZydisDecodedInstruction instruction;
2017-08-18 19:34:00 +08:00
while (ZYDIS_SUCCESS(ZydisDecoderDecodeBuffer(
2018-03-01 03:01:22 +08:00
& decoder, data + offset, length - offset,
instructionPointer, & instruction)))
2014-11-03 22:15:48 +08:00
{
2017-08-18 19:34:00 +08:00
// Print current instruction pointer.
printf("%016" PRIX64 " ", instructionPointer);
2018-03-01 03:01:22 +08:00
// Format & print the binary instruction
2017-08-18 19:34:00 +08:00
// structure to human readable format.
char buffer[256];
ZydisFormatterFormatInstruction(
& formatter, & instruction, buffer, sizeof(buffer));
puts(buffer);
2018-03-01 03:01:22 +08:00
offset += instruction.length;
2017-07-03 23:36:03 +08:00
instructionPointer += instruction.length;
2014-11-03 22:15:48 +08:00
}
}
```
2017-08-18 19:34:00 +08:00
## Sample Output
2016-04-06 06:15:12 +08:00
The above example program generates the following output:
```
2016-05-26 03:25:48 +08:00
007FFFFFFF400000 push rcx
2017-08-18 19:34:00 +08:00
007FFFFFFF400001 lea eax, [rbp-0x01]
2016-05-26 03:25:48 +08:00
007FFFFFFF400004 push rax
2017-08-18 19:34:00 +08:00
007FFFFFFF400005 push qword ptr [rbp+0x0C]
007FFFFFFF400008 push qword ptr [rbp+0x08]
007FFFFFFF40000B call [0x008000007588A5B1]
2016-05-26 03:25:48 +08:00
007FFFFFFF400011 test eax, eax
007FFFFFFF400013 js 0x007FFFFFFF42DB15
2016-04-06 06:15:12 +08:00
```
2018-03-01 03:01:22 +08:00
## Build
#### Unix
2017-07-25 04:46:28 +08:00
Zydis builds cleanly on most platforms without any external dependencies. You can use CMake to generate project files for your favorite C99 compiler.
```bash
git clone 'https://github.com/zyantific/zydis.git'
cd zydis
mkdir build & & cd build
cmake ..
make
```
2018-03-01 03:01:22 +08:00
#### Windows
Either use the [Visual Studio 2017 project ](https://github.com/zyantific/zydis/tree/master/msvc ) or build Zydis using [CMake ](https://cmake.org/download/ ) ([video guide](https://www.youtube.com/watch?v=fywLDK1OAtQ)).
2017-08-18 19:34:00 +08:00
## `ZydisInfo` tool
2017-07-25 04:41:08 +08:00
![ZydisInfo ](https://raw.githubusercontent.com/zyantific/zydis/master/assets/screenshots/ZydisInfo.png )
2017-07-25 03:40:59 +08:00
2017-08-18 19:34:00 +08:00
## Credits
2018-03-01 03:01:22 +08:00
- Intel (for open-sourcing [XED ](https://github.com/intelxed/xed ), allowing for automatic comparision of our tables against theirs, improving both)
- [LLVM ](https://llvm.org ) (for providing pretty solid instruction data as well)
2017-08-18 19:34:00 +08:00
- Christian Ludloff (http://sandpile.org, insanely helpful)
2017-11-24 10:28:31 +08:00
- [LekoArts ](https://www.lekoarts.de/ ) (for creating the project logo)
2017-08-18 19:34:00 +08:00
- Our [contributors on GitHub ](https://github.com/zyantific/zydis/graphs/contributors )
## License
2015-05-22 23:23:32 +08:00
2017-08-18 19:34:00 +08:00
Zydis is licensed under the MIT license.