re PR other/67457 (segfault in libbacktrace)
[gcc.git] / libbacktrace / backtrace.c
1 /* backtrace.c -- Entry point for stack backtrace library.
2 Copyright (C) 2012-2015 Free Software Foundation, Inc.
3 Written by Ian Lance Taylor, Google.
4
5 Redistribution and use in source and binary forms, with or without
6 modification, are permitted provided that the following conditions are
7 met:
8
9 (1) Redistributions of source code must retain the above copyright
10 notice, this list of conditions and the following disclaimer.
11
12 (2) Redistributions in binary form must reproduce the above copyright
13 notice, this list of conditions and the following disclaimer in
14 the documentation and/or other materials provided with the
15 distribution.
16
17 (3) The name of the author may not be used to
18 endorse or promote products derived from this software without
19 specific prior written permission.
20
21 THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
22 IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
23 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
24 DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
25 INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
26 (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
27 SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
29 STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
30 IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31 POSSIBILITY OF SUCH DAMAGE. */
32
33 #include "config.h"
34
35 #include "unwind.h"
36 #include "backtrace.h"
37 #include "internal.h"
38
39 /* The main backtrace_full routine. */
40
41 /* Data passed through _Unwind_Backtrace. */
42
43 struct backtrace_data
44 {
45 /* Number of frames to skip. */
46 int skip;
47 /* Library state. */
48 struct backtrace_state *state;
49 /* Callback routine. */
50 backtrace_full_callback callback;
51 /* Error callback routine. */
52 backtrace_error_callback error_callback;
53 /* Data to pass to callback routines. */
54 void *data;
55 /* Value to return from backtrace_full. */
56 int ret;
57 /* Whether there is any memory available. */
58 int can_alloc;
59 };
60
61 /* Unwind library callback routine. This is passed to
62 _Unwind_Backtrace. */
63
64 static _Unwind_Reason_Code
65 unwind (struct _Unwind_Context *context, void *vdata)
66 {
67 struct backtrace_data *bdata = (struct backtrace_data *) vdata;
68 uintptr_t pc;
69 int ip_before_insn = 0;
70
71 #ifdef HAVE_GETIPINFO
72 pc = _Unwind_GetIPInfo (context, &ip_before_insn);
73 #else
74 pc = _Unwind_GetIP (context);
75 #endif
76
77 if (bdata->skip > 0)
78 {
79 --bdata->skip;
80 return _URC_NO_REASON;
81 }
82
83 if (!ip_before_insn)
84 --pc;
85
86 if (!bdata->can_alloc)
87 bdata->ret = bdata->callback (bdata->data, pc, NULL, 0, NULL);
88 else
89 bdata->ret = backtrace_pcinfo (bdata->state, pc, bdata->callback,
90 bdata->error_callback, bdata->data);
91 if (bdata->ret != 0)
92 return _URC_END_OF_STACK;
93
94 return _URC_NO_REASON;
95 }
96
97 /* Get a stack backtrace. */
98
99 int
100 backtrace_full (struct backtrace_state *state, int skip,
101 backtrace_full_callback callback,
102 backtrace_error_callback error_callback, void *data)
103 {
104 struct backtrace_data bdata;
105 void *p;
106
107 bdata.skip = skip + 1;
108 bdata.state = state;
109 bdata.callback = callback;
110 bdata.error_callback = error_callback;
111 bdata.data = data;
112 bdata.ret = 0;
113
114 /* If we can't allocate any memory at all, don't try to produce
115 file/line information. */
116 p = backtrace_alloc (state, 4096, NULL, NULL);
117 if (p == NULL)
118 bdata.can_alloc = 0;
119 else
120 {
121 backtrace_free (state, p, 4096, NULL, NULL);
122 bdata.can_alloc = 1;
123 }
124
125 _Unwind_Backtrace (unwind, &bdata);
126 return bdata.ret;
127 }