| 1 | /* Extended support for using signal values.
|
|---|
| 2 | Written by Fred Fish. [email protected]
|
|---|
| 3 | This file is in the public domain. */
|
|---|
| 4 |
|
|---|
| 5 | #include "ansidecl.h"
|
|---|
| 6 | #include "libiberty.h"
|
|---|
| 7 |
|
|---|
| 8 | #include "config.h"
|
|---|
| 9 |
|
|---|
| 10 | /* We need to declare sys_siglist, because even if the system provides
|
|---|
| 11 | it we can't assume that it is declared in <signal.h> (for example,
|
|---|
| 12 | SunOS provides sys_siglist, but it does not declare it in any
|
|---|
| 13 | header file). fHowever, we can't declare sys_siglist portably,
|
|---|
| 14 | because on some systems it is declared with const and on some
|
|---|
| 15 | systems it is declared without const. If we were using autoconf,
|
|---|
| 16 | we could work out the right declaration. Until, then we just
|
|---|
| 17 | ignore any declaration in the system header files, and always
|
|---|
| 18 | declare it ourselves. With luck, this will always work. */
|
|---|
| 19 | #define sys_siglist no_such_symbol
|
|---|
| 20 | #define sys_nsig sys_nsig__no_such_symbol
|
|---|
| 21 |
|
|---|
| 22 | #include <stdio.h>
|
|---|
| 23 | #include <signal.h>
|
|---|
| 24 |
|
|---|
| 25 | /* Routines imported from standard C runtime libraries. */
|
|---|
| 26 |
|
|---|
| 27 | #ifdef HAVE_STDLIB_H
|
|---|
| 28 | #include <stdlib.h>
|
|---|
| 29 | #else
|
|---|
| 30 | extern PTR malloc ();
|
|---|
| 31 | #endif
|
|---|
| 32 |
|
|---|
| 33 | #ifdef HAVE_STRING_H
|
|---|
| 34 | #include <string.h>
|
|---|
| 35 | #else
|
|---|
| 36 | extern PTR memset ();
|
|---|
| 37 | #endif
|
|---|
| 38 |
|
|---|
| 39 | /* Undefine the macro we used to hide the definition of sys_siglist
|
|---|
| 40 | found in the system header files. */
|
|---|
| 41 | #undef sys_siglist
|
|---|
| 42 | #undef sys_nsig
|
|---|
| 43 |
|
|---|
| 44 | #ifndef NULL
|
|---|
| 45 | # ifdef __STDC__
|
|---|
| 46 | # define NULL (void *) 0
|
|---|
| 47 | # else
|
|---|
| 48 | # define NULL 0
|
|---|
| 49 | # endif
|
|---|
| 50 | #endif
|
|---|
| 51 |
|
|---|
| 52 | #ifndef MAX
|
|---|
| 53 | # define MAX(a,b) ((a) > (b) ? (a) : (b))
|
|---|
| 54 | #endif
|
|---|
| 55 |
|
|---|
| 56 | static void init_signal_tables PARAMS ((void));
|
|---|
| 57 |
|
|---|
| 58 | /* Translation table for signal values.
|
|---|
| 59 |
|
|---|
| 60 | Note that this table is generally only accessed when it is used at runtime
|
|---|
| 61 | to initialize signal name and message tables that are indexed by signal
|
|---|
| 62 | value.
|
|---|
| 63 |
|
|---|
| 64 | Not all of these signals will exist on all systems. This table is the only
|
|---|
| 65 | thing that should have to be updated as new signal numbers are introduced.
|
|---|
| 66 | It's sort of ugly, but at least its portable. */
|
|---|
| 67 |
|
|---|
| 68 | struct signal_info
|
|---|
| 69 | {
|
|---|
| 70 | const int value; /* The numeric value from <signal.h> */
|
|---|
| 71 | const char *const name; /* The equivalent symbolic value */
|
|---|
| 72 | #ifndef HAVE_SYS_SIGLIST
|
|---|
| 73 | const char *const msg; /* Short message about this value */
|
|---|
| 74 | #endif
|
|---|
| 75 | };
|
|---|
| 76 |
|
|---|
| 77 | #ifndef HAVE_SYS_SIGLIST
|
|---|
| 78 | # define ENTRY(value, name, msg) {value, name, msg}
|
|---|
| 79 | #else
|
|---|
| 80 | # define ENTRY(value, name, msg) {value, name}
|
|---|
| 81 | #endif
|
|---|
| 82 |
|
|---|
| 83 | static const struct signal_info signal_table[] =
|
|---|
| 84 | {
|
|---|
| 85 | #if defined (SIGHUP)
|
|---|
| 86 | ENTRY(SIGHUP, "SIGHUP", "Hangup"),
|
|---|
| 87 | #endif
|
|---|
| 88 | #if defined (SIGINT)
|
|---|
| 89 | ENTRY(SIGINT, "SIGINT", "Interrupt"),
|
|---|
| 90 | #endif
|
|---|
| 91 | #if defined (SIGQUIT)
|
|---|
| 92 | ENTRY(SIGQUIT, "SIGQUIT", "Quit"),
|
|---|
| 93 | #endif
|
|---|
| 94 | #if defined (SIGILL)
|
|---|
| 95 | ENTRY(SIGILL, "SIGILL", "Illegal instruction"),
|
|---|
| 96 | #endif
|
|---|
| 97 | #if defined (SIGTRAP)
|
|---|
| 98 | ENTRY(SIGTRAP, "SIGTRAP", "Trace/breakpoint trap"),
|
|---|
| 99 | #endif
|
|---|
| 100 | /* Put SIGIOT before SIGABRT, so that if SIGIOT==SIGABRT then SIGABRT
|
|---|
| 101 | overrides SIGIOT. SIGABRT is in ANSI and POSIX.1, and SIGIOT isn't. */
|
|---|
| 102 | #if defined (SIGIOT)
|
|---|
| 103 | ENTRY(SIGIOT, "SIGIOT", "IOT trap"),
|
|---|
| 104 | #endif
|
|---|
| 105 | #if defined (SIGABRT)
|
|---|
| 106 | ENTRY(SIGABRT, "SIGABRT", "Aborted"),
|
|---|
| 107 | #endif
|
|---|
| 108 | #if defined (SIGEMT)
|
|---|
| 109 | ENTRY(SIGEMT, "SIGEMT", "Emulation trap"),
|
|---|
| 110 | #endif
|
|---|
| 111 | #if defined (SIGFPE)
|
|---|
| 112 | ENTRY(SIGFPE, "SIGFPE", "Arithmetic exception"),
|
|---|
| 113 | #endif
|
|---|
| 114 | #if defined (SIGKILL)
|
|---|
| 115 | ENTRY(SIGKILL, "SIGKILL", "Killed"),
|
|---|
| 116 | #endif
|
|---|
| 117 | #if defined (SIGBUS)
|
|---|
| 118 | ENTRY(SIGBUS, "SIGBUS", "Bus error"),
|
|---|
| 119 | #endif
|
|---|
| 120 | #if defined (SIGSEGV)
|
|---|
| 121 | ENTRY(SIGSEGV, "SIGSEGV", "Segmentation fault"),
|
|---|
| 122 | #endif
|
|---|
| 123 | #if defined (SIGSYS)
|
|---|
| 124 | ENTRY(SIGSYS, "SIGSYS", "Bad system call"),
|
|---|
| 125 | #endif
|
|---|
| 126 | #if defined (SIGPIPE)
|
|---|
| 127 | ENTRY(SIGPIPE, "SIGPIPE", "Broken pipe"),
|
|---|
| 128 | #endif
|
|---|
| 129 | #if defined (SIGALRM)
|
|---|
| 130 | ENTRY(SIGALRM, "SIGALRM", "Alarm clock"),
|
|---|
| 131 | #endif
|
|---|
| 132 | #if defined (SIGTERM)
|
|---|
| 133 | ENTRY(SIGTERM, "SIGTERM", "Terminated"),
|
|---|
| 134 | #endif
|
|---|
| 135 | #if defined (SIGUSR1)
|
|---|
| 136 | ENTRY(SIGUSR1, "SIGUSR1", "User defined signal 1"),
|
|---|
| 137 | #endif
|
|---|
| 138 | #if defined (SIGUSR2)
|
|---|
| 139 | ENTRY(SIGUSR2, "SIGUSR2", "User defined signal 2"),
|
|---|
| 140 | #endif
|
|---|
| 141 | /* Put SIGCLD before SIGCHLD, so that if SIGCLD==SIGCHLD then SIGCHLD
|
|---|
| 142 | overrides SIGCLD. SIGCHLD is in POXIX.1 */
|
|---|
| 143 | #if defined (SIGCLD)
|
|---|
| 144 | ENTRY(SIGCLD, "SIGCLD", "Child status changed"),
|
|---|
| 145 | #endif
|
|---|
| 146 | #if defined (SIGCHLD)
|
|---|
| 147 | ENTRY(SIGCHLD, "SIGCHLD", "Child status changed"),
|
|---|
| 148 | #endif
|
|---|
| 149 | #if defined (SIGPWR)
|
|---|
| 150 | ENTRY(SIGPWR, "SIGPWR", "Power fail/restart"),
|
|---|
| 151 | #endif
|
|---|
| 152 | #if defined (SIGWINCH)
|
|---|
| 153 | ENTRY(SIGWINCH, "SIGWINCH", "Window size changed"),
|
|---|
| 154 | #endif
|
|---|
| 155 | #if defined (SIGURG)
|
|---|
| 156 | ENTRY(SIGURG, "SIGURG", "Urgent I/O condition"),
|
|---|
| 157 | #endif
|
|---|
| 158 | #if defined (SIGIO)
|
|---|
| 159 | /* "I/O pending" has also been suggested, but is misleading since the
|
|---|
| 160 | signal only happens when the process has asked for it, not everytime
|
|---|
| 161 | I/O is pending. */
|
|---|
| 162 | ENTRY(SIGIO, "SIGIO", "I/O possible"),
|
|---|
| 163 | #endif
|
|---|
| 164 | #if defined (SIGPOLL)
|
|---|
| 165 | ENTRY(SIGPOLL, "SIGPOLL", "Pollable event occurred"),
|
|---|
| 166 | #endif
|
|---|
| 167 | #if defined (SIGSTOP)
|
|---|
| 168 | ENTRY(SIGSTOP, "SIGSTOP", "Stopped (signal)"),
|
|---|
| 169 | #endif
|
|---|
| 170 | #if defined (SIGTSTP)
|
|---|
| 171 | ENTRY(SIGTSTP, "SIGTSTP", "Stopped (user)"),
|
|---|
| 172 | #endif
|
|---|
| 173 | #if defined (SIGCONT)
|
|---|
| 174 | ENTRY(SIGCONT, "SIGCONT", "Continued"),
|
|---|
| 175 | #endif
|
|---|
| 176 | #if defined (SIGTTIN)
|
|---|
| 177 | ENTRY(SIGTTIN, "SIGTTIN", "Stopped (tty input)"),
|
|---|
| 178 | #endif
|
|---|
| 179 | #if defined (SIGTTOU)
|
|---|
| 180 | ENTRY(SIGTTOU, "SIGTTOU", "Stopped (tty output)"),
|
|---|
| 181 | #endif
|
|---|
| 182 | #if defined (SIGVTALRM)
|
|---|
| 183 | ENTRY(SIGVTALRM, "SIGVTALRM", "Virtual timer expired"),
|
|---|
| 184 | #endif
|
|---|
| 185 | #if defined (SIGPROF)
|
|---|
| 186 | ENTRY(SIGPROF, "SIGPROF", "Profiling timer expired"),
|
|---|
| 187 | #endif
|
|---|
| 188 | #if defined (SIGXCPU)
|
|---|
| 189 | ENTRY(SIGXCPU, "SIGXCPU", "CPU time limit exceeded"),
|
|---|
| 190 | #endif
|
|---|
| 191 | #if defined (SIGXFSZ)
|
|---|
| 192 | ENTRY(SIGXFSZ, "SIGXFSZ", "File size limit exceeded"),
|
|---|
| 193 | #endif
|
|---|
| 194 | #if defined (SIGWIND)
|
|---|
| 195 | ENTRY(SIGWIND, "SIGWIND", "SIGWIND"),
|
|---|
| 196 | #endif
|
|---|
| 197 | #if defined (SIGPHONE)
|
|---|
| 198 | ENTRY(SIGPHONE, "SIGPHONE", "SIGPHONE"),
|
|---|
| 199 | #endif
|
|---|
| 200 | #if defined (SIGLOST)
|
|---|
| 201 | ENTRY(SIGLOST, "SIGLOST", "Resource lost"),
|
|---|
| 202 | #endif
|
|---|
| 203 | #if defined (SIGWAITING)
|
|---|
| 204 | ENTRY(SIGWAITING, "SIGWAITING", "Process's LWPs are blocked"),
|
|---|
| 205 | #endif
|
|---|
| 206 | #if defined (SIGLWP)
|
|---|
| 207 | ENTRY(SIGLWP, "SIGLWP", "Signal LWP"),
|
|---|
| 208 | #endif
|
|---|
| 209 | #if defined (SIGDANGER)
|
|---|
| 210 | ENTRY(SIGDANGER, "SIGDANGER", "Swap space dangerously low"),
|
|---|
| 211 | #endif
|
|---|
| 212 | #if defined (SIGGRANT)
|
|---|
| 213 | ENTRY(SIGGRANT, "SIGGRANT", "Monitor mode granted"),
|
|---|
| 214 | #endif
|
|---|
| 215 | #if defined (SIGRETRACT)
|
|---|
| 216 | ENTRY(SIGRETRACT, "SIGRETRACT", "Need to relinguish monitor mode"),
|
|---|
| 217 | #endif
|
|---|
| 218 | #if defined (SIGMSG)
|
|---|
| 219 | ENTRY(SIGMSG, "SIGMSG", "Monitor mode data available"),
|
|---|
| 220 | #endif
|
|---|
| 221 | #if defined (SIGSOUND)
|
|---|
| 222 | ENTRY(SIGSOUND, "SIGSOUND", "Sound completed"),
|
|---|
| 223 | #endif
|
|---|
| 224 | #if defined (SIGSAK)
|
|---|
| 225 | ENTRY(SIGSAK, "SIGSAK", "Secure attention"),
|
|---|
| 226 | #endif
|
|---|
| 227 | ENTRY(0, NULL, NULL)
|
|---|
| 228 | };
|
|---|
| 229 |
|
|---|
| 230 | /* Translation table allocated and initialized at runtime. Indexed by the
|
|---|
| 231 | signal value to find the equivalent symbolic value. */
|
|---|
| 232 |
|
|---|
| 233 | static const char **signal_names;
|
|---|
| 234 | static int num_signal_names = 0;
|
|---|
| 235 |
|
|---|
| 236 | /* Translation table allocated and initialized at runtime, if it does not
|
|---|
| 237 | already exist in the host environment. Indexed by the signal value to find
|
|---|
| 238 | the descriptive string.
|
|---|
| 239 |
|
|---|
| 240 | We don't export it for use in other modules because even though it has the
|
|---|
| 241 | same name, it differs from other implementations in that it is dynamically
|
|---|
| 242 | initialized rather than statically initialized. */
|
|---|
| 243 |
|
|---|
| 244 | #ifndef HAVE_SYS_SIGLIST
|
|---|
| 245 |
|
|---|
| 246 | static int sys_nsig;
|
|---|
| 247 | static const char **sys_siglist;
|
|---|
| 248 |
|
|---|
| 249 | #else
|
|---|
| 250 |
|
|---|
| 251 | #ifdef NSIG
|
|---|
| 252 | static int sys_nsig = NSIG;
|
|---|
| 253 | #else
|
|---|
| 254 | #ifdef _NSIG
|
|---|
| 255 | static int sys_nsig = _NSIG;
|
|---|
| 256 | #endif
|
|---|
| 257 | #endif
|
|---|
| 258 | extern const char * const sys_siglist[];
|
|---|
| 259 |
|
|---|
| 260 | #endif
|
|---|
| 261 |
|
|---|
| 262 |
|
|---|
| 263 | /*
|
|---|
| 264 |
|
|---|
| 265 | NAME
|
|---|
| 266 |
|
|---|
| 267 | init_signal_tables -- initialize the name and message tables
|
|---|
| 268 |
|
|---|
| 269 | SYNOPSIS
|
|---|
| 270 |
|
|---|
| 271 | static void init_signal_tables ();
|
|---|
| 272 |
|
|---|
| 273 | DESCRIPTION
|
|---|
| 274 |
|
|---|
| 275 | Using the signal_table, which is initialized at compile time, generate
|
|---|
| 276 | the signal_names and the sys_siglist (if needed) tables, which are
|
|---|
| 277 | indexed at runtime by a specific signal value.
|
|---|
| 278 |
|
|---|
| 279 | BUGS
|
|---|
| 280 |
|
|---|
| 281 | The initialization of the tables may fail under low memory conditions,
|
|---|
| 282 | in which case we don't do anything particularly useful, but we don't
|
|---|
| 283 | bomb either. Who knows, it might succeed at a later point if we free
|
|---|
| 284 | some memory in the meantime. In any case, the other routines know
|
|---|
| 285 | how to deal with lack of a table after trying to initialize it. This
|
|---|
| 286 | may or may not be considered to be a bug, that we don't specifically
|
|---|
| 287 | warn about this particular failure mode.
|
|---|
| 288 |
|
|---|
| 289 | */
|
|---|
| 290 |
|
|---|
| 291 | static void
|
|---|
| 292 | init_signal_tables ()
|
|---|
|
|---|