2016-05-26 03:25:48 +08:00
|
|
|
/***************************************************************************************************
|
|
|
|
|
|
|
|
Zyan Disassembler Engine (Zydis)
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
***************************************************************************************************/
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <Zydis/Utils.h>
|
|
|
|
|
|
|
|
/* ============================================================================================== */
|
|
|
|
/* Operand utils */
|
|
|
|
/* ============================================================================================== */
|
|
|
|
|
|
|
|
/* ---------------------------------------------------------------------------------------------- */
|
|
|
|
/* Exported functions */
|
|
|
|
/* ---------------------------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
ZydisStatus ZydisUtilsCalcAbsoluteTargetAddress(const ZydisInstructionInfo* info,
|
|
|
|
const ZydisOperandInfo* operand, uint64_t* address)
|
|
|
|
{
|
|
|
|
if (!info || !operand || !address)
|
|
|
|
{
|
|
|
|
return ZYDIS_STATUS_INVALID_PARAMETER;
|
|
|
|
}
|
|
|
|
switch (operand->type)
|
|
|
|
{
|
|
|
|
case ZYDIS_OPERAND_TYPE_MEMORY:
|
2016-11-12 05:03:26 +08:00
|
|
|
if (operand->mem.disp.dataSize == 0)
|
2016-05-26 03:25:48 +08:00
|
|
|
{
|
|
|
|
return ZYDIS_STATUS_INVALID_PARAMETER;
|
|
|
|
}
|
|
|
|
if (operand->mem.base == ZYDIS_REGISTER_EIP)
|
|
|
|
{
|
|
|
|
*address = (uint64_t)((uint32_t)info->instrPointer + operand->mem.disp.value.sdword);
|
|
|
|
return ZYDIS_STATUS_SUCCESS;
|
|
|
|
}
|
|
|
|
if (operand->mem.base == ZYDIS_REGISTER_RIP)
|
|
|
|
{
|
|
|
|
*address = (uint64_t)(info->instrPointer + operand->mem.disp.value.sqword);
|
|
|
|
return ZYDIS_STATUS_SUCCESS;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case ZYDIS_OPERAND_TYPE_IMMEDIATE:
|
2016-11-21 21:55:17 +08:00
|
|
|
if (operand->imm.isSigned && operand->imm.isRelative)
|
2016-05-26 03:25:48 +08:00
|
|
|
{
|
|
|
|
*address = (uint64_t)((int64_t)info->instrPointer + operand->imm.value.sqword);
|
2016-11-21 21:55:17 +08:00
|
|
|
switch (info->mode)
|
2016-05-26 03:25:48 +08:00
|
|
|
{
|
2016-11-21 21:55:17 +08:00
|
|
|
case ZYDIS_DISASSEMBLER_MODE_16BIT:
|
|
|
|
case ZYDIS_DISASSEMBLER_MODE_32BIT:
|
|
|
|
if (operand->size == 16)
|
2016-05-26 03:25:48 +08:00
|
|
|
{
|
2016-11-21 21:55:17 +08:00
|
|
|
*address &= 0xFFFF;
|
2016-05-26 03:25:48 +08:00
|
|
|
}
|
|
|
|
break;
|
2016-11-21 21:55:17 +08:00
|
|
|
case ZYDIS_DISASSEMBLER_MODE_64BIT:
|
|
|
|
assert((operand->size == 64)); // TODO: Remove after fuzzing
|
2016-11-12 05:03:26 +08:00
|
|
|
break;
|
2016-11-14 09:10:59 +08:00
|
|
|
default:
|
|
|
|
return ZYDIS_STATUS_INVALID_PARAMETER;
|
2016-05-26 03:25:48 +08:00
|
|
|
}
|
|
|
|
return ZYDIS_STATUS_SUCCESS;
|
|
|
|
}
|
|
|
|
break;
|
2016-11-12 05:03:26 +08:00
|
|
|
default:
|
|
|
|
break;
|
2016-05-26 03:25:48 +08:00
|
|
|
}
|
|
|
|
return ZYDIS_STATUS_INVALID_PARAMETER;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ---------------------------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
/* ============================================================================================== */
|