Skip to content

Commit

Permalink
callstack_instr: support for aarch64 which is different from arm
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewFasano committed Jun 3, 2024
1 parent 91ad78a commit 697f021
Showing 1 changed file with 36 additions and 7 deletions.
43 changes: 36 additions & 7 deletions panda/plugins/callstack_instr/callstack_instr.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,10 @@ PANDAENDCOMMENT */
#include <capstone/capstone.h>
#if defined(TARGET_I386)
#include <capstone/x86.h>
#elif defined(TARGET_ARM)
#elif defined(TARGET_ARM) && !defined(TARGET_AARCH64)
#include <capstone/arm.h>
#elif defined(TARGET_ARM) && defined(TARGET_AARCH64)
#include <capstone/arm64.h>
#elif defined(TARGET_PPC)
#include <capstone/ppc.h>
#elif defined(TARGET_MIPS)
Expand Down Expand Up @@ -249,7 +251,8 @@ instr_type disas_block(CPUArchState* env, target_ulong pc, int size) {
cs_option(handle, CS_OPT_MODE, CS_MODE_32);
}
#endif
#elif defined(TARGET_ARM)
#elif defined(TARGET_ARM) && !defined(TARGET_AARCH64)
// Arm32, need to check for thumb mode
csh handle = cs_handle_32;

if (env->thumb){
Expand All @@ -258,6 +261,9 @@ instr_type disas_block(CPUArchState* env, target_ulong pc, int size) {
else {
cs_option(handle, CS_OPT_MODE, CS_MODE_ARM);
}
#elif defined(TARGET_ARM) && defined(TARGET_AARCH64)
// Aarch64 has no thumb mode
csh handle = cs_handle_64;

#elif defined(TARGET_PPC)
csh handle = cs_handle_32;
Expand All @@ -276,6 +282,12 @@ instr_type disas_block(CPUArchState* env, target_ulong pc, int size) {
if (count <= 0) goto done2;

for (end = insn + count - 1; end >= insn; end--) {

// Log instructions if running verbosely
if (verbose) {
printf("0x%"PRIx64": %s %s\n", end->address, end->mnemonic, end->op_str);
}

if (cs_insn_group(handle, end, CS_GRP_CALL)) {
res = INSTR_CALL;
} else if (cs_insn_group(handle, end, CS_GRP_RET)) {
Expand All @@ -284,9 +296,21 @@ instr_type disas_block(CPUArchState* env, target_ulong pc, int size) {
res = INSTR_UNKNOWN;
}

// Temporary workaround for https://github.com/aquynh/capstone/issues/1680
// Mnemonic/operand comparision as fallback for incorrect grouping
#if defined(TARGET_MIPS)
#if defined(TARGET_AARCH64)
// Capstone for aarch64 doesn't seem to support groups
if (res == INSTR_UNKNOWN) {
// XXX is this incomplete?
if (!strncasecmp(end->mnemonic, "bl", 32)) {
res = INSTR_CALL; // Direct absolute call
} else if (!strncasecmp(end->mnemonic, "blr", 32)) {
res = INSTR_CALL; // Direct relative call
} else if (!strncasecmp(end->mnemonic, "ret", 32)) {
res = INSTR_RET; // Jump to LR -> ret
}
}
#elif defined(TARGET_MIPS)
// Temporary workaround for https://github.com/aquynh/capstone/issues/1680
#define MAX_MNEMONIC_LEN 32 // CS_MNEMONIC_SIZE not imported?
if (res == INSTR_UNKNOWN) {
if (!strncasecmp(end->mnemonic, "jal", 32)) {
Expand Down Expand Up @@ -565,8 +589,13 @@ bool init_plugin(void *self) {
if (cs_open(CS_ARCH_X86, CS_MODE_64, &cs_handle_64) != CS_ERR_OK)
return false;
#elif defined(TARGET_ARM)
if (cs_open(CS_ARCH_ARM, CS_MODE_ARM, &cs_handle_32) != CS_ERR_OK)
return false;
#if defined(TARGET_AARCH64)
if (cs_open(CS_ARCH_ARM64, CS_MODE_ARM, &cs_handle_64) != CS_ERR_OK)
return false;
#else
if (cs_open(CS_ARCH_ARM, CS_MODE_ARM, &cs_handle_32) != CS_ERR_OK)
return false;
#endif

// Run-time check: is current version below 4.0?
if (cs_version(NULL, NULL) < CS_MAKE_VERSION(4, 0)) {
Expand Down Expand Up @@ -598,7 +627,7 @@ bool init_plugin(void *self) {
#endif

// Need details in capstone to have instruction groupings
#if defined(TARGET_X86_64) || defined(TARGET_MIPS64)
#if defined(TARGET_X86_64) || defined(TARGET_MIPS64) || defined(TARGET_AARCH64)
cs_option(cs_handle_64, CS_OPT_DETAIL, CS_OPT_ON);
#else
cs_option(cs_handle_32, CS_OPT_DETAIL, CS_OPT_ON);
Expand Down

0 comments on commit 697f021

Please sign in to comment.