blob: 0ce50db2635c5a28a5126a2c8ed1aebafdd5351d [file] [log] [blame]
Sylvain Munautac3e61a2010-07-25 18:08:54 +02001/* Panic handling */
2/*
3 * (C) 2010 by Sylvain Munaut <tnt@246tNt.com>
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
Harald Weltea523d142011-08-17 16:09:19 +020023/*! \addtogroup utils
24 * @{
25 */
26
Harald Welte2d2e2cc2016-04-25 12:11:20 +020027/*! \file panic.c
28 * \brief Routines for panic handling
29 */
Harald Weltea523d142011-08-17 16:09:19 +020030
Pablo Neira Ayuso83419342011-03-22 16:36:13 +010031#include <osmocom/gsm/gsm_utils.h>
32#include <osmocom/core/panic.h>
33#include <osmocom/core/backtrace.h>
Sylvain Munautac3e61a2010-07-25 18:08:54 +020034
35#include "../config.h"
36
37
38static osmo_panic_handler_t osmo_panic_handler = (void*)0;
39
40
41#ifndef PANIC_INFLOOP
42
43#include <stdio.h>
44#include <stdlib.h>
45
46static void osmo_panic_default(const char *fmt, va_list args)
47{
48 vfprintf(stderr, fmt, args);
Pablo Neira Ayuso619b8b32011-05-07 12:45:47 +020049 osmo_generate_backtrace();
Sylvain Munautac3e61a2010-07-25 18:08:54 +020050 abort();
51}
52
53#else
54
55static void osmo_panic_default(const char *fmt, va_list args)
56{
57 while (1);
58}
59
60#endif
61
62
Harald Welte2d2e2cc2016-04-25 12:11:20 +020063/*! \brief Terminate the current program with a panic
64 *
65 * You can call this function in case some severely unexpected situation
66 * is detected and the program is supposed to terminate in a way that
67 * reports the fact that it terminates.
68 *
69 * The application can register a panic handler function using \ref
70 * osmo_set_panic_handler. If it doesn't, a default panic handler
71 * function is called automatically.
72 *
73 * The default function on most systems will generate a backtrace and
74 * then abort() the process.
75 */
Sylvain Munautac3e61a2010-07-25 18:08:54 +020076void osmo_panic(const char *fmt, ...)
77{
78 va_list args;
79
80 va_start(args, fmt);
81
82 if (osmo_panic_handler)
83 osmo_panic_handler(fmt, args);
84 else
85 osmo_panic_default(fmt, args);
86
87 va_end(args);
88}
89
90
Harald Welte2d2e2cc2016-04-25 12:11:20 +020091/*! \brief Set the panic handler
92 * \param[in] h New panic handler function
93 *
94 * This changes the panic handling function from the currently active
95 * function to a new call-back function supplied by the caller.
96 */
Sylvain Munautc91d17b2010-11-13 18:00:25 +010097void osmo_set_panic_handler(osmo_panic_handler_t h)
Sylvain Munautac3e61a2010-07-25 18:08:54 +020098{
99 osmo_panic_handler = h;
100}
101
Harald Weltede6e4982012-12-06 21:25:27 +0100102/*! @} */