1 /* backtrace.c -- Entry point for stack backtrace library.
2 Copyright (C) 2012-2016 Free Software Foundation, Inc.
3 Written by Ian Lance Taylor, Google.
5 Redistribution and use in source and binary forms, with or without
6 modification, are permitted provided that the following conditions are
9 (1) Redistributions of source code must retain the above copyright
10 notice, this list of conditions and the following disclaimer.
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
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.
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. */
35 #include <sys/types.h>
38 #include "backtrace.h"
41 /* The main backtrace_full routine. */
43 /* Data passed through _Unwind_Backtrace. */
47 /* Number of frames to skip. */
50 struct backtrace_state
*state
;
51 /* Callback routine. */
52 backtrace_full_callback callback
;
53 /* Error callback routine. */
54 backtrace_error_callback error_callback
;
55 /* Data to pass to callback routines. */
57 /* Value to return from backtrace_full. */
59 /* Whether there is any memory available. */
63 /* Unwind library callback routine. This is passed to
66 static _Unwind_Reason_Code
67 unwind (struct _Unwind_Context
*context
, void *vdata
)
69 struct backtrace_data
*bdata
= (struct backtrace_data
*) vdata
;
71 int ip_before_insn
= 0;
74 pc
= _Unwind_GetIPInfo (context
, &ip_before_insn
);
76 pc
= _Unwind_GetIP (context
);
82 return _URC_NO_REASON
;
88 if (!bdata
->can_alloc
)
89 bdata
->ret
= bdata
->callback (bdata
->data
, pc
, NULL
, 0, NULL
);
91 bdata
->ret
= backtrace_pcinfo (bdata
->state
, pc
, bdata
->callback
,
92 bdata
->error_callback
, bdata
->data
);
94 return _URC_END_OF_STACK
;
96 return _URC_NO_REASON
;
99 /* Get a stack backtrace. */
102 backtrace_full (struct backtrace_state
*state
, int skip
,
103 backtrace_full_callback callback
,
104 backtrace_error_callback error_callback
, void *data
)
106 struct backtrace_data bdata
;
109 bdata
.skip
= skip
+ 1;
111 bdata
.callback
= callback
;
112 bdata
.error_callback
= error_callback
;
116 /* If we can't allocate any memory at all, don't try to produce
117 file/line information. */
118 p
= backtrace_alloc (state
, 4096, NULL
, NULL
);
123 backtrace_free (state
, p
, 4096, NULL
, NULL
);
127 _Unwind_Backtrace (unwind
, &bdata
);