The FreeRADIUS server $Id: f3670dba8951ca10eb4948feb3dc3db9423a334f $
Loading...
Searching...
No Matches
backtrace.c
Go to the documentation of this file.
1/* backtrace.c -- Entry point for stack backtrace library.
2 Copyright (C) 2012-2024 Free Software Foundation, Inc.
3 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
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
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 <sys/types.h>
36
37#include "unwind.h"
38#include "backtrace.h"
39#include "internal.h"
40
41/* The main backtrace_full routine. */
42
43/* Data passed through _Unwind_Backtrace. */
44
46{
47 /* Number of frames to skip. */
48 int skip;
49 /* Library state. */
51 /* Callback routine. */
53 /* Error callback routine. */
55 /* Data to pass to callback routines. */
56 void *data;
57 /* Value to return from backtrace_full. */
58 int ret;
59 /* Whether there is any memory available. */
61};
62
63/* Unwind library callback routine. This is passed to
64 _Unwind_Backtrace. */
65
66static _Unwind_Reason_Code
67unwind (struct _Unwind_Context *context, void *vdata)
68{
69 struct backtrace_data *bdata = (struct backtrace_data *) vdata;
70 uintptr_t pc;
71 int ip_before_insn = 0;
72
73#ifdef HAVE_GETIPINFO
74 pc = _Unwind_GetIPInfo (context, &ip_before_insn);
75#else
76 pc = _Unwind_GetIP (context);
77#endif
78
79 if (bdata->skip > 0)
80 {
81 --bdata->skip;
82 return _URC_NO_REASON;
83 }
84
85 if (!ip_before_insn)
86 --pc;
87
88 if (!bdata->can_alloc)
89 bdata->ret = bdata->callback (bdata->data, pc, NULL, 0, NULL);
90 else
91 bdata->ret = backtrace_pcinfo (bdata->state, pc, bdata->callback,
92 bdata->error_callback, bdata->data);
93 if (bdata->ret != 0)
94 return _URC_END_OF_STACK;
95
96 return _URC_NO_REASON;
97}
98
99/* Get a stack backtrace. */
100
101int __attribute__((noinline))
105{
106 struct backtrace_data bdata;
107 void *p;
108
109 bdata.skip = skip + 1;
110 bdata.state = state;
111 bdata.callback = callback;
112 bdata.error_callback = error_callback;
113 bdata.data = data;
114 bdata.ret = 0;
115
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);
119 if (p == NULL)
120 bdata.can_alloc = 0;
121 else
122 {
123 backtrace_free (state, p, 4096, NULL, NULL);
124 bdata.can_alloc = 1;
125 }
126
127 _Unwind_Backtrace (unwind, &bdata);
128 return bdata.ret;
129}
void * backtrace_alloc(struct backtrace_state *state ATTRIBUTE_UNUSED, size_t size, backtrace_error_callback error_callback, void *data)
Definition alloc.c:51
void backtrace_free(struct backtrace_state *state ATTRIBUTE_UNUSED, void *p, size_t size ATTRIBUTE_UNUSED, backtrace_error_callback error_callback ATTRIBUTE_UNUSED, void *data ATTRIBUTE_UNUSED)
Definition alloc.c:69
backtrace_error_callback error_callback
Definition backtrace.c:54
static _Unwind_Reason_Code unwind(struct _Unwind_Context *context, void *vdata)
Definition backtrace.c:67
backtrace_full_callback callback
Definition backtrace.c:52
struct backtrace_state * state
Definition backtrace.c:50
void(* backtrace_error_callback)(void *data, const char *msg, int errnum)
Definition backtrace.h:66
int(* backtrace_full_callback)(void *data, uintptr_t pc, const char *filename, int lineno, const char *function)
Definition backtrace.h:100
int backtrace_full(struct backtrace_state *state, int skip, backtrace_full_callback callback, backtrace_error_callback error_callback, void *data)
int backtrace_pcinfo(struct backtrace_state *state, uintptr_t pc, backtrace_full_callback callback, backtrace_error_callback error_callback, void *data)
Definition fileline.c:386
static void error_callback(void *data, const char *msg, int errnum)
Definition print.c:53
static int context
Definition radmin.c:69
#define __attribute__(x)
Definition filenames.h:38
void * state
Definition testlib.c:46
Functions to help with cleanup.
static fr_slen_t data
Definition value.h:1340