summaryrefslogtreecommitdiff
path: root/src/third_party/unwind/dist/src/s390x/Gstep.c
blob: 0b79580b256bc289582a81f736051c9ff1ab957b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
/* libunwind - a platform-independent unwind library
   Copyright (C) 2002-2004 Hewlett-Packard Co
        Contributed by David Mosberger-Tang <davidm@hpl.hp.com>

   Modified for x86_64 by Max Asbock <masbock@us.ibm.com>
   Modified for s390x by Michael Munday <mike.munday@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>

static int
s390x_handle_signal_frame (unw_cursor_t *cursor)
{
  struct cursor *c = (struct cursor *) cursor;
  int ret, i;
  unw_word_t sc_addr, sp, *gprs, *fprs, *psw;

  ret = dwarf_get (&c->dwarf, c->dwarf.loc[UNW_S390X_R15], &sp);
  if (ret < 0)
    return ret;

  /* Save the SP and PC to be able to return execution at this point
     later in time (unw_resume).  */
  c->sigcontext_sp = sp;
  c->sigcontext_pc = c->dwarf.ip;
  switch (c->sigcontext_format)
    {
    case S390X_SCF_LINUX_SIGFRAME: /* sigreturn */
      sc_addr = sp + 160;
      gprs = ((struct sigcontext*)sc_addr)->sregs->regs.gprs;
      fprs = (unw_word_t*)((struct sigcontext*)sc_addr)->sregs->fpregs.fprs;
      psw  = &((struct sigcontext*)sc_addr)->sregs->regs.psw.addr;
      break;
    case S390X_SCF_LINUX_RT_SIGFRAME: /* rt_sigreturn */
      sc_addr = sp + sizeof(siginfo_t) + 8 + 160;
      gprs = ((ucontext_t*)sc_addr)->uc_mcontext.gregs;
      fprs = (unw_word_t*)((ucontext_t*)sc_addr)->uc_mcontext.fpregs.fprs;
      psw  = &((ucontext_t*)sc_addr)->uc_mcontext.psw.addr;
      break;
    default:
      return -UNW_EUNSPEC;
    }

  c->sigcontext_addr = sc_addr;

  /* Update the dwarf cursor.
     Set the location of the registers to the corresponding addresses of the
     uc_mcontext / sigcontext structure contents.  */
  for (i = UNW_S390X_R0; i <= UNW_S390X_R15; ++i)
    c->dwarf.loc[i] = DWARF_MEM_LOC (c, (unw_word_t) &gprs[i-UNW_S390X_R0]);
  for (i = UNW_S390X_F0; i <= UNW_S390X_F15; ++i)
    c->dwarf.loc[i] = DWARF_MEM_LOC (c, (unw_word_t) &fprs[i-UNW_S390X_F0]);

  c->dwarf.loc[UNW_S390X_IP] = DWARF_MEM_LOC (c, (unw_word_t) psw);

  /* Set SP/CFA and PC/IP.
     Normally the default CFA on s390x is r15+160. We do not add that offset
     here because dwarf_step will add the offset.  */
  dwarf_get (&c->dwarf, c->dwarf.loc[UNW_S390X_R15], &c->dwarf.cfa);
  dwarf_get (&c->dwarf, c->dwarf.loc[UNW_S390X_IP], &c->dwarf.ip);

  c->dwarf.pi_valid = 0;
  c->dwarf.use_prev_instr = 0;

  return 1;
}

int
unw_step (unw_cursor_t *cursor)
{
  struct cursor *c = (struct cursor *) cursor;
  int ret = 0, val = c->validate, sig;

#if CONSERVATIVE_CHECKS
  c->validate = 1;
#endif

  Debug (1, "(cursor=%p, ip=0x%016lx, cfa=0x%016lx)\n",
         c, c->dwarf.ip, c->dwarf.cfa);

  /* Try DWARF-based unwinding... */
  c->sigcontext_format = S390X_SCF_NONE;
  ret = dwarf_step (&c->dwarf);

#if CONSERVATIVE_CHECKS
  c->validate = val;
#endif

  if (unlikely (ret == -UNW_ENOINFO))
    {
      /* GCC doesn't currently emit debug information for signal
         trampolines on s390x so we check for them explicitly.

         If there isn't debug information available we could also
         try using the backchain (if available).

         Other platforms also detect PLT entries here. That's
         tricky to do reliably on s390x so I've left it out for
         now.  */

      /* Memory accesses here are quite likely to be unsafe. */
      c->validate = 1;

      /* Check if this is a signal frame. */
      sig = unw_is_signal_frame (cursor);
      if (sig > 0)
        {
          c->sigcontext_format = sig;
          ret = s390x_handle_signal_frame (cursor);
        }
      else
        {
          c->dwarf.ip = 0;
          ret = 0;
        }

      c->validate = val;
      return ret;
    }

  if (unlikely (ret > 0 && c->dwarf.ip == 0))
    return 0;

  return ret;
}