2004-08-19 15:39:10 +02:00
|
|
|
/* libunwind - a platform-independent unwind library
|
2005-05-03 11:13:17 +02:00
|
|
|
Copyright (C) 2002-2004 Hewlett-Packard Co
|
2004-08-19 15:39:10 +02:00
|
|
|
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"
|
|
|
|
#include <signal.h>
|
2010-03-07 20:53:01 +01:00
|
|
|
#include <stddef.h>
|
|
|
|
|
2004-08-19 15:39:10 +02:00
|
|
|
PROTECTED int
|
|
|
|
unw_step (unw_cursor_t *cursor)
|
|
|
|
{
|
|
|
|
struct cursor *c = (struct cursor *) cursor;
|
|
|
|
int ret, i;
|
|
|
|
|
2005-05-03 11:13:17 +02:00
|
|
|
Debug (1, "(cursor=%p, ip=0x%016llx)\n",
|
|
|
|
c, (unsigned long long) c->dwarf.ip);
|
|
|
|
|
2004-08-20 13:23:15 +02:00
|
|
|
/* Try DWARF-based unwinding... */
|
|
|
|
ret = dwarf_step (&c->dwarf);
|
2004-08-19 15:39:10 +02:00
|
|
|
|
2005-05-03 11:13:17 +02:00
|
|
|
if (ret < 0 && ret != -UNW_ENOINFO)
|
|
|
|
{
|
|
|
|
Debug (2, "returning %d\n", ret);
|
|
|
|
return ret;
|
|
|
|
}
|
2004-08-20 13:23:15 +02:00
|
|
|
|
|
|
|
if (likely (ret >= 0))
|
2004-08-19 15:39:10 +02:00
|
|
|
{
|
2004-08-20 13:23:15 +02:00
|
|
|
/* x86_64 ABI specifies that end of call-chain is marked with a
|
|
|
|
NULL RBP. */
|
|
|
|
if (DWARF_IS_NULL_LOC (c->dwarf.loc[RBP]))
|
|
|
|
c->dwarf.ip = 0;
|
2004-08-19 15:39:10 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2005-05-03 11:13:17 +02:00
|
|
|
/* DWARF failed. There isn't much of a usable frame-chain on x86-64,
|
|
|
|
but we do need to handle two special-cases:
|
|
|
|
|
|
|
|
(i) signal trampoline: Old kernels and older libcs don't
|
|
|
|
export the vDSO needed to get proper unwind info for the
|
|
|
|
trampoline. Recognize that case by looking at the code
|
|
|
|
and filling in things by hand.
|
|
|
|
|
|
|
|
(ii) PLT (shared-library) call-stubs: PLT stubs are invoked
|
|
|
|
via CALLQ. Try this for all non-signal trampoline
|
|
|
|
code. */
|
|
|
|
|
|
|
|
unw_word_t prev_ip = c->dwarf.ip, prev_cfa = c->dwarf.cfa;
|
2004-08-19 15:39:10 +02:00
|
|
|
struct dwarf_loc rbp_loc, rsp_loc, rip_loc;
|
|
|
|
|
2008-06-16 22:35:53 +02:00
|
|
|
/* We could get here because of missing/bad unwind information.
|
|
|
|
Validate all addresses before dereferencing. */
|
|
|
|
c->validate = 1;
|
|
|
|
|
2004-08-20 13:23:15 +02:00
|
|
|
Debug (13, "dwarf_step() failed (ret=%d), trying frame-chain\n", ret);
|
|
|
|
|
2010-03-08 18:45:54 +01:00
|
|
|
c->sigcontext_format = unw_is_signal_frame (cursor);
|
|
|
|
if (c->sigcontext_format == X86_64_SCF_FREEBSD_SYSCALL) {
|
|
|
|
c->dwarf.loc[RCX] = c->dwarf.loc[R10];
|
|
|
|
// rsp_loc = DWARF_LOC(c->dwarf.cfa - 8, 0);
|
|
|
|
// rbp_loc = c->dwarf.loc[RBP];
|
|
|
|
c->dwarf.loc[RIP] = DWARF_LOC (c->dwarf.cfa, 0);
|
|
|
|
ret = dwarf_get (&c->dwarf, c->dwarf.loc[RIP], &c->dwarf.ip);
|
|
|
|
Debug (1, "Frame Chain [RIP=0x%Lx] = 0x%Lx\n",
|
|
|
|
(unsigned long long) DWARF_GET_LOC (c->dwarf.loc[RIP]),
|
|
|
|
(unsigned long long) c->dwarf.ip);
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
Debug (2, "returning %d\n", ret);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
c->dwarf.cfa += 8;
|
|
|
|
return 1;
|
|
|
|
} else if (c->sigcontext_format != X86_64_SCF_NONE)
|
2004-08-20 13:23:15 +02:00
|
|
|
{
|
2010-04-05 01:17:32 +02:00
|
|
|
ret = unw_handle_signal_frame(cursor);
|
2004-08-20 13:23:15 +02:00
|
|
|
if (ret < 0)
|
2005-05-03 11:13:17 +02:00
|
|
|
{
|
2010-04-05 01:17:32 +02:00
|
|
|
Debug (2, "returning 0\n");
|
|
|
|
return 0;
|
2005-05-03 11:13:17 +02:00
|
|
|
}
|
2004-08-20 13:23:15 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2005-05-03 11:13:17 +02:00
|
|
|
unw_word_t rbp;
|
2004-08-20 13:23:15 +02:00
|
|
|
|
2005-05-03 11:13:17 +02:00
|
|
|
ret = dwarf_get (&c->dwarf, c->dwarf.loc[RBP], &rbp);
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
Debug (2, "returning %d\n", ret);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!rbp)
|
|
|
|
{
|
|
|
|
/* Looks like we may have reached the end of the call-chain. */
|
|
|
|
rbp_loc = DWARF_NULL_LOC;
|
|
|
|
rsp_loc = DWARF_NULL_LOC;
|
|
|
|
rip_loc = DWARF_NULL_LOC;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-07-27 06:04:40 +02:00
|
|
|
unw_word_t rbp1;
|
2005-05-03 11:13:17 +02:00
|
|
|
Debug (1, "[RBP=0x%Lx] = 0x%Lx (cfa = 0x%Lx)\n",
|
|
|
|
(unsigned long long) DWARF_GET_LOC (c->dwarf.loc[RBP]),
|
|
|
|
(unsigned long long) rbp,
|
|
|
|
(unsigned long long) c->dwarf.cfa);
|
|
|
|
|
2006-07-27 06:04:40 +02:00
|
|
|
rbp_loc = DWARF_LOC(rbp, 0);
|
2005-05-03 11:13:17 +02:00
|
|
|
rsp_loc = DWARF_NULL_LOC;
|
2006-07-27 06:04:40 +02:00
|
|
|
rip_loc = DWARF_LOC (rbp + 8, 0);
|
|
|
|
/* Heuristic to recognize a bogus frame pointer */
|
|
|
|
ret = dwarf_get (&c->dwarf, rbp_loc, &rbp1);
|
2006-07-27 06:06:48 +02:00
|
|
|
if (ret || ((rbp1 - rbp) > 0x4000))
|
2006-07-27 06:04:40 +02:00
|
|
|
rbp_loc = DWARF_NULL_LOC;
|
2006-07-27 06:06:48 +02:00
|
|
|
c->dwarf.cfa += 16;
|
2005-05-03 11:13:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Mark all registers unsaved */
|
|
|
|
for (i = 0; i < DWARF_NUM_PRESERVED_REGS; ++i)
|
|
|
|
c->dwarf.loc[i] = DWARF_NULL_LOC;
|
2010-04-05 01:17:32 +02:00
|
|
|
|
|
|
|
c->dwarf.loc[RBP] = rbp_loc;
|
|
|
|
c->dwarf.loc[RSP] = rsp_loc;
|
|
|
|
c->dwarf.loc[RIP] = rip_loc;
|
2004-08-20 13:23:15 +02:00
|
|
|
}
|
2004-08-19 15:39:10 +02:00
|
|
|
|
|
|
|
c->dwarf.ret_addr_column = RIP;
|
|
|
|
|
|
|
|
if (!DWARF_IS_NULL_LOC (c->dwarf.loc[RBP]))
|
|
|
|
{
|
|
|
|
ret = dwarf_get (&c->dwarf, c->dwarf.loc[RIP], &c->dwarf.ip);
|
2006-07-27 06:04:40 +02:00
|
|
|
Debug (1, "Frame Chain [RIP=0x%Lx] = 0x%Lx\n",
|
|
|
|
(unsigned long long) DWARF_GET_LOC (c->dwarf.loc[RIP]),
|
|
|
|
(unsigned long long) c->dwarf.ip);
|
2004-08-19 15:39:10 +02:00
|
|
|
if (ret < 0)
|
2005-05-03 11:13:17 +02:00
|
|
|
{
|
|
|
|
Debug (2, "returning %d\n", ret);
|
|
|
|
return ret;
|
|
|
|
}
|
2004-08-19 15:39:10 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
c->dwarf.ip = 0;
|
2005-05-03 11:13:17 +02:00
|
|
|
|
|
|
|
if (c->dwarf.ip == prev_ip && c->dwarf.cfa == prev_cfa)
|
|
|
|
return -UNW_EBADFRAME;
|
2004-08-19 15:39:10 +02:00
|
|
|
}
|
2005-05-03 11:13:17 +02:00
|
|
|
ret = (c->dwarf.ip == 0) ? 0 : 1;
|
|
|
|
Debug (2, "returning %d\n", ret);
|
|
|
|
return ret;
|
2004-08-19 15:39:10 +02:00
|
|
|
}
|