blob: 5d6dc4a75d1052171fe07b29b9eb6c5ad71e1e32 [file] [log] [blame]
Harald Welteeb81d232017-05-07 13:18:36 +02001/*
2 * (C) 2009 by Holger Hans Peter Freyther <zecke@selfish.org>
3 * (C) 2012 by Harald Welte <laforge@gnumonks.org>
4 *
5 * All Rights Reserved
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 *
21 */
22
23/*! \file backtrace.c
24 * \brief Routines realted to generating call back traces
25 */
26
27#include <stdio.h>
28#include <stdlib.h>
29#include <osmocom/core/utils.h>
30//#include <osmocom/core/logging.h>
31//#include "config.h"
32
33#ifdef HAVE_EXECINFO_H
34#include <execinfo.h>
35
36static void _osmo_backtrace(int use_printf, int subsys, int level)
37{
38 int i, nptrs;
39 void *buffer[100];
40 char **strings;
41
42 nptrs = backtrace(buffer, ARRAY_SIZE(buffer));
43 if (use_printf)
44 printf("backtrace() returned %d addresses\n", nptrs);
45 else
46 LOGP(subsys, level, "backtrace() returned %d addresses\n",
47 nptrs);
48
49 strings = backtrace_symbols(buffer, nptrs);
50 if (!strings)
51 return;
52
53 for (i = 1; i < nptrs; i++) {
54 if (use_printf)
55 printf("%s\n", strings[i]);
56 else
57 LOGP(subsys, level, "\t%s\n", strings[i]);
58 }
59
60 free(strings);
61}
62
63/*! \brief Generate and print a call back-trace
64 *
65 * This function will generate a function call back-trace of the
66 * current process and print it to stdout. */
67void osmo_generate_backtrace(void)
68{
69 _osmo_backtrace(1, 0, 0);
70}
71
72/*! \brief Generate and log a call back-trace
73 * \param[in] subsys Logging sub-system
74 * \param[in] level Logging level
75 *
76 * This function will generate a function call back-trace of the
77 * current process and log it to the specified subsystem and
78 * level using the libosmocore logging subsystem */
79void osmo_log_backtrace(int subsys, int level)
80{
81 _osmo_backtrace(0, subsys, level);
82}
83#else
84void osmo_generate_backtrace(void)
85{
86 printf("This platform has no backtrace function\n");
87}
88void osmo_log_backtrace(int subsys, int level)
89{
90 //LOGP(subsys, level, "This platform has no backtrace function\n");
91}
92#endif