rizin/librz/asm/p/asm_mips_cs.c
2022-05-10 11:10:04 +02:00

107 lines
2.5 KiB
C

// SPDX-FileCopyrightText: 2013-2018 pancake <pancake@nopcode.org>
// SPDX-License-Identifier: LGPL-3.0-only
#include <rz_asm.h>
#include <rz_lib.h>
#include <capstone/capstone.h>
RZ_IPI int mips_assemble(const char *str, ut64 pc, ut8 *out);
static csh cd = 0;
#include "cs_mnemonics.c"
static int disassemble(RzAsm *a, RzAsmOp *op, const ut8 *buf, int len) {
cs_insn *insn;
int mode, n, ret = -1;
mode = (a->big_endian) ? CS_MODE_BIG_ENDIAN : CS_MODE_LITTLE_ENDIAN;
if (!op) {
return 0;
}
if (a->cpu && *a->cpu) {
if (!strcmp(a->cpu, "micro")) {
mode |= CS_MODE_MICRO;
} else if (!strcmp(a->cpu, "r6")) {
mode |= CS_MODE_MIPS32R6;
} else if (!strcmp(a->cpu, "v3")) {
mode |= CS_MODE_MIPS3;
} else if (!strcmp(a->cpu, "v2")) {
#if CS_API_MAJOR > 3
mode |= CS_MODE_MIPS2;
#endif
}
}
mode |= (a->bits == 64) ? CS_MODE_MIPS64 : CS_MODE_MIPS32;
memset(op, 0, sizeof(RzAsmOp));
op->size = 4;
if (cd != 0) {
cs_close(&cd);
}
ret = cs_open(CS_ARCH_MIPS, mode, &cd);
if (ret) {
goto fin;
}
if (a->syntax == RZ_ASM_SYNTAX_REGNUM) {
cs_option(cd, CS_OPT_SYNTAX, CS_OPT_SYNTAX_NOREGNAME);
} else {
cs_option(cd, CS_OPT_SYNTAX, CS_OPT_SYNTAX_DEFAULT);
}
cs_option(cd, CS_OPT_DETAIL, CS_OPT_OFF);
n = cs_disasm(cd, (ut8 *)buf, len, a->pc, 1, &insn);
if (n < 1) {
rz_asm_op_set_asm(op, "invalid");
op->size = 4;
goto beach;
}
if (insn->size < 1) {
goto beach;
}
op->size = insn->size;
char *str = rz_str_newf("%s%s%s", insn->mnemonic, insn->op_str[0] ? " " : "", insn->op_str);
if (str) {
rz_str_replace_char(str, '$', 0);
// remove the '$'<registername> in the string
rz_asm_op_set_asm(op, str);
free(str);
}
cs_free(insn, n);
beach:
// cs_close (&cd);
fin:
return op->size;
}
static int assemble(RzAsm *a, RzAsmOp *op, const char *str) {
ut8 *opbuf = (ut8 *)rz_strbuf_get(&op->buf);
int ret = mips_assemble(str, a->pc, opbuf);
if (a->big_endian) {
ut8 *buf = opbuf;
ut8 tmp = buf[0];
buf[0] = buf[3];
buf[3] = tmp;
tmp = buf[1];
buf[1] = buf[2];
buf[2] = tmp;
}
return ret;
}
RzAsmPlugin rz_asm_plugin_mips_cs = {
.name = "mips",
.desc = "Capstone MIPS disassembler",
.license = "BSD",
.arch = "mips",
.cpus = "mips32/64,micro,r6,v3,v2",
.bits = 16 | 32 | 64,
.endian = RZ_SYS_ENDIAN_LITTLE | RZ_SYS_ENDIAN_BIG,
.disassemble = &disassemble,
.mnemonics = mnemonics,
.assemble = &assemble
};
#ifndef RZ_PLUGIN_INCORE
RZ_API RzLibStruct rizin_plugin = {
.type = RZ_LIB_TYPE_ASM,
.data = &rz_asm_plugin_mips_cs,
.version = RZ_VERSION
};
#endif