1 /* fileline.c -- Get file and line number information in a backtrace.
2 Copyright (C) 2012-2015 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>
41 #include "backtrace.h"
44 #ifndef HAVE_GETEXECNAME
45 #define getexecname() NULL
48 /* Initialize the fileline information from the executable. Returns 1
49 on success, 0 on failure. */
52 fileline_initialize (struct backtrace_state
*state
,
53 backtrace_error_callback error_callback
, void *data
)
58 int called_error_callback
;
62 failed
= state
->fileline_initialization_failed
;
64 failed
= backtrace_atomic_load_int (&state
->fileline_initialization_failed
);
68 error_callback (data
, "failed to read executable information", -1);
73 fileline_fn
= state
->fileline_fn
;
75 fileline_fn
= backtrace_atomic_load_pointer (&state
->fileline_fn
);
76 if (fileline_fn
!= NULL
)
79 /* We have not initialized the information. Do it now. */
82 called_error_callback
= 0;
83 for (pass
= 0; pass
< 4; ++pass
)
91 filename
= state
->filename
;
94 filename
= getexecname ();
97 filename
= "/proc/self/exe";
100 filename
= "/proc/curproc/file";
106 if (filename
== NULL
)
109 descriptor
= backtrace_open (filename
, error_callback
, data
,
111 if (descriptor
< 0 && !does_not_exist
)
113 called_error_callback
= 1;
122 if (!called_error_callback
)
124 if (state
->filename
!= NULL
)
125 error_callback (data
, state
->filename
, ENOENT
);
127 error_callback (data
,
128 "libbacktrace could not find executable to open",
136 if (!backtrace_initialize (state
, descriptor
, error_callback
, data
,
143 if (!state
->threaded
)
144 state
->fileline_initialization_failed
= 1;
146 backtrace_atomic_store_int (&state
->fileline_initialization_failed
, 1);
150 if (!state
->threaded
)
151 state
->fileline_fn
= fileline_fn
;
154 backtrace_atomic_store_pointer (&state
->fileline_fn
, fileline_fn
);
156 /* Note that if two threads initialize at once, one of the data
157 sets may be leaked. */
163 /* Given a PC, find the file name, line number, and function name. */
166 backtrace_pcinfo (struct backtrace_state
*state
, uintptr_t pc
,
167 backtrace_full_callback callback
,
168 backtrace_error_callback error_callback
, void *data
)
170 if (!fileline_initialize (state
, error_callback
, data
))
173 if (state
->fileline_initialization_failed
)
176 return state
->fileline_fn (state
, pc
, callback
, error_callback
, data
);
179 /* Given a PC, find the symbol for it, and its value. */
182 backtrace_syminfo (struct backtrace_state
*state
, uintptr_t pc
,
183 backtrace_syminfo_callback callback
,
184 backtrace_error_callback error_callback
, void *data
)
186 if (!fileline_initialize (state
, error_callback
, data
))
189 if (state
->fileline_initialization_failed
)
192 state
->syminfo_fn (state
, pc
, callback
, error_callback
, data
);