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.
|
|
|
|
|
|
|
|
***************************************************************************************************/
|
|
|
|
|
|
|
|
#ifndef ZYDIS_DECODER_H
|
|
|
|
#define ZYDIS_DECODER_H
|
|
|
|
|
|
|
|
#include <Zydis/Defines.h>
|
2016-12-05 09:24:01 +08:00
|
|
|
#include <Zydis/Types.h>
|
2016-05-26 03:25:48 +08:00
|
|
|
#include <Zydis/Status.h>
|
|
|
|
#include <Zydis/InstructionInfo.h>
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2017-01-11 18:24:10 +08:00
|
|
|
/* ============================================================================================== */
|
|
|
|
/* Macros */
|
|
|
|
/* ============================================================================================== */
|
|
|
|
|
|
|
|
/* ---------------------------------------------------------------------------------------------- */
|
|
|
|
/* Constants */
|
|
|
|
/* ---------------------------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
#define ZYDIS_MAX_INSTRUCTION_LENGTH 15
|
|
|
|
|
|
|
|
/* ---------------------------------------------------------------------------------------------- */
|
|
|
|
|
2016-05-26 03:25:48 +08:00
|
|
|
/* ============================================================================================== */
|
|
|
|
/* Enums and types */
|
|
|
|
/* ============================================================================================== */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Defines the @c ZydisDecoderFlags datatype.
|
|
|
|
*/
|
|
|
|
typedef uint32_t ZydisDecoderFlags;
|
|
|
|
|
2017-01-11 18:20:24 +08:00
|
|
|
// TODO: Add flags to enable/disable certain decoding-steps like operands, affected flags, ..
|
2016-05-26 03:25:48 +08:00
|
|
|
|
|
|
|
/* ---------------------------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Defines the @c ZydisInstructionDecoder struct.
|
|
|
|
*/
|
|
|
|
typedef struct ZydisInstructionDecoder_
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @brief The current disassembler-mode.
|
|
|
|
*/
|
|
|
|
ZydisDisassemblerMode disassemblerMode;
|
2017-01-11 18:20:24 +08:00
|
|
|
// TODO: Remove from this struct and pass as argument
|
2016-05-26 03:25:48 +08:00
|
|
|
/**
|
2017-01-11 18:20:24 +08:00
|
|
|
* @brief The current input buffer.
|
2016-05-26 03:25:48 +08:00
|
|
|
*/
|
2017-01-11 18:20:24 +08:00
|
|
|
struct
|
|
|
|
{
|
|
|
|
uint8_t* buffer;
|
|
|
|
size_t bufferLen;
|
|
|
|
} input;
|
|
|
|
// TODO: (Maybe) remove from this struct and pass as argument
|
2016-05-26 03:25:48 +08:00
|
|
|
/**
|
|
|
|
* @brief The current instruction-pointer value.
|
|
|
|
*/
|
|
|
|
uint64_t instructionPointer;
|
2016-11-12 05:03:26 +08:00
|
|
|
/**
|
|
|
|
* @brief Internal field. @c TRUE, if the @c imm8 value is already initialized.
|
|
|
|
*/
|
2016-12-05 09:24:01 +08:00
|
|
|
ZydisBool imm8initialized;
|
2016-11-12 05:03:26 +08:00
|
|
|
/**
|
|
|
|
* @brief Internal field. We have to store a copy of the imm8 value for instructions that
|
|
|
|
* encode different operands in the lo and hi part of the immediate.
|
|
|
|
*/
|
|
|
|
uint8_t imm8;
|
2016-12-05 09:24:01 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Internal field. The 0x66 prefix can be consumed, if it is used as mandatory-prefix.
|
|
|
|
* This field contains the prefix-byte, if the prefix is present and not already
|
|
|
|
* consumed.
|
|
|
|
*/
|
|
|
|
uint8_t hasUnusedPrefix66;
|
|
|
|
/**
|
|
|
|
* @brief Internal field. The mutally exclusive 0xF2 and 0xF3 prefixs can be consumed, if
|
|
|
|
* they are used as mandatory-prefix. This field contains the prefix-byte of the
|
|
|
|
* latest 0xF2 or 0xF3 prefix, if one of the prefixes is present and not already
|
|
|
|
* consumed.
|
|
|
|
*/
|
|
|
|
uint8_t hasUnusedPrefixF2F3;
|
|
|
|
/**
|
|
|
|
* @brief Internal field. Contains the latest (significant) segment prefix.
|
|
|
|
*/
|
|
|
|
uint8_t lastSegmentPrefix;
|
2016-05-26 03:25:48 +08:00
|
|
|
} ZydisInstructionDecoder;
|
|
|
|
|
|
|
|
/* ---------------------------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
/* ============================================================================================== */
|
|
|
|
/* Exported functions */
|
|
|
|
/* ============================================================================================== */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Initializes the given @c ZydisInstructionDecoder instance.
|
|
|
|
*
|
|
|
|
* @param decoder A pointer to the @c ZydisInstructionDecoder instance.
|
|
|
|
* @param disassemblerMode The desired disassembler-mode.
|
|
|
|
*
|
|
|
|
* @return A zydis status code.
|
|
|
|
*/
|
2016-06-20 07:33:29 +08:00
|
|
|
ZYDIS_EXPORT ZydisStatus ZydisDecoderInitInstructionDecoder(ZydisInstructionDecoder* decoder,
|
2017-01-11 18:20:24 +08:00
|
|
|
ZydisDisassemblerMode disassemblerMode);
|
2016-05-26 03:25:48 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Returns the current instruction-pointer of the given @c ZydisInstructionDecoder
|
|
|
|
* instance.
|
|
|
|
*
|
|
|
|
* @param decoder A pointer to the @c ZydisInstructionDecoder instance.
|
|
|
|
* @param instructionPointer A pointer to the memory that receives the current
|
|
|
|
* instruction-pointer.
|
|
|
|
*
|
|
|
|
* @return A zydis status code.
|
|
|
|
*/
|
2016-06-20 07:33:29 +08:00
|
|
|
ZYDIS_EXPORT ZydisStatus ZydisDecoderGetInstructionPointer(
|
2016-05-26 03:25:48 +08:00
|
|
|
const ZydisInstructionDecoder* decoder, uint64_t* instructionPointer);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Changes the instruction-pointer of the given @c ZydisInstructionDecoder instance.
|
|
|
|
*
|
|
|
|
* @param decoder A pointer to the @c ZydisInstructionDecoder instance.
|
|
|
|
* @param instructionPointer The new instruction-pointer value.
|
|
|
|
*
|
|
|
|
* @return A zydis status code.
|
|
|
|
*/
|
2016-06-20 07:33:29 +08:00
|
|
|
ZYDIS_EXPORT ZydisStatus ZydisDecoderSetInstructionPointer(ZydisInstructionDecoder* decoder,
|
2016-05-26 03:25:48 +08:00
|
|
|
uint64_t instructionPointer);
|
|
|
|
|
|
|
|
/**
|
2017-01-11 18:20:24 +08:00
|
|
|
* @brief Decodes the instruction in the given input @c buffer.
|
|
|
|
*
|
|
|
|
* @param decoder A pointer to the @c ZydisInstructionDecoder instance.
|
|
|
|
* @param buffer A pointer to the input buffer.
|
|
|
|
* @param bufferLen The length of the input buffer.
|
|
|
|
* @param info A pointer to the @c ZydisInstructionInfo struct, that receives the details
|
|
|
|
* about the decoded instruction.
|
|
|
|
*
|
|
|
|
* @return A zydis status code.
|
|
|
|
*/
|
|
|
|
ZYDIS_EXPORT ZydisStatus ZydisDecoderDecodeInstruction(ZydisInstructionDecoder* decoder,
|
|
|
|
const void* buffer, size_t bufferLen, ZydisInstructionInfo* info);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Decodes the instruction in the given input @c buffer.
|
2016-05-26 03:25:48 +08:00
|
|
|
*
|
2017-01-11 18:20:24 +08:00
|
|
|
* @param decoder A pointer to the @c ZydisInstructionDecoder instance.
|
|
|
|
* @param buffer A pointer to the input buffer.
|
|
|
|
* @param bufferLen The length of the input buffer.
|
|
|
|
* @param flags Additional decoding flags.
|
|
|
|
* @param info A pointer to the @c ZydisInstructionInfo struct, that receives the details
|
|
|
|
* about the decoded instruction.
|
2016-05-26 03:25:48 +08:00
|
|
|
*
|
2016-11-26 20:08:37 +08:00
|
|
|
* @return A zydis status code.
|
2016-05-26 03:25:48 +08:00
|
|
|
*/
|
2017-01-11 18:20:24 +08:00
|
|
|
ZYDIS_EXPORT ZydisStatus ZydisDecoderDecodeInstructionEx(ZydisInstructionDecoder* decoder,
|
|
|
|
const void* buffer, size_t bufferLen, ZydisDecoderFlags flags, ZydisInstructionInfo* info);
|
2016-05-26 03:25:48 +08:00
|
|
|
|
|
|
|
/* ============================================================================================== */
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* ZYDIS_DECODER_H */
|