]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/lib/signal.c
First cut AutoPrune
[bacula/bacula] / bacula / src / lib / signal.c
1 /*
2  *  Signal handlers for Bacula daemons
3  *
4  *   Kern Sibbald, April 2000
5  *
6  *   Version $Id$
7  * 
8  * Note, we probably should do a core dump for the serious
9  * signals such as SIGBUS, SIGPFE, ... 
10  * Also, for SIGHUP and SIGUSR1, we should re-read the 
11  * configuration file.  However, since this is a "general"  
12  * routine, we leave it to the individual daemons to
13  * tweek their signals after calling this routine.
14  *
15  */
16
17 /*
18    Copyright (C) 2000, 2001, 2002 Kern Sibbald and John Walker
19
20    This program is free software; you can redistribute it and/or
21    modify it under the terms of the GNU General Public License as
22    published by the Free Software Foundation; either version 2 of
23    the License, or (at your option) any later version.
24
25    This program is distributed in the hope that it will be useful,
26    but WITHOUT ANY WARRANTY; without even the implied warranty of
27    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
28    General Public License for more details.
29
30    You should have received a copy of the GNU General Public
31    License along with this program; if not, write to the Free
32    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
33    MA 02111-1307, USA.
34
35  */
36
37
38 #include "bacula.h"
39
40 #ifndef _NSIG
41 #define BA_NSIG 100
42 #else
43 #define BA_NSIG _NSIG
44 #endif
45
46 extern char my_name[];
47 extern char *exepath;
48 extern char *exename;
49
50 static const char *sig_names[BA_NSIG+1];
51
52 typedef void (SIG_HANDLER)(int sig);
53 static SIG_HANDLER *exit_handler;
54
55 /* main process id */
56 static pid_t main_pid = 0;
57
58 /* 
59  * Handle signals here
60  */
61 static void signal_handler(int sig)
62 {
63    static int already_dead = FALSE;
64    struct sigaction sigdefault;
65
66    if (already_dead) {
67       _exit(1);
68    }
69    already_dead = sig;
70    if (sig == SIGTERM) {
71       Emsg1(M_TERM, -1, "Shutting down Bacula service: %s ...\n", my_name);
72    } else {
73       Emsg2(M_FATAL, -1, "Interrupted by signal %d: %s\n", sig, sig_names[sig]);
74    }
75
76 #ifdef TRACEBACK
77    if (sig != SIGTERM) {
78       static char *argv[4];
79       static char pid_buf[20];
80       static char btpath[400];
81       pid_t pid;
82
83       fprintf(stderr, "Kaboom! Got signal %d. Attempting traceback.\n", sig);
84       if (strlen(exepath) + 12 > (int)sizeof(btpath)) {
85          strcpy(btpath, "btraceback");
86       } else {
87          strcpy(btpath, exepath);
88          strcat(btpath, "/btraceback");
89       }
90       strcat(exepath, "/");
91       strcat(exepath, exename);
92       if (chdir(working_directory) !=0) {  /* dump in working directory */
93          Dmsg1(000, "chdir failed. ERR=%s\n", strerror(errno));
94       }
95       unlink("./core");               /* get rid of any old core file */
96       sprintf(pid_buf, "%d", main_pid);
97       Dmsg1(300, "Working=%s\n", working_directory);
98       Dmsg1(300, "btpath=%s\n", btpath);
99       Dmsg1(300, "exepath=%s\n", exepath);
100       switch (pid = fork()) {
101       case -1:                        /* error */
102          fprintf(stderr, "Fork error: ERR=%s\n", strerror(errno));
103          break;
104       case 0:                         /* child */
105          argv[0] = btpath;            /* path to btraceback */
106          argv[1] = exepath;           /* path to exe */
107          argv[2] = pid_buf;
108          argv[3] = (char *)NULL;
109          if (execv(btpath, argv) != 0) {
110             printf("execv: %s failed: ERR=%s\n", btpath, strerror(errno));
111          }
112          exit(-1);
113       default:                        /* parent */
114          break;
115       }
116       sigdefault.sa_flags = 0;
117       sigdefault.sa_handler = SIG_DFL;
118       sigfillset(&sigdefault.sa_mask);
119
120       sigaction(sig,  &sigdefault, NULL);
121       if (pid > 0) {
122          Dmsg0(500, "Doing waitpid\n");
123          waitpid(pid, NULL, 0);       /* wait for child to produce dump */
124          fprintf(stderr, "Traceback complete, attempting cleanup ...\n");
125          Dmsg0(500, "Done waitpid\n");
126          exit_handler(1);             /* clean up if possible */
127          Dmsg0(500, "Done exit_handler\n");
128       } else {
129          Dmsg0(500, "Doing sleep\n");
130          sleep(30);
131       }
132       fprintf(stderr, "It looks like the traceback worked ...\n");
133    }
134 #endif
135
136    exit_handler(1);
137 }
138
139 /*
140  * Init stack dump by saving main process id --
141  *   needed by debugger to attach to this program.
142  */
143 void init_stack_dump(void)
144 {
145    main_pid = getpid();               /* save main thread's pid */
146 }
147
148 /*
149  * Initialize signals
150  */
151 void init_signals(void terminate(int sig))
152 {
153    struct sigaction sighandle;
154    struct sigaction sigignore;
155    struct sigaction sigdefault;
156 #ifdef _sys_nsig
157    int i;
158
159    exit_handler = terminate;
160    if (BA_NSIG < _sys_nsig)
161       Emsg2(M_ABORT, 0, "BA_NSIG too small (%d) should be (%d)\n", BA_NSIG, _sys_nsig);
162
163    for (i=0; i<_sys_nsig; i++)
164       sig_names[i] = _sys_siglist[i];
165 #else
166    exit_handler = terminate;
167    sig_names[0]         = "UNKNOWN SIGNAL";
168    sig_names[SIGHUP]    = "Hangup";
169    sig_names[SIGINT]    = "Interrupt";
170    sig_names[SIGQUIT]   = "Quit";
171    sig_names[SIGILL]    = "Illegal instruction";;
172    sig_names[SIGTRAP]   = "Trace/Breakpoint trap";
173    sig_names[SIGABRT]   = "Abort";
174 #ifdef SIGEMT
175    sig_names[SIGEMT]    = "EMT instruction (Emulation Trap)";
176 #endif
177 #ifdef SIGIOT
178    sig_names[SIGIOT]    = "IOT trap";
179 #endif
180    sig_names[SIGBUS]    = "BUS error";
181    sig_names[SIGFPE]    = "Floating-point exception";
182    sig_names[SIGKILL]   = "Kill, unblockable";
183    sig_names[SIGUSR1]   = "User-defined signal 1";
184    sig_names[SIGSEGV]   = "Segmentation violation";
185    sig_names[SIGUSR2]   = "User-defined signal 2";
186    sig_names[SIGPIPE]   = "Broken pipe";
187    sig_names[SIGALRM]   = "Alarm clock";
188    sig_names[SIGTERM]   = "Termination";
189 #ifdef SIGSTKFLT
190    sig_names[SIGSTKFLT] = "Stack fault";
191 #endif
192    sig_names[SIGCHLD]   = "Child status has changed";
193    sig_names[SIGCONT]   = "Continue";
194    sig_names[SIGSTOP]   = "Stop, unblockable";
195    sig_names[SIGTSTP]   = "Keyboard stop";
196    sig_names[SIGTTIN]   = "Background read from tty";
197    sig_names[SIGTTOU]   = "Background write to tty";
198    sig_names[SIGURG]    = "Urgent condition on socket";
199    sig_names[SIGXCPU]   = "CPU limit exceeded";
200    sig_names[SIGXFSZ]   = "File size limit exceeded";
201    sig_names[SIGVTALRM] = "Virtual alarm clock";
202    sig_names[SIGPROF]   = "Profiling alarm clock";
203    sig_names[SIGWINCH]  = "Window size change";
204    sig_names[SIGIO]     = "I/O now possible";
205 #ifdef SIGPWR
206    sig_names[SIGPWR]    = "Power failure restart";
207 #endif
208 #ifdef SIGWAITING
209    sig_names[SIGWAITING] = "No runnable lwp";
210 #endif
211 #ifdef SIGLWP
212    sig_name[SIGLWP]     = "SIGLWP special signal used by thread library";
213 #endif
214 #ifdef SIGFREEZE
215    sig_names[SIGFREEZE] = "Checkpoint Freeze";
216 #endif
217 #ifdef SIGTHAW
218    sig_names[SIGTHAW]   = "Checkpoint Thaw";
219 #endif
220 #ifdef SIGCANCEL
221    sig_names[SIGCANCEL] = "Thread Cancellation";
222 #endif
223 #ifdef SIGLOST
224    sig_names[SIGLOST]   = "Resource Lost (e.g. record-lock lost)";
225 #endif
226 #endif
227
228
229 /* Now setup signal handlers */
230    sighandle.sa_flags = 0;
231    sighandle.sa_handler = signal_handler;
232    sigfillset(&sighandle.sa_mask);
233    sigignore.sa_flags = 0;
234    sigignore.sa_handler = SIG_IGN;       
235    sigfillset(&sigignore.sa_mask);
236    sigdefault.sa_flags = 0;
237    sigdefault.sa_handler = SIG_DFL;
238    sigfillset(&sigdefault.sa_mask);
239
240
241    sigaction(SIGPIPE,   &sigignore, NULL);
242    sigaction(SIGCHLD,   &sigignore, NULL);
243    sigaction(SIGCONT,   &sigignore, NULL);
244    sigaction(SIGPROF,   &sigignore, NULL);
245    sigaction(SIGWINCH,  &sigignore, NULL);
246    sigaction(SIGIO,     &sighandle, NULL);     
247
248    sigaction(SIGINT,    &sigdefault, NULL);    
249    sigaction(SIGXCPU,   &sigdefault, NULL);
250    sigaction(SIGXFSZ,   &sigdefault, NULL);
251
252    sigaction(SIGHUP,    &sighandle, NULL);
253    sigaction(SIGQUIT,   &sighandle, NULL);   
254    sigaction(SIGILL,    &sighandle, NULL);    
255    sigaction(SIGTRAP,   &sighandle, NULL);   
256 /* sigaction(SIGABRT,   &sighandle, NULL);   */
257 #ifdef SIGEMT
258    sigaction(SIGEMT,    &sighandle, NULL);
259 #endif
260 #ifdef SIGIOT
261 /* sigaction(SIGIOT,    &sighandle, NULL);  used by debugger */
262 #endif
263    sigaction(SIGBUS,    &sighandle, NULL);    
264    sigaction(SIGFPE,    &sighandle, NULL);    
265    sigaction(SIGKILL,   &sighandle, NULL);   
266    sigaction(SIGUSR1,   &sighandle, NULL);   
267    sigaction(SIGSEGV,   &sighandle, NULL);   
268    sigaction(SIGUSR2,   &sighandle, NULL);
269    sigaction(SIGALRM,   &sighandle, NULL);   
270    sigaction(SIGTERM,   &sighandle, NULL);   
271 #ifdef SIGSTKFLT
272    sigaction(SIGSTKFLT, &sighandle, NULL); 
273 #endif
274    sigaction(SIGSTOP,   &sighandle, NULL);   
275    sigaction(SIGTSTP,   &sighandle, NULL);   
276    sigaction(SIGTTIN,   &sighandle, NULL);   
277    sigaction(SIGTTOU,   &sighandle, NULL);   
278    sigaction(SIGURG,    &sighandle, NULL);    
279    sigaction(SIGVTALRM, &sighandle, NULL); 
280 #ifdef SIGPWR
281    sigaction(SIGPWR,    &sighandle, NULL);    
282 #endif
283 #ifdef SIGWAITING
284    sigaction(SIGWAITING,&sighandle, NULL);
285 #endif
286 #ifdef SIGLWP
287    sigaction(SIGLWP,    &sighandle, NULL);
288 #endif
289 #ifdef SIGFREEZE
290    sigaction(SIGFREEZE, &sighandle, NULL);
291 #endif
292 #ifdef SIGTHAW
293    sigaction(SIGTHAW,   &sighandle, NULL);
294 #endif
295 #ifdef SIGCANCEL
296    sigaction(SIGCANCEL, &sighandle, NULL);
297 #endif
298 #ifdef SIGLOST
299    sigaction(SIGLOST,   &sighandle, NULL);
300 #endif
301 }