File: fatalsig.cc

package info (click to toggle)
cssc 0.14alpha.pl0-2
  • links: PTS
  • area: main
  • in suites: woody
  • size: 2,796 kB
  • ctags: 1,404
  • sloc: cpp: 12,927; sh: 3,617; ansic: 3,000; perl: 342; makefile: 334; awk: 11
file content (147 lines) | stat: -rw-r--r-- 3,980 bytes parent folder | download | duplicates (3)
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
137
138
139
140
141
142
143
144
145
146
147
/*
 * fatalsig.cc: Part of GNU CSSC.
 * 
 * 
 *    Copyright (C) 2000,2001 Free Software Foundation, Inc. 
 * 
 *    This program is free software; you can redistribute it and/or modify
 *    it under the terms of the GNU General Public License as published by
 *    the Free Software Foundation; either version 2 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 General Public License for more details.
 * 
 *    You should have received a copy of the GNU General Public License
 *    along with this program; if not, write to the Free Software
 *    Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA.
 * 
 *
 *
 * Handle fatal signals...
 *
 */

#include "cssc.h"
#include "version.h"
#include "quit.h"

#include <signal.h>             /* TODO: consider using sigaction(). */

static const char rcs_id[] = "CSSC $Id: fatalsig.cc,v 1.3 2001/09/29 19:39:41 james_youngman Exp $";


/* The expansion of RETSIGTYPE is automatically decided by the configure 
 * script; its value is define in config.h.
 */
typedef RETSIGTYPE (*sighandler)(int);


/* fatal_signals_to_trap contains a list of signals whose 
 * receipt is normally fatal and for which we wish to perform 
 * cleanup.
 */
static const int fatal_signals_to_trap[] = 
{ 
  SIGHUP, SIGINT, SIGQUIT, SIGPIPE
};
#define N_TRAPPED_SIGS (sizeof(fatal_signals_to_trap) /   \
                        sizeof(fatal_signals_to_trap[0]))

/* In the array set_sig_handlers() we keep the initial disposition 
 * of the signals whose dispositions we alter, in order to
 * restore them inside the signal handler.
 */
static sighandler initial_dispositions[N_TRAPPED_SIGS];
static int already_called = 0;


/* set_sig_handlers
 *
 * This function sets up signal handers for various fatal signals and
 * remembers the original settings.
 */
static void set_sig_handlers( sighandler pfn )
{
  unsigned int i;

  for (i=0u; i<N_TRAPPED_SIGS; ++i)
    {
      int sig = fatal_signals_to_trap[i];
      sighandler orighand = signal(sig, pfn);
      
      if (SIG_ERR == orighand)
        {
          /* This is a nonfatal error. */
          errormsg_with_errno("Failed to set signal handler for signal %d",
                              sig);
          initial_dispositions[i] = SIG_DFL;
        }
      else
        {
          initial_dispositions[i] = orighand;
        }
    }
}

/* reset_sig_handlers
 *
 * Resets the original signal handlers for the fatal signals
 * as saved in the array initial_dispositions.
 */
static void reset_sig_handlers( void )
{
  unsigned int i;

  for (i=0u; i; ++i)
    {
      int sig = fatal_signals_to_trap[i];
      
      if (SIG_ERR == signal(sig, initial_dispositions[i]))
        {
          /* This is a nonfatal error. */
          errormsg_with_errno("Failed to reset signal handler for signal %d",
                              sig);
        }
    }
}


/* handle_fatal_sig
 *
 * This is the signal handler function for fatal signals. 
 * It does some cleanup and exits the program. 
 */ 
static RETSIGTYPE
handle_fatal_sig(int /* whatsig */ )
{
  /* Reset the signal handler to the original setting. */
  /* Also reset all the others too.  This is in order to 
   * handle a "stuck" program in a useful way, and helps to 
   * ensure that the cleanup operation is itself interruptible 
   */
  reset_sig_handlers();

  /* The cleanups will delete any existing lockfile. 
   * However, at the moment we do not delete an incomplete 
   * g-file.
   */
  cleanup::run_cleanups();

  /* Here, we exit with exit() rather than _exit().   Experience
   * may show that that is a bad idea.
   */
  exit(1);
}


void quit_on_fatal_signals (void) 
{
  ASSERT(already_called == 0);
  
  set_sig_handlers(handle_fatal_sig);
  
  already_called = 1;
}