2015-08-21 10:04:50 +03:00
|
|
|
/* Unicorn Emulator Engine */
|
|
|
|
/* By Nguyen Anh Quynh <aquynh@gmail.com>, 2015 */
|
|
|
|
|
|
|
|
#if defined (WIN32) || defined (WIN64) || defined (_WIN32) || defined (_WIN64)
|
|
|
|
#pragma warning(disable:4996)
|
|
|
|
#endif
|
|
|
|
#if defined(UNICORN_HAS_OSXKERNEL)
|
|
|
|
#include <libkern/libkern.h>
|
|
|
|
#else
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <time.h> // nanosleep
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
#ifndef _WIN32
|
|
|
|
#include <sys/mman.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "uc_priv.h"
|
|
|
|
#include "hook.h"
|
|
|
|
|
|
|
|
// target specific headers
|
|
|
|
#include "qemu/target-m68k/unicorn.h"
|
|
|
|
#include "qemu/target-i386/unicorn.h"
|
|
|
|
#include "qemu/target-arm/unicorn.h"
|
|
|
|
#include "qemu/target-mips/unicorn.h"
|
|
|
|
#include "qemu/target-sparc/unicorn.h"
|
|
|
|
|
|
|
|
#include "qemu/include/hw/boards.h"
|
|
|
|
|
|
|
|
UNICORN_EXPORT
|
|
|
|
unsigned int uc_version(unsigned int *major, unsigned int *minor)
|
|
|
|
{
|
|
|
|
if (major != NULL && minor != NULL) {
|
|
|
|
*major = UC_API_MAJOR;
|
|
|
|
*minor = UC_API_MINOR;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (UC_API_MAJOR << 8) + UC_API_MINOR;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
UNICORN_EXPORT
|
2015-08-26 13:39:51 +03:00
|
|
|
uc_err uc_errno(struct uc_struct *uc)
|
2015-08-21 10:04:50 +03:00
|
|
|
{
|
|
|
|
return uc->errnum;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
UNICORN_EXPORT
|
|
|
|
const char *uc_strerror(uc_err code)
|
|
|
|
{
|
|
|
|
switch(code) {
|
|
|
|
default:
|
|
|
|
return "Unknown error code";
|
|
|
|
case UC_ERR_OK:
|
|
|
|
return "OK (UC_ERR_OK)";
|
|
|
|
case UC_ERR_OOM:
|
|
|
|
return "Out of memory (UC_ERR_OOM)";
|
|
|
|
case UC_ERR_ARCH:
|
|
|
|
return "Invalid/unsupported architecture(UC_ERR_ARCH)";
|
|
|
|
case UC_ERR_HANDLE:
|
|
|
|
return "Invalid handle (UC_ERR_HANDLE)";
|
|
|
|
case UC_ERR_MODE:
|
|
|
|
return "Invalid mode (UC_ERR_MODE)";
|
|
|
|
case UC_ERR_VERSION:
|
|
|
|
return "Different API version between core & binding (UC_ERR_VERSION)";
|
|
|
|
case UC_ERR_MEM_READ:
|
|
|
|
return "Invalid memory read (UC_ERR_MEM_READ)";
|
|
|
|
case UC_ERR_MEM_WRITE:
|
|
|
|
return "Invalid memory write (UC_ERR_MEM_WRITE)";
|
|
|
|
case UC_ERR_CODE_INVALID:
|
|
|
|
return "Invalid code address (UC_ERR_CODE_INVALID)";
|
|
|
|
case UC_ERR_INSN_INVALID:
|
|
|
|
return "Invalid instruction (UC_ERR_INSN_INVALID)";
|
|
|
|
case UC_ERR_HOOK:
|
|
|
|
return "Invalid hook type (UC_ERR_HOOK)";
|
2015-08-24 00:16:40 +03:00
|
|
|
case UC_ERR_MAP:
|
|
|
|
return "Invalid memory mapping (UC_ERR_MAP)";
|
2015-08-28 13:42:25 +03:00
|
|
|
case UC_ERR_MEM_WRITE_NW:
|
|
|
|
return "Write to non-writable (UC_ERR_MEM_WRITE_NW)";
|
|
|
|
case UC_ERR_MEM_READ_NR:
|
|
|
|
return "Read from non-readable (UC_ERR_MEM_READ_NR)";
|
2015-08-21 10:04:50 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
UNICORN_EXPORT
|
2015-08-24 04:10:47 +03:00
|
|
|
bool uc_arch_supported(uc_arch arch)
|
2015-08-21 10:04:50 +03:00
|
|
|
{
|
2015-08-24 04:10:47 +03:00
|
|
|
switch (arch) {
|
|
|
|
#ifdef UNICORN_HAS_ARM
|
|
|
|
case UC_ARCH_ARM: return true;
|
|
|
|
#endif
|
|
|
|
#ifdef UNICORN_HAS_ARM64
|
|
|
|
case UC_ARCH_ARM64: return true;
|
|
|
|
#endif
|
|
|
|
#ifdef UNICORN_HAS_M68K
|
|
|
|
case UC_ARCH_M68K: return true;
|
|
|
|
#endif
|
|
|
|
#ifdef UNICORN_HAS_MIPS
|
|
|
|
case UC_ARCH_MIPS: return true;
|
|
|
|
#endif
|
|
|
|
#ifdef UNICORN_HAS_PPC
|
|
|
|
case UC_ARCH_PPC: return true;
|
|
|
|
#endif
|
|
|
|
#ifdef UNICORN_HAS_SPARC
|
|
|
|
case UC_ARCH_SPARC: return true;
|
|
|
|
#endif
|
|
|
|
#ifdef UNICORN_HAS_X86
|
|
|
|
case UC_ARCH_X86: return true;
|
|
|
|
#endif
|
2015-08-21 10:04:50 +03:00
|
|
|
|
2015-08-24 04:10:47 +03:00
|
|
|
/* Invalid or disabled arch */
|
|
|
|
default: return false;
|
|
|
|
}
|
2015-08-21 10:04:50 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
UNICORN_EXPORT
|
2015-08-26 13:39:51 +03:00
|
|
|
uc_err uc_open(uc_arch arch, uc_mode mode, struct uc_struct **result)
|
2015-08-21 10:04:50 +03:00
|
|
|
{
|
|
|
|
struct uc_struct *uc;
|
|
|
|
|
|
|
|
if (arch < UC_ARCH_MAX) {
|
|
|
|
uc = calloc(1, sizeof(*uc));
|
|
|
|
if (!uc) {
|
|
|
|
// memory insufficient
|
|
|
|
return UC_ERR_OOM;
|
|
|
|
}
|
|
|
|
|
|
|
|
uc->errnum = UC_ERR_OK;
|
|
|
|
uc->arch = arch;
|
|
|
|
uc->mode = mode;
|
|
|
|
|
|
|
|
// uc->cpus = QTAILQ_HEAD_INITIALIZER(uc->cpus);
|
|
|
|
uc->cpus.tqh_first = NULL;
|
|
|
|
uc->cpus.tqh_last = &(uc->cpus.tqh_first);
|
|
|
|
// uc->ram_list = { .blocks = QTAILQ_HEAD_INITIALIZER(ram_list.blocks) };
|
|
|
|
uc->ram_list.blocks.tqh_first = NULL;
|
|
|
|
uc->ram_list.blocks.tqh_last = &(uc->ram_list.blocks.tqh_first);
|
|
|
|
|
|
|
|
uc->x86_global_cpu_lock = SPIN_LOCK_UNLOCKED;
|
|
|
|
|
|
|
|
uc->memory_listeners.tqh_first = NULL;
|
|
|
|
uc->memory_listeners.tqh_last = &uc->memory_listeners.tqh_first;
|
|
|
|
|
|
|
|
uc->address_spaces.tqh_first = NULL;
|
|
|
|
uc->address_spaces.tqh_last = &uc->address_spaces.tqh_first;
|
|
|
|
|
|
|
|
switch(arch) {
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
#ifdef UNICORN_HAS_M68K
|
|
|
|
case UC_ARCH_M68K:
|
|
|
|
uc->init_arch = m68k_uc_init;
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
#ifdef UNICORN_HAS_X86
|
|
|
|
case UC_ARCH_X86:
|
|
|
|
uc->init_arch = x86_uc_init;
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
#ifdef UNICORN_HAS_ARM
|
|
|
|
case UC_ARCH_ARM:
|
|
|
|
uc->init_arch = arm_uc_init;
|
2015-08-24 04:50:55 +03:00
|
|
|
|
|
|
|
// verify mode
|
|
|
|
if (mode != UC_MODE_ARM && mode != UC_MODE_THUMB) {
|
|
|
|
free(uc);
|
|
|
|
return UC_ERR_MODE;
|
|
|
|
}
|
|
|
|
|
2015-08-21 10:04:50 +03:00
|
|
|
if (mode == UC_MODE_THUMB)
|
|
|
|
uc->thumb = 1;
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
#ifdef UNICORN_HAS_ARM64
|
|
|
|
case UC_ARCH_ARM64:
|
|
|
|
uc->init_arch = arm64_uc_init;
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(UNICORN_HAS_MIPS) || defined(UNICORN_HAS_MIPSEL) || defined(UNICORN_HAS_MIPS64) || defined(UNICORN_HAS_MIPS64EL)
|
|
|
|
case UC_ARCH_MIPS:
|
|
|
|
if (mode & UC_MODE_BIG_ENDIAN) {
|
|
|
|
#ifdef UNICORN_HAS_MIPS
|
|
|
|
if (mode & UC_MODE_MIPS32)
|
|
|
|
uc->init_arch = mips_uc_init;
|
|
|
|
#endif
|
|
|
|
#ifdef UNICORN_HAS_MIPS64
|
|
|
|
if (mode & UC_MODE_MIPS64)
|
|
|
|
uc->init_arch = mips64_uc_init;
|
|
|
|
#endif
|
|
|
|
} else { // little endian
|
|
|
|
#ifdef UNICORN_HAS_MIPSEL
|
|
|
|
if (mode & UC_MODE_MIPS32)
|
|
|
|
uc->init_arch = mipsel_uc_init;
|
|
|
|
#endif
|
|
|
|
#ifdef UNICORN_HAS_MIPS64EL
|
|
|
|
if (mode & UC_MODE_MIPS64)
|
|
|
|
uc->init_arch = mips64el_uc_init;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef UNICORN_HAS_SPARC
|
|
|
|
case UC_ARCH_SPARC:
|
|
|
|
if (mode & UC_MODE_64)
|
|
|
|
uc->init_arch = sparc64_uc_init;
|
|
|
|
else
|
|
|
|
uc->init_arch = sparc_uc_init;
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
if (uc->init_arch == NULL) {
|
|
|
|
return UC_ERR_ARCH;
|
|
|
|
}
|
|
|
|
|
|
|
|
machine_initialize(uc);
|
|
|
|
|
2015-08-26 13:39:51 +03:00
|
|
|
*result = uc;
|
2015-08-21 10:04:50 +03:00
|
|
|
|
|
|
|
if (uc->reg_reset)
|
2015-08-26 13:39:51 +03:00
|
|
|
uc->reg_reset(uc);
|
2015-08-21 10:04:50 +03:00
|
|
|
|
|
|
|
uc->hook_size = HOOK_SIZE;
|
|
|
|
uc->hook_callbacks = calloc(1, sizeof(uc->hook_callbacks[0]) * HOOK_SIZE);
|
|
|
|
|
|
|
|
return UC_ERR_OK;
|
|
|
|
} else {
|
|
|
|
return UC_ERR_ARCH;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
UNICORN_EXPORT
|
2015-08-26 13:39:51 +03:00
|
|
|
uc_err uc_close(struct uc_struct *uc)
|
2015-08-21 10:04:50 +03:00
|
|
|
{
|
|
|
|
if (uc->release)
|
|
|
|
uc->release(uc->tcg_ctx);
|
|
|
|
|
|
|
|
#ifndef _WIN32
|
|
|
|
free(uc->l1_map);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (uc->bounce.buffer) {
|
|
|
|
free(uc->bounce.buffer);
|
|
|
|
}
|
|
|
|
|
|
|
|
g_free(uc->tcg_ctx);
|
|
|
|
|
|
|
|
free((void*) uc->system_memory->name);
|
|
|
|
g_free(uc->system_memory);
|
|
|
|
g_hash_table_destroy(uc->type_table);
|
|
|
|
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < DIRTY_MEMORY_NUM; i++) {
|
|
|
|
free(uc->ram_list.dirty_memory[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: remove uc->root (created with object_new())
|
|
|
|
uc->root->free(uc->root);
|
|
|
|
|
|
|
|
free(uc->hook_callbacks);
|
2015-08-26 18:23:36 +03:00
|
|
|
|
2015-08-26 18:41:30 +03:00
|
|
|
free(uc->mapped_blocks);
|
2015-08-21 10:04:50 +03:00
|
|
|
|
|
|
|
// finally, free uc itself.
|
|
|
|
memset(uc, 0, sizeof(*uc));
|
|
|
|
free(uc);
|
|
|
|
|
|
|
|
return UC_ERR_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
UNICORN_EXPORT
|
2015-08-26 13:39:51 +03:00
|
|
|
uc_err uc_reg_read(struct uc_struct *uc, int regid, void *value)
|
2015-08-21 10:04:50 +03:00
|
|
|
{
|
|
|
|
if (uc->reg_read)
|
2015-08-26 13:39:51 +03:00
|
|
|
uc->reg_read(uc, regid, value);
|
2015-08-21 10:04:50 +03:00
|
|
|
else
|
|
|
|
return -1; // FIXME: need a proper uc_err
|
|
|
|
|
|
|
|
return UC_ERR_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
UNICORN_EXPORT
|
2015-08-26 13:39:51 +03:00
|
|
|
uc_err uc_reg_write(struct uc_struct *uc, int regid, const void *value)
|
2015-08-21 10:04:50 +03:00
|
|
|
{
|
|
|
|
if (uc->reg_write)
|
2015-08-26 13:39:51 +03:00
|
|
|
uc->reg_write(uc, regid, value);
|
2015-08-21 10:04:50 +03:00
|
|
|
else
|
|
|
|
return -1; // FIXME: need a proper uc_err
|
|
|
|
|
|
|
|
return UC_ERR_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-08-29 05:23:53 +03:00
|
|
|
// check if a memory area is mapped
|
|
|
|
// this is complicated because an area can overlap adjacent blocks
|
|
|
|
static bool check_mem_area(struct uc_struct *uc, uint64_t address, size_t size)
|
|
|
|
{
|
|
|
|
size_t count = 0, len;
|
|
|
|
|
|
|
|
while(count < size) {
|
|
|
|
MemoryRegion *mr = memory_mapping(uc, address);
|
|
|
|
if (mr) {
|
|
|
|
len = MIN(size - count, mr->end - address);
|
|
|
|
count += len;
|
|
|
|
address += len;
|
|
|
|
} else // this address is not mapped in yet
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (count == size);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-08-21 10:04:50 +03:00
|
|
|
UNICORN_EXPORT
|
2015-08-26 13:39:51 +03:00
|
|
|
uc_err uc_mem_read(struct uc_struct *uc, uint64_t address, uint8_t *bytes, size_t size)
|
2015-08-21 10:04:50 +03:00
|
|
|
{
|
2015-08-29 05:23:53 +03:00
|
|
|
if (!check_mem_area(uc, address, size))
|
2015-08-21 10:04:50 +03:00
|
|
|
return UC_ERR_MEM_READ;
|
|
|
|
|
2015-08-29 05:23:53 +03:00
|
|
|
size_t count = 0, len;
|
2015-08-21 10:04:50 +03:00
|
|
|
|
2015-08-29 05:23:53 +03:00
|
|
|
// memory area can overlap adjacent memory blocks
|
|
|
|
while(count < size) {
|
|
|
|
MemoryRegion *mr = memory_mapping(uc, address);
|
|
|
|
if (mr) {
|
|
|
|
len = MIN(size - count, mr->end - address);
|
|
|
|
if (uc->read_mem(&uc->as, address, bytes, len) == false)
|
|
|
|
break;
|
|
|
|
count += len;
|
|
|
|
address += len;
|
|
|
|
bytes += len;
|
|
|
|
} else // this address is not mapped in yet
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (count == size)
|
|
|
|
return UC_ERR_OK;
|
|
|
|
else
|
|
|
|
return UC_ERR_MEM_READ;
|
2015-08-21 10:04:50 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
UNICORN_EXPORT
|
2015-08-26 13:39:51 +03:00
|
|
|
uc_err uc_mem_write(struct uc_struct *uc, uint64_t address, const uint8_t *bytes, size_t size)
|
2015-08-21 10:04:50 +03:00
|
|
|
{
|
2015-08-29 05:23:53 +03:00
|
|
|
if (!check_mem_area(uc, address, size))
|
2015-08-21 10:04:50 +03:00
|
|
|
return UC_ERR_MEM_WRITE;
|
|
|
|
|
2015-08-29 05:23:53 +03:00
|
|
|
size_t count = 0, len;
|
2015-08-26 23:29:54 +03:00
|
|
|
|
2015-08-29 05:23:53 +03:00
|
|
|
// memory area can overlap adjacent memory blocks
|
|
|
|
while(count < size) {
|
|
|
|
MemoryRegion *mr = memory_mapping(uc, address);
|
|
|
|
if (mr) {
|
|
|
|
uint32_t operms = mr->perms;
|
|
|
|
if (!(operms & UC_PROT_WRITE)) // write protected
|
|
|
|
// but this is not the program accessing memory, so temporarily mark writable
|
|
|
|
uc->readonly_mem(mr, false);
|
2015-08-21 10:04:50 +03:00
|
|
|
|
2015-08-29 05:23:53 +03:00
|
|
|
len = MIN(size - count, mr->end - address);
|
|
|
|
if (uc->write_mem(&uc->as, address, bytes, len) == false)
|
|
|
|
break;
|
2015-08-26 23:29:54 +03:00
|
|
|
|
2015-08-29 05:23:53 +03:00
|
|
|
if (!(operms & UC_PROT_WRITE)) // write protected
|
|
|
|
// now write protect it again
|
|
|
|
uc->readonly_mem(mr, true);
|
|
|
|
|
|
|
|
count += len;
|
|
|
|
address += len;
|
|
|
|
bytes += len;
|
|
|
|
} else // this address is not mapped in yet
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (count == size)
|
|
|
|
return UC_ERR_OK;
|
|
|
|
else
|
|
|
|
return UC_ERR_MEM_WRITE;
|
2015-08-21 10:04:50 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#define TIMEOUT_STEP 2 // microseconds
|
|
|
|
static void *_timeout_fn(void *arg)
|
|
|
|
{
|
|
|
|
struct uc_struct *uc = (struct uc_struct *)arg;
|
|
|
|
int64_t current_time = get_clock();
|
|
|
|
|
|
|
|
do {
|
|
|
|
usleep(TIMEOUT_STEP);
|
|
|
|
// perhaps emulation is even done before timeout?
|
|
|
|
if (uc->emulation_done)
|
|
|
|
break;
|
|
|
|
} while(get_clock() - current_time < uc->timeout);
|
|
|
|
|
|
|
|
// timeout before emulation is done?
|
|
|
|
if (!uc->emulation_done) {
|
|
|
|
// force emulation to stop
|
2015-08-26 14:32:05 +03:00
|
|
|
uc_emu_stop(uc);
|
2015-08-21 10:04:50 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2015-08-26 13:39:51 +03:00
|
|
|
static void enable_emu_timer(struct uc_struct *uc, uint64_t timeout)
|
2015-08-21 10:04:50 +03:00
|
|
|
{
|
|
|
|
uc->timeout = timeout;
|
2015-09-02 11:13:12 +03:00
|
|
|
qemu_thread_create(uc, &uc->timer, "timeout", _timeout_fn,
|
2015-08-21 10:04:50 +03:00
|
|
|
uc, QEMU_THREAD_JOINABLE);
|
|
|
|
}
|
|
|
|
|
|
|
|
UNICORN_EXPORT
|
2015-08-26 13:39:51 +03:00
|
|
|
uc_err uc_emu_start(struct uc_struct* uc, uint64_t begin, uint64_t until, uint64_t timeout, size_t count)
|
2015-08-21 10:04:50 +03:00
|
|
|
{
|
2015-08-24 19:02:31 +03:00
|
|
|
// reset the counter
|
|
|
|
uc->emu_counter = 0;
|
|
|
|
uc->stop_request = false;
|
|
|
|
uc->invalid_error = UC_ERR_OK;
|
2015-08-25 09:50:55 +03:00
|
|
|
uc->block_full = false;
|
2015-08-29 04:22:53 +03:00
|
|
|
uc->emulation_done = false;
|
2015-08-24 19:02:31 +03:00
|
|
|
|
2015-08-21 10:04:50 +03:00
|
|
|
switch(uc->arch) {
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case UC_ARCH_M68K:
|
2015-08-26 13:39:51 +03:00
|
|
|
uc_reg_write(uc, UC_M68K_REG_PC, &begin);
|
2015-08-21 10:04:50 +03:00
|
|
|
break;
|
|
|
|
|
|
|
|
case UC_ARCH_X86:
|
|
|
|
switch(uc->mode) {
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
case UC_MODE_16:
|
2015-08-26 13:39:51 +03:00
|
|
|
uc_reg_write(uc, UC_X86_REG_IP, &begin);
|
2015-08-21 10:04:50 +03:00
|
|
|
break;
|
|
|
|
case UC_MODE_32:
|
2015-08-26 13:39:51 +03:00
|
|
|
uc_reg_write(uc, UC_X86_REG_EIP, &begin);
|
2015-08-21 10:04:50 +03:00
|
|
|
break;
|
|
|
|
case UC_MODE_64:
|
2015-08-26 13:39:51 +03:00
|
|
|
uc_reg_write(uc, UC_X86_REG_RIP, &begin);
|
2015-08-21 10:04:50 +03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case UC_ARCH_ARM:
|
|
|
|
switch(uc->mode) {
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
case UC_MODE_THUMB:
|
|
|
|
case UC_MODE_ARM:
|
2015-08-26 13:39:51 +03:00
|
|
|
uc_reg_write(uc, UC_ARM_REG_R15, &begin);
|
2015-08-21 10:04:50 +03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case UC_ARCH_ARM64:
|
2015-08-26 13:39:51 +03:00
|
|
|
uc_reg_write(uc, UC_ARM64_REG_PC, &begin);
|
2015-08-21 10:04:50 +03:00
|
|
|
break;
|
|
|
|
|
|
|
|
case UC_ARCH_MIPS:
|
|
|
|
// TODO: MIPS32/MIPS64/BIGENDIAN etc
|
2015-08-26 13:39:51 +03:00
|
|
|
uc_reg_write(uc, UC_MIPS_REG_PC, &begin);
|
2015-08-21 10:04:50 +03:00
|
|
|
break;
|
|
|
|
|
|
|
|
case UC_ARCH_SPARC:
|
|
|
|
// TODO: Sparc/Sparc64
|
2015-08-26 13:39:51 +03:00
|
|
|
uc_reg_write(uc, UC_SPARC_REG_PC, &begin);
|
2015-08-21 10:04:50 +03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
uc->emu_count = count;
|
|
|
|
if (count > 0) {
|
|
|
|
uc->hook_insn = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
uc->addr_end = until;
|
|
|
|
|
|
|
|
uc->vm_start(uc);
|
|
|
|
if (timeout)
|
2015-08-26 13:39:51 +03:00
|
|
|
enable_emu_timer(uc, timeout * 1000); // microseconds -> nanoseconds
|
2015-08-21 10:04:50 +03:00
|
|
|
uc->pause_all_vcpus(uc);
|
|
|
|
// emulation is done
|
|
|
|
uc->emulation_done = true;
|
|
|
|
|
2015-08-30 00:12:04 +03:00
|
|
|
if (timeout) {
|
|
|
|
// wait for the timer to finish
|
|
|
|
qemu_thread_join(&uc->timer);
|
|
|
|
}
|
|
|
|
|
2015-08-21 10:04:50 +03:00
|
|
|
return uc->invalid_error;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
UNICORN_EXPORT
|
2015-08-26 13:39:51 +03:00
|
|
|
uc_err uc_emu_stop(struct uc_struct *uc)
|
2015-08-21 10:04:50 +03:00
|
|
|
{
|
2015-08-29 04:10:18 +03:00
|
|
|
if (uc->emulation_done)
|
|
|
|
return UC_ERR_OK;
|
|
|
|
|
2015-08-21 10:04:50 +03:00
|
|
|
uc->stop_request = true;
|
|
|
|
// exit the current TB
|
|
|
|
cpu_exit(uc->current_cpu);
|
|
|
|
|
|
|
|
return UC_ERR_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-08-26 13:39:51 +03:00
|
|
|
static int _hook_code(struct uc_struct *uc, int type, uint64_t begin, uint64_t end,
|
2015-08-26 14:32:05 +03:00
|
|
|
void *callback, void *user_data, uc_hook_h *hh)
|
2015-08-21 10:04:50 +03:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
2015-08-26 13:39:51 +03:00
|
|
|
i = hook_add(uc, type, begin, end, callback, user_data);
|
2015-08-21 10:04:50 +03:00
|
|
|
if (i == 0)
|
|
|
|
return UC_ERR_OOM; // FIXME
|
|
|
|
|
2015-08-26 14:32:05 +03:00
|
|
|
*hh = i;
|
2015-08-21 10:04:50 +03:00
|
|
|
|
|
|
|
return UC_ERR_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-09-03 04:04:43 +03:00
|
|
|
static uc_err _hook_mem_access(struct uc_struct *uc, uc_hook_t type,
|
2015-08-21 10:04:50 +03:00
|
|
|
uint64_t begin, uint64_t end,
|
2015-08-26 14:32:05 +03:00
|
|
|
void *callback, void *user_data, uc_hook_h *hh)
|
2015-08-21 10:04:50 +03:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
2015-08-26 13:39:51 +03:00
|
|
|
i = hook_add(uc, type, begin, end, callback, user_data);
|
2015-08-21 10:04:50 +03:00
|
|
|
if (i == 0)
|
|
|
|
return UC_ERR_OOM; // FIXME
|
|
|
|
|
2015-08-26 14:32:05 +03:00
|
|
|
*hh = i;
|
2015-08-21 10:04:50 +03:00
|
|
|
|
|
|
|
return UC_ERR_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
UNICORN_EXPORT
|
2015-08-30 07:02:33 +03:00
|
|
|
uc_err uc_mem_map(struct uc_struct *uc, uint64_t address, size_t size, uint32_t perms)
|
2015-08-21 10:04:50 +03:00
|
|
|
{
|
2015-08-28 09:19:32 +03:00
|
|
|
MemoryRegion **regions;
|
2015-08-21 10:04:50 +03:00
|
|
|
|
2015-08-24 00:16:40 +03:00
|
|
|
if (size == 0)
|
|
|
|
// invalid memory mapping
|
|
|
|
return UC_ERR_MAP;
|
|
|
|
|
2015-08-26 06:29:14 +03:00
|
|
|
// address must be aligned to 4KB
|
|
|
|
if ((address & (4*1024 - 1)) != 0)
|
|
|
|
return UC_ERR_MAP;
|
|
|
|
|
|
|
|
// size must be multiple of 4KB
|
|
|
|
if ((size & (4*1024 - 1)) != 0)
|
|
|
|
return UC_ERR_MAP;
|
|
|
|
|
2015-08-26 23:29:54 +03:00
|
|
|
// check for only valid permissions
|
2015-08-28 09:19:32 +03:00
|
|
|
if ((perms & ~(UC_PROT_READ | UC_PROT_WRITE)) != 0)
|
2015-08-26 23:29:54 +03:00
|
|
|
return UC_ERR_MAP;
|
|
|
|
|
2015-08-26 09:08:18 +03:00
|
|
|
if ((uc->mapped_block_count & (MEM_BLOCK_INCR - 1)) == 0) { //time to grow
|
2015-08-28 09:19:32 +03:00
|
|
|
regions = (MemoryRegion**)realloc(uc->mapped_blocks, sizeof(MemoryRegion*) * (uc->mapped_block_count + MEM_BLOCK_INCR));
|
|
|
|
if (regions == NULL) {
|
2015-08-26 09:08:18 +03:00
|
|
|
return UC_ERR_OOM;
|
|
|
|
}
|
2015-08-28 09:19:32 +03:00
|
|
|
uc->mapped_blocks = regions;
|
2015-08-26 07:52:18 +03:00
|
|
|
}
|
2015-08-28 09:19:32 +03:00
|
|
|
uc->mapped_blocks[uc->mapped_block_count] = uc->memory_map(uc, address, size, perms);
|
2015-08-26 07:52:18 +03:00
|
|
|
uc->mapped_block_count++;
|
2015-08-21 10:04:50 +03:00
|
|
|
|
|
|
|
return UC_ERR_OK;
|
|
|
|
}
|
|
|
|
|
2015-08-28 04:03:17 +03:00
|
|
|
MemoryRegion *memory_mapping(struct uc_struct* uc, uint64_t address)
|
2015-08-21 10:04:50 +03:00
|
|
|
{
|
|
|
|
unsigned int i;
|
|
|
|
|
2015-08-26 07:52:18 +03:00
|
|
|
for(i = 0; i < uc->mapped_block_count; i++) {
|
2015-08-28 09:19:32 +03:00
|
|
|
if (address >= uc->mapped_blocks[i]->addr && address < uc->mapped_blocks[i]->end)
|
|
|
|
return uc->mapped_blocks[i];
|
2015-08-21 10:04:50 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// not found
|
2015-08-28 04:03:17 +03:00
|
|
|
return NULL;
|
2015-08-21 10:04:50 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static uc_err _hook_mem_invalid(struct uc_struct* uc, uc_cb_eventmem_t callback,
|
2015-08-26 14:32:05 +03:00
|
|
|
void *user_data, uc_hook_h *evh)
|
2015-08-21 10:04:50 +03:00
|
|
|
{
|
|
|
|
size_t i;
|
|
|
|
|
|
|
|
// FIXME: only one event handler at the same time
|
|
|
|
|
|
|
|
i = hook_find_new(uc);
|
|
|
|
if (i) {
|
|
|
|
uc->hook_callbacks[i].callback = callback;
|
|
|
|
uc->hook_callbacks[i].user_data = user_data;
|
|
|
|
*evh = i;
|
|
|
|
uc->hook_mem_idx = i;
|
|
|
|
return UC_ERR_OK;
|
|
|
|
} else
|
|
|
|
return UC_ERR_OOM;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static uc_err _hook_intr(struct uc_struct* uc, void *callback,
|
2015-08-26 14:32:05 +03:00
|
|
|
void *user_data, uc_hook_h *evh)
|
2015-08-21 10:04:50 +03:00
|
|
|
{
|
|
|
|
size_t i;
|
|
|
|
|
|
|
|
// FIXME: only one event handler at the same time
|
|
|
|
|
|
|
|
i = hook_find_new(uc);
|
|
|
|
if (i) {
|
|
|
|
uc->hook_callbacks[i].callback = callback;
|
|
|
|
uc->hook_callbacks[i].user_data = user_data;
|
|
|
|
*evh = i;
|
|
|
|
uc->hook_intr_idx = i;
|
|
|
|
return UC_ERR_OK;
|
|
|
|
} else
|
|
|
|
return UC_ERR_OOM;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static uc_err _hook_insn(struct uc_struct *uc, unsigned int insn_id, void *callback,
|
2015-08-26 14:32:05 +03:00
|
|
|
void *user_data, uc_hook_h *evh)
|
2015-08-21 10:04:50 +03:00
|
|
|
{
|
|
|
|
size_t i;
|
|
|
|
|
|
|
|
switch(uc->arch) {
|
|
|
|
default: break;
|
|
|
|
case UC_ARCH_X86:
|
|
|
|
switch(insn_id) {
|
|
|
|
default: break;
|
2015-08-24 07:36:33 +03:00
|
|
|
case UC_X86_INS_OUT:
|
2015-08-21 10:04:50 +03:00
|
|
|
// FIXME: only one event handler at the same time
|
|
|
|
i = hook_find_new(uc);
|
|
|
|
if (i) {
|
|
|
|
uc->hook_callbacks[i].callback = callback;
|
|
|
|
uc->hook_callbacks[i].user_data = user_data;
|
|
|
|
*evh = i;
|
|
|
|
uc->hook_out_idx = i;
|
|
|
|
return UC_ERR_OK;
|
|
|
|
} else
|
|
|
|
return UC_ERR_OOM;
|
2015-08-24 07:36:33 +03:00
|
|
|
case UC_X86_INS_IN:
|
2015-08-21 10:04:50 +03:00
|
|
|
// FIXME: only one event handler at the same time
|
|
|
|
i = hook_find_new(uc);
|
|
|
|
if (i) {
|
|
|
|
uc->hook_callbacks[i].callback = callback;
|
|
|
|
uc->hook_callbacks[i].user_data = user_data;
|
|
|
|
*evh = i;
|
|
|
|
uc->hook_in_idx = i;
|
|
|
|
return UC_ERR_OK;
|
|
|
|
} else
|
|
|
|
return UC_ERR_OOM;
|
2015-08-24 07:36:33 +03:00
|
|
|
case UC_X86_INS_SYSCALL:
|
|
|
|
case UC_X86_INS_SYSENTER:
|
2015-08-22 20:19:40 +03:00
|
|
|
// FIXME: only one event handler at the same time
|
|
|
|
i = hook_find_new(uc);
|
|
|
|
if (i) {
|
|
|
|
uc->hook_callbacks[i].callback = callback;
|
|
|
|
uc->hook_callbacks[i].user_data = user_data;
|
|
|
|
*evh = i;
|
|
|
|
uc->hook_syscall_idx = i;
|
|
|
|
return UC_ERR_OK;
|
|
|
|
} else
|
|
|
|
return UC_ERR_OOM;
|
2015-08-21 10:04:50 +03:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return UC_ERR_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
UNICORN_EXPORT
|
2015-08-26 14:32:05 +03:00
|
|
|
uc_err uc_hook_add(struct uc_struct *uc, uc_hook_h *hh, uc_hook_t type, void *callback, void *user_data, ...)
|
2015-08-21 10:04:50 +03:00
|
|
|
{
|
|
|
|
va_list valist;
|
|
|
|
int ret = UC_ERR_OK;
|
|
|
|
int id;
|
|
|
|
uint64_t begin, end;
|
|
|
|
|
|
|
|
va_start(valist, user_data);
|
|
|
|
|
|
|
|
switch(type) {
|
|
|
|
default:
|
|
|
|
ret = UC_ERR_HOOK;
|
|
|
|
break;
|
|
|
|
case UC_HOOK_INTR:
|
2015-08-26 14:32:05 +03:00
|
|
|
ret = _hook_intr(uc, callback, user_data, hh);
|
2015-08-21 10:04:50 +03:00
|
|
|
break;
|
|
|
|
case UC_HOOK_INSN:
|
|
|
|
id = va_arg(valist, int);
|
2015-08-26 14:32:05 +03:00
|
|
|
ret = _hook_insn(uc, id, callback, user_data, hh);
|
2015-08-21 10:04:50 +03:00
|
|
|
break;
|
|
|
|
case UC_HOOK_CODE:
|
|
|
|
begin = va_arg(valist, uint64_t);
|
|
|
|
end = va_arg(valist, uint64_t);
|
2015-08-26 14:32:05 +03:00
|
|
|
ret = _hook_code(uc, UC_HOOK_CODE, begin, end, callback, user_data, hh);
|
2015-08-21 10:04:50 +03:00
|
|
|
break;
|
|
|
|
case UC_HOOK_BLOCK:
|
|
|
|
begin = va_arg(valist, uint64_t);
|
|
|
|
end = va_arg(valist, uint64_t);
|
2015-08-26 14:32:05 +03:00
|
|
|
ret = _hook_code(uc, UC_HOOK_BLOCK, begin, end, callback, user_data, hh);
|
2015-08-21 10:04:50 +03:00
|
|
|
break;
|
|
|
|
case UC_HOOK_MEM_INVALID:
|
2015-08-26 14:32:05 +03:00
|
|
|
ret = _hook_mem_invalid(uc, callback, user_data, hh);
|
2015-08-21 10:04:50 +03:00
|
|
|
break;
|
|
|
|
case UC_HOOK_MEM_READ:
|
|
|
|
begin = va_arg(valist, uint64_t);
|
|
|
|
end = va_arg(valist, uint64_t);
|
2015-09-03 04:04:43 +03:00
|
|
|
ret = _hook_mem_access(uc, UC_HOOK_MEM_READ, begin, end, callback, user_data, hh);
|
2015-08-21 10:04:50 +03:00
|
|
|
break;
|
|
|
|
case UC_HOOK_MEM_WRITE:
|
|
|
|
begin = va_arg(valist, uint64_t);
|
|
|
|
end = va_arg(valist, uint64_t);
|
2015-09-03 04:04:43 +03:00
|
|
|
ret = _hook_mem_access(uc, UC_HOOK_MEM_WRITE, begin, end, callback, user_data, hh);
|
2015-09-02 20:12:49 +03:00
|
|
|
break;
|
2015-08-21 10:04:50 +03:00
|
|
|
case UC_HOOK_MEM_READ_WRITE:
|
|
|
|
begin = va_arg(valist, uint64_t);
|
|
|
|
end = va_arg(valist, uint64_t);
|
2015-09-03 04:04:43 +03:00
|
|
|
ret = _hook_mem_access(uc, UC_HOOK_MEM_READ_WRITE, begin, end, callback, user_data, hh);
|
2015-08-21 10:04:50 +03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
va_end(valist);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
UNICORN_EXPORT
|
2015-08-26 14:36:20 +03:00
|
|
|
uc_err uc_hook_del(struct uc_struct *uc, uc_hook_h hh)
|
2015-08-21 10:04:50 +03:00
|
|
|
{
|
2015-08-26 14:32:05 +03:00
|
|
|
return hook_del(uc, hh);
|
2015-08-21 10:04:50 +03:00
|
|
|
}
|