blob: dd925c7efd12b16045644b4e324bedb97798496b [file] [log] [blame]
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301/****************************************************************************
micky3879b9f5e72025-07-08 18:04:53 -04002 * Copyright 2020-2021,2022 Thomas E. Dickey *
3 * Copyright 1998-2014,2017 Free Software Foundation, Inc. *
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304 * *
5 * Permission is hereby granted, free of charge, to any person obtaining a *
6 * copy of this software and associated documentation files (the *
7 * "Software"), to deal in the Software without restriction, including *
8 * without limitation the rights to use, copy, modify, merge, publish, *
9 * distribute, distribute with modifications, sublicense, and/or sell *
10 * copies of the Software, and to permit persons to whom the Software is *
11 * furnished to do so, subject to the following conditions: *
12 * *
13 * The above copyright notice and this permission notice shall be included *
14 * in all copies or substantial portions of the Software. *
15 * *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS *
17 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF *
18 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. *
19 * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, *
20 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR *
21 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR *
22 * THE USE OR OTHER DEALINGS IN THE SOFTWARE. *
23 * *
24 * Except as contained in this notice, the name(s) of the above copyright *
25 * holders shall not be used in advertising or otherwise to promote the *
26 * sale, use or other dealings in this Software without prior written *
27 * authorization. *
28 ****************************************************************************/
29
30/****************************************************************************
31 * Author: Zeyd M. Ben-Halim <zmbenhal@netcom.com> 1992,1995 *
32 * and: Eric S. Raymond <esr@snark.thyrsus.com> *
33 * and: Thomas E. Dickey 1995-on *
34 ****************************************************************************/
35
36/*
37** lib_tstp.c
38**
39** The routine _nc_signal_handler().
40**
41*/
42#include <curses.priv.h>
43
44#include <SigAction.h>
45
micky3879b9f5e72025-07-08 18:04:53 -040046MODULE_ID("$Id: lib_tstp.c,v 1.54 2022/12/24 22:22:10 tom Exp $")
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053047
48#if defined(SIGTSTP) && (HAVE_SIGACTION || HAVE_SIGVEC)
49#define USE_SIGTSTP 1
50#else
51#define USE_SIGTSTP 0
52#endif
53
54#ifdef TRACE
55static const char *
56signal_name(int sig)
57{
58 switch (sig) {
Steve Kondikae271bc2015-11-15 02:50:53 +010059#ifdef SIGALRM
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053060 case SIGALRM:
61 return "SIGALRM";
Steve Kondikae271bc2015-11-15 02:50:53 +010062#endif
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053063#ifdef SIGCONT
64 case SIGCONT:
65 return "SIGCONT";
66#endif
67 case SIGINT:
68 return "SIGINT";
Steve Kondikae271bc2015-11-15 02:50:53 +010069#ifdef SIGQUIT
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053070 case SIGQUIT:
71 return "SIGQUIT";
Steve Kondikae271bc2015-11-15 02:50:53 +010072#endif
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053073 case SIGTERM:
74 return "SIGTERM";
75#ifdef SIGTSTP
76 case SIGTSTP:
77 return "SIGTSTP";
78#endif
79#ifdef SIGTTOU
80 case SIGTTOU:
81 return "SIGTTOU";
82#endif
83#ifdef SIGWINCH
84 case SIGWINCH:
85 return "SIGWINCH";
86#endif
87 default:
88 return "unknown signal";
89 }
90}
91#endif
92
93/*
94 * Note: This code is fragile! Its problem is that different OSs
95 * handle restart of system calls interrupted by signals differently.
96 * The ncurses code needs signal-call restart to happen -- otherwise,
97 * interrupted wgetch() calls will return FAIL, probably making the
98 * application think the input stream has ended and it should
99 * terminate. In particular, you know you have this problem if, when
100 * you suspend an ncurses-using lynx with ^Z and resume, it dies
101 * immediately.
102 *
103 * Default behavior of POSIX sigaction(2) is not to restart
104 * interrupted system calls, but Linux's sigaction does it anyway (at
105 * least, on and after the 1.1.47 I (esr) use). Thus this code works
106 * OK under Linux. The 4.4BSD sigaction(2) supports a (non-portable)
107 * SA_RESTART flag that forces the right behavior. Thus, this code
108 * should work OK under BSD/OS, NetBSD, and FreeBSD (let us know if it
109 * does not).
110 *
111 * Stock System Vs (and anything else using a strict-POSIX
112 * sigaction(2) without SA_RESTART) may have a problem. Possible
113 * solutions:
114 *
115 * sigvec restarts by default (SV_INTERRUPT flag to not restart)
116 * signal restarts by default in SVr4 (assuming you link with -lucb)
117 * and BSD, but not SVr3.
118 * sigset restarts, but is only available under SVr4/Solaris.
119 *
120 * The signal(3) call is mandated by the ANSI standard, and its
121 * interaction with sigaction(2) is described in the POSIX standard
122 * (3.3.4.2, page 72,line 934). According to section 8.1, page 191,
123 * however, signal(3) itself is not required by POSIX.1. And POSIX is
124 * silent on whether it is required to restart signals.
125 *
126 * So. The present situation is, we use sigaction(2) with no
127 * guarantee of restart anywhere but on Linux and BSD. We could
128 * switch to signal(3) and collar Linux, BSD, and SVr4. Any way
129 * we slice it, System V UNIXes older than SVr4 will probably lose
130 * (this may include XENIX).
131 *
132 * This implementation will probably be changed to use signal(3) in
micky3879b9f5e72025-07-08 18:04:53 -0400133 * the future. If nothing else, it is simpler...
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530134 */
135
136#if USE_SIGTSTP
137static void
Steve Kondikae271bc2015-11-15 02:50:53 +0100138handle_SIGTSTP(int dummy GCC_UNUSED)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530139{
Steve Kondikae271bc2015-11-15 02:50:53 +0100140 SCREEN *sp = CURRENT_SCREEN;
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530141 sigset_t mask, omask;
142 sigaction_t act, oact;
143
144#ifdef SIGTTOU
145 int sigttou_blocked;
146#endif
147
Steve Kondikae271bc2015-11-15 02:50:53 +0100148 _nc_globals.have_sigtstp = 1;
149 T(("handle_SIGTSTP() called"));
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530150
151 /*
152 * The user may have changed the prog_mode tty bits, so save them.
153 *
154 * But first try to detect whether we still are in the foreground
155 * process group - if not, an interactive shell may already have
156 * taken ownership of the tty and modified the settings when our
157 * parent was stopped before us, and we would likely pick up the
158 * settings already modified by the shell.
micky3879b9f5e72025-07-08 18:04:53 -0400159 *
160 * Don't do this if we're not in curses -
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530161 */
micky3879b9f5e72025-07-08 18:04:53 -0400162 if (sp != 0 && (sp->_endwin == ewRunning))
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530163#if HAVE_TCGETPGRP
164 if (tcgetpgrp(STDIN_FILENO) == getpgrp())
165#endif
Steve Kondikae271bc2015-11-15 02:50:53 +0100166 NCURSES_SP_NAME(def_prog_mode) (NCURSES_SP_ARG);
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530167
168 /*
169 * Block window change and timer signals. The latter
170 * is because applications use timers to decide when
171 * to repaint the screen.
172 */
173 (void) sigemptyset(&mask);
Steve Kondikae271bc2015-11-15 02:50:53 +0100174#ifdef SIGALRM
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530175 (void) sigaddset(&mask, SIGALRM);
Steve Kondikae271bc2015-11-15 02:50:53 +0100176#endif
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530177#if USE_SIGWINCH
178 (void) sigaddset(&mask, SIGWINCH);
179#endif
180 (void) sigprocmask(SIG_BLOCK, &mask, &omask);
181
182#ifdef SIGTTOU
183 sigttou_blocked = sigismember(&omask, SIGTTOU);
184 if (!sigttou_blocked) {
185 (void) sigemptyset(&mask);
186 (void) sigaddset(&mask, SIGTTOU);
187 (void) sigprocmask(SIG_BLOCK, &mask, NULL);
188 }
189#endif
190
191 /*
192 * End window mode, which also resets the terminal state to the
193 * original (pre-curses) modes.
194 */
Steve Kondikae271bc2015-11-15 02:50:53 +0100195 NCURSES_SP_NAME(endwin) (NCURSES_SP_ARG);
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530196
197 /* Unblock SIGTSTP. */
198 (void) sigemptyset(&mask);
199 (void) sigaddset(&mask, SIGTSTP);
200#ifdef SIGTTOU
201 if (!sigttou_blocked) {
202 /* Unblock this too if it wasn't blocked on entry */
203 (void) sigaddset(&mask, SIGTTOU);
204 }
205#endif
206 (void) sigprocmask(SIG_UNBLOCK, &mask, NULL);
207
208 /* Now we want to resend SIGSTP to this process and suspend it */
209 act.sa_handler = SIG_DFL;
210 sigemptyset(&act.sa_mask);
211 act.sa_flags = 0;
212#ifdef SA_RESTART
213 act.sa_flags |= SA_RESTART;
214#endif /* SA_RESTART */
215 sigaction(SIGTSTP, &act, &oact);
216 kill(getpid(), SIGTSTP);
217
218 /* Process gets suspended...time passes...process resumes */
219
220 T(("SIGCONT received"));
221 sigaction(SIGTSTP, &oact, NULL);
Steve Kondikae271bc2015-11-15 02:50:53 +0100222 NCURSES_SP_NAME(flushinp) (NCURSES_SP_ARG);
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530223
224 /*
225 * If the user modified the tty state while suspended, he wants
226 * those changes to stick. So save the new "default" terminal state.
227 */
Steve Kondikae271bc2015-11-15 02:50:53 +0100228 NCURSES_SP_NAME(def_shell_mode) (NCURSES_SP_ARG);
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530229
230 /*
231 * This relies on the fact that doupdate() will restore the
232 * program-mode tty state, and issue enter_ca_mode if need be.
233 */
Steve Kondikae271bc2015-11-15 02:50:53 +0100234 NCURSES_SP_NAME(doupdate) (NCURSES_SP_ARG);
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530235
236 /* Reset the signals. */
237 (void) sigprocmask(SIG_SETMASK, &omask, NULL);
238}
239#endif /* USE_SIGTSTP */
240
241static void
Steve Kondikae271bc2015-11-15 02:50:53 +0100242handle_SIGINT(int sig)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530243{
Steve Kondikae271bc2015-11-15 02:50:53 +0100244 SCREEN *sp = CURRENT_SCREEN;
245
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530246 /*
Steve Kondikae271bc2015-11-15 02:50:53 +0100247 * Much of this is unsafe from a signal handler. But we'll _try_ to clean
248 * up the screen and terminal settings on the way out.
249 *
250 * There are at least the following problems:
251 * 1) Walking the SCREEN list is unsafe, since all list management
252 * is done without any signal blocking.
253 * 2) On systems which have REENTRANT turned on, set_term() uses
254 * _nc_lock_global() which could deadlock or misbehave in other ways.
255 * 3) endwin() calls all sorts of stuff, many of which use stdio or
256 * other library functions which are clearly unsafe.
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530257 */
258 if (!_nc_globals.cleanup_nested++
Steve Kondikae271bc2015-11-15 02:50:53 +0100259 && (sig == SIGINT || sig == SIGTERM)) {
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530260#if HAVE_SIGACTION || HAVE_SIGVEC
261 sigaction_t act;
262 sigemptyset(&act.sa_mask);
263 act.sa_flags = 0;
264 act.sa_handler = SIG_IGN;
265 if (sigaction(sig, &act, NULL) == 0)
266#else
267 if (signal(sig, SIG_IGN) != SIG_ERR)
268#endif
269 {
270 SCREEN *scan;
271 for (each_screen(scan)) {
272 if (scan->_ofp != 0
Steve Kondikae271bc2015-11-15 02:50:53 +0100273 && NC_ISATTY(fileno(scan->_ofp))) {
274 scan->_outch = NCURSES_SP_NAME(_nc_outch);
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530275 }
276 set_term(scan);
Steve Kondikae271bc2015-11-15 02:50:53 +0100277 NCURSES_SP_NAME(endwin) (NCURSES_SP_ARG);
278 if (sp)
micky3879b9f5e72025-07-08 18:04:53 -0400279 sp->_endwin = ewInitial; /* in case of reuse */
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530280 }
281 }
282 }
Steve Kondikae271bc2015-11-15 02:50:53 +0100283 _exit(EXIT_FAILURE);
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530284}
285
micky3879b9f5e72025-07-08 18:04:53 -0400286# ifndef _nc_set_read_thread
287NCURSES_EXPORT(void)
288_nc_set_read_thread(bool enable)
289{
290 _nc_lock_global(curses);
291 if (enable) {
292# if USE_WEAK_SYMBOLS
293 if ((pthread_self) && (pthread_kill) && (pthread_equal))
294# endif
295 _nc_globals.read_thread = pthread_self();
296 } else {
297 _nc_globals.read_thread = 0;
298 }
299 _nc_unlock_global(curses);
300}
301# endif
302
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530303#if USE_SIGWINCH
micky3879b9f5e72025-07-08 18:04:53 -0400304
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530305static void
Steve Kondikae271bc2015-11-15 02:50:53 +0100306handle_SIGWINCH(int sig GCC_UNUSED)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530307{
308 _nc_globals.have_sigwinch = 1;
Steve Kondikae271bc2015-11-15 02:50:53 +0100309# if USE_PTHREADS_EINTR
310 if (_nc_globals.read_thread) {
311 if (!pthread_equal(pthread_self(), _nc_globals.read_thread))
312 pthread_kill(_nc_globals.read_thread, SIGWINCH);
313 _nc_globals.read_thread = 0;
314 }
315# endif
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530316}
317#endif /* USE_SIGWINCH */
318
319/*
320 * If the given signal is still in its default state, set it to the given
321 * handler.
322 */
323static int
Steve Kondikae271bc2015-11-15 02:50:53 +0100324CatchIfDefault(int sig, void (*handler) (int))
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530325{
326 int result;
327#if HAVE_SIGACTION || HAVE_SIGVEC
328 sigaction_t old_act;
329 sigaction_t new_act;
330
331 memset(&new_act, 0, sizeof(new_act));
332 sigemptyset(&new_act.sa_mask);
333#ifdef SA_RESTART
334#ifdef SIGWINCH
335 if (sig != SIGWINCH)
336#endif
337 new_act.sa_flags |= SA_RESTART;
338#endif /* SA_RESTART */
339 new_act.sa_handler = handler;
340
341 if (sigaction(sig, NULL, &old_act) == 0
342 && (old_act.sa_handler == SIG_DFL
343 || old_act.sa_handler == handler
344#if USE_SIGWINCH
345 || (sig == SIGWINCH && old_act.sa_handler == SIG_IGN)
346#endif
347 )) {
348 (void) sigaction(sig, &new_act, NULL);
349 result = TRUE;
350 } else {
351 result = FALSE;
352 }
353#else /* !HAVE_SIGACTION */
Steve Kondikae271bc2015-11-15 02:50:53 +0100354 void (*ohandler) (int);
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530355
356 ohandler = signal(sig, SIG_IGN);
357 if (ohandler == SIG_DFL
358 || ohandler == handler
359#if USE_SIGWINCH
360 || (sig == SIGWINCH && ohandler == SIG_IGN)
361#endif
362 ) {
363 signal(sig, handler);
364 result = TRUE;
365 } else {
366 signal(sig, ohandler);
367 result = FALSE;
368 }
369#endif
370 T(("CatchIfDefault - will %scatch %s",
371 result ? "" : "not ", signal_name(sig)));
372 return result;
373}
374
375/*
376 * This is invoked once at the beginning (e.g., from 'initscr()'), to
377 * initialize the signal catchers, and thereafter when spawning a shell (and
378 * returning) to disable/enable the SIGTSTP (i.e., ^Z) catcher.
379 *
380 * If the application has already set one of the signals, we'll not modify it
381 * (during initialization).
382 *
383 * The XSI document implies that we shouldn't keep the SIGTSTP handler if
384 * the caller later changes its mind, but that doesn't seem correct.
385 */
386NCURSES_EXPORT(void)
Steve Kondikae271bc2015-11-15 02:50:53 +0100387_nc_signal_handler(int enable)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530388{
389 T((T_CALLED("_nc_signal_handler(%d)"), enable));
390#if USE_SIGTSTP /* Xenix 2.x doesn't have SIGTSTP, for example */
391 {
392 static bool ignore_tstp = FALSE;
393
394 if (!ignore_tstp) {
395 static sigaction_t new_sigaction, old_sigaction;
396
397 if (!enable) {
398 new_sigaction.sa_handler = SIG_IGN;
399 sigaction(SIGTSTP, &new_sigaction, &old_sigaction);
400 } else if (new_sigaction.sa_handler != SIG_DFL) {
401 sigaction(SIGTSTP, &old_sigaction, NULL);
402 } else if (sigaction(SIGTSTP, NULL, &old_sigaction) == 0
403 && (old_sigaction.sa_handler == SIG_DFL)) {
404 sigemptyset(&new_sigaction.sa_mask);
405#ifdef SA_RESTART
406 new_sigaction.sa_flags |= SA_RESTART;
407#endif /* SA_RESTART */
Steve Kondikae271bc2015-11-15 02:50:53 +0100408 new_sigaction.sa_handler = handle_SIGTSTP;
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530409 (void) sigaction(SIGTSTP, &new_sigaction, NULL);
410 } else {
411 ignore_tstp = TRUE;
412 }
413 }
414 }
415#endif /* !USE_SIGTSTP */
416
417 if (!_nc_globals.init_signals) {
418 if (enable) {
Steve Kondikae271bc2015-11-15 02:50:53 +0100419 CatchIfDefault(SIGINT, handle_SIGINT);
420 CatchIfDefault(SIGTERM, handle_SIGINT);
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530421#if USE_SIGWINCH
Steve Kondikae271bc2015-11-15 02:50:53 +0100422 CatchIfDefault(SIGWINCH, handle_SIGWINCH);
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530423#endif
424 _nc_globals.init_signals = TRUE;
425 }
426 }
427 returnVoid;
428}