blob: 60bd2381fb0c88c37e652f7ec10411d52bf757bf [file] [log] [blame]
Neels Hofmeyr17518fe2017-06-20 04:35:06 +02001/*! \file backtrace.c
2 * Routines related to generating call back traces. */
Pablo Neira Ayusofba495e2011-03-23 18:08:08 +01003/*
Pablo Neira Ayusofba495e2011-03-23 18:08:08 +01004 * (C) 2009 by Holger Hans Peter Freyther <zecke@selfish.org>
Harald Weltea9e4a142012-07-14 12:31:55 +02005 * (C) 2012 by Harald Welte <laforge@gnumonks.org>
Pablo Neira Ayusofba495e2011-03-23 18:08:08 +01006 *
7 * All Rights Reserved
8 *
Harald Weltee08da972017-11-13 01:00:26 +09009 * SPDX-License-Identifier: GPL-2.0+
10 *
Pablo Neira Ayusofba495e2011-03-23 18:08:08 +010011 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
Pablo Neira Ayusofba495e2011-03-23 18:08:08 +010021 */
22
23#include <stdio.h>
24#include <stdlib.h>
Pablo Neira Ayuso83419342011-03-22 16:36:13 +010025#include <osmocom/core/utils.h>
Harald Welte45ecd042012-07-14 12:30:53 +020026#include <osmocom/core/logging.h>
Pablo Neira Ayusofba495e2011-03-23 18:08:08 +010027#include "config.h"
28
29#ifdef HAVE_EXECINFO_H
30#include <execinfo.h>
Harald Welteba6988b2011-08-17 12:46:48 +020031
Harald Welte45ecd042012-07-14 12:30:53 +020032static void _osmo_backtrace(int use_printf, int subsys, int level)
Pablo Neira Ayusofba495e2011-03-23 18:08:08 +010033{
34 int i, nptrs;
35 void *buffer[100];
36 char **strings;
37
38 nptrs = backtrace(buffer, ARRAY_SIZE(buffer));
Harald Welte45ecd042012-07-14 12:30:53 +020039 if (use_printf)
40 printf("backtrace() returned %d addresses\n", nptrs);
41 else
42 LOGP(subsys, level, "backtrace() returned %d addresses\n",
43 nptrs);
Pablo Neira Ayusofba495e2011-03-23 18:08:08 +010044
45 strings = backtrace_symbols(buffer, nptrs);
46 if (!strings)
47 return;
48
Harald Welte45ecd042012-07-14 12:30:53 +020049 for (i = 1; i < nptrs; i++) {
50 if (use_printf)
51 printf("%s\n", strings[i]);
52 else
53 LOGP(subsys, level, "\t%s\n", strings[i]);
54 }
Pablo Neira Ayusofba495e2011-03-23 18:08:08 +010055
56 free(strings);
57}
Harald Welte45ecd042012-07-14 12:30:53 +020058
Neels Hofmeyr87e45502017-06-20 00:17:59 +020059/*! Generate and print a call back-trace
Harald Welte45ecd042012-07-14 12:30:53 +020060 *
61 * This function will generate a function call back-trace of the
62 * current process and print it to stdout. */
63void osmo_generate_backtrace(void)
64{
65 _osmo_backtrace(1, 0, 0);
66}
67
Neels Hofmeyr87e45502017-06-20 00:17:59 +020068/*! Generate and log a call back-trace
Harald Welte2d2e2cc2016-04-25 12:11:20 +020069 * \param[in] subsys Logging sub-system
70 * \param[in] level Logging level
Harald Welte45ecd042012-07-14 12:30:53 +020071 *
72 * This function will generate a function call back-trace of the
73 * current process and log it to the specified subsystem and
74 * level using the libosmocore logging subsystem */
75void osmo_log_backtrace(int subsys, int level)
76{
77 _osmo_backtrace(0, subsys, level);
78}
Holger Hans Peter Freyther3ec50472011-11-09 12:18:55 +010079#else
80void osmo_generate_backtrace(void)
81{
Harald Welteaef91752012-09-08 22:00:13 +020082 printf("This platform has no backtrace function\n");
Harald Welte45ecd042012-07-14 12:30:53 +020083}
84void osmo_log_backtrace(int subsys, int level)
85{
86 LOGP(subsys, level, "This platform has no backtrace function\n");
Holger Hans Peter Freyther3ec50472011-11-09 12:18:55 +010087}
Pablo Neira Ayusofba495e2011-03-23 18:08:08 +010088#endif