blob: 5b93becb3b6667b5e54a3e1625ffce91fc7d1c10 [file] [log] [blame]
Pablo Neira Ayusofba495e2011-03-23 18:08:08 +01001/*
Pablo Neira Ayusofba495e2011-03-23 18:08:08 +01002 * (C) 2009 by Holger Hans Peter Freyther <zecke@selfish.org>
Harald Weltea9e4a142012-07-14 12:31:55 +02003 * (C) 2012 by Harald Welte <laforge@gnumonks.org>
Pablo Neira Ayusofba495e2011-03-23 18:08:08 +01004 *
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
Harald Welteba6988b2011-08-17 12:46:48 +020023/*! \file backtrace.c
24 * \brief Routines realted to generating call back traces
25 */
26
Pablo Neira Ayusofba495e2011-03-23 18:08:08 +010027#include <stdio.h>
28#include <stdlib.h>
Pablo Neira Ayuso83419342011-03-22 16:36:13 +010029#include <osmocom/core/utils.h>
Harald Welte45ecd042012-07-14 12:30:53 +020030#include <osmocom/core/logging.h>
Pablo Neira Ayusofba495e2011-03-23 18:08:08 +010031#include "config.h"
32
33#ifdef HAVE_EXECINFO_H
34#include <execinfo.h>
Harald Welteba6988b2011-08-17 12:46:48 +020035
Harald Welte45ecd042012-07-14 12:30:53 +020036static void _osmo_backtrace(int use_printf, int subsys, int level)
Pablo Neira Ayusofba495e2011-03-23 18:08:08 +010037{
38 int i, nptrs;
39 void *buffer[100];
40 char **strings;
41
42 nptrs = backtrace(buffer, ARRAY_SIZE(buffer));
Harald Welte45ecd042012-07-14 12:30:53 +020043 if (use_printf)
44 printf("backtrace() returned %d addresses\n", nptrs);
45 else
46 LOGP(subsys, level, "backtrace() returned %d addresses\n",
47 nptrs);
Pablo Neira Ayusofba495e2011-03-23 18:08:08 +010048
49 strings = backtrace_symbols(buffer, nptrs);
50 if (!strings)
51 return;
52
Harald Welte45ecd042012-07-14 12:30:53 +020053 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 }
Pablo Neira Ayusofba495e2011-03-23 18:08:08 +010059
60 free(strings);
61}
Harald Welte45ecd042012-07-14 12:30:53 +020062
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 *
74 * This function will generate a function call back-trace of the
75 * current process and log it to the specified subsystem and
76 * level using the libosmocore logging subsystem */
77void osmo_log_backtrace(int subsys, int level)
78{
79 _osmo_backtrace(0, subsys, level);
80}
Holger Hans Peter Freyther3ec50472011-11-09 12:18:55 +010081#else
82void osmo_generate_backtrace(void)
83{
Harald Welteaef91752012-09-08 22:00:13 +020084 printf("This platform has no backtrace function\n");
Harald Welte45ecd042012-07-14 12:30:53 +020085}
86void osmo_log_backtrace(int subsys, int level)
87{
88 LOGP(subsys, level, "This platform has no backtrace function\n");
Holger Hans Peter Freyther3ec50472011-11-09 12:18:55 +010089}
Pablo Neira Ayusofba495e2011-03-23 18:08:08 +010090#endif