1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136
|
/*
+-------------------------------------------------------------------------+
| Copyright (C) 2002-2006 The Cacti Group |
| |
| This program is free software; you can redistribute it and/or |
| modify it under the terms of the GNU Lesser General Public |
| License as published by the Free Software Foundation; either |
| version 2.1 of the License, or (at your option) any later version. |
| |
| This program is distributed in the hope that it will be useful, |
| but WITHOUT ANY WARRANTY; without even the implied warranty of |
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| GNU Lesser General Public License for more details. |
| |
| You should have received a copy of the GNU Lesser General Public |
| License along with this library; if not, write to the Free Software |
| Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA |
| 02110-1301, USA |
| |
+-------------------------------------------------------------------------+
| cactid: a backend data gatherer for cacti |
+-------------------------------------------------------------------------+
| This poller would not have been possible without: |
| - Larry Adams (current development and enhancements) |
| - Rivo Nurges (rrd support, mysql poller cache, misc functions) |
| - RTG (core poller code, pthreads, snmp, autoconf examples) |
| - Brady Alleman/Doug Warner (threading ideas, implimentation details) |
+-------------------------------------------------------------------------+
| - Cacti - http://www.cacti.net/ |
+-------------------------------------------------------------------------+
*/
/* These functions handle simple singal handling functions for Cactid. It was
written to handle specifically issues with the Solaris threading model in
version 2.8.
*/
#include "common.h"
#include "cactid.h"
/*! \fn static void cactid_signal_handler(int cactid_signal)
* \brief interupts the os default signal handler as appropriate.
*
*/
static void cactid_signal_handler(int cactid_signal) {
signal(cactid_signal, SIG_DFL);
set.exit_code = cactid_signal;
switch (cactid_signal) {
case SIGINT:
die("FATAL: Cactid Interrupted by Console Operator");
break;
case SIGSEGV:
die("FATAL: Cactid Encountered a Segmentation Fault");
break;
case SIGBUS:
die("FATAL: Cactid Encountered a Bus Error");
break;
case SIGFPE:
die("FATAL: Cactid Encountered a Floating Point Exception");
break;
case SIGQUIT:
die("FATAL: Cactid Encountered a Keyboard Quit Command");
break;
case SIGPIPE:
die("FATAL: Cactid Encountered a Broken Pipe");
break;
default:
die("FATAL: Cactid Encountered An Unhandled Exception Signal Number: '%d'", cactid_signal);
break;
}
}
static int cactid_fatal_signals[] = {
SIGINT,
SIGSEGV,
SIGBUS,
SIGFPE,
SIGQUIT,
0
};
/*! \fn void install_cactid_signal_handler(void)
* \brief installs the cactid signal handler to stop certain calls from
* abending Cactid.
*
*/
void install_cactid_signal_handler(void) {
/* Set a handler for any fatal signal not already handled */
int i;
struct sigaction action;
void (*ohandler)(int);
for ( i=0; cactid_fatal_signals[i]; ++i ) {
sigaction(cactid_fatal_signals[i], NULL, &action);
if ( action.sa_handler == SIG_DFL ) {
action.sa_handler = cactid_signal_handler;
sigaction(cactid_fatal_signals[i], &action, NULL);
}
}
for ( i=0; cactid_fatal_signals[i]; ++i ) {
ohandler = signal(cactid_fatal_signals[i], cactid_signal_handler);
if ( ohandler != SIG_DFL ) {
signal(cactid_fatal_signals[i], ohandler);
}
}
return;
}
/*! \fn void uninstall_cactid_signal_handler(void)
* \brief uninstalls the cactid signal handler.
*
*/
void uninstall_cactid_signal_handler(void) {
/* Remove a handler for any fatal signal handled */
int i;
struct sigaction action;
void (*ohandler)(int);
for ( i=0; cactid_fatal_signals[i]; ++i ) {
sigaction(cactid_fatal_signals[i], NULL, &action);
if ( action.sa_handler == cactid_signal_handler ) {
action.sa_handler = SIG_DFL;
sigaction(cactid_fatal_signals[i], &action, NULL);
}
}
for ( i=0; cactid_fatal_signals[i]; ++i ) {
ohandler = signal(cactid_fatal_signals[i], SIG_DFL);
if ( ohandler != cactid_signal_handler ) {
signal(cactid_fatal_signals[i], ohandler);
}
}
}
|