1 /* signals.c -- signal handling support for readline. */
3 /* Copyright (C) 1987, 1989, 1992 Free Software Foundation, Inc.
5 This file is part of the GNU Readline Library, a library for
6 reading lines of text with interactive input and history editing.
8 The GNU Readline Library is free software; you can redistribute it
9 and/or modify it under the terms of the GNU General Public License
10 as published by the Free Software Foundation; either version 2, or
11 (at your option) any later version.
13 The GNU Readline Library is distributed in the hope that it will be
14 useful, but WITHOUT ANY WARRANTY; without even the implied warranty
15 of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 The GNU General Public License is often shipped with GNU software, and
19 is generally kept in a file called COPYING or LICENSE. If you do not
20 have a copy of the license, write to the Free Software Foundation,
21 59 Temple Place, Suite 330, Boston, MA 02111 USA. */
22 #define READLINE_LIBRARY
24 #if defined (HAVE_CONFIG_H)
28 #include <stdio.h> /* Just for NULL. Yuck. */
29 #include <sys/types.h>
32 #if defined (HAVE_UNISTD_H)
34 #endif /* HAVE_UNISTD_H */
36 /* System-specific feature definitions and include files. */
39 #if defined (GWINSZ_IN_SYS_IOCTL)
40 # include <sys/ioctl.h>
41 #endif /* GWINSZ_IN_SYS_IOCTL */
43 #if defined (HANDLE_SIGNALS)
44 /* Some standard library routines. */
48 #include "rlprivate.h"
50 #if !defined (RETSIGTYPE)
51 # if defined (VOID_SIGHANDLER)
52 # define RETSIGTYPE void
54 # define RETSIGTYPE int
55 # endif /* !VOID_SIGHANDLER */
56 #endif /* !RETSIGTYPE */
58 #if defined (VOID_SIGHANDLER)
59 # define SIGHANDLER_RETURN return
61 # define SIGHANDLER_RETURN return (0)
64 /* This typedef is equivalent to the one for Function; it allows us
65 to say SigHandler *foo = signal (SIGKILL, SIG_IGN); */
66 typedef RETSIGTYPE
SigHandler ();
68 #if defined (HAVE_POSIX_SIGNALS)
69 typedef struct sigaction sighandler_cxt
;
70 # define rl_sigaction(s, nh, oh) sigaction(s, nh, oh)
72 typedef struct { SigHandler
*sa_handler
; int sa_mask
, sa_flags
; } sighandler_cxt
;
73 # define sigemptyset(m)
74 #endif /* !HAVE_POSIX_SIGNALS */
80 static SigHandler
*rl_set_sighandler
PARAMS((int, SigHandler
*, sighandler_cxt
*));
81 static void rl_maybe_set_sighandler
PARAMS((int, SigHandler
*, sighandler_cxt
*));
83 /* Exported variables for use by applications. */
85 /* If non-zero, readline will install its own signal handlers for
86 SIGINT, SIGTERM, SIGQUIT, SIGALRM, SIGTSTP, SIGTTIN, and SIGTTOU. */
87 int rl_catch_signals
= 1;
89 /* If non-zero, readline will install a signal handler for SIGWINCH. */
91 int rl_catch_sigwinch
= 1;
93 int rl_catch_sigwinch
= 0; /* for the readline state struct in readline.c */
96 static int signals_set_flag
;
97 static int sigwinch_set_flag
;
99 /* **************************************************************** */
101 /* Signal Handling */
103 /* **************************************************************** */
105 static sighandler_cxt old_int
, old_term
, old_alrm
, old_quit
;
106 #if defined (SIGTSTP)
107 static sighandler_cxt old_tstp
, old_ttou
, old_ttin
;
109 #if defined (SIGWINCH)
110 static sighandler_cxt old_winch
;
113 /* Readline signal handler functions. */
116 rl_signal_handler (sig
)
119 #if defined (HAVE_POSIX_SIGNALS)
121 #else /* !HAVE_POSIX_SIGNALS */
122 # if defined (HAVE_BSD_SIGNALS)
124 # else /* !HAVE_BSD_SIGNALS */
125 sighandler_cxt dummy_cxt
; /* needed for rl_set_sighandler call */
126 # endif /* !HAVE_BSD_SIGNALS */
127 #endif /* !HAVE_POSIX_SIGNALS */
129 RL_SETSTATE(RL_STATE_SIGHANDLER
);
131 #if !defined (HAVE_BSD_SIGNALS) && !defined (HAVE_POSIX_SIGNALS)
132 /* Since the signal will not be blocked while we are in the signal
133 handler, ignore it until rl_clear_signals resets the catcher. */
134 if (sig
== SIGINT
|| sig
== SIGALRM
)
135 rl_set_sighandler (sig
, SIG_IGN
, &dummy_cxt
);
136 #endif /* !HAVE_BSD_SIGNALS && !HAVE_POSIX_SIGNALS */
141 rl_free_line_state ();
144 #if defined (SIGTSTP)
152 rl_cleanup_after_signal ();
154 #if defined (HAVE_POSIX_SIGNALS)
155 sigprocmask (SIG_BLOCK
, (sigset_t
*)NULL
, &set
);
156 sigdelset (&set
, sig
);
157 #else /* !HAVE_POSIX_SIGNALS */
158 # if defined (HAVE_BSD_SIGNALS)
159 omask
= sigblock (0);
160 # endif /* HAVE_BSD_SIGNALS */
161 #endif /* !HAVE_POSIX_SIGNALS */
163 #if defined (__EMX__)
164 signal (sig
, SIG_ACK
);
167 kill (getpid (), sig
);
169 /* Let the signal that we just sent through. */
170 #if defined (HAVE_POSIX_SIGNALS)
171 sigprocmask (SIG_SETMASK
, &set
, (sigset_t
*)NULL
);
172 #else /* !HAVE_POSIX_SIGNALS */
173 # if defined (HAVE_BSD_SIGNALS)
174 sigsetmask (omask
& ~(sigmask (sig
)));
175 # endif /* HAVE_BSD_SIGNALS */
176 #endif /* !HAVE_POSIX_SIGNALS */
178 rl_reset_after_signal ();
181 RL_UNSETSTATE(RL_STATE_SIGHANDLER
);
185 #if defined (SIGWINCH)
187 rl_sigwinch_handler (sig
)
192 #if defined (MUST_REINSTALL_SIGHANDLERS)
193 sighandler_cxt dummy_winch
;
195 /* We don't want to change old_winch -- it holds the state of SIGWINCH
196 disposition set by the calling application. We need this state
197 because we call the application's SIGWINCH handler after updating
198 our own idea of the screen size. */
199 rl_set_sighandler (SIGWINCH
, rl_sigwinch_handler
, &dummy_winch
);
202 RL_SETSTATE(RL_STATE_SIGHANDLER
);
203 rl_resize_terminal ();
205 /* If another sigwinch handler has been installed, call it. */
206 oh
= (SigHandler
*)old_winch
.sa_handler
;
207 if (oh
&& oh
!= (SigHandler
*)SIG_IGN
&& oh
!= (SigHandler
*)SIG_DFL
)
210 RL_UNSETSTATE(RL_STATE_SIGHANDLER
);
213 #endif /* SIGWINCH */
215 /* Functions to manage signal handling. */
217 #if !defined (HAVE_POSIX_SIGNALS)
219 rl_sigaction (sig
, nh
, oh
)
221 sighandler_cxt
*nh
, *oh
;
223 oh
->sa_handler
= signal (sig
, nh
->sa_handler
);
226 #endif /* !HAVE_POSIX_SIGNALS */
228 /* Set up a readline-specific signal handler, saving the old signal
229 information in OHANDLER. Return the old signal handler, like
232 rl_set_sighandler (sig
, handler
, ohandler
)
235 sighandler_cxt
*ohandler
;
237 sighandler_cxt old_handler
;
238 #if defined (HAVE_POSIX_SIGNALS)
239 struct sigaction act
;
241 act
.sa_handler
= handler
;
242 act
.sa_flags
= (sig
== SIGWINCH
) ? SA_RESTART
: 0;
243 sigemptyset (&act
.sa_mask
);
244 sigemptyset (&ohandler
->sa_mask
);
245 sigaction (sig
, &act
, &old_handler
);
247 old_handler
.sa_handler
= (SigHandler
*)signal (sig
, handler
);
248 #endif /* !HAVE_POSIX_SIGNALS */
250 /* XXX -- assume we have memcpy */
251 /* If rl_set_signals is called twice in a row, don't set the old handler to
252 rl_signal_handler, because that would cause infinite recursion. */
253 if (handler
!= rl_signal_handler
|| old_handler
.sa_handler
!= rl_signal_handler
)
254 memcpy (ohandler
, &old_handler
, sizeof (sighandler_cxt
));
256 return (ohandler
->sa_handler
);
260 rl_maybe_set_sighandler (sig
, handler
, ohandler
)
263 sighandler_cxt
*ohandler
;
265 sighandler_cxt dummy
;
268 sigemptyset (&dummy
.sa_mask
);
269 oh
= rl_set_sighandler (sig
, handler
, ohandler
);
270 if (oh
== (SigHandler
*)SIG_IGN
)
271 rl_sigaction (sig
, ohandler
, &dummy
);
277 sighandler_cxt dummy
;
280 if (rl_catch_signals
&& signals_set_flag
== 0)
282 rl_maybe_set_sighandler (SIGINT
, rl_signal_handler
, &old_int
);
283 rl_maybe_set_sighandler (SIGTERM
, rl_signal_handler
, &old_term
);
284 rl_maybe_set_sighandler (SIGQUIT
, rl_signal_handler
, &old_quit
);
286 oh
= rl_set_sighandler (SIGALRM
, rl_signal_handler
, &old_alrm
);
287 if (oh
== (SigHandler
*)SIG_IGN
)
288 rl_sigaction (SIGALRM
, &old_alrm
, &dummy
);
289 #if defined (HAVE_POSIX_SIGNALS) && defined (SA_RESTART)
290 /* If the application using readline has already installed a signal
291 handler with SA_RESTART, SIGALRM will cause reads to be restarted
292 automatically, so readline should just get out of the way. Since
293 we tested for SIG_IGN above, we can just test for SIG_DFL here. */
294 if (oh
!= (SigHandler
*)SIG_DFL
&& (old_alrm
.sa_flags
& SA_RESTART
))
295 rl_sigaction (SIGALRM
, &old_alrm
, &dummy
);
296 #endif /* HAVE_POSIX_SIGNALS */
298 #if defined (SIGTSTP)
299 rl_maybe_set_sighandler (SIGTSTP
, rl_signal_handler
, &old_tstp
);
302 #if defined (SIGTTOU)
303 rl_maybe_set_sighandler (SIGTTOU
, rl_signal_handler
, &old_ttou
);
306 #if defined (SIGTTIN)
307 rl_maybe_set_sighandler (SIGTTIN
, rl_signal_handler
, &old_ttin
);
310 signals_set_flag
= 1;
313 #if defined (SIGWINCH)
314 if (rl_catch_sigwinch
&& sigwinch_set_flag
== 0)
316 rl_maybe_set_sighandler (SIGWINCH
, rl_sigwinch_handler
, &old_winch
);
317 sigwinch_set_flag
= 1;
319 #endif /* SIGWINCH */
327 sighandler_cxt dummy
;
329 if (rl_catch_signals
&& signals_set_flag
== 1)
331 sigemptyset (&dummy
.sa_mask
);
333 rl_sigaction (SIGINT
, &old_int
, &dummy
);
334 rl_sigaction (SIGTERM
, &old_term
, &dummy
);
335 rl_sigaction (SIGQUIT
, &old_quit
, &dummy
);
336 rl_sigaction (SIGALRM
, &old_alrm
, &dummy
);
338 #if defined (SIGTSTP)
339 rl_sigaction (SIGTSTP
, &old_tstp
, &dummy
);
342 #if defined (SIGTTOU)
343 rl_sigaction (SIGTTOU
, &old_ttou
, &dummy
);
346 #if defined (SIGTTIN)
347 rl_sigaction (SIGTTIN
, &old_ttin
, &dummy
);
350 signals_set_flag
= 0;
353 #if defined (SIGWINCH)
354 if (rl_catch_sigwinch
&& sigwinch_set_flag
== 1)
356 sigemptyset (&dummy
.sa_mask
);
357 rl_sigaction (SIGWINCH
, &old_winch
, &dummy
);
358 sigwinch_set_flag
= 0;
365 /* Clean up the terminal and readline state after catching a signal, before
366 resending it to the calling application. */
368 rl_cleanup_after_signal ()
370 _rl_clean_up_for_exit ();
371 (*rl_deprep_term_function
) ();
373 rl_clear_pending_input ();
376 /* Reset the terminal and readline state after a signal handler returns. */
378 rl_reset_after_signal ()
380 (*rl_prep_term_function
) (_rl_meta_flag
);
384 /* Free up the readline variable line state for the current line (undo list,
385 any partial history entry, any keyboard macros in progress, and any
386 numeric arguments in process) after catching a signal, before calling
387 rl_cleanup_after_signal(). */
389 rl_free_line_state ()
391 register HIST_ENTRY
*entry
;
393 rl_free_undo_list ();
395 entry
= current_history ();
397 entry
->data
= (char *)NULL
;
399 _rl_kill_kbd_macro ();
401 _rl_init_argument ();
404 #endif /* HANDLE_SIGNALS */