2016-05-26 03:25:48 +08:00
|
|
|
/***************************************************************************************************
|
|
|
|
|
2016-12-05 09:24:01 +08:00
|
|
|
Zyan Disassembler Library (Zydis)
|
2016-05-26 03:25:48 +08:00
|
|
|
|
|
|
|
Original Author : Florian Bernd
|
|
|
|
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in all
|
|
|
|
* copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
* SOFTWARE.
|
|
|
|
|
|
|
|
***************************************************************************************************/
|
|
|
|
|
2017-07-25 07:04:25 +08:00
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* @brief Functions for formatting human-readable instructions.
|
|
|
|
*/
|
|
|
|
|
2016-05-26 03:25:48 +08:00
|
|
|
#ifndef ZYDIS_FORMATTER_H
|
|
|
|
#define ZYDIS_FORMATTER_H
|
|
|
|
|
2017-07-06 06:34:36 +08:00
|
|
|
#include <Zydis/DecoderTypes.h>
|
2016-05-26 03:25:48 +08:00
|
|
|
#include <Zydis/Defines.h>
|
|
|
|
#include <Zydis/Status.h>
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* ============================================================================================== */
|
|
|
|
/* Enums and types */
|
2016-11-21 21:55:17 +08:00
|
|
|
/* ============================================================================================== */
|
2016-05-26 03:25:48 +08:00
|
|
|
|
2017-11-03 09:24:02 +08:00
|
|
|
/* ---------------------------------------------------------------------------------------------- */
|
|
|
|
/* Formatter style */
|
|
|
|
/* ---------------------------------------------------------------------------------------------- */
|
|
|
|
|
2016-05-26 03:25:48 +08:00
|
|
|
/**
|
2016-11-21 21:55:17 +08:00
|
|
|
* @brief Defines the @c ZydisFormatterStyle datatype.
|
2016-05-26 03:25:48 +08:00
|
|
|
*/
|
|
|
|
typedef uint8_t ZydisFormatterStyle;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Values that represent formatter-styles.
|
|
|
|
*/
|
|
|
|
enum ZydisFormatterStyles
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @brief Generates intel-style disassembly.
|
|
|
|
*/
|
2017-09-22 05:50:44 +08:00
|
|
|
ZYDIS_FORMATTER_STYLE_INTEL,
|
|
|
|
/**
|
|
|
|
* @brief Maximum value of this enum.
|
|
|
|
*/
|
|
|
|
ZYDIS_FORMATTER_STYLE_MAX_VALUE = ZYDIS_FORMATTER_STYLE_INTEL
|
2016-05-26 03:25:48 +08:00
|
|
|
};
|
|
|
|
|
2017-11-03 09:24:02 +08:00
|
|
|
/* ---------------------------------------------------------------------------------------------- */
|
|
|
|
/* Attributes */
|
2016-11-26 20:08:37 +08:00
|
|
|
/* ---------------------------------------------------------------------------------------------- */
|
|
|
|
|
2016-05-26 03:25:48 +08:00
|
|
|
/**
|
2017-11-07 04:35:13 +08:00
|
|
|
* @brief Defines the @c ZydisFormatterProperty datatype.
|
2016-05-26 03:25:48 +08:00
|
|
|
*/
|
2017-11-07 04:35:13 +08:00
|
|
|
typedef uint8_t ZydisFormatterProperty;
|
2016-05-26 03:25:48 +08:00
|
|
|
|
2016-11-26 20:08:37 +08:00
|
|
|
/**
|
2017-11-07 04:35:13 +08:00
|
|
|
* @brief Values that represent formatter-properties.
|
2016-11-26 20:08:37 +08:00
|
|
|
*/
|
2017-11-07 04:35:13 +08:00
|
|
|
enum ZydisFormatterProperties
|
2017-11-03 09:24:02 +08:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @brief Controls the letter-case.
|
|
|
|
*
|
|
|
|
* Pass `ZYDIS_TRUE` as value to format in uppercase and `ZYDIS_FALSE` to format in lowercase.
|
|
|
|
*
|
|
|
|
* The default value is `ZYDIS_FALSE`.
|
|
|
|
*/
|
2017-11-07 04:35:13 +08:00
|
|
|
ZYDIS_FORMATTER_PROP_UPPERCASE,
|
2017-11-03 09:24:02 +08:00
|
|
|
/**
|
|
|
|
* @brief Controls the printing of segment prefixes.
|
|
|
|
*
|
|
|
|
* Pass `ZYDIS_TRUE` as value to force the formatter to always print the segment register of
|
|
|
|
* memory-operands or `ZYDIS_FALSE` to ommit implicit DS/SS segments.
|
|
|
|
*
|
|
|
|
* The default value is `ZYDIS_FALSE`.
|
|
|
|
*/
|
2017-11-07 04:35:13 +08:00
|
|
|
ZYDIS_FORMATTER_PROP_FORCE_SEGMENTS,
|
2017-11-03 09:24:02 +08:00
|
|
|
/**
|
|
|
|
* @brief Controls the printing of operand-sizes.
|
|
|
|
*
|
|
|
|
* Pass `ZYDIS_TRUE` as value to force the formatter to always print the size of memory-operands
|
|
|
|
* or `ZYDIS_FALSE` to only print it on demand.
|
|
|
|
*
|
|
|
|
* The default value is `ZYDIS_FALSE`.
|
|
|
|
*/
|
2017-11-07 04:35:13 +08:00
|
|
|
ZYDIS_FORMATTER_PROP_FORCE_OPERANDSIZE,
|
|
|
|
|
2017-11-03 09:24:02 +08:00
|
|
|
/**
|
|
|
|
* @brief Controls the format of addresses.
|
|
|
|
*
|
2017-11-07 04:35:13 +08:00
|
|
|
* The default value is `ZYDIS_ADDR_FORMAT_ABSOLUTE`.
|
2017-11-03 09:24:02 +08:00
|
|
|
*/
|
2017-11-07 04:35:13 +08:00
|
|
|
ZYDIS_FORMATTER_PROP_ADDR_FORMAT,
|
2017-11-03 09:24:02 +08:00
|
|
|
/**
|
|
|
|
* @brief Controls the format of displacement values.
|
|
|
|
*
|
2017-11-07 04:35:13 +08:00
|
|
|
* The default value is `ZYDIS_DISP_FORMAT_HEX_SIGNED`.
|
2017-11-03 09:24:02 +08:00
|
|
|
*/
|
2017-11-07 04:35:13 +08:00
|
|
|
ZYDIS_FORMATTER_PROP_DISP_FORMAT,
|
2017-11-03 09:24:02 +08:00
|
|
|
/**
|
|
|
|
* @brief Controls the format of immediate values.
|
|
|
|
*
|
2017-11-07 04:35:13 +08:00
|
|
|
* The default value is `ZYDIS_IMM_FORMAT_HEX_UNSIGNED`.
|
|
|
|
*/
|
|
|
|
ZYDIS_FORMATTER_PROP_IMM_FORMAT,
|
|
|
|
|
2017-11-14 14:33:15 +08:00
|
|
|
/**
|
|
|
|
* @brief Controls the letter-case of hexadecimal values.
|
|
|
|
*
|
|
|
|
* Pass `ZYDIS_TRUE` as value to format in uppercase and `ZYDIS_FALSE` to format in lowercase.
|
|
|
|
*
|
|
|
|
* The default value is `ZYDIS_TRUE`.
|
|
|
|
*/
|
|
|
|
ZYDIS_FORMATTER_PROP_HEX_UPPERCASE,
|
2017-11-07 04:35:13 +08:00
|
|
|
/**
|
2017-11-13 20:52:02 +08:00
|
|
|
* @brief Sets the prefix for hexadecimal values.
|
|
|
|
*
|
|
|
|
* The default value is `0x`.
|
|
|
|
*/
|
|
|
|
ZYDIS_FORMATTER_PROP_HEX_PREFIX,
|
|
|
|
/**
|
|
|
|
* @brief Sets the suffix for hexadecimal values.
|
|
|
|
*
|
|
|
|
* The default value is `NULL`.
|
|
|
|
*/
|
|
|
|
ZYDIS_FORMATTER_PROP_HEX_SUFFIX,
|
|
|
|
/**
|
|
|
|
* @brief Controls the padding (minimum number of chars) of hexadecimal address values.
|
2017-11-07 04:35:13 +08:00
|
|
|
*
|
|
|
|
* The default value is `2`.
|
|
|
|
*/
|
2017-11-13 20:52:02 +08:00
|
|
|
ZYDIS_FORMATTER_PROP_HEX_PADDING_ADDR,
|
2017-11-07 04:35:13 +08:00
|
|
|
/**
|
2017-11-13 20:52:02 +08:00
|
|
|
* @brief Controls the padding (minimum number of chars) of hexadecimal displacement values.
|
2017-11-07 04:35:13 +08:00
|
|
|
*
|
|
|
|
* The default value is `2`.
|
|
|
|
*/
|
2017-11-13 20:52:02 +08:00
|
|
|
ZYDIS_FORMATTER_PROP_HEX_PADDING_DISP,
|
2017-11-07 04:35:13 +08:00
|
|
|
/**
|
2017-11-13 20:52:02 +08:00
|
|
|
* @brief Controls the padding (minimum number of chars) of hexadecimal immediate values.
|
2017-11-07 04:35:13 +08:00
|
|
|
*
|
|
|
|
* The default value is `2`.
|
2017-11-03 09:24:02 +08:00
|
|
|
*/
|
2017-11-13 20:52:02 +08:00
|
|
|
ZYDIS_FORMATTER_PROP_HEX_PADDING_IMM,
|
2017-11-07 04:35:13 +08:00
|
|
|
|
2017-11-03 09:24:02 +08:00
|
|
|
/**
|
|
|
|
* @brief Maximum value of this enum.
|
|
|
|
*/
|
2017-11-13 20:52:02 +08:00
|
|
|
ZYDIS_FORMATTER_PROP_MAX_VALUE = ZYDIS_FORMATTER_PROP_HEX_PADDING_IMM
|
2017-11-03 09:24:02 +08:00
|
|
|
};
|
2016-11-26 20:08:37 +08:00
|
|
|
|
|
|
|
/* ---------------------------------------------------------------------------------------------- */
|
2017-11-03 09:24:02 +08:00
|
|
|
/* Address format constants */
|
|
|
|
/* ---------------------------------------------------------------------------------------------- */
|
2016-05-26 03:25:48 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Values that represent address-formats.
|
|
|
|
*/
|
2017-11-07 04:35:13 +08:00
|
|
|
enum ZydisAddressFormat
|
2016-05-26 03:25:48 +08:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @brief Displays absolute addresses instead of relative ones.
|
|
|
|
*/
|
2017-11-07 04:35:13 +08:00
|
|
|
ZYDIS_ADDR_FORMAT_ABSOLUTE,
|
2016-05-26 03:25:48 +08:00
|
|
|
/**
|
|
|
|
* @brief Uses signed hexadecimal values to display relative addresses.
|
|
|
|
*
|
|
|
|
* Examples:
|
|
|
|
* "JMP 0x20"
|
|
|
|
* "JMP -0x20"
|
|
|
|
*/
|
2017-11-07 04:35:13 +08:00
|
|
|
ZYDIS_ADDR_FORMAT_RELATIVE_SIGNED,
|
2016-05-26 03:25:48 +08:00
|
|
|
/**
|
|
|
|
* @brief Uses unsigned hexadecimal values to display relative addresses.
|
|
|
|
*
|
|
|
|
* Examples:
|
|
|
|
* "JMP 0x20"
|
|
|
|
* "JMP 0xE0"
|
|
|
|
*/
|
2017-11-07 04:35:13 +08:00
|
|
|
ZYDIS_ADDR_FORMAT_RELATIVE_UNSIGNED,
|
2017-09-22 05:50:44 +08:00
|
|
|
/**
|
|
|
|
* @brief Maximum value of this enum.
|
|
|
|
*/
|
2017-11-07 04:35:13 +08:00
|
|
|
ZYDIS_ADDR_FORMAT_MAX_VALUE = ZYDIS_ADDR_FORMAT_RELATIVE_UNSIGNED
|
2016-05-26 03:25:48 +08:00
|
|
|
};
|
|
|
|
|
2016-11-26 20:08:37 +08:00
|
|
|
/* ---------------------------------------------------------------------------------------------- */
|
2017-11-03 09:24:02 +08:00
|
|
|
/* Displacement formats */
|
|
|
|
/* ---------------------------------------------------------------------------------------------- */
|
2016-05-26 03:25:48 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Values that represent displacement-formats.
|
|
|
|
*/
|
2017-11-07 04:35:13 +08:00
|
|
|
enum ZydisDisplacementFormat
|
2016-05-26 03:25:48 +08:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @brief Formats displacements as signed hexadecimal values.
|
|
|
|
*
|
|
|
|
* Examples:
|
|
|
|
* "MOV EAX, DWORD PTR SS:[ESP+0x400]"
|
|
|
|
* "MOV EAX, DWORD PTR SS:[ESP-0x400]"
|
|
|
|
*/
|
2017-11-07 04:35:13 +08:00
|
|
|
ZYDIS_DISP_FORMAT_HEX_SIGNED,
|
2016-05-26 03:25:48 +08:00
|
|
|
/**
|
|
|
|
* @brief Formats displacements as unsigned hexadecimal values.
|
|
|
|
*
|
|
|
|
* Examples:
|
|
|
|
* "MOV EAX, DWORD PTR SS:[ESP+0x400]"
|
|
|
|
* "MOV EAX, DWORD PTR SS:[ESP+0xFFFFFC00]"
|
|
|
|
*/
|
2017-11-07 04:35:13 +08:00
|
|
|
ZYDIS_DISP_FORMAT_HEX_UNSIGNED,
|
2017-09-22 05:50:44 +08:00
|
|
|
/**
|
|
|
|
* @brief Maximum value of this enum.
|
|
|
|
*/
|
2017-11-07 04:35:13 +08:00
|
|
|
ZYDIS_DISP_FORMAT_MAX_VALUE = ZYDIS_DISP_FORMAT_HEX_UNSIGNED
|
2016-05-26 03:25:48 +08:00
|
|
|
};
|
|
|
|
|
2016-11-26 20:08:37 +08:00
|
|
|
/* ---------------------------------------------------------------------------------------------- */
|
2017-11-03 09:24:02 +08:00
|
|
|
/* Immediate formats */
|
|
|
|
/* ---------------------------------------------------------------------------------------------- */
|
2016-05-26 03:25:48 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Values that represent formatter immediate-formats.
|
|
|
|
*/
|
2017-11-07 04:35:13 +08:00
|
|
|
enum ZydisImmediateFormat
|
2016-05-26 03:25:48 +08:00
|
|
|
{
|
2016-11-26 20:08:37 +08:00
|
|
|
/**
|
|
|
|
* @brief Automatically chooses the most suitable formatting-mode based on the operands
|
|
|
|
* @c ZydisOperandInfo.imm.isSigned attribute.
|
|
|
|
*/
|
2017-11-07 04:35:13 +08:00
|
|
|
ZYDIS_IMM_FORMAT_HEX_AUTO,
|
2016-05-26 03:25:48 +08:00
|
|
|
/**
|
|
|
|
* @brief Formats immediates as signed hexadecimal values.
|
|
|
|
*
|
|
|
|
* Examples:
|
|
|
|
* "MOV EAX, 0x400"
|
|
|
|
* "MOV EAX, -0x400"
|
|
|
|
*/
|
2017-11-07 04:35:13 +08:00
|
|
|
ZYDIS_IMM_FORMAT_HEX_SIGNED,
|
2016-05-26 03:25:48 +08:00
|
|
|
/**
|
|
|
|
* @brief Formats immediates as unsigned hexadecimal values.
|
|
|
|
*
|
|
|
|
* Examples:
|
|
|
|
* "MOV EAX, 0x400"
|
|
|
|
* "MOV EAX, 0xFFFFFC00"
|
|
|
|
*/
|
2017-11-07 04:35:13 +08:00
|
|
|
ZYDIS_IMM_FORMAT_HEX_UNSIGNED,
|
2017-09-22 05:50:44 +08:00
|
|
|
/**
|
|
|
|
* @brief Maximum value of this enum.
|
|
|
|
*/
|
2017-11-07 04:35:13 +08:00
|
|
|
ZYDIS_IMM_FORMAT_MAX_VALUE = ZYDIS_IMM_FORMAT_HEX_UNSIGNED
|
2016-05-26 03:25:48 +08:00
|
|
|
};
|
|
|
|
|
2017-11-03 09:24:02 +08:00
|
|
|
/* ---------------------------------------------------------------------------------------------- */
|
|
|
|
/* Hooks */
|
2016-11-26 20:08:37 +08:00
|
|
|
/* ---------------------------------------------------------------------------------------------- */
|
|
|
|
|
2016-05-26 03:25:48 +08:00
|
|
|
/**
|
2016-11-21 21:55:17 +08:00
|
|
|
* @brief Defines the @c ZydisFormatterHookType datatype.
|
|
|
|
*/
|
|
|
|
typedef uint8_t ZydisFormatterHookType;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Values that represent formatter hook-types.
|
|
|
|
*/
|
|
|
|
enum ZydisFormatterHookTypes
|
|
|
|
{
|
|
|
|
/**
|
2016-11-26 20:08:37 +08:00
|
|
|
* @brief This function is called before the formatter starts formatting an instruction.
|
|
|
|
*/
|
2016-11-21 21:55:17 +08:00
|
|
|
ZYDIS_FORMATTER_HOOK_PRE,
|
2016-11-26 20:08:37 +08:00
|
|
|
/**
|
|
|
|
* @brief This function is called before the formatter finished formatting an instruction.
|
|
|
|
*/
|
2016-11-21 21:55:17 +08:00
|
|
|
ZYDIS_FORMATTER_HOOK_POST,
|
2016-11-26 20:08:37 +08:00
|
|
|
/**
|
|
|
|
* @brief This function refers to the main formatting function, that internally calls all
|
|
|
|
* other function except the ones that are hooked by @c ZYDIS_FORMATTER_HOOK_PRE and
|
|
|
|
* @c ZYDIS_FORMATTER_HOOK_POST.
|
|
|
|
*
|
|
|
|
* Replacing this function allows for complete custom formatting, but indirectly disables all
|
|
|
|
* other hooks except for @c ZYDIS_FORMATTER_HOOK_PRE and @c ZYDIS_FORMATTER_HOOK_POST.
|
|
|
|
*/
|
|
|
|
ZYDIS_FORMATTER_HOOK_FORMAT_INSTRUCTION,
|
|
|
|
/**
|
|
|
|
* @brief This function is called to print the instruction prefixes.
|
|
|
|
*/
|
|
|
|
ZYDIS_FORMATTER_HOOK_PRINT_PREFIXES,
|
|
|
|
/**
|
|
|
|
* @brief This function is called to print the instruction mnemonic.
|
|
|
|
*/
|
|
|
|
ZYDIS_FORMATTER_HOOK_PRINT_MNEMONIC,
|
|
|
|
/**
|
|
|
|
* @brief This function is called to format an register operand.
|
|
|
|
*/
|
2016-11-21 21:55:17 +08:00
|
|
|
ZYDIS_FORMATTER_HOOK_FORMAT_OPERAND_REG,
|
2016-11-26 20:08:37 +08:00
|
|
|
/**
|
|
|
|
* @brief This function is called to format an memory operand.
|
|
|
|
*
|
|
|
|
* Replacing this function might indirectly disable some specific calls to the
|
2016-11-28 18:14:47 +08:00
|
|
|
* @c ZYDIS_FORMATTER_PRINT_ADDRESS and @c ZYDIS_FORMATTER_HOOK_PRINT_DISPLACEMENT functions.
|
2016-11-26 20:08:37 +08:00
|
|
|
*/
|
2016-11-21 21:55:17 +08:00
|
|
|
ZYDIS_FORMATTER_HOOK_FORMAT_OPERAND_MEM,
|
2016-11-26 20:08:37 +08:00
|
|
|
/**
|
|
|
|
* @brief This function is called to format an pointer operand.
|
|
|
|
*/
|
2016-11-21 21:55:17 +08:00
|
|
|
ZYDIS_FORMATTER_HOOK_FORMAT_OPERAND_PTR,
|
2016-11-26 20:08:37 +08:00
|
|
|
/**
|
|
|
|
* @brief This function is called to format an immediate operand.
|
|
|
|
*
|
|
|
|
* Replacing this function might indirectly disable some specific calls to the
|
2016-11-28 18:14:47 +08:00
|
|
|
* @c ZYDIS_FORMATTER_PRINT_ADDRESS and @c ZYDIS_FORMATTER_HOOK_PRINT_IMMEDIATE functions.
|
2016-11-26 20:08:37 +08:00
|
|
|
*/
|
2016-11-27 01:41:58 +08:00
|
|
|
ZYDIS_FORMATTER_HOOK_FORMAT_OPERAND_IMM,
|
2016-11-26 20:08:37 +08:00
|
|
|
/**
|
|
|
|
* @brief This function is called right before formatting an memory operand to print the
|
|
|
|
* optional size-specifier.
|
|
|
|
*/
|
|
|
|
ZYDIS_FORMATTER_HOOK_PRINT_OPERANDSIZE,
|
2016-11-27 01:41:58 +08:00
|
|
|
/**
|
|
|
|
* @brief This function is called right before formatting an memory operand to print the
|
|
|
|
* optional segment-register.
|
|
|
|
*/
|
|
|
|
ZYDIS_FORMATTER_HOOK_PRINT_SEGMENT,
|
2016-11-26 20:08:37 +08:00
|
|
|
/**
|
|
|
|
* @brief This function is called right after formatting an operand to print the optional
|
2017-06-29 01:50:33 +08:00
|
|
|
* EVEX/MVEX operand-decorator.
|
2016-11-26 20:08:37 +08:00
|
|
|
*/
|
|
|
|
ZYDIS_FORMATTER_HOOK_PRINT_DECORATOR,
|
2016-11-28 18:14:47 +08:00
|
|
|
/**
|
2016-11-26 20:08:37 +08:00
|
|
|
* @brief This function is called to print an absolute address.
|
|
|
|
*/
|
2016-11-28 18:14:47 +08:00
|
|
|
ZYDIS_FORMATTER_HOOK_PRINT_ADDRESS,
|
|
|
|
/**
|
|
|
|
* @brief This function is called to print a memory displacement value.
|
|
|
|
*/
|
|
|
|
ZYDIS_FORMATTER_HOOK_PRINT_DISPLACEMENT,
|
|
|
|
/**
|
|
|
|
* @brief This function is called to print an immediate value.
|
|
|
|
*/
|
2017-09-22 05:50:44 +08:00
|
|
|
ZYDIS_FORMATTER_HOOK_PRINT_IMMEDIATE,
|
|
|
|
/**
|
|
|
|
* @brief Maximum value of this enum.
|
|
|
|
*/
|
|
|
|
ZYDIS_FORMATTER_HOOK_MAX_VALUE = ZYDIS_FORMATTER_HOOK_PRINT_IMMEDIATE
|
2016-11-21 21:55:17 +08:00
|
|
|
};
|
|
|
|
|
2016-11-26 20:08:37 +08:00
|
|
|
/* ---------------------------------------------------------------------------------------------- */
|
|
|
|
|
2017-07-05 01:02:11 +08:00
|
|
|
/**
|
|
|
|
* @brief Defines the @c ZydisDecoratorType datatype.
|
|
|
|
*/
|
|
|
|
typedef uint8_t ZydisDecoratorType;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Values that represent decorator-types.
|
|
|
|
*/
|
|
|
|
enum ZydisDecoratorTypes
|
|
|
|
{
|
|
|
|
ZYDIS_DECORATOR_TYPE_INVALID,
|
|
|
|
ZYDIS_DECORATOR_TYPE_MASK,
|
|
|
|
ZYDIS_DECORATOR_TYPE_BROADCAST,
|
|
|
|
ZYDIS_DECORATOR_TYPE_ROUNDING_CONTROL,
|
|
|
|
ZYDIS_DECORATOR_TYPE_SAE,
|
|
|
|
ZYDIS_DECORATOR_TYPE_SWIZZLE,
|
|
|
|
ZYDIS_DECORATOR_TYPE_CONVERSION,
|
2017-09-22 05:50:44 +08:00
|
|
|
ZYDIS_DECORATOR_TYPE_EVICTION_HINT,
|
|
|
|
/**
|
|
|
|
* @brief Maximum value of this enum.
|
|
|
|
*/
|
|
|
|
ZYDIS_DECORATOR_TYPE_MAX_VALUE = ZYDIS_DECORATOR_TYPE_EVICTION_HINT
|
2017-07-05 01:02:11 +08:00
|
|
|
};
|
|
|
|
|
2017-11-03 09:24:02 +08:00
|
|
|
/* ---------------------------------------------------------------------------------------------- */
|
|
|
|
|
2017-10-14 19:39:00 +08:00
|
|
|
typedef struct ZydisFormatter_ ZydisFormatter;
|
2016-11-26 20:08:37 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Defines the @c ZydisFormatterNotifyFunc function pointer.
|
|
|
|
*
|
2017-07-03 23:36:03 +08:00
|
|
|
* @param formatter A pointer to the @c ZydisFormatter instance.
|
2017-07-03 09:14:01 +08:00
|
|
|
* @param instruction A pointer to the @c ZydisDecodedInstruction struct.
|
2017-10-15 00:37:59 +08:00
|
|
|
* @param userData A pointer to user-defined data.
|
2016-11-26 20:08:37 +08:00
|
|
|
*
|
|
|
|
* @return Returning a status code other than @c ZYDIS_STATUS_SUCCESS will immediately cause the
|
|
|
|
* formatting process to fail.
|
|
|
|
*
|
|
|
|
* This function type is used for the @c ZYDIS_FORMATTER_HOOK_PRE and
|
|
|
|
* @c ZYDIS_FORMATTER_HOOK_POST hook-types.
|
|
|
|
*/
|
2017-07-03 23:36:03 +08:00
|
|
|
typedef ZydisStatus (*ZydisFormatterNotifyFunc)(const ZydisFormatter* formatter,
|
2017-10-15 00:37:59 +08:00
|
|
|
const ZydisDecodedInstruction* instruction, void* userData);
|
2016-11-26 20:08:37 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Defines the @c ZydisFormatterFormatFunc function pointer.
|
|
|
|
*
|
2017-07-03 23:36:03 +08:00
|
|
|
* @param formatter A pointer to the @c ZydisFormatter instance.
|
2016-11-26 20:08:37 +08:00
|
|
|
* @param buffer A pointer to the string-buffer.
|
|
|
|
* @param bufferLen The length of the string-buffer.
|
2017-07-03 09:14:01 +08:00
|
|
|
* @param instruction A pointer to the @c ZydisDecodedInstruction struct.
|
2017-10-15 00:37:59 +08:00
|
|
|
* @param userData A pointer to user-defined data.
|
2016-11-26 20:08:37 +08:00
|
|
|
*
|
|
|
|
* @return Returning a status code other than @c ZYDIS_STATUS_SUCCESS will immediately cause the
|
|
|
|
* formatting process to fail.
|
|
|
|
*
|
|
|
|
* After appending text to the @c buffer you MUST increase the buffer-pointer by the size of the
|
|
|
|
* number of chars written. Not increasing the buffer-pointer will cause unexpected behavior.
|
|
|
|
*
|
|
|
|
* This function type is used for the @c ZYDIS_FORMATTER_HOOK_FORMAT_INSTRUCTION,
|
|
|
|
* @c ZYDIS_FORMATTER_HOOK_PRINT_PREFIXES and @c ZYDIS_FORMATTER_HOOK_PRINT_MNEMONIC hook-types.
|
|
|
|
*/
|
2017-07-03 23:36:03 +08:00
|
|
|
typedef ZydisStatus (*ZydisFormatterFormatFunc)(const ZydisFormatter* formatter,
|
2017-10-15 00:37:59 +08:00
|
|
|
char** buffer, size_t bufferLen, const ZydisDecodedInstruction* instruction, void* userData);
|
2016-11-26 20:08:37 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Defines the @c ZydisFormatterFormatOperandFunc function pointer.
|
|
|
|
*
|
2017-07-03 23:36:03 +08:00
|
|
|
* @param formatter A pointer to the @c ZydisFormatter instance.
|
2016-11-26 20:08:37 +08:00
|
|
|
* @param buffer A pointer to the string-buffer.
|
|
|
|
* @param bufferLen The length of the string-buffer.
|
2017-07-03 09:14:01 +08:00
|
|
|
* @param instruction A pointer to the @c ZydisDecodedInstruction struct.
|
|
|
|
* @param operand A pointer to the @c ZydisDecodedOperand struct.
|
2017-10-15 00:37:59 +08:00
|
|
|
* @param userData A pointer to user-defined data.
|
2016-11-26 20:08:37 +08:00
|
|
|
*
|
|
|
|
* @return Returning a status code other than @c ZYDIS_STATUS_SUCCESS will immediately cause the
|
|
|
|
* formatting process to fail.
|
|
|
|
*
|
|
|
|
* After appending text to the @c buffer you MUST increase the buffer-pointer by the size of the
|
|
|
|
* number of chars written.
|
|
|
|
*
|
|
|
|
* Returning @c ZYDIS_STATUS_SUCCESS in one of the @c ZYDIS_FORMATTER_HOOK_FORMAT_OPERAND_X hooks
|
|
|
|
* without increasing the buffer-pointer is valid and will cause the formatter to omit the current
|
|
|
|
* operand.
|
|
|
|
*
|
2016-11-27 01:41:58 +08:00
|
|
|
* Returning @c ZYDIS_STATUS_SUCCESS in @c ZYDIS_FORMATTER_HOOK_PRINT_OPERANDSIZE,
|
|
|
|
* @c ZYDIS_FORMATTER_HOOK_PRINT_SEGMENT or @c ZYDIS_FORMATTER_HOOK_PRINT_DECORATOR without
|
|
|
|
* increasing the buffer-pointer is valid and signals that the corresponding element should not be
|
|
|
|
* printed for the current operand.
|
2016-11-26 20:08:37 +08:00
|
|
|
*
|
|
|
|
* Not increasing the buffer-pointer for any other hook-type will cause unexpected behavior.
|
|
|
|
*
|
|
|
|
* This function type is used for the @c ZYDIS_FORMATTER_HOOK_FORMAT_OPERAND_REG,
|
|
|
|
* @c ZYDIS_FORMATTER_HOOK_FORMAT_OPERAND_MEM, @c ZYDIS_FORMATTER_HOOK_FORMAT_OPERAND_PTR,
|
2016-11-27 01:41:58 +08:00
|
|
|
* @c ZYDIS_FORMATTER_HOOK_FORMAT_OPERAND_IMM, @c ZYDIS_FORMATTER_HOOK_PRINT_OPERANDSIZE,
|
2016-11-28 18:14:47 +08:00
|
|
|
* @c ZYDIS_FORMATTER_HOOK_PRINT_SEGMENT, @c ZYDIS_FORMATTER_HOOK_PRINT_DECORATOR,
|
|
|
|
* @c ZYDIS_FORMATTER_HOOK_PRINT_DISPLACEMENT and @c ZYDIS_FORMATTER_HOOK_PRINT_IMMEDIATE
|
|
|
|
* hook-types.
|
2016-11-26 20:08:37 +08:00
|
|
|
*/
|
2017-07-03 23:36:03 +08:00
|
|
|
typedef ZydisStatus (*ZydisFormatterFormatOperandFunc)(const ZydisFormatter* formatter,
|
2017-10-14 19:39:00 +08:00
|
|
|
char** buffer, size_t bufferLen, const ZydisDecodedInstruction* instruction,
|
2017-10-15 00:37:59 +08:00
|
|
|
const ZydisDecodedOperand* operand, void* userData);
|
2016-11-26 20:08:37 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Defines the @c ZydisFormatterFormatAddressFunc function pointer.
|
|
|
|
*
|
2017-07-03 23:36:03 +08:00
|
|
|
* @param formatter A pointer to the @c ZydisFormatter instance.
|
2016-11-26 20:08:37 +08:00
|
|
|
* @param buffer A pointer to the string-buffer.
|
|
|
|
* @param bufferLen The length of the string-buffer.
|
2017-07-03 09:14:01 +08:00
|
|
|
* @param instruction A pointer to the @c ZydisDecodedInstruction struct.
|
|
|
|
* @param operand A pointer to the @c ZydisDecodedOperand struct.
|
2017-10-15 00:37:59 +08:00
|
|
|
* @param userData A pointer to user-defined data.
|
2016-11-26 20:08:37 +08:00
|
|
|
*
|
|
|
|
* @return Returning a status code other than @c ZYDIS_STATUS_SUCCESS will immediately cause the
|
|
|
|
* formatting process to fail.
|
|
|
|
*
|
|
|
|
* After appending text to the @c buffer you MUST increase the buffer-pointer by the size of the
|
|
|
|
* number of chars written.
|
|
|
|
* Not increasing the buffer-pointer will cause unexpected behavior.
|
|
|
|
*
|
|
|
|
* This function type is used for the @c ZYDIS_FORMATTER_HOOK_PRINT_ADDRESS hook-type.
|
|
|
|
*/
|
2017-07-03 23:36:03 +08:00
|
|
|
typedef ZydisStatus (*ZydisFormatterFormatAddressFunc)(const ZydisFormatter* formatter,
|
2017-10-14 19:39:00 +08:00
|
|
|
char** buffer, size_t bufferLen, const ZydisDecodedInstruction* instruction,
|
2017-10-15 00:37:59 +08:00
|
|
|
const ZydisDecodedOperand* operand, uint64_t address, void* userData);
|
2016-11-21 21:55:17 +08:00
|
|
|
|
2017-07-05 01:02:11 +08:00
|
|
|
/**
|
|
|
|
* @brief Defines the @c ZydisFormatterFormatDecoratorFunc function pointer.
|
|
|
|
*
|
|
|
|
* @param formatter A pointer to the @c ZydisFormatter instance.
|
|
|
|
* @param buffer A pointer to the string-buffer.
|
|
|
|
* @param bufferLen The length of the string-buffer.
|
|
|
|
* @param instruction A pointer to the @c ZydisDecodedInstruction struct.
|
|
|
|
* @param operand A pointer to the @c ZydisDecodedOperand struct.
|
|
|
|
* @param type The decorator type.
|
2017-10-15 00:37:59 +08:00
|
|
|
* @param userData A pointer to user-defined data.
|
2017-07-05 01:02:11 +08:00
|
|
|
*
|
|
|
|
* @return Returning a status code other than @c ZYDIS_STATUS_SUCCESS will immediately cause the
|
|
|
|
* formatting process to fail.
|
|
|
|
*
|
|
|
|
* After appending text to the @c buffer you MUST increase the buffer-pointer by the size of the
|
|
|
|
* number of chars written.
|
|
|
|
*
|
|
|
|
* Returning @c ZYDIS_STATUS_SUCCESS without increasing the buffer-pointer is valid and will cause
|
|
|
|
* the formatter to omit the current decorator.
|
|
|
|
*
|
|
|
|
* This function type is used for the @c ZYDIS_FORMATTER_HOOK_PRINT_DECORATOR hook-type.
|
|
|
|
*/
|
|
|
|
typedef ZydisStatus (*ZydisFormatterFormatDecoratorFunc)(const ZydisFormatter* formatter,
|
2017-10-14 19:39:00 +08:00
|
|
|
char** buffer, size_t bufferLen, const ZydisDecodedInstruction* instruction,
|
2017-10-15 00:37:59 +08:00
|
|
|
const ZydisDecodedOperand* operand, ZydisDecoratorType type, void* userData);
|
2017-07-05 01:02:11 +08:00
|
|
|
|
2017-11-03 09:24:02 +08:00
|
|
|
/* ---------------------------------------------------------------------------------------------- */
|
|
|
|
/* Formatter struct */
|
|
|
|
/* ---------------------------------------------------------------------------------------------- */
|
|
|
|
|
2016-11-21 21:55:17 +08:00
|
|
|
/**
|
2017-07-03 23:36:03 +08:00
|
|
|
* @brief Defines the @c ZydisFormatter struct.
|
2016-05-26 03:25:48 +08:00
|
|
|
*/
|
2017-07-03 23:36:03 +08:00
|
|
|
struct ZydisFormatter_
|
2016-05-26 03:25:48 +08:00
|
|
|
{
|
2017-11-03 09:24:02 +08:00
|
|
|
uint8_t letterCase;
|
|
|
|
ZydisBool forceSegments;
|
|
|
|
ZydisBool forceOperandSize;
|
|
|
|
uint8_t addressFormat;
|
|
|
|
uint8_t displacementFormat;
|
|
|
|
uint8_t immediateFormat;
|
2017-11-14 14:33:15 +08:00
|
|
|
ZydisBool hexUppercase;
|
2017-11-13 20:52:02 +08:00
|
|
|
char* hexPrefix;
|
|
|
|
char* hexSuffix;
|
|
|
|
uint8_t hexPaddingAddress;
|
|
|
|
uint8_t hexPaddingDisplacement;
|
|
|
|
uint8_t hexPaddingImmediate;
|
2016-11-26 20:08:37 +08:00
|
|
|
ZydisFormatterNotifyFunc funcPre;
|
|
|
|
ZydisFormatterNotifyFunc funcPost;
|
|
|
|
ZydisFormatterFormatFunc funcFormatInstruction;
|
|
|
|
ZydisFormatterFormatFunc funcPrintPrefixes;
|
|
|
|
ZydisFormatterFormatFunc funcPrintMnemonic;
|
|
|
|
ZydisFormatterFormatOperandFunc funcFormatOperandReg;
|
|
|
|
ZydisFormatterFormatOperandFunc funcFormatOperandMem;
|
|
|
|
ZydisFormatterFormatOperandFunc funcFormatOperandPtr;
|
|
|
|
ZydisFormatterFormatOperandFunc funcFormatOperandImm;
|
|
|
|
ZydisFormatterFormatOperandFunc funcPrintOperandSize;
|
2016-11-27 01:41:58 +08:00
|
|
|
ZydisFormatterFormatOperandFunc funcPrintSegment;
|
2017-07-05 01:02:11 +08:00
|
|
|
ZydisFormatterFormatDecoratorFunc funcPrintDecorator;
|
2016-11-26 20:08:37 +08:00
|
|
|
ZydisFormatterFormatAddressFunc funcPrintAddress;
|
2016-11-28 18:14:47 +08:00
|
|
|
ZydisFormatterFormatOperandFunc funcPrintDisplacement;
|
2017-07-05 01:02:11 +08:00
|
|
|
ZydisFormatterFormatOperandFunc funcPrintImmediate;
|
2016-11-29 01:56:39 +08:00
|
|
|
};
|
2016-05-26 03:25:48 +08:00
|
|
|
|
2017-11-03 09:24:02 +08:00
|
|
|
/* ---------------------------------------------------------------------------------------------- */
|
|
|
|
|
2016-11-21 21:55:17 +08:00
|
|
|
/* ============================================================================================== */
|
2016-05-26 03:25:48 +08:00
|
|
|
/* Exported functions */
|
2016-11-21 21:55:17 +08:00
|
|
|
/* ============================================================================================== */
|
|
|
|
|
2016-05-26 03:25:48 +08:00
|
|
|
/**
|
2017-07-03 23:36:03 +08:00
|
|
|
* @brief Initializes the given @c ZydisFormatter instance.
|
2016-05-26 03:25:48 +08:00
|
|
|
*
|
2017-07-03 23:36:03 +08:00
|
|
|
* @param formatter A pointer to the @c ZydisFormatter instance.
|
2016-11-26 20:08:37 +08:00
|
|
|
* @param style The formatter style.
|
2016-05-26 03:25:48 +08:00
|
|
|
*
|
|
|
|
* @return A zydis status code.
|
|
|
|
*/
|
2017-07-03 23:36:03 +08:00
|
|
|
ZYDIS_EXPORT ZydisStatus ZydisFormatterInit(ZydisFormatter* formatter, ZydisFormatterStyle style);
|
2016-05-26 03:25:48 +08:00
|
|
|
|
|
|
|
/**
|
2017-11-03 09:24:02 +08:00
|
|
|
* @brief Sets the value of the specified formatter `attribute`.
|
2016-05-26 03:25:48 +08:00
|
|
|
*
|
2017-11-03 09:24:02 +08:00
|
|
|
* @param formatter A pointer to the @c ZydisFormatter instance.
|
2017-11-07 04:35:13 +08:00
|
|
|
* @param property The id of the formatter-property.
|
2017-11-03 09:24:02 +08:00
|
|
|
* @param value The new value.
|
2016-05-26 03:25:48 +08:00
|
|
|
*
|
|
|
|
* @return A zydis status code.
|
|
|
|
*/
|
2017-11-07 04:35:13 +08:00
|
|
|
ZYDIS_EXPORT ZydisStatus ZydisFormatterSetProperty(ZydisFormatter* formatter,
|
|
|
|
ZydisFormatterProperty property, uintptr_t value);
|
2016-05-26 03:25:48 +08:00
|
|
|
|
|
|
|
/**
|
2017-07-05 01:02:11 +08:00
|
|
|
* @brief Replaces a formatter function with a custom callback and/or retrieves the currently
|
|
|
|
* used function.
|
2016-05-26 03:25:48 +08:00
|
|
|
*
|
2017-07-03 23:36:03 +08:00
|
|
|
* @param formatter A pointer to the @c ZydisFormatter instance.
|
2016-11-26 20:08:37 +08:00
|
|
|
* @param hook The formatter hook-type.
|
2017-07-05 01:02:11 +08:00
|
|
|
* @param callback A pointer to a variable that contains the pointer of the callback function
|
|
|
|
* and receives the pointer of the currently used function.
|
2016-05-26 03:25:48 +08:00
|
|
|
*
|
|
|
|
* @return A zydis status code.
|
2017-07-05 01:02:11 +08:00
|
|
|
*
|
|
|
|
* Call this function with `callback` pointing to a `NULL` value to retrieve the currently used
|
|
|
|
* function without replacing it.
|
2016-05-26 03:25:48 +08:00
|
|
|
*/
|
2017-07-03 23:36:03 +08:00
|
|
|
ZYDIS_EXPORT ZydisStatus ZydisFormatterSetHook(ZydisFormatter* formatter,
|
2016-11-26 20:08:37 +08:00
|
|
|
ZydisFormatterHookType hook, const void** callback);
|
2016-11-21 21:55:17 +08:00
|
|
|
|
2016-05-26 03:25:48 +08:00
|
|
|
/**
|
|
|
|
* @brief Formats the given instruction and writes it into the output buffer.
|
|
|
|
*
|
2017-07-03 23:36:03 +08:00
|
|
|
* @param formatter A pointer to the @c ZydisFormatter instance.
|
2017-07-03 09:14:01 +08:00
|
|
|
* @param instruction A pointer to the @c ZydisDecodedInstruction struct.
|
2017-01-11 18:20:24 +08:00
|
|
|
* @param buffer A pointer to the output buffer.
|
|
|
|
* @param bufferLen The length of the output buffer.
|
2016-05-26 03:25:48 +08:00
|
|
|
*
|
|
|
|
* @return A zydis status code.
|
|
|
|
*/
|
2017-07-03 23:36:03 +08:00
|
|
|
ZYDIS_EXPORT ZydisStatus ZydisFormatterFormatInstruction(const ZydisFormatter* formatter,
|
2017-10-24 23:21:09 +08:00
|
|
|
const ZydisDecodedInstruction* instruction, char* buffer, size_t bufferLen);
|
2016-05-26 03:25:48 +08:00
|
|
|
|
2017-10-15 00:37:59 +08:00
|
|
|
/**
|
|
|
|
* @brief Formats the given instruction and writes it into the output buffer.
|
|
|
|
*
|
|
|
|
* @param formatter A pointer to the @c ZydisFormatter instance.
|
|
|
|
* @param instruction A pointer to the @c ZydisDecodedInstruction struct.
|
|
|
|
* @param buffer A pointer to the output buffer.
|
|
|
|
* @param bufferLen The length of the output buffer.
|
|
|
|
* @param userData A pointer to user-defined data which can be used in custom formatter
|
|
|
|
* callbacks.
|
|
|
|
*
|
|
|
|
* @return A zydis status code.
|
|
|
|
*/
|
|
|
|
ZYDIS_EXPORT ZydisStatus ZydisFormatterFormatInstructionEx(const ZydisFormatter* formatter,
|
2017-10-24 23:21:09 +08:00
|
|
|
const ZydisDecodedInstruction* instruction, char* buffer, size_t bufferLen, void* userData);
|
2017-10-15 00:37:59 +08:00
|
|
|
|
2016-05-26 03:25:48 +08:00
|
|
|
/* ============================================================================================== */
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* ZYDIS_FORMATTER_H */
|