mirror of
https://github.com/yuzu-emu/unicorn
synced 2024-11-24 07:58:18 +00:00
Merge pull request #1 from nbsdx/issue-534-unit
Unit Test for Issue #534
This commit is contained in:
commit
d8e1c9b557
1 changed files with 173 additions and 0 deletions
173
tests/unit/test_x86_rip_bug.c
Normal file
173
tests/unit/test_x86_rip_bug.c
Normal file
|
@ -0,0 +1,173 @@
|
|||
#include <unistd.h>
|
||||
#include <inttypes.h>
|
||||
#include <unicorn/unicorn.h>
|
||||
|
||||
#include "unicorn_test.h"
|
||||
|
||||
/**
|
||||
* Initialize i386 Unicorn Instance
|
||||
*/
|
||||
static int setup_i386(void **state)
|
||||
{
|
||||
uc_engine *uc;
|
||||
|
||||
uc_assert_success(uc_open(UC_ARCH_X86, UC_MODE_32, &uc));
|
||||
|
||||
*state = uc;
|
||||
return 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Initialize amd64 Unicorn Instance
|
||||
*/
|
||||
static int setup_amd64(void **state)
|
||||
{
|
||||
uc_engine *uc;
|
||||
|
||||
uc_assert_success(uc_open(UC_ARCH_X86, UC_MODE_64, &uc));
|
||||
|
||||
*state = uc;
|
||||
return 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Shutdown a Unicorn Instance
|
||||
*/
|
||||
static int teardown(void **state)
|
||||
{
|
||||
uc_engine *uc = *state;
|
||||
|
||||
uc_assert_success(uc_close(uc));
|
||||
|
||||
*state = NULL;
|
||||
return 0;
|
||||
}
|
||||
|
||||
/***********************************************************************************/
|
||||
|
||||
const uint64_t CodePage = 0x10000;
|
||||
const uint64_t CodeSize = 0x4000;
|
||||
|
||||
/**
|
||||
* Hook for reading unmapped memory in the i386 Unicorn Instance.
|
||||
*
|
||||
* BUG: EIP from uc_reg_read does not match expected value.
|
||||
*/
|
||||
static bool mem_hook_i386(uc_engine *uc, uc_mem_type type,
|
||||
uint64_t address, int size, int64_t value, void *user_data)
|
||||
{
|
||||
if (type == UC_MEM_READ_UNMAPPED)
|
||||
{
|
||||
uint32_t eip;
|
||||
uint32_t eax;
|
||||
|
||||
uc_reg_read(uc, UC_X86_REG_EIP, &eip);
|
||||
uc_reg_read(uc, UC_X86_REG_EAX, &eax);
|
||||
|
||||
/**
|
||||
* Code:
|
||||
* 0x10000: mov eax, 0x41414141 ;; <- Returned EIP
|
||||
* 0x10005: mov ecx, [eax] ;; <- Expected EIP
|
||||
*/
|
||||
if ((eax == 0x41414141) && // Proof we're at 0x10005.
|
||||
(eip != (CodePage + 0x5))) // Proof uc_reg_read is wrong
|
||||
{
|
||||
printf("De-synced EIP value. 0x%08X != 0x%08X\n", eip, (uint32_t)CodePage + 0x05);
|
||||
// Failure raised by the uc_emu_start() call.
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* Hook for reading unmapped memory in the amd64 Unicorn Instance.
|
||||
*
|
||||
* BUG: RIP from uc_reg_read does not match expected value.
|
||||
*/
|
||||
static bool mem_hook_amd64(uc_engine *uc, uc_mem_type type,
|
||||
uint64_t address, int size, int64_t value, void *user_data)
|
||||
{
|
||||
if (type == UC_MEM_READ_UNMAPPED)
|
||||
{
|
||||
uint64_t rip;
|
||||
uint64_t rax;
|
||||
|
||||
uc_reg_read(uc, UC_X86_REG_RIP, &rip);
|
||||
uc_reg_read(uc, UC_X86_REG_RAX, &rax);
|
||||
|
||||
/**
|
||||
* Code:
|
||||
* 0x10000: mov rax, 0x4141414141414141 ;; <- Returned RIP
|
||||
* 0x10005: mov rcx, [rax] ;; <- Expected RIP
|
||||
*/
|
||||
if ((rax == 0x4141414141414141) && // Proof we're at 0x10005
|
||||
(rip != (CodePage + 0x5))) // Proof uc_reg_read is wrong
|
||||
{
|
||||
printf("De-synced RIP value. 0x%016lX != 0x%016lX\n", rip, CodePage + 0x05);
|
||||
// Failure raised by the uc_emu_start() call.
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* Test the bug for i386.
|
||||
*
|
||||
* 1. Map Code Page
|
||||
* 2. Write Code to page.
|
||||
* 3. Install Unmapped Read hook.
|
||||
* 4. Run the VM.
|
||||
*/
|
||||
static void test_i386(void **state)
|
||||
{
|
||||
uc_engine *uc = *state;
|
||||
uc_hook trace1;
|
||||
|
||||
const uint8_t i386_bug[] = {
|
||||
0xb8, 0x41, 0x41, 0x41, 0x41, // mov eax, 0x41414141
|
||||
0x8b, 0x08 // mov ecx, [eax]
|
||||
};
|
||||
|
||||
uc_assert_success(uc_mem_map(uc, CodePage, CodeSize, UC_PROT_ALL));
|
||||
uc_assert_success(uc_mem_write(uc, CodePage, i386_bug, sizeof(i386_bug)));
|
||||
uc_assert_success(uc_hook_add(uc, &trace1, UC_HOOK_MEM_READ_UNMAPPED, mem_hook_i386, NULL, 1, 0));
|
||||
uc_assert_success(uc_emu_start(uc, CodePage, CodePage + sizeof(i386_bug), 0, 0));
|
||||
}
|
||||
|
||||
/**
|
||||
* Test the bug for amd64..
|
||||
*
|
||||
* 1. Map Code Page
|
||||
* 2. Write Code to page.
|
||||
* 3. Install Unmapped Read hook.
|
||||
* 4. Run the VM.
|
||||
*/
|
||||
static void test_amd64(void **state)
|
||||
{
|
||||
uc_engine *uc = *state;
|
||||
uc_hook trace1;
|
||||
|
||||
const uint8_t amd64_bug[] = {
|
||||
0x48, 0xb8, 0x41, 0x41, 0x41, 0x41,
|
||||
0x41, 0x41, 0x41, 0x41,
|
||||
0x48, 0x8b, 0x08
|
||||
};
|
||||
|
||||
uc_assert_success(uc_mem_map(uc, CodePage, CodeSize, UC_PROT_ALL));
|
||||
uc_assert_success(uc_mem_write(uc, CodePage, amd64_bug, sizeof(amd64_bug)));
|
||||
uc_assert_success(uc_hook_add(uc, &trace1, UC_HOOK_MEM_READ_UNMAPPED, mem_hook_amd64, NULL, 1, 0));
|
||||
uc_assert_success(uc_emu_start(uc, CodePage, CodePage + sizeof(amd64_bug), 0, 0));
|
||||
}
|
||||
|
||||
/**
|
||||
* Run all tests
|
||||
*/
|
||||
int main(int argc, char **argv, char **envp)
|
||||
{
|
||||
const struct CMUnitTest tests[] = {
|
||||
cmocka_unit_test_setup_teardown(test_i386, setup_i386, teardown),
|
||||
cmocka_unit_test_setup_teardown(test_amd64, setup_amd64, teardown)
|
||||
};
|
||||
|
||||
return cmocka_run_group_tests(tests, NULL, NULL);
|
||||
}
|
Loading…
Reference in a new issue