blob: 785e726e6be39f439544fd3f493a66f9b75fc599 [file] [log] [blame]
Ian Lance Tayloreff02e42012-09-17 16:38:38 +00001/* simple.c -- The backtrace_simple function.
Thomas Koenigb18a97e2021-09-13 19:49:49 +02002 Copyright (C) 2012-2021 Free Software Foundation, Inc.
Ian Lance Tayloreff02e42012-09-17 16:38:38 +00003 Written by Ian Lance Taylor, Google.
4
5Redistribution and use in source and binary forms, with or without
6modification, are permitted provided that the following conditions are
7met:
8
9 (1) Redistributions of source code must retain the above copyright
Carlos Liam84ebf632016-09-11 15:44:07 +020010 notice, this list of conditions and the following disclaimer.
Ian Lance Tayloreff02e42012-09-17 16:38:38 +000011
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
Carlos Liam84ebf632016-09-11 15:44:07 +020015 distribution.
16
Ian Lance Tayloreff02e42012-09-17 16:38:38 +000017 (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
21THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
22IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
23WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
24DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
25INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
26(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
27SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
29STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
30IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31POSSIBILITY OF SUCH DAMAGE. */
32
33#include "config.h"
34
35#include "unwind.h"
36#include "backtrace.h"
37
38/* The simple_backtrace routine. */
39
40/* Data passed through _Unwind_Backtrace. */
41
42struct backtrace_simple_data
43{
44 /* Number of frames to skip. */
45 int skip;
46 /* Library state. */
47 struct backtrace_state *state;
48 /* Callback routine. */
49 backtrace_simple_callback callback;
50 /* Error callback routine. */
51 backtrace_error_callback error_callback;
52 /* Data to pass to callback routine. */
53 void *data;
54 /* Value to return from backtrace. */
55 int ret;
56};
57
Ian Lance Taylor494c5102020-09-08 15:07:24 -070058/* Unwind library callback routine. This is passed to
Ian Lance Tayloreff02e42012-09-17 16:38:38 +000059 _Unwind_Backtrace. */
60
61static _Unwind_Reason_Code
62simple_unwind (struct _Unwind_Context *context, void *vdata)
63{
64 struct backtrace_simple_data *bdata = (struct backtrace_simple_data *) vdata;
65 uintptr_t pc;
66 int ip_before_insn = 0;
67
68#ifdef HAVE_GETIPINFO
69 pc = _Unwind_GetIPInfo (context, &ip_before_insn);
70#else
71 pc = _Unwind_GetIP (context);
72#endif
73
74 if (bdata->skip > 0)
75 {
76 --bdata->skip;
77 return _URC_NO_REASON;
78 }
79
80 if (!ip_before_insn)
81 --pc;
82
83 bdata->ret = bdata->callback (bdata->data, pc);
84
85 if (bdata->ret != 0)
86 return _URC_END_OF_STACK;
87
88 return _URC_NO_REASON;
89}
90
91/* Get a simple stack backtrace. */
92
Tom de Vries4af50e12019-02-08 09:49:06 +000093int __attribute__((noinline))
Ian Lance Tayloreff02e42012-09-17 16:38:38 +000094backtrace_simple (struct backtrace_state *state, int skip,
95 backtrace_simple_callback callback,
96 backtrace_error_callback error_callback, void *data)
97{
98 struct backtrace_simple_data bdata;
99
100 bdata.skip = skip + 1;
101 bdata.state = state;
102 bdata.callback = callback;
103 bdata.error_callback = error_callback;
104 bdata.data = data;
105 bdata.ret = 0;
106 _Unwind_Backtrace (simple_unwind, &bdata);
107 return bdata.ret;
108}