blob: 93d0d3abb4937bc575a0816a9b9641e4e04b9424 [file] [log] [blame]
Ian Lance Tayloreff02e42012-09-17 16:38:38 +00001/* print.c -- Print the current backtrace.
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 <stdio.h>
36#include <string.h>
37#include <sys/types.h>
38
39#include "backtrace.h"
40#include "internal.h"
41
42/* Passed to callbacks. */
43
44struct print_data
45{
46 struct backtrace_state *state;
47 FILE *f;
48};
49
50/* Print one level of a backtrace. */
51
52static int
53print_callback (void *data, uintptr_t pc, const char *filename, int lineno,
54 const char *function)
55{
56 struct print_data *pdata = (struct print_data *) data;
57
58 fprintf (pdata->f, "0x%lx %s\n\t%s:%d\n",
59 (unsigned long) pc,
60 function == NULL ? "???" : function,
61 filename == NULL ? "???" : filename,
62 lineno);
63 return 0;
64}
65
66/* Print errors to stderr. */
67
68static void
69error_callback (void *data, const char *msg, int errnum)
70{
71 struct print_data *pdata = (struct print_data *) data;
Ian Lance Tayloreff02e42012-09-17 16:38:38 +000072
Ian Lance Taylor33521502012-11-12 21:24:19 +000073 if (pdata->state->filename != NULL)
74 fprintf (stderr, "%s: ", pdata->state->filename);
75 fprintf (stderr, "libbacktrace: %s", msg);
Ian Lance Tayloreff02e42012-09-17 16:38:38 +000076 if (errnum > 0)
77 fprintf (stderr, ": %s", strerror (errnum));
78 fputc ('\n', stderr);
79}
80
81/* Print a backtrace. */
82
Tom de Vries4af50e12019-02-08 09:49:06 +000083void __attribute__((noinline))
Ian Lance Tayloreff02e42012-09-17 16:38:38 +000084backtrace_print (struct backtrace_state *state, int skip, FILE *f)
85{
86 struct print_data data;
87
88 data.state = state;
89 data.f = f;
90 backtrace_full (state, skip + 1, print_callback, error_callback,
91 (void *) &data);
92}