* CID 316614: Use after free (USE_AFTER_FREE) * CID 316535: Use after free (USE_AFTER_FREE) * CID 316652: Use after free (USE_AFTER_FREE) * CID 316504: Unsigned compared against 0 (NO_EFFECT) * CID 316439: Resource leak (RESOURCE_LEAK) * CID 356127: Dereference after null check (name can never be NULL) * CID 320881: Resource leak (RESOURCE_LEAK) * CID 320885: Missing break in switch (MISSING_BREAK) * CID 316679: Resource leak (RESOURCE_LEAK) * CID 316574: Explicit null dereferenced (FORWARD_NULL) * CID 356105: Resource leak (RESOURCE_LEAK) * Fixed uninitialized building issue
1157 lines
28 KiB
C
1157 lines
28 KiB
C
// SPDX-FileCopyrightText: 2009-2021 pancake <pancake@nopcode.org>
|
|
// SPDX-FileCopyrightText: 2009-2021 nibble <nibble.ds@gmail.com>
|
|
// SPDX-License-Identifier: LGPL-3.0-only
|
|
|
|
#include <stdio.h>
|
|
#include <rz_core.h>
|
|
#include <rz_types.h>
|
|
#include <rz_util.h>
|
|
#include <rz_asm.h>
|
|
#define USE_R2 1
|
|
#include <spp/spp.h>
|
|
#include <config.h>
|
|
|
|
RZ_LIB_VERSION(rz_asm);
|
|
|
|
static char *directives[] = {
|
|
".include", ".error", ".warning",
|
|
".echo", ".if", ".ifeq", ".endif",
|
|
".else", ".set", ".get", NULL
|
|
};
|
|
|
|
static RzAsmPlugin *asm_static_plugins[] = { RZ_ASM_STATIC_PLUGINS };
|
|
|
|
static void parseHeap(RzParse *p, RzStrBuf *s) {
|
|
char *op_buf_asm = rz_strbuf_get(s);
|
|
char *out = rz_parse_pseudocode(p, op_buf_asm);
|
|
if (out) {
|
|
rz_strbuf_set(s, out);
|
|
free(out);
|
|
}
|
|
}
|
|
|
|
/* pseudo.c - private api */
|
|
static int rz_asm_pseudo_align(RzAsmCode *acode, RzAsmOp *op, char *input) {
|
|
acode->code_align = rz_num_math(NULL, input);
|
|
return 0;
|
|
}
|
|
|
|
static int rz_asm_pseudo_string(RzAsmOp *op, char *input, int zero) {
|
|
int len = strlen(input) - 1;
|
|
if (len < 1) {
|
|
return 0;
|
|
}
|
|
// TODO: if not starting with '"'.. give up
|
|
if (input[len] == '"') {
|
|
input[len] = 0;
|
|
}
|
|
if (*input == '"') {
|
|
input++;
|
|
}
|
|
len = rz_str_unescape(input) + zero;
|
|
rz_strbuf_set(&op->buf, input); // uh?
|
|
return len;
|
|
}
|
|
|
|
static inline int rz_asm_pseudo_arch(RzAsm *a, char *input) {
|
|
if (!rz_asm_use(a, input)) {
|
|
eprintf("Error: Unknown plugin\n");
|
|
return -1;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
static inline int rz_asm_pseudo_bits(RzAsm *a, char *input) {
|
|
if (!(rz_asm_set_bits(a, rz_num_math(NULL, input)))) {
|
|
eprintf("Error: Unsupported value for .bits.\n");
|
|
return -1;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
static inline int rz_asm_pseudo_org(RzAsm *a, char *input) {
|
|
rz_asm_set_pc(a, rz_num_math(NULL, input));
|
|
return 0;
|
|
}
|
|
|
|
static inline int rz_asm_pseudo_intN(RzAsm *a, RzAsmOp *op, char *input, int n) {
|
|
short s;
|
|
int i;
|
|
long int l;
|
|
ut64 s64 = rz_num_math(NULL, input);
|
|
if (n != 8 && s64 >> (n * 8)) {
|
|
eprintf("int16 Out is out of range\n");
|
|
return 0;
|
|
}
|
|
// XXX honor endian here
|
|
ut8 *buf = (ut8 *)rz_strbuf_get(&op->buf);
|
|
if (!buf) {
|
|
return 0;
|
|
}
|
|
if (n == 2) {
|
|
s = (short)s64;
|
|
rz_write_ble16(buf, s, a->big_endian);
|
|
} else if (n == 4) {
|
|
i = (int)s64;
|
|
rz_write_ble32(buf, i, a->big_endian);
|
|
} else if (n == 8) {
|
|
l = (long int)s64;
|
|
rz_write_ble64(buf, l, a->big_endian);
|
|
} else {
|
|
return 0;
|
|
}
|
|
return n;
|
|
}
|
|
|
|
static inline int rz_asm_pseudo_int16(RzAsm *a, RzAsmOp *op, char *input) {
|
|
return rz_asm_pseudo_intN(a, op, input, 2);
|
|
}
|
|
|
|
static inline int rz_asm_pseudo_int32(RzAsm *a, RzAsmOp *op, char *input) {
|
|
return rz_asm_pseudo_intN(a, op, input, 4);
|
|
}
|
|
|
|
static inline int rz_asm_pseudo_int64(RzAsm *a, RzAsmOp *op, char *input) {
|
|
return rz_asm_pseudo_intN(a, op, input, 8);
|
|
}
|
|
|
|
static inline int rz_asm_pseudo_byte(RzAsmOp *op, char *input) {
|
|
int i, len = 0;
|
|
rz_str_replace_char(input, ',', ' ');
|
|
len = rz_str_word_count(input);
|
|
rz_str_word_set0(input);
|
|
ut8 *buf = malloc(len);
|
|
if (!buf) {
|
|
return 0;
|
|
}
|
|
for (i = 0; i < len; i++) {
|
|
const char *word = rz_str_word_get0(input, i);
|
|
int num = (int)rz_num_math(NULL, word);
|
|
buf[i] = num;
|
|
}
|
|
rz_asm_op_set_buf(op, buf, len);
|
|
free(buf);
|
|
return len;
|
|
}
|
|
|
|
static inline int rz_asm_pseudo_fill(RzAsmOp *op, char *input) {
|
|
int i, repeat = 0, size = 0, value = 0;
|
|
sscanf(input, "%d,%d,%d", &repeat, &size, &value); // use rz_num?
|
|
size *= (sizeof(value) * repeat);
|
|
if (size > 0) {
|
|
ut8 *buf = malloc(size);
|
|
if (buf) {
|
|
for (i = 0; i < size; i += sizeof(value)) {
|
|
memcpy(&buf[i], &value, sizeof(value));
|
|
}
|
|
rz_asm_op_set_buf(op, buf, size);
|
|
free(buf);
|
|
}
|
|
} else {
|
|
size = 0;
|
|
}
|
|
return size;
|
|
}
|
|
|
|
static inline int rz_asm_pseudo_incbin(RzAsmOp *op, char *input) {
|
|
size_t bytes_read = 0;
|
|
rz_str_replace_char(input, ',', ' ');
|
|
// int len = rz_str_word_count (input);
|
|
rz_str_word_set0(input);
|
|
//const char *filename = rz_str_word_get0 (input, 0);
|
|
size_t skip = (size_t)rz_num_math(NULL, rz_str_word_get0(input, 1));
|
|
size_t count = (size_t)rz_num_math(NULL, rz_str_word_get0(input, 2));
|
|
char *content = rz_file_slurp(input, &bytes_read);
|
|
if (!content) {
|
|
eprintf("Could not open '%s'.\n", input);
|
|
return -1;
|
|
}
|
|
if (skip > 0) {
|
|
skip = skip > bytes_read ? bytes_read : skip;
|
|
}
|
|
if (count > 0) {
|
|
count = count > bytes_read ? 0 : count;
|
|
} else {
|
|
count = bytes_read;
|
|
}
|
|
// Need to handle arbitrary amount of data
|
|
rz_buf_free(op->buf_inc);
|
|
op->buf_inc = rz_buf_new_with_string(content + skip);
|
|
// Terminate the original buffer
|
|
free(content);
|
|
return count;
|
|
}
|
|
|
|
static void plugin_fini(RzAsm *a) {
|
|
if (a->cur && a->cur->fini && !a->cur->fini(a->plugin_data)) {
|
|
RZ_LOG_ERROR("asm plugin '%s' failed to terminate.\n", a->cur->name);
|
|
}
|
|
}
|
|
|
|
RZ_API RzAsm *rz_asm_new(void) {
|
|
int i;
|
|
RzAsm *a = RZ_NEW0(RzAsm);
|
|
if (!a) {
|
|
return NULL;
|
|
}
|
|
a->dataalign = 1;
|
|
a->bits = RZ_SYS_BITS;
|
|
a->bitshift = 0;
|
|
a->syntax = RZ_ASM_SYNTAX_INTEL;
|
|
a->plugins = rz_list_newf(NULL);
|
|
if (!a->plugins) {
|
|
free(a);
|
|
return NULL;
|
|
}
|
|
for (i = 0; asm_static_plugins[i]; i++) {
|
|
rz_asm_add(a, asm_static_plugins[i]);
|
|
}
|
|
return a;
|
|
}
|
|
|
|
RZ_API bool rz_asm_setup(RzAsm *a, const char *arch, int bits, int big_endian) {
|
|
rz_return_val_if_fail(a && arch, false);
|
|
bool ret = !rz_asm_use(a, arch);
|
|
return ret | !rz_asm_set_bits(a, bits);
|
|
}
|
|
|
|
// TODO: spagueti
|
|
RZ_API int rz_asm_sub_names_input(RzAsm *a, const char *f) {
|
|
rz_return_val_if_fail(a && f, false);
|
|
if (!a->ifilter) {
|
|
a->ifilter = rz_parse_new();
|
|
}
|
|
if (!rz_parse_use(a->ifilter, f)) {
|
|
rz_parse_free(a->ifilter);
|
|
a->ifilter = NULL;
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
RZ_API int rz_asm_sub_names_output(RzAsm *a, const char *f) {
|
|
if (!a->ofilter) {
|
|
a->ofilter = rz_parse_new();
|
|
}
|
|
if (!rz_parse_use(a->ofilter, f)) {
|
|
rz_parse_free(a->ofilter);
|
|
a->ofilter = NULL;
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
RZ_API void rz_asm_free(RzAsm *a) {
|
|
if (!a) {
|
|
return;
|
|
}
|
|
plugin_fini(a);
|
|
if (a->plugins) {
|
|
rz_list_free(a->plugins);
|
|
a->plugins = NULL;
|
|
}
|
|
rz_syscall_free(a->syscall);
|
|
free(a->cpu);
|
|
sdb_free(a->pair);
|
|
ht_pp_free(a->flags);
|
|
a->pair = NULL;
|
|
free(a);
|
|
}
|
|
|
|
RZ_API bool rz_asm_add(RzAsm *a, RzAsmPlugin *p) {
|
|
if (!p->name) {
|
|
return false;
|
|
}
|
|
if (rz_asm_is_valid(a, p->name)) {
|
|
return false;
|
|
}
|
|
rz_list_append(a->plugins, p);
|
|
return true;
|
|
}
|
|
|
|
RZ_API int rz_asm_del(RzAsm *a, const char *name) {
|
|
/* TODO: Implement rz_asm_del */
|
|
return false;
|
|
}
|
|
|
|
RZ_API bool rz_asm_is_valid(RzAsm *a, const char *name) {
|
|
RzAsmPlugin *h;
|
|
RzListIter *iter;
|
|
if (!name || !*name) {
|
|
return false;
|
|
}
|
|
rz_list_foreach (a->plugins, iter, h) {
|
|
if (!strcmp(h->name, name)) {
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
RZ_API bool rz_asm_use_assembler(RzAsm *a, const char *name) {
|
|
RzAsmPlugin *h;
|
|
RzListIter *iter;
|
|
if (a) {
|
|
if (name && *name) {
|
|
rz_list_foreach (a->plugins, iter, h) {
|
|
if (h->assemble && !strcmp(h->name, name)) {
|
|
a->acur = h;
|
|
return true;
|
|
}
|
|
}
|
|
}
|
|
a->acur = NULL;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
// TODO: this can be optimized using rz_str_hash()
|
|
RZ_API bool rz_asm_use(RzAsm *a, const char *name) {
|
|
RzAsmPlugin *h;
|
|
RzListIter *iter;
|
|
if (!a || !name) {
|
|
return false;
|
|
}
|
|
if (a->cur && !strcmp(a->cur->arch, name)) {
|
|
return true;
|
|
}
|
|
rz_list_foreach (a->plugins, iter, h) {
|
|
if (h->arch && h->name && !strcmp(h->name, name)) {
|
|
if (!a->cur || (a->cur && strcmp(a->cur->arch, h->arch))) {
|
|
plugin_fini(a);
|
|
char *rzprefix = rz_str_rz_prefix(RZ_SDB_OPCODES);
|
|
char *file = rz_str_newf("%s/%s.sdb", rz_str_get_null(rzprefix), h->arch);
|
|
if (file) {
|
|
rz_asm_set_cpu(a, NULL);
|
|
sdb_free(a->pair);
|
|
a->pair = sdb_new(NULL, file, 0);
|
|
free(file);
|
|
}
|
|
free(rzprefix);
|
|
}
|
|
if (h->init && !h->init(&a->plugin_data)) {
|
|
RZ_LOG_ERROR("asm plugin '%s' failed to initialize.\n", h->name);
|
|
return false;
|
|
}
|
|
a->cur = h;
|
|
return true;
|
|
}
|
|
}
|
|
sdb_free(a->pair);
|
|
a->pair = NULL;
|
|
return false;
|
|
}
|
|
|
|
RZ_DEPRECATE RZ_API void rz_asm_set_cpu(RzAsm *a, const char *cpu) {
|
|
if (a) {
|
|
free(a->cpu);
|
|
a->cpu = cpu ? strdup(cpu) : NULL;
|
|
}
|
|
}
|
|
|
|
static bool has_bits(RzAsmPlugin *h, int bits) {
|
|
return (h && h->bits && (bits & h->bits));
|
|
}
|
|
|
|
RZ_DEPRECATE RZ_API int rz_asm_set_bits(RzAsm *a, int bits) {
|
|
if (has_bits(a->cur, bits)) {
|
|
a->bits = bits; // TODO : use OR? :)
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
RZ_API bool rz_asm_set_big_endian(RzAsm *a, bool b) {
|
|
rz_return_val_if_fail(a && a->cur, false);
|
|
a->big_endian = false; // little endian by default
|
|
switch (a->cur->endian) {
|
|
case RZ_SYS_ENDIAN_NONE:
|
|
case RZ_SYS_ENDIAN_BI:
|
|
// TODO: not yet implemented
|
|
a->big_endian = b;
|
|
break;
|
|
case RZ_SYS_ENDIAN_LITTLE:
|
|
a->big_endian = false;
|
|
break;
|
|
case RZ_SYS_ENDIAN_BIG:
|
|
a->big_endian = true;
|
|
break;
|
|
default:
|
|
eprintf("RzAsmPlugin doesn't specify endianness\n");
|
|
break;
|
|
}
|
|
return a->big_endian;
|
|
}
|
|
|
|
RZ_API bool rz_asm_set_syntax(RzAsm *a, int syntax) {
|
|
// TODO: move into rz_arch ?
|
|
switch (syntax) {
|
|
case RZ_ASM_SYNTAX_REGNUM:
|
|
case RZ_ASM_SYNTAX_INTEL:
|
|
case RZ_ASM_SYNTAX_MASM:
|
|
case RZ_ASM_SYNTAX_ATT:
|
|
case RZ_ASM_SYNTAX_JZ:
|
|
a->syntax = syntax;
|
|
return true;
|
|
default:
|
|
return false;
|
|
}
|
|
}
|
|
|
|
RZ_API int rz_asm_set_pc(RzAsm *a, ut64 pc) {
|
|
a->pc = pc;
|
|
return true;
|
|
}
|
|
|
|
static bool __isInvalid(RzAsmOp *op) {
|
|
const char *buf_asm = rz_strbuf_get(&op->buf_asm);
|
|
return (buf_asm && *buf_asm && !strcmp(buf_asm, "invalid"));
|
|
}
|
|
|
|
RZ_API int rz_asm_disassemble(RzAsm *a, RzAsmOp *op, const ut8 *buf, int len) {
|
|
rz_asm_op_init(op);
|
|
rz_return_val_if_fail(a && buf && op, -1);
|
|
if (len < 1) {
|
|
return 0;
|
|
}
|
|
|
|
int ret = op->payload = 0;
|
|
op->size = 4;
|
|
op->bitsize = 0;
|
|
rz_asm_op_set_asm(op, "");
|
|
if (a->pcalign) {
|
|
const int mod = a->pc % a->pcalign;
|
|
if (mod) {
|
|
op->size = a->pcalign - mod;
|
|
rz_strbuf_set(&op->buf_asm, "unaligned");
|
|
return -1;
|
|
}
|
|
}
|
|
if (a->cur && a->cur->disassemble) {
|
|
// shift buf N bits
|
|
if (a->bitshift > 0) {
|
|
ut8 *tmp = calloc(len, 1);
|
|
if (tmp) {
|
|
rz_mem_copybits_delta(tmp, 0, buf, a->bitshift, (len * 8) - a->bitshift);
|
|
ret = a->cur->disassemble(a, op, tmp, len);
|
|
free(tmp);
|
|
}
|
|
} else {
|
|
ret = a->cur->disassemble(a, op, buf, len);
|
|
}
|
|
}
|
|
if (ret < 0) {
|
|
ret = 0;
|
|
}
|
|
if (op->bitsize > 0) {
|
|
op->size = op->bitsize / 8;
|
|
a->bitshift += op->bitsize % 8;
|
|
int count = a->bitshift / 8;
|
|
if (count > 0) {
|
|
op->size = op->size + count;
|
|
a->bitshift %= 8;
|
|
}
|
|
}
|
|
|
|
if (op->size < 1 || __isInvalid(op)) {
|
|
if (a->invhex) {
|
|
if (a->bits == 16) {
|
|
ut16 b = rz_read_le16(buf);
|
|
rz_strbuf_set(&op->buf_asm, sdb_fmt(".word 0x%04x", b));
|
|
} else {
|
|
ut32 b = rz_read_le32(buf);
|
|
rz_strbuf_set(&op->buf_asm, sdb_fmt(".dword 0x%08x", b));
|
|
}
|
|
// TODO: something for 64bits too?
|
|
} else {
|
|
rz_strbuf_set(&op->buf_asm, "invalid");
|
|
}
|
|
}
|
|
if (a->ofilter) {
|
|
parseHeap(a->ofilter, &op->buf_asm);
|
|
}
|
|
int opsz = (op->size > 0) ? RZ_MAX(0, RZ_MIN(len, op->size)) : 1;
|
|
rz_asm_op_set_buf(op, buf, opsz);
|
|
return ret;
|
|
}
|
|
|
|
typedef int (*Ase)(RzAsm *a, RzAsmOp *op, const char *buf);
|
|
|
|
static bool assemblerMatches(RzAsm *a, RzAsmPlugin *h) {
|
|
if (!a || !h->arch || !h->assemble || !has_bits(h, a->bits)) {
|
|
return false;
|
|
}
|
|
return (!strncmp(a->cur->arch, h->arch, strlen(a->cur->arch)));
|
|
}
|
|
|
|
static Ase findAssembler(RzAsm *a, const char *kw) {
|
|
Ase ase = NULL;
|
|
RzAsmPlugin *h;
|
|
RzListIter *iter;
|
|
if (a->acur && a->acur->assemble) {
|
|
return a->acur->assemble;
|
|
}
|
|
rz_list_foreach (a->plugins, iter, h) {
|
|
if (assemblerMatches(a, h)) {
|
|
if (kw) {
|
|
if (strstr(h->name, kw)) {
|
|
return h->assemble;
|
|
}
|
|
} else {
|
|
ase = h->assemble;
|
|
}
|
|
}
|
|
}
|
|
return ase;
|
|
}
|
|
|
|
static char *replace_directives_for(char *str, char *token) {
|
|
RzStrBuf *sb = rz_strbuf_new("");
|
|
char *p = NULL;
|
|
char *q = str;
|
|
bool changes = false;
|
|
for (;;) {
|
|
if (q) {
|
|
p = strstr(q, token);
|
|
}
|
|
if (p) {
|
|
char *nl = strchr(p, '\n');
|
|
if (nl) {
|
|
*nl++ = 0;
|
|
}
|
|
char _ = *p;
|
|
*p = 0;
|
|
rz_strbuf_append(sb, q);
|
|
*p = _;
|
|
rz_strbuf_appendf(sb, "<{%s}>\n", p + 1);
|
|
q = nl;
|
|
changes = true;
|
|
} else {
|
|
if (q) {
|
|
rz_strbuf_append(sb, q);
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
if (changes) {
|
|
free(str);
|
|
return rz_strbuf_drain(sb);
|
|
}
|
|
rz_strbuf_free(sb);
|
|
return str;
|
|
}
|
|
|
|
static char *replace_directives(char *str) {
|
|
int i = 0;
|
|
char *dir = directives[i++];
|
|
char *o = replace_directives_for(str, dir);
|
|
while (dir) {
|
|
o = replace_directives_for(o, dir);
|
|
dir = directives[i++];
|
|
}
|
|
return o;
|
|
}
|
|
|
|
RZ_API void rz_asm_list_directives(void) {
|
|
int i = 0;
|
|
char *dir = directives[i++];
|
|
while (dir) {
|
|
printf("%s\n", dir);
|
|
dir = directives[i++];
|
|
}
|
|
}
|
|
|
|
// returns instruction size
|
|
RZ_API int rz_asm_assemble(RzAsm *a, RzAsmOp *op, const char *buf) {
|
|
rz_return_val_if_fail(a && op && buf, 0);
|
|
int ret = 0;
|
|
char *b = strdup(buf);
|
|
if (!b) {
|
|
return 0;
|
|
}
|
|
if (a->ifilter) {
|
|
char *tmp = rz_parse_pseudocode(a->ifilter, buf);
|
|
if (tmp) {
|
|
free(b);
|
|
b = tmp;
|
|
}
|
|
}
|
|
rz_str_case(b, 0); // to-lower
|
|
memset(op, 0, sizeof(RzAsmOp));
|
|
if (a->cur) {
|
|
Ase ase = NULL;
|
|
if (!a->cur->assemble) {
|
|
/* find callback if no assembler support in current plugin */
|
|
ase = findAssembler(a, ".ks");
|
|
if (!ase) {
|
|
ase = findAssembler(a, ".nz");
|
|
if (!ase) {
|
|
ase = findAssembler(a, NULL);
|
|
}
|
|
}
|
|
} else {
|
|
ase = a->cur->assemble;
|
|
}
|
|
if (ase) {
|
|
ret = ase(a, op, b);
|
|
}
|
|
}
|
|
// XXX delete this block, the ase thing should be setting asm, buf and hex
|
|
if (op && ret > 0) {
|
|
op->size = ret; // XXX shouldn't be necessary
|
|
rz_asm_op_set_asm(op, b); // XXX ase should be updating this already, isn't?
|
|
ut8 *opbuf = (ut8 *)rz_strbuf_get(&op->buf);
|
|
rz_asm_op_set_buf(op, opbuf, ret);
|
|
}
|
|
free(b);
|
|
return ret;
|
|
}
|
|
|
|
// TODO: Use RzStrBuf api here pls
|
|
RZ_API RzAsmCode *rz_asm_mdisassemble(RzAsm *a, const ut8 *buf, int len) {
|
|
rz_return_val_if_fail(a && buf && len >= 0, NULL);
|
|
|
|
RzStrBuf *buf_asm;
|
|
RzAsmCode *acode;
|
|
ut64 pc = a->pc;
|
|
RzAsmOp op;
|
|
ut64 idx;
|
|
size_t ret;
|
|
const size_t addrbytes = a->core ? ((RzCore *)a->core)->io->addrbytes : 1;
|
|
|
|
if (!(acode = rz_asm_code_new())) {
|
|
return NULL;
|
|
}
|
|
if (!(acode->bytes = malloc(1 + len))) {
|
|
return rz_asm_code_free(acode);
|
|
}
|
|
memcpy(acode->bytes, buf, len);
|
|
if (!(buf_asm = rz_strbuf_new(NULL))) {
|
|
return rz_asm_code_free(acode);
|
|
}
|
|
for (idx = 0; idx + addrbytes <= len; idx += (addrbytes * ret)) {
|
|
rz_asm_set_pc(a, pc + idx);
|
|
ret = rz_asm_disassemble(a, &op, buf + idx, len - idx);
|
|
if (ret < 1) {
|
|
ret = 1;
|
|
}
|
|
if (a->ofilter) {
|
|
parseHeap(a->ofilter, &op.buf_asm);
|
|
}
|
|
rz_strbuf_append(buf_asm, rz_strbuf_get(&op.buf_asm));
|
|
rz_strbuf_append(buf_asm, "\n");
|
|
}
|
|
acode->assembly = rz_strbuf_drain(buf_asm);
|
|
acode->len = idx;
|
|
return acode;
|
|
}
|
|
|
|
RZ_API RzAsmCode *rz_asm_mdisassemble_hexstr(RzAsm *a, RzParse *p, const char *hexstr) {
|
|
ut8 *buf = malloc(strlen(hexstr) + 1);
|
|
if (!buf) {
|
|
return NULL;
|
|
}
|
|
int len = rz_hex_str2bin(hexstr, buf);
|
|
if (len < 1) {
|
|
free(buf);
|
|
return NULL;
|
|
}
|
|
RzAsmCode *ret = rz_asm_mdisassemble(a, buf, (ut64)len);
|
|
if (ret && p) {
|
|
char *tmp = rz_parse_pseudocode(p, ret->assembly);
|
|
if (tmp) {
|
|
free(ret->assembly);
|
|
ret->assembly = tmp;
|
|
}
|
|
}
|
|
free(buf);
|
|
return ret;
|
|
}
|
|
|
|
static void __flag_free_kv(HtPPKv *kv) {
|
|
free(kv->key);
|
|
free(kv->value);
|
|
}
|
|
|
|
static void *__dup_val(const void *v) {
|
|
return (void *)strdup((char *)v);
|
|
}
|
|
|
|
RZ_API RzAsmCode *rz_asm_massemble(RzAsm *a, const char *assembly) {
|
|
int num, stage, ret, idx, ctr, i, linenum = 0;
|
|
char *lbuf = NULL, *ptr2, *ptr = NULL, *ptr_start = NULL;
|
|
const char *asmcpu = NULL;
|
|
RzAsmCode *acode = NULL;
|
|
RzAsmOp op = { 0 };
|
|
ut64 off, pc;
|
|
|
|
char *buf_token = NULL;
|
|
size_t tokens_size = 32;
|
|
char **tokens = calloc(sizeof(char *), tokens_size);
|
|
if (!tokens) {
|
|
return NULL;
|
|
}
|
|
if (!assembly) {
|
|
free(tokens);
|
|
return NULL;
|
|
}
|
|
ht_pp_free(a->flags);
|
|
if (!(a->flags = ht_pp_new(__dup_val, __flag_free_kv, NULL))) {
|
|
free(tokens);
|
|
return NULL;
|
|
}
|
|
if (!(acode = rz_asm_code_new())) {
|
|
free(tokens);
|
|
return NULL;
|
|
}
|
|
if (!(acode->assembly = malloc(strlen(assembly) + 16))) {
|
|
free(tokens);
|
|
return rz_asm_code_free(acode);
|
|
}
|
|
rz_str_ncpy(acode->assembly, assembly, sizeof(acode->assembly) - 1);
|
|
if (!(acode->bytes = calloc(1, 64))) {
|
|
free(tokens);
|
|
return rz_asm_code_free(acode);
|
|
}
|
|
lbuf = strdup(assembly);
|
|
acode->code_align = 0;
|
|
|
|
/* consider ,, an alias for a newline */
|
|
lbuf = rz_str_replace(lbuf, ",,", "\n", true);
|
|
/* accept ';' as comments when input is multiline */
|
|
{
|
|
char *nl = strchr(lbuf, '\n');
|
|
if (nl) {
|
|
if (strchr(nl + 1, '\n')) {
|
|
rz_str_replace_char(lbuf, ';', '#');
|
|
}
|
|
}
|
|
}
|
|
// XXX: ops like mov eax, $pc+33 fail coz '+' is not a valid number!!!
|
|
// XXX: must be handled here to be global.. and not arch-specific
|
|
{
|
|
char val[32];
|
|
snprintf(val, sizeof(val), "0x%" PFMT64x, a->pc);
|
|
lbuf = rz_str_replace(lbuf, "$$", val, 1);
|
|
}
|
|
if (a->syscall) {
|
|
char val[32];
|
|
char *aa, *p = strstr(lbuf, "$sys.");
|
|
while (p) {
|
|
char *sp = (char *)rz_str_closer_chr(p, " \n\r#");
|
|
if (sp) {
|
|
char osp = *sp;
|
|
*sp = 0;
|
|
aa = strdup(p);
|
|
*sp = osp;
|
|
num = rz_syscall_get_num(a->syscall, aa + 5);
|
|
snprintf(val, sizeof(val), "%d", num);
|
|
lbuf = rz_str_replace(lbuf, aa, val, 1);
|
|
free(aa);
|
|
}
|
|
p = strstr(p + 5, "$sys.");
|
|
}
|
|
}
|
|
bool labels = !!strchr(lbuf, ':');
|
|
|
|
/* Tokenize */
|
|
for (tokens[0] = lbuf, ctr = 0;
|
|
((ptr = strchr(tokens[ctr], ';')) ||
|
|
(ptr = strchr(tokens[ctr], '\n')) ||
|
|
(ptr = strchr(tokens[ctr], '\r')));) {
|
|
if (ctr + 1 >= tokens_size) {
|
|
const size_t new_tokens_size = tokens_size * 2;
|
|
if (sizeof(char *) * new_tokens_size <= sizeof(char *) * tokens_size) {
|
|
// overflow
|
|
eprintf("Too many tokens\n");
|
|
goto fail;
|
|
}
|
|
char **new_tokens = realloc(tokens, sizeof(char *) * new_tokens_size);
|
|
if (!new_tokens) {
|
|
eprintf("Too many tokens\n");
|
|
goto fail;
|
|
}
|
|
tokens_size = new_tokens_size;
|
|
tokens = new_tokens;
|
|
}
|
|
ctr++;
|
|
*ptr = '\0';
|
|
tokens[ctr] = ptr + 1;
|
|
}
|
|
|
|
#define isavrseparator(x) ((x) == ' ' || (x) == '\t' || (x) == '\n' || (x) == '\r' || (x) == ' ' || \
|
|
(x) == ',' || (x) == ';' || (x) == '[' || (x) == ']' || \
|
|
(x) == '(' || (x) == ')' || (x) == '{' || (x) == '}')
|
|
|
|
/* Stage 0-2: Parse labels*/
|
|
/* Stage 3: Assemble */
|
|
// XXX: stages must be dynamic. until all equs have been resolved
|
|
#define STAGES 5
|
|
pc = a->pc;
|
|
bool inComment = false;
|
|
for (stage = 0; stage < STAGES; stage++) {
|
|
if (stage < 2 && !labels) {
|
|
continue;
|
|
}
|
|
inComment = false;
|
|
rz_asm_set_pc(a, pc);
|
|
for (idx = ret = i = 0; i <= ctr; i++, idx += ret) {
|
|
buf_token = tokens[i];
|
|
if (!buf_token) {
|
|
continue;
|
|
}
|
|
if (inComment) {
|
|
if (!strncmp(ptr_start, "*/", 2)) {
|
|
inComment = false;
|
|
}
|
|
continue;
|
|
}
|
|
// XXX TODO remove arch-specific hacks
|
|
if (!strncmp(a->cur->arch, "avr", 3)) {
|
|
for (ptr_start = buf_token; *ptr_start && isavrseparator(*ptr_start); ptr_start++)
|
|
;
|
|
} else {
|
|
for (ptr_start = buf_token; *ptr_start && IS_SEPARATOR(*ptr_start); ptr_start++)
|
|
;
|
|
}
|
|
if (!strncmp(ptr_start, "/*", 2)) {
|
|
if (!strstr(ptr_start + 2, "*/")) {
|
|
inComment = true;
|
|
}
|
|
continue;
|
|
}
|
|
/* Comments */ {
|
|
bool likely_comment = true;
|
|
char *cptr = strchr(ptr_start, ',');
|
|
ptr = strchr(ptr_start, '#');
|
|
// a comma is probably not followed by a comment
|
|
// 8051 often uses #symbol notation as 2nd arg
|
|
if (cptr && ptr && cptr < ptr) {
|
|
likely_comment = false;
|
|
for (cptr += 1; cptr < ptr; cptr += 1) {
|
|
if (!isspace(*cptr)) {
|
|
likely_comment = true;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
// # followed by number literal also
|
|
// isn't likely to be a comment
|
|
likely_comment = likely_comment && ptr && !RZ_BETWEEN('0', ptr[1], '9') && ptr[1] != '-';
|
|
if (likely_comment) {
|
|
*ptr = '\0';
|
|
}
|
|
}
|
|
rz_asm_set_pc(a, a->pc + ret);
|
|
off = a->pc;
|
|
ret = 0;
|
|
if (!*ptr_start) {
|
|
continue;
|
|
}
|
|
linenum++;
|
|
/* labels */
|
|
if (labels && (ptr = strchr(ptr_start, ':'))) {
|
|
bool is_a_label = true;
|
|
char *q = ptr_start;
|
|
while (*q) {
|
|
if (*q == ' ') {
|
|
is_a_label = false;
|
|
break;
|
|
}
|
|
q++;
|
|
}
|
|
if (is_a_label) {
|
|
//if (stage != 2) {
|
|
if (ptr_start[1] && ptr_start[1] != ' ') {
|
|
*ptr = 0;
|
|
char *p = strdup(ptr_start);
|
|
*ptr = ':';
|
|
if (acode->code_align) {
|
|
off += (acode->code_align - (off % acode->code_align));
|
|
}
|
|
char *food = rz_str_newf("0x%" PFMT64x, off);
|
|
ht_pp_insert(a->flags, ptr_start, food);
|
|
rz_asm_code_set_equ(acode, p, food);
|
|
free(p);
|
|
free(food);
|
|
}
|
|
//}
|
|
ptr_start = ptr + 1;
|
|
}
|
|
}
|
|
if (!*ptr_start) {
|
|
ret = 0;
|
|
continue;
|
|
}
|
|
if (*ptr_start == '.') { /* pseudo */
|
|
/* TODO: move into a separate function */
|
|
ptr = ptr_start;
|
|
rz_str_trim(ptr);
|
|
if (!strncmp(ptr, ".intel_syntax", 13)) {
|
|
a->syntax = RZ_ASM_SYNTAX_INTEL;
|
|
} else if (!strncmp(ptr, ".att_syntax", 11)) {
|
|
a->syntax = RZ_ASM_SYNTAX_ATT;
|
|
} else if (!strncmp(ptr, ".endian", 7)) {
|
|
rz_asm_set_big_endian(a, atoi(ptr + 7));
|
|
} else if (!strncmp(ptr, ".big_endian", 7 + 4)) {
|
|
rz_asm_set_big_endian(a, true);
|
|
} else if (!strncmp(ptr, ".lil_endian", 7 + 4) || !strncmp(ptr, "little_endian", 7 + 6)) {
|
|
rz_asm_set_big_endian(a, false);
|
|
} else if (!strncmp(ptr, ".asciz", 6)) {
|
|
rz_str_trim(ptr + 8);
|
|
ret = rz_asm_pseudo_string(&op, ptr + 8, 1);
|
|
} else if (!strncmp(ptr, ".string ", 8)) {
|
|
rz_str_trim(ptr + 8);
|
|
char *str = strdup(ptr + 8);
|
|
ret = rz_asm_pseudo_string(&op, str, 1);
|
|
free(str);
|
|
} else if (!strncmp(ptr, ".ascii", 6)) {
|
|
ret = rz_asm_pseudo_string(&op, ptr + 7, 0);
|
|
} else if (!strncmp(ptr, ".align", 6)) {
|
|
ret = rz_asm_pseudo_align(acode, &op, ptr + 7);
|
|
} else if (!strncmp(ptr, ".arm", 4)) {
|
|
rz_asm_use(a, "arm");
|
|
rz_asm_set_bits(a, 32);
|
|
ret = 0;
|
|
} else if (!strncmp(ptr, ".thumb", 6)) {
|
|
rz_asm_use(a, "arm");
|
|
rz_asm_set_bits(a, 16);
|
|
ret = 0;
|
|
} else if (!strncmp(ptr, ".arch ", 6)) {
|
|
ret = rz_asm_pseudo_arch(a, ptr + 6);
|
|
} else if (!strncmp(ptr, ".bits ", 6)) {
|
|
ret = rz_asm_pseudo_bits(a, ptr + 6);
|
|
} else if (!strncmp(ptr, ".fill ", 6)) {
|
|
ret = rz_asm_pseudo_fill(&op, ptr + 6);
|
|
} else if (!strncmp(ptr, ".kernel ", 8)) {
|
|
rz_syscall_setup(a->syscall, a->cur->arch, a->bits, asmcpu, ptr + 8);
|
|
} else if (!strncmp(ptr, ".cpu ", 5)) {
|
|
rz_asm_set_cpu(a, ptr + 5);
|
|
} else if (!strncmp(ptr, ".os ", 4)) {
|
|
rz_syscall_setup(a->syscall, a->cur->arch, a->bits, asmcpu, ptr + 4);
|
|
} else if (!strncmp(ptr, ".hex ", 5)) {
|
|
ret = rz_asm_op_set_hex(&op, ptr + 5);
|
|
} else if ((!strncmp(ptr, ".int16 ", 7)) || !strncmp(ptr, ".short ", 7)) {
|
|
ret = rz_asm_pseudo_int16(a, &op, ptr + 7);
|
|
} else if (!strncmp(ptr, ".int32 ", 7)) {
|
|
ret = rz_asm_pseudo_int32(a, &op, ptr + 7);
|
|
} else if (!strncmp(ptr, ".int64 ", 7)) {
|
|
ret = rz_asm_pseudo_int64(a, &op, ptr + 7);
|
|
} else if (!strncmp(ptr, ".size", 5)) {
|
|
ret = true; // do nothing, ignored
|
|
} else if (!strncmp(ptr, ".section", 8)) {
|
|
ret = true; // do nothing, ignored
|
|
} else if ((!strncmp(ptr, ".byte ", 6)) || (!strncmp(ptr, ".int8 ", 6))) {
|
|
ret = rz_asm_pseudo_byte(&op, ptr + 6);
|
|
} else if (!strncmp(ptr, ".glob", 5)) { // .global .globl
|
|
// eprintf (".global directive not yet implemented\n");
|
|
ret = 0;
|
|
continue;
|
|
} else if (!strncmp(ptr, ".equ ", 5)) {
|
|
ptr2 = strchr(ptr + 5, ',');
|
|
if (!ptr2) {
|
|
ptr2 = strchr(ptr + 5, '=');
|
|
}
|
|
if (!ptr2) {
|
|
ptr2 = strchr(ptr + 5, ' ');
|
|
}
|
|
if (ptr2) {
|
|
*ptr2 = '\0';
|
|
rz_asm_code_set_equ(acode, ptr + 5, ptr2 + 1);
|
|
} else {
|
|
eprintf("Invalid syntax for '.equ': Use '.equ <word> <word>'\n");
|
|
}
|
|
} else if (!strncmp(ptr, ".org ", 5)) {
|
|
ret = rz_asm_pseudo_org(a, ptr + 5);
|
|
} else if (rz_str_startswith(ptr, ".offset ")) {
|
|
eprintf("Invalid use of the .offset directory. This directive is only supported in rizin -c 'waf'.\n");
|
|
} else if (!strncmp(ptr, ".text", 5)) {
|
|
acode->code_offset = a->pc;
|
|
} else if (!strncmp(ptr, ".data", 5)) {
|
|
acode->data_offset = a->pc;
|
|
} else if (!strncmp(ptr, ".incbin", 7)) {
|
|
if (ptr[7] != ' ') {
|
|
eprintf("incbin missing filename\n");
|
|
continue;
|
|
}
|
|
ret = rz_asm_pseudo_incbin(&op, ptr + 8);
|
|
} else {
|
|
eprintf("Unknown directive (%s)\n", ptr);
|
|
goto fail;
|
|
}
|
|
if (!ret) {
|
|
continue;
|
|
}
|
|
if (ret < 0) {
|
|
eprintf("!!! Oops (%s)\n", ptr);
|
|
goto fail;
|
|
}
|
|
} else { /* Instruction */
|
|
char *str = ptr_start;
|
|
rz_str_trim(str);
|
|
if (acode->equs) {
|
|
if (!*ptr_start) {
|
|
continue;
|
|
}
|
|
str = rz_asm_code_equ_replace(acode, strdup(ptr_start));
|
|
ret = rz_asm_assemble(a, &op, str);
|
|
free(str);
|
|
} else {
|
|
if (!*ptr_start) {
|
|
continue;
|
|
}
|
|
ret = rz_asm_assemble(a, &op, ptr_start);
|
|
}
|
|
}
|
|
if (stage == STAGES - 1) {
|
|
if (ret < 1) {
|
|
eprintf("Cannot assemble '%s' at line %d\n", ptr_start, linenum);
|
|
goto fail;
|
|
}
|
|
acode->len = idx + ret;
|
|
char *newbuf = realloc(acode->bytes, (idx + ret) * 2);
|
|
if (!newbuf) {
|
|
goto fail;
|
|
}
|
|
acode->bytes = (ut8 *)newbuf;
|
|
memcpy(acode->bytes + idx, rz_strbuf_get(&op.buf), rz_strbuf_length(&op.buf));
|
|
memset(acode->bytes + idx + ret, 0, idx + ret);
|
|
if (op.buf_inc && rz_buf_size(op.buf_inc) > 1) {
|
|
char *inc = rz_buf_to_string(op.buf_inc);
|
|
rz_buf_free(op.buf_inc);
|
|
op.buf_inc = NULL;
|
|
if (inc) {
|
|
ret += rz_hex_str2bin(inc, acode->bytes + idx + ret);
|
|
free(inc);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
free(lbuf);
|
|
free(tokens);
|
|
return acode;
|
|
fail:
|
|
free(lbuf);
|
|
free(tokens);
|
|
return rz_asm_code_free(acode);
|
|
}
|
|
|
|
RZ_API bool rz_asm_modify(RzAsm *a, ut8 *buf, int field, ut64 val) {
|
|
return (a->cur && a->cur->modify) ? a->cur->modify(a, buf, field, val) : false;
|
|
}
|
|
|
|
RZ_API int rz_asm_get_offset(RzAsm *a, int type, int idx) { // link to rbin
|
|
if (a && a->binb.bin && a->binb.get_offset) {
|
|
return a->binb.get_offset(a->binb.bin, type, idx);
|
|
}
|
|
return -1;
|
|
}
|
|
|
|
RZ_API char *rz_asm_describe(RzAsm *a, const char *str) {
|
|
return (a && a->pair) ? sdb_get(a->pair, str, 0) : NULL;
|
|
}
|
|
|
|
RZ_API RzList *rz_asm_get_plugins(RzAsm *a) {
|
|
return a->plugins;
|
|
}
|
|
|
|
RZ_API bool rz_asm_set_arch(RzAsm *a, const char *name, int bits) {
|
|
return rz_asm_use(a, name) ? rz_asm_set_bits(a, bits) : false;
|
|
}
|
|
|
|
/* to ease the use of the native bindings (not used in rizin) */
|
|
RZ_API char *rz_asm_to_string(RzAsm *a, ut64 addr, const ut8 *b, int l) {
|
|
rz_return_val_if_fail(a && b && l >= 0, NULL);
|
|
rz_asm_set_pc(a, addr);
|
|
RzAsmCode *code = rz_asm_mdisassemble(a, b, l);
|
|
if (code) {
|
|
char *buf_asm = code->assembly;
|
|
code->assembly = NULL;
|
|
rz_asm_code_free(code);
|
|
return buf_asm;
|
|
}
|
|
return NULL;
|
|
}
|
|
|
|
RZ_API ut8 *rz_asm_from_string(RzAsm *a, ut64 addr, const char *b, int *l) {
|
|
rz_asm_set_pc(a, addr);
|
|
RzAsmCode *code = rz_asm_massemble(a, b);
|
|
if (code) {
|
|
ut8 *buf = code->bytes;
|
|
if (l) {
|
|
*l = code->len;
|
|
}
|
|
rz_asm_code_free(code);
|
|
return buf;
|
|
}
|
|
return NULL;
|
|
}
|
|
|
|
RZ_API int rz_asm_syntax_from_string(const char *name) {
|
|
rz_return_val_if_fail(name, -1);
|
|
if (!strcmp(name, "regnum")) {
|
|
return RZ_ASM_SYNTAX_REGNUM;
|
|
}
|
|
if (!strcmp(name, "jz")) {
|
|
return RZ_ASM_SYNTAX_JZ;
|
|
}
|
|
if (!strcmp(name, "intel")) {
|
|
return RZ_ASM_SYNTAX_INTEL;
|
|
}
|
|
if (!strcmp(name, "masm")) {
|
|
return RZ_ASM_SYNTAX_MASM;
|
|
}
|
|
if (!strcmp(name, "att")) {
|
|
return RZ_ASM_SYNTAX_ATT;
|
|
}
|
|
return -1;
|
|
}
|
|
|
|
RZ_API char *rz_asm_mnemonics(RzAsm *a, int id, bool json) {
|
|
rz_return_val_if_fail(a && a->cur, NULL);
|
|
if (a->cur->mnemonics) {
|
|
return a->cur->mnemonics(a, id, json);
|
|
}
|
|
return NULL;
|
|
}
|
|
|
|
RZ_API int rz_asm_mnemonics_byname(RzAsm *a, const char *name) {
|
|
rz_return_val_if_fail(a && a->cur, 0);
|
|
if (a->cur->mnemonics) {
|
|
int i;
|
|
for (i = 0; i < 1024; i++) {
|
|
char *n = a->cur->mnemonics(a, i, false);
|
|
if (n && !strcmp(n, name)) {
|
|
return i;
|
|
}
|
|
free(n);
|
|
}
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
RZ_API RzAsmCode *rz_asm_rasm_assemble(RzAsm *a, const char *buf, bool use_spp) {
|
|
rz_return_val_if_fail(a && buf, NULL);
|
|
char *lbuf = strdup(buf);
|
|
if (!lbuf) {
|
|
return NULL;
|
|
}
|
|
RzAsmCode *acode;
|
|
if (use_spp) {
|
|
Output out;
|
|
out.fout = NULL;
|
|
out.cout = rz_strbuf_new("");
|
|
rz_strbuf_init(out.cout);
|
|
struct Proc proc;
|
|
spp_proc_set(&proc, "spp", 1);
|
|
|
|
lbuf = replace_directives(lbuf);
|
|
spp_eval(lbuf, &out);
|
|
free(lbuf);
|
|
lbuf = strdup(rz_strbuf_get(out.cout));
|
|
}
|
|
acode = rz_asm_massemble(a, lbuf);
|
|
free(lbuf);
|
|
return acode;
|
|
}
|