2004-08-19 15:39:10 +02:00
|
|
|
/* libunwind - a platform-independent unwind library
|
|
|
|
Copyright (C) 2002-2003 Hewlett-Packard Co
|
|
|
|
Contributed by David Mosberger-Tang <davidm@hpl.hp.com>
|
|
|
|
|
|
|
|
Modified for x86_64 by Max Asbock <masbock@us.ibm.com>
|
|
|
|
|
|
|
|
This file is part of libunwind.
|
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining
|
|
|
|
a copy of this software and associated documentation files (the
|
|
|
|
"Software"), to deal in the Software without restriction, including
|
|
|
|
without limitation the rights to use, copy, modify, merge, publish,
|
|
|
|
distribute, sublicense, and/or sell copies of the Software, and to
|
|
|
|
permit persons to whom the Software is furnished to do so, subject to
|
|
|
|
the following conditions:
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be
|
|
|
|
included in all copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
|
|
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
|
|
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
|
|
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
|
|
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
|
|
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
|
|
|
|
|
|
|
#include "unwind_i.h"
|
2010-04-05 01:17:32 +02:00
|
|
|
#include "ucontext_i.h"
|
2004-08-19 15:39:10 +02:00
|
|
|
|
2010-04-05 22:00:27 +02:00
|
|
|
#include <sys/syscall.h>
|
|
|
|
|
2004-08-19 15:39:10 +02:00
|
|
|
PROTECTED int
|
|
|
|
unw_is_signal_frame (unw_cursor_t *cursor)
|
|
|
|
{
|
|
|
|
struct cursor *c = (struct cursor *) cursor;
|
|
|
|
unw_word_t w0, w1, ip;
|
|
|
|
unw_addr_space_t as;
|
|
|
|
unw_accessors_t *a;
|
|
|
|
void *arg;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
as = c->dwarf.as;
|
|
|
|
a = unw_get_accessors (as);
|
|
|
|
arg = c->dwarf.as_arg;
|
|
|
|
|
|
|
|
/* Check if RIP points at sigreturn sequence.
|
|
|
|
on x86_64 Linux that is (see libc.so):
|
|
|
|
48 c7 c0 0f 00 00 00 mov $0xf,%rax
|
|
|
|
0f 05 syscall
|
|
|
|
66 data16
|
|
|
|
*/
|
|
|
|
|
|
|
|
ip = c->dwarf.ip;
|
|
|
|
if ((ret = (*a->access_mem) (as, ip, &w0, 0, arg)) < 0
|
|
|
|
|| (ret = (*a->access_mem) (as, ip + 8, &w1, 0, arg)) < 0)
|
2006-07-27 05:58:27 +02:00
|
|
|
return 0;
|
2008-04-16 16:05:49 +02:00
|
|
|
w1 &= 0xff;
|
|
|
|
return (w0 == 0x0f0000000fc0c748 && w1 == 0x05);
|
2004-08-19 15:39:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
PROTECTED int
|
2010-04-05 01:17:32 +02:00
|
|
|
unw_handle_signal_frame (unw_cursor_t *cursor)
|
2004-08-19 15:39:10 +02:00
|
|
|
{
|
2010-04-05 01:17:32 +02:00
|
|
|
struct cursor *c = (struct cursor *) cursor;
|
|
|
|
int ret;
|
|
|
|
unw_word_t ucontext = c->dwarf.cfa;
|
|
|
|
|
|
|
|
Debug(1, "signal frame, skip over trampoline\n");
|
|
|
|
|
|
|
|
c->sigcontext_format = X86_64_SCF_LINUX_RT_SIGFRAME;
|
|
|
|
c->sigcontext_addr = c->dwarf.cfa;
|
|
|
|
|
|
|
|
struct dwarf_loc rsp_loc = DWARF_LOC (ucontext + UC_MCONTEXT_GREGS_RSP, 0);
|
|
|
|
ret = dwarf_get (&c->dwarf, rsp_loc, &c->dwarf.cfa);
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
Debug (2, "returning %d\n", ret);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
c->dwarf.loc[RAX] = DWARF_LOC (ucontext + UC_MCONTEXT_GREGS_RAX, 0);
|
|
|
|
c->dwarf.loc[RDX] = DWARF_LOC (ucontext + UC_MCONTEXT_GREGS_RDX, 0);
|
|
|
|
c->dwarf.loc[RCX] = DWARF_LOC (ucontext + UC_MCONTEXT_GREGS_RCX, 0);
|
|
|
|
c->dwarf.loc[RBX] = DWARF_LOC (ucontext + UC_MCONTEXT_GREGS_RBX, 0);
|
|
|
|
c->dwarf.loc[RSI] = DWARF_LOC (ucontext + UC_MCONTEXT_GREGS_RSI, 0);
|
|
|
|
c->dwarf.loc[RDI] = DWARF_LOC (ucontext + UC_MCONTEXT_GREGS_RDI, 0);
|
|
|
|
c->dwarf.loc[RBP] = DWARF_LOC (ucontext + UC_MCONTEXT_GREGS_RBP, 0);
|
|
|
|
c->dwarf.loc[RSP] = DWARF_LOC (ucontext + UC_MCONTEXT_GREGS_RSP, 0);
|
|
|
|
c->dwarf.loc[ R8] = DWARF_LOC (ucontext + UC_MCONTEXT_GREGS_R8, 0);
|
|
|
|
c->dwarf.loc[ R9] = DWARF_LOC (ucontext + UC_MCONTEXT_GREGS_R9, 0);
|
|
|
|
c->dwarf.loc[R10] = DWARF_LOC (ucontext + UC_MCONTEXT_GREGS_R10, 0);
|
|
|
|
c->dwarf.loc[R11] = DWARF_LOC (ucontext + UC_MCONTEXT_GREGS_R11, 0);
|
|
|
|
c->dwarf.loc[R12] = DWARF_LOC (ucontext + UC_MCONTEXT_GREGS_R12, 0);
|
|
|
|
c->dwarf.loc[R13] = DWARF_LOC (ucontext + UC_MCONTEXT_GREGS_R13, 0);
|
|
|
|
c->dwarf.loc[R14] = DWARF_LOC (ucontext + UC_MCONTEXT_GREGS_R14, 0);
|
|
|
|
c->dwarf.loc[R15] = DWARF_LOC (ucontext + UC_MCONTEXT_GREGS_R15, 0);
|
|
|
|
c->dwarf.loc[RIP] = DWARF_LOC (ucontext + UC_MCONTEXT_GREGS_RIP, 0);
|
|
|
|
|
|
|
|
return 0;
|
2004-08-19 15:39:10 +02:00
|
|
|
}
|
2010-04-05 21:42:23 +02:00
|
|
|
|
|
|
|
#ifndef UNW_REMOTE_ONLY
|
2010-04-08 04:59:06 +02:00
|
|
|
HIDDEN void *
|
2010-04-05 21:42:23 +02:00
|
|
|
x86_64_r_uc_addr (ucontext_t *uc, int reg)
|
|
|
|
{
|
|
|
|
void *addr;
|
|
|
|
|
|
|
|
switch (reg)
|
|
|
|
{
|
|
|
|
case UNW_X86_64_R8: addr = &uc->uc_mcontext.gregs[REG_R8]; break;
|
|
|
|
case UNW_X86_64_R9: addr = &uc->uc_mcontext.gregs[REG_R9]; break;
|
|
|
|
case UNW_X86_64_R10: addr = &uc->uc_mcontext.gregs[REG_R10]; break;
|
|
|
|
case UNW_X86_64_R11: addr = &uc->uc_mcontext.gregs[REG_R11]; break;
|
|
|
|
case UNW_X86_64_R12: addr = &uc->uc_mcontext.gregs[REG_R12]; break;
|
|
|
|
case UNW_X86_64_R13: addr = &uc->uc_mcontext.gregs[REG_R13]; break;
|
|
|
|
case UNW_X86_64_R14: addr = &uc->uc_mcontext.gregs[REG_R14]; break;
|
|
|
|
case UNW_X86_64_R15: addr = &uc->uc_mcontext.gregs[REG_R15]; break;
|
|
|
|
case UNW_X86_64_RDI: addr = &uc->uc_mcontext.gregs[REG_RDI]; break;
|
|
|
|
case UNW_X86_64_RSI: addr = &uc->uc_mcontext.gregs[REG_RSI]; break;
|
|
|
|
case UNW_X86_64_RBP: addr = &uc->uc_mcontext.gregs[REG_RBP]; break;
|
|
|
|
case UNW_X86_64_RBX: addr = &uc->uc_mcontext.gregs[REG_RBX]; break;
|
|
|
|
case UNW_X86_64_RDX: addr = &uc->uc_mcontext.gregs[REG_RDX]; break;
|
|
|
|
case UNW_X86_64_RAX: addr = &uc->uc_mcontext.gregs[REG_RAX]; break;
|
|
|
|
case UNW_X86_64_RCX: addr = &uc->uc_mcontext.gregs[REG_RCX]; break;
|
|
|
|
case UNW_X86_64_RSP: addr = &uc->uc_mcontext.gregs[REG_RSP]; break;
|
|
|
|
case UNW_X86_64_RIP: addr = &uc->uc_mcontext.gregs[REG_RIP]; break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
addr = NULL;
|
|
|
|
}
|
|
|
|
return addr;
|
|
|
|
}
|
2010-04-05 22:00:27 +02:00
|
|
|
|
|
|
|
/* sigreturn() is a no-op on x86_64 glibc. */
|
|
|
|
HIDDEN NORETURN void
|
|
|
|
x86_64_sigreturn (unw_cursor_t *cursor)
|
|
|
|
{
|
|
|
|
struct cursor *c = (struct cursor *) cursor;
|
|
|
|
struct sigcontext *sc = (struct sigcontext *) c->sigcontext_addr;
|
|
|
|
|
|
|
|
Debug (8, "resuming at ip=%llx via sigreturn(%p)\n",
|
|
|
|
(unsigned long long) c->dwarf.ip, sc);
|
|
|
|
__asm__ __volatile__ ("mov %0, %%rsp;"
|
|
|
|
"mov %1, %%rax;"
|
|
|
|
"syscall"
|
|
|
|
:: "r"(sc), "i"(SYS_rt_sigreturn)
|
|
|
|
: "memory");
|
|
|
|
}
|
|
|
|
|
2010-04-05 21:42:23 +02:00
|
|
|
#endif
|