1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132
|
/***************************************************************************************************
Zyan Disassembler Library (Zydis)
Original Author : Joel Hoener
* 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.
***************************************************************************************************/
/**
* @file
*
* Example on assembling a basic function returning `0x1337` in `rax`.
*/
#include <Zydis/Zydis.h>
#include <Zycore/LibC.h>
#include <Zycore/API/Memory.h>
#include <inttypes.h>
/* ============================================================================================== */
/* Entry point */
/* ============================================================================================== */
static void ExpectSuccess(ZyanStatus status)
{
if (ZYAN_FAILED(status))
{
fprintf(stderr, "Something failed: 0x%08X\n", status);
exit(EXIT_FAILURE);
}
}
static void AppendInstruction(const ZydisEncoderRequest* req, ZyanU8** buffer,
ZyanUSize* buffer_length)
{
assert(req);
assert(buffer);
assert(buffer_length);
ZyanUSize instr_length = *buffer_length;
ExpectSuccess(ZydisEncoderEncodeInstruction(req, *buffer, &instr_length));
*buffer += instr_length;
*buffer_length -= instr_length;
}
static ZyanUSize AssembleCode(ZyanU8* buffer, ZyanUSize buffer_length)
{
assert(buffer);
assert(buffer_length);
ZyanU8* write_ptr = buffer;
ZyanUSize remaining_length = buffer_length;
// Assemble `mov rax, 0x1337`.
ZydisEncoderRequest req;
memset(&req, 0, sizeof(req));
req.mnemonic = ZYDIS_MNEMONIC_MOV;
req.machine_mode = ZYDIS_MACHINE_MODE_LONG_64;
req.operand_count = 2;
req.operands[0].type = ZYDIS_OPERAND_TYPE_REGISTER;
req.operands[0].reg.value = ZYDIS_REGISTER_RAX;
req.operands[1].type = ZYDIS_OPERAND_TYPE_IMMEDIATE;
req.operands[1].imm.u = 0x1337;
AppendInstruction(&req, &write_ptr, &remaining_length);
// Assemble `ret`.
memset(&req, 0, sizeof(req));
req.mnemonic = ZYDIS_MNEMONIC_RET;
req.machine_mode = ZYDIS_MACHINE_MODE_LONG_64;
AppendInstruction(&req, &write_ptr, &remaining_length);
return buffer_length - remaining_length;
}
int main(void)
{
// Allocate 2 pages of memory. We won't need nearly as much, but it simplifies
// re-protecting the memory to RWX later.
const ZyanUSize page_size = 0x1000;
const ZyanUSize alloc_size = page_size * 2;
ZyanU8* buffer = malloc(alloc_size);
// Assemble our function.
const ZyanUSize length = AssembleCode(buffer, alloc_size);
// Print a hex-dump of the assembled code.
puts("Created byte-code:");
for (ZyanUSize i = 0; i < length; ++i)
{
printf("%02X ", buffer[i]);
}
puts("");
#ifdef ZYAN_X64
// Align pointer to typical page size.
void* aligned = (void*)((ZyanUPointer)buffer & ~(page_size-1));
// Re-protect the heap region as RWX. Don't do this at home, kids!
ExpectSuccess(ZyanMemoryVirtualProtect(aligned, alloc_size, ZYAN_PAGE_EXECUTE_READWRITE));
// Create a function pointer for our buffer.
typedef ZyanU64(*FnPtr)(void);
const FnPtr func_ptr = (FnPtr)(uintptr_t)buffer;
// Call the function!
const ZyanU64 result = func_ptr();
printf("Return value of JITed code: 0x%016" PRIx64 "\n", result);
#endif
}
/* ============================================================================================== */
|