lkml.org 
[lkml]   [2012]   [Apr]   [1]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
Subject[RFC PATCH -tip 04/16] x86: Show kernel symbol in disassembler
From
Date
Show kernel symbol if the immediate value of disassembling
instruction is the destination of jump or call.

Signed-off-by: Masami Hiramatsu <masami.hiramatsu@gmail.com>
---
arch/x86/lib/disasm.c | 25 ++++++++++++++++++++++++-
1 files changed, 24 insertions(+), 1 deletions(-)

diff --git a/arch/x86/lib/disasm.c b/arch/x86/lib/disasm.c
index 473ae52..4abe844 100644
--- a/arch/x86/lib/disasm.c
+++ b/arch/x86/lib/disasm.c
@@ -7,6 +7,8 @@
#include <linux/string.h>
#include <linux/ctype.h>
#include <linux/errno.h>
+#include <linux/kallsyms.h>
+
#include <asm/disasm.h>

#define X86_LEA_OPCODE 0x8d
@@ -28,6 +30,27 @@ static int psnprintf(char **buf, size_t *len, const char *fmt, ...)
return ret;
}

+/* Print address with symbol */
+static int psnprint_symbol(char **buf, size_t *len, unsigned long addr)
+{
+ unsigned long offs;
+ char func[KSYM_NAME_LEN];
+ char *modname;
+ int ret;
+
+ ret = psnprintf(buf, len, "%lx", addr);
+ if (!kallsyms_lookup(addr, NULL, &offs, &modname, func))
+ return ret;
+
+ psnprintf(buf, len, " <%s", func);
+ if (offs)
+ psnprintf(buf, len, "+0x%lx", offs);
+ if (modname)
+ psnprintf(buf, len, " [%s]", modname);
+
+ return psnprintf(buf, len, ">");
+}
+
/* Operand classifiers */
static bool operand_is_register(const char *p)
{
@@ -385,7 +408,7 @@ static int disasm_immediate(char **buf, size_t *len, const char *opnd,
if (opnd[0] == 'J' || opnd[0] == 'A') {
if (opnd[0] == 'J') /* Relative from IP */
imm += (long)insn->kaddr + insn->length;
- return psnprintf(buf, len, "%lx", (unsigned long)imm);
+ return psnprint_symbol(buf, len, (unsigned long)imm);
}

size = insn->opnd_bytes;


\
 
 \ /
  Last update: 2012-04-01 18:05    [W:0.135 / U:0.100 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site